@import url(./bootstrap.min.css);
@import url(./bootstrap-select.min.css);
@import url(./swiper-bundle.min.css);
@import url(./intlTelInput.min.css);
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800;900&display=swap");
/* Transition */
/* Direction En */
.color-blue {
  color: #00BBE3;
}

.color-white {
  color: #FFFFFF;
}

html,
body {
  scroll-behavior: auto !important;
  overflow-x: hidden;
}

* {
  font-family: "Poppins", sans-serif !important;
}

body {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  background-color: #FFFFFF;
  color: #171717;
  position: relative;
}

@media (min-width: 1600px) {
  body {
    font-size: 18px;
  }
}

@media (min-width: 1200px) and (max-width: 1599.98px) {
  body {
    font-size: 16px;
  }
}

@media (min-width: 576px) and (max-width: 1199.98px) {
  body {
    font-size: 14px;
  }
}

@media (max-width: 575.98px) {
  body {
    font-size: 12px;
  }
}

@media (max-width: 991.98px) {
  body .navbar .navbar-collapse {
    opacity: 0;
    pointer-events: none;
  }
}

body .navbar .navbar-toggler .icon-close {
  display: none;
}

body .navbar .navbar-toggler .icon-open {
  display: block;
}

@media (max-width: 991.98px) {
  body.open-menu .navbar .navbar-collapse {
    opacity: 1;
    pointer-events: all;
  }
}

body.open-menu .navbar .navbar-toggler .icon-open {
  display: none;
}

body.open-menu .navbar .navbar-toggler .icon-close {
  display: block;
}

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

body.modal-open .navbar-fixed {
  z-index: 99;
  padding-right: 0 !important;
}

