
/*** Spinner Start ***/
#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 End ***/

.back-to-top {
    position: fixed;
    right: 60px !important;
    bottom: 30px !important;
    display: flex;
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 99;
}

/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50%;
}

.btn.btn-primary {
    background: var(--bs-secondary) !important;
    color: var(--bs-white) !important;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    transition: 0.5s;
}

.btn.btn.btn-primary:hover {
    background: var(--bs-primary) !important;
    color: var(--bs-secondary);
    border: 1px solid var(--bs-primary) !important;
}

.btn.btn-secondary {
    background: transparent;
    color: var(--bs-secondary);
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    border: none;
    transition: 0.5s;
}

.btn.btn-secondary:hover {
    color: var(--bs-primary) !important;
}


/*** Section Title Start ***/
.section-title {
    max-width: 900px;
    text-align: center;
    margin: 0 auto;
}

.section-title .sub-style {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-primary);
}

.section-title .sub-style::before {
    content: "";
    width: 100px;
    position: absolute;
    bottom: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-bottom: -6px;
    margin-left: -100px;
    border: 1px solid var(--bs-secondary) !important;
}

.section-title .sub-style::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-top: -8px;
    margin-left: -50px;
    border: 1px solid var(--bs-primary) !important;
}

.sub-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-primary);
}

.sub-title::before {
    content: "";
    width: 100px;
    position: absolute;
    bottom: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-bottom: -8px;
    margin-right: -100px;
    border: 1px solid var(--bs-secondary) !important;
}

.sub-title::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-top: -6px;
    margin-right: -50px;
    border: 1px solid var(--bs-primary) !important;
}


/*** Topbar Start ***/
.fixed-top .container {
    transition: 0.5s;
}

.topbar {
    padding: 2px 10px 2px 20px;
    background: var(--bs-primary) !important;
}

.topbar a,
.topbar a i {
    transition: 0.5s;
}

.topbar a:hover,
.topbar a i:hover {
    color: var(--bs-secondary) !important;
}


@media (max-width: 768px) {
    .topbar {
        display: none;    
    }
}
/*** Topbar End ***/

/*===================================*/
/*New MEGAMENU STYLES*/
/*===================================*/
 /*Default megamenu styles */
.navbar .dropdown-menu {
  background: #fff;
  border: 1px solid #dee2e6;
  z-index: 1000;
  width: 100%;
  flex-wrap: wrap;
  padding: 1rem;
  box-shadow: 0 8px 5px rgba(0, 0, 0, 0.15);
}

 /*Columns */
.navbar .dropdown-menu .list-group {
  flex: 1;
  min-width: 200px;
  margin: 0 0.5rem;
}

 /*Image */
.navbar .dropdown-menu .d-flex {
  flex: 1 0 100%;
  justify-content: center;
  padding-top: 1rem;
}

 /*Desktop hover effect */
@media (min-width: 980px) {
  .navbar .nav-item .dropdown-menu {
    display: flex;
    transform: rotateX(-75deg);
    transform-origin: 0% 0%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    position: absolute;
    top: 100%;
    left: 0;
  }

  .navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    opacity: 1;
    visibility: visible;
  }
}

 /*Mobile behavior: show on click */
@media (max-width: 979.98px) {
  .navbar .nav-item .dropdown-menu {
    display: none;
    flex-direction: column;
    opacity: 1 !important;
    visibility: visible !important;
    position: static;
    padding: 0;
  }

  .navbar .nav-item.show .dropdown-menu {
    display: flex !important;
     /*Show when toggled */
  }

  .navbar .dropdown-menu .list-group {
    width: 100%;
  }

  .navbar .dropdown-menu .d-flex img {
    width: 80%;
  }
}

/*===================================*/
/*New MEGAMENU STYLES ENDS*/
/*===================================*/


/*** Navbar ***/

.navbar-light .navbar-nav .nav-link {
    font-family: 'Poppins', sans-serif;
    position: relative;
    margin-right: 25px;
    padding: 35px 0;
    color: var(--bs-primary) !important;
    font-size: 17px;
    font-weight: 400;
    outline: none;
    transition: .5s;
}

.sticky-top .navbar-light .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--bs-primary) !important;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--bs-secondary) !important;
}

.navbar-light .navbar-brand img {
    max-height: 60px;
    transition: .5s;
}

.sticky-top .navbar-light .navbar-brand img {
    max-height: 45px;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
}
 .navbar .nav-item .dropdown-menu {
     visibility: hidden;
 }

  .navbar .nav-item .dropdown-menu ul {
    list-style: none !important;
}
    
   .dropdown-menu a:hover {
    background: var(--bs-light);
    color: var(--bs-secondary);
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light) !important;
    transition: .5s;
    opacity: 1;
}

@media (max-width: 1200px) {
    .sticky-top {
        position: relative;
        background: var(--bs-white);
    }

    .navbar.navbar-expand-lg .navbar-toggler {
        padding: 10px 20px;
        border: 1px solid var(--bs-primary) !important;
        color: var(--bs-primary);
    }

    .navbar-light .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid #DDDDDD;
    }

    .navbar-light .navbar-nav .nav-link,
    .sticky-top .navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
        margin-left: 0;
        color: var(--bs-dark) !important;
    }

    .navbar-light .navbar-brand img {
        max-height: 45px;
    }
}

