@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Merriweather:ital,opsz,wght@0,18..144,300..900;1,18..144,300..900&display=swap');
@import url("https://fonts.googleapis.com/css2?family=Jost:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
}

html,
body {
    font-family: "Work Sans", sans-serif;
}

a {
    text-decoration: none;
    font-size: 14px;
}

a:active {
    background-color: transparent;
}

ul {
    padding: 0;
    margin: 0;
}

ul,
li {
    list-style-type: none;
}

img {
    width: 100%;
}

p,
li {
    color: #676b72;
    font-family: "Work Sans", sans-serif;
    font-size: 15px;
    font-weight: 400;
    margin-bottom: 15px;
    text-align: justify;
}
.auto-container {
    position: static;
    max-width: 1660px;
    padding: 0px 15px;
    margin: 0 auto;
}
.section-heading {
    text-align: center;
    margin-bottom: 20px;
}

.section-heading.text-left h2 {
    text-align: left;
}

.section-heading h2 {
    text-align: center;
    font-size: 38px;
    color: #13508e;
    font-family: "Merriweather", serif;
    font-weight: 700;
    text-transform: capitalize;
}

.section-heading h2 span {
    color: #c83c37;
    font-weight: 700;
}
.section-heading p {
    color: #000;
    font-size: 20px;
    font-weight: 500;
    text-transform: uppercase;
}

.img-shape {
    padding: 0 40px;
}

/* -----------------
Top Bar
--------------------*/

.top-bar {
    background-color: #0072bb;
    padding: 3px 0;
    /* border-bottom: 1px solid #0000002b; */
}
.top-bar .top-inner {
    margin-top: 15px;
    background-color: #0b4178;
    padding: 10px 40px;
    margin-bottom: -23px;
    z-index: 9999;
    position: relative;
    border-radius: 5px;
}
.top-bar .contact-info.left {
    float: left;
}
.top-bar .contact-info.left li {
    padding-right: 20px;
    padding-left: 0;
}
.top-bar .contact-info {
    float: right;
    display: flex;
    align-items: center;
}

.top-bar .contact-info li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-left: 20px;
    margin-bottom: 0;
}
.top-bar .contact-info li .icon {
    width: 20px;
    height: 20px;
    line-height: 10px;
}
.top-bar .contact-info li .icon img {

}
.top-bar .contact-info li a,
.top-bar .contact-info li p {
    color: #ffffffcc;
    font-size: 15px;
    font-weight: 400;
    margin: 0;
}

.top-bar .contact-info li a i {
    width: 30px;
    height: 30px;
    color: #13508e;
    background: #fff;
    box-shadow: 0 0 12px 0 #00000024;
    border-radius: 50px;
    text-align: center;
    line-height: 30px;
    margin-right: 8px;
}

.top-bar .contact-info li:first-child a i {
    font-size: 13px;
}

/* -----------------
Navbar
--------------------*/

.navbar {
    padding: 20px 0 0 0;
    background-color: #fff !important;
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    transition: 0.5s;
    border-bottom: 1px solid #e7e7e7;
}

.fixed-header {
    background-color: #fff !important;
    width: 100%;
    z-index: 999;
    padding-top: 0;
}

/* .navbar {
  padding: 0;
  background-color: #fff !important;
  border-bottom: 1px solid #e7e7e7;
} */

.navbar .logo-left-box {
    width: 190px;
    transition: 0.3s all ease;
}
.fixed-header .logo-left-box {
    width: 140px;
}
.navbar .navbar-collapse {
    position: relative !important;
}

.navbar-nav>li {
    margin: 0px 15px;
    position: relative;
    transition: 0.3s all ease;
}
.fixed-header .navbar-nav>li {
    margin: 0px 20px;
}
.navbar .contact-btn a {
    margin-left: 40px;
}
.theme-btn {
    background-color: #c83c37;
    color: #fff;
    font-size: 15px;
    border-radius: 100px;
    padding: 12px 20px;
    position: relative;
    z-index: 2;
    overflow: hidden;
    transition: 0.5s all ease;
}
.theme-btn:hover {
    background-color: #04305c;
    color: #fff;
}
.theme-btn::before {
    content: "";
    position: absolute;
    left: -25px;
    top: 0;
    opacity: 0.5;
    transform: skewX(-20deg);
    width: 20px;
    height: 100%;
    background-color: #fff;
    transition: 0.5s all ease;
}
.theme-btn:hover:before {
    left: 110%;
}
.navbar-nav>li:last-child {
    margin-right: 0;
    display: flex;
    align-items: center;
}
.navbar-nav li .nav-link {
    padding: 30px 0px !important;
    color: #084889 !important;
    font-size: 16px;
    font-family: "Lato", sans-serif;
    font-weight: 700;
    text-transform: capitalize;
    transition: 0.3s;
}

.fixed-header .navbar-nav li .nav-link {
    padding: 20px 0px !important;
}

.navbar-nav li .nav-link:hover,
.navbar-nav li .nav-link.active {
    color: #c83c37 !important;
}

/* .navbar-nav li .nav-link.active {
    background-color: #b10036;
    color: #fff !important;
} */

/* hover styles */
.navbar-nav li .nav-link::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    bottom: 0;
    left: 0;
    margin-left: 0;
    background-color: #c83c37;
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.3s;
    border: none;
}
.navbar-nav li:hover .nav-link:before,
.navbar-nav li .nav-link.active:before {
    transform-origin: bottom left;
    transform: scaleX(1);
}
  
/* .navbar-nav li:last-child .nav-link:before {
    transform: scaleX(0);
} */


.navbar-nav li .nav-link.book-btn {
    padding: 10px 20px !important;
    background-color: #10336d;
    color: #fff !important;
    border-top-left-radius: 15px;
    border-bottom-right-radius: 15px;
    transform: translateY(-5px);
}

.dropdown-menu {
    width: 260px;
    border: 0px solid #ccc;
    border-top: none;
    display: none;
    opacity: 0;
    visibility: hidden;
    -webkit-transform-origin: top;
    -ms-transform-origin: top;
    -moz-transform-origin: top;
    transform-origin: top;
    -webkit-transform: scaleY(0);
    -ms-transform: scaleY(0);
    -moz-transform: scaleY(0);
    transform: scaleY(0);
    transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    -webkit-transform: scaleY(1);
    -ms-transform: scaleY(1);
    -moz-transform: scaleY(1);
    transform: scaleY(1);
}