/*** Fonts ***/
/*** Buttons ***/
button,
input,
optgroup,
select,
textarea {
  outline: none;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

textarea {
  resize: none;
}

.btn_main {
  color: #FFFFFF;
  border: none;
  border-radius: 0;
  padding: 0.45rem 1.5rem;
  font-weight: 400;
  display: inline-block;
  text-decoration: none;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  text-transform: uppercase;
  cursor: pointer;
}

.btn_main.white {
  background-color: #FFFFFF;
  color: #004472;
  border: 1px solid #FFFFFF;
}

.btn_main.white:hover {
  background-color: transparent;
  color: #FFFFFF;
}

.btn_main.blue {
  background-color: #00BBE3;
  color: #FFFFFF;
  border: 1px solid #00BBE3;
}

.btn_main.blue:hover {
  background-color: transparent;
  color: #00BBE3;
}

.btn_main.outline {
  border: 1px solid #FFFFFF;
  padding: 0.25rem;
  border-radius: 0;
  min-width: 45px;
  min-height: 45px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.btn_main.outline:hover {
  background-color: #FFFFFF;
}

.btn_main.outline:hover i {
  color: #00BBE3;
}

.btn_main.outline.blue {
  border-color: #00BBE3;
  background-color: transparent;
  color: #00BBE3;
  padding: 0.45rem 1rem;
}

.btn_main.outline.blue:hover {
  background-color: #00BBE3;
  color: #FFFFFF;
}

.btn_main.outline.blue:hover i {
  color: #FFFFFF;
}

.btn_main.hidden {
  opacity: 0;
  pointer-events: none;
}

.btn_main.underline {
  position: relative;
  color: #FFFFFF;
  padding: 0.45rem 0;
  font-weight: 700;
}

.btn_main.underline::before, .btn_main.underline::after {
  content: "";
  display: block;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #FFFFFF;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.btn_main.underline:hover::before {
  top: 0;
}

/*** Container ***/
.container-layout {
  width: 85%;
  margin: auto;
}

@media (max-width: 575.98px) {
  .container-layout {
    width: 100%;
    padding: 0 15px;
  }
}

.container-start {
  width: 92.5%;
  margin-left: auto;
}

@media (max-width: 575.98px) {
  .container-start {
    width: 100%;
    padding: 0 15px;
  }
}

.container-end {
  width: 92.5%;
  margin-right: auto;
}

@media (max-width: 575.98px) {
  .container-end {
    width: 100%;
    padding: 0 15px;
  }
}

.container-samll {
  width: 60%;
  margin: auto;
}

@media (max-width: 575.98px) {
  .container-samll {
    width: 100%;
    padding: 0 15px;
  }
}

.my-section {
  margin-top: 70px;
  margin-bottom: 70px;
}

@media (max-width: 991.98px) {
  .my-section {
    margin-top: 40px;
    margin-bottom: 40px;
  }
}

.py-section {
  padding-top: 70px;
  padding-bottom: 70px;
}

@media (max-width: 991.98px) {
  .py-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

/*** Titles ***/
.main-title {
  text-transform: capitalize;
  font-weight: 700;
}

@media (min-width: 1600px) {
  .main-title {
    font-size: 95px;
  }
}

@media (min-width: 1200px) and (max-width: 1599.98px) {
  .main-title {
    font-size: 80px;
  }
}

@media (min-width: 576px) and (max-width: 1199.98px) {
  .main-title {
    font-size: 60px;
  }
}

@media (max-width: 575.98px) {
  .main-title {
    font-size: 35px;
  }
}

.section-title {
  text-transform: capitalize;
  font-weight: 700;
}

@media (min-width: 1600px) {
  .section-title {
    font-size: 48px;
  }
}

@media (min-width: 1200px) and (max-width: 1599.98px) {
  .section-title {
    font-size: 42px;
  }
}

@media (min-width: 576px) and (max-width: 1199.98px) {
  .section-title {
    font-size: 36px;
  }
}

@media (max-width: 575.98px) {
  .section-title {
    font-size: 28px;
  }
}

.large-title {
  text-transform: capitalize;
  font-weight: 700;
}

@media (min-width: 1600px) {
  .large-title {
    font-size: 38px;
  }
}

@media (min-width: 1200px) and (max-width: 1599.98px) {
  .large-title {
    font-size: 34px;
  }
}

@media (min-width: 576px) and (max-width: 1199.98px) {
  .large-title {
    font-size: 28px;
  }
}

@media (max-width: 575.98px) {
  .large-title {
    font-size: 24px;
  }
}

.medium-title {
  font-weight: 500;
}

@media (min-width: 1600px) {
  .medium-title {
    font-size: 28px;
  }
}

@media (min-width: 1200px) and (max-width: 1599.98px) {
  .medium-title {
    font-size: 26px;
  }
}

@media (min-width: 576px) and (max-width: 1199.98px) {
  .medium-title {
    font-size: 22px;
  }
}

@media (max-width: 575.98px) {
  .medium-title {
    font-size: 20px;
  }
}

@media (min-width: 1600px) {
  .card-title {
    font-size: 22px;
  }
}

@media (min-width: 1200px) and (max-width: 1599.98px) {
  .card-title {
    font-size: 20px;
  }
}

@media (min-width: 576px) and (max-width: 1199.98px) {
  .card-title {
    font-size: 18px;
  }
}

@media (max-width: 575.98px) {
  .card-title {
    font-size: 16px;
  }
}

@media (min-width: 1600px) {
  .small-title {
    font-size: 20px;
  }
}

@media (min-width: 1200px) and (max-width: 1599.98px) {
  .small-title {
    font-size: 18px;
  }
}

@media (min-width: 576px) and (max-width: 1199.98px) {
  .small-title {
    font-size: 16px;
  }
}

@media (max-width: 575.98px) {
  .small-title {
    font-size: 14px;
  }
}

@media (min-width: 1600px) {
  .small-description, .technologies .card-technologies .info ul li, .our-services .tab-content .tab-pane ul li, .reach-out-section .map-location .data .location-info a {
    font-size: 15px;
  }
}

@media (min-width: 1200px) and (max-width: 1599.98px) {
  .small-description, .technologies .card-technologies .info ul li, .our-services .tab-content .tab-pane ul li, .reach-out-section .map-location .data .location-info a {
    font-size: 13px;
  }
}

@media (min-width: 576px) and (max-width: 1199.98px) {
  .small-description, .technologies .card-technologies .info ul li, .our-services .tab-content .tab-pane ul li, .reach-out-section .map-location .data .location-info a {
    font-size: 12px;
  }
}

@media (max-width: 575.98px) {
  .small-description, .technologies .card-technologies .info ul li, .our-services .tab-content .tab-pane ul li, .reach-out-section .map-location .data .location-info a {
    font-size: 10px;
  }
}

.title-border-bottom {
  display: inline-block;
  padding-right: 1.5rem;
  padding-bottom: 0.35rem;
  border-bottom: 1px solid #171717;
}

.letter-strok {
  -webkit-text-stroke: 1.5px #7f7f7f;
  -webkit-text-fill-color: transparent;
}

.font-bold {
  font-weight: 700;
}

.img-fit, .enquiryFormModal .modal-content .modal-body .image img,
.videoModal .modal-content .modal-body .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.img-fit.contain, .enquiryFormModal .modal-content .modal-body .image img.contain,
.videoModal .modal-content .modal-body .image img.contain {
  -o-object-fit: contain;
     object-fit: contain;
}

.img-fit.position-absolute, .enquiryFormModal .modal-content .modal-body .image img.position-absolute,
.videoModal .modal-content .modal-body .image img.position-absolute {
  width: 100%;
  height: 100%;
  inset: 0;
  z-index: -1;
}

/*** Custom Arrows ***/
.custom-arrow {
  width: 50px;
  height: 50px;
  min-width: 50px;
  min-height: 50px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  z-index: 999;
}

.custom-arrow::after {
  font-size: 18px;
  color: #00BBE3;
  font-weight: 700;
}

.custom-pagination .swiper-pagination-bullet {
  border-radius: 0;
  opacity: 1;
  background-color: transparent;
  margin-bottom: 0;
}

/*** NavBar ***/
.navbar.navbar-fixed {
  background-color: #00BBE3;
  z-index: 9999;
}

.navbar .navbar-brand {
  max-width: 100px;
}

.navbar .nav-top {
  background-color: #FFFFFF;
}

.navbar .nav-top ul {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media (max-width: 991.98px) {
  .navbar .nav-top ul {
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: start !important;
  }
}

.navbar .nav-top ul li {
  margin-right: 0.5rem;
  margin-left: 0.5rem;
  font-size: 14px;
}

.navbar .nav-top ul li:last-child {
  margin-right: 0rem;
}

.navbar .nav-top ul li a {
  color: #171717;
  text-decoration: none;
  text-transform: capitalize;
}

@media (max-width: 991.98px) {
  .navbar .navbar-nav {
    height: 80vh;
    overflow-y: auto;
    margin-top: 150px;
  }
}

.navbar .navbar-nav .nav-item {
  margin-left: 0.65rem;
  margin-right: 0.65rem;
}

.navbar .navbar-nav .nav-item:first-child {
  margin-left: 0px;
}

.navbar .navbar-nav .nav-item:first-child .nav-link::after {
  left: 0;
  -webkit-transform: none;
          transform: none;
  width: calc(100% - 0.5rem);
}

.navbar .navbar-nav .nav-item:last-child {
  margin-right: 0px;
}

.navbar .navbar-nav .nav-item:last-child .nav-link::after {
  left: auto;
  right: 0;
  -webkit-transform: none;
          transform: none;
  width: calc(100% - 0.5rem);
}

.navbar .navbar-nav .nav-item .nav-link {
  color: #FFFFFF;
  position: relative;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  text-transform: capitalize;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  padding-left: 0px;
  padding-right: 0px;
}

@media (max-width: 991.98px) {
  .navbar .navbar-nav .nav-item .nav-link {
    text-align: center;
  }
}

.navbar .navbar-nav .nav-item.dropdown .dropdown-link {
  position: relative;
}

.navbar .navbar-nav .nav-item.dropdown .dropdown-link::after {
  content: '';
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0;
  left: auto;
  width: 20px;
  height: 20px;
  pointer-events: none;
  background-image: url("../img/dropdown-icon.svg");
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.navbar .navbar-nav .nav-item.dropdown.show .dropdown-link::after {
  -webkit-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
}

.navbar .navbar-nav .nav-item.dropdown .nav-link {
  padding-right: 24px;
}

.navbar .navbar-nav .nav-item.dropdown .dropdown-menu {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-transform: translate3d(0, -10px, 0);
          transform: translate3d(0, -10px, 0);
  display: block;
  opacity: 0;
  pointer-events: none;
  background-color: #00BBE3;
  border: none;
  border-radius: 0;
  padding: 0;
}

@media (max-width: 991.98px) {
  .navbar .navbar-nav .nav-item.dropdown .dropdown-menu {
    -webkit-transition: all 0.6s ease-in-out;
    transition: all 0.6s ease-in-out;
    overflow: hidden;
    opacity: 1;
    max-height: 0;
  }
}

.navbar .navbar-nav .nav-item.dropdown .dropdown-menu.show {
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  opacity: 1;
  pointer-events: all;
}

@media (max-width: 991.98px) {
  .navbar .navbar-nav .nav-item.dropdown .dropdown-menu.show {
    max-height: 200px;
  }
}

.navbar .navbar-nav .nav-item.dropdown .dropdown-menu .dropdown-item {
  color: #00BBE3;
  background-color: #FFFFFF;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  position: relative;
}

@media (max-width: 991.98px) {
  .navbar .navbar-nav .nav-item.dropdown .dropdown-menu .dropdown-item {
    text-align: center;
  }
}

.navbar .navbar-nav .nav-item.dropdown .dropdown-menu .dropdown-item::before {
  content: '';
  position: absolute;
  inset: 0;
  right: auto;
  width: 0%;
  height: 100%;
  background-color: #00BBE3;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  z-index: -1;
}

.navbar .navbar-nav .nav-item.dropdown .dropdown-menu .dropdown-item.active, .navbar .navbar-nav .nav-item.dropdown .dropdown-menu .dropdown-item:hover {
  background-color: #00BBE3;
  color: #FFFFFF;
}

.navbar .navbar-nav .nav-item.dropdown .dropdown-menu .dropdown-item.active::before, .navbar .navbar-nav .nav-item.dropdown .dropdown-menu .dropdown-item:hover::before {
  width: 100%;
}

@media (max-width: 991.98px) {
  .navbar .navbar-collapse {
    display: block;
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background-color: #00BBE3;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    z-index: -1;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
}

.navbar .navbar-toggler .bi {
  color: #FFFFFF;
  font-size: 30px;
}

@media (min-width: 992px) {
  .navbar .container-search-box {
    width: 40px;
  }
}

.navbar .container-search-box .search-box {
  background: #00BBE3;
  color: #00BBE3;
  height: 40px;
}

@media (min-width: 992px) {
  .navbar .container-search-box .search-box {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    right: 0;
  }
}

.navbar .container-search-box .search-box .search-btn {
  color: #FFFFFF;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  text-decoration: none;
  -webkit-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
}

.navbar .container-search-box .search-box .search-txt {
  border: none;
  background: none;
  outline: none;
  padding: 0;
  color: #FFFFFF;
  -webkit-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
  line-height: 40px;
  width: 0px;
  border-bottom: 2px solid #FFFFFF;
  border-radius: 0;
}

.navbar .container-search-box .search-box .search-txt::-webkit-input-placeholder {
  color: #FFFFFF;
  opacity: 1;
}

.navbar .container-search-box .search-box .search-txt:-ms-input-placeholder {
  color: #FFFFFF;
  opacity: 1;
}

.navbar .container-search-box .search-box .search-txt::-ms-input-placeholder {
  color: #FFFFFF;
  opacity: 1;
}

.navbar .container-search-box .search-box .search-txt::placeholder {
  color: #FFFFFF;
  opacity: 1;
}

.navbar .container-search-box .search-box .search-txt:-ms-input-placeholder {
  color: #FFFFFF;
}

.navbar .container-search-box .search-box .search-txt::-ms-input-placeholder {
  color: #FFFFFF;
}

@media (min-width: 992px) {
  .navbar .container-search-box .search-box:hover .search-txt {
    width: 200px;
    padding: 0 6px;
  }
  .navbar .container-search-box .search-box:hover .search-btn {
    padding-right: 0px;
    background-color: #00BBE3;
    color: #FFFFFF;
  }
  .navbar .container-search-box .search-box:hover .search-btn .text-search {
    opacity: 0;
    -webkit-transform: translate(-10%, -50%);
            transform: translate(-10%, -50%);
  }
}

@media (max-width: 991.98px) {
  .navbar .container-search-box .search-box .search-txt {
    width: 200px;
    padding: 0 6px;
  }
  .navbar .container-search-box .search-box .search-btn {
    padding-right: 0px;
    background-color: #00BBE3;
    color: #FFFFFF;
  }
  .navbar .container-search-box .search-box .search-btn .text-search {
    opacity: 0;
    -webkit-transform: translate(-10%, -50%);
            transform: translate(-10%, -50%);
  }
}

.navbar .change-lang {
  text-decoration: none;
  color: #FFFFFF;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  font-size: 14px;
}

.navbar .change-lang:hover {
  color: #EBEBEB;
}

/*** Breadcrumb ***/
.breadcrumb .breadcrumb-item a {
  color: #00BBE3;
  text-decoration: none;
}

.breadcrumb .breadcrumb-item.active {
  color: #FFFFFF;
  font-weight: 700;
}

.breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  content: '';
  background-image: url("../img/breadcrumb-icon.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 22px;
  height: 22px;
  margin-right: 0.5rem;
}

/*** Hero ***/
.hero {
  height: 100vh;
  overflow: hidden;
}

.hero .hero-swiper .swiper-slide .swiper-img {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.hero .hero-swiper .swiper-slide .swiper-img::before {
  content: '';
  position: absolute;
  inset: 0;
  left: -40px;
  background-image: url("../img/hero-shape.svg");
  background-size: contain;
  background-repeat: no-repeat;
  width: 50%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.hero .hero-swiper .swiper-slide .swiper-img::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 68, 114, 0.8);
}

.hero .hero-swiper .swiper-slide .section-title,
.hero .hero-swiper .swiper-slide .description,
.hero .hero-swiper .swiper-slide .wrap-btn {
  -webkit-transition: all 0.8s ease-in-out;
  transition: all 0.8s ease-in-out;
  opacity: 0;
}

.hero .hero-swiper .swiper-slide .section-title {
  -webkit-transform: translate3d(0, -30px, 0);
          transform: translate3d(0, -30px, 0);
}

.hero .hero-swiper .swiper-slide .description {
  -webkit-transform: translate3d(0, 30px, 0);
          transform: translate3d(0, 30px, 0);
}

.hero .hero-swiper .swiper-slide .wrap-btn {
  -webkit-transform: translate3d(30px, 0, 0);
          transform: translate3d(30px, 0, 0);
}

.hero .hero-swiper .swiper-slide.swiper-slide-active .section-title,
.hero .hero-swiper .swiper-slide.swiper-slide-active .description,
.hero .hero-swiper .swiper-slide.swiper-slide-active .wrap-btn {
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  opacity: 1;
}

.hero .hero-swiper .swiper-slide.swiper-slide-active .section-title {
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}

.hero .hero-swiper .swiper-slide.swiper-slide-active .description {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}

.hero .hero-swiper .swiper-slide.swiper-slide-active .wrap-btn {
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}

.hero .hero-swiper .custom-controls {
  position: absolute;
  bottom: 0;
  right: 5%;
  height: 100%;
}

.hero .hero-swiper .custom-controls .scroll-down {
  color: #EBEBEB;
  position: relative;
  z-index: 1;
  cursor: pointer;
  font-size: 12px;
  height: 140px;
}

.hero .hero-swiper .custom-controls .scroll-down::before, .hero .hero-swiper .custom-controls .scroll-down::after {
  content: '';
  position: absolute;
  left: 50%;
}

.hero .hero-swiper .custom-controls .scroll-down::before {
  top: 30px;
  height: 8px;
  width: 8px;
  border: 1px solid #EBEBEB;
  -webkit-transform: translateX(-50%) rotate(45deg);
          transform: translateX(-50%) rotate(45deg);
}

.hero .hero-swiper .custom-controls .scroll-down::after {
  bottom: 0;
  width: 1px;
  height: calc(100% - 39px);
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: #EBEBEB;
}

.hero .hero-swiper .custom-controls .swiper-pagination {
  position: relative;
  width: auto;
  bottom: 0;
  color: #FFFFFF;
}

.hero .hero-swiper .custom-controls .swiper-pagination .swiper-pagination-bullet {
  border-radius: 0;
  border: 1px solid #FFFFFF;
  opacity: 1;
  background-color: transparent;
  margin-bottom: 1rem;
}

.hero .hero-swiper .custom-controls .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #FFFFFF;
}

.hero-innner {
  height: 320px;
  overflow: hidden;
  position: relative;
  padding-top: 0 !important;
}

.hero-innner .bg-image {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.hero-innner .bg-image::before {
  content: '';
  position: absolute;
  inset: 0;
  left: -40px;
  background-image: url("../img/hero-inner-shape.svg");
  background-size: contain;
  background-repeat: no-repeat;
  width: 50%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.hero-innner .bg-image::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 68, 114, 0.7);
}

/*** Welcome to BARQ ***/
.welcome-to-barq {
  position: relative;
  overflow: hidden;
  color: #FFFFFF;
  min-height: 100vh;
}

.welcome-to-barq .bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  mix-blend-mode: multiply;
}

.welcome-to-barq .bg-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgba(23, 23, 23, 0.5);
}

.welcome-to-barq .info,
.welcome-to-barq .count {
  -webkit-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
  opacity: 0;
}

.welcome-to-barq .info,
.welcome-to-barq .count {
  -webkit-transform: translate3d(0, 30px, 0);
          transform: translate3d(0, 30px, 0);
}

@media (min-width: 992px) {
  .welcome-to-barq .wrapper {
    min-height: 100vh;
  }
}

.welcome-to-barq .counter .count:not(:last-child) {
  border-right: 1px solid #FFFFFF;
}

.welcome-to-barq .welcome-overlay {
  position: absolute;
  height: 100%;
  width: 100%;
  inset: 0;
  background-color: #FFFFFF;
  mix-blend-mode: hard-light;
}

.welcome-to-barq .welcome-overlay.fade {
  -webkit-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
  opacity: 0;
  pointer-events: none;
}

.welcome-to-barq .welcome-overlay .section-title {
  color: #171717;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.welcome-to-barq .welcome-overlay .shape {
  position: relative;
  max-width: 250px;
  -webkit-transform-origin: 80% 70%;
          transform-origin: 80% 70%;
  -webkit-transition: all 7s ease-in-out;
  transition: all 7s ease-in-out;
  -webkit-transform: scale3d(1, 1, 1);
          transform: scale3d(1, 1, 1);
}

.welcome-to-barq .welcome-overlay .shape img {
  mix-blend-mode: hard-light;
  background: rgba(0, 0, 0, 0.5);
}

.welcome-to-barq .welcome-overlay .shape::after, .welcome-to-barq .welcome-overlay .shape::before {
  content: '';
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 150px;
  height: 30px;
  background-image: url("../img/welcome-icon-arrow.png");
  background-repeat: no-repeat;
  background-size: contain;
}

.welcome-to-barq .welcome-overlay .shape::before {
  left: -100%;
  -webkit-transform: translateY(-50%) scaleX(-1);
          transform: translateY(-50%) scaleX(-1);
}

.welcome-to-barq .welcome-overlay .shape::after {
  right: -100%;
}

.welcome-to-barq .welcome-overlay.scale-img .section-title {
  opacity: 0;
}

.welcome-to-barq .welcome-overlay.scale-img .shape {
  -webkit-transform: scale3d(40, 40, 1);
          transform: scale3d(40, 40, 1);
}

.welcome-to-barq.show .info,
.welcome-to-barq.show .count {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}

.welcome-to-barq.show .count:nth-child(1) {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

.welcome-to-barq.show .count:nth-child(2) {
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}

.welcome-to-barq.show .count:nth-child(3) {
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}

.welcome-to-barq.show .count:nth-child(4) {
  -webkit-transition-delay: 0.8s;
          transition-delay: 0.8s;
}

.welcome-to-barq.show .count:nth-child(5) {
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}

/*** Services ***/
.services {
  overflow: hidden;
  position: relative;
}

.services::before {
  content: '';
  position: absolute;
  left: 0px;
  top: 70px;
  width: 6%;
  height: 200px;
  background-image: url("../img/services-shape.svg");
  background-repeat: no-repeat;
  background-size: contain;
}

.services.remove-shape::before {
  display: none;
}

.services .title {
  position: relative;
  margin: 0;
}

@media (min-width: 992px) {
  .services .title {
    -webkit-writing-mode: vertical-lr;
        -ms-writing-mode: tb-lr;
            writing-mode: vertical-lr;
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
  .services .title::after {
    content: '';
    position: absolute;
    width: 1px;
    height: 100%;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    top: 105%;
    background-color: #A1ABAC;
  }
}

.services .card-service {
  height: 100%;
  text-decoration: none;
  color: #171717;
}

@media (min-width: 992px) {
  .services .card-service:nth-child(4n+2) {
    margin-top: 60px;
  }
  .services .card-service:nth-child(4n+3) {
    margin-top: 120px;
  }
  .services .card-service:nth-child(4n+4) {
    margin-top: 180px;
  }
}

.services .card-service .image {
  height: 250px;
  position: relative;
  overflow: hidden;
}

.services .card-service .image .view-details {
  text-transform: uppercase;
  position: absolute;
  inset: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: #00BBE3;
  color: #FFFFFF;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.services .card-service .image .view-details .description {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
  -webkit-transform: translate3d(0, 10px, 0);
          transform: translate3d(0, 10px, 0);
  opacity: 0;
}

.services .card-service .image .view-details .bi {
  font-weight: 400;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
  -webkit-transform: translate3d(0, 10px, 0);
          transform: translate3d(0, 10px, 0);
  opacity: 0;
}

.services .card-service:hover .image .view-details {
  left: 0%;
}

.services .card-service:hover .image .view-details .description {
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  opacity: 1;
}

.services .card-service:hover .image .view-details .bi {
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  opacity: 1;
}

/*** Latest News ***/
.container-latest-news {
  position: relative;
}

.container-latest-news::before {
  content: '';
  position: absolute;
  left: 0px;
  bottom: 25px;
  width: 3%;
  height: 90%;
  background-image: url(../img/latest-news-shape.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center right;
}

.container-latest-news::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 25px;
  background-color: #FFFFFF;
}

.container-latest-news .latest-news {
  background-color: #00BBE3;
  color: #FFFFFF;
}

.container-latest-news .latest-news .latest-news-swiper {
  padding-bottom: 5rem;
}

@media (min-width: 768px) {
  .container-latest-news .latest-news .latest-news-swiper {
    padding-left: 5rem;
  }
}

@media (min-width: 768px) {
  .container-latest-news .latest-news .latest-news-swiper .swiper-slide:nth-child(even) {
    margin-top: 80px;
  }
}

@media (max-width: 767.98px) {
  .container-latest-news .latest-news .latest-news-swiper .swiper-slide:nth-child(even) {
    margin-top: 30px;
  }
}

.container-latest-news .latest-news .latest-news-swiper .swiper-slide .card-latest-news .image {
  height: 250px;
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .container-latest-news .latest-news .latest-news-swiper .swiper-pagination {
    -webkit-writing-mode: vertical-lr;
        -ms-writing-mode: tb-lr;
            writing-mode: vertical-lr;
    width: 5rem;
    height: calc(100% - 25px);
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
    top: 0px;
    bottom: auto;
    padding-bottom: 20px;
    z-index: 1;
    background-color: #00BBE3;
  }
  .container-latest-news .latest-news .latest-news-swiper .swiper-pagination span {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
  }
}

@media (max-width: 767.98px) {
  .container-latest-news .latest-news .latest-news-swiper .swiper-pagination {
    bottom: 30px;
  }
  .container-latest-news .latest-news .latest-news-swiper .swiper-pagination span {
    margin-right: 0.5rem;
    margin-left: 0.5rem;
  }
}

.container-latest-news .latest-news .latest-news-swiper .swiper-button-next,
.container-latest-news .latest-news .latest-news-swiper .swiper-button-prev {
  top: auto;
  bottom: 0;
  background-color: #FFFFFF;
  border: 1px solid #DEDEDE;
}

.container-latest-news .latest-news .latest-news-swiper .swiper-button-next:hover,
.container-latest-news .latest-news .latest-news-swiper .swiper-button-prev:hover {
  background-color: #007AA8;
  border: 1px solid #007AA8;
}

.container-latest-news .latest-news .latest-news-swiper .swiper-button-next:hover::after,
.container-latest-news .latest-news .latest-news-swiper .swiper-button-prev:hover::after {
  color: #FFFFFF;
}

.container-latest-news .latest-news .latest-news-swiper .swiper-button-next {
  right: auto;
  left: 70px;
}

/*** BARQ Partners ***/
.barq-partners .swiper-barq-partners {
  height: 400px;
  padding-bottom: 5rem;
}

.barq-partners .swiper-barq-partners .swiper-slide {
  height: calc((100% - 15px) / 2) !important;
  position: relative;
}

.barq-partners .swiper-barq-partners .swiper-slide .logo {
  position: relative;
  width: 100%;
  height: 100%;
  margin-top: 0 !important;
}

.barq-partners .swiper-barq-partners .swiper-slide .logo::after {
  content: '';
  position: absolute;
  right: -7.5px;
  bottom: 0;
  height: calc(100% + 4px);
  width: 2px;
  background-color: #DEDEDE;
}

.barq-partners .swiper-barq-partners .swiper-slide .logo img {
  max-width: 50%;
}

.barq-partners .swiper-barq-partners .swiper-slide:not(:nth-child(even))::after {
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  background-color: #004472;
  right: -10.5px;
  bottom: -10.5px;
  z-index: 9;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.barq-partners .swiper-barq-partners .swiper-slide:not(:nth-child(even)) .logo::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -7.5px;
  width: calc(100% + 4px);
  height: 2px;
  background-color: #DEDEDE;
}

.barq-partners .swiper-barq-partners .swiper-slide:last-child:nth-child(odd) .logo::after, .barq-partners .swiper-barq-partners .swiper-slide:last-child:nth-child(even) .logo::after {
  display: none;
}

.barq-partners .swiper-barq-partners .swiper-pagination {
  bottom: 0;
}

.barq-partners .swiper-barq-partners .swiper-pagination .swiper-pagination-bullet {
  border: 1px solid #DEDEDE;
  background-color: transparent;
}

.barq-partners .swiper-barq-partners .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #00BBE3;
  border-color: #00BBE3;
}

.barq-partners .swiper-barq-partners .swiper-button-next,
.barq-partners .swiper-barq-partners .swiper-button-prev {
  top: calc(50% - 2.8rem);
  background-color: #FFFFFF;
  border: 2px solid #DEDEDE;
}

.barq-partners .swiper-barq-partners .swiper-button-next:hover,
.barq-partners .swiper-barq-partners .swiper-button-prev:hover {
  background-color: #007AA8;
  border-color: #007AA8;
}

.barq-partners .swiper-barq-partners .swiper-button-next:hover::after,
.barq-partners .swiper-barq-partners .swiper-button-prev:hover::after {
  color: #FFFFFF;
}

.barq-partners .swiper-barq-partners .swiper-button-next {
  right: 0;
}

.barq-partners .swiper-barq-partners .swiper-button-prev {
  left: 0;
}

/*** BARQ Clients ***/
.barq-clients {
  position: relative;
}

.barq-clients::before {
  content: '';
  position: absolute;
  top: -15%;
  left: auto;
  right: 5%;
  background-image: url("../img/clients-shape.svg");
  background-size: contain;
  background-repeat: no-repeat;
  width: 20%;
  height: 30%;
  z-index: 1;
  pointer-events: none;
  background-position-x: right;
}

.barq-clients .swiper-barq-clients {
  height: 400px;
  padding-bottom: 5rem;
}

.barq-clients .swiper-barq-clients .swiper-slide {
  height: calc((100% - 15px) / 2) !important;
  position: relative;
}

.barq-clients .swiper-barq-clients .swiper-slide .logo {
  position: relative;
  width: 100%;
  height: 100%;
  margin-top: 0 !important;
}

.barq-clients .swiper-barq-clients .swiper-slide .logo::after {
  content: '';
  position: absolute;
  right: -7.5px;
  bottom: 0;
  height: calc(100% + 4px);
  width: 2px;
  background-color: #DEDEDE;
}

.barq-clients .swiper-barq-clients .swiper-slide .logo img {
  max-width: 50%;
}

.barq-clients .swiper-barq-clients .swiper-slide:not(:nth-child(even))::after {
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  background-color: #004472;
  right: -10.5px;
  bottom: -10.5px;
  z-index: 9;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.barq-clients .swiper-barq-clients .swiper-slide:not(:nth-child(even)) .logo::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -7.5px;
  width: calc(100% + 4px);
  height: 2px;
  background-color: #DEDEDE;
}

.barq-clients .swiper-barq-clients .swiper-slide:last-child:nth-child(odd) .logo::after, .barq-clients .swiper-barq-clients .swiper-slide:last-child:nth-child(even) .logo::after {
  display: none;
}

.barq-clients .swiper-barq-clients .swiper-pagination {
  bottom: 0;
}

.barq-clients .swiper-barq-clients .swiper-pagination .swiper-pagination-bullet {
  border: 1px solid #DEDEDE;
  background-color: transparent;
}

.barq-clients .swiper-barq-clients .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #00BBE3;
  border-color: #00BBE3;
}

.barq-clients .swiper-barq-clients .swiper-button-next,
.barq-clients .swiper-barq-clients .swiper-button-prev {
  top: calc(50% - 2.8rem);
  background-color: #FFFFFF;
  border: 2px solid #DEDEDE;
}

.barq-clients .swiper-barq-clients .swiper-button-next:hover,
.barq-clients .swiper-barq-clients .swiper-button-prev:hover {
  background-color: #007AA8;
  border-color: #007AA8;
}

.barq-clients .swiper-barq-clients .swiper-button-next:hover::after,
.barq-clients .swiper-barq-clients .swiper-button-prev:hover::after {
  color: #FFFFFF;
}

.barq-clients .swiper-barq-clients .swiper-button-next {
  right: 0;
}

.barq-clients .swiper-barq-clients .swiper-button-prev {
  left: 0;
}

/*** BARQ Certificates ***/
.container-barq-certificates {
  position: relative;
}

.container-barq-certificates::before {
  content: '';
  position: absolute;
  left: 0px;
  top: -70px;
  width: 5.5%;
  height: 200px;
  background-image: url("../img/services-shape.svg");
  background-repeat: no-repeat;
  background-size: contain;
}

.container-barq-certificates .barq-certificates {
  background-color: #EBEBEB;
}

.container-barq-certificates .barq-certificates .certificate {
  height: 250px;
  border: 3px solid #171717;
  padding: 0.75rem;
}

.container-barq-certificates .barq-certificates .certificate .logo {
  background-color: #FFFFFF;
  width: 100%;
  height: 100%;
}

.container-barq-certificates .swiper-pagination {
  bottom: 0;
}

.container-barq-certificates .swiper-pagination .swiper-pagination-bullet {
  border: 1px solid #DEDEDE;
}

.container-barq-certificates .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #00BBE3;
  border-color: #00BBE3;
}

.container-barq-certificates .swiper-button-next,
.container-barq-certificates .swiper-button-prev {
  top: 0;
  right: auto;
  left: auto;
  background-color: #FFFFFF;
  position: relative;
  top: auto;
}

.container-barq-certificates .swiper-button-next:hover,
.container-barq-certificates .swiper-button-prev:hover {
  background-color: #007AA8;
  border-color: #007AA8;
}

.container-barq-certificates .swiper-button-next:hover::after,
.container-barq-certificates .swiper-button-prev:hover::after {
  color: #FFFFFF;
}

/*** BARQ Locations ***/
.container-barq-locations {
  position: relative;
  background-color: #00BBE3;
}

.container-barq-locations::before {
  content: '';
  position: absolute;
  left: 0px;
  top: -110px;
  width: 5.5%;
  height: 200px;
  background-image: url("../img/services-shape.svg");
  background-repeat: no-repeat;
  background-size: contain;
}

.container-barq-locations .locations .location {
  position: relative;
}

@media (min-width: 992px) {
  .container-barq-locations .locations .location {
    padding-right: 4rem;
    padding-left: 4rem;
  }
}

@media (max-width: 991.98px) {
  .container-barq-locations .locations .location:not(:last-child) {
    padding-bottom: 1.5rem;
    margin-bottom: 3rem;
  }
}

.container-barq-locations .locations .location:not(:last-child)::before {
  content: '';
  position: absolute;
  background-color: #FFFFFF;
  opacity: 0.4;
}

@media (min-width: 992px) {
  .container-barq-locations .locations .location:not(:last-child)::before {
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 2px;
    height: 45%;
  }
}

@media (max-width: 991.98px) {
  .container-barq-locations .locations .location:not(:last-child)::before {
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    height: 2px;
    width: 45%;
  }
}

.container-barq-locations .locations .location .img-location {
  height: 180px;
}

.container-barq-locations .locations .location .img-location .contain {
  -o-object-position: bottom;
     object-position: bottom;
}

.prevent-defult {
  cursor: auto;
}

/*** Footer ***/
.footer {
  position: relative;
  overflow: hidden;
}

.footer .bg-footer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}

.footer .bg-footer::after {
  content: '';
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 68, 114, 0.83);
}

