:root {
  scroll-behavior: smooth;
  /*-----------------------------------*/
  --home-background-color: #000;
  /*-----------------------------------*/
  --neutral-white: #fafafa;
  --gray-copyright: #979797;
  --accent-blue: #4285f4;
  --white: #fff;
  --black: #000;
  --font-family: "D-DIN", sans-serif;
  /*-----------------------------------*/
  --timing-function: 500ms ease-out;
  --timing-function-1: 300ms ease-in-out;
  --burger-menu: all 0.25s ease-out;
  /*-----------------------------------*/
  --tf-btn: cubic-bezier(0.19, 1, 0.22, 1);
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

nav,
ul,
ol {
  padding-left: 0;
}

ul {
  list-style: none;
}

body {
  margin: 0;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
dl {
  margin-block: 0;
}

dd {
  margin-left: 0;
}

fieldset {
  margin-left: 0;
  padding: 0;
  border: none;
}

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

html {
  height: 100%;
}

html,
:has(:target) {
  scroll-behavior: smooth;
}

* {
  scrollbar-width: thin;
  scrollbar-color: var(--neutral-white) var(--home-background-color);
}

a {
  display: block;
  color: currentColor;
  text-decoration: none;
}
@media (pointer: fine) {
  a {
    cursor: pointer;
  }
}

@media (pointer: fine) {
  button {
    cursor: pointer;
  }
}

img,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

body {
  color: var(--neutral-white);
  background-color: var(--home-background-color);
}

section {
  padding: 40px 0;
}
@media screen and (min-width: 768px) {
  section {
    padding: 80px 0;
  }
}
@media screen and (min-width: 1200px) {
  section {
    padding: 100px 0;
  }
}

.container {
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
}
@media screen and (min-width: 480px) {
  .container {
    max-width: 480px;
  }
}
@media screen and (min-width: 768px) {
  .container {
    max-width: 768px;
    padding: 0 24px;
  }
}
@media screen and (min-width: 1200px) {
  .container {
    max-width: 1200px;
    padding: 0 30px;
  }
}

.loader {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 1000;
  opacity: 1;
  -webkit-transition: opacity 0.3s linear;
  transition: opacity 0.3s linear;
}

.preloader {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: inline-block;
  border-top: 4px solid #6ebeff;
  border-right: 4px solid transparent;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-animation: rotation 1s linear infinite;
          animation: rotation 1s linear infinite;
}

.preloader::after {
  content: "";
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: absolute;
  left: 0;
  top: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border-left: 4px solid #337ab7;
  border-bottom: 4px solid transparent;
  animation: rotation 0.5s linear infinite reverse;
}

@-webkit-keyframes rotation {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes rotation {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  white-space: nowrap;
  -webkit-clip-path: inset(100%);
          clip-path: inset(100%);
  clip: rect(0 0 0 0);
  overflow: hidden;
}

.hide {
  display: none !important;
}

.error-message {
  position: absolute;
  left: 0;
  bottom: -20px;
  color: #ff5e52;
  font-size: 14px;
  letter-spacing: 1px;
  white-space: nowrap;
}

#error-msg {
  position: absolute;
  bottom: 2px;
  right: 30px;
  font-size: 30px;
  color: #ff5e52;
}

.video-bg-section {
  position: relative;
  height: 100vh;
  max-height: 100vh;
  min-height: 670px;
  overflow: hidden;
}

.filter::before {
  position: absolute;
  content: "";
  inset: 0;
  background-color: rgba(0, 0, 0, 0.4);
}

.video-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -2;
  inset: 0;
  -o-object-fit: cover;
     object-fit: cover;
  pointer-events: none;
}

.video-container {
  height: 100%;
}

video::-webkit-media-controls {
  display: none !important;
}

.nav-link {
  position: relative;
  display: inline-block;
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  color: var(--white);
  padding: 2px 0;
}
.nav-link::before {
  content: "";
  position: absolute;
  height: 1px;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--neutral-white);
  -webkit-transform-origin: right center;
          transform-origin: right center;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transition: -webkit-transform 0.6s var(--tf-btn);
  transition: -webkit-transform 0.6s var(--tf-btn);
  transition: transform 0.6s var(--tf-btn);
  transition: transform 0.6s var(--tf-btn), -webkit-transform 0.6s var(--tf-btn);
}
.nav-link:hover::before {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
  -webkit-transform-origin: left center;
          transform-origin: left center;
}