.sub-dropdown:hover .sub-dropdown-menu {
    opacity: 1;
    visibility: visible;
    -webkit-transform: scaleY(1);
    -ms-transform: scaleY(1);
    -moz-transform: scaleY(1);
    transform: scaleY(1);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu li a {
    padding: 8px 15px;
    font-family: "Lato", sans-serif;
    color: #084889;
    font-size: 14px;
    font-weight: 700;
    border-radius: 5px;
    text-transform: capitalize;
    transition: 0.3s;
    position: relative;
}
.dropdown-menu li:active {
    background-color: transparent;
}

.sub-dropdown .dropdown-toggle::after {
    content: "\f105";
    font-family: "FontAwesome";
    border: none;
    font-weight: 700;
    vertical-align: 0;
    float: right;
}

.dropdown-menu,
.sub-dropdown-menu {
    background-color: #fff;
    border-radius: 5px;
    padding: 20px 25px 25px !important;
    border-top: 0px solid #c83c37;
    box-shadow: 0 0 30px 0px #00000014;
}

.dropdown-menu li a,
.sub-dropdown-menu li a {
    /* border-bottom: 1px solid #00000010; */
}

.dropdown-menu li:last-child a,
.sub-dropdown-menu li:last-child a {
    border-bottom: none;
}

.dropdown-menu li a:hover,
.sub-dropdown-menu li a:hover {
    background-color: #f5f5f5;
    color: #c83c37;
    padding-left: 15px;
}

.dropdown-menu li a::after {
    content: "\f105";
    font-family: 'FontAwesome';
    font-size: 14px;
    color: #c83c37;
    margin-left: 0px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    -moz-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
}
.dropdown-menu li a:hover::after {
    opacity: 1;
    visibility: visible;
    margin-left: 10px;
}

.sub-dropdown .sub-dropdown-menu {
    position: absolute;
    top: 0;
    right: auto;
    left: 100%;
    opacity: 0;
    visibility: hidden;
    -webkit-transform-origin: top;
    -ms-transform-origin: top;
    -moz-transform-origin: top;
    transform-origin: top;
    -webkit-transform: scaleY(0);
    -ms-transform: scaleY(0);
    -moz-transform: scaleY(0);
    transform: scaleY(0);
    transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

@media only screen and (min-width: 768px) {

.navbar-nav li.dropdown .dropdown-menu {
    position: absolute;
    left: 0px;
    top: 100%;
    margin-top: 0;
    z-index: 100;
    display: block;
    background: #ffffff;
    -webkit-transform: scaleY(0);
    -ms-transform: scaleY(0);
    -moz-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: top;
    -ms-transform-origin: top;
    -moz-transform-origin: top;
    transform-origin: top;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
    -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
    -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
    -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
    box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}
  .navbar-nav li.dropdown:hover .dropdown-menu {
    -webkit-transform: scaleY(1);
    -ms-transform: scaleY(1);
    -moz-transform: scaleY(1);
    transform: scaleY(1);
    visibility: visible;
    opacity: 1;
  }
}


@media only screen and (min-width: 992px) {
    .dropdown .dropdown-menu {
        display: none;
    }

    .sub-dropdown:hover .sub-dropdown-menu {
        display: none;
    }
}


/* -----------------
Banner Area
--------------------*/

.banner-slider {
    position: relative;
}
.banner-slider .slide-item {
    position: relative;
    padding-top: 265px;
    padding-bottom: 185px;
    overflow: hidden;
}
/* .banner-slider .slide-item:before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background: rgb(4 1 13 / 50%);
    top: 0px;
    right: 0px;
    z-index: 1;
} */
.banner-slider .slide-item .image-layer {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
    -webkit-transition: all 8000ms linear;
    -moz-transition: all 8000ms linear;
    -ms-transition: all 8000ms linear;
    -o-transition: all 8000ms linear;
    transition: all 8000ms linear;
}
.banner-carousel .active .slide-item .image-layer {
    -webkit-transform: scale(1.4);
    -ms-transform: scale(1.4);
    transform: scale(1.4);
}
.banner-carousel .content-box {
    position: relative;
    width: 100%;
    max-width: 550px;
    padding: 80px 0;
    z-index: 5;
}
.banner-carousel .content-box .sub-title {
    position: relative;
    display: block;
    font-size: 16px;
    line-height: 26px;
    text-transform: capitalize;
    font-weight: 500;
    color: #fff;
    display: inline-block;
    margin-bottom: 20px;
    opacity: 0;
    -webkit-transform: translateY(-50px);
    -moz-transform: translateY(-50px);
    -ms-transform: translateY(-50px);
    -o-transform: translateY(-50px);
    transform: translateY(-50px);
    -webkit-transition: all 1000ms ease;
    -moz-transition: all 1000ms ease;
    -ms-transition: all 1000ms ease;
    -o-transition: all 1000ms ease;
    transition: all 1000ms ease;
}
.banner-carousel .content-box .sub-title:before {
    content: "";
    position: absolute;
    bottom: 3px;
    left: 0;
    right: 0;
    height: 8px;
    background-color: rgb(255 255 255 / 15%);
    z-index: -1;
}
.banner-carousel .active .content-box .sub-title {
    opacity: 1;
    -webkit-transition-delay: 700ms;
    -moz-transition-delay: 700ms;
    -ms-transition-delay: 700ms;
    -o-transition-delay: 700ms;
    transition-delay: 700ms;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
}
.banner-carousel .content-box h2 {
    position: relative;
    display: block;
    font-size: 56px;
    line-height: 50px;
    text-transform: capitalize;
    font-weight: 600;
    color: #084896;
    margin-bottom: 30px;
    opacity: 0;
    -webkit-transform: translateY(-50px);
    -moz-transform: translateY(-50px);
    -ms-transform: translateY(-50px);
    -o-transform: translateY(-50px);
    transform: translateY(-50px);
    -webkit-transition: all 1000ms ease;
    -moz-transition: all 1000ms ease;
    -ms-transition: all 1000ms ease;
    -o-transition: all 1000ms ease;
    transition: all 1000ms ease;
}
.banner-carousel .active .content-box h2 {
    opacity: 1;
    -webkit-transition-delay: 700ms;
    -moz-transition-delay: 700ms;
    -ms-transition-delay: 700ms;
    -o-transition-delay: 700ms;
    transition-delay: 700ms;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
}
.banner-carousel .content-box h2 span {
    position: relative;
    display: block;
    color: transparent;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: rgba(255, 255, 255, 1);
}
.banner-carousel .content-box .lower-box {
    position: relative;
    display: block;
    opacity: 0;
    -webkit-transform: translateY(10px);
    -moz-transform: translateY(10px);
    -ms-transform: translateY(10px);
    -o-transform: translateY(10px);
    transform: translateY(10px);
    -webkit-transition: all 1000ms ease;
    -moz-transition: all 1000ms ease;
    -ms-transition: all 1000ms ease;
    -o-transition: all 1000ms ease;
    transition: all 1000ms ease;
}
.banner-carousel .active .content-box .lower-box {
    opacity: 1;
    -webkit-transition-delay: 1000ms;
    -moz-transition-delay: 1000ms;
    -ms-transition-delay: 1000ms;
    -o-transition-delay: 1000ms;
    transition-delay: 1000ms;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
}
.banner-carousel .content-box .lower-box .text {
    position: relative;
    display: block;
    font-size: 22px;
    line-height: 30px;
    color: #fff;
    opacity: 0.8;
    margin-bottom: 31px;
    /* max-width: 360px; */
}


.banner-slider .owl-nav button {
    width: 40px;
    height: 70px;
    text-align: center;
    position: absolute;
    top: 50%;
    opacity: 0.8;
    background-color: #fff !important;
    color: rgb(0, 0, 0) !important;
    border-radius: 0;
    margin: 0px 10px;
    transition: 0.5s;
}

.banner-slider .owl-nav .owl-prev {
    left: 20px;
}
.banner-slider .owl-nav .owl-next {
    right: 20px;
}












.hero-slider {
    width: 100%;
    /* height: 500px; */
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    z-index: 0;
  }
  
  @media (max-width: 991px) {
    .hero-slider {
      /* height: 600px; */
    }
  }
  
  @media (max-width: 767px) {
    .hero-slider {
      /* height: 500px; */
    }
  }
  
  .hero-slider .swiper-slide {
    overflow: hidden;
    color: #fff;
  }

.hero-slider .swiper-slide .slide-inner {
    position: relative;
}

.hero-slider .swiper-slide .content-box {
    position: absolute;
    top: 50%;
    left: 7%;
    transform: translateY(-50%);
    width: 100%;
    max-width: 740px;
    z-index: 5;
}

.hero-slider .swiper-slide-active .slide-bg-image img {
    transform: scale(1.15);
    -webkit-transition: all 8000ms linear;
    -moz-transition: all 8000ms linear;
    -ms-transition: all 8000ms linear;
    -o-transition: all 8000ms linear;
    transition: all 8000ms linear;
}
  
  .hero-slider .swiper-container {
    width: 100%;
    height: 100%;
    /* position: absolute; */
    left: 0;
    top: 0;
  }
  
  .hero-slider .slide-inner {
    width: 100%;
    height: 100%;
    text-align: left;
  }

  .hero-slider .slide-inner .slide-title h2 {
    font-size: 2.2vw;
    color: #13508e;
    font-weight: 700;
    font-family: "Merriweather", serif;
    opacity: 0;
    -webkit-transform: translateY(-50px);
    -moz-transform: translateY(-50px);
    -ms-transform: translateY(-50px);
    -o-transform: translateY(-50px);
    transform: translateY(-50px);
    -webkit-transition: all 1000ms ease;
    -moz-transition: all 1000ms ease;
    -ms-transition: all 1000ms ease;
    -o-transition: all 1000ms ease;
    transition: all 1000ms ease;
  }
  .hero-slider .swiper-slide-active .slide-title h2 {
    opacity: 1;
    -webkit-transition-delay: 700ms;
    -moz-transition-delay: 700ms;
    -ms-transition-delay: 700ms;
    -o-transition-delay: 700ms;
    transition-delay: 700ms;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
}
.hero-slider .swiper-slide .content-box .lower-box {
    position: relative;
    display: block;
    margin-top: 20px;
    opacity: 0;
    -webkit-transform: translateY(10px);
    -moz-transform: translateY(10px);
    -ms-transform: translateY(10px);
    -o-transform: translateY(10px);
    transform: translateY(10px);
    -webkit-transition: all 1000ms ease;
    -moz-transition: all 1000ms ease;
    -ms-transition: all 1000ms ease;
    -o-transition: all 1000ms ease;
    transition: all 1000ms ease;
}
.hero-slider .swiper-slide-active .content-box .lower-box {
    opacity: 1;
    -webkit-transition-delay: 1000ms;
    -moz-transition-delay: 1000ms;
    -ms-transition-delay: 1000ms;
    -o-transition-delay: 1000ms;
    transition-delay: 1000ms;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
}
.hero-slider .swiper-slide .content-box .lower-box p {
    font-size: 1vw;
}
.hero-slider .swiper-slide .content-box .lower-box .btn-box .theme-btn {
    display: inline-block;
    margin-top: 10px;
}
  
  .hero-slider .swiper-button-prev,
  .hero-slider .swiper-button-next {
    background: #ffffff9e;
    width: 45px;
    height: 75px;
    line-height: 73px;
    margin-top: -30px;
    text-align: center;
    border-radius: 0;
    transition: all .3s ease;
  }
  
  @media (max-width: 767px) {
    .hero-slider .swiper-button-prev,
    .hero-slider .swiper-button-next {
      display: none;
    }
  }
  
  .hero-slider .swiper-button-prev {
    left: -15px;
    transform:translateX(50px);
  }
  
  .hero-slider .swiper-button-prev:before {
    font-family: "Font Awesome 5 Free";
    content: "\f104";
    font-size: 15px;
    color: #000;
    font-style: normal;
    display: inline-block;
    vertical-align: middle;
    font-weight: 900;
  }
  
  .hero-slider .swiper-button-next {
    right: -15px;
    transform:translateX(-50px);
  }
  
  .hero-slider .swiper-button-next:before {
    font-family: "Font Awesome 5 Free";
    content: "\f105";
    font-size: 15px;
    color: #000;
    font-style: normal;
    display: inline-block;
    vertical-align: middle;
    font-weight: 900;
  }
  
  .hero-slider .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    text-align: left;
    line-height: 12px;
    font-size: 12px;
    color: #000;
    opacity: 0.3;
    background:#fff;
    transition:all .2s ease;
  }
  
  .hero-slider .swiper-pagination-bullet-active {
    opacity:1;
  }
  
  .hero-slider .swiper-container-horizontal > .swiper-pagination-bullets,
  .hero-slider .swiper-pagination-custom,
  .hero-slider .swiper-pagination-fraction {
    bottom: 30px;
  }
  
  @media screen and (min-width: 992px) {
    .hero-slider .swiper-container-horizontal > .swiper-pagination-bullets,
    .hero-slider .swiper-pagination-custom,
    .hero-slider .swiper-pagination-fraction {
  /*     display: none; */
    }
  }
  .swiper-pagination {
    text-align:left;
  }
  
  .hero-slider .swiper-container-horizontal > .swiper-pagination-bullets{
    bottom:50px;
      max-width: 1200px;
      padding: 0 15px;
      margin: 0 auto;
      left: 50%;
      transform: translateX(-50%);
  }
  
  @media (min-width: 767px) {
    .hero-slider .swiper-container-horizontal > .swiper-pagination-bullets{
        bottom:30px;
    
    }
  }


/* -----------------
Welcome Section
--------------------*/

.welcome-section {
    padding: 90px 0;
    position: relative;
    top: -7px;
    z-index: 2;
    overflow: hidden;
}
.welcome-section .section-heading h2 span {
    /* display: block; */
}
/* .welcome-section img {
    width: auto;
} */
.welcome-section .img-box {
    position: relative;
    display: block;
    z-index: 1;
}
.welcome-section .img-box .about-img-1 {
    position: relative;
    display: block;
    overflow: hidden;
    z-index: 1;
    margin-right: 0;
}
.welcome-section .img-box .about-img-2 {
    position: absolute;
    right: 0;
    bottom: -80px;
    z-index: 2;
    width: 50%;
}
.welcome-section .img-box .shape-1 {
    position: absolute;
    left: 0px;
    top: 48%;
    z-index: 0;
    opacity: 0.3;
}
.welcome-section .img-box .shape-1 img {
    width: auto;
}
.float-bob-x {
    -webkit-animation-name: float-bob-x;
    animation-name: float-bob-x;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
}
@keyframes float-bob-x {
    0% {
        transform: translateX(-30px);
    }
    50% {
        transform: translateX(-10px);
    }
    100% {
        transform: translateX(-30px);
    }
}
.float-bob-y {
    -webkit-animation-name: float-bob-y;
    animation-name: float-bob-y;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
}
@keyframes float-bob-y {
    0% {
        transform: translateY(-30px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(-30px);
    }
}

.welcome-section .img-box .exp-box {
    position: absolute;
    right: 0;
    bottom: -40px;
    border-radius: 10px;
    background: #13508e;
    font-size: 16px;
    line-height: 26px;
    color: #fff;
    text-align: center;
    z-index: 3;
    padding: 25px 35px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition-delay: 500ms;
    animation-name: animaiton-vertical;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    box-shadow: 0 10px 20px 0 #00000040;
}
@keyframes animaiton-vertical {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
    100% {
        transform: translateY(0);
    }
}

.welcome-section .img-box .exp-box h4 {
    margin: 0;
    text-transform: capitalize;
}


.welcome-section .img-box .content::before {
    width: 0;
    height: 0;
    border-top: 24px solid #054477;
    border-right: 30px solid transparent;
    content: "";
    left: 0px;
    position: absolute;
    top: -24px;
    transform: rotate(-180.509deg);
}
.welcome-section .img-box .content {
    padding: 26px;
    background-color: #097ddb;
    border-radius: 0 10px 10px 0;
    max-width: 160px;
    position: absolute;
    top: 7%;
    left: -4.6%;
    z-index: 9;
}

.welcome-section .img-box .content h2 {
    color: #fff;
    font-size: 40px;
    font-weight: 700;
}
.welcome-section .img-box .content p {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    text-align: left;
}
.welcome-section .content {
    padding-right: 30px;
}
.welcome-section .content h3 {
    font-size: 30px;
    font-weight: 700;
    color: #205e66;
    padding-left: 15px;
    border-left: 4px solid #f5821f;
    line-height: 1;
    margin-bottom: 15px;
    margin-top: 30px;
}

.welcome-section p {
    text-align: justify;
}
.welcome-section .row-2 {
    margin-top: 100px;
}
.welcome-section .item {
    background-color: #efefef;
    padding: 40px;
    min-height: 280px;
    margin-bottom: 25px;
}
.welcome-section .item h4 {
    font-size: 25px;
    font-weight: 600;
    color: #084896;
}





/* employers-section */
.employers-section {
    padding: 80px 0;
}
.employers-section .img-box {
    border-radius: 20px;
    overflow: hidden;
}

/* job-seekers-section */
.job-seekers-section {
    padding: 80px 0;
}
.job-seekers-section .img-box {
    border-radius: 20px;
    overflow: hidden;
}




/* .opportunities-section */
.opportunities-section {
    padding: 80px 0 60px;
    background-color: #e9eff5;
}

.opportunities-section .section-heading {
    margin-bottom: 30px;
}
.opportunities-section .owl-services {
    padding: 0 60px;
}
.opportunities-section .item {
    margin: 30px 0;
    position: relative;
}
.opportunities-section .item .img-box {
    position: relative;
    z-index: 2;
}
.opportunities-section .item .img-box .img-1 {
    overflow: hidden;
    border-radius: 10px;
    /* box-shadow: 0 0 30px 0 #0000003b; */
    margin: 0 80px;
}
.opportunities-section .item .img-1 img {
    transition: all 0.8s;
}
.opportunities-section .item .img-1:hover img {
    transform: scale(1.1);
}

.opportunities-section .item .img-box .shape-1 {
    position: absolute;
    right: 0px;
    bottom: -25px;
    z-index: -1;
    opacity: 0.3;
}
.opportunities-section .item .img-box .shape-2 {
    position: absolute;
    left: 40px;
    top: 0px;
    z-index: -1;
    opacity: 0.3;
}

.opportunities-section .item .content .section-heading {
    margin-bottom: 15px;
}
.opportunities-section .item .content p {
    text-align: left;
    line-height: 1.8;
}
.opportunities-section .item .content .button a {
    background-color: #c83c37;
    border: 1px solid #c83c37;
    color: #fff;
    font-size: 14px;
    border-radius: 30px;
    padding: 10px 20px;
    display: inline-block;
    margin-top: 10px;
    transition: all 0.4s;
}
.opportunities-section .item .content .button a:hover {
    background-color: #a12723;
}

.opportunities-section .item .content .box-wrap {
    margin-top: 40px;
}
.opportunities-section .item .content .box-wrap .box-item {
    display: flex;
    gap: 20px;
    margin-bottom: 10px;
}
.opportunities-section .item .content .box-wrap .box-item .icon {
    background-color: #fff;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 0 0 auto;
    gap: 20px;
}
.opportunities-section .item .content .box-wrap .box-item .icon img {
    width: 43px;
    filter: invert(19%) sepia(75%) saturate(3138%) hue-rotate(349deg) brightness(103%) contrast(73%);
}
.opportunities-section .item .content .box-wrap .box-item .content h4 {
    font-size: 20px;
    color: #000;
    text-transform: capitalize;
    font-weight: 600;
    margin-bottom: 5px;
}

.opportunities-section .owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 70px;
    color: #13508e !important;
    font-size: 20px !important;
    background: #fff !important;
    border-radius: 0;
    transition: 0.3s ease;
}
.opportunities-section .owl-nav button:hover {
    background: #13508e !important;
    color: #fff !important;
}

.opportunities-section .owl-nav .owl-prev {
    left: -60px;
}
.opportunities-section .owl-nav .owl-next {
    right: -60px;
}






/* opportunities-page-roles */
.opportunities-page-roles {
    padding: 80px 0;
}

/* .opportunities-page-roles .img-box {
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 30px 0 #0000003d;
    border: 2px solid #fff;
} */

.opportunities-page-roles .img-box {
    border-radius: 10px;
    position: relative;
    z-index: 1;
}
.opportunities-page-roles .img-box .about-img-1 {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 10px;
    z-index: 1;
    margin: 0 30px;
}
.opportunities-page-roles .img-box .about-img-1 img {
    transition: all 0.8s;
}
.opportunities-page-roles .img-box .about-img-1:hover img {
    transform: scale(1.1);
}
.opportunities-page-roles .img-box .shape-1 {
    position: absolute;
    left: 10px;
    top: 0px;
    z-index: 0;
    opacity: 0.3;
}
.opportunities-page-roles .img-box .shape-2 {
    position: absolute;
    right: -20px;
    bottom: -30px;
    z-index: 0;
    opacity: 0.3;
}


.opportunities-page-roles .content.right {
    padding-left: 20px;
}
.opportunities-page-roles .content.left {
    padding-right: 20px;
}
.opportunities-page-roles .content h4 {
    font-size: 25px;
    font-weight: 600;
    color: #c83c37;
    margin-bottom: 10px;
}
.opportunities-page-roles .content h5 {
    color: #083b6e;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 0px;
}
.opportunities-page-roles .content .points {
    padding-top: 20px;
}
.opportunities-page-roles .content .points li {
    background: url(../images/tick.png) no-repeat 5px 0;
    padding: 0px 0 14px 33px;
    margin: -12px 0px 6px;
    text-align: left;
}

.opportunities-page-roles .bottom-text h3 {
    color: #083b6e;
    font-size: 22px;
    text-align: center;
    font-weight: 600;
    margin-bottom: 0px;
}








/* industries-section */

/* industries-section */
.industries-section {
    padding: 0 0 60px 0;
}

.industries-section .inner {
    padding: 30px;
    border-radius: 20px;
    background-color: #e9eff5;
}
.industries-section .inner .nav-tabs {
    justify-content: center;
    border: none;
}
.industries-section .inner .nav-tabs li {
    margin-bottom: 0;
}
.industries-section .inner .nav-tabs li button {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #000;
    font-size: 20px;
    font-weight: 500;
    position: relative;
    border: none;
    padding-left: 0;
    padding-right: 0;
    margin: 0 15px;
}
.industries-section .inner .nav-tabs li button:after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  width: 100%;
  height: 3px;
  transform: scaleX(0);
  background-color: #13508e;
  transition: transform 0.3s;
}
/* .industries-section .inner .nav-tabs li button:hover:after,
.industries-section .inner .nav-tabs li button.active:after {
  transform: scaleX(1);
} */
.industries-section .inner .nav-tabs li button.active {
    background-color: transparent;
    color: #000;
}
.industries-section .inner .nav-tabs li button .icon {
    width: 45px;
    height: 45px;
    background-color: #fff;
    border-radius: 6px;
    padding: 7px;
    transition: 0.3s;
}
/* .industries-section .inner .nav-tabs li button.active .icon {
    background-color: #13508e;
}
.industries-section .inner .nav-tabs li button.active .icon img {
    filter: invert(1);
} */