.footer .footer-list-iteam a {
  text-decoration: none;
  color: #FFFFFF;
}

.footer .footer-list-iteam .title {
  position: relative;
  color: #FFFFFF;
  display: block;
}

.footer .footer-list-iteam .title::before {
  content: '';
  position: absolute;
  left: -1rem;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  width: 8px;
  height: 8px;
  background-color: #00BBE3;
}

.footer .footer-list-iteam .link-iteam {
  margin-bottom: 0.5rem;
  display: inline-block;
  text-transform: capitalize;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.footer .footer-list-iteam .link-iteam:hover {
  color: #00BBE3;
}

.footer .footer-list-iteam .certificate {
  border: 4px solid #171717;
  padding: 0.6rem;
  background-color: #EBEBEB;
}

@media (min-width: 992px) {
  .footer .footer-list-iteam .certificate {
    height: 160px;
    width: 160px;
  }
}

@media (max-width: 991.98px) {
  .footer .footer-list-iteam .certificate {
    height: 100px;
    width: 100px;
  }
}

.footer .footer-list-iteam .certificate .logo-iso {
  background-color: #FFFFFF;
  width: 100%;
  height: 100%;
}

.footer .logo {
  max-width: 150px;
}

.footer .social-media .list-social-media .icon {
  color: #FFFFFF;
  display: block;
}

.footer .social-media .list-social-media .icon .icon-tabler {
  max-width: 32px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.footer .social-media .list-social-media .icon:hover .icon-tabler {
  stroke: #00BBE3;
}

.footer .backToTop {
  cursor: pointer;
}

.copyright {
  background-color: #EBEBEB;
  color: #4D4D4D;
}

.copyright .made a {
  color: #4D4D4D;
}

.copyright .made a:hover {
  color: #004472;
}

/*** Who We Are ***/
.who-we-are-list {
  background-color: #EBEBEB;
}

.who-we-are-list.fixed-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}

@media (min-width: 768px) {
  .who-we-are-list li {
    margin-left: 2rem;
  }
}

.who-we-are-list li:first-child {
  margin-left: 0px;
}

.who-we-are-list li .link {
  text-decoration: none;
  color: #171717;
  font-weight: 700;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  padding: 0.75rem;
  display: inline-block;
  text-transform: capitalize;
}

.who-we-are-list li .link.active {
  background-color: #00BBE3;
  color: #FFFFFF;
}

.who-we-are-list li .link:hover:not(.active) {
  color: #00BBE3;
}

.who-we-are .wrap-image {
  height: 400px;
  position: relative;
}

@media (max-width: 767.98px) {
  .who-we-are .wrap-image {
    height: 250px;
  }
}

.who-we-are .wrap-image::before {
  content: '';
  position: absolute;
  left: 0;
  top: -13%;
  background-image: url("../img/character-b.png");
  background-repeat: no-repeat;
  background-size: contain;
  width: 150px;
  height: 150px;
}

@media (max-width: 767.98px) {
  .who-we-are .wrap-image::before {
    width: 100px;
    height: 100px;
  }
}

.pb-title {
  padding-bottom: 5rem;
}

@media (max-width: 767.98px) {
  .pb-title {
    padding-bottom: 3rem;
  }
}

/*** Our Story ***/
.timeline {
  position: relative;
}

.timeline::before {
  content: "";
  display: block;
  width: 1.5px;
  height: 100%;
  background: #EBEBEB;
  margin: 0 auto;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

@media (max-width: 767.98px) {
  .timeline::before {
    margin: 0;
    left: 0;
  }
}

.timeline .timeline-item {
  position: relative;
}

.timeline .timeline-item .icon {
  font-size: 1.5rem;
  width: 8px;
  height: 8px;
  margin: auto;
  position: absolute;
  background-color: #171717;
  top: calc(50%);
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  left: 0;
  right: 0;
}

@media (max-width: 767.98px) {
  .timeline .timeline-item .icon {
    right: auto;
    left: -3px;
    top: 1.5rem;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
}

.timeline .timeline-item .date-content {
  padding-right: 2.5rem;
}

.timeline .timeline-item .date-content .year {
  text-align: right;
}

@media (max-width: 767.98px) {
  .timeline .timeline-item .date-content .year {
    text-align: center;
  }
}

.timeline .timeline-item .timeline-content {
  padding-left: 2.5rem;
}

@media (min-width: 768px) {
  .timeline .timeline-item:nth-child(even) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  .timeline .timeline-item:nth-child(even) .date-content {
    padding-left: 2.5rem;
  }
  .timeline .timeline-item:nth-child(even) .date-content .year {
    text-align: left;
  }
  .timeline .timeline-item:nth-child(even) .timeline-content {
    padding-right: 2.5rem;
    text-align: right;
  }
}

/*** Meet The Management Team ***/
.management-team .card-team {
  margin-bottom: 3.5rem;
}

@media (max-width: 767.98px) {
  .management-team .card-team {
    margin-bottom: 1.5rem;
  }
}

.management-team .card-team .image {
  width: 170px;
  position: relative;
}

@media (max-width: 767.98px) {
  .management-team .card-team .image {
    margin-bottom: 2.5rem;
  }
}

.management-team .card-team .image::before {
  content: '';
  position: absolute;
  top: -6px;
  right: -6px;
  width: 40px;
  height: 40px;
  background-color: #00BBE3;
  z-index: -1;
}

.management-team .card-team .image::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: -12px;
  width: 65%;
  height: 65%;
  border: 1px solid #A1ABAC;
  z-index: -1;
}

.management-team .card-team .image img {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.management-team .card-team .image:hover img {
  -webkit-transform: scale3d(1.075, 1.075, 1);
          transform: scale3d(1.075, 1.075, 1);
}

/***  What's Our Secret? ***/
.our-secret .icon {
  max-width: 70px;
}

@media (max-width: 767.98px) {
  .our-secret .icon {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (min-width: 992px) {
  .our-secret .info {
    text-align: left;
  }
}

.our-secret .description {
  color: #4D4D4D;
}

/***  Solutions ***/
.solutions-sections .card-solution {
  padding: 2.5rem 1.5rem 1.5rem;
  -webkit-box-shadow: 0px 3px 6px #00000029;
          box-shadow: 0px 3px 6px #00000029;
  position: relative;
}

@media (min-width: 992px) {
  .solutions-sections .card-solution {
    height: 100%;
  }
}

.solutions-sections .card-solution::after {
  content: '';
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 1rem;
  height: 1rem;
  background-color: #00BBE3;
}

.solutions-sections .card-solution .icon {
  min-width: 60px;
  max-width: 60px;
}

@media (max-width: 767.98px) {
  .solutions-sections .card-solution .icon {
    min-width: 40px;
    max-width: 40px;
  }
}

.cyber-security .wrap-image::before {
  display: none;
}

.technologies {
  background-color: #EBEBEB;
}

.technologies .card-technologies {
  background-color: #FFFFFF;
}

@media (min-width: 992px) {
  .technologies .card-technologies {
    height: 100%;
  }
}

.technologies .card-technologies .icon-wrap {
  background-color: #EBEBEB;
}

.technologies .card-technologies .icon {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  padding: 1.35rem;
  overflow: hidden;
  background-color: #FFFFFF;
  margin-bottom: -2.5rem;
  position: relative;
  z-index: 3;
  margin-left: -0.5rem;
  border: 12px solid #EBEBEB;
}

@media (max-width: 767.98px) {
  .technologies .card-technologies .icon {
    width: 90px;
    height: 90px;
    padding: 0.9rem;
    border-width: 10px;
  }
}

.technologies .card-technologies .info {
  background-color: #FFFFFF;
  padding: 4rem 1.5rem 1.5rem;
  position: relative;
}

.technologies .card-technologies .info ul {
  margin-bottom: 0;
}

.related-partners .logo-wrap {
  position: relative;
}

.related-partners .logo-wrap::after {
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  background-color: #004472;
  right: -3.5px;
  bottom: -10.5px;
  z-index: 9;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.related-partners .logo-wrap .logo {
  position: relative;
  width: 100%;
  height: 100%;
  margin-top: 0 !important;
}

.related-partners .logo-wrap .logo::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -7.5px;
  width: 100%;
  height: 2px;
  background-color: #DEDEDE;
}

.related-partners .logo-wrap .logo::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
  height: calc(100% + 3px);
  width: 2px;
  background-color: #DEDEDE;
}

.related-partners .logo-wrap .logo img {
  max-width: 50%;
}

@media (min-width: 992px) {
  .related-partners .logo-wrap:nth-child(4) .logo::after, .related-partners .logo-wrap:last-child .logo::after {
    display: none;
  }
  .related-partners .logo-wrap:nth-child(n+4)::after {
    display: none;
  }
  .related-partners .logo-wrap:nth-child(n+5) .logo::before {
    display: none;
  }
}

@media (max-width: 991.98px) {
  .related-partners .logo-wrap:nth-child(even)::after {
    display: none;
  }
  .related-partners .logo-wrap:nth-child(even) .logo::after {
    display: none;
  }
  .related-partners .logo-wrap:last-child::after, .related-partners .logo-wrap:nth-last-child(2)::after {
    display: none;
  }
  .related-partners .logo-wrap:last-child .logo::before, .related-partners .logo-wrap:nth-last-child(2) .logo::before {
    display: none;
  }
}

/***   Managed Services  ***/
.our-services .nav-pills .nav-link {
  -webkit-box-shadow: 0px 3px 6px #0000001A !important;
          box-shadow: 0px 3px 6px #0000001A !important;
  padding: 1rem;
  width: 85px;
  height: 85px;
}

@media (max-width: 991.98px) {
  .our-services .nav-pills .nav-link {
    width: 65px;
    height: 65px;
    padding: 0.5rem;
  }
}

.our-services .nav-pills .nav-link:not(:last-child) {
  margin-bottom: 1rem;
}

.our-services .nav-pills .nav-link .icon {
  width: 80%;
  margin: auto;
}

@media (max-width: 991.98px) {
  .our-services .nav-pills .nav-link .icon {
    width: 70%;
  }
}

.our-services .nav-pills .nav-link.active {
  background-color: #00BBE3;
}

.our-services .nav-pills .nav-link.active .icon {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}

.our-services .tab-content {
  background-color: #EBEBEB;
}

.our-services .tab-content .tab-pane {
  height: 100%;
}

.our-services .tab-content .tab-pane .info {
  padding: 2.5rem 4rem;
}

@media (max-width: 991.98px) {
  .our-services .tab-content .tab-pane .info {
    padding: 1.5rem;
  }
}

.our-services .tab-content .tab-pane .big-icon {
  -webkit-filter: invert(88%) sepia(2%) saturate(553%) hue-rotate(83deg) brightness(121%) contrast(74%);
          filter: invert(88%) sepia(2%) saturate(553%) hue-rotate(83deg) brightness(121%) contrast(74%);
  opacity: 0.5;
}

.our-services .tab-content .tab-pane ul {
  margin-bottom: 0;
}

.photo-gallery .swiper-slide .img {
  height: 500px;
}

@media (max-width: 991.98px) {
  .photo-gallery .swiper-slide .img {
    height: 300px;
  }
}

.photo-gallery .swiper-pagination {
  bottom: 0;
}

.photo-gallery .swiper-pagination .swiper-pagination-bullet {
  border: 1px solid #DEDEDE;
}

.photo-gallery .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #00BBE3;
  border-color: #00BBE3;
}

.photo-gallery .swiper-button-next,
.photo-gallery .swiper-button-prev {
  top: 0;
  right: auto;
  left: auto;
  background-color: #FFFFFF;
  -webkit-box-shadow: 0px 3px 6px #0000001a;
          box-shadow: 0px 3px 6px #0000001a;
  position: relative;
  top: auto;
}

.photo-gallery .swiper-button-next:hover,
.photo-gallery .swiper-button-prev:hover {
  background-color: #007AA8;
  border-color: #007AA8;
}

.photo-gallery .swiper-button-next:hover::after,
.photo-gallery .swiper-button-prev:hover::after {
  color: #FFFFFF;
}

/*** Barq Academy ***/
.barq-academy-apply-now {
  background-color: #EBEBEB;
}

/*** Form ***/
.bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
  width: 180px;
}

.custom-label {
  display: block;
}

.form-control {
  border: none;
  border-radius: 0;
  -webkit-box-shadow: 0px 3px 6px #00000029 !important;
          box-shadow: 0px 3px 6px #00000029 !important;
  padding: 0.6rem 1rem;
  font-size: inherit;
}

.bootstrap-select {
  -webkit-box-shadow: 0px 3px 6px #00000029;
          box-shadow: 0px 3px 6px #00000029;
}

.bootstrap-select > .dropdown-toggle {
  padding: 0.6rem 1rem;
  border: none;
  border-radius: 0;
  background-color: #FFFFFF;
}

.bootstrap-select > .dropdown-toggle:focus {
  outline: none !important;
}

.bootstrap-select > .dropdown-toggle::after {
  border: none;
  background-image: url("../img/select-arrow.png");
  background-repeat: no-repeat;
  background-size: contain;
  width: 14px;
  height: 14px;
  background-position: center;
}

.bootstrap-select .dropdown-menu {
  border: none;
  border-radius: 0;
  -webkit-box-shadow: 0px 3px 6px #00000029;
          box-shadow: 0px 3px 6px #00000029;
  font-size: inherit;
}

.bootstrap-select .btn {
  font-size: inherit;
}

.bootstrap-select > .dropdown-toggle.bs-placeholder,
.bootstrap-select > .dropdown-toggle.bs-placeholder:active,
.bootstrap-select > .dropdown-toggle.bs-placeholder:focus,
.bootstrap-select > .dropdown-toggle.bs-placeholder:hover {
  color: #171717;
}

.dropdown-item.active,
.dropdown-item:active {
  background-color: #00BBE3;
}

.dropdown-item:focus,
.dropdown-item:hover {
  background-color: #EBEBEB;
  color: #171717;
}

.form-group .bootstrap-select {
  width: 100% !important;
}

.custom-label {
  margin-bottom: 0.65rem;
}

.custom-file-input {
  display: none;
}

.btn-upload {
  background-color: #A1ABAC;
  color: #FFFFFF;
  border-radius: 0;
  border: none;
  padding: 0.6rem 1rem;
  cursor: pointer;
}

.iti {
  width: 100%;
}

.iti--separate-dial-code .iti__selected-flag {
  background-color: transparent;
}

/*** Success Stories ***/
.success-stories .success-stories-card {
  -webkit-box-shadow: 0px 0px 20px #00000029;
          box-shadow: 0px 0px 20px #00000029;
  padding: 3rem 1.5rem 1.5rem;
  position: relative;
}

.success-stories .success-stories-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 70px;
  height: 100px;
  background-image: url("../img/quote.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center -35px;
  pointer-events: none;
}

.success-stories .success-stories-card .image {
  width: 90px;
  height: 90px;
  margin: 0 auto 1.5rem;
  overflow: hidden;
  border-radius: 50%;
}

/*** ISO Certificates ***/
.iso-certificates .nav-pills {
  border-bottom: 1px solid #A1ABAC;
}

.iso-certificates .nav-pills .nav-link {
  color: #171717;
  position: relative;
}

.iso-certificates .nav-pills .nav-link::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0%;
  height: 4px;
  background-color: #00BBE3;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.iso-certificates .nav-pills .nav-link.active {
  background-color: transparent;
  font-weight: 700;
}

.iso-certificates .nav-pills .nav-link.active::before {
  width: 100%;
}

.iso-certificates .tab-content .image {
  width: 80%;
  margin-left: auto;
  border: 2px solid #A1ABAC;
  padding: 1.5rem;
  height: 300px;
  overflow: hidden;
}

@media (max-width: 991.98px) {
  .iso-certificates .tab-content .image {
    width: 60%;
    margin-right: auto;
    margin-left: 0;
    padding: 0.5rem;
    height: 200px;
  }
}

/*** Partnerships And Vendors ***/
.partnerships-vendors .partnerships .partnership {
  height: 160px;
  border: 3px solid #EBEBEB;
  padding: 1rem;
  position: relative;
  color: #FFFFFF;
}

.partnerships-vendors .partnerships .partnership::before {
  content: '';
  position: absolute;
  inset: 0;
  width: 0%;
  height: 100%;
  background-color: #00BBE3;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.partnerships-vendors .partnerships .partnership .title {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-transform: translate(-50%, -50%) translate3d(0, 20px, 0);
          transform: translate(-50%, -50%) translate3d(0, 20px, 0);
  opacity: 0;
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}

.partnerships-vendors .partnerships .partnership:hover::before {
  width: 100%;
}

.partnerships-vendors .partnerships .partnership:hover .title {
  -webkit-transform: translate(-50%, -50%) translate3d(0, 0, 0);
          transform: translate(-50%, -50%) translate3d(0, 0, 0);
  opacity: 1;
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}

.page-item:not(:first-child) .page-link {
  margin-left: 0;
}

.page-item .page-link {
  color: #171717;
  padding: .375rem 1rem;
  border: none;
  border-radius: 0 !important;
  margin: 0.35rem;
}

.page-item .page-link.next, .page-item .page-link.prev {
  border: 1px solid #00BBE3;
  color: #00BBE3;
  margin: 0.35rem 1rem;
}

.page-item .page-link.next:hover, .page-item .page-link.prev:hover {
  background-color: #004472;
  color: #FFFFFF;
}

.page-item .page-link:focus {
  color: #171717;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.page-item .page-link:hover {
  background-color: #EBEBEB;
}

.page-item .page-link.active {
  background-color: #00BBE3;
  color: #FFFFFF;
}

.page-item.disabled .page-link {
  border-color: rgba(23, 23, 23, 0.3);
  color: rgba(23, 23, 23, 0.3);
}

.partnerships-vendors-details .logo {
  height: 200px;
  width: 200px;
  border: 4px solid #EBEBEB;
  padding: 1rem;
  position: relative;
  color: #FFFFFF;
}

.partnerships-vendors-details .link {
  color: #00BBE3;
}

.partnerships-vendors-details .awards-certificates .swiper-awards-certificates .swiper-pagination {
  bottom: 0;
}

.partnerships-vendors-details .awards-certificates .swiper-awards-certificates .swiper-pagination .swiper-pagination-bullet {
  border: 1px solid #DEDEDE;
}

.partnerships-vendors-details .awards-certificates .swiper-awards-certificates .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #00BBE3;
  border-color: #00BBE3;
}

