/*
Theme Name: Trademark Child
Theme URI: https://them.es/starter
Template: trademark
Author: Sufyan
Author URI: https://them.es/
Tags: custom-background,custom-colors,featured-images,flexible-header,microformats,post-formats,rtl-language-support,theme-options,translation-ready,accessibility-ready
Version: 3.5.2.1712355785
Updated: 2024-04-05 22:23:05

*/

html{
    overflow-x: hidden;
   
}
:root {
    /* --primary-color: #2d6cf7; */
    --primary-color: #052652;
    --secondary-color: #181617;
    /* --section-bg-color: #feeeee; */
    --bg-light-blue: #eaf0ff;
    --body-font-color:#181617;
    --white-color: #ffffff;
    --heading-colors: #162231;
    --light-bg: #e9ebf5;
    --footer-bg:#0b0916;
    --text-light:#2b3440;
    --text-light-2:#5a5a5a;
    --yellowcolor:#e9c02e;
       /* --yellowcolor:#ffd561; */
    --innersubtitle:#0c043d;
        --accent-color-3: #1F1F1F;
    --accent-color-4: #0E0E0E;

}
#main{
    margin:0 !important;
}
body {
    font-family: "Poppins", sans-serif !important;
    color: var(--body-font-color);
    font-size: 16px !important;
    
}

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
--------------------------------------------------------------*/
.brand-logo img{
    width: 200px;
    height: auto;
}
#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: var(--yellowcolor);
    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 +(18 - 14)*((100vw - 300px) /(1920 - 300))) !important;
    font-weight: 500 !important;
    background-color: var(--yellowcolor) !important;
    padding: 14px 60px !important;
    display: inline-block !important;
    color: var(--primary-color) !important;
    margin-bottom: 14px ;
    margin-right: 10px;
    border-radius: 0 !important;
    border: 0 !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;
}

.btn-white:hover {
    /* background-color:var(--primary-color) !important; */
    background-color:var(--primary-color) !important;
    color:var(--white-color) !important;
    border:transparent !important;
}

.btn-secondary {
    font-size: calc(14px + (18 - 14) * ((100vw - 300px) / (1920 - 300)));
    font-weight:400;
    background-color: transparent;
    padding:14px 45px;
    display:inline-block;
    color:var(--secondary-color)!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(--primary-color)!important;
    color:var(--white-color)!important;
    border:1px solid transparent!important;
}
.btn-secondary:focus{
    box-shadow:none!important;
    background-color:transparent!important;
}

/* Buttons End */

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

.modal-open{
    padding-right:0 !important;
}
.modal-body{
    background-image:url(/assets/img/banner/home-banner.jpg);
    background-repeat:no-repeat;
    background-size: cover;
}

#header {
    transition: all 0.5s;
    /*z-index: 997;
    */
    padding:0px 0px 15px 0px;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    background-color: #fff;
}

#header.header-scrolled {
    /* padding:10px 0; */
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    background-color: var(--white-color);
}
#header.header-scrolled .top-bar{
    
      /* transform: translateY(-100%); */
}
#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;
}

/*--------------------------------------------------------------
# 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: 15px;
    color:var(--secondary-color);
    white-space: nowrap;
    transition: 0.3s;
    font-weight: 600;
    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 20px;
    text-transform: none;
}

.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(--yellowcolor);
}

.navbar .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
}
.dropdown-item.active, .dropdown-item:active{
    background-color: var(--primary-color) !important;
}
.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;
    }

    .navbar ul {
        display: none;
    }
  
}

.navbar-mobile {
    position: fixed !important;
    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);
}

.info-header {
    display: flex;
/*     align-items: center; */
	    align-items: end;
    justify-content: flex-end;
    /* margin-right: 20px; */
}
.top-bar{
    background-color: var(--yellowcolor);
    position: relative;
    height: 40px;
    display: flex;
    align-items: anchor-center;
    transition: transform 0.4s ease-in-out;
}
.tt-agent {
    margin-right:0;
    font-weight:600;
    font-size:14px;
}
.phone-top{
    margin-right:10px;
}
.phone-top img{
/*   filter: brightness(0) saturate(100%) invert(12%) sepia(82%) saturate(1381%) hue-rotate(196deg) brightness(93%) contrast(104%); */
	filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7488%) hue-rotate(294deg) brightness(103%) contrast(103%);
}
.tt-agent a{
    color: #fff;
}

