﻿html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    margin: 0;
    font-family: "Poppins", sans-serif;
    overflow-x: hidden;
}


:root {
    --primary-color: #0B53B1;
    --secondary-color: #F0551C;
    --body-font-color: #7c7c7f;
    --white-color: #ffffff;
    --black-color: #000000;
    --light-bg: #FAFBFF;
    --footer-bg: #0b0916;
    --subtitle: #0c043d;
}

/*span {
    font-size: calc(13px + (17 - 13) * ((100vw - 300px) / (1920 - 300)));
}*/
p {
    font-size: calc(13px + (16 - 13) * ((100vw - 300px) / (1920 - 300)));
}
.h1, h1 {
    font-size: calc(26px + (48 - 26) * ((100vw - 300px) / (1920 - 300)));
}

.h2, h2 {
    font-size: calc(22px + (30 - 22) * ((100vw - 300px) / (1920 - 300)));
    font-weight: 700;
}
.h3, h3 {
    font-size: calc(18px + (22 - 18) * ((100vw - 300px) / (1920 - 300)));
    font-weight: 700;
}

.scroll1::-webkit-scrollbar {
    width: 3px;
}

.scroll1::-webkit-scrollbar-track {
    background: #ddd;
}

.scroll1::-webkit-scrollbar-thumb {
    background: #666;
}



/* Header Css Start*/
#header {
    padding: 15px 0;
    /* height:100px;*/
}

.bshadow {
    box-shadow: 0 3px 5px rgba(57, 63, 72, 0.3);
    background-color: #fff;
    padding: 15px 0 10px !important;
}

.extra-mrt {
    margin-top: 100px;
}
/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/

.navbar {
    position: relative;
}
.navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
    position: initial;
}

.navbar li {
    position: initial;
}
.navbar ul {
    position: relative;
}

.navbar a,
.navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding:5px 25px;
    font-size: calc(13px + (15 - 13) * ((100vw - 300px) / (1920 - 300)));
    color: #0a0a0b;
    white-space: nowrap;
    transition: 0.3s;
    font-weight: 500;
    text-transform: capitalize;
    text-decoration: none;
}

.navbar a i,
.navbar a:focus i {
  font-size:13px;
  line-height:0;
  font-weight:600;
  margin-left:5px;
  margin-top:2px;
}
.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover > a {
  color: var(--secondary-color)!important;
}

.navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 14px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 0px 0;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    background: #111;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
    min-width: 650px;
    display: flex;
    flex-wrap: wrap;
}

.navbar .dropdown ul li {
    display: flex;
   min-width: 50%;
   flex: 0 0 50%;
    /*height: 48px;*/
    padding: 0;
    position: relative;
    flex-direction: column;
}

.navbar .dropdown ul a {
   padding: 10px 15px;
   text-transform: none;
   font-size: 14px;
   flex-direction: column;
   align-items: flex-start;
   /*word-break: break-all;*/
    white-space: normal;
    position: relative;
    padding-left: 42px;
}
.navbar .dropdown ul a p {
    font-size: 11px;
    font-weight: 400;
    margin-bottom: 0;
}
.navbar .dropdown ul a .what-box-icon {
    position: absolute;
    left: 8px;
    top: 12px;
}
.navbar .dropdown ul a .what-box-icon img {
    max-width: 28px;
}


.navbar .dropdown ul a i {
  font-size: 12px;
}
.navbar .dropdown ul a:hover p {
    color: #fff;
}
.navbar .dropdown ul a:hover .what-box-icon {
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(1%) hue-rotate(22deg) brightness(106%) contrast(102%);
}
.navbar .dropdown ul {
    background-color:var(--white-color);

}
/*.navbar .dropdown ul li a {
    color: #fff;
}*/

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover > a {
  color: #fff !important;
  background-color: var(--secondary-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;
}
p {
    color: var(--body-font-color);
    font-size: calc(13px + (16 - 13) * ((100vw - 300px) / (1920 - 300)));
}

@media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        left: -90%;
    }

    .navbar .dropdown .dropdown:hover > ul {
        left: -100%;
    }
}

.brand-logo img {
    max-width: 190px;
}

.footer-logo img {
    max-width: 190px;
}

.header-btn img {
    padding-right: 5px;
    max-width: 25px;
}
/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
    color: var(--black-color);
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}

    .mobile-nav-toggle.bi-x {
        color: #fff;
    }

@media (max-width: 991px) {
    
    .mobile-nav-toggle {
        display: block;
    }

    .big-box {
        margin-bottom: 15px !important;
    }

    .navbar ul {
        display: none;
    }
}

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgb(4 12 21 / 77%);
    transition: 0.3s;
    z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
    display: block;
    position: absolute;
   top: 55px;
   right: 15px;
   bottom: 15px;
   left: 15px;
   padding: 10px 0;
   background-color: var(--primary-color);
   overflow-y: auto;
   transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
   padding: 10px 20px;
   font-size: 15px;
   color: #fff;
}

.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: #1b16168a;
   box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
     min-width: 200px;
}

.navbar-mobile .dropdown ul {
    margin: 2px 4px;
    background: var(--primary-color);
}

.navbar-mobile .dropdown ul a {
     padding: 10px 20px;
     border-bottom: 1px solid #fff;
}

.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(--white-color);
  background-color: var(--primary-color);
}

.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

.nav-holder {
    display: flex;
    align-items: center;
    justify-content: space-between;
}


.dropdown-menu.show {
    display: block;
    min-width: 180px;
    background-color: #313333;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    font-size: 14px;
    font-weight: 400;
}

.dropdown-menu .nav-link {
    padding: 0;
    margin: 0;
}


.navbar-nav .nav-link {
    color: #fff;
}

.dropend .dropdown-toggle {
    color: salmon;
    margin-left: 1em;
}

.dropdown-item:hover {
    background-color: lightsalmon;
    color: #fff;
}

.dropdown .dropdown-menu {
    display: none;
}

.dropdown:hover > .dropdown-menu,
.dropend:hover > .dropdown-menu {
    display: block;
    margin-top: 0.125em;
    margin-left: 0.125em;
}

@media screen and (min-width: 769px) {
    .dropend:hover > .dropdown-menu {
        position: absolute;
        top: 0;
        left: 100%;
    }

    .dropend .dropdown-toggle {
        margin-left: 0.5em;
    }
}

/* Header Css Start*/
/* Common Btns*/
.header-right {
    display: flex;
    justify-content: end;
}

.header-btn{
    background-color: var(--primary-color);
    font-size: calc(13px + (15 - 13) * ((100vw - 300px) / (1920 - 300)));
    color: #ffff;
    font-weight: 500;
    padding: 12px 25px;
    text-decoration: none;
    border: 0;
    border-radius: 10px;
    /*margin-bottom: 12px;*/
    text-align: center;
}
    .header-btn:hover {
        background-color: var(--secondary-color);
    }
    .wht-btn:hover {
        background-color: var(--primary-color);
        color: var(--white-color);
    }