.partnerships-vendors-details .awards-certificates .swiper-awards-certificates .swiper-button-next,
.partnerships-vendors-details .awards-certificates .swiper-awards-certificates .swiper-button-prev {
  top: 0;
  right: auto;
  left: auto;
  background-color: #FFFFFF;
  border: 2px solid #DEDEDE;
  position: relative;
  top: auto;
}

.partnerships-vendors-details .awards-certificates .swiper-awards-certificates .swiper-button-next:hover,
.partnerships-vendors-details .awards-certificates .swiper-awards-certificates .swiper-button-prev:hover {
  background-color: #007AA8;
  border-color: #007AA8;
}

.partnerships-vendors-details .awards-certificates .swiper-awards-certificates .swiper-button-next:hover::after,
.partnerships-vendors-details .awards-certificates .swiper-awards-certificates .swiper-button-prev:hover::after {
  color: #FFFFFF;
}

/*** Media ***/
.image[videosrc] {
  position: relative;
}

.image[videosrc]::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-image: url("../img/player.svg");
  background-size: 70%;
  background-repeat: no-repeat;
  background-position: center;
  width: 60px;
  height: 60px;
  border: 2px solid #FFFFFF;
  border-radius: 50%;
}

.media-section .media .image {
  height: 250px;
  overflow: hidden;
}

