/**
* 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;
   
}

:root {
    /*--primary-color: #4E5166;*/
    /*--primary-color: #164863;*/
    /*--primary-color: #111e4f;*/
    --primary-color: #8738D4;
    --main-bg-color: #f1efef;
    /*--secondary-color: #7C90A0;*/
    /*--secondary-color: #427D9D;*/
    /* --secondary-color: #be1e2d;*/
    --secondary-color: #c54ce0;
    --tertiary-color: #9BBEC8;
    /* --section-bg-color: #feeeee; */
    --bg-light-blue: #eaf0ff;
    --body-font-color: #181617;
    --white-color: #ffffff;
    --heading-colors: #2E3F58;
    --light-bg: #feefee;
    --footer-bg: #0b0916;
    --text-light: #2b3440;
    --text-light-2: #5a5a5a;
    --yellowcolor: #ffbb05;
    --innersubtitle: #0c043d;
    --def: #96B7C4;
    --inv: #fff;
    --footer-btm-bg: #80808075;
}

body {
    font-family: "Poppins";
    /* ,sans-serif*/ 
    /*color: var(--body-font-color);*/
    color: grey;
    overflow-x: hidden;
}

a {
    color: var(--primary-color);
    text-decoration: none !important;
}

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)));
    font-weight: 600;
}

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: #000;
}

p {
    color: #595959;
    font-size: calc(14px + (17 - 12) * ((100vw - 300px) / (1920 - 300)));
}

.color-white{
    color: var(--white-color);
}


.custom-container{
    max-width: 1800px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* 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 */

.brand-logo {
    max-width: 250px;
    flex: 1 0 180px;
}

.brand-logo img{
    width: 100%;
    height: auto;
}
.ctm-padding{
    padding: 5px 0;
}
/*--------------------------------------------------------------
# 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;
    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-black{
    font-size: calc(14px + (18 - 14) * ((100vw - 300px) / (1920 - 300)));
    font-weight: 500;
    padding: 14px 60px;
    display: inline-block;
    color: var(--white-color);
    margin-bottom: 14px;
    margin-right: 10px;
    border: 0;
    /*background: linear-gradient(43.51deg, #19C3F3 -1.16%, #20BFEC 23.84%, #34C3E9 43.03%, #76DCF9 79.65%);
    box-shadow: 0px 34px 44px rgba(51, 109, 196, 0.47);*/
    background: var(--primary-color);
    border-radius: 184px;
    transition: 0.5s ease-in-out;
}
    .btn-black:hover {
        background-color: var(--secondary-color);
        color: var(--white-color);
        border: transparent;
    }
.btn-white {
    font-size: calc(14px + (18 - 14) * ((100vw - 300px) / (1920 - 300)));
    font-weight: 500;
    background-color: var(--primary-color);
    padding: 14px 60px;
    display: inline-block;
    color: var(--white-color);
    margin-bottom: 14px;
    margin-right: 10px;
    border: 0;
    border-radius: 50px;
    transition: 0.5s ease-in-out;
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
}

.btn-white:hover {
    background-color:var(--secondary-color);
    color:var(--white-color);
    border:transparent;
}


.btn-secondary {
    font-size: calc(14px + (18 - 14) * ((100vw - 300px) / (1920 - 300)));
    font-weight:400;
    background-color: var(--secondary-color);
    padding:14px 45px;
    display:inline-block;
    color:var(--white-color)!important;
    margin-bottom:14px;
    border-radius:30px;
    transition: 0.5s ease-in-out;
   
    box-shadow:none;
}

.btn-secondary:hover {
    /*background-color:var(--yellowcolor)!important;*/
    color:var(--white-color) !important;
  
}
.btn-secondary:focus{
    box-shadow:none!important;
    background-color:transparent!important;
}

/* Buttons End */

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

.modal-open{
    padding-right:0 !important;
}
.modal-body{
    background-color: #f0f0f0;
    box-shadow: 0px 34px 44px rgba(51, 109, 196, 0.47);
}

.modal .form-control {
    max-width: 100%;
    height: 45px;
    line-height: 1;
}

.modal .form-group {
    margin-bottom: 20px;
}

.modal .btn {
    border: 0;
    color: var(--white-color);
    padding: 14px 40px;
    font-weight: 500;
    /*background: linear-gradient(43.51deg, #242F40 -1.16%, #4E5166 23.84%, #7C90A0 79.65%);*/
    background: var(--primary-color);
    border-radius: 184px;
}

.modal .btn:hover {
    box-shadow: 0px 15px 10px rgb(74 74 74 / 20%);
    /*background: linear-gradient(#34C3E9 43.03%, #76DCF9 79.65% 43.51deg, #19C3F3 -1.16%, #20BFEC 23.84%);*/
    background: var(--secondary-color);
}

#header {
    transition: all 0.5s;
    /* z-index: 997; */
    padding:20px 10px;
}

#header.header-scrolled {
    padding:10px 0;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    background-color: var(--white-color);
    position: fixed;
    z-index: 100;
    width: 100%;
}

.header-scrolled .info-header{
    display: none;
}

.header-scrolled .brand-logo {
    /*max-width: 125px;*/
    flex: 1 0 125px;
    justify-content: center;
    align-items: center;
    display: flex;
}
.header-scrolled .brand-logo img{
    /*max-width: 100%;*/
    width: 200px;
    height: auto;
}

#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 15px 10px 15px;
    font-size: 15px;
    /*color:var(--secondary-color);*/
    color: #000;
    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(--primary-color);
}

.navbar .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
}

@media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        left: -90%;
    }

    .navbar .dropdown .dropdown:hover>ul {
        left: -100%;
    }
}

/**
* Mobile Navigation 
*/

.mobile-nav-toggle {
    color: #0b2341;
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}

    .mobile-nav-toggle.bi-x {
        color: #fff;
        background: var(--primary-color);
    }

@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: block;
    }

    .navbar ul {
        display: none;
    }
    .main-inner-banner-image {
        display: none;
    }
    .ctm-banner {
        padding: 85px 0 25px 0 !important;
    }
    #header.header-scrolled {
        position: relative;
    }
}

.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;*/
    position: fixed;
    top: 80px;
    right: 15px;
    /*bottom: 15px;*/
    left: 15px;
    padding: 35px 20px;
    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;
    font-weight: 700;
    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:0;
    font-weight:600;
    font-size:14px;
}

.tt-agent span{
    display: block;
    text-transform: uppercase;
}

.tt-agent a{
    font-size: 19px;
}

.phone-top{
    margin-right:10px;
    font-size: 36px;
    color: var(--primary-color);
}
.tt-agent a{
    color: var(--secondary-color);
}

/* Home Page Css start */


/* Banner new */

.ctm-banner {
    background-image: url(/assets/img/bg/banner-bg.webp);
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    /* min-height: 600px;
        background-color: var(--primary-color);
    */
    padding: 110px 0 30px;
    position: relative
}


/*BANNER FORM START HERE*/

/*LP Form*/
.lp-form-banner form {
    position: relative;
}
.lp-form-banner .form-group {
    margin-bottom: 15px;
}
.lp-form-banner .form-group .form-control {
    max-width: 100%;
}

.lp-form-banner {
    padding: 30px 25px;
    border-radius: 20px;
    position: relative;
    max-width: 413px;
    position: relative;
    background: none;
    background-color: #fff;
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
}

.avail-limited {
    position: relative;
    left: 0;
    width: 100%;
    color: #fff;
    /*background-color: #ff001c;*/
    border-radius: 0 50px 50px 0;
    font-size: calc(16px + (24 - 16) * (100vw - 320px) / (1920 - 320));
    text-align: right;
    padding-right: 20px;
}

.iti.iti--allow-dropdown.iti--separate-dial-code {
    width: 100%;
}

.form-head {
    padding-top: 28px;
    position: relative;
}

.title-form {
    background-color: #6f52c3;
    color: #fff;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    display: inline-block;
    max-width: 211px;
    text-align: center;
    height: 50px;
    border-radius: 0px 0px 10px 10px;
    padding-top: 14px;
    font-weight: 500;
}

.form-head h3 {
    font-size: calc(16px + (24 - 16) * ((100vw - 300px) / (1920 - 300)));
}

.form-head h3 span {
    font-weight: 800;
    animation: color-change 1s infinite;
}
    @keyframes color-change {
        0% {
            color: var(--primary-color);
        }

        50% {
            color: var(--secondary-color);
        }

        100% {
            color: var(--primary-color);
        }
    }

.lp-btn {
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
    color: #fff;
    padding: 10px 35px 10px 35px;
    border-radius: 6px;
    transition: 0.3s ease-in;
    position: relative;
    max-width: 100%;
}

.lp-btn i {
    position: absolute;
    left: 20px;
    top: 10px;
    bottom: 0;
    margin: auto;
}

.lp-btn:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: #fff;
}

.bordered-btn {
    padding: 10px 20px;
    background: var(--primaryy-color);
    border: 1px solid var(--primaryy-color);
    border-radius: 8px;
    color: #fff;
    text-decoration: none;
    transition: 0.3s ease-in;
    display: inline-block;
}

    .bordered-btn:hover {
        background-color: var(--primaryy-color);
        color: #fff;
        background: transparent;
    }

.lp-title-color {
    /*color: #373b59;*/
    color: #3c3c3c;
}

.lp-title-color-col-bg {
    color: #000 !important;
}

.bordered-btn-dark {
    padding: 8px 20px;
    background: transparent;
    border: 1px solid var(--primaryy-color);
    border-radius: 8px;
    color: #322a2a;
    text-decoration: none;
    transition: 0.3s ease-in;
    display: inline-block;
    min-width: 200px;
    text-align: center;
}

    .bordered-btn-dark:hover {
        background: var(--primaryy-color);
        color: #fff;
    }

.lp-ctm-boxes:after {
    content: "";
    top: .0;
    height: 60%;
}

.lp-ctm-boxes p {
    max-width: 850px;
    margin: 0 auto;
}

.fw-sbold {
    font-weight: 600;
}