.industries-section .inner .tab-content .tab-pane {
    padding-top: 40px;
}

.industries-section .inner .tab-content .tab-pane .img-box {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 0 30px 0 #0000003b;
}

.industries-section .inner .tab-content .tab-pane .content.right {
    padding-left: 20px;
}
.industries-section .inner .tab-content .tab-pane .content.left {
    padding-right: 20px;
}

.industries-section .inner .tab-content .tab-pane .content h2 {
    color: #13508e;
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 20px;
}
/* .industries-section {
    padding: 80px 0;
}

.industries-section .item {
    padding: 20px 30px;
    border-radius: 15px;
    border: 1px solid #ddd;
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
    overflow: hidden;
    transition: all 0.8s ease;
    -moz-transition: all 0.8s ease;
    -webkit-transition: all 0.8s ease;
    -ms-transition: all 0.8s ease;
    -o-transition: all 0.8s ease;
}
.industries-section .item-7 {
    margin-top: 20px;
}
.industries-section .item:hover {
    -webkit-transform: translateY(-5px);
    -moz-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    -o-transform: translateY(-5px);
    transform: translateY(-5px);
}
.industries-section .item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 100%;
    z-index: -1;
    width: 100%;
    height: 100%;
    background-color: #e9eff5;
    transition: all 0.8s ease;
    -moz-transition: all 0.8s ease;
    -webkit-transition: all 0.8s ease;
    -ms-transition: all 0.8s ease;
    -o-transition: all 0.8s ease;
}
.industries-section .item:hover::before {
    top: 0;
}
.industries-section .item .icon-box {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}
.industries-section .item .icon {
    width: 60px;
    height: 60px;
    background-color: #e9eff5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    transition: all 0.8s ease;
    -moz-transition: all 0.8s ease;
    -webkit-transition: all 0.8s ease;
    -ms-transition: all 0.8s ease;
    -o-transition: all 0.8s ease;
}
.industries-section .item:hover .icon {
    background-color: #fff;
}
.industries-section .item .icon img {
    width: 35px;
    
}
.industries-section .item h4 {
    font-size: 20px;
    font-weight: 600;
    margin: 0;
    color: #13508e;
}
.industries-section .item p {
    margin: 0;
    text-align: left;
}
.industries-section .main-img {
    position: relative;
    display: grid;
    margin: 30px 0;
}
.industries-section .main {
    grid-area: 1 / 1;
    overflow: hidden;
    border-radius: 20px;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.5);
    transition: all 0.8s ease;
    -moz-transition: all 0.8s ease;
    -webkit-transition: all 0.8s ease;
    -ms-transition: all 0.8s ease;
    -o-transition: all 0.8s ease;
}
.industries-section .main.show {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}


.industries-section .inner {
    padding: 0px;
    border-radius: 20px;
}
.industries-section .inner .nav-tabs {
    justify-content: center;
}
.industries-section .inner .nav-tabs li {
    margin-bottom: 0;
}
.industries-section .inner .nav-tabs li button {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #000;
    font-size: 20px;
    font-weight: 500;
    position: relative;
    border: none;
    padding-left: 0;
    padding-right: 0;
    margin: 0 15px;
}
.industries-section .inner .nav-tabs li button:after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  width: 100%;
  height: 3px;
  transform: scaleX(0);
  background-color: #13508e;
  transition: transform 0.3s;
}
.industries-section .inner .nav-tabs li button:hover:after,
.industries-section .inner .nav-tabs li button.active:after {
  transform: scaleX(1);
}
.industries-section .inner .nav-tabs li button.active {
    background-color: transparent;
    color: #13508e;
}
.industries-section .inner .nav-tabs li button .icon {
    width: 45px;
    height: 45px;
    background-color: #fff;
    border-radius: 6px;
    padding: 7px;
    transition: 0.3s;
}
.industries-section .inner .nav-tabs li button.active .icon {
    background-color: #13508e;
}
.industries-section .inner .nav-tabs li button.active .icon img {
    filter: invert(1);
}


.industries-section .inner .tab-content .tab-pane {
    padding-top: 40px;
}

.industries-section .inner .tab-content .tab-pane .img-box {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 0 30px 0 #0000003b;
}

.industries-section .inner .tab-content .tab-pane .content.right {
    padding-left: 20px;
}
.industries-section .inner .tab-content .tab-pane .content.left {
    padding-right: 20px;
}

.industries-section .inner .tab-content .tab-pane .content h2 {
    color: #13508e;
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 20px;
}
 */