.overflow-hidden {
  overflow: hidden;
}

/*-- START  HOME --*/
.home-section-desc-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  height: 100%;
}

.title {
  font-weight: 700;
  font-size: 36px;
  line-height: 125%;
  text-transform: uppercase;
  color: var(--neutral-white);
  margin-bottom: 16px;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.4);
}
@media screen and (min-width: 768px) {
  .title {
    font-size: 44px;
  }
}
@media screen and (min-width: 1200px) {
  .title {
    font-size: 51px;
  }
}

.subtitle {
  font-weight: 400;
  font-size: 17px;
  text-transform: uppercase;
  color: var(--white);
}

.text {
  font-weight: 700;
  font-size: 15px;
  color: var(--white);
  margin-bottom: 8px;
}
@media screen and (min-width: 768px) {
  .text {
    font-size: 17px;
    margin-bottom: 16px;
  }
}
@media screen and (min-width: 1200px) {
  .text {
    font-size: 18px;
  }
}

.btn-mt {
  margin-top: 16px;
}
@media screen and (min-width: 768px) {
  .btn-mt {
    margin-top: 24px;
  }
}

/*-- END    HOME --*/
.scroll-to-top-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 48px;
  height: 48px;
  background-color: var(--blue);
  border: 1px solid white;
  border-radius: 50%;
  z-index: 10;
  opacity: 0;
  -webkit-transition: all 250ms ease-out;
  transition: all 250ms ease-out;
  pointer-events: none;
  max-width: 274px;
}
.scroll-to-top-btn.show {
  opacity: 0.6;
  pointer-events: all;
}
@media screen and (min-width: 768px) {
  .scroll-to-top-btn {
    bottom: 50px;
    right: 50px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .scroll-to-top-btn:hover {
    opacity: 1;
  }
}
@media (pointer: fine) {
  .scroll-to-top-btn {
    cursor: pointer;
  }
}

.scroll-to-top-icon {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.btn {
  position: relative;
  width: 226px;
  height: 46px;
  padding: 0 15px;
  border: 1px solid var(--neutral-white);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: hidden;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  text-align: center;
  color: var(--neutral-white);
  -webkit-transition: color 0.5s var(--tf-btn);
  transition: color 0.5s var(--tf-btn);
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: var(--neutral-white);
  -webkit-transform-origin: top center;
          transform-origin: top center;
  -webkit-transform: scale(1, 0);
          transform: scale(1, 0);
  -webkit-transition: -webkit-transform 0.6s var(--tf-btn);
  transition: -webkit-transform 0.6s var(--tf-btn);
  transition: transform 0.6s var(--tf-btn);
  transition: transform 0.6s var(--tf-btn), -webkit-transform 0.6s var(--tf-btn);
  z-index: -1;
}
@media (hover: hover) and (pointer: fine) {
  .btn:hover::before {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: bottom center;
            transform-origin: bottom center;
  }
  .btn:hover {
    color: var(--black);
  }
}

.btn-reverse {
  position: relative;
  width: 100%;
  max-width: 325px;
  height: 50px;
  padding: 0 15px;
  border: 1px solid var(--white);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: hidden;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  text-align: center;
  color: var(--black);
  background-color: var(--neutral-white);
  -webkit-transition: color 0.5s var(--tf-btn), border 0.5s var(--tf-btn);
  transition: color 0.5s var(--tf-btn), border 0.5s var(--tf-btn);
}
@media screen and (min-width: 768px) {
  .btn-reverse {
    width: 246px;
  }
}
.btn-reverse::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: var(--black);
  -webkit-transform-origin: top center;
          transform-origin: top center;
  -webkit-transform: scale(1, 0);
          transform: scale(1, 0);
  -webkit-transition: -webkit-transform 0.6s var(--tf-btn);
  transition: -webkit-transform 0.6s var(--tf-btn);
  transition: transform 0.6s var(--tf-btn);
  transition: transform 0.6s var(--tf-btn), -webkit-transform 0.6s var(--tf-btn);
  z-index: 0;
}
@media (hover: hover) and (pointer: fine) {
  .btn-reverse:hover {
    color: var(--neutral-white);
    border: 1px solid var(--white);
    stroke: var(--neutral-white);
  }
  .btn-reverse:hover::before {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: bottom center;
            transform-origin: bottom center;
  }
}
.btn-reverse span {
  position: relative;
  z-index: 1;
  -webkit-transition: color 0.5s var(--tf-btn);
  transition: color 0.5s var(--tf-btn);
}
.btn-reverse .chevron-right {
  position: relative;
  z-index: 1;
  -webkit-transition: stroke 0.5s var(--tf-btn);
  transition: stroke 0.5s var(--tf-btn);
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 60px;
  width: calc(100vw - 0px);
  z-index: 50;
  -webkit-transition: opacity 0.3s ease, background-color 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, background-color 0.3s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease, -webkit-transform 0.3s ease;
  background-color: transparent;
}
@media screen and (min-width: 1200px) {
  .header {
    height: 90px;
  }
}
.header .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-right: 0;
}