.lp-count {
    position: absolute;
    left: 15px;
    top: 0;
    font-size: 70px;
    font-weight: 700;
    color: #9a77fd38;
}

.ctm-box:hover .lp-count {
    color: #9a77fd38;
}

@media (max-width: 991px) {
    .lp-form-banner {
        max-width: 100%;
        margin-bottom: 20px;
        width: 100%;
    }
}

/*BANNER FORM START HERE*/


.main-banner-image{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.main-banner-image {
    /*width: 100%;*/
    width: 570px;
    /*height: 100%;*/
    height: 605px;
    /*object-fit: inherit;*/
    max-width: 750px;
    /*visibility: hidden;*/

    /*position: absolute;*/
    bottom: 0;
    right: 0;
    /*height: inherit;
    display: flex;
    z-index: 1;*/

    animation: move 2s infinite alternate;
}
@media(max-width: 1200px) {
    .main-banner-image {
        max-width: 600px;
        object-fit: inherit;
    }
}

    .main-image-holder {
        position: absolute;
        /*background-image: url(/assets/img/bg/banner-img-bg.png);*/
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center top;
        /*display: flex;*/
        display: contents;
        align-items: center;
        justify-content: flex-end;
        /*padding: 70px 0;*/
        top: 0;
        right: 0;
    }

    /*.main-image-holder:after{
    width: 98%;
    height: 100px;
    position: absolute;
    right: 0px;
    top:0;
    background: linear-gradient(180deg, #FFFFFF 41.18%, rgba(255, 255, 255, 0) 101.32%);
    content: "";
    border-radius: 50px 0px 0px 50px;
    -webkit-border-radius: 50px 0px 0px 50px;
    -moz-border-radius: 50px 0px 0px 50px;
    -ms-border-radius: 50px 0px 0px 50px;
    -o-border-radius: 50px 0px 0px 50px;
}


.main-image-holder::before{
    background-image: url(/assets/img/banner/mask-banner.png);
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: contain;
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: -2px;
    bottom: 0;
}*/
/* Banner new End */


.home-banner{
    position:relative;
    /*min-height:950px;*/
    min-height: auto;
    padding:150px 0 60px;
    display:flex;
    align-items:center;
    background-repeat:no-repeat;
    background-size:cover;
    background-position:center;
    justify-content: center;
    background-color: var(--primary-color);
    /*box-shadow: 0px 34px 44px rgba(51, 109, 196, 0.47);*/
}

.image-banner-holder {
    position: absolute;
    right: 0;
    bottom: 0;
    /* max-width: 61%; */
    max-width: 70vw;
}

.banner-content{
    /*padding-left: 120px;*/
}
    .banner-content h1 {
        color: var(--primary-color);
        font-weight: 600;
        margin-bottom: 20px;
        font-size: calc(18px + (35 - 18) * ((100vw - 300px) / (1920 - 300)));
        /*line-height: 1.1;*/
    }
.banner-list{
    color: #000;
    margin-bottom: 24px;
    list-style: none;
 
  
}

.banner-list li{
    margin-bottom: 15px;
    position: relative;
}
.banner-list li::before{
   content: "\f00c";
   color: var(--secondary-color);
   width: 20px;
   height: 20px;
   background-color: var(--white-color);
   position: absolute;
   top: 0px;
   left: -30px;
   border-radius: 20px;
   font-family: 'FontAwesome';
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 12px;
}
/* Header End */

/* Main Banner Start */
.home-banner h1 {
    /*font-size: calc(26px + (45 - 26) * ((100vw - 300px) / (1920 - 300)));
    font-weight:600;
    color:var(--white-color);
    margin-bottom:25px;
    line-height: 1.5;*/
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 20px;
    font-size: calc(22px + (50 - 22) * ((100vw - 300px) / (1920 - 300)));
    line-height: 1.2;
}

.home-banner h1 span{
    background-color: var(--primary-color);
    display: inline-block;
    padding: 0px 8px;
    line-height: 1.4;
}
    .home-banner h1 span {
        color: #fff;
        background: var(--primary-color);
    }

.home-banner h4{
    font-size: calc(20px + (31 - 20) * ((100vw - 300px) / (1920 - 300)));
    font-weight:400;
    color:var(--secondary-color);
    margin-bottom:25px;
}
.home-banner h6{
    font-size: calc(16px + (28 - 16) * ((100vw - 300px) / (1920 - 300)));
    font-weight:400;
    color:var(--secondary-color);
    margin:25px 0;

}
.home-banner h6 a{
    color: var(--primary-color);
    margin:0 10px ;
}

/* main Banner End */


/* section-2 home page*/

.curved-image{
    border-radius: 0px 120px 0px 120px;
}

.image-col-1{
    position: relative;
    /*padding: 130px 0;*/
}

.image-col-2{
    position: relative;
    /*padding: 130px 0;*/
    /*padding: 30px 0;*/
}
.padding-equal {
    padding: 60px 0;
}
.image-col-nth {
    position: relative;
    padding: 10px 0;
}

.ctm-shape {
    margin: auto;
    position: absolute;
    right: -360px;
    /*max-width: 940px;*/
    max-width: 360px;
    top: 60px;
    bottom: 0;
    z-index: 0;
    animation: rotateanim 35s linear infinite;
    /*filter: brightness(0) saturate(100%) invert(37%) sepia(74%) saturate(3284%) hue-rotate(357deg) brightness(95%) contrast(93%);*/
    filter: brightness(0) saturate(100%) invert(38%) sepia(80%) saturate(4648%) hue-rotate(270deg) brightness(91%) contrast(99%);
}
.ctm-shape-1 {
    margin: auto;
    position: absolute;
    left: -50px;
    /* max-width: 940px; */
    max-width: 100px;
    top: -50px;
    /*bottom: 63px;*/
    /* z-index: -1; */
    animation: rotateanim 35s linear infinite;
    /*filter: brightness(0) saturate(100%) invert(37%) sepia(74%) saturate(3284%) hue-rotate(357deg) brightness(95%) contrast(93%);*/
    filter: brightness(0) saturate(100%) invert(38%) sepia(80%) saturate(4648%) hue-rotate(270deg) brightness(91%) contrast(99%);
}


.ctm-shape-2 {
    margin: auto;
    position: absolute;
    left: -375px;
    /*max-width: 940px;*/
    max-width: 175px;
    top: 130px;
    /*bottom: 0;*/
    z-index: 1;
    animation: rotateanim1 45s linear infinite;
    /*filter: brightness(0) saturate(100%) invert(37%) sepia(74%) saturate(3284%) hue-rotate(357deg) brightness(95%) contrast(93%);*/
    filter: brightness(0) saturate(100%) invert(38%) sepia(80%) saturate(4648%) hue-rotate(270deg) brightness(91%) contrast(99%);
}

.ctm-shape-3 {
    margin: auto;
    position: absolute;
    left: -250px;
    /*max-width: 940px;*/
    max-width: 210px;
    /*top: 200px;*/
    bottom: 0px;
    z-index: 1;
    animation: rotateanim1 45s linear infinite;
    /*filter: brightness(0) saturate(100%) invert(37%) sepia(74%) saturate(3284%) hue-rotate(357deg) brightness(95%) contrast(93%);*/
    filter: brightness(0) saturate(100%) invert(38%) sepia(80%) saturate(4648%) hue-rotate(270deg) brightness(91%) contrast(99%);
}


@keyframes rotateanim {
    0%{
       transform: rotate(0deg);
      }
   100%{
       transform: rotate(360deg);
      }
}
@keyframes rotateanim1 {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(-360deg);
    }
}


.sec-2-img{
    /*width: 100%;*/
    width: auto;
}

.s2-icon-box {
    display: flex;
    min-height: 200px;
    /* background: var(--main-bg-color); */
    text-align: center;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
    border-radius: 10px;
}

.s2-icon{
    margin-bottom: 10px;
}

.s2-icon-box{
    padding:0 15px;
}

/* .line-icon-box {
    display: inline-block;
    width: 97px;
    height: 4px;
    background: var(--primary-color);
    position: absolute;
    bottom: 0;
    margin: 0 auto;
    left: 0;
    right: 0;
} */

.s2-icon-box p {
    font-weight: 600;
    font-size: 38px;
}

.s2-content-holder{
    padding-right: 40px;
}
.s2-content-holder label{
    color: var(--primary-color);
    font-size: calc(16px + (26 - 16) * ((100vw - 300px) / (1920 - 300)));
    font-weight: 600;
    

}
.s3-content-holder{
    padding-left: 40px;
}

/* .image-col-1{
    max-width: 550px;
    position: absolute;
    right: 0;
    top: 0;
} */

.section-2{
    position: relative;
}

/* section-2 home page end*/



/* Steps Box */

.step-no-holder {
    width: 105px;
    height: 105px;
    /* background: red; */
    border-radius: 50px 50px 0 0px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0 auto;
    /*background: linear-gradient(43.51deg, #242F40 -1.16%, #4E5166 23.84%, #7C90A0 79.65%);*/
    background: var(--primary-color);
    /*box-shadow: 0px 34px 44px rgb(89 89 89 / 47%);*/
    box-shadow: 0px 34px 44px rgb(89 89 89 / 10%);
    margin-bottom: 20px;
    color: #fff;
    cursor: pointer;
}
.step-no-holder:hover {
    background: var(--secondary-color);
}

.step-no-holder h2{
    color: #fff;
    margin-bottom: 0;
    font-size: calc(28px + (37 - 28) * ((100vw - 300px) / (1920 - 300)));
}
.step-no-holder span{
    display: block;
    text-transform: uppercase;
}

/* Steps Box End*/


.title-strip span {
    display: inline-block;
    /*padding: 0 8px;*/
    color: #000;
}
/* section-3 home page*/