.media-section .media .image img {
  -webkit-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
  -webkit-transform: scale3d(1, 1, 1);
          transform: scale3d(1, 1, 1);
}

.media-section .media .image img:hover {
  -webkit-transform: scale3d(1.2, 1.2, 1.2);
          transform: scale3d(1.2, 1.2, 1.2);
}

.media-section .news .news-card .info {
  padding: 2rem 1rem 2rem !important;
}

/*** Video Modal ***/
.media-src {
  cursor: pointer;
}

.enquiryFormModal .modal-header,
.videoModal .modal-header {
  border: none;
}

.enquiryFormModal .modal-header .btn-close,
.videoModal .modal-header .btn-close {
  background-image: url("../img/close-white.svg");
  opacity: 1;
  border: 1px solid #FFFFFF;
  border-radius: 0;
}

.enquiryFormModal .modal-header .btn-close:hover,
.videoModal .modal-header .btn-close:hover {
  background-color: #FFFFFF;
  background-image: url("../img/close-blue.svg");
}

@media (min-width: 576px) {
  .enquiryFormModal .modal-dialog,
  .videoModal .modal-dialog {
    max-width: 80vw;
  }
}

.enquiryFormModal .modal-content,
.videoModal .modal-content {
  background: transparent;
  border: none;
  border-radius: 0;
}