.bdr-btn {
   
    background-color: var(--white-color) !important;
    font-size: calc(13px + (15 - 13) * ((100vw - 300px) / (1920 - 300)));
    color: #0C1928 !important;
    border: 1px solid var(--black-color);
    font-weight: 500;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 10px;
}
.bdr-btn:hover {
    background-color:var(--black-color)!important;
    color:var(--white-color)!important;
}
.bdr-btn img{
    margin-left:20px;
}
.btns-holder {
    display: flex;
    justify-content: space-between;
    max-width:370px;
    margin: 20px 0 10px;
}

    /* Common Btns*/
    /* Spacers Start */
    .section-bg {
    background-color: #FAFBFF;
}
.space-p-t {
    padding-top:80px;
}

.space-p-b {
    padding-bottom:80px;
}

.space-p-tb {
    padding:80px 0;
}

.space-m-t {
    margin-top:80px;
}

.space-m-b {
    margin-bottom:80px;
}

.space-m-tb {
    margin:80px 0;
}

/* Spacers End */

/* Common Text Style*/
.common-title {
    /*font-size: calc(22px + (38 - 22) * ((100vw - 300px) / (1920 - 300)));*/
    font-weight:700;
    color:var(--primary-color);
}
.mid-title {
    /*font-size:calc(22px + (27 - 22) * ((100vw - 300px) / (1920 - 300)));
    font-weight:600;*/
    color: var(--primary-color);
}
.common-title span{
    color:var(--primary-color);
}
.common-text {
    font-size: calc(13px + (17 - 13) * ((100vw - 300px) / (1920 - 300)));
    font-weight:400;
    color: var(--body-font-color);
}

.what-we-btn {
    background-color: var(--primary-color);
    border-radius: 12px;
    padding: 12px 30px;
    text-transform: uppercase;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    text-align: center;
    position: relative;
    transition: 0.3s ease-in-out;
    border: 0;
}

.what-we-btn:hover {
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    background-color: transparent;
}

.what-btn {
    text-align: end;
}

.comon-btn {
    background-color: var(--primary-color);
    border-radius: 20px;
    padding: 12px 50px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    position: relative;
    transition: 0.3s ease-in-out;
}

.comon-btn:hover {
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    background-color: transparent;
}

.custom-bg{
    background-color:var(--primary-color);
}
.section-bg-dark {
    background-color: #D6E5FD;
}

.testi-arrows {
    display: flex;
    gap: 46px;
    padding-top: 20px;
    cursor: pointer;
}

/* Common Text Style*/
/* Home Page Css Start  */
.main-banner {
    min-height: auto;
    position: relative;
    padding-top: 120px;    
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-color: #F2F6FD;
}

.inner-banner {
    min-height: auto;
    position: relative;
    padding-top: 150px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-color: #F2F6FD;
}

.main-banner:after {
    content: "";
    background-color: #ffffff;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 50px;
}

.inner-banner:after {
    content: "";
    background-color: #ffffff;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 50px;
}

.header-boxes-holeder {
    /*max-width: 1164px;*/
    max-width: auto;
    margin: 0 auto;
    /*margin-top: -100px;*/
    margin-top: 30px;
}

.banner-img {
    margin: 0 auto;
    left: 40px;
    position:relative;
}

/*.main-banner span{
    font-size: calc(15px + (19 - 15) * ((100vw - 300px) / (1920 - 300)));
    font-weight:600;
    color:var(--secondary-color);
    text-transform:uppercase;
}*/
.main-banner h1{
    font-size: calc(26px + (48 - 26) * ((100vw - 300px) / (1920 - 300)));
    font-weight:600;
    color:var(--primary-color);
}
.main-banner h1 span{
    color:var(--primary-color);
}
.main-banner p{
    /*font-size: calc(14px + (16 - 14) * ((100vw - 300px) / (1920 - 300)));*/
    font-weight:400;
    color:var(--body-font-color);
}
.main-banner label{
    background-color:var(--primary-color);
    padding:10px 15px;
    display:inline-block;
    font-size: calc(13px + (17 - 13) * ((100vw - 300px) / (1920 - 300)));
    font-weight:500;
    color:var(--white-color);
    border:0;
    border-radius:10px 10px 0 0;
    margin:0;
}

.inner-banner h1 {
    font-size: calc(26px + (48 - 26) * ((100vw - 300px) / (1920 - 300)));
    font-weight: 600;
    color: var(--primary-color);
}
.inner-banner h2 {
    font-weight: 700;
    color: var(--primary-color);
}

    .inner-banner h1 span {
        color: var(--primary-color);
    }

.inner-banner p {
    font-weight: 400;
    color: var(--body-font-color);
}

.inner-banner label {
    background-color: var(--primary-color);
    padding: 10px 15px;
    display: inline-block;
    font-size: calc(13px + (17 - 13) * ((100vw - 300px) / (1920 - 300)));
    font-weight: 500;
    color: var(--white-color);
    border: 0;
    border-radius: 10px 10px 0 0;
    margin: 0;
}

.banner-form{
    position:relative;
    margin-top:40px;
}
.main-banner .banner-form form {
    background-color: #ffffff;
    border-radius: 10px;
    border: 0;
    position: relative;
    padding: 4px 8px;
    max-width: max-content;
    margin: 0 auto;
}

.inner-banner .banner-form form {
    background-color: #ffffff;
    border-radius: 10px;
    border: 0;
    position: relative;
    padding: 4px 8px;
    max-width: max-content;
    margin: 0 auto;
}

.banner-form h2 {
    font-size: calc(23px + (38 - 23) * ((100vw - 300px) / (1920 - 300)));
    font-weight: 700;
    color: var(--white-color);
    margin-bottom:20px;
    text-align:center;
}

.banner-form input {
    width: 100%;
    height: 50px;
    padding: 2px 5px;
    /*  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);*/
    border-radius: 10px;
    position: relative;
    border: 0;
    border-right: 1px solid #ccc;
    border-radius: 0;
}
.banner-form input:nth-child(2){
    border:0;
}

.banner-form textarea {
    width: 100%;
    height: 120px;
    padding: 2px 10px;
/*    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);*/
    border-radius: 10px;
    position:relative;
    border:0;
    
}
.banner-form .btn-sbt {
    border-radius: 10px;
    position: absolute;
    right:15px;
    bottom:-40px;
    border: 0;
    text-decoration: none;
    padding: 10px 25px;
    border-radius: 50%;
    background-image: -moz-radial-gradient( 50% 50%, circle closest-side, rgb(74,80,211) 1%, rgb(36,40,121) 100%);
    background-image: -webkit-radial-gradient( 50% 50%, circle closest-side, rgb(74,80,211) 1%, rgb(36,40,121) 100%);
    background-image: -ms-radial-gradient( 50% 50%, circle closest-side, rgb(74,80,211) 1%, rgb(36,40,121) 100%);
    width:50px;
    height:50px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:var(--white-color);
    font-size:23px;
}