/* Home Page Css start */

.home-banner{
    position:relative;
    /* min-height:991px; */
    margin-top: 7%;
    padding: 160px 0;
    display:flex;
    z-index: 1;
    align-items:center;
    background-repeat:no-repeat;
    background-size:cover;
    color: #fff;
    background-position:center;
    justify-content: center;
    box-shadow: 0px 0px 68px 0px rgba(29, 63, 138, 0.2);
    /* border-radius: 0% 0% 47% 49% / 10% 10% 10% 10% ;
    -webkit-border-radius: 0% 0% 47% 49% / 10% 10% 10% 10% ;
    -moz-border-radius: 0% 0% 47% 49% / 10% 10% 10% 10% ;
    -ms-border-radius: 0% 0% 47% 49% / 10% 10% 10% 10% ;
    -o-border-radius: 0% 0% 47% 49% / 10% 10% 10% 10% ; */
}

.home-banner::before{
        content: '';
    position: absolute;
    background-image: radial-gradient(at top left, var(--accent-color-3) 0%, var(--accent-color-4) 50%);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 100%;
    opacity: 0.5;
    top: 0;
    left: 0;
    z-index: -1;
}








/* Header End */
/* Main Banner Start */
.home-banner h1{
    font-size: calc(26px + (50 - 26) * ((100vw - 300px) / (1920 - 300)));
    font-weight:600;
    /* color:var(--heading-colors); */
    margin-bottom:25px;
}

.home-banner h1 span{
    color: var(--yellowcolor);
}
.home-banner p{
    font-size: calc(20px + (31 - 20) * ((100vw - 300px) / (1920 - 300)));
    font-weight:400;
    color:#fff;
    margin-bottom:25px;
}
.home-banner p{
    font-size: calc(16px + (20 - 16) * ((100vw - 300px) / (1920 - 300)));
    font-weight:300;
    /* color:var(--secondary-color); */
    margin:25px 0;
}
.home-banner h6 a{
    /* color: var(--primary-color); */
    margin:0 10px ;
}
.home-banner h2{
    font-size: calc(23px + (30 - 23) * ((100vw - 300px) / (1920 - 300)));
}
.home-banner .banner-img{
  width:100%;
}
.home-banner .banner-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* main Banner End */

.common-title{
    font-size: calc(22px + (36 - 22) * ((100vw - 300px) / (1920 - 300)));
    font-weight:600;
    color: var(--heading-colors); 
    margin-bottom:5px; 
}

.common-text{
    font-size:calc(12px + (17 - 12) * ((100vw - 300px) / (1920 - 300)));
    font-weight:400;
    color:var(--text-light-2);  
}
.tm-registration-sec{
    position: relative;
    background-color: var(--light-bg);
}
/* Home page Css End */


/* Spacings */
.spacing-ptb {
    padding:90px 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 h3 {
    font-size: calc(16px + (20 - 16) * (100vw - 320px) / (1920 - 320));
    color:var(--innersubtitle);
    font-weight:600;
    margin-bottom: 10px;
}

.qualifices-sec .qualifi-box h5 {
    font-size: calc(18px + (22 - 18) * ((100vw - 300px) / (1920 - 300)));
   
}

.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("/assets/img/icons/arrow-icon.png");
    background-repeat: no-repeat;
    width: 16px;
    height: 14px;
    position: absolute;
    filter: invert(19%) sepia(86%) saturate(2584%) hue-rotate(218deg) brightness(76%) contrast(94%);
    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 .form-box {
    margin-bottom: 25px;
    background-color: var(--light-bg);
    padding:80px 0;
    border-radius: 81px;
    -webkit-border-radius: 81px;
    -moz-border-radius: 81px;
    -ms-border-radius: 81px;
    -o-border-radius: 81px;
}

.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 h3{
    font-size: calc(22px + (36 - 22) * ((100vw - 300px) / (1920 - 300)));
    font-weight: 600;
    color:var(--innersubtitle);
    margin-bottom: 5px;
}
.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;
    text-align: center;
}

.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;
    justify-content: center;
}

.contact-section .contact-info .info-icon i {
    /* font-family: "FontAwesome"; */
    font-size: 18px;
    color: var(--primary-color);
    margin-right: 15px;
    margin-top: 5px;
}
.image img{
    width: 100%;
    height: auto;
}
.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;
    /* background-color: #e9ebf5; */
    border: 1px solid var(--primary-color);
    padding:20px 20px;
    border-radius:50px ;
    -webkit-border-radius:50px ;
    -moz-border-radius:50px ;
    -ms-border-radius:50px ;
    -o-border-radius:50px ;
}