@media (min-width:  991.98px) {
    .sticky-top .navbar-light {
        background: var(--bs-light) !important;
    }

    /*** Top and Bottom borders go out ***/
    .navbar-light .navbar-nav .nav-link:after,
    .navbar-light .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        top: 30px;
        bottom: 30px;
        left: 0px;
        width: 100%;
        height: 2px;
        background: var(--bs-primary);
        opacity: 0;
        transition: all 0.5s;
    }

    .navbar-light .navbar-nav .nav-link:before {
        bottom: auto;
    }

    .navbar-light .navbar-nav .nav-link:after {
        top: auto;
    }

    .navbar-light .navbar-nav .nav-link:hover:before,
    .navbar-light .navbar-nav .nav-link.active:before {
        top: 20px;
        opacity: 1;
    }

    .navbar-light .navbar-nav .nav-link:hover::after,
    .navbar-light .navbar-nav .nav-link.active::after {
        bottom: 20px;
        opacity: 1;
    }
}

#searchModal .modal-content {
    background: rgba(240, 245, 251, 0.5);
}
/*** Navbar End ***/


/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
    background: linear-gradient(rgba(0, 58, 102, 0.9), rgba(0, 58, 102, 0.8)), url(../img/contact-banner.jpg);
    background-position: center top;
    background-repeat: no-repeat;
    background-attachment: initial;
    background-size: cover;
    padding: 100px 0 60px 0;
}
/*** Single Page Hero Header End ***/


/*** Carousel Hero Header Start ***/
/*.carousel-header .carousel-control-prev .carousel-control-prev-icon,*/
/*.carousel-header .carousel-control-next .carousel-control-next-icon {*/
/*    width: 4rem;*/
/*    height: 4rem;*/
/*    margin-left: -60px;*/
/*    border-radius: 50%;*/
/*    background-size: 60% 60%;*/
/*    transition: 0.5s;*/
/*}*/

/*.carousel-header .carousel-control-next .carousel-control-next-icon {*/
/*    margin-left: 0;*/
/*    margin-right: -60px;*/
/*}*/

/*.carousel-header .carousel .carousel-indicators {*/
/*    padding-bottom: 0;*/
/*    transition: 0.5s;*/
/*}*/


/*.carousel-header .carousel .carousel-indicators li,*/
/*.carousel-header .carousel .carousel-indicators li,*/
/*.carousel-header .carousel .carousel-indicators li {*/
/*    width: 8px;*/
/*    height: 8px;*/
/*    border: 8px solid var(--bs-primary);*/
/*    border-radius: 50%;*/
/*    margin-right: 30px;*/
/*    transition: 0.5s;*/
/*}*/

/*.carousel-header .carousel .carousel-indicators li.active {*/
/*    width: 8px;*/
/*    height: 8px;*/
/*    border: 8px solid var(--bs-secondary);*/
/*}*/

/*.carousel-header .carousel-inner .carousel-item {*/
/*    position: relative;*/
/*    min-height: 100vh */
/*}*/

/*.carousel-header .carousel-inner .carousel-item img {*/
/*    position: absolute;*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    object-fit: cover;*/
/*}*/

/*.carousel-header .carousel-inner .carousel-item .carousel-caption  {*/
/*    position: absolute;*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    top: 0;*/
/*    left: 0;*/
/*    display: flex;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*    text-align: center;*/
/*    background: linear-gradient(rgba(0, 0, 0, .6), rgba(0, 0, 0, 0.6));*/
/*    background-size: cover;*/
/*}*/


@media (max-width: 768px) {
    .carousel-header {
        height: 700px !important;
    }

    .carousel-header .carousel-control-prev .carousel-control-prev-icon,
    .carousel-header .carousel-control-next .carousel-control-next-icon {
        margin-top: 500px;
    }

    .carousel-header .carousel-control-prev .carousel-control-prev-icon {
        margin-left: 0px;
    }

    .carousel-header .carousel-control-next .carousel-control-next-icon {
        margin-right: 0px;
    }

    .carousel-header .carousel .carousel-indicators {
        padding: 0;
    }
}
/*** Carousel Hero Header End ***/


/*** Counter Facts Start ***/
.counter-facts {
    background: linear-gradient(rgba(255, 255, 255, .9), rgba(255, 255, 255, 0.8)), url(../img/bg-counter.jpg);
    background-size: cover;
    background-attachment: fixed;
    background-position: center center;
    background-repeat: no-repeat;
}

.counter-facts .counter {
    position: relative;
    text-align: center;
    width: 200px;
    min-height: 215px;
    padding: 10px 15px;
    margin: 0 auto;
    border-radius: 100px;
    box-shadow: 0 8px 5px rgba(0, 0, 0, 0.2);
    background: var(--bs-white);
}

.counter-facts .counter:before {
    content: "";
    position: absolute;
    height: 105px;
    width: 100%;
    left: 0;
    top: 0;
    border-radius: 10px 10px 0 0;
    background-color: var(--bs-primary);
    
}
.counter-facts .counter .counter-icon {
    position: relative;
    width: 120px;
    height: 100px;
    margin: 0 auto 10px;
    border-radius: 10px 10px 0 0;
    transform: translateY(-20px);
    font-size: 50px;
    line-height: 90px;
    color: var(--bs-secondary);
    background: rgba(1, 143, 252, 0.5);
    clip-path: polygon(0% 0%, 100% 0, 100% 70%, 50% 100%, 0 70%);
}
.counter-facts .counter .counter-icon:before {
    content: "";
    position: absolute;
    width: 120px;
    height: 90px;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 10px 10px 0 0;
    background: rgba(0, 58, 102, 0.5);
    z-index: -1;
    clip-path: polygon(0% 0%, 100% 0, 100% 70%, 50% 100%, 0 70%);
}
.counter-facts .counter:hover .counter-icon i {
    transform: rotate(360deg);
    transition: all 0.3s ease;
}
.counter-facts .counter h3 {
    color: var(--bs-primary);
    font-size: 17px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0 0 5px 0;
}
.counter-facts .counter .counter-value {
    font-size: 30px;
    font-weight: 700;
    display: block;
    color: var(--bs-secondary);
}