.header.scrolled {
  background-color: rgba(0, 0, 0, 0.8);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}

.header.hidden {
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  opacity: 0;
}

.header.visible {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}

.header-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 24px;
  margin-left: 50px;
}

.burger-wrapper {
  position: relative;
  width: 20px;
  height: 14px;
  margin-right: 20px;
  cursor: pointer;
  outline: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 150;
  width: 32px;
  height: 32px;
}
@media screen and (min-width: 768px) {
  .burger-wrapper {
    margin-right: 50px;
  }
}

.menu-icon {
  width: 20px;
  height: 14px;
  position: relative;
  cursor: pointer;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.menu-icon span {
  position: relative;
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--white);
  border-radius: 2px;
  -webkit-transition: top 0.3s ease, background-color 0.3s ease, -webkit-transform 0.3s ease;
  transition: top 0.3s ease, background-color 0.3s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, top 0.3s ease, background-color 0.3s ease;
  transition: transform 0.3s ease, top 0.3s ease, background-color 0.3s ease, -webkit-transform 0.3s ease;
  -webkit-transform-origin: center;
          transform-origin: center;
}
.menu-icon span:before, .menu-icon span:after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--white);
  border-radius: 2px;
  -webkit-transition: top 0.3s ease, -webkit-transform 0.3s ease;
  transition: top 0.3s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, top 0.3s ease;
  transition: transform 0.3s ease, top 0.3s ease, -webkit-transform 0.3s ease;
}
.menu-icon span:before {
  top: -6px;
}
.menu-icon span:after {
  top: 6px;
}
.menu-icon.open span {
  background-color: transparent;
}
.menu-icon.open span:before {
  top: 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.menu-icon.open span:after {
  top: 0;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.logo-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  width: 59px;
  height: 32px;
}
@media screen and (min-width: 768px) {
  .logo-link {
    width: 108px;
    height: 57px;
  }
}

.header-logo-img {
  width: 59px;
  height: 32px;
}
@media screen and (min-width: 768px) {
  .header-logo-img {
    width: 108px;
    height: 57px;
  }
}

.desk-menu-wrap {
  position: fixed;
  right: 0;
  top: 0;
  width: 350px;
  height: 120%;
  opacity: 0;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
  visibility: hidden;
}
@media screen and (min-width: 1200px) {
  .desk-menu-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: end;
    visibility: visible;
    opacity: 0;
  }
}
.desk-menu-wrap.open {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  z-index: 14;
}

.menu-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  background-color: rgba(0, 0, 0, 0.8);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}