.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-sec{
    position: relative;
    padding:25px 0;
} 
.bar-sec .bar-color{
    background-color: var(--primary-color);
    border:0;
    border-radius: 60px;
    -webkit-border-radius: 60px;
    -moz-border-radius: 60px;
    -ms-border-radius: 60px;
    -o-border-radius: 60px;
    max-width: 950px;
    margin: 0 auto;
    padding:20px ;
}
.bar-sec .bb-broder{
    border:1px dashed var(--primary-color);
    max-width: 970px;
    margin: 0 auto;
    border-radius: 60px;
    -webkit-border-radius: 60px;
    -moz-border-radius: 60px;
    -ms-border-radius: 60px;
    -o-border-radius: 60px;
    padding: 10px;
}
.bar-sec .secure-box{
    display:flex;
    align-items:center;
    padding-right: 20px;
    border-right:1px solid #000;
}
.bar-sec .secure-box .secure-icon{
    margin-right:15px;
}
.bar-sec .secure-box .secure-icon img{
    
}
.secure-box .secure-text{
    font-size: calc(12px + (14 - 12) * ((100vw - 300px) / (1920 - 300)));
    font-weight:500;
    color:var(--white-color);
}
/* Bar Section End */

/* Trademark Section HOme */

.image-text-box {
    text-align:center;
    padding:10px;
    background-color: var(--white-color);
    border:0;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    margin-bottom:20px;
}

.image-text-box img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    margin-bottom:30px;
}
.image-text-content{
    min-height:180px;
    padding:0 20px;
}
.image-text-content h4{
    font-size: calc(16px + (20 - 16) * ((100vw - 300px) / (1920 - 300)));
    font-weight: 600;
    color:var(--heading-colors);
    margin-bottom:20px;
}
.image-text-content p{
    font-size: calc(12px + (17 - 12) * ((100vw - 300px) / (1920 - 300)));   
    font-weight: 400;
    color:var(--text-light-2);
    margin-bottom:20px;
}


.trade-sec{
    position: relative;
}
.trade-sec .trade-box{
    text-align: center;
    /* background-color: var(--light-bg); */
    border: 1px solid var(--primary-color);
   
    padding:20px;
    justify-content: center;
    min-height:366px;
    margin-bottom:20px;
}
.trade-box .trade-icon{
    width:90px;
    height:90px;
    background-color: var(--primary-color);
    border:0;
    border-radius:50%;
    -webkit-border-radius:50%;
    -moz-border-radius:50%;
    -ms-border-radius:50%;
    -o-border-radius:50%;
    margin: 0 auto;
    position: relative;
    top:15px;
    bottom:20px;    
    text-align: center;
    line-height: 90px;
        
}
.trade-box .trade-text{
    margin-top:35px ;
}
.trade-box .trade-text span{
    font-size: calc(15px + (17 - 15) * ((100vw - 300px) / (1920 - 300)));
    font-weight:600;
    color: var(--body-font-color);
    padding-bottom:12px;
    line-height:40px;
}
.trade-box .trade-text p{
    font-size: calc(12px + (16 - 12) * ((100vw - 300px) / (1920 - 300)));
    font-weight:400;
    color: var(--text-light-2);
}
.trade-box:hover{
    background-color:var(--yellowcolor);
    cursor:pointer;
  
}
.trade-box:hover .trade-text span{
    color: var(--primary-color);
}
.trade-box:hover .trade-icon{
    background-color: var(--white-color);
}
.trade-box:hover .trade-text p{
    color: var(--primary-color);
}
.trade-box:hover .trade-icon img{
    filter: invert(60%) sepia(86%) saturate(2584%) hue-rotate(218deg) brightness(76%) contrast(94%);
    -webkit-filter: invert(60%) sepia(86%) saturate(2584%) hue-rotate(218deg) brightness(76%) contrast(94%);
}
/* 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:var(--secondary-color);
}
.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;
    background-color: transparent;
    transition:0.5s;
    border: 1px solid var(--primary-color);
    -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;
    -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;
}
.package-holder:hover {
    background-color: var(--yellowcolor);
    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; */
    z-index: 1;
    /* -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(--primary-color) !important;
    color: #fff !important;
    
}
 .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 + (16 - 15) * ((100vw - 300px) / (1920 - 300)));
    font-weight:400;
    color: var(--textcolor);
    margin-bottom:10px;
    text-align: center;
    position: relative;

}
/* .package-list li::before {
    content:"\f00c";
    font-family:'FontAwesome';
    position: absolute;
    left:0px;
    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,rgba(5,38,82,1)),
                                        color-stop(0.72, rgba(5,38,82,1)),
                                        color-stop(0.85, rgba(5,38,82,1)));
                                   
 }




/* 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: invert(19%) sepia(86%) saturate(2584%) hue-rotate(218deg) brightness(76%) contrast(94%); */
    filter: brightness(0) saturate(100%) invert(79%) sepia(12%) saturate(4299%) hue-rotate(344deg) brightness(117%) contrast(83%);
}