@media screen and (max-width: 1200px) {
    .counter-facts .counter { margin-bottom: 40px; 
    }
}
/*** Counter Facts End ***/


/*** service Start ***/
.service .service-item {
    position: relative;
    overflow: hidden;
}

.service .service-item .service-inner .service-title {
    position: relative;
    margin-top: -30px;
    text-align: center;
    transition: 0.5s;
}

.service .service-item .service-inner .service-title .service-content {
    position: absolute;
    bottom: -100%; 
    left: 0;
    margin-left: 30px;
    margin-right: 30px;
    text-align: center;
    border-radius: 10px;
    background: var(--bs-primary);
    opacity: 0;
    transition: 0.5s;
}

.service .service-item:hover .service-inner .service-title .service-content {
    bottom: 0;
    opacity: 1;
}

.service .service-item .service-inner .service-title .service-content a h4 {
    border-bottom: 1px solid rgba(256, 256, 256, .1);
}

.service .service-item .service-inner .service-title .service-title-name {
    transition: 0.5s;
}

.service .service-item:hover .service-inner .service-title .service-title-name {
    opacity: 0;
}

.service .service-item .service-inner .service-img {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.service .service-item .service-inner .service-img::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    border-radius: 10px;
    background: rgba(255, 255, 255, .5);
    transition: 0.5s;
    opacity: 0;
}

.service .service-item:hover .service-inner .service-img::after {
    height: 100%;
    opacity: 1;
}

.service .service-item .service-inner .service-img img {
    transition: 0.5s;
}

.service .service-item:hover .service-inner .service-img img {
    transform: scale(1.3);
}
/*** Service End ***/


/*** Features Start ***/
.features .feature-item {
    position: relative;
    box-shadow: 0 0 45px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.features .feature-item::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    bottom: 0;
    left: 0;
    border-radius: 10px;
    background: rgba(0, 58, 102, 0.1);
    z-index: -1;
    transition: 0.5s;
}

.features .feature-item:hover::after {
    height: 100%;
}

.features .feature-item .feature-icon {
    width: 120px; 
    height: 120px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--bs-light);
    transition: 0.5s;
}

.features .feature-item:hover .feature-icon {
    border-radius: 50%;
    background: var(--bs-white) !important;
}

.features .feature-item .feature-icon i {
    transition: 0.5s;
}

.features .feature-item:hover .feature-icon i {
    color: var(--bs-secondary) !important;
    transform: rotate(360deg);
    transition: all 0.5s ease;
}
/*** Features End ***/



/*** country Start ***/
.country .country-item {
    position: relative;
}

.country .country-item::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 58, 102, 0.7);
    border-radius: 10px;
    transition: 0.5s;
    z-index: 1;
}

.country .country-item:hover::after {
    height: 100%;
}

.country .country-item .country-flag {
    position: absolute;
    width: 90px; 
    height: 90px; 
    border-radius: 50%;
    top: -45px; 
    left: 50%; 
    transform: translateX(-50%);
    transition: 0.5s;
    z-index: 2;
}

.country .country-item .country-flag img {
    border: 5px solid var(--bs-white);
    transition: 0.5s;
}

.country .country-item:hover .country-flag img {
    border: 5px solid var(--bs-white);
    transform: rotate(360deg);
    transition: all 0.5s ease;
}

.country .country-item .country-name {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: 0.5s;
    opacity: 0;
    z-index: 3;
}

.country .country-item:hover .country-name {
    opacity: 1;
}

.country .country-item img {
    transition: 0.5s;
}

.country .country-item:hover img {
    transform: scale(1.2);
}

.country .country-item .country-name a.fs-4 {
    transition: 0.5s;
}

.country .country-item .country-name a.fs-4:hover {
    color: var(--bs-secondary) !important;
}
/*** country End ***/


/*** testimonial Start ***/
.testimonial .owl-carousel.testimonial-carousel {
    position: relative;
}

.testimonial .owl-carousel.testimonial-carousel .testimonial-item .testimonial-content {
    position: relative;
    border-radius: 10px;
    background: var(--bs-light);
}

.testimonial .owl-carousel.testimonial-carousel .testimonial-item .testimonial-content::after {
    position: absolute;
    content: "";
    width: 45px;
    height: 45px;
    bottom: -20px;
    left: 30px;
    transform: rotate(45deg);
    background: var(--bs-light);
    z-index: -1;
}

.testimonial .owl-carousel.testimonial-carousel .owl-nav {
    position: absolute;
    top: -60px;
    right: 0;
    display: flex;
    font-size: 40px;
    color: var(--bs-primary);
}

.testimonial .owl-carousel.testimonial-carousel .owl-nav .owl-prev {
    margin-right: 40px;
}

.testimonial .owl-carousel.testimonial-carousel .owl-nav .owl-prev,
.testimonial .owl-carousel.testimonial-carousel .owl-nav .owl-next {
    transition: 0.5s;
}

.testimonial .owl-carousel.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial .owl-carousel.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--bs-secondary);
}
/*** testimonial end ***/


/*** training Start ***/
.training .training-item .training-inner {
    position: relative;
}

.training .training-item .training-inner .training-title-name {
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    padding: 20px;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.5);
    display: flex; 
    flex-direction: column;
    justify-content: end;
    text-align: center;
    transition: 0.5s;
}

