@import url("https://fonts.googleapis.com/css2?family=Inter:opsz,wght@14..32,100..900&display=swap");
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

input,
button,
input:focus,
button:focus {
  outline: none;
}

* {
  font-family: "Inter", sans-serif;
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  background: #fff;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
}

.container {
  position: relative;
  z-index: 2;
  padding: 0 16px;
  max-width: 1312px;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .container {
    max-width: 1180px;
  }
}
@media (min-width: 1400px) {
  .container {
    max-width: 1312px;
    padding: 0;
  }
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 28px;
  font-size: 14px;
  border: none;
  gap: 10px;
  cursor: pointer;
  text-decoration: none;
  border-radius: 25px;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  transition: all 0.3s ease;
}
@media (min-width: 769px) {
  .btn {
    padding: 0 48px;
    height: 50px;
  }
}
.btn.primary {
  color: #fff;
  background: #d97d23;
}
.btn.primary img {
  transition: all 0.3s ease;
}
.btn.primary:hover {
  background: #e47f1c;
}
.btn.primary:hover img {
  transform: rotate(45deg);
}
.btn.secondary {
  color: #fff;
  padding: 0 24px;
  background: #603408;
}
.btn.secondary img {
  transition: all 0.3s ease;
}
.btn.secondary:hover {
  background: #966432;
}
.btn.secondary:hover img {
  transform: rotate(45deg);
}
.btn.primary2 {
  height: 48px;
  color: #fff;
  padding: 0 24px;
  background: #37b5e8;
}
.btn.primary2 img {
  transition: all 0.3s ease;
}
.btn.primary2:hover {
  background: #189ed4;
}
.btn.primary2:hover img {
  transform: rotate(45deg);
}

header {
  padding: 0 0;
  position: fixed;
  width: 100%;
  left: 0;
  right: 0;
  top: 0;
  z-index: 18;
  transition: all 0.4s ease;
}
@media (min-width: 769px) {
  header {
    padding: 0 16px;
  }
}
header.active {
  background: #ffffff;
}
@media (max-width: 768px) {
  header.active nav {
    opacity: 1;
    visibility: visible;
  }
}
header.active .mobileMenu {
  background: url("../img/menu-icon-close.svg") no-repeat center center;
}
header.active .mobileMenu img {
  opacity: 0;
}
header.active .logo img {
  filter: invert(100%);
}
@media (min-width: 769px) {
  header {
    top: 20px;
  }
}
header .container {
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background: transparent;
  border: solid 1px transparent;
  min-height: 56px;
  background: #fff;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  transition: all 0.4s ease;
}
@media (min-width: 769px) {
  header .container {
    justify-content: space-between;
    padding: 20px 0;
    background: transparent;
    border-radius: 16px;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
  }
}
header nav {
  display: block;
  gap: 12px;
  transition: all 0.4s ease;
}
header nav .menuitem {
  position: relative;
}
header nav .menuitem .dropdown {
  position: absolute;
  left: 0;
  top: 100%;
  min-width: 180px;
  background: #fff;
  padding: 10px 15px;
  display: flex;
  flex-direction: column;
  gap: 0;
  opacity: 0;
  visibility: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 12px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  transition: all 0.4s ease;
}
@media (max-width: 768px) {
  header nav .menuitem .dropdown {
    left: 35%;
    z-index: 5;
  }
}
header nav .menuitem .dropdown a {
  padding: 5px 0;
  color: #15163c;
}
@media (max-width: 768px) {
  header nav .menuitem .dropdown a {
    margin: 0;
    padding: 7px 0;
    text-align: left;
    font-weight: 400;
    color: #263141;
    justify-content: flex-start;
    background: transparent;
  }
}
header nav .menuitem .dropdown a:hover, header nav .menuitem .dropdown a.active {
  color: #efb856;
  background: transparent;
}
header nav .menuitem:hover > a, header nav .menuitem.active > a {
  color: #fff;
  background: rgba(108, 213, 255, 0.3215686275);
}
@media (max-width: 768px) {
  header nav .menuitem:hover > a, header nav .menuitem.active > a {
    color: #263141;
    background: #f8f8f8;
  }
}
header nav .menuitem:hover .dropdown, header nav .menuitem.active .dropdown {
  opacity: 1;
  visibility: visible;
  top: calc(100% + 10px);
}
@media (max-width: 768px) {
  header nav .menuitem:hover .dropdown, header nav .menuitem.active .dropdown {
    top: 85%;
  }
}
header nav a {
  padding: 10px 14px;
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
  text-decoration: none;
  color: #fff;
  display: flex;
  gap: 10px;
  border-radius: 25px;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  transition: all 0.4s ease;
}
header nav a.active {
  color: #fff;
  background: rgba(108, 213, 255, 0.3215686275);
}
header nav a.contact {
  display: none;
  background: #37b5e8;
}
@media (max-width: 768px) {
  header nav {
    position: absolute;
    left: 0;
    top: 60px;
    right: 0;
    width: 100%;
    background: #fff;
    padding: 16px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }
  header nav a {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f8f8;
    padding: 15px;
    color: #000;
    text-align: center;
    margin: 12px 0;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
  }
  header nav a.contact {
    display: block;
    color: #fff;
  }
  header nav a img {
    filter: invert(100%);
  }
  header nav a.active {
    color: #000;
  }
}
@media (min-width: 769px) {
  header nav {
    display: flex;
  }
}
header .mobileMenu {
  display: flex;
  position: absolute;
  justify-content: center;
  align-items: center;
  right: 12px;
  width: 40px;
  height: 40px;
  top: 12px;
  border: none;
  padding: 0;
  cursor: pointer;
  background: transparent;
  border: none;
}
@media (min-width: 769px) {
  header .mobileMenu {
    display: none;
  }
}
header .logo {
  width: 125px;
  display: flex;
  padding: 0 0 0;
  transition: all 0.4s ease;
}
header .logo img {
  max-width: 100%;
  filter: invert(100%);
  transition: all 0.4s ease;
}
@media (min-width: 769px) {
  header .logo {
    width: 185px;
  }
  header .logo img {
    filter: invert(0);
  }
}
header .contactBtn {
  display: none;
  width: 185px;
  text-align: right;
}
header .contactBtn a {
  padding: 13.5px 16px;
  background: #E88F37;
  color: #fff;
  border: none;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border-radius: 12px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  transition: all 0.3s ease;
}
header .contactBtn a:hover {
  background: #d97d23;
}
@media (min-width: 769px) {
  header .contactBtn {
    display: block;
  }
}
header.dark-head .logo img {
  filter: invert(1);
}
header.dark-head .mobileMenu img {
  filter: invert(1);
}
@media (min-width: 769px) {
  header.dark-head nav a {
    color: #000;
  }
  header.dark-head nav .menuitem img {
    filter: invert(1);
  }
  header.dark-head nav .menuitem:hover > a, header.dark-head nav .menuitem.active > a {
    color: #000;
    background: rgba(108, 213, 255, 0.3215686275);
  }
  header.dark-head.is-sticky .logo img {
    filter: invert(0);
  }
  header.dark-head.is-sticky nav a {
    color: #fff;
  }
  header.dark-head.is-sticky nav .menuitem img {
    filter: invert(0);
  }
  header.dark-head.is-sticky nav .menuitem:hover > a, header.dark-head.is-sticky nav .menuitem.active > a {
    color: #fff;
    background: rgba(108, 213, 255, 0.3215686275);
  }
  header.dark-head.is-sticky nav .menuitem:hover .dropdown, header.dark-head.is-sticky nav .menuitem.active .dropdown {
    opacity: 1;
    visibility: visible;
    top: 85%;
  }
  header.dark-head.is-sticky nav .menuitem:hover .dropdown a, header.dark-head.is-sticky nav .menuitem.active .dropdown a {
    padding: 5px 0;
    color: #15163c;
  }
  header.dark-head.is-sticky nav .menuitem:hover .dropdown a:hover, header.dark-head.is-sticky nav .menuitem:hover .dropdown a.active, header.dark-head.is-sticky nav .menuitem.active .dropdown a:hover, header.dark-head.is-sticky nav .menuitem.active .dropdown a.active {
    color: #37b5e8;
    background: transparent;
  }
}
header.is-sticky {
  top: 0;
}
@media (min-width: 769px) {
  header.is-sticky {
    top: 30px;
  }
}
header.is-sticky .container {
  padding: 12px;
  background: #fff;
}
@media (min-width: 769px) {
  header.is-sticky .container {
    padding: 20px 32px;
    background: rgba(0, 0, 0, 0.36);
    border: 1px solid rgba(255, 255, 255, 0.2);
    -webkit-backdrop-filter: blur(18px);
            backdrop-filter: blur(18px);
  }
}
@media (max-width: 768px) {
  header.is-sticky .container.active {
    background: #fff;
  }
}
@media (max-width: 768px) {
  header.is-sticky.active .container {
    background: #fff;
  }
}
header.is-sticky .logo img {
  max-width: 125px;
}

.banner {
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  position: relative;
  padding-bottom: 90px;
}
@media (min-width: 769px) {
  .banner {
    min-height: 670px;
    max-height: 900px;
    height: 100vh;
    align-items: center;
  }
}
.banner .webVideo {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  display: none;
}
@media (min-width: 769px) {
  .banner .webVideo {
    display: block;
  }
}
.banner .mobileVideo {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}
@media (min-width: 769px) {
  .banner .mobileVideo {
    display: none;
  }
}
.banner .bannerOverlay {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  min-height: 640px;
  display: block;
  background: linear-gradient(180deg, rgba(3, 34, 46, 0) 0%, #0a4156 120%);
  mix-blend-mode: normal;
  z-index: 2;
}
.banner .container {
  position: relative;
  z-index: 2;
}
.banner .bannertext {
  display: flex;
  gap: 12px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: 310px;
}
.banner .bannertext a {
  text-decoration: none;
  min-width: 170px;
  font-weight: 500;
}
.banner h1 {
  line-height: 37px;
  font-size: 32px;
  color: #fff;
  max-width: 1090px;
  font-weight: 600;
  margin: 0;
  opacity: 0.9;
}
@media (min-width: 769px) {
  .banner h1 {
    line-height: 87px;
    font-size: 72px;
  }
}
.banner h3 {
  line-height: 22px;
  font-size: 18px;
  color: #fff;
  max-width: 1090px;
  font-weight: 500;
  margin: 0;
  opacity: 0.9;
  margin: 0;
}
@media (min-width: 769px) {
  .banner h3 {
    line-height: 45px;
    font-size: 24px;
  }
}
.banner p {
  font-size: 16px;
  line-height: 20px;
  color: #ffffff;
  font-weight: 300;
  margin: 0 auto 0;
  max-width: 1000px;
}
@media (min-width: 769px) {
  .banner p {
    font-size: 18px;
    line-height: 28px;
    margin: 0 auto 20px;
  }
}
.banner .availablity {
  font-weight: 400;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5411764706);
}

.map {
  height: 180px;
  background: url("../img/map-section.webp") no-repeat center bottom;
  background-size: cover;
  transition: all 0.4s ease;
}
.map:hover {
  -webkit-transform: scale(1.3, 1.3);
  -webkit-transition: all 0.5s linear;
}
@media (min-width: 769px) {
  .map {
    height: 680px;
  }
}