.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(--primary-color);
}
.cta-sec .cta-ib p{
    font-size:calc(15px + (17 - 15) * ((100vw - 300px) / (1920 - 300)));
    font-weight:500;
    color:#fff; 
    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 */

.client-info {
    margin-top: 40px;
    text-align: center;
}

.tm-img {
    width: 64px;
    height: 64px;
    border-radius: 64px;
    /* border: 4px solid var(--secondary-color); */
}

.client-info img {
    margin: 0 auto;
    margin-bottom: 10px;
}
.tm-item h3{
    color:#211660;
    font-size:17px;
    font-weight:600;
    margin:15px 0;
}
.tm-item p{
    font-size: calc(12px + (18 - 12) * ((100vw - 300px) / (1920 - 300)));
    /* font-size:18px; */
    font-weight:400;
    font-style:italic;
    color: #4d4a63;
    margin-bottom:30px;
}
/* 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(--primary-color) !important;
    padding-top:200px;
    padding-bottom:0;
    
}

#footer p,
#footer,
#footer a {
    color: #fff;
    font-size: 15px;
    font-weight: 400;
}
 
#footer label {
    color: #fff;
    font-size:18px;
    margin-bottom:30px;
}

#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(--yellowcolor);
    margin-right: 13px;
    font-size: 18px;
}
#footer .menu-item a[aria-current=page]{
    color: var(--yellowcolor) !important; 
}
.foo-infobox-holder p {
    margin-bottom: 0;
}
.footer-top{
    padding-bottom:60px;
}
.copyright{
    border-top:1px solid var(--yellowcolor);
    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:-130px;
  padding:0;
}

.cta-2-spacing {
    padding:40px 50px !important;
    background-repeat:no-repeat;
    background-size:contain;
    background-position:center;
    max-width:980px !important;
    min-height:300px;
    margin:0 auto;
    display:flex;
    align-items:center;
    
}

.cta-2-spacing  h2{
    font-size: calc(24px + (37 - 24) * ((100vw - 300px) / (1920 - 300)));
    color:var(--white-color);
    font-weight:bold;

}
.cta-2-sec .btn-white.ctm-btn{
    background-color:#fff !important;
    color: var(--primary-color) !important;
    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 .btn-white.ctm-btn:hover{
    background-color:var(--primary-color)!important;
    color:#fff !important;
    box-shadow: 10px 10px 54px 0px rgba(0,0,0,0.59);
-webkit-box-shadow: 10px 10px 54px 0px rgba(0,0,0,0.59);
-moz-box-shadow: 10px 10px 54px 0px rgba(0,0,0,0.59);
}

/* CTA 2 End */

/* Faqs About us */

.accordion-button:not(.collapsed) {
    background-color: var(--primary-color) !important;
    color:var(--white-color) !important;
    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(16) saturate(100%) invert(100%) sepia(2%) saturate(9%) hue-rotate(353deg) brightness(102%) contrast(105%);
}
.accordion-button::after{
    filter: brightness(0) saturate(100%) invert(54%) sepia(96%) saturate(5609%) hue-rotate(213deg) brightness(100%) contrast(95%);
   
}
.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(/assets/img/packages/pt-header-bg.png);
    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) {
    .home-banner {
        min-height:900px;
    }
    .spacing-ptb {
        padding:75px 0;
    }
}

/* // Large devices (desktops, less than 1200px) */
@media (max-width: 1199.98px) {
    /* New Responsive  */
    .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;
    }
   .top-bar{
        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;
    }

   

}

