@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@500&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Plus Jakarta Sans", sans-serif;
}

body {
  background-color: #FCFCFD;
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

.main {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  height: 100vh;
  max-width: 100vw;
}

.main::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(20, 20, 20, 0.6), rgba(20, 20, 20, 0.4)) center/cover;
}

.carousel {
  --color-default-state: #ddd;
  --color-active-state: #1bb9ed;
  position: relative;
  width: 100vw;
  height: 100vmin;
}

.carousel_track-container {
  overflow: hidden;
  width: 100vw;
  height: 100vh;
}

.carousel_track {
  position: relative;
  width: inherit;
  height: inherit;
  margin: 0;
  padding: 0;
  list-style: none;
}

.carousel_slide,
.carousel_image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0;
  padding: 0;
}

.carousel_slide {
  text-align: center;
  transform: translateX(-100%);
  transition: transform 0.8s ease-out;
}

.carousel_slide.is-selected {
  transform: translateX(0);
}

.carousel_slide.is-selected ~ .carousel_slide {
  transform: translateX(100%);
}

.carousel_image {
  z-index: -1;
}

.carousel_image > img {
  display: block;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  object-position: center;
  border: none;
  animation: HeroBg 0.5s ease-out;
}

.carousel_title {
  font-size: 40px;
  color: #fff;
}

.carousel_btn,
.carousel_dot {
  z-index: 1;
  padding: 0;
  cursor: pointer;
  border: none;
  visibility: hidden;
}

.carousel_btn {
  position: absolute;
  top: 50%;
  background-color: transparent;
  transform: translateY(-50%);
}

.carousel_btn:focus,
.carousel_dot:focus,
.carousel_btn:active,
.carousel_dot:active {
  outline: none;
}

.carousel_btn > * {
  pointer-events: none;
}

.carousel_btn svg {
  fill: var(--color-default-state);
  transform-origin: center;
  transition: fill 0.6s;
}

.carousel_btn:hover svg {
  fill: var(--color-active-state);
}

.jsPrev {
  left: 10px;
}

.jsNext {
  right: 10px;
}

.jsPrev svg {
  transform: rotate(-90deg);
}

.jsNext svg {
  transform: rotate(90deg);
}

.carousel_nav {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
}

.carousel_dot {
  visibility: hidden;
  border-radius: 50%;
  background-color: var(--color-default-state);
  transition: background-color 0.7s;
}

.carousel_dot + .carousel_dot {
  margin-left: 20px;
}

.carousel_dot.is-selected {
  background-color: var(--color-active-state);
}

.section-1 {
  position: relative;
  height: 100vh;
}

.section-1__text-column {
  position: absolute;
  z-index: 0;
  left: 5%;
  bottom: 4rem;
  width: 50%;
}
@media (max-width: 500px) {
  .section-1__text-column {
    width: 80%;
  }
}

.section-1__container-1 {
  margin-bottom: 1.2rem;
}
.section-1__container-2 {
  margin-bottom: 2.4rem;
}
.section-1__container-3 {
  margin-bottom: 4.2rem;
}
.section-1__container-4 {
  margin-bottom: 9rem;
}

.staple {
  font-weight: 500;
  font-size: 1.8rem;
  color: #FCFCFD;
  border: solid 1px #101828;
  border-radius: 48px;
  padding: 0.8rem 1.9rem;
  width: fit-content;
  display: flex;
  align-items: center;
  justify-self: center;
}

.text-container__heading-1 {
  margin-bottom: 1.2rem;
  font-size: 5.2rem;
  width: 60vw;
  font-weight: 700;
  color: #FCFCFD;
  line-height: 5.8rem;
  animation: slide-to-left 1.2s ease-in-out;
}
@media (max-width: 700px) {
  .text-container__heading-1 {
    font-size: 3rem;
    line-height: 4rem;
  }
}

@keyframes slide-to-left {
  0% {
    transform: translateX(-140%);
  }
  85% {
    transform: translateX(5%);
  }
  100% {
    transform: translateX(0);
  }
}
.text-container__paragraph {
  font-size: 1.8rem;
  font-weight: 500;
  width: 110%;
  color: #e4e4ed;
  line-height: 2.43rem;
  animation: slide-to-left 1.2s 0.1s ease-in-out;
}
@media (max-width: 500px) {
  .text-container__paragraph {
    font-size: 1.6rem;
  }
}

