/**
* 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;
    scroll-behavior:smooth;
}
:root {
    --primary-color: #ff6d70;
    --secondary-color: #007889;
    --section-bg-color: #faf4ff;
    --bg-light-blue: #e9f0f4;
    --body-font-color: #38354f;
    --white-color:#ffffff;
    --heading-colors: #0c043d;
    --light-green: #d7f4e7;
    --black-color:#000000;
    --title-color:#292d2e;
    --textcolor:#4d5050;
    --package-title:#727070;
    --dark-title:#242323;
    --darkbg:#007889;
   
}

body {
    font-family: "Poppins", sans-serif;
    color: var(--body-font-color);    
}

a {
    color: var(--primary-color);
    text-decoration: none;
}

a:hover {
    color: #ff6d70;
    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 */
/*
 *  STYLE 10
 */

 #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: 10px;
     background-color: #F5F5F5;
 }
 
 #style-7::-webkit-scrollbar-thumb
 {
     background-color: #AAA;
     border-radius: 10px;
     background-image: -webkit-linear-gradient(90deg,
                                               rgba(0, 0, 0, .2) 25%,
                                               transparent 25%,
                                               transparent 50%,
                                               rgba(0, 0, 0, .2) 50%,
                                               rgba(0, 0, 0, .2) 75%,
                                               transparent 75%,
                                               transparent)
 }
 /*  STYLE 10 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: var(--primary-color);
    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 {
    background-color:var(--primary-color);
    padding:13px 40px;
    display:inline-block;
    color:var(--white-color);
    margin-right:10px;
    margin-bottom:14px;
    border: 1px solid var(--primary-color);
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    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(--secondary-color);
    color:var(--white-color);
    border: 1px solid transparent;
}

.btn-secondary {
    background:none;
    padding:13px 50px;
    display:inline-block;
    color:var(--white-color);
    margin-bottom:14px;
    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(--primary-color);
    border-radius:10px;
    -webkit-border-radius:10px;
    -moz-border-radius:10px;
    -ms-border-radius:10px;
    -o-border-radius:10px;
}

.btn-secondary:hover {
    background-color:var(--secondary-color);
    color:var(--white-color);
    border:1px solid var(--primary-color);
}

/* Buttons End */

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

.modal-open{
    padding-right:0 !important;
}

#header {
   transition: all 0.5s;
    z-index: 997;
    padding:15px 0px;
}

#header.header-scrolled {
    padding:12px 0;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    z-index: 99999;
    background-color: #161616;
}

#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(--white-color);
    white-space: nowrap;
    transition:0.3s;
    font-weight:500;
    text-transform: uppercase;
    -webkit-transition:0.3s;
    -moz-transition:0.3s;
    -ms-transition:0.3s;
    -o-transition:0.3s;
}

.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: var(--primary-color);
    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(--white-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: var(--white-color);
    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;
    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;
    justify-content: flex-end;
    /* margin-right: 20px; */
}

.tt-agent {
    margin-right:21px;
    font-weight:500;
    font-size:calc(14px + (16 - 14) * ((100vw - 300px) / (1920 - 300)));
    color:var(--white-color);
    margin-bottom:5px;
}
.tt-agent a{
    font-weight:500;
    font-size:calc(14px + (16 - 14) * ((100vw - 300px) / (1920 - 300)));
    color:var(--white-color);
    margin:0 ;
}

/* Home Page Css start */

.home-banner{
    position:relative;
    min-height:930px;
    /* min-height:95vh; */
    padding:100px 0;
    display:flex;
    align-items:center;
    background-repeat:no-repeat;
    background-size:cover;
    background-position:center;
   

}
.home-banner::before{
    content:"";
    background-image:url('../img/banner/header.svg');
    background-repeat:no-repeat;
    background-size:cover;
    width:100%;
    height:300px;
    position:absolute;
    bottom:0;

}
.home-banner .right-img{
    position: absolute;
    top: 100px;
    right: 0;
    max-width:59vw;
   
}
.home-banner .right-img img{
    width:100%;
    height: auto;
 }
 .slide-content {
    position: relative;
    z-index: 999;
 }
.home-banner h1{
    font-size: calc(24px + (42 - 24) * ((100vw - 300px) / (1920 - 300)));
    font-weight:bold;
    color:var(--white-color);
    margin-bottom:25px;
}
.home-banner h1 span{
    color:var(--primary-color);
}
.home-banner p{
    font-size: calc(12px + (14 - 12) * ((100vw - 300px) / (1920 - 300)));
    font-weight:400;
    color:var(--white-color);
    margin-bottom:25px;
}