/* 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:#153ca3;
    color: var(--white-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.png");
    width: 16px;
    height: 12px;
    position: absolute;
    left: 0;
    top: 15px;
    background-size: contain;
    background-repeat: no-repeat;
    margin-left: 0;
    filter: invert(12%) sepia(86%) saturate(2584%) hue-rotate(218deg) brightness(76%) contrast(94%);
    -webkit-filter: invert(12%) sepia(86%) saturate(2584%) hue-rotate(218deg) brightness(76%) contrast(94%);
}

.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;
    filter: invert(19%) sepia(86%) saturate(2584%) hue-rotate(218deg) brightness(76%) contrast(94%);
}

@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;
    filter: invert(19%) sepia(86%) saturate(2584%) hue-rotate(218deg) brightness(76%) contrast(94%);
}

.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); */
      background-color: var(--yellowcolor);
    color:var(--primary-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;
}


/* New-Css */

.counterBox {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  padding:0 ;
}

.counterBox li {
  box-shadow: 0 0 10px var(--primary-color);
  padding: 1rem;
  border-radius: 10px;
  flex: 0 0 23%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s ease;
}

.counterBox li h3 {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  color: var(--theme-color);
  line-height: 1.3;
}

.counterBox li h3 span {
  display: block;
  font-size: 1rem;
  font-weight: 500;
}

.steps-section {
  padding: 60px 20px;
  background: #f9fafb;
  display: flex;
  justify-content: center;
}

.steps-wrapper {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 1100px;
  width: 100%;
  justify-content: space-between;
  position: relative;
}

.step {
  flex: 1;
  text-align: center;
  position: relative;
}

.circle {
  width: 70px;
  height: 70px;
  margin: 0 auto 15px;
  border-radius: 50%;
  background: linear-gradient(135deg, #052652, #e9c02e);
  color: #fff;
  font-size: 22px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}

.step:hover .circle {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(233,192,46,0.6);
}

.step h3 {
  font-size: 18px;
  color: #052652;
  margin-bottom: 8px;
  font-weight: 600;
}

.step p {
  font-size: 14px;
  color: #374151;
  max-width: 240px;
  margin: 0 auto;
  line-height: 1.5;
}

.connector {
  flex: 0 0 60px;
  height: 4px;
  background: linear-gradient(90deg, #052652, #e9c02e);
  border-radius: 2px;
}

/* ✅ Responsive (mobile view) */
@media (max-width: 768px) {
  .steps-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .connector {
    width: 4px;
    height: 40px;
    background: linear-gradient(180deg, #052652, #e9c02e);
  }
}















.usp-section {
  background: #f9fafb;
  padding: 80px 20px;
  text-align: center;
}

.usp-title {
  font-size: 32px;
  font-weight: 700;
  color: #052652;
  margin-bottom: 15px;
}

.usp-title span {
  color: #e9c02e;
}

.usp-subtitle {
  font-size: 16px;
  color: #374151;
  margin-bottom: 60px;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.usp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 35px;
}

.usp-card {
  background: #fff;
  border-radius: 14px;
  padding: 35px 25px;
  box-shadow: 1px 1px 18px rgb(0 0 0 / 17%);
}

.usp-icon {
  font-size: 42px;
  margin-bottom: 18px;
  color: #e9c02e;
}

.usp-card h3 {
  font-size: 20px;
  color: #052652;
  margin-bottom: 12px;
  font-weight: 600;
}

.usp-card p {
  font-size: 15px;
  color: #6b7280;
  line-height: 1.6;
}
















.about-section {
  padding: 80px 20px;
  background: #f9f9f9;
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
  flex-wrap: wrap;
}

.about-text {
  flex: 1;
  min-width: 300px;
}

.about-text h2 {

  margin-bottom: 15px;
}

.about-text h3 {
  font-size: 1.5rem;
  color: #e9c02e;
  margin-bottom: 20px;
}

.about-text p {
  font-size: 1.1rem;
  color: #333;
}

.about-image {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.about-image img {
  width: 80%;
}

.cta-highlight{
    color: var(--primary-color);
}



@media (max-width:991.98px) {
    .about-image img{
        width: 100%;
        margin-bottom: 10px;
    }
    .cta-2-spacing h2{
      color: var(--primary-color);
    }
    .about-section {
    padding: 32px 20px;
    background: #f9f9f9;
}
}