@media (min-width: 576px) {
  .enquiryFormModal .modal-content .modal-body,
  .videoModal .modal-content .modal-body {
    max-width: 80vw;
    height: 80vh;
  }
}

@media (max-width: 575.98px) {
  .enquiryFormModal .modal-content .modal-body,
  .videoModal .modal-content .modal-body {
    height: 40vh;
  }
}

.enquiryFormModal .modal-content {
  background: transparent;
  border: none;
  border-radius: 0;
}

.enquiryFormModal .modal-content .modal-body {
  background-color: #FFFFFF;
}

@media (min-width: 576px) {
  .enquiryFormModal .modal-content .modal-body {
    max-width: 80vw;
    height: auto;
    padding: 3rem;
  }
}

@media (max-width: 575.98px) {
  .enquiryFormModal .modal-content .modal-body {
    height: auto;
    padding: 1.5rem;
  }
}

.media-inner .card-media-inner .btn-enquiryForm {
  cursor: pointer;
}

.media-inner .card-media-inner a.small-title {
  color: #00BBE3;
  text-decoration: none;
}

.media-inner .card-media-inner a.small-title:hover {
  color: #00BBE3;
}

.media-inner .card-media-inner:not(:last-child) {
  border-bottom: 1px solid #DEDEDE;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
}

/*** Latest News ***/
.latest-news-section .news .news-card {
  cursor: pointer;
  -webkit-box-shadow: 0px 3px 6px #00000029;
          box-shadow: 0px 3px 6px #00000029;
  text-decoration: none;
  color: #171717;
  display: block;
  height: 100%;
}

.latest-news-section .news .news-card .image {
  height: 200px;
  overflow: hidden;
}

.latest-news-section .news .news-card .image img {
  -webkit-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
  -webkit-transform: scale3d(1, 1, 1);
          transform: scale3d(1, 1, 1);
}

.latest-news-section .news .news-card .info {
  position: relative;
  padding: 1rem 1rem 2rem;
}

.latest-news-section .news .news-card .info::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 1rem;
  height: 1rem;
  background-color: #00BBE3;
  -webkit-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
}

.latest-news-section .news .news-card .info .date,
.latest-news-section .news .news-card .info .description {
  color: #4D4D4D;
}

@media (min-width: 1600px) {
  .latest-news-section .news .news-card .info .small-title {
    font-size: 18px;
  }
}

@media (min-width: 1200px) and (max-width: 1599.98px) {
  .latest-news-section .news .news-card .info .small-title {
    font-size: 16px;
  }
}

@media (min-width: 576px) and (max-width: 1199.98px) {
  .latest-news-section .news .news-card .info .small-title {
    font-size: 14px;
  }
}

@media (max-width: 575.98px) {
  .latest-news-section .news .news-card .info .small-title {
    font-size: 13px;
  }
}

.latest-news-section .news .news-card .info .hover {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  opacity: 0;
  pointer-events: none;
}

.latest-news-section .news .news-card:hover .image img {
  -webkit-transform: scale3d(1.2, 1.2, 1.2);
          transform: scale3d(1.2, 1.2, 1.2);
}