.aboutus {
  padding: 48px 0;
  background: #fff;
  z-index: 1;
  position: relative;
}
@media (min-width: 769px) {
  .aboutus {
    padding: 130px 0;
  }
}
.aboutus .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 769px) {
  .aboutus .container {
    flex-direction: row;
  }
}
.aboutus .title {
  max-width: 470px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.aboutus .title h5 {
  font-size: 16px;
  line-height: 20px;
  color: #603408;
  margin: 0;
  font-weight: 500;
}
.aboutus .title h3 {
  font-weight: 500;
  margin: 0;
  font-size: 32px;
  line-height: 40px;
  color: #15163c;
}
@media (min-width: 769px) {
  .aboutus .title h3 {
    font-size: 48px;
    line-height: 60px;
  }
}
.aboutus .description {
  max-width: 650px;
  width: 100%;
  display: flex;
  gap: 25px;
  align-items: baseline;
  flex-direction: column;
  padding-top: 32px;
}
@media (min-width: 769px) {
  .aboutus .description {
    padding-top: 50px;
  }
}
.aboutus .description p {
  font-size: 16px;
  line-height: 20px;
  margin: 0;
  color: #000000;
}
@media (min-width: 769px) {
  .aboutus .description p {
    font-size: 24px;
    line-height: 32px;
  }
}

.ourVerticals {
  padding: 48px 0;
  background: url("../img/verticals.webp") no-repeat center center;
  background-size: cover;
}
@media (min-width: 769px) {
  .ourVerticals {
    padding: 100px 0;
  }
}
.ourVerticals .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
.ourVerticals h5 {
  font-size: 16px;
  line-height: 20px;
  color: #fff;
  margin: 0;
  font-weight: 500;
}
.ourVerticals h3 {
  font-weight: 500;
  margin: 0;
  font-size: 32px;
  color: #fff;
  line-height: 40px;
  max-width: 750px;
}
@media (min-width: 769px) {
  .ourVerticals h3 {
    font-size: 48px;
    line-height: 60px;
  }
}

.groupSections {
  padding: 60px 0;
}
@media (min-width: 769px) {
  .groupSections {
    padding: 130px 0;
  }
}
.groupSections .container {
  display: flex;
  justify-content: space-between;
}
.groupSections .groupItem {
  padding: 0 0 40px 0;
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 100%;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 769px) {
  .groupSections .groupItem {
    flex-direction: row;
    padding: 0 0;
  }
}
.groupSections .groupItem .groupData {
  max-width: 656px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  text-align: center;
  align-items: baseline;
}
@media (min-width: 769px) {
  .groupSections .groupItem .groupData .innerlogo {
    display: none;
  }
}
@media (min-width: 769px) {
  .groupSections .groupItem .groupData {
    gap: 40px;
    text-align: left;
    margin-top: 0;
  }
}
.groupSections .groupItem .groupData img {
  display: block;
  margin: 0 auto;
  max-width: 154px;
}
@media (min-width: 769px) {
  .groupSections .groupItem .groupData img {
    margin: 0;
    max-width: inherit;
  }
}
.groupSections .groupItem h3 {
  font-size: 32px;
  line-height: 40px;
  color: #15163c;
  margin: 0;
}
@media (min-width: 769px) {
  .groupSections .groupItem h3 {
    font-size: 40px;
    line-height: 50px;
  }
}
.groupSections .groupItem p {
  font-size: 16px;
  line-height: 20px;
  color: #000000;
  margin: 0;
}
@media (min-width: 769px) {
  .groupSections .groupItem p {
    font-size: 24px;
    line-height: 30px;
  }
}
.groupSections .groupItem figure {
  max-width: 600px;
  max-height: 515px;
  position: absolute;
  margin: 0;
  right: 0;
  top: 50px;
  opacity: 0;
  visibility: visible;
  transition: all 0.3s ease;
}
@media (max-width: 768px) {
  .groupSections .groupItem figure {
    max-width: 100%;
    position: relative;
    right: 0;
    top: 0;
    opacity: 1;
    visibility: visible;
  }
}
.groupSections .groupItem figure > img {
  width: 100%;
  max-width: 500px;
  border-radius: 32px;
  -webkit-border-radius: 32px;
  -moz-border-radius: 32px;
}
.groupSections .groupItem figure span {
  opacity: 0;
}
@media (max-width: 768px) {
  .groupSections .groupItem figure span {
    display: none;
  }
}
.groupSections .groupItem figure span img {
  max-width: 100%;
}
.groupSections .groupItem figure .step01 {
  position: absolute;
  right: 0;
  top: -65px;
  max-width: 380px;
  transition: all 0.3s 0 ease;
}
.groupSections .groupItem figure .step02 {
  position: absolute;
  right: -100px;
  top: 185px;
  max-width: 250px;
  transition: all 0.3s 250ms ease;
}
.groupSections .groupItem figure .step03 {
  position: absolute;
  left: -50px;
  bottom: -45px;
  max-width: 380px;
  transition: all 0.3s 500ms ease;
}
.groupSections .groupItem figure .step04 {
  position: absolute;
  left: -75px;
  top: 80px;
  max-width: 340px;
  transition: all 0.3s 750ms ease;
}
.groupSections .groupItem .btn {
  margin: 0 auto;
  padding: 0 24px;
  text-decoration: none;
}
@media (min-width: 769px) {
  .groupSections .groupItem .btn {
    margin: 0;
  }
}
.groupSections .active .groupItem .step01 {
  opacity: 1;
}
.groupSections .active .groupItem .step02 {
  opacity: 1;
}
.groupSections .active .groupItem .step03 {
  opacity: 1;
}
.groupSections .active .groupItem .step04 {
  opacity: 1;
}
.groupSections .accordion-container {
  width: 100%;
  position: relative;
}
.groupSections .accordion-container .accordion-item .accordion-header {
  cursor: pointer;
}
@media (max-width: 768px) {
  .groupSections .accordion-container .accordion-item .accordion-header {
    display: none;
  }
}
.groupSections .accordion-container .accordion-item .accordion-header img {
  height: 40px;
  filter: grayscale(1);
  margin-bottom: 40px;
  transition: all 0.3s ease;
}
.groupSections .accordion-container .accordion-item .accordion-content {
  height: 0;
  overflow: hidden;
  visibility: hidden;
  transition: all 0.6s ease;
}
@media (max-width: 768px) {
  .groupSections .accordion-container .accordion-item .accordion-content {
    height: auto;
    visibility: visible;
  }
}
.groupSections .accordion-container .accordion-item .accordion-content.active .accordion-header img {
  height: 60px;
  filter: grayscale(0);
}
.groupSections .accordion-container .accordion-item .accordion-content.active .accordion-content {
  height: 300px;
  visibility: visible;
}
@media (max-width: 768px) {
  .groupSections .accordion-container .accordion-item .accordion-content.active .accordion-content {
    height: auto;
    visibility: visible;
  }
}
.groupSections .accordion-container .accordion-item .accordion-content.active figure {
  opacity: 1;
  visibility: visible;
}

.groupSectionsNew {
  padding: 48px 0 30px;
  overflow: hidden;
}
@media (min-width: 769px) {
  .groupSectionsNew {
    padding: 0;
  }
}
@media (max-width: 768px) {
  .groupSectionsNew .container {
    padding: 0;
  }
}
.groupSectionsNew .accordion-content {
  margin-bottom: 0;
}
@media (min-width: 769px) {
  .groupSectionsNew .accordion-content {
    margin-bottom: 150px;
    padding-top: 150px;
  }
}
@media (max-width: 768px) {
  .groupSectionsNew .accordion-content:nth-child(2) {
    padding: 60px 0 0;
    margin-bottom: 60px;
    background: #f4f8f8;
  }
  .groupSectionsNew .accordion-content:nth-child(2) .groupItem {
    display: flex;
    flex-direction: column-reverse;
  }
}
.groupSectionsNew .groupItem {
  padding: 0 15px 40px 15px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 100%;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 769px) {
  .groupSectionsNew .groupItem {
    flex-direction: row;
    padding: 0 0;
  }
}
.groupSectionsNew .groupItem .groupData {
  max-width: 656px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: center;
  align-items: baseline;
}
@media (min-width: 769px) {
  .groupSectionsNew .groupItem .groupData {
    gap: 16px;
    text-align: left;
    margin-top: 0;
  }
}
.groupSectionsNew .groupItem .groupData > img {
  display: block;
  margin: 0 auto;
  max-width: 154px;
}
@media (min-width: 769px) {
  .groupSectionsNew .groupItem .groupData > img {
    margin: 0 0 16px 0;
    max-width: inherit;
  }
}
.groupSectionsNew .groupItem h3 {
  font-size: 32px;
  line-height: 40px;
  color: #15163c;
  margin: 0;
}
@media (min-width: 769px) {
  .groupSectionsNew .groupItem h3 {
    font-size: 40px;
    line-height: 50px;
  }
}
.groupSectionsNew .groupItem p {
  font-size: 16px;
  line-height: 20px;
  color: #000000;
  margin: 0;
}
@media (min-width: 769px) {
  .groupSectionsNew .groupItem p {
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 16px;
  }
}
.groupSectionsNew .groupItem figure {
  max-width: 600px;
  max-height: 515px;
  position: relative;
  margin: 0;
  right: 0;
  top: 0;
  transition: all 0.3s ease;
}
@media (max-width: 768px) {
  .groupSectionsNew .groupItem figure {
    padding: 25px;
  }
}
@media (min-width: 769px) {
  .groupSectionsNew .groupItem figure {
    min-width: 600px;
  }
}
.groupSectionsNew .groupItem figure > img {
  width: 100%;
  max-width: 600px;
  border-radius: 32px;
  -webkit-border-radius: 32px;
  -moz-border-radius: 32px;
}
.groupSectionsNew .groupItem figure span {
  opacity: 0;
}
@media (max-width: 768px) {
  .groupSectionsNew .groupItem figure span {
    display: block;
    opacity: 1;
    transform: scale(0.6);
  }
}
.groupSectionsNew .groupItem figure .step01 {
  position: absolute;
  right: 150px;
  top: -50px;
  max-width: 380px;
  transition: all 0.5s 300ms ease;
}
@media (max-width: 768px) {
  .groupSectionsNew .groupItem figure .step01 {
    top: -55px;
    right: 30px;
  }
}
.groupSectionsNew .groupItem figure .step02 {
  position: absolute;
  right: 10px;
  top: 260px;
  max-width: 250px;
  transition: all 0.5s 1200ms ease;
}
@media (max-width: 768px) {
  .groupSectionsNew .groupItem figure .step02 {
    top: 110px;
    right: -15px;
  }
}
@media (min-width: 1400px) {
  .groupSectionsNew .groupItem figure .step02 {
    right: 15px;
  }
}
.groupSectionsNew .groupItem figure .step03 {
  position: absolute;
  left: -60px;
  bottom: -75px;
  max-width: 380px;
  transition: all 0.5s 1600ms ease;
}
@media (max-width: 768px) {
  .groupSectionsNew .groupItem figure .step03 {
    left: -90px;
    bottom: -25px;
  }
}
.groupSectionsNew .groupItem figure .step04 {
  position: absolute;
  left: -95px;
  top: 100px;
  max-width: 340px;
  transition: all 0.5s 800ms ease;
}
@media (max-width: 768px) {
  .groupSectionsNew .groupItem figure .step04 {
    top: 30px;
    left: -85px;
  }
}
.groupSectionsNew .groupItem figure .step05 {
  position: absolute;
  left: -100px;
  top: -50px;
  max-width: 380px;
  transition: all 0.5s 300ms ease;
}
@media (max-width: 768px) {
  .groupSectionsNew .groupItem figure .step05 {
    top: -40px;
    left: -90px;
  }
}
.groupSectionsNew .groupItem figure .step06 {
  position: absolute;
  right: 60px;
  top: 120px;
  max-width: 250px;
  transition: all 0.5s 800ms ease;
}
@media (max-width: 768px) {
  .groupSectionsNew .groupItem figure .step06 {
    top: 40px;
    right: 0;
  }
}
@media (min-width: 1400px) {
  .groupSectionsNew .groupItem figure .step06 {
    right: 80px;
  }
}
.groupSectionsNew .groupItem figure .step07 {
  position: absolute;
  left: -95px;
  top: 290px;
  max-width: 340px;
  transition: all 0.5s 1200ms ease;
}
@media (max-width: 768px) {
  .groupSectionsNew .groupItem figure .step07 {
    left: -85px;
    top: 120px;
  }
}
.groupSectionsNew .groupItem figure .step08 {
  position: absolute;
  right: 170px;
  top: 460px;
  max-width: 250px;
  transition: all 0.5s 1600ms ease;
}
@media (max-width: 768px) {
  .groupSectionsNew .groupItem figure .step08 {
    left: 50px;
    top: 200px;
  }
}
.groupSectionsNew .groupItem figure .step09 {
  position: absolute;
  left: 80px;
  top: -80px;
  max-width: 380px;
  transition: all 0.5s 300ms ease;
}
@media (max-width: 768px) {
  .groupSectionsNew .groupItem figure .step09 {
    top: -50px;
    left: -90px;
  }
}
.groupSectionsNew .groupItem .btn {
  margin: 0 auto;
  padding: 0 24px;
  text-decoration: none;
}
@media (min-width: 769px) {
  .groupSectionsNew .groupItem .btn {
    margin: 0;
  }
}
.groupSectionsNew .active .groupItem .step01 {
  opacity: 1;
  top: -80px;
}
@media (max-width: 768px) {
  .groupSectionsNew .active .groupItem .step01 {
    top: -55px;
    right: 30px;
  }
}
.groupSectionsNew .active .groupItem .step02 {
  opacity: 1;
  top: 230px;
}
@media (max-width: 768px) {
  .groupSectionsNew .active .groupItem .step02 {
    top: 110px;
    right: -15px;
  }
}
.groupSectionsNew .active .groupItem .step03 {
  opacity: 1;
  bottom: -45px;
}
@media (max-width: 768px) {
  .groupSectionsNew .active .groupItem .step03 {
    left: -90px;
    bottom: -25px;
  }
}
.groupSectionsNew .active .groupItem .step04 {
  opacity: 1;
  top: 90px;
}
@media (max-width: 768px) {
  .groupSectionsNew .active .groupItem .step04 {
    top: 30px;
    left: -85px;
  }
}
.groupSectionsNew .active .groupItem .step05 {
  opacity: 1;
  top: -80px;
}
@media (max-width: 768px) {
  .groupSectionsNew .active .groupItem .step05 {
    top: -40px;
    left: -90px;
  }
}
.groupSectionsNew .active .groupItem .step06 {
  opacity: 1;
  top: 80px;
}
@media (max-width: 768px) {
  .groupSectionsNew .active .groupItem .step06 {
    top: 40px;
    right: 0;
  }
}
.groupSectionsNew .active .groupItem .step07 {
  opacity: 1;
  top: 260px;
}
@media (max-width: 768px) {
  .groupSectionsNew .active .groupItem .step07 {
    left: -85px;
    top: 120px;
  }
}
.groupSectionsNew .active .groupItem .step08 {
  opacity: 1;
  top: 420px;
}
@media (max-width: 768px) {
  .groupSectionsNew .active .groupItem .step08 {
    left: 50px;
    top: 200px;
  }
}
.groupSectionsNew .active .groupItem .step09 {
  opacity: 1;
  top: -100px;
}
@media (max-width: 768px) {
  .groupSectionsNew .active .groupItem .step09 {
    top: -50px;
    left: -90px;
  }
}
.groupSectionsNew .accordion-container {
  width: 100%;
  position: relative;
}
.groupSectionsNew .accordion-container .accordion-item .accordion-header {
  cursor: pointer;
}
@media (max-width: 768px) {
  .groupSectionsNew .accordion-container .accordion-item .accordion-header {
    display: none;
  }
}
.groupSectionsNew .accordion-container .accordion-item .accordion-header img {
  height: 40px;
  filter: grayscale(1);
  margin-bottom: 40px;
  transition: all 0.3s ease;
}
.groupSectionsNew .accordion-container .accordion-item .accordion-content {
  height: 0;
  overflow: hidden;
  visibility: hidden;
  transition: all 0.6s ease;
}
@media (max-width: 768px) {
  .groupSectionsNew .accordion-container .accordion-item .accordion-content {
    height: auto;
    visibility: visible;
  }
}
.groupSectionsNew .accordion-container .accordion-item.active .accordion-header img {
  height: 60px;
  filter: grayscale(0);
}
.groupSectionsNew .accordion-container .accordion-item.active .accordion-content {
  height: 300px;
  visibility: visible;
}
@media (max-width: 768px) {
  .groupSectionsNew .accordion-container .accordion-item.active .accordion-content {
    height: auto;
    visibility: visible;
  }
}
.groupSectionsNew .accordion-container .accordion-item.active figure {
  opacity: 1;
  visibility: visible;
}

.moveforward {
  padding: 48px 0;
  min-height: 400px;
  background: url("../img/ship-image.webp") no-repeat center right;
  background-size: cover;
}
@media (min-width: 769px) {
  .moveforward {
    padding: 70px;
    height: 620px;
  }
}
.moveforward .container {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: center;
  align-items: center;
  justify-content: center;
}
.moveforward h4 {
  color: #063a54;
  font-size: 24px;
  font-weight: 600;
  margin: 0;
}
@media (min-width: 769px) {
  .moveforward h4 {
    font-size: 45px;
  }
}
.moveforward p {
  margin: 0;
  font-size: 16px;
  line-height: 20px;
  color: #000;
}
@media (min-width: 769px) {
  .moveforward p {
    font-size: 24px;
    line-height: 30px;
  }
}

.ourClients {
  padding: 48px 0;
  text-align: center;
  overflow: hidden;
}
@media (min-width: 769px) {
  .ourClients {
    padding: 100px 0;
  }
}
.ourClients h5 {
  font-size: 16px;
  line-height: 20px;
  color: #603408;
  margin: 0;
  font-weight: 500;
}
.ourClients h3 {
  font-weight: 500;
  margin: 20px 0 40px 0;
  font-size: 24px;
  line-height: 30px;
  color: #000000;
}
@media (min-width: 769px) {
  .ourClients h3 {
    font-size: 40px;
    line-height: 50px;
  }
}

.client-slider .owl-stage .owl-item {
  padding: 0 10px;
  height: 92px;
  display: flex;
  align-items: center;
}
@media (min-width: 769px) {
  .client-slider .owl-stage .owl-item {
    padding: 0 20px;
  }
}
.client-slider .owl-stage .owl-item img {
  -o-object-fit: contain;
     object-fit: contain;
}

.newsArticles {
  padding: 48px 0;
}
@media (min-width: 769px) {
  .newsArticles {
    padding: 120px 0;
  }
}
.newsArticles .container {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (min-width: 769px) {
  .newsArticles .container {
    flex-direction: row;
  }
}
.newsArticles .articlesList {
  max-width: 640px;
}
.newsArticles .articlesTitle {
  overflow: hidden;
}
@media (min-width: 769px) {
  .newsArticles .articlesTitle {
    position: sticky;
    align-self: flex-start;
    top: 140px;
  }
}
.newsArticles .articlesTitle h5 {
  font-size: 16px;
  line-height: 20px;
  color: #603408;
  margin: 0;
  font-weight: 500;
}
.newsArticles .articlesTitle h3 {
  font-weight: 500;
  margin: 20px 0 40px 0;
  font-size: 32px;
  line-height: 40px;
  color: #000000;
  max-width: 505px;
}
@media (min-width: 769px) {
  .newsArticles .articlesTitle h3 {
    font-size: 40px;
    line-height: 50px;
  }
}
.newsArticles .articlesList .articleItem {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 48px;
}
.newsArticles .articlesList .articleItem:last-child {
  margin-bottom: 0;
}
@media (min-width: 769px) {
  .newsArticles .articlesList .articleItem {
    margin-bottom: 80px;
  }
}
.newsArticles .articlesList .articleItem figure {
  margin: 0;
  display: block;
  overflow: hidden;
  border-radius: 32px;
  -webkit-border-radius: 32px;
  -moz-border-radius: 32px;
}
.newsArticles .articlesList .articleItem figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.newsArticles .articlesList .articleItem h5 {
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 14px;
  line-height: 17px;
  color: #5b5b71;
  font-weight: 400;
  margin: 0;
}
.newsArticles .articlesList .articleItem h5 span {
  width: 1px;
  height: 9px;
  display: block;
  background: #5b5b71;
}
.newsArticles .articlesList .articleItem h3 {
  font-weight: 500;
  margin: 0;
  font-size: 20px;
  line-height: 24px;
  color: #000000;
}
@media (min-width: 769px) {
  .newsArticles .articlesList .articleItem h3 {
    font-size: 32px;
    line-height: 38px;
  }
}

.verticals {
  text-align: center;
  padding: 48px 0;
  background: url("../img/ship-bg.svg") no-repeat left bottom;
}
@media (max-width: 768px) {
  .verticals {
    background-size: 100%;
    padding: 48px 0 24px 0;
  }
}
.verticals.verticalsbg2 {
  background: url("../img/verticalsbg2.webp") no-repeat left bottom;
}
.verticals.verticalsbg3 {
  background: url("../img/verticalsbg3.webp") no-repeat left center;
}
@media (min-width: 769px) {
  .verticals {
    padding: 120px 0;
    text-align: left;
  }
}
.verticals .container {
  display: flex;
  gap: 20px;
  flex-direction: column;
  justify-content: space-between;
}
@media (min-width: 769px) {
  .verticals .container {
    flex-direction: row;
    gap: 178px;
  }
}
.verticals h5 {
  font-size: 20px;
  margin: 0;
  text-align: center;
  font-weight: 400;
}
@media (min-width: 769px) {
  .verticals h5 {
    text-align: left;
  }
}
@media (min-width: 769px) {
  .verticals .verticalInfo {
    min-width: 325px;
  }
}
.verticals .verticalInfo img {
  display: block;
  max-width: 165px;
  margin: 0 auto 30px auto;
}
@media (min-width: 769px) {
  .verticals .verticalInfo img {
    margin: 0 0 30px 0;
    max-width: 285px;
  }
}
.verticals .verticalDescrip p {
  font-size: 16px;
  color: #27272f;
  line-height: 20px;
  margin: 0 0 50px 0;
}
@media (min-width: 769px) {
  .verticals .verticalDescrip p {
    font-size: 24px;
    line-height: 35px;
  }
}

.highlights {
  display: flex;
  gap: 32px;
  flex-direction: column;
  justify-content: space-between;
}
@media (min-width: 769px) {
  .highlights {
    flex-direction: row;
  }
}
@media (max-width: 768px) {
  .highlights .highlightItem {
    background: #fff;
    border: 1px solid rgba(70, 70, 89, 0.08);
    box-shadow: 1px 1px 20px 1px rgba(0, 0, 0, 0.04);
    border-radius: 16px;
    padding: 12px 12px 12px 75px;
    position: relative;
    text-align: left;
  }
}
.highlights .highlightItem img {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .highlights .highlightItem img {
    position: absolute;
    left: 12px;
    width: 44px;
    top: 22px;
  }
}
.highlights .highlightItem h5 {
  margin: 20px 0 8px;
  font-weight: 600;
}
@media (max-width: 768px) {
  .highlights .highlightItem h5 {
    margin: 0 0 8px 0;
    font-size: 18px;
    text-align: left;
  }
}
.highlights .highlightItem p {
  margin: 0;
  font-size: 16px;
  line-height: 20px;
  color: #000000;
}
@media (max-width: 768px) {
  .highlights .highlightItem p {
    font-size: 14px;
  }
}

.testimonials {
  padding: 48px 0;
  overflow: hidden;
}
@media (min-width: 769px) {
  .testimonials {
    padding: 100px 0;
  }
}
.testimonials h5 {
  font-size: 16px;
  line-height: 20px;
  color: #603408;
  margin: 0;
  font-weight: 500;
}
.testimonials h3 {
  font-weight: 500;
  margin: 20px 0 40px 0;
  font-size: 32px;
  line-height: 40px;
  color: #000000;
  max-width: 335px;
}
@media (min-width: 769px) {
  .testimonials h3 {
    font-size: 40px;
    max-width: inherit;
    line-height: 50px;
  }
}
.testimonials .testilSlide .slick-list {
  overflow: inherit;
}
.testimonials .testimonialSlide {
  display: flex;
  gap: 20px;
  margin: 0;
}
@media (min-width: 769px) {
  .testimonials .testimonialSlide {
    gap: 32px;
    margin: 0 16px;
  }
}
.testimonials .testimonialSlide .user {
  width: 135px;
  height: 255px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 32px;
  -webkit-border-radius: 32px;
  -moz-border-radius: 32px;
}
@media (min-width: 769px) {
  .testimonials .testimonialSlide .user {
    width: 380px;
    height: 380px;
  }
}
.testimonials .testimonialSlide .descrip {
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  max-width: 386px;
  background: #603408;
  padding: 24px 16px;
  margin-right: 20px;
  border-radius: 32px;
  -webkit-border-radius: 32px;
  -moz-border-radius: 32px;
}
@media (min-width: 769px) {
  .testimonials .testimonialSlide .descrip {
    padding: 54px 24px;
    margin-right: 0;
  }
}
.testimonials .testimonialSlide .descrip p {
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
}
@media (min-width: 769px) {
  .testimonials .testimonialSlide .descrip p {
    font-weight: 500;
    font-size: 24px;
    line-height: 30px;
  }
}
.testimonials .testimonialSlide .descrip h5 {
  color: #fff;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
}
.testimonials .testimonialSlide .descrip h5 span {
  color: rgba(255, 255, 255, 0.5725490196);
}
@media (min-width: 769px) {
  .testimonials .testimonialSlide .descrip h5 {
    font-size: 20px;
    line-height: 30px;
  }
}
.testimonials .testilSlide {
  position: relative;
  padding-bottom: 90px;
}
@media (min-width: 769px) {
  .testimonials .testilSlide {
    padding-bottom: 100px;
  }
}
.testimonials .testilSlide .slick-list {
  overflow: inherit;
}
@media (min-width: 769px) {
  .testimonials .testilSlide .slick-list {
    overflow: inherit;
  }
}
.testimonials .testilSlide .slick-track {
  display: flex;
}
.testimonials .testilSlide .slick-prev,
.testimonials .testilSlide .slick-next {
  width: 48px;
  height: 48px;
  position: absolute;
  bottom: 0;
  right: 0;
  background: #f2f2fc url("../img/arrow_right.svg") no-repeat center center;
  border: none;
  cursor: pointer;
  text-indent: -9999px;
  border-radius: 48px;
  -webkit-border-radius: 48px;
  -moz-border-radius: 48px;
  transition: all 0.3s ease;
}
.testimonials .testilSlide .slick-prev.slick-prev,
.testimonials .testilSlide .slick-next.slick-prev {
  right: 62px;
  background: #f2f2fc url("../img/arrow_left.svg") no-repeat center center;
}
.testimonials .testilSlide .slick-prev:hover,
.testimonials .testilSlide .slick-next:hover {
  background-color: #babae6;
}
.testimonials .testilSlide .slick-prev.slick-disabled,
.testimonials .testilSlide .slick-next.slick-disabled {
  opacity: 0.5;
  pointer-events: none;
}

.exploreReach {
  position: relative;
  /* background: #151638 url("../img/discover-bg-mobile.webp") no-repeat right top; */
  /* background: #151638 url("../img/discover-bg-mobile.webp") no-repeat right top; */
  background-color: #151638;
  background-size: contain;
}

.exploreReach .container {
  padding: 113px 16px;
}

/* @media (min-width: 769px) {
  .exploreReach {
    padding: 130px 0;
    background: #151638 url("../img/contact-bg.webp") no-repeat right top;
    background-size: cover;
  }
} */

.exploreReach .exploreReachWrap {
  max-width: 600px;
}
.exploreReach h3 {
  font-weight: 500;
  margin: 0 0 25px 0;
  font-size: 32px;
  line-height: 40px;
  color: #fff;
}
@media (min-width: 769px) {
  .exploreReach h3 {
    font-size: 59px;
    line-height: 73px;
  }
}
.exploreReach p {
  font-size: 16px;
  line-height: 20px;
  color: #fff;
  margin: 0;
}
@media (min-width: 769px) {
  .exploreReach p {
    font-size: 20px;
    line-height: 24px;
  }
}
.exploreReach p strong {
  font-weight: 600;
}
@media (min-width: 769px) {
  .exploreReach p strong {
    font-size: 24px;
    line-height: 30px;
  }
}
.exploreReach .contactInfoWrap {
  max-width: 744px;
  gap: 32px;
  display: flex;
  flex-direction: column;
  margin: 30px 0;
}
@media (min-width: 769px) {
  .exploreReach .contactInfoWrap {
    flex-direction: row;
    display: flex;
  }
}
.exploreReach .contactInfoWrap .infoBlock {
  padding: 16px 70px 16px 16px;
  background: #e88f37;
  width: auto;
  max-width: 356px;
  position: relative;
  text-decoration: none;
  border-radius: 16px;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  transition: all 0.3s ease;
}
.exploreReach .contactInfoWrap .infoBlock:hover {
  background: #ba6e23;
}
.exploreReach .contactInfoWrap .infoBlock:hover img {
  transform: rotate(45deg);
}
.exploreReach .contactInfoWrap .infoBlock img {
  right: 16px;
  top: 8px;
  position: absolute;
  transition: all 0.3s ease;
}
.exploreReach .contactInfoWrap .infoBlock h5 {
  font-size: 20px;
  color: #fff;
  margin: 0 0 10px 0;
}
.exploreReach .contactInfoWrap .infoBlock p {
  font-size: 16px;
  margin: 0;
  font-weight: 600;
  color: #fff;
}
@media (min-width: 769px) {
  .exploreReach .contactInfoWrap .infoBlock p {
    font-size: 16px;
    line-height: 25px;
  }
}
.exploreReach .contactInfoWrap .infoBlock p a {
  color: #fff;
}
.exploreReach .contactButton {
  height: 50px;
  width: 193px;
  display: flex;
  font-size: 14px;
  color: #fff;
  text-decoration: none;
  align-items: center;
  justify-content: center;
  background: rgba(100, 104, 169, 0.368627451);
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  transition: all 0.3s ease;
}
.exploreReach .contactButton:hover {
  background: #6468a9;
}

footer {
  padding: 88px 0 25px;
  background: url("../img/footer-bg.svg") no-repeat right bottom;
  background-size: 90%;
  border-top: solid 1px rgba(0, 0, 0, 0.1215686275);
}
@media (min-width: 769px) {
  footer {
    padding: 100px 0 38px 0;
    background-size: inherit;
  }
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
footer .footerLogoSec {
  max-width: 635px;
  display: flex;
  gap: 16px;
  flex-direction: column;
  align-items: center;
  margin-bottom: 48px;
}
@media (min-width: 769px) {
  footer .footerLogoSec {
    gap: 30px;
    margin-bottom: 0;
    align-items: flex-start;
  }
}
@media (max-width: 768px) {
  footer .footerLogoSec {
    width: 100%;
  }
}
footer .footerLogoSec img {
  max-width: 175px;
}
@media (min-width: 769px) {
  footer .footerLogoSec img {
    max-width: inherit;
  }
}
footer .footerLogoSec p {
  font-size: 16px;
  color: #603408;
  margin: 0;
}
@media (min-width: 769px) {
  footer .footerLogoSec p {
    font-size: 24px;
  }
}
footer .footerLogoSec .footerLinks {
  display: flex;
  gap: 15px;
}
footer .footerLogoSec .footerLinks a {
  transition: all 0.3s ease;
}
footer .footerLogoSec .footerLinks a:hover {
  opacity: 0.6;
}
footer .footerMenu {
  max-width: 575px;
  width: 100%;
}
footer .footerMenu .linkMenu {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  padding-bottom: 32px;
  border-bottom: solid 1px rgba(0, 0, 0, 0.2);
  justify-content: center;
}
@media (min-width: 769px) {
  footer .footerMenu .linkMenu {
    gap: 30px;
    justify-content: flex-start;
  }
}
footer .footerMenu .linkMenu a {
  font-size: 16px;
  color: #000000;
  text-decoration: none;
  display: flex;
  width: calc(50% - 30px);
  justify-content: center;
  transition: all 0.3s ease;
}
@media (min-width: 769px) {
  footer .footerMenu .linkMenu a {
    justify-content: flex-start;
    font-size: 20px;
    width: calc(33% - 30px);
    min-width: calc(33% - 30px);
  }
}
footer .footerMenu .linkMenu a:hover {
  color: #e8a837;
}
footer .footerMenu .coBrands {
  padding-top: 40px;
  display: flex;
  gap: 30px;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  footer .footerMenu .coBrands {
    justify-content: center;
  }
}
footer .footerMenu .coBrands img {
  max-width: 144px;
  height: 30px;
  transition: all 0.3s ease;
  filter: grayscale(1);
}
@media (min-width: 769px) {
  footer .footerMenu .coBrands img {
    max-width: inherit;
    height: 32px;
  }
}
footer .footerMenu .coBrands img:hover {
  filter: grayscale(0);
}
footer .copyright {
  width: 100%;
  min-width: 100%;
  text-align: center;
  border-top: solid 1px rgba(0, 0, 0, 0.2);
  padding: 30px 40px 0 40px;
  margin-top: 40px;
  font-size: 16px;
  line-height: 24px;
  color: rgba(0, 0, 0, 0.5411764706);
}
@media (min-width: 769px) {
  footer .copyright {
    padding: 38px 0 0 0;
    margin-top: 50px;
  }
}

.aboutBanner {
  background: url("../img/about-bg.webp") no-repeat center center;
  background-size: cover;
}
@media (min-width: 769px) {
  .aboutBanner {
    background: url("../img/about-bg.webp") no-repeat right bottom;
    background-size: cover;
  }
}
.aboutBanner.bannerbg2 {
  background: url("../img/bluebird-banner.webp") no-repeat center center;
  background-size: cover;
}
.aboutBanner.bannerbg3 {
  background: url("../img/bluebird-global-banner.webp") no-repeat center center;
  background-size: cover;
}
.aboutBanner.bannerbg4 {
  background: url("../img/bluetech-banner.webp") no-repeat center center;
  background-size: cover;
}
.aboutBanner .aboutContent {
  max-height: 714px;
  display: flex;
  gap: 24px;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  padding: 120px 0 40px;
  justify-content: center;
}
@media (min-width: 769px) {
  .aboutBanner .aboutContent {
    height: 100vh;
    padding: 80px 0 0 0;
    min-height: 700px;
    gap: 25px;
  }
}
.aboutBanner .aboutContent .bannerWrap {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 20px;
  align-items: center;
  margin-bottom: 100px;
}
@media (min-width: 769px) {
  .aboutBanner .aboutContent .bannerWrap {
    gap: 18px;
    flex-direction: row;
    margin-bottom: 150px;
  }
}
.aboutBanner .aboutContent .bannerWrap .logo {
  max-width: 158px;
}
@media (min-width: 769px) {
  .aboutBanner .aboutContent .bannerWrap .logo {
    max-width: 265px;
  }
}
.aboutBanner .aboutContent .bannerWrap .line {
  height: 2px;
  width: 190px;
  margin: 0 auto 0 0;
  background: #fff;
  text-indent: -9999px;
}
@media (min-width: 769px) {
  .aboutBanner .aboutContent .bannerWrap .line {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .aboutBanner .aboutContent .bannerWrap .line {
    margin: 0 auto;
  }
}
.aboutBanner .aboutContent .bannerWrap h3 {
  font-size: 24px;
  line-height: 33px;
  color: #fff;
  margin: 0;
  text-align: center;
}
@media (min-width: 769px) {
  .aboutBanner .aboutContent .bannerWrap h3 {
    font-size: 48px;
    line-height: 64px;
    max-width: 570px;
    width: 100%;
    font-weight: 600;
    min-width: 570px;
    text-align: left;
  }
}
.aboutBanner .aboutContent .ports {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
@media (min-width: 769px) {
  .aboutBanner .aboutContent .ports {
    gap: 34px;
    justify-content: flex-start;
  }
}
.aboutBanner .aboutContent .ports label {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 16px;
  line-height: 21px;
  color: #fff;
}
@media (min-width: 769px) {
  .aboutBanner .aboutContent .ports label {
    font-size: 20px;
    line-height: 26px;
  }
}
.aboutBanner .aboutContent .ports label img {
  width: 23px;
}
@media (min-width: 769px) {
  .aboutBanner .aboutContent .ports label img {
    width: auto;
  }
}
.aboutBanner .aboutContent .btags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
@media (min-width: 769px) {
  .aboutBanner .aboutContent .btags {
    gap: 16px;
    justify-content: flex-start;
  }
}
.aboutBanner .aboutContent .btags label {
  display: flex;
  gap: 8px;
  padding: 8px 16px;
  align-items: center;
  font-size: 14px;
  line-height: 18px;
  color: #fff;
  background: rgba(226, 226, 226, 0.14);
  -webkit-backdrop-filter: blur(23.15px);
          backdrop-filter: blur(23.15px);
  border-radius: 8px;
  transition: all 0.3s ease;
}
.aboutBanner .aboutContent .btags label:hover {
  background: rgba(226, 226, 226, 0.24);
}
@media (min-width: 769px) {
  .aboutBanner .aboutContent .btags label {
    font-size: 20px;
    line-height: 26px;
    border-radius: 10px;
  }
}
.aboutBanner h5 {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  margin: 0;
  text-transform: uppercase;
  opacity: 0.8;
  text-align: center;
  width: 100%;
}
@media (min-width: 769px) {
  .aboutBanner h5 {
    text-align: left;
  }
}
.aboutBanner h2 {
  margin: 0;
  font-size: 32px;
  line-height: 40px;
  text-align: center;
  color: #fff;
  font-weight: 600;
  max-width: 925px;
}
@media (min-width: 769px) {
  .aboutBanner h2 {
    font-size: 64px;
    line-height: 80px;
    text-align: left;
  }
}
.aboutBanner p {
  font-size: 16px;
  line-height: 22px;
  color: #fff;
  max-width: 900px;
  font-weight: 400;
  margin: 0;
  text-align: center;
}
.aboutBanner p strong {
  font-weight: 500;
  font-size: 20px;
  line-height: 24px;
  margin-bottom: 15px;
  display: block;
}
@media (min-width: 769px) {
  .aboutBanner p strong {
    font-size: 24px;
    line-height: 28px;
  }
}
@media (min-width: 769px) {
  .aboutBanner p {
    font-size: 20px;
    text-align: left;
    line-height: 30px;
  }
}

.ourStory {
  padding: 50px 0;
  margin: 0;
}
@media (min-width: 769px) {
  .ourStory {
    padding: 90px 0;
  }
}
.ourStory .container {
  display: block;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 769px) {
  .ourStory .container {
    display: flex;
  }
}
.ourStory .container .ourStoryContent {
  max-width: 605px;
  gap: 30px;
}
.ourStory .container figure {
  max-width: 646px;
  margin: 0;
}
.ourStory .container figure img {
  display: block;
  max-width: 100%;
}
.ourStory .container h2 {
  margin: 0 0 30px 0;
  font-size: 24px;
  line-height: 30px;
  color: #15163c;
  font-weight: 500;
}
@media (min-width: 769px) {
  .ourStory .container h2 {
    font-size: 48px;
    line-height: 60px;
  }
}
.ourStory .container p {
  font-size: 16px;
  line-height: 20px;
  color: #000000;
}
@media (min-width: 769px) {
  .ourStory .container p {
    font-size: 20px;
    line-height: 25px;
  }
}

.missionVision {
  padding: 55px 0 0 0;
  background: #2b2b2b;
  border-bottom: solid 80px #fff;
}
@media (min-width: 769px) {
  .missionVision {
    padding: 100px 0 82px 0;
  }
}
.missionVision .container {
  display: flex;
  flex-direction: column;
  gap: 0;
  justify-content: space-between;
}
@media (min-width: 769px) {
  .missionVision .container {
    gap: 56px;
    flex-direction: row;
  }
}
.missionVision .misstioDesc {
  max-width: 590px;
  margin-bottom: 20px;
}
@media (min-width: 769px) {
  .missionVision .misstioDesc {
    margin-bottom: 20px;
  }
}
.missionVision h5 {
  font-size: 16px;
  line-height: 20px;
  margin: 0 0 20px 0;
  color: #fff;
  font-weight: 400;
  text-align: center;
}
@media (min-width: 769px) {
  .missionVision h5 {
    text-align: left;
    flex-direction: row;
    margin: 0 0 40px 0;
  }
}
.missionVision h3 {
  font-size: 32px;
  line-height: 40px;
  color: #fff;
  font-weight: 400;
  margin: 0;
  text-align: center;
}
@media (min-width: 769px) {
  .missionVision h3 {
    text-align: left;
    font-size: 48px;
    line-height: 60px;
  }
}
.missionVision .visionList {
  background: #ba6e23;
  position: relative;
  bottom: 0px;
  max-width: 638px;
  margin-bottom: -95px;
  overflow: hidden;
  border-radius: 24px;
  -webkit-border-radius: 24px;
  -moz-border-radius: 24px;
}
@media (min-width: 769px) {
  .missionVision .visionList {
    margin-bottom: -185px;
  }
}
.missionVision .visionList .listItem {
  padding: 10px 16px 28px;
  border-bottom: solid 1px rgba(0, 0, 0, 0.6117647059);
  transition: all 0.3s ease;
}
.missionVision .visionList .listItem:hover {
  background: #e88f37;
}
.missionVision .visionList .listItem:last-child {
  border: none;
}
@media (min-width: 769px) {
  .missionVision .visionList .listItem {
    padding: 24px 32px 28px;
  }
}
.missionVision .visionList p {
  font-size: 16px;
  line-height: 21px;
  color: #fff;
  font-weight: 300;
  margin: 10px 0 0 0;
}
@media (min-width: 769px) {
  .missionVision .visionList p {
    font-size: 22px;
    line-height: 27px;
    margin: 18px 0 0 0;
  }
}

.ourHistory {
  padding: 135px 0 0 0;
  position: relative;
}
.ourHistory .grayScaleOverlay {
  position: sticky;
  left: 0;
  right: 0;
  top: calc(100% - 150px);
  height: 150px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 100%);
  -webkit-backdrop-filter: grayscale(1);
          backdrop-filter: grayscale(1);
  filter: blur(1px);
  z-index: 10;
}
.ourHistory h5 {
  font-size: 16px;
  line-height: 20px;
  margin: 0 0 20px 0;
  color: rgba(0, 0, 0, 0.6980392157);
  font-weight: 400;
  text-align: center;
}
.ourHistory h3 {
  font-size: 32px;
  line-height: 40px;
  color: #603408;
  font-weight: 500;
  margin: 0 0 20px 0;
  text-align: center;
}
@media (min-width: 769px) {
  .ourHistory h3 {
    font-size: 48px;
    line-height: 60px;
  }
}
.ourHistory p {
  font-size: 16px;
  line-height: 20px;
  color: rgba(0, 0, 0, 0.6);
  margin: 0 0 0 0;
  text-align: center;
}
@media (min-width: 769px) {
  .ourHistory p {
    font-size: 20px;
    line-height: 25px;
    margin: 0 0 0 0;
  }
}
.ourHistory ul {
  list-style: none;
  margin: 0;
  padding: 50px 0 50px 0;
}
@media (min-width: 769px) {
  .ourHistory ul {
    padding: 50px 0 150px 0;
  }
}
.ourHistory ul .infoBlock {
  padding: 16px 18px;
  width: 100%;
  background: #f2f2fa;
  display: flex;
  gap: 28px;
  align-items: center;
  justify-content: space-between;
  position: relative;
  top: 25px;
  border-radius: 16px;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  transition: all 0.5s ease;
}
@media (min-width: 769px) {
  .ourHistory ul .infoBlock {
    width: 490px;
    padding: 20px 18px;
    border-radius: 24px;
    -webkit-border-radius: 24px;
    -moz-border-radius: 24px;
  }
}
@media (min-width: 1400px) {
  .ourHistory ul .infoBlock {
    width: 584px;
  }
}
.ourHistory ul .infoBlock figure {
  padding: 0;
  margin: 0;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
.ourHistory ul .infoBlock figure img {
  display: block;
  margin: 10px 0;
}
@media (max-width: 768px) {
  .ourHistory ul .infoBlock figure {
    width: 100%;
  }
  .ourHistory ul .infoBlock figure img {
    height: 32px;
    -o-object-fit: contain;
       object-fit: contain;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
  }
}
.ourHistory ul .infoBlock > div {
  margin-left: auto;
}
.ourHistory ul .infoBlock p,
.ourHistory ul .infoBlock h4 {
  margin: 0;
  text-align: right;
}
.ourHistory ul .infoBlock h4 {
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  margin: 0 0 10px 0;
  color: #603408;
}
@media (min-width: 769px) {
  .ourHistory ul .infoBlock h4 {
    font-size: 22px;
    line-height: 27px;
  }
}
.ourHistory ul .infoBlock p {
  font-size: 18px;
  line-height: 22px;
  color: rgba(0, 0, 0, 0.6980392157);
}
.ourHistory ul li {
  position: relative;
  filter: grayscale(1);
  opacity: 0.4;
  transition: all 0.3s ease;
}
.ourHistory ul li.active {
  opacity: 1;
  filter: grayscale(0);
}
.ourHistory ul li.active .infoBlock {
  top: 0;
}
.ourHistory ul li > div .infoBlock {
  margin-left: auto;
}
@media (max-width: 768px) {
  .ourHistory ul li {
    padding-bottom: 15px;
  }
  .ourHistory ul li .infoBlock {
    display: flex;
    flex-direction: column-reverse;
    gap: 12px;
    width: calc(100% - 90px);
    margin-left: auto;
    padding: 12px 12px 14px;
  }
  .ourHistory ul li .infoBlock h4,
  .ourHistory ul li .infoBlock p {
    text-align: left;
  }
  .ourHistory ul li .infoBlock h4 {
    font-size: 16px;
    line-height: 19px;
    font-weight: 600;
  }
  .ourHistory ul li .infoBlock p {
    font-size: 14px;
    line-height: 17px;
  }
}
.ourHistory ul li:first-child .year::before {
  height: 50%;
  top: 50%;
}
.ourHistory ul li:last-child .year::before {
  height: 50%;
  bottom: 50%;
}
.ourHistory ul .year {
  width: 80px;
  left: 50%;
  top: 0;
  bottom: 0;
  margin-left: -40px;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ourHistory ul .year::before {
  width: 2px;
  height: 100%;
  content: "";
  position: absolute;
  left: 50%;
  z-index: 0;
  margin-left: -1px;
  background: #603408;
}
.ourHistory ul .year span {
  padding: 8px 16px;
  font-size: 20px;
  line-height: 24px;
  color: #fff;
  font-weight: 500;
  background: #603408;
  position: relative;
  z-index: 1;
  border-radius: 40px;
  -webkit-border-radius: 40px;
  -moz-border-radius: 40px;
}
.ourHistory ul .year i {
  width: 20px;
  height: 20px;
  position: relative;
  background: #fff url("../img/dot-icon.svg") no-repeat center center;
  border-radius: 18px;
  -webkit-border-radius: 18px;
  -moz-border-radius: 18px;
}
@media (max-width: 768px) {
  .ourHistory ul .year {
    left: 35px;
  }
}
.ourHistory ul li:nth-child(2n) .infoBlock > div {
  margin-left: 0;
}
.ourHistory ul li:nth-child(2n) .infoBlock {
  margin-left: auto;
  flex-direction: row-reverse;
  justify-content: flex-end;
}
.ourHistory ul li:nth-child(2n) .infoBlock p,
.ourHistory ul li:nth-child(2n) .infoBlock h4 {
  text-align: left;
  max-width: 500px;
}
@media (max-width: 768px) {
  .ourHistory ul li:nth-child(2n) .infoBlock {
    display: flex;
    flex-direction: column-reverse;
    gap: 12px;
    padding: 12px 12px 14px;
  }
  .ourHistory ul li:nth-child(2n) .infoBlock h4,
  .ourHistory ul li:nth-child(2n) .infoBlock p {
    text-align: left;
  }
  .ourHistory ul li:nth-child(2n) .infoBlock h4 {
    font-size: 16px;
    line-height: 19px;
    font-weight: 600;
  }
  .ourHistory ul li:nth-child(2n) .infoBlock p {
    font-size: 14px;
    line-height: 17px;
  }
}

.ourTeam {
  background: #f4f8f8;
  padding: 55px 0;
}
@media (min-width: 769px) {
  .ourTeam {
    padding: 100px 0;
  }
}
.ourTeam h5 {
  font-size: 16px;
  line-height: 20px;
  margin: 0 0 40px 0;
  color: #603408;
  font-weight: 400;
  text-align: center;
}
.ourTeam h3 {
  font-size: 48px;
  line-height: 60px;
  color: #343544;
  font-weight: 500;
  margin: 0 0 20px 0;
  text-align: center;
}
.ourTeam p {
  font-size: 20px;
  line-height: 25px;
  color: rgba(0, 0, 0, 0.6980392157);
  margin: 0 auto 80px auto;
  text-align: center;
  max-width: 1112px;
}
.ourTeam figure {
  margin: 0;
  display: block;
  max-width: 400px;
  position: relative;
}
.ourTeam figure img {
  display: block;
  max-width: 100%;
  filter: grayscale(1);
  transition: all 0.3s ease;
}
.ourTeam figure a {
  position: absolute;
  left: 50%;
  bottom: -10px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%);
  transition: all 0.3s ease;
}
.ourTeam figure:hover img {
  filter: grayscale(0);
}
.ourTeam figure:hover a {
  opacity: 1;
  visibility: visible;
  bottom: 10px;
}

.ourTeam figcaption {
  font-weight: 300;
  font-size: 18px;
  line-height: 28px;
  color: rgba(0, 0, 0, 0.6980392157);
  padding: 15px 0;
}
.ourTeam figcaption span {
  color: #000000;
  display: block;
  font-weight: 500;
}
.ourTeam .teamList {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media (min-width: 769px) {
  .ourTeam .teamList {
    gap: 56px;
  }
}

.contactBanner {
  background: #141537 url("../img/contact_banner-mobile.webp") no-repeat left center;
  background-size: 90%;
}
@media (min-width: 769px) {
  .contactBanner {
    background: #141537 url("../img/contact_banner.webp") no-repeat right bottom;
    background-size: cover;
  }
}
.contactBanner .contacttContent {
  max-height: 646px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  text-align: left;
  padding-top: 120px;
  justify-content: space-between;
}
@media (min-width: 769px) {
  .contactBanner .contacttContent {
    height: 100vh;
    min-height: 600px;
    flex-direction: row;
    padding-top: 80px;
  }
}
.contactBanner .contacttContentWrap {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.contactBanner .contacttContentWrap > p {
  text-align: center;
}
@media (min-width: 769px) {
  .contactBanner .contacttContentWrap > p {
    text-align: left;
  }
}
.contactBanner h5 {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  margin: 0;
  text-transform: uppercase;
  opacity: 0.8;
}
.contactBanner h2 {
  margin: 0;
  font-size: 30px;
  line-height: 37px;
  color: #ffffff;
  font-weight: 600;
  max-width: 640px;
  text-align: center;
}
@media (min-width: 769px) {
  .contactBanner h2 {
    font-size: 64px;
    line-height: 80px;
    text-align: left;
  }
}
.contactBanner p {
  font-size: 16px;
  line-height: 20px;
  color: #fff;
  max-width: 900px;
  font-weight: 300;
  margin: 0;
}
@media (min-width: 769px) {
  .contactBanner p {
    font-size: 24px;
    line-height: 30px;
  }
}
.contactBanner .contactDetails {
  position: relative;
  bottom: 0;
  background: #603408;
  margin: 0 15px;
  width: 100%;
  max-width: 585px;
  bottom: -100px;
  padding: 0 0;
  margin-top: -85px;
  border-radius: 16px;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  overflow: hidden;
}
@media (min-width: 769px) {
  .contactBanner .contactDetails {
    bottom: -150px;
    margin: 0;
    padding: 5px 0;
    border-radius: 24px;
    -webkit-border-radius: 24px;
    -moz-border-radius: 24px;
  }
}
.contactBanner .contactDetails .contactItem {
  padding: 15px;
  display: flex;
  gap: 16px;
  justify-content: space-between;
  border-bottom: solid 1px rgba(0, 0, 0, 0.1607843137);
  transition: all 0.3s ease;
}
@media (min-width: 769px) {
  .contactBanner .contactDetails .contactItem {
    gap: 24px;
    padding: 30px;
  }
}
.contactBanner .contactDetails .contactItem figure {
  width: 35px;
  height: 35px;
  min-width: 35px;
  margin: 0;
  transition: all 0.3s ease;
}
.contactBanner .contactDetails .contactItem figure img {
  width: 100%;
  height: 100%;
}
@media (min-width: 769px) {
  .contactBanner .contactDetails .contactItem figure {
    min-width: 50px;
    width: 50px;
    height: 50px;
  }
}
.contactBanner .contactDetails .contactItem:last-child {
  border: none;
}
.contactBanner .contactDetails .contactItem:hover {
  background: #2e2f80;
}
.contactBanner .contactDetails .contactItem:hover figure {
  transform: scale(1.1);
}
.contactBanner .contactDetails .itemDetails {
  width: 100%;
  max-width: 450px;
}
.contactBanner .contactDetails .itemDetails h6 {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin: 0 0 10px 0;
}
@media (min-width: 769px) {
  .contactBanner .contactDetails .itemDetails h6 {
    font-size: 24px;
  }
}
.contactBanner .contactDetails .itemDetails p {
  margin: 0 0 10px;
  font-size: 14px;
  line-height: 20px;
  color: #fff;
}
@media (min-width: 769px) {
  .contactBanner .contactDetails .itemDetails p {
    font-size: 20px;
    line-height: 24px;
    margin: 0 0 15px;
  }
}
.contactBanner .contactDetails .itemDetails p:last-child {
  margin: 0;
}
.contactBanner .contactDetails .itemDetails p a {
  text-decoration: none;
  color: #fff;
}
.contactBanner .contactDetails .itemDetails p a:hover {
  text-decoration: underline;
}
.reachSection {
  padding: 140px 0 60px 0;
}
@media (min-width: 769px) {
  .reachSection {
    padding: 70px 0 60px 0;
  }
}
.reachSection h4 {
  font-size: 20px;
  line-height: 25px;
  color: #000000;
  max-width: 480px;
  margin: 0 0 50px 0;
  font-weight: 500;
  text-align: left;
}
@media (min-width: 769px) {
  .reachSection h4 {
    text-align: left;
    font-size: 32px;
    line-height: 40px;
    margin: 0 0 70px 0;
  }
}
.reachSection h4.subhead {
  margin-bottom: 24px;
}

.addressTab ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (max-width: 768px) {
  .addressTab ul {
    margin: 0 -15px;
  }
}
.addressTab .react-tabs__tab-list {
  display: flex;
  margin-bottom: 32px;
  justify-content: space-around;
  position: sticky;
  top: 66px;
  background: #fff;
  z-index: 5;
}
@media (min-width: 769px) {
  .addressTab .react-tabs__tab-list {
    margin-bottom: 50px;
    top: 111px;
  }
}
.addressTab .react-tabs__tab-list li {
  text-align: center;
  display: flex;
  gap: 10px;
  cursor: pointer;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.8);
  border: none;
  outline: none;
  align-items: center;
  justify-content: center;
  border-bottom: solid 1px rgba(0, 0, 0, 0.0784313725);
  transition: color 0.3s ease;
}
@media (min-width: 769px) {
  .addressTab .react-tabs__tab-list li {
    width: 33.3%;
  }
}
.addressTab .react-tabs__tab-list li a {
  cursor: pointer;
  font-size: 16px;
  color: rgba(0, 0, 0, 0.8);
  padding: 16px 10px;
  text-align: center;
  display: flex;
  justify-content: center;
  gap: 10px;
  width: 100%;
  text-decoration: none;
}
@media (min-width: 769px) {
  .addressTab .react-tabs__tab-list li a {
    padding: 24px;
    gap: 16px;
    padding: 16px;
    font-size: 26px;
  }
}
.addressTab .react-tabs__tab-list li.active {
  color: #603408;
  border-bottom: solid 3px #603408;
}
.addressTab .react-tabs__tab-list li.active a {
  color: #603408;
}
.addressTab .react-tabs__tab-list li.active img {
  display: block;
}
.addressTab .react-tabs__tab-list li img {
  width: 20px;
  display: none;
}
@media (min-width: 769px) {
  .addressTab .react-tabs__tab-list li img {
    width: 30px;
    display: block;
  }
}
.addressTab .contactInfoWrap {
  max-width: 744px;
  gap: 16px;
  display: flex;
  flex-direction: column;
  margin: 20px 0 50px;
}
@media (min-width: 769px) {
  .addressTab .contactInfoWrap {
    flex-direction: row;
    display: flex;
    gap: 32px;
    margin: 30px 0 100px;
  }
}
.addressTab .contactInfoWrap .infoBlock {
  padding: 16px 24px 16px 70px;
  background: #f4f5f9;
  width: 100%;
  max-width: 356px;
  position: relative;
  border-radius: 16px;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  transition: all 0.3s ease;
}
.addressTab .contactInfoWrap .infoBlock:hover {
  background: #e9ebf5;
}
@media (min-width: 769px) {
  .addressTab .contactInfoWrap .infoBlock {
    padding: 24px 24px 24px 80px;
  }
}
.addressTab .contactInfoWrap .infoBlock img {
  left: 17px;
  top: 16px;
  position: absolute;
}
@media (min-width: 769px) {
  .addressTab .contactInfoWrap .infoBlock img {
    left: 24px;
    top: 24px;
  }
}
.addressTab .contactInfoWrap .infoBlock h5 {
  font-size: 14px;
  color: #000;
  margin: 0 0 5px 0;
}
.addressTab .contactInfoWrap .infoBlock h5 a {
  display: block;
  color: #000;
  text-decoration: none;
}
@media (min-width: 769px) {
  .addressTab .contactInfoWrap .infoBlock h5 {
    font-size: 20px;
    margin: 0 0 10px 0;
  }
}
.addressTab .contactInfoWrap .infoBlock p {
  font-size: 14px;
  margin: 0;
  color: #000;
}
@media (min-width: 769px) {
  .addressTab .contactInfoWrap .infoBlock p {
    font-size: 16px;
  }
}
.addressTab .contactInfoWrap .infoBlock p a {
  color: #000;
  text-decoration: none;
}
.addressTab .contactInfoWrap .infoBlock p a:hover {
  text-decoration: underline;
}
.addressBoxes {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.addressBoxes .addressBox {
  padding: 12px;
  width: 100%;
  max-width: 420px;
  border: solid 1px #e7e7e7;
  border-radius: 16px;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  transition: all 0.3s ease;
}
@media (min-width: 769px) {
  .addressBoxes .addressBox {
    padding: 24px;
  }
}
.addressBoxes .addressBox img {
  transition: all 0.3s ease;
}
.addressBoxes .addressBox p {
  font-size: 14px;
  line-height: 20px;
  color: #5a5a61;
  margin: 0 0 8px 0;
  display: flex;
  gap: 8px;
}
.addressBoxes .addressBox p:last-child {
  margin: 0;
}
.addressBoxes .addressBox p a {
  color: #603408;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.addressBoxes .addressBox p a span {
  font-size: 10px;
  color: rgba(0, 0, 0, 0.4196078431);
}
.addressBoxes .addressBox .addressTop {
  display: flex;
  gap: 15px;
  justify-content: space-between;
  padding-bottom: 10px;
  border-bottom: solid 1px rgba(0, 0, 0, 0.0784313725);
  margin-bottom: 10px;
}
@media (min-width: 769px) {
  .addressBoxes .addressBox .addressTop {
    padding-bottom: 15px;
  }
}
.addressBoxes .addressBox .addressTop .addressLoc {
  max-width: 280px;
}
.addressBoxes .addressBox .addressTop h4 {
  font-size: 16px;
  line-height: 20px;
  color: #000000;
  margin: 0 0 4px 0;
  font-weight: 500;
  text-align: left;
}
@media (min-width: 769px) {
  .addressBoxes .addressBox .addressTop h4 {
    font-size: 20px;
    line-height: 25px;
  }
}
.addressBoxes .addressBox .addressTop p {
  font-size: 14px;
  color: #5a5a61;
  margin: 0;
}
.addressBoxes .addressBox .addressTop p a {
  color: #1d6aa2;
}
.addressBoxes .addressBox:hover {
  border: solid 1px #d9d9d9;
  box-shadow: 1px 1px 14px 2px rgba(0, 0, 0, 0.06);
}
.addressBoxes .addressBox:hover img {
  transform: rotate(45deg);
}

.cta {
  position: relative;
  padding: 0 0;
  overflow: hidden;
}
.cta.vbg {
  padding: 30px 16px 0;
}
@media (min-width: 769px) {
  .cta.vbg {
    padding: 75px 16px 0;
  }
}
.cta.vbg .container {
  padding: 28px 0;
  perspective: 1px;
  overflow: hidden;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  background: url("../img/parabg-2.webp") no-repeat 40% center;
  background-size: cover;
}
@media (min-width: 769px) {
  .cta.vbg .container {
    padding: 75px 0;
    min-height: 350px;
    border-radius: 36px;
    -webkit-border-radius: 36px;
    -moz-border-radius: 36px;
  }
}
.cta.vbg .para-bg {
  position: absolute;
  width: 100%;
  height: 180%;
  top: 0;
  left: 0;
  background: url("../img/parabg-2.webp") no-repeat top center;
  background-size: cover;
  z-index: -1;
}

.cta .bg {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  bottom: 0;
}
.cta h4 {
  font-size: 20px;
  line-height: 32px;
  color: #fff;
  font-weight: 400;
  margin: 0 0 20px 0;
  text-align: center;
}
.cta h4 strong {
  font-weight: 600;
}
@media (max-width: 768px) {
  .cta h4 strong {
    display: block;
  }
}
@media (min-width: 769px) {
  .cta h4 {
    font-size: 48px;
    line-height: 64px;
    margin: 0 0 24px 0;
  }
}
.cta .btn {
  background: #e88f37;
  border: #e88f37;
  color: #fff;
  font-weight: 600;
  height: 40px;
  font-size: 12px;
}
@media (min-width: 769px) {
  .cta .btn {
    height: 48px;
    font-size: 14px;
  }
}
.cta .btn:hover {
  background: #be864e;
}
.cta .container {
  position: relative;
  z-index: 1;
  justify-content: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ourServices {
  padding: 65px 0;
}
@media (min-width: 769px) {
  .ourServices {
    padding: 45px 0 85px;
  }
}
.ourServices h5 {
  font-size: 16px;
  line-height: 20px;
  color: #603408;
  margin: 0;
  font-weight: 500;
}
.ourServices h3 {
  font-weight: 500;
  margin: 20px 0 30px 0;
  font-size: 32px;
  line-height: 40px;
  color: #000000;
  max-width: 335px;
}
@media (min-width: 769px) {
  .ourServices h3 {
    font-size: 40px;
    max-width: inherit;
    line-height: 50px;
    margin: 20px 0 40px 0;
  }
}

.serviceListing {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
}
@media (min-width: 769px) {
  .serviceListing {
    gap: 55px;
    justify-content: space-between;
  }
}
@media (min-width: 769px) {
  .serviceListing li {
    width: 100%;
    max-width: 545px;
  }
}
@media (min-width: 1400px) {
  .serviceListing li {
    max-width: 625px;
  }
}
.serviceListing li figure {
  width: 100%;
  margin: 0 0 16px 0;
  height: 215px;
  overflow: hidden;
  border-radius: 16px;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
}
@media (min-width: 769px) {
  .serviceListing li figure {
    height: 360px;
    margin: 0 0 24px 0;
  }
}
.serviceListing li figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.5s ease;
}
.serviceListing li figcaption {
  font-weight: 600;
  font-size: 18px;
  color: #000000;
  line-height: 22px;
  margin: 0 0 8px 0;
}
@media (min-width: 769px) {
  .serviceListing li figcaption {
    font-size: 24px;
    line-height: 30px;
  }
}
.serviceListing li h6 {
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: #603408;
  margin: 6px 0 16px 0;
}
@media (min-width: 769px) {
  .serviceListing li h6 {
    font-size: 24px;
    line-height: 30px;
    margin: 6px 0 24px 0;
  }
}
.serviceListing li p {
  font-size: 16px;
  line-height: 20px;
  color: #000000;
}
@media (min-width: 769px) {
  .serviceListing li p {
    font-size: 20px;
    line-height: 24px;
  }
}
.serviceListing li:hover img {
  transform: scale(1.05);
}

.vericalContact {
  background: #151638 url("../img/contactBg.webp") no-repeat right top;
  background-size: 340px;
  padding: 40px 0;
}
@media (min-width: 769px) {
  .vericalContact {
    background-size: 640px;
    padding: 180px 0 80px 0;
  }
}
.vericalContact h4 {
  font-size: 32px;
  line-height: 40px;
  color: #fff;
  font-weight: 500;
  margin: 0 0 20px 0;
}
@media (min-width: 769px) {
  .vericalContact h4 {
    font-size: 48px;
    line-height: 60px;
  }
}
.vericalContact h6 {
  font-size: 20px;
  line-height: 25px;
  margin: 0 0 10px 0;
  color: #fff;
}
.vericalContact p {
  color: #fff;
  font-size: 20px;
  line-height: 25px;
}
.vericalContact .contactGridWrap {
  gap: 12px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  margin-top: 35px;
}
@media (min-width: 769px) {
  .vericalContact .contactGridWrap {
    flex-direction: row;
    gap: 24px;
  }
}
.vericalContact .contactGridWrap .contactGrid {
  padding: 22px 25px 16px 22px;
  width: 100%;
  background: #603408;
  position: relative;
  overflow: hidden;
  transition: all 0.5s ease;
  border-radius: 16px;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
}
@media (min-width: 769px) {
  .vericalContact .contactGridWrap .contactGrid {
    
    width: calc(33.3% - 16px);
  }
}
.vericalContact .contactGridWrap .contactGrid img {
  transition: all 0.5s ease;
}
.vericalContact .contactGridWrap .contactGrid:hover {
  background: #ba6e23;
}
.vericalContact .contactGridWrap .contactGrid:hover > img {
  transform: scale(1.1);
}
.vericalContact .contactGridWrap .contactGrid:has(> img) {
  display: none;
}
@media (min-width: 769px) {
  .vericalContact .contactGridWrap .contactGrid:has(> img) {
    display: block;
  }
}
.vericalContact .contactGridWrap .contImage {
  display: none;
}
@media (min-width: 769px) {
  .vericalContact .contactGridWrap .contImage {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: block;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.vericalContact .contactGridWrap .contactItem {
  position: relative;
  padding-left: 48px;
  margin-bottom: 14px;
  font-size: 16px;
  line-height: 24px;
  color: #fff;
  font-weight: 400;
}
@media (min-width: 769px) {
  .vericalContact .contactGridWrap .contactItem {
    margin-bottom: 20px;
  }
}
.vericalContact .contactGridWrap .contactItem h6 {
  font-weight: 600;
  color: #e88f37;
}
.vericalContact .contactGridWrap .contactItem img {
  position: absolute;
  left: 0;
  top: 0;
}
.vericalContact .contactGridWrap .contactItem a {
  color: #fff;
  text-decoration: none;
}
.vericalContact .contactGridWrap .contactItem a:hover {
  text-decoration: underline;
}
.vericalContact .contactGridWrap .contactItem:last-child {
  margin-bottom: 0;
}

.client-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.client-logos > div {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50%;
  height: 115px;
  border: solid 1px #bfd5e5;
  padding: 0 25px;
  margin-top: -1px;
  margin-left: -1px;
}
@media (min-width: 769px) {
  .client-logos > div {
    width: 262px;
    height: 170px;
  }
}
.client-logos > div img {
  max-width: 100%;
  transition: all 0.2s ease;
}
.client-logos > div:hover img {
  transform: scale(1.1);
}

.careerBanner {
  padding: 90px 0 35px;
  background: url("../img/ship-bg.svg") no-repeat left bottom;
  background-size: 80%;
}
@media (min-width: 769px) {
  .careerBanner {
    background-size: 750px;
    padding: 256px 0 165px;
  }
}
.careerBanner h1 {
  font-size: 30px;
  line-height: 38px;
  font-weight: 600;
  color: #000000;
  margin: 0 0 12px 0;
}
@media (min-width: 769px) {
  .careerBanner h1 {
    font-size: 64px;
    line-height: 80px;
    margin: 0 0 16px 0;
  }
}
.careerBanner p {
  font-size: 16px;
  line-height: 20px;
  color: rgba(0, 0, 0, 0.6980392157);
  margin: 0;
}
@media (min-width: 769px) {
  .careerBanner p {
    font-size: 24px;
    line-height: 30px;
  }
}

.careerImage {
  height: 235px;
}
.careerImage img {
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  max-width: 100%;
}
@media (min-width: 769px) {
  .careerImage {
    height: auto;
  }
}

.lifeatBlubird {
  padding: 50px 0;
}
@media (min-width: 769px) {
  .lifeatBlubird {
    padding: 90px 0 100px 0;
  }
}
.lifeatBlubird h2 {
  font-size: 30px;
  line-height: 37px;
  font-weight: 500;
  color: #000000;
  max-width: 840px;
  margin: 0 auto 40px;
  padding: 0 16px;
  text-align: center;
}
@media (min-width: 769px) {
  .lifeatBlubird h2 {
    font-size: 48px;
    padding: 0;
    line-height: 60px;
    margin: 0 auto 88px;
  }
}
.lifeatBlubird .blubirdLifeSlide .owl-item {
  transition: all 0.2s ease;
}
.lifeatBlubird .blubirdLifeSlide .owl-item:nth-child(2n) {
  margin-top: 0;
}
@media (min-width: 769px) {
  .lifeatBlubird .blubirdLifeSlide .owl-item:nth-child(2n) {
    margin-top: 160px;
  }
}
.lifeatBlubird .blubirdLifeSlide .owl-item:nth-child(3n) {
  margin-top: 0;
}
@media (min-width: 769px) {
  .lifeatBlubird .blubirdLifeSlide .owl-item:nth-child(3n) {
    margin-top: 80px;
  }
}
.lifeatBlubird .blubirdLifeSlide .owl-item figure {
  margin: 0;
}
.lifeatBlubird .blubirdLifeSlide .owl-item img {
  padding: 0 0;
  display: block;
  height: 180px;
  max-width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 768px) {
  .lifeatBlubird .blubirdLifeSlide .owl-item img {
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 12px;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
  }
}
@media (min-width: 769px) {
  .lifeatBlubird .blubirdLifeSlide .owl-item img {
    height: 420px;
    padding: 0 8px;
  }
}
@media (max-width: 768px) {
  .lifeatBlubird .blubirdLifeSlide .owl-stage {
    display: flex;
  }
}

.joinTeam {
  padding: 50px 0;
  background: url("../img/join-team-bg.webp") no-repeat center bottom;
  background-size: cover;
}
@media (min-width: 769px) {
  .joinTeam {
    padding: 100px 0;
  }
}
.joinTeam .innovation {
  display: flex;
  flex-direction: column;
  gap: 35px;
  margin-top: 40px;
}
@media (min-width: 769px) {
  .joinTeam .innovation {
    margin-top: 80px;
    gap: 65px;
    flex-direction: row;
  }
}
.joinTeam h3 {
  font-size: 28px;
  line-height: 60px;
  color: #ffffff;
}
@media (min-width: 769px) {
  .joinTeam h3 {
    font-size: 48px;
    line-height: 70px;
  }
}
.joinTeam .innoBlock {
  padding: 12px;
  background: rgba(106, 110, 115, 0.12);
  -webkit-backdrop-filter: blur(11.4px);
          backdrop-filter: blur(11.4px);
  border: solid 1px rgba(153, 153, 153, 0.1137254902);
  border-radius: 32px;
  -webkit-border-radius: 32px;
  -moz-border-radius: 32px;
  transition: all 0.2s ease;
}
@media (min-width: 769px) {
  .joinTeam .innoBlock {
    padding: 28px;
    border-radius: 32px;
    -webkit-border-radius: 32px;
    -moz-border-radius: 32px;
  }
}
.joinTeam .innoBlock img {
  max-width: 56px;
}
@media (min-width: 769px) {
  .joinTeam .innoBlock img {
    max-width: inherit;
  }
}
.joinTeam .innoBlock:hover {
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  border: solid 1px rgba(255, 255, 255, 0.2);
}
.joinTeam h5 {
  font-size: 20px;
  line-height: 24px;
  font-weight: 500;
  margin: 15px 0;
  color: #fff;
}
@media (min-width: 769px) {
  .joinTeam h5 {
    font-size: 24px;
    line-height: 30px;
    margin: 20px 0;
  }
}
.joinTeam h3 {
  font-size: 24px;
  line-height: 30px;
  margin: 16px 0;
  font-weight: 500;
  color: #fff;
}
.joinTeam h3 strong {
  font-weight: 600;
  display: block;
}
@media (min-width: 769px) {
  .joinTeam h3 {
    font-size: 48px;
    line-height: 70px;
  }
}
.joinTeam p {
  font-size: 14px;
  line-height: 17px;
  color: #fff;
  font-weight: 400;
  margin: 0;
}
@media (min-width: 769px) {
  .joinTeam p {
    font-size: 18px;
    line-height: 23px;
  }
}

.joinNow {
  background: #f4f8f8;
  padding: 50px 0;
}
@media (min-width: 769px) {
  .joinNow {
    padding: 100px 0;
  }
}
.joinNow h5 {
  font-size: 16px;
  text-transform: uppercase;
  color: #603408;
  font-weight: 500;
}
.joinNow h3 {
  font-size: 32px;
  color: #343544;
  line-height: 40px;
  font-weight: 500;
  margin: 24px 0 12px 0;
}
@media (min-width: 769px) {
  .joinNow h3 {
    font-size: 48px;
    margin: 40px 0 25px 0;
  }
}
.joinNow p {
  font-size: 16px;
  line-height: 20px;
  color: rgba(0, 0, 0, 0.6980392157);
  margin: 0 0 40px 0;
}
@media (min-width: 769px) {
  .joinNow p {
    font-size: 24px;
    line-height: 32px;
  }
}
.joinNow .jobListing {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
@media (min-width: 769px) {
  .joinNow .jobListing {
    gap: 24px;
  }
}
.joinNow .jobListing .jobOpenings {
  background: #ffffff;
  border: solid 1px rgba(28, 51, 84, 0.2);
  padding: 20px;
  width: 100%;
  transition: all 0.2s ease;
  border-radius: 16px;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
}
.joinNow .jobListing .jobOpenings:hover {
  border: solid 1px solid 1px rgba(28, 51, 84, 0.9);
  box-shadow: 1px 1px 14px 2px rgba(0, 0, 0, 0.06);
}
@media (min-width: 769px) {
  .joinNow .jobListing .jobOpenings {
    max-width: calc(33.3% - 16px);
  }
}
.joinNow .jobListing .jobOpenings span {
  font-size: 14px;
  display: block;
  color: rgba(0, 0, 0, 0.6980392157);
}
.joinNow .jobListing .jobOpenings h6 {
  font-size: 20px;
  color: #000000;
  margin: 12px 0;
  font-weight: 600;
}
.joinNow .jobListing .jobOpenings .applybtn {
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  color: #603408;
  gap: 4px;
  height: 34px;
  text-transform: uppercase;
}
.joinNow .jobListing .jobOpenings .applybtn img {
  transition: all 0.2s ease;
}
.joinNow .jobListing .jobOpenings .applybtn:hover img {
  transform: rotate(45deg);
}

.newsArticleBanner {
  padding: 90px 0 35px;
  background: url("../img/articklebanBg.svg") no-repeat right bottom;
  background-size: 85%;
}
@media (min-width: 769px) {
  .newsArticleBanner {
    background-size: 750px;
    padding: 256px 0 165px;
  }
}
.newsArticleBanner h1 {
  font-size: 30px;
  line-height: 38px;
  font-weight: 600;
  color: #000000;
  text-align: center;
  margin: 0 auto 12px auto;
  max-width: 1126px;
}
@media (min-width: 769px) {
  .newsArticleBanner h1 {
    font-size: 64px;
    line-height: 80px;
    margin: 0 auto 16px auto;
  }
}
.newsArticleBanner p {
  font-size: 16px;
  line-height: 20px;
  color: rgba(0, 0, 0, 0.6980392157);
  margin: 0;
}
@media (min-width: 769px) {
  .newsArticleBanner p {
    font-size: 24px;
    line-height: 30px;
  }
}

.newsArticlesList {
  padding: 50px 0;
}
.newsArticlesList .container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 769px) {
  .newsArticlesList .container {
    gap: 48px;
  }
}
.newsArticlesList .newsArticleItem {
  display: flex;
  gap: 16px;
}
@media (min-width: 769px) {
  .newsArticlesList .newsArticleItem {
    gap: 48px;
  }
}
.newsArticlesList .newsArticleItem figure {
  min-width: 120px;
  width: 120px;
  height: 100px;
  margin: 0;
  overflow: hidden;
  border-radius: 16px;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
}
@media (min-width: 769px) {
  .newsArticlesList .newsArticleItem figure {
    min-width: 284px;
    width: 284px;
    height: 205px;
  }
}
.newsArticlesList .newsArticleItem figure img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
     transition: all 0.2s ease;
}
.newsArticlesList .newsArticleItem .postDetails {
  display: flex;
  justify-content: center;
  gap: 5px;
  flex-direction: column;
}
@media (min-width: 769px) {
  .newsArticlesList .newsArticleItem .postDetails {
    gap: 20px;
  }
}
.newsArticlesList .newsArticleItem .postDetails .date {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 500;
  color: #5b5b71;
}
@media (min-width: 769px) {
  .newsArticlesList .newsArticleItem .postDetails .date {
    font-size: 16px;
  }
}
.newsArticlesList .newsArticleItem .postDetails .date span {
  width: 1px;
  height: 9px;
  background: #5b5b71;
}
.newsArticlesList .newsArticleItem .postDetails h4 {
  font-size: 16px;
  color: #000000;
  line-height: 20px;
  font-weight: 500;
  margin: 0;
  max-width: 90%;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (min-width: 769px) {
  .newsArticlesList .newsArticleItem .postDetails h4 {
    font-size: 32px;
    line-height: 39px;
  }
}
.newsArticlesList .newsArticleItem .postDetails h4 a {
  text-decoration: none;
  color: #000000;
  transition: all 0.2s ease;
}
.newsArticlesList .newsArticleItem .postDetails h4 a:hover {
  color: #603408;
}
.newsArticlesList .newsArticleItem .postDetails p {
  margin: 0;
  font-size: 14px;
  line-height: 17px;
  color: rgba(0, 0, 0, 0.6980392157);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (min-width: 769px) {
  .newsArticlesList .newsArticleItem .postDetails p {
    font-size: 20px;
    line-height: 25px;
  }
}
.newsArticlesList .newsArticleItem:hover figure img {
  transform: scale(1.1);
}

.postBanner img {
  display: block;
  width: 100%;
}

.post-content {
  padding: 50px 0;
}
.post-content .container {
  max-width: 1012px;
}
.post-content .date {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 500;
  color: #5b5b71;
}
@media (min-width: 769px) {
  .post-content .date {
    font-size: 16px;
  }
}
.post-content .date span {
  width: 1px;
  height: 9px;
  background: #5b5b71;
}
.post-content h4 {
  font-size: 16px;
  color: #000000;
  line-height: 20px;
  font-weight: 500;
  margin: 0 0 10px 0;
  max-width: 90%;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (min-width: 769px) {
  .post-content h4 {
    font-size: 32px;
    line-height: 39px;
    margin: 0 0 20px 0;
  }
}
.post-content h4 a {
  text-decoration: none;
  color: #000000;
  transition: all 0.2s ease;
}
.post-content h4 a:hover {
  color: #603408;
}
.post-content p {
  margin: 0;
  font-size: 14px;
  line-height: 20px;
  color: rgba(0, 0, 0, 0.6980392157);
}
@media (min-width: 769px) {
  .post-content p {
    font-size: 18px;
    line-height: 22px;
  }
}
.post-content h5 {
  font-size: 24px;
  color: #000000;
  margin: 0;
  font-weight: 600;
}
.post-content .postDetails {
  margin: 0 0 24px 0;
}
.post-content .post-cms {
  display: flex;
  gap: 24px;
  flex-direction: column;
}
.post-content .post-cms * {
  margin: 0;
}
.post-content .post-cms ol,
.post-content .post-cms ul {
  padding: 0;
  list-style-position: inside;
  font-size: 14px;
  line-height: 17px;
  color: rgba(0, 0, 0, 0.6980392157);
}
@media (min-width: 769px) {
  .post-content .post-cms ol,
  .post-content .post-cms ul {
    font-size: 18px;
    line-height: 24px;
  }
}
.post-content .post-cms figure {
  display: block;
}
.post-content .post-cms figure img {
  max-width: 100%;
  display: block;
}
.post-content-details {
  padding: 50px 0 0;
}
@media (min-width: 769px) {
  .post-content-details {
    padding: 150px 0 0;
  }
}

.post-content-details .postBanner {
  margin-bottom: 24px;
}
.post-content-details .postDetails .breadCrumb {
  margin-bottom: 24px;
  font-size: 14px;
  display: block;
  gap: 10px;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.6);
  max-width: 450px;
}
@media (min-width: 769px) {
  .post-content-details .postDetails .breadCrumb {
    display: flex;
    white-space: nowrap;
  }

}
.post-content-details .postDetails .breadCrumb .currentPage {
  max-width: 100%;
  display: block;
  color: rgba(0, 0, 0, 0.6);
}
@media (min-width: 769px) {
  .post-content-details .postDetails .breadCrumb .currentPage {
    white-space: nowrap;
  }
}

.post-content-details .postDetails .breadCrumb a:hover {
  text-decoration: underline;
}

.post-content-details .postDetails .breadCrumb a,
.post-content-details .postDetails .breadCrumb span {
  color: #603408;
  text-decoration: none;
}

.post-content-details .postDetails .date {
  margin-top: 24px;
}
.post-content-details .postDetails h4 {
  font-size: 26px;
  color: #000000;
  line-height: 34px;
  font-weight: 500;
  margin: 0 0 10px 0;
  max-width: 90%;
  display: block;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: visible;
}
@media (min-width: 769px) {
  .post-content-details .postDetails h4 {
    font-size: 48px;
    line-height: 58px;
    margin: 0 0 20px 0;
  }
}
.post-content-details .postDetails h4 a {
  text-decoration: none;
  color: #000000;
  transition: all 0.2s ease;
}
.post-content-details .postDetails h4 a:hover {
  color: #603408;
}
.post-content-details .n-and-a-btn {
  margin: 50px auto;
  max-width: 300px;
}

.approvalsBanner {
  background: url("../img/approvals-banner.webp") no-repeat center top;
  background-size: cover;
}
.approvalsBanner .container {
  height: 100vh;
  min-height: 400px;
  max-height: 400px;
}
@media (min-width: 769px) {
  .approvalsBanner .container {
    min-height: 600px;
    max-height: 645px;
  }
}
.approvalsBanner .bannertext {
  display: flex;
  height: 100%;
  gap: 15px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.approvalsBanner .bannertext a {
  text-decoration: none;
}
.approvalsBanner h1 {
  line-height: 37px;
  font-size: 30px;
  color: #fff;
  font-weight: 600;
  margin: 0;
  opacity: 0.8;
}
@media (min-width: 769px) {
  .approvalsBanner h1 {
    line-height: 64px;
    font-size: 72px;
  }
}
.approvalsBanner h3 {
  line-height: 30px;
  font-size: 24px;
  color: #fff;
  max-width: 1090px;
  font-weight: 500;
  margin: 0;
  opacity: 0.8;
  margin: 0;
}
@media (min-width: 769px) {
  .approvalsBanner h3 {
    line-height: 45px;
    font-size: 24px;
  }
}
.approvalsBanner p {
  font-size: 16px;
  line-height: 20px;
  color: #ffffff;
  font-weight: 300;
  margin: 0 auto;
}
@media (min-width: 769px) {
  .approvalsBanner p {
    font-size: 24px;
    line-height: 30px;
  }
}

.commonSection {
  padding: 50px 0;
}
@media (min-width: 769px) {
  .commonSection {
    padding: 100px 0;
  }
}
.commonSection h4 {
  font-size: 24px;
  line-height: 30px;
  margin: 0 0 24px 0;
  color: #000000;
  font-weight: 500;
  text-align: center;
}
@media (min-width: 769px) {
  .commonSection h4 {
    font-size: 48px;
    line-height: 60px;
    margin: 0 0 24px 0;
  }
}
.commonSection p {
  font-size: 16px;
  line-height: 20px;
  color: #000000;
  text-align: center;
}
@media (min-width: 769px) {
  .commonSection p {
    font-size: 24px;
    line-height: 30px;
  }
}
.commonSection.grayBg {
  background: #f4f8f8;
}
.commonSection.grayBg .container {
  max-width: 1000px;
}

.certificationListing {
  padding: 30px 0 0;
  display: flex;
  gap: 0px;
  flex-wrap: wrap;
  justify-content: center;
}
@media (min-width: 769px) {
  .certificationListing {
    gap: 32px;
    padding: 50px 0 0;
  }
}
.certificationListing .certifiItem {
  width: calc(50% - 16px);
  margin: 0 5px 20px;
}
@media (min-width: 769px) {
  .certificationListing .certifiItem {
    width: calc(25% - 32px);
    margin: 0 0 20px;
  }
}
.certificationListing .certifiItem figure {
  margin: 0 auto 10px;
  height: 95px;
  display: flex;
  align-items: center;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0px 1px 12px rgba(0, 0, 0, 0.06);
  padding: 10px;
  position: relative;
  justify-content: center;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  transition: all 0.2s ease;
}

@media (min-width: 769px) {
  .certificationListing .certifiItem figure {
    width: 192px;
    height: 106px;
    margin: 0 auto 20px;
    border-radius: 13px;
    -webkit-border-radius: 13px;
    -moz-border-radius: 13px;
  }
}
.certificationListing .certifiItem figure:before {
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
  z-index: 1;
  opacity: 0;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  transition: all 0.2s ease;
}

.certificationListing .certifiItem figure img {
  max-width: 100%;
  height: 85px;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  transition: all 0.2s ease;
}
.certificationListing .certifiItem figure .downlaodBtn {
  height: 36px;
  min-width: 105px;
  background: #fff;
  display: flex;
  gap: 4px;
  font-size: 12px;
  line-height: 12px;
  color: #000000;
  padding: 8px 12px;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 50%;
  top: 80%;
  opacity: 0;
  z-index: 2;
  text-decoration: none;
  transform: translate(-50%, -50%);
  border-radius: 36px;
  -webkit-border-radius: 36px;
  -moz-border-radius: 36px;
  transition: all 0.2s ease;
}
.certificationListing .certifiItem figure .downlaodBtn:hover {
  background: #ddf5ff;
}

.certificationListing .certifiItem figcaption {
  font-size: 14px;
  line-height: 16px;
  text-align: center;
}
@media (min-width: 769px) {
  .certificationListing .certifiItem figcaption {
    font-size: 20px;
    line-height: 24px;
  }
}
.certificationListing .certifiItem:hover figure {
  box-shadow: 0px 1px 12px rgba(0, 0, 0, 0.08);
  transform: scale(1.1);
}
.certificationListing .certifiItem:hover figure img {
  transform: scale(1.1);
}
.certificationListing .certifiItem:hover figure:before {
  opacity: 1;
}
.certificationListing .certifiItem:hover figure .downlaodBtn {
  opacity: 1;
  top: 50%;
}

.globeListing {
  padding: 30px 0 0;
  display: flex;
  gap: 0px;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
  justify-content: center;
}
@media (min-width: 769px) {
  .globeListing {
    gap: 32px;
    padding: 50px 0 0;
  }
}
.globeListing .certifiItem {
  width: calc(50% - 16px);
  margin: 0 auto 10px;
  text-align: center;
}
@media (min-width: 769px) {
  .globeListing .certifiItem {
    width: calc(33.3% - 32px);
    margin: 0 auto 20px;
  }
}

.globeListing .certifiItem figure {
  position: relative;
  margin: 15px;
  transform: scale(1);
  transition: all 0.2s ease;
}
@media (min-width: 769px) {
  .globeListing .certifiItem figure {
    margin: 0 auto 25px;
    max-width: 221px;
  }
}
.globeListing .certifiItem figure:before {
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
  z-index: 1;
  opacity: 0;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  transition: all 0.2s ease;
}
.globeListing .certifiItem figure .downlaodBtn {
  height: 36px;
  min-width: 105px;
  background: #fff;
  display: flex;
  gap: 4px;
  font-size: 12px;
  line-height: 12px;
  color: #000000;
  padding: 8px 12px;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 50%;
  top: 80%;
  opacity: 0;
  z-index: 2;
  text-decoration: none;
  transform: translate(-50%, -50%);
  border-radius: 36px;
  -webkit-border-radius: 36px;
  -moz-border-radius: 36px;
  transition: all 0.2s ease;
}
.globeListing .certifiItem figure .downlaodBtn:hover {
  background: #ddf5ff;
}

.globeListing .certifiItem img {
  max-width: 100%;
  height: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
     display: block;
  transition: all 0.2s ease;
}
/* @media (min-width: 769px) {
  .globeListing .certifiItem img {
    height: 135px;
  }
} */
.globeListing .certifiItem figcaption {
  font-size: 14px;
  line-height: 18px;
  text-align: center;
}
@media (min-width: 769px) {
  .globeListing .certifiItem figcaption {
    font-size: 20px;
    line-height: 24px;
  }
}
.globeListing .certifiItem:hover figure {
  transform: scale(1.1);
}
.globeListing .certifiItem:hover figure:before {
  opacity: 1;
}
.globeListing .certifiItem:hover figure .downlaodBtn {
  opacity: 1;
  top: 50%;
}

.productBanner {
  background: #151638;
}
.productBanner .container {
  min-height: 400px;
  max-width: 1112px;
  padding: 55px 16px;
}
@media (min-width: 769px) {
  .productBanner .container {
    min-height: 600px;
    padding: 95px 16px;
  }
}
.productBanner .bannertext {
  display: flex;
  height: 100%;
  gap: 15px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 50px;
}
.productBanner .bannertext a {
  text-decoration: none;
}
.productBanner h1 {
  line-height: 37px;
  font-size: 30px;
  color: rgba(211, 228, 255, 0.8);
  font-weight: 500;
  margin: 0 auto;
  max-width: 680px;
}
@media (min-width: 769px) {
  .productBanner h1 {
    line-height: 80px;
    font-size: 64px;
  }
}
.productBanner h5 {
  line-height: 22px;
  font-size: 18px;
  color: #fff;
  font-weight: 500;
  margin: 0 auto 0;
}
@media (min-width: 769px) {
  .productBanner h5 {
    line-height: 24px;
    font-size: 29px;
    margin: 0 auto 15px auto;
  }
}
.productBanner p {
  font-size: 16px;
  line-height: 20px;
  color: #ffffff;
  font-weight: 400;
  margin: 0 auto;
}
.productBanner p strong {
  display: block;
  font-weight: 700;
  margin-bottom: 5px;
}
@media (min-width: 769px) {
  .productBanner p {
    font-size: 20px;
    line-height: 24px;
  }
}

.productSection {
  padding: 55px 0;
}
@media  (max-width: 768px) {
  .productSection {
    position: relative;
    z-index: 15;
  }
  .productSection.z-index {
    z-index: 22;
  }
}
.productSection .tabs {
  display: flex;
  gap: 56px;
}
@media (max-width: 768px) {
  .productSection .tabs {
    display: block;
  }
}
.productSection .category-nav {
  width: 100%;
  margin-bottom: 50px;
}
@media (min-width: 769px) {
  .productSection .category-nav {
    max-width: 341px;
  }
}
.productSection .category-nav li {
  transition: all 0.2s ease;
  border-radius: 12px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
}
.productSection .category-nav li span {
  display: block;
  padding: 16px 12px;
  font-size: 18px;
  line-height: 21px;
  cursor: pointer;
  color: #000000;
  background: url("../img/chevron_right.svg") no-repeat 98% center;
  border-radius: 12px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
}
@media (min-width: 769px) {
  .productSection .category-nav li span {
    background: transparent;
  }
}
.productSection .category-nav li.active > span {
  background-color: rgba(42, 43, 119, 0.0784313725);
  color: #603408;
}
.productSection .category-nav .disabled {
  background: rgba(42, 43, 119, 0) url("../img/chevron_down.svg") no-repeat 98% center;
}
.productSection .category-nav .disabled:hover {
  background: rgba(42, 43, 119, 0.0784313725) url("../img/chevron_down.svg") no-repeat 98% center;
}
.productSection .category-nav .disabled.submenu-active {
  background: rgba(42, 43, 119, 0.04) url("../img/chevron_up.svg") no-repeat 98% center;
}
.productSection .category-nav ul > li:hover > span {
  color: #603408;
}
.productSection .category-nav dl {
  margin: 0 0 0 5px;
}
.productSection ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.productSection ul li {
  position: relative;
}
.productSection .sub-nav {
  display: none;
}
.productSection .sub-nav dt span {
  font-size: 16px;
  line-height: 21px;
  cursor: pointer;
  color: #000000;
}
.productSection .sub-nav dt.active {
  background: rgba(42, 43, 119, 0.0784313725);
  transition: all 0.2s ease;
  border-radius: 12px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
}
.productSection h5 {
  margin: 0;
  font-size: 16px;
  color: #666666;
  padding: 14px 12px;
  font-weight: 400;
}
.productSection .tabWrap {
  width: 100%;
}
.productSection .tabWrap > .tab {
  display: none;
}
.productSection .tabWrap > .tab .close-tab {
  display: none;
}
@media (max-width: 768px) {
  .productSection .tabWrap > .tab .close-tab {
    position: absolute;
    right: 12px;
    top: 15px;
    display: block;
    width: 30px;
    height: 30px;
    background: url("../img/close-iconm.svg") no-repeat center center;
    background-size: 100%;
    text-indent: -9999px;
    cursor: pointer;
    z-index: 11;
  }
}
.productSection .tabWrap > .tab.active {
  display: block;
}
@media (max-width: 768px) {
  .productSection .tabWrap > .tab.active {
    position: fixed;
    display: block;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    background: #fff;
    height: 100vh;
    z-index: 20;
    overflow: auto;
    padding: 5px 0 15px 0;
  }
  .productSection .tabWrap > .tab.active .tabScroll {
    height: 100vh;
    padding-right: 0;
    overflow: auto;
  }
}
.productSection .tabWrap h2 {
  font-weight: 500;
  font-size: 20px;
  line-height: 24px;
  margin: 0 0 16px 0px;
}
@media (min-width: 769px) {
  .productSection .tabWrap h2 {
    font-size: 32px;
    line-height: 40px;
  }
}
@media (max-width: 768px) {
  .productSection .tabWrap .paddWrap {
    padding: 14px 16px 0;
  }
  .productSection .tabWrap h2 {
    position: sticky;
    z-index: 10;
    background: #fff;
  }
}
.productSection .tabWrap p {
  font-size: 14px;
  line-height: 18px;
  margin: 0 0 24px 0;
}
@media (min-width: 769px) {
  .productSection .tabWrap p {
    font-size: 18px;
    line-height: 22px;
    margin: 0 0 32px 0;
  }
}
.productSection .subtab {
  display: block;
}
@media (max-width: 768px) {
  .productSection .subtab .sub-menu-nav {
    position: sticky;
    top: -5px;
    z-index: 11;
    background: #fff;
  }
}
.productSection .subtab .sub-menu-nav ul {
  border-bottom: solid 1px rgba(0, 0, 0, 0.0784313725);
  display: flex;
  margin-bottom: 32px;
}
@media (max-width: 768px) {
  .productSection .subtab .sub-menu-nav ul {
    justify-content: center;
  }
}
.productSection .subtab .sub-menu-nav ul li {
  text-align: center;
}
@media (max-width: 768px) {
  .productSection .subtab .sub-menu-nav ul li {
    width: 50%;
  }
}
.productSection .subtab .sub-menu-nav ul li span {
  display: block;
  cursor: pointer;
  padding: 18px 62px;
  font-size: 18px;
  line-height: 32px;
  color: rgba(0, 0, 0, 0.8);
  border-bottom: solid 2px transparent;
  transition: all 0.2s ease;
}
@media (max-width: 768px) {
  .productSection .subtab .sub-menu-nav ul li span {
    padding: 12px 42px;
  }
}
.productSection .subtab .sub-menu-nav ul li:hover span {
  color: #603408;
}
.productSection .subtab .sub-menu-nav ul li.active span {
  color: #603408;
  font-weight: 600;
  border-bottom: solid 2px #603408;
}
.productSection .subtab .tab {
  display: none;
}
@media (max-width: 768px) {
  .productSection .subtab .tab {
    padding: 0 16px;
  }
}
.productSection .subtab .tab.active {
  display: block;
}
.productSection .subtabBlock {
  display: none;
  padding: 0 16px;
}

.productSection .subtabBlock.active {
  display: block;
}
.productSection .serviceItem {
  display: flex;
  gap: 32px;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .productSection .serviceItem {
    gap: 16px;
    flex-direction: row-reverse;
  }
}
.productSection .serviceItem .serviceDescrip {
  width: 100%;
}

.productSection .serviceItem figure {
  margin: 0;
  width: 221px;
  min-width: 221px;
  height: 175px;
  overflow: hidden;
  border-radius: 16px;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
}
.productSection .serviceItem figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: all 0.3s ease;
}
@media (max-width: 768px) {
  .productSection .serviceItem figure {
    width: 85px;
    height: 85px;
    min-width: 85px;
    flex-direction: row-reverse;
  }
}
.productSection .serviceItem h6 {
  font-size: 24px;
  line-height: 30px;
  font-weight: 500;
  color: #000000;
  margin: 0 0 8px 0;
}
@media (max-width: 768px) {
  .productSection .serviceItem h6 {
    font-size: 16px;
  }
}
.productSection .serviceItem p {
  margin: 0 0 15px 0;
  font-size: 14px;
}
@media (min-width: 769px) {
  .productSection .serviceItem p {
    font-size: 16px;
  }
}
.productSection .serviceItem .tags {
  display: flex;
  margin: 0 0 15px 0;
  gap: 6px;
}
.productSection .serviceItem .tags li {
  font-size: 12px;
  color: #603408;
  padding: 4px 6px;
  background: #e7e9f3;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
}
.productSection .serviceItem .listStyle {
  list-style: disc inside;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  flex-direction: column;
}
.productSection .serviceItem .listStyle li {
  width: calc(50% - 12px);
}
@media (max-width: 768px) {
  .productSection .serviceItem .listStyle li {
    font-size: 14px;
    width: 100%;
  }
}
.productSection .serviceItem:hover figure img {
  transform: scale(1.1);
}
.productSection .productWrap {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: flex-start;
}
@media (max-width: 768px) {
  .productSection .productWrap {
    gap: 10px;
  }
}
.productSection .productWrap .productItem {
  gap: 32px;
  width: 100%;
  margin-bottom: 10px;
  max-width: 235px;
}
@media (min-width: 1400px) {
  .productSection .productWrap .productItem {
    max-width: 290px;
  }
}
@media (max-width: 768px) {
  .productSection .productWrap .productItem {
    width: 50%;
    max-width: calc(50% - 10px);
  }
}
.productSection .productWrap .productItem figure {
  margin: 0;
  width: 100%;
  min-width: 221px;
  overflow: hidden;
  border: solid 1px #e8e8e8;
  border-radius: 16px;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
}
.productSection .productWrap .productItem figure img {
  display: block;
  max-width: 100%;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(1.06);
  transition: all 0.2s ease;
}
@media (max-width: 768px) {
  .productSection .productWrap .productItem figure {
    width: 100%;
    min-width: 100%;
    min-width: inherit;
    flex-direction: row-reverse;
  }
}
.productSection .productWrap .productItem h6 {
  font-size: 18px;
  line-height: 24px;
  font-weight: 500;
  color: #000000;
  margin: 8px 0 8px 0;
}
@media (max-width: 768px) {
  .productSection .productWrap .productItem h6 {
    font-size: 16px;
  }
}
.productSection .productWrap .productItem .tags {
  display: flex;
  margin: 0 0 15px 0;
  gap: 6px;
  flex-wrap: wrap;
}
.productSection .productWrap .productItem .tags li {
  font-size: 12px;
  color: #603408;
  padding: 4px 6px;
  background: #e7e9f3;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
}
.productSection .productWrap .productItem:hover figure img {
  transform: scale(1.12);
}

.expertSection {
  background: url("../img/ex-sec-bg.webp") no-repeat center right;
  background-size: cover;
  padding: 55px 0;
  min-height: 590px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  text-align: center;
}
.expertSection .container {
  max-width: 1118px;
}
.expertSection h2 {
  font-size: 24px;
  line-height: 30px;
  margin: 0 0 8px 0;
  font-weight: 500;
  color: #e7f8ff;
}
@media (min-width: 769px) {
  .expertSection h2 {
    font-size: 48px;
    line-height: 54px;
    margin: 0 0 32px 0;
  }
}
.expertSection p {
  font-size: 16px;
  line-height: 22px;
  color: #ffffff;
  margin: 0 0 24px 0;
  font-weight: 400;
}
@media (min-width: 769px) {
  .expertSection p {
    font-size: 20px;
    line-height: 25px;
  }
}
.expertSection .btn {
  margin: 0 auto;
  max-width: 170px;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.1);
}

.fadeInUp {
  animation: fadeInUp 1s ease backwards;
}

.fadeInUp2 {
  animation: fadeInUp 1s 200ms ease backwards;
}

.fadeInUp3 {
  animation: fadeInUp 1s 400ms ease backwards;
}

.fadeInUp4 {
  animation: fadeInUp 1s 600ms ease backwards;
}

.fadeInUp5 {
  animation: fadeInUp 1s 650ms ease backwards;
}

.fadeInUp6 {
  animation: fadeInUp 1s 800ms ease backwards;
}

.fadeInUp7 {
  animation: fadeInUp 1s 1000ms ease backwards;
}

.lineAmin {
  animation: lineAnim 2s 600ms ease backwards;
}

.fadeInleft {
  animation: fadeInleft 1s ease backwards;
}

.fadeInleft2 {
  animation: fadeInleft 1s 200ms ease backwards;
}

.fadeInleft3 {
  animation: fadeInleft 1s 400ms ease backwards;
}

.fadeInleft4 {
  animation: fadeInleft 1s 600ms ease backwards;
}

.fadeInRight {
  animation: fadeInRight 1s ease backwards;
}

.fadeInRight2 {
  animation: fadeInRight 1s 200ms ease backwards;
}

.fadeInRight3 {
  animation: fadeInRight 1s 400ms ease backwards;
}

.fadeInRight4 {
  animation: fadeInRight 1s 600ms ease backwards;
}

.fadeInRight5 {
  animation: fadeInRight 1s 800ms ease backwards;
}

.fadeIn {
  animation: fadeIn 1s ease backwards;
}

.fadeIn2 {
  animation: fadeIn 1s 200ms ease backwards;
}

.fadeIn3 {
  animation: fadeIn 1s 400ms ease backwards;
}

.fadeIn4 {
  animation: fadeIn 1s 600ms ease backwards;
}

.fadeIn5 {
  animation: fadeIn 1s 800ms ease backwards;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeInUp {
  0% {
    transform: translate(0px, 100px);
    opacity: 0;
  }
  100% {
    transform: translate(0px, 0);
    opacity: 1;
  }
}
@keyframes lineAnim {
  0% {
    opacity: 0;
    width: 0;
    margin-right: auto;
  }
  100% {
    width: 100%;
    opacity: 1;
  }
}
@keyframes fadeInleft {
  0% {
    transform: translate(50px, 0);
    opacity: 0;
  }
  100% {
    transform: translate(0px, 0);
    opacity: 1;
  }
}
@keyframes fadeInRight {
  0% {
    transform: translate(-50px, 0);
    opacity: 0;
  }
  100% {
    transform: translate(0px, 0);
    opacity: 1;
  }
}
  .aboutSection {
    padding: 32px 0 72px 0;
  }
  @media (min-width: 769px) {
    .aboutSection {
      padding: 118px 0;
    }
  }

  .aboutTopCards {
    display: flex;
    gap: 24px;
    flex-direction: column;
    margin-bottom: 24px;
  }
  @media (min-width: 769px) {
    .aboutTopCards {
      flex-direction: row;
    }
  }
  .aboutTopCards .blueCard {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 32px;
    background: #603408;
    border-radius: 26px;
    -webkit-border-radius: 26px;
    -moz-border-radius: 26px;
    transition: all 0.3s ease;
  }
  @media (min-width: 769px) {
    .aboutTopCards .blueCard {
      justify-content: center;
    }
  }
  .aboutTopCards .blueCard:hover {
    background: #5a340e;
  }
  .aboutTopCards .blueCard h4 {
    font-size: 30px;
    font-weight: 600;
    line-height: 40px;
    margin: 0;
    color: #fff;
  }
  @media (min-width: 769px) {
    .aboutTopCards .blueCard h4 {
      font-size: 36px;
      line-height: 46px;
    }
  }
  .aboutTopCards .blueCard p {
    margin: 0;
    font-size: 16px;
    line-height: 22px;
    color: #fff;
  }
  .aboutTopCards .blueCard p strong {
    font-weight: 600;
  }

  .aboutBtmCards {
    display: flex;
    gap: 24px;
    flex-direction: column;
    margin-bottom: 24px;
  }
  @media (min-width: 769px) {
    .aboutBtmCards {
      flex-direction: row;
    }
  }

  .bbCard {
    position: relative;
    overflow: hidden;
    padding: 16px;
    border-radius: 24px;
    -webkit-border-radius: 24px;
    -moz-border-radius: 24px;
  }
  @media (min-width: 769px) {
    .bbCard {
      min-width: 421px;
    }
  }
  .bbCard .abt-card {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    display: block;
    -o-object-fit: cover;
      object-fit: cover;
    width: 100%;
    height: 100%;
    transition: all 0.3s ease;
  }
  .bbCard .bbCardInfo {
    position: relative;
    z-index: 1;
    display: flex;
    gap: 18px;
    border-radius: 24px;
    -webkit-border-radius: 24px;
    -moz-border-radius: 24px;
  }
  .bbCard .bbCardInfo .bbcblk {
    display: flex;
    width: 50%;
    gap: 10px;
    padding: 11px;
    flex-direction: column;
    background: rgba(232, 232, 232, 0.17);
    border: 1.06176px solid rgba(61, 64, 68, 0.05);
    -webkit-backdrop-filter: blur(6.96213px);
            backdrop-filter: blur(6.96213px);
    border-radius: 24px;
    -webkit-border-radius: 24px;
    -moz-border-radius: 24px;
  }
  .bbCard .bbCardInfo .bbcblk figure {
    display: block;
    margin: 15px 0 0 0;
    text-align: center;
  }
  .bbCard .bbCardInfo .bbcblk figcaption {
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    color: #ffffff;
    margin: 0 0 10px 0;
  }
  .bbCard .logo-blk {
    margin: 65px auto 35px auto;
    position: relative;
    z-index: 1;
  }
  .bbCard .logo-blk img {
    max-height: 50px;
    margin: 0 auto;
    display: block;
  }
  .bbCard .logo-blk.logo-blk2 {
    margin: 45px auto 65px auto;
  }
  .bbCard .logo-blk.logo-blk2 img {
    max-height: 70px;
  }
  .bbCard:hover .abt-card {
    transform: scale(1.1);
  }

  .contactExpCards {
    display: none;
    flex-direction: column;
    gap: 24px;
  }
  @media (min-width: 769px) {
    .contactExpCards {
      display: flex;
    }
  }
  .contactExpCards .cntactExpCardBlk {
    padding: 32px 18px;
    text-align: center;
    background: #ba6e23;
    border-radius: 24px;
    -webkit-border-radius: 24px;
    -moz-border-radius: 24px;
    transition: all 0.3s ease;
  }
  .contactExpCards .cntactExpCardBlk p {
    font-size: 16px;
    line-height: 22px;
    margin: 0 0 12px 0;
    font-weight: 500;
    color: #fff;
  }
  .contactExpCards .cntactExpCardBlk button {
    height: 44px;
    padding: 10px 15px;
    background: #ffffff;
    text-transform: uppercase;
    font-size: 14px;
    gap: 10px;
    color: #603408;
    border: none;
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    cursor: pointer;
    justify-content: center;
    border-radius: 12px;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    transition: all 0.3s ease;
  }
  .contactExpCards .cntactExpCardBlk button img {
    transition: all 0.3s ease;
    
  }
  .contactExpCards .cntactExpCardBlk button:hover {
    background: #d7d8ff;
  }
  .contactExpCards .cntactExpCardBlk button:hover img {
    transform: rotate(45deg);
  }
  .contactExpCards .cntactExpCardBlk:hover {
    background: #ac5c0e;
  }
  .contactExpCards .cntactExpCardBlk:last-child {
    background: #513c27;
    transition: all 0.3s ease;
  }
  .contactExpCards .cntactExpCardBlk:last-child button {
    color: #603408;
    background: #ffffff;
  }
  .contactExpCards .cntactExpCardBlk:last-child button:hover {
    background: #d7d8ff;
  }
  .contactExpCards .cntactExpCardBlk:last-child:hover {
    background: #241a11;
  }

  .service-scrolling {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 25px 0;
    background-color: #000;
    overflow-x: hidden;
    position: relative;
    width: 100%;
  }
  
  .service-scrolling .s-item {
    color: #fff;
    font-weight: 500;
    font-size: 18px;
    white-space: nowrap;
    display: flex;
    gap: 32px;
  }
  
  .marquee-container {
    display: flex;
    width: max-content;
    gap: 32px;
    animation: marquee 20s linear infinite;
    will-change: transform;
    padding-right: 32px;
    /* Add padding equal to gap */
  }
  
  @media (max-width: 769px) {
    .service-scrolling {
      padding: 12px 0 !important;
    }
  
    .service-scrolling .s-item {
      font-size: 12px !important;
    }
  
    .marquee-container {
      gap: 16px !important;
      padding-right: 16px;
      /* Adjust padding for mobile */
    }
  
    .marquee-container:nth-child(2) {
      top: 12px;
      /* Same as parent padding on mobile */
    }
  }
  
  @keyframes marquee {
    0% {
      transform: translate3d(0, 0, 0);
    }
  
    100% {
      transform: translate3d(calc(-100% - -100vw), 0, 0);
    }
  }
  
  
  /* For a seamless loop effect with multiple items */
  .service-scrolling:hover .marquee-container {
    animation-play-state: paused;
  }
  
/* 3d globe styles */
.globe-wrap {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

/* 3d globe styles */
.globe-wrap {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