.training .training-item {
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.training .training-item:hover .training-inner .training-title-name {
    background: rgba(0, 58, 102, 0.5);
}

.training .training-item:hover .training-inner .training-title-name a {
    opacity: 0;
}

.training .training-item .training-inner img {
    transition: 0.5s;
}

.training .training-item:hover .training-inner img {
    transform: scale(1.3);
}

.training .training-item .training-content {
    position: absolute;
    width: 100%;
    bottom: -100%;
    left: 0;
    transition: 0.5s;
}

.training .training-item:hover .training-content {
    bottom: 0;
}  
/*** training End ***/


/*** Contact Start ***/
.contact .office .office-item {
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 0 45px rgba(0, 0, 0, 0.2);
    background: var(--bs-light);
    transition: 0.5s;
}

.contact .office .office-item:hover {
    box-shadow: 20px 20px 20px rgba(0, 58, 102, 0.3);
}

.contact .office .office-item .office-img {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.contact .office .office-item .office-img img {
    transition: 0.5s;
}

.contact .office .office-item:hover .office-img img {
    transform: scale(1.3);
}

.contact .office .office-item .office-content a.text-secondary,
.contact .office .office-item .office-content a.text-muted {
    transition: 0.5s;
}

.contact .office .office-item .office-content a.text-muted:hover {
    color: var(--bs-secondary) !important;
}

.contact .office .office-item .office-content a.text-secondary:hover {
    color: var(--bs-primary) !important;
}
/*** Contact End ***/


/*** Footer Start ***/
.footer {
    background: var(--bs-primary);
}
.footer .footer-item a {
    line-height: 30px;
    color: var(--bs-white);
    transition: 0.5s;
}

.footer .footer-item p {
    line-height: 30px;
}

.footer .footer-item a:hover {
    letter-spacing: 2px;
    color: var(--bs-secondary);
}

/*** Footer End ***/


/*** copyright Start ***/
.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: #13224F !important;
}
/*** copyright end ***/


/*** Custom CSS start ***/
.text-inline {
    color: #B3B3B3;
}

.bg-gradient-primary-to-secondary {
  background: #1e30f3;
  background: linear-gradient(135deg, #1e30f3 0%, #e21e80 100%);
}

.bullet-check ul {
list-style-type: none;
padding:0;
}

.bullet-check ul li::before {
content: "f058"; /*Add Unicode Here*/
font-family: "Font Awesome 5 Free";
padding: 0 10px 0 0;
color:#EB2D1D;
}

/*
Author URI: http://webthemez.com/
Note: 
Licence under Creative Commons Attribution 3.0 
Do not remove the back-link in this web template 
-------------------------------------------------------*/

@charset "utf-8";
@import url(http://fonts.googleapis.com/css?family=Raleway:800,700,400);
@import url(http://fonts.googleapis.com/css?family=Signika:400,600);

/* Reset
---------------------------------*/
ul {
    list-style: none;
}

.figure {
    margin: 0px;
}

img {
    max-width: 100%;
}

a, a:hover, a:active {
    outline: 0px !important;
}
.clear {
    clear: both;
    display: block;
    overflow: hidden;
    visibility: hidden;
    width: 0;
    height: 0;
}
.clearfix:before,
.clearfix:after {
    content: '\0020';
    display: block;
    overflow: hidden;
    visibility: hidden;
    width: 0;
    height: 0;
}

.clearfix:after {
    clear: both;
}


/* Styles
---------------------------------*/
body {
    background: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: normal;
    color: #363636;
    margin: 0;
}

h2 {
    font-size: 38px;
    color: #222222;
    font-family: 'Raleway', sans-serif;
    font-weight: normal;
    margin: 0px 0 25px 0;
    /*text-align: center;*/
    text-transform: normal;
}

h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: #222222;
    font-size: 18px;
    margin: 0 0 5px 0;
}

h6 {
    font-size: 16px;
    color: #888888;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    /*text-align: center;*/
    margin: 0 0 60px 0;
}

p {
    line-height: 24px;
    margin: 0;
}

/* Header Styles
---------------------------------*/

#header_wrapper {
    background: #ffffff;
    padding: 20px 0px;
}

.header_box {
    position: relative;
}

.logo {
    float: left;
    margin-top: 8px;
	position: relative;
	z-index: 2;
}

.res-nav_click {
    display: none;
}
	

/* Nav Styles
---------------------------------*/
.navbar-inverse {
    background-color: transparent;
    border-color: transparent;
}

.navbar {
    border: 0px solid #fff;
    min-height: 40px;
    margin-bottom: 0px;
}

.navbar-inverse .navbar-nav > li > a {
    color: #222;
}

.navStyle {
    float: right;
}

.navStyle ul {
    list-style: none;
    padding: 0px;
}

.navStyle ul li {
    display: inline-block;
    margin: 0 5px;
}

.navStyle ul li:first-child {
	/*margin:0px;*/
}

.navStyle ul li:last-child {
    margin: 0 0 0 23px;
}

.navStyle ul li a {
    display: block;
    font-size: 14px;
    color: #222222;
    font-family: 'Raleway', sans-serif;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 600;
    transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
}

.navStyle ul li a:hover {
    color: #df0031;
}

.navStyle > li > a:hover, .nav > li > a:focus {
    text-decoration: none;
    color: #df0031;
    background-color: transparent;
}

.navbar-inverse .navbar-nav > li > a:hover, .navbar-inverse .navbar-nav > li > a:focus {
    color: #df0031;
    background-color: transparent;
}

.navbar-inverse .navbar-nav > .active > a, .navbar-inverse .navbar-nav > .active > a:hover, .navbar-inverse .navbar-nav > .active > a:focus {
    color: #df0031;
    background-color: transparent;
}

.navStyle > li.active > a,
.navStyle > li.active > a:hover {
    text-decoration: none;
    color: #df0031;
    background-color: transparent;
}

.borderLeft {
    border-left: 1px solid #DADADA;
}

.borderTop {
    margin-top: 30px;
    border-top: 1px solid #DADADA;
}

.mrgTop {
    margin-top: 30px;
}
/* Top_content
---------------------------------*/

.top_cont_outer {
    background: linear-gradient(111deg,rgba(238, 174, 202, 1) 0%, rgba(148, 187, 233, 1) 100%);
    position: relative;
}

.hero_section {
    position: relative;
    padding-top: 50px;
}

.white_pad {
    position: relative;
    right: 0px;
    bottom: 0px;
}

.white_pad img {
    position: absolute;
    right: 0px;
    bottom: 0px;
}

.top_left_cont {
    padding: 50px 0;
}

.top_left_cont h3 {
    font-size: 16px;
    color: #045495;
    margin: 0 0 20px 0;
    text-align: left;
    font-weight: 700;
}

.top_left_cont h2 {
    font-size: 40px;
    color: #13224F;
    line-height: 52px;
    margin: 0 0 26px 0;
    font-family: 'poppins', sans-serif;
    text-align: left;
}

.top_left_cont h2 strong {
    font-weight: 700;
}

.top_left_cont p {
    font-size: 16px;
    color: #13224F;
    margin: 0 0 30px 0;
    line-height: 26px;
}

a.read_more2 {
    font-family: 'Raleway', sans-serif;
    display: block;
    font-size: 16px;
    width: 178px;
    height: 46px;
    line-height: 46px;
    border-radius: 3px;
    text-align: center;
    text-transform: uppercase;
    font-weight: 600;
    transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
}

a.read_more2:hover {
    background: #fff;
    color: #df0031;
    border: 1px solid #fff;
}

	







/* Services
---------------------------------*/

#service {
    padding: 60px 0px;
    background: #EFEFEF;
}

.service_wrapper {
    padding: 40px 0 40px;
}

.service_section {
}

.service_block {
    text-align: center;
    padding-left: 15px;
    padding-right: 15px;
}

.service_icon {
    border: 2px solid #df0031;
    border-radius: 50%;
    width: 90px;
    height: 90px;
    margin: 0px auto 25px;
}

.service_icon.icon2 {
    border: 2px solid #df0031;
}

.service_icon.icon3 {
    border: 2px solid #df0031;
}

.service_icon span {
    background: transparent;
    border-radius: 50%;
    display: block;
    height: 100%;
    width: 100%;
}

.service_icon i {
    color: #df0031;
    font-size: 40px;
    margin-top: 0;
    position: relative;
    top: 20px;
    z-index: 20;
}

.service_block h3 {
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    font-size: 18px;
    color: #111111;
    margin: 35px 0 18px;
}

.service_block p {
    font-size: 16px;
    color: #888888;
    margin: 0px;
}
	


/* Latest Work
---------------------------------*/


#work_outer {
    background: #f9f9f9;
    padding: 70px 0px;
    position: relative;
}