.menu-list {
  position: absolute;
  top: 100px;
  right: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 1200px) {
  .menu-list {
    top: 140px;
    row-gap: 40px;
  }
}

.mob-item {
  font-size: 16px;
}

.desktop-menu {
  display: none;
}
@media screen and (min-width: 1200px) {
  .desktop-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.mobile-menu {
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
  max-width: 220px;
  height: 100vh;
  opacity: 0;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
  overflow: hidden;
  z-index: 14;
}
.mobile-menu.open {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  overflow: auto;
}
@media screen and (min-width: 768px) {
  .mobile-menu {
    max-width: 350px;
  }
}
@media screen and (min-width: 1200px) {
  .mobile-menu {
    visibility: hidden;
    opacity: 0;
  }
}

.mobile-menu .all-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}

.hero-title-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 122px;
}
@media screen and (min-width: 1200px) {
  .hero-title-wrap {
    margin-top: 147px;
  }
}

.home-section-desc-wrap {
  position: relative;
}

.hero-title {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-weight: 700;
  font-size: 36px;
  line-height: 1.25;
  text-transform: uppercase;
  text-align: center;
  color: var(--neutral-white);
  margin-bottom: 8px;
}
@media screen and (min-width: 768px) {
  .hero-title {
    font-size: 48px;
    margin-bottom: 16px;
  }
}
@media screen and (min-width: 1200px) {
  .hero-title {
    font-size: 72px;
  }
}

.hero-description {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.2;
  text-transform: uppercase;
  text-align: center;
  color: var(--white);
  margin-bottom: 8px;
}
@media screen and (min-width: 768px) {
  .hero-description {
    font-size: 17px;
    margin-bottom: 16px;
  }
}
@media screen and (min-width: 1200px) {
  .hero-description {
    font-size: 21px;
  }
}

.hero-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 700;
  font-size: 12px;
  line-height: 1.25;
  text-transform: uppercase;
  text-align: center;
  color: var(--neutral-white);
  margin-bottom: 24px;
}
@media screen and (min-width: 768px) {
  .hero-text {
    margin-bottom: 24px;
  }
}
@media screen and (min-width: 1200px) {
  .hero-text {
    font-size: 16px;
  }
}

.hero-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  row-gap: 26px;
}
@media screen and (min-width: 768px) {
  .hero-form {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-column-gap: 16px;
       -moz-column-gap: 16px;
            column-gap: 16px;
  }
}

.join-us-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  row-gap: 26px;
  margin-top: 16px;
}
@media screen and (min-width: 768px) {
  .join-us-form {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    -webkit-column-gap: 16px;
       -moz-column-gap: 16px;
            column-gap: 16px;
    margin-top: 24px;
  }
}

.join-us-text {
  display: block;
}
@media screen and (min-width: 768px) {
  .join-us-text {
    width: 512px;
  }
}

.fields-wrap {
  position: relative;
  width: 100%;
  max-width: 325px;
}
@media screen and (min-width: 1200px) {
  .fields-wrap {
    max-width: 402px;
  }
}

.email-galaxia {
  width: 100%;
  height: 50px;
  padding: 15px;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.15);
  font-weight: 400;
  font-size: 14px;
  color: var(--neutral-white);
  border: 2px solid rgba(255, 255, 255, 0.6);
  outline: none;
  -webkit-transition: border-color 0.3s ease;
  transition: border-color 0.3s ease;
}
.email-galaxia:focus {
  border-color: rgb(255, 255, 255);
  outline: none;
}
.email-galaxia::-webkit-input-placeholder {
  color: var(--neutral-white);
  opacity: 1;
}
.email-galaxia::-moz-placeholder {
  color: var(--neutral-white);
  opacity: 1;
}
.email-galaxia:-ms-input-placeholder {
  color: var(--neutral-white);
  opacity: 1;
}
.email-galaxia::-ms-input-placeholder {
  color: var(--neutral-white);
  opacity: 1;
}
.email-galaxia::placeholder {
  color: var(--neutral-white);
  opacity: 1;
}