.ctm-icon-box {
    text-align: center;
    width: 95%;
    /* background: rgb(251 237 255 / 70%); */
    /* background-color: var(--primary-color); */
    background-color: #fff;
    color: var(--white-color);
    /*min-height: 250px;*/
    /* padding: 0 20px; */
    /* border-radius: 0 60px 0px 60px; */
    transition: 0.5s;
    /* background: url(/assets/img/bg/box-img.png) no-repeat center 0; */
    overflow: hidden;
    border-radius: 20px;
    display: flex;
    flex-direction: row;
    height: 200px;
}

    .ctm-icon-box:hover {
        /*background-color: var(--secondary-color);
    border-radius: 60px 0px 60px 0px;
    color: #fff;*/
        box-shadow: 0px 0px 20px 3px rgba(12, 36, 60, 0.18);
    }

.ctm-icon-box:hover svg path{
    /*fill: #fff;*/
    fill: var(--primary-color);
}
.ctm-icon-box:hover p{
    color: #000;
}

.ctm-icon {
    margin-bottom: 15px;
}

.ctm-icon-box-3 {
    /*margin-top: -60px;*/
}

.ctm-icon-box-2 {
    /*margin-left: auto;
    margin-top: -71px;*/
}

/* .ctm-icon-box-1{
    margin: -50px auto 0;
}

.ctm-icon-box-2{
    margin: 79px auto 0;
} */

/* .line-image-holder {
    position: absolute;
    left: 30%;
    top: -43px;
    max-width: 700px;
    
} */

.section-bg {
    background-size: cover;
    background-repeat: no-repeat;
}


.section-bg-color {
    background-color: var(--main-bg-color);
}
.sec-3 span{
    color: var(--primary-color);
    font-weight: 600;
    font-size: calc(22px + (61 - 22) * (100vw - 320px) / (1920 - 320));
}
.sec-3 h6{
    font-weight: 400;
    color: #484848;
    font-size: calc(22px + (42 - 22) * (100vw - 320px) / (1920 - 320));
}
/* section-3 home page End*/

/* Amazon-boxes */
.amazon-box {
    background-color:#f1efef;
    border:0;
    border-radius:20px;
    padding:45px 0;
    margin-bottom:40px;
    min-height:455px;
    position:relative;
    border:5px solid #f1efef;
}
.amazon-box:hover {
    border:5px solid var(--primary-color);
    cursor:pointer;
}
.amazon-box:hover::before{
    display:none;
}
.amazon-box::before{
    content:"";
    background-color:var(--primary-color);
    height:4px;
    width:170px;
    position:absolute;
    bottom:-5px;
    left:0;
    right: 0;
    margin-right: auto;
    margin-left: auto;
}
.amazon-box .amzon-icon {
    background-color:var(--primary-color);
    min-height:80px;
    width:100px;
    margin-bottom:20px;
    border: 0;
    border-radius:0  45px 45px 0;
    padding:25px;
    margin-left:-5px;
}
.amazon-box .amzon-icon img{
    filter: brightness(0) saturate(100%) invert(0%) sepia(93%) saturate(7493%) hue-rotate(82deg) brightness(106%) contrast(100%);
}
.amazon-box .amzon-text{
    padding:0 30px;
}
.amazon-box .amzon-text span{
    font-family: 'Cardo', serif;
    font-size: calc(17px + (21 - 17) * (100vw - 320px) / (1920 - 320));
    color:#292d2e;
    font-weight:500;
    margin-bottom:25px;
}
.amazon-box .amzon-text p{
    font-size: calc(12px + (17 - 12) * (100vw - 320px) / (1920 - 320));
    color:var(--text-light-2);
    font-weight:400;
    margin-top:20px;
}

/* Amazon-boxes-end */


/* Services Slider */
.service-ctm {
    /*min-height: 350px;*/
    height: 225px;
    margin-bottom: 100px;
    /*background-color: rgb(124 144 160 / 40%);*/
    /*background: var(--primary-color);*/
    background: #80808017;
    padding: 20px;
    transition: 0.5s ease-in-out;
    border-radius: 15px;
    border: 2px dotted transparent;
    overflow: hidden;
}

.service-box {    
    display: flex;
    align-items: flex-start;
    min-height: 300px;
    /* background-color: rgb(166 230 247 / 30%);
    padding: 20px;
    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-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
    overflow: hidden; */
}
.service-box:hover img {
    /*filter: invert(1);*/
}

.service-ctm:hover {
    /*background: linear-gradient(43.51deg, #242F40 -1.16%, #4E5166 23.84%, #7C90A0 79.65%);*/
    /*background: var(--secondary-color);*/
    box-shadow: 0px 34px 44px rgba(51, 109, 196, 0.47);
    border: 2px dotted var(--secondary-color);
}

.services-slider .slick-slide {
    margin: 0 15px;
}

.slide-content h4{
    font-size: 26px;
    font-weight: 600;
    padding-top: 10px;
    
}
.slide-content h4 {
    color: #000;
}
.slide-content p{
    height: 140px;
    transition: 0.5s ease-in-out;
    overflow: hidden;
}

.service-ctm:hover p{
    height: 150px;
    overflow: none;
}
    .service-ctm:hover h4 {
        /*color: #fff;*/
    }

    .svg-icon-serv {
        transition: 0.5s ease-in-out;
    }

.service-ctm:hover .svg-icon-serv{
  height: 0px;
  width: 0px;
  opacity: 0;
}

.slide-link{
    display: block;
    text-align: right;
}
.service-ctm:hover .slide-link svg path{
    fill: #fff;
}
/* 
.slide-content{
    height: 0px;
} */

/* the parent */
.services-slider .slick-list {
    margin: 0 -15px;
}
/* Services Slider End*/

/* section-5 home page start*/

.sec-5-img-1{
   
    border-radius: 0px 30px 30px 0px;
}

.sec-5-img-2{
   
    border-radius: 15px 0px 0px 15px;
}

.steps-box {
    min-height: 140px;
    border: 1px solid #d3d3d3;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right-width: 0;
    margin-bottom: 15px;
    padding: 15px 20px;
}
.steps-box-1{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    padding: 40px 0;
}
.steps-box-1 h5{
    font-weight: 600;
    font-size: 38px;
}
.steps-box-1 h6{
    font-size: 28px;
    font-weight: 600;
}
.steps-box-1 p{

    font-size: 16px;
}
.laststep {
    border-right-width: 1px;
}

.sec-6{
    min-height: 600px;
    display: flex;
    align-items: center;
    text-align: center;
}
/* section-5 home page End*/


/* section-7 home page start*/

.wc-box {
    background-color: var(--main-bg-color);
    padding: 30px 25px;
    min-height: 280px;
    margin-bottom: 30px;
    border-radius: 15px;
    position: relative;
}

.wc-box h4{
    margin-bottom: 18px;
}

.wc-box:after{
    content:"";
    width: 100px;
    height: 4px;
    background-color: var(--primary-color);
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
}

/* section-7 home page 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;
    text-align: center;
    /*padding: 30px 0;*/
}
    .qualifices-sec::before {
        /*background-image: url(/assets/img/shape-square-2.png);
        content: "";
        position: absolute;
        right: 0;
        width: 100%;
        height: 100%;
        background-repeat: no-repeat;
        background-position: right;
        background-size: contain;
        z-index: -1;
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);*/
    }
.qualifi-box-1{
    background-color:#f0f3f9;
    max-width: 850px;
    margin: 0 auto;
    padding: 60px 30px;
    text-align: center;
    position: relative;
    border-radius: 5px;
}
.qualifi-box img{
 width: 100%;
}
.qualifi-box-1::before{
    content: "";
    background-image: url(/assets/img/backgrounds/shadow.png);
    width: 100%;
    height: 71px;
    position: absolute;
    bottom: -50px;
    background-repeat: no-repeat;
    background-size: 100%;
    left: 0;

}
.qualifi-box-1 h6{
    font-size: calc(16px + (41 - 16) * (100vw - 320px) / (1920 - 320));
    font-weight: 600;
    margin-bottom: 20px;
}
/* .qualifices-sec .qualifi-box {
    background-color:var(--light-bg);
    min-height:550px;
    width: 100%;
    padding:90px 35px;
    margin-bottom:40px;
    border: 0;
    border-radius:37px;
    -webkit-border-radius:37px;
    -moz-border-radius:37px;
    -ms-border-radius:37px;
    -o-border-radius:37px;
} */


.qualifices-sec .qualifi-box h6 {
    font-size: calc(16px + (41 - 16) * (100vw - 320px) / (1920 - 320));
    /*color:var(--innersubtitle);*/
    color: #000;
    font-weight:600;
    margin-bottom: 30px;
    /*text-shadow: 3px 5px 4px rgba(0, 0, 0, 0.25);*/
}
.qualifices-sec .qualifi-box span {
    background-color: var(--primary-color);
    padding: 0 5px;
    color: var(--bs-light);
}
.qualifices-sec .qualifi-box p {
    font-size: calc(12px + (17 - 12) * (100vw - 320px) / (1920 - 320));
    color: #484848;
    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;
    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-image: url(/assets/img/contant-form.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding:80px;
}

.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;
}

.contact-section .contact-info .info-box {
    padding-bottom:20px;
    margin-bottom:20px;
}

.contact-section .contact-info label {
    font-size: calc(14px + (18 - 14) * (100vw - 320px) / (1920 - 320));
    color: var(--primary-color);
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 5px;
    padding: 0;
}

.contact-section .contact-info .info-icon {
    display: flex;
}

.contact-section .contact-info .info-icon i {
    font-family: "FontAwesome";
    font-size: 18px;
    color: var(--primary-color);
    margin-right: 15px;
    margin-top: 5px;
}

/* .contact-section .contact-info .info-icon a, p {
    font-size: calc(14px + (18 - 14) * (100vw - 320px) / (1920 - 320));
    color: #404040;
    font-weight: 400;
    margin: 0;
    padding: 0;
} */

.js-submit{
    border-radius:10px;
}
/* Contact Page  End */

/* Icon List Style */

/* .ic-list-item {
    display:flex;
    align-items:center;
    margin-bottom:40px;
    border: 1px dashed var(--primary-color);
    padding:20px 40px;
    border-radius:10px ;
    -webkit-border-radius:10px ;
    -moz-border-radius:10px ;
    -ms-border-radius:10px ;
    -o-border-radius:10px ;
} */