.work_pic {
    position: absolute;
    right: 0;
    top: 25%;
    width: 50%;
}

.inner_section {
    padding: 60px 0 20px;
}

.service-list {
    padding: 0 0 0 0;
    font-size: 14px;
    margin-bottom: 40px;
}

.service-list-col1 {
    float: left;
    width: 60px;
    text-align: center;
}

.service-list-col1 i {
    display: none;
    color: #888;
    font-size: 19px;
    font-style: normal;
    line-height: 20px;
}

.service-list-col2 {
    overflow: hidden;
}

.page_section.alabaster {
    background: #fafafa;
}

.work_bottom {
    padding: 20px 0 0 0px;
}

.work_bottom span {
    font-size: 18px;
    color: #333333;
    display: block;
    margin: 0 0 20px 0;
}

a.contact_btn {
    background: #fff;
    text-transform: uppercase;
    display: block;
    width: 176px;
    height: 49px;
    text-align: center;
    line-height: 49px;
    font-size: 16px;
    color: #df0031;
    border-radius: 3px;
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    border: 2px solid #df0031;
    transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
}

a.contact_btn:hover {
    background: #df0031;
    color: #fff;
}

.input-text {
    background: transparent;
}





/* Animation Timers
---------------------------------*/
.delay-02s {
    animation-delay: 0.2s;
    -webkit-animation-delay: 0.2s;
}

.delay-03s {
    animation-delay: 0.3s;
    -webkit-animation-delay: 0.3s;
}

.delay-04s {
    animation-delay: 0.4s;
    -webkit-animation-delay: 0.4s;
}

.delay-05s {
    animation-delay: 0.5s;
    -webkit-animation-delay: 0.5s;
}

.delay-06s {
    animation-delay: 0.6s;
    -webkit-animation-delay: 0.6s;
}

.delay-07s {
    animation-delay: 0.7s;
    -webkit-animation-delay: 0.7s;
}

.delay-08s {
    animation-delay: 0.8s;
    -webkit-animation-delay: 0.8s;
}

.delay-09s {
    animation-delay: 0.9s;
    -webkit-animation-delay: 0.9s;
}

.delay-1s {
    animation-delay: 1s;
    -webkit-animation-delay: 1s;
}