.text-container__browseServicesBtn {
  appearance: none;
  font-size: 1.8rem;
  font-weight: 600;
  background-color: rgb(2, 106, 162);
  padding: 1.4rem 2rem;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  width: fit-content;
  color: white;
  font-family: "Inter", sans-serif;
  animation: slide-to-left 1.2s 0.2s ease-in-out;
}
@media (max-width: 500px) {
  .text-container__browseServicesBtn {
    font-size: 1.6rem;
  }
}
.text-container__browseServicesBtn:hover {
  cursor: pointer;
  background-color: #014970;
}

.statistics__firstGroup,
.statistics__secondGroup {
  display: flex;
  gap: 3.2rem;
}

.firstGroup__item-1 p, .firstGroup__item-2 p, .firstGroup__item-3 p, .firstGroup__item-4 p,
.secondGroup__item-1 p,
.secondGroup__item-2 p,
.secondGroup__item-3 p,
.secondGroup__item-4 p {
  color: #FCFCFD;
}
.firstGroup__item-1, .firstGroup__item-2,
.secondGroup__item-1,
.secondGroup__item-2 {
  display: flex;
  flex-direction: column;
  font-size: 3.6rem;
  font-weight: 500;
  line-height: 5.4rem;
}
.firstGroup__item-1 span, .firstGroup__item-2 span,
.secondGroup__item-1 span,
.secondGroup__item-2 span {
  font-size: 1.6rem;
  line-height: 2.4rem;
  font-weight: 500;
  color: #e4e4ed;
  width: 9rem;
}

@keyframes HeroBg {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.image-column__img1-container,
.image-column__img2-container {
  width: 100%;
  max-width: 64rem;
}

.image-column__img-1 {
  border-radius: 20px;
  width: 100%;
  height: 40rem;
  box-shadow: 0px 0px 12px 0px rgba(2, 106, 162, 0.2);
}

.image-column__img-2 {
  border-radius: 20px;
  width: 100%;
  height: 27rem;
  box-shadow: 0px 0px 12px 0px rgba(2, 106, 162, 0.2);
}

.section-1__companies-container {
  z-index: 20;
  height: 8rem;
  text-align: center;
  width: 100%;
}

.companies__heading-1-container {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translate(-50%, 0);
  animation: slide-to-up 1.2s ease-in-out;
}
@media (max-width: 660px) {
  .companies__heading-1-container {
    width: 80%;
  }
}
.companies__heading-1-container img {
  filter: brightness(100);
  margin: 0 0.5rem;
  width: 20px;
  height: 20px;
}
.companies__heading-1-container .companies__heading-1 {
  color: #FCFCFD;
  font-size: 1.6rem;
  line-height: 2.016rem;
  font-weight: 500;
  text-transform: uppercase;
  animation: scaleAnimation 0.5s ease-in-out infinite alternate-reverse;
}
@media (max-width: 660px) {
  .companies__heading-1-container .companies__heading-1 {
    font-size: 1rem;
  }
}

@keyframes slide-to-up {
  0% {
    bottom: -6rem;
  }
  85% {
    bottom: 2.5rem;
  }
  100% {
    bottom: 2rem;
  }
}
@keyframes scaleAnimation {
  from {
    transform: scale(1) translateY(1px);
  }
  to {
    transform: scale(1.01) translateY(-1px);
  }
}
.section-1__companies {
  width: 100vw;
  padding: 2% 5%;
  font-size: 2.4rem;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 20rem;
  color: white;
  background-color: rgb(2, 106, 162);
  overflow: hidden;
}
@media (max-width: 1024px) {
  .section-1__companies {
    gap: 7rem;
    padding: 7% 5%;
    font-size: 2.4rem;
  }
}

.company {
  white-space: nowrap;
  width: fit-content;
  animation: animateLogoBar 25s 0.8s linear infinite;
}
@keyframes animateLogoBar {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-1800px, 0, 0);
  }
}
@media (max-width: 613px) {
  .company {
    font-size: 1.2rem;
  }
}