/* .icon-list {
    padding-left: 0;
    list-style: none;
}

.il-icon {
    margin-right:20px;
    flex: 1 0 60px;
    max-width:60px;
}
.il-cont{
    font-size: calc(12px + (16 - 12) * ((100vw - 300px) / (1920 - 300)));
    font-weight:500;
    color:var(--text-light);
} */

/* Icon List Style End*/

/* Bar Section Start */
.bar-sec{
    position: relative;
    padding:25px 0;
} 
.bar-sec .bar-color{
    background-color: var(--primary-color);
    border:0;
    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;
    padding: 10px;
}
.bar-sec .secure-box{
    display:flex;
    align-items:center;
    padding-right: 20px;
    border-right:1px solid #c05959;
}
.bar-sec .secure-box .secure-icon{
    margin-right:15px;
}
.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;
    margin-bottom:20px;
}

.image-text-box img {
    border-radius: 20px;
    margin-bottom:30px;
}
.image-text-content{
    min-height:180px;
    padding:0 20px;
}
.image-text-content h6{
    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;
    border:1px dashed var(--primary-color);
    border-radius:8px ;
    -webkit-border-radius:8px ;
    -moz-border-radius:8px ;
    -ms-border-radius:8px ;
    -o-border-radius:8px ;
    padding:20px;
    justify-content: center;
    min-height:350px;
    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(--primary-color);
    cursor:pointer;
}
.trade-box:hover .trade-text span{
    color:var(--white-color);
}
.trade-box:hover .trade-icon{
    background-color: var(--white-color);
}
.trade-box:hover .trade-text p{
    color: var(--white-color);
}
.trade-box:hover .trade-icon img{
    filter: brightness(0) saturate(100%) invert(75%) sepia(59%) saturate(6387%) hue-rotate(326deg) brightness(104%) contrast(90%);
} */
/* 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-weight:400;
    color:grey;  
    margin-bottom:25px;
}

.package-header {
    min-height: 130px;
    margin: 0 auto;
    position: relative;
    text-align: center;
    padding: 5px 12px;
    border: 0;
    border-radius: 0px 0px 25px 25px;
    background: var(--primary-color) !important;
    margin-bottom: 20px;
    transition: 0.3s ease-in;
    /*background: linear-gradient(43.51deg, #242F40 -1.16%, #4E5166 23.84%, #7C90A0 79.65%);*/
    box-shadow: 0px 34px 44px rgb(45 45 45 / 32%);
}


.package-title {
  font-size: 27px;  
    /* font-size: calc(30px + (48 - 30) * ((100vw - 300px) / (1920 - 300))); */
    font-weight:600;
    margin:0;
    line-height:1;
   padding-top: 10px;
    text-transform:uppercase;
    color:var(--white-color);
    transition: 0.3s ease-in;
}
.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(--white-color);
    transition: 0.3s ease-in;
    /* position: absolute;
    left:20px;
    top:40px;
    writing-mode:vertical-lr;
    -webkit-writing-mode:vertical-lr;
    -ms-writing-mode:vertical-lr; */
}
.package-footer {
    margin-top:30px;    
    padding-top: 30px;
    padding-bottom:30px;
    border-top: 1px solid #C0C0C0;
}

.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:0px;
    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(22px + (36 - 22) * ((100vw - 300px) / (1920 - 300)));
    font-weight:600;
    color:#fff;
    line-height:1;
    margin-bottom: 0;
    text-shadow: 0px 0px 8px rgba(32, 47, 76, 0.29);
    transition: 0.3s ease-in;
  
}

.ctm-sep{
    width: 70px;
    height: 3px;
    margin: 8px auto;
    display: block;
    background-color: var(--white-color);
}

.package-holder {
    position: relative;
    box-sizing:border-box;
    transition:0.5s;
    min-height:600px;
    margin-bottom:30px;
    background-color: transparent;
    overflow: hidden;
    background: #FFFFFF;
    box-shadow: 0px 0px 20px 3px rgba(12, 36, 60, 0.18);
    border-radius: 32px;
}

.package-holder:hover .package-header{
    /*background-color: var(--secondary-color) !important;*/
}
    .package-holder:hover .pck-btn {
        background-color: var(--secondary-color) !important;
    }


.package-holder .pck-btn{
    border:0;
    color: var(--white-color);
    padding:14px 40px;
    font-weight: 500;
    /*background: linear-gradient(43.51deg, #242F40 -1.16%, #4E5166 23.84%, #7C90A0 79.65%);*/
    background: var(--primary-color);
    border-radius: 184px;
}

    .package-holder .pck-btn:hover {
        box-shadow: 0px 5px 10px rgb(74 74 74 / 47%);
        /*background: linear-gradient(#34C3E9 43.03%, #76DCF9 79.65% 43.51deg, #19C3F3 -1.16%, #20BFEC 23.84%);*/
        background: var(--secondary-color) !important;
        color: var(--bs-light);
    }

.package-holder:hover {
    /* background-color: var(--primary-color); */
    transform: scale(1.05);
    box-shadow: 0px 0px 27px 0px rgba(7, 7, 7, 0.22);
    cursor: pointer;
    border-radius:20px;
    border-color: var(--primary-color);
}
.package-holder>.package-content{
    height:315px;
    padding:0 20px;

}

.package-holder:hover .btn-secondary{
    background-color:var(--primary-color);
    color:var(--white-color) !important;
}
 .package-list {
    list-style: none;
    height:300px;
    padding:0;
    overflow-y:auto;
    scroll-behavior: smooth;
    padding-left: 25px;
}
.package-list strong{
    font-weight:500;
}
.package-list li {
    font-size:calc(15px + (18 - 15) * ((100vw - 300px) / (1920 - 300)));
    font-weight:400;
    color: var(--textcolor);
    margin-bottom:15px;
    position: relative;
}

.package-list li::before {
    content: "\f00c";
    font-family: 'FontAwesome';
    position: absolute;
    left: -25px;
    top: 0px;
    color: var(--primary-color);
    font-size: 16px;
}

/* .package-holder:hover .package-list li {
    color: var(--white-color);
} */




#style-7::-webkit-scrollbar-track
{
  -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
  background-color: grey;
}

#style-7::-webkit-scrollbar
{
  width: 6px;
  background-color: var(--primary-color);
}

#style-7::-webkit-scrollbar-thumb
{
  background-color: var(--primary-color); 
  /*background-image: -webkit-linear-gradient(45deg,
                                            rgba(255, 255, 255, .2) 10%,
                        transparent 25%,
                        transparent 50%,
                        rgba(255, 255, 255, .2) 50%,
                        rgba(255, 255, 255, .2) 75%,
                        transparent 75%,
                        transparent)*/
  background-image: none;
}

/* 
 #style-7::-webkit-scrollbar-track {
     -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
     background-color: #F5F5F5;
     border-radius: 10px;
 }

 #style-7::-webkit-scrollbar {
     width:6px;
     background-color #F5F5F5;
 }

 #style-7::-webkit-scrollbar-thumb {
     border-radius: 10px;
     background-image: -webkit-gradient(linear,
                                        left bottom,
                                        left top,
                                        color-stop(0.44, rgb(20, 20, 21)),
                                        color-stop(0.72, rgb(254,239,238)),
                                        color-stop(0.85, rgb(242,100,92)));
                                   
 } */




/* CTA ICON BOX */
/* .cta-circle{
    border-radius: 50%;
    width: 90px;
    height: 90px;
    overflow: hidden;
    text-align: center;
    margin:0 auto;
    display: flex;
    align-items: center;
    justify-content: center;

} */
/* .cta-ib img {
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    
} */

/* .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;
}

/* .cta-sec {
    position: relative;
    background-color:var(--light-bg);
}
.cta-sec .cta-ib p{
    font-size:calc(15px + (17 - 15) * ((100vw - 300px) / (1920 - 300)));
    font-weight:500;
    color:var(--body-font-color); 
    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 */





/* Testimonilas */

.client-info {
    margin-top: 40px;
    text-align: center;
}

.tm-img {
    width: 64px;
    height: 64px;
    border-radius: 64px;
}

.client-info img {
    margin: 0 auto;
    margin-bottom: 10px;
}
.tm-item h6{
    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-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-size: cover;
    background-repeat: no-repeat;
    
}
#footer img{
    width: 250px;
    height: auto;
}
    #footer p,
    #footer,
    #footer a {
        font-size: calc(12px + (15 - 12) * ((100vw - 300px) / (1920 - 300)));
        color: #fff;
    }
#footer .ctm-cpoyright p {
    margin-bottom: 0;
    text-align: left;
}

/* #footer h5 {
    color: #fff;
    font-size:25px;
    margin-top: 20px;
} */


#footer h1,
#footer h2,
#footer h3,
#footer h4,
#footer h5,
#footer h6{
    color: #fff;
}

.foo-menu {
    /*margin-top: 7px;*/
    list-style: none;
    margin-bottom: 0;
}

.foo-menu li {
    display: inline;
    margin: 0 10px;
}

.foo-menu li a:hover{
    color: var(--primary-color) !important;
}

ul.foo-links {
    list-style: none;
    padding-left: 0;
}

.foo-links li {
    margin-bottom: 10px;
    /*font-size:15px;*/
    font-weight: 400;   
}

.foo-links li a {
    list-style: none;
    padding-left: 0;
}

.foo-links li a:hover {
    /*color: #f7d8ff !important;*/
    /*color: var(--tertiary-color) !important;*/
    color: lightgrey;
}

.foo-infobox-holder {
    display: flex;
    margin-bottom: 10px;
    align-items: flex-start;
}

.foo-infobox-holder i {
    color: var(--secondary-color);
    margin-right: 13px;
    font-size: 18px;
    padding: 5px 0;
}
.footer-info{
    display: flex;
    justify-content: end;
}
.foo-infobox-holder p {
    margin-bottom: 0;
}

