@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

/***** General CSS *****/

body {
  word-break: break-word;
  font: 15px/25px 'avenir-roman', sans-serif;
  color: #393939;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: #015bfa;
  white-space: initial;
}

:root {
  --lblue: #45b1f2;
  --dblue: #318aed;
}


a:hover,
a:focus {
  text-decoration: none;
}

a:hover {
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
}
.new_styling b{
    width:50%;
}
.new_styling span{
    width:50% !important;
}
img {
  max-width: 100%;
}

input[type="text"]:focus,
textarea:focus,
input[type="password"]:focus,
select:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus {
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  outline: none;
}

select,
input[type="text"],
input[type="password"],
input[type="email"],
input[type="url"],
input[type="number"],
textarea,
input[type="tel"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

ul {
  margin: 0 0 20px;
  padding: 0;
  list-style-type: none;
}

p {
  font-weight: 500;
  color: #000;
}


/***** Font Files *****/

@font-face {
  font-family: 'Fonts Awesome';
  src: url(../fonts/fontawesome-webfont.eot);
  src: url(../fonts/fontawesome-webfont.eot?#iefix) format("embedded-opentype"), url(../fonts/fontawesome-webfont.woff) format("woff"), url(../fonts/fontawesome-webfont.ttf) format("truetype"), url(../fonts/fontawesome-webfont.svg#fontawesome-webfont) format("svg");
  font-weight: 400;
  font-style: normal
}

@font-face {
  font-family: 'avenir-roman';
  src: url(../fonts/AvenirLTStd-Roman.otf);
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'avenir-black';
  src: url(../fonts/AvenirLTStd-Black.ttf);
  font-weight: 400;
  font-style: normal;
}


/***** Custom Classes *****/

.noPadding {
  padding: 0;
}

.noLeft {
  padding-left: 0;
}

.noRight {
  padding-right: 0;
}

.centerCol {
  float: none;
  margin: 0 auto;
}




.theme-btn {
 text-decoration: none;
 position: relative;
 border: none;
 font-weight: 300;
 font-size: 23px;
 font-family: 'avenir-roman';
 color: #fff;
 line-height: 22px;
 text-align: center;
 /*background: linear-gradient(0deg, #45b1f2, #318aed);*/
 background-size: 300%;
 border-radius: 30px;
 z-index: 1;
 padding: 15px 50px;

     background: linear-gradient( to right, #45b1f2, #1f7ce5, #6cbae9, #1376e5,#6cbae9, #1376e5);
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
}

.theme-btn:hover {
 animation: ani 8s linear infinite;
 border: none;
 color: #fff;
}

@keyframes ani {
 0% {
  background-position: 0%;
 }

 100% {
  background-position: 400%;
 }
}

.theme-btn:before {
 content: '';
 position: absolute;
 top: 0;
 left: 0;
 /* right: -5px; */
 /* bottom: -5px; */
 z-index: -1;
 background: linear-gradient(0deg, #45b1f2, #318aed);
 background-size: 400%;
 border-radius: 35px;
 transition: 1s;
 width: 100%;
 height: 100%;
}

.theme-btn:hover::before {
 filter: blur(20px);
}

/*.theme-btn:active {*/
/* background: linear-gradient(32deg,#03a9f4,#f441a5,#ffeb3b,#03a9f4);*/
/*}*/

.flexRow {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
}

.flexCol {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  align-items: center;
}

h1 {
  font-family: 'avenir-black', Sans-Serif;
  font-size: 55px;
  line-height: 60px;
  color: #000;
  font-weight: 500;
  margin: 0 0 17px;
}

h2 {
  font-family: 'avenir-black', Sans-Serif;
  font-size: 55px;
  line-height: 60px;
  color: #000000;
  font-weight: 500;
  margin: 0 0 30px;
}

h3 {
  font-family: 'avenir-black', Sans-Serif;
  font-size: 30px;
  line-height: 34px;
  color: #000000;
  font-weight: 600;
  margin: 0 0 28px;
}

h4 {
  font-family: 'avenir-black', Sans-Serif;
  font-size: 24px;
  line-height: 29px;
  color: #000000;
  font-weight: 500;
  margin: 0 0 13px;
}

h5 {
  font-family: 'avenir-black', Sans-Serif;
  font-size: 20px;
  line-height: 25px;
  color: #000000;
  font-weight: 500;
  margin: 0 0 20px;
}

h6 {
  font-family: 'avenir-roman', Sans-Serif;
  font-size: 18px;
  line-height: 23px;
  color: #000000;
  font-weight: 500;
  margin: 0 0 22px;
}

select {
  background: #fff url('../images/arrow.png') no-repeat right;
  padding: 0 40px 0 30px;
  
}

::-webkit-input-placeholder {
  color: #575757;
}

::-moz-placeholder {
  color: #575757;
  opacity: 1;
}

:-ms-input-placeholder {
  color: #575757;
}

:-moz-placeholder {
  color: #575757;
  opacity: 1;
}

 .hide{
                display: none;
            }
            #valid-msg {
    position: absolute;
    top: 19px;
    right: 60px;
}

#error-msg {
    position: absolute;
    top: 19px;
    right: 60px;
}
/*header css start */

.navbr .dropdown-menu.dropdown-littlebig.new_srcc .inner_list>li:last-child a {
    font-size: 14px;
}

.navbr .dropdown-menu.dropdown-littlebig.new_srcc .inner_list>li:last-child a>span {
    display: block;
    font-size: 16px;
    margin-top: 8px;
    color: #40aaf0;
    font-weight: 600;
}

.navbr .dropdown-menu.dropdown-littlebig.new_srcc .inner_list>li:last-child a>span>i {
    margin-right: 5px;
}

.header_cta.theme-btn {
    padding: 12px 30px;
}

.navbr .dropdown-menu.dropdown-littlebig.new_srcc .inner_list>li>a:hover {
    color: #3853a4 !IMPORTANT;
    background-color: transparent;
}

.menuSec li ul li a:hover {
    background: transparent !important;
    color: #3853a4 !IMPORTANT;
}

.header_call {
    color: #000;
    font-size: 22px;
}

.header_call i {
    color: #3490ee;
    font-size: 20px;
    margin: 0 10px 0 0px;
}

.menuSec {
  padding: 0px 0;
}

.menuSec img {
  margin: 0;
}

.menuSec ul {
  position: relative;
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
  text-transform: capitalize;
}

.menuSec ul li {
  position: relative;
  display: inline-block;
  margin: 0;
  padding: 0;
}

.menuSec li ul {
}

.menuSec ul li a {
    position: relative;
    display: inline-block;
    text-decoration: none;
    color: #000;
    padding: 10px 9px;
    font-size: 17px;
}


.menuSec ul li:last-child a {
  padding-right: 0px;
}

.menuSec ul li a:hover,
.menuSec ul li a.active {
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  color: var(--dblue);
}

.menuSec li:hover>ul {
    display: block;
    position: absolute;
    z-index: 1000;
    background-color: #f5fafe;
    left: 0px;
    width: 230px;
    text-align: left;
    top: 38px;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.menuSec li>ul>li>a {
  border: none;
  padding: 13px 20px !important;
  color: #fff !important;
  overflow: hidden;
  font-size: 13px;
  line-height: 20px;
}

.menuSec li>ul>li,
.menuSec li>ul>li>a {
  display: block;
  margin: 0;
}

.menuSec li>ul>li>a:before,
.menuSec li>ul>li>a:after {
  display: none;
}

.menuSec li:hover li {
  float: none;
}

.menuSec li:hover a {}

.menuSec li ul li a:hover {
  background-color: #ffffff;
  color: #000000 !important;
}

.menuSec ul ul ul {
  left: 100%;
  top: 0;
}


.menuSec ul:after {
  clear: both;
}

.menuSec li>ul>li:hover>ul {
  left: 230px;
  top: 0px;
  width: 270px;
}
.droopdwon li:hover>ul {
    display: block;
    position: absolute;
    z-index: 1000;
    background-color: #000000;
    left: 0px;
    width: 230px;
    text-align: left;
    top: 40px;
}
.droopdwon {
    float: left;
}
.droopdwon li:hover li a:hover {
    background-color: #ffffff;
    color: #000 !important;
}

header {
    padding: 30px 0;
    position: absolute;
    width: 100%;
    top: 0;
    transition: 0.3s all;
    z-index: 99;
}
/*header css start */

.dropdown-menu {
    position: absolute !important;
    z-index: 1000;
    display: block;
    min-width: 10rem;
    padding: 0.5rem 0;
    margin: 0;
    font-size: 1rem;
    color: #212529;
    text-align: left !important;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 0;
}


.guid-drop{
  position: relative;
}
.guid-drop .guid-box{
  position: absolute;
  right: 0;
  height: 200px;
  width: 300px;
  background-color: #fff;
}

.navbr .dropdown-menu.dropdown-littlebig.new_srcc {
    min-width: 260px !IMPORTANT;
    /*display: block;*/
    width: 300px !IMPORTANT;
    left: 0 !IMPORTANT;
}

.navbr .dropdown-menu.dropdown-littlebig.new_srcc .inner_list {
    width: 100%;
    padding-top: 20px !IMPORTANT;
}

/*banner css start */
.inner_banner>img {
    width: 100%;
}

.carousel-item>img {
    width: 100%;
}

.carousel-inner>.item>a>img,
.carousel-inner>.item>img {
  width: 100%;
}
.carousel-control.right,
.carousel-control.left {
  background: none;
  opacity: 1;
  width: 50px;
  height: 50px;
  top: initial;
  top: 40%;
  background: rgba(255, 255, 255, 0.1);
  text-shadow: none;
}
.carousel-control.right:hover,
.carousel-control.left:hover {
  background: rgba(255, 27, 27, 0.6);
  color: #fff;
}
.carousel-control.right .fa,
.carousel-control.left .fa {
  position: relative;
  top: 12px;
  font-size: 20px;
  color: #fff;
  opacity: 0.5;
}
.carousel-control.right {
  right: 0px;
}
.carousel-control.left {
  left: 0px;
}
.carousel-indicators {}
.carousel-indicators [data-bs-target] {
    box-sizing: content-box;
    flex: 0 1 auto;
    width: 10px;
    height: 12px;
    padding: 0;
    margin: 3px!important;
    text-indent: -999px;
    cursor: pointer;
    background-color: #fff;
    background-clip: padding-box;
    border: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    opacity: 1;
    /* transition: opacity 0.6s ease; */
    border-radius: 20px;
}
.carousel-caption {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  margin: 0;
  padding: 0;
  color: #fff;
  text-align: left;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  background: rgba(0, 0, 0, 0.0);
}
.carousel-indicators li {
  border: none;
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  background: #fff;
  width: 12px;
  height: 12px;
  margin: 0;
}
.carousel-indicators .active {
  margin: 0;
  background-color: #28b16d;
  width: 10px;
  height: 12px;
}

.carousel-item {
    height: 650px;
}

.banner_text h1 {
    font-size: 45px;
    line-height: 55px;
    color: #000;
    font-weight: 500;
    margin: 0 0 10px;
    position: relative;
}

.banner_text h1 span {
    color: #000;
    display: block;
    font-size: 45px;
    line-height: 50px;
}

.banner_form_wrap a {
    display: inline-block;
}

.btn-shine{
  color: #000;
  /*background: linear-gradient(to right, #328eee, #45b0f1 0, #328eee , #000 40%, #000 0% );*/
    background: linear-gradient(to right, #000, #000 0, #328eee , #000 40%, #000 0% );
  background-position: 0;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 8s infinite linear;
  animation-fill-mode: forwards;
  -webkit-text-size-adjust: none;
  text-decoration: none;
  white-space: nowrap;
    }
@keyframes shine{
  0%{
    background-position: 0;
  }

  10%{
    background-position: 50px;
  }


  20%{
    background-position: 100px;
  }

  30%{
    background-position: 150px;
  }

  40%{
    background-position: 200px;
  }

  50%{
    background-position: 250px;
  }

  60%{
    background-position: 300px;
  }

  70%{
    background-position: 350px;
  }

  80%{
    background-position: 400px;
  }

  90%{
    background-position: -450px;
  }
  100%{
    background-position: 0px;
  }
  }
section.main_slider {
    padding-bottom: 0;
    padding-top: 150px;
}

.banner_text p {
    font-size: 20px;
    line-height: 30px;
    color: #000;
    font-weight: 400;
    margin: 0 0 15px;
    font-family: 'avenir-roman';
}
/*.landi{*/
/*  font-size: 75px !important;*/
/*    line-height: 60px !important;*/
/*}*/
.landi b{
  font-weight: 500;
  font-size: 45px;
  line-height: 40px;
}
.landi span{
  display: block;
}

.banner_form_wrap input {
    width: 100%;
    height: 60px;
    margin: 0 0 15px 0;
    border-radius: 10px;
    padding: 0 20px;
    border: 2px solid #000;
    font-size: 20px;
}
.banner_form_wrap input:focus {
  border:2px solid #03a9f4;
  color: #03a9f4;
}
  /*banner element*/
    .banner-element{
      position: absolute;
    left: -40px;
    bottom: 20%;
    height: 100px;
    width: 100px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    background: #3390ee;
    color: #fff;
    border-radius: 50%;
    font-family: 'avenir-black';
    font-size: 25px;
    padding-right: 15px;
    }
  /*banner element*/
  
  .stcbnn.img-1 img {
    height: 574px;
    width: 100%;
    object-fit: cover;
    margin-left: 0;
    position: relative;
    left: 20px;
}

/*banner css end*/

/*FEATURED QUALITY SEC STRT*/
.featured_box figure {
    background: linear-gradient(0deg, #45b1f2, #318aed);
    height: 60px;
    width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    margin: -45px 0 25px 0;
    position: relative;
    top: 0;
    left: -25px;
    box-shadow: 3px 5px 10px 4px #c9c9c98a;
}

.featured_box:hover{
  transform: scale(1.04);
    box-shadow: 5px 8px 20px 5px #c9c9c98a;
    background: #3c9fef54;
}
/*.featured_box:hover figure img{*/
/*      animation: shake-animation 1.72s ease infinite;*/
/*    transform-origin: 50% 50%;*/
/*}*/
.featured_box figure img {
    transition: 0.3s ease-in-out;
    width: 55%;
}
.featured_box {
    padding: 20px 10px 10px 10px;
    border-radius: 10px;
    box-shadow: 5px 8px 11px 5px #c9c9c98a;
    width: 95%;
    height: 100%;
    transition: 0.3s ease-in-out;
}

.featured_quality_sec {
    padding: 0px 0 80px 0;
}

.featured_box h3 {
    font-size: 15px;
    line-height: 20px;
    color: #000000;
    font-weight: bold;
    margin: 0 0 3px;
    text-transform: uppercase;
}

.featured_box p {
  font-size: 16px;
  line-height: 25px;
  color: #000000;
  font-weight: 900;
  margin: 0 0 0px;
  /*text-transform: uppercase;*/
}

.sec_heading1 {
    font-size: 45px;
    line-height: 55px;
    color: #000000;
    font-weight: 500;
    margin: 0;
}
.sec_head_wrap p {
    font-size: 24px;
    line-height: 41px;
    color: #000000;
    font-weight: 400;
    margin: 0;
}


/*FEATURED QUALITY SEC END*/


/*REGISTER COMPANY SEC STRT*/
.register_company_sec {
    padding: 80px 0;
}

.strt_business_tabs .nav-tabs {
    justify-content: space-between;
    border: 0;
    /*background: linear-gradient(90deg, #43b9f2, #3089ed);*/
    border-radius: 100px;
    background: linear-gradient( to right, #45b1f2, #1f7ce5, #6cbae9, #1376e5,#6cbae9, #1376e5);
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
}

.strt_business_tabs .nav-tabs button {
    border-radius: 100px;
    font-size: 22px;
    line-height: 40px;
    padding: 15px 40px;
    font-weight: 600;
    color: #fff !important;
    border: 5px solid #fff0 !important;
    font-family: 'avenir-black';
}

.strt_business_tabs .nav-tabs .nav-link.active {
    border: 5px solid #43b9f2 !important;
    box-shadow: 5px 6px 13px 0px #555555a3;
    color: #000 !important;
}
/*REGISTER COMPANY SEC END*/


/*getstart modla css */

body.modal-open {
     padding: 0 !important;

}

.getstart-mdl {
    padding: 0 !important;
}

   input[type=number]::-webkit-inner-spin-button, 
   input[type=number]::-webkit-outer-spin-button { 
   -webkit-appearance: none; 
   margin: 0; 
   }
   .control-group input::placeholder {
   color: #9b7171;
   }
   .control-group textarea::placeholder {
   color: #9b7171;
   }
   
   .pop-form-new-popp.ta-center-new-pop input {width: 100%;border-width: 1px;border-color: rgb(225, 225, 225);border-style: solid;border-radius: 5px;background-color: rgb(255, 255, 255);height: 42px;margin: 0 0 20px 0;padding: 0 0 0 10px;}
   input {
   outline: none;
   }
   .pop-form-new-popp.ta-center-new-pop textarea {
   width: 100%;
   border-width: 1px;
   border-color: rgb(225, 225, 225);
   border-style: solid;
   border-radius: 5px;
   background-color: rgb(255, 255, 255);
   height: 100px;
   margin: 0 0 15px 0;
   padding: 10px 5px 5px 10px;
   }
.popup-side-img img.lazy {
    max-width: 160%;
    transform: translate(-190px, 0px);
}
   .pop-form-new-popp.ta-center-new-pop button {
   border-radius: 55px;
   background-color: #ffffff;
   border: none;
   color: #000;
   font-size: 18px;
   font-weight: 400;
   display: table;
   margin: auto;
   padding: 10px 42px;
   width: auto;
   }
   
   .getstart-mdl .modal-dialog {
    width: 55%;
    max-width: 55%;
}

.getstart-mdl .modal-dialog .modal-content {
    background: linear-gradient( to right, #45b1f2, #1f7ce5, #6cbae9, #1376e5);
    border: 0;
}

.getstart-mdl  .btn-close {
    filter: invert(1) brightness(1);
    opacity: 1;
}

.getstart-mdl .modal-header {
    border: 0;
    padding: 10px 20px;
}

.getstart-mdl .modal-body {
    padding: 0 15px 50px 15px;
}

.getstart-mdl #pop-form-new-popp {
    text-align: left;
}

.getstart-mdl #pop-form-new-popp h6 {
    font-size: 30px;
    line-height: 1.2;
    color: white;
    margin-bottom: 10px;
    font-weight: 400;
}
   
/*getstart modla css End*/

/*YOUR SUCCESS SEC STRT*/

.btm-left-pcc.d-flex {
    width: 100%;
    position: relative;
    bottom: 0;
    justify-content: space-between;
}

.btm-left-pcc.d-flex img.lazy {
    width: 50%;
}

.your_success_sec {
    padding: 0 0 70px 0;
}

.filing_made_easy_wrap {
    background-color: var(--lblue);
    padding: 30px;
    background: linear-gradient( to right, #45b1f2, #1f7ce5, #6cbae9, #1376e5);
    border-radius: 10px;
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
    position: relative;
}

.filling_left h4 {
    font-size: 31px;
    line-height: 32px;
    color: #ffffff;
    font-weight: 500;
    margin: 0 0 10px;
    position:relative;
}
.filling_left h4 span {
    font-size: 20px;
    font-weight: 400;
    font-family: 'avenir-roman';
    display: block;
    width: 100%;
    position: absolute;
    z-index: 2;
}
.filling_left.st-vhge h4 i {
    right: 0;
    position: absolute;
}
.filling_left  a {
    font-size: 22px;
    line-height: 29px;
    color: #000;
    font-family: 'avenir-black';
    background-color: #fff;
    padding: 14px 30px;
    border-radius: 100px;
    border: 3px solid var(--dblue);
    /* margin: 0 0 0px 20px; */
    margin-left:-10px;
}
/*.filling_left button {*/
/*    font-size: 22px;*/
/*    line-height: 29px;*/
/*    color: #000;*/
/*    font-family: 'avenir-black';*/
/*    background-color: #fff;*/
/*    padding: 14px 30px;*/
/*    border-radius: 100px;*/
/*    border: 3px solid var(--dblue);*/
    /* margin: 0 0 0px 20px; */
/*    margin-left:-10px;*/
/*}*/
.filing_made_easy_wrap  button {
    font-size: 22px;
    line-height: 29px;
    color: #000;
    font-family: 'avenir-black';
    background-color: #fff;
    padding: 14px 30px;
    border-radius: 100px;
    border: 3px solid var(--dblue);
    width: auto;
}
.filling_left.st-vhge h4 {
    font-size: 20px;
    text-align: left;
    display: inline-block;
    border-bottom: 2px solid;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    padding: 15px 0;
    margin-bottom: 30px;
}

.filling_left.st-vhge select{
  background-color: transparent;
  border:0;
  padding: 0;
  font-size: 18px;
  font-weight: 400;
  width:100%;
  padding: 0 5px;
}

.filling_right h4 {
    font-size: 16px;
    line-height: 20px;
    color: #ffffff;
    font-weight: 400;
    margin: 0 0 0px;
    font-family: 'avenir-roman';
}

.filling_right h2 {
    font-size: 80px;
    line-height: 85px;
    color: #ffffff;
    font-weight: 400;
    margin: 0 0 0px;
    font-family: 'avenir-black';
}

.filling_right p {
    font-size: 16px;
    line-height: 22px;
    color: #ffffff;
    font-weight: 400;
    margin: 0 0 0px;
    font-family: 'avenir-roman';
}
/*YOUR SUCCESS SEC END*/


/*FOUR STEPS SEC STRT*/
.four_steps_sec {
    padding: 50px 0 80px 0;
}

.step_content h2 {
    font-size: 72px;
    line-height: 73px;
    color: #000000;
    font-weight: 500;
    margin: 0;
    transition: color 1s;
}

.step_content:hover h2{
  color: #fff;
}
.step_content:hover::before{
  opacity: 1;
}
.step_content::before{
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 100%;
  border-radius: 50%;
  z-index: -1;
  opacity: 0;
  transition: 0.5s ease-in-out;
  background-image: linear-gradient(90deg, #43b9f2, #3089ed);
}
.step_content {
    box-shadow: -5px 3px 14px 0 #00000047;
    border-radius: 100px;
    height: 200px;
    width: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: relative;
    z-index: 2;
    background-color: #fff;
    transition: 0.3s ease-in-out;
}

.step_content p {
    font-size: 15px;
    line-height: 17px;
    color: #000000;
    font-weight: 400;
    margin: 0;
}

.step_box {
    position: relative;
}

.step_box:after {
  content: '';
  right: 0;
  bottom: -50px;
  height: 200px;
  width: 220px;
  background-color: #ecf4ff;
  position: absolute;
  z-index: -7;
  border-top-left-radius: 30px;
  border-top-right-radius: 80px;
  border-bottom-left-radius: 80px;
  border-bottom-right-radius: 30px;
}

.step_tag {
    position: absolute;
    text-align: center;
    right: -17px;
    bottom: -20px;
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    background-color: var(--lblue);
    width: 60px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step_tag p {
    margin: 0;
    font-size: 11px;
    line-height: 10px;
    color: #000000;
    font-weight: 600;
    text-transform: uppercase;
}

.step_tag h5 {
    font-size: 18px;
    line-height: 20px;
    color: #000000;
    font-weight: 500;
    margin: 0;
}

.four_steps_sec .col-lg-2 {
    width: 20%;
}

.bonus_step h2 {
    font-size: 30px;
    line-height: 35px;
    color: #000000;
    font-weight: 500;
    margin: 0 0 20px 0;
}

.bonus_step p {
    font-size: 18px;
    line-height: 21px;
    color: #000000;
    font-weight: 400;
    margin: 0;
}

.bonus_step {
    height: 235px;
    width: 235px;
    padding: 10px;
    /*background: linear-gradient(90deg, #43b9f2, #3089ed);*/
    border-radius: 100%;
    background:linear-gradient( to right, #1f7ce5, #1f7ce5bd, #1f7ce5, #1f7ce5f7,  #1f7ce5e6, #1376e5);
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
}

.step_box.bonus_step_wrap:after {
    bottom: -14px;
}
/*FOUR STEPS SEC END*/


/*WATCH JOURNEY SEC STRTR*/
.watch_journey_sec {
    padding: 100px 0 100px 0;
    background: linear-gradient(90deg, #fff0, #edf4ff 50%);
    margin: 0 0 300px 0;
}

.play_wrap i {
    font-size: 60px;
    color: var(--dblue);
}


.play_wrap a {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #000;
}
/*WATCH JOURNEY SEC END*/


/* video sec css */

.request-loader {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 90px;
    width: 90px;
    border-radius: 100%;
    /* background: #FFFFFF; */
    /* box-shadow: 0 0 20px 0 rgb(79 73 190); */
    z-index: 1;
}

.request-loader span {
    position: relative;
    top: 0;
    left: -10px;
    color: black;
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff61;
    border-radius: 50px;
    font-size: 25px;
}

.request-loader::after {
    opacity: 0;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    position: absolute;
    right: 0;
    bottom: 0;
    content: "";
    height: 120%;
    width: 120%;
    border: 2px solid #3b9df0;
    border-radius: 100%;
    -webkit-animation-name: ripple;
    animation-name: ripple;
    -webkit-animation-duration: 3s;
    animation-duration: 3s;
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: cubic-bezier(0.65, 0, 0.34, 1);
    animation-timing-function: cubic-bezier(0.65, 0, 0.34, 1);
    z-index: -1;
    top: -10px;
    left: -20px;
}

.request-loader::before {
    opacity: 0;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: -10px;
    left: -20px;
    right: 0;
    bottom: 0;
    content: "";
    height: 120%;
    width: 120%;
    border: 2px solid #3b9df0;
    border-radius: 100%;
    -webkit-animation-name: ripple;
    animation-name: ripple;
    -webkit-animation-duration: 3s;
    animation-duration: 3s;
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: cubic-bezier(0.65, 0, 0.34, 1);
    animation-timing-function: cubic-bezier(0.65, 0, 0.34, 1);
    z-index: -1;
}

@-webkit-keyframes ripple {
    from {
        opacity: 1;
        transform: scale3d(0.75, 0.75, 1);
    }
    to {
        opacity: 0;
        transform: scale3d(1.5, 1.5, 1);
    }
}

@keyframes ripple {
    from {
        opacity: 1;
        transform: scale3d(0.75, 0.75, 1);
    }
    to {
        opacity: 0;
        transform: scale3d(1.5, 1.5, 1);
    }
}

.watch_left {
    position: absolute;
}

.vdo-btn {
    position: absolute;
    top: 0;
    height: 100%;
    width: 85%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.watch_left img {
    width: 90%;
    height: 85%;
    border-radius: 10px;
    object-fit: contain;
}

/* video sec css */


/*TESTIMONIAL SEC STRT*/
.testi_sec {
  padding: 0 0 80px;
}

.testi_box img {
    width: auto;
    margin: 0 auto;
}

.testi_slider .slick-slide {
    opacity: 1;
}

.testi_box h3 {
    font-size: 24px;
    line-height: 26px;
    color: #000000;
    font-weight: 600;
    margin: 0 0 10px;
}
.testi_box h5 {
    font-size: 18px;
    line-height: 20px;
    color: #000000;
    font-weight: 200;
    margin: 0 0 20px;
    font-family: 'avenir-roman';
}
.testi_box p {
    font-size: 16px;
    line-height: 23px;
    color: #000000;
    font-weight: 200;
    margin: 0 0 20px;
    font-family: 'avenir-roman';
    padding: 0 20px;
}

.slick-current .testi_box {
    padding: 20px;
    transform: scale(1);
}

.testi_slider .slick-track {
    margin: 0px 0 140px 0;
}


.testi_box {
  position: relative;
  padding: 0 20px;
  transform: scale(0.65);
  transition: width 1s, height 1s, transform 0.3s;
}

.testi_box:after {
  position: absolute;
  background-image: url('../images/testi_first_bg.png');
  content: '';
  top: 0;
  left: -13%;
  width: 130%;
  height: 140%;
  z-index: -1;
  background-size: contain;
  background-repeat: no-repeat;
  transition: width 1s, height 1s, transform 0.3s;
}

.slick-current .testi_box:after {
  transform: rotate(-100deg);
  left: inherit;
  right: -15%;
  height: 110%;
  top: 5%;
  transition: width 1s, height 1s, transform 0.3s;
}


.slick-current ~ .slick-slide .testi_box:after {
  transform: scaleX(-1);
  transition: width 1s, height 1s, transform 0.3s;
}
/*TESTIMONIAL SEC END*/


/*FAQ SEC STRT*/

.faq_sec>img {
    top: 0;
    right: 0;
    width: 700px;
    height: 700px;
     object-fit: contain !important; 
    border-bottom-left-radius: 100px;
    object-position: right;
}
/*h1.landi.btn-shine span {*/
/*    font-size: 42px;*/
/*    line-height: 72px;*/
/*}*/
.faq_wrap::before{
    content:'';
    position:absolute;
    height:100%;
    width:120%;
     background-color: #000;
     border-bottom-right-radius: 100px;
     left:0;
     top:0;
     z-index:-1;
}
    



.faq_wrap {
   
    position:relative;
    padding: 50px 200px 50px 50px;
    height: 750px;
    
}

.faq_wrap .accordion-header:hover .accordion-button{
  color: #338fee;
}

.faq_wrap .accordion-button {
    background-color: #fff0;
    border: 0 !important;
    box-shadow: none !important;
    padding: 0;
    margin: 0 0 10px;
    color: #fff;
    transition: color 0.3s ease-in-out;
}

.accordion-item {
    background-color: #fff0;
    border: 0;
}

.faq_wrap h6 {
    font-size: 35px;
    line-height: 40px;
    color: #ffff;
    font-weight: 500;
    margin: 0 0 30px;
    text-transform: capitalize;
}

.accordion-body p {
    color: #fff;
}

.accordion-body {
    padding: 0;
}


.faq_wrap .accordion-button:after {
    background-color: #fff;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-position: center center;
    border-radius: 100px;
}

/*FAQ SEC END*/



/*Footer Start*/

.footer-sec {
    background: #ecf4ff;
    padding: 50px 0;
}
.steel-buildings p {
    font-size: 15px;
    color: #000;
    line-height: 25px;
    width: 85%;
}
.footer-logo {
    margin-bottom: 5%;
    margin-top: 10%;
}
.steel-buildings ul li h2 {
    font-size: 14px;
    color: #fff;
    margin-bottom: 0;
    margin-right: 12px;
}
.steel-buildings ul {
    display: flex;
    align-items: center;
    gap: 10px;
}
.steel-buildings ul li a {
    border: 1px solid #fff;
    border-radius: 50px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    color: #000;
    background-color: #fff;
    box-shadow: inset 0px 0px 5px 3px #00000042;
}
.copy-right p {
    font-size: 17px;
    margin: 0;
    color: #18185b;
}
.copy-right {
    background: var(--dblue);
    text-align: center;
    padding: 15px 0;
}
.ftr-projects h2 {
    font-size: 22px;
    color: #fff;
    margin-bottom: 20%;
}
.ftr-projects ul li a:hover {
    color: var(--dblue);
}
.ftr-projects ul li a {
    font-size: 16px;
    color: #000;
    line-height: 35px;
    transition: 0.5s;
    font-family: 'avenir-roman';
}
.ftr-contact {
    margin-left: 5%;
}
.ftr-projects h2 {
    font-size: 25px;
    color: #000;
    margin-bottom: 5%;
    display: inline-block;
}
.ftr-contact h2 {
    font-size: 29px;
    color: #000;
    margin-bottom: 5%;
    border-bottom: 0;
    display: inline-block;
}
.ftr-contact ul li a span {
    display: block;
}
.ftr-contact ul li {
    margin-bottom: 7%;
}
.ftr-contact ul li {
    display: flex;
    align-items: center;
    gap: 15px;
}
i.fas.fa-phone-alt {
    /* transform: rotate(95deg); */
}
.phone-w{
        animation: shake-animation 1.72s ease infinite;
    transform-origin: 50% 50%;

}
@keyframes shake-animation {
   0% { transform:translate(0,0) }
  1.78571% { transform:translate(5px,0) }
  3.57143% { transform:translate(0,0) }
  5.35714% { transform:translate(5px,0) }
  7.14286% { transform:translate(0,0) }
  8.92857% { transform:translate(5px,0) }
  10.71429% { transform:translate(0,0) }
  100% { transform:translate(0,0) }
}
.ftr-contact ul li i {
    font-size: 20px;
    color: #000;
}
.ftr-contact ul li a {
    font-size: 16px;
    color: #000;
    transition: 1.5s;
    font-family: 'avenir-roman';
}
.steel-buildings ul li a:hover {
    background: var(--lblue);
    color: #fff;
    transition: 0.5s;
}
.steel-buildings ul li a {
    transition: 0.5s;
}
.ftr-contact ul li a:hover {
    color: var(--dblue);
}
.footer-logo a img {
    width: 35%;
    margin-bottom: -9px;
    margin-top: -50px;
}
/*.footer-sec .row {
    display: flex;
    align-items: center;
}*/



/*Footer End*/


.get_touch_right form {
    background: linear-gradient( to right, #45b1f2, #1f7ce5, #6cbae9, #1376e5);
    padding: 50px;
    border-radius: 20px;
        background-size: 400% 400%;
    animation: gradient 15s ease infinite;
}
@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.get_touch_right form h5 {
    font-size: 40px;
    line-height: 45px;
    color: #fff;
    font-weight: 400;
    margin: 0 0 30px;
}

.get_touch_right form input {
    width: 100%;
    height: 55px;
    padding: 0 20px;
    margin: 0 0 30px;
    border: 1px solid #fff;
    border-radius: 5px;
}

.get_touch_right form textarea {
    width: 100%;
    height: 300px;
    padding: 10px 20px;
    margin: 0 0 20px;
    border: 1px solid #fff;
    border-radius: 5px;
}

.get_touch_right form button {
    background-color: #fff;
    border: 0;
    padding: 10px 30px;
    border-radius: 100px;
    font-weight: 600;
    color:#333;
}

.get_in_touch {
    padding-bottom: 50px;
}




/*country guide start*/
/*banner start*/
.banner_text.banner-text-wrap h1 {
    font-size: 45px;
    line-height: 50px;
}
.banner_img.banner_img-m {
    position: relative;
}

.banner-get {
    position: absolute;
    bottom: 6px;
    left: 0;
}

.banner-get ul {
    display: flex;
    align-items: center;
    background: #eff5ff;
    padding: 10px 12px;
}

.banner-get h6 {
    color: #000;
    font-size: 15px;
    text-transform: uppercase;
    font-weight: 800;
    margin-bottom: 10px;
}

.banner-get p {
    font-size: 26px;
    color: #000;
    font-weight: 600;
}

.banner-get a {
    color: #000;
}
.banner_img.banner_img-m ul li {
    margin-right: 32px;
}
.banner-img-M1 {
    position: absolute;
    bottom: 20px;
    right: 0;
    text-align: center;
    background: #fff;
    box-shadow: 0 0 10px #0000002b;
    padding: 11px 10px;
    border-radius: 15px;
}

.banner-img-M1 img {
    position: relative;
    margin-top: -30%;

}

.banner-img-M1 button {padding: 12px 19px;font-size: 18px;position: relative;top: 31px;}
.banner-img-M1 h6 span {
    display: block;
}
.banner-img-M1 h6 {
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 600;
}
  .img-1{
    /*position: absolute;
    top: 0;
    left: 43%;*/
  }
  .banner_image{
    position: relative;
  }
  .banner_img{
    position: relative;
  }

section.after_banner_sec.after_banner_sec1 {
    padding: 70px 0;
}
/*banner end*/

/*featured start*/
.featured_box.featured_box-inner span {
    font-size: 20px;
    line-height: 25px;
    color: #000000;
    font-weight: 900;
    margin: 0 0 0px;
    text-transform: uppercase;
}

.featured_box.featured_box-inner p {
    font-size: 14px;
    line-height: 23px;
    font-weight: 200;
    margin-top: 13px;
}
/*featured end*/


/*incorporate start*/
.incorporate-box:hover{
  transform: scale(1.04);
  box-shadow: 0 0 20px #00000088;
  background: #3693ee05;
}
.incorporate-box {
    margin-top: 10%;
    text-align: center;
    background: #fff;
    box-shadow: 0 0 10px #0000004d;
    padding: 50px 26px;
    border-radius: 15px;
    transition: 0.3s ease-in-out;
}

.incorporate-box h4 {
    font-size: 25px;
}
.sec_head_wrap.text-center h2 span {
    display: block;
}
section.incorporate-wrap {
    background: #eff5ff;
    padding: 60px 0;
}

/*incorporate end*/



/*transfoam start*/
.transfoam-text img {
    margin-bottom: 10%;
    position: absolute;
    top: 0;
    width: 90px;
}
section.transfoam-business {
    padding: 100px 0;
    position: relative;
    padding-top: 5%;
}

.transfoam-text h6 {
    color: #000;
    font-weight: 700;
    font-size: 20px;
}
.transfoam-text a {
    /*color: #3a9def;*/
    font-weight: 700;
}
.transfoam-box {
    background: #fff;
    box-shadow: 0 0 10px #00000042;
    padding-bottom: 40px;
    border-radius: 15px;
    position: relative;
}

.transfoam-box p {
    margin-top: 10%;
    padding: 0 15px;
}


section.transfoam-business .row {
    align-items: center;
}

.transfoam-box a {
    margin-left: 17px;
    font-size: 16px;
    color: #000;
    font-weight: 600;
}

.transfoam-box a span {
}
.slick-slide {
    margin: 20px 20px;
}
.play-btn img {
    width: auto;
}


.play-btn {
    position: absolute;
    top: 31%;
    left: 18px;
}

.slick-active {
    opacity: 2.5;
}
.slick-dots li button:before {
    
    font-size: 17px;
    
}
.slick-dots li.slick-active button:before {
    opacity: 1.75;
    color: black;
}
ul.slick-dots {
    text-align: end;
}
.transfoam-text h2 {
    font-size: 42px;
}

.transfoam-text p {
    font-size: 20px;
    line-height: 36px;
    font-weight: 500;
}
/*transfoam end*/

/*country guide end*/

/*country guide germany start*/


section.best-expration-wrap {
    padding: 80px 0;
}
.best-expration-text h6 {
    font-size: 25px;
    color: #000;
    font-weight: 700;
    line-height: 32px;
}
.best-expration-text p {
    font-size: 18px;
    margin-top: 20px;
    line-height: 30px;
}
.best-expration-btn :nth-child(3) {
    margin-left: -38px;

}

.best-expration-btn {
    display: flex;
}
.theme-btn-white:before {
    background: none !important;


}
.theme-btn.theme-btn-white {
    background: #fff;
    color: #000;
}
html {
    overflow-x: hidden;
}
/*country guide germany end*/

/* country guide spain start */

.banner_text.inr h1 {
    font-size: 55px;
}

.banner_text.inr h1 span {
    display: block;
    font-weight: bold;
    font-size: 65px;
    line-height: 70px;
}

.banner_img.inr {
    margin-right: -58px;
}

.banner_text.inr a.theme-btn {
    display: inline-block;
}


/* confidently kick start */

section.confidently {
    padding: 3% 0;
}

.confidenlty-hed {
    text-align: center;
    margin-bottom: 8%;
}

.confidenlty-hed h6 {
    font-size: 25px;
}

.confidenlty-hed h4 {
    font-size: 45px;
    margin-bottom: 30px;
}

.confidenlty-hed p {
    font-size: 20px;
    width: 67%;
    margin: 0 auto;
}

.confidently-step-bx {
    text-align: center;
    margin-top: 20%;
    z-index: 11;
    position: relative;
}

.confidently-step-txt h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.confidently-step-txt p {
    font-weight: 600;
    width: 95%;
    margin: 0 auto;
    margin-bottom: 0;
}

.confidently-step-txt {
    padding: 5% 0;
}

.cnfdently-steps-img {
    padding: 5% 0;
}

.confdently-steps {
    position: relative;
    text-align: center;
}

.confdently-steps:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 564px;
    background-size: cover;
    background-image: url('../images/row-aftr.png');
    left: 0;
    top: 0%;
    background-repeat: no-repeat;
}

.confdently-steps5:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 465px;
    background-size: cover;
    background-image: url(../images/row-aftr-5.png) !important;
    left: 0;
    top: 0%;
    background-repeat: no-repeat;
    background-position: center;
}

.confdently-steps col-lg-3:nth-child(1) .confidently-step-bx {
    text-align: end;
}

.confdently-steps .row .col-lg-3:nth-child(1) .confidently-step-bx {
    margin-left: 15%;
    margin-top: 10%;
}

.confdently-steps .row .col-lg-3:nth-child(2) .confidently-step-bx {
    margin-left: 7%;
    margin-top: 30%;
}

.confdently-steps .row .col-lg-3:nth-child(3) .confidently-step-bx {
    margin-right: 8%;
    margin-top: 10%;
}

.confdently-steps .row .col-lg-3:nth-child(4) .confidently-step-bx {
    margin-right: 17%;
    margin-top: 16%;
}

.confdently-steps .row .col-lg-3:nth-child(4) .confidently-step-bx .confidently-step-txt p {
    width: 100%;
}





.confdently-steps5 .row {
    flex-wrap: wrap;
}

.confdently_box {
    flex: 1;
    padding: 0 30px;
}

.confdently_box .confidently-step-bx {
    margin-top: 20%;
}

.confdently_box img {
    width: 78%;
}

.confdently_box .confidently-step-txt h3 {
    font-size: 16px;
    line-height: 1.2;
}

.confdently_box .confidently-step-txt  p {
    font-size: 14px;
    line-height: 1.5;
}


/* confidently kick end */


/* country guide spain end */


/* llc country guide start */

.banner_img.inr.cont {
    margin-right: -7px;
}

section.main_slider.lc-country-guide {
    position: relative;
}

section.main_slider.lc-country-guide:after {
    content: '';
    position: absolute;
    right: 0;
    top: 16%;
    background-image: url(../images/llc-country-guide-banr-aftr.png);
    width: 6%;
    height: 18%;
    background-size: cover;
}

.banner_text.inr.cont h6 {
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 700;
}

.banner_text.inr.cont img {
    margin-left: 10px;
}


/* testimonials start */

section.testi_sec.llc-country .testi_box figure img {
    border-radius: 50%;
    filter: drop-shadow(5px 7px 6px #00000057);
    padding: 6px;
    background: #fff;
    width: 36%;
}

.llc-country h2 {
    font-size: 45px;
    width: 71%;
    margin: 0 auto;
}

.llc-country {
    margin-bottom: 3%;
}


/* testimonials end */

.llc-contry .featured_box p {
    font-size: 18px;
}

.llc-contry .featured_box h3 {
    font-size: 15px;
}

.mrg .col-lg-3.col-md-6.col-12 {
    margin-bottom: 10%;
}

.country-spcf-hed {
    text-align: center;
}

.country-spcf-hed h6 {
    font-size: 25px;
    color: #000;
}

.country-spcf-hed h3 {
    font-size: 45px;
}

.country-spcf-hed {
    margin-bottom: 7%;
}

.llc-country .slick-dots li button:before {
    opacity: 1;
    font-size: 15px;
    color: #7f7f7f;
}

.llc-country .slick-dots .slick-active {
    opacity: 1;
    margin: 0 13px;
}

.llc-country .slick-dots li.slick-active button:before {
    color: #000;
    opacity: 1;
    font-size: 30px;
}


/* llc country guide end */

/*NetherLand*/
/*Banner Netherlan*/
.banner-nether {
    font-size: 80px;
}
.banner-nether h1 span {
    font-size: 62px;
    font-family: 'avenir-black';
    display: block;
    line-height: 70px;
}
.banner-nether p {
    font-size: 22px;
}
.neth-img img {
    margin-left: 10%;
}
/*Banner Netherlan end*/
/*Being Your Latest Bussines*/
section.bussiness-Venture {
    background: #eff5ff;
    padding: 80px 0;
    margin-bottom: 80px;
}
.Venture-top {
    text-align: center;
    margin-bottom: 50px;
}
.Venture-top h2 span {
    display: block;
}
.Venture-top h2 {
    font-family: 'avenir-black';
    font-size: 45px;
    line-height: 50px;
}
.Venture-top p {font-size: 16px;
  width: 53%;margin: 0 auto;color: #000000;
  font-family: 'avenir-roman';
}
.ven-box {
    box-shadow: rgb(0 0 0 / 35%) 0px 5px 15px;
    background-color: #ffffff;
    padding: 30px;
    width: 90%;
    border-radius: 7px;
}
.ven-box {
    box-shadow: rgb(0 0 0 / 35%) 0px 5px 15px;
    background-color: #ffffff;
    padding: 40px 30px;
    width: 95%;
    border-radius: 7px;
}
.ven-box p {
    font-size: 16px;
    font-family: 'avenir-roman';
}
.row.pb-n {
    margin-bottom: 50px;
}
/*Being Your Latest Bussines end*/

/*Satisfied client*/
section.satisfied-client {
    padding: 40px 0 80px 0;
}
.satisfied-content img {
    margin-bottom: 30px;
}
.satisfied-content p {
    font-size: 19px;
    font-family: 'avenir-roman';
    width: 87%;
    line-height: 29px;
    color: #000000;
}
.satisfied-content h4 span {
    display: block;
}
.satisfied-content h4 {
    font-size: 25px;
    font-family: 'avenir-roman';
    font-weight: 600;
}
.satis-btn {
    margin-top: 50px;
    display: flex;
    align-items: center;
    gap: 20px;
}
.satis-btn2 a.theme-btn {
    padding: 15px 60px;
}
.satis-btn2 a.theme-btn{
      padding: 15px 56px;
      font-size: 20px;
      font-family: 'avenir-black';
}
a.theme-btn.n-mail {
    margin-left: -40px;
    z-index: 6;
    background: #eff5ff;
    color: #000000;
    padding: 15px 50px;
  }
/*Satisfied client end*/
/*NetherLand end*/

/*MENA*/
/*Banner*/
.banner-mena h1 span {
    font-size: 55px;
    font-family: 'avenir-black';
    display: block;
    line-height: 70px;
}
.banner-mena p {
    font-size: 21px;
}

.ban-abs a {
    font-family: 'avenir-black';
    font-size: 11px;
    border: unset;
    box-shadow: rgb(100 100 111 / 20%) 0px 7px 29px 0px;
    background-color: #fff;
    border-radius: 7px;
    color: #000000;
    padding: 20px 32px;
    padding-left: 20px;
    text-transform: uppercase;
}
.ban-abs {
    padding-bottom: 10px;
    text-align: center;
    padding-top: 20px;
}
.mena-img {
    position: relative;
}

.ban-abs {
    position: absolute;
    left: 34%;
    right: 2%;
    bottom: 14px;
    background: #eff5ff;
    height: 131px;
}
.ban-abs a i {
    font-size: 18px;
    padding-right: 11px;
    color: #42acf1;
}

.ban-abs h6 {
    font-size: 14px;
    text-transform: uppercase;
    font-family: 'avenir-black';
}
/*Banner end*/
/*Video slider */
section.mena-t p.b{
    font-weight: 700;
}
section.mena-t .transfoam-text p {
    width: 100%;
}
section.mena-t a.theme-btn {
    color: #fff;
       font-size: 17px;
    font-family: 'avenir-black';
}
section.mena-t a.theme-btn.n-mail {
    color: #000000 !important;
}
section.mena-t .slick-dots li.slick-active button:before{
   font-size: 25px;
}
section.nether-t .transfoam-text img {
    position: absolute;
    top: 30px;
}
.transfoam-text.sty img {
    position: absolute;
    top: 0 !important;
}
section.nether-t .transfoam-text h2 {
    font-size: 45px;
    line-height: 50px;
}

section.nether-t .transfoam-text p {
    font-size: 20px;
    line-height: 31px;
    font-family: 'avenir-roman';
    width: 90%;
}
section.nether-t{
     background: unset;
    box-shadow:unset;
}
.transfoam-slider .slick-dots li.slick-active button:before {
    font-size: 25px;
}
section.nether-t .transfoam-box a {
    margin-left: 17px;
    font-size: 16px;
    color: #000;
    font-family: 'avenir-black';
}
section.nether-t .transfoam-box {
    background: unset;
    box-shadow: unset;
}section.nether-t .transfoam-text h6 {
    color: #000000;
    font-size: 25px;
}
.transfoam-box a span {
    display: block;
    margin-left: 17px;
    font-family: 'avenir-roman';
}
/*Video slider */
/*MENA end*/

/**/

section.testi_sec ul.slick-dots {
    text-align: center;
}
.llc-country {
    padding-top: 0;
}
.llc-contry {
    padding-bottom: 0;
}


section.inner_banner_two {
    background: #42acf2;
    height: 400px;
    padding: 30px 0px;
    display: flex;
    align-items: center;
}

.inner_banner_heading h2 {
    text-align: center;
}


  /*journey page*/
  .themes-padd{
    padding: 80px 0;
  }
    .content-sec::before{
      content: '';
      position: absolute;
      right: 0;
      bottom: 0;
      height: 75%;
      background-image:  linear-gradient(to right , #fff, #edf5ff);
      width: 100%;
      z-index: -1;
    }
    .content-sec{
      position: relative;
    }
    .content-sec h2{
      margin-bottom: 20px;
    }
    .content-sec h6{
      margin-bottom: 20px;
    }
    .content-sec .mg-bg{
      padding-top: 80px;
    }
    .heading-h6{
      position: relative;
      color: #000000;
      font-size: 24px;
      font-weight: 500;
      font-family: 'avenir-roman';
    }
    .cont-b:hover{
      transform: scale(1.02);
    }
    .cont-b{
      box-shadow: 0 0 10px 0 #00000022;
      border-radius: 5px;
      background-color: #fff;
      padding: 30px 20px;
      transition: 0.3s ease-in-out;
      margin-bottom: 20px;
      display: grid;
    align-content: center;
    height: 250px;
    }
    .cont-b h3{
      margin-bottom: 10px;
    }

    /*packages-sec*/
      .packages-sec{
        position: relative;
            transform: scale(0.8);
      }
      .packages-sec h2{
        font-size: 35px;
        margin-bottom: 15px;
      }
      .packg-box{
        box-shadow: 0 0 10px 0 #00000022;
        background-color: #f2f9ff;
        border-radius: 5px;
        padding: 30px 20px;
        text-align: center;
        position: relative;
        height: 100%;
        transition: 0.5s;
        border: 2px solid #eef5ff;
        z-index: 3;
      }
      .packg-box h4::after{
       content: '';
    position: absolute;
    right: 0;
    bottom: -15px;
    height: 15px;
    width: 15px;
    background-color: #1669bd;
    clip-path: polygon(100% 0, 0 0, 0 100%);
      }
      .packg-box h4{
        color: #fff;
        background-color: #3390ee;
        padding: 5px 20px;
        border-top-left-radius: 50px;
        border-bottom-left-radius: 50px;
        font-size: 16px;
        display: inline-block;
        position: absolute;
        right: -15px;
        top: 30px;
      }
      .packg-box h4 span{
        font-weight: 4000;
      }
      .packg-box img{
        height: 130px;
        object-fit: contain;
        margin: 10px 0;
      }
      .packg-box h5::before{
        content: '';
        position: absolute;
        left: -24px;
        height: 17px;
        width: 17px;
        background-image: url("../images/question.png");
        background-size: contain;
        background-repeat: no-repeat;
      }
      .packg-box h5{
        position: relative;
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 65%;
        margin: 0% auto;
        margin-bottom: 8px;
        color: #000;
        font-size: 16px;
        text-align: left;
      }
      .packg-box h5 span{
        font-weight: 400;
      }
      .packg-box ul{
            background-color: #f2f9ff;
    padding: 20px;
    border-radius: 5px;
    margin: 20px 0;
    height: 250px;
    overflow-y: scroll;
      }
      .packg-box ul li{
        margin: 10px 0;
        color: #000000;
        font-size: 15px;
        font-weight: 600;
        text-align: left;
        font-family: 'avenir-roman';
      }
      /* Track */
    .packg-box ul::-webkit-scrollbar {
  width: 10px;
}
 .packg-box ul::-webkit-scrollbar-track {
  background-color: #e4e4e4;
}
 
/* Handle */
 .packg-box ul::-webkit-scrollbar-thumb {
  background: #3796ee; 
  border-radius: 8px;
}
      .packg-box a{
        position: absolute;
        bottom: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        left: 50%;
        width: 60%;
        background-image: linear-gradient(#318bed, #41abf1);
        color: #fff;
        height: 60px;
        border-radius: 50px;
        transform: translate(-50%,30px);
        font-size: 17px;
      }
      .packg-box a i{
        margin-left: 10px;
        margin-top: 5px;
      }
      .packg-box.bg-cnhge {
        background: transparent;
}
.packg-box.bg-cnhge ul {
    background: #f6f6f6;
    overflow: hidden;
    width: 90%;
}
    /*packages-sec*/
  /*journey page*/

  /*step-sec*/
  .steps-box .tab {
  display: none;
}
.step1 {
  height: 20px;
  width: 20px;
  margin: -3px 2px;
  background-color: #4481ff;
  border: none;  
  border-radius: 50%;
  display: inline-block;
  position: relative;
}
.step {
  height: 20px;
  width: 20px;
  margin: -3px 2px;
  background-color: #4481ff;
  border: none;  
  border-radius: 50%;
  display: inline-block;
  position: relative;
}
.steps-box .step.active::before,.steps-box .step.finish::before{
      content: '\f00c';
    position: absolute;
    left: 3px;
    top: 0;
    font-family: "Font Awesome 5 Pro";
    font-weight: 700;
    color: #fff;
    font-size: 16px;
}
.steps-box .step1::before{
      content: '\f00c';
    position: absolute;
    left: 3px;
    top: 0;
    font-family: "Font Awesome 5 Pro";
    font-weight: 700;
    color: #fff;
    font-size: 16px;
}
.steps-box .step.active{
  display: inline-block;
  background: #20b720;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}
.steps-box{
  position: relative;
  padding-top: 170px;
  padding-bottom: 0;
}
.step-head{
    padding-bottom: 50px;
}
.step-head input{
  height: 15px;
  width: 15px;
}
.step-head label{
  color: #000;
  font-family: 'avenir-roman';
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
}
.step-content{
  position: relative;
  background-image: linear-gradient(to right ,#fff, #ecf4ff);
  padding: 40px 0 80px;
}
.step-content h2{
  text-align: center;
  font-size: 50px;
  font-family: 'avenir-black';
  font-weight: 700;
  margin-bottom: 10px;
}
.step-content h4{
      text-align: center;
    font-size: 20px;
    font-family: 'avenir-roman';
    font-weight: 500;
    margin-bottom: 10px;
}
.step-content h5{
      text-align: center;
    font-size: 20px;
    font-family: 'avenir-roman';
    font-weight: 600;
    margin-bottom: 10px;
}
.step-content p{
  color: #000000;
  font-size: 20px;
  font-weight: 500;
  font-family: 'avenir-roman';
  text-align: center;
  line-height: 30px;
  margin-bottom: 20px;
}
.btn-info {
    color: #000;
    background-color: #28b17b;
    border-color: #28b17b;
}
.btn-info:hover {
    color: #000;
    background-color: #1f8a60;
    border-color: #1f8a60;
}
.step-content input{
  width: 100%;
  display: block;
  height: 60px;
  background-color: #fff;
  border: 1px solid #d3d3d3;
  padding: 10px;
  border-radius: 5px;
  margin-bottom: 20px;
  padding-right: 50px;
}
.step-content select{
  width: 100%;
  display: block;
  height: 60px;
  background-color: #fff;
  border: 1px solid #d3d3d3;
  padding: 10px;
  border-radius: 5px;
  margin-bottom: 20px;
  padding-right: 50px;
  -webkit-appearance:auto;
  color: #5c5757;
}
.step-content button{
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  width: 100%;
  background-image: linear-gradient(#318bed, #41abf1);
  border: 0;
  border-radius: 50px;
  color: #fff;
  font-family: 'avenir-black';
  margin-bottom: 10px;
}
.step-content button i{
  margin-left: 20px;
  margin-top: 5px;
}
.step-input{
  position: relative;
}
.step-input i{
  position: absolute;
  right: 20px;
  top: 20px;
  color: #d3d3d3;
  font-size: 25px;
}
button.disable{
  background-image: none;
  background-color: #ffffff;
  border:1px solid #858585;
  color: #858585;
}
.step-3 h5{
  text-align: left;
}
.mg-t20{
  margin-top: 30px;
}
.step-content .d-flex input{
  width: 40px;
    height: 20px;
    margin: 0;
    margin-top: 6px;
}
}
.step-content .d-flex{
  margin-bottom: 20px;
  align-items: flex-start;
}
.step-content .d-flex p{
  margin: 0;
  color: #7c7c7c;
  text-align: left;
}
.step-content .d-flex p strong a{
  color: #328dec;
}

.featured_quality_sec.land-sty .featured_box p {
    font-size: 17px;
}
.featured_quality_sec.land-sty .featured_box figure{
      background: linear-gradient(0deg, #ecf4ff, #ecf4ff);

}
.featured_quality_sec.land-sty .featured_box figure img{
   filter: invert(1);
}
.your_success_sec.land .strt_business_tabs .nav-tabs button {
    font-size: 25px;
}

.surpise-sec{
  position: relative;
  background-color: #ecf4ff;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
}
.surpise-sec .mg-20{
  margin-top: 40px;
}
.surpise-sec .row.mg-20{
  align-items: center;
}
.surpise-sec .row.mg-20 img{
  margin: 0% auto;
  display: block;
}
.one-price-box::before{
      content: '';
    position: absolute;
    left: -8px;
    bottom: -8px;
    height: 16px;
    width: 16px;
    border-radius: 50%;
    background-color: #fff;
    box-shadow: 2px 3px 10px 0 #000000c7;
}
.one-price-box::after{
      content: '';
    position: absolute;
    top: -8px;
    right: -8px;
    height: 16px;
    width: 16px;
    border-radius: 50%;
    background-color: #fff;
    box-shadow: 2px 3px 10px 0 #000000c7;
}
.one-price::before{
   content: '';
    position: absolute;
    bottom: -7.5px;
    right: -7.5px;
    height: 16px;
    width: 16px;
    border-radius: 50%;
    border: 3px solid #fff;
    background-color: #4481ff;
    z-index: 1;
}
.one-price{
  position: relative;
}
.one-price-box{
  position: relative;
  background-color: #fff;
  padding: 30px;
  border-right: 5px solid #3695ee;
  border-bottom: 5px solid #3695ee;
}
.one-price-box h4{
  color: #000;
  font-size: 25px;
  font-weight: 600;
  font-family: 'avenir-black';
  margin-bottom: 5px;
}
.one-price-box p{
    color: #000;
  font-size: 20px;
  font-weight: 400;
  font-family: 'avenir-roman';
  margin-bottom: 25px;
}
.one-price-box ul{
  margin-top: 40px;
  margin-bottom: 0;
}
.one-price-box ul li::before{
  content: '\f058';
  position: absolute;
  left: -30px;
  top: 0;
  font-weight: 500;
  font-family: 'Font Awesome 5 Pro';
}
.one-price-box ul li{
  width: 90%;
  margin: 0% auto;
  margin-bottom: 15px;
   color: #000;
  font-size: 19px;
  font-weight: 400;
  font-family: 'avenir-black';
  position: relative;
}
.one-price-box ul li i{
  color: #7c7c7c;
}

.businesowners-sec::before{
  content: '';
  position: absolute;
  top: -10%;
  height: 20%;
  background: #000;
  z-index: -1;
  width: 100%;
}
.businesowners-sec{
  position: relative;
  background-color: #fff;
  border-top-right-radius: 30px;
  border-top-left-radius: 30px;
}
.bus-owners-sli ul.slick-dots{
  text-align: center;
}
.bus-owners-sli .slick-dots li.slick-active{
  height: 20px;
  width: 20px;
}
.bus-owners-sli .slick-dots li.slick-active button{
  height: 20px;
  width: 20px;
  background-color: #000;
}
.bus-owners-sli .slick-dots li.active button:before{
  opacity: 0;
}
.bus-owners-sli .slick-dots li{
  transition: 0.2s all;
  height: 10px;
  width: 10px;
}
.bus-owners-sli .slick-dots li button{
  background-color: #7f7f7f;
  height: 10px;
  width: 10px;
  border-radius: 50%;
  transition: 0.2s all;
}
.bus-owners-sli .slick-dots li button:before{
  opacity: 0;
}
.owner-box:hover{
  transform: scale(1.02);
}
.owner-box{
  box-shadow: 2px 2px 10px 0 #0000005e;
  border-radius: 9px;
  transition: 0.3s ease-in-out;
}
.owner-box .oner-img{
  position: relative;
  overflow:hidden;
  border-bottom: 10px solid #bdbdbd; 
}
.owner-box:hover .oner-img img{
  transform: scale(1.2);
}
.owner-box .oner-img img{
  transition: 0.3s ease-in-out;
  height: 280px;
  object-fit: cover;
}
.owner-box .owner-txt{
  position: relative;
  padding: 20px 20px;
  padding-top: 50px;
}
.owner-box .owner-txt img{}
.owner-box .owner-txt img{
  height: 70px;
  object-fit: contain;
  width: 70px;
  position: absolute;
  top: 0;
  transform: translate(0, -40px);
}
.owner-box .owner-txt h6{
  color: #000000;
  font-size: 22px;
  font-family: 'avenir-black';
}
.owner-box .owner-txt h6 span{
  display: block;
  font-family: 'avenir-roman';
  font-size: 16px;
}

  /*step-sec*/

  /*slider dot themes-dots*/
    .themes-dots ul.slick-dots{
  /*text-align: center;*/
}
.themes-dots .slick-dots li.slick-active{
  height: 20px;
  width: 20px;
}
.themes-dots .slick-dots li.slick-active button{
  height: 20px;
  width: 20px;
  background-color: #000;
}
.themes-dots .slick-dots li.active button:before{
  opacity: 0;
}
.themes-dots .slick-dots li{
  transition: 0.2s all;
  height: 10px;
  width: 10px;
}
.themes-dots .slick-dots li button{
  background-color: #7f7f7f;
  height: 10px;
  width: 10px;
  border-radius: 50%;
  transition: 0.2s all;
}
.themes-dots .slick-dots li button:before{
  opacity: 0;
}
  /*slider dot themes-dots*/

  .box-styl-c .owner-box{
    box-shadow: inherit;
  }
  .transfoam-business.mena-t.help-sec {
    padding-top: 5%;
}
  .transfoam-business.mena-t.help-sec .transfoam-text img{
    top: 10%;
  }
  .no-padd{
    padding-top: 0 !important;
  }
  .mg-tops img{
    top: 12%;
  }
  .mg-tops1 img {
    top: 7% ;
}

  .malaysia-styl{
    padding-top: 110px !important;
  }


  .uae-styl{
    padding-top: 5% !important;
  }
  .uae-styl .transfoam-text img{
    height: 180px;
  }
  .uae-styl .row {
    align-items: flex-end;
}

  .wall-sec{
    position: relative;
  }
  .wall-sec .mg-30{
    margin-top: 50px;
  }
  .wall-sec-sli{
  }
  .wall-sec-sli .slick-prev{
    left: -80px;
  }
  .wall-sec-sli .slick-prev::before{
    content: '\f053';
    font-family: 'Font Awesome 5 Pro';
    font-weight: 600;
    position: absolute;
    left: 0;
    top: 0;
    height: 50px;
    width: 50px;
    border-radius: 50%;
    background-color: #338fee;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .wall-sec-sli .owner-box{
    margin-bottom: 25px;
  }
  .wall-sec-sli .slick-prev, .wall-sec-sli .slick-next{
    top: 45%;
  }
  .wall-sec-sli .slick-next{
    right: -60px;
  }
  .wall-sec-sli .slick-next::before{
    content: '\f054';
    font-family: 'Font Awesome 5 Pro';
    font-weight: 600;
    position: absolute;
    left: 0;
    top: 0;
    height: 50px;
    width: 50px;
    border-radius: 50%;
    background-color: #338fee;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .wall-sec-sli .slick-slide{
    margin: 60px 20px;
    opacity: 1;
  }
  .wall-sec .container-fluid{
    padding: 0 8%;
  }
  .review-box:hover{
    transform: scale(1.03);
    box-shadow: 5px 10px 20px 0 #00000022;
  }
  .review-box{
    position: relative;
    z-index: 0;
    padding: 20px 30px;
    margin: 20px 0;
    height: 400px;
    display: grid;
    align-content: center;
    justify-content: center;
    text-align: center;
    background-color: #f4f9ff;
    border-radius: 5px;
    box-shadow: 5px 10px 10px 0 #00000022;
    margin-bottom: 80px;
    transition: 0.3s ease-in-out;
  }
  .review-box .reviw-img{
    height: 120px;
    width: 120px;
    object-fit: contain;
    margin: 0% auto;
    display: block;
    position: absolute;
    left: 50%;
    transform: translate(-50%,-60px);
  }
  .review-box .icon{
    height: 60px;
    width: 60px;
    object-fit: contain;
     margin: 0% auto;
    display: block;
  }
  
  .transfoam-business.mena-t.box-styl-c.mg-tops {
    padding-top: 15%;
}
.transfoam-business.mena-t.mg-tops{
    padding-top: 15%;
}
.transfoam-business.img-tops .transfoam-text img {
    top: 10%;
}
section.transfoam-business.padd-add {
    padding: 140px 0;
}

    /*faq-style*/
    .faq-style::before{
         content:'';
    position:absolute;
    height:100%;
    width:70%;
     background-color: #000;
     border-bottom-right-radius: 100px;
     left:0;
     top:0;
     z-index:-1;
    }
    .faq-style{
        position:relative;
    }
     .faq-style .faq_wrap::before{
         opacity: 0;
     }
     
    .faq-style .faq_wrap {
    position: relative;
    padding: 0 0;
    height: 750px;
    padding-right: 20%;
    display: grid;
    align-content: center;
}
.faq-style .faq_wrap h6{
    position:relative;
}
.faq-style .faq_wrap h6::before {
    content: '';
    position: absolute;
    left: -21%;
    bottom: -20px;
    height: 1px;
    width: 145%;
    background: #fff;
    z-index: -1;
}
.faq-style  .faq_wrap .accordion-button {
    font-size: 22px;
    line-height: 1.2;
}
.faq-style .accordion-item::before{
     content: '';
    position: absolute;
    left: -21%;
    bottom: -10px;
    height: 1px;
    width: 145%;
    background: #fff;
    z-index: -1;
}
.faq-style .accordion-item{
    position:relative;
    margin:20px 0;
}
.faq-style{
    z-index:0;
}

    
    /*faq-style*/
    
    .register_company_sec.no-top-mg {
    padding-top: 0;
}

  /*about us*/
    .banner_text.about-banner h1 span {
    font-size: 50px;
    line-height: 56px;
}
.banner_text.about-banner h1 {
    font-size: 50px;
}
.about-img{
  position: absolute;
  right: 0;
  /*about us*/
}
.about-img {
    position: absolute;
    right: 0;
    top: 0;
    height: 600px;
    width: 45%;
}
.about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}
.banner-btom-sec{
  position: relative;
  height: 10px;
}
.about-best-img{
    position: absolute;
    top: -750px;
    right: 0%;
}
img.img-fluid.img-size{
        height: 600px;
}
.about-best-img img {
    height: 650px;
    margin-top: 70px;

}
  .our-mission-sec{
    position: relative;
    padding: 80px 0;
  }
  .our-mission-sec .row{
    align-items: center;
  }
  .our-mission-sec h3{
    margin-bottom: 20px;
  }
  .our-mission-sec .missio-img{
    position: relative;
    height: 350px;
  }
  .our-mission-sec .missio-img img{
    position:absolute;
    bottom: -20%;
    right: -20%;
  }
  .our-mission-sec .vission-img {
    position: relative;
    height: 250px;
  }
  .our-mission-sec .vission-img img{
    position: absolute;
    right: -20%;
  }
  .our-mission-sec .star-box{
    position: relative;
    height: 100px;
  }
  .our-mission-sec .star-box img{
    position: absolute;
    left: -50%;
    top: -60%;
    transition: 0.5s ease-in-out;
    animation: 2s bouncein2 infinite;
  }
  
  .our-mission-sec .star-box:hover img {
    transform: scale(1.1);
    transition: 0.5s ease-in-out;
}

  .our-mission-sec .text-right{
    text-align: right;
  }
  .need-help-sec{
    position: relative;
    padding: 120px 0;
    margin: 60px 0;
  }
  .need-help-sec::before{
    content: '';
    position: absolute;
    height: 100%;
    width: 95%;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    background-color: #ecf4ff;
    z-index: -1;
    top: 0;
    left: 0;
  }
  .need-help-sec h2{
    margin-bottom: 10px;
    text-transform: capitalize;
  }
  
  .need-help-sec h2 span {
        text-transform: capitalize;
    }
  .need-help-sec .need_help3{
      position: absolute;
    top: -16%;
    height: 650px;
    right: 7%;
  }
  
  .need_help1 {
    top: 40px;
    position: absolute;
    right: 37%;
    animation: 2s bounceout infinite;
    }
    
    .need_help2 {
        position: absolute;
        right: 140px;
        bottom: 20px;
        width: 190px;
        animation: 2s bounceout infinite;
    }

  .our-value-sec{
    position: relative;
    padding: 80px 0;
  }
  .our-value-sec h2{
    margin-bottom: 30px;
  }
  .our-value-sec h3{
    color: #000;
    font-size: 20px;
    margin-bottom: 5px;
  }
  .our-value-sec h3 span{
    display: block;
  }
  .our-value-sec .spacer{
    height: 20px;
  }
  .our-value-sec .value-img{
    height: 500px;
    width: 110%;
    margin-left: -5%;
    position: relative;
  }
  .our-value-sec .row{
    align-items: center;
  }
  .our-value-sec .value-img img{
    position: absolute;
    height: 500px;
    width: 100%;
  }
  .our-value-sec .text-right{
    text-align: right;
  }
  
    .missio-img .mission_ctas.chat-ico {
        left: 20px;
    }
    .mission_box_wrap .call-ico {
        left: 90px;
    }
  
  
  
  
  .join_wrap {
    text-align: center;
    }
    
    .join_them_img {
        position: unset !important;
    }
    
    .mission_box_wrap {
        position: relative;
        background-color: #fff;
        padding: 60px 40px 20px 40px;
        box-shadow: 0 7px 20px 3px #00000029;
        border-radius: 10px;
        width: 80%;
        margin: 0 0 0 auto;
        right: -70px;
        bottom: -120px;
    }
    
    .mission_box_wrap h4 {
        font-size: 17px;
        line-height: 21px;
        color: #000000;
        font-weight: 500;
        margin: 25px 0 10px 0;
        text-transform: uppercase;
    }
    
    .mission_box_wrap .theme-btn {
        display: inline-block;
        padding: 15px 30px;
    }
    
    .mission_ctas {
        background-color: #fff;
        padding: 15px;
        box-shadow: 0 7px 20px 3px #00000029;
        border-radius: 10px;
        width: 60px;
        animation: 2s bouncein2 infinite;
    }
    
    .chat-ico {
        right: 41% !important;
        top: -30px;
    }
    
    .call-ico {
        top: -30px;
        right: 20% !important;
    }
      
  
  
/*form1*/

section.kimberlay-forms {
    font-family: 'helvetica';
    padding: 80px 0;
    position: relative;
    background: #e5e5e5b0;
    background: linear-gradient(180deg, rgba(50, 123, 247, 1) 0%, rgb(255 255 255) 40%, rgb(130 211 230) 100%);
}

section.kimberlay-forms:before {
    content: 'R';
    font-family: lovely-girl;
    position: absolute;
    width: 100%;
    left: 0;
    background-size: contain;
    background-repeat: no-repeat;
    top: 393px;
    opacity: 0.6;
    z-index: 999;
    font-size: 712px;
    z-index: -1;
    left: 22%;
}

.form-main form {
    border: 2px solid #ffffff;
    padding: 50px 50px;
    background-color: #82d3e659;
    width: 80%;
    margin: 0 auto;
    border-top-left-radius: 100px;
    border-bottom-right-radius: 100px;
    position: relative;
    z-index: 999;
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-main p {
    color: #3D3B53;
    font-size: 17px;
    font-weight: 400;
    line-height: 30px;
}

.form-header img {
    width: 40%;
}

.form-header p {
    margin-bottom: 0;
}

.form-header a {
    display: block;
    text-decoration: unset;
    font-size: 20px;
    margin: 13px 0;
    font-weight: 600;
    color: #3D3B53;
}

.form-fields input {
    border-bottom: 1px solid #000 !important;
    border: unset;
    width: 40%;
    padding: 0;
    outline: unset;
    position: relative;
    bottom: 8px;
}

.form-footer ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    margin: 0;
    list-style: none;
}

.form-footer input {
    border-bottom: 1px solid #000 !important;
    border: unset;
    width: 100%;
    padding: 0;
    outline: unset;
}

.form-footer input[type="radio"] {
    width: auto;
    margin-left: 20px;
    margin-bottom: 0;
    position: relative;
    top: 0;
}

.form-footer {
    margin-top: 50px;
}

.form-footer p {
    line-height: unset;
    margin-bottom: 10px;
}

.form-footer input {
    margin-bottom: 10px;
}

.kim-logo {
    text-align: center;
}

.kim-logo img {
    width: 20%;
    position: absolute;
    left: 21px;
}

.kim-btn {
    color: #fff;
    font-size: 20px;
    line-height: 25px;
    font-weight: 400;
    margin: 0 auto;
    display: table;
    width: 27%;
    text-align: center;
    padding: 17px 0;
    border-radius: 50px;
    border: unset;
    padding: 15px 40px;
    text-transform: uppercase;
    margin-top: 50px;
    background: linear-gradient(180deg, rgba(50, 123, 247, 1) 0%, rgba(179, 122, 227, 1) 40%, rgba(249, 164, 72, 1) 100%);
}


/*form1*/
/*form1*/
/*intake form*/

.stud-member {
    text-align: center;
    margin-bottom: 60px;
}
.stud-member h6 {
    margin-bottom: 10px;
    font-weight: 700;
    font-size: 36px;
    color: #0f2053;
    font-family: 'avenir-black';
}
.stud-member p {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 0;
    padding: 0 100px;
}

.cpac-form label {
    font-weight: 600;
    font-size: 17px;
    display: block;
    margin-bottom: 10px;
    font-family: 'avenir-roman';
    color: #000000c9;
}

.cpac-form input {
    width: 100%;
    padding: 12px 20px;
    border: 1px solid #fff;
    margin-bottom: 30px;
    border-radius: 5px;
    background: #ffffff99;
}

.cpac-form textarea {
    width: 100%;
    padding: 12px 20px;
    border: 1px solid #ffffff;
    margin-bottom: 30px;
    border-radius: 10px;
    resize: none;
    height: 130px;
    background: #ffffff99;
}

.grief {
    padding: 40px 0;
}

.grief h5 {
    font-size: 25px;
    margin-bottom: 15px;
}

.grief-fields {
    display: none;
}

.grief h5 i {
    cursor: pointer;
}

.desclimer p {
    font-size: 19px;
    font-weight: 600;
    color: #000;
    margin-bottom: 0;
    margin-top: 25px;
}

.cli-radio input {
    width: auto;
    margin-bottom: 0;
    margin-right: 10px;
}
.t-message input {
    width: auto;
    margin-bottom: 0;
    margin: 0 10px;
}
.cli-radio {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}
.cli-radio label {
    margin-bottom: 0;
    margin-right: 10px;
    font-weight: 500;
}
.pr-inf input {
    width: auto;
    margin-bottom: 0;
    margin-right: 10px;
}
.pr-inf label {
    display: unset;
    margin-right: 10px;
}
.pr-inf {
    margin: 10px 0;
}
.foam-img img {
    width: 20%;
}
.t-message label {
    display: inline-block;
}

.media_pr_wrap {
    column-count: 5;
    text-align: left;
}

.media_pr_wrap li {
    margin: 0 0 30px 0;
    text-align: center;
}

.form-main p label {
    font-weight: 400;
    font-size: 15px;
}

.media_pr_wrap li img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    object-position: center;
}

.theme_label {
    font-weight: 400 !important;
    font-size: 15px !important;
}

.theme_question {
    font-weight: 600 !important;
    font-size: 17px;
}
/*intake form*/


    /*step-box*/
    .step-land ul {
        display: flex;
    margin-bottom: 0;
    align-items: center;
}
.step-land .theme-btn i {
    padding-left: 10px;
}
.step-land {
    margin-top: 30px;
}
.step-land ul .star-box img {
    height: 40px;
    width: 40px;
    object-fit: cover;
}

.step-land ul .star-box {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 70px;
    width: 70px;
    box-shadow: 0 0 10px 0 #00000022;
    border-radius: 50%;
    margin-right: 20px;
}
.step-land ul h4 {
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 5px;
}
.step-land ul .d-flex h6 {
       margin: 0;
    font-size: 14px !important;
    text-transform: capitalize !important;
    line-height: 16px;
    padding-left: 10px;
}
.step-land ul .d-flex i {
    color: #ff8f00;
    font-size: 12px;
    padding-right: 2px;
}
.step-land ul .bussin-box {
       display: flex;
       align-items: center;
       justify-content: center;
       height: 50px;
       width: 50px;
       border-radius: 50%;
       color: #000;
       font-weight: 700;
       position: relative;
       background: #fff;
       margin-right: 25px;
}
.step-land ul .bussin-box::before {
    content: '';
    position: absolute;
    top: -25%;
    left: -25%;
    height: 150%;
    width: 150%;
    border-radius: 50%;
    z-index: -1;
    background: linear-gradient( to right, #45b1f2, #1f7ce5, #6cbae9, #1376e5,#6cbae9, #1376e5);
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
}
.step-land ul h5 storng {
    font-weight: bold;
}
.step-land ul h5 {
    font-size: 17px;
    margin: 0;
    line-height: 25px;
    font-weight: 300;
    font-family: 'avenir-roman';
}
.step-land .row {
    align-items: center;
    margin-top: 30px;
}
.step-content .filling_right p {
    text-align: center;
}

.step-content .filling_right h4 {
    text-align: center;
    color: #000;
}
.step-content .filling_right {
    float: inherit;
    text-align: center;
}
.step-content .filling_right h2 {
    text-align: center;
    margin: 0;
    line-height: 50px;
    color: #000;
}
.pack-box-inner {
    margin-top: 50px;
    margin-bottom: 80px;
     transform: scale(0.8);
}
.pack-box-inner .packg-box.btn-active a{
    border: 2px solid #3490ee;
    color: #fff;
    font-weight: 600;
    background: #015bfa;
    transform: scale(1.2);
    left: 20%;
    bottom: -35px;
}
.packg-box.btn-active {
    /*background: #3390eee6;*/
}
.packg-box.btn-active ul {
    /*background-color: #3390eee6;*/
}

.step-head label {
    cursor: pointer;
}
.pack-box-inner .packg-box img {
    width: 100% !important;
}
.pack-box-inner .packg-box h4 {
    font-size: 16px !important;
}

.pack-box-inner .packg-box h2 {
    font-size: 40px !important;
}
.pack-box-inner .packg-box p {
    height: 60px;
    display: grid;
    align-content: center;
}
.steep-5.tab .packg-box h2 {
    font-size: 30px;
}


/*BOTTOM CSS*/
.strt_business_tabs .nav-tabs>li {
        flex: 1;
    }
    
    .strt_business_tabs .nav-tabs>li button {
        width: 100%;
    }
    
    .btm-left-pcc {
        position: absolute;
        bottom: 30px;
        width: 40%;
        text-align: left;
    }
    
    .btm-left-pcc>img {
        width: 100%;
        margin: 0;
        height: 62px;
        object-fit: contain;
        object-position: 0px 0px;
        margin-bottom: 5px;
    }
    .filing_made_easy_wrap * {
        color: #fff;
    }
    .your_success_sec .sec_head_wrap {padding: 20px;}
    
    .banner-form-wrapper {
        margin-top: 20px;
    }
    
    .banner-form-wrapper form button {
        width: 50px;
        height: 50px;
        background: linear-gradient(0deg, #45b1f2, #318aed);
        color: #fff;
        border: 0;
        border-radius: 6px;
        font-size: 26px;
        line-height: 0;
    }
    
    .banner-form-wrapper form input {
        height: 50px;
        border: 1px solid #ddd;
        border-radius: 6px;
        padding: 0 10px;
        width: calc(32% - 16px);
    }
    
    .banner-form-wrapper {
        /*display: flex;*/
        /*align-items: center;*/
        /*justify-content: space-between;*/
        flex-flow: wrap;
        padding: 10px;
        background: #ecf4ff;
        border-radius: 10px;
        box-shadow: 5px 5px 6px 0 #00000021;
        font-size: 15px;
    }
    
    .banner-form-wrapper .form-get-quote {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    
    section.privacy-section {
        padding: 200px 0 100px;
    }
    
    .filing_made_easy_wrap option {
        color: #000;
    }
    
    
    .country_page_banner .banner_text h1 span {
        font-size: 35px;
        line-height: 1.2;
    }
/*BOTTOM CSS*/
    /**/
    
    .scrll_side_bar {
    position: relative;
    height: 100%;
}

.scrll_side_bar>.alabama_rightt_boxx.fixed-wrp {
    position: fixed;
    top: 13%;
    width: auto;
    transition: 1s ease-in-out;
}

.alabama_rightt_boxx {
    transition: 0.5s ease-in-out;
}

.brez_alabama_sec {
    overflow: hidden;
    /* z-index: 1; */
    position: relative;
}

section.resousce-scrc {
    position: relative;
    z-index: 1;
}

.brez_launch_secc {
    position: relative;
    z-index: 1;
    background: #fff;
}

.footer-sec {
    position: relative;
    z-index: 1;
}

.copy-right {
    position: relative;
    z-index: 1;
}

.faq-style {
    z-index: 1;
    background: #fff;
}

/* business tool page */

.business_banner_sec_new {
    position: relative;
    padding: 13% 0 4%;
    text-align: center;
    overflow: hidden !important;
}

.business_banner_sec_new .busines_banner_textt>h1 {
    color: #000;
    font-size: 50px;
    font-family: 'avenir-black';
}

.business_banner_sec_new .busines_banner_textt p {
    font-size: 20px;
    font-family: 'avenir-roman';
    color: #000;
    line-height: 32px;
    margin-bottom: 20px !important;
    margin-top: 20px !important;
    width: 90%;
    margin: 0 auto;
}

.business_banner_sec_new .busines_banner_textt>form {
    background-color: #ecf4ff;
    padding: 50px 30px;
    border-radius: 10px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    position: relative;
    width: 90%;
    margin: 0 auto;
    margin-top: 40px;
    margin-bottom: 40px;
}

.business_banner_sec_new .busines_banner_textt>form>div {
    position: relative;
    width: 80%;
    margin: 0 auto;
}

.business_banner_sec_new .busines_banner_textt>form>h4 {
    font-size: 20px;
    color: #000;
    font-family: 'avenir-black';
    line-height: 26px;
    margin-bottom: 40px;
    letter-spacing: .5px;
}

.business_banner_sec_new .busines_banner_textt>form>div>input {
    width: 100%;
    height: 70px;
    border-radius: 40px;
    border: 0;
    padding: 10px 30px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    outline: none;
}

.business_banner_sec_new .busines_banner_textt>form>div>button {
    width: 15%;
    border: 0;
    background: linear-gradient(0deg, #45b1f2, #318aed);
    color: #fff;
    font-size: 20px;
    height: 70px;
    position: absolute;
    right: 0;
    top: 0;
    border-top-right-radius: 40px;
    border-bottom-right-radius: 40px;
}

.business_banner_sec_new .busines_banner_textt>form>.busin_vec {
    position: absolute;
    right: -60px;
    top: -60px;
    width: 140px;
}

.business_banner_sec_new .busines_banner_textt>form>div>input::placeholder {
    color: #000;
    font-size: 16px;
    font-family: 'avenir-roman';
}

.business_banner_sec_new:after {
    position: absolute;
    content: "";
    background: linear-gradient(45deg, #ecf4ff, transparent);
    width: 500px;
    height: 500px;
    left: -7%;
    top: -6%;
    border-radius: 50%;
    z-index: -1;
    animation: rotat2 5s linear infinite;
}

.business_banner_sec_new:before {
    position: absolute;
    content: "";
    background: linear-gradient(45deg, #ecf4ff, transparent);
    width: 500px;
    height: 500px;
    right: -19%;
    bottom: 15%;
    border-radius: 50%;
    z-index: -1;
    animation: rotat2 5s linear infinite;
}

@keyframes rotat2 {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }

}

/* banner end */

.what_happens_busi_sec_new {
    background-color: #040056;
    text-align: center;
        padding: 40px 0px 60px;
}

.what_happens_busi_sec_new .col-md-12>h2 {
    font-size: 30px;
    color: #fff;
    font-family: 'avenir-roman';
    margin-bottom: 20px;
}

.what_happens_busi_sec_new .col-md-12>p {
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 40px;
    color: #fff;
    font-family: 'avenir-roman';
}

/* what happens end */

.business_name_sec_new {
    padding: 70px 0px;
}

.business_name_sec_new .busi_name_div>h3 {
    font-size: 30px;
    font-family: 'avenir-roman';
    font-weight: 600;
    margin-bottom: 20px;
}

.business_name_sec_new .busi_name_div>p {
    font-size: 20px;
    font-family: 'avenir-roman';
    line-height: 31px;
    color: #000;
    width: 90%;
    margin-bottom: 4px;
}

.business_name_sec_new .busi_name_div>ul>li {
    font-size: 20px;
    color: #000;
    margin-bottom: 5px;
    padding-left: 24px;
    position: relative;
    font-family: 'avenir-roman';
}

.business_name_sec_new .busi_name_div>ul>li:after {
    position: absolute;
    content: "";
    background: #000;
    width: 7px;
    height: 7px;
    left: 0;
    top: 9px;
    border-radius: 50%;
}

.audience_forget_sec_new {
    padding: 40px 0px 60px;
}

.audience_forget_sec_new .audience_forget_div {
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    padding: 4% 6%;
    border-radius: 10px;
}

.audience_forget_sec_new .audience_forget_div>h2 {
    font-size: 30px;
    text-align: center;
    color: #000;
    font-family: 'avenir-roman';
    font-weight: 600;
    line-height: 30px;
    margin-bottom: 20px;
}

.audience_forget_sec_new .audience_forget_div>p {
    font-size: 20px;
    text-align: center;
    color: #000;
    font-family: 'avenir-roman';
    line-height: 30px;
}

.audience_forget_sec_new .audience_forget_div .textt_forget_div {
    padding: 40px 20px;
    border-radius: 10px;
    transition: 0.3s ease-in-out;
    margin-top: 40px;
}

.audience_forget_sec_new .audience_forget_div .textt_forget_div:hover {
    background-color: #ecf4ff;
}

.audience_forget_sec_new .audience_forget_div .textt_forget_div>h3 {
    font-size: 20px;
    font-family: 'avenir-black';
}

.audience_forget_sec_new .audience_forget_div .textt_forget_div>ul {
    margin-bottom: 0;
}

.audience_forget_sec_new .audience_forget_div .textt_forget_div>ul>li {
    display: flex;
    gap: 20px;
    font-size: 20px;
    font-family: 'avenir-roman';
    color: #000;
    align-items: center;
    margin-bottom: 15px;
}

.audience_forget_sec_new .audience_forget_div .textt_forget_div>ul>li:last-child {
    margin: 0;
}

/* business tool page */

/* new pages css getsetllc */

.best_states_to_form_new_sec {
    padding: 13% 7% 7%;
}

.best_states_to_form_new_sec .publish_datee>ul>li>span {
    font-size: 20px;
    font-family: 'avenir-black';
    color: #000;
    position: relative;
}

.best_states_to_form_new_sec .publish_datee>ul>li>span:after {
    position: absolute;
    content: "";
    background-color: #4091ef;
    width: 10px;
    height: 10px;
    right: -18px;
    bottom: 7px;
    border-radius: 50%;
}

.best_states_to_form_new_sec .publish_datee>ul>li>img {
    width: 60px;
    margin-left: 30px;
}

.best_states_to_form_new_sec .publish_datee>ul>li:last-child span {
    font-family: 'avenir-roman';
}

.best_states_to_form_new_sec .publish_datee>ul>li:last-child span:after {
    right: unset;
    left: -20px;
}

.best_states_to_form_new_sec .best_states_textt_wrpp>h1 {
    font-size: 50px;
    color: #000;
    font-family: 'avenir-black';
    line-height: 55px;
    margin-top: 30px;
}

.best_states_to_form_new_sec .best_states_textt_wrpp>p {
    font-size: 20px;
    font-family: 'avenir-roman';
    line-height: 31px;
    color: #000;
}

.best_states_to_form_new_sec .best_states_textt_wrpp>.girl-img1-new-page {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-top-left-radius: 60px;
    border-bottom-left-radius: 10px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 60px;
    margin-top: 10px;
    object-position: top;
}

.best_states_to_form_new_sec .quick_answer_div {
    position: relative;
    background-color: #ecf4ff;
    margin-top: 6%;
    border-radius: 10px;
    padding: 30px 30px;
}

.best_states_to_form_new_sec .quick_answer_div>img.vec-img1 {
    position: absolute;
    right: -3%;
    top: -14%;
    width: 120px;
}

.best_states_to_form_new_sec .quick_answer_div>h3 {
    font-size: 30px;
    font-family: 'avenir-roman';
    font-weight: bold;
    color: #4496ef;
    margin-bottom: 15px;
}

.best_states_to_form_new_sec .quick_answer_div>h3>span {
    font-size: 20px;
    display: block;
    color: #000;
}

.best_states_to_form_new_sec .quick_answer_div>p {
    font-size: 20px;
    line-height: 27px;
    color: #000;
    font-family: 'avenir-roman';
    margin-bottom: 30px;
    width: 90%;
}

.best_states_to_form_new_sec .quick_answer_div>.theme-btn {
    margin-bottom: -50px;
    display: block;
    width: fit-content;
}

.business_on_amazon>h3 {
    font-size: 30px;
    font-family: 'avenir-black';
}

.business_on_amazon {
    margin-top: 7%;
}

.business_on_amazon p {
    font-size: 20px;
    font-family: 'avenir-roman';
    color: #000;
    line-height: 32px;
}

.business_on_amazon h4 {
    font-size: 30px;
    color: #3591ee;
    font-family: 'avenir-black';
    margin-top: 40px;
    margin-bottom: 30px;
}

.business_on_amazon .accordion-item .accordion-button {
    align-items: center;
    gap: 20px;
    border: 1px solid #f0f0f0;
    border-radius: 5px !important;
    font-family: 'avenir-roman';
    color: #000;
    font-size: 20px;
    padding: 6px 20px;
    margin-bottom: 20px;
}

.business_on_amazon .accordion-item .accordion-button h6 {
    margin: 0;
    color: #fff;
    background: linear-gradient(0deg, #45b1f2, #318aed);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-family: 'avenir-black';
}

.business_on_amazon .accordion-item {
    width: 70%;
    margin-bottom: 40px;
    margin-top: 40px;
}

.final_thoughts_div {
    position: relative;
    background-color: #040056;
    padding: 50px 40px;
    border-radius: 10px;
}

.final_thoughts_div>.papr-vec-img {
    position: absolute;
    right: -3%;
    top: -20%;
}

.final_thoughts_div>h3 {
    color: #fff;
    font-size: 30px;
    margin-bottom: 20px;
    font-family: 'avenir-roman';
}

.final_thoughts_div>p {
    font-size: 20px;
    color: #fff;
    font-family: 'avenir-roman';
    line-height: 33px;
    margin-bottom: 30px;
}

.final_thoughts_div .theme-btn {
    display: block;
    width: fit-content;
    margin-bottom: -70px;
}

.side_fixd_br_new_pg>.side_box_fixed_one {
    background-color: #ecf4ff;
    margin: 13% 0 4%;
    padding: 25px 25px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: rgba(0, 0, 0, 0.15) 5.95px 6.95px 11.6px;
}

.side_fixd_br_new_pg>.side_box_fixed_one>.theme-btn {
    display: block;
    width: 100%;
    margin: 0 auto;
}

.side_fixd_br_new_pg>.side_box_fixed_one>h4 {
    font-size: 29px;
    line-height: 40px;
}

.side_fixd_br_new_pg>.side_box_fixed_one>h4>span {
    display: block;
    font-weight: bold;
    color: #328cee;
    margin-bottom: 19px;
}

.side_fixd_br_new_pg>.side_box_fixed_one>p {
    font-size: 19px;
    line-height: 30px;
    margin-bottom: 30px !important;
    width: 80%;
    margin: 0 auto;
}

.side_fixd_br_new_pg>.side_box_fixed_one._two {
    margin-bottom: 0;
    margin-top: 6%;
}

.side_fixd_br_new_pg>.side_box_fixed_one._two>h4 {
    color: #040056;
}

.side_fixd_br_new_pg>.side_box_fixed_one._two>p {
    width: 100%;
}

.side_fixd_br_new_pg>.side_box_fixed_one._two>.new_btn {
    width: 100%;
    font-size: 20px;
    color: #fff;
    background-color: #040056;
    display: block;
    padding: 13px 0px;
    border-radius: 30px;
}

.side_fixd_br_new_pg.fixd-wrp {
    position: fixed;
    z-index: 9999;
    top: 13%;
    width: 416px;
    transition: 0.3s ease-in-out;
}

.side_fixd_br_new_pg {
    transition: 0.3s all;
    position: relative;
}

.side_fixd_br_new_pg.fixd-wrp>.side_box_fixed_one {
    margin-top: 4%;
}

.side_fixd_br_new_pg.fixd-wrps {
    position: absolute;
    z-index: 0;
    bottom: 0;
    transition: 0.3s ease-in-out;
}

.best_states_to_form_divv {
    position: relative;
}

.side_fixd_br_new_pg.fixd-wrps.fixd-wrp {
    position: fixed;
    transition: 0.3s all;
}

/* new pages css getsetllc */



/*new page quick answer*/

.business_banner_sec_new.quick_anss {
    background-color: #f5fafe;
    z-index: 1;
}

.business_banner_sec_new.quick_anss:before {
    background: linear-gradient(45deg, #e3f0fb, transparent) !IMPORTANT;
    z-index: -1;
    width: 380px;
    height: 380px;
    right: -40px;
    bottom: -50px;
}

.business_banner_sec_new.quick_anss:after {
    background: linear-gradient(45deg, #e3f1fb, transparent);
    height: 380px;
    width: 380px;
}

.business_banner_sec_new.quick_anss .busines_banner_textt>span {
    font-size: 50px;
    color: #040056;
    font-family: 'avenir-black';
    display: block;
    margin: 40px 0px;
}

.business_banner_sec_new.quick_anss .busines_banner_textt {
    position: relative;
}

.business_banner_sec_new.quick_anss .busines_banner_textt>.new_page_vec1 {
    position: absolute;
    left: -50px;
    top: -40px;
}

.business_banner_sec_new.quick_anss .busines_banner_textt>.new_page_vec2 {
    position: absolute;
    right: 0;
    bottom: 0;
}

.quick_answer_sec_neww .quick_ans_main_boxx {
    box-shadow: rgba(0, 0, 0, 0.35) 5px 4px 15px;
    transition: 0.4s ease-in-out;
    border-radius: 15px;
}

.quick_answer_sec_neww .quick_ans_main_boxx>a>img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    transition: 0.4s ease-in-out;
}

.quick_answer_sec_neww .quick_ans_main_boxx>.quick_ans_main_boxx_body {
    padding: 30px 40px;
}

.quick_answer_sec_neww .quick_ans_main_boxx>.quick_ans_main_boxx_body>span {
    font-size: 16px;
    color: #000;
    font-family: 'avenir-roman';
    display: block;
    margin-bottom: 30px;
}

.quick_answer_sec_neww .quick_ans_main_boxx>.quick_ans_main_boxx_body>h3 {
    font-size: 30px !important;
    font-family: 'avenir-roman';
    font-weight: 600;
    color: #000;
    margin-bottom: 15px;
}

.quick_answer_sec_neww .quick_ans_main_boxx>.quick_ans_main_boxx_body>h4 {
    font-size: 30px !important;
    font-family: 'avenir-roman';
    font-weight: 600;
    color: #000;
    margin-bottom: 15px;
    line-height: 1.3;
}

.quick_answer_sec_neww .quick_ans_main_boxx>.quick_ans_main_boxx_body>p {
    color: #000;
    font-size: 16px;
    font-family: 'avenir-roman';
    line-height: 25px;
    margin-bottom: 30px;
    width: 100%;
}

.quick_answer_sec_neww .quick_ans_main_boxx>.quick_ans_main_boxx_body>.theme-btn {
    margin-bottom: -56px;
    display: block;
    width: fit-content;
}

.quick_answer_sec_neww .quick_ans_main_boxx:hover a>img {
    transform: scale(1.1);
}

.quick_answer_sec_neww .quick_ans_main_boxx>a {
    overflow: hidden;
    display: block;
    position: relative;
    z-index: 1;
}

.quick_answer_sec_neww .quick_ans_main_boxx {
    position: relative;
    margin-top: 6%;
    margin-bottom: 6%;
}

.quick_answer_sec_neww .quick_ans_main_boxx:after {
    position: absolute;
    content: "";
    border-bottom: 7px solid #040056;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    border-radius: 0;
    margin: 0 auto;
    transition: 0.4s ease-in-out;
    right: 0;
}

.quick_answer_sec_neww .quick_ans_main_boxx:hover:after {
    transition: 0.4s ease-in-out;
    width: 100%;
    border-radius: 15px;
}

.quick_answer_sec_neww.py_8 {
    padding: 80px 0px;
}

.mx_width {
    max-width: 729px !IMPORTANT;
}

/*new page quick answer*/


@media only screen and (min-width: 1300px) and (max-width: 1399px){
    .ftr-projects h2,.ftr-contact h2 {
    font-size: 20px;
}

.new_tble_wrpp>.row h6 {
    font-size: 15px !important;
    margin-bottom: 40px !important;
}

.new_tble_wrpp>ul {
    width: 94% !important;
}

}

@media only screen and (max-width: 1280px) {
    .ftr-projects h2 {
    font-size: 20px;}
    .ftr-contact h2{
        font-size: 20px;
    }
}
@media only screen and (max-width: 1024px) {
    .ftr-projects h2 {
    font-size: 19px;}
    .ftr-contact h2{
        font-size: 19px;
    }
}
/**/

@media only screen and (min-width: 1366px) and (max-width: 1440px){
    
    .side_fixd_br_new_pg>.side_box_fixed_one._two>.new_btn {
    font-size: 16px;
    padding: 10px 0px;
}
    
    .side_fixd_br_new_pg.fixd-wrp {
    top: 3%;
    width: 383px;
}
    
    /*new page quick answer*/

.quick_answer_sec_neww .quick_ans_main_boxx>.quick_ans_main_boxx_body {
    padding: 30px;
}

.quick_answer_sec_neww .quick_ans_main_boxx>.quick_ans_main_boxx_body>h3 {
    font-size: 25px;
}

.quick_answer_sec_neww .quick_ans_main_boxx>.quick_ans_main_boxx_body>h4 {
    font-size: 25px;
}

/*new page quick answer*/
    
    .scrll_side_bar>.alabama_rightt_boxx.fixed-wrp {
        top: 0 !important;
    }

    .alabama_rightt_boxx>a {
        padding: 5px 5px 5px 40px !important;
    }
    
    .satis-btn2 a.theme-btn {
        padding: 11px 30px !important;
    }
    a.theme-btn.n-mail {
        margin-left: -30px;
        padding: 11px 30px !important;
    }
    
    section.main_slider {
        padding-bottom: 0;
        padding-top: 90px;
    }
    
    .step-land ul {
        margin-bottom: 30px;
    }
    
    .step-land .col-md-12.col-lg-6 {
        width: 100%;
    }
  .menuSec ul li a { padding: 6px 8px;font-size: 14px;}
  .header_call i {font-size: 14px;margin: 0 10px 0 0px;}
  .header_call {font-size: 14px;}
  .theme-btn {font-size: 15px;padding: 10px 25px !important; }
  .banner_text h1 {
    font-size: 40px !important;
    line-height: 47px !important;
}
  .banner_text p {font-size: 20px;line-height: 30px;}
  .featured_box h3 {font-size: 11px;}
  .featured_box p {font-size: 16px;}
  .sec_heading1 {font-size: 35px; line-height: 40px;}
  .sec_head_wrap p {font-size: 16px;line-height: 26px;}
  .strt_business_tabs .nav-tabs button {
        font-size: 18px;
        line-height: 40px;
        padding: 10px 15px;
    }
  .filling_left h4 {font-size: 21px;line-height: 25px;}
  .filling_left a { font-size: 20px;}
  .filling_right h2 {font-size: 60px;line-height: 65px;}
  
  
  .watch_journey_sec {
        padding: 50px 0 50px 0;
        margin: 0 0 50px 0;
    }
    
    header.sticky {
        top: 0;
        position: absolute !important;
        left: 0;
        right: 0;
        width: 100%;
    }
    
    .vdo-btn {
        width: 100%;
    }
        
    .watch_left img {
        width: 100%;
        height: 100%;
    }
    
    html{
        overflow-x: hidden;
    }
    
    .watch_left {
        position: unset;
    }
    
    .four_steps_sec .col-lg-2 {
        width: 33%;
    }
    
    .step_box {
        margin-bottom: 70px;
    }
    
    .testi_box p {
        font-size: 12px;
        line-height: 20px;
        padding: 0 0px;
    }
    
    .slick-current .testi_box:after {
        right: -36%;
    }
    
    .testi_box:after {
        top: 100px;
 
    }
    
    html{
        overflow-x: hidden;
    }
    
    .faq-style .faq_wrap {
        height: 590px;
    }
    
    .faq_sec>img {
        top: -1px;
        width: 590px;
        height: 572px;
    }
    
    .get_in_touch {
        padding-bottom: 50px;
        padding-top: 30px;
    }
    
    .banner_text.about-banner h1 {
        font-size: 30px;
    }
    
    .banner_text.about-banner h1 span {
        font-size: 40px;
        line-height: 46px;
    }
    
    .about-best-img img {
        height: 520px;
        margin-top: 140px;
    }
    
}

@media only screen and (min-width: 1200px) and (max-width: 1365px){
    
    .side_fixd_br_new_pg>.side_box_fixed_one>h4 {
    font-size: 25px;
    line-height: 30px;
}

.side_fixd_br_new_pg>.side_box_fixed_one>p {
    width: 100%;
}

.side_fixd_br_new_pg.fixd-wrp {
    width: 320px;
    top: 3%;
}
    
    /*new page quick answer*/

.quick_answer_sec_neww .quick_ans_main_boxx>.quick_ans_main_boxx_body {
    padding: 30px;
}

.quick_answer_sec_neww .quick_ans_main_boxx>.quick_ans_main_boxx_body>h3 {
    font-size: 25px;
}

.quick_answer_sec_neww .quick_ans_main_boxx>.quick_ans_main_boxx_body>h4 {
    font-size: 25px;
}

/*new page quick answer*/
    
    .confdently-steps5:after {
        height: 415px;
    }
    
    .get_touch_right form textarea {
        height: 120px;
    }

    section.main_slider {
        padding-bottom: 0;
        padding-top: 90px;
    }
    
    .step-land ul {
        margin-bottom: 30px;
    }
    
    .step-land .col-md-12.col-lg-6 {
        width: 100%;
    }
  .menuSec ul li a { padding: 6px 8px;font-size: 14px;}
  .header_call i {font-size: 14px;margin: 0 10px 0 0px;}
  .header_call {font-size: 14px;}
  .theme-btn {font-size: 15px;padding: 10px 30px !important; }
  .banner_text h1 {font-size: 50px;line-height: 50px;}
  .banner_text p {font-size: 20px;line-height: 30px;}
  .featured_box h3 {font-size: 11px;}
  .featured_box p {font-size: 16px;}
  .sec_heading1 {font-size: 35px; line-height: 40px;}
  .sec_head_wrap p {font-size: 16px;line-height: 26px;}
  .strt_business_tabs .nav-tabs button {
        font-size: 18px;
        line-height: 40px;
        padding: 10px 15px;
    }
  .filling_left h4 {font-size: 21px;line-height: 25px;}
  .filling_left a { font-size: 20px;}
  .filling_right h2 {font-size: 60px;line-height: 65px;}
  
  
  .watch_journey_sec {
        padding: 50px 0 50px 0;
        margin: 0 0 50px 0;
    }
    
    header.sticky {
        top: 0;
        position: absolute !important;
        left: 0;
        right: 0;
        width: 100%;
    }
    
    .vdo-btn {
        width: 100%;
    }
        
    .watch_left img {
        width: 100%;
        height: 100%;
    }
    
    html{
        overflow-x: hidden;
    }
    
    .watch_left {
        position: unset;
    }
    
    .four_steps_sec .col-lg-2 {
        width: 33%;
    }
    
    .step_box {
        margin-bottom: 70px;
    }
    
    .testi_box p {
        font-size: 12px;
        line-height: 20px;
        padding: 0 0px;
    }
    
    .slick-current .testi_box:after {
        right: -36%;
    }
    
    .testi_box:after {
        top: 100px;
 
    }
    
    html{
        overflow-x: hidden;
    }
    
    .faq-style .faq_wrap {
        height: 590px;
    }
    
    .faq_sec>img {
        top: -1px;
        width: 590px;
        height: 572px;
    }
    
    .get_in_touch {
        padding-bottom: 50px;
        padding-top: 30px;
    }
    
    .banner_text.about-banner h1 {
        font-size: 30px;
    }
    
    .banner_text.about-banner h1 span {
        font-size: 40px;
        line-height: 46px;
    }
    
    .about-best-img img {
        height: 520px;
        margin-top: 140px;
    }
    
    .banner_text.banner-text-wrap h1 {
        font-size: 35px;
        line-height: 40px;
    }
}
@media only screen and (min-width: 992px) and (max-width: 1199px){
    
    .new_tble_wrpp>ul>li {
    font-size: 16px !Important;
}

.new_tble_wrpp>.row h6 {
    font-size: 15px !Important;
}

.new_tble_wrpp>.row span {
    font-size: 13px !Important;
}
    
    .side_fixd_br_new_pg.fixd-wrp {
    width: 25%;
    top: 2%;
}

.side_fixd_br_new_pg>.side_box_fixed_one {
    padding: 15px;
}

.side_fixd_br_new_pg>.side_box_fixed_one>h4 {
    font-size: 20px;
    line-height: 25px !IMPORTANT;
}

.side_fixd_br_new_pg>.side_box_fixed_one._two>.new_btn {
    font-size: 16px;
}

.side_fixd_br_new_pg>.side_box_fixed_one>p {
    width: 100% !important;
    font-size: 15px;
    margin-bottom: 12px !IMPORTANT;
    line-height: 23px;
}
    
    /*new page quick answer*/

.quick_answer_sec_neww .quick_ans_main_boxx>.quick_ans_main_boxx_body {
    padding: 25px;
}

.quick_answer_sec_neww .quick_ans_main_boxx>.quick_ans_main_boxx_body>h3 {
    font-size: 22px;
}

.quick_answer_sec_neww .quick_ans_main_boxx>.quick_ans_main_boxx_body>h4 {
    font-size: 22px;
}

/*new page quick answer*/
    
    	/* short-content-page */

	.best_states_to_form_new_sec .best_states_textt_wrpp>h1 {
		font-size: 50px;
		line-height: 50px;
	}

	.best_states_to_form_new_sec .best_states_textt_wrpp>.girl-img1-new-page {
		height: 390px;
	}

	/* short-content-page */
    
    .getstart-mdl .modal-dialog {
    width: 75%;
    max-width: 75%;
}
.popup-side-img img.lazy {
    max-width: 150%;
    transform: translate(-160px, 0px);
}
    .confdently-steps5:after {
        height: 334px !important;
    }
    
    .confdently-steps:after {
        height: 408px;
    }
        
    .confidently-step-txt h3 {
        font-size: 14px;
        margin-bottom: 10px;
        line-height: 1.2;
    }
    
    .confidently-step-txt p {
        width: 100%;
        font-size: 12px;
        line-height: 1.2;
    }
    
    .transfoam-text.t-img1 img {
        position: unset;
        margin: 0px 0 10px 0;
    }

    
    .get_touch_right form textarea {
        height: 120px;
    }
    
    section.main_slider {
        padding-bottom: 0;
        padding-top: 90px;
    }
    
    .step-land ul {
        margin-bottom: 30px;
    }
    
    .step-land .col-md-12.col-lg-6 {
        width: 100%;
    }
  .menuSec ul li a {padding: 6px 7px;font-size: 13px;}
  .navbr .dropdown-littlebig{min-width: 800px !important;}
 .menu-sd-cont img{
    height: 280px !important;
}
  .header_call i {font-size: 14px;margin: 0 10px 0 0px;}
  .header_call {font-size: 14px;}
  .theme-btn {font-size: 15px;padding: 10px 10px !important; }
  .banner_text h1 {font-size: 35px !important;;line-height: 40px !important;;}
  .banner_text p {font-size: 16px;line-height: 25px;}
  .featured_box h3 {font-size: 11px;}
  .featured_box p {font-size: 16px;}
  .sec_heading1 {font-size: 35px; line-height: 40px;}
  .sec_head_wrap p {font-size: 16px;line-height: 26px;}
  .strt_business_tabs .nav-tabs button {
        font-size: 18px;
        line-height: 40px;
        padding: 10px 15px;
    }
  .filling_left h4 {font-size: 21px;line-height: 25px;}
  .filling_left a { font-size: 20px;}
  .filling_right h2 {font-size: 60px;line-height: 65px;}
  
  
  .watch_journey_sec {
        padding: 50px 0 50px 0;
        margin: 0 0 50px 0;
    }
    
    header.sticky {
        top: 0;
        position: absolute !important;
        left: 0;
        right: 0;
        width: 100%;
    }
    
    .vdo-btn {
        width: 100%;
    }
        
    .watch_left img {
        width: 100%;
        height: 100%;
    }
    
    html{
        overflow-x: hidden;
    }
    
    .watch_left {
        position: unset;
    }
    
    .four_steps_sec .col-lg-2 {
        width: 33%;
    }
    
    .step_box {
        margin-bottom: 70px;
    }
    
    .testi_box p {
        font-size: 12px;
        line-height: 20px;
        padding: 0 0px;
    }
    
    .slick-current .testi_box:after {
        right: -36%;
    }
    
    .testi_box:after {
        top: 100px;
 
    }
    
    html{
        overflow-x: hidden;
    }
    
    .faq-style .faq_wrap {
        height: 590px;
    }
    
    .faq_sec>img {
        top: -1px;
        width: 590px;
        height: 572px;
    }
    
    .get_in_touch {
        padding-bottom: 50px;
        padding-top: 30px;
    }
    
    .banner_text.about-banner h1 {
        font-size: 30px;
    }
    
    .banner_text.about-banner h1 span {
        font-size: 40px;
        line-height: 46px;
    }
    
    .about-best-img img {
        height: 520px;
        margin-top: 140px;
    }

}
@media only screen and (min-width: 768px) and (max-width: 991px){
    
    
    .new_tble_wrpp>ul>li {
    font-size: 13px !important;
}

.new_tble_wrpp>.row h6 {
    font-size: 12px !important;
    line-height: 14px !important;
    margin-bottom: 50px !important;
}

.new_tble_wrpp>.row span {
    font-size: 12px !important;
    line-height: 15px !important;
}

.new_tble_wrpp>ul {
    width: 96% !important;
}

.new_tble_wrpp>.row:before {
    display: none !important;
}

.new_tble_wrpp>.row:after {
    display: none !important;
}

.new_tble_wrpp>.row .col-md-3:nth-child(2) span:first-child {
    margin-bottom: 57px !important;
}

.new_tble_wrpp>.row .col-md-3:last-child span:nth-child(1) {
    margin-bottom: 14px !important;
}

.new_tble_wrpp>.row .col-md-3:last-child span:nth-child(2) {
    margin-bottom: 80px !important;
}

.new_tble_wrpp>.row .col-md-3:last-child span:nth-child(3) {
    width: 130px !important;
    margin-left: -60px !important;
}
    
    .side_fixd_br_new_pg.fixd-wrp {
    position: inherit !important;
    width: 100%;
}

.side_fixd_br_new_pg.fixd-wrps {
    position: inherit !IMPORTANT;
}
    
    /*new page quick answer*/

.business_banner_sec_new.quick_anss .busines_banner_textt>.new_page_vec1 {
    display: none;
}

.business_banner_sec_new .busines_banner_textt>h1 {
    font-size: 40px;
}

.business_banner_sec_new.quick_anss .busines_banner_textt>span {
    font-size: 40px;
    margin: 20px 0px;
}

.business_banner_sec_new.quick_anss .busines_banner_textt>.new_page_vec2 {
    display: none;
}

.quick_answer_sec_neww .quick_ans_main_boxx>span>img {
    height: 210px;
}

.quick_answer_sec_neww .quick_ans_main_boxx>.quick_ans_main_boxx_body {
    padding: 15px;
}

.quick_answer_sec_neww .quick_ans_main_boxx>.quick_ans_main_boxx_body>h3 {
    font-size: 17px;
}

.quick_answer_sec_neww .quick_ans_main_boxx>.quick_ans_main_boxx_body>h4 {
    font-size: 17px;
}

.quick_answer_sec_neww .quick_ans_main_boxx>.quick_ans_main_boxx_body>.theme-btn {
    margin: 0;
    font-size: 16px;
    padding: 9px 30px;
}

/*new page quick answer*/
    
    	/* short-content-page */

	.best_states_to_form_new_sec .best_states_textt_wrpp>h1 {
		font-size: 40px;
		line-height: 40px;
	}

	.best_states_to_form_new_sec .best_states_textt_wrpp>.girl-img1-new-page {
		height: 300px;
	}

	/* short-content-page */
    
    	/* business tool page */

		.business_banner_sec_new:before {
			width: 300px;
			height: 300px;
		}
	
		.business_banner_sec_new:after {
			width: 300px;
			height: 300px;
		}
	
		.business_name_sec_new .busi_name_div>p {
			width: 100%;
			font-size: 16px;
			line-height: 23px;
		}
		
		/* business tool page */
    
    .getstart-mdl .modal-dialog {
    width: 85%;
    max-width: 85%;
}

.popup-side-img img.lazy {
    transform: translate(-90px, 30px);
    max-width: 140%;
}
    
    .banner-nether h1 span {
        font-size: 35px;
        line-height: 45px;
    }
    
    a.theme-btn.n-mail {
        padding: 15px 15px;
    }
    
    .ven-box h3 {
        font-size: 19px;
    }
    
    .ven-box p {
        font-size: 14px;
        font-family: 'avenir-roman';
    }
    
    .confdently-steps5:after {
        height: 334px !important;
    }
    
    .confdently_box {
        flex: unset;
        padding: 0 20px;
        width: 50%;
    }
    
    .confdently-steps:nth-child(odd) .confidently-step-bx {
        flex-direction: column-reverse;
        display: flex;
    }
    
    .mena-img {
        display: none;
    }
    
    .ban-abs a {
        padding: 15px 5px;
    }
    
    .neth-img img {
        margin-left: 0;
    }
    
    section.confidently {
        padding: 3% 0 10% 0;
    }

    .confdently-steps .col-lg-3 {
        width: 50%;
    }

    .confdently-steps .col-lg-3:nth-child(even) .confidently-step-bx {
        flex-direction: column-reverse;
        display: flex;
    }

    .transfoam-text.t-img1 img {
        position: unset;
        margin: 0px 0 10px 0;
    }

    
    .watch_journey_sec {
        padding: 50px 0 50px 0;
        margin: 0 0 50px 0;
    }
    
    header.sticky {
        top: 0;
        position: absolute !important;
        left: 0;
        right: 0;
        width: 100%;
    }
    
    .vdo-btn {
        width: 100%;
    }
        
    .watch_left img {
        width: 100%;
        height: 100%;
    }
    
    html{
        overflow-x: hidden;
    }
    
    .watch_left {
        position: unset;
    }
    
    .four_steps_sec {
        padding: 20px 0 80px 0;
    }
    
    .your_success_sec {
        padding: 0 0 0px 0;
    }
    
    .theme-btn {
        font-size: 18px;
        padding: 15px 30px;
    }
    
    section.main_slider {
        padding-top: 90px;
    }

    .header_contact li.me-5 {
        margin-right: 1rem !important;
    }
    
    .banner_img {
        position: relative;
        width: 50%;
        margin: 0 auto !important;
    }
    .menuSec ul li a {
        font-size: 11px;
        padding: 0px 6px;
    }
    
    .header_call {
        font-size: 12px;
        display: flex;
        align-items: center;
    }
    
    .header_call i {
        font-size: 16px;
        margin: 0px;
    }
    
    .header_cta.theme-btn {
        padding: 12px 13px;
        font-size: 13px;
    }
    
    .about_p .carousel-item {
        height: 704px;
    }
    
    .banner_text.about-banner h1 span {
        font-size: 35px;
    }
    
    .banner_text.about-banner h1 {
        font-size: 38px;
        line-height: 1.2;
    }
    
    .banner_text p {
        font-size: 16px;
        line-height: 1.7;
    }
    
    .sec_heading1 {
        font-size: 26px;
        line-height: 1.2;
    }
    
    .featured_box figure {
        height: 80px;
        width: 80px;
        top: 0px;
    }
    
    .featured_box {
        margin-bottom: 35px !important;
        height: auto;
    }
    
    .our-mission-sec .missio-img {
        display: none;
    }
    
    .our-mission-sec .vission-img {
        display: none;
    }
    
    .our-mission-sec .star-box {
        display: none;
    }
    
    .our-mission-sec {
        padding: 0px 0px;
    }
    
    .need-help-sec img {
        display: none;
    }
    
    .need-help-sec {
        padding: 50px 0px;
    }
    
    .our-value-sec .value-img img {
        object-fit: contain;
    }
    
    .testi_box:after {display: none;}
    
    .faq_sec>img {
        display: none;
    }
    
    .faq-style::before {
        width: 100%;
    }
    
    .testi_sec {
        padding: 0;
    }
    
    .get_touch_left.wow.fadeInLeft img {}
    
    .get_touch_left.wow.fadeInLeft img {
        display: none;
    }
    
    .get_touch_right form {
        margin-top: 50px;
    }
    
    .sec_head_wrap p {
        line-height: 1.5;
        font-size: 18px;
    }
    .our-value-sec {
        padding: 40px;
    }
    
    li.nav-item {
        width: 100%;
    }
    
    .strt_business_tabs .nav-tabs button {
        width: 100%;
    }
    
    .filling_left.st-vhge h4 {
        margin: 20px 0px;
    }
    
    .banner_text h1 {
        font-size: 41px !important;
        line-height: 1 !important;
    }
     .landi b {
        font-size: 29px;
        line-height: 1.2;
    }
    
    .banner_text h1 span {
        font-size: 40px;
        line-height: 1.2;
    }
    
    .four_steps_sec .col-lg-2 {
        width: 33%;
        margin: 20px 0px;
    }
    
    .carousel-item {
        height: 75vh;
    }
    .llc-country h2 {
        font-size: 38px;
        line-height: 1.2;
    }
    .transfoam-text img {
        top: -27px;
    }
    .confdently-steps .row .col-lg-3:nth-child(3) .confidently-step-bx {
        margin: 0;
    }
    
    .confdently-steps .row .col-lg-3:nth-child(4) .confidently-step-bx {
        margin: 0;
    }
    
    .confdently-steps .row .col-lg-3:nth-child(2) .confidently-step-bx {
        margin: 0;
    }
    
    .confdently-steps .row .col-lg-3:nth-child(1) .confidently-step-bx {
        margin: 0;
    }
    
    .confdently-steps:after {
        display: none;
    }
    
    .confidenlty-hed h4 {
        line-height: 1.2;
    }
    .stud-member h6 {
        line-height: 1;
        font-size: 29px;
    }
    
    .kim-logo img {
        position: static;
        width: 40%;
    }
    
    .form-main form {
        width: 100%;
    }
    
    .banner-btom-sec {
        display: none;
    }
    
    section.our-mission-sec p {
        font-size: 16px !important;
        line-height: 24px !important;
    }
    
    section.after_banner_sec.after_banner_sec1 {
        padding: 0px 0 70px 0;
    }
    
    .banner_text.about-banner h1 {
        font-size: 30px;
    }
    
    .step-land ul {
        margin-bottom: 20px;
    }
    
    .step-land ul .bussin-box::before {
        top: 50%;
        left: 50%;
        height: 110%;
        width: 110%;
        transform: translate(-50%, -50%);
    }
    
    .step-land ul .star-box img {
        height: 40px;
        width: 40px;
        object-fit: contain;
    }
    
    .step-land ul .star-box {
        height: 50px;
        width: 50px;
    }
    
    .your_success_sec.land .strt_business_tabs .nav-tabs button {
        font-size: 20px;
    }
    
    section.main_slider.lc-country-guide:after {
        display: none;
    }
    
    .germany_guide_slider .carousel-item.carousel-item1.active {
        height: 800px;
    }
    
    .owner-box .oner-img img {
        height: 100%;
    }
    
    .banner_text.banner-text-wrap h1 {
        font-size: 45px !important;
        line-height: 50px !important;
    }
    
    

}
@media only screen and (min-width: 520px) and (max-width: 767px){

.new_tble_wrpp>ul {
    flex-direction: column !important;
    gap: 10px !important;
    width: 100% !important;
}

.new_tble_wrpp>.row:after {
    display: none !important;
}

.new_tble_wrpp>.row:before {
    display: none !important;
}

.new_tble_wrpp>.row h6:last-child {
    margin-bottom: 20px !important;
}

.new_tble_wrpp>.row h6 {
    margin-bottom: 20px !important;
}

.new_tble_wrpp>.row .col-md-3:nth-child(2) span:first-child {
    margin-bottom: 20px !important;
}

.new_tble_wrpp>.row .col-md-3:nth-child(3) span:first-child {
    margin-bottom: 20px !important;
}

.new_tble_wrpp>.row .col-md-3:last-child span:nth-child(1) {
    margin-bottom: 20px !important;
}

.new_tble_wrpp>.row .col-md-3:last-child span:nth-child(2) {
    margin-bottom: 20px !important;
}    
    
.side_fixd_br_new_pg.fixd-wrp {
    position: inherit !IMPORTANT;
    width: 100%;
}

.side_fixd_br_new_pg.fixd-wrps {
    position: inherit !important;
}

.side_fixd_br_new_pg>.side_box_fixed_one._two>.new_btn {
    font-size: 16px;
}

.side_fixd_br_new_pg>.side_box_fixed_one>h4 {
    font-size: 20px;
    line-height: 25px !important;
}

.side_fixd_br_new_pg>.side_box_fixed_one>p {
    width: 100% !important;
}
    
    
    	/*new page quick answer*/

.business_banner_sec_new.quick_anss .busines_banner_textt>.new_page_vec1 {
    display: none;
}

.business_banner_sec_new.quick_anss .busines_banner_textt>.new_page_vec2 {
    display: none;
}

.business_banner_sec_new.quick_anss .busines_banner_textt>span {
    font-size: 30px;
    margin: 0;
}

.quick_answer_sec_neww .quick_ans_main_boxx>span>img {
    height: 170px;
}

.quick_answer_sec_neww .quick_ans_main_boxx>.quick_ans_main_boxx_body {
    padding: 17px;
}

.quick_answer_sec_neww .quick_ans_main_boxx>.quick_ans_main_boxx_body>h3 {
    font-size: 18px;
    margin: 13px 0px;
}

.quick_answer_sec_neww .quick_ans_main_boxx>.quick_ans_main_boxx_body>span {
    margin-bottom: 8px;
}

.quick_answer_sec_neww .quick_ans_main_boxx>.quick_ans_main_boxx_body>p {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 10px;
}

.quick_answer_sec_neww .quick_ans_main_boxx>.quick_ans_main_boxx_body>.theme-btn {
    margin-bottom: 0;
    font-size: 16px;
    padding: 6px 30px;
}

/*new page quick answer*/
    
    	/* short-content-page */

	.best_states_to_form_new_sec {
		padding-left: 0;
		padding-right: 0;
	}

	.publish_datee>ul.d-flex.align-items-center.justify-content-between {
		flex-direction: column;
		gap: 10px;
	}

	.best_states_to_form_new_sec .best_states_textt_wrpp>h1 {
		font-size: 30px;
		line-height: 34px;
	}

	.best_states_to_form_new_sec .best_states_textt_wrpp>p {
		font-size: 16px;
		line-height: 23px;
	}

	.best_states_to_form_new_sec .best_states_textt_wrpp>.girl-img1-new-page {
		height: auto;
		border-radius: 10px;
	}

	.best_states_to_form_new_sec .quick_answer_div>img.vec-img1 {
		display: none;
	}

	.best_states_to_form_new_sec .quick_answer_div {
		padding: 20px;
	}

	.best_states_to_form_new_sec .quick_answer_div>h3 {
		font-size: 20px;
	}

	.best_states_to_form_new_sec .quick_answer_div>p {
		width: 100%;
		font-size: 18px;
		line-height: 25px;
	}

	.best_states_to_form_new_sec .quick_answer_div>.theme-btn {
		font-size: 15px;
		padding: 16px 30px;
		width: 100%;
	}

	.business_on_amazon {
		margin-top: 50px;
	}

	.business_on_amazon>h3 {
		font-size: 30px;
	}

	.business_on_amazon .accordion-item {
		width: 100%;
	}

	.business_on_amazon .accordion-item .accordion-button {
		font-size: 15px;
		gap: 10px;
	}

	.final_thoughts_div>.papr-vec-img {
		display: none;
	}

	.final_thoughts_div {
		padding: 25px;
	}

	.final_thoughts_div .theme-btn {
		font-size: 15px;
		margin-bottom: 0px;
	}


	/* short-content-page */
    
    	/* business tool page */

	.business_banner_sec_new:before {
		display: none;
	}

	.business_banner_sec_new:after {
		display: none;
	}

	.business_banner_sec_new .busines_banner_textt>h1 {
		font-size: 30px;
		line-height: 30px;
	}

	.business_banner_sec_new .busines_banner_textt p {
		width: 100%;
		font-size: 16px;
		line-height: 20px;
	}

	.business_banner_sec_new .busines_banner_textt>form>.busin_vec {
		display: none;
	}

	.business_banner_sec_new .busines_banner_textt>form {
		width: 100%;
		padding: 20px;
	}

	.business_banner_sec_new .busines_banner_textt>form>div>button {
		position: inherit;
		width: 100%;
		border-radius: 10px;
		height: 40px;
	}

	.business_banner_sec_new .busines_banner_textt>form>div>input {
		width: 100%;
		border-radius: 10px;
		height: 40px;
	}

	.business_banner_sec_new .busines_banner_textt>form>div {
		width: 100%;
	}

	.what_happens_busi_sec_new .theme-btn {
		font-size: 16px;
	}

	.business_name_sec_new {
		padding: 40px 0px;
	}

	.business_name_sec_new .busi_name_div>ul>li {
		font-size: 16px;
	}

	.business_name_sec_new .busi_name_div>p {
		width: 100%;
	}

	.audience_forget_sec_new .audience_forget_div .textt_forget_div {
		margin-top: 0;
		margin-bottom: 10px;
	}

	.audience_forget_sec_new .audience_forget_div {
		padding: 30px 0px;
	}

	.audience_forget_sec_new .audience_forget_div .textt_forget_div>ul>li {
		gap: 10px;
		font-size: 16px;
	}

	.audience_forget_sec_new .audience_forget_div .textt_forget_div>ul>li>img {
		width: 17px;
	}

	/* business tool page */
    
    .btm-left-pcc.d-flex {
    flex-wrap: wrap;
    justify-content: center;
}
      .popup-side-img img.lazy {
    max-width: 100%;
    transform: none;
    display: none;
}
.slicknav_menu {
    margin-top: -20px;
    padding: 5px 5px 0px;
}

.getstart-mdl .modal-dialog {
    max-width: 95%;
    width: 95%;
}
.main_logo {
    z-index: 999999;
    position: relative;
}
    header {
        padding: 10px 0;
        position: absolute;
        width: 100%;
        top: 0;
        transition: 0.3s all;
        z-index: 99;
    }
    
    .header_call {
        color: #000;
        font-size: 15px;
    }
    
    .header_contact li {
        margin-right: 20px !important;
    }
    
    .header_cta.theme-btn {
        padding: 12px 20px;
        font-size: 16px;
    }
    
    .side_bar_fixed_Chat {
        right: -90px;
        top: 70%;
        transform: translateY(-50%) rotate(-90deg);
    }
    
    .carousel-item {
        height: 950px;
    }
    
    .slicknav_nav {
        font-size: 13px;
        line-height: 20px;
        top: 20px;
        position: relative;
    }

}
@media only screen and (min-width: 300px) and (max-width: 519px){
   
.onlymob{
    display:block !important;
}   
.onlymob img {
    width: 68%;
    margin: 0 auto !important;
    display: block;
}
.desktopvw{
    display:none;
}

section.cstzx {}

section.cstzx .banner_text {
    text-align: center;
}

section.cstzx .step-land ul {
    justify-content: center;
}

section.cstzx ul.setmobpd {
    padding: 0 50px 10px !important;
}
section.cstzx ul.newstmob{
    padding: 0 50px 10px !important;
}   
.new_tble_wrpp>ul {
    flex-direction: column !important;
    gap: 10px !important;
    width: 100% !important;
}
section.cntrmob{
    text-align:center;
}
section.nopsc .carousel-caption {
        top: 0;
    }

.new_tble_wrpp>.row:after {
    display: none !important;
}

.new_tble_wrpp>.row:before {
    display: none !important;
}

.new_tble_wrpp>.row h6:last-child {
    margin-bottom: 20px !important;
}

.new_tble_wrpp>.row h6 {
    margin-bottom: 20px !important;
}

.new_tble_wrpp>.row .col-md-3:nth-child(2) span:first-child {
    margin-bottom: 20px !important;
}

.new_tble_wrpp>.row .col-md-3:nth-child(3) span:first-child {
    margin-bottom: 20px !important;
}

.new_tble_wrpp>.row .col-md-3:last-child span:nth-child(1) {
    margin-bottom: 20px !important;
}

.new_tble_wrpp>.row .col-md-3:last-child span:nth-child(2) {
    margin-bottom: 20px !important;
}
    
    .side_fixd_br_new_pg.fixd-wrp {
    position: inherit !IMPORTANT;
    width: 100%;
}

.side_fixd_br_new_pg.fixd-wrps {
    position: inherit !important;
}

.side_fixd_br_new_pg>.side_box_fixed_one._two>.new_btn {
    font-size: 16px;
}

.side_fixd_br_new_pg>.side_box_fixed_one>h4 {
    font-size: 20px;
    line-height: 25px !important;
}

.side_fixd_br_new_pg>.side_box_fixed_one>p {
    width: 100% !important;
}
    
    /*new page quick answer*/

.business_banner_sec_new.quick_anss .busines_banner_textt>.new_page_vec1 {
    display: none;
}

.business_banner_sec_new.quick_anss .busines_banner_textt>.new_page_vec2 {
    display: none;
}

.business_banner_sec_new.quick_anss .busines_banner_textt>span {
    font-size: 30px;
    margin: 0;
}

.quick_answer_sec_neww .quick_ans_main_boxx>span>img {
    height: 170px;
}

.quick_answer_sec_neww .quick_ans_main_boxx>.quick_ans_main_boxx_body {
    padding: 17px;
}

.quick_answer_sec_neww .quick_ans_main_boxx>.quick_ans_main_boxx_body>h3 {
    font-size: 18px;
    margin: 13px 0px;
}

.quick_answer_sec_neww .quick_ans_main_boxx>.quick_ans_main_boxx_body>h4 {
    font-size: 18px;
    margin: 13px 0px;
}

.quick_answer_sec_neww .quick_ans_main_boxx>.quick_ans_main_boxx_body>span {
    margin-bottom: 8px;
}

.quick_answer_sec_neww .quick_ans_main_boxx>.quick_ans_main_boxx_body>p {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 10px;
}

.quick_answer_sec_neww .quick_ans_main_boxx>.quick_ans_main_boxx_body>.theme-btn {
    margin-bottom: 0;
    font-size: 16px;
    padding: 6px 30px;
}

/*new page quick answer*/
    
    
    	/* short-content-page */

	.best_states_to_form_new_sec {
		padding-left: 0;
		padding-right: 0;
	}

	.publish_datee>ul.d-flex.align-items-center.justify-content-between {
		flex-direction: column;
		gap: 10px;
	}

	.best_states_to_form_new_sec .best_states_textt_wrpp>h1 {
		font-size: 30px;
		line-height: 34px;
	}

	.best_states_to_form_new_sec .best_states_textt_wrpp>p {
		font-size: 16px;
		line-height: 23px;
	}

	.best_states_to_form_new_sec .best_states_textt_wrpp>.girl-img1-new-page {
		height: auto;
		border-radius: 10px;
	}

	.best_states_to_form_new_sec .quick_answer_div>img.vec-img1 {
		display: none;
	}

	.best_states_to_form_new_sec .quick_answer_div {
		padding: 20px;
	}

	.best_states_to_form_new_sec .quick_answer_div>h3 {
		font-size: 20px;
	}

	.best_states_to_form_new_sec .quick_answer_div>p {
		width: 100%;
		font-size: 18px;
		line-height: 25px;
	}

	.best_states_to_form_new_sec .quick_answer_div>.theme-btn {
		font-size: 15px;
		padding: 16px 30px;
		width: 100%;
	}

	.business_on_amazon {
		margin-top: 50px;
	}

	.business_on_amazon>h3 {
		font-size: 30px;
	}

	.business_on_amazon .accordion-item {
		width: 100%;
	}

	.business_on_amazon .accordion-item .accordion-button {
		font-size: 15px;
		gap: 10px;
	}

	.final_thoughts_div>.papr-vec-img {
		display: none;
	}

	.final_thoughts_div {
		padding: 25px;
	}

	.final_thoughts_div .theme-btn {
		font-size: 15px;
		margin-bottom: 0px;
	}


	/* short-content-page */
	
    
    	/* business tool page */

	.business_banner_sec_new:before {
		display: none;
	}
	
	.audience_forget_sec_new .audience_forget_div>h2 {
        line-height: 35px;
        font-size: 25px;
        padding-top: 20px;
    }
    
    .what_happens_busi_sec_new .col-md-12>h2 {
        line-height: 40px;
    }

	.business_banner_sec_new:after {
		display: none;
	}

	.business_banner_sec_new .busines_banner_textt>h1 {
		font-size: 30px;
		line-height: 30px;
	}

	.business_banner_sec_new .busines_banner_textt p {
		width: 100%;
		font-size: 16px;
		line-height: 20px;
	}

	.business_banner_sec_new .busines_banner_textt>form>.busin_vec {
		display: none;
	}

	.business_banner_sec_new .busines_banner_textt>form {
		width: 100%;
		padding: 20px;
	}

	.business_banner_sec_new .busines_banner_textt>form>div>button {
		position: inherit;
		width: 100%;
		border-radius: 10px;
		height: 40px;
	}

	.business_banner_sec_new .busines_banner_textt>form>div>input {
		width: 100%;
		border-radius: 10px;
		height: 40px;
	}

	.business_banner_sec_new .busines_banner_textt>form>div {
		width: 100%;
	}

	.what_happens_busi_sec_new .theme-btn {
		font-size: 16px;
	}

	.business_name_sec_new {
		padding: 40px 0px;
	}

	.business_name_sec_new .busi_name_div>ul>li {
		font-size: 16px;
	}

	.business_name_sec_new .busi_name_div>p {
		width: 100%;
	}

	.audience_forget_sec_new .audience_forget_div .textt_forget_div {
		margin-top: 0;
		margin-bottom: 10px;
	}

	.audience_forget_sec_new .audience_forget_div {
		padding: 0;
	}

	.audience_forget_sec_new .audience_forget_div .textt_forget_div>ul>li {
		gap: 10px;
		font-size: 16px;
	}

	.audience_forget_sec_new .audience_forget_div .textt_forget_div>ul>li>img {
		width: 17px;
	}

	/* business tool page */
    
      .tl-tip span {
    width: 80px;
    left: -26px;
    top: -40px;
}
    
    .abtp_banner .carousel-item {
        height: 500px;
    }
    
    .abtp_banner .carousel-item .carousel-caption {
        top: 0;
    }
    
    .banner-form-wrapper .form-get-quote {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-direction: column;
        gap: 10px;
    }
    
    .banner-form-wrapper form input, .banner-form-wrapper form button {
        width: calc(100% - 16px);
    }
    
    .banner-form-wrapper {
        padding: 15px 5px;
    }
    
    
    .main_logo a {
        display: block;
    }
    
    header .col-lg-4.col-md-4.col-sm-8.col-12.text-right { 
        background: linear-gradient(0deg, #45b1f2, #318aed);
    }

    
    .packg-box h5 {
        width: 80%;
    }
    
    .packg-box {
        margin-bottom: 20px;
    }
    
    
    .germany_guide_slider .carousel-item.carousel-item1.active {
        height: 720px !important;
    }
    
    .summarydetailstyle h5 {
        font-size: 14px !important;
    }
         
    .steep-4 .pack-box-inner {
        margin-top: 0;
        transform: none;
        margin-bottom: 21px;
    }
    
    .steep-4 .pack-box-inner .container {
        padding: 0;
    }
    
    .steep-4 .pack-box-inner .container .packg-box {
        padding: 20px 10px;
    }
    
    .steep-4 .pack-box-inner .container .row {
        gap: 70px;
        justify-content: center;
    }
    
    .steep-4 .pack-box-inner .container .offset-md-3.mt-95 {
        margin-top: 0 !important;
    }
    
    .steep-4 .pack-box-inner .container  a.more_info {
        top: 0;
    }
    
    .packg-box ul {
        padding: 20px
    10px;
    }
    
    .step-content h2 br {
        display: none;
    }
    
    .standing-bx h3 {
        font-size: 26px;
        margin-bottom: 10px;
    }
    
    .standing-bx {
        padding: 10px 10px !important;
        margin-bottom: 0 !important;
    }
    
    .complain-bx {
        margin: 10px 0px 20px !important;
    }
    
    .step-content p {
        font-size: 16px;
    }
    
    
    
    
    .btm-left-pcc.d-flex {
        flex-wrap: wrap;
        justify-content: center;
    }
        .popup-side-img img.lazy {
        max-width: 100%;
        transform: none;
        display: none;
    }
    .slicknav_menu {
        margin-top: -20px;
        padding: 5px 5px 0px;
    }
    
    .getstart-mdl .modal-dialog {
        max-width: 95%;
        width: 95%;
    }
    .main_logo {
        z-index: 999999;
        position: relative;
    }
   
    .confdently_box:nth-child(even) .confidently-step-bx {
        margin-top: 20%;
        display: flex;
        flex-direction: column-reverse;
    }
    
    .step-land ul {
        display: flex;
        margin-bottom: 30px;
        align-items: center;
    }
     .slick-current .testi_box {
        padding: 20px 10px;
    }

    section.need-help-sec p {
        font-size: 16px;
    }
    
    section.our-mission-sec p {
        font-size: 16px;
    }
    
    .step-land ul .bussin-box::before {
        height: 70px;
        width: 70px;
        left: -9px;
        right: -1px;
        margin: auto;
        top: -10px;
    }
    
    .step-land ul .bussin-box {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 0;
        margin: auto !important;
    }
    
    .step-land ul h5 {
        margin-left: 30px;
    }
    
    .step-land ul li {
    }
    
    .step-land .row .col-md-12.col-lg-6:last-child ul {
        padding: 0 10px 10px;
    }

    .banner_text h1{
        color: #000 !important;
        background-image: none;
        -webkit-text-fill-color: inherit !important;
        font-size:32px !important;
    }

    .setmobpd{
        padding-left: 13px;
    }
    
    .confdently_box {
        flex: unset;
        padding: 0 10px;
    }
    
    .ban-abs {
        display: none;
    }
    
    .germany_guide_slider .carousel-caption {
        top: 30px;
    }
    
    .expration-img .mission_box_wrap {
        width: 50%;
        position: absolute;
        left: 0px;
        right: 0;
        bottom: 0px;
        margin: 0;
        padding: 20px 10px;
    }
    
    .kim-logo img {
        position: static;
        width: 52%;
    }
    .step_tag {
        right: 42px;
        bottom: -30px;
    }
    .step_box:after {
        right: 65px;
        bottom: -40px;
    }
    .stud-member h6 {
        line-height: 1;
        font-size: 25px;
    }
    .watch_left img {
        width: 100%;
        height: 100%;
    }
    .stud-member p {
        font-size: 14px;
    }
        .stud-member p {
        padding: 0;
    }
    
    .form-main form {
        border-radius: 10px;
        padding: 10px;
        width: 100%;
    }
    .request-loader::before {
        left: -10px;
    }
    .request-loader::after {
        left: -10px;
    }
    .request-loader span {
        left: 0;
    }
    .cpac-form h4 {
        font-size: 23px;
        line-height: 1.2;
    }
    
    .stud-member {
        margin-bottom: 12px;
    }
    
    .kimberlay-forms video#myVideo {
        display: none;
    }
    
    .kimberlay-forms {
        padding: 40px 0px !important;
    }
        
        .our-value-sec {
        padding: 40px 0px;
    }
    .header_call i {
        color: #fff;
        font-size: 15px;
        margin: 0 10px 0 0px;
    }
    section.main_slider {
        padding-bottom: 0px;
        padding-top: 0;
    }
  .strt_business_tabs .nav-tabs {justify-content: space-between;border: 0;background: linear-gradient(90deg, #43b9f2, #3089ed);border-radius: 40px;display: block;}
  .strt_business_tabs .nav-tabs li {width: 100%;display: block;}
  .featured_quality_sec {padding: 80px 0 0px 0;}
  .featured_box h3 {font-size: 18px;line-height: 30px;}
  .featured_box p {font-size: 16px;line-height: 25px;}
  .main_logo {text-align: center;margin: 0 0 20px 0;top:6px !important;}
  section.featured_quality_sec.no-pad-b {
    padding-top: 0;
    }
    
    .featured_box h3 br {
        display: none;
    }

    .header_cta.theme-btn {
        color: #000;
        background: #fff !important;
        font-size: 14px !important;
        padding: 7px 20px !important;
    }
    .header_cta.theme-btn:before {
        background: #fff !important;
    }
    
  .banner_form_wrap input {height: 50px;font-size: 16px;}
  header {padding: 20px 0;}
  .header_contact ul {justify-content: space-between !important;margin: 13px 0;display: flex;}
  .header_contact .me-5 {margin: 0 !important;}
  .header_call {font-size: 14px; color: #fff;}
  .carousel-item {height: 850px;}
  .sec_heading1 {font-size: 20px;line-height: 26px;margin: 0 0 10px 0;}
  .sec_head_wrap p {font-size: 15px;line-height: 24px;}
  .featured_box figure {left: -10px;height: 50px;width: 50px;}
  .featured_box figure img {width: 20px;height: 20px;object-fit: contain;}
  section.featured_quality_sec .col-lg-3 {margin-bottom: 20%;}
  .register_company_sec {padding: 0;}
  .position-relative {margin: 35px 0;}
  .strt_business_tabs .nav-tabs button {padding: 10px 60px;font-size: 17px;margin: 0 !important; width: 100%;}
  .filling_left h4 {font-size: 22px;line-height: 1.2;}
  .filling_right.text-end {margin-top: 35px;text-align: center !important;}
  .four_steps_sec .col-lg-2 {width: 100%;}
  .step_content {margin-bottom: 10%;}
  .theme-btn {font-size: 16px !important;padding: 10px 20px !important;}
  .watch_left {position: inherit;}
  .watch_journey_sec {margin: 0 0 0 0;}
  .slick-current .testi_box:after {transform: rotate(-100deg);left: inherit;right: -30%;height: 127%;top: 2%;}
  section.faq_sec.position-relative {position: inherit !important;}
  .faq_wrap {padding: 50px 8px 50px 12px;}
  .get_touch_right form {padding: 25px;}
  .footer-sec .row {align-items: initial; }
  .ftr-projects h2 {font-size: 23px;}
  .ftr-contact ul li a {font-size: 10px;}
  .ftr-contact ul li {gap: 8px;}
  .ftr-contact {margin-left: 0%;}
  .copy-right p {font-size: 13px;}
  .faq_sec>img {display: none;}
  .banner_text {
    padding-top: 0px;
}
  /*.banner_text h1 {font-size: 32px !important;line-height: 40px !important;margin: 70px 0 20px 0;}*/
    .banner_text h1, .banner_text h1 span{
        font-size: 22px !important;
        line-height: 1.4 !important;
        margin: 0 0 10px;
        white-space: normal;
        display: inline-block;
    }
    .banner_text h1 span{
        font-size: 22px !important;
        line-height: 1.4 !important;
        margin: 0 0 0px;
        white-space: normal;
        display: inline-block;
    }
  .banner_text h1 span {font-size: 40px;line-height: 65px;}
  .banner_text.banner-text-wrap h1 {
        font-size: 22px !important;
        line-height: 1.4 !important;
        margin: 0;
    }
  .carousel-item.carousel-item1.active {height: 925px;}
  .banner-get {z-index: 1;}
  .banner-get a {font-size: 13px;}
  .banner-img-M1 { bottom: 88px;padding: 0px 2px;width: 45%;}
  .banner-img-M1 h6 {font-size: 10px;margin-bottom: 10px;}
  .banner-img-M1 button { padding: 12px 12px;font-size: 13px; top: 0px;}
  .banner_img.inr.cont {margin-right: 0 !important;}
  .transfoam-text img {position: inherit !important;}
  .confdently-steps:after {display: none;}
  .banner_text.inr h1 {font-size: 40px;line-height: 50px;}
  /*.banner_text.inr h1 span {font-size: 35px;line-height: 44px;}*/
  .banner_text.inr h1 {
        font-size: 26px !important;
        line-height: 1.4 !important;
        margin: 0;
    }   
  .banner_text p {font-size: 14px;line-height: 22px;}
  .banner_img.inr {margin-right: 0;margin-top: 10%;}
  .satis-btn {display: flex;align-items: baseline;margin-bottom: 20px;}
 .satis-btn2 .theme-btn {
    padding: 11px 45px !important;
}
  .satis-btn2 {margin-top: 11%;margin-bottom: 5%;}
  .play-btn {top: 10%;}
  .banner-nether h1 span {font-size: 26px;line-height: 30px;}
  .banner-nether p {font-size: 14px;line-height: 20px;}
  .banner-nether {margin-bottom: 27px; padding-top: 59px;}
  .neth-img img {margin-left: 0;}
  .Venture-top h2 {font-size: 25px;line-height: 31px;}
  .Venture-top p {width: 100%;}
  .ven-box {margin-bottom: 20px;}
  .ven-box h3 {font-size: 22px;}
  .row.pb-n {margin-bottom: 0;}
  section.nether-t .transfoam-text h2 {font-size: 26px;line-height: 30px;}
  .satisfied-content p {width: 100%;}
  section.bussiness-Venture {margin-bottom: 0;}
  .ban-abs {position: static;height: 176px;}
  .ban-abs a {padding: 20px 7px; padding-left: 13px;}
  .confidenlty-hed h4 {font-size: 20px; line-height: 25px; margin-bottom: 20px;}
  .confidenlty-hed p { width: 100%; font-size: 12px;line-height: 20px;}
  .confdently-steps .row .col-lg-3:nth-child(1) .confidently-step-bx {margin: 0; margin-bottom: 20px;}
  .confdently-steps .row .col-lg-3:nth-child(3) .confidently-step-bx {margin: 0;margin-bottom: 20px;}
  .confdently-steps .row .col-lg-3:nth-child(4) .confidently-step-bx {margin: 0;margin-bottom: 20px;}
  .confdently-steps .row .col-lg-3:nth-child(2) .confidently-step-bx {margin: 0;margin-bottom: 20px;}
  .filling_right h2 {font-size: 60px;line-height: 65px;}
  .filling_left a {font-size: 20px;margin: 0 0 0px 20px;}
  .your_success_sec {padding: 0 0 20px 0;}
  .step_box {margin-bottom: 70px;}
  .step_content h2 {font-size: 30px;line-height: 50px;color: #000000;margin-bottom: 0;}
  .watch_journey_sec {padding: 50px 0 40px 0;}
  .testi_sec {padding: 40px 0 !important;}
  .testi_slider .slick-track {margin: 0px 0 120px 0;}
  .get_touch_right form textarea {height: 150px;}
  .get_touch_right form h5 {font-size: 30px;line-height: 35px;text-align: center;}
  .steel-buildings p {font-size: 13px;line-height: 21px;width: 100%;}
  .footer-logo a img {width: 60%; margin-bottom: 30px; margin-top: 6px;}
  .ftr-projects ul li a {font-size: 15px;}
  .footer-sec {padding: 20px 0;}
  .testi_box:after {position: inherit;}
    .testi_sec p.mb-5.wow.fadeInUp {
    margin-bottom: 0 !important;
}


  .inner_banner_heading h2 {font-size: 40px;}
  section.inner_banner_two {height: 300px;}


  .banner_img.banner_img-m {margin-top: 20px;}
  .best-expration-btn :nth-child(3) {margin-left: 0px;}
  section.best-expration-wrap {padding: 50px 0;}
  .expration-img {margin-top: 30px;}
  .transfoam-text h2 {font-size: 26px;line-height: 35px;}
  .transfoam-text p {font-size: 16px;line-height: 28px;}
  section.transfoam-business { padding: 60px 0;padding-top: 5%;}

  .country-spcf-hed h3 {font-size: 26px;margin-bottom: 60px;}
  .country-spcf-hed h6 {font-size: 18px;}
  .llc-contry .featured_box p {font-size: 15px;}
  .llc-contry .featured_box h3 {font-size: 25px;}
  .llc-country h2 {font-size: 30px !important;width: 100%;line-height: 40px;}
  
  /*about*/
  .about-img img {
    display: none;
    }
    
    .about-best-img {
        display: none;
    }
    
    .banner_text.about-banner h1 {
        font-size: 20px !important;
    }
    
    .banner_text.about-banner h1 span {
        font-size: 28px;
        line-height: 1.2;
    }
    
    .sec_heading1 {
    }
    
    .our-mission-sec .missio-img img {
        bottom: -404px;
    }
    
    .our-mission-sec .missio-img {
        height: auto;
        margin-top: 60px;
        margin-bottom: 30px;
    }
    
    .our-mission-sec .star-box img {
        left: 0;
        bottom: 0;
        top: 50px;
    }
    
    .our-mission-sec .vission-img img {
        right: 0;
        margin-top: -100px;
    }
    
    .our-mission-sec .vission-img {
        height: auto;
    }
    
    .our-mission-sec .star-box {
        height: 200px;
    }
    
    .our-mission-sec .text-right {
        text-align: center;
    }
    
    .need-help-sec img {
        display: none;
    }
    
    .need-help-sec {
        margin: 0;
        padding: 40px 10px;
    }
    
    .our-value-sec .value-img img {
        object-fit: contain;
        height: auto;
        position: static;
    }
    
    .our-value-sec .value-img {
        height: auto;
    }
     
.businesowners-sec::before {
    display: none;
}

.one-price-box {
    padding-right: 10px;
}
    .faq-style .faq_wrap {
        padding: 20px 10px;
    }
    
    .faq-style .faq_wrap::before {
        opacity: 1;
    }
    
    .faq-style .faq_wrap h6 {
        font-size: 29px;
    }
    
    .need-help-sec h2 {
        font-size: 26px;
        line-height: 1.2;
    }
     .about_p .carousel-item {
        height: 600px;
    }
    
    .about_p h2.sec_heading1 {
        font-size: 20px !important;
        line-height: 1.2;
    }
      .sec_heading1 {
        font-size: 25px !important;
        line-height: 1.2 !important;
    }
    
    .filling_left.st-vhge h4 {
        font-size: 16px;
        margin: 20px 0px;
    }
    
    section.faq_sec.position-relative {
        background: #000;
    }
    
    .faq-style::before {
        width: 100%;
    }
    
    .get_touch_left.wow.fadeInLeft img {
        display: none;
    }
    
    .faq-style .faq_wrap .accordion-button {
        line-height: 1.2;
        margin: 20px -1px;
        font-size: 17px;
        padding:10px 0;
    }
    .faq_wrap .accordion-button:after{
        padding:15px;
    }
    .featured_box{
        height:auto;
        margin-bottom: 50px;
        width:100%;
    }
    .our-mission-sec{
        padding-top:0
    }
    .our-value-sec .text-right {
        text-align: left;
    }
    .about_p .featured_quality_sec {
        padding-top: 30px;
    }
    .get_touch_right form input {
        margin: 0 0 10px;
    }
    .banner_img.wow.bounceIn {
        margin-top: 40px;
    }
    .wall-sec-sli .slick-slide {
        margin: 30px 0px;
        opacity: 1;
    }
    .menu_sec_2 .new-man .dropdown-menu{
        position:unset !important;
        width:100%;
        max-width:100%;
    }
    .menuSec{
        display:none;
    }
    
    
    .btm-left-pcc {
        position: unset;
        text-align: center;
        width: 100%;
    }
    
    .btm-left-pcc>img {
        height: 50px;
        object-position: center;
    }
    
    .filling_left button {
        font-size: 18px;
        line-height: 25px;
        padding: 10px 30px;
        margin-left: 0;
        margin-top: 10px;
    }

}


.slicknav_menu .new-man .dropdown-menu {
    position: unset !important;
    width: 100% !important;
    max-width: 100% !important;
    top: auto !important;
    left: auto !important;
    background: transparent;
    border: none;
}
.slicknav_menu .new-man .dropdown-menu li {
    margin: 0;
}
.slicknav_menu .new-man .dropdown-menu a {
    padding: 4px 15px;
    margin: 0 45px 0 0px;
    text-transform: capitalize;
    font-size: 14px;
}
.menu_sec_2{
    display:none;
}

.satis-btn a {
    display: block;
}

/*mobile media query*/
@media only screen and (max-width: 650px) {
    
.slicknav_menu {
    /*background: #2b84e2;*/
    padding: 25px;
    position: absolute !important;
    right: 20px !important;
    top: 23px !important;
    width: 100% !important;
    left: 0 !important;
}
.slicknav_nav a:hover {
    background: #000 !important;
    color: #fff;
}
.slicknav_btn{
  background-color: #000;
}
.slicknav_menu .slicknav_icon-bar {
    background-color: #2b84e2;
}
.main_logo {
        /*position: absolute;*/
        top: 12px;
        left: 0;
        width: 45%;
}
.slicknav_nav{
  font-size: 16px;
    line-height: 30px;
    position: absolute;
    top: 53px;
    width: 100%;
    z-index: 999;
    left: 0;
    background: #2b84e2;
    padding: 15px 0;
    border-top: 2px solid #000;
    box-shadow: 0 10px 10px 0 #00000022;
}
.slicknav_nav a:hover{
  background: #000000;
}
header {
    padding: 0px 0 0px 0;
    box-shadow: 0 10px 10px 0 #00000022;
    margin-bottom: 20px;
    position: relative;
    
}
header .row{
  align-content: center;
}
/*.banner_text h1 span{*/
/*  line-height: 35px !important;*/
/*  font-size: 20px !important;*/
/*}*/
.header_contact ul {
    margin: 0;
    align-items: center;
}
.header_cta.theme-btn {
    padding: 10px 50px;
    display: block;
}
section.featured_quality_sec .col-lg-3 {
    margin-bottom: 10%;
}
.step_content{
  margin: 0% auto;
}
.four_steps_sec {
    padding: 20px 0 0 0;
}
.sec_heading1 {
    font-size: 35px;
    line-height: 40px;
    margin: 0;
}
.watch_journey_sec {
    padding: 20px 0;
}
.watch_left img {
    margin: 0% auto;
    display: block;
}
.vdo-btn{
  width: 100%;
}
.testi_slider .slick-track {
    margin: 0px 0 0 0;
}
.faq_wrap{
  height: 100% !important;
  padding: 30px 10px;
}
.faq_wrap h6{
  margin: 0;
}
.testi_sec {
    padding: 0;
}
.testi_sec p{
  margin: 0;
  padding: 0;
}
section.after_banner_sec.after_banner_sec1 {
    padding: 30px 0;
}
ul.slick-dots{
  text-align: center;
}
.banner-nether{
      padding-top: 90px;
}
.ban-abs {
    position: static;
    height: 260px;
}
.malaysia-styl {
    padding-top: 10px !important;
}
.step-content h2{
  font-size: 30px;
  line-height: 35px;
}
.step-head {
    height: 100%;
    margin-bottom: 10px;
}
.themes-padd {
    padding: 20px 0;
    margin-top: 40px;
}
.step-head .col-lg-3 {
    margin: 10px 0;
}
.step-content{
      padding: 20px 0;
}
.step-content .d-flex p {
    font-size: 14px;
    line-height: 25px;
    margin-bottom: 10px;
    margin-left: 10px;
}
section.faq_sec.position-relative {
    position: relative !important;
}

}
.transfoam-business .transfoam-text h2{
    
}
/*mobile media query*/

/*Header Drop Down */

ul.inner_list.new_css_wrp>li>a {
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s ease-in-out;
}

ul.inner_list.new_css_wrp>li>a>i {
    color: #3853a4;
    transition: 0.3s ease-in-out;
}

ul.inner_list.new_css_wrp>li>a:hover {
    color: #4ab5e7 !important;
    transition: 0.3s cubic-bezier(0.4, 0, 1, 1);
    gap: 14px;
}

ul.inner_list.new_css_wrp>li>a:hover i {
    color: #4ab5e7 !important;
}


 .tab-cnt{
    display:none;
}
.menu-sd-cont {
    width: 75%;
    padding: 15px;
    margin-right: 0;
    height: 100%;
    margin-top: 0;
}
.menu-sd-cont img {
    display: block;
    width: 100%;
    margin-bottom: 10px;
    height: 350px;
    object-fit: cover;
    object-position: left;
    margin-top: 20px;
}
.tab-cnt h3 {
    font-size: 28px;
    margin: 10px 0;
    line-height: 1;
}
    /*.new-man .dropdown-menu li:first-child {*/
    /*    display: none;*/
    /*}*/
.tab-cnt p {
    font-size: 14px;
}
.new-man .dropdown-menu li {
    margin: 10px 0;
    width: 100%;
}
.new-man .dropdown-menu{
    right: auto;
    top: unset !important;
    border: 1px solid #ddd;
    padding: 0;
    max-width: 600px !important;
    width: 600px !important;
    left: -480px !important;
    display: none;
}
.navbr  .dropdown-littlebig{
     min-width: 1000px;
}
 .inner_list {
    width: 30%;
    text-align: left !important;
    position: unset !important;
    /*border-right: 1px solid #ddd;*/
    padding: 0px 0px 20px !important;
    padding-top: 20px !important;
}
.new-man:hover .dropdown-littlebig {
    display: flex;
}
/*Header Drop Down */


.tab-cnt.active{
    display:block;
}

section.after_banner_sec {
    padding-bottom: 80px;
}

.cpac-form h4 {
    color: #1e367f;
}
label.lab_heading {font-size: 17px;color: #000;font-family: 'avenir-black';}
.form-main form .theme-btn {
    margin: auto;
    display: block;
    margin-top: 25px;
}
.custom_check{
    position:
    relative;
}
.cpac-form [type="radio"]:checked,
.cpac-form [type="radio"]:not(:checked) {
    position: absolute;
    left: -9px;
    top: 7px;
    z-index: 1;
    opacity: 0;
}
.cpac-form [type="radio"]:checked + label,
.cpac-form [type="radio"]:not(:checked) + label
{
    position: relative;
    padding-left: 28px;
    cursor: pointer;
    line-height: 20px;
    display: inline-block;
    color: #666;
}
.cpac-form [type="radio"]:checked + label:before,
.cpac-form [type="radio"]:not(:checked) + label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 18px;
    height: 18px;
    border: 1px solid #ddd;
    border-radius: 100%;
    background: #fff;
}
[type="radio"]:checked + label:after,
[type="radio"]:not(:checked) + label:after {
    content: '';
    width: 12px;
    height: 12px;
    background: #3853a4;
    position: absolute;
    top: 3px;
    left: 3px;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
.cpac-form [type="radio"]:not(:checked) + label:after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}
.cpac-form [type="radio"]:checked + label:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}

.kimberlay-forms video#myVideo {
    display: none;
}

.stud-member p {
    font-size: 21px;
    font-family: 'avenir-roman';
    color: #000;
}












.side_bar_fixed_Chat {
    display: inline-flex;
    position: fixed;
    right: -167px;
    top: 41%;
    transform: translateY(-50%) rotate(-90deg);
    z-index:999999;
}
.callnow_fixed_main{
    position:relative;
}
.menuSec li ul li a {
    padding: 0 30px;
}
.callnow_fixed_main a {
    padding: 12px 20px 12px 60px;
    background: #015bfa;
    color: #fff;
    text-transform: uppercase;
    font-size: 20px;
    font-weight: 700;
    font-family: 'avenir-black', Sans-Serif;
    border-top-left-radius: 7px;
    border-top-right-radius: 7px;
     position: relative; 
    display: block;
    border:1px solid #fff;
}
.callnow_fixed_main span {
    position: absolute;
    top: -20px;
    left: 11px;
    width: 40px;
    height: 40px;
    background: #015bfa;
    display: flex;
    align-items: center;
    border: 1px solid #fff;
    justify-content: center;
    border-radius: 50px;
    color: #fff;
    animation:2s bouncein infinite;
}
.chatnow_fixed_main{
    position:relative;
    margin:0 2px;
}
.chatnow_fixed_main span {
    position: absolute;
    top: -20px;
    left: 11px;
    width: 40px;
    height: 40px;
    background: #015bfa;
    display: flex;
    align-items: center;
    border: 1px solid #fff;
    justify-content: center;
    border-radius: 50px;
    color: #fff;
    animation:2s bouncein infinite;
}
.chatnow_fixed_main a {
    padding: 12px 20px 12px 60px;
    background: #015bfa;
    color: #fff;
    text-transform: uppercase;
    font-size: 20px;
    font-weight: 700;
    font-family: 'avenir-black', Sans-Serif;
    border-top-left-radius: 7px;
    border-top-right-radius: 7px;
     position: relative; 
    display: block;
    border:1px solid #fff;
}

.callnow_fixed_main span i {
    transform: rotate(90deg);
}
.chatnow_fixed_main span i {
    transform: rotate(90deg);
}

.step-content img {
    width: 20%;
    margin: 0 auto;
    position: relative;
    left: -30px;
    filter: hue-rotate(289deg);
}



@keyframes bouncein{
    0%{
        transform:scale(1);
    }
    50%{
        transform:scale(1.3);
    }
    100%{
        transform:scale(1);
    }
}

@keyframes bounceout{
    0%{
        transform:scale(1.05);
    }
    50%{
        transform:scale(1);
    }
    100%{
        transform:scale(1.05);
    }
}

.iti input, .iti input[type=text] {
    width: 100%;
}
.iti {
    position: relative;
    display: block !important;
    margin-bottom: 30px;
}

header.sticky {top: 0;background: #fff;position: fixed;left: 0;right: 0;box-shadow: 0px -4px 12px 5px rgb(0 0 0 / 10%);z-index:99;padding: 5px 0;}







.best-expration-btn>button {
    margin: 0 10px;
}






.expration-img .mission_box_wrap {
    width: 40%;
    position: absolute;
    left: 10px;
    right: 0;
    bottom: 20px;
    margin: 0;
    padding: 20px 30px;
}

.expration-img {
    position: relative;
}

.expration-img .mission_box_wrap>a {
    position: absolute;
    top: -34px;
    right: 20px;
}

.expration-img .mission_box_wrap>a:nth-child(1) {
    right: 80px;
}

.expration-img .mission_box_wrap>a img {
    width: 50px;
    padding: 11px;
}

a.whatpps {
    position: fixed;
    height: 65px;
    bottom: 20px;
    left: 20px;
    z-index: 9999999999;
}

a.whatpps img {
    height: 50px;
    width: 50px;
    transition: 0.3s ease-in-out;
}

a.whatpps:hover img {
    transform: scale(1.1);
}


.t-img img {
    top: -4% !important;
}
.transfoam-text.t-img1 img {
    top: 10px;
}
.t-img2 img {
    top: 40px;
}

.uae-img {
    position: relative;
}

.uae-img a {
    position: absolute;
    bottom: -20px;
    left: 0;
}


/*steps*/
#stp-frm5 .row {
    padding-top: 80px;
}
.steps-box .step.active + label {position: relative;}

.steps-box .step.active.finish + label:before {}

.steps-box .step.active + label:before {
    content: '';
    position: absolute;
    height: 2px;
    background: #4481ff;
    width: 100%;
    bottom: 0;
}

.complain-bx {
    background: #cccccc2e;
    padding: 40px 20px;
    border-radius: 10px;
    margin: 40px 0px;
}

.complain-bx h2 {
    font-size: 30px;
    text-align: left;
}

.complain-bx p {
    text-align: left;
}

.complain-bx i {
    font-size: 50px;
    color: #015bfa;
    margin-bottom: 20px;
}
.standing-bx{
     padding: 40px 20px;
    margin-bottom: 40px;
    text-align: center;
}
.standing-bx i {
    font-size: 50px;
    color: #015bfa;
    margin-bottom: 20px;
}
/*steps*/

/*side info*/
/*.side_info {*/
/*    height: 100%;*/
/*    width: 30%;*/
/*    position: fixed;*/
/*    z-index: 1;*/
/*    top: 0;*/
/*    background-color: #fff;*/
/*    overflow-x: hidden;*/
/*    transition: 0.5s;*/
/*    padding-top: 60px;*/
/*    right: 0;*/
/*    padding-right: 20px;*/
/*    padding-top: 97px;*/
/*    padding-left: 30px;*/
/*    opacity: 0;*/
/*    transform: translate(50%, 0);*/
/*}*/


/*.side_info .closebtn {*/
/*    position: absolute;*/
/*    top: 60px;*/
/*    right: 25px;*/
/*    font-size: 36px;*/
/*    margin-left: 50px;*/
/*    color: #000;*/
/*    width: 30px;*/
/*}*/
.show_info {
    /*z-index: 999999999999999;*/
    /*box-shadow: rgb(0 0 0 / 75%) -1200px 1px 10px 1220px;*/
    /*opacity: 1;*/
    /*transform: translate(0%, 0);*/
}

@media screen and (max-height: 450px) {
  .side_info {}
}

.show_info h2 {
    font-size: 30px;
    margin-bottom: 10px;
}

.show_info h3 {
    font-size: 20px;
    margin-bottom: 10px;
    line-height: 1.2;
}

.show_info h3 {}

.show_info ul {
    list-style: disc;
    padding-left: 20px;
}

.show_info ul li {
    margin-bottom: 12px;
}

#more_info .modal-dialog {
    max-width: 700px;
        margin-top: 8%;
}

a.more_info {
    color: #015bfa;
    font-size: 30px;
    position: relative;
    top: 120px;
    display: block;
    text-align: center;
    cursor: pointer;
    animation: zoom-in-zoom-out 1s ease infinite;
    
}

#more_info .btn-close {
    top: -20px;
    position: absolute;
    right: -20px;
    background-color: #41abf1;
    width: 40px;
    height: 40px;
    border-radius: 100px;
    color: #fff;
    opacity: 1;
    z-index: 9;
}

/*side info*/
.direction_btns {
    display: flex;
    justify-content: space-between;
    position: relative;
    align-items: center;
}

.direction_btns button {
    position: absolute;
    display: inline-block;
    width: 120px;
    height: auto;
    padding: 12px 0px;
    top: 10px;
}

.direction_btns button:last-child {
    right: 0;
    top: 10px;
}

.direction_btns button:first-child {
    left: 30px;
}

.direction_btns button:first-child i {
    margin-right: 20px;
    margin-top: 5px;
    margin-left: unset;
}

@keyframes zoom-in-zoom-out {
  0% {
    transform: scale(1, 1);
  }
  50% {
    transform: scale(1.1, 1.1);
  }
  100% {
    transform: scale(1, 1);
  }
}
.packg-box:hover {
    border: 2px solid #015bfa;
}



@media only screen and (max-width: 649px) {
    
    .main_logo a {
        display: block;
    }

    .main_logo {
        width: 60% !important;
        /* top: 10px !important; */
        margin: 5px 0 5px 0;
        position: unset;
    }
    
    .header_contact {
        margin: 0px 0 0 0;
        padding: 5px 0px;
        /* background: #fff; */
        border-radius: 4px;
    }
    
    .carousel-caption {
        top: 30px;
    }

    header.sticky {
    position: fixed;
        padding: 0px 0 0px 0;
    }
    .faq_wrap::before{
            width: 100%;
    }
    header.sticky .main_logo {
        opacity: 0;
        display: none;
    }
    .ftr-contact ul li a {
        font-size: 14px;
    }
    .faq_sec{
            overflow: hidden;
    }
    .step-head{
        padding: 0;
        padding-top:50px;
    }
    .direction_btns button:first-child {
        left: 0;
    }
    .direction_btns button:last-child {
        right: 20px;
        top: 10px;
    }
    .direction_btns {
        justify-content: flex-start;
        height: 80px;
        width: 100%;
    }
    .side_bar_fixed_Chat {
        transform: translate(0, 0);
    }
    
    .side_bar_fixed_Chat a {
        background: transparent;
        color: transparent;
        border: 0;
        width: 50px;
    }
    .side_bar_fixed_Chat {
        right: 0;
        height: 30px;
        top: inherit;
        bottom: 0;
        display:none;
    }
    .chatnow_fixed_main span{
            left: 60px;
    }
    .callnow_fixed_main span{
        left: 30px;
    }
    a.whatpps {
        position: fixed;
        height: 50px;
        bottom: 10px;
        left: 10px;
    }
    .sec_head_wrap p{
            margin-bottom: 15px !important;
    }
    .slicknav_nav li a .dropdown-toggle::after{
    display:none;
    }
    .strt_business_tabs .nav-tabs button{
        padding: 10px 30px;
        font-size: 23px !important;
    }
    .one-price-box ul li{
            font-size: 14px;
            margin: 0 10px;
    }
    .step-land .row .col-md-6:last-child ul {
        margin: 25px 0 0 12px;
    }
    section.after_banner_sec {
        padding-bottom: 20px;
        padding-top: 30px;
    }
    .mission_box_wrap{
            width: 100% !important;
            margin: 0 0 0 auto !important;
            right: 0 !important;
            bottom: 0 !important;
            margin-bottom: 20px;
            position: relative !important;
    }
    .our-mission-sec{
        padding-bottom: 20px;
    }
    .carousel-item.carousel-item1.active {
        height: 960px;
    }
    .banner-nether {
        padding-top: 0;
    }
    .cutome-height .carousel-item.carousel-item1.active {
        height: 800px;
    }
    img.img-fluid.img-size {
        height: 100%;
        object-fit: cover;
    }
    .ban-abs {
        position: static;
        height: 100%;
        padding-bottom: 30px;
    }
    .confidenlty-hed h6 {
        font-size: 25px;
        line-height: 30px;
        margin-bottom: 5px;
    }
    section.transfoam-business.padd-add {
        padding: 35px 0;
    }
    .incorporate-box {
        margin-top: 5%;}
    
    .chatnow_fixed_main span i {
        transform: rotate(0deg);
    }
    .ftr-projects h2 {
        font-size: 25px;
        margin: 0;
    }

}
@media only screen and (max-width: 400px) {
    .step-content h2 {
        font-size: 25px;
        line-height: 35px;
    }
    .carousel-item {
        height: 770px;
    }

}

@media only screen and (max-width: 350px) {
    .header_call {
        font-size: 14px;
    }  
    .header_cta.theme-btn {
        padding: 6px 30px;
    }
    .main_logo {
        width: 45%;
        top: 10px !important;
    }
    .banner_text h1 span {
        line-height: 35px;
        font-size: 25px;
    }
    .banner_text h1 {
        font-size: 22px !important;
        line-height: 1 !important;
        margin: 0 0 20px 0;
    }
    .featured_box h3 {
        font-size: 20px;
        line-height: 25px;
        margin: 10px 0;
    }
}


section.inner_banner_two.thankyous {
    background: transparent;
    text-align: center;
    height: 500px;
    padding: 70px 0px 0;
}

section.inner_banner_two.thankyous p {
    font-size: 20px;
}
.thankyous a.theme-btn {
    margin-top: 20px;
    display: inline-flex;
}
    
.summarydetailstyle h1 {
    font-size: 27px;
    margin-bottom: 0;
}

.summarydetailstyle h5:before {
    display: none;
}

.summarydetailstyle h5 {
    font-size: 17px;
}

.summarydetailstyle .total-sytle {
    border-top: 1px solid #000;
    padding-top: 20px;
    font-size: 25px !important;
}

.summarydetailstyle {
    height: auto;
}

span.slicknav_arrow {
    position: absolute;
    height: 100%;
    top: 0;
    right: 0;
    display: flex;
    align-items: start;
    justify-content: end;
    width: 100px;
    padding-right: 20px;
    padding-top: 7px;
}


/*.vdo-btn video {*/
/*    height: 600px;*/
/*    width: 100%;*/
/*    object-fit: cover;*/
/*}*/


/* page css */


.breez_banner {
    background-color: #f5fafe;
    padding: 80px 0;
        padding-top: 6%;
}

.breez_banner .container {transform: scale(.9);}

.breez_banner .breez_banner_textt>h1 {
    font-size: 50px;
    color: #000;
    line-height: 60px;
    font-family: 'avenir-roman';
    margin-bottom: 20px;
}

.breez_banner .breez_banner_textt>h1>span:last-child {
    display: inline-block;
}

.breez_banner .breez_banner_textt>h1>span {
    display: block;
    font-weight: bold;
    font-family: 'avenir-black';
}

.breez_banner .breez_banner_textt>p {
    font-size: 24px;
    color: #000;
    line-height: 32px;
    font-family: 'avenir-roman';
}

.breez_banner .breez_banner_textt>ul {
    gap: 15px;
    align-items: center;
    margin-top: 30px;
    margin-bottom: 0;
}

.breez_banner .breez_banner_textt>ul>li>img {
    background: #fff;
    padding: 14px;
    border-radius: 50%;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.breez_banner .breez_banner_textt>ul>li>h6 {
    font-size: 20px;
    margin-bottom: 8px;
    font-family: 'avenir-black';
    color: #000;
}

.breez_banner .breez_banner_textt>ul>li>ul {
    gap: 10px;
}

.breez_banner .breez_banner_textt>ul>li>ul>li>i {
    color: #f79222;
}

.breez_banner .breez_banner_textt>ul>li>ul>li>span {
    font-size: 20px;
    font-family: 'avenir-roman';
}

.brez-banner_left_wrpp {
    position: relative;
}

.brez-banner_left_wrpp>span>img {
    width: 100%;
}

.breez_banner {
    position: relative;
    z-index: 1;
}

.breez_banner:after {
    position: absolute;
    content: "";
    background-color: #fff;
    width: 61%;
    height: 110%;
    top: -10%;
    right: -20%;
    border-radius: 50%;
    z-index: -1;
}

.brez-banner_left_wrpp .brez-ban_left-boxx {
    background-color: #fff;
    padding: 20px;
    border-radius: 20px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    position: absolute;
    bottom: 12%;
    width: 50%;
    right: -9%;
}

.brez-ban_left-boxx>ul {
    gap: 10px;
    align-items: center;
    margin-bottom: 10px;
}

.brez-ban_left-boxx>ul>li>span {
    font-size: 16px;
    font-family: 'avenir-black';
}

.brez-ban_left-boxx>ul>li>ul>li>i {
    color: #f7c222;
}

.brez-ban_left-boxx>p {
    font-size: 13px;
    font-family: 'avenir-roman';
    line-height: 17px;
    margin: 0;
}

/* banner-bottom */

.brez_botm_box {
    background-color: #fff;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    padding: 40px 40px;
    text-align: center;
    border-radius: 5px 50px 5px 50px;
}

.breez-banner_bottom {
    padding-bottom: 50px;
    margin-top: -100px;
    z-index: 1;
    position: relative;
}

.brez_botm_box>h3 {
    font-size: 29px;
    font-family: 'avenir-roman';
    margin-bottom: 33px;
    line-height: 36px;
}

.brez_botm_box>h3>span {
    display: block;
    color: #3a91ef;
}

.brez_botm_box>a {
    display: block;
    width: fit-content;
    margin: 0 auto;
    margin-bottom: -60px;
}

.breez-banner_bottom .row {
    width: 90%;
    margin: 0 auto;
}

.brez-banner_left_wrpp>span {
    display: block;
    margin-bottom: -40px;
}

/* banner-bottom */

/* alabama sec */

.brez_alabama_sec {
    padding: 70px 0px;
    height: 100%;
}

.alabama_textt_boxx>h2 {
    font-size: 30px;
    font-family: 'avenir-roman';
    font-weight: 600;
    color: #000000;
    margin-bottom: 30px;
}

.alabama_textt_boxx>p {
    font-size: 20px;
    font-family: 'avenir-roman';
    color: #000;
    line-height: 32px;
    margin-bottom: 30px;
}

.alabama_textt_boxx>ul {
    margin-bottom: 30px;
}

.alabama_textt_boxx>ul>li {
    font-size: 18px;
    color: #000;
    font-family: 'avenir-roman';
    margin-bottom: 11px;
}

.alabama_textt_boxx>ul>li:last-child {
    color: #4e9ef0;
    font-family: 'avenir-black';
    margin-bottom: 0;
}

.alabama_textt_boxx>ul>li:last-child i {
    color: #4e9ef0;
}

.alabama_textt_boxx>ul>li>i {
    margin-right: 20px;
    color: #4e9ef0;
}

.alabama_rightt_boxx {
    /*background-color: #fdfdfd;*/
    /*border: 1px solid #f0f0f0;*/
    padding: 20px;
    border-radius: 10px;
    transition: 1s ease-in-out;
}

.alabama_rightt_boxx>a {
    display: flex;
    width: 400px;
    background: #ecf4ff;
    margin-bottom: 20px;
    align-items: center;
    justify-content: space-between;
        padding: 6px 10px 6px 40px;
    border-radius: 60px;
    font-size: 20px;
    color: #000;
    font-family: 'avenir-roman';
}

.alabama_rightt_boxx>a>i {
    background: linear-gradient(0deg, #45b1f2, #318aed);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}


.alabama_rightt_boxx>a:last-child {
    margin: 0;
}

.alabama_rightt_boxx>a>i>img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.alabama_rightt_boxx>a {
    transition: 0.4s ease-in-out;
}

.alabama_rightt_boxx>a:hover {
    transition: 0.4s ease-in-out;
    background: linear-gradient(0deg, #45b1f2, #318aed);
    color: #fff;
}

.alabama_rightt_boxx>a>i {
    transition: 0.4s ease-in-out;
}

.alabama_rightt_boxx>a:hover i {
    transition: 0.4s ease-in-out;
    background: #fff;
    transform: translate(0px, -20px);
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.alabama_rightt_boxx>a:hover i>img {

    filter: invert(48%) sepia(84%) saturate(484%) hue-rotate(169deg) brightness(105%) contrast(89%);

}

.brez_alabama_sec .accordion-button {
    padding: 20px 30px;
    border-radius: 10px !important;
    border: 2px solid #f5f5f5;
    font-family: 'avenir-roman';
    text-transform: capitalize;
}

.brez_alabama_sec .accordion-header {
    margin-bottom: 0px;
}

.brez_alabama_sec .accordion-item {
    margin-bottom: 20px;
    border-radius: 10px;
    border: 0;
}

.brez_alabama_sec .accordion-button::after {
    display: none;
}

.brez_alabama_sec .accordion-button h6 {
    margin: 0;
    margin-right: 30px;
    background: linear-gradient(0deg, #45b1f2, #318aed);
    color: #fff;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-family: 'avenir-black';
}

.alabama_textt_boxx .accordion-button:not(.collapsed) {
    background-color: #ecf4ff;
    box-shadow: none;
    border: 0;
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !IMPORTANT;
}

.alabama_textt_boxx .accordion-body {
    background-color: #ecf4ff;
    padding: 20px 30px;
    /*overflow-y: scroll;*/
    /*height: 500px;*/
}

.alabama_textt_boxx .accordion-body::-webkit-scrollbar-track {
    /* -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3); */
    background-color: #ecf4ff;
}

.alabama_textt_boxx .accordion-body::-webkit-scrollbar {
    width: 8px;
    background-color: #ecf4ff;
}

.alabama_textt_boxx .accordion-body::-webkit-scrollbar-thumb {
    background-color: #3592ee;
    border-radius: 3px;
    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);
}



.alabama_textt_boxx .accordion-button:not(.collapsed) span {
    opacity: 0;
}

.alabama_textt_boxx .accordion-button:not(.collapsed) h6 {
    transform: scale(1.4);
}

.alabama_textt_boxx .accordion-body h4 {
    font-size: 28px;
    color: #000;
    font-family: 'avenir-roman';
    font-weight: 500;
    margin-top: 20px;
}

.alabama_textt_boxx .accordion-body p {
    font-size: 20px;
    line-height: 31px;
    font-family: 'avenir-roman';
    color: #000;
    margin: 30px 0px;
}

.alabama_textt_boxx .accordion-body .div_listt {
    background: #fff;
    padding: 30px 20px;
    border-radius: 10px 70px 10px 70px;
}

.alabama_textt_boxx .accordion-body .div_listt h3 {
    font-size: 20px;
    font-family: 'avenir-black';
    margin-bottom: 16px;
}

.alabama_textt_boxx .accordion-body .div_listt ul {
    margin: 0;
}

.alabama_textt_boxx .accordion-body .div_listt ul li {
    padding-left: 30px;
    margin-bottom: 10px;
    font-size: 18px;
    font-family: 'avenir-roman';
    color: #000;
    position: relative;
}

.alabama_textt_boxx .accordion-body .div_listt ul li:last-child {
    margin: 0;
}

.alabama_textt_boxx .accordion-body .div_listt ul li:after {
    position: absolute;
    content: "";
    background-color: #3897ee;
    width: 6px;
    height: 6px;
    left: 10px;
    top: 8px;
    border-radius: 50%;
}

.alabama_textt_boxx .accordion-body .certified_divv {
    background-color: #040056;
    padding: 70px 40px 100px;
    border-radius: 10px 70px 10px 70px;
    position: relative;
    margin-bottom: 50px;
    margin-top: 40px;
}

.alabama_textt_boxx .accordion-body .certified_divv h3 {
    font-size: 28px;
    color: #fff;
    font-family: 'avenir-roman';
    font-weight: 100;
    margin-bottom: 40px;
}

.alabama_textt_boxx .accordion-body .certified_divv>span {
    position: absolute;
    right: 0;
    bottom: -40px;
}

.alabama_textt_boxx .accordion-body .certified_divv .theme-btn {
    display: block;
    width: fit-content;
    margin-bottom: -120px;
}

.alabama_textt_boxx .accordion-body .handlee_divv {
    background-color: #fff;
    padding: 40px 40px;
    border-radius: 10px 50px 10px 50px;
    margin-bottom: 40px;
}

.alabama_textt_boxx .accordion-body .handlee_divv h3 {
    font-size: 28px;
    font-family: 'avenir-roman';
    line-height: 38px;
    margin-bottom: 40px;
}

.alabama_textt_boxx .accordion-body .d-flex.dshtt-brdr {
    border: 2px solid;
    border-color: transparent;
    border-style: dashed;
    background: #fff;
    padding: 30px 30px;
    border-radius: 70px;
    margin-top: 40px;
    gap: 0px;
    transition: 0.3s ease-in-out;
}

.alabama_textt_boxx .accordion-body .d-flex.dshtt-brdr:hover {
    transition: 0.3s ease-in-out;
    border-color: #43adf1;
}

.alabama_textt_boxx .accordion-body .d-flex.dshtt-brdr li {
    /* text-align: center; */
    color: #000;
    font-size: 20px;
    font-family: 'avenir-black';
    position: relative;
    width: 33.3333% !IMPORTANT;
}

.alabama_textt_boxx .accordion-body .d-flex.dshtt-brdr li:after {
    position: absolute;
    content: "";
    background: #f1f1f1;
    width: 1px;
    height: 84px;
    top: -30px;
    right: 30px;
}

.alabama_textt_boxx .accordion-body .d-flex.dshtt-brdr li:last-child {
    position: initial !IMPORTANT;
}

.alabama_textt_boxx .accordion-body ul.d-flex.ttwm {
    border: 2px solid;
    border-color: transparent;
    border-style: dashed;
    background: #fff;
    padding: 30px 30px;
    border-radius: 70px;
    justify-content: space-between;
    margin-top: 40px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    transition: 0.5s ease-in-out;
}

.alabama_textt_boxx .accordion-body ul.d-flex.ttwm:hover {
    transition: 0.3s ease-in-out;
    border-color: #43adf1;
}

.alabama_textt_boxx .accordion-body ul.d-flex.ttwm li {
    /* text-align: center; */
    color: #000;
    font-size: 20px;
    font-family: 'avenir-black';
    position: relative;
    width: 33.33333% !IMPORTANT;
}

.alabama_textt_boxx .accordion-body ul.d-flex.ttwm li:after {
    position: absolute;
    content: "";
    background: #f1f1f1;
    width: 1px;
    height: 84px;
    top: -30px;
    right: 30px;
}

.alabama_textt_boxx .accordion-body ul.d-flex.ttwm li:last-child {
    position: inherit;
}

.alabama_textt_boxx .accordion-body>span {
    font-size: 18px;
    font-family: 'avenir-roman';
    letter-spacing: 2px;
    color: #000;
}

.alabama_textt_boxx .accordion-body ul.d-flex {
    border: 2px solid;
    border-color: transparent;
    background: #fff;
    padding: 30px 30px;
    border-style: dashed;
    border-radius: 70px;
    margin-top: 40px;
    align-items: center;
    transition: 0.3s ease-in-out;
}

.alabama_textt_boxx .accordion-body ul.d-flex:hover {
    transition: 0.3s ease-in-out;
    border-color: #43adf1;
}



.alabama_textt_boxx .accordion-body ul.d-flex li:first-child {
    width: 30%;
    font-size: 20px;
    font-family: 'avenir-black';
    color: #000;
}

.alabama_textt_boxx .accordion-body ul.d-flex li:last-child {
    font-size: 20px;
    font-family: 'avenir-roman';
    line-height: 26px;
    width: 70%;
    color: #000;
}

/* alabama sec */

/*faq-style*/
.faq-style::before {
    content: '';
    position: absolute;
    height: 100%;
    width: 70%;
    background-color: #000;
    border-bottom-right-radius: 100px;
    left: 0;
    top: 0;
    z-index: -1;
}

.faq-style {
    position: relative;
}

.faq-style .faq_wrap::before {
    opacity: 0;
}

.faq-style .faq_wrap {
    position: relative;
    padding: 0 0;
    height: 750px;
    padding-right: 20%;
    display: grid;
    align-content: center;
}

.faq-style .faq_wrap h6 {
    position: relative;
}

.faq-style .faq_wrap h6::before {
    content: '';
    position: absolute;
    left: -21%;
    bottom: -20px;
    height: 1px;
    width: 145%;
    background: #fff;
    z-index: -1;
}

.faq-style .faq_wrap .accordion-button {
    font-size: 22px;
    line-height: 1.2;
    font-family: 'avenir-black';
}

.faq-style .accordion-item::before {
    content: '';
    position: absolute;
    left: -21%;
    bottom: -10px;
    height: 1px;
    width: 145%;
    background: #fff;
    z-index: -1;
}

.faq-style .accordion-item {
    position: relative;
    margin: 20px 0;
}

.faq-style {
    z-index: 0;
}


/*FAQ SEC STRT*/

.faq_sec>img {
    top: 0;
    right: 0;
    width: 700px;
    height: 700px;
    object-fit: contain !important;
    border-bottom-left-radius: 100px;
    object-position: right;
}

/*h1.landi.btn-shine span {*/
/*    font-size: 42px;*/
/*    line-height: 72px;*/
/*}*/
.faq_wrap::before {
    content: '';
    position: absolute;
    height: 100%;
    width: 120%;
    background-color: #000;
    border-bottom-right-radius: 100px;
    left: 0;
    top: 0;
    z-index: -1;
}




.faq_wrap {

    position: relative;
    padding: 50px 200px 50px 50px;
    height: 750px;

}

.faq_wrap .accordion-header:hover .accordion-button {
    color: #338fee;
}

.faq_wrap .accordion-button {
    background-color: #fff0;
    border: 0 !important;
    box-shadow: none !important;
    padding: 0;
    margin: 0 0 10px;
    color: #fff;
    transition: color 0.3s ease-in-out;
}

.accordion-item {
    background-color: #fff0;
    border: 0;
}

.faq_wrap h6 {
    font-size: 35px;
    line-height: 40px;
    color: #ffff;
    font-weight: 500;
    margin: 0 0 30px;
    text-transform: capitalize;
}

.accordion-body p {
    color: #fff;
    font-family: 'avenir-roman';
}

.accordion-body {
    padding: 0;
}


.faq_wrap .accordion-button:after {
    background-color: #fff;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-position: center center;
    border-radius: 100px;
}

/*FAQ SEC END*/

/*faq-style*/

.brez_launch_secc {
    /*background-color: #ecf4ff;*/
    padding: 70px 0px;
}

.brez_launch_secc h2 {
    font-size: 40px;
    color: #000;
    font-family: 'avenir-black';
    margin-bottom: 40px;
}

.brez_launch_secc p {
    font-size: 20px;
    font-family: 'avenir-roman';
    color: #000;
    margin-bottom: 50px;
    line-height: 26px;
}

/* page css */
section.resousce-scrc {
    background: #040056;
    padding: 100px 0;
}

section.resousce-scrc h2 {
    color: #fff;
    font-size: 40px;
    font-weight: 600;
    margin: 0 0 30px;
    font-family: 'avenir-black';
    text-transform: capitalize;
}

.linkr-box>a {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #000;
    background: #fff;
    font-size: 22px;
    font-weight: 600;
    border-radius: 10px;
    padding: 0 20px;
    font-family: 'avenir-roman';
}
.linkr-box>a:hover {
    background: #eee;
    transition: none;
}

.brz_grl_wrpp>img {
    transform: rotateY(180deg);
    height: 600px;
}

.brez_launch_secc {
    position: relative;
    height: 700px;
    display: flex;
    align-items: center;
}

.brez_launch_secc .brz_grl_wrpp {
    position: absolute;
    bottom: -30px;
    top: unset;
}


@media only screen and (min-width: 1366px) and (max-width: 1440px){
    .step_content {
        margin: 0 auto;
    }
    
    .slick-current .testi_box:after {
        right: -16%;
    }
    
    .testi_box:after {
        left: -19%;
    }
    html {overflow-x: hidden; }
    .brez_alabama_sec .accordion-button {
    line-height: 20px;
}

}

@media only screen and (min-width: 1200px) and (max-width: 1365px){
    
    .scrll_side_bar>.alabama_rightt_boxx.fixed-wrp {
    top: 0 !IMPORTANT;
}

    .step_content {
        margin: 0 auto;
    }
    
    .slick-current .testi_box:after {
        right: -26%;
    }
    
    html {overflow-x: hidden; }
.brez-banner_left_wrpp .brez-ban_left-boxx {right: 0; }
.breez_banner .breez_banner_textt>h1 {
    font-size: 50px;
    line-height: 60px;
}
.linkr-box>a {font-size: 18px; }

.breez_banner {
    padding-top: 9%;
}

.breez_banner .breez_banner_textt>p {
    font-size: 18px;
    line-height: 23px;
}

.breez_banner .breez_banner_textt>p {
    font-size: 18px;
    line-height: 23px;
}

.brez_botm_box {
    padding: 20px 40px;
}

.brez_botm_box>h3 {
    font-size: 25px;
    line-height: 30px;
    margin-bottom: 20px;
}

.brez_botm_box>a {
    margin-bottom: -40px;
}


}

@media only screen and (min-width: 992px) and (max-width: 1199px){
    .filing_made_easy_wrap {
        padding-bottom: 100px;
    }
    .filing_made_easy_wrap button {
        font-size: 18px;
    }
    .step_content {
        margin: 0 auto;
    }
    
   .slick-current .testi_box:after {
        right: -44%;
        top: 40px;
        height: 510px;
    }
    .need-help-sec .need_help3 {
        position: absolute;
        top: -9%;
        height: 440px;
        right: 7%;
    }
    .need_help1 {
        right: 30%;
    }
    .review-box{
        height: 530px;
    }
    
    html {overflow-x: hidden; }
.breez_banner .breez_banner_textt>h1 {font-size: 40px; line-height: 50px; margin-top: 70px; }
.breez_banner .breez_banner_textt>p {font-size: 18px; line-height: 25px; }
.brez-banner_left_wrpp .brez-ban_left-boxx {bottom: 0;width: 70%;right: 0;}
.breez-banner_bottom .row {width: 100%; }
.brez_botm_box>h3 {font-size: 18px; line-height: 25px; margin-bottom: 10px; }
.brez_botm_box>a {font-size: 16px; }
.brez_alabama_sec {padding-top: 30px; padding-bottom: 40px; }
.alabama_rightt_boxx>a>i>img {width: 25px; height: 25px; }
.alabama_rightt_boxx>a {
    padding: 5px 0px 5px 20px;
    font-size: 16px;
    line-height: 16px;
    width: 300px !important;
    height: 50px !IMPORTANT;
}

.handlee_divv .col-md-8 {
    width: 100% !IMPORTANT;
}
.alabama_textt_boxx>h2 {font-size: 25px; margin-bottom: 20px; }
.alabama_textt_boxx>p {font-size: 18px; line-height: 25px; }
.brez_alabama_sec .accordion-button {padding: 10px 10px; gap: 15px; flex-direction: column; align-items: baseline;     line-height: 25px;}
.brez_alabama_sec .accordion-button h6 {margin-right: 0; }
section.resousce-scrc {padding: 40px 0px; }
section.resousce-scrc h2 {font-size: 30px; }
.linkr-box>a {font-size: 15px; line-height: 20px; height: 60px; }
.brez_launch_secc h2 {font-size: 30px; margin-bottom: 20px;     line-height: 35px;}
    
}

@media only screen and (min-width: 768px) and (max-width: 991px){
    .review-box{
        height: 500px;
    }
    
    html {overflow-x: hidden; }
.breez_banner .breez_banner_textt>h1 {
    font-size: 35px !important;
    line-height: 35px !important;
    margin-top: 60px !IMPORTANT;
}

.alabama_textt_boxx .accordion-body .certified_divv>span {
    display: none;
}

.alabama_textt_boxx .accordion-body {
    padding: 20px 20px;
}

.alabama_textt_boxx .accordion-body .certified_divv {
}

.alabama_textt_boxx .accordion-body .certified_divv h3 {
    font-size: 22px !important;
    line-height: 25px !important;
}

.alabama_textt_boxx .accordion-body .handlee_divv h3 {
    font-size: 22px;
    line-height: 25px;
}

.handlee_divv .col-md-8 {
    width: 100% !important;
}

.alabama_textt_boxx .accordion-body .handlee_divv {
    padding: 20px;
}

.alabama_textt_boxx .accordion-body .d-flex.dshtt-brdr {
    flex-direction: column;
}

.alabama_textt_boxx .accordion-body .d-flex.dshtt-brdr li {
    width: 100% !IMPORTANT;
}

.alabama_textt_boxx .accordion-body .d-flex.dshtt-brdr li:after {
    display: none;
}

.alabama_textt_boxx .accordion-body ul.d-flex.ttwm {
    flex-direction: column;
}

.alabama_textt_boxx .accordion-body ul.d-flex.ttwm li {
    width: 100% !IMPORTANT;
}

.alabama_textt_boxx .accordion-body ul.d-flex.ttwm li:after {
    display: none;
}

.alabama_textt_boxx .accordion-body ul.d-flex {
    flex-direction: column;
}

.alabama_textt_boxx .accordion-body ul.d-flex li:first-child {
    width: 100%;
}

.alabama_textt_boxx .accordion-body ul.d-flex li:last-child {
    width: 100%;
    font-size: 15px;
    line-height: 23px;
}

.breez_banner .breez_banner_textt>p {font-size: 18px; line-height: 25px; }
.brez-banner_left_wrpp .brez-ban_left-boxx {bottom: unset; width: 70%; }
.breez-banner_bottom .row {width: 100%; }
.brez_botm_box>h3 {font-size: 18px; line-height: 25px; margin-bottom: 10px; }
.brez_botm_box>a {font-size: 16px; }
.brez_alabama_sec {padding-top: 30px; padding-bottom: 40px; }
.alabama_rightt_boxx>a>i>img {width: 25px; height: 25px; }
.alabama_rightt_boxx>a {
    padding: 5px 0px 5px 20px;
    font-size: 13px;
    line-height: 17px;
    height: 50px !IMPORTANT;
    width: 230px !IMPORTANT;
}
.alabama_textt_boxx>h2 {font-size: 25px; margin-bottom: 20px; line-height: 30px; }
.alabama_textt_boxx>p {font-size: 18px; line-height: 25px; }
.brez_alabama_sec .accordion-button {padding: 10px 10px; gap: 15px; flex-direction: column; align-items: baseline; line-height: 25px;}
.brez_alabama_sec .accordion-button h6 {margin-right: 0; }
section.resousce-scrc {padding: 40px 0px; }
section.resousce-scrc h2 {font-size: 30px; }
.linkr-box>a {font-size: 15px; line-height: 20px; height: 60px; }
.brez_launch_secc h2 {font-size: 30px; margin-bottom: 20px; line-height: 35px;}

.alabama_textt_boxx .accordion-button:not(.collapsed) span {
    display: none;
}

.brz_grl_wrpp>img {
    height: auto;
}

.brez_launch_secc .brz_grl_wrpp {
    position: inherit;
}

.brez_launch_secc {
    height: auto;
}


}

@media only screen and (min-width: 300px) and (max-width: 519px){
    
    .faq-style .faq_wrap {padding: 20px 15px !IMPORTANT;}
    
    .scrll_side_bar>.alabama_rightt_boxx.fixed-wrp {
    position: inherit !IMPORTANT;
}

.alabama_rightt_boxx.fixed-wrps {
    position: inherit !IMPORTANT;
}

.alabama_rightt_boxx>a {
    width: 100% !IMPORTANT;
    margin-bottom: 7px;
}

.brez_alabama_sec>.container>.row {flex-direction: column-reverse;}

.alabama_rightt_boxx {
    margin-bottom: 30px !IMPORTANT;
}

.alabama_textt_boxx .accordion-body .certified_divv {
    border-radius: 10px 40px 10px 40px;
}
    
.breez_banner {padding: 60px 0px; }
html {overflow-x: hidden; }
.breez_banner .breez_banner_textt>h1 {font-size: 30px; line-height: 36px; }
.breez_banner:after {display: none;}
.breez_banner .breez_banner_textt>p {font-size: 16px; line-height: 23px; }
.brez-banner_left_wrpp .brez-ban_left-boxx {position: inherit; width: 100%; left: 0; bottom: 0; margin-top: 30px; }
.breez_banner .breez_banner_textt>ul {margin-bottom: 20px; gap: 10px; }
.breez_banner .breez_banner_textt>ul>li>h6 {font-size: 16px; }
.breez_banner .breez_banner_textt>ul>li>ul>li>span {font-size: 12px; }
.breez-banner_bottom .row {width: 100%; }
.brez_botm_box {padding: 20px; border-radius: 20px; margin-bottom: 20px; }
.brez_botm_box>h3 {font-size: 20px; line-height: 22px; margin-bottom: 10px; }
.breez-banner_bottom .theme-btn {
    font-size: 15px !important;
    padding: 8px 20px !IMPORTANT;
    margin: 0 auto !IMPORTANT;
}
.brez_botm_box>a {margin: 0; }
.breez-banner_bottom {margin: 0; padding-bottom: 20px; }
.brez_alabama_sec {padding: 30px 0px; }
.alabama_textt_boxx>p {font-size: 16px; line-height: 23px; }
.brez_alabama_sec .accordion-button h6 {width: 40px; margin-right: 0; height: 40px; }
.brez_alabama_sec .accordion-button {
    padding: 10px;
    font-size: 16px;
    gap: 10px;
    flex-direction: column;
    align-items: baseline;
    display: flex !important;
    line-height: 24px;
}
.alabama_textt_boxx .accordion-button:not(.collapsed) span {
    display: none;
}
.alabama_rightt_boxx>a {font-size: 16px; padding: 10px; }
.alabama_rightt_boxx {padding: 10px; }
.alabama_textt_boxx .accordion-body {padding: 15px; }
.alabama_textt_boxx .accordion-body h4 {font-size: 20px; }
.alabama_textt_boxx .accordion-body p {font-size: 16px; line-height: 23px; }
.alabama_textt_boxx .accordion-body .div_listt ul li {font-size: 15px; line-height: 20px; }
.alabama_textt_boxx .accordion-body .certified_divv>span {display: none; }
.alabama_textt_boxx .accordion-body .certified_divv {padding: 20px; }
.alabama_textt_boxx .accordion-body .certified_divv h3 {font-size: 20px; margin-bottom: 20px; line-height: 26px;}
.brez_alabama_sec .theme-btn {font-size: 13px; padding: 8px 20px; }
.alabama_textt_boxx .accordion-body .certified_divv .theme-btn {margin: 0; }
.alabama_textt_boxx .accordion-body .handlee_divv {padding: 15px; }
.alabama_textt_boxx .accordion-body .handlee_divv h3 {font-size: 20px; line-height: 28px; margin-bottom: 10px; }
.handlee_divv .theme-btn {margin-bottom: 40px; display: block; width: fit-content; }
.alabama_textt_boxx .accordion-body .d-flex.dshtt-brdr {flex-direction: column; padding: 10px 30px; border-radius: 10px; margin: 10px 0px; }
.alabama_textt_boxx .accordion-body .d-flex.dshtt-brdr li {width: 100% !important; font-size: 16px !IMPORTANT; }
.alabama_textt_boxx .accordion-body .d-flex.dshtt-brdr li:after {display: none; }
.alabama_textt_boxx .accordion-body ul.d-flex.ttwm {flex-direction: column; border-radius: 10px; padding: 20px; margin: 10px 0px; }
.alabama_textt_boxx .accordion-body ul.d-flex.ttwm li {width: 100% !important; font-size: 16px !IMPORTANT; }
.alabama_textt_boxx .accordion-body ul.d-flex.ttwm li:after {display: none; }
.alabama_textt_boxx .accordion-body ul.d-flex {margin: 10px 0px; flex-direction: column; align-items: baseline; border-radius: 10px; padding: 20px; }
.alabama_textt_boxx .accordion-body ul.d-flex li:first-child {width: 100% !IMPORTANT; font-size: 16px !important; }
.alabama_textt_boxx .accordion-body ul.d-flex li:last-child {width: 100%; font-size: 16px !IMPORTANT; }
.alabama_rightt_boxx>a>i>img {width: 20px; height: 20px; }
.alabama_rightt_boxx>a>i {height: 30px; width: 30px; }
section.resousce-scrc {padding: 30px 0px; }
section.resousce-scrc h2 {font-size: 30px;     line-height: 36px;}
.linkr-box>a {font-size: 16px; margin-bottom: 10px; height: 50px; }
.brez_launch_secc h2 {font-size: 30px; margin-bottom: 20px; }
.brez_launch_secc p {font-size: 16px; line-height: 23px; margin-bottom: 30px; }
.brez_launch_secc .theme-btn {font-size: 16px; padding: 8px 20px; }
.alabama_textt_boxx>h2 {
    font-size: 25px !important;
    line-height: 33px !important;
    margin-bottom: 15px;
}

.brez_launch_secc .brz_grl_wrpp {
    position: inherit;
}

.brez_launch_secc .brz_grl_wrpp img {
    height: auto;
}

.brez_launch_secc h2 {
    line-height: 32px;
}
    
    .review-box{
         height: 450px;
    }
    
    .abtp_banner .carousel-item {
        height: 500px;
    }
    
    .abtp_banner .carousel-item .carousel-caption {
        top: 0;
    }
    
    .sec_heading1 br {
        display: none;
    }
    
    .banner_text.inr.cont img {
        margin-left: 0;
        display: inherit;
    }
    
    .step-land ul h4 {
        font-size: 13px;
    }
    
    .step-land ul h5 {
        font-size: 13px;
    }
    
    .germany_guide_slider .carousel-caption {
        top: 0px;
        align-items: start;
    }
    
    .germany_guide_slider .carousel-item.carousel-item1.active {
        height: 950px !important;
    }
    
    .filing_made_easy_wrap * {
        color: #fff;
        justify-content: center;
        gap: 10px;
    }
    
    .spainn_banner .carousel-item {
        height: 900px !important;
    }
    
    .spainn_banner .carousel-item .carousel-caption {
        top: 0;
        align-items: start;
    }
    
    .confdently-steps .row .col-lg-3:nth-child(even) .confidently-step-bx {
        flex-direction: column-reverse;
        display: flex;
    }
    
    .mena_banner .carousel-caption {
        align-items: start;
        top: 0;
    }
    
    .satis-btn {
        margin-top: 0px;
    }
    
    .confdently_box .confidently-step-bx {
        margin-top: 0 !important;
    }
    
    .malaysia_banner .carousel-item {
        height: 950px !important;
    }
    
    .malaysia_banner .carousel-item .carousel-caption {
        /*align-items: start;*/
        top: 0;
    }
    
    .uae_banner .carousel-item {
        height: 950px !important;
    }
    
    .uae_banner .carousel-caption {
        top: 0px;
    }
    
    .incorporate-box {
        margin-top: 6%;
        padding: 50px 10px;
    }
    
    .step-head {
        padding-top: unset;
        padding: 0px 0 30px 0;
    }
    
    section.main_slider.lc-country-guide:after {
        display: none;
    }
    
    .homepg_banner .carousel-caption {
        align-items: start;
    }
            
    
    
    
}

.alabama_rightt_boxx.fixed-wrps {
    position: absolute;
    bottom: 0;
    width: 100%;
}


/*pop up*/

.custom_popop_new .close-poppup {
    background: #fff;
    position: absolute;
    right: -10px;
    top: -10px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 30px;
    color: #000;
    font-weight: bold;
    font-family: 'avenir-black';
    line-height: 20px;
    cursor: pointer;
}

.custom_popop_new {
    width: 500px;
    margin: 0 auto;
    background-color: #040056;
    padding: 50px 30px;
    border-radius: 20px;
    position: relative;
    text-align: center;
}

.custom_popop_new .popup_close {
    position: absolute;
    top: -60px;
    left: -80px;
    width: 150px;
    cursor: pointer;
    transition: 0.3s ease-in-out;
}

.custom_popop_new .popup_close:hover {
    z-index: 1;
    transition: 0.3s ease-in-out;
    filter: blur(1px);
}

.custom_popop_new h2 {
    font-size: 30px;
    color: #fff;
    font-family: 'avenir-roman';
    line-height: 40px;
    margin-bottom: 20px;
}

.custom_popop_new h2>span {
    display: block;
    font-size: 42px;
    font-family: 'avenir-black';
    color: #b4e2ff;
}

.custom_popop_new h4 {
    background: #f2f8ff;
    padding: 15px 20px;
    font-size: 19px;
    font-family: 'avenir-black';
    text-align: left;
    border-radius: 10px;
    color: #000;
}

.custom_popop_new h4>span {
    display: block;
    font-size: 13px;
    color: #000;
}

.custom_popop_new h3 {
    text-align: left;
    color: #fff;
    font-size: 19px;
    margin-top: 10px;
    margin-bottom: 10px;
}

.custom_popop_new ul {text-align: left;}

.custom_popop_new ul>li {
    font-size: 16px;
    color: #fff;
    font-family: 'avenir-roman';
    margin-bottom: 10px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 17px;
}

.custom_popop_new ul>li>i {
    color: #040056;
    background: #fff;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 12px;
}

.custom_popop_new a:nth-child(1) {
    text-align: left;
    display: block;
}

.custom_popop_new a {
    text-align: left;
    color: #fff;
    display: block;
    text-decoration: underline;
    font-size: 19px;
    font-family: 'avenir-black';
}

.custom_popop_new a.theme-btn {
    width: fit-content;
    text-decoration: none;
    font-family: 'avenir-roman';
    margin-bottom: -80px !IMPORTANT;
    margin: 0 auto;
    margin-top: 40px;
    padding: 14px 50px !IMPORTANT;
}

.popup_main_new {
    padding: 80px 0px;
}

.toggle-poppup {
    position: relative;
    overflow: hidden !IMPORTANT;
}

.toggle-poppup .popup_main_new {
    position: fixed;
    top: 0px;
    width: 100%;
    z-index: 999;
    margin: 0 auto;
    transition: 0.5s ease-in-out;
    display: block;
    transform: scale(1);
}

.popup_main_new {
    display: none;
    transform: scale(0);
}

.toggle-poppup:after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 99;
    backdrop-filter: blur(10px);
    background-color: rgb(0 0 0 / 0%);
}

/*pop up*/

.taxs_div_new_created.d-flex {
    justify-content: space-between;
    gap: 30px;
}

.taxs_div_new_created.d-flex > * {
    width: 50%;
    list-style: disc;
}

.taxs_div_new_created>.d-flex {
    justify-content: space-between;
    margin-bottom: 10px;
}

.taxs_div_new_created {
    background-color: #ecf4ff;
    padding: 20px;
    border-radius: 10px;
}

.taxs_div_new_created>ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #fff;
    padding: 20px 40px;
    border-radius: 60px;
    border: 2px solid #fff;
    border-style: dashed;
    margin-bottom: 9px;
    transition: 0.3s all;
}

.taxs_div_new_created>ul>li {
    font-size: 16px;
    color: #000;
    font-weight: bold;
    width: 50%;
    text-align: left;
}

.taxs_div_new_created>ul:hover {
    border-color: #43adf1;
}

.taxs_div_new_created>ul>li:last-child {
    text-align: end;
}

.taxs_div_new_created.scnd__divv>ul>li {
    text-align: left;
    font-size: 15px;
}

.taxs_div_new_created.scnd__divv>ul>li:last-child {
    text-align: end;
}

.taxs_div_new_created.scnd__divv>ul>li:nth-child(3) {
    text-align: center;
}

.taxs_div_new_created.scnd__divv>ul>li:nth-child(2) {
    text-align: center;
}

.taxs_div_new_created.scnd__divv>ul:last-child li:last-child {
    text-align: left;
}

.final_thoughts_div>h3>span {
    font-size: 19px;
}

.navbr .dropdown-menu.dropdown-littlebig.new_srcc>ul>li>a {
    position: relative;
}

.navbr .dropdown-menu.dropdown-littlebig.new_srcc>ul>li>a:after {
    position: absolute;
    content: "";
    background-color: #3853a4;
    width: 7px;
    height: 7px;
    left: 15px;
    top: 8px;
    border-radius: 50%;
}

.navbr .dropdown-menu.dropdown-littlebig.new_srcc>ul>li:last-child a:after {
    display: none;
}

/*new table design page in alabama*/

.new_tble_wrpp {
    background-color: #ecf4ff;
    padding: 60px 20px;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.new_tble_wrpp>ul {
    justify-content: space-between;
    width: 90%;
}

.new_tble_wrpp>ul>li {
    font-size: 20px;
    color: #4194ef;
    font-family: 'avenir-black';
}

.new_tble_wrpp>.row {
    background-color: #fff;
    padding: 30px 10px;
    border-radius: 10px;
    width: 100%;
    margin: 0 auto;
    position: relative;
}

.new_tble_wrpp>.row h6 {
    font-size: 17.82px;
    color: #000;
    font-weight: 600;
    margin-bottom: 28px;
}

.new_tble_wrpp>.row span {
    font-size: 15px;
    color: #000;
    display: block;
    margin-bottom: 20px;
    line-height: 21px;
}

.new_tble_wrpp>.row span:last-child {
    margin: 0;
}

.new_tble_wrpp>.row:after {
    position: absolute;
    content: "";
    background-color: #f0f0f0;
    width: 100%;
    height: 1px;
    left: 0;
    top: 25%;
}

.new_tble_wrpp>.row:before {
    position: absolute;
    content: "";
    background-color: #f0f0f0;
    width: 100%;
    height: 1px;
    left: 0;
    top: 47%;
}

.new_tble_wrpp>.row .col-md-3:nth-child(2) span:first-child {
    margin-bottom: 63px;
}

.new_tble_wrpp>.row .col-md-3:nth-child(3) span:first-child {
    margin-bottom: 43px;
}

.new_tble_wrpp>.row h6:last-child {
    margin: 0;
}

.new_tble_wrpp>.row .col-md-3:last-child span:nth-child(1) {margin-bottom: 50px;}

.new_tble_wrpp>.row .col-md-3:last-child span:nth-child(2) {margin-bottom: 40px;}

/*new table design page in alabama*/

.expration-img {
    text-align: right;
}
.step-content label.sdnt {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 13px;
    line-height: 19px;
}

.step-content label.sdnt input[type="checkbox"] {
    width: auto;
    margin-right: 20px;
}

.onlymob{
    display:none;
}