.mb-20 {
    margin-bottom: 20px;
}










/* certifications-compliance-section */
.certifications-compliance-section {
    padding: 80px 0;
}
.certifications-compliance-section .gallery-item {
    border-radius: 10px;
    overflow: hidden;
    border: 5px solid #fff;
    box-shadow: 0 0 9px 0 #0000001f;
    position: relative;
}
.certifications-compliance-section .gallery-item a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #051734b0;
    opacity: 0;
    transform: scale(0);
    transition: all 0.6s ease;
    -moz-transition: all 0.6s ease;
    -webkit-transition: all 0.6s ease;
    -ms-transition: all 0.6s ease;
    -o-transition: all 0.6s ease;
}
.certifications-compliance-section .gallery-item:hover a::before {
    opacity: 1;
    transform: scale(1);
}
.certifications-compliance-section .gallery-item a::after {
    content: "\f002";
    font-family: FontAwesome;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 30px;
    color: #fff;
    opacity: 0;
    visibility: hidden;
    transition: all 0.6s ease;
    -moz-transition: all 0.6s ease;
    -webkit-transition: all 0.6s ease;
    -ms-transition: all 0.6s ease;
    -o-transition: all 0.6s ease;
}
.certifications-compliance-section .gallery-item:hover a::after {
    opacity: 1;
    visibility: visible;
}




/* service-page-section */
.service-page-section {
    padding: 80px 0;
}
.service-page-section .row-mt {
    margin-top: 80px;
}
.service-page-section .box-item {
    /* background-color: #e9eff5; */
    padding: 0;
    border-radius: 0;
    margin-bottom: 0px;
}
.service-page-section .img-box {
    border-radius: 10px;
    position: relative;
    z-index: 1;
}
.service-page-section .img-box .about-img-1 {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 10px;
    z-index: 1;
    margin: 0 30px;
}
.service-page-section .img-box .about-img-1 img {
    transition: all 0.8s;
}
.service-page-section .img-box .about-img-1:hover img {
    transform: scale(1.1);
}
.service-page-section .img-box .shape-1 {
    position: absolute;
    left: 10px;
    top: 0px;
    z-index: 0;
    opacity: 0.3;
}
.service-page-section .img-box .shape-2 {
    position: absolute;
    right: -20px;
    bottom: -30px;
    z-index: 0;
    opacity: 0.3;
}

.service-page-section .content.right {
    padding-left: 20px;
}
.service-page-section .content.left {
    padding-right: 20px;
}
.service-page-section .content h4 {
    font-size: 25px;
    font-weight: 600;
    color: #c83c37;
    margin-bottom: 10px;
}
.service-page-section .content h5 {
    color: #083b6e;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 0px;
}
.service-page-section .content .points {
    padding-top: 20px;
}
.service-page-section .content .points li {
    background: url(../images/tick.png) no-repeat 5px 0;
    padding: 0px 0 14px 33px;
    margin: -12px 0px 6px;
    text-align: left;
}

.service-page-section .bottom-text h3 {
    color: #083b6e;
    font-size: 22px;
    text-align: center;
    font-weight: 600;
    margin-bottom: 0px;
}




/* support-section */
.support-section {
    background: #051734;
    padding: 80px 0;
    margin-bottom: 60px;
}
.support-section .section-heading {
    margin-bottom: 10px;
}
.support-section .section-heading h2 {
    color: #fff;
}
.support-section .text {
    margin-bottom: 30px;
}
.support-section .text p {
    color: #fff;
    text-align: center;
}
.support-section .item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    border: 1px solid #ffffff25;
    border-radius: 15px;
    margin-bottom: 10px;
}
.support-section .item .icon {
    width: 60px;
    height: 60px;
    background-color: #c83c37;
    color: #fff;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    margin-bottom: 0px;
    transition: all 0.8s ease;
    -moz-transition: all 0.8s ease;
    -webkit-transition: all 0.8s ease;
    -ms-transition: all 0.8s ease;
    -o-transition: all 0.8s ease;
}
.support-section .item .icon h5 {
    margin: 0;
    font-size: 22px;
}
.support-section .item .content h3 {
    color: #fff;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 1px;
}
.support-section .item .content p {
    color: #ffffffa2;
    font-size: 15px;
    font-weight: 400;
    text-align: left;
    margin: 0;
}

.support-section .img-box-1 {
    overflow: hidden;
    border-radius: 10px;
}
.support-section .img-box-2 {
    display: flex;
    gap: 0px;
    margin-top: 30px;
    border-radius: 10px;
    overflow: hidden;
}
.support-section .img-box-2 .content {
    width: 50%;
    padding: 22px 28px;
    background-color: #c83c37;
    display: flex;
    align-items: center;
}
.support-section .img-box-2 .content h4 {
    color: #fff;
    font-size: 1.1vw;
    margin: 0;
}
.support-section .img-box-2 .img-box {
    width: 50%;
}







/* testimonials-section */

.testimonials-section .inner {
    position: relative;
    z-index: 2;
    padding: 110px 0 60px;
}
.testimonials-section .inner::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0.3;
    width: 100%;
    height: 100%;
    background-image: url(../images/worldmap-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: ce
}
.testimonials-section .section-heading h2 {
    color: #fff;
}
.testimonials-section .testi-img {
    background-image: url("../images/testi-img.jpg");
    background-size: cover;
    background-position: center center;
    padding: 145px 55px;
    padding-right: 80px;
    border-radius: 20px;
    width: 800px;
    position: relative;
    overflow: hidden;
    z-index: 2;
}
.testimonials-section .testi-img::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    background-color: #08335e83;
    width: 100%;
    height: 100%;
}
.testimonials-section .slider-box {
    background: #fff;
    z-index: 3;
    position: relative;
    padding: 45px 40px;
    margin-top: 28%;
    transform: translateY(-50%);
    border-radius: 20px;
    box-shadow: rgba(99, 99, 99, 0.09) 0px 2px 8px 0px;
}
.testimonials-section .slider-box .item .user {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}
.testimonials-section .slider-box .item .rating li {
    display: inline-block;
}
.testimonials-section .slider-box .item .rating li i {
    color: #e9b200;
}
.testimonials-section .slider-box .item .name h4 {
    color: #13508e;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: -3px;
}
.testimonials-section .slider-box .item .name span {
    color: #4c4c4c;
    font-size: 16px;
    font-weight: 400;
}

.testimonials-section .owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 50px;
    color: #fff !important;
    font-size: 20px !important;
    background:#c83c37 !important;
    border-radius: 5px;
    transition: 0.3s ease;
}
.testimonials-section .owl-nav button:hover {
    background-color: #13508e !important;
}
.testimonials-section .owl-nav .owl-prev {
    left: -60px;
}
.testimonials-section .owl-nav .owl-next {
    right: -60px;
}








/* -----------------
About Section
--------------------*/

.about-section {
    padding: 90px 0;
    position: relative;
    top: -7px;
    z-index: 2;
    overflow: hidden;
}
.about-section .section-heading h2 span {
    /* display: block; */
}
/* .about-section img {
    width: auto;
} */
.about-section .img-box {
    position: relative;
    display: block;
    z-index: 1;
}
.about-section .img-box .about-img-1 {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 10px;
    z-index: 1;
    margin: 0 30px;
}
.about-section .img-box .shape-1 {
    position: absolute;
    left: 10px;
    top: 40px;
    z-index: 0;
    opacity: 0.3;
}
.about-section .img-box .shape-2 {
    position: absolute;
    right: 0px;
    bottom: 60px;
    z-index: 0;
    opacity: 0.3;
}
.about-section .img-box .shape-1 img {
    width: auto;
}
.about-section .img-box .shape-2 img {
    width: auto;
}