.footer-top{
    padding: 110px 0 50px 0;
    /*background-color: #030E1E;*/
    background-color: #000;
}

.footer-top h5{
    color: #fff;
    font-size: 18px;
    margin-bottom: 18px;
}

.copyright {
    /*border-top:1px solid #292830;*/
    padding: 15px 0;
    /*background-color: #262D38;*/
    background-color: var(--footer-btm-bg);
}
/* .copyright p{
    font-size:14px;
    font-weight:400;
    color: #919192;
    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;
  /* margin-top: -85px; */
  padding:0;
}

.cta-2-spacing {
    padding:40px 50px;
    background-repeat:no-repeat;
    background-size:contain;
    background-position:center;
    max-width:1280px;
    min-height:300px;
    margin:0 auto;
    border-radius: 75px;
    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 .ctm-btn{
    background-color:var(--yellowcolor);
    color: var(--body-font-color);
    font-size:16px;
    font-weight:400;
    padding: 14px 40px;
    border-radius:10px ;

}
.cta-2-sec .ctm-btn:hover{
    background-color:var(--white-color);
    color:var(--body-font-color);
}

/* CTA 2 End */

/* Faqs About us */

.accordion-button:not(.collapsed) {
    background-color: var(--primary-color);
    color:var(--white-color);
    font-size: calc(15px + (20 - 15) * ((100vw - 300px) / (1920 - 300)));
    font-weight:600;
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-item {
    margin-bottom: 10px;
    border-radius: 16px !important;
    overflow: hidden !important;
    border:0 ;
}
.accordion-body{
    background-color: var(--light-bg);
    font-size: calc(13px + (18 - 13) * ((100vw - 300px) / (1920 - 300)));
    font-weight:400;
}
.accordion-header button{
    background-color: var(--light-bg);
    color:var(--body-font-color);
    font-size: calc(14px + (20 - 14) * ((100vw - 300px) / (1920 - 300)));
    font-weight:600;
}
.accordion-button:not(.collapsed)::after{
filter: brightness(0) saturate(100%) invert(100%) sepia(2%) saturate(9%) hue-rotate(353deg) brightness(102%) contrast(105%);
}
.accordion-button::after{
    filter: brightness(0) saturate(100%) invert(59%) sepia(39%) saturate(4452%) hue-rotate(325deg) brightness(99%) contrast(91%);
   
}
.accordion-button:focus{
    border-color:none;
    box-shadow:none;
}
/* Faqs About us End*/

/* review box */
.review-box {
    padding: 50px 47px;
    background-color: var(--light-green);
    border-radius: 30px;
}

/* review box End */

/*Pricing Table Styling  */

.table-first-col {
    padding: 24px 25px;
}

.pricing-table-sec tr td {
    height: 150px;
    padding: 0 20px !important;
}

.p-table-header {
    height: 120px;
    background-image: url(/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;
}
.img-brand{
    width: 100%;
    height: auto;
}
/*Pricing Table Styling  end*/



/* Testimonials Slider */

.tm-container {
    max-width: 850px;
    /*margin: 0 auto !important;*/
    margin: -10px auto !important;
    box-shadow: 0px 0px 20px 3px rgba(12, 36, 60, 0.18);
    position: absolute;
    right: 0;
    left: 0;
}

    .tm-container h2 {
        font-size: calc(1rem + 0.9vw);
    }


.tm-nav-img{
    text-align: center;
    position: relative;
    /*margin-top: 28px;*/
    cursor: pointer;
}

.tm-nav-img img{
    border-radius: 100%;
    /*width: 80px;
    height: 80px;*/
    width: 0;
    height: 0;
    margin: 0 auto;
    transition: 0.5s ease-in-out;
}

.silver-box {
    text-align: center;
}

.silver-text {
    font-style: italic;
    font-weight: 400;
    font-size: 22px;
    /*line-height: 48px;*/
    text-align: center;
    text-transform: capitalize;
    color: #363636;
    padding: 25px 40px 0 40px;
}


.tm-slider-nav .slick-current.slick-active.tm-nav-img img {
    /*box-shadow: 0px 9px 37px 8px  rgb(118 220 249 / 81%);
    transform: scale(1.2);*/
}

.tm-name{
    /*visibility: hidden;*/
    
    /*margin-top: 30px;*/
    text-align: center;    
    font-weight: 600;
    display: block;
    padding-bottom: 25px;
    color: #000;
}

.tm-slider-nav .slick-current.slick-active .tm-name{
    visibility: visible;
    transition: 0.2s;
}

/* Testimonials Slider End */

@media (min-width:1600px) {
    .ctm-container{
        max-width:1600px;
    }
}
@media (max-width:1600px) {
    .ctm-shape-1 {
        top: -45px;
        max-width: 90px;
    }

    .ctm-shape-2 {
        left: -210px;
        max-width: 145px;
    }

    .ctm-shape-3 {
        left: -140px;
        max-width: 155px;
    }
}

/* // X-Large devices (large desktops, less than 1400px) */
@media (max-width:1399.98px) {
    .home-banner {
        min-height:900px;
    }
    .spacing-ptb {
        padding:75px 0;
    }
    .ctm-shape{
        /*max-width: 778px;*/
    }
    .ctm-shape-1 {
        left: -30px;
        max-width: 60px;
        top: -35px;
    }
    .ctm-shape-2 {
        max-width: 130px;
        left: -185px;
    }
    .ctm-shape-3 {
        max-width: 110px;
        left: -115px;
    }
    .ctm-icon-box {
        width: 90%;
        height: 180px;
    }
    .process-list li:hover:after {
        width: 40%;
    }
}

/* // Large devices (desktops, less than 1200px) */
@media (max-width: 1199.98px) {

    .navbar a, .navbar a:focus{
        padding: 10px 8px 10px 8px;
        font-size: 12px;
    }
    /* 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;
    }

    .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;
    }
    .process-list li:hover:after {
        width: 30% !important;
    }
    .ctm-logo img {
        width: 45px;
    }
    .ctm-circle {
        width: 75px !important;
        height: 75px !important;
    }
    
}

/* // 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) {

    .silver-text {
        font-size: 16px;
        line-height: 32px;
    }

    #footer h5 {
        border-bottom: 1px solid #ffffffba;
        padding-bottom: 10px;
        margin-top: 18px;
    }

    .s2-content-holder{
        padding: 0 15px;
    }
    .s3-content-holder{
        padding: 0 15px;
    }

    .ctm-icon-box-1{
        margin: 0 auto;
    }
    .ctm-icon-box-2{
     margin: 0 auto;   
    }

    .ctm-icon-box-3{
        margin: 0 auto;   
    }

    .ctm-icon-box{
        margin-bottom: 15px;
    }

    .ctm-shape{
        display: none !important;
    }

    .ctm-shape-1 {
        display: none;
    }

    .ctm-shape-2{
        display: none;
    }
    .ctm-shape-3 {
        display: none;
    }

    .image-col-1{
        padding: 0 15px 0 15px;
        margin-bottom: 15px;
    }

    .image-col-2{
        padding: 0 15px 0 15px;
        margin-bottom: 15px;
    }

    .step-box-ctm {
        margin-bottom: 30px;
    }

    .custom-container{
        padding-left: 15px;
        padding-right: 15px;
    }

    .main-image-holder:after{
        border-radius: 0;
        width: 100%;
        background: linear-gradient(180deg, #ffffffd1 41.18%, rgba(255, 255, 255, 0) 101.32%);
    }

    .main-image-holder::before{
        display: none;
    }

    .banner-content{
        /* padding: 20px 15px; */
        padding-top: 0;
    }

    .banner-content h1{
        margin-bottom: 20px;
        color: var(--primary-color);
    
    }


    .main-banner-image{
        margin-bottom: 20px;
        display: none;
    }

    ul.foo-links li {
        margin-bottom: 15px;
        font-size:15px;
        font-weight: 400;
        
    }

    .img-brand{
        width: 100%;
        margin-bottom: 30px;
    }
    .wc-box{
        min-height: auto;
    }
    .steps-box{
        border: 1px solid #d3d3d3;
    }
    .steps-box-1 {
        border: 1px solid #d3d3d3;
        padding-left: 20px;
        padding-right: 20px;
    }
    .ctm-container img{
        width: 100%;
    }
    .sec-5-img-1,.sec-5-img-2{
        width: 100%;
        
        }

    .info-header {
        display: none;
    }

    .header-btn {
        display: none;
    }
    .brand-logo img {
        width: 154px;
        height: auto;
    }

    .icon-box {
        margin-bottom: 20px;
    }

    .image-text-box {
        margin-bottom: 20px;
    }

    .package-holder {
        margin-bottom: 20px;
    }

    .wc-icon-box {
        margin-bottom: 20px;
    }
    .wc-icon-box-pkg{
        margin-bottom: 20px;
    }
    .test-rft {
        display: none;
    }

    .test-lft {
        display: none;
    }

    /* New Responsive  */
    /* .ic-list-item {
        margin-bottom: 20px;
    }

    .icon-list {
        font-size: 14px;
    } */

    .sec-img-1 {
        margin-bottom: 20px;
    }

    .spacing-ptb {
        padding: 30px 0;
    }

    .spacing-pt {
        padding-top: 40px;
    }

    .spacing-mb {
        margin-bottom: 50px;
    }

    .spacing-pb {
        padding-bottom: 30px;
    }

    .package-list li {
        margin-bottom: 12px;
        font-size: 14px;
    }

    /* Inner Responsive start*/
    .spacing-mt {
        margin-top: 30px;
    }

    .spacing-mtb {
        margin: 30px 0;
    }
   
    .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-bottom: 0;
    }
    .home-banner {
        min-height: auto;
        padding-bottom:70px;
    }
    .home-banner h1 {
        margin-bottom:10px;
    }
    .cta-2-sec{
        bottom:-40px;
    }

    .image-text-content {
       padding:0;
       min-height:auto;
    }
    .inner-banner {
        min-height:300px;
        padding:100px 0 50px;

    }

    .contact-section .contact-info .info-box {
       margin-bottom: 0;
    }
    .tm-container {
        position: relative;
    }
    .footer-top {
        /*padding: 80px 0 50px 0;*/
        padding: 30px 0 30px 0 !important;
    }
    .top-info {
        display: none !important;
    }
    .ctm-icon-box {
        width: 100%;
        height: 150px;
    }
    .ctm-cpoyright {
        flex-direction: column;
    }
    .foo-infobox-holder {
        margin: 12px 0;
    }
    .foo-menu {
        margin-top: 12px;
    }

}

/* // Small devices (landscape phones, less than 768px) */
@media (max-width: 767.98px) {

    .service-ctm {
        margin-bottom: 50px;
    }

    .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: 35px 0 50px;*/
        padding: 90px 0 30px;
    }

    .bar-sec .secure-box {
        margin-bottom: 10px;
        border-right: 0;
    }

    .cta-2-sec {
        bottom: -20px;
    }

    .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;
    }

    .ctm-slick {
        top: 93% !important;
    }

    .cta-2-spacing {
        border-radius: 0;
    }

    .package-footer {
        margin-top: 0;
    }

    .package-holder {
        min-height: auto;
    }

    .package-footer {
        padding-top: 15px;
        padding-bottom: 10px;
    }

    .package-list {
        height: auto;
    }
    .package-holder > .package-content {
        height: auto;
    }
    .package-header {
        min-height: auto;
    }
    .process-list {
        margin: 20px 0 0 0 !important;
    }
    .ctm-cpoyright {
        display: flex;
        flex-direction: column;
    }
}