.latest-news-section .news .news-card:hover .info::before {
  width: 100%;
  height: 100%;
}

.latest-news-section .news .news-card:hover .info .hover {
  opacity: 1;
}

.latest-news-details .swiper-slide .img,
.events-details .swiper-slide .img {
  height: 500px;
}

@media (max-width: 991.98px) {
  .latest-news-details .swiper-slide .img,
  .events-details .swiper-slide .img {
    height: 300px;
  }
}

.latest-news-details .swiper-pagination,
.events-details .swiper-pagination {
  bottom: 0;
}

.latest-news-details .swiper-pagination .swiper-pagination-bullet,
.events-details .swiper-pagination .swiper-pagination-bullet {
  border: 1px solid #DEDEDE;
}

.latest-news-details .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active,
.events-details .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #00BBE3;
  border-color: #00BBE3;
}

.events-details .social-media .icon svg {
  width: 25px;
  height: 25px;
  fill: #A1ABAC;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.events-details .social-media .icon:hover svg {
  fill: #00BBE3;
}

@media (min-width: 1200px) {
  .event-location .map {
    height: 50vh;
  }
}

@media (min-width: 768px) and (max-width: 1199.98px) {
  .event-location .map {
    height: 40vh;
  }
}

@media (max-width: 767.98px) {
  .event-location .map {
    height: 250px;
  }
}

.event-agenda {
  background-color: #00BBE3;
  color: #FFFFFF;
  position: relative;
  padding: 4rem 2rem;
}

.event-agenda ol {
  list-style: none;
  counter-reset: my-awesome-counter;
  padding: 0;
}

.event-agenda ol li {
  counter-increment: my-awesome-counter;
  margin-bottom: 1rem;
  position: relative;
  padding-left: 20px;
}

.event-agenda ol li::before {
  content: "\25BA \0020";
  font-size: 10px;
  position: absolute;
  top: 5px;
  left: 0px;
}

.registration-form {
  background-color: #EBEBEB;
}

/*** careers ***/
.careers-section .career .card-career {
  border: 1px solid #EBEBEB;
  -webkit-box-shadow: 0px 0px 6px #00000029;
          box-shadow: 0px 0px 6px #00000029;
  border-radius: 10px;
  padding: 1.5rem 2.5rem;
  position: relative;
}

.careers-section .career .card-career::before {
  content: '';
  position: absolute;
  left: 0;
  height: 100%;
  width: 6px;
}

.careers-section .career .card-career .location i {
  font-size: 18px;
}

.careers-section .career .card-career.blue .title,
.careers-section .career .card-career.blue .location i {
  color: #00BBE3;
}

.careers-section .career .card-career.blue::before {
  background-color: #00BBE3;
}

.careers-section .career .card-career.dark .title,
.careers-section .career .card-career.dark .location i {
  color: #4D4D4D;
}

.careers-section .career .card-career.dark::before {
  background-color: #4D4D4D;
}

.career-apply-form {
  background-color: #EBEBEB;
}

/*** Clients ***/
.clients-section .logo-wrap {
  position: relative;
}

.clients-section .logo-wrap::after {
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  background-color: #004472;
  right: -3.5px;
  bottom: -10.5px;
  z-index: 9;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.clients-section .logo-wrap .logo {
  position: relative;
  width: 100%;
  height: 100%;
  margin-top: 0 !important;
}

.clients-section .logo-wrap .logo::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -7.5px;
  width: 100%;
  height: 2px;
  background-color: #DEDEDE;
}

.clients-section .logo-wrap .logo::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
  height: calc(100% + 3px);
  width: 2px;
  background-color: #DEDEDE;
}

.clients-section .logo-wrap .logo img {
  max-width: 50%;
}

@media (min-width: 992px) {
  .clients-section .logo-wrap:nth-child(4n)::after {
    display: none;
  }
  .clients-section .logo-wrap:nth-child(4n) .logo::after {
    display: none;
  }
}

@media (max-width: 991.98px) {
  .clients-section .logo-wrap:nth-child(2n)::after {
    display: none;
  }
  .clients-section .logo-wrap:nth-child(2n) .logo::after {
    display: none;
  }
}

.loading-scroll {
  opacity: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  bottom: 0;
  left: 50%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transition: opacity .3s ease-in;
  transition: opacity .3s ease-in;
}

.loading-scroll .ball {
  background-color: #00BBE3;
  border-radius: 50%;
  margin: 5px;
  height: 10px;
  width: 10px;
  -webkit-animation: jump .5s ease-in infinite;
          animation: jump .5s ease-in infinite;
}

.loading-scroll .ball:nth-of-type(2) {
  -webkit-animation-delay: 0.1s;
          animation-delay: 0.1s;
}

.loading-scroll .ball:nth-of-type(3) {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}

.loading-scroll.show {
  opacity: 1;
}

@-webkit-keyframes jump {
  0%,
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
}

@keyframes jump {
  0%,
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
}

/*** sustainabilty ***/
.sustainabilty-section .sustainabilty {
  position: relative;
}

.sustainabilty-section .sustainabilty::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 20vh;
  background-color: #EBEBEB;
  z-index: -2;
}

.sustainabilty-section .container-info {
  position: relative;
}

.sustainabilty-section .container-info .image {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
}

.sustainabilty-section .container-info .image::after {
  content: '';
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(23, 23, 23, 0.62);
}

.sustainabilty-section .container-info .info {
  min-height: 80vh;
  color: #FFFFFF;
}

.sustainabilty-section .about-sustainabilty,
.sustainabilty-section .mission-vision-sustainabilty {
  background-color: #EBEBEB;
}

.sustainabilty-section .about-sustainabilty {
  position: relative;
}

.sustainabilty-section .about-sustainabilty::before {
  content: '';
  position: absolute;
  top: -70px;
  right: 5%;
  width: 150px;
  height: 150px;
  background-image: url("../img/sustainabilty-shape.svg");
  background-repeat: no-repeat;
  background-size: contain;
}

@media (max-width: 991.98px) {
  .sustainabilty-section .about-sustainabilty::before {
    top: -35px;
    right: 0%;
    width: 70px;
    height: 70px;
  }
}

.sustainabilty-section .mission-vision-sustainabilty .card-wrap:nth-child(1) .mission-vision-card {
  background-color: #00BBE3;
  color: #FFFFFF;
}

.sustainabilty-section .mission-vision-sustainabilty .card-wrap:nth-child(2) .mission-vision-card {
  background-color: #FFFFFF;
}

@media (min-width: 992px) {
  .sustainabilty-section .mission-vision-sustainabilty .card-wrap:nth-child(2) .mission-vision-card {
    margin-top: 3rem;
  }
}

.sustainabilty-section .mission-vision-sustainabilty .mission-vision-card {
  padding: 3rem 2rem 0.5rem;
  border-radius: 20px;
}

@media (min-width: 992px) {
  .sustainabilty-section .our-principles .wrap-our-principles:nth-child(odd) .start-side {
    padding-right: 4rem;
    height: 70vh;
  }
  .sustainabilty-section .our-principles .wrap-our-principles:nth-child(odd) .end-side {
    padding-left: 4rem;
  }
  .sustainabilty-section .our-principles .wrap-our-principles:nth-child(even) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  .sustainabilty-section .our-principles .wrap-our-principles:nth-child(even) .start-side {
    padding-left: 4rem;
  }
  .sustainabilty-section .our-principles .wrap-our-principles:nth-child(even) .end-side {
    padding-right: 4rem;
  }
}

@media (min-width: 992px) {
  .sustainabilty-section .how-we-do-it .card-how-we-do-it {
    height: 100%;
  }
}

@media (min-width: 992px) {
  .sustainabilty-section .how-we-do-it .card-how-we-do-it .image {
    height: 250px;
  }
}

@media (max-width: 991.98px) {
  .sustainabilty-section .how-we-do-it .card-how-we-do-it .image {
    height: 200px;
  }
}

.sustainabilty-section .how-we-do-it .card-how-we-do-it .info {
  background-color: #00BBE3;
  color: #FFFFFF;
}

@media (min-width: 992px) {
  .sustainabilty-section .how-we-do-it .card-how-we-do-it .info {
    height: calc(100% - 250px);
  }
}

.sustainabilty-section .how-we-do-it .card-how-we-do-it .info .link {
  text-decoration: none;
  color: #FFFFFF;
}

.sustainabilty-section .how-we-do-it .card-how-we-do-it .info .link:hover {
  color: #FFFFFF;
}

@media (min-width: 992px) {
  .sustainabilty-section .numbers .wrap-numbers:nth-child(3n + 2) {
    margin-top: 3rem;
  }
}

.sustainabilty-section .numbers .info {
  position: relative;
  padding: 3rem 2rem;
  color: #FFFFFF;
}

@media (max-width: 991.98px) {
  .sustainabilty-section .numbers .info {
    padding: 2rem 1.5rem;
  }
}

.sustainabilty-section .numbers .info .image {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
  pointer-events: none;
}

.sustainabilty-section .numbers .info .number {
  border-bottom: 1px solid #FFFFFF;
  line-height: 1;
}

.sustainabilty-form {
  background-color: #EBEBEB;
}

/*** Reach Out ***/
@media (min-width: 1200px) {
  .reach-out-section .locations-wrap .location:nth-child(even) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}

