/**
* Template Name: Multi - v4.7.0
* Template URL: https://bootstrapmade.com/multi-responsive-bootstrap-template/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
html{
    overflow-x: hidden;
   
}
section {
    position: relative;
}
:root {
    --primary-color: #ff7675;
    --secondary-color: #0884e2;
    /* --section-bg-color: #feeeee; */
    --bg-light-blue: #eaf0ff;
    --body-font-color:#181617;
    --white-color: #ffffff;
    --black-color:#000;
    --heading-colors: #2e3337;
    --light-bg: #f4f6f8;
    --footer-bg:#010d16;
    --text-light:#2b3440;
    --text-light-2:#959595;
    --yellowcolor:#fedc65;
    --innersubtitle:#0c043d;
    

}

body {
    font-family: "Poppins", sans-serif;
    color: var(--body-font-color);
    
}

a {
    color: var(--primary-color);
    text-decoration: none;
}

a:hover {
    color: #f1775d;
    text-decoration: none;
}

h1 {
    /* font-size: 50px; */
    font-size: calc(32px + (50 - 32) * ((100vw - 300px) / (1920 - 300)));
}

h2 {
    /* font-size: 40px; */
    font-size: calc(28px + (40 - 28) * ((100vw - 300px) / (1920 - 300)));
}

h3 {
    /* font-size: 35px; */
    font-size: calc(25px + (35 - 25) * ((100vw - 300px) / (1920 - 300)));
}

h4 {
    font-size: calc(23px + (30 - 23) * ((100vw - 300px) / (1920 - 300)));
    /* font-size: 30px; */
}

h5 {
    /* font-size: 25px; */
    font-size: calc(20px + (25 - 20) * ((100vw - 300px) / (1920 - 300)));
}

h6 {
    /* font-size: 18px;    */
    font-size: calc(18px + (22 - 18) * ((100vw - 300px) / (1920 - 300)));
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--heading-colors);
}

/* BG */

.bg-light-blue {
    background-color: var(--bg-light-blue);
}

.bg-second {
    background-color: var(--secondary-color);
}

.bg-primary-color {
    background-color: var(--primary-color);
}

/* BG End */

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    overflow: hidden;
    background: #fff;
}

#preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 6px solid var(--primary-color);
    border-top-color: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    -webkit-animation: animate-preloader 1s linear infinite;
    animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/

.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    left: 15px;
    bottom: 15px;
    z-index: 996;
    background: #0884e2;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
}

.back-to-top i {
    font-size: 28px;
    color: #fff;
    line-height: 0;
}

.back-to-top:hover {
    background: var(--secondary-color);
    color: #fff;
}

.back-to-top.active {
    visibility: visible;
    opacity: 1;
}

/* Buttons */

.btn-white {
    font-size: calc(14px + (19 - 14) * ((100vw - 300px) / (1920 - 300)));
    font-weight:bold;
    background-color:var(--primary-color);
    padding:14px 60px;
    display: inline-block;
    color:var(--white-color);
    margin-bottom:14px;
    margin-right:10px;
    border:0;
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
    transition: 0.5s ease-in-out;
    -webkit-transition: 0.5s ease-in-out;
    -moz-transition: 0.5s ease-in-out;
    -ms-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
}

.btn-white:hover {
    background-color:var(--primary-color);
    color:var(--white-color);
    border:transparent;
}

.btn-primary {
    font-size: calc(14px + (19 - 14) * ((100vw - 300px) / (1920 - 300)));
    font-weight: bold;
    background-color: var(--primary-color);
    padding: 14px 60px;
    display: inline-block;
    color: var(--white-color);
    margin-bottom: 14px;
    margin-right: 10px;
    border: 0;
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
    transition: 0.5s ease-in-out;
    -webkit-transition: 0.5s ease-in-out;
    -moz-transition: 0.5s ease-in-out;
    -ms-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
}

.btn-primary:hover {
    background-color: #2e3337;
    color: var(--white-color);
    border: transparent;
}

.btn-secondary {
    font-size: calc(14px + (19 - 14) * ((100vw - 300px) / (1920 - 300)));
    font-weight: bold;
    background-color: var(--primary-color) !important;
    padding: 14px 45px;
    display: inline-block;
    color: var(--heading-colors) !important;
    margin-bottom: 14px;
    border: 1px solid var(--primary-color) !important;
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
    transition: 0.5s ease-in-out;
    -webkit-transition: 0.5s ease-in-out;
    -moz-transition: 0.5s ease-in-out;
    -ms-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    border: 1px solid var(--secondary-color);
    box-shadow: none;
}

.btn-secondary:hover {
    background-color:var(--secondary-color)!important;
    color:#fff!important;
    border:1px solid transparent!important;
}
.btn-secondary:focus{
    box-shadow:none!important;
    background-color:transparent!important;
}

.btn-secondary-border {
    font-size: calc(14px + (19 - 14) * ((100vw - 300px) / (1920 - 300)));
    font-weight: bold;
    background-color: transparent;
    padding: 14px 45px;
    display: inline-block;
    color: var(--heading-colors) !important;
    margin-bottom: 14px;
    border: 1px solid var(--primary-color) !important;
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
    transition: 0.5s ease-in-out;
    -webkit-transition: 0.5s ease-in-out;
    -moz-transition: 0.5s ease-in-out;
    -ms-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    border: 1px solid var(--secondary-color);
    box-shadow: none;
}

.btn-secondary-border:hover {
    background-color: var(--secondary-color) !important;
    color: #fff !important;
    border: 1px solid transparent !important;
}

/* Buttons End */

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

.modal-open{
    padding-right:0 !important;
}
.modal-body{
    background-repeat:no-repeat;
    background-size: cover;
}

#header {
    transition: all 0.5s;
    /* z-index: 997; */
    padding:20px 0px;
}

#header.header-scrolled {
    padding:10px 0;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    background-color: var(--white-color);
}

#header .logo {
    font-size: 26px;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

#header .logo a {
    color: #0b2341;
}

#header .logo img {
    max-height:40px;
}
#header.header-scrolled .brand-logo img {
    max-width: 125px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/

/**
* Desktop Navigation 
*/

.navbar {
    padding: 0;
    justify-content: flex-end;
}

.navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
}

.navbar li {
    position: relative;
}

.navbar a,
.navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0 10px 30px;
    font-size: 16px;
    color:#2e3337;
    white-space: nowrap;
    transition: 0.3s;
    font-weight: 400;
    text-transform: uppercase;
}

.navbar a i,
.navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
    color: var(--primary-color);
}

.navbar .getstarted,
.navbar .getstarted:focus {
    background: var(--secondary-color);
    padding: 8px 20px;
    margin-left: 30px;
    border-radius: 4px;
    color: #fff;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
    color: #fff;
    background: #333;
}

.navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 14px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
}

.navbar .dropdown ul li {
    min-width: 200px;
}

.navbar .dropdown ul a {
    padding: 10px 10px;
    text-transform: none;
    font-size: calc(13px + (15 - 13) * (100vw - 320px) / (1920 - 320));
}

.navbar .dropdown ul a i {
    font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
    color: var(--primary-color);
}

.navbar .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
}

@media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        left: -90%;
    }

    .navbar .dropdown .dropdown:hover>ul {
        left: -100%;
    }
}

/**
* Mobile Navigation 
*/

.mobile-nav-toggle {
    color: #0b2341;
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
    color: #fff;
}

@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: block;
        position: absolute;
        right:7%;
    }

    .navbar ul {
        display: none;
    }
}

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(4, 12, 21, 0.9);
    transition: 0.3s;
    z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 15px;
    right: 15px;
}

.navbar-mobile ul {
    display: block;
    position: absolute;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    padding: 10px 0;
    background-color: #fff;
    overflow-y: auto;
    transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
    padding: 10px 20px;
    font-size: 15px;
    color: #0b2341;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
    color: var(--primary-color);
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
    margin: 15px;
}

.navbar-mobile .dropdown ul {
    position: static;
    display: none;
    margin: 10px 20px;
    padding: 10px 0;
    z-index: 99;
    opacity: 1;
    visibility: visible;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
    min-width: 200px;
}

.navbar-mobile .dropdown ul a {
    padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
    font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
    color: var(--primary-color);
}

.navbar-mobile .dropdown>.dropdown-active {
    display: block;
}

.header-btn {
    background-color: var(--primary-color);
    color: #2a2a2a;
    padding: 16px 36px;
    margin-left: 20px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    font-weight: 700;
    transition: 0.5s ease-in;
    -webkit-transition: 0.3s ease-in;
    -moz-transition: 0.5s ease-in;
    -ms-transition: 0.5s ease-in;
    -o-transition: 0.5s ease-in;
}

.header-btn:hover {
    background-color: var(--heading-colors);
    color: var(--white-color);
}
.nav-holder{
    margin:0 auto;
}

.info-header {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    /* margin-right: 20px; */
}

.tt-agent {
    margin-right:0;
    font-weight:600;
    font-size: calc(22px + (16 - 22) * ((100vw - 300px) / (1920 - 300)));
    color: #0984e3;
}
.phone-top{
    margin-right:10px;
}
.tt-agent a{
    color: var(--secondary-color);
}
.info-nav-hold{
    display: flex;
}
/* Header End */

.brand-logo img {
    max-width: 180px;
}

.home-banner {
    position: relative;
    padding: 130px 0 50px;
    display: flex;
    align-items: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    justify-content: center;
}

