*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 100%;
  scroll-behavior: smooth;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #1f1f1f;
  max-width: 3200px;
  margin: 0 auto;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 15px;
}
@media (min-width: 768px) {
  .container {
    padding-inline: 32px;
  }
}

body {
  font-family: "Lexend", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #fff;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
}

.site-header {
  padding: 12px 0;
  border-bottom: 3px solid #99CCCD;
}
.site-header .site-header_inner {
  display: flex;
  justify-content: center;
  align-items: center;
}
.site-header .site-header_inner a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.site-header .site-header_inner a img {
  width: 164px;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.site-footer {
  padding: 50px 14px 30px;
  background-color: #000000;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
@media (min-width: 768px) {
  .site-footer {
    padding: 50px 0 30px;
  }
}
.site-footer .site-footer_inner {
  display: grid;
  grid-template-columns: 120px auto;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  width: 100%;
}
@media (min-width: 390px) {
  .site-footer .site-footer_inner {
    grid-template-columns: 141px auto;
  }
}
@media (min-width: 430px) {
  .site-footer .site-footer_inner {
    justify-content: center;
    gap: 50px;
  }
}
@media (min-width: 768px) {
  .site-footer .site-footer_inner {
    grid-template-columns: 164px auto;
    gap: 100px;
  }
}
.site-footer .site-footer_inner a {
  display: block;
  width: 100%;
  height: 100%;
}
.site-footer .site-footer_inner a img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.site-footer .site-footer_inner .social-links h2 {
  color: #fff;
  font-family: Lexend;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 25px;
  margin-bottom: 10px;
}
.site-footer .site-footer_inner .social-links .social-links_inner {
  display: flex;
  align-items: center;
  gap: 18px;
}
.site-footer .site-footer_inner .social-links .social-links_inner a {
  display: block;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.site-footer .site-footer_inner .social-links .social-links_inner a img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.site-footer p {
  color: #727272;
  font-family: Lexend;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 18px;
}

.btn {
  display: inline-block;
  padding: 8px 32px;
  cursor: pointer;
  border: none;
  transition: opacity 0.2s ease;
}
.btn:hover {
  opacity: 0.85;
}
.btn--primary {
  background-color: #000000;
  color: #ffffff;
}
.btn--secondary {
  background-color: transparent;
  color: #000000;
  border: 2px solid #000000;
}

.nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 16px;
}
.nav__link {
  font-weight: 500;
  transition: color 0.2s ease;
}
.nav__link:hover {
  color: #ff0000;
}

p {
  margin-bottom: 10px;
}
p:last-child {
  margin-bottom: 0;
}

.hero {
  position: relative;
  height: 420px;
}
@media (min-width: 768px) {
  .hero {
    height: 520px;
  }
}
.hero video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero::after {
  content: "";
  height: 64px;
  width: 100%;
  position: absolute;
  background-image: url("../assets/images/gold-line-top-mobile.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  bottom: 0;
  transform: translateY(40px);
  z-index: 1;
}
@media (min-width: 768px) {
  .hero::after {
    background-image: url("../assets/images/gold-line-top.svg");
    transform: translateY(70px);
    height: 100px;
  }
}

.what-we-do {
  padding: 70px 0 120px;
  background-image: url("../assets/images/what-we-do-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  margin-top: -2px;
}
.what-we-do::after {
  content: "";
  height: 64px;
  width: 100%;
  position: absolute;
  background-image: url("../assets/images/gold-line-top-mobile.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  bottom: 40px;
  scale: -1;
  z-index: 1;
}
@media (min-width: 768px) {
  .what-we-do::after {
    background-image: url("../assets/images/gold-line-top.svg");
    transform: translateY(-30px);
    bottom: 0;
    height: 100px;
  }
}
@media (min-width: 768px) {
  .what-we-do {
    padding: 110px 0;
  }
}
@media (min-width: 1212px) {
  .what-we-do {
    padding: 130px 0;
  }
}
.what-we-do .what-we-do_inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
@media (min-width: 768px) {
  .what-we-do .what-we-do_inner {
    grid-template-columns: 146px 1fr;
    align-items: center;
    gap: 40px;
  }
}
@media (min-width: 1212px) {
  .what-we-do .what-we-do_inner {
    padding: 0 183px;
  }
}
.what-we-do .what-we-do_inner h2 {
  color: #fff;
  font-family: "Science Gothic";
  font-size: 40px;
  font-style: normal;
  font-weight: 500;
  line-height: 52px; /* 50.975px */
}
.what-we-do .what-we-do_inner p {
  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 24px;
}

.gallery-section {
  padding: 0 0 40px;
  z-index: 2;
  position: relative;
}
@media (min-width: 768px) {
  .gallery-section {
    padding: 40px 0 60px;
    z-index: 0;
  }
}
.gallery-section .gallery-section_inner {
  display: flex;
  gap: 15px;
  margin-top: -65px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding-left: 15px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  margin-left: -15px;
  margin-right: -15px;
  padding-left: 15px;
}
.gallery-section .gallery-section_inner::-webkit-scrollbar {
  display: none;
}
.gallery-section .gallery-section_inner .gallery-section_items:last-child {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .gallery-section .gallery-section_inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 0;
    overflow-x: unset;
    scroll-snap-type: unset;
    scroll-padding-left: unset;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
  }
  .gallery-section .gallery-section_inner .gallery-section_items:last-child {
    margin-right: 0;
  }
}
.gallery-section .gallery-section_items {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  transition: transform 0.3s ease;
  cursor: pointer;
  flex: 0 0 85%;
  scroll-snap-align: start;
}
@media (min-width: 768px) {
  .gallery-section .gallery-section_items {
    flex: unset;
    scroll-snap-align: unset;
  }
}
.gallery-section .gallery-section_items img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  animation: gallery-dissolve 12s ease-in-out infinite backwards;
}
.gallery-section .gallery-section_items img:nth-child(1) {
  animation-delay: 0s;
}
.gallery-section .gallery-section_items img:nth-child(2) {
  animation-delay: 3s;
}
.gallery-section .gallery-section_items img:nth-child(3) {
  animation-delay: 6s;
}
.gallery-section .gallery-section_items img:nth-child(4) {
  animation-delay: 9s;
}
@media (hover: hover) {
  .gallery-section .gallery-section_items:hover {
    transform: scale(1.05);
  }
}

.who-we-are {
  padding: 50px 0 60px;
  background-image: url("../assets/images/who-we-are-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
  position: relative;
}
.who-we-are::before {
  content: "";
  height: 102px;
  width: 100%;
  position: absolute;
  background-image: url("../assets/images/blue-line-mobile.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  top: -65px;
}
@media (min-width: 768px) {
  .who-we-are::before {
    background-image: url("../assets/images/blue-line-tablet.svg");
    transform: translateY(-30px);
    height: 162px;
  }
}
@media (min-width: 1024px) {
  .who-we-are::before {
    background-image: url("../assets/images/blue-line.svg");
  }
}
@media (min-width: 1212px) {
  .who-we-are::before {
    transform: translateY(-70px);
  }
}
@media (min-width: 768px) {
  .who-we-are {
    padding: 80px 0;
  }
}
.who-we-are .who-we-are_inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}
@media (min-width: 768px) {
  .who-we-are .who-we-are_inner {
    grid-template-columns: 374px 1fr;
    align-items: center;
    gap: 29px;
  }
}
@media (min-width: 1212px) {
  .who-we-are .who-we-are_inner {
    max-width: 843px;
    margin-inline: auto;
  }
}
.who-we-are .who-we-are_inner .heading-image {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.who-we-are .who-we-are_inner .heading-image h2 {
  color: #fff;
  font-family: "Science Gothic";
  font-size: 40px;
  font-style: normal;
  font-weight: 500;
  line-height: 52px; /* 50.975px */
}
.who-we-are .who-we-are_inner .heading-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.who-we-are .who-we-are_inner p {
  color: #fff;
  font-size: 20px;
  font-style: normal;
  font-weight: 300;
  line-height: 25px;
}
.who-we-are::after {
  content: "";
  display: none;
  position: absolute;
}
@media (min-width: 1024px) {
  .who-we-are::after {
    background-image: url("../assets/images/blue-line-bottom.svg");
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 105px;
    display: block;
    bottom: -50px;
    top: unset;
  }
}

.contact-section {
  position: relative;
}
.contact-section img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 16/9;
}
@media (min-width: 1212px) {
  .contact-section img {
    max-height: 806px;
  }
}
.contact-section .contact-box {
  padding: 19px 14px;
}
@media (min-width: 1024px) {
  .contact-section .contact-box {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 19px;
    max-width: 791px;
    width: 100%;
    padding: 0;
  }
}
.contact-section .contact-box .contact-box_inner {
  background-color: #000000;
  padding: 13px 15px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
@media (min-width: 768px) {
  .contact-section .contact-box .contact-box_inner {
    padding: 19px 40px;
  }
}
.contact-section .contact-box .contact-box_inner h2 {
  color: #fff;
  font-family: Lexend;
  font-size: 20px;
  font-style: normal;
  font-weight: 300;
  line-height: 25px; /* 25.068px */
}
.contact-section .contact-box .contact-box_inner .contact-options {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
@media (min-width: 768px) {
  .contact-section .contact-box .contact-box_inner .contact-options {
    grid-template-columns: repeat(3, auto);
    justify-content: space-between;
    gap: 30px;
  }
}
.contact-section .contact-box .contact-box_inner .contact-options .contact-option {
  display: grid;
  grid-template-columns: 14px 1fr;
  gap: 15px;
  align-items: center;
}
.contact-section .contact-box .contact-box_inner .contact-options .contact-option img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  aspect-ratio: 1/1;
}
.contact-section .contact-box .contact-box_inner .contact-options .contact-option p,
.contact-section .contact-box .contact-box_inner .contact-options .contact-option span,
.contact-section .contact-box .contact-box_inner .contact-options .contact-option a {
  color: #fff;
  font-family: Lexend;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 20px; /* 20.054px */
  display: block;
}

@keyframes gallery-dissolve {
  0% {
    opacity: 0;
  }
  8.33% {
    opacity: 1;
  }
  25% {
    opacity: 1;
  }
  33.33% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}/*# sourceMappingURL=main.css.map */