@media (max-width: 991.98px) {
  .reach-out-section .locations-wrap .location {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

.reach-out-section .locations-wrap .location .location-info a {
  color: #171717;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.reach-out-section .locations-wrap .location .location-info a:hover {
  color: #00BBE3;
}

.reach-out-section .map {
  height: 50vh;
}

.reach-out-section .map-location {
  position: relative;
}

.reach-out-section .map-location .pins {
  position: absolute;
  inline-size: 0;
  inset: 0;
  z-index: 9;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.reach-out-section .map-location .pins .pin {
  position: absolute;
  max-width: 28px;
  cursor: pointer;
  pointer-events: all;
}

@media (max-width: 575.98px) {
  .reach-out-section .map-location .pins .pin {
    max-width: 18px;
  }
}

.reach-out-section .map-location .pins .pin:hover, .reach-out-section .map-location .pins .pin.show {
  -webkit-filter: invert(50%) sepia(98%) saturate(1609%) hue-rotate(152deg) brightness(99%) contrast(101%);
          filter: invert(50%) sepia(98%) saturate(1609%) hue-rotate(152deg) brightness(99%) contrast(101%);
}

@media (min-width: 1600px) {
  .reach-out-section .map-location .pins .pin.pin-0 {
    top: 8%;
    left: 20%;
  }
}

@media (min-width: 992px) and (max-width: 1599.98px) {
  .reach-out-section .map-location .pins .pin.pin-0 {
    left: 16%;
    top: 6%;
  }
}

@media (min-width: 576px) and (max-width: 991.98px) {
  .reach-out-section .map-location .pins .pin.pin-0 {
    left: 15%;
    top: 4%;
  }
}

@media (max-width: 575.98px) {
  .reach-out-section .map-location .pins .pin.pin-0 {
    left: 13%;
    top: 0%;
  }
}

@media (min-width: 1600px) {
  .reach-out-section .map-location .pins .pin.pin-1 {
    top: 7.5%;
    left: 22%;
  }
}

@media (min-width: 992px) and (max-width: 1599.98px) {
  .reach-out-section .map-location .pins .pin.pin-1 {
    left: 19%;
    top: 5.5%;
  }
}

@media (min-width: 576px) and (max-width: 991.98px) {
  .reach-out-section .map-location .pins .pin.pin-1 {
    left: 20%;
    top: 3.5%;
  }
}

@media (max-width: 575.98px) {
  .reach-out-section .map-location .pins .pin.pin-1 {
    left: 20%;
    top: 0%;
  }
}

@media (min-width: 1600px) {
  .reach-out-section .map-location .pins .pin.pin-2 {
    left: 44%;
    top: 62%;
  }
}

@media (min-width: 992px) and (max-width: 1599.98px) {
  .reach-out-section .map-location .pins .pin.pin-2 {
    left: 43%;
    top: 62%;
  }
}

@media (min-width: 576px) and (max-width: 991.98px) {
  .reach-out-section .map-location .pins .pin.pin-2 {
    left: 42%;
    top: 57%;
  }
}

@media (max-width: 575.98px) {
  .reach-out-section .map-location .pins .pin.pin-2 {
    left: 41%;
    top: 52%;
  }
}

@media (min-width: 1600px) {
  .reach-out-section .map-location .pins .pin.pin-3 {
    left: 66%;
    top: 50%;
  }
}

@media (min-width: 992px) and (max-width: 1599.98px) {
  .reach-out-section .map-location .pins .pin.pin-3 {
    left: 68%;
    top: 50%;
  }
}

@media (min-width: 576px) and (max-width: 991.98px) {
  .reach-out-section .map-location .pins .pin.pin-3 {
    left: 68%;
    top: 47%;
  }
}

@media (max-width: 575.98px) {
  .reach-out-section .map-location .pins .pin.pin-3 {
    left: 66%;
    top: 42%;
  }
}

@media (min-width: 1600px) {
  .reach-out-section .map-location .pins .pin.pin-4 {
    left: 82%;
    top: 46%;
  }
}

@media (min-width: 992px) and (max-width: 1599.98px) {
  .reach-out-section .map-location .pins .pin.pin-4 {
    left: 86%;
    top: 46%;
  }
}

@media (min-width: 576px) and (max-width: 991.98px) {
  .reach-out-section .map-location .pins .pin.pin-4 {
    left: 86%;
    top: 42%;
  }
}

@media (max-width: 575.98px) {
  .reach-out-section .map-location .pins .pin.pin-4 {
    left: 85%;
    top: 38%;
  }
}

@media (min-width: 1600px) {
  .reach-out-section .map-location .pins .pin.pin-5 {
    left: 88%;
    top: 38%;
  }
}

@media (min-width: 992px) and (max-width: 1599.98px) {
  .reach-out-section .map-location .pins .pin.pin-5 {
    left: 92%;
    top: 38%;
  }
}

@media (min-width: 576px) and (max-width: 991.98px) {
  .reach-out-section .map-location .pins .pin.pin-5 {
    left: 92%;
    top: 34%;
  }
}

@media (max-width: 575.98px) {
  .reach-out-section .map-location .pins .pin.pin-5 {
    left: 90%;
    top: 30%;
  }
}

.reach-out-section .map-location .data {
  position: absolute;
  background-color: #FFFFFF;
  -webkit-box-shadow: 0px 3px 6px #00000029;
          box-shadow: 0px 3px 6px #00000029;
  max-width: 400px;
  opacity: 0;
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  z-index: 9;
  pointer-events: none;
}

@media (max-width: 575.98px) {
  .reach-out-section .map-location .data {
    width: 100%;
    top: 0;
  }
}

.reach-out-section .map-location .data.show {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  pointer-events: all;
}

@media (min-width: 1600px) {
  .reach-out-section .map-location .data.data-0 {
    top: 0%;
    left: 0%;
  }
}

@media (min-width: 992px) and (max-width: 1599.98px) {
  .reach-out-section .map-location .data.data-0 {
    top: 0%;
    left: 0;
  }
}

@media (min-width: 576px) and (max-width: 991.98px) {
  .reach-out-section .map-location .data.data-0 {
    top: 0%;
    left: 0;
  }
}

@media (min-width: 1600px) {
  .reach-out-section .map-location .data.data-1 {
    left: 0%;
    top: 0%;
  }
}

@media (min-width: 992px) and (max-width: 1599.98px) {
  .reach-out-section .map-location .data.data-1 {
    left: 0%;
    top: 0%;
  }
}

@media (min-width: 576px) and (max-width: 991.98px) {
  .reach-out-section .map-location .data.data-1 {
    left: 0%;
    top: 0%;
  }
}

@media (min-width: 1600px) {
  .reach-out-section .map-location .data.data-2 {
    left: 32%;
    top: 12%;
  }
}

@media (min-width: 992px) and (max-width: 1599.98px) {
  .reach-out-section .map-location .data.data-2 {
    left: 27%;
    top: 4%;
  }
}

@media (min-width: 576px) and (max-width: 991.98px) {
  .reach-out-section .map-location .data.data-2 {
    left: 19%;
    top: 0;
  }
}

@media (min-width: 1600px) {
  .reach-out-section .map-location .data.data-3 {
    left: 55%;
    top: 0;
  }
}

@media (min-width: 992px) and (max-width: 1599.98px) {
  .reach-out-section .map-location .data.data-3 {
    left: 51%;
    top: 0;
  }
}

@media (min-width: 576px) and (max-width: 991.98px) {
  .reach-out-section .map-location .data.data-3 {
    left: 37%;
    top: 0%;
  }
}

@media (min-width: 1600px) {
  .reach-out-section .map-location .data.data-4 {
    right: 5%;
    top: 0%;
  }
}

@media (min-width: 992px) and (max-width: 1599.98px) {
  .reach-out-section .map-location .data.data-4 {
    right: 0%;
    top: 0%;
  }
}

@media (min-width: 576px) and (max-width: 991.98px) {
  .reach-out-section .map-location .data.data-4 {
    right: 0%;
    top: 0%;
  }
}

@media (min-width: 1600px) {
  .reach-out-section .map-location .data.data-5 {
    right: 0%;
    top: 0%;
  }
}

@media (min-width: 992px) and (max-width: 1599.98px) {
  .reach-out-section .map-location .data.data-5 {
    right: 0%;
    top: 0%;
  }
}

@media (min-width: 576px) and (max-width: 991.98px) {
  .reach-out-section .map-location .data.data-5 {
    right: 0%;
    top: 0%;
  }
}

.reach-out-section .map-location .data .location-info a {
  color: #171717;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.reach-out-section .map-location .data .location-info a:hover {
  color: #00BBE3;
}

.your-feedback {
  background-color: #EBEBEB;
}

.commonSection {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100vh;
  padding: 30px;
}

.commonSection--grey {
  background-color: #999;
}

.commonSection > * {
  margin: auto;
}

.product {
  overflow: hidden;
}

.showThankYou {
  background-color: #FFFFFF;
  padding: 3rem;
  display: none;
}

.showThankYou .message {
  min-height: 50vh;
}

.cbx {
  -webkit-user-select: none;
  -moz-user-select: none;
   -ms-user-select: none;
       user-select: none;
  cursor: pointer;
  padding: 6px 8px;
  border-radius: 6px;
  overflow: hidden;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.cbx:not(:last-child) {
  margin-right: 6px;
}

.cbx:hover {
  background: rgba(0, 119, 255, 0.06);
}

.cbx span {
  float: left;
  vertical-align: middle;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}

.cbx span:first-child {
  position: relative;
  width: 18px;
  height: 18px;
  border-radius: 4px;
  border: 1px solid #171717;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.cbx span:last-child {
  padding-left: 8px;
  line-height: 18px;
}

.cbx:hover span:first-child {
  border-color: #00BBE3;
}

.inp-cbx {
  position: absolute;
  visibility: hidden;
}

.inp-cbx:checked + .cbx span:first-child {
  background: #00BBE3;
  border-color: #00BBE3;
}

.inp-cbx:checked + .cbx span:last-child {
  color: #00BBE3;
  text-decoration: underline;
}

.btn-filter {
  background-color: transparent;
  border: none;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  position: relative;
  padding-left: 26px;
}

.btn-filter::before {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 4px;
  border: 1px solid #171717;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.btn-filter.active {
  color: #00BBE3;
  text-decoration: underline;
}

.btn-filter.active::before {
  background-color: #00BBE3;
  border: 2px solid #FFFFFF;
  -webkit-box-shadow: 0px 0px 0px 2px #00BBE3;
          box-shadow: 0px 0px 0px 2px #00BBE3;
}

.mix,
.gap {
  display: inline-block;
  width: 100%;
}

.mix {
  display: none;
}

.iti--allow-dropdown input,
.iti--allow-dropdown input[type=tel],
.iti--allow-dropdown input[type=text],
.iti--separate-dial-code input,
.iti--separate-dial-code input[type=tel],
.iti--separate-dial-code input[type=text] {
  padding-left: 100px !important;
}

.img-float {
  float: right;
}

.searchResults .search-result {
  text-decoration: none;
  color: #171717;
}

.searchResults .search-result:not(:last-child) {
  border-bottom: 2px solid #DEDEDE;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}

@media (min-width: 1200px) {
  .searchResults .search-result:not(:last-child) {
    padding-bottom: 3rem;
    margin-bottom: 3rem;
  }
}

.searchResults .search-result .medium-title {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.searchResults .search-result:hover .medium-title {
  color: #00BBE3;
}
/*# sourceMappingURL=style.css.map */