.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 + (14 - 12) * ((100vw - 300px) / (1920 - 300)));
    font-weight:400;
    color:var(--textcolor);
    margin-bottom:25px;
}
#pc-1{ 
    overflow-y: scroll;
}
#pc-2{
    overflow-y: scroll;
}
.package-header {
    background-color:var(--primary-color);
    height:80px;
    margin-bottom:10px;
    position:relative;
    padding:20px 12px;
    border:0;
    border-radius: 10px 10px 50px 50px;
}

.package-title {
    font-size: calc(22px + (27 - 22) * ((100vw - 300px) / (1920 - 300)));
    font-weight:600;
    margin:0;
    line-height:1;
    padding:0;
    text-transform:uppercase;
    color:var(--white-color);
}


.package-header label{
    font-size:calc(12px + (14 - 12) * ((100vw - 300px) / (1920 - 300)));
    line-height:1;
    font-weight:400;
    color:var(--white-color);
}
.package-footer {
    margin-top:40px;
}

.package-price-holder {
    position:relative;
    padding:15px;
    color:#fff;
    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: 16px;
    /* font-size: calc(12px + (16 - 12) * ((100vw - 300px) / (1920 - 300))); */
    font-weight:400;
    color: var(--package-title);
    line-height: 1;
}
.package-price {
    font-size: 47px;
    /* font-size:calc(24px + (47 - 24) * ((100vw - 300px) / (1920 - 300))); */
    font-weight:bold;
    color: var(--package-title);
    line-height:1;    
    margin-bottom: 0;
}

.package-holder {
    box-sizing:border-box;
    border:1px solid var(--secondary-color) ;
    border-radius:10px;
    -webkit-border-radius:10px;
    -moz-border-radius:10px;
    -ms-border-radius:10px;
    -o-border-radius:10px;
    transition:0.5s;
    -webkit-transition:0.5s;
    -moz-transition:0.5s;
    -ms-transition:0.5s;
    -o-transition:0.5s;
    text-align:center;    
    min-height:570px;
    margin-bottom:40px;
}

.package-holder:hover {
    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);
}
.package-holder>.package-content{
    min-height:200px;
    padding:0 30px;
   
}

.package-holder:hover .package-price{
    color: var(--secondary-color);
}
.package-holder:hover .btn-white{
    background-color: var(--secondary-color);
    color: var(--white-color);
}
 .package-list {
    list-style: none;
    padding-left:25px;    
    height:220px;
    overflow-y:auto;
    scroll-behavior: smooth;
}
.package-list li {
    font-size:calc(13px + (16 - 13) * ((100vw - 300px) / (1920 - 300)));
    font-weight:400;
    color: var(--textcolor);
    margin-bottom:10px;
    text-align: left;
    position: relative;
   
}
.package-list li::before {
    content:"\f00c";
    font-family:'FontAwesome';
    position: absolute;
    left:-25px;
    top:0;
    color:var(--primary-color);
    font-size:14px;
}

/*
 *  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(0,120,135)),
                                        color-stop(0.72, rgb(114,112,112)),
                                        color-stop(0.86, rgb(255,109,112)));
 }

/* Home Page Css End */
/* How works us start */
.why-choose-us{
    position:relative;
}
.common-title{
    font-size: calc(22px + (32 - 22) * ((100vw - 300px) / (1920 - 300)));
    font-weight: bold;
    color: var(--title-color);
}
.common-text{
    font-size: calc(12px + (14 - 12) * ((100vw - 300px) / (1920 - 300)));
    font-weight:400;
    color: var(--textcolor);
    max-width:900px;
    margin:0 auto;
    padding-bottom:25px;    
    text-align: center;
}
.wc-icon-box{
    text-align:center;
    margin-bottom:20px;
}
.wc-icon-box img{
    margin-bottom:10px;
}
.wc-icon-box h6{
    font-size:calc(15px + (21 - 15) * ((100vw - 300px) / (1920 - 300)));
    font-weight:600;   
    color: var(--secondary-color);
    margin:10px 0;
}
.wc-icon-box p{
    font-size:calc(12px + (15 - 12) * ((100vw - 300px) / (1920 - 300)));
    font-weight:400;   
    color:var(--textcolor);
    margin-bottom:8px;
}