.banner-arrow {
    position: absolute;
    bottom: 0;
    left: 60%;
    pointer-events: none;
    animation-name: animation2;
    animation-duration: 8s;
    animation-iteration-count: infinite;
}
@keyframes animation2 {
    0% {
        left: 40%;
        bottom: 0;
    }
    50% {
        left: 41%;
        bottom: 30px;
    }
    75% {
        left: 42%;
        bottom: 10px;
    }
    100% {
        left: 40%;
        bottom: 0;
    }
}
.banner-arrow img {
    max-width: 200px;
}
@media (max-width: 1199px) {
    .banner-arrow {
        display: none;
    }
}
.home-banner .banner-left-img {
    border-radius: 0 500px 500px 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.home-banner::before{
    content: "";
    background-color: #e6f2fc;
    width:30%;
    height:100%;    
    top: 0;
    position: absolute;
    right: 0;
    z-index: -1;
    pointer-events: none;
    /* background-color: #e6f2fc;
    width:30%;
    height: 100%;
    background-image: url('../../assets/img/banner/banner-img-right.png');
    background-repeat: no-repeat;
    */
}
@media (max-width : 767px) {
    .home-banner .banner-left-img {
        height: 375px;
        margin-bottom: 25px;
        border-radius: 0;
    }
}
@media (max-width : 575px) {
    .home-banner .banner-left-img {
        height: auto;
    }
}

    .slide-content {
        max-width: 600px;
        margin: 0 auto;
    }


    .home-banner h1 {
        font-size: calc(22px + (45 - 22) * ((100vw - 300px) / (1920 - 300)));
        font-weight: 700;
        color: var(--heading-colors);
        margin-bottom: 25px;
        line-height: 1.1;
        margin-bottom: 10px;
        text-transform: capitalize;
    }

.home-banner.inner h1 {
    /*font-size: calc(26px + (56 - 26) * ((100vw - 300px) / (1920 - 300)));*/
    font-weight: 500;
    font-size: calc(22px + (49 - 22) * ((100vw - 300px) / (1920 - 300)));
}

    .home-banner.inner p {
        color: #959595;
        font-size: 16px;
        line-height: 26px;
        font-weight: 300;
    }

    .home-banner.inner .listing {
        padding: 0;
        margin: 20px 0;
    }

        .home-banner.inner .listing li {
            position: relative;
            display: inline-block;
            width: 100%;
            margin: 0 0 10px 0;
            list-style-type: none;
            padding-left: 25px;
            color: #959595;
            font-size: 16px;
            line-height: 26px;
            font-weight: 300;
        }

        .home-banner.inner .listing .iconBox {
            color: #0884e2;
            position: absolute;
            left: 0;
            top: 3px;
        }

    .home-banner.inner .banner-form {
        background-color: #dfeffb;
        display: flex;
        align-items: center;
        border-radius: 18px;
        flex-direction: column;
    }

        .home-banner.inner .banner-form.lp {
            background-color: #0984e2;
        }
        .home-banner.inner .banner-form.lp .title-area {
            padding: 30px 30px 0;
            color: #fff;
            font-weight: 700;
            font-size: calc(20px + (40 - 20) * ((100vw - 300px) / (1920 - 300)));
            line-height: 1;
        }
        .home-banner.inner .banner-form.lp .title-area.sty2 {
            font-size: calc(18px + (28 - 18) * ((100vw - 300px) / (1920 - 300)));
        }
        .home-banner.inner .banner-form.lp .title-area span {
            color: #ffd707;
        }

        .home-banner.inner .banner-form .title-area {
            text-align: center;
            position: relative;
            padding: 18px 30px 0px 18px;
            font-size: calc(18px + (30 - 18) * ((100vw - 300px) / (1920 - 300)));
            text-transform: uppercase;
            line-height: 1;
            color: #2e3337;
            width: 100%;
            letter-spacing: -.2px;
        }

            .home-banner.inner .banner-form .title-area span {
                color: #ff7675;
                font-weight: 700;
            }

            .home-banner.inner .banner-form .title-area .tag {
                position: absolute;
                bottom: 0;
                left: 0;
                background-color: #fff;
                border-radius: 0 100px 100px 0;
                padding: 10px 22px;
                color: #ff7675;
                font-size: calc(20px + (26 - 20) * ((100vw - 300px) / (1920 - 300)));
                font-weight: 400;
                text-transform: none;
            }

        .home-banner.inner .banner-form.lp .title-area .tag {
            background-color: #ff7675;
            color: #fff;
        }

        .home-banner.inner .banner-form form {
            padding: 30px;
        }

        .home-banner.inner .banner-form .form-control {
            border-radius: 12px;
            background-color: #FFF;
            border-color: #c8c8c8;
        }

    .home-banner.inner::after {
        content: "";
        width: 30%;
        height: 100%;
        top: 0;
        position: absolute;
        right: 0;
        z-index: -1;
        pointer-events: none;
        width: 30%;
        height: 100%;
        background-image: url('../img/banner/inner-after.webp');
        background-repeat: no-repeat;
        background-size: cover;
    }

    .home-banner.inner.amazon::after {
        background-image: url('../img/banner/amazon-banner.webp');
    }

    .home-banner.inner.company-formation::after {
        background-image: url('../img/banner/company-banner.webp');
    }

    .home-banner.inner.copyright-banner::after {
        background-image: url('../img/banner/copyright-banner.webp');
    }

    .home-banner.inner.search-repor::after {
        background-image: url('../img/banner/amazon-banner.webp');
    }


    .home-banner h2 {
        font-size: calc(26px + (83 - 26) * ((100vw - 300px) / (1920 - 300)));
        font-weight: 700;
        color: var(--heading-colors);
        margin-bottom: 25px;
        border-bottom: 2px solid var(--primary-color);
        display: inline;
    }

    .home-banner h4 {
        font-size: calc(20px + (31 - 20) * ((100vw - 300px) / (1920 - 300)));
        font-weight: 400;
        color: var(--heading-colors);
        margin-bottom: 15px;
        text-transform: capitalize;
    }

    .home-banner h6 {
        font-size: calc(16px + (28 - 16) * ((100vw - 300px) / (1920 - 300)));
        font-weight: 400;
        color: var(--heading-colors);
        margin: 25px 0;
    }

        .home-banner h6 a {
            color: var(--primary-color);
            margin: 0 10px;
        }

    .feature-sec {
        padding: 50px 0;
        position: relative;
    }

        .feature-sec h5 {
            font-size: calc(20px + (26 - 20) * ((100vw - 300px) / (1920 - 300)));
            font-weight: 500;
            color: #c8c8ca;
            /* margin-bottom: 30px; */
            position: relative;
            text-align: center;
            background-color: #fff;
            padding: 12px 20px;
            max-width: 350px;
            margin: 0 auto;
        }

            .feature-sec h5::before {
                content: "";
                background-color: #c8c8ca;
                width: 80px;
                height: 1px;
                top: 28px;
                left: 0;
                position: absolute;
            }

            .feature-sec h5::after {
                content: "";
                background-color: #c8c8ca;
                width: 80px;
                height: 1px;
                top: 28px;
                right: 0;
                position: absolute;
            }

        .feature-sec .feature-item {
            display: flex;
            justify-content: center;
        }

    .service-sec {
        position: relative;
        z-index: 1;
    }
        /*.service-sec::before{
    content: "";
    background-image: url('../../assets/img/service-img-right.png');
    background-repeat: no-repeat;
    width: 468px;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
}*/
        .service-sec h3 {
            font-size: calc(22px + (47 - 22) * ((100vw - 300px) / (1920 - 300)));
            font-weight: 600;
        }

        .service-sec p {
            font-size: calc(14px + (16 - 14) * (100vw - 320px) / (1920 - 320));
            color: var(--text-light-2);
            font-weight: 400;
            margin-bottom: 40px;
        }

    .what {
        background-color: #0884e2;
        border: 0;
        border-radius: 12px;
        font-size: 17px;
        font-weight: 400;
        color: var(--white-color);
        padding: 10px 15px;
        text-transform: uppercase;
        margin-bottom: 25px;
    }

    .service-box {
        display: flex;
        margin-bottom: 0;
        height: 100%;
        position: relative;
        padding: 0 0 50px 0
    }
    .service-box .ser-text {
        position: relative;
    }
    .service-box .ser-text a {
        position: absolute;
        bottom: 0;
        left: 0;
    }

        .service-box .servi-icon {
            background-color: rgb(255, 255, 255);
            box-shadow: 10px 0px 55.29px 2.71px rgb(8 132 226 / 40%);
            max-width: 80px;
            flex: 0 0 80px;
            height: 80px;
            margin-right: 40px;
            border: 0;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
        }

        .service-box .ser-text h5 {
            font-size: calc(16px + (22 - 16) * ((100vw - 300px) / (1920 - 300)));
            font-weight: 600;
            color: #2e3337;
            padding-bottom: 10px;
            margin: 0;
        }

        .service-box .ser-text p {
            font-size: calc(14px + (14 - 12) * (100vw - 320px) / (1920 - 320));
            color: var(--text-light-2);
            font-weight: 400;
            margin-bottom: 40px;
            line-height: 1.4;
        }

        .service-box .ser-text a {
            font-size: calc(12px + (14 - 12) * (100vw - 320px) / (1920 - 320));
            color: var(--text-light-2);
            font-weight: 600;
        }

            .service-box .ser-text a i {
                margin-left: 20px;
            }

    .nav-market {
        z-index: 99;
        margin: 0 auto;
        display: block;
        padding-top: 20px;
    }

    .np-slick-btn1 {
        background-color: #fff;
        color: #111;
        border: 0;
        padding: 2px 11px;
        font-size: 25px;
        transition: 0.5s;
        margin-bottom: 20px;
        border-radius: 50%;
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        -ms-border-radius: 50%;
        -o-border-radius: 50%;
        width: 60px;
        height: 60px;
    }

        .np-slick-btn1:active,
        .np-slick-btn1:hover {
            background-color: #0984e3;
            border: 0;
            border-radius: 50%;
            -webkit-border-radius: 50%;
            -moz-border-radius: 50%;
            -ms-border-radius: 50%;
            -o-border-radius: 50%;
            color: #fff;
            width: 60px;
            height: 60px;
        }
    /* main Banner End */
    .pink-label {
        padding: 10px 15px;
        background-color: var(--primary-color);
        border: 0;
        border-radius: 10px;
        text-decoration: none;
        font-size: 14px;
        font-weight: 400;
        color: #fff;
    }

    .pink-btn {
        padding: 12px 28px;
        background-color: var(--primary-color);
        border: 0;
        border-radius: 10px;
        text-decoration: none;
        font-size: calc(14px + (18 - 14) * ((100vw - 300px) / (1920 - 300)));
        font-weight: 500;
        color: #fff;
        transition: all ease-in-out 0.3s;
    }

        .pink-btn:hover {
            background-color: #000;
            color: #fff;
        }

    .common-title {
        font-size: calc(22px + (42 - 22) * ((100vw - 300px) / (1920 - 300)));
        font-weight: 600;
        color: var(--heading-colors);
        margin-bottom: 5px;
    }

    .common-text {
        font-size: calc(12px + (16 - 12) * ((100vw - 300px) / (1920 - 300)));
        font-weight: 400;
        color: var(--text-light-2);
        margin-bottom: 20px;
    }

    .tm-registration-sec {
        position: relative;
        background-image: url('../img/rush-bg.webp');
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
        display: flex;
        align-items: center;
    }

        .tm-registration-sec h3 {
            font-size: calc(20px + (36 - 20) * ((100vw - 300px) / (1920 - 300)));
            font-weight: bold;
            color: var(--white-color);
            margin-bottom: 30px;
        }

        .tm-registration-sec p {
            font-size: calc(14px + (20 - 14) * ((100vw - 300px) / (1920 - 300)));
            font-weight: 300;
            color: var(--white-color);
            margin-bottom: 40px;
            line-height: 1.8;
        }

    .bdr-btn {
        border: 1px solid var(--white-color);
        padding: 12px 30px;
        background-color: transparent;
        border-radius: 10px;
        -webkit-border-radius: 10px;
        -moz-border-radius: 10px;
        -ms-border-radius: 10px;
        -o-border-radius: 10px;
        text-decoration: none;
        color: #fff;
    }

    .bdr-wyt-btn {
        border: 1px solid var(--white-color);
        padding: 12px 30px;
        background-color: transparent;
        border-radius: 10px;
        -webkit-border-radius: 10px;
        -moz-border-radius: 10px;
        -ms-border-radius: 10px;
        -o-border-radius: 10px;
        text-decoration: none;
        color: #fff;
        transition: all ease-in-out 0.3s;
    }

        .bdr-wyt-btn:hover {
            background-color: #fff;
            color: #0884e2;
        }

    /* Home page Css End */


    /* Spacings */
    .spacing-ptb {
        padding: 100px 0;
    }

    .spacing-pt {
        padding-top: 80px;
    }

    .spacing-pb {
        padding-bottom: 80px;
    }

    .spacing-mtb {
        margin: 80px 0;
    }

    .spacing-mt {
        margin-top: 80px;
    }

    .spacing-mb {
        margin-bottom: 80px;
    }

    .box-spacing-mb {
        margin-bottom: 170px;
    }

    /* Spacings End */

    /* Qualifies Start */
    .qualifices-sec {
        position: relative;
    }

        .qualifices-sec .qualifi-box {
            background-color: var(--light-bg);
            min-height: 550px;
            width: 100%;
            padding: 90px 35px;
            margin-bottom: 40px;
            border: 0;
            border-radius: 37px;
            -webkit-border-radius: 37px;
            -moz-border-radius: 37px;
            -ms-border-radius: 37px;
            -o-border-radius: 37px;
        }


            .qualifices-sec .qualifi-box h6 {
                font-size: calc(16px + (20 - 16) * (100vw - 320px) / (1920 - 320));
                color: var(--innersubtitle);
                font-weight: 600;
                margin-bottom: 10px;
            }

            .qualifices-sec .qualifi-box p {
                font-size: calc(12px + (17 - 12) * (100vw - 320px) / (1920 - 320));
                color: var(--text-light-2);
                font-weight: 400;
                margin-bottom: 12px;
                line-height: 28px;
            }

        .qualifices-sec .qualifi-list {
            padding: 0;
            margin: 0;
        }

            .qualifices-sec .qualifi-list li {
                list-style: none;
                padding-left: 25px;
                font-weight: 500;
                font-size: calc(13px + (18 - 13) * (100vw - 320px) / (1920 - 320));
                color: #373737;
                line-height: 28px;
                position: relative;
            }

                .qualifices-sec .qualifi-list li::before {
                    content: "";
                    background-image: url("../img/icons/arrow-icon.png");
                    background-repeat: no-repeat;
                    width: 16px;
                    height: 14px;
                    position: absolute;
                    top: 7px;
                    left: 0;
                }

    /* Qualifies  End */

    /* Inner-Icon-Sec  End */
    .inner-customer {
        background-color: #fff;
    }

        /* .inner-customer .spacing-pb{
    padding: 0;
} */
        .inner-customer .container {
            background-color: transparent;
        }

    .cta-sec .cta-ib p {
        color: var(--white-color);
    }
    /* .inner-icon-sec .cta-ib h6 {
    color: var(--body-font-color);
} */
    .inner-icon-sec .cta-ib p {
        color: var(--body-font-color);
    }

    /* Inner-Icon-Sec  End */

    .iti--allow-dropdown {
        width: 100%;
    }

    .btn-close-ctm {
        position: absolute;
        right: 10px;
        top: 10px;
        z-index: 10;
    }

    /* Contact Page Start */

    .contact-section {
        position: relative;
    }

        .contact-section h3 {
            font-size: calc(22px + (30 - 22) * ((100vw - 300px) / (1920 - 300)));
            font-weight: 600;
            color: var(--secondary-color);
            margin-bottom: 5px;
        }

        .contact-section .form-box {
            padding: 40px;
        }

            .contact-section .form-box .frm-btn {
                padding: 15px 70px;
            }

            .contact-section .form-box input {
                border: 1px solid rgb(77, 78, 78);
                border-radius: 10px;
                background-color: transparent;
                height: 53px;
                margin-bottom: 5px;
                width: 100%;
                padding: 8px 10px;
            }

            .contact-section .form-box textarea {
                border: 1px solid rgb(77, 78, 78);
                border-radius: 10px;
                background-color: transparent;
                height: 162px;
                margin-bottom: 15px;
                width: 100%;
                padding: 15px;
            }

        .contact-section .contact-info {
            margin-bottom: 25px;
        }

            .contact-section .contact-info .info-box {
                padding-bottom: 20px;
                margin-bottom: 20px;
            }

            .contact-section .contact-info label {
                font-size: calc(14px + (18 - 14) * (100vw - 320px) / (1920 - 320));
                color: var(--primary-color);
                text-transform: uppercase;
                font-weight: 500;
                margin-bottom: 5px;
                padding: 0;
            }

            .contact-section .contact-info .info-icon {
                display: flex;
            }

                .contact-section .contact-info .info-icon i {
                    font-family: "FontAwesome";
                    font-size: 18px;
                    color: var(--primary-color);
                    margin-right: 15px;
                    margin-top: 5px;
                }

                .contact-section .contact-info .info-icon a,
                p {
                    font-size: calc(14px + (18 - 14) * (100vw - 320px) / (1920 - 320));
                    color: #404040;
                    font-weight: 400;
                    margin: 0;
                    padding: 0;
                }

    .js-submit {
        border-radius: 10px;
        -webkit-border-radius: 10px;
        -moz-border-radius: 10px;
        -ms-border-radius: 10px;
        -o-border-radius: 10px;
    }
    /* Contact Page  End */

    /* Icon List Style */

    .ic-list-item {
        display: flex;
        align-items: center;
        margin-bottom: 40px;
        border: 1px dashed var(--primary-color);
        padding: 20px 40px;
        border-radius: 10px;
        -webkit-border-radius: 10px;
        -moz-border-radius: 10px;
        -ms-border-radius: 10px;
        -o-border-radius: 10px;
    }

    .icon-list {
        padding-left: 0;
        list-style: none;
    }

    .il-icon {
        margin-right: 20px;
        flex: 1 0 60px;
        max-width: 60px;
    }

    .il-cont {
        font-size: calc(12px + (16 - 12) * ((100vw - 300px) / (1920 - 300)));
        font-weight: 500;
        color: var(--text-light);
    }

    /* Icon List Style End*/

    /* Bar Section Start */


    /* Bar Section End */

    /* Trademark Section HOme */

    .trade-sec {
        position: relative;
    }

        .trade-sec .trade-bar-row {
            display: flex;
        }

    .trade-box {
        text-align: center;
        justify-content: center;
        margin-bottom: 20px;
        display: flex;
        max-width: 20%;
        flex: 0 0 20%;
        padding: 10px;
        flex-direction: column;
        max-height: 315px;
    }

        .trade-box .box-inner {
            position: relative;
            width: 100%;
            height: 100%;
            overflow: hidden;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            transition: all ease-in-out 0.3s;
        }

            .trade-box .box-inner::before {
                content: "";
                background-color: #040404b0;
                width: 100%;
                height: 100%;
                position: absolute;
                top: 0;
                left: 0;
                z-index: 1;
            }

        .trade-box .trade-img {
            display: flex;
            width: 100%;
            height: 100%;
            top: 15px;
            position: relative;
        }

            .trade-box .trade-img img {
                width: 100%;
                object-fit: cover;
            }

        .trade-box:hover .trade-box-white {
            display: none;
        }

    .trade-box-white {
        position: absolute;
        padding: 10px;
        z-index: 2;
    }

        .trade-box-white img {
            display: block;
            margin: 0 auto;
            padding-bottom: 20px;
            max-width: 65px;
        }

        .trade-box-white .white-text {
            font-size: calc(15px + (15 - 14) * ((100vw - 300px) / (1920 - 300)));
            font-weight: 600;
            color: var(--white-color);
            padding-bottom: 12px;
        }

    .trade-box .trade-icon {
        border: 0;
        margin: 0 auto;
        position: relative;
        display: none;
    }

    .trade-box:hover .trade-icon {
        display: block;
    }

    .trade-box .trade-text {
        margin-top: 10px;
        position: relative;
    }

        .trade-box .trade-text span {
            font-size: calc(14px + (16 - 14) * ((100vw - 300px) / (1920 - 300)));
            font-weight: 600;
            color: var(--white-color);
            padding-bottom: 12px;
            line-height: 1;
        }

        .trade-box .trade-text p {
            font-size: calc(12px + (13 - 12) * ((100vw - 300px) / (1920 - 300)));
            font-weight: 400;
            color: var(--text-light-2);
            display: none;
        }

    .trade-box:hover .trade-text p {
        display: block;
    }

    .trade-box .box-inner:hover {
        background-color: var(--primary-color);
        cursor: pointer;
        padding: 5px;
    }

        .trade-box .box-inner:hover::before {
            visibility: hidden;
        }

    .trade-box:hover .trade-img {
        display: none;
    }

    .trade-box:hover .trade-text p {
        color: var(--white-color);
    }

    .trade-box:hover .trade-text {
        display: block;
    }

    .trade-box .box-inner .links {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
    }

    @media (max-width: 1366px) {
        .trade-sec .trade-bar-row {
            flex-wrap: wrap;
            align-items: center;
            justify-content: center;
        }

        .trade-box {
            max-width: 33.3%;
            flex: 33.3%;
        }

            .trade-box:hover .trade-icon {
                max-width: 45px
            }
    }

    @media (max-width: 767px) {
        .trade-box {
            max-width: 100%;
            flex: 100%;
        }
    }

    /* Trademark Section HOme End */
    .packages-section {
        position: relative;
    }

        .packages-section h2 {
            font-size: calc(22px + (32 - 22) * ((100vw - 300px) / (1920 - 300)));
            font-weight: bold;
            color: var(--title-color);
            margin-bottom: 0;
        }

        .packages-section p {
            font-size: calc(12px + (17 - 12) * ((100vw - 300px) / (1920 - 300)));
            font-weight: 400;
            color: var(--text-light-2);
            margin-bottom: 25px;
        }

    .package-header {
        /* height:130px;
    max-width:215px; */
        margin: 0 auto;
        position: relative;
        padding: 20px 12px;
        border: 0;
        border-radius: 0px 0px 50px 50px;
        -webkit-border-radius: 0px 0px 50px 50px;
        -moz-border-radius: 0px 0px 50px 50px;
        -ms-border-radius: 0px 0px 50px 50px;
        -o-border-radius: 0px 0px 50px 50px;
    }


    .package-title {
        font-size: 32px;
        /* font-size: calc(30px + (48 - 30) * ((100vw - 300px) / (1920 - 300))); */
        font-weight: 600;
        margin: 0;
        line-height: 1;
        padding: 10px 0;
        text-transform: uppercase;
        color: #0984e3;
    }

    .cmp-title {
        font-size: 25px;
        font-weight: 600;
    }

    #hensive .package-title {
        font-size: 25px;
    }

    .package-holder label {
        font-size: calc(12px + (14 - 12) * ((100vw - 300px) / (1920 - 300)));
        font-weight: 400;
        color: var(--body-font-color);
        position: absolute;
        left: 20px;
        top: 40px;
        writing-mode: vertical-lr;
        -webkit-writing-mode: vertical-lr;
        -ms-writing-mode: vertical-lr;
    }

    .package-footer {
        margin-top: 40px;
        padding-bottom: 30px;
    }

    .package-price-holder {
        position: relative;
        padding: 15px;
        color: var(--primary-color);
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .package-price-holder {
        margin-bottom: 25px;
        min-height: 100px;
        display: block;
    }

        .package-price-holder span {
            display: block;
            font-size: 15px;
            /* font-size: calc(12px + (16 - 12) * ((100vw - 300px) / (1920 - 300))); */
            font-weight: 400;
            color: var(--body-font-color);
            line-height: 1;
        }

    .package-holder:hover .package-price-holder span {
        color: var(--white-color);
    }

    .package-price {
        /* font-size:50px; */
        font-size: calc(44px + (65 - 44) * ((100vw - 300px) / (1920 - 300)));
        font-weight: 600;
        color: var(--black-color);
        line-height: 1;
        margin-bottom: 0;
        text-shadow: 0px 0px 8px rgba(32, 47, 76, 0.29);
    }

        .package-price sup {
            font-size: calc(24px + (40 - 24) * ((100vw - 300px) / (1920 - 300)));
        }

    .package-holder:hover .package-price {
        color: var(--white-color);
    }

    .package-holder {
        padding: 15px;
        position: relative;
        box-sizing: border-box;
        border: 1px dashed #0984e3;
        transition: 0.5s;
        -webkit-transition: 0.5s;
        -moz-transition: 0.5s;
        -ms-transition: 0.5s;
        -o-transition: 0.5s;
        text-align: center;
        min-height: 600px;
        border-radius: 5px;
        margin-bottom: 40px;
        background-color: transparent;
        -webkit-border-radius: 5px;
        -moz-border-radius: 5px;
        -ms-border-radius: 5px;
        -o-border-radius: 5px;
    }

        .package-holder .pck-btn {
            border: 0;
            border-radius: 8px;
            -webkit-border-radius: 8px;
            -moz-border-radius: 8px;
            -ms-border-radius: 8px;
            -o-border-radius: 8px;
            color: var(--white-color);
            padding: 14px 40px;
            font-weight: 500;
            background-color: var(--secondary-color);
        }

        .package-holder:hover {
            background-color: var(--secondary-color);
            transform: scale(1.05);
            -webkit-transform: scale(1.05);
            -moz-transform: scale(1.05);
            -ms-transform: scale(1.05);
            -o-transform: scale(1.05);
            box-shadow: 0px 0px 27px 0px rgba(7, 7, 7, 0.22);
            cursor: pointer;
            border-radius: 20px;
            -moz-border-radius: 20px;
            -ms-border-radius: 20px;
            -o-border-radius: 20px;
            -webkit-border-radius: 20px;
        }

        .package-holder > .package-content {
            min-height: 200px;
            padding: 0 30px;
        }

        .package-holder:hover .package-price {
            color: var(--white-color);
        }

        .package-holder:hover .btn-white {
            background-color: var(--yellowcolor);
            color: var(--secondary-color);
        }

    .package-list {
        list-style: none;
        height: 300px;
        padding: 0;
        overflow-y: auto;
        scroll-behavior: smooth;
    }

        .package-list strong {
            font-weight: 500;
        }

        .package-list li {
            font-size: calc(15px + (18 - 15) * ((100vw - 300px) / (1920 - 300)));
            font-weight: 400;
            color: var(--textcolor);
            margin-bottom: 15px;
            text-align: center;
            position: relative;
        }
    /* .package-list li::before {
    content:"\f00c";
    font-family:'FontAwesome';
    position: absolute;
    left:-25px;
    top:0;
    color:var(--primary-color);
    font-size:14px;
} */

    .package-holder:hover .package-list li {
        color: var(--white-color);
    }

    .package-holder:hover label {
        color: var(--white-color);
    }

    .package-holder:hover .package-title {
        color: var(--white-color);
    }
    /*
 *  STYLE 7
 */

    #style-7::-webkit-scrollbar-track {
        -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
        background-color: #F5F5F5;
        border-radius: 10px;
    }

    #style-7::-webkit-scrollbar {
        width: 6px;
        background-color: #F5F5F5;
    }

    #style-7::-webkit-scrollbar-thumb {
        border-radius: 10px;
        background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0.44, rgb(20, 20, 21)), color-stop(0.72, rgb(254,239,238)), color-stop(0.85, rgb(242,100,92)));
    }





    /* CTA ICON BOX */
    .cta-circle {
        border-radius: 50%;
        width: 90px;
        height: 90px;
        overflow: hidden;
        text-align: center;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .cta-ib img {
        transition: 0.3s;
        -webkit-transition: 0.3s;
        -moz-transition: 0.3s;
        -ms-transition: 0.3s;
        -o-transition: 0.3s;
        filter: brightness(0) saturate(100%) invert(67%) sepia(15%) saturate(480%) hue-rotate(169deg) brightness(94%) contrast(89%);
    }

    .cta-ib:hover img {
        transform: scale(1.1) rotate(360deg);
        -webkit-transform: scale(1.1) rotate(360deg);
        -moz-transform: scale(1.1) rotate(360deg);
        -ms-transform: scale(1.1) rotate(360deg);
        -o-transform: scale(1.1) rotate(360deg);
    }

    .cta-ib h6 {
        color: var(--white-color);
    }

    .cta-ib p {
        color: var(--white-color);
        font-weight: 500;
        line-height: 19px;
    }

    .rounded-corners {
        border-radius: 20px;
        -webkit-border-radius: 20px;
        -moz-border-radius: 20px;
        -ms-border-radius: 20px;
        -o-border-radius: 20px;
    }

    .cta-sec {
        position: relative;
        background-color: var(--light-bg);
    }

        .cta-sec .cta-ib p {
            font-size: calc(15px + (17 - 15) * ((100vw - 300px) / (1920 - 300)));
            font-weight: 500;
            color: #1d2935;
            line-height: 24px;
        }

    /* .cta-sec:before {
    content: "";
    width: 100%;
    height: 100px;
    background-color: #eaf0ff;
    position: absolute;
    top: 0;
    z-index: -1;
} */

    /* CTA ICON BOX END */

    /* Web Design Packages start */

    .web-tabs .nav {
        padding: 0;
        list-style: none;
        color: #999;
        text-align: left;
        line-height: 20px;
        transition: 0.5s;
        position: relative;
        /* z-index: 999; */
        padding-left: 30px;
        margin-bottom: 40px;
    }

    .exTab3 {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 5px 10px;
        width: 100%;
    }

    .web-tabs .nav li {
        padding: 0 10px;
        display: inline-block;
        margin-bottom: 15px;
    }

        .web-tabs .nav li a {
            font-size: calc(14px + (16 - 14) * (100vw - 320px) / (1920 - 320));
            padding: 12px 35px;
            background-color: var(--primary-color);
            display: inline-block;
            color: var(--white-color);
            transition: all 0.35s ease-in-out;
            border-radius: 25px;
            font-weight: 600;
            text-transform: uppercase;
        }

            .web-tabs .nav li a:hover,
            .web-tabs .nav > li a.active {
                background-color: var(--white-color);
                color: var(--primary-color);
            }

        .web-tabs .nav li .active {
            background-color: var(--white-color);
            color: var(--primary-color);
        }

    .fre-bee {
        background-color: var(--heading-colors);
        color: var(--white-color);
        font-size: 15px;
        font-weight: 500;
        width: 100%;
        padding: 10px 20px;
        text-align: center;
        letter-spacing: 0.4px;
        margin-bottom: 12px;
    }

    .desi-title {
        font-size: 16px;
        font-weight: 600;
        color: var(--heading-colors);
    }

        .desi-title span {
            background-color: var(--primary-color);
            color: var(--white-color);
            padding: 4px 8px;
        }
    /* Web Design Packages end */



    /* Testimonilas */
    .testimonials-sec {
        position: relative;
        margin-top: 80px;
    }

    .tm-item {
        background-color: var(--white-color);
        border: 0;
        border-radius: 15px;
        margin: 0 25px;
        box-shadow: 0 15px 15px 0px #77777761;
        padding: 25px 30px;
        margin-bottom: 30px;
    }

    .client-info {
        margin-top: 0;
        text-align: center;
        display: flex;
        align-items: center;
    }

    .tm-img {
        width: 100px;
        height: 100px;
        border-radius: 50%;
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        -ms-border-radius: 50%;
        -o-border-radius: 50%;
    }

    .client-info img {
        margin-bottom: 10px;
        margin-right: 30px;
    }

    .testimonials-slider .slick-slide .client-info img {
        display: none !important;
    }

    .tm-item h6 {
        color: #1d1d1d;
        font-size: calc(14px + (20 - 14) * ((100vw - 300px) / (1920 - 300)));
        font-weight: 500;
        margin: 15px 0;
    }

    .tm-item p {
        font-size: calc(12px + (15 - 12) * ((100vw - 300px) / (1920 - 300)));
        /* font-size:18px; */
        font-weight: 400;
        font-style: normal;
        color: #8c8b8b;
        margin-bottom: 15px;
        text-align: left;
    }
    /* Testimonilas End*/

    /* why choose us */

    /* why choose us End*/

    /* About Page Css Start */
    .inner-banner {
        position: relative;
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        min-height: 590px;
        padding: 100px 0;
        display: flex;
        align-items: center;
    }

        .inner-banner h2 {
            font-size: calc(24px + (50 - 24) * ((100vw - 300px) / (1920 - 300)));
            font-weight: 600;
            color: var(--title-color);
            margin: 0;
            line-height: 1;
        }
    /* About Page Css End */
    /* Footer */

    #footer {
        background-color: var(--footer-bg);
        padding-top: 250px;
        padding-bottom: 0;
    }

        #footer p,
        #footer,
        #footer a {
            color: #dcdcdc;
            font-size: 15px;
            font-weight: 400;
            text-align: left;
        }

            #footer h5 {
                color: var(--white-color);
                font-size: 18px;
                margin-bottom: 50px;
                position: relative;
                padding-bottom: 15px;
            }

                #footer h5::before {
                    content: "";
                    width: 100%;
                    height: 1px;
                    background-color: var(--white-color);
                    position: absolute;
                    bottom: -20px;
                }

            #footer h6 {
                color: #fcdfcf;
            }

    ul.foo-links {
        list-style: none;
        padding-left: 0;
    }

        ul.foo-links li {
            margin-bottom: 15px;
            font-size: 15px;
            font-weight: 400;
        }

            ul.foo-links li a {
                list-style: none;
                padding-left: 0;
                color: #dcdcdc;
                /* font-size: calc(12px + (16 - 12) * ((100vw - 300px) / (1920 - 300))); */
            }

    .foo-infobox-holder {
        /*display: flex;*/
        margin-bottom: 20px;
        align-items: center;
    }

        .foo-infobox-holder i {
            color: var(--primary-color);
            margin-right: 13px;
            font-size: 18px;
        }

        .foo-infobox-holder p {
            margin-bottom: 0;
        }

    .footer-top {
        padding-bottom: 60px;
    }

    .copyright {
        border-top: 1px solid #292830;
        padding-top: 30px;
        padding-bottom: 5px;
        margin-top: 10px;
    }

        .copyright p {
            font-size: 14px;
            font-weight: 400;
            color: #919192;
            text-align: center;
            margin-bottom: 10px;
        }

    .privacy {
        padding: 0;
    }

        .privacy li {
            list-style: none;
            padding: 0 10px;
            border-right: 1px solid #919192;
            margin: 0 auto;
            display: inline;
        }

            .privacy li a {
                font-size: 14px;
                font-weight: 400;
                color: #919192;
            }
    /* Footer End*/

    /* CTA 2 */

    .cta-2-sec {
        position: relative;
        bottom: -150px;
        padding: 0;
    }

    .cta-2-spacing {
        padding: 60px 50px;
        max-width: 950px;
        min-height: 300px;
        margin: 0 auto;
        border: 2px solid rgb(8, 132, 226);
        border-radius: 30px;
        background-color: rgb(255, 255, 255);
        box-shadow: 0px 10px 55.29px 1.71px rgba(8, 132, 226, 0.35);
    }
    @media (max-width : 575px) {
        .cta-2-spacing {
            padding: 30px;
        }
    }

    .footer-form input {
        border: 1px solid #dddddd;
        border-radius: 10px;
        -webkit-border-radius: 10px;
        -moz-border-radius: 10px;
        -ms-border-radius: 10px;
        -o-border-radius: 10px;
        margin-bottom: 20px;
        height: 64px;
    }

    .js-submit {
        background-color: #0884e2;
        padding: 13px 50px;
        border: 0;
        border-radius: 10px;
        margin: 0 auto;
        color: #fff;
        text-decoration: none;
    }

    .cta-2-spacing h4 {
        font-size: calc(24px + (34 - 24) * ((100vw - 300px) / (1920 - 300)));
        color: #0884e2;
        font-weight: 600;
        text-transform: uppercase;
    }

    .cta-2-sec .ctm-btn {
        background-color: var(--yellowcolor);
        color: var(--body-font-color);
        font-size: 16px;
        font-weight: 400;
        padding: 14px 40px;
        border-radius: 10px;
        -webkit-border-radius: 10px;
        -moz-border-radius: 10px;
        -ms-border-radius: 10px;
        -o-border-radius: 10px;
        margin-top: 50px;
    }

        .cta-2-sec .ctm-btn:hover {
            background-color: var(--white-color);
            color: var(--body-font-color);
        }

    /* CTA 2 End */

    /* Faqs About us */

    .accordion-button:not(.collapsed) {
        background-color: var(--primary-color);
        color: var(--white-color);
        font-size: calc(15px + (20 - 15) * ((100vw - 300px) / (1920 - 300)));
        font-weight: 600;
    }

        .accordion-button:not(.collapsed)::after {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
        }

    .accordion-item {
        margin-bottom: 10px;
        border-radius: 16px !important;
        overflow: hidden !important;
        -webkit-border-radius: 16px !important;
        -moz-border-radius: 16px !important;
        -ms-border-radius: 16px !important;
        -o-border-radius: 16px !important;
        border: 0;
    }

    .accordion-body {
        background-color: var(--light-bg);
        font-size: calc(13px + (18 - 13) * ((100vw - 300px) / (1920 - 300)));
        font-weight: 400;
    }

    .accordion-header button {
        background-color: var(--light-bg);
        color: var(--body-font-color);
        font-size: calc(14px + (20 - 14) * ((100vw - 300px) / (1920 - 300)));
        font-weight: 600;
    }

    .accordion-button:not(.collapsed)::after {
        filter: brightness(0) saturate(100%) invert(100%) sepia(2%) saturate(9%) hue-rotate(353deg) brightness(102%) contrast(105%);
    }

    .accordion-button::after {
        filter: brightness(0) saturate(100%) invert(59%) sepia(39%) saturate(4452%) hue-rotate(325deg) brightness(99%) contrast(91%);
    }

    .accordion-button:focus {
        border-color: none;
        box-shadow: none;
    }
    /* Faqs About us End*/

    /* review box */
    .review-box {
        padding: 50px 47px;
        background-color: var(--light-green);
        border-radius: 30px;
    }

    /* review box End */

    /*Pricing Table Styling  */

    .table-first-col {
        padding: 24px 25px;
    }

    .pricing-table-sec tr td {
        height: 150px;
        padding: 0 20px !important;
    }

    .p-table-header {
        height: 120px;
        background-image: url(../img/packages/pt-header-bg.html);
        background-size: contain;
        background-repeat: no-repeat;
        padding-top: 20px;
        padding-left: 16px;
    }

    .pt-price-holder {
        width: 100px;
        height: 100px;
        background-color: #7176f965;
        border-radius: 50%;
        text-align: center;
        margin-left: auto;
        margin-right: 13px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: -12px;
    }

    .pt-sm-text {
        font-size: 10px;
        line-height: 10px;
        display: inline-block;
    }

    .pt-price {
        font-size: 29px;
        line-height: 29px;
        margin-bottom: 0;
    }

    .border-rounded {
        border-radius: 40px;
        border: 1px solid #ccdbff;
    }

    .table-bordered {
        border-color: #c7cacf;
    }

    /*Pricing Table Styling  end*/

    /* // X-Large devices (large desktops, less than 1400px) */
    @media (max-width:1399.98px) {
        .spacing-ptb {
            padding: 75px 0;
        }
    }

    /* // Large devices (desktops, less than 1200px) */
    @media (max-width: 1199.98px) {
        /* New Responsive  */
        .tt-agent {
            display: none;
        }

        .main-nav-item p {
            font-size: 12px;
        }

        .spacing-ptb {
            padding: 50px 0;
        }

        .spacing-pt {
            padding-top: 40px;
        }

        .spacing-mb {
            margin-bottom: 50px;
        }

        .spacing-pb {
            padding-bottom: 30px;
        }

        #footer p,
        #footer,
        #footer a {
            font-size: 12px;
        }

        .package-list li {
            margin-bottom: 12px;
            font-size: 14px;
        }

        /* Inner Responsive start*/
        .spacing-mt {
            margin-top: 40px;
        }

        .spacing-mtb {
            margin: 40px 0;
        }

        .package-holder label {
            left: 10px;
        }

        .package-holder .pck-btn {
            padding: 14px 25px;
            font-size: 14px;
        }

        .trade-box .trade-text span {
            line-height: 1;
        }

        .home-banner {
            min-height: 600px;
            padding-bottom: 0;
        }

        .inner-banner {
            min-height: 380px;
            padding: 100px 0 50px;
        }

        .package-holder > .package-content {
            padding: 0 10px;
        }
    }

    /* // Medium devices (tablets, Grater than 992px) */
    @media (min-width: 992px) {
        .chat-icon {
            display: none !important;
        }
    }

    /* // Medium devices (tablets, less than 992px) */
    @media (max-width: 991.98px) {
        .info-header {
            display: none;
        }

        .header-btn {
            display: none;
        }

        .brand-logo img {
            width: 154px;
            height: auto;
        }

        .icon-box {
            margin-bottom: 20px;
        }

        .image-text-box {
            margin-bottom: 20px;
        }

        .package-holder {
            margin-bottom: 20px;
        }

        .wc-icon-box {
            margin-bottom: 20px;
        }

        .wc-icon-box-pkg {
            margin-bottom: 20px;
        }

        .test-rft {
            display: none;
        }

        .test-lft {
            display: none;
        }

        /* New Responsive  */
        .ic-list-item {
            margin-bottom: 20px;
        }

        .icon-list {
            font-size: 14px;
        }

        .sec-img-1 {
            margin-bottom: 20px;
        }

        .spacing-ptb {
            padding: 30px 0;
        }

        .spacing-pt {
            padding-top: 40px;
        }

        .spacing-mb {
            margin-bottom: 50px;
        }

        .spacing-pb {
            padding-bottom: 30px;
        }



        #footer p,
        #footer,
        #footer a {
            font-size: 12px;
        }

        .package-list li {
            margin-bottom: 12px;
            font-size: 14px;
        }

        /* Inner Responsive start*/
        .spacing-mt {
            margin-top: 30px;
        }

        .spacing-mtb {
            margin: 30px 0;
        }

        .qualifices-sec .qualifi-box {
            padding: 50px 35px;
        }

        .pricing-table-sec tr td {
            font-size: 12px;
        }

        .cta-sec:before {
            display: none;
        }

        .contact-section .contact-info .info-icon i {
            margin-top: 0;
        }
        /* New Responsive Start */
        .cta-2-spacing {
            background-size: cover;
            min-height: auto;
            /* display: block; */
        }

        .cta-2-sec .ctm-btn {
            padding: 14px 25px;
            margin-top: 0;
        }

        .cta-2-sec {
            bottom: 0;
        }

        #footer {
            background-color: var(--footer-bg);
            padding-top: 80px;
            padding-bottom: 0;
        }

        .home-banner {
            min-height: auto;
            padding-bottom: 70px;
        }

            .home-banner h1 {
                margin-bottom: 10px;
            }

        .cta-2-sec {
            bottom: -40px;
        }

        #footer {
            padding-top: 100px;
        }

        .image-text-content {
            padding: 0;
            min-height: auto;
        }

        .inner-banner {
            min-height: 300px;
            padding: 100px 0 50px;
        }

        .footer-top {
            padding-bottom: 0;
        }

        .contact-section .contact-info .info-box {
            margin-bottom: 0;
        }
    }

    /* // Small devices (landscape phones, less than 768px) */
    @media (max-width: 767.98px) {

        /* New Responsive  */
        .ic-list-item {
            margin-bottom: 20px;
        }

        .icon-list {
            font-size: 14px;
        }

        .sec-img-1 {
            margin-bottom: 20px;
        }

        .spacing-ptb {
            padding: 35px 0;
        }

        .spacing-pt {
            padding-top: 40px;
        }

        .icon-boxes:after {
            display: none;
        }

        .spacing-mb {
            margin-bottom: 40px;
        }

        .spacing-pb {
            padding-bottom: 30px;
        }

        #footer p,
        #footer,
        #footer a {
            font-size: 12px;
        }
        /* New Responsive Start */
        .home-banner {
            min-height: auto;
            padding: 100px 0 50px;
        }

        .bar-sec .secure-box {
            margin-bottom: 10px;
            border-right: 0;
        }

        .cta-2-sec {
            bottom: -20px;
        }

        #footer {
            padding-top: 80px;
        }

        .cta-2-spacing {
            background-size: cover;
            min-height: auto;
            display: block;
        }
        /* Inner Responsive Start */
        .inner-banner {
            min-height: 300px;
            padding-bottom: 50px;
        }

        .contact-section .contact-info .info-box {
            margin-bottom: 0;
        }

        .contact-section .form-box {
            padding: 25px;
        }

        .trade-sec .trade-bar-row {
            display: flex;
        }
    }

    /* X-Small devices (portrait phones, less than 576px) */
    @media (max-width: 575.98px) {
    }



    /* Packages css */

    .bgcpack-iPrimary {
        background-color: #72499d
    }

    .bgcpack-black {
        background-color: #000
    }

    .bgcpack-white {
        background-color: #fff
    }

    .bgcpack-yellow {
        background-color: #f6ff00
    }

    .bgcpack-iGreen {
        background-color: #019008
    }

    .bgcpack-iGreen1 {
        background-color: #0c043d
    }

    .bgcpack-iGray5 {
        background-color: #6d6d6d
    }

    .bgcpack-iRed {
        background-color: #fe1334;
    }

    .bgcpack-blue1 {
        background-color: #76b2cc;
    }

    .clcpack-iRed {
        color: var(--innersubtitle);
    }

    .clcpack-white {
        color: var(--white-color) !important;
    }

    .clcpack-black {
        color: #000;
    }

    .package-box {
        padding: 0 0 80px;
        background-position: center;
        margin-top: 0;
        margin-bottom: 20px;
        position: relative;
        height: 100%;
        border-radius: 12px;
        -webkit-box-shadow: 0 29px 50px 0 rgba(0, 0, 0, 0.17);
        box-shadow: 0 29px 50px 0 rgba(0, 0, 0, 0.17);
        background-size: cover;
        background: #fff;
    }

        .package-box .pck-head {
            position: relative;
            z-index: 1;
            background-color: #f6f6f6;
            border-top-left-radius: 12px;
            border-top-right-radius: 12px
        }

            .package-box .pck-head .pck-tags {
                position: absolute;
                left: 50%;
                top: -16px;
                margin: auto;
                border-radius: 4px;
                padding: 7px 18px;
                font-size: 11px;
                color: #fff;
                text-transform: uppercase;
                font-weight: 600;
                -webkit-transform: translateX(-50%);
                transform: translateX(-50%);
                min-width: 120px;
                text-align: center
            }

                .package-box .pck-head .pck-tags:before {
                    content: "";
                    width: 0;
                    height: 0;
                    border-style: solid;
                    line-height: 0;
                    border-color: transparent transparent #000 transparent;
                    -webkit-transition: all .35s ease;
                    transition: all .35s ease;
                    border-width: 0px 0px 16px 15px;
                    position: absolute;
                    left: -14px;
                    top: 0px
                }

                .package-box .pck-head .pck-tags:after {
                    content: "";
                    width: 0;
                    height: 0;
                    border-style: solid;
                    line-height: 0;
                    border-color: transparent transparent #000 transparent;
                    -webkit-transition: all .35s ease;
                    transition: all .35s ease;
                    border-width: 0px 15px 16px 0px;
                    position: absolute;
                    right: -14px;
                    top: 0px
                }

                .package-box .pck-head .pck-tags.clcpack-black {
                    color: #000
                }

            .package-box .pck-head h4 {
                color: var(--innersubtitle);
                display: -webkit-box;
                display: -ms-flexbox;
                display: flex;
                -webkit-box-align: center;
                -ms-flex-align: center;
                align-items: center;
                -webkit-box-pack: center;
                -ms-flex-pack: center;
                justify-content: center;
                text-align: center;
                font-weight: 800;
                border-top-left-radius: 12px;
                border-top-right-radius: 12px;
                padding: 15px 0 12px;
                margin-bottom: 0;
                font-size: calc(18px + (26 - 18) * (100vw - 320px) / (1920 - 320));
                background-color: var(--primary-color);
            }

                .package-box .pck-head h4 span {
                    color: #fff;
                    font-size: calc(18px + (26 - 18) * (100vw - 320px) / (1920 - 320))
                }

                .package-box .pck-head h4 img {
                    margin-right: 10px
                }

            .package-box .pck-head .pck-price {
                display: -webkit-box;
                display: -ms-flexbox;
                display: flex;
                -webkit-box-align: center;
                -ms-flex-align: center;
                align-items: center;
                -webkit-box-pack: center;
                -ms-flex-pack: center;
                justify-content: center;
                padding: 35px 0 20px;
                position: relative;
                width: 100%;
                background-color: #fff;
            }

                .package-box .pck-head .pck-price:before {
                    position: absolute;
                    left: 20px;
                    top: 0px;
                    bottom: 0;
                    margin: auto;
                    width: 65px;
                    height: 80px;
                    z-index: -1;
                    content: "";
                    background-repeat: no-repeat;
                    background-size: contain;
                    background-position: center center;
                    opacity: .3
                }

                .package-box .pck-head .pck-price h5 {
                    text-align: center;
                    margin-bottom: 0;
                    color: #000;
                    display: -webkit-box;
                    display: -ms-flexbox;
                    display: flex;
                    -webkit-box-pack: center;
                    -ms-flex-pack: center;
                    justify-content: center;
                    -webkit-box-align: center;
                    -ms-flex-align: center;
                    align-items: center;
                    -ms-flex-wrap: wrap;
                    flex-wrap: wrap;
                    position: relative
                }

                .package-box .pck-head .pck-price .dollar {
                    -ms-flex-item-align: start;
                    align-self: flex-start;
                    font-size: calc(24px + (45 - 24) * (100vw - 320px) / (1920 - 320));
                    color: #0c043d;
                }

                .package-box .pck-head .pck-price .price {
                    font-size: calc(50px + (85 - 50) * (100vw - 320px) / (1920 - 320));
                    line-height: 1;
                    letter-spacing: -5px;
                    font-weight: bold;
                    color: #0c043d;
                }

                .package-box .pck-head .pck-price .upto {
                    font-size: calc(12px + (14 - 12) * (100vw - 320px) / (1920 - 320));
                    font-weight: 600;
                    -webkit-box-flex: 0;
                    -ms-flex: 0 0 100%;
                    flex: 0 0 100%;
                    max-width: 100%
                }

        .package-box .pck-foot {
            position: absolute;
            bottom: 0;
            width: 100%;
            left: 0;
            padding: 10px;
            background-color: none;
            border-radius: 0 0 12px 12px;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            -webkit-box-pack: center;
            -ms-flex-pack: center;
            justify-content: center
        }

            .package-box .pck-foot .btn-primary {
                border-radius: 7px;
                font-size: calc(15px + (17 - 15) * (100vw - 320px) / (1920 - 320));
                font-weight: 500;
                background-color: var(--primary-color);
                -webkit-box-shadow: none;
                border: 0;
                box-shadow: none;
                color: var(--white-color);
                padding: 12px 40px;
            }

                .package-box .pck-foot .btn-primary:hover {
                    background-color: var(--yellowcolor);
                    color: var(--body-font-color);
                }

    @media (max-width: 767px) {
        .package-box .pck-foot {
            position: static
        }
    }

    .package-box .pck-content {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        height: calc(100% - 200px);
        background-color: var(--white-color);
    }

    .package-box .pck-topContent {
        padding: 20px 25px 0;
        background: var(--white-color);
    }

        .package-box .pck-topContent ul {
            padding-left: 0
        }

    @media (max-width: 991px) {
        .package-box .pck-topContent {
            padding: 20px 25px 20px
        }
    }

    .package-box .pck-bottomContent {
        padding: 0 20px
    }

        .package-box .pck-bottomContent > ul {
            margin-bottom: 20px;
            padding-left: 0
        }

            .package-box .pck-bottomContent > ul.freebies-list > li {
                min-height: 68px
            }

    @media (max-width: 1199px) {
        .package-box .pck-bottomContent > ul.freebies-list > li {
            min-height: 64px
        }
    }

    .package-box ul li {
        padding-left: 25px;
        padding-bottom: 12px;
        padding-top: 12px;
        position: relative;
        border-bottom: #d2d2d2 solid 1px;
        font-size: calc(12px + (14 - 12) * (100vw - 320px) / (1920 - 320));
        font-weight: 500;
        line-height: 1.5;
        list-style: none;
    }

        .package-box ul li:last-child {
            border-bottom: 0
        }

        .package-box ul li .ic-tik {
            background-image: url("../img/packages/tik.html");
            width: 16px;
            height: 12px;
            position: absolute;
            left: 0;
            top: 15px;
            background-size: contain;
            background-repeat: no-repeat;
            margin-left: 0
        }

        .package-box ul li .cus-tooltip {
            display: inline-block
        }

    .package-box .hl-days {
        color: #fff;
        background-color: #0c043d;
        padding: 3px 5px
    }

    .package-box .as-btn {
        padding: 5px;
        margin-bottom: 10px
    }

        .package-box .as-btn p {
            margin-bottom: 0;
            text-align: center
        }

    @media (max-width: 991px) {
        .package-box .as-btn {
            margin: 0 0 20px
        }
    }

    .package-box p {
        font-weight: 800;
        margin-bottom: 20px;
        line-height: 1.8;
        font-size: calc(14px + (18 - 14) * (100vw - 320px) / (1920 - 320))
    }

        .package-box p span.cl-iRed,
        .package-box p span.cus-tooltip {
            padding: 0 2px
        }

        .package-box p.sm {
            font-size: 12px;
            margin-bottom: 15px
        }

    @media (max-width: 767px) {
        .package-box p.sm {
            position: relative
        }
    }

    .package-box p.lht-12 {
        line-height: 1.2
    }

    .package-box p.bd-bottom {
        border-bottom: #d2d2d2 solid 1px;
        padding-bottom: 12px
    }

    .package-box .mid-text {
        text-align: center
    }

        .package-box .mid-text h4 {
            font-weight: 900;
            margin: 0;
            color: #000;
            font-size: calc(24px + (40 - 24) * (100vw - 320px) / (1920 - 320))
        }

        .package-box .mid-text h5 {
            font-weight: 700;
            margin: 0px 0 10px 0;
            color: #000;
            font-size: calc(24px + (33 - 24) * (100vw - 320px) / (1920 - 320))
        }

        .package-box .mid-text h6 {
            font-weight: 600;
            margin: 0;
            color: #000;
            font-size: calc(16px + (25 - 16) * (100vw - 320px) / (1920 - 320))
        }

        .package-box .mid-text .plus-icon {
            margin: 10px 0;
            display: block
        }

    @media (max-width: 991px) {
        .package-box {
            height: auto;
            margin-bottom: 40px
        }
    }

    @media (max-width: 767px) {
        .package-box {
            padding-bottom: 0
        }
    }

    .dtbl {
        display: table;
        table-layout: fixed;
        width: 100%
    }

        .dtbl .dtd {
            display: table-cell
        }

            .dtbl .dtd.wdper-60 {
                width: 60%
            }

        .dtbl.vMiddle .dtd {
            vertical-align: middle
        }

    .cus-tooltip {
        position: relative;
        display: inline-block;
        vertical-align: middle;
        padding-top: 20px;
        padding-left: 12px
    }

        .cus-tooltip > img {
            width: 12px;
            display: block;
            position: absolute;
            top: 2px;
            left: 0
        }

        .cus-tooltip i {
            color: #fe1334
        }

            .cus-tooltip i.custome {
                position: relative
            }

        .cus-tooltip .tooltiptext {
            visibility: hidden;
            opacity: 0;
            pointer-events: none;
            -webkit-transition: all .35s ease;
            transition: all .35s ease;
            max-width: 240px;
            min-width: 240px;
            background-color: #fff;
            color: #000;
            border: 0;
            text-align: left;
            border-radius: 6px;
            padding: 0;
            position: absolute;
            top: 20px;
            left: 50%;
            -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
            position: absolute;
            z-index: 5;
            -webkit-box-shadow: 0 0 50px 0 rgba(0, 0, 0, 0.2);
            box-shadow: 0 0 50px 0 rgba(0, 0, 0, 0.2)
        }

            .cus-tooltip .tooltiptext > p {
                font-size: calc(12px + (12 - 12) * (100vw - 320px) / (1920 - 320));
                font-weight: 400;
                margin-bottom: 0;
                line-height: 1.2
            }

            .cus-tooltip .tooltiptext .ttClose {
                width: 25px;
                height: 25px;
                border-radius: 50%;
                background-color: #72499d;
                position: absolute;
                right: -10px;
                top: -10px;
                z-index: 1;
                line-height: 22px;
                text-align: center;
                display: none
            }

                .cus-tooltip .tooltiptext .ttClose img {
                    width: 12px
                }

    @media (max-width: 991px) {
        .cus-tooltip .tooltiptext .ttClose {
            display: inline-block
        }
    }

    .cus-tooltip .tooltiptext > ul {
        padding: 0 15px
    }

        .cus-tooltip .tooltiptext > ul > li {
            font-size: calc(12px + (12 - 12) * (100vw - 320px) / (1920 - 320))
        }

            .cus-tooltip .tooltiptext > ul > li .ic-tik {
                width: 14px;
                height: 12px
            }

    .cus-tooltip .tooltiptext .view-tt {
        cursor: pointer;
        vertical-align: top;
        display: inline-block;
        position: absolute;
        right: 0;
        top: -3px
    }

    .cus-tooltip .tooltiptext > img {
        max-width: 100%
    }

    .cus-tooltip .tooltiptext.wd-300 {
        max-width: 300px
    }

    .cus-tooltip .tooltiptext.sty1 {
        padding: 10px 15px
    }

    @media (max-width: 991px) {
        .cus-tooltip .tooltiptext {
            position: fixed;
            left: 50%;
            top: 50%;
            width: 280px;
            max-width: 100%;
            -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
            z-index: 11
        }
    }

    .cus-tooltip.sty1 {
        width: 100%;
        margin: 0;
        padding-top: 14px
    }

        .cus-tooltip.sty1 .tooltiptext {
            padding: 10px
        }

    @media (min-width: 992px) {
        .cus-tooltip:hover > .tooltiptext {
            visibility: visible;
            opacity: 1;
            pointer-events: inherit
        }
    }

    @media (max-width: 991px) {
        .cus-tooltip.is-ttShow > .tooltiptext {
            visibility: visible;
            opacity: 1;
            pointer-events: inherit
        }
    }

    body.is-mbttShow {
        overflow: hidden
    }

        body.is-mbttShow .defaultOverlay {
            visibility: visible;
            opacity: 1;
            pointer-events: inherit
        }

    .defaultOverlay {
        position: fixed;
        top: 0;
        left: 0;
        bottom: 0;
        -webkit-transition: all .35s ease;
        transition: all .35s ease;
        width: 100%;
        z-index: 10;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        background-color: rgba(0, 0, 0, 0.2)
    }


    .pricing ul {
        padding: 0;
        list-style: none;
        color: #999;
        text-align: left;
        line-height: 20px;
        transition: 0.5s;
        position: relative;
        /* z-index: 999; */
        padding-left: 30px;
    }

    @media (max-width: 991px) {
        .pricing ul {
            width: 100%;
            padding-left: 0;
        }
    }

    .pricing ul li {
        padding-bottom: 12px;
    }

    @media (max-width: 991px) {
        .pricing ul li {
            width: 100%;
        }

            .pricing ul li a {
                width: 100%;
                text-align: center;
            }
    }

    .pricing ul i {
        color: #d30029;
        font-size: 18px;
        padding-right: 4px;
        transition: 0.5s;
        margin-left: -23px;
    }

    .pricing ul .na {
        color: #ccc;
    }

        .pricing ul .na i {
            color: #ccc;
        }

    .ctm-thin-text {
        font-weight: 400;
        margin-bottom: 10px;
        font-size: 14px;
    }

    .pricing ul .na span {
        text-decoration: line-through;
    }

    .pricing .get-started-btn {
        display: inline-block;
        padding: 10px 40px 11px 40px;
        border-radius: 4px;
        color: #0b2341;
        transition: none;
        font-size: 14px;
        font-weight: 600;
        transition: 0.3s;
        border: 2px solid #0b2341;
        background: #fff;
    }

        .pricing .get-started-btn:hover {
            background: #0b2341;
            color: #fff;
        }

    .pricing .featured {
        z-index: 10;
        /*padding: 100px 40px;*/
        border: 4px solid #d30029;
    }

        .pricing .featured .get-started-btn {
            background: #d30029;
            color: #fff;
            border-color: #d30029;
        }

            .pricing .featured .get-started-btn:hover {
                background: #1d71b8;
            }

    @media (max-width: 992px) {
        .pricing .box {
            max-width: 100%;
            margin: 0 auto 30px auto;
        }
    }

    @media (max-width: 767px) {
        .pricing .box {
            margin: 0 auto 30px auto;
        }
    }

    @media (max-width: 420px) {
        .pricing .box {
            max-width: 100%;
            margin: 0 auto 30px auto;
        }
    }




    .package-tab-list {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 5px 10px;
        width: 100%;
    }

        .package-tab-list > li {
            padding: 0 10px;
            display: inline-block;
        }

            .package-tab-list > li a {
                font-size: calc(12px + (15 - 12) * (100vw - 320px) / (1920 - 320));
                padding: 12px 35px;
                background-color: var(--white-color);
                display: inline-block;
                margin-bottom: 10px;
                color: var(--innersubtitle);
                transition: all 0.35s ease-in-out;
                border-radius: 25px;
                font-weight: 600;
                text-transform: uppercase;
                box-shadow: 0px 5px 25px 0px rgba(11, 38, 71, 0.2);
            }

    @media (max-width: 1600px) {
        .package-tab-list > li a {
            padding: 10px 20px;
        }
    }

    @media (max-width: 991px) {
    }

    .package-tab-list > li a:hover, .package-tab-list > li a .is-active {
        background-color: var(--primary-color);
        color: var(--white-color);
    }

    .package-tab-list > li .is-active {
        background-color: var(--primary-color);
        color: var(--white-color);
    }

    @media (max-width: 991px) {
        .package-tab-list {
            flex-direction: column;
        }
    }

    .tabs-content > .is-active {
        display: block;
    }

    .tabs-content > * {
        display: none;
    }

    .addon-pack-selection {
        padding: 20px;
        position: absolute;
        bottom: 0;
        width: 100%;
    }

    @media(max-width:991px) {
        .addon-pack-selection {
            position: relative;
        }
    }

    .addon-pack-selection h6 {
        font-size: calc(14px + (20 - 14) * (100vw - 320px) / (1920 - 320));
        font-weight: 700;
    }

        .addon-pack-selection h6 span {
            background-color: #d30029;
            padding: 0px 6px;
            color: #fff;
            line-height: 1.4;
            font-size: calc(14px + (18 - 14) * (100vw - 320px) / (1920 - 320));
        }

    .addon-pack-selection .radio-bx {
        display: flex;
        align-items: center;
    }

        .addon-pack-selection .radio-bx input {
            margin-right: 5px;
        }

        .addon-pack-selection .radio-bx label {
            margin: 0;
            font-size: calc(13px + (16 - 13) * (100vw - 320px) / (1920 - 320));
        }

        .addon-pack-selection .radio-bx a {
            font-weight: 700;
            color: #000;
            text-decoration: underline !important;
        }

    .addon-pack-selection a {
        font-weight: 700;
        color: #000;
    }

    .pack-height {
        min-height: 600px;
        max-height: 100%;
    }

        .pack-height.sm {
            height: 400px;
            position: relative;
            z-index: 9;
        }

        .pack-height.lr {
            height: 800px;
        }

    .fs-25 {
        font-size: 25px !important;
    }

    .addon-main {
        height: 240px;
        position: relative;
    }

    @media(max-width:991px) {
        .addon-main {
            height: auto;
        }
    }

    .addon-list {
        padding: 20px;
    }

        .addon-list li {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 10px;
        }

            .addon-list li div {
                display: flex;
                align-items: center;
                flex: 1;
            }

                .addon-list li div p {
                    margin: 0;
                    font-size: calc(12px + (14 - 12) * (100vw - 320px) / (1920 - 320));
                    justify-content: space-between;
                }

                    .addon-list li div p i {
                        color: red;
                        margin: 0;
                    }

                .addon-list li div i {
                    color: #d30029;
                }

            .addon-list li span {
                color: #d30029;
                font-weight: 600;
                font-size: calc(11px + (13 - 11) * (100vw - 320px) / (1920 - 320));
                flex: 0 0 35%;
                max-width: 35%;
            }


    .site-list {
        padding: 0;
    }

        .site-list li {
            list-style: none;
            margin-bottom: 10px;
        }

            .site-list li a {
                font-size: calc(16px + (20 - 16) * ((100vw - 300px) / (1920 - 300)));
                font-weight: 500;
                color: var(--secondary-color);
                text-align: left;
                position: relative;
                transition: 0.3s;
                -webkit-transition: 0.3s;
                -moz-transition: 0.3s;
                -ms-transition: 0.3s;
                -o-transition: 0.3s;
            }

                .site-list li a:hover {
                    color: var(--primary-color);
                    font-weight: 500;
                }

    .header-form input {
        border: 1px solid rgb(77, 78, 78);
        border-radius: 10px;
        /*background-color: transparent;*/
        height: 53px;
        margin-bottom: 5px;
        width: 100%;
        padding: 8px 10px;
    }

        .header-form input:focus {
            background-color: transparent;
            border: 1px solid rgb(77, 78, 78);
            box-shadow: none;
        }

    .terms-sec {
        position: relative;
    }

        .terms-sec h4 {
            font-size: calc(22px + (30 - 22) * ((100vw - 300px) / (1920 - 300)));
            font-weight: 600;
            color: var(--heading-colors);
            margin: 20px 0;
        }

        .terms-sec h6 {
            font-size: calc(18px + (25 - 18) * ((100vw - 300px) / (1920 - 300)));
            font-weight: 600;
            color: var(--heading-colors);
            margin: 20px 0;
        }

        .terms-sec p {
            font-size: calc(12px + (16 - 12) * ((100vw - 300px) / (1920 - 300)));
            font-weight: 400;
            color: var(--text-light-2);
            margin-bottom: 20px;
        }

    .bg-shape {
        position: absolute;
        right: 0;
        top: 0;
        width: 30%;
        height: 100%;
        pointer-events: none;
        z-index: -1;
    }

    .bg-shape.left {
        right: auto;
        left: 0;
    }

    .bg-shape .dotted {
        left: -50px;
        position: absolute;
        top: 0;
    }

    .bg-shape.left .dotted {
        right: -50px;
        left: auto;
    }

    .bg-shape.w-20 {
        width: 20%;
    }

    .bg-shape.w-25 {
        width: 25%;
    }

    .bg-shape.w-30 {
        width: 30%;
    }

    .bg-shape.w-50 {
        width: 50%;
    }

    .img-corner-20 {
        border-radius: 20px;
        overflow: hidden;
    }

    .contactForm {
        display: inline-block;
        width: 100%;
        height: 100%;
        background-color: #fff;
        border-radius: 18px;
        border: #0884e2 solid 2px;
        padding: 30px;
    }

    .addressArea {
        display: inline-block;
        width: 100%;
        height: 100%;
        background-color: #b5daf7;
        border-radius: 18px;
        padding: 30px;
    }

    .detail-list {
        display: flex;
        align-items: center;
        margin-bottom: 25px;
    }

    .detail-list .iconBox {
        display: flex;
        align-items: center;
        justify-content: center;
        color: #b5daf7;
        max-width: 38px;
        flex: 0 0 38px;
        height: 38px;
        border-radius: 50%;
        background-color: #0884e2;
        margin-right: 10px;
    }

    .detail-list .textarea {
        display: flex;
        align-items: center;
        color: #807e7e;
        font-size: 17px;
        font-weight: 600;
    }

    .detail-list .textarea a {
        color: #807e7e;
        transition: all ease-in-out 0.3s;
    }

    .detail-list .textarea a:hover {
        color: #fff;
    }

    .addressArea .mapBox {
        display: inline-block;
        width: 100%;
        height: 156px;
        border-radius: 18px;
        overflow: hidden;
        border: #0884e2 solid 2px;
    }

    .column-box {
        background-color: #52a1f2;
        border-radius: 18px;
        padding: 30px;
        text-align: center;
        color: #e4e4e4;
        min-height: 480px;
    }

        .column-box p {
            color: #fff;
            font-size: calc(13px + (16 - 13) * (100vw - 320px) / (1920 - 320));
        }

        .column-box h5 {
            color: #fff;
            font-size: 20px;
            font-weight: 600;
            padding: 0;
            margin: 0 0 10px 0;
        }

        .column-box a.read {
            color: #fff;
            text-decoration: none;
            text-align: left;
        }

        .column-box .img-box {
            border-radius: 18px;
            margin: 0 0 20px 0;
            overflow: hidden;
            width: 100%;
            height: 245px;
        }

            .column-box .img-box img {
                width: 100%;
                height: 100%;
                object-fit: cover;
            }