.discovery-text {
  max-width: 450px;
}

.mission-text {
  max-width: 500px;
}

.expert-section {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background-image: url("/wp-content/themes/blankslate/assets/img/home/section7.avif");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 100svh;
}
@media screen and (min-width: 768px) {
  .expert-section {
    height: 100svh;
    min-height: 650px;
    max-height: 860px;
  }
}
@media screen and (min-width: 1200px) {
  .expert-section {
    min-height: 860px;
  }
}

.faq-title-wrap {
  text-align: center;
  margin-bottom: 16px;
}
@media screen and (min-width: 768px) {
  .faq-title-wrap {
    margin-bottom: 24px;
  }
}
@media screen and (min-width: 1200px) {
  .faq-title-wrap {
    margin-bottom: 60px;
  }
}

.faq-title {
  display: inline-block;
  font-weight: 400;
  font-size: 23px;
  color: var(--gray-copyright);
  -webkit-transition: color var(--timing-function-1);
  transition: color var(--timing-function-1);
}
@media screen and (min-width: 1200px) {
  .faq-title {
    font-size: 32px;
  }
}

.faq-item.active .faq-title {
  color: var(--white);
}

.faq-item {
  border-bottom: 1px solid rgba(217, 217, 217, 0.59);
  padding: 16px 0;
}
@media (pointer: fine) {
  .faq-item {
    cursor: pointer;
  }
}
@media screen and (min-width: 1200px) {
  .faq-item {
    padding: 32px 0 24px;
  }
}

.faq-question {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.faq-answer {
  max-height: 0;
  opacity: 0;
  height: auto;
  overflow: hidden;
  -webkit-transition: opacity var(--timing-function-1);
  transition: opacity var(--timing-function-1);
}

.faq-item.active .faq-answer {
  margin-top: 24px;
  max-height: 500px;
  opacity: 1;
}

.faq-description {
  font-weight: 400;
  font-size: 15px;
  line-height: 1.2;
}
@media screen and (min-width: 1200px) {
  .faq-description {
    font-size: 17px;
  }
}

.faq-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  position: relative;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  background-color: var(--gray-copyright);
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease, -webkit-transform 0.3s ease;
}

.faq-icon::before {
  width: 12px;
  height: 2px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.faq-icon::after {
  width: 2px;
  height: 12px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.faq-item.active .faq-icon::after {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
          transform: translate(-50%, -50%) rotate(90deg);
  background-color: var(--white);
}

.faq-item.active .faq-icon::before {
  opacity: 0;
}

.faq-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  margin-top: 24px;
}
@media screen and (min-width: 1200px) {
  .faq-btn {
    margin-top: 45px;
  }
}

.chevron-right {
  padding: 2px;
  width: 24px;
  height: 24px;
  margin-left: 8px;
  stroke: currentColor;
  -webkit-transition: stroke 0.5s var(--tf-btn);
  transition: stroke 0.5s var(--tf-btn);
}

.section-desc-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 100%;
}
@media screen and (min-width: 1200px) {
  .section-desc-wrap {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
}

.origins-img {
  display: block;
  width: 327px;
  height: 240px;
  margin-bottom: auto;
}
@media screen and (min-width: 1200px) {
  .origins-img {
    width: 459px;
    height: 240px;
    -webkit-transform: translateX(-10%);
            transform: translateX(-10%);
  }
}

.visionary-name {
  display: block;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.2;
  color: var(--gray-copyright);
  margin-top: 8px;
}

.visionary-content-wrap {
  margin-top: 24px;
}
@media screen and (min-width: 1200px) {
  .visionary-content-wrap {
    margin-top: 37px;
  }
}

.pages-title-wrap {
  margin-top: 185px;
  text-align: center;
}

.pages-title-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  height: 100%;
}

.pages-title {
  font-size: 36px;
  line-height: 1.25;
  margin-top: 8px;
}
@media screen and (min-width: 768px) {
  .pages-title {
    font-size: 48px;
    margin-top: 16px;
  }
}
@media screen and (min-width: 1200px) {
  .pages-title {
    font-size: 72px;
  }
}