.whitebdr-box {
    border-radius: 30px;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 0px 13px 0px rgba(36, 40, 121, 0.25);
    padding: 20px;
    position: relative;
    min-height: 140px;
    display: flex;
    align-items: flex-start;
    position: relative;
    z-index: 1;
}
.whtbdr-box {
    border-radius: 0;
    border-right:1px solid  #e8ebed;
    position:relative;
    /*min-height:100px;*/
    min-height: 100%;
    padding: 0 15px;
}
.whtbdr-box:nth-child(4){
    border:0;
}
.whitebdr-box span {
    /*font-size: calc(18px + (18 - 18) * ((100vw - 300px) / (1920 - 300)));*/
    font-weight: 600;
    color: var(--primary-color);
   
}
.whitebdr-box p {
    font-size: calc(13px + (16 - 13) * ((100vw - 300px) / (1920 - 300)));
    font-weight: 400;
    color:var(--body-font-color);
    /*word-break:break-all;
    max-width:200px;*/
    margin: 10px 0 0 0;
    
}
.registration-sec{
    position:relative;
}
.registration-sec .nav-tabs .nav-link {
    /*font-size: calc(20px + (20 - 20) * ((100vw - 300px) / (1920 - 300)));*/
    font-weight: 500;
    color:var(--body-font-color);
    /*margin-bottom: 50px;*/
    border: 0;
   /* padding:5px 10px 5px 30px;*/
    /*margin:0 30px 40px 0;*/
    width:290px;
    text-align:left;
}
.registration-sec .nav-tabs{
    position:relative;
   /* border-right:5px solid #eceef0;*/
    padding:0;
    box-shadow:none;
    height: 100%;
}
.registration-sec .nav-tabs::before{
    content: "";
    background-color: #eceef0;
    width: 6px;
    height: 100%;
    position: absolute;
    right: 16px;
    top: 0;
    z-index: -1;
}
.registration-sec .nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active{
    position:relative;
    color:var(--primary-color);
    border-right:5px solid var(--primary-color);
    border-radius:0;
    /* margin: 0 30px 40px 0;*/
}
/*.registration-sec .nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active::before{
    background-color:var(--primary-color);
    height:20px;
    height:100%;
    position:absolute;
    right:0;
}*/


.lightbgr {
    background-color: #f9fbfd;
    border-radius: 10px;
    border: 0;
    padding: 20px;
    position: relative;
}
.lightbgr::before{
    content: "";
    background-color: #eff1f3;
    height: 1px;
    position: absolute;
    top: 13%;
    width: 80%;
    right: 0;

}
.process-box {
    position: relative;
    text-align: center;
    margin-bottom: 20px;
    border-right: 1px solid #e0e4e8;
    padding: 5px 15px 5px 0;
}
.process-box .process-box-icon{
    margin-bottom:10px;
}
.process-box .process-box-text span{
    color:#1b1d1f;
    /*font-size:calc(13px + (17 - 13) * ((100vw - 300px) / (1920 - 300)));*/
    font-weight:600;
}
.process-box .process-box-text p{
    color: var(--body-font-color);
    font-size: calc(13px + (17 - 13) * ((100vw - 300px) / (1920 - 300)));
    font-weight: 400;
    margin-top: 10px;
}
.pricing-sec {
    position: relative;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: top center;
    min-height: 670px;
}
.packages-box{
    position:relative;
    margin-bottom:40px;
    border:2px solid #76838d;
    background-color:var(--white-color);
    border-radius:12px;
    cursor:pointer;
}
.packages-box .package-header{
    background-color:#f3f7f9;
    text-align:center;
    padding:14px 35px;
    padding-top: 40px;
    min-height:200px;
    border-radius:12px 12px 0 0;
    margin-bottom:10px;
}
.packages-box .package-header h3{
    font-size:calc(30px + (30 - 30) * ((100vw - 300px) / (1920 - 300)));
    font-weight:600;
    color:#797774;
    text-transform:uppercase;
}
.packages-box .package-header p{
    /*font-size:calc(14px + (16 - 14) * ((100vw - 300px) / (1920 - 300)));*/
    font-weight:400;
    color:#000;
    text-transform:uppercase;
}

    /*.packages-box:active .package-header .package-pricing label {
        color: var(--primary-color) !important;
    }*/

    .packages-box .package-header .act-blue {
        color: #F0551C;
    }

.packages-box .package-header .package-pricing .act-black span {
    font-size: calc(36px +(30 - 36)*((100vw - 300px) /(1920 - 300)));
    font-weight: 600;
    color: #000000;
    font-style: normal;
    position: relative;
    bottom: 14px;
}

.packages-box .package-header .package-pricing .act-black {
    font-size: calc(22px +(40 - 22)*((100vw - 300px) /(1920 - 300)));
    font-weight: 600;
    color: #000000;
    font-style: normal;
    position: relative;
}


.packages-box .package-footer a:active {
    background-color: #F0551C;
}

.packages-box .package-header h5{
    /*font-size: calc(14px + (12 - 14) * ((100vw - 300px) / (1920 - 300)));*/
    font-weight: 400;
    color: #88919c;
    margin-top: -8px;
}


.packages-box .package-header .package-pricing {
    min-height:100px;
    position:relative;
}
    .packages-box .package-header .package-pricing label {
        font-size: calc(34px + (40 - 34) * ((100vw - 300px) / (1920 - 300)));
        font-weight: 600;
        color: var(--primary-color);
        font-style: normal;
        position: relative;
    }
.packages-box .package-header .package-pricing label span {
     font-size:calc(28px + (30 - 28) * ((100vw - 300px) / (1920 - 300)));
     font-weight:600;
     color: var(--primary-color);
     font-style:normal;
    position: relative;
    bottom: 14px;
}
.packages-box .package-header .package-pricing label em  {
     font-size:calc(26px + (25 - 26) * ((100vw - 300px) / (1920 - 300)));
     font-weight:600;
         color: #bcbdbd;
     font-style:normal;
       text-decoration: line-through;
}
    .packages-box .package-list {
        padding: 0 26px;
        margin: 20px 0 10px;
        height: 280px;
        overflow: auto;
        max-width: 380px;
    }

        .packages-box .package-list li {
            list-style: none;
            font-size: calc(13px + (17 - 13) * ((100vw - 300px) / (1920 - 300)));
            font-weight: 500;
            color: #848484;
            margin-bottom: 10px;
            padding-left: 14px;
            position: relative;
        }
            .packages-box .package-list li::before {
                content: "";
                background-color: var(--primary-color);
                width: 5px;
                height: 5px;
                border: 0;
                border-radius: 50%;
                position: absolute;
                left: 0;
                top: 9px;
            }
.packages-box .package-footer-top{
    border-top:1px solid #ccc;
    position:relative;
    display:flex;
    align-items:center;
    justify-content:space-between;
    margin:10px 25px;
    min-height:80px;
}

.package-footer-top:before {
    content: "";
    position: absolute;
    width: 2px;
    height: 44px;
    background-color: #e8eaee;
    /*left: 174px;*/
    left: 0;
    right: 0;
    margin: 0 auto;
}