/* How works us End*/
/* pro-section us start */
.pro-section{
    position:relative;
}
.pro-box{
    background-color: rgb(242, 244, 247);
    box-shadow: 0px 0px 32px 0px rgba(54, 61, 82, 0.15);
    min-height:400px;
    margin-bottom:50px;
    padding:25px;
    border: 0;
    border-radius: 10px;
}
.pro-box .pro-box-header{
    background-color: var(--secondary-color);
    position: relative;
    /* min-height: 100px; */
    padding:25px;
    text-align: center;
    margin-top:-80px;
    margin-bottom:30px;
    border: 0;
    border-radius:50px ;
    -webkit-border-radius:50px ;
    -moz-border-radius:50px ;
    -ms-border-radius:50px ;
    -o-border-radius:50px ;
}
.pro-box .pro-box-header span{
    font-size:calc(14px + (22 - 14) * ((100vw - 300px) / (1920 - 300)));
    font-weight:600;
    color:var(--white-color);
    
}
.accordion-flush .accordion-item .accordion-button {
    border-radius: 0;
    padding-left: 40px;
    position: relative;
}
.accordion-flush .accordion-item .accordion-button::before {
    content: "";
    background-image: url('../img/icons/accordin-icon.png');
    background-repeat: no-repeat;
    width:16px;
    height:18px;
    position:absolute;
    left:15px;
}
.accordion-item .accordion-header{
   font-size:calc(13px + (15 - 13) * (100vw - 320px) / (1920 - 320));
    font-weight:400;
    color: var(--title-color);
    position: relative;
}
/* pro-section us end */

/* value-section us start */
.value-sec{
    position: relative;
}
.value-sec .tb-bar{
    background-color: var(--bg-light-blue);
}
.value-sec .package-tab-list > li {
    padding:0 20px;
    display: inline-block;
}
.value-sec .package-tab-list > li .is-active {
    background-color: var(--primary-color);
    color: var(--white-color);
    box-shadow: 0px 0px 13px 0px rgba(54, 61, 82, 0.34);
}
.value-sec .package-tab-list > li a:hover, .package-tab-list > li a .is-active {
    background-color: var(--primary-color);
    color: var(--white-color);

}
.value-sec .package-tab-list > li a {
    font-size: calc(12px + (16 - 12) * (100vw - 320px) / (1920 - 320));
    padding:12px 35px;
    /*background-color: #fff;
    */display:inline-block;
    margin-bottom: 10px;
    color:var(--secondary-color);

    transition:all 0.35s ease-in-out;   
    font-weight:600;
    text-transform: uppercase;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}
.value-sec .tabs-links{    
    /* height:56px; */
    margin-bottom: 60px;
}
.value-sec .tt-inner-box{
    background-color:var(--bg-light-blue);
    padding:80px 42px;
    border:0;
    border-radius: 38px;
    -webkit-border-radius: 38px;
    -moz-border-radius: 38px;
    -ms-border-radius: 38px;
    -o-border-radius: 38px;    
    min-height: 400px;
    margin-bottom:25px;

}
.value-sec .tt-inner-box h2{
    font-size: calc(23px + (47 - 23) * ((100vw - 300px) / (1920 - 300)));
    font-weight:bold;
    color: var(--primary-color);
    line-height:24px;
    
}
.value-sec .tt-inner-box h6{
    font-size: calc(18px + (22 - 18) * ((100vw - 300px) / (1920 - 300)));
    font-weight:bold;
    color: var(--dark-title);
    margin-bottom:15px;
}
.value-sec .tt-inner-box p{
    font-size: calc(12px + (15 - 12) * ((100vw - 300px) / (1920 - 300)));
    font-weight:400;
    color: var(--textcolor);
    margin-bottom:15px;
    line-height:24px;
}
/* value-section us end */