@media (max-width: 767px) {
    .bg-shape .dotted {
        display: none;
    }
    .column-box {
        min-height: inherit;
        margin-bottom: 20px;
    }
    .home-banner.inner .banner-form {
        margin-bottom: 30px;
    }
}
@media (max-width: 480px) {
    .what, .pink-label {
        font-weight: 700;
        color: #000;
        background-color: transparent;
        padding: 0;
    }
}
.feature-slide img {
    filter: grayscale(1);
}
.lp-bottom-link {
    display: flex;
    justify-content: flex-end
}
.lp-bottom-link li {
    margin: 0 8px;
    list-style-type: none;
}
.lp-copyright p {
    text-align: left;
}
@media (max-width: 991px) {
    .lp-copyright p {
        text-align: center;
    }
    .lp-bottom-link {
        justify-content: center;
    }
    #footer p,
    #footer,
    #footer a {
        text-align: center;
    }
}
/*New styles added for LPs*/

.slide-content h1 strong {
    /*font-weight: bold;*/
    color: #ff7675;
    display: block;
}

/*.slide-content h1 {
    display:block
}*/


.common-title strong {
    /*font-weight: bold;*/
    color: #ff7675;
    font-size: calc(22px + (42 - 22) * ((100vw - 300px) / (1920 - 300)));
    font-weight: 600;
}
.service-sec strong {
    color: #ff7675;
    font-size: inherit;
    font-size: calc(22px + (47 - 22) * ((100vw - 300px) / (1920 - 300)));
    font-weight: 600;
}
.tm-registration-sec span {
    background-color: #ff7675;
    padding: 0 10px;
}
.about-sec h3 strong {
    color: #ff7675;
    font-size: calc(22px + (35 - 25) * ((100vw - 300px) / (1920 - 300)));
    font-weight: 500;
}