.about-section .img-box .content::before {
    width: 0;
    height: 0;
    border-top: 24px solid #054477;
    border-right: 30px solid transparent;
    content: "";
    left: 0px;
    position: absolute;
    top: -24px;
    transform: rotate(-180.509deg);
}
.about-section .img-box .content {
    padding: 26px;
    background-color: #097ddb;
    border-radius: 0 10px 10px 0;
    max-width: 160px;
    position: absolute;
    top: 7%;
    left: -4.6%;
    z-index: 9;
}

.about-section .img-box .content h2 {
    color: #fff;
    font-size: 40px;
    font-weight: 700;
}
.about-section .img-box .content p {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    text-align: left;
}
.about-section .content {
    padding-right: 30px;
}
.about-section .content h4 {
    color: #083b6e;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}
.about-section p {
    text-align: justify;
}
.about-section .row-2 {
    margin-top: 100px;
}
.about-section .item {
    background-color: #efefef;
    padding: 40px;
    min-height: 280px;
    margin-bottom: 25px;
}
.about-section .item h4 {
    font-size: 25px;
    font-weight: 600;
    color: #084896;
}



.why-choose-section {
    overflow: hidden;
    background-color: #051734;
}
.why-choose-section .section-heading h2 {
    color: #fff;
}
.why-choose-section .row.no-gutters > * {
    padding-right: 0px;
    padding-left: 0px;
}
.why-choose-section .container-fluid {
    padding: 0;
}
.why-choose-section .why-box {
    display: flex;
    flex-wrap: wrap;
    padding-left: calc(((100vw - 1290px) / 2));
}
.why-choose-section .why-content {
    width: 52%;
    align-content: center;
    padding: 100px 90px 100px 0;
}
.why-choose-section .why-content .boxes .item-box {
    display: flex;
    align-items: center;
    gap: 20px;
    border: 1px solid #ffffff25;
    border-radius: 15px;
    padding: 16px;
    margin-bottom: 10px;
    transition: all 0.4s;
}
.why-choose-section .why-content .boxes .item-box .icon img {
    filter: invert(1);
    width: 40px;
}
.why-choose-section .why-content .boxes .item-box .icon {
    position: relative;
    z-index: 2;
    height: 60px;
    width: 60px;
    padding: 8px;
    background-color: #c83c37;
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0px;
    border-radius: 50%;
}
.why-choose-section .why-content .boxes .item-box .content h3 {
    font-size: 20px;
    color: #fff;
    font-weight: 500;
    margin: 0;
}

.why-choose-section .why-images {
    position: relative;
}
.why-choose-section .why-images {
    width: 48%;
}
.why-choose-section .why-images .why-img figure, 
.why-choose-section .why-images .why-img {
    height: 100%;
}
.why-choose-section .why-images .why-img img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}




/* process-section */
.process-section {
    padding: 60px 0;
}

.process-section img {
    width: auto;
}

.process-section .box {
    text-align: center;
    position: relative;
}
.process-section .box3:before {
    background: none;
}
.process-section .box .icon {
    display: inline-block;
    text-align: center;
}
.process-section .box .icon .icon-wrap {
    font-size: 60px;
    margin-bottom: 35px;
    width: 110px;
    height: 110px;
    line-height: 110px;
    border-radius: 8px;
    position: relative;
    box-shadow: 0 0 24px 0 rgba(26, 47, 106, .13);
    display: flex;
    justify-content: center;
    align-items: center;
}
.process-section .box1 .icon .icon-wrap:before {
    content: "01";
}
.process-section .box2 .icon .icon-wrap:before {
    content: "02";
}
.process-section .box3 .icon .icon-wrap:before {
    content: "03";
}
.process-section .box4 .icon .icon-wrap:before {
    content: "04";
}
.process-section .box .icon .icon-wrap:before {
    color: #fff;
    height: 35px;
    width: 35px;
    font-size: 13px;
    line-height: 35px;
    text-align: center;
    border-radius: 50%;
    position: absolute;
    font-weight: 700;
    bottom: -10px;
    right: -5px;
    z-index: 1;
    background-color: #c83c37;
}
.process-section .box .icon .icon-wrap img {
    width: 60px;
}

.process-section .box .content h2 {
    font-size: 22px;
    line-height: 24px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #083b6e;
}

.process-section .box .content p {
    color: #555555;
    text-align: center;
    font-weight: 500;
}




.commitment-section {
    padding: 80px 0;
    background-color: #e9eff5;
    overflow: hidden;
}


.commitment-section .img-box {
    border-radius: 10px;
    position: relative;
    z-index: 1;
}
.commitment-section .img-box .about-img-1 {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 10px;
    z-index: 1;
    margin: 0 30px;
}
.commitment-section .img-box .about-img-1 img {
    transition: all 0.8s;
}
.commitment-section .img-box .about-img-1:hover img {
    transform: scale(1.1);
}
.commitment-section .img-box .shape-1 {
    position: absolute;
    left: 10px;
    top: 0px;
    z-index: 0;
    opacity: 0.3;
}
.commitment-section .img-box .shape-2 {
    position: absolute;
    right: -20px;
    bottom: -30px;
    z-index: 0;
    opacity: 0.3;
}

.commitment-section .content h4 {
    color: #083b6e;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 0px;
}





.opportunities-page-why {
    margin-bottom: 60px;
}

.opportunities-page-why .why-content {
    width: 62%;
}
.opportunities-page-why .why-images {
    width: 38%;
}
.why-choose-section .why-content {
    padding: 70px 90px 70px 0;
}








.ai-page-why {
    margin-bottom: 0px;
}
.ai-page-why .why-content {
    width: 62%;
}
.ai-page-why .why-content p {
    color: #fff;
}
.ai-page-why .why-images {
    width: 38%;
}
.ai-page-why .boxes {
    margin-top: 20px;
}

.ai-page-why .why-content .boxes .item-box .content h3 {
    margin-bottom: 5px;
}
.ai-page-why .why-content .boxes .item-box .content p {
    margin: 0;
    color: #ffffffa2;
}




/* ai-page-business */
.ai-page-business {
    padding: 80px 0;
}

/* .ai-page-business .img-box {
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 30px 0 #0000003d;
    border: 2px solid #fff;
} */

.ai-page-business .img-box {
    border-radius: 10px;
    position: relative;
    z-index: 1;
}
.ai-page-business .img-box .about-img-1 {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 10px;
    z-index: 1;
    margin: 0 30px;
}
.ai-page-business .img-box .about-img-1 img {
    transition: all 0.8s;
}
.ai-page-business .img-box .about-img-1:hover img {
    transform: scale(1.1);
}
.ai-page-business .img-box .shape-1 {
    position: absolute;
    left: 10px;
    top: 0px;
    z-index: 0;
    opacity: 0.3;
}
.ai-page-business .img-box .shape-2 {
    position: absolute;
    right: -20px;
    bottom: -30px;
    z-index: 0;
    opacity: 0.3;
}


.ai-page-business .content.right {
    padding-left: 20px;
}
.ai-page-business .content.left {
    padding-right: 20px;
}
.ai-page-business .content h4 {
    font-size: 25px;
    font-weight: 600;
    color: #c83c37;
    margin-bottom: 10px;
}
.ai-page-business .content h5 {
    color: #083b6e;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 0px;
}
.ai-page-business .content .points {
    padding-top: 20px;
}
.ai-page-business .content .points li {
    background: url(../images/tick.png) no-repeat 5px 0;
    padding: 0px 0 14px 33px;
    margin: -12px 0px 6px;
    text-align: left;
}

.ai-page-business .bottom-text h3 {
    color: #083b6e;
    font-size: 22px;
    text-align: center;
    font-weight: 600;
    margin-bottom: 0px;
}





.ml-page-why {
    margin-bottom: 60px;
}
.ml-page-why .why-content {
    width: 62%;
}
.ml-page-why .why-content p {
    color: #fff;
}
.ml-page-why .why-images {
    width: 38%;
}
.ml-page-why .boxes {
    margin-top: 20px;
    margin-bottom: 30px;
}

.ml-page-why .why-content .boxes .item-box .content h3 {
    margin-bottom: 5px;
}
.ml-page-why .why-content .boxes .item-box .content p {
    margin: 0;
    color: #ffffffa2;
}
.ml-page-why .why-content h4 {
    font-size: 25px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
}
.ml-page-why .why-content h5 {
    color: #fff;
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 0px;
}



/* ----------------------
Contact Section
------------------------*/
.contact-section {
    padding: 60px 0;
    background-color: #fff;
    position: relative;
    top: -7px;
    margin-bottom: 100px;
}

.contact-section .contact-col {
    display: flex;
}

.contact-form {
    background-color: #fff;
    padding: 40px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    color: #000000;
    font-size: 18px;
    font-weight: 500;
    border: 1px solid transparent;
    border-bottom: 1px solid #00000077;
    background-color: #fff;
    width: 100%;
    border-radius: 0px;
    outline: none;
    padding: 10px 15px;
    -webkit-appearance: auto;
    -moz-appearance: auto;
    appearance: auto;
}

.contact-form fieldset {
    margin-bottom: 20px;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    border-bottom-color: #c83c37;
}

.contact-form button {
    margin-top: 0px;
    font-size: 16px;
    color: #fff;
    background-color: #c83c37;
    border: 1px solid #c83c37;
    padding: 12px 40px;
    box-shadow: none;
    border: none;
    display: inline-block;
    border-radius: 100px;
    font-weight: 400;
    transition: all 0.3s;
}

.contact-form button:hover {
    background-color: #91211d;
}

.contact-form textarea {
    padding: 20px;
    
}

.contact-form ::-webkit-input-placeholder {
    /* Edge */
    color: #7c7c7c;
}
.contact-form select {
    color: #7c7c7c;
}
.contact-form :-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #7c7c7c;
}

.contact-form ::placeholder {
    color: #7c7c7c;
}

.contact-section .contact-box {
    width: 100%;
    padding: 40px;
    border-radius: 20px;
    background-color: #13508e;
    box-shadow: 0px 1px 18px rgba(0, 0, 0, 0.07);
}

.contact-section .contact-box .contact-info h2 {
    color: #fff;
    font-size: 30px;
    margin-bottom: 30px;
    font-weight: 600;
}

.contact-section .contact-box .contact-info ul li {
    display: flex;
    align-items: center;
    position: relative;
    color: #000;
    padding-bottom: 20px;
    padding-left: 55px;
}