@media screen and (min-width: 1200px) {
  .pages-visionary-title {
    text-align: start;
  }
}

.page-text {
  font-weight: 400;
  font-size: 15px;
  line-height: 1.2;
  margin-bottom: 37px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .page-text {
    max-width: 720px;
    font-size: 18px;
  }
}
@media screen and (min-width: 1200px) {
  .page-text {
    max-width: 768px;
  }
}

.page-section-title {
  margin-bottom: 32px;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.25;
  text-transform: uppercase;
  color: var(--white);
}
@media screen and (min-width: 768px) {
  .page-section-title {
    font-size: 46px;
    line-height: 1.08696;
    margin-bottom: 37px;
  }
}
@media screen and (min-width: 1200px) {
  .page-section-title {
    width: 768px;
  }
}

.home-link {
  display: none;
}
@media screen and (min-width: 1200px) {
  .home-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 10px;
    text-decoration: none;
    font-size: 16px;
    color: var(--neutral-white);
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease;
  }
  .home-link .icon-circle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--white);
    border-radius: 50%;
  }
}

.page-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 0 auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 32px;
  padding-bottom: 24px;
}
@media screen and (min-width: 768px) {
  .page-info {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
@media screen and (min-width: 1200px) {
  .page-info {
    padding-top: 100px;
    padding-bottom: 100px;
    width: 828px;
  }
}

.page-video,
.page-img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 325px;
  height: 209px;
}
@media screen and (min-width: 1200px) {
  .page-video,
  .page-img {
    width: 768px;
    height: 493px;
  }
}

.text-border {
  display: block;
  width: 100%;
  padding-bottom: 37px;
  border-bottom: 0.5px solid var(--white);
}
@media screen and (min-width: 1200px) {
  .text-border {
    max-width: 768px;
  }
}

.img-wrap {
  position: relative;
  margin: 0 auto;
}

.img-extra-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  background-color: var(--black);
  width: 325px;
  height: 119px;
  margin: 0 auto;
}
@media screen and (min-width: 1200px) {
  .img-extra-wrap {
    position: absolute;
    bottom: 24px;
    right: 24px;
    width: 248px;
    height: 165px;
    margin-top: 0px;
  }
}

.img-extra {
  margin-top: 16px;
  width: 181px;
  height: 96px;
}
@media screen and (min-width: 1200px) {
  .img-extra {
    right: 24px;
    width: 228px;
    margin-top: 0px;
  }
}

.img-extra-text {
  text-align: center;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.2;
  text-transform: uppercase;
  text-align: center;
  color: var(--white);
  margin-top: 16px;
}

.arrow-pages {
  position: absolute;
  bottom: 30px;
  left: 50%;
  -webkit-transform: translateX(-50%) rotate(90deg);
          transform: translateX(-50%) rotate(90deg);
  width: 32px;
  height: 32px;
  margin: 0;
  opacity: 0;
  -webkit-animation: bounceArrow 3s infinite ease-in-out;
          animation: bounceArrow 3s infinite ease-in-out;
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}

@-webkit-keyframes bounceArrow {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-50%) translateY(0) rotate(90deg);
            transform: translateX(-50%) translateY(0) rotate(90deg);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateX(-50%) translateY(0) rotate(90deg);
            transform: translateX(-50%) translateY(0) rotate(90deg);
  }
  50% {
    opacity: 1;
    -webkit-transform: translateX(-50%) translateY(12px) rotate(90deg);
            transform: translateX(-50%) translateY(12px) rotate(90deg);
  }
  90% {
    opacity: 0;
    -webkit-transform: translateX(-50%) translateY(12px) rotate(90deg);
            transform: translateX(-50%) translateY(12px) rotate(90deg);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-50%) translateY(0) rotate(90deg);
            transform: translateX(-50%) translateY(0) rotate(90deg);
  }
}