.packages-box .package-footer-top-inner span,.packages-box .package-footer-top-inner a{
    display:block;
    font-size: calc(11px + (13 - 11) * ((100vw - 300px) / (1920 - 300)));
    font-weight: 400;
    color:#393631;
    text-decoration:none;
    text-align:center;
}
.packages-box .package-footer {
    min-height: 80px;
    padding-bottom: 40px;
}
.packages-box .package-footer a {
    background-color: var(--primary-color);
    border: 0;
    border-radius: 15px;
    padding: 16px 40px;
    color: var(--white-color);
    text-decoration: none;
    font-weight: 500;
    text-align: center;
    transition: 0.4s ease-in-out;
    font-size: calc(13px + (16 - 13) * ((100vw - 300px) / (1920 - 300)));
}

.packages-box .package-footer-active a {
    background-color: #F0551C;
    border: 0;
    border-radius: 15px;
    padding: 16px 40px;
    color: var(--white-color);
    text-decoration: none;
    font-weight: 500;
    text-align: center;
    transition: 0.4s ease-in-out;
    font-size: calc(13px + (16 - 13) * ((100vw - 300px) / (1920 - 300)));
}

ul.package-content li {
    margin-bottom: 12px;
}

.packages-box .package-footer-active {
    min-height: 80px;
    padding-bottom:40px;
}

.packages-box:hover {
    border: 2px solid var(--primary-color);
    box-shadow: 0px 0px 45px 0px rgba(5, 24, 44, 0.35);
}
.packages-box:hover .package-header h3{
    color:var(--primary-color);
}
.packages-box:hover .package-header .package-pricing label{
    color:var(--primary-color);
}
.packages-box:hover .package-footer a {
    border: 0;
    background-color: #F0551C;
}
.register-list{
    border:1px dashed var(--primary-color);
    border-radius:20px;
    padding:20px;
}
    .register-list li {
        list-style: none;
        font-size: calc(13px + (17 - 13) * ((100vw - 300px) / (1920 - 300)));
        margin-bottom: 20px;
        padding-bottom: 20px;
        border-bottom: 1px dashed var(--primary-color);
        color: var(--body-font-color);
    }

.cols-holder {
    max-width: 1083px;
    margin: 0 auto;
}

.cols-holder p {
    padding-right: 70px;
    color: #fff;
}

/*-------------------- Samit ----------------------*/


.cta-home {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

    .register-list li:last-child {
        border-bottom: none;
        margin-bottom: 0px;
        padding-bottom: 0px;
    }

    .register-list span {
        /*font-size: 20px;*/
        color: var(--primary-color);
        font-weight: 600;
    }

.chose-box span {
    color: #fff;
    font-weight: 600;
}

.what-box {
    text-align: center;
    border-radius: 12px;
    min-height: 200px;
    /*margin: 10px;*/
    padding-top: 40px;
    box-shadow: 0px 0px 13px 0px rgba(36, 40, 121, 0.25);
    transition: 0.5s ease-in-out;
}

.what-box-text {
    padding-top: 20px;
}

.what-box:hover {
    background-color: var(--primary-color);
    color: #fff;
}

    .what-box:hover .what-box-icon {
        filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(1%) hue-rotate(22deg) brightness(106%) contrast(102%);
    }

.what-box-icon {
    transition: 0.5s ease-in-out;
}
.help {
    border-bottom: 1px solid #dee1ed;
    padding-bottom: 10px;
    margin-right: 50px;
}

    .help span {
        color: var(--primary-color);
    }
    .help h2 {
        color: #1f1f1f;
        /*font-size:38px;
        font-weight:600;*/
    }
.help-btm a {
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    color: #ffffff;
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
    padding: 12px 24px 12px 24px;
    display: inline-block;
    border-radius: 10px;
    text-transform: uppercase;
    transition: 0.3s ease-in-out;
}

.help-btm a:hover {
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    background-color: transparent;
}

.rating h3 {
    font-size: 18px;
    color: #011167;
    border-right: 1px solid #dee1ed;
    padding-right: 20px;
}
    .rating h3 span{
        font-weight:bold;
    }
.help-btm-head {
    display: flex;
    gap: 25px;
    /*align-items: center;*/
}
.star .fa-star, .star .fa-star-half {
    color: #ffc833 !important;
}

.star-ratings {
    font-weight: 600;
}

.star-ratings span {
    color: var(--primary-color);
}

.testi-sec {
    background-color: #eef1fd;
}

.testi-info {
    display: flex;
    align-items: end;
    gap: 22px;
}

.testi-name h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 2px;
}

.testi-name span {
    color: var(--primary-color);
    font-size: 14px;
}

.testi-profile img {
    width: 90px;
}

.description p {
    margin-left: 112px;
    position:relative;
}

