/********** Template CSS **********/
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Archivo:ital,wght@0,100..900;1,100..900&display=swap');
:root {
    --primary: #202020;
    --secondary: #015392;
    --light: #fff;
    --dark: #202020;
    --black-color:#15233C;
}
body{
    font-family: "Poppins", sans-serif;font-size: 16px;
}
p{font-size: 16px;line-height: 30px;color:var(--primary);}
h2{font-size: 40px;line-height:1.2;color:var(--primary);margin-bottom: 2.2rem;font-family:"Archivo", sans-serif;}
.back-to-top {
    position: fixed;
    display: none;
    right: 20px;
    bottom: 20px;
    z-index: 99;
    width: 40px;
    height: 40px;
    background: var(--primary);
    border-radius: 50px;
    text-align: center;
    line-height: 42px;
    color: #fff;
}
.back-to-top:hover{background: var(--secondary);color: #fff;}
select {
    color: #666;
    
    height: auto;
    border-width: 1px;
    border-style: solid;
    border-color: #e9e8f0;
    border-radius: 2px;
    background: #e9e8f0;
    box-shadow: none;
    box-sizing: border-box;
    transition: all .2s linear;width: 100%;
}
.select-form{
    border-radius: 25px;
    background: #e9e8f0;
    border-color: #e9e8f0;
    padding: 0.75em;width: auto;    max-width: 250px;margin: 2rem 0;
}

/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}
.spinner-grow{color:var(--secondary);}