/* Counter-section us Start */
.counter-sec{
    background-color: var(--secondary-color);
    position: relative;
    padding-top:200px;
    padding-bottom:80px;
}
.counter-sec::before{
    content:"";
    background-image:url('../img/counter.svg');
    background-repeat: no-repeat;
    background-size: cover;
    width:100%;
    height:142px;
    position: absolute;
    left:0;
    top:-4px;
    transform:rotate(360deg);
    -webkit-transform:rotate(360deg);
    -moz-transform:rotate(360deg);
    -ms-transform:rotate(360deg);
    -o-transform:rotate(360deg);
}
.ctm-box{
    background-color:var(--white-color);
    min-height:500px;
    position: relative;
    padding:20px 12px;
    margin-bottom:25px;
    border:0;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    
}
.ctm-box .ctm-box-header{
    background-color:var(--secondary-color);
    min-height:180px;
    border:0;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    text-align:center;
    display:grid;
    align-items: center;
    justify-content: center;
    margin-bottom:12px;
    padding: 17px;
}
.ctm-box .ctm-box-header span{
    display: block;
    /* font-size:78px; */
    font-size: calc(40px + (78 - 40) * ((100vw - 300px) / (1920 - 300)));
    font-weight:bold;
    color: var(--white-color);
    text-shadow: 3px 3px 2px rgba(255, 109, 112, 1);  
    line-height: 1;
 
}
.ctm-box .ctm-box-header span abbr{
    font-size: calc(16px + (29 - 16) * ((100vw - 300px) / (1920 - 300)));    
}
.ctm-box .ctm-box-header label{
    display: block;
    font-size: calc(16px + (29 - 16) * ((100vw - 300px) / (1920 - 300)));
    font-weight:bold;
    color: var(--white-color);
    text-shadow: 3px 3px 2px rgba(255, 109, 112, 1);      
}  
.ctm-box-content label{
    font-size: calc(14px + (17 - 14) * ((100vw - 300px) / (1920 - 300)));
    font-weight:600;
    color:var(--title-color);
    margin-bottom:15px;   
}
.ctm-box-content .count-list{
    padding:0;
}
.ctm-box-content .count-list li{
    list-style: none;
    font-size: calc(12px + (15 - 12) * ((100vw - 300px) / (1920 - 300)));
    font-weight:400;
    color: var(--textcolor);
    margin-bottom:8px;    
    position: relative;
    padding-left:30px;
}
.ctm-box-content .count-list li::before{
    content: "";
    background-image: url('../img/icons/checked.png');
    background-repeat: no-repeat;
    width:12px;
    height:12px;
    position:absolute;
    left:6px;
    top:5px;
}
.why-inner{
    position: relative;
    background-color: var(--secondary-color);
    padding-top:200px;
    padding-bottom:80px;
}
.why-inner::before{
content:"";
background-image:url('../img/counter-1.svg');
background-repeat: no-repeat;
background-size:cover;
width:100%;
height:142px;
position: absolute;
left:0;
top:-4px;
transform:rotate(360deg);
-webkit-transform:rotate(360deg);
-moz-transform:rotate(360deg);
-ms-transform:rotate(360deg);
-o-transform:rotate(360deg);
}
/* Counter-section us end */
/* Company-section us Start */
.company-sec{
    position:relative;
}
.company-sec .bg1{
    position: relative;    
    margin-bottom:100px;
    background-color: var(--bg-light-blue);
    width: 90%;
    border: 0;
    border-radius: 230px 0px 0px 230px;
    margin-left: auto;
    padding:50px 0;
}
/* .company-sec .bg1::before{
    content:"";
    background-color: var(--bg-light-blue);
    width: 90%;
    position: absolute;
    right: 0;
    border: 0;
    border-radius: 230px 0px 0px 230px;
    z-index: -1;
    min-height:440px;
    top:-70px;    
} */
.company-sec .bg2{
    position: relative;
    margin-bottom:100px;
    background-color: var(--bg-light-blue);
    width:90%;
    margin-right: auto;
    padding:60px 0;
    border: 0;
    border-radius: 0px 230px 230px 0px;
    -webkit-border-radius: 0px 230px 230px 0px;
    -moz-border-radius: 0px 230px 230px 0px;
    -ms-border-radius: 0px 230px 230px 0px;
    -o-border-radius: 0px 230px 230px 0px;
}
.bg2 .btn-secondary{
    color: var(--primary-color);
}
/* .company-sec .bg2::before{
    content:"";
    background-color: var(--bg-light-blue);
    width: 90%;
    position: absolute;
    left: 0;
    border: 0;
    border-radius:0px 230px 230px 0px;
    z-index: -1;
    top: 0;
    min-height: 420px;
    top:-70px;
    -webkit-border-radius:0px 230px 230px 0px;
    -moz-border-radius:0px 230px 230px 0px;
    -ms-border-radius:0px 230px 230px 0px;
    -o-border-radius:0px 230px 230px 0px;
} */
.company-sec .comp-list{
    padding:0;
}
.company-sec h6{
    font-size: calc(16px + (20 - 16) * ((100vw - 300px) / (1920 - 300)));
    font-weight:600;
    color:var(--dark-title);    
}
.company-sec p{
    font-size:calc(12px + (15 - 12) * ((100vw - 300px) / (1920 - 300)));
    font-weight:400;   
    color:var(--textcolor);
    margin-bottom:8px;
}
.company-sec .comp-list li{
    list-style: none;
    font-size: calc(12px + (15 - 12) * ((100vw - 300px) / (1920 - 300)));
    font-weight:400;
    color: var(--textcolor);
    margin-bottom:8px;    
    position: relative;
    padding-left:30px;
}
.company-sec .comp-list li::before{
    content: "";
    background-image: url('../img/icons/checked.png');
    background-repeat: no-repeat;
    width:12px;
    height:12px;
    position:absolute;
    left:6px;
    top:5px;
}
/* Company-section us End */
/* Testimonial Css Start */
.testimonials-sec{
    position: relative;
    background-repeat:no-repeat;
    background-size: cover;    
    background-position: center;
    padding-top:140px;
    padding-bottom:0;
    /* bottom: -770px;
    min-height: 1000px;
    z-index: -1; */
}
.testimonials-sec h4{
    font-size: calc(22px + (34 - 22) * ((100vw - 300px) / (1920 - 300)));
    font-weight:600;
    color:var(--secondary-color);
    text-decoration:underline;
    line-height:50px;

}
.testimonials-sec .tm-item{
    text-align:left!important;
}
.testimonials-sec .tm-item p{
    font-size: calc(13px + (17 - 13) * ((100vw - 300px) / (1920 - 300)));
    font-weight:400;
    font-style:italic;
    line-height:26px;
    color: var(--textcolor);
}