/* X-Small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {

    .ctm-banner {
        background-image: none !important;
        background-color: #f1f2f6;
    }

    p {
        color: #000000;
    }
    .process-list li:hover:after {
        width: 15% !important;
    }
    .slick-prev {
        left: -3px !important;
        top: 70% !important;
    }
    .slick-next {
        right: 7px !important;
        top: 70% !important;
    }
    .foo-menu li {
        margin: 0 1px;
    }
    .btn-black {
        margin-bottom: 0;
        padding: 10px 20px;
    }
    .banner-content h1 {
        margin-bottom: 10px;
    }
    .banner-list {
        margin-bottom: 0;
    }
        .banner-list li {
            margin-bottom: 10px;
        }
            .banner-list li::before {
                top: 5px;
                width: 15px;
                height: 15px;
            }
    .btn-black.mt-4 {
        margin-top: 0 !important;
    }
    .padding-equal {
        padding: 30px 0;
    }
    .s2-icon-box {
        min-height: auto;
    }
        .s2-icon-box p {
            font-size: 25px;
            margin-bottom: auto;
        }
    .s2-icon {
        margin-bottom: auto;
    }
    .ctm-icon-box {
        width: 100%;
        height: 120px;
    }

}

.c-form textarea, input, select {
    max-width: 100% !important;
    width: 100% !important;
}

/* 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;
    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;
    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;
    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;
    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;
    align-items: 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;
    align-items: 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;
    justify-content: center;
    align-items: center;
    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;
    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;
    align-items: 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);
    border:0;
    box-shadow:none;
    color: var(--white-color);
    padding:12px 40px;
}
.package-box .pck-foot .btn-primary:hover {
    background-color: var(--yellowcolor);
    color: var(--body-font-color);
}

@media (max-width: 767px) {
    .package-box .pck-foot {
        position: static
    }
}

.package-box .pck-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    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: 1366px){
    .banner-content h1{
        font-size: 30px;
    }

}
@media (max-width: 1199px) {
    .package-box .pck-bottomContent>ul.freebies-list>li {
        min-height: 64px
    }
    .banner-content{ 
        padding-left: 30px;
        padding-top: 40px;
    }
    .banner-content h1{
        font-size: 20px;
    }
}

.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 .cus-tooltip {
    display: inline-block
}

.package-box .hl-days {
    color: #fff;
    background-color: #0c043d;
    padding: 3px 5px
}

.package-box .as-btn {
    padding: 5px;
    margin-bottom: 10px
}

.package-box .as-btn p {
    margin-bottom: 0;
    text-align: center
}

@media (max-width: 991px) {
    .package-box .as-btn {
        margin: 0 0 20px
    }
}

.package-box p {
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: calc(14px + (18 - 14) * (100vw - 320px) / (1920 - 320))
}

.package-box p span.cl-iRed,
.package-box p span.cus-tooltip {
    padding: 0 2px
}

.package-box p.sm {
    font-size: 12px;
    margin-bottom: 15px
}

@media (max-width: 767px) {
    .package-box p.sm {
        position: relative
    }
}

.package-box p.lht-12 {
    line-height: 1.2
}

.package-box p.bd-bottom {
    border-bottom: #d2d2d2 solid 1px;
    padding-bottom: 12px
}

.package-box .mid-text {
    text-align: center
}

.package-box .mid-text h4 {
    font-weight: 900;
    margin: 0;
    color: #000;
    font-size: calc(24px + (40 - 24) * (100vw - 320px) / (1920 - 320))
}

.package-box .mid-text h5 {
    font-weight: 700;
    margin: 0px 0 10px 0;
    color: #000;
    font-size: calc(24px + (33 - 24) * (100vw - 320px) / (1920 - 320))
}

.package-box .mid-text h6 {
    font-weight: 600;
    margin: 0;
    color: #000;
    font-size: calc(16px + (25 - 16) * (100vw - 320px) / (1920 - 320))
}

.package-box .mid-text .plus-icon {
    margin: 10px 0;
    display: block
}

@media (max-width: 991px) {
    .package-box {
        height: auto;
        margin-bottom: 40px
    }
}

@media (max-width: 767px) {
    .package-box {
        padding-bottom: 0
    }
}

.dtbl {
    display: table;
    table-layout: fixed;
    width: 100%
}

.dtbl .dtd {
    display: table-cell
}

.dtbl .dtd.wdper-60 {
    width: 60%
}

.dtbl.vMiddle .dtd {
    vertical-align: middle
}

.cus-tooltip {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    padding-top: 20px;
    padding-left: 12px
}

.cus-tooltip>img {
    width: 12px;
    display: block;
    position: absolute;
    top: 2px;
    left: 0
}

.cus-tooltip i {
    color: #fe1334
}

.cus-tooltip i.custome {
    position: relative
}

.cus-tooltip .tooltiptext {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    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%;
    transform: translateX(-50%);
    position: absolute;
    z-index: 5;
    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%;
        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;
    transition: all .35s ease;
    width: 100%;
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    background-color: rgba(0, 0, 0, 0.2)
}


.pricing ul {
    padding: 0;
    list-style: none;
    color: #999;
    text-align: left;
    line-height: 20px;
    transition: 0.5s;
    position: relative;
    /* z-index: 999; */
    padding-left: 30px;
}
@media (max-width: 991px) {
    .pricing ul {
        width: 100%;
        padding-left: 0;
    }
}

.pricing ul li {
    padding-bottom: 12px;
}
@media (max-width: 991px) {
    .pricing ul li {
        width: 100%;
    }
    .pricing ul li a {
        width: 100%;
        text-align: center;
    }
}

.pricing ul i {
    color: #d30029;
    font-size: 18px;
    padding-right: 4px;
    transition: 0.5s;
    margin-left: -23px;
}

.pricing ul .na {
    color: #ccc;
}

.pricing ul .na i {
    color: #ccc;
}

.ctm-thin-text {
    font-weight: 400;
    margin-bottom: 10px;
    font-size: 14px;
}

.pricing ul .na span {
    text-decoration: line-through;
}

.pricing .get-started-btn {
    display: inline-block;
    padding: 10px 40px 11px 40px;
    border-radius: 4px;
    color: #0b2341;
    transition: none;
    font-size: 14px;
    font-weight: 600;
    transition: 0.3s;
    border: 2px solid #0b2341;
    background: #fff;
}

.pricing .get-started-btn:hover {
    background: #0b2341;
    color: #fff;
}

.pricing .featured {
    z-index: 10;
    /*padding: 100px 40px;*/
    border: 4px solid #d30029;
}

.pricing .featured .get-started-btn {
    background: #d30029;
    color: #fff;
    border-color: #d30029;
}

.pricing .featured .get-started-btn:hover {
    background: #1d71b8;
}

@media (max-width: 992px) {
    .pricing .box {
        max-width: 100%;
        margin: 0 auto 30px auto;
    }
}

@media (max-width: 767px) {
    .pricing .box {
        
        margin: 0 auto 30px auto;
    }
}

@media (max-width: 420px) {
    .pricing .box {
        max-width: 100%;
        margin: 0 auto 30px auto;
    }
}




.package-tab-list {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 5px 10px;
    width: 100%;
}
.package-tab-list > li {
    padding: 0 10px;
    display: inline-block;
}
.package-tab-list > li a {
    font-size: calc(12px + (15 - 12) * (100vw - 320px) / (1920 - 320));
    padding: 12px 35px;
    background-color: var(--white-color);
    display: inline-block;
    margin-bottom: 10px;
    color: var(--innersubtitle);
    transition: all 0.35s ease-in-out;
    border-radius: 25px;
    font-weight: 600;
    text-transform: uppercase;
    box-shadow: 0px 5px 25px 0px  rgba(11, 38, 71, 0.2);
    
    
}
@media (max-width: 1600px) {
    .package-tab-list > li a {
        padding: 10px 20px;
   }
}
@media (max-width: 991px) {
    
}
.package-tab-list > li a:hover, .package-tab-list > li a .is-active {
    
    background-color: var(--primary-color);
    color:var(--white-color);
}
.package-tab-list > li .is-active {
    background-color: var(--primary-color);
    color:var(--white-color);
}
@media (max-width: 991px) {
    .package-tab-list {
        flex-direction: column;
   }
}
.tabs-content>.is-active {
    display: block;
}
.tabs-content>* {
    display: none;
}