.home-banner.inner::after {
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    position: absolute;
    right: 0;
    z-index: -1;
    pointer-events: none;
    width: 30%;
    height: 100%;
    background-image: url('../img/banner/inner-after.webp');
    background-repeat: no-repeat;
    background-size: cover;
}

.home-banner.inner.cad-banner::after {
    background-image: url('../img/banner/cad-banner.webp');
    width: 100%;
}
.home-banner.inner.cad-banner {
    position: relative;
}
.home-banner.inner.cad-banner .overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #ffffffed;
}
.home-banner.inner.cad-banner .container {
    position: relative;
    z-index: 1;
}
/*for Payment*/
.MainLabel {
    font-weight: 700 !important;
    font-size: 15px !important;
}

.form-body {
    background: url("../images/payment-body-img.jpg");
    height: auto;
    min-height: calc(100vh);
    font-family: 'Lato', sans-serif;
    font-weight: 500;
}

    .form-body .input {
    }

    .form-body .form-input {
        display: block;
        padding: 6px 8px;
        border: none;
        border-radius: 2px;
        font-size: 15px;
        box-shadow: 3px 3px 30px #b1d2dc;
        background: #eef4fe !important;
        height: 40px;
        border-radius: 25px !important;
        font-family: 'Lato', sans-serif;
        margin: 0px;
        width: 100%;
    }

        .form-body .form-input:focus {
            border: none;
            box-shadow: 3px 3px 30px #b1d2dc;
            outline: none;
        }


    .form-body h5.descriptor {
        margin-top: 0px;
        color: #202020;
        font-size: 15px;
        font-weight: 700;
        text-transform: uppercase;
        margin-bottom: 2px !important;
    }

    .form-body .descriptor strong {
        color: #0c6f6d !important;
        font-size: 15px !important;
        text-transform: uppercase !important;
        margin-bottom: 2px !important;
    }

    .form-body .input-label {
        display: block;
        font-family: 'Lato', sans-serif;
        font-size: 12px;
        font-weight: 400;
        text-transform: uppercase;
        margin: 4px 6px 7px;
        color: #202020 !important;
    }

    .form-body .btn-Pay {
        color: white;
        margin: 0 0 8px;
        font-size: 0.9em;
        cursor: pointer;
        background: #006d92;
        background: linear-gradient(90deg, #006d92 1%, #2ab2e1 100%) !important;
        height: 40px;
        border-radius: 30px !important;
    }

        .form-body .btn-Pay:hover {
            background-color: deepskyblue !important;
            color: white !important;
        }

    .form-body .container-form {
        padding-right: 230px !important;
        padding-left: 288px !important;
    }

        .form-body .container-form h2 {
            font-size: 15px;
            color: #E83625;
            /* font-weight: 500; */
            font-family: 'Poppins', sans-serif;
            margin: 0 0 15px;
            position: relative;
            display: inline-block;
            text-transform: capitalize;
        }
/*media Queries*/
@media (max-width: 998px) {
    .form-body .container-form {
        padding-right: 15px !important;
        padding-left: 15px !important;
    }
}