.client-info {
    display:flex;
    align-items:center;
    margin-top:40px;
}
.client-info .client-text{
    display:block;
}

.client-info .client-text h6{
    font-size: calc(16px + (20 - 16) * ((100vw - 300px) / (1920 - 300)));
    font-weight: 600;
    color: var(--dark-title);
    margin:0;
}
.client-info .client-text label{
    font-size: calc(12px + (14 - 12) * ((100vw - 300px) / (1920 - 300)));
    font-weight: 400;
    color: var(--textcolor);
     margin:0;
}
.tm-img {
    margin-right:15px;
    width: 60px;
    height: 60px;
    border-radius:64px;
    -webkit-border-radius:64px;
    -moz-border-radius:64px;
    -ms-border-radius:64px;
    -o-border-radius:64px;
}

.client-info img {
    margin-bottom:10px;
}

.sli-ctm-button{
    margin-top:0px;
}
.sli-ctm-button .btn-ctm{
    background-color:transparent;
    border: 0;
    color: var(--textcolor);
    font-family:"FontAwesome";
    font-size:18px;
}
.sli-ctm-button .btn-ctm:active{
    color:var(--secondary-color);    
  
}
/* Testimonial Css End */
/* CTA Css Start */
.cta-2-sec{
    position:relative;
    margin-top:0;
    margin-bottom:0;
    /* background-repeat: no-repeat;
    background-size: cover;
    background-position:center; */
}
.take-secbg {
    padding:80px 0;
    background-image: url('../img/footer-cta.png');
    background-repeat: no-repeat;
    background-size: cover;
    max-width:1150px;
    min-height:580px;
    margin: 0 auto;
    z-index: 1;
    display: flex;
    align-items: center;
    text-align:center;
    justify-content: center;
    position: relative;    
    bottom:-50px;
}
.cta-2-sec h2{
    font-size: calc(22px + (42 - 22) * ((100vw - 300px) / (1920 - 300)));
    font-weight:600!important;
    color:var(--heading-colors);
}
.cta-2-sec p{
font-size: calc(12px + (15 - 12) * ((100vw - 300px) / (1920 - 300)));
    font-weight: 400;
    color: var(--textcolor);
    margin-bottom: 15px;
    line-height:22px;
}
/* CTA Css End */
/* Spacings */
.spacing-ptb {
    padding:80px 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;
}
.space-extra{
    margin-bottom:50px;
}

/* Spacings End */

/* Qualifies Start */

/* Qualifies  End */

/* Inner-Icon-Sec  End */


/* .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 .cont-img img{
    width:100%;
    margin-bottom:25px;
    border:0;
    border-radius:30px;
    -webkit-border-radius:30px;
    -moz-border-radius:30px;
    -ms-border-radius:30px;
    -o-border-radius:30px;
}
.contact-section .form-box {
    margin-bottom: 25px;
}

.contact-section .form-box .frm-btn {
    padding: 15px 70px;
}

.contact-section .form-box input {
    border:1px solid rgb(203, 212, 213);
    border-radius:10px;
    background-color: rgb(234, 240, 255);
    height:56px;
    margin-bottom:0;
    width:100%;
    padding:8px 10px;
    -webkit-border-radius:10px;
    -moz-border-radius:10px;
    -ms-border-radius:10px;
    -o-border-radius:10px;
}

.contact-section .form-box textarea {
    border: 1px solid rgb(203, 212, 213);
    border-radius: 10px;
    background-color: rgb(234, 240, 255);
    height: 162px;
    margin-bottom: 15px;
    width: 100%;
    padding: 15px;
}

.contact-section .contact-info {
    background-color:var(--darkbg);
    border: 0;
    border-radius: 58px;
    -webkit-border-radius: 58px;
    -moz-border-radius: 58px;
    -ms-border-radius: 58px;
    -o-border-radius: 58px;
    padding: 50px 50px 40px 50px;
    margin-bottom: 25px;
}

.contact-section .contact-info .info-box {
    border-bottom: 1px dashed rgb(51, 143, 157);
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.contact-section .contact-info label {
    font-size: calc(14px + (18 - 14) * (100vw - 320px) / (1920 - 320));
    color:var(--white-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(12px + (18 - 12) * (100vw - 320px) / (1920 - 320));
    color:var(--white-color);
    font-weight: 400;
    margin: 0;
    padding: 0;
}

/* Contact Page  End */