.contact-section .contact-box .contact-info ul li .icon {
    position: absolute;
    left: 0;
    width: 35px;
    height: 35px;
    font-size: 20px;
    margin-right: 20px;
    text-align: center;
    border-radius: 60px;
    line-height: 37px;
}
.contact-section .contact-box .contact-info ul li .icon img {

}
.contact-section .contact-box .contact-info ul li p {
    color: #fff !important;
    font-size: 18px;
    margin: 0 !important;
    font-weight: 500;
}

.contact-section .contact-box .contact-info ul li span {
    display: block;
    font-weight: 400;
    color: #ffffffbf;
    text-transform: uppercase;
}

.contact-section .contact-box .contact-info ul li a {
    color: #fff;
    font-weight: 500;
    font-size: 18px;
}

.contact-section .contact-box .contact-info h4 {
    font-size: 16px;
    color: #000;
    margin-bottom: 30px;
    font-weight: 600;
}

form fieldset .radio {
    margin-top: 10px;
    position: relative;
}

form fieldset .radio li {
    margin: 0 10px;
}

.contact-form input[type="radio"] {
    width: auto;
    margin-bottom: 0;
}

form fieldset .radio li label {
    width: auto;
}

/* -----------------
Footer Section
--------------------*/



/* footer-top */
.footer-top {
    padding: 120px 0 0;
    position: relative;
    z-index: 9;
}
.footer-top .inner {
    background-color: #c83c37;
    position: relative;
    /* background: url("../images/footer-top-bg.jpg"); */
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0px 0px 60px rgb(0 0 0 / 10%);
}
.footer-top .inner .img-box {
    position: absolute;
    bottom: 0;
    right: 110px;
    width: 20%;
}

.footer-top .inner .right-img {
    position: absolute;
    bottom: 0;
    right: 70px;
}
.footer-top .inner .text {
    padding-right: 30px;
}

.footer-top .inner .text h2 {
    color: #fff;
    font-size: 33px;
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 10px;
}
.footer-top .inner .text p {
    color: #fff;
    font-weight: 400;
    text-align: left;
}
.footer-top .btn-box a {
    padding: 7px 20px !important;
    background-color: #fff;
    color: #971d19 !important;
    border-radius: 100px;
    display: inline-block;
    font-size: 16px;
    text-transform: capitalize;
    font-weight: 500;
    transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}
.footer-top .btn-box a:hover {
    opacity: 0.8;
    transform: scale(1.05);
}


/* footer-section */
.footer-wrapper {
    position: relative;
    z-index: 2;
    background: #051734;
    background: url("../images/footer-bg.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.footer-wrapper::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0px;
    z-index: -1;
    opacity: 0.9;
    width: 100%;
    height: 100%;
    background: #051734;
}


footer {
    padding: 60px 0;
    position: relative;
    z-index: 1;
}

footer .widget h2 {
    color: #fff;
    font-size: 20px;
    text-transform: capitalize;
    font-weight: 600;
    margin-bottom: 20px;
    margin-right: 15px;
    padding-bottom: 15px;
    position: relative;
}

footer .widget h2::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    bottom: 0px;
    background-color: #ffffff40;
    width: 100%;
    height: 1px;
}

footer .widget h2::before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    bottom: -1px;
    background-color: #c54c47;
    width: 130px;
    height: 3px;
    z-index: 9;
}

footer .widget p {
    color: #fff;
    margin: 0;
}

footer .widget-about p {
    text-align: left;
    font-weight: 400;
}

footer .widget-links .nav-links ul {
    padding: 0;
    list-style-type: none;
}

footer .widget-links .nav-links ul li {
    margin-bottom: 0;
}

footer .widget-links .f-products-links {
    max-height: 300px;
    overflow-y: scroll;
    scroll-behavior: smooth;
}

footer .widget-links .nav-links ul li a {
    color: #fff;
    font-size: 15px;
    padding: 7px 0;
    text-transform: capitalize;
    font-weight: 400;
    text-align: left;
    display: flex;
    transition: 0.3s ease;
    border-bottom: 1px solid #ffffff17;
}

footer .widget-links .nav-links ul li a:before {
    content: "\f105";
    font-family: "FontAwesome";
    padding-right: 10px;
    color: #fff;
    font-size: 13px;
    margin-top: 2px;
}

footer .widget-links .nav-links ul li a:hover {
    color: #c54c47;
    background-color: transparent;
}

footer .widget-contact .contact-info ul {
    padding: 0;
}

footer .widget-contact .contact-info ul li {
    display: flex;
    align-items: center;
    position: relative;
    color: #fff;
    padding-bottom: 20px;
    padding-left: 55px;
}

footer .widget-contact .contact-info ul li:first-child {
    /* align-items: start; */
}

footer .widget-contact .contact-info ul li i,
footer .widget-contact .contact-info ul li .icon {
    position: absolute;
    left: 0;
    width: 35px;
    height: 35px;
    font-size: 20px;
    margin-right: 20px;
    text-align: center;
    border-radius: 60px;
    line-height: 37px;
}

footer .widget-contact .contact-info ul li p {
    display: grid;
    text-align: left;
    font-size: 15px;
    font-weight: 400;
}

footer .widget-contact .contact-info ul li a {
    color: #fff;
    font-size: 15px;
    font-weight: 400;
}

footer .widget-contact .contact-info ul li a.email {
    margin-top: 10px;
}

/* footer .widget-contact .contact-info h4 {
  font-size: 15px;
  color: #fff;
  margin-bottom: 20px;
  font-family: 'Ubuntu', sans-serif;
} */

/* ----------------------
Footer Bottom Section
------------------------*/
.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid #ffffff2e;
    /* background-color: #10336d; */
}

.footer-bottom p,
.footer-bottom p a {
    margin: 0;
    color: #fff;
    font-size: 15px;
}

.footer-bottom .copyrights {
    float: left;
}

.footer-bottom .design {
    float: right;
}

.social-icons {
    margin-top: 10px;
}

.social-icons li {
    display: inline-block;
    margin: 0 10px;
}

.social-icons li a {
    width: 30px;
    height: 30px;
    display: block;
    background-color: #f7b444;
    text-align: center;
    line-height: 35px;
}

.social-icons li a i {
    color: #0c487f;
    font-size: 18px;
}

/* ----------------------
Go To Top
------------------------*/
#go-to-top {
    display: inline-block;
    background-color: #fff;
    width: 50px;
    height: 50px;
    text-align: center;
    border-radius: 50px;
    position: fixed;
    bottom: 40px;
    right: 60px;
    transition: background-color 0.3s, opacity 0.5s, visibility 0.5s;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
    box-shadow: 0 0 15px 2px #00000029;
}

#go-to-top::after {
    content: "\f106";
    font-family: FontAwesome;
    font-weight: normal;
    font-style: normal;
    font-size: 2em;
    line-height: 47px;
    color: #c83c37;
}

#go-to-top:hover {
    cursor: pointer;
    background-color: #c83c37;
}

#go-to-top:active {
    background-color: #c83c37;
}

#go-to-top:hover::after,
#go-to-top:active::after {
    color: #fff;
}

#go-to-top.show {
    opacity: 1;
    visibility: visible;
}

.whatsapp-name {
    font-size: 16px;
    font-weight: 600;
    padding-bottom: 0;
    margin-bottom: 0;
    line-height: 0.5;
    color: #fff;
}

#whatsapp-chat {
    box-sizing: border-box !important;
    outline: none !important;
    position: fixed;
    width: 380px;
    border-radius: 10px;
    box-shadow: 0 1px 15px rgba(32, 33, 36, 0.28);
    bottom: 140px;
    right: 130px;
    overflow: hidden;
    z-index: 99;
    animation-name: showchat;
    animation-duration: 1s;
    transform: scale(1);
}

a.blantershow-chat {
    background: #189d0e;
    color: #fff;
    position: fixed;
    display: flex;
    font-weight: 600;
    text-transform: uppercase;
    justify-content: space-between;
    z-index: 98;
    opacity: 0;
    visibility: hidden;
    bottom: 70px;
    right: 130px;
    font-size: 15px;
    padding: 16px 30px;
    border-radius: 30px;
    box-shadow: 0 1px 15px rgba(32, 33, 36, 0.28);
}

a.blantershow-chat.show {
    opacity: 1;
    visibility: visible;
}

.blantershow-chat i {
    font-size: 36px;
    line-height: 20px;
    padding-right: 10px;
}

a.blantershow-chat svg {
    transform: scale(1.2);
    margin: 0 10px 0 0;
}

.header-chat {
    /*   background: linear-gradient(to right top, #6f96f3, #164ed2); */
    background: #009688;
    background: #095e54;
    color: #fff;
    padding: 20px;
}

.header-chat h3 {
    margin: 0 0 10px;
}

.header-chat p {
    font-size: 14px;
    line-height: 1.4;
    margin: 0;
    padding-left: 10px;
}

.header-chat .head-home {
    display: flex;
    align-items: center;
}

.info-avatar {
    position: relative;
}

.info-avatar img {
    border-radius: 100%;
    width: 50px;
    float: left;
    margin: 0 10px 0 0;
    background-color: #fff;
    padding: 5px;
}

a.informasi {
    padding: 20px;
    display: block;
    overflow: hidden;
    animation-name: showhide;
    animation-duration: 0.5s;
}

a.informasi:hover {
    background: #f1f1f1;
}

.info-chat span {
    display: block;
}

#get-label,
span.chat-label {
    font-size: 12px;
    color: #888;
}

#get-nama,
span.chat-nama {
    margin: 5px 0 0;
    font-size: 15px;
    font-weight: 700;
    color: #222;
}

#get-label,
#get-nama {
    color: #fff;
}

span.my-number {
    display: none;
}

.blanter-msg {
    color: #444;
    padding: 20px;
    font-size: 14px;
    background-color: #fff;
    text-align: center;
    border-top: 1px solid #ddd;
}

.blanter-msg a {
    background-color: #189d0e;
    color: #fff;
    width: 100%;
    padding: 10px 30px;
    border-radius: 60px;
    font-size: 15px;
}

.blanter-msg a i {
    font-size: 16px;
}

textarea#chat-input {
    border: none;
    font-family: "Arial", sans-serif;
    width: 100%;
    height: 20px;
    outline: none;
    resize: none;
    padding: 10px;
    font-size: 14px;
}

a#send-it {
    width: 30px;
    font-weight: 700;
    padding: 10px 10px 0;
    background: #eee;
    border-radius: 10px;
}

a#send-it svg {
    fill: #a6a6a6;
    height: 24px;
    width: 24px;
}

.first-msg {
    background: transparent;
    padding: 30px;
    text-align: center;
}