.delay-12s {
    animation-delay: 1.2s;
    -webkit-animation-delay: 1.2s;
}

/*
   Media Queries
--------------------------- */
@media (min-width: 768px) {


}
@media (max-width: 768px) {
p{
font-size:14px;
}
.hero_section {
position: relative;
padding-top: 10px;
}
.top_left_cont {
padding: 38px 0;
}
.top_left_cont h2 {
font-size: 25px;
color: #13224F;
line-height: 39px;
margin: 0 0 9px 0;
}
.inner_section {
padding: 20px 0 20px;
}
#aboutUs img{
margin-bottom:20px;
}
#aboutUs h3{
font-size:16px;
line-height:22px;
}
.service_block h3 { 
font-size: 16px;
}
service_block p {
font-size: 14px; 
margin: 0px;
margin-bottom: 20px;
}
#filters ul{
padding-left:0px;
}
.form {
margin: 0 18px;
}
.page_section.team{
padding: 40px 0;
}

.social_links li {
float: left; 
}
.contact_section{
margin:0;
}
h2, .contact_section h2 {
font-size: 30px;
}
.page_section.contact {
padding: 60px 0 50px;
} 
/* .navbar-inverse .navbar-toggle .icon-bar{
background:#df0031;
} */
.navbar-inverse .navbar-toggle {
border-color: transparent;
}
.navbar-inverse .navbar-toggle:hover, .navbar-inverse .navbar-toggle:focus{
background:none;
outline: none;
}
.navStyle ul li {
display: block;
}
.navStyle {
float: right;
width: 100%;
text-align:center;
}
.navStyle ul li:last-child {
margin: 0px;
}
.navbar-inverse .navbar-nav > li > a {
color: #222;
background: #F9F9F9;
}
} 
@media (max-width: 480px){ 
.team_area {
width: 99%;
}
}

/* Custom Success Modal Styling */

.sleek-success-modal {
  border-radius: 20px;
  background: #fff;
  padding: 2rem 1.5rem;
  position: relative;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  animation: fadeInUp 0.4s ease-in-out;
}

.checkmark-circle {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #a54de2, #d24cbd);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  font-size: 40px;
  color: white;
}

.btn-close.close-btn {
  position: absolute;
  right: 15px;
  top: 15px;
  font-size: 1.2rem;
  color: #999;
}

.modal-body h2 {
  color: #a54de2;
  font-weight: bold;
}

.modal-body p {
  font-size: 15px;
  color: #333;
  margin-top: 0.5rem;
}

@keyframes fadeInUp {
  from {
    transform: translateY(40px);
    opacity: 0;
  }
  to {
    transform: translateY(0px);
    opacity: 1;
  }
}


/* WebHuk-themed comparison table */
.custom-compare-table {
  border-radius: 10px;
  background-color: #fff;
  overflow: hidden;
}

.custom-compare-table thead th {
  background-color: var(--bs-primary);
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.05em;
  border: none;
}

.custom-compare-table td,
.custom-compare-table th {
  vertical-align: middle;
  font-size: 15px;
  padding: 14px 10px;
  border-color: #dee2e6;
}

.custom-compare-table tbody tr:hover {
  background-color: #f8f9fa;
}

.webhuk-col {
  background: linear-gradient(90deg, #a54de2, #d24cbd) !important;
  font-weight: bold;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Offcanvas Width */
/* Default offcanvas: all forms */
.offcanvas {
  max-width: 420px !important;
  width: 100%;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  box-shadow: -4px 0 10px rgba(0, 0, 0, 0.1);
}

/* Apply only to partnerForm (with .offcanvas-lg class) on medium+ screens */
@media (min-width: 768px) {
  .offcanvas-lg {
    max-width: 650px  !important;
  }
}

@media (min-width: 992px) {
  .offcanvas-lg {
    max-width: 750px  !important;
  }
}


.offcanvas .form-label {
  font-weight: 500;
}

.offcanvas .form-control,
.offcanvas .form-select {
  border-radius: 8px;
}

/* Base width for small screens */

#partnerForm {
  display: flex;
  flex-direction: column;
  height: 100vh;
  z-index: 1080 !important;
  max-width: 450px !important;
  width: 100% !important;
}

#partnerForm .offcanvas-header {
  background-color: #13224F !important;
  color: white;
  padding: 1rem 1.5rem;
  z-index: 10;
  position: sticky;
  top: 0;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
}

#partnerForm .offcanvas-body {
  flex: 1 1 auto;
  overflow-y: auto;
  padding-bottom: 2rem;
  background-color: #fff !important;
}

.footer,
.container-fluid.footer {
  position: relative;
  z-index: 1 !important;
}

/* Medium screens and up */
@media (min-width: 768px) {
  #partnerForm {
    max-width: 650px !important;
  }
}

/* Large screens and up */
@media (min-width: 992px) {
  #partnerForm {
    max-width: 750px !important;
  }
}


#partnerForm .offcanvas-body {
  overflow-y: auto;
  max-height: calc(100vh - 60px); /* adjust based on header size */
}

#partnerForm {
  display: flex;
  flex-direction: column;
  height: 100vh;
}

#quoteOffcanvas {
  max-width: 780px !important;
  width: 100% !important;
}

/*.offcanvas.quote-wide#quoteOffcanvas {*/
/*  min-width: 780px !important;*/
/*  width: 100% !important;*/
/*}*/

/* Responsive Offcanvas Width  Ends*/

.toast.bg-success {
  background-color: #51D67E !important; /* Bootstrap green */
}
.toast.bg-danger {
  background-color: #EB4B3D !important; /* Bootstrap red */
}