/* About Page Css Start */
.inner-banner{
    position: relative;
    background-repeat: no-repeat;
    background-size:cover;
    background-position:center;
    min-height:630px;
    padding:100px 0;
    display:flex;
    align-items:center;
}
.inner-banner::before{
    content:"";
    background-image:url('../img/banner/header.svg');
    background-repeat:no-repeat;
    background-size:cover;
    width:100%;
    height:300px;
    position:absolute;
    bottom:0;
}

.inner-banner h2{
    font-size: calc(24px + (42 - 24) * ((100vw - 300px) / (1920 - 300)));
    font-weight: bold;
    color: var(--white-color);

}
.about-sec h3{
    font-size: calc(24px + (37 - 24) * ((100vw - 300px) / (1920 - 300)));
    font-weight: bold;
    color:var(--dark-title);
}
.about-sec h3 span{
    color:var(--primary-color);
}
.about-sec p{
    font-size:calc(12px + (16 - 12) * ((100vw - 300px) / (1920 - 300)));
    font-weight:400;
    color: var(--textcolor);
    margin-bottom: 8px;
}
.about-sec .abt-img-1 img{
    width:100%;
    border: 0;
    border-radius:40px 40px 0 40px;
    -webkit-border-radius:40px 40px 0 40px;
    -moz-border-radius:40px 40px 0 40px;
    -ms-border-radius:40px 40px 0 40px;
    -o-border-radius:40px 40px 0 40px;
}
.about-sec .abt-img-2 img{
    width:100%;
    border: 0;
    border-radius:45px 45px 45px 0;
    -webkit-border-radius:45px 45px 45px 0;
    -moz-border-radius:45px 45px 45px 0;
    -ms-border-radius:45px 45px 45px 0;
    -o-border-radius:45px 45px 45px 0;
}
.about-sec .abt-img-3 img{
   width:100%;
   border: 0;
   border-radius:40px 0px 40px 40px;
   -webkit-border-radius:40px 0px 40px 40px;
   -moz-border-radius:40px 0px 40px 40px;
   -ms-border-radius:40px 0px 40px 40px;
   -o-border-radius:40px 0px 40px 40px;
}
/* About Page  End */

/* Trademark Registration Start */
.qualifies-sec{
    position:relative;
    background-color: var(--darkbg);
    padding-top:200px;
    padding-bottom:80px;
}
.qualifies-sec::before{
    content:"";
    background-image:url('../img/counter-1.svg');
    background-repeat: no-repeat;
    background-size:cover;
    width:100%;
    height:142px;
    position: absolute;
    left:0;
    top:-4px;
    transform:rotate(360deg);
    -webkit-transform:rotate(360deg);
    -moz-transform:rotate(360deg);
    -ms-transform:rotate(360deg);
    -o-transform:rotate(360deg);
    }
.qualifies-sec .quailifi-box{
    min-height:250px;
    padding:20px;
    margin-bottom:25px;
    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;
}
.qualifies-sec .quailifi-box .qualifi-img img{
    width:100%;
    margin-bottom:20px;
    border: 0;
    border-radius:20px;
    -webkit-border-radius:20px;
    -moz-border-radius:20px;
    -ms-border-radius:20px;
    -o-border-radius:20px;
}
.quailifi-box .qualifi-text{
    overflow-y: auto;
    scroll-behavior: smooth;
    height: 280px;
}
.quailifi-box .qualifi-text h6 {
    font-size: calc(16px + (20 - 16) * ((100vw - 300px) / (1920 - 300)));
    font-weight: 600;
    color: var(--title-color);
    margin-bottom:10px;
}
.quailifi-box .qualifi-text p{
    font-size:calc(12px + (16 - 12) * ((100vw - 300px) / (1920 - 300)));
    font-weight:400;
    color: var(--textcolor);
    margin-bottom:10px;
}

.quailifi-box .qualifi-text .qualifi-list{
    padding:0;
}
.quailifi-box .qualifi-text .qualifi-list li{
    list-style: none;
    font-size: calc(12px + (18 - 12) * ((100vw - 300px) / (1920 - 300)));
    font-weight:500;
    color:var(--dark-title) ;
    margin-bottom:8px;    
    position: relative;
    padding-left:30px;
}
.quailifi-box .qualifi-text .qualifi-list li::before{
    content: "";
    background-image: url('../img/icons/checked.png');
    background-repeat: no-repeat;
    width:12px;
    height:12px;
    position:absolute;
    left:6px;
    top:9px;
}
/* Trademark Registration  End */