.welcome {
  padding-top: 7rem;
  padding-bottom: 10rem;
  width: 100%;
}
.welcome .headingContainer {
  text-align: center;
  margin-bottom: 14rem;
}
.welcome .headingContainer .welcome__heading--sub {
  font-family: "Plus Jakarta Sans";
  font-style: normal;
  font-weight: 600;
  font-size: 2.2rem;
  letter-spacing: 0.1em;
  color: #98A2B3;
}
@media (max-width: 850px) {
  .welcome .headingContainer .welcome__heading--sub {
    font-size: 1.2rem;
  }
}
.welcome .headingContainer .welcome__heading--main {
  margin-top: 1.4rem;
  font-family: "Plus Jakarta Sans";
  font-style: normal;
  font-weight: 700;
  font-size: 3rem;
  color: #101828;
}
.welcome .headingContainer p {
  color: #0086C9;
}
@media (max-width: 850px) {
  .welcome .headingContainer {
    margin-top: 0rem;
    font-size: 1.6rem;
    padding: 1rem;
  }
  .welcome .headingContainer h1,
  .welcome .headingContainer p {
    display: inline-block;
  }
}
.welcome .welcome__contentContainer {
  padding: 0 4rem;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 850px) {
  .welcome .welcome__contentContainer {
    width: 100%;
    flex-direction: column;
    gap: 20rem;
    justify-content: center;
    padding: 1rem;
  }
}
.welcome .welcome__contentContainer .welcome__textContainer {
  margin-left: 5rem;
  width: 50%;
  height: 100%;
  font-family: "Plus Jakarta Sans";
  font-style: normal;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 150%;
  color: #475467;
}
@media (max-width: 850px) {
  .welcome .welcome__contentContainer .welcome__textContainer {
    margin-left: 0;
    width: 100%;
  }
}
@media (max-width: 630px) {
  .welcome .welcome__contentContainer .welcome__textContainer {
    line-height: 130%;
    text-align: center;
  }
}
.welcome .welcome__contentContainer .welcome__textContainer .welcome__heading--main {
  font-size: 2.6rem;
  color: #101828;
  line-height: 120%;
  margin-bottom: 3rem;
}
@media (max-width: 850px) {
  .welcome .welcome__contentContainer .welcome__textContainer .welcome__heading--main {
    font-size: 2rem;
  }
}
.welcome .welcome__contentContainer .welcome__textContainer p {
  color: #475467;
}
.welcome .welcome__contentContainer .welcome__imageContainer {
  position: relative;
  width: 35%;
}
@media (max-width: 850px) {
  .welcome .welcome__contentContainer .welcome__imageContainer {
    margin-top: 5rem;
  }
}
@media (max-width: 684px) {
  .welcome .welcome__contentContainer .welcome__imageContainer {
    width: 50%;
  }
}
.welcome .welcome__contentContainer .welcome__imageContainer .circle {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 40%;
  transform: translate(-50%, -50%);
  border-radius: 12px;
  box-shadow: 0px 3px 12px 1px rgba(0, 0, 0, 0.4);
}
.welcome .welcome__contentContainer .welcome__imageContainer .dots {
  z-index: 2;
  position: absolute;
  top: -20rem;
  right: calc(10% + 1rem);
}
.welcome .welcome__contentContainer .welcome__imageContainer .wave {
  position: absolute;
  bottom: 0rem;
  right: 0rem;
}

.heading--main {
  color: #101828;
}
@media (max-width: 470px) {
  .heading--main {
    font-size: 3.2rem;
  }
}
@media (min-width: 470px) and (max-width: 1024px) {
  .heading--main {
    font-size: 3.2rem;
  }
}
@media (min-width: 1024px) and (max-width: 1512px) {
  .heading--main {
    font-size: 4rem;
  }
}
@media (min-width: 1512px) {
  .heading--main {
    font-size: 4.8rem;
  }
}