.addon-pack-selection {
    padding: 20px;
    position: absolute;
    bottom: 0;
    width: 100%;
}
@media(max-width:991px){
    .addon-pack-selection {
        position: relative;
    }
}
.addon-pack-selection h6 {
    font-size: calc(14px + (20 - 14) * (100vw - 320px) / (1920 - 320));
    font-weight: 700;
}
.addon-pack-selection h6 span {
    background-color: #d30029;
    padding: 0px 6px;
    color: #fff;
    line-height: 1.4;
    font-size: calc(14px + (18 - 14) * (100vw - 320px) / (1920 - 320));
}
.addon-pack-selection .radio-bx {
    display: flex;
    align-items: center;
}
.addon-pack-selection .radio-bx input {
    margin-right: 5px;
}
.addon-pack-selection .radio-bx label {
    margin: 0;
    font-size: calc(13px + (16 - 13) * (100vw - 320px) / (1920 - 320));
}
.addon-pack-selection .radio-bx a {
    font-weight: 700;
    color: #000;
    text-decoration: underline !important;
}
.addon-pack-selection a {
    font-weight: 700;
    color: #000;
}
.pack-height {
    min-height: 600px;
    max-height: 100%;
}
.pack-height.sm {
    height: 400px;
    position: relative;
    z-index: 9;
}
.pack-height.lr {
    height: 800px;
}
.fs-25 {
    font-size: 25px !important;
}
.addon-main {
    height: 240px;
    position: relative;
}
@media(max-width:991px){
    .addon-main {
        height: auto;
    }
}
.addon-list {
    padding: 20px;
}
.addon-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}
.addon-list li div {
    display: flex;
    align-items: center;
    flex: 1;
}
.addon-list li div p {
    margin: 0;
    font-size: calc(12px + (14 - 12) * (100vw - 320px) / (1920 - 320));
    justify-content: space-between;
    
}
.addon-list li div p i {
    color: red;
    margin: 0;
}
.addon-list li div i {
    color: #d30029;
}
.addon-list li span {
    color: #d30029;
    font-weight: 600;
    font-size: calc(11px + (13 - 11) * (100vw - 320px) / (1920 - 320));
    flex: 0 0 35%;
    max-width: 35%;
}


.site-list{
    padding:0;
}
.site-list li {
    list-style:none;
    margin-bottom:10px;
}
.site-list li a{
    font-size: calc(16px + (20 - 16) * ((100vw - 300px) / (1920 - 300)));
    font-weight:500;
    color:var(--secondary-color);
    text-align: left;
    position: relative;
    transition:0.3s;
}
.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:var(--white-color);
    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;
    color: #fff;
}
.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 */

.holder-items {
    display: flex;
    align-items: center;
    justify-content: center;
}

.item{
    position: relative;
    margin: 0 8px;
    width: 250px;
    height: 250px;
    transition: 0.5s;
}

.front-img-holder{
    height: 250px;
    width: 250px;
    position: absolute;
    top: 0;
    transform: rotate(2deg) scale(1);
    background-color: red;
    transition: 0.5s;
    opacity: 0.5;
}



.back-img-holder{
    height: 250px;
    width: 250px;
    position: absolute;
    transform: rotate(358deg) scale(1);
    background-color: green;
    top: 0;
    opacity: 1;
}

.item:hover .front-img-holder{
    z-index: 10;
    transition: 0.5s;
    opacity: 1;
    transform: rotate(2deg) scale(1.2);
}

.item:hover .back-img-holder{
    z-index: 9;
    transition: 0.5s;
    opacity: 1;
    transform: rotate(358deg) scale(1.2);
}


@media (max-width: 991.98px){
.banner-content {
    padding: 0 15px;
}
    .process-list li span{
        top: 5px !important;
    }
}
@media(max-width:1800px) {
    .custom-container {
        padding: 0 15px;
    }

    .footer-top {
        padding: 100px 0 50px 0;
    }
    .main-banner-image {
        width: 470px;
        height: 500px;
    }
}

@media (min-width:992px ) and (max-width:1199px ) {
    .ctm-icon-box {
        max-width: 250px;
    }
    
}

/* web-design-package */
.packages-section {
    padding: 80px 0;
}

.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;
    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;
    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;
    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;
    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;
    align-items: 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: #1c201e;
    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;
    align-items: 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;
    justify-content: center;
    align-items: center;
    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 + (70 - 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;
    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;
    align-items: 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: 600;
    color: #000;
    background-color:var(--primary-color);
    box-shadow: none;
    border: 2px solid var(--primary-color);
    
}
.package-box .pck-foot .btn-primary:hover{

    background-color: transparent;
    border: 2px solid var(--primary-color);
}

@media (max-width: 767px) {
    .package-box .pck-foot {
        position: static
    }
}

.package-box .pck-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    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;
    }
    .ctm-shape-1 {
        left: -15px;
        max-width: 35px;
        top: -20px;
    }

    .ctm-shape-2 {
        max-width: 70px;
        left: -75px;
    }

    .ctm-shape-3 {
        max-width: 60px;
        left: -30px;
    }
}
@media(max-width:1920px to 1600px) {
    .ctm-shape-1 {
        max-width: 100px;
        top: -50px;
    }

    .ctm-shape-2 {
        max-width: 175px;
        left: -375px;
    }

    .ctm-shape-3 {
        max-width: 210px;
        left: -250px;
    }
}

    .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::before {
            content: "";
            /*background-image: url(/assets/images/tik.png);*/
            width: 100%;
            position: absolute;
            left: 0px;
            top: 17px;
            height: 13px;
            background-repeat: no-repeat;
        }

        .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(--primary-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;
            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%;
            transform: translateX(-50%);
            position: absolute;
            z-index: 5;
            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%;
            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: #3f79a1;
        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;
    }

    /* web-design-package-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 */


    /*Tabbings*/
    .tab-nav-flex {
        display: flex;
        flex-wrap: nowrap;
        justify-content: center;
        text-align: center;
    }

        .tab-nav-flex li {
            background-color: transparent;
            border: 1px solid transparent;
            border-radius: 35px;
            transition: 0.5s;
            margin-right: 15px;
        }

    .nav-tabs {
        border: none;
    }

        .nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link {
            color: var(--body-font-color);
            font-size: 16px;
            font-weight: 600;
        }

            .nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
                color: var(--inv);
                background: linear-gradient(43.51deg, #19C3F3 -1.16%, #20BFEC 23.84%, #34C3E9 43.03%, #76DCF9 79.65%);
                border-radius: 25px;
            }

            .nav-tabs .nav-link:focus, .nav-tabs .nav-link:hover {
                background: linear-gradient(43.51deg, #19C3F3 -1.16%, #20BFEC 23.84%, #34C3E9 43.03%, #76DCF9 79.65%);
                border-radius: 25px;
                color: var(--inv);
            }

    @media (max-width: 767px) {
        .tab-nav-flex {
            display: block;
        }
    }

    .header-scrolled .navbar a, .navbar a:focus {
        color: #000;
    }

    .cp-form textarea {
        max-width: none;
        border: none;
        border-bottom: 1px solid;
        border-radius: 0;
        border-color: #ccc;
    }

    .cont-us-col {
        background-size: cover;
        object-fit: none;
        background-position: center top;
        background-repeat: no-repeat;
        /*filter: grayscale(1);*/
        background-color: #000;
    }

    .cp-form input, .cp-form textarea {
        border: none;
        border-bottom: 1px solid;
        border-radius: 0;
        border-color: #ccc;
    }

    .ctm-cpoyright p {
        color: #000 !important;
    }

    .foo-menu a {
        color: #000 !important;
    }

    #header.header-scrolled .nav-holder {
        /*margin-right: 100px;*/
    }

    .ctm-icon-box p {
        /*color: var(--primary-color);
    font-weight: 600;
    font-size: 16px;*/
    }

    .ctm-icon-box-1 {
        /*background: url(/assets/img/bg/box-1.png) no-repeat center 0;*/
        height: 325px;
    }

    .ctm-icon-box-2 {
        /*background: url(/assets/img/bg/box-1.png) no-repeat center 0;*/
        height: 325px;
    }

    .ctm-icon-box-3 {
        /*background: url(/assets/img/bg/box-1.png) no-repeat center 0;*/
        height: 325px;
    }

.ctm-icon-box .box-content {
    position: relative;
    /*bottom: -60px;*/
    padding: 5px 10px;
    width: 65%;
    display: flex;
    justify-content: center;
    align-items: center;
}
    /*.sec-3 h2, p {
    color: var(--primary-color);
}*/
    .service-box img {
        width: 45px !important;
        height: 45px !important;
        /*margin: 0 auto 10px;*/
    }

    .tm-slider-nav, .tm-slider {
        background: #fff;
    }