/* CTA ICON BOX */
.cta-circle{
    border-radius: 50%;
    width:90px;
    height:90px;
    overflow:hidden;
    text-align:center;
    margin:0 auto;
    background-color: var(--white-color);
    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;
    
}

.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;
    padding-top: 30px;
}

.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 */


/* Footer */

#footer {
background-color: #004b54;
padding-top:100px;
padding-bottom:0;
position: relative;

}

#footer::before {
    content:"";
    background-image:url('../img/footer-shape.svg');
    background-repeat:no-repeat;
    background-size:cover;
    background-position: center;
    position: absolute;
    height: 200px;
    top: -193px;
    right: 0;
    width: 100%;    
}

#footer p,
#footer,
#footer a {
    color: var(--white-color);
}
#footer p{
    font-size: calc(12px + (14 - 12) * ((100vw - 300px) / (1920 - 300)));

}
#footer h5 {
    color: #fadfce;
    font-size: 18px;
    font-weight: 500;
    padding-bottom:20px;
}

#footer h6 {
    font-size: 18px;
    font-weight: 500;
    color: #fadfce;
}

ul.foo-links {
    list-style: none;
    padding-left: 0;
}

ul.foo-links li {
    margin-bottom: 15px;
}

ul.foo-links li a {
    list-style: none;
    padding-left: 0;    
    color: var(--white-color);
    font-weight:400;
    font-size: calc(12px + (14 - 12) * ((100vw - 300px) / (1920 - 300)));
}
.footer-info{
    padding-right:50px;
}
.foo-infobox-holder {
    display: flex;
    margin-bottom:24px;
    align-items:center;
    /* padding-bottom:50px; */
    
}

.foo-infobox-holder i {
    color: var(--primary-color);
    margin-right: 13px;
    font-size: 18px;
}

.foo-infobox-holder p {
    margin-bottom: 0;
    color:#b5b4b4!important;
}
.foo-infobox-holder a {
    margin-bottom: 0;
    color:#b5b4b4!important;
}
.newsletter{
    position: relative;
    margin-bottom:25px;
}
.newsletter input {
    height:50px;
    width: 100%;
    border: 0;
    border-radius: 10px;
    background-color: rgb(4, 96, 109);
    position: relative;
    padding:5px 10px;
    color:var(--white-color);
  
}
.newsletter .ns-sbt{
    position: absolute;
    right: 0;
    top: 0;
    border: 0;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 500;
    color: #fadfce;
    background-color: var(--primary-color);
    padding:7px 16px;
    height: 50px;
}
.soial-list{
    padding:0;
    display: flex;
}
.soial-list li{
    list-style:none;
    font-size: 15px;
    margin:0 5px;    
    width: 40px;
    height: 40px;
    background: #4267b2;
    border: 0;
    border-radius: 50%;    
    text-align: center;
    line-height: 40px;
}
.copyright{
    border-top:1px solid var(--white-color);
    padding-top:20px;
    padding-bottom:20px;
    margin-top:40px;
    color: #fff;
    font-size:14px;
    font-weight:400;
}

/* Footer End*/

/* Faqs About us */

.accordion-button:not(.collapsed) {
    background-color: var(--secondary-color);
    color: #fff;
}

.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;
}

/* 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.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:1450px) {
    .home-banner {
        min-height:750px;
    }
    .inner-banner {
        min-height:520px;      
    }
    .testimonials-sec {
        padding-top:30px;
        padding-bottom:0;
    }
    .value-sec .package-tab-list > li a {
        padding: 12px 28px;
    }
}

/* // Large devices (desktops, less than 1200px) */
@media (max-width: 1199.98px) {
    .home-banner {
        min-height:auto;
    }    
    .home-banner::before{
        height:90px;
    }
    /* New Responsive  */
    .main-nav-item p {
        font-size: 12px;
    }

    .spacing-ptb {
        padding:40px 0;
    }

    .spacing-pt {
        padding-top: 40px;
    }

    .spacing-mb {
        margin-bottom: 50px;
    }

    .spacing-pb {
        padding-bottom: 30px;
    }

    /* .package-price-holder {
        position: absolute;
        right: 0;
        top: 80px;
    } */

    #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;
    }
    .value-sec .package-tab-list > li a{
        padding:12px 12px!important;
        width:100%;
        margin-bottom:5px;        
    }
    .testimonials-sec {    
        padding-top:40px;
        padding-bottom: 0;
    }
    .testimonials-sec h4 {
        line-height: 34px;
    }
    .take-secbg {
        min-height:auto;
    }
}