.heading--sub {
  margin-top: 10rem;
  color: #667085;
}
@media (max-width: 470px) {
  .heading--sub {
    font-size: 1.8rem;
  }
}
@media (min-width: 470px) and (max-width: 1024px) {
  .heading--sub {
    font-size: 1.8rem;
  }
}
@media (min-width: 1024px) and (max-width: 1512px) {
  .heading--sub {
    font-size: 2.1rem;
  }
}
@media (min-width: 1512px) {
  .heading--sub {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 1512px) {
  .heading--sub {
    margin-top: 5rem;
  }
}

.aboutUs {
  display: flex;
  flex-direction: column;
}
.aboutUs .aboutUs__headingContainer {
  text-align: center;
}
.aboutUs .aboutUs__contentContainer {
  padding: 10rem 6.6%;
  display: flex;
  gap: 5rem;
}
@media screen and (max-width: 1512px) {
  .aboutUs .aboutUs__contentContainer {
    padding: 5rem 6.6%;
  }
}
@media screen and (max-width: 1100px) {
  .aboutUs .aboutUs__contentContainer {
    flex-direction: column-reverse;
    width: 100%;
  }
}
@media (max-width: 630px) {
  .aboutUs .aboutUs__contentContainer {
    padding-bottom: 0;
  }
}
.aboutUs .aboutUs__textContainer {
  font-style: normal;
  font-weight: 500;
  line-height: 3.6rem;
  color: #475467;
  width: 50%;
}
@media (max-width: 470px) {
  .aboutUs .aboutUs__textContainer {
    font-size: 1.6rem;
  }
}
@media (min-width: 470px) and (max-width: 1024px) {
  .aboutUs .aboutUs__textContainer {
    font-size: 1.6rem;
  }
}
@media (min-width: 1024px) and (max-width: 1512px) {
  .aboutUs .aboutUs__textContainer {
    font-size: 2rem;
  }
}
@media (min-width: 1512px) {
  .aboutUs .aboutUs__textContainer {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 1100px) {
  .aboutUs .aboutUs__textContainer {
    width: 100%;
  }
}
@media (max-width: 630px) {
  .aboutUs .aboutUs__textContainer {
    line-height: 2rem;
    font-size: 1.4rem;
  }
}
.aboutUs .aboutUs__imageContainer {
  position: relative;
  width: 50%;
}
.aboutUs .aboutUs__imageContainer img {
  width: 100%;
  height: 94%;
  border-radius: 20px;
  box-shadow: 0px 0px 12px 0px rgba(2, 106, 162, 0.3019607843);
  object-fit: cover;
  object-position: center;
}
@media screen and (max-width: 1100px) {
  .aboutUs .aboutUs__imageContainer {
    width: 100%;
  }
}
.aboutUs .aboutUs__cardsContainer {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  padding: 6rem 6.6%;
  margin-top: 9.5rem;
  background-color: #f2f4f7;
  gap: 5rem;
}
@media (max-width: 950px) {
  .aboutUs .aboutUs__cardsContainer {
    gap: 5rem;
  }
}
@media (max-width: 850px) {
  .aboutUs .aboutUs__cardsContainer {
    padding: 6rem 6.6%;
    flex-direction: column;
  }
}
.aboutUs .aboutUs__cardsContainer .aboutUs__cards {
  box-shadow: 0px 3px 12px 1px rgba(0, 0, 0, 0.4);
  width: 100%;
  min-height: 31.7rem;
  border-radius: 12px;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  gap: 3.3rem;
  padding: 3.4rem;
}
@media (max-width: 500px) {
  .aboutUs .aboutUs__cardsContainer .aboutUs__cards {
    padding: 1.7rem;
    gap: 1.2rem;
  }
}
.aboutUs .aboutUs__cardsContainer .aboutUs__cards img {
  width: fit-content;
}
@media (max-width: 1024px) {
  .aboutUs .aboutUs__cardsContainer .aboutUs__cards img {
    width: 8rem;
  }
}
.aboutUs .aboutUs__cardsContainer .aboutUs__cards h1 {
  font-size: 3.2rem;
}
@media (max-width: 1024px) {
  .aboutUs .aboutUs__cardsContainer .aboutUs__cards h1 {
    font-size: 2.8rem;
  }
}
@media (max-width: 500px) {
  .aboutUs .aboutUs__cardsContainer .aboutUs__cards h1 {
    font-size: 2.2rem;
  }
}
.aboutUs .aboutUs__cardsContainer .aboutUs__cards p {
  font-size: 2.4rem;
  color: #475467;
  line-height: 36px;
}
@media (max-width: 1024px) {
  .aboutUs .aboutUs__cardsContainer .aboutUs__cards p {
    font-size: 1.8rem;
    line-height: 24px;
  }
}
@media (max-width: 500px) {
  .aboutUs .aboutUs__cardsContainer .aboutUs__cards p {
    font-size: 1.4rem;
  }
}
.aboutUs .aboutUs__cardsContainer .aboutUs__cards:hover {
  box-shadow: 0px 3px 12px 3px rgba(0, 0, 0, 0.4);
}

.section-3 {
  padding: 13rem 10rem;
}

.section-3__content {
  display: flex;
  gap: 8.8rem;
}

.section-3__image-column {
  width: 50%;
  position: relative;
}

.section-3__text-column {
  width: 50%;
}

.section-3__image {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  box-shadow: 0px 3px 12px 1px rgba(0, 0, 0, 0.4);
  object-fit: cover;
  object-position: center;
}

.section-3__heading-1 {
  color: #1F1F1F;
  font-size: 4.8rem;
  font-weight: 700;
  line-height: 7.2rem;
}

.section-3__paragraph {
  color: #475467;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 3.24rem;
}

.section-3__container {
  display: flex;
  flex-direction: column;
}
.section-3__container-1 {
  gap: 4rem;
}
.section-3__container-2 {
  gap: 1.2rem;
}
.section-3__container-3 {
  gap: 4rem;
}

.section-3__service {
  padding: 1rem 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.section-3__service span:nth-child(1) {
  font-size: 2.1rem;
  font-weight: 600;
  line-height: 3.469rem;
  color: #101828;
}
.section-3__service:hover {
  cursor: pointer;
}

.section-3__service-container {
  border-bottom: #DADADA 1px solid;
  transition: 0.3s all ease-in;
}
.section-3__service-container .removable-dash {
  transition: 0.3s all ease-in;
}
.section-3__service-container .removable-content {
  display: none;
  color: #667085;
  list-style-type: none;
  padding-bottom: 1rem;
  font-size: 1.6rem;
}

.section-3__service-container--active .removable-dash--active {
  transform: rotate(90deg) translateY(-2.5rem);
}
.section-3__service-container--active .removable-content--active {
  display: block;
}

.section-3__button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: fit-content;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 2.178rem;
  background-color: rgb(2, 106, 162);
  padding: 2rem 3.2rem;
  border-radius: 3.5px;
  color: white;
  transition: all 0.2s ease-in;
}
.section-3__button:hover {
  cursor: pointer;
  background-color: #014970;
}

.Types {
  background-color: #101828;
  max-width: 100vw;
  padding: 6vh 0;
}
.Types .heading--sub {
  margin-bottom: 1.5rem;
  font-family: "Plus Jakarta Sans";
  font-style: normal;
  font-weight: 600;
  font-size: 2.2rem;
  line-height: 100%;
  text-align: center;
  letter-spacing: 0.1em;
  color: #98A2B3;
}
@media screen and (max-width: 850px) {
  .Types .heading--sub {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 550px) {
  .Types .heading--sub {
    font-size: 1.2rem;
  }
}
.Types .heading--main {
  display: flex;
  justify-content: center;
  font-family: "Plus Jakarta Sans";
  font-style: normal;
  font-weight: 700;
  font-size: 4.2rem;
  line-height: 100%;
  text-align: center;
  color: #fff;
}
@media screen and (max-width: 850px) {
  .Types .heading--main {
    font-size: 3.2rem;
  }
}
@media screen and (max-width: 550px) {
  .Types .heading--main {
    font-size: 2.2rem;
  }
}
.Types .heading--main p:nth-child(2) {
  color: #0086c9;
}
.Types .cardsContainer {
  width: 100%;
  padding: 8rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 2rem;
}
.Types .cardsContainer .card {
  position: relative;
  border-radius: 24px;
  width: 320px;
  height: 400px;
  background-color: #fff;
  overflow: hidden;
  box-shadow: 0px 3px 12px 1px rgba(0, 0, 0, 0.4);
}
.Types .cardsContainer .card .imgContainer--main {
  position: absolute;
  top: 4.5%;
  left: 50%;
  transform: translate(-50%, 0);
  width: 90%;
  height: 70%;
  border-radius: 18px;
  overflow: hidden;
}
.Types .cardsContainer .card .img--main {
  width: 100%;
  height: 100%;
  border-radius: 18px;
  object-fit: cover;
  transition: all 0.3s ease-in-out;
}
.Types .cardsContainer .card .titleContainer {
  position: absolute;
  bottom: 5%;
  left: 50%;
  transform: translate(-50%, 0);
  width: 90%;
  height: 15%;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: "Plus Jakarta Sans";
  font-style: normal;
  font-weight: 700;
  font-size: 2.2rem;
  line-height: 100%;
  color: #101828;
}
.Types .cardsContainer .card:hover .img--main {
  transform: scale(110%);
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.cf:before,
.cf:after {
  content: " ";
  /* 1 */
  display: table;
  /* 2 */
}

.cf:after {
  clear: both;
}

/**
 * For IE 6/7 only
 * Include this rule to trigger hasLayout and contain floats.
 */
.cf {
  *zoom: 1;
}

/* Generic styling */
.content * {
  position: relative;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: calc(0.98em + 0.04vw);
}

.content {
  position: relative;
  background-color: #ccc;
  min-height: 850px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  padding-left: 180px;
  padding-top: 10vh;
}
@media (max-width: 768px) {
  .content {
    height: 1600px;
  }
}

@media screen and (max-width: 767px) {
  .content {
    padding: 0vh 20px;
    padding-top: 10vh;
  }
}
ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

ul a {
  display: block;
  background: #003f61;
  border: 4px solid #fff;
  text-align: center;
  overflow: hidden;
  font-size: 0.7em;
  text-decoration: none;
  font-weight: bold;
  color: #fff;
  height: 90px;
  margin-bottom: -26px;
  box-shadow: 4px 4px 9px -4px rgba(0, 0, 0, 0.4);
  -webkit-transition: all linear 0.1s;
  -moz-transition: all linear 0.1s;
  transition: all linear 0.1s;
}

@media print {
  ul a {
    border: 4px solid #000;
  }
}
@media screen and (max-width: 767px) {
  ul a {
    font-size: 1em;
  }
}
ul a span {
  top: 50%;
  margin-top: -0.7em;
  display: block;
}

/*

 */
.administration > li > a {
  margin-bottom: 25px;
}

.director > li > a {
  width: 50%;
  margin: 0 auto 0 20%;
}

.subdirector:after {
  content: "";
  display: block;
  width: 0;
  height: 130px;
  background: #fff;
  border-left: 4px solid #fff;
  left: 45.45%;
  position: relative;
}

.chartHiddenItem {
  visibility: hidden;
}

@media print {
  .subdirector:after {
    border-left: 4px solid #000;
  }
}
.subdirector,
.departments {
  position: absolute;
  width: 100%;
}

.subdirector > li:first-child,
.departments > li:first-child {
  width: 18.5989492119%;
  height: 64px;
  margin: 0 auto 92px auto;
  padding-top: 25px;
  border-bottom: 4px solid white;
  z-index: 1;
}

@media print {
  .subdirector > li:first-child,
  .departments > li:first-child {
    border-bottom: 4px solid #000;
  }
}
.subdirector > li:first-child {
  float: right;
  right: 27.2%;
  border-left: 4px solid white;
}

@media print {
  .subdirector > li:first-child {
    border-left: 4px solid black;
  }
}
.departments > li:first-child {
  float: left;
  left: 27.2%;
  border-right: 4px solid white;
}

@media print {
  .departments > li:first-child {
    border-right: 4px solid black;
  }
}
.subdirector > li:first-child a,
.departments > li:first-child a {
  width: 100%;
}

.subdirector > li:first-child a {
  left: 25px;
}

@media screen and (max-width: 767px) {
  .subdirector > li:first-child,
  .departments > li:first-child {
    width: 40%;
  }
  .subdirector > li:first-child {
    right: 10%;
    margin-right: 2px;
  }
  .subdirector:after {
    left: 49.8%;
  }
  .departments > li:first-child {
    left: 10%;
    margin-left: 2px;
  }
}
.departments > li:first-child a {
  right: 25px;
}

.department:first-child,
.departments li:nth-child(2) {
  margin-left: 0;
  clear: left;
}

.departments:after {
  content: "";
  display: block;
  position: absolute;
  width: 60.4%;
  height: 22px;
  border-top: 4px solid #fff;
  border-right: 4px solid #fff;
  border-left: 4px solid #fff;
  margin: 0 auto;
  top: 130px;
  left: 9.1%;
}

@media print {
  .departments:after {
    border-top: 4px solid #000;
    border-right: 4px solid #000;
    border-left: 4px solid #000;
  }
}
@media screen and (max-width: 767px) {
  .departments:after {
    border-right: none;
    left: 0;
    width: 49.8%;
  }
}
@media screen and (min-width: 768px) {
  .department:first-child:before,
  .department:last-child:before {
    border: none;
  }
}
.department:before {
  content: "";
  display: block;
  position: absolute;
  width: 0;
  height: 22px;
  border-left: 4px solid white;
  z-index: 1;
  top: -22px;
  left: 50%;
  margin-left: -4px;
}

@media print {
  .department:before {
    border-left: 4px solid black;
  }
}
.department {
  border-left: 4px solid #fff;
  width: 18.5989492119%;
  float: left;
  margin-left: 1.7513134851%;
  margin-bottom: 60px;
}

@media print {
  .department {
    border-left: 4px solid #000;
  }
}
.lt-ie8 .department {
  width: 18.25%;
}

@media screen and (max-width: 767px) {
  .department {
    float: none;
    width: 100%;
    margin-left: 0;
  }
  .department:before {
    content: "";
    display: block;
    position: absolute;
    width: 0;
    height: 60px;
    border-left: 4px solid white;
    z-index: 1;
    top: -60px;
    left: 0%;
    margin-left: -4px;
  }
  .department:nth-child(2):before {
    display: none;
  }
}
.department > a {
  margin: 0 0 -26px -4px;
  z-index: 1;
}

.department > a:hover {
  height: 100px;
}

.department > ul {
  margin-top: 0px;
  margin-bottom: 0px;
}

.department li {
  padding-left: 25px;
  border-bottom: 4px solid #fff;
  height: 80px;
}

@media print {
  .department li {
    border-bottom: 4px solid #000;
  }
}
.department li a {
  background: #fff;
  top: 48px;
  position: absolute;
  z-index: 1;
  width: 90%;
  height: 60px;
  vertical-align: middle;
  right: -1px;
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIxMDAlIiB5Mj0iMTAwJSI+CiAgICA8c3RvcCBvZmZzZXQ9IjAlIiBzdG9wLWNvbG9yPSIjMDAwMDAwIiBzdG9wLW9wYWNpdHk9IjAuMjUiLz4KICAgIDxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIwIi8+CiAgPC9saW5lYXJHcmFkaWVudD4KICA8cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMSIgaGVpZ2h0PSIxIiBmaWxsPSJ1cmwoI2dyYWQtdWNnZy1nZW5lcmF0ZWQpIiAvPgo8L3N2Zz4=);
  background-image: -moz-linear-gradient(-45deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0) 100%) !important;
  background-image: -webkit-gradient(linear, left top, right bottom, color-stop(0%, rgba(0, 0, 0, 0.25)), color-stop(100%, rgba(0, 0, 0, 0))) !important;
  background-image: -webkit-linear-gradient(-45deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0) 100%) !important;
  background-image: -o-linear-gradient(-45deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0) 100%) !important;
  background-image: -ms-linear-gradient(-45deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0) 100%) !important;
  background-image: linear-gradient(135deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0) 100%) !important;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#40000000", endColorstr="#00000000", GradientType=1);
}

