:root{
    --primary-color:#3d348b;
    --body-font-color:#565454;
    --heading-font-color:#fff;
    --bg-light:#fcedee;
    --text-light-2:#444247;
}
body{
  font-family: 'Poppins',sans-serif;
  font-size: 19px;
}
h1 {
    font-size: calc(32px + (50 - 32) * ((100vw - 300px) / (1920 - 300)));
}
h2 {
    font-size: calc(28px + (40 - 28) * ((100vw - 300px) / (1920 - 300)));
    font-weight: 600;
}
h3 {
    font-size: calc(25px + (35 - 25) * ((100vw - 300px) / (1920 - 300)));
}

h4 {
    font-size: calc(23px + (30 - 23) * ((100vw - 300px) / (1920 - 300)));
}

h5 {
    font-size: calc(20px + (25 - 20) * ((100vw - 300px) / (1920 - 300)));
}

h6 {
    font-size: calc(18px + (22 - 18) * ((100vw - 300px) / (1920 - 300)));
}
.spacing-ptb{
   padding:45px 0;
}
.spacing-pt{
  padding-top:50px;
}
.spacing-pb{
  padding-bottom:50px;
}
.bg-light{
  background-color:#fcedee!important;
}
.red-title{
  font-size:calc(24px + (42 - 24) * ((100vw - 300px) / (1920 - 300)))!important;
  font-weight:700!important;
  color:var(--primary-color)!important;
  font-style:italic!important;
}
.redbg-text{
  font-size: calc(12px + (18 - 12) * ((100vw - 300px) / (1920 - 300)));
  font-weight:500;
  padding:16px 20px;
  display: inline-block;
  color: #fff;
  margin-bottom:15px;
  border: 0;
  -webkit-transition: 0.5s ease-in-out; 
  letter-spacing:0px;
  background-color: var(--primary-color);
  line-height:0px;
  text-decoration:none!important;
  border-radius:10px;
  -webkit-border-radius:10px;
  -moz-border-radius:10px;
  -ms-border-radius:10px;
  -o-border-radius:10px;
}
.primary-btn{
  background-color: var(--primary-color);
  padding: 10px 60px;
  color: var(--heading-font-color);
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
}
a.primary-btn{
  text-decoration: none;
  color: var(--heading-font-color);
}
.primary-btn:hover{
  background-color: var(--primary-color);
  color: #fff;
  transition: 0.5s all;
  box-shadow: 1px 8px 48px 0px rgba(211,0,41,0.76);
  -webkit-box-shadow: 1px 8px 48px 0px rgba(211,0,41,0.76);
  -moz-box-shadow: 1px 8px 48px 0px rgba(211,0,41,0.76);
  -webkit-transition: 0.5s all;
  -moz-transition: 0.5s all;
  -ms-transition: 0.5s all;
  -o-transition: 0.5s all;
}
.btn-close-ctm{
  position: absolute;
  right: 10px;
  top: 10px;
  z-index: 10;
}
.fixed-top{
  background-color: #fff;
}
.header-top{
    padding: 20px 0;
    position: relative;
    box-shadow: 0 0 9px #0000004d;
}
.active-top{
  background-color: #fff;
}
.active-top{
  animation: smoothScroll 1s forwards;
}
@keyframes smoothScroll {
    0% {
        transform: translateY(-50px);
        -webkit-transform: translateY(-50px);
        -moz-transform: translateY(-50px);
        -ms-transform: translateY(-50px);
        -o-transform: translateY(-50px);
}
    100% {
        transform: translateY(0px);
    }
}
.active-top {
  box-shadow: 0 0 9px #0000004d;
}
.logo{
  display: flex;
  align-items: center;
  width: 250px;
}

.logo img{
  height: auto; 
  width: 100%;
}
.ctm-holder{
    display: flex;
    justify-content: end;
    align-items: center;
}
.ctm-holder img{
  margin-right:5px;  
  width:28px;
  height:28px;
  filter: grayscale();
}
.ctm-holder a{
  text-decoration: none;
  color: #575757;
  font-size: 13px;
}
.ctm-holder .email{
  border-right: 1px solid #545967;
  margin-right: 10px;
  padding-right: 10px;
}
.top-btn{
  margin-left: 20px;
}
.primary-btn-top{
  padding: 10px 20px;
  background: var(--primary-color);
  color: #fff;
  border: 0;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
  font-size: 16px;
}
.work-icon img { filter: grayscale();}
a.primary-btn-top{
  color: var(--heading-font-color);
}
.primary-btn-top:hover{
    transition: 0.5s all;
    box-shadow: 1px 8px 48px 0px rgb(61 52 139);
    -webkit-box-shadow: 1px 8px 48px 0px rgb(61 52 139);
  -webkit-transition: 0.5s all;
  -moz-transition: 0.5s all;
  -ms-transition: 0.5s all;
  -o-transition: 0.5s all;
}
.navbar-expand-lg .navbar-collapse{
    justify-content: center;
}
.dropdown-menu {
  box-shadow: 1px 6px 44px -5px rgba(0,0,0,0.77);
-webkit-box-shadow: 1px 6px 44px -5px rgba(0,0,0,0.77);
-moz-box-shadow: 1px 6px 44px -5px rgba(0,0,0,0.77);
 display: none;
 padding: 0;
 border: 0;
 border-radius: 0;
 visibility: hidden;
 opacity:0;
 transform: translateY(5px);
 transition:.5s ease all;
 -webkit-transform: translateY(5px);
 -moz-transform: translateY(5px);
 -ms-transform: translateY(5px);
 -o-transform: translateY(5px);
 -webkit-transition:.5s ease all;
 -moz-transition:.5s ease all;
 -ms-transition:.5s ease all;
 -o-transition:.5s ease all;
 -webkit-border-radius: 0;
 -moz-border-radius: 0;
 -ms-border-radius: 0;
 -o-border-radius: 0;
}
ul.dropdown-menu.show {
  display: block;
  visibility: visible;
  opacity:1;
  transform: translateY(10spx);
  transition:.5s ease all;
  -webkit-transform: translateY(10px);
  -moz-transform: translateY(10px);
  -ms-transform: translateY(10px);
  -o-transform: translateY(10px);
  -webkit-transition:.5s ease all;
  -moz-transition:.5s ease all;
  -ms-transition:.5s ease all;
  -o-transition:.5s ease all;
}
.navbar-nav li{
    padding: 0 10px;
}
.dropdown-item{
  padding: 10px 15px;
}
.dropdown-submenu {
    position:relative;
}
.dropdown-submenu > .dropdown-menu {
    top: 0;
    left: 100%;
    margin-top:-6px;
}
.animate {
  animation-duration: 0.3s;
  -webkit-animation-duration: 0.3s;
  animation-fill-mode: both;
  -webkit-animation-fill-mode: both;
}
@keyframes slideIn {
  0% {
    transform: translateY(1rem);
    opacity: 0;
  }

  100% {
    transform: translateY(0rem);
    opacity: 1;
  }

  0% {
    transform: translateY(1rem);
    opacity: 0;
  }
}