.banner-content h1 span {
    color: #fff;
    background: var(--primary-color);
    display: inline-block;
    margin-top: 4px;
    padding: 0px 10px 7px 2px;
}

    .slick-prev {
        /*background-color: var(--primary-color);*/
        border: none;
        border-radius: 50px;
        width: 40px;
        height: 40px;
        color: #fff;
        transition: 0.3s ease-in;
        -webkit-transition: 0.3s ease-in;
        top: 45%;
    }

    .slick-next {
        /*background-color: var(--primary-color);*/
        border: none;
        border-radius: 50px;
        width: 40px;
        height: 40px;
        color: #fff;
        transition: 0.3s ease-in;
        -webkit-transition: 0.3s ease-in;
        right: -15px;
        top: 45%;
    }
        /*.slick-prev:hover {
    background-color: var(--secondary-color);
    transition: 0.3s ease-in;
    -webkit-transition: 0.3s ease-in;
}
.slick-next:hover {
    background-color: var(--secondary-color);
    transition: 0.3s ease-in;
    -webkit-transition: 0.3s ease-in;
}*/
        .slick-prev:before, .slick-next:before {
            color: var(--primary-color);
            font-size: 50px;
        }

    .brand-logo-popup-form {
        max-width: 250px;
        flex: 1 0 100px;
        display: flex;
        align-items: center;
        margin: 0 auto;
    }

    .process-list {
        color: #000;
        margin: 40px 0 0 0;
        list-style: none;
    }

        .process-list li {
            margin-bottom: 12px;
            position: relative;
            /* border-right: 7px solid var(--secondary-color); */
            /* display: table; */
            padding-right: 25px;
            color: var(--primary-color);
            font-size: calc(13px + 0.6vw);
            transition: opacity 0.5s ease;
        }

            /*.process-list li::after {
            content: "\f00c";
            color: var(--secondary-color);
            width: 20px;
            height: 20px;
            background-color: var(--white-color);
            position: absolute;
            top: 0px;
            left: -30px;
            border-radius: 20px;
            font-family: 'FontAwesome';
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
        }*/
            .process-list li span {
                color: #fff;
                left: -30px;
                top: 9px;
                position: absolute;
                /* font-size: calc(12px + (17 - 11) * ((100vw - 300px) / (1920 - 300))); */
                /* color: var(--secondary-color); */
                width: 20px;
                height: 20px;
                background-color: var(--primary-color);
                border-radius: 20px;
                font-family: 'FontAwesome';
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: 12px;
            }

    .sec-3 {
        float: none;
        height: auto;
        margin: 0 auto;
        position: relative;
        background: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAxIDEiIHByZXNlcnZlQXNwZWN0UmF0aW89Im5vbmUiPgo8bGluZWFyR3JhZGllbnQgaWQ9ImxheWVyLTAiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiB4MT0iMjUlIiB5MT0iMCUiIHgyPSI3NSUiIHkyPSIxMDAlIj4KPHN0b3Agb2Zmc2V0PSI4JSIgc3RvcC1jb2xvcj0iI2FjY2JlZSIgc3RvcC1vcGFjaXR5PSIwLjUiIC8+CjxzdG9wIG9mZnNldD0iOTIlIiBzdG9wLWNvbG9yPSIjYWNjYmVlIiBzdG9wLW9wYWNpdHk9IjAuNSIgLz4KPC9saW5lYXJHcmFkaWVudD4KPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNsYXllci0wKSIgLz48L3N2Zz4=), #d5e5f6;
        background: -moz-linear-gradient(297deg, rgba(172, 203, 238, 0.5) 8%, rgba(172, 203, 238, 0.5) 92%), #d5e5f6;
        background: -o-linear-gradient(297deg, rgba(172, 203, 238, 0.5) 8%, rgba(172, 203, 238, 0.5) 92%), #d5e5f6;
        background: -webkit-linear-gradient(297deg, rgba(172, 203, 238, 0.5) 8%, rgba(172, 203, 238, 0.5) 92%), #d5e5f6;
        background: linear-gradient(153deg, rgba(172, 203, 238, 0.5) 8%, rgba(172, 203, 238, 0.5) 92%), #d5e5f6;
        background-position: center center;
    }

    .ctm-head {
        /*background: url(/assets/img/bg/box-img.png) no-repeat center 0;*/
        background: var(--primary-color);
        position: relative;
        /*padding: 30px 0px 0px 20px;*/
        width: 35%;
        background-size: cover;
        min-height: auto;
        display: flex;
        justify-content: center;
        align-items: center;
    }

.ctm-circle {
    /*background: url(/assets/img/mix/box-circle.png) no-repeat center 0;*/
    border: 3px solid #fff;
    border-radius: 50%;
    background-size: contain;
    display: flex;
    justify-content: center;
    /* overflow: hidden; */
    width: 90px;
    height: 90px;
    background-color: #fff;
}

    .ctm-logo {
        /*padding: 20px;*/
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .foo-infobox-holder img {
        width: 171px !important;
        height: 24px !important;
    }


    .separator {
        color: var(--primary-color)
    }

    .process-list li:hover {
        display: block;
        font-weight: bold;
        /*animation: fadeIn 2s ease;*/
    }

    .process-list li:after {
        content: "";
        position: absolute;
        width: 5px;
        height: -webkit-fill-available;
        transition: 1.5s ease-in;
        background-color: var(--primary-color);
        border-radius: 5px;
        display: block;
        bottom: 0;
        right: 0;
        z-index: 0;
    }

    .process-list li:hover:after {
        width: 50%;
        border-radius: 0px;
    }

    .top-info {
        display: flex;
    }

        .top-info ul {
            margin-top: 1rem;
        }

            .top-info ul li {
                list-style: none;
                display: inline-block;
                padding: 0 20px 0 0;
            }

                .top-info ul li i {
                    color: var(--secondary-color);
                }

        .top-info a {
            color: #000;
        }

            .top-info a:hover {
                color: var(--primary-color);
            }

        .top-info ul li:hover i {
            color: var(--primary-color);
        }

    .quote-icon-top {
        position: absolute;
        top: 5%;
        left: 5%;
        z-index: 1;
    }

    .quote-icon-bottom {
        position: absolute;
        bottom: 5%;
        right: 5%;
    }

    .quote-icon-top i {
        color: var(--secondary-color);
    }

    .quote-icon-bottom i {
        color: var(--secondary-color);
    }

    .quote-icon-top img {
        z-index: 1;
        width: 80px;
    }

    .quote-icon-bottom img {
        z-index: 1;
        width: 80px;
    }

    .inverted-image {
        transform: scaleX(-1);
    }

.qualifices-sec .ctm-shape {
    margin: auto;
    position: absolute;
    right: -175px;
    max-width: 940px;
    max-width: 360px;
    top: 60px;
    bottom: 0;
    z-index: 0;
    animation: rotateanim 35s linear infinite;
    /*filter: brightness(0) saturate(100%) invert(37%) sepia(74%) saturate(3284%) hue-rotate(357deg) brightness(95%) contrast(93%);*/
    filter: brightness(0) saturate(100%) invert(38%) sepia(80%) saturate(4648%) hue-rotate(270deg) brightness(91%) contrast(99%);
}

    @keyframes fadeIn {
        from {
            opacity: 0;
        }

        to {
            opacity: 1;
        }
    }

    @keyframes move {
        0% {
            transform: translateY(0);
        }

        100% {
            transform: translateY(-20px);
        }
    }

    /* Separate styling for mobile NAV-BAR */

    /* Navbar */
    .navbar-light .navbar-nav .nav-link.active, .navbar-light .navbar-nav .show > .nav-link {
        color: var(--primaryy-color);
    }

    .navbar-light .navbar-nav .nav-link {
        color: #818080;
        font-weight: 500;
    }

    .ctm-navbar-brand {
        padding: 5px 0;
    }

        .ctm-navbar-brand img {
            width: 200px;
        }

    @media only screen and (min-width:1200px) {
        .dropdown-menu[data-bs-popper] {
            left: -50%;
        }

        .dropdown-menu li a:hover {
            background-color: var(--primaryy-color);
            color: #fff;
        }

        .navbar-light .navbar-nav .nav-link:hover {
            color: var(--primaryy-color);
        }

        li.nav-item {
            padding: 0 12px;
        }

            li.nav-item .nav-link:after {
                content: "";
                width: 5px;
                height: 5px;
                display: block;
                background: transparent;
                margin: 0 auto;
                border-radius: 5px;
                -webkit-border-radius: 5px;
                -moz-border-radius: 5px;
                -ms-border-radius: 5px;
                -o-border-radius: 5px;
                transition: 0.3s ease-in;
                -webkit-transition: 0.3s ease-in;
                -moz-transition: 0.3s ease-in;
                -ms-transition: 0.3s ease-in;
                -o-transition: 0.3s ease-in;
                position: relative;
                top: 12px;
            }

            li.nav-item .nav-link:hover:after {
                background-color: var(--primaryy-color);
            }

            li.nav-item .nav-link.active:after {
                background-color: var(--primaryy-color);
            }

        li.nav-item {
            position: relative;
        }

            li.nav-item.contacts .btn {
                background: var(--primaryy-color);
                color: #fff;
            }

                li.nav-item.contacts .btn i {
                    margin-right: 10px;
                }

                li.nav-item.contacts .btn:hover {
                    background: var(--secondary-color);
                    color: var(--primaryy-color);
                }

        /* li.nav-item:after {
    content: "";
    width: 100%;
    height: 40px;
    display: block;
    position: absolute;
    bottom: -49px;
    background:transparent;
    z-index: -1;
    border-radius: 30px 30px 0 0;
    max-width: 70px;
    -webkit-border-radius: 30px 30px 0 0;
    -moz-border-radius: 30px 30px 0 0;
    -ms-border-radius: 30px 30px 0 0;
    -o-border-radius: 30px 30px 0 0;
    transition: 0.3s ease-in;
    -webkit-transition: 0.3s ease-in;
    -moz-transition: 0.3s ease-in;
    -ms-transition: 0.3s ease-in;
    -o-transition: 0.3s ease-in;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
}

li.nav-item:hover:after{
  background: #fb633275;
} */

    }


    /* Navbar End*/

    .ctm-icon-box .box-content p {
        font-size: calc(18px + (17 - 12) * ((100vw - 300px) / (1920 - 300)));
        font-weight: 600;
    }

    .main-inner-banner-image {
        width: 100%;
        /*width: 570px;*/
        height: 100%;
        /*height: 605px;*/
        /* object-fit: inherit; */
        max-width: 750px;
        /* visibility: hidden; */
        position: absolute;
        bottom: 0;
        right: 0;
    }
.brand-popup-logo {
    max-width: 250px;
    flex: 1 0 180px;
}

    .brand-popup-logo img {
        width: 200px;
        display: flex;
        margin: 0 auto;
    }
.body-content {
    padding-right: 0 !important;
    padding-left: 0 !important;
}
.social-links {
    display: flex;
    flex-direction: row;
    /*justify-content: center;*/
    align-items: center;
    text-align: center;
}
.social-icons {
    margin: 0 10px 0 0;
}
.social-icons a i {
    color: #fff;
}
.social-links a:hover i {
    color: var(--secondary-color);
}

@media (max-width: 991px) {
    .md-hidden {
        display: none !important;
    }
}


.slick-prev:before, .slick-next:before {
    opacity: 0.9;
}