/* Feature Bullets List */
.feature-item {
  font-size: 21px !important;
  font-weight: 600  !important;
  line-height: 24px !important;
}

/*CSS (to ensure proper flag/input spacing in input field)*/

 .iti {
    width: 100%;
  }

  .iti--separate-dial-code input {
    padding-left: 80px !important;
  }

  .iti__flag-container {
    left: 10px;
  }

  .iti--separate-dial-code .iti__selected-flag {
    padding-left: 10px;
  }
  
  /*CSS Cards hover effects*/
.hover-card {
  transition: transform .2s ease, box-shadow .2s ease;
}
.hover-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, .15);
  background-color:#1c1c1c;
}

.offcanvas.quote-wide {
  width: 780px !important;
  max-width: 95%;
}

@media (min-width: 768px) {
  .offcanvas-end.quote-wide {
    width: 780px !important;
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  .offcanvas.quote-wide {
    width: 100% !important;
    border-radius: 0;
  }
}
/* Mega Menu - Dropdown */
/* ======================== */

.has-submenu {
  position: relative;
}

.dropdown-mega {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 720px;
  max-width: 95vw;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  padding: 1.5rem;
  display: none;
  z-index: 1000;
}

/* Show on hover - desktop only */
@media (min-width: 992px) {
  .has-submenu:hover .dropdown-mega {
    display: block;
  }

  .submenu-toggle {
    display: none;
  }
}

/* Show on toggle - mobile only */
@media (max-width: 991px) {
  .has-submenu > .dropdown-mega {
    display: none !important;
  }

  .has-submenu.open > .dropdown-mega {
    display: block !important;
    position: static;
    width: 100%;
    box-shadow: none;
    padding: 0;
  }

  .dropdown-arrow {
    display: none;
  }
}

/* Arrow under submenu */
.dropdown-arrow {
  position: absolute;
  top: -8px;
  left: 40px; /* Adjust to align with Features text */
  width: 16px;
  height: 16px;
  background: #fff;
  transform: rotate(45deg);
  border-top: 1px solid #ddd;
  border-left: 1px solid #ddd;
}


/* Fix mobile dropdown toggle */
@media (max-width: 991.98px) {
  .has-submenu .dropdown-menu {
    display: none;
  }

}

/* ======================= */
/* ðŸ‘‡ Mobile submenu behavior */
@media (max-width: 991.98px) {
  .has-submenu .dropdown-menu {
    display: none;
  }

  .has-submenu.submenu-open .dropdown-menu {
    display: block;
    position: relative;
    padding: 1rem 1.5rem;
    background-color: #f8f9fa;
    box-shadow: none;
  }

  .submenu-toggle {
    background-color: transparent;
    border: none;
    padding: 0.25rem 0.5rem;
    margin-left: auto;
    display: flex;
    align-items: center;
  }

  .submenu-toggle .arrow {
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.5rem;
    vertical-align: middle;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid #333;
  }

  .has-submenu.submenu-open .submenu-toggle .arrow {
    transform: rotate(180deg);
  }
}

#newsletter-response {
  padding: 8px 12px;
  border-radius: 4px;
  font-size: 14px;
  display: none; /* Hidden until message is shown */
}

#newsletter-response.success {
  color: #fff; /* White text */
  background-color: rgba(0, 128, 0, 0.4); /* Optional soft green background */
}

#newsletter-response.err {
  color: #ffcccc !important; /* Light red text */
  background-color: rgba(255, 0, 0, 0.2) !important; /* Optional soft red background */
}

/* === HERO CAROUSEL TWEAKS === */
#hero_section {
  position: relative;
}

/* Consistent slide height via CSS variables */
/*#hero_section .hero-carousel {*/
/*  --hero-h-desktop: 560px;*/
/*  --hero-h-tablet: 500px;*/
/*  --hero-h-mobile: 440px;*/
/*}*/

/* Equal height for all slides */
/*#hero_section .carousel,*/
/*#hero_section .carousel-inner,*/
/*#hero_section .carousel-item {*/
/*  height: var(--hero-h-desktop);*/
/*}*/
/*#hero_section .carousel-item > .row {*/
/*  height: 100%;*/
/*}*/
/*#hero_section .top_left_cont {*/
/*  display: flex;*/
/*  flex-direction: column;*/
  justify-content: center; /* vertically center text block */
/*  height: 100%;*/
/*}*/

/* Image column: keep images contained without stretching layout */
/*#hero_section .hero-figure {*/
/*  height: 100%;*/
/*  display: flex;*/
/*  align-items: center;*/
/*  justify-content: center;*/
/*}*/
/*#hero_section .hero-figure img {*/
/*  max-height: calc(var(--hero-h-desktop) - 80px);*/
/*  width: 100%;*/
/*  height: auto;*/
/*  object-fit: contain;*/
/*}*/

/* Make indicators compact */
/*#hero_section .carousel-indicators [data-bs-target] {*/
/*  width: 10px;*/
/*  height: 10px;*/
/*  border-radius: 50%;*/
/*}*/

/* Controls: reduce hit area so they don't cover buttons/content */
/*#hero_section .carousel-control-prev,*/
/*#hero_section .carousel-control-next {*/
  width: 56px;                /* default is ~15% of width; shrink it */
/*  opacity: 0.85;*/
/*  transition: opacity .2s ease;*/
/*  top: 50%;*/
/*  transform: translateY(-50%);*/
  bottom: auto;               /* stop stretching full height */
  height: 56px;               /* tight clickable circle */
/*  border-radius: 50%;*/
  background: rgba(0,0,0,.25);/* subtle backing so they pop on any bg */