@-webkit-keyframes slideIn {
  0% {
    -webkit-transform: transform;
    -webkit-opacity: 0;
  }

  100% {
    -webkit-transform: translateY(0);
    -webkit-opacity: 1;
  }

  0% {
    -webkit-transform: translateY(1rem);
    -webkit-opacity: 0;
  }
}
.slideIn {
  -webkit-animation-name: slideIn;
  animation-name: slideIn;
}
.dropdown-menu > li > a:hover:after {
    text-decoration: underline;
    transform: rotate(-90deg);
    
} 
.navbar-toggler{
    border: 0 !important;
}
.nav-icon-3{
    width: 35px;
    height: 30px;
    margin: 5px 5px;
    position: relative;
    cursor: pointer;
    display: inline-block;
  }
  .nav-icon-3 span{
    background-color:#000;
    position: absolute;
    border-radius: 2px;
    transition: .3s cubic-bezier(.8, .5, .2, 1.4);
  }
.nav-icon-3 span:nth-child(1){
  width: 100%;
  height:  4px;
  display: block;
  top: 0px;
  left: 0px;
}
.nav-icon-3 span:nth-child(2){
  width: 100%;
  height:  4px;
  display: block;
  top: 13px;
  left: 0px;
}
.nav-icon-3 span:nth-child(3){
  width: 100%;
  height:  4px;
  display: block;
  bottom: 0px;
  left: 0px;
}
.nav-icon-3:not(.open):hover span:nth-child(1){
  width: 100%;
  height:  4px;
  display: block;
  top: -2px;
  left: 0px;
  transition: .3s cubic-bezier(.8, .5, .2, 1.4);
}
.nav-icon-3:not(.open):hover span:nth-child(2){
  width: 100%;
  height:  4px;
  display: block;
  top: 13px;
  left: 0px;
  transition: .4s cubic-bezier(.8, .5, .2, 1.4);
}
.nav-icon-3:not(.open):hover span:nth-child(3){
  width: 100%;
  height:  4px;
  display: block;
  bottom: -2px;
  left: 0px;
  transition: .3s cubic-bezier(.8, .5, .2, 1.4);
}
.nav-icon-3.open {
  transform: rotate(-90deg);
}
.nav-icon-3.open  span:nth-child(1){
  left:3px;
  top: 12px;
  width: 30px;
  transition: .3s cubic-bezier(.8, .5, .2, 1.4);
  transform: rotate(90deg);
  transition-delay: 150ms;
}
.nav-icon-3.open  span:nth-child(2){
  left:2px;
  top: 20px;
  width: 20px;
  transition: .3s cubic-bezier(.8, .5, .2, 1.4);
  transform: rotate(45deg);
  transition-delay: 50ms;
}
.nav-icon-3.open  span:nth-child(3){
  left:14px;
  top: 20px;
  width: 20px;
  transition: .3s cubic-bezier(.8, .5, .2, 1.4);
  transform: rotate(-45deg);
  transition-delay: 100ms;
}
li.dropdown-submenu {
  padding:0;
  font-size: calc(14px + (16 - 14) * (100vw - 320px) / (1920 - 320));
  color: #000;
}
li.dropdown-submenu a:hover{
  background-color: var(--primary-color);
  color: #fff;
}
@media (max-width: 767.98px) {
  .dropdown-submenu > .dropdown-menu{
    margin-top: 10px;
    margin-bottom: 10px;
    border: 0;

  }

  .logo-pop img, .logo img {
    height: auto;
    width: 70%;
  }
  

  .dropdown-menu{
    border: 0;
  }
}
.nav-link{
    color: #000;
    font-size: calc(12px + (15 - 12) * (100vw - 320px) / (1920 - 320));
    text-transform: uppercase;
    font-weight: 400;
}
.main-banner{
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    padding-top:200px;
    padding-bottom:100px;
}
.inner-banner{
  padding: 200px 0 100px;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.inner-banner::before{
  content: "";
  background-color: #000000e8;
  width: 100%;
  height: 100%;
  z-index: 1;
  position: absolute;
  opacity: 0.5;
}
.inner-banner .title h2{
  font-size: calc(22px + (50 - 22) * (100vw - 320px) / (1920 - 320));
  color:#fff;
  font-weight: 600;
}
.inner-banner .title h2 span{
  background-color: var(--primary-color);
  color:#fff;  
}
.inner-banner h6{
  font-size: calc(16px + (35 - 16) * (100vw - 320px) / (1920 - 320));
  color: var(--primary-color);
  font-weight: 400;
}
.inner-banner .container {
  position: relative;
  z-index: 1;
}
.inner-banner .bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.inner-banner .bg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.inner-btn{
  background-color: var(--primary-color);
  color:#fff;
  font-size: calc(13px + (20 - 13) * (100vw - 320px) / (1920 - 320));
  font-weight:700;
  border:0;
  border-radius: 22px;
  -webkit-border-radius: 22px;
  -moz-border-radius: 22px;
  -ms-border-radius: 22px;
  -o-border-radius: 22px;
  box-shadow: 0px 3px 11px 0px rgba(34, 35, 141, 0.25); 
  padding:10px 25px;
  text-transform:uppercase;
  text-decoration: none;
}
.inner-btn:hover{
  background-color: var(--primary-color);
  color:#fff;
}
.inner-btn-large{
  padding: 20px  70px;
  font-size: calc(20px + (26 - 20) * (100vw - 320px) / (1920 - 320));
  font-weight:700;
  font-weight:700;
  border:0;
  border-radius: 22px;
  -webkit-border-radius: 22px;
  -moz-border-radius: 22px;
  -ms-border-radius: 22px;
  -o-border-radius: 22px;
  box-shadow: 0px 3px 11px 0px rgba(34, 35, 141, 0.25); 
  padding:10px 25px;
  text-transform:uppercase;
  text-decoration: none;
}
.inner-btn-large:hover{
  background-color: var(--primary-color);
  color:#fff;
}
.title h1{
    font-size: calc(40px + (100 - 40) * (100vw - 320px) / (1920 - 320));
    color:var(--heading-font-color);
    font-weight: 400;
}
.title h2{
    font-size: calc(22px + (50 - 22) * (100vw - 320px) / (1920 - 320));
    color: var(--heading-font-color);
    font-weight: 400;
}
.title span{
    font-size: calc(22px + (43 - 22) * (100vw - 320px) / (1920 - 320));
    color: var(--heading-font-color);
    font-weight: 400;
    background-color: var(--primary-color);
    padding: 2px 4px;
}
.title p{
    font-size: calc(16px + (22 - 16) * (100vw - 320px) / (1920 - 320));
    font-weight: 400;
    color: var(--heading-font-color);
}
.banner-form{
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.275) 0%, rgba(255, 255, 255, 0.04) 100%);
    box-shadow: 0px 0px 5px rgba(255, 255, 255, 0.19);
    backdrop-filter: blur(7.5px);
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    /* min-height: 394px; */
    max-width:436px;
    padding: 25px 25px;
}
.iti{
  width: 100%;
}
.banner-form .form-control{
  height: 44px;
}
.banner-form .form-group{
  display: flex;
  justify-content: center;
}
.shape{
  position: relative;
}
.icon-list{
  list-style:none;
}
.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;
  font-size: calc(26px + (40 - 26) * ((100vw - 300px) / (1920 - 300)));
  font-weight:600;
  color: var(--primary-color);
}
.il-cont{
  font-size: calc(12px + (16 - 12) * ((100vw - 300px) / (1920 - 300)));
  font-weight:500;
  color:var(--text-light);
}
.image-text-box {
  text-align:center;
  padding:10px;
  background-color:#fff;
  border:0;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  margin-bottom:20px;
  -webkit-box-shadow: 0 15px 10px #777;
  -moz-box-shadow: 0 15px 10px #777;
  box-shadow: 2px 5px 15px #777;
}
.image-text-box img {
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  margin-bottom:30px;
}
.image-text-content{
  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;
}
.home-section-1{
  position: relative;
}
.home-section-1 h4{
  font-size: calc(22px + (48 - 22) * (100vw - 320px) / (1920 - 320));
  font-weight: 600;
}
.home-section-1 h4 span{
  color: var(--primary-color);
}
.home-section-1 h5{
  font-size: calc(16px + (22 - 16) * (100vw - 320px) / (1920 - 320));
  font-weight: 500;
  margin-bottom:0;
}
.home-section-1 img{
  width: 100%;
  height: auto;
}
.ctm-list{
  list-style: none;
  padding:0;
  position: relative;
}
.ctm-list li{
  position: relative;
  margin-bottom: 5px;
  padding-left: 25px;
}
.ctm-list li::before{
  content:"";
  background-color: var(--primary-color);
  width: 17px;
  height: 17px;
  clip-path: polygon(100% 55%, 0 0, 0 100%);
  border-radius: 2px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  -o-border-radius: 2px;
  position: absolute;
  top: 5px;
  left: 0;
}