.description :before {
    content: "";
    background-image: url(/assets/images/icons/commas.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size:contain;
    width: 60px;
    height: 42px;
    position: absolute;
    top: 6px;
    left: -104px;
}




/* Home Page Css End */
/* Footer Css start here */
.footer-sec {
    position: relative;
    background-color: #000;
}


.footer-links h3 {
    text-transform: uppercase;
    font-size: 16px;
    padding-bottom: 9px;
}

.foo-menu {
    list-style: none;
    padding-left: 18px;
}

.footer-dis p {
    color: #afafc2;
}

    .foo-menu li {
        position: relative;
        padding-bottom: 10px;
    }

.foo-link {
    text-decoration: none;
    color: #a6a6bd;
}

.foo-menu li:before {
    content: "";
    position: absolute;
    left: -18px;
    top: 5px;
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 8px solid var(--primary-color);
}

.socials-icons.text-white {
    display: flex;
    align-items: end;
    gap: 11px;
    justify-content: end;
}

.socials-icons .fa-facebook-f {
    border: 1px solid #fff;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    padding: 8px;
}

.socials-icons .fa-facebook-f:hover {
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.socials-icons h3 {
    font-size: 18px;
    text-transform: uppercase;
}

.socials-icons .fa-x-twitter {
    border: 1px solid #fff;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    padding: 8px;
}

.socials-icons .fa-x-twitter:hover {
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.socials-icons .fa-linkedin-in {
    border: 1px solid #fff;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    padding: 8px;
}

.socials-icons .fa-linkedin-in:hover {
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.socials-footer {
    border-top: 1px solid #ffffff1f;
    padding-top: 24px;
    padding-b ]: 4;
    margin-bottom: 30px;
}

.foo-contact {
    border-radius: 6px;
    background-color: var(--primary-color);
    width: 200px;
    text-align: center;
    padding: 8px;
    transition: 0.2s ease-in-out;
}

.foo-contact:hover {
    transform: scale(1.1);
}

.foo-num {
    text-decoration: none;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    padding-left: 6px;
}

.foo-contact .fa-phone {
    color: #fff;
    font-size: 20px;
    padding-right: 10px;
}

.copyright {
    background-color: var(--primary-color);
    padding-top: 16px;
}

.copyright p {
    color: #fff;
    /*text-transform: uppercase;*/
    font-size: 13px;
    font-weight: 500;
}

.copy-list {
    text-align: end;
}

.copy-list a {
    text-decoration: none;
    border-right: 1px solid;
    padding-right: 6px;
    color: #42496a;
    font-size: 13px;
    font-weight: 500;
}

.copy-list a:last-child {
    border-right: none;
}


/*------------ Services -----------*/


.icons-box {
    text-align: center;
    border-radius: 12px;
    /*min-height: 200px;*/
    box-shadow: 0px 0px 13px 0px rgba(36, 40, 121, 0.25);
    transition: 0.5s ease-in-out;
    max-width: 230px;
    padding: 20px;
    color: inherit;
    text-decoration: none;
}

.card-icons {
    display: flex;
    justify-content: space-between;
}

.what-box-text h3 {
    font-size: 14px;
    font-weight: 600;
}

.what-box-text p {
    font-size: 14px;
    margin-bottom: 0;
}

.icons-box:hover {
    background-color: var(--primary-color);
    color: #fff;
}

.icons-box:hover .what-box-icon {
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(1%) hue-rotate(22deg) brightness(106%) contrast(102%);
}
.icons-box:hover p {
    color: #fff;
}

.cta-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
}
    .cta-btns .cta-f-btn {
        background-color: var(--primary-color);
    }
        .cta-btns .cta-f-btn:hover {
            background-color: var(--primary-color);
        }

.cta-f-btn a {
    color: #fff !important;
    font-size: 16px;
    font-weight: 600;
}

.cta-f-btn {
    padding: 8px 30px;
    border: 2px solid var(--primary-color);
    border-radius: 6px;
    transition: 0.5s ease-in-out;
    cursor: pointer;
}

.cta-s-btn {
    padding: 8px 30px;
    border: 2px solid var(--primary-color);
    border-radius: 6px;
    transition:0.5s ease-in-out;
}

.cta-s-btn:hover {
    padding: 8px 30px;
    background-color: var(--primary-color);
    border-radius: 6px;
}

.cta-f-btn:hover {
    padding: 8px 30px;
    background-color: var(--primary-color);
    border-radius: 6px;
}

.cta-s-btn a {
    color: #fff !important;
    font-size: 16px;
    font-weight: 600;
}

.who-we-bullet ul {
    list-style: none;
    padding: 0;
}
.who-we-bullet li {
    color: var(--body-font-color);
}
.bullet {
    padding-right: 12px;
}

.who-we-btn a {
    text-decoration: none;
    background-color: var(--primary-color);
    padding: 12px 40px;
    border-radius: 8px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    transition:0.3s ease-in-out;
}

.who-we-btn a:hover {
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    background-color: transparent;
}

.color-sec {
    background-color: #fbfdfe;
}

/*--------------- Copyright -------------*/

.package-content span {
    font-size: 14px;
    font-weight: 600;
    color: #88919c;
}

.package-content li {
    font-size: 14px;
    color: #a3a3a3;
}

ul.package-content {
    padding-top: 10px;
    padding-right: 30px;
    padding-left: 40px;
}

/*---------------- company formation -------------*/

.package-header-blue {
    text-align: center;
    padding: 10px 35px;
    padding-top: 30px;
    border-radius: 12px 12px 0 0;
    margin-bottom: 10px;
}

.package-header-blue h3 {
    font-size: calc(30px +(30 - 30)*((100vw - 300px) /(1920 - 300)));
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
}

ul.package-content-dark {
    /* padding-top: 10px; */
    padding-right: 30px;
    padding-left: 40px;
}

.package-content-dark li {
    font-size: 14px;
    color: #848484;
    font-weight: 500;
}


/*--------------- Comprehensive tm Search ---------------------*/

.tm-search-row .col-md-4:last-child .tm-search-boxes:before {
    content: none;
}

.tm-search-boxes h2 {
    font-size: 18px;
    font-weight: 600;
}

.tm-search-boxes p {
    font-size: calc(13px + (17 - 13) * ((100vw - 300px) / (1920 - 300)));
    font-weight: 400;
    color: #636365;
}

.tm-search-boxes {
    padding: 30px;
    position:relative;
}

.tm-search-boxes:before {
    content: "";
    position: absolute;
    width: 1px;
    height: 150px;
    background-color: #00000021;
    right: -17px;
    top: 36px;
}

.tm-search-boxes:before:nth-child(3) {
    display:none;
}

.tm-search-row {
    background-color: #f9fbfd;
    padding: 40px;
    border-radius: 16px;
}

.package-box-head{
    background-color: #f3f7f9;
    text-align: center;
    padding: 14px 35px;
    min-height: 245px;
    border-radius: 12px 12px 0 0;
    margin-bottom: 10px;
}
.package-box-head h3{
    font-size:calc(30px + (30 - 30) * ((100vw - 300px) / (1920 - 300)));
    font-weight:600;
    color:#797774;
    text-transform:uppercase;
}
.package-box-head p{
    font-size:calc(14px + (16 - 14) * ((100vw - 300px) / (1920 - 300)));
    font-weight:400;
    color:#88919c;
    text-transform:uppercase;
}
.package-box-pricing {
    min-height:100px;
    position:relative;
}
    .package-box-pricing label {
        font-size: calc(22px + (40 - 22) * ((100vw - 300px) / (1920 - 300)));
        font-weight: 600;
        color: var(--primary-color);
        font-style: normal;
        position: relative;
    }
        .package-box-pricing label span {
            font-size: calc(36px + (30 - 36) * ((100vw - 300px) / (1920 - 300)));
            font-weight: 600;
            color: var(--primary-color);
            font-style: normal;
            position: relative;
        }
.package-box-pricing label em {
    font-size: calc(26px + (36 - 26) * ((100vw - 300px) / (1920 - 300)));
    font-weight: 600;
    color: #797774;
    font-style: normal;
    text-decoration: line-through;
}

.packages-box:hover .package-box-head h3 {
    color: var(--primary-color);
}

.packages-box:hover .package-box-head .package-box-pricing label {
    color: var(--primary-color);
}

/*------------------- Contact form -----------*/

.contact-form-img {
    border-radius: 16px;
}

form.cp-form input {
    height: 46px;
    margin-bottom: 30px;
    border: 1px solid #0000004a;
    background-color: #f8f8ff;
}

.cp-form textarea#tr {
    height: 150px;
    border-radius: 8px;
    border-color: #0000004a;
    font-size: 18px;
    width: 100%;
    padding-top: 10px;
    padding-left: 10px;
    background-color: #f8f8ff;
}

.arw-btn {
    width: 100%;
    padding: 10px 0;
    background-color: #f8f8ff;
    border: 1px solid #0000004a;
    border-radius: 8px;
    color: #767676;
    font-weight: 500;
    transition: 0.3s ease-in-out;
}

.arw-btn:hover {
    background-color: var(--primary-color);
    color: #fff;
}

.contact-info-bnr {
    background-repeat: no-repeat;
    background-size: cover;
}

.contact-info {
    background-color: #fff;
    padding: 25px 0px;
    padding-left: 28px;
    border-radius: 0;
    color: #fff;
    border: 1px solid #fff;
    transition: 0.3s ease-in-out;
    align-items: center;
    display: flex;
    flex-direction: column;
    position: relative;
}
.contact-info::after {
    position: absolute;
    left: 0;
    top: 0;
    background-image: url(../images/contactShade.png);
    background-repeat: no-repeat;
    background-size: cover;
    width: 135px;
    height: 135px;
    content: "";
}
.contact-info .shade {
    position: absolute;
    left: 0;
    right: 0;
    top: -25px;
    height: 24px;
    background-image: url(../images/top-shadeContact.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
}
.contact-info .iconArea {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.contact-info p {
    margin-bottom: 0;
    color: #14123e;
    font-size: calc(11px + (13 - 11) * ((100vw - 300px) / (1920 - 300)));
}
.contact-info a {
    text-decoration: none;
    color: #14123e;
    font-size: calc(11px + (13 - 11) * ((100vw - 300px) / (1920 - 300)));
}

/*.contact-info:hover {
    background-color: #fff;
    border: 1px solid var(--primary-color);
}*/

.contact-info:hover h5 {
    color: var(--primary-color);
        transition: 0.3s ease-in-out;
}

.contact-info:hover span {
    color: var(--primary-color);
}

.fa-phone {
    padding-right: 8px;
}

.fa-envelope {
    padding-right: 8px;
}

.fa-location-dot {
    padding-right: 8px;
}

.contact-info span {
    font-size: 14px;
    transition: 0.2s ease-in-out;
}

.form-section .iti {
    width: 100%;
}

/*-------------- Terms & Conditions ----------*/

.tc-banner:after {
    display: none;
}

.tc-content h3 {
    font-size: calc(20px + (27 - 20) * ((100vw - 300px) / (1920 - 300)));
}








/* Footer Css End here */


/*-------------------------------------- Responsive ---------------------------*/

@media(max-width:1399.9px) {
    /*-------- Servcies -----------*/

    .banner-form input {
        font-size: 14px;
    }

    .icons-box {
        max-width: 200px;
        padding: 10px;
    }

    .lightbgr::before {
        width: 77%;
    }

    .registration-sec .nav-tabs .nav-link {
        width: 244px;
        font-size: calc(20px + (15 - 20) * ((100vw - 300px) / (1920 - 300)));
    }

    .help-btm-head {
        gap: 18px;
    }

    .help-btm a {
        padding: 12px 14px;
        font-size: 16px;
    }

    ul.package-content {
        min-height: 330px;
    }

    .package-footer-top:before {
        left: 147px;
    }

    .card-icons {
        gap: 15px;
    }

    .what-box-text {
        font-size: 15px;
    }

}

@media(max-width:1199px) {

    .banner-form input {
        font-size: 14px;
        padding: 2px 2px;
    }

    .iti__selected-flag {
        padding: 0 2px 0 2px;
    }

    .form-group {
        padding-left: 6px;
    }

     .form-group .iti__flag-container {
        margin-left: -20px;
     }

    .form-group .iti__selected-dial-code {
        margin-left: 2px !important;
    }

    .form-group input#pn {
        padding-left: 38px !important;
    }

    .whitebdr-box {
        margin-top: 90px;
    }

    .registration-sec .nav-tabs::before {
        right: -10px;
    }

    .registration-sec .nav-tabs .nav-link {
        width: 225px;
        font-size: calc(20px + (12 - 20) * ((100vw - 300px) / (1920 - 300)));
    }

    .help-btm a {
        padding: 10px 10px;
        font-size: 13px;
    }

    .testi-arrows {
        gap: 20px;
    }

    .help-btm-head {
        gap: 12px;
    }

    .lightbgr::before {
        width: 73%;
        top: 12%;
    }

    /*--------------------- About --------------------*/

    .header-boxes-holeder {
        margin-top: -150px;
    }

    ul.package-content {
        min-height: 392px;
    }

    .package-box-head {
        padding: 14px;
        min-height: 244px;
    }

    .package-footer-top:before {
        left: 116px;
    }

    /*-------------- Contact -------------*/

    .form-section .form-group .iti__flag-container {
        margin-left: 0px;
    }

    .form-section .form-group input#pn {
        padding-left: 60px !important;
    }

    .what-box-icon img {
        width: 50px;
    }

}

@media(max-width:991px) {

    .space-p-tb {
        padding: 60px 0;
    }

    .space-p-t {
        padding-top: 60px;
    }

    .space-p-b {
        padding-bottom: 60px;
    }

    .header-right {
        display: none;
    }

    .main-banner .banner-form form {
        margin: 0;
        padding: 0;
    }

    .main-banner label {
        margin-left: -5px;
    }

    .banner-form input {
        border-right: 0;
        padding-left: 14px;
        border-bottom: 1px solid #e4e4e4;
    }

    .iti {
        /*width: auto;*/
        width: -webkit-fill-available;
    }

    .whitebdr-box {
        margin-top: 170px;
    }

    .form-group .iti__flag-container {
        margin-left: -1px;
    }

    .form-group input#pn {
        padding-left: 60px !important;
    }

    .banner-img {
        display: none;
    }

    .main-banner {
        min-height: 622px;
    }

    .whtbdr-box {
        padding-left: 0px;
    }

    .whitebdr-box {
        padding: 2px;
        min-height: 170px;
        margin-top: 30px;
    }

    .tm-registration {
        width: 100%;
        margin-bottom: 20px;
    }

    .pricing-sec {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .packages-box .package-header {
        padding: 10px 20px;
        padding-top: 30px;
    }

    .price-row{
        justify-content:center;
    }

    .registration-sec .nav-tabs::before {
        display:none;
    }

    .registration-sec .nav-tabs .nav-link.active {
        border-right: none;
    }

    .registration-sec .nav-tabs .nav-link {
        width: 139px;
        font-size: calc(20px + (12 - 20) * ((100vw - 300px) / (1920 - 300)));
        font-weight: 500;
        padding: 2px;
        margin-bottom: 20px;
    }

    .what-box {
        margin-bottom: 15px;
    }

    .what-we-btn {
        padding: 12px 4px;
        font-size: 14px;
    }

    .description :before {
        left: -80px;
    }

    .description p {
        margin-left: 80px;
    }

    .packages-box .package-list {
        height: 180px;
    }

        .chose-box span {
            font-size: 24px;
        }

    .cols-holder p {
        padding-right: 0;
    }

    /*-------------- About -----------------*/

    .inner-banner .banner-form form {
        margin: 0;
        padding: 0;
    }

    .inner-banner label {
        margin-left: -5px;
    }

    .inner-banner {
        min-height: auto;
    }

    .inner-banner .whitebdr-box {
        margin-top: 30px;
    }
    .header-boxes-holeder {
        margin-top: 0;
    }

    /*-------- Services ---------*/

    .package-box-head {
        padding: 17px;
        min-height: 250px;
    }

    .tm-search-boxes {
        padding: 2px;
    }

    .package-footer-top:before {
        left: 136px;
    }

    .card-icons {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
    }

    .contact-form-img {
        display: none;
    }

}

@media(max-width:767px) {

    .whitebdr-box {
        padding: 10px;
    }

    .whtbdr-box {
        text-align: center;
        border-right: 0;
        border-bottom: 1px solid #e4e4e4;
        min-height: auto;
        padding-top: 15px;
    }

    .whitebdr-box p {
        max-width: 100%;
        word-break: normal;
    }

    .registration-sec .nav-tabs {
    border-bottom: 0;
    justify-content: center;
}

     .registration-sec .nav-tabs .nav-link {
        width: 172px;
        font-size: calc(14px + (12 - 14) * ((100vw - 300px) / (1920 - 300)));
     }


    .process-box {
        border-right: 0;
        border-bottom: 1px solid #e0e4e8;
        margin-bottom: 20px;
    }

    .lightbgr::before {
        display: none;
    }

    .lightbgr h4 {
        text-align: center;
    }

    .cols-holder {
        text-align: center;
    }

        .cols-holder p {
            padding-right: 0;
        }

    .chose-box span {
        font-size: 22px;
    }

    .what-we-btn {
        padding: 10px 14px;
        font-size: 14px;
    }

    .what-btn {
        text-align: center;
    }

    .what-we-btn {
        padding: 8px 14px;
        font-size: 12px;
    }

    .what-we-sec {
        text-align: center;
    }

    .package-box-head {
        padding: 20px 14px 0 14px;
        min-height: auto;
    }

    ul.package-content {
        min-height: auto;
    }

    .packages-box {
        margin-bottom: 20px;
    }

    .tm-search-boxes:before {
        display: none;
    }

    .tm-search-boxes {
        padding: 10px;
    }

    .package-footer-top:before {
        left: 230px;
    }

    .packages-box .package-list {
        overflow: visible;
        height: auto;
    }

    .form-section .cp-form input {
        margin-bottom: 10px;
    }

    .form-section .form-group input#pn {
        margin-bottom: 10px !important;
    }

    .form-section .iti__selected-flag {
        height: 45px;
    }

    .socials-icons.text-white {
        gap: 8px;
    }

    .tm-search-boxes {
        border-bottom: 1px solid #e4e4e4;
        padding-top: 20px;
    }

   /* .process-box {
        border-bottom: 1px solid #e4e4e4;
        margin-bottom: 20px;
    }*/

}