/*  z-index: 5;*/
/*}*/
/*#hero_section .carousel-control-prev:hover,*/
/*#hero_section .carousel-control-next:hover {*/
/*  opacity: 1;*/
/*}*/

/* Nudge arrows a bit inward but not over content */
/*#hero_section .carousel-control-prev { left: 12px; }*/
/*#hero_section .carousel-control-next { right: 12px; }*/

/* Ensure arrows never sit on top of content inside container */
/*#hero_section .container { position: relative; z-index: 10; }*/

/* Responsive heights */
/*@media (max-width: 991.98px) {*/
/*  #hero_section .carousel,*/
/*  #hero_section .carousel-inner,*/
/*  #hero_section .carousel-item {*/
/*    height: var(--hero-h-tablet);*/
/*  }*/
/*  #hero_section .hero-figure img {*/
/*    max-height: calc(var(--hero-h-tablet) - 70px);*/
/*  }*/
/*}*/
/*@media (max-width: 575.98px) {*/
/*  #hero_section .carousel,*/
/*  #hero_section .carousel-inner,*/
/*  #hero_section .carousel-item {*/
/*    height: var(--hero-h-mobile);*/
/*  }*/
/*  #hero_section .hero-figure img {*/
/*    max-height: calc(var(--hero-h-mobile) - 60px);*/
/*  }*/
/*  #hero_section .carousel-control-prev,*/
/*  #hero_section .carousel-control-next {*/
/*    width: 48px;*/
/*    height: 48px;*/
/*    left: 8px;*/
/*    right: 8px;*/
/*  }*/
/*}*/

/*#hero_section .carousel-control-prev { left: -8px; }*/
/*#hero_section .carousel-control-next { right: -8px; }*/
/*#hero_section .carousel { overflow: visible; } */

   /* === CONFIG === */
    #hero_section .hero-slider {
      --hero-h-desktop: 560px;
      --hero-h-tablet: 500px;
      --hero-h-mobile: 440px;
      --interval-ms: 6000;
    }

    /* === LAYOUT === */
    #hero_section { position: relative; }
    #hero_section .hero_wrapper { position: relative; }
    #hero_section .container { max-width: 1140px; margin: 0 auto; padding: 0 16px; position: relative; z-index: 1; }

    /* Slider shell */
    #hero_section .hero-slider {
      position: relative;
      overflow: hidden;
      height: var(--hero-h-desktop);
      border-radius: 16px;
    }

    /* Tracks & slides */
    #hero_section .hero-track {
      display: flex;
      height: 100%;
      transition: transform .5s ease;
      will-change: transform;
    }
    #hero_section .hero-slide {
      flex: 0 0 100%;
      height: 100%;
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: center;
      gap: 24px;
      padding: 24px 16px;
    }

    /* Left column (text) */
    #hero_section .top_left_cont {
      display: flex;
      flex-direction: column;
      justify-content: center;
      min-height: 0;
    }
    #hero_section h2 { margin: 0 0 .5rem; line-height: 1.2; }
    #hero_section p { margin: 0 0 .75rem; }
    #hero_section .btn {
      display: inline-block;
      text-decoration: none;
      background: var(--bs-primary, #0d6efd);
      border: 1px solid var(--bs-secondary, #6c757d);
      color: #fff;
      border-radius: 999px;
      padding: .6rem 1.25rem;
      font-weight: 600;
    }

    /* Right column (image) */
    #hero_section .hero-figure {
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    #hero_section .hero-figure img {
      max-height: calc(var(--hero-h-desktop) - 80px);
      width: 100%;
      height: auto;
      object-fit: contain;
    }

    /* Indicators */
    #hero_section .hero-indicators {
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      bottom: 12px;
      display: flex;
      gap: 8px;
      z-index: 2;
    }
    #hero_section .hero-indicators button {
      width: 10px; height: 10px; border-radius: 50%;
      border: none; background: rgba(255,255,255,.5);
      cursor: pointer;
    }
    #hero_section .hero-indicators button[aria-current="true"] {
      background: rgba(255,255,255,.95);
    }

    /* Controls */
    #hero_section .hero-control {
      position: absolute;
      top: 50%; transform: translateY(-50%);
      width: 56px; height: 56px;
      border: none; border-radius: 50%;
      background: rgba(0,0,0,.25);
      display: grid; place-items: center;
      cursor: pointer; z-index: 3;
      opacity: .9; transition: opacity .2s ease;
    }
    #hero_section .hero-control:hover { opacity: 1; }
    #hero_section .hero-prev { left: 12px; }
    #hero_section .hero-next { right: 12px; }
    #hero_section .hero-control svg { width: 22px; height: 22px; fill: #fff; }

    /* Responsive */
    @media (max-width: 991.98px) {
      #hero_section .hero-slider { height: var(--hero-h-tablet); }
      #hero_section .hero-figure img { max-height: calc(var(--hero-h-tablet) - 70px); }
      #hero_section .hero-slide { grid-template-columns: 1.1fr .9fr; }
    }
    @media (max-width: 767.98px) {
      #hero_section .hero-slider { height: var(--hero-h-mobile); }
      #hero_section .hero-figure img { max-height: calc(var(--hero-h-mobile) - 60px); }
      #hero_section .hero-slide { grid-template-columns: 1fr; }
      #hero_section .hero-figure { order: 2; margin-top: 12px; }
      #hero_section .hero-control { width: 48px; height: 48px; }
      #hero_section .hero-prev { left: 8px; }
      #hero_section .hero-next { right: 8px; }
    }