.home-section-1 p{
  line-height:30px;
  margin-bottom: 30px;
  color: #565454;
  font-size: calc(14px + (17 - 14) * (100vw - 320px) / (1920 - 320));
  font-weight: 400;
}

.progress{
  margin-bottom: 30px;
}
.progress-title{
  display: flex;
  justify-content: space-between;
}
.progress-title h6{
  font-size: 19px;
  font-weight: 500;
}
.progress-title span{
  font-weight: 500;
  font-size: 19px;
}
.work-sec h2{
  font-size: calc(26px + (40 - 26) * (100vw - 320px) / (1920 - 320));
  font-weight:500;
  color: #000;
  padding-bottom: 20px;
}
.work-sec h2 span{
  font-size: calc(26px + (60 - 26) * (100vw - 320px) / (1920 - 320));
  color:var(--primary-color);
  text-transform: capitalize;
  font-style: italic;
}
.work-boxes{
 position: relative;
 box-shadow: 0px 3px 7px 0px rgba(0, 0, 0, 0.35);
 background-color:#fff;
 min-height:340px;
 border: 0;
 border-radius: 52px;
 -webkit-border-radius: 52px;
 -moz-border-radius: 52px;
 -ms-border-radius: 52px;
 -o-border-radius: 52px;
 width: 100%;
 text-align: center;
 padding: 30px;
 margin-bottom: 60px;
}
.work-boxes::before{
  content: "";
  background-color: var(--primary-color);
  width: 80%;
  position: absolute;
  top: -15px;
  border: 0;
  left: 0;
  right: 0;
  margin: auto;
  border-radius:60px 60px 0px 0;
  -webkit-border-radius:60px 60px 0px 0;
  -moz-border-radius:60px 60px 0px 0;
  -ms-border-radius:60px 60px 0px 0;
  -o-border-radius:60px 60px 0px 0;
  height: 20px;
  z-index:-1;
}
.work-boxes::after{
  content: "";
  background-color: var(--primary-color);
  width: 80%;
  position: absolute;
  bottom: -15px;
  border: 0;
  left: 0;
  right: 0;
  margin: auto;
  border-radius:0px 0px 60px 60px;
  -webkit-border-radius:0px 0px 60px 60px;
  -moz-border-radius:0px 0px 60px 60px;
  -ms-border-radius:0px 0px 60px 60px;
  -o-border-radius:0px 0px 60px 60px;
  height:20px;  
  z-index:-1;
}
.work-boxes .work-icon{
  padding-bottom:20px;
  padding-top:40px;
}
.work-boxes .work-text h6{
  font-size: calc(20px + (26 - 20) * (100vw - 320px) / (1920 - 320));
  font-weight: 600;
  color: #000;
  text-align: center;
  margin-bottom:10px;
  padding: 0;
}
.work-boxes .work-text p{
  font-size: calc(14px + (18 - 14) * (100vw - 320px) / (1920 - 320));
  font-weight:400;
  color:var(--body-font-color);
  text-align:center;
  margin-bottom:10px;
  padding: 0;
}
.bar-sec{
  position: relative;
}
.bar-sec h4{
  font-size: calc(20px + (34 - 20) * (100vw - 320px) / (1920 - 320));
  font-weight:500;
  text-transform: uppercase;
  text-align: center;
  margin:0;
}
h3.search_over {
  padding: 0 0%;
  color: #000;
  font-weight: 400;
  padding-bottom: 20px;
  font-size: calc(30px + (22 - 17) * ((100vw - 300px) / (1920 - 300)));
  font-family: 'Poppins';
}
.search-container form img {
  max-width: 30px;
}
.search-container form input {
  width: 85%;
  border: 0;
  padding: 15px 15px;
  margin: 0 0px 0px 0px;
}
.search-container form input {
  width: 92%;
  border: 0;
  padding: 20px 15px;
  margin: 0 0px 0px 0px;
  border-radius: 15px;
}
.search-container form input::placeholder {
  font-size: 18px;
  color: #808080b0;
  letter-spacing: 1px;
}
.search_bar {
  display: inline-block;
  width: 80%;
  border-radius: 10px;
  margin-right: 40px;
  background-color: #fff;
}
.search-container button {
  font-size: calc(18px + (14 - 12) * ((100vw - 300px) / (1920 - 300)));
  font-weight: 800;
  padding: 16px 28px;
  display: inline-block;
  color: #3d348b;
  margin-bottom: 14px;
  margin-right: 10px;
  border: 0;
  -webkit-transition: 0.5s ease-in-out;
  background-color: #fff;
  border-radius: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: 'Poppins';
}
.search-container {
  background-color: #3d348b;
  padding: 20px 10px 10px 20px;
  border-radius: 15px;
  margin-top: 25px;
}
em.font-italic {
  font-style: italic;
  font-weight: bolder;
  color: #3d348b;
  font-family: 'Poppins';
}
.font-italic {
  font-style: italic;
  font-weight: bolder;
  color: #3d348b;
  font-family: 'Poppins';
}
.hppy-box {
  text-align:center;
  margin-bottom:30px;
}
.hppy-box .hppy-icon {
  margin: 0 auto;
  background-color: transparent;
  width:172px;
  min-height:150px;
  border: 0;
  border-radius: 0px 35px 35px 35px;
  -webkit-border-radius: 0px 35px 35px 35px;
  -moz-border-radius: 0px 35px 35px 35px;
  -ms-border-radius: 0px 35px 35px 35px;
  -o-border-radius: 0px 35px 35px 35px;
  padding: 30px 10px;
  line-height: 1;
  position: relative;
  filter: grayscale(100%);
}
.hppy-box .hppy-icon:hover {
  border-radius: 10px 55px 35px 55px;
  -webkit-border-radius: 10px 55px 35px 55px;
  -moz-border-radius: 10px 55px 35px 55px;
  -ms-border-radius: 10px 55px 35px 55px;
  -o-border-radius: 10px 55px 35px 55px;
  padding: 20px 5px;
}
.hppy-box .hppy-icon2 {
  background-color: var(--secondary-color);
  width:172px;
  min-height:156px;
  border: 0;
  border-radius: 0px 35px 35px 35px;
  -webkit-border-radius: 0px 35px 35px 35px;
  -moz-border-radius: 0px 35px 35px 35px;
  -ms-border-radius: 0px 35px 35px 35px;
  -o-border-radius: 0px 35px 35px 35px;
  padding:40px 20px;
  line-height:95px;
  position: relative;
  font-weight: 600;
  font-size: 50px;
  text-transform: capitalize;
  color:var(--white-color);
  text-align:center;

}
.hppy-box .hppy-icon2:hover {
  border-radius: 10px 55px 35px 55px;
  -webkit-border-radius: 10px 55px 35px 55px;
  -moz-border-radius: 10px 55px 35px 55px;
  -ms-border-radius: 10px 55px 35px 55px;
  -o-border-radius: 10px 55px 35px 55px;
  padding: 20px 10px;
}
.hppy-box .hppy-icon img{
  position:absolute;
  bottom:40px;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
}
.client-coordition .hppy-icon img {
  width: 100%;
  height: auto;
  bottom: 0px;
}
.hppy-box .hppy-text {
  margin-top: 25px;
}
.hppy-box .hppy-text span {
  font-size: calc(18px + (30 - 18) * ((100vw - 300px) / (1920 - 300)));
  font-weight: 600;
  color: #000000d4;
  line-height: 1;
  font-family: 'Poppins';
  margin-bottom: 0;
}
.hppy-box .hppy-text label {
  font-size: calc(16px + (22 - 16) * ((100vw - 300px) / (1920 - 300)));
  font-weight:bold;
  color: #000000;
  margin-bottom:7px;
}
.hppy-box span {
  display:block;
  font-size: calc(20px + (29 - 20) * ((100vw - 300px) / (1920 - 300)));
  font-weight:400;
  color:var(--white-color);
}
.hppy-box label {
  display:block;
  font-family: 'Cardo', serif;
  font-size: calc(22px + (40 - 22) * ((100vw - 300px) / (1920 - 300)));
  font-weight:400;
  color: #000000;   
}
.hppy-box p {
  font-size: calc(12px + (16 - 12) * (100vw - 320px) / (1920 - 320));
  font-weight:400;
  color:var(--body-font-color);
  font-family: 'Poppins';
  margin-bottom: 20px;
  padding: 20px;
}
.registration-box {
    border-radius: 10px;
    padding: 30px 20px 15px 30px;
    background-image: url(/assets/img/copyright/box-1.png);
    background-size: contain;
    background-position: 100%;
    background-repeat: no-repeat;
    text-align: center;
    display: inline-block;
    filter: grayscale();
}
.application-box {
  background-image: url(/assets/img/copyright/box-2.png);
}
.submission-box {
  background-image: url(/assets/img/copyright/box-3.png);
}
.supreme_customer {
  padding: 0 0%;
  color: #000;
  font-weight: 400;
  padding-bottom: 20px;
  font-size: calc(24px + (28 - 12) * ((100vw - 300px) / (1920 - 300)))!important;
  font-family: 'Poppins';
}
em.font-italic {
  font-style: italic;
  font-weight: bolder;
  color: #3d348b;
  font-family: 'Poppins';
  font-size: calc(24px + (54 - 24) * ((100vw - 300px) / (1920 - 300)));
  line-height:1;
}
.what-sec .what-box {
  background-color: #ffffff;
  box-shadow: 0px 0px 16px 0px rgba(62, 154, 240, 0.19);
  margin-bottom: 30px;
  text-align: center;
  min-height:350px;
  padding: 32px 7px;
  position: relative;
  border: 5px solid transparent;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
  transition: 0.2s;
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  -ms-transition: 0.2s;
  -o-transition: 0.2s;
}
.what-sec .what-box .what-icon {
  margin: 0 auto;
  text-align: center;
  line-height: 95px;
}
.what-sec .what-box .what-icon img{
  height: auto;
  filter:grayscale(1);
}
.what-sec .what-box .what-text h6 {
  font-size: 18px;
  font-weight: 500;
  color: #090f21;
  margin-bottom: 12px;
}
.what-sec .what-box .what-text p {
  font-size:calc(12px + (16 - 12) * (100vw - 320px) / (1920 - 320));
  font-weight:400;
  color: #626568;
  margin-bottom:25px;
}
.what-sec .what-box .what-text a {
  color: var(--primary-color);
  font-size:17px;
  font-weight:500;
  text-decoration:none;
  position:relative;
}
.provide-boxes {
  margin-bottom:20px;
  position: relative;
}
.what-sec .what-box:hover {
  cursor: pointer;
  border: 5px solid var(--primary-color);
}
.commitment-sec{
  background-image: url('/assets/img/banner/commitment-bg.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 680px;
  background-position: center;
}
.commitment-sec h3{
  font-weight: 600;
  font-size: calc(26px + (38 - 26) * ((100vw - 300px) / (1920 - 300)));
  color: #fff;
  padding-bottom:20px;
  line-height: 40px;
}
.commitment-sec h3 span{
  color: var(--primary-color);
}
.commitment-sec h5{
  font-weight: 400;
  font-size: calc(16px + (28 - 16) * ((100vw - 300px) / (1920 - 300)));
  color: #fff;
  padding-bottom: 50px;
  line-height: 28px;
}
.commitment-sec p{
  font-weight: 400;
  font-size: calc(18px + (22 - 18) * ((100vw - 300px) / (1920 - 300)));
  color: #fff;
  padding-bottom: 20px;
}
.section-image-text h3{
  color: var(--primary-color);
}
.what-sec h2{
  color: var(--primary-color);
}
.what-sec p{
  font-size: calc(12px + (17 - 12) * ((100vw - 300px) / (1920 - 300)));
  font-weight: 400;
  color: var(--text-light-2);
  font-family: 'Poppins';
}
.method-sec{
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height:400px;
  padding: 50px 0 0;
}
.method-sec p{
  font-size: calc(12px + (17 - 12) * ((100vw - 300px) / (1920 - 300)));
  font-weight: 400;
  color: var(--text-light-2);
  font-family: 'Poppins';
}
.method-sec .common-title{
  font-size: calc(22px + (38 - 22) * (100vw - 320px) / (1920 - 320));
  font-weight: 600;
  color:var(--primary-color);
}
.method-sec .title{
  margin-bottom:100px;
}
.method-sec .title h2{
  font-size: calc(22px + (48 - 22) * (100vw - 320px) / (1920 - 320));
  font-weight: 600;
  color: var(--heading-font-color);
  text-align: center;
}
.method-sec .title p{
  font-size: 19px;
  color: var(--heading-font-color);
  text-align: center;
}
.method-sec .method-box{
  background-color: #fff;
  box-shadow: 0px 0px 24px rgba(18, 63, 222, 0.15);
  border-radius: 31px;
  -webkit-border-radius: 31px;
  -moz-border-radius: 31px;
  -ms-border-radius: 31px;
  -o-border-radius: 31px;
  padding:45px 0;
  position:relative;
  margin-bottom:65px;
  min-height:200px;
}
.method-sec .method-icon{
    width: 104px;
    height: 104px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    background-color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    margin-top: -100px;
    margin-bottom:20px;
    box-shadow: 0px 0px 24px rgba(18, 63, 222, 0.31);
}
.method-box .method-text{
   text-align: center;
}
.method-box .method-text span{
  font-weight: 500;
}
.method-box .method-text h6{
  font-size: calc(14px + (17 - 14) * (100vw - 320px) / (1920 - 320));
  font-weight: 400;
  color: var(--body-font-color);
  padding: 0 20px;
  margin-top: 10px;
}
.fade:not(.show) {
  opacity: 0;
  display: none;
}
.packages-sec{
  padding-top:60px;
}
.package-holder {
  position:relative;
  box-sizing:border-box;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  text-align: center;
  min-height: 600px;
  margin-bottom: 60px!important;
  background: #FFFFFF;
  box-shadow: 0px 0px 20px 3px rgb(12 36 60 / 18%);
  border-radius: 32px;
  border: 2px solid transparent;
}
.package-holder:hover{
  border: 2px solid var(--primary-color);
  transition: 0.5s all;
  box-shadow: 0px 0px 20px 3px rgb(12 36 60 / 45%);
    -webkit-transition: 0.5s all;
    -moz-transition: 0.5s all;
    -ms-transition: 0.5s all;
    -o-transition: 0.5s all;
}
.package-holder:hover .pck-btn {
    transition: 0.5s all;
    box-shadow: 1px 8px 48px 0px rgb(61 52 139);
}
.common-title{
  font-size: calc(22px + (48 - 22) * (100vw - 320px) / (1920 - 320));
  font-weight: 600;
}
.packages-sec .common-title{  
  font-size:calc(22px + (38 - 22) * (100vw - 320px) / (1920 - 320));
  font-weight:700;
  color: var(--primary-color);
}
.packages-sec .common-text{
  font-size: calc(12px + (17 - 12) * ((100vw - 300px) / (1920 - 300)));
  font-weight: 400;
  color: var(--text-light-2);
  font-family: 'Poppins';
}
.package-header {
  margin: 0 auto;
  position: relative;
  padding: 10px 12px;
  border: 0;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
}
.package-header h6{
  font-size:calc(26px + (32 - 26) * (100vw - 320px) / (1920 - 320));
  font-weight:600;
  text-transform:uppercase;
  margin: 0;
}
.package-price-holder {
 
  padding: 10px 0;
  display: block;
  font-family: 'Poppins';
  background-color: var(--primary-color);
}
.package-holder label{
  color: var(--body-font-color);
  font-size: 12px;
  font-weight: 400;
  margin-bottom: 25px;
}
.package-price{
  font-size: 49px;
  color: var(--heading-font-color);
  font-weight: 600;
  margin: 0;
}
.package-holder>.package-content {
  min-height: 200px;
  padding: 0 30px;
}
.package-footer {
  margin-top: 40px;
  padding-bottom: 30px;
  padding-top: 30px;
}
.package-holder .pck-btn {
  border: 0;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  color:var(--heading-font-color);
  padding: 15px 50px;
  font-weight: 400;
  background-color: var(--primary-color);
  text-transform: uppercase;
  font-size: calc(12px + (18 - 12) * (100vw - 320px) / (1920 - 320));
}
.package-list {
  list-style: none;
  height: 300px;
  padding: 0;
  overflow-y: auto;
  scroll-behavior: smooth;
}
.package-list li {
  font-size: calc(14px + (18 - 14) * ((100vw - 300px) / (1920 - 300)));
  font-weight: 400;
  color: var(--black-color);
  margin-bottom: 10px;
  text-align: left;
  padding-left: 20px;
  position: relative;
}
.package-list li::before{
  content:'';
  background-image: url(/assets/img/icons/check-icon.png);
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 5px;
  left: 0;
  filter: grayscale();
}
#style-7::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
  background-color: #F5F5F5;
}
#style-7::-webkit-scrollbar {
  width: 6px;
  background-color: #F5F5F5;
}
#style-7::-webkit-scrollbar-thumb {
  background-color: var(--primary-color); 
  background-image: -webkit-linear-gradient(45deg,rgba(255, 255, 255, .2) 25%,
                        transparent 25%,
                        transparent 50%,
                        rgba(255, 255, 255, .2) 50%,
                        rgba(255, 255, 255, .2) 75%,
                        transparent 75%,
                        transparent)
}
.nav-pills .nav-link.active, .nav-pills .show>.nav-link{
  background-color: var(--primary-color);
}
.nav-pills .ctm{
 font-size: 19px;
  text-transform: capitalize;
}
.nav-link:focus, .nav-link:hover{
  color: var(--primary-color);
}
.pricing-sec{
  background-image: url(/assets/img/banner/pricing-banner.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 100%;
}
.pricing-sec h4{
  font-size: calc(22px + (48 - 22) * ((100vw - 300px) / (1920 - 300)));
  font-weight: 600;
  color: var(--heading-font-color);
  text-align: center;
  margin-bottom: 25px;
}
.pricing-sec p{
  color: var(--heading-font-color);
  text-align: center;
  font-size: 19px;
  font-weight: 400;
}
.price-box{
  background-color: #fff;
  box-shadow: 0px 0px 24px rgba(18, 63, 222, 0.15);
  border-radius: 31px;
  position: relative;
  padding: 30px 10px;
  bottom:-100px;
}
.price-text{
  margin-top: 30px;
}
.price-text p{
  color: #343333;
  font-size: calc(15px + (20 - 15) * ((100vw - 300px) / (1920 - 300)));
  font-weight: 500;
  margin: 0;
}
.ctm-circle{
  background-color: var(--primary-color);
  width: 114px;
  height: 114px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 0px 24px rgba(18, 63, 222, 0.31);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  margin-left: auto;
  margin-right: auto;
  margin-top: -80px;
}
.ctm-circle p{
  font-size: calc(16px + (27 - 16) * ((100vw - 300px) / (1920 - 300)));
  font-weight: 600;
  margin: 0;
}
.pricing-tabs-2{
  padding-top:50px;
}
.pricing-tabs-2 .common-title {
  font-size: calc(22px + (48 - 22) * (100vw - 320px) / (1920 - 320));
  font-weight: 700;
  color: var(--primary-color);
  font-style: italic;
}
.pricing-tabs-2 .common-text {
  font-size: calc(12px + (17 - 12) * ((100vw - 300px) / (1920 - 300)));
  font-weight: 400;
  color: var(--text-light-2);
  font-family: 'Poppins';
}
.testimonials-sec{
  text-align: center;
  margin-top:70px;
  margin-bottom:0;
}
.testimonials-sec h3 span{
  color: var(--primary-color);
}
.item-box{
  max-width:451px;
  min-height:560px;
  background: #FFFFFF;
  box-shadow: 0px 0px 24px rgba(18, 63, 222, 0.15);
  border-radius: 31px;
  -webkit-border-radius: 31px;
  -moz-border-radius: 31px;
  -ms-border-radius: 31px;
  -o-border-radius: 31px;
  padding:30px 30px;
  position: relative;
  z-index: 1;
  margin:0 30px;
}
.item-box::before{
  content: "";
  background-image: url(/assets/img/icons/quote-icon.png);
  background-size: 50%;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  min-height:266px;
  z-index: -1;
}
.item-box .item-img{
  display: flex;
  justify-content: center;
  position: relative;
}
.item-box .item-img img{
  height: auto;
  border: 0;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
.item-box .item-img::before{
  content:"";
  background-image: url(/assets/img/icons/bxs_quote-alt-left.png);
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  height: 100%;
  position: absolute;
  top:40%;
  filter: grayscale(1);
}
.item-box .item-text{
  text-align: center;
  padding: 20px 0 1px 0;
  position: relative;
}
.item-box .item-text p{
  font-size: calc(12px + (16 - 12) * ((100vw - 300px) / (1920 - 300)));
  color: #404040;
  font-weight: 400;
}
.item-box .item-text::before{
  content:"";
  width:66px;
  height: 3px;
  background-color: var(--primary-color);
  position: absolute;
  bottom: 0;
  left: 40%;
}
.item-box .item-label{
  text-align: center;
  padding: 30px 0 0 0;
}
.item-box .item-label p{
  font-size: 23px;
  font-weight: 500;
  margin: 0;
}
.item-box .item-label span{
  font-size: 18px;
  font-weight: 400;
  color: #9D9D9D;
}
.slick-list{
  padding: 40px 0;
}
.slick-dots {
    display: flex;
    justify-content: center;
    margin: 0px 0 20px 0;
    padding: 1rem 0;
    list-style-type: none;
}
.slick-dots li {
  margin: 0 0.25rem;
}
.slick-dots button {
  display: block;
  width: 1rem;
  height: 1rem;
  padding: 0;
  border: none;
  border-radius: 100%;
  background-color:#3d348b;
  text-indent: -9999px;
  transition:0.5s all;
  -webkit-transition:0.5s all;
  -moz-transition:0.5s all;
  -ms-transition:0.5s all;
  -o-transition:0.5s all;
}
.slick-dots li.slick-active button {
  background-color: #3d348b;
  width: 40px;
  border-radius: 50px;
}
.form-sec{
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 100%;
  position: relative;
  z-index: 1;
  padding:20px 0;
}
.form-sec::before{
  content: "";
  background: var(--primary-color);
  width: 480px;
  height: 480px;
  position: absolute;
  bottom: 0;
  border-radius: 0 400px 0 0;
  z-index: -1;
  -webkit-border-radius: 0 400px 0 0;
  -moz-border-radius: 0 400px 0 0;
  -ms-border-radius: 0 400px 0 0;
  -o-border-radius: 0 400px 0 0;
}
.rounded-img{
  border-radius: 70px;
  -webkit-border-radius: 70px;
  -moz-border-radius: 70px;
  -ms-border-radius: 70px;
  -o-border-radius: 70px;
  width: 100%;
  height: auto;
  margin-bottom: 30px;

}
.bottom-form{
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.275) 0%, rgba(255, 255, 255, 0.04) 100%);
    box-shadow: 0px 0px 5px rgba(255, 255, 255, 0.19);
    backdrop-filter: blur(7.5px);
    border-radius: 20px;
    max-width: 732px;
    padding: 40px;
}
.bottom-form h4{
  font-size: calc(15px + (36 - 15) * ((100vw - 300px) / (1920 - 300)));
  font-weight: 600;
}
.bottom-form .form-group .form-control{
  height: 56px;
}
.bottom-form .iti{
  width: 100%;
}
.bottom-form .btn-part{
  display: flex;
  justify-content: start;
}
.accordion-button{
  color: var(--font-secondary-color);
  font-family: 'Poppins';
  font-weight: 500;
  background-color:#fff;
  font-size: 18px;
  padding: 16px 25px;
  border: 2px solid var(--primary-color);

}
.accordion-body{
  background: no-repeat;
  border-radius: 10px;
  padding: 30px;
  font-size:15px;
}
.accordion-button:not(.collapsed) {
  background-color: var(--primary-color);
  color: #fff;
  border:0;
  box-shadow:none;
}
.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;
  overflow: hidden !important;
  border:0;
}
.faq-banner{
  background-image: url(/assets/img/banner/faq-banner.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 40px;
  min-height: 680px;
}
.faq-banner h3{ 
  color:var(--heading-font-color);
  font-weight:600;
  font-size:42px;
}
.footer{
  background-color: #000;
}
.footer-img{
  margin-bottom:20px;
  text-align: left;
}
.map{
background-color: var(--primary-color);
padding-top: 10px;
}
.foot-title{
  font-size: calc(18px + (20 - 18) * ((100vw - 300px) / (1920 - 300)));
  font-weight: 600;
  color: var(--heading-font-color);
  padding-bottom: 25px;
  text-align: left;
}
.foo-infobox-holder{
  text-align: left;
  margin-bottom:20px;
}
.footer-end p{
  font-size: calc(12px + (14 - 12) * ((100vw - 300px) / (1920 - 300)));
  font-weight:400;
  color: var(--heading-font-color);
  text-align: left;
}
.foo-links {
  list-style: none;
  padding-left: 0;
}
.foo-links li {
  margin-bottom:7px;
  font-size:14px;
  font-weight: 400;
  text-align: left;
}
.foo-links li a {
  list-style: none;
  padding-left: 0;
  color:var(--white-color);
  font-size: calc(12px + (15 - 12) * ((100vw - 300px) / (1920 - 300)));
}
.footer-content{
  display: flex;
  justify-content: center;
  margin-top: 30px;
  margin-bottom: 30px;
}
.footer-img img {
  max-width: 250px;
  height: auto;
}
.footer-content img{
  margin-right: 10px;
}
.footer-content a{
  text-decoration: none;
  color: #575757;
  font-size: 15px;
}
.footer-content .email{
  border-right: 1px solid #545967;
  margin-right: 20px;
  padding-right: 20px;
}
.footer-end{
  background-color: #000;
  width: 100%;
  text-align: center;
  color: var(--heading-font-color);
  padding:50px 0 30px;
}
.footer-end p{
  margin: 0;
  font-size: calc(12px + (15 - 12) * (100vw - 320px) / (1920 - 320));
  font-weight:400;
  color: var(--heading-font-color);
  padding-bottom:5px; 
}
.footer-end a{
  text-decoration: none;
  color: var(--heading-font-color);
  font-size: calc(12px + (16 - 12) * (100vw - 320px) / (1920 - 320));
  font-weight:400;
  color: var(--heading-font-color);
}
.site-list{
  list-style: none;
}
.site-list li a{
  text-decoration: none;
  color: #090f21;
}
.site-list li a:hover{
  color: var(--primary-color);
}
.site-list li{
  margin-bottom:15px;
}
.bottom-cta{
  background-image: url('/assets/img/banner/bottom-cta.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  display: flex;
  align-items: center;
  padding: 100px 0;
}
.bottom-cta h2{
  font-size: calc(24px + (42 - 24) * ((100vw - 300px) / (1920 - 300)));
  font-weight: 600;
  color: var(--heading-font-color);
  margin-bottom: 25px;
  position: relative;    
  line-height:1;
}
.bottom-cta h2::before{
  content:"";
  width:100%;
  height: 1px;
  background-color: #fff;
  position:absolute;
  bottom:-5px;
}
.bottom-cta h5{
  font-size: calc(18px + (35 - 18) * ((100vw - 300px) / (1920 - 300)));
  font-weight:400;
  color: var(--heading-font-color);
  margin-bottom: 25px;    
  line-height: 1.3;
}
.bottom-cta .btm-cta{
  box-shadow: 0px 3px 11px 0px rgba(34, 35, 141, 0.25);
  font-size: calc(14px + (20 - 14) * ((100vw - 300px) / (1920 - 300)));
  font-weight: 700;
  text-transform: uppercase;
  color: var(--primary-color);
  background-color: #fff;
  border: 0;
  border-radius: 22px;
  -webkit-border-radius: 22px;
  -moz-border-radius: 22px;
  -ms-border-radius: 22px;
  -o-border-radius: 22px;
  padding: 10px 25px;
}
.menu-btn{
  display: none;
}
@media (min-width: 992px){
    .navbar-nav li:hover > ul.dropdown-menu {
      display: block;
      visibility: visible;
      opacity: 1;
      transition: all 250ms ease;
      margin-top: -10px;
  }  
}
@media (max-width: 1399.98px) {
  .ctm-holder a {
    font-size: 11px;
  }
  .navbar-nav li {
    padding:0 8px;
  }
  .package-holder .pck-btn {
    padding: 10px 35px;
  }
}
@media (max-width: 1199.98px) {
  .ctm-holder a {
    font-size: 9px;
  }
  .navbar-nav li {
    padding:0;
  }
  .navbar-expand-lg .navbar-collapse {
    justify-content: end;
  }
  .package-holder .pck-btn {
    padding:10px 25px;
  }
  .testimonials-sec {
    margin-bottom:0;
  }
  .bottom-cta {
    min-height: auto;
  }
  .registration-box {
    padding: 30px 20px 15px 20px;
  }
  .redbg-text {
      padding:16px 9px;
  }
  .hppy-box .hppy-icon {
    min-height:auto;
  }
  .method-sec {
    padding-bottom: 0;
  }
}
@media (max-width: 991.98px) { 
  ul.dropdown-menu.show {
    display: block;
    visibility: visible;
    opacity:1;
    transform: translateY(10px);
    transition:.5s ease all;
    -webkit-transform: translateY(10px);
    -moz-transform: translateY(10px);
    -ms-transform: translateY(10px);
    -o-transform: translateY(10px);
    -webkit-transition:.5s ease all;
    -moz-transition:.5s ease all;
    -ms-transition:.5s ease all;
    -o-transition:.5s ease all;
    margin-bottom: 24px;
  }
  .ctm-holder{
    display: none;
  }
  .main-banner{
    padding-top: 100px;
    padding-bottom: 50px;
  }
  .menu-btn{
    display: block;
    justify-content: end;
    position:absolute;
    top:24px;
    right:4%;
    bottom:0;
  }
  .navbar.navbar-expand-lg{
    padding: 0;
  }
  .price-box{
    bottom: -60px;
    margin-bottom: 55px;
  }
  .banner-form{
    max-width:100%;
    margin-top: 25px;
    width: 100%;
  }
  .testimonials-sec{
    margin-top: 0;
  }
  .form-sec::before{
    display: none;
  }
  .method-sec{
    padding: 35px 0;
  }
  .method-sec .title{
    margin-bottom: 60px;
  }
  .spacing-pt{
    padding-top:60px;
  }
  .spacing-ptb{
    padding:40px 0;
  }
  .packages-sec{
   padding-top:40px;
  }
  .faq-banner {
    padding: 15px;
 
}
.hppy-box p {
  padding: 0;
  }
.registration-box {
    padding:60px 10px 30px 20px;
    max-width:270px;
  }
}
@media (max-width: 767.98px) { 
  .what-sec #what{
    margin-top: 0;
  }
  .provide-boxes{
    margin-bottom: 0;
  }
  
}
@media (max-width: 575.98px) {
  .footer-content{
    display: grid;
    margin-bottom: 10px;
  }
  .footer-content .email{
    border:0;
  }
  .common-title { padding-top: 20px;}
 .home-sec1 { display: none;}
}
body.modal-open .modal-backdrop {
    display: none !important;
}
.modal-open .show {
  visibility: visible;
  opacity: 1;
  background: #00000073;
}
.modal-body .header-form input {
  border: #cacaca solid 1px;
}
.modal-body .header-form input:focus, .modal-body .header-form input:active {
  border: #cacaca solid 1px !important;
}
.modal-open .show .modal-body {
  background-color: #ffffff;
}
.modal .btn-close {
  filter: none !important;
}
.form-group {
  margin-bottom: 15px;
}
.header-form input {
  border-bottom: 0;
  height: 44px;
  margin-bottom: 0;
  width: 100%;
  padding: 10px;
  border: 0px;
  border-radius: 4px !important;
  box-shadow: inset 0 0px 0px rgba(0,0,0,.075);
  background-color: #fff;
  color: #000000 !important;
  font-size: 13px;
}
.header-form input::placeholder {
  color: #000000 !important;
}
.index-modal .header-form textarea {
  border: 1px solid rgb(78 77 77 / 26%) !important;
  height: 155px;
  margin-bottom: 5px;
  width: 100%;
  padding: 10px 8px;
  box-shadow: inset 0 0px 0px rgba(0,0,0,.075);
  background-color: #e8e8ed;
  resize: none;
  font-size: 13px;
}
.index-modal .header-form textarea::placeholder {
  color: #000 !important;
}
.modal .btn {
  display: inline-block;
  margin-bottom: 0;
  font-weight: 500;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  touch-action: manipulation;
  border: 1px solid transparent;
  padding: 6px 15px;
  font-size: 18px;
  user-select: none;
  letter-spacing: 2px;
  box-shadow: inset 0px 0px 0px #2a2a2a;
  background: #3d348b !important;
  border-radius: 6px !important;
  color: #ffffff;
  font-size: 13px;
}
.modal .btn:hover { 
  color: #fff;
}

.thanks-sec {
    padding-top: 150px;
    padding-bottom: 80px;
}

/*---------Tabing CSS for Process ---------*/
  /* Custom breakpoint for 460px */
  .filing-tabs-cont {
        margin: 40px 0px 0px 0px;
        padding: 40px 0px 60px 0px;
    }
    
    /* Responsive filing tabs for mobile */
    @media (max-width: 576px) {
        .filing-tabs {
            display: flex;
            overflow-x: auto;
            scroll-behavior: smooth;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
            -ms-overflow-style: none;
            padding-bottom: 10px;
        }

        .filing-tabs::-webkit-scrollbar {
            display: none;
        }

        .filing-tabs .nav-item {
            flex: 0 0 auto;
            min-width: 50%;
        }

        .filing-tabs .nav-link {
            width: 100% !important;
            white-space: nowrap;
            text-align: center;
        }

        .filing-tabs .nav-link.active {
            flex: 1 1 100%;
            min-width: 100%;
        }

        .filing-tabs .nav-link:not(.active) {
            flex: 0 0 50%;
            min-width: 50%;
        }
    }

    .tm-pricing__card {
        position: relative;
    }

    .yellow-strip {
        background-color: #fcc111;
        padding: 2px 0px;
        font-size: 12px;
        font-weight: 900;
        border-radius: 0px 0px 20px 20px;
        position: absolute;
        width: 90%;
        top: -2px;
        text-align: center;
        right: 17px;
        text-transform: uppercase;
        letter-spacing: 1.1px;
    }

     .gray-strip {
        background-color: #d4cfcf;
        padding: 2px 0px;
        font-size: 12px;
        font-weight: 900;
        border-radius: 0px 0px 20px 20px;
        position: absolute;
        width: 90%;
        top: -2px;
        text-align: center;
        right: 17px;
        text-transform: uppercase;
        letter-spacing: 1.1px;
    }
    .tm-pricing__card.active {
    border: 2px solid #FCC111;
}

/*------------------- New LP Process & Pricing -------------------*/
.filing-tabs-sec {
        padding: 60px 0 0px;
}


.filing-tabs .nav {
    gap: 20px;
    border-bottom: 0;
    display: flex;
    justify-content: center;
    text-align: center;
    align-items: center;
}

.filing-tabs-cont { 
/*    padding: 0 0 80px;*/
    background-color: #f1f1f1;
}

.filing-tabs-cont .tab-content {
    padding: 0;
    background-color: transparent;
    display: block !important;
}

.filing-tabs .nav-link.active {
    background: #3d348b  !important;
    border: 1px solid #E5E5E5;
    box-shadow: 0px 0px 18px -2px rgba(0, 0, 0, 0.15);
    border-radius: 10px !important;
    color: #fff !important;
    font-size: calc(18px + (24 - 18) * (100vw - 320px) / (1920 - 320));
    font-family: 'Calibri';
    font-weight: 500;
    padding: 10px 40px !important;
}

.filing-tabs .nav-link {
    border: 1px solid #3d348b  !important;
    border-radius: 10px !important;
    color: #000000 !important;
    font-size: calc(18px + (24 - 18) * (100vw - 320px) / (1920 - 320));
    font-family: 'Calibri';
    font-weight: 500;
    padding: 10px 20px !important;
    max-width: 100%;
    width: 510px;
    transition: 0.3s ease-in-out;
}

    .filing-tabs .nav-link:hover {
        background: #3d348b ;
        border: 1px solid #3d348b  !important;
        box-shadow: 0px 0px 18px -2px rgba(0, 0, 0, 0.15);
        border-radius: 10px;
        color: #fff !important;
    }

.filing-tabs-cont-box {
    background: #FFFFFF;
    border: 1px solid #D4CFCF;
    border-radius: 10px;
    padding: 20px 30px;
    text-align: center;
    min-height: 340px;
    transition: 0.3s ease-in-out;
}

.filing-box-img {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 94px;
    height: 94px;
    margin: 0 auto;
    border: 1px solid #000000;
    border-radius: 10px;
    margin-top: 30px;
    margin-bottom: 20px;
}

.filing-box-content h3 {
    color: #000000;
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 15px;
}

.filing-box-content p {
    font-weight: 400;
    font-size: 14px;
    line-height: 1.5;
    color: #56575B;
    margin-bottom: 0;
}

.filing-tabs-cont-box:hover {
    box-shadow: 0px 0px 21px 1px rgba(0, 0, 0, 0.13);
}
.tagged {
    color: rgb(3 3 3);
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    display: block;
    width: 10rem;
    top: 0px;
    box-shadow: rgba(0, 0, 0, 0.22) 0px 5px 5px;
    background: #ffc107;
    margin: 0px auto;
    padding: 5px 10px;
    border-radius: 10px 10px 0px 0px;
    text-align: center;
    width: 100%;
}
.tagged.sty1 {
    background-color: #f1a98c !important;
}
.blank-tag {
    color: rgb(3 3 3);
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    display: block;
    width: 10rem;
    top: 0px;
    background: #3d348b ;
    margin: 0px auto;
    padding: 5px 10px;
    border-radius: 10px 10px 0px 0px;
    text-align: center;
    width: 100%;
}

.notice {
    font-size: 11px;
    margin: 10px 0px;
    color: #FFFFFF;
}


    /*Process Slide */

@media only screen and (max-width: 576px) {
    .filing-tabs-content .tab-pane {
        overflow: hidden;
    }

    .banner-form .form-group {
    display: block !important;
  }

    .myprocessslide.myprocess-native-slider {
        flex-wrap: nowrap;
        transition: transform 0.4s ease;
        margin-bottom: 5px;
    }

    .myprocessslide .myprocess-native-slide {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .myprocess-dots {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        margin: 0px 0 0;
        padding: 0;
    }

    .myprocess-dot {
        width: 10px;
        height: 10px;
        padding: 0;
        border: 0;
        border-radius: 50%;
        background: #d3d3d3;
        cursor: pointer;
    }

    .myprocess-dot.active {
        background: #005ea2;
    }
    .btn-primary {
      font-size: 12px;
    }
}



/*---------Tabing CSS for Process ---------*/