@keyframes bounceArrow {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-50%) translateY(0) rotate(90deg);
            transform: translateX(-50%) translateY(0) rotate(90deg);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateX(-50%) translateY(0) rotate(90deg);
            transform: translateX(-50%) translateY(0) rotate(90deg);
  }
  50% {
    opacity: 1;
    -webkit-transform: translateX(-50%) translateY(12px) rotate(90deg);
            transform: translateX(-50%) translateY(12px) rotate(90deg);
  }
  90% {
    opacity: 0;
    -webkit-transform: translateX(-50%) translateY(12px) rotate(90deg);
            transform: translateX(-50%) translateY(12px) rotate(90deg);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-50%) translateY(0) rotate(90deg);
            transform: translateX(-50%) translateY(0) rotate(90deg);
  }
}
.expert-photo {
  border-radius: 50%;
  width: 35px;
  height: 35px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 1200px) {
  .expert-photo {
    width: 55px;
    height: 55px;
  }
}

.page-experts-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}

.page-expert-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 24px;
     -moz-column-gap: 24px;
          column-gap: 24px;
}

.page-expert-text {
  font-weight: 400;
  font-size: 17px;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 6px;
}
@media screen and (min-width: 768px) {
  .page-expert-text {
    font-size: 24px;
  }
}

.page-expert-name {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.2;
  color: var(--gray-copyright);
}
@media screen and (min-width: 768px) {
  .page-expert-name {
    font-size: 22px;
  }
}

.challenge-btn {
  width: 100%;
  max-width: 325px;
}
@media screen and (min-width: 768px) {
  .challenge-btn {
    width: 235px;
  }
}
@media screen and (min-width: 1200px) {
  .challenge-btn {
    margin-right: auto;
  }
}

.about-us-btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .about-us-btns {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin-right: auto;
    gap: 24px;
  }
}

.about-btn {
  width: 100%;
  max-width: 325px;
}
@media screen and (min-width: 768px) {
  .about-btn {
    width: 226px;
  }
}

.about-reverse {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .about-reverse {
    width: 235px;
  }
}

.lp-text {
  font-weight: 400;
  font-size: 17px;
  line-height: 120%;
  text-transform: uppercase;
  color: var(--neutral-white);
  margin-bottom: 40px;
}

.lp-title {
  max-width: 660px;
}

.lp-info {
  font-weight: 400;
  font-size: 12px;
  line-height: 120%;
  text-transform: uppercase;
  color: #fff;
  margin-top: 16px;
}
@media screen and (min-width: 768px) {
  .lp-info {
    font-size: 14px;
  }
}

.blog-subtitle {
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 32px;
}

.post-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 100px;
}

.post-wrap {
  max-width: 768px;
  margin-left: auto;
  margin-right: auto;
}

.blog-article {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}

.entry-summary {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}

.post-date {
  margin-bottom: 16px;
}

.blog-btn-summary {
  margin-top: 40px;
}

.blog-summary-img-wrap {
  padding-top: 30px;
  border-top: 1px solid var(--neutral-white);
}

.blog-summary-img-wrap img {
  width: 100%;
  max-width: 768px;
  max-height: 470px;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (min-width: 768px) {
  .blog-nav-wrap {
    margin-top: 80px;
  }
}
@media screen and (min-width: 1200px) {
  .blog-nav-wrap {
    margin-top: 100px;
  }
}

.blog-nav-wrap .nav-links {
  display: none;
}
@media screen and (min-width: 768px) {
  .blog-nav-wrap .nav-links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.blog-nav-wrap .nav-links a {
  text-transform: uppercase;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  max-width: 350px;
}

.entry-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.entry-content img {
  -webkit-box-ordinal-group: 101;
      -ms-flex-order: 100;
          order: 100;
  margin-top: 30px;
}

.blog-back-btn {
  margin-top: 40px;
  margin-left: auto;
  margin-right: auto;
}

.footer {
  background-color: var(--black);
  padding: 20px 0;
}
@media screen and (min-width: 1200px) {
  .footer {
    padding: 40px 0;
  }
}

.footer-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 24px;
     -moz-column-gap: 24px;
          column-gap: 24px;
  row-gap: 28px;
}
@media screen and (min-width: 768px) {
  .footer-nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 30px;
  }
}