/* // Medium devices (tablets, Grater than 992px) */


/* // 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;
    }
    .image-text-box {
        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;
        word-break:break-all;
    }

    .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;
    }
    /* Trademark Buds Responsive */
    .home-banner .right-img {
       position:relative;
       top: 0;
       left: 0;
       right:0;
       margin-left: auto;
       margin-right: auto;
    }
    .home-banner {
        min-height: auto;
     }
     .value-sec .tabs-links {
        height: auto;
        margin-bottom:15px;
    }
    .inner-banner {
        min-height:300px!important;
    }
    .qualifies-sec::before {
        display:none;
    }
    .qualifies-sec {
        padding-top:70px;
        padding-bottom:50px;
    }
    .take-secbg {
        max-width: 100%;
        background-size: contain;
        background-color: #dff1f0;
        background-image: none;
        min-height: auto;
        padding:40px 20px!important;
    }
    /* .foo-infobox-holder {
        padding-bottom:0;
    } */
    .footer-info{
        padding-right: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: 30px 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 */
  
    .slide-content {
        z-index: 0;
    }
    .testimonials-sec {
        padding-top:40px;
        padding-bottom:0;
    }
    .counter-sec::before {
       display:none;
    }
    .counter-sec {      
        padding-top:80px;
        padding-bottom:80px;
    }
    .testimonials-sec h4 {
        line-height: 30px;
    }
    .qualifies-sec::before {
        display:none;
    }
    .qualifies-sec {
        padding-top: 50px;
        padding-bottom: 40px;
    }
    /* .home-banner .right-img{        
        max-width:77vw;       
    } */
    .company-sec .bg1 {
        margin-bottom:20px;
        width: 100%;
        border-radius:0;
        -webkit-border-radius:;
        -moz-border-radius:;
        -ms-border-radius:;
        -o-border-radius:;
}
    .company-sec .bg2 {
        margin-bottom:20px;
        width: 100%;
        border-radius:0;
        -webkit-border-radius: 0;
        -moz-border-radius: 0;
        -ms-border-radius: 0;
        -o-border-radius: 0;
    }
    .qualifies-sec .quailifi-box {
        min-height: auto;
    }
    


}

/* 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(--secondary-color);
}

.clcpack-white {
    color: #fff
}

.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: #0c043d;
    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: 400;
    background-color:var(--primary-color);
    /* border-color: #72499d; */
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 1px solid transparent;
}
.package-box .pck-foot .btn-primary:hover{
    background-color: var(--secondary-color);
    color: var(--white-color);
    border: 1px solid transparent;
}
@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: #fff;
}

.package-box .pck-topContent {
    padding: 20px 25px 0;    
    background: #fff;
}

.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
    }
    .inner-banner {
        min-height:400px;
    }
  
}
@media (max-width:1024px) {
    .take-secbg {
        max-width: 100%;
        background-size:cover;
        min-height:auto;
        padding: 90px 20px 20px 20px!important;
    }
}

.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
} */
.package-box ul li::before{
    content: "\f00c";
    font-family: 'FontAwesome';
    position: absolute;
    left: 0px;
    top: 12px;
    color: var(--primary-color);
    font-size: 14px;
}

.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;
    background-color:var(--secondary-color);
   
    
}

.package-box .as-btn p {
    margin-bottom: 0;
    text-align: center;
    color: var(--section-bg-color);
    
}

@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: flex;
    align-items: center;
    justify-content: center;
    padding: 5px 10px 0 10px;
    width: 100%;
}
.package-tab-list > li {
    padding: 0 10px;
    display: inline-block;
}
.package-tab-list > li a {
    font-size: calc(12px + (16 - 12) * (100vw - 320px) / (1920 - 320));
    padding: 12px 35px;
    /* background-color: #fff; */
    display: inline-block;
    margin-bottom: 10px;
    color: #0c043d;
    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(--secondary-color);
    color: #fff;
}
.package-tab-list > li .is-active {
    background-color: var(--primary-color);
    color: #fff;
}
@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%;
}

.modal-body{
    background-color: var(--secondary-color);
}
.header-form input{
    height:50px;
    background-color:#eaf0ff;

}
.header-form .pp-btn{
    position: relative;
}
.header-form .pp-btn:hover{
    background-color:var(--white-color);
    color:var(--primary-color);
}
.header-form .btn-close {
   filter: brightness(0) saturate(100%) 
   invert(100%) sepia(64%) saturate(0%) hue-rotate(200deg)
    brightness(112%) contrast(100%)!important;
   -webkit-filter: brightness(0) saturate(100%) 
   invert(100%) sepia(64%) saturate(0%) hue-rotate(200deg)
    brightness(112%) contrast(100%)!important;
}

.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:700;
}