@media(max-width:575px) {

    .space-p-tb {
        padding: 20px 0;
    }

    .space-p-b {
        padding-bottom: 20px;
    }

    .space-p-t {
        padding-top: 20px;
    }

    .mid-title {
        font-size: calc(20px + (27 - 20) * ((100vw - 300px) / (1920 - 300)));
        font-weight: 600;
        color: var(--primary-color);
    }

    .common-text {
        font-size: calc(14px + (17 - 14) * ((100vw - 300px) / (1920 - 300)));
        font-weight: 400;
        color: var(--body-font-color);
    }

    .main-banner {
        padding-top: 110px;
    }

    .brand-logo img {
        max-width: 170px;
    }

    .main-banner h1 {
        font-size: calc(20px + (48 - 20) * ((100vw - 300px) / (1920 - 300)));
    }

    .banner-form {
        margin-top: 20px;
    }

    .whitebdr-box {
        min-height: auto;
        margin: 50px 2px 0px 2px;
        padding: 0px;
    }

 .whitebdr-box p {
    margin: 4px;
}

 .banner-form input {
    font-size: 12px;
    /*height: 34px;*/
}

.whitebdr-box span {
    font-size: 16px;
    font-weight: 600;
}

.banner-form .btn-sbt {
    right: 6px;
    bottom: -25px;
    padding: 8px;
    width: 38px;
    height: 38px;
    font-size: 18px;
}

.header-boxes-holeder {
    margin-top: 0;
}

    .pricing-sec {
        background-size: auto;
        padding-top: 20px;
        background-position: top center;
    }

    .packages-box .package-header {
        padding: 10px;
    }

        .packages-box .package-header .package-pricing {
            min-height: 70px;
        }

    .packages-box .package-footer {
        padding-bottom: 16px;
        min-height: 50px;
    }

        .packages-box .package-footer a {
            padding: 10px 20px;
            height: 40px;
        }

    .packages-box .package-footer-top {
        margin: 4px 10px;
        min-height: 50px;
    }

    .packages-box .package-list {
        padding: 0 10px;
        height: auto;
    }

    .packages-box {
        margin-bottom: 20px;
    }

        .packages-box .package-header h3 {
            font-size: calc(24px + (30 - 24) * ((100vw - 300px) / (1920 - 300)));
        }


        .packages-box .package-footer-active {
    padding-bottom: 16px;
    min-height: 50px;
}

.packages-box .package-footer-active a {
    padding: 10px 20px;
    height: 40px;
}

    .lightbgr {
        padding: 14px;
        margin: 0 2px;
    }

    /*.process-box {
        margin-bottom: 0;
        padding: 0;
    }*/

    .registration-sec .nav-tabs .nav-link {
        font-size: calc(16px + (12 - 16) * ((100vw - 300px) / (1920 - 300)));
        width: auto;
        padding-right: 20px;
        margin-bottom:10px;
    }

    .register-list {
        padding: 10px;
        margin-bottom: 0;
    }

    .tm-registration {
        margin-bottom: 10px;
    }

.register-list li {
    margin-bottom: 10px;
    padding-bottom: 10px;
}

.register-list span {
    font-size: 16px;
}

    .what-btn {
        text-align: center;
    }

    .what-we-btn {
        padding: 8px 14px;
        font-size: 12px;
    }

    .what-we-sec {
        text-align: center;
    }

    .what-box {
        min-height: 140px;
        padding: 20px 14px 2px;
        margin: 4px 0px;
    }

    .what-box-icon img {
        width: 36px;
    }

    .what-box-text {
        padding-top: 10px;
    }

    .help h2 {
        font-size: calc(22px + (27 - 22) * ((100vw - 300px) / (1920 - 300)));
    }

    .description :before {
        width: 40px;
        height: 28px;
        left: -45px;
    }

    .chose-box {
        margin-bottom: 20px;
    }

    .testi-arrows {
        display: none;
    }

    .help-btm a {
        font-size: 12px;
        text-align: center;
        width: 80px;
        padding:2px;
    }

    .rating h3 {
        font-size: 14px;
        padding-right: 12px;
    }

    .help-btm-head {
        gap: 10px;
    }

    .star {
        font-size: 12px;
    }

    .star-ratings {
        font-size: 12px;
    }

    .help {
        padding-bottom: 0;
    }

    .description p {
        margin-left: 48px;
        font-size: 14px;
        margin-bottom: 2px;
    }

    .testi-profile img {
        width: 60px;
    }

    .testi-info {
        gap: 10px;
        padding-top:10px;
    }

    .foo-logo {
        width: 130px;
    }

    .footer-links h3 {
        font-size: 14px;
        padding-bottom: 0px;
        margin-bottom: 0px;
    }

    .foo-menu li {
        padding-bottom: 0px;
    }

    .foo-link {
        font-size: 12px;
    }

    .foo-num {
        font-size: 12px;
    }

    .foo-contact {
        width: 140px;
        padding: 4px;
    }

    .socials-footer {
        padding-top: 10px;
        margin-bottom: 10px;
    }

    .socials-icons .fa-facebook-f {
        width: 17px;
        height: 15px;
        padding: 4px;
    }

    .socials-icons .fa-x-twitter {
        width: 17px;
        height: 15px;
        padding: 4px;
    }

    .socials-icons .fa-linkedin-in {
        width: 17px;
        height: 15px;
        padding: 4px;
    }

    .socials-icons h3 {
        font-size: 14px;
        margin-bottom: 0;
        display:none;
    }

    .copyright p {
        font-size: 12px;
    }

    .copy-list a {
        font-size: 12px;
        padding-right: 4px;
        padding-left:4px;
    }

    .foo-contact img {
        width: 22px;
        padding-right: 4px;
    }

/*    .socials-icons.text-white {
        justify-content: center;
        padding-top: 10px;
    }*/

    .copy-list {
        flex-wrap: wrap;
        display: flex;
        justify-content: center;
    }

    .copyright {
        text-align: center;
    }

    .foo-contact img {
        padding-right: 6px;
    }

    .chose-box span {
        font-size: 18px;
    }

    .cols-holder p {
        font-size: 14px;
    }

    .footer-dis p {
        font-size: 14px;
    }

    /*------------- About -----------*/

    .inner-banner {
        padding-top: 80px;
    }

    .inner-banner h1 {
        font-size: calc(22px + (48 - 22) * ((100vw - 300px) / (1920 - 300)));
    }

    /*------------ Services -------------*/

    .package-box-head h3 {
        font-size: calc(22px + (30 - 22) * ((100vw - 300px) / (1920 - 300)));
    }

    .package-footer-top:before {
        display: none;
    }

    .cta-f-btn {
        margin-bottom: 10px;
        padding: 6px 20px;
    }

    .cta-f-btn a {
        font-size: 14px;
    }

    .cta-btns {
        display: inline-block;
    }

    .cta-s-btn a {
        font-size: 14px;
    }

    .who-we-btn a {
        padding: 10px 30px;
        font-size: 12px;
    }

    .contact-info h5 {
        font-size: 16px;
        margin: 0;
    }

    .contact-info {
        padding: 4px;
        padding-left: 20px;
    }


    /*-------------- Contact -----------*/

    .form-section .iti__flag-container {
        margin-left: 0px;
    }

    .form-section .form-group input#pn {
        padding-left: 60px !important;
    }

    .form-section .cp-form input {
        font-size: 14px;
    }

    .cp-form textarea#tr {
        font-size: 14px;
    }

    .arw-btn {
        font-size: 14px;
    }

    .cp-form textarea#tr {
        height: 80px;
    }


}