.footer-copyright {
  font-size: 12px;
  line-height: 1.75;
  text-transform: uppercase;
  text-align: center;
  color: var(--gray-copyright);
  opacity: 0.6;
  margin-top: 24px;
}
@media screen and (min-width: 1200px) {
  .footer-copyright {
    margin-top: 30px;
  }
}

.modal__overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 999;
}

.modal__container {
  background-color: var(--home-background-color);
  max-height: 100vh;
  border-radius: 28px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  max-width: 96vw;
  overflow-y: auto;
  scrollbar-color: transparent transparent;
  scrollbar-width: thin;
  padding: 20px 10px;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1019607843);
}
@media screen and (min-width: 768px) {
  .modal__container {
    padding: 30px;
    max-width: 550px;
  }
}

.modal__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: calc(100% - 42px);
}

.modal-header {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 42px;
}

.modal__btn {
  position: absolute;
  right: 0;
  padding: 0;
  border: 1px solid transparent;
  background-color: transparent;
  border-radius: 50%;
  -webkit-transition: -webkit-transform var(--timing-function-1);
  transition: -webkit-transform var(--timing-function-1);
  transition: transform var(--timing-function-1);
  transition: transform var(--timing-function-1), -webkit-transform var(--timing-function-1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.modal__btn img {
  width: 32px;
  height: 32px;
}

.modal-logo-img {
  height: 35px;
  width: auto;
}

/**************************\
  Demo Animation Style
\**************************/
@-webkit-keyframes mmfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes mmfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes mmfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes mmfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@-webkit-keyframes mmslideIn {
  from {
    -webkit-transform: translateY(15%);
            transform: translateY(15%);
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes mmslideIn {
  from {
    -webkit-transform: translateY(15%);
            transform: translateY(15%);
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes mmslideOut {
  from {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    -webkit-transform: translateY(-10%);
            transform: translateY(-10%);
  }
}
@keyframes mmslideOut {
  from {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    -webkit-transform: translateY(-10%);
            transform: translateY(-10%);
  }
}
.micromodal-slide {
  display: none;
}

.micromodal-slide.is-open {
  display: block;
}

.micromodal-slide[aria-hidden=false] .modal__overlay {
  -webkit-animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
          animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=false] .modal__container {
  -webkit-animation: mmslideIn 0.3s cubic-bezier(0, 0, 0.2, 1);
          animation: mmslideIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=true] .modal__overlay {
  -webkit-animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
          animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=true] .modal__container {
  -webkit-animation: mmslideOut 0.3s cubic-bezier(0, 0, 0.2, 1);
          animation: mmslideOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide .modal__container,
.micromodal-slide .modal__overlay {
  will-change: transform;
}

.modal__content .contact-form {
  margin-left: 0;
  padding: 0;
  min-width: 350px;
  width: 100%;
}
.modal__content .contact-form .modal-form-text,
.modal__content .contact-form .modal-form-email {
  height: 40px;
}

.modal-form-message {
  height: 120px;
  resize: none;
}

.modal-form-btn-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.mini-modal-content {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 30px;
  height: 100%;
  opacity: 0;
  -webkit-transition: opacity var(--timing-function);
  transition: opacity var(--timing-function);
  padding-top: 30px;
}

.mini-modal-content.visible {
  opacity: 1;
}

.modal-form {
  gap: 30px;
}

.modal-message-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 40px;
  margin-top: 40px;
}

.success-modal-title {
  text-align: center;
  font-weight: 400;
  font-size: 24px;
  line-height: 132%;
  text-transform: uppercase;
  color: var(--neutral-white);
  margin-bottom: 12px;
}

.success-modal-text {
  text-align: center;
  font-weight: 300;
  font-size: 18px;
  line-height: 142%;
  color: var(--gray-copyright);
}/*# sourceMappingURL=main.css.map */