/*** Button ***/
.btn {
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-outline-primary:hover,
.btn.btn-secondary,
.btn.btn-outline-secondary:hover {
    color: #FFFFFF;
}

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

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

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

/* Top Bar*/
.top-bar{background: var(--secondary);color: var(--light);position: relative;}
.top-bar p{margin: 0; padding-top: 0.5rem; padding-bottom: 0.5rem;font-weight: 500;font-size: 12px;}
.top-bar p span{position: relative;z-index: 3;}
.top-bar .classSkew{position: relative;}
.top-bar:after {
    width: 50%;
    background: #991323;
    content: '';
    display: inline-block;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
}
.classSkew:before {
    width: 60px;
    background: #991323;
    content: '';
    display: inline-block;
    position: absolute;
    left: -16px;
    top: 0;
    bottom: 0;
    transform: skewX(-30deg);
}

.header-search {
    width: 236px;
    background: var(--light);
    border: 1px solid #858585;
    display: flex;
    border-radius: 50px;
}
.header-search input {
    width: 100%;
    height: 42px;
    background: transparent;
    padding-left:1rem;
    color: var(--black-color);
    border: none;outline: none;
}
.header-search button {
    background: transparent;
    border: none;
    outline: none;
    color: #858585;
    width: 44px;
}
/*** Navbar ***/
.header{position: relative;z-index: 999;background: hsla(0, 0%, 100%, 0.60);}
.header img{max-width: 300px;}
.carousel .carousel-caption:after{background: transparent;}
.navbar{max-width: 1320px;margin: auto;}
.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

.navbar .navbar-brand img {
    max-height: 60px;
}
@media screen and (min-width:992px){
    .navbar .navbar-brand img {
        position: absolute;top: 0;max-height: initial;
    }
}
.navbar .navbar-nav a {
    margin-left: 25px;
    padding: 10px 0;
    color: #fff;
    font-weight: 500;
    outline: none;font-weight: 500;
}

.navbar .navbar-nav a:hover,
.navbar .navbar-nav li.current-menu a{
    color: #fbf22f;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (max-width: 991.98px) {
    .navbar .navbar-brand img {
        max-height: 45px;
    }

    .navbar .navbar-nav {
        margin-top: 20px;
        margin-bottom: 15px;
    }

    .navbar .nav-item .dropdown-menu {
        padding-left: 30px;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        right: 0;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.heroBox{padding:4rem 0;background: #53483B;}
.heroBox h1{color: var(--light);font-weight: 500;position: relative;z-index: 1;max-width: 1000px;    margin-left: auto;
    margin-right: auto;text-align: center;font-size: 54px;margin-bottom: 3rem;}
.heroBox img{border-radius: 100px 0 0 0;width: 100%;}
.hero-section {
      background: url('../img/hero.jpg') no-repeat center center;
      background-size: cover;
      color: #fff;
      position: relative;
      min-height: 96vh;
      display: flex;
      align-items: center;margin-top: -86px;
    }
    .hero-overlay {
      background: url('../img/arrow_shade.png') no-repeat left center ;
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
    .hero-content {
      position: relative;
      z-index: 2;
    }
    .hero-content h5{font-size: 42px;letter-spacing: 19px; font-family: "Archivo", sans-serif;color: #000;text-transform: uppercase;}
    .hero-content h1 {
      font-size:60px;color: #000;
      font-weight:500;text-transform: uppercase;
    }
.hero-section h3 {
    font-size: 24px;
    font-weight: 500;
}
.btns-bx {display: flex;align-items: center;gap: 2rem;margin-top: 2rem;}
#locForm{
    background: var(--secondary);
    padding: 3rem 2rem;
    text-align: left;
    border-radius:20px
}
#locForm h3{
    color: var(--light);font-size: 30px;
}
#locForm p{font-size: 14px;}
#locForm h4{color: var(--light);font-weight: bold;font-size: 14px;}
.location-input-box{background: var(--light);border-radius: 50px;height: 60px;  display: grid;
    align-items: center;
    justify-content: space-around;
    grid-template-columns: calc(100% - 50px) 50px;
    padding: 0 0.5rem 0 1rem;
}
.location-input-box input{
    border: none;outline: none;
    width: 100%;
}
.location-input-box button{
    background: var(--primary);
    color: var(--light);
    border: none;
    outline: none;
    border-radius: 50%;
    width: 50px;
    height: 48px;
}
#header-carousel .carousel-item img {background: #15233C;}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
    }
    
    
    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.page-header {
    background: url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    font-weight: 500;
}

.page-header .breadcrumb-item a,
.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: #696E77;
}

.page-header .breadcrumb-item a:hover,
.page-header .breadcrumb-item.active {
    color: var(--primary);
}


/*** Facts ***/
@media (min-width: 992px) {
    .container.facts {
        max-width: 100% !important;
    }

    .container.facts .facts-text {
        padding-left: calc(((100% - 960px) / 2) + .75rem);
    }

    .container.facts .facts-counter {
        padding-right: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .container.facts .facts-text  {
        padding-left: calc(((100% - 1140px) / 2) + .75rem);
    }

    .container.facts .facts-counter  {
        padding-right: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .container.facts .facts-text  {
        padding-left: calc(((100% - 1320px) / 2) + .75rem);
    }

    .container.facts .facts-counter  {
        padding-right: calc(((100% - 1320px) / 2) + .75rem);
    }
}

.container.facts .facts-text {
    background: url(../img/blue_bg.jpg) center repeat;
    background-size: cover;
    text-align: center;
    padding-left:4rem ;
    padding-right:4rem ;
}
.container.facts .facts-counter.red-bg{
    background: url(../img/red_bg.jpg) center repeat;
    background-size: cover;
    text-align: center;
    padding-left:4rem ;
    padding-right:4rem ;
}
.container.facts h2{color: #fff;}
.container.facts p{color: #fff;font-size: 16px;line-height: 30px;}
.container.facts p a{color: #bf1a2e;font-weight: bold;}
.container.facts .facts-counter {
    background: linear-gradient(rgba(255, 255, 255, .9), rgba(255, 255, 255, .9)), url(../img/carousel-2.jpg) center right no-repeat;
    background-size: cover;
}

.container.facts .facts-text .h-100,
.container.facts .facts-counter .h-100 {
    padding: 6rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.outline-btn {
    display: inline-block;
    padding: 15px 40px;
    border: 2px solid #ffff;
    border-radius: 50px;
    font-size: 18px;
    text-transform: uppercase;
    font-weight: bold;
    color: #fff;
    transition-duration: 0.3s;
}
.facts .outline-btn:hover{
    background: #bf1a2e;color: #fff;
} 


/*about911*/
.about911{
    background: url(../img/curve.png) center bottom no-repeat #fff;
}
.about911 h2{font-size: 3rem;color:#26215e;margin-bottom: 2rem;}
.about911 p{margin-bottom: 2rem;color:#333333}
.default-btn {
    display: inline-block;
    padding: 15px 40px;
    border: 2px solid #bf1a2e;
    border-radius: 50px;
    font-size: 18px;
    text-transform: uppercase;
    font-weight: bold;
    color: #fff ;
    transition-duration: 0.3s;
    background: #bf1a2e;
}
.default-btn:hover{
    background: #262262;color: #fff;
} 


/*why-choose-us*/
.why-choose-us{text-align: center;padding: 4rem 0;}
.why-choose-us h2{margin-bottom: 1rem;}
.why-choose-us h4{margin-bottom: 1.2rem;font-size: 28px;color: var(--secondary);}
.why-choose-us .row.line{position: relative;align-items: center;}
.why-choose-us .line:before { background: url(../img/line.svg) center top no-repeat; content: ''; width:882px; position: absolute; 
    height: 195px; margin: auto; left: 0;right: 0;}
.why-choose-us .row.line .col-md-4 {text-align: center; z-index: 9;}

/*** Testimonial ***/
.customer-says{
    background: url(../img/curve-rotate.png) center bottom no-repeat #fff;
    padding-top: 5rem;
}
.customer-says h2{font-size: 3rem;color:#26215e;margin-bottom: 2rem;}
.animated.pulse {
    animation-duration: 1.5s;
}

.testimonial-carousel .owl-nav {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin: 0 5px;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    border-radius: 10px;
    font-size: 22px;
    transition: .5s;
    background: url(../img/arrow-top.png) center no-repeat;
}
.testimonial-carousel {
    padding-bottom: 100px;
}
@media screen and (min-width: 992px){
    .owl-carousel .owl-stage-outer {
        margin-right: 100px;
    }
    .testimonial-item{padding-right: 100px;}
    .testimonial-carousel .owl-nav {
        margin-top: 0;
        flex-direction: column;
        gap: 12px;
        position: absolute;
        right: 0;
        top:0;
    }
    .testimonial-carousel .owl-nav .owl-next{
        transform: rotate(180deg);
    }
    .owl-next.disabled,.owl-prev.disabled{
        filter: grayscale(1);
        opacity: 0.5;
    }

}


/*faq-box*/
.faq-box{background: #F3F5F6;padding: 4rem 0;}
.faq-box .card{background: transparent;}
.faq-box .card-header {
    background: transparent;
    display: flex;
    align-items: center;
    border: none;padding: 1rem 0;
}
.faq-box .card-body{padding: 0 0 1rem;}
.faq-box .collapsible-link {
    width: 100%;
    position: relative;
    text-align: left;
    padding-left: 0;
    padding-top: 0;
    outline: none;
    border:none;
    background: transparent;
    font-size: 18px;
    font-weight: 600;
    color: var(--primary);
  }
  .faq-box .collapsible-link:focus{box-shadow: none;}  
  .faq-box .collapsible-link::after {
    content: "+";
    position: absolute;
    top: 50%;
    right:  0.8rem;
    transform: translateY(-50%);
    display: block;
    font-size: 24px;
    font-weight: 500;
    width: 30px;
    height: 30px;
    text-align: center;
    border-radius: 50%;
    line-height: 28px;
    color: var(--primary);
    transition: 0.3s;
  }
  
  .faq-box .collapsible-link[aria-expanded="true"]::after {
    content: "+";line-height: 22px; transform: translateY(-50%) rotate(45deg);
  }
  .accordion .card {
    margin-bottom: 1rem;    border: 1px solid #f1f1f1;
    border-radius: 0;
    border-top: 2px solid #D7DEF0;margin: 0;
}
/* Location */
.location-box{background: url(../img/curve_color.png) center bottom no-repeat #352f7d;padding: 5rem 0 0 0;color:#fff}
.location-box h3{ color:#fff;font-size: 30px;font-weight: 500;margin-bottom: 1rem;}
.location-box .button-area{margin-top: auto;padding-top: 1rem;}
.location-box .col-md-4{display: flex;flex-direction: column;}

/*** Footer ***/
.footer {
    color: #A7A8B4;   
background: #01172F;
    background-size: cover;
    padding-top: 2rem;
}
footer p{color: rgba(255, 255, 255, 0.58);

font-family: Inter;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: normal;}
.footer .max-940{max-width: 940px;margin: auto;}
.footer h3{ color:#fff;font-size: 30px;font-weight: 500;margin-bottom:2rem;border-bottom: 2px solid #fff;padding-bottom: 1rem;}
.footer h4{color: #fff;font-size: 18px;font-weight: 500;}
.footer ul{margin: 0 0 1rem;padding: 0;}
.footer ul li{list-style: none;}
.footer ul li a{color: #bebcd3;font-size: 14px;line-height: 28px;text-decoration: none;}
.footer ul li a:hover{color: #bf1a2e;}
.footer .right-section{text-align: center;}

.footer .right-section h3{text-align: center;border: none;padding: 0;margin-bottom: 1rem;margin-top: 3rem;}
.footer .right-section ul{margin: 0;padding: 0;display: flex;align-items: center;justify-content: center;gap:10px}
.footer .right-section ul li a{color: #26215e;width: 40px;height: 40px;border-radius: 50px;background: #fff;display: flex;align-items: center;justify-content: center;}
.footer .right-section ul li a:hover{color: #bf1a2e;}

.copywright {
    margin-top: 1rem;
    padding-top: 1rem;
    text-align: center;
    padding-bottom: 1rem;font-size: 14px;
    background: #151515;
}


.common_btn{background-color: #015392;padding: 5px 25px;color: #fff;border-radius: 5px;transition-duration: 0.3s;
    min-height: 52px;display: inline-flex;align-items: center; justify-content: center; gap: 6px;text-decoration: none;}
.common_btn:hover{opacity: 0.8;}
.common_btn.invert_btn{color: #000;background-color: #fff;}
.blk_btn{background-color: #000;}

.custom_header { display: flex; align-items: center;justify-content: space-between;}

tspan,rect {display: none;}

.wsmmre{background: #F5F5F5;padding: 4rem 0;}
.wsmmre h2{text-transform: uppercase;}
.wsmmre .box { height: 100%;display: flex;flex-direction: column;gap: 5px;border-radius: 15px;transition: 0.3s;position: relative;}
.wsmmre .box img{width: 100%;border-radius: 20px !important;max-width: calc(100% - 40px);}
.wsmmre .box p{margin: 0;font-size: 18px;font-weight: 400;color:var(--primary);line-height: 1.4;text-align: left;margin-bottom: .8rem;}
.wsmmre .box .statusList{position: absolute;right: 0;list-style: none;    padding: 0; margin: 0;top: 0;bottom: 0;display: flex;
    flex-direction: column;justify-content: center;}
.wsmmre .box .statusList li{display: flex; gap: 10px; background: rgba(255, 255, 255, 0.5); border-radius: 5px; margin: 10px 0;
    backdrop-filter: blur(25.399999618530273px);align-items: center;padding-right: 20px;padding-left: 10px;border:1px solid #AC8829}
.statusList h5 { font-weight: 600;font-size: 28px;}
    .stats-icon {
      font-size: 52px;
    }
    .red { color: #e74c3c; }
    .yellow { color: #f1c40f; }
    .green { color: #27ae60; }
    

.logos{padding: 4rem 0;}
.logo-carousel .owl-item img{width: auto;max-width: 100%;margin: auto;}
.overlayContentAbout{
    position: absolute;
    left: 0;
    bottom: 0;
}
.overlayContentAboutbox{
    border: 1px solid #FFF;
background: rgba(255, 255, 255, 0.89);
backdrop-filter: blur(12px);padding:30px;max-width: 950px;
}
.overlayContentAboutbox h6{font-size: 18px;font-weight: 400; letter-spacing: 14px;text-transform: uppercase;}
.overlayContentAboutbox h3{font-size: 36px;}

@media screen and (min-width: 992px) {
    .logo-carousel .owl-stage-outer {
        margin-right: 0;
    }
}

.contact-section{ padding: 4rem 0; background: url(../img/Frame28.png) center top no-repeat #706e6a10;}
.contact-section a{
    color: #015392;
    text-decoration: none;
}
.contact-section a:hover{
    color: #015392;
    text-decoration: underline;
}

.ourCategories{padding: 4rem 0 5rem;}
.categoryBox{
    box-shadow: 0 3px 57px #79797927;
    /* border: 1px solid #0082c6; */
    border-radius: 20px;
    padding-top: 2rem;
    padding-bottom: 2rem;
}
 .categoryBox .box {
    display: flex;
    justify-content: space-between;
    width: 100%;
    height: auto;
    padding: 0px 20px;
    transition: all 0.3s;
    color: white;
    
  }
  .categoryBox .box .name {
    order: -1;
  }

  .categoryBox .box .hover-content {
    font-size: 0em;
    line-height: 1.5;
    height: 0;visibility: hidden;
  }
  .categoryBox .box:hover {
    height: auto;
    transition: all 0.3s;
    width: 104%;
    margin-left: -2%;
    background: #fff;
    box-shadow: 0 3px 57px #79797927;border-radius: 15px;
  }
  .categoryBox .box:hover  .hover-content {
    font-size: 0.7em;
    transition: all 0.9s;
    height: auto;visibility: visible;background: #fff;border-radius: 15px;
  }
  .categoryBox .box:hover  .hover-content{display: flex;gap: 50px;align-items: center;}
  .categoryBox .box:hover  .hover-content p{color: #000;}
  .categoryBox .box:hover  .hover-content h4{color:var(--secondary);font-size: 36px;font-weight: 600;}
  .box-header {display: flex;align-items: center;justify-content: space-between;padding: 1rem;}
  .box-header h4{color:var(--secondary);font-size: 36px;font-weight: 600;}

.categoryBox .box:hover .box-header{opacity: 0;visibility: hidden;height: 0;padding: 0;}


.save-money{ background:#C19C58;padding: 0;}

.save-money iframe{width:100%;border-radius: 0;overflow: hidden;display: block;}
.money-form{padding: 3rem;height: 100%;}
.money-form h2{font-size: 48px;font-weight: 500;text-transform: uppercase;}
.money-form form {
    gap: 25px;
    display: flex;
    flex-direction: column;
}
.money-form ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.money-form ul li {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 10px;
}
.money-form ul li img{width: 30px; }
.money-form ul li p{margin: 0;line-height: 1.2;font-size: 28px;color: #fff;font-weight: 300;}
.money-form ul li a{line-height: 1.2;font-size: 28px;color: #fff;font-weight: 300;text-decoration: none;}


.map-section .money-form{text-align: left;box-shadow: none;padding: 0;}

.map-section input[type="text"],.map-section input[type="email"],.map-section input[type="number"],.map-section textarea.form-control{background:#F2F2F2}


.servicesBox{padding: 4rem 0;background:url(../img/services.png) center top no-repeat #706e6a10;}
.servicesBox h2{text-align: center;}
.service-wrap { display: flex; align-items: center; justify-content: center; gap: 40px; flex-wrap: wrap;}
.service-wrap .service-item {background: #fff;border-radius: 100px 0 0 0;text-align: center;display: flex;flex-direction: column;gap: 10px;padding-bottom: 22px;}
.service-wrap .service-item h4,.service-wrap .service-item p{margin: 0;line-height: 1;}
.service-wrap .service-item img{border-radius: 100px 0 0 0;margin-bottom: 10px;}

/*client-testimonial*/
.client-testimonial{position: relative;padding: 4rem 0;background: url(../img/testimonial_clients.jpg) center top no-repeat #FBFAFA;background-size: cover;overflow: hidden;clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);}

.client-testimonial .container{position: relative;}

.testimonial-wrap{padding: 40px;box-shadow: 0 0 20px #0000000c;margin: 1rem;background: #fff;border-radius: 10px;}
.testimonial-header{display: flex;gap: 20px;align-items: center;margin-bottom: 5px;}
.testimonial-header img{border-radius: 100%;width: 80px;height: 80px;border: 3px solid rgba(62, 102, 223, 0.3);}
.testimonial-header h4{background: var(--secondary);-webkit-background-clip: text;
  -webkit-text-fill-color: transparent;font-size: 20px;font-weight: 500; margin-bottom:0;}
.testimonial-wrap p{margin: 0;font-size: 15px;color: #202020;}
  .testimonial-header p{margin: 0;font-size: 15px;color: #808080;}


  .swiper-button-next:after, .swiper-button-prev:after{font-size: 14px;background: var(--secondary);-webkit-background-clip: text;
    -webkit-text-fill-color: transparent;    font-weight: 800;}
input[type="text"],input[type="email"],input[type="tel"],input[type="number"],textarea.form-control{min-height: 52px;background: #F7FAF9;border-radius: 5px;border: none;outline: none;}
input[type="submit"]{
    background-color: var(--secondary);
    padding: 10px 40px;box-shadow: 0 8px 22px #00000025;
    color: #fff;border-radius: 30px 0;border: none;outline: none;transition-duration: 0.3s;
}
input[type="submit"]:hover{ opacity: 0.8;}
.save-money h2{color: #fff;}
.world-section .container {max-width: 800px;}
.world-section .container h2,.world-section .container p{color: #fff;}
.with-white{background: #fff;padding: 50px !important;}

@media screen and (max-width: 767px){
    .custom_header{flex-direction: column;}
    .heroBox h1 {font-size: 38px;padding-left: 1rem ;padding-right: 1rem;}
    .hero-section,.heroBox img,.wsmmre .box img,.service-wrap .service-item img { border-radius: 60px 0;}
    h2,.money-form h2 {font-size: 34px;}
    .hero-section {  padding-right: 0;}
    .wsmmre .box {    margin-bottom: 2rem;    }
    .money-form ul li p,.money-form ul li a{line-height: 1.2;font-size: 20px;color: #fff;font-weight: 300;text-decoration: none;}
    .hero-content h5 {font-size: 30px;letter-spacing: 10px;}
    .overlayContentAboutbox{padding:20px;}
    .about-bg img{height: 600px;}
    .world-bg img{height: 500px;}
    .contact-section{padding-top: 0; padding-bottom: 20px;}
}   
@media screen and (max-width: 767px){
    body { overflow-x: hidden;}
    .hero-overlay { background-size: 80%;}
    .common_btn {padding: 5px 15px;}
    .btns-bx {gap: 1rem;flex-direction: column;}
    .stats-icon { font-size: 40px;}
    .wsmmre .box .statusList li{margin:5px 0;}
    h2 { margin-bottom: 1.2rem;}
    p{font-size: 15px !important;}
    .about-bg img{height: auto;}
    .world-bg img{height: auto;}
    .overlayContentAbout{position: initial;}
    .hero-section {border-radius: 0;    }
    .world-bg {display: flex; align-items: center;justify-content: center;}
    .world-bg img{height: 500px;width:auto !important}
    .wsmmre{padding-bottom: 10px;}
    .header { padding: 10px 0;}
    .hero-section{margin-top: -212px; padding-top: 146px;}
    .hero-content h1 {font-size: 40px;}
} 
/* Gravity Form */

#input_1_1_3, #input_1_1_6, #input_1_4, #input_1_3, #input_1_5 {
    min-height: 52px;
    background: #F7FAF9;
    border-radius: 5px;
    border: none;
    outline: none;
}
#gform_fields_1 {
    row-gap: 20px;
}
#gform_submit_button_1 {
    background-color: #015392;
    padding: 5px 25px;
    color: #fff;
    border-radius: 5px;
    transition-duration: 0.3s;
    min-height: 52px;
    display: inline-flex
;
    align-items: center;
    justify-content: center;
    gap: 6px;
    text-decoration: none;
}