.first-msg span {
    background: #e2e2e2;
    color: #333;
    font-size: 14.2px;
    line-height: 1.7;
    border-radius: 10px;
    padding: 15px 20px;
    display: inline-block;
}

.start-chat .blanter-msg {
    display: flex;
    justify-content: center;
}

#get-number {
    display: none;
}

a.close-chat {
    position: absolute;
    top: 5px;
    right: 15px;
    color: #fff;
    font-size: 30px;
}

@keyframes ZpjSY {
    0% {
        background-color: #b6b5ba;
    }

    15% {
        background-color: #111111;
    }

    25% {
        background-color: #b6b5ba;
    }
}

@keyframes hPhMsj {
    15% {
        background-color: #b6b5ba;
    }

    25% {
        background-color: #111111;
    }

    35% {
        background-color: #b6b5ba;
    }
}

@keyframes iUMejp {
    25% {
        background-color: #b6b5ba;
    }

    35% {
        background-color: #111111;
    }

    45% {
        background-color: #b6b5ba;
    }
}

@keyframes showhide {
    from {
        transform: scale(0.5);
        opacity: 0;
    }
}

@keyframes showchat {
    from {
        transform: scale(0);
        opacity: 0;
    }
}

@media screen and (max-width: 480px) {
    #whatsapp-chat {
        width: auto;
        left: 5%;
        right: 5%;
        font-size: 80%;
    }
}

.whatsapp-hide {
    display: none;
    animation-name: showhide;
    animation-duration: 0.5s;
    transform: scale(1);
    opacity: 1;
}

.whatsapp-show {
    display: block;
    animation-name: showhide;
    animation-duration: 0.5s;
    transform: scale(1);
    opacity: 1;
}

.whatsapp-message-container {
    display: flex;
    z-index: 1;
}

.whatsapp-message {
    padding: 7px 14px 6px;
    background-color: white;
    border-radius: 0px 8px 8px;
    position: relative;
    transition: all 0.3s ease 0s;
    opacity: 0;
    transform-origin: center top 0px;
    z-index: 2;
    box-shadow: rgba(0, 0, 0, 0.13) 0px 1px 0.5px;
    margin-top: 4px;
    margin-left: -54px;
    max-width: calc(100% - 66px);
}

.whatsapp-chat-body {
    padding: 20px 20px 20px 10px;
    background-color: #e6ddd4;
    position: relative;
}

.whatsapp-chat-body::before {
    display: block;
    position: absolute;
    content: "";
    left: 0px;
    top: 0px;
    height: 100%;
    width: 100%;
    z-index: 0;
    opacity: 0.08;
    background-image: url("../images/whatsapp-pattern.png");
}

.dAbFpq {
    display: flex;
    z-index: 1;
}

.eJJEeC {
    background-color: white;
    width: 52.5px;
    height: 32px;
    border-radius: 16px;
    display: flex;
    -moz-box-pack: center;
    justify-content: center;
    -moz-box-align: center;
    align-items: center;
    margin-left: 10px;
    opacity: 0;
    transition: all 0.1s ease 0s;
    z-index: 1;
    box-shadow: rgba(0, 0, 0, 0.13) 0px 1px 0.5px;
}

.hFENyl {
    position: relative;
    display: flex;
}

.ixsrax {
    height: 5px;
    width: 5px;
    margin: 0px 2px;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    animation-duration: 1.2s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    top: 0px;
    background-color: #9e9da2;
    animation-name: ZpjSY;
}

.dRvxoz {
    height: 5px;
    width: 5px;
    margin: 0px 2px;
    background-color: #b6b5ba;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    animation-duration: 1.2s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    top: 0px;
    animation-name: hPhMsj;
}

.kAZgZq {
    padding: 7px 14px 6px;
    background-color: white;
    border-radius: 0px 8px 8px;
    position: relative;
    transition: all 0.3s ease 0s;
    opacity: 0;
    transform-origin: center top 0px;
    z-index: 2;
    box-shadow: rgba(0, 0, 0, 0.13) 0px 1px 0.5px;
    margin-top: 4px;
    margin-left: -54px;
    max-width: calc(100% - 66px);
}

.kAZgZq::before {
    position: absolute;
    background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAmCAMAAADp2asXAAAABGdBTUEAALGPC/xhBQAAAAFzUkdCAK7OHOkAAACQUExURUxpccPDw9ra2m9vbwAAAAAAADExMf///wAAABoaGk9PT7q6uqurqwsLCycnJz4+PtDQ0JycnIyMjPf3915eXvz8/E9PT/39/RMTE4CAgAAAAJqamv////////r6+u/v7yUlJeXl5f///5ycnOXl5XNzc/Hx8f///xUVFf///+zs7P///+bm5gAAAM7Ozv///2fVensAAAAvdFJOUwCow1cBCCnqAhNAnY0WIDW2f2/hSeo99g1lBYT87vDXG8/6d8oL4sgM5szrkgl660OiZwAAAHRJREFUKM/ty7cSggAABNFVUQFzwizmjPz/39k4YuFWtm55bw7eHR6ny63+alnswT3/rIDzUSC7CrAziPYCJCsB+gbVkgDtVIDh+DsE9OTBpCtAbSBAZSEQNgWIygJ0RgJMDWYNAdYbAeKtAHODlkHIv997AkLqIVOXVU84AAAAAElFTkSuQmCC");
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: contain;
    content: "";
    top: 0px;
    left: -12px;
    width: 12px;
    height: 19px;
}

.bMIBDo {
    font-size: 13px;
    font-weight: 700;
    line-height: 18px;
    color: rgba(0, 0, 0, 0.4);
}

.iSpIQi {
    font-size: 14px;
    line-height: 19px;
    margin-top: 4px;
    color: #111111;
}

.iSpIQi {
    font-size: 14px;
    line-height: 19px;
    margin-top: 4px;
    color: #111111;
}

.cqCDVm {
    text-align: right;
    margin-top: 4px;
    font-size: 12px;
    line-height: 16px;
    color: rgba(17, 17, 17, 0.5);
    margin-right: -8px;
    margin-bottom: -4px;
}

.captcha-img {
    display: flex;
}

.captcha-img img {
    width: 200px;
}

#captcha_reload i {
    color: #000000;
    font-size: 22px;
    line-height: 40px;
    padding-left: 10px;
}

#captcha-field {
    margin: 0;
}

#captcha-error {
    text-align: center;
}

#captcha-error p {
    margin: 0;
}

#captcha_reload i {
    color: #000;
    font-size: 20px;
    height: 100%;
    display: flex;
    align-items: center;
}

#captcha-field {
    margin-top: 0px;
}

#captcha_image {
    width: 80%;
    height: 100%;
    margin: 0 0px 0 0;
    text-align: center;
}

#success_message {
    text-align: center;
    background-color: #dff2d5;
    padding: 5px 10px;
    border: 1px solid #399d04;
    margin-top: 20px;
}

#success_message h3 {
    color: #000;
    font-size: 16px;
    font-weight: 500;
    margin: 0;
}

.help-block.error,
#file-error p {
    color: #f00;
    font-size: 14px;
}

#employment_type-error {
    position: absolute;
    top: 100%;
}

#error_message {
    text-align: center;
    background-color: #f2d5d5;
    padding: 5px 10px;
    border: 1px solid #9d0404;
    margin-top: 20px;
}

#error_message h3 {
    color: #000;
    font-size: 16px;
    font-weight: 500;
    margin: 0;
}







@media screen and (max-width: 1399px) {
    .welcome-section .bottom-content,
    .about-section .bottom-content {
        margin-top: 30px;
    }
    .packages-section .top-block .item {
        min-height: 380px;
    }
}
@media screen and (max-width: 1366px) {
    .hero-slider .swiper-slide .content-box {
        max-width: 580px;
    }
    .hero-slider .swiper-slide .content-box .lower-box .btn-box .theme-btn {
        margin-top: 0;
    }
    .hero-slider .swiper-slide .content-box .lower-box {
        margin-top: 10px;
    }
    .welcome-section .img-box .content {
        left: -5.2%;
    }
    .footer-top .inner .text h2 {
        font-size: 36px;
    }
    .about-section .img-box .content {
        left: -5.4%;
    }
}
@media only screen and (max-width: 1300px) {
    .why-choose-section .why-box {
        padding: 0;
    }
    .why-choose-section .why-content {
        padding: 50px 80px 50px 35px;
    }
}
@media screen and (max-width: 1199px) {
    .navbar-nav li .nav-link {
        font-size: 14px;
    }
    .navbar .contact-btn a {
        margin-left: 20px;
    }
    .hero-slider .swiper-slide .content-box {
        max-width: 460px;
    }
    .hero-slider .swiper-slide .content-box .lower-box .theme-btn {
        padding: 10px 20px;
        font-size: 1vw;
    }
    .hero-slider .swiper-button-prev {
        left: -45px;
    }
    .hero-slider .swiper-button-next {
        right: -45px;
    }
    .welcome-section {
        padding: 90px 0 90px;
    }

    .welcome-section .img-box .about-img-1 {
        margin-right: 0;
        margin-top: 50px;
    }
    .welcome-section .img-box .about-img-2 {
        right: -25px;
    }
    .opportunities-section .item .content.left {
        margin-bottom: 60px;
    }
    .opportunities-section .item .content.right {
        margin-top: 60px;
    }
    .services-section .item .content {
        padding: 20px;
        margin-left: 20px;
        margin-bottom: 20px;
    }
    .support-section .img-box-1 {
        margin-top: 40px;
    }
    .support-section .img-box-2 .content h4 {
        font-size: 2.5vw;
    }
    .testimonials-section .slider-box {
        margin-top: 38%;
    }
    .achievements-section .item {
        padding: 40px 10px;
    }
    .achievements-section .item .counter-item h2 {
        font-size: 55px;
    }
    .footer-top .inner .text h2 {
        font-size: 29px;
    }
    .footer-top .inner .text a {
        font-size: 18px;
    }
}