.department li a:hover {
  box-shadow: 8px 8px 9px -4px rgba(0, 0, 0, 0.1);
  height: 80px;
  width: 95%;
  top: 39px;
  background-image: none !important;
}

/* Department/ section colors */
.department.dep-a a {
  background: #014163;
}

.department.dep-b a {
  background: #014163;
}

.department.dep-c a {
  background: #014163;
}

.department.dep-d a {
  background: #014163;
}

.department.dep-e a {
  background: #014163;
}

.sections a:first-of-type {
  background: #0283c8;
}

.sections {
  position: relative;
}

.exceptionUl {
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(100%, 0%);
  width: 100%;
}

@media screen and (max-width: 767px) {
  .exceptionHalfWidth ul {
    width: 60%;
    font-size: 0.7rem;
  }
}

@media (max-width: 1350px) {
  .section-3,
  .section-4 {
    padding: 5rem 6.6%;
  }
  .section-3__heading-1,
  .section-4__heading-1 {
    font-size: 4.2rem;
  }
  .section-3__paragraph {
    font-size: 2.2rem;
  }
  .section-3__service span:nth-child(1) {
    font-size: 1.8rem;
  }
  .section-3__content,
  .section-4__content {
    gap: 5rem;
  }
}
@media (max-width: 950px) {
  .section-3__heading-1 {
    font-size: 3.6rem;
    line-height: 4rem;
  }
  .section-3__paragraph {
    font-size: 2rem;
    line-height: 2.4rem;
  }
  .section-3__container-1 {
    gap: 1.5rem;
  }
  .aboutUs__cardsContainer {
    gap: 5rem;
  }
}
@media (max-width: 850px) {
  .section-3__content {
    flex-direction: column;
    gap: 2rem;
  }
  .section-3__image-column {
    width: 100%;
    height: 30rem;
  }
  .section-3__text-column {
    width: 100%;
  }
  .aboutUs__cards {
    width: 100%;
  }
}
@media (max-width: 430px) {
  .section-3__image-column {
    height: 20rem;
  }
  .section-3__heading-1 {
    font-size: 3rem;
  }
  .section-3__paragraph {
    font-size: 1.8rem;
  }
  .section-3__service span:nth-child(1) {
    font-size: 1.4rem;
  }
  .section-4__gallery-wrapper {
    gap: 2.5rem;
    scroll-snap-type: x mandatory;
  }
  .gallery-card {
    scroll-snap-align: start;
  }
  .gallery__img {
    width: 86.8vw;
  }
  .gallery__image-container {
    width: 86.8vw;
  }
}
.contactUs-strip {
  position: relative;
  padding: 2%;
  background: linear-gradient(45deg, #0086C9 -50%, #B9E6FE 30%, #0086C9 150%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 2;
  overflow-y: hidden;
}
@media (max-width: 600px) {
  .contactUs-strip {
    padding: 10% 5%;
  }
}
.contactUs-strip h1 {
  color: white;
  font-size: 3.2rem;
}
.contactUs-strip h1 span {
  color: rgb(2, 106, 162);
}
@media (max-width: 1024px) {
  .contactUs-strip h1 {
    font-size: 2.4rem;
  }
}
.contactUs-strip a {
  white-space: nowrap;
  text-decoration: none;
  padding: 1% 3%;
  color: #0086C9;
  font-size: 2.4rem;
  background-color: white;
  background-origin: padding-box;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  transition: all 0.2s;
}
@media (max-width: 1024px) {
  .contactUs-strip a {
    font-size: 1.6rem;
  }
}
@media (max-width: 500px) {
  .contactUs-strip a {
    font-size: 1.3rem;
    gap: 0.5rem;
    padding: 5% 7%;
  }
}
.contactUs-strip a svg {
  width: 2rem;
}
@media (max-width: 500px) {
  .contactUs-strip a svg {
    width: 1rem;
  }
}
.contactUs-strip a:hover {
  color: white;
  background-color: rgb(2, 106, 162);
}
.contactUs-strip a:hover path {
  fill: white;
}

.blue-dots {
  width: 25rem;
  position: absolute;
  left: 0;
  top: -30px;
  z-index: -1;
}

.white-dots {
  width: 25rem;
  position: absolute;
  right: 0;
  bottom: -30px;
  z-index: -1;
}

@media (max-width: 1024px) {
  .white-dots,
  .blue-dots {
    width: 15rem;
  }
  .blue-dots {
    top: -20px;
  }
  .white-dots {
    bottom: -20px;
  }
}
@media (max-width: 500px) {
  .white-dots,
  .blue-dots {
    width: 10rem;
  }
  .blue-dots {
    top: -15px;
  }
  .white-dots {
    bottom: -15px;
  }
}

/*# sourceMappingURL=style.css.map */