.main-banner .who-we-bullet {
    color: var(--body-font-color);
}

/*Faqs CSS*/

.bg-white-gradient {
    background: linear-gradient(to bottom, rgb(255, 255, 255) 60%, rgba(255, 255, 255, 0));
}

/* bootstrap overwrites */
.accordion-button {
    /*accordion button that is active*/
    font-weight: bold;
    background: transparent !important;
    border-bottom: 1px solid var(--primary-color);
}

    .accordion-button.collapsed {
        /*accordion button that is not active*/
        font-weight: 500;
        color: #555;
    }

.accordion-body {
    background: #f9fbfd;
    color: var(--body-font-color);
}
.accordion-button:not(.collapsed) {
    color: var(--primary-color);
}
.chose-box {
    border: 2px dotted var(--primary-color);
    border-radius: 5px;
    padding: 10px;
}
.home-banner {
    background-color: #f4f4f8;
    box-shadow: 0px 0px 37.24px 0.76px rgba(0, 0, 0, 0.35);
    padding: 35px 25px;
    border-radius: 0 25px 0 25px;
    border-top: 8px solid var(--primary-color);
    overflow: hidden;
}
.home-banner .btn-sbt {
    background-color: #F0551C;
    padding: 12px 10px;
}
.home-banner .form-group input {
    width: 100%;
    border: 1px solid rgb(200, 200, 200);
    border-radius: 10px;
    background-color: rgb(255, 255, 255);
    padding: 8px;
}
.home-banner .bannerBtn {
    background-color: var(--primary-color);
}