@media screen and (max-width: 991px) {
    .top-bar {
        background-color: #0b4178;
    }
    .top-bar .top-inner {
        padding: 10px 20px;
    }
    .top-bar .top-inner {
        margin-top: 0;
        margin-bottom: 0;
    }
    .top-bar .contact-info {
        float: none;
        align-items: center;
        justify-content: center;
    }
    .top-bar .contact-info.left {
        float: none;
        margin-bottom: 5px;
    }
    .top-bar .contact-info li {
        padding-left: 0px;
    }
    .top-bar .contact-info li p {
        line-height: 18px;
    }
    .contact-info li p {
        text-align: left;
    }
    .section-heading h2 {
        font-size: 35px;
    }
    .navbar {
        padding: 10px 0;
    }
    .navbar .contact-btn a {
        margin-left: 0;
    }
    .navbar-nav>li,
    .fixed-header .navbar-nav>li {
        margin: 0px 5px;
    }
    .navbar-collapse {        
        padding-top: 50px;
        height: 350px;
        overflow-y: scroll;
    }
    .navbar .contact-btn {
        margin-top: 15px;
    }
    .navbar-nav li .nav-link, 
    .fixed-header .navbar-nav li .nav-link {
        padding: 10px 0px !important;
    }
    .navbar-nav li .nav-link::before {
        height: 0;
    }
    .dropdown-menu {
        width: 100%;
    }
    .navbar-nav li .nav-link {
        font-size: 16px;
    }
    .dropdown-toggle::before {
        position: absolute;
        right: 0;
        display: inline-block;
        margin-left: .255em;
        vertical-align: .255em;
        content: "";
        border-top: .3em solid;
        border-right: .3em solid transparent;
        border-bottom: 0;
        border-left: .3em solid transparent;
    }
    .hero-slider .swiper-slide .content-box {
        max-width: 370px;
    }
    .hero-slider .swiper-slide .content-box .lower-box p {
        font-size: 1.5vw;
    }
    .hero-slider .swiper-slide .content-box .lower-box .theme-btn {
        padding: 7px 12px;
        font-size: 1.2vw;
    }
    .welcome-section .content {
        padding-right: 0px;
        padding-bottom: 30px;
    }
    .welcome-section .img-box .about-img-1 {
        margin-right: 0;
        margin-top: 0px;
    }
    .welcome-section .img-box, .about-section .img-box {
        position: relative;
        padding-left: 0px;
    }
    .welcome-section .img-box .about-img-1, 
    .about-section .img-box .about-img-1 {
        padding-left: 0;
        margin-bottom: 40px;
    }
    .welcome-section .img-box .content,
    .about-section .img-box .content {
        left: -4.2%;
    }
    .about-section .content {
        padding-right: 0px;
    }
    .welcome-section .img-box .about-img-2 {
        right: 0;
    }
    .why-choose-section .why-content {
        width: 100%;
        padding: 50px 35px;
    }
    .why-choose-section .why-images {
        width: 100%;
    }
    .why-choose-section .why-content .boxes .item-box {
        flex-direction: column;
    }
    .why-choose-section .why-content .boxes .item-box .content h3,
    .why-choose-section .section-heading h2,
    .ml-page-why .why-content .boxes .item-box .content p,
    .ml-page-why .why-content h4,
    .ml-page-why .why-content h5,
    .ml-page-why .why-content p,
    .ai-page-why .why-content p {
        text-align: center;
    }
    .opportunities-section .item {
        margin-bottom: 80px;
    }
    .opportunities-section {
        padding: 70px 0 40px 0;
    }
    .opportunities-section .item .content.left {
        margin-bottom: 60px;
    }
    .opportunities-section .item .content.right {
        margin-top: 60px;
    }
    
    .industries-section .item .icon-box {
        align-items: flex-start;
        flex-direction: column;
    }
    .industries-section .inner .tab-content .tab-pane .content.right {
        padding-left: 0px;
        padding-top: 40px;
    }
    .industries-section .inner .tab-content .tab-pane .content.left {
        padding-right: 0px;
        padding-bottom: 30px;
    }
    .industries-section .main {
        width: 100%;
    }
    .industries-section .main-img {
        /* min-height: 680px; */
    }
    .industries-section .section-heading h2 {
        text-align: left;
    }
    .industries-section .inner .nav-tabs {
        flex-direction: column;
    }
    .industries-section .inner .nav-tabs li button {
        text-align: left;
    }
    .support-section .item {
        flex-direction: column;
    }
    .support-section .item .content h3,
    .support-section .item .content p {
        text-align: center;
    }
    .testimonials-section .testi-img {
        width: auto;
    }
    .testimonials-section .slider-box {
        margin-top: 8%;
    }
    .service-page-section .row-mt {
        margin-top: 30px;
    }
    .service-page-section .row-lg-mt {
        margin-top: 60px;
    }
    .service-page-section .content.right {
        padding-left: 0px;
        padding-top: 60px;
        padding-right: 0;
    }
    .service-page-section .content.left {
        padding-right: 0px;
        padding-bottom: 40px;
    }
    .opportunities-page-roles .content.right {
        padding-left: 0px;
        padding-top: 40px;
    }
    .opportunities-page-roles .content.left {
        padding-right: 0px;
        padding-bottom: 40px;
    }
    .ai-page-business .content.right {
        padding-left: 0px;
        margin-top: 40px;
    }
    .footer-top .inner .right-img {
        display: none;
    }
    .footer-top .inner .text h2 {
        font-size: 29px;
        text-align: center;
    }
    .footer-top .inner .text .btn-box {
        text-align: center;
    }
    .contact-section .contact-box {
        width: 100%;
        margin-top: 50px;
    }
    .commitment-section .img-box {
        margin-top: 50px;
    }
    .footer-top {
        padding: 30px 0 0;
    }
    footer .widget {
        margin-bottom: 40px;
    }
    .footer-bottom .copyrights,
    .footer-bottom .design {
        float: none;
    }
    .footer-bottom p {
        text-align: center;
        margin-bottom: 5px;
    }
    .contact-form {
        padding: 0px;
    }
    .contact-section {
        margin-bottom: 40px;
    }
}



@media screen and (max-width: 767px) {
    .hero-slider .swiper-slide .content-box {
        max-width: 300px;
    }
    .section-heading h2 {
        font-size: 28px;
    }
    .navbar-nav li .nav-link,
    .fixed-header .navbar-nav li .nav-link {
        padding: 10px 0px !important;
    }
    .hero-slider .swiper-slide .content-box .lower-box p {
        font-size: 1.8vw;
    }
    .industries-section .main-img {
        /* min-height: 540px; */
    }
    .opportunities-section {
        padding: 70px 0;
    }
    .opportunities-section .owl-nav {
        text-align: center;
    }
    .opportunities-section .owl-nav button {
        position: relative;
        margin: 0 5px;
        height: 40px;
    }
    .opportunities-section .owl-nav .owl-next {
        right: 0;
    }
    .opportunities-section .owl-nav .owl-prev {
        left: 0;
    }
    .support-section .img-box-2 {
        gap: 20px;
        flex-direction: column;
        border-radius: 0;
    }
    .support-section .img-box-2 .content {
        width: 100%;
        border-radius: 10px;
    }
    .support-section .img-box-2 .content h4 {
        font-size: 20px;
    }
    .support-section .img-box-2 .img-box {
        width: 100%;
        overflow: hidden;
        border-radius: 10px;
    }
    .service-page-section .content h4 {
        font-size: 20px;
    }
    .testimonials-section .owl-nav {
        text-align: center;
    }
    .testimonials-section .owl-nav button {
        position: relative;
        margin: 0 5px;
        height: 40px;
        top: 20px;
        transform: none;
    }
    .testimonials-section .owl-nav .owl-next {
        right: 0;
    }
    .testimonials-section .owl-nav .owl-prev {
        left: 0;
    }
    .footer-top .inner .text h2 {
        text-align: center;
        font-size: 26px;
    }
    .footer-top .inner .text h2 br {
        display: none;
    }
    .footer-top .inner .text p {
        text-align: center;
    }
    .footer-top .inner .text {
        padding-right: 0px;
        margin-bottom: 0px;
    }
    .footer-top .inner .text a {
        flex-direction: column;
    }
}

@media screen and (max-width: 575px) {
    .top-bar .contact-info {
        flex-direction: column;
        align-items: flex-start;
    }
    .top-bar .contact-info.left {
        float: left;
        align-items: flex-start;
        margin-bottom: 0px;
        flex-direction: row;
    }
    .navbar {
        padding: 10px 10px;
    }
    .navbar .logo-left-box {
        width: 200px;
        transition: 0.3s all ease;
    }
    .hero-slider .swiper-slide .content-box {
        max-width: 210px;
    }
    .hero-slider .slide-inner .slide-title h2 {
        margin-bottom: 2px;
    }
    .hero-slider .swiper-slide .content-box .lower-box {
        margin-top: 5px;
    }
    .section-heading h2 {
        font-size: 30px;
    }
    .welcome-section .img-box .content, 
    .about-section .img-box .content {
        left: -10px;
        transform: scale(0.8);
    }
    .welcome-section .img-box .car-shape,
    .about-section .img-box .car-shape {
        bottom: -45px;
        width: 190px;
    }
    .opportunities-section {
        padding: 70px 0 60px 0;
    }
    .opportunities-section .owl-nav {
        text-align: center;
    }
    .opportunities-section .owl-nav button {
        position: relative;
        margin: 0 5px;
        height: 40px;
    }
    .opportunities-section .owl-nav .owl-prev {
        left: 0;
    }
    .opportunities-section .owl-nav .owl-next {
        right: 0;
    }
    .footer-top .inner {
        padding: 40px 20px;
    }
    #go-to-top {
        bottom: 100px;
    }
}
@media screen and (max-width: 425px) {
    .top-bar .contact-info li .icon {
        width: 20px;
        height: 20px;
        line-height: 10px;
    }
    .navbar-brand img {
        width: 180px;
    }
    .hero-slider .swiper-slide .content-box {
        max-width: 150px;
    }
    .hero-slider .slide-inner .slide-title h2 {
        margin-bottom: 2px;
    }
    .hero-slider .swiper-slide .content-box .lower-box {
        margin-top: 5px;
    }
    .hero-slider .swiper-slide .content-box .lower-box p {
        font-size: 1.5vw;
        text-align: left;
        margin-top: 5px;
    }
    .hero-slider .swiper-slide .content-box .lower-box .theme-btn {
        padding: 4px 10px;
        font-size: 1vw;
    }
    .welcome-section .img-box .content, .about-section .img-box .content {
        left: -20px;
        transform: scale(0.6);
    }
    .opportunities-section .item .content .box-wrap .box-item {
        flex-direction: column;
    }
    .opportunities-section .item .img-box .img-1 {
        margin: 0 60px;
    }
    .industries-section .main-img {
        /* min-height: 93vw; */
    }
}
@media screen and (max-width: 375px) {
    .top-bar .contact-info li .icon {
        width: 17px;
        height: 17px;
        line-height: 10px;
    }
    
}