.home-banner .form-group span:before {
    display: none;
}

.btn {
    background-color: var(--secondary-color) !important;
    border-radius: 12px;
    padding: 12px 30px;
    text-transform: uppercase;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    text-align: center;
    position: relative;
    transition: 0.3s ease-in-out;
}
    .btn:hover {
        background-color: #17509D;
        color: #fff;
    }
.home-banner h2, .home-banner span {
    font-size: calc(15px + (28 - 15) * ((100vw - 300px) / (1920 - 300)));
    margin: 0 0 10px 0;
}
.home-banner span 
.home-banner h2 {
    font-weight: 500;
}
.home-banner span {
    font-weight: 600;
    width: 100%;
    position: relative;
    z-index: 1;
    overflow: hidden;
    color: #fff;
}

.iti__country span {
    font-weight: normal;
    width: 100%;
    position: relative;
    z-index: 1;
    overflow: auto;
    color: #000;
    font-size: 13px;
}

    .home-banner span:before {
        position: absolute;
        content: "";
        background-color: var(--primary-color);
        width: 130%;
        height: 100%;
        left: -25px;
        top: 0;
        border-radius: 0 25px 25px 0;
        z-index: -1;
    }

.cta-btns a {
    text-decoration: none;
}
.brand-popup-logo img {
    width: 200px;
    display: flex;
    margin: 0 auto;
}
.btn-close-ctm {
    position: absolute;
    right: 10px;
    top: 10px;
    z-index: 10;
}
.modal .form-control {
    max-width: 100%;
    height: 45px;
    line-height: 1;
}
.modal .form-group {
    margin-bottom: 20px;
}
.modal.fade .modal-dialog {
    transition: transform 0.3s ease-out;
    transform: translate(0, -50px);
}
.modal-content {
    border-radius: 12px;
}


.tab-img {
    max-height: 220px;
    overflow: hidden;
    border-radius: 20px;
}

.cta-f-btn {
    padding: 8px 30px;
    border: 2px solid var(--primary-color);
    border-radius: 6px;
    transition: 0.5s ease-in-out;
    cursor: pointer;
}

.cta-s-btn {
    padding: 8px 30px;
    border: 2px solid var(--primary-color);
    border-radius: 6px;
    transition: 0.5s ease-in-out;
    background: var(--primary-color);
    text-decoration: none;
}

    .cta-s-btn:hover {
        padding: 8px 30px;
        background-color: var(--primary-color);
        border-radius: 6px;
    }

.NewCta .cta-btns {
    justify-content: flex-start;
}

.cta-home.NewCta .container {
    position: relative;
}

.cta-home.NewCta .container .imgArea {
    position: absolute;
    bottom: -80px;
    right: 0;
}
.cta-home.NewCta .cta-f-btn {
    border-color: #F0551C;
    background-color: #F0551C;
}
    .cta-home.NewCta .cta-f-btn a {
        color: var(--primary-color);
    }

.pbb2 {
    padding-bottom: 150px;
}

@media (max-width: 991px) {
    .contact-info {
        margin-bottom: 30px;
    }
    .pbb2 {
        padding-bottom: 50px;
    }
    .cta-home.NewCta .container .imgArea {
        display: none;
    }
    .packages-box .package-header {
        min-height: auto;
    }
    .navbar-mobile .dropdown ul {
        margin: 0;
        width: 100%;
    }
    
}
@media (max-width: 575px) {
    .pbb2 {
        padding-bottom: 25px;
    }
}




