.header {
  position: relative;
  top: 0;
  z-index: 99999 !important;
}
.header .header-box {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  height: auto;
}
.header .header-box .nav-left {
  border-radius: 0 0 32px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  background: #111318;
  width: 540px;
  height: 110px;
}
.header .header-box .nav-left::before {
  content: "";
  position: absolute;
  background-image: url("../assets/images/corner.svg");
  transform: rotate(90deg);
  width: 32px;
  height: 32px;
  right: -32px;
  top: 0;
}
.header .header-box .nav-left::after {
  content: "";
  position: absolute;
  background-image: url("../assets/images/corner.svg");
  transform: rotate(90deg);
  width: 32px;
  height: 32px;
  left: 0;
  bottom: -32px;
}
.header .header-box .nav-left__box-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 420px;
  height: 72px;
  background-color: #fff;
  padding: 20px 32px;
  position: relative;
  z-index: 2;
  border-radius: 16px;
}
.header .header-box .nav-left__box {
  position: relative;
}
.header .header-box .nav-left__box .logo-nav {
  display: flex;
  align-items: center;
}
.header .header-box .nav-left__box__right {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: nowrap;
}
.header .header-box .nav-left__namePage {
  color: #111318;
}
.header .header-box .nav-left .menu {
  position: absolute;
  top: 20px;
  left: 0;
  width: 100%;
  margin: 0;
  padding: 32px;
  padding-top: 0;
  background-color: #fff;
  border-radius: 0 0 16px 16px;
  overflow: hidden;
}
.header .header-box .nav-left .menu a {
  color: #111318;
}
.header .header-box .nav-left .menu a:before {
  height: 1px;
  bottom: 2px;
  background-color: #111318;
}
.header .header-box .nav-left .menu__line {
  width: 100%;
  height: 1px;
  margin: 24px 0;
  background-color: rgba(189, 189, 189, 0.5);
}
.header .header-box .nav-left .menu-nav {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  row-gap: 16px;
}
.header .header-box .nav-left .menu-nav li:first-child {
  padding-top: 80px;
}
.header .header-box .nav-left .menu-nav a {
  text-decoration: none;
  color: black;
  display: inline-block;
  position: relative;
  color: #333;
  padding-bottom: 8px;
}
.header .header-box .nav-left .menu-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 5px;
  width: 100%;
  height: 1px;
  background-color: #333;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease-out;
}
.header .header-box .nav-left .menu-nav a:hover {
  background-color: transparent;
}
.header .header-box .nav-left .menu-nav a:hover::after {
  transform: scaleX(1);
}
.header .header-box .nav-left .menu-social {
  display: flex;
  gap: 24px;
}
.header .header-box .nav-left .menu-social a {
  transition: all 0.15s ease;
  font-size: 20px;
  text-decoration: none;
}
.header .header-box .nav-left .menu-social a::after {
  display: none;
}
.header .header-box .nav-left .menu-social a i {
  color: #fdc836;
}
.header .header-box .nav-left .menu-social a:hover {
  transform: scale(1.1) rotate(-20deg) translateZ(0px) !important;
}
.header .header-box .nav-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-radius: 0 0 0 32px;
  background: #111318;
  position: relative;
  width: 278px;
  height: 96px;
}
.header .header-box .nav-right .btn {
  position: fixed;
  z-index: 9999;
  width: -moz-max-content;
  width: max-content;
  right: 80px;
  top: 40px;
  transition: all 0.3s;
}
.header .header-box .nav-right::before {
  content: "";
  position: absolute;
  background-image: url("../assets/images/corner.svg");
  transform: rotate(-180deg);
  width: 32px;
  height: 32px;
  left: -32px;
  top: 0;
}
.header .header-box .nav-right::after {
  content: "";
  position: absolute;
  background-image: url("../assets/images/corner.svg");
  transform: rotate(-180deg);
  width: 32px;
  height: 32px;
  right: 0;
  bottom: -32px;
}
.header .hamburger {
  cursor: pointer;
  width: 64px;
}
.header .hamburger__ico span {
  display: block;
  width: 64px;
  height: 1px;
  margin: 8px auto;
  background-color: #333;
  transition: 0.3s;
}
.header .hamburger__ico.open span:nth-child(1) {
  transform: rotate(15deg) translate(5px, 8px);
}
.header .hamburger__ico.open span:nth-child(2) {
  opacity: 0;
}
.header .hamburger__ico.open span:nth-child(3) {
  transform: rotate(-15deg) translate(5px, -8px);
}

.absolute-header {
  position: absolute;
  width: calc(100% - 40px);
  left: 20px;
  top: 20px;
  height: 100px;
  z-index: 999999999999;
  margin-top: 0;
}

.header-content .hero-text {
  background: #111318;
  padding: 164px 60px 80px 70px;
  display: flex;
  flex-direction: column;
  row-gap: 70px;
  width: 48vw;
  border-radius: 0 0 32px 0;
  color: white;
  position: relative;
}
.header-content .hero-text::before, .header-content .hero-text::after {
  content: "";
  position: absolute;
  background-image: url("../assets/images/corner.svg");
  width: 32px;
  height: 32px;
  transform: rotate(90deg);
  background-size: contain;
}
.header-content .hero-text::before {
  left: auto;
  right: -32px;
  top: 0;
}
.header-content .hero-text::after {
  left: 0;
  top: auto;
  bottom: -32px;
}
.header-content .video-container {
  max-width: 100%;
  max-height: 100%;
}
.header-content .video-container {
  position: absolute;
  left: 50%;
  top: 0;
  height: 100%;
  padding: 100px 0;
}
.header-content video {
  max-width: 100%;
  max-height: 100%;
}

.home-hero-text h1, .home-hero-text span {
  font-size: clamp(42px, 5.625vw, 108px);
}

.hero-section {
  padding-top: 20px;
  margin: 0px 20px;
  border-radius: 0px 0px 32px 32px;
  background-size: cover;
  background-repeat: no-repeat;
}

.btn-animation {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.btn-animation .btn__text {
  display: inline-flex;
  transition: transform 0.3s ease;
}
.btn-animation .btn__text .char {
  display: inline-block;
  opacity: 1;
}
.btn-animation svg {
  position: absolute;
  right: 40px;
  opacity: 0;
  transform: scale(0.2);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.btn-animation:hover .btn__text {
  transform: translateX(-13px);
}
.btn-animation:hover svg {
  opacity: 1;
  transform: translateX(13px) scale(1);
}

.footer {
  width: calc(100% - 40px);
  margin: 30px auto 60px;
  padding: 160px 0 0;
  background-image: url("../assets/images/footer-bg.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 32px;
}
.footer .footer-top-left {
  padding-left: 60px;
  padding-bottom: 80px;
}
.footer .footer-top-left p {
  margin-bottom: 24px;
}
.footer .footer-top-right {
  padding: 0 80px;
  margin-bottom: 80px;
}
.footer .footer-bottom-left {
  display: flex;
  align-items: flex-start;
  padding: 60px 60px 40px 80px;
  justify-content: space-between;
  background: #111318;
  border-top-right-radius: 32px;
  position: relative;
  width: 100%;
  margin: auto;
}
.footer .footer-bottom-left::before, .footer .footer-bottom-left::after {
  content: "";
  position: absolute;
  background-image: url("../assets/images/corner.svg");
  width: 32px;
  height: 32px;
  background-size: contain;
}
.footer .footer-bottom-left::before {
  left: 0;
  top: -32px;
}
.footer .footer-bottom-left::after {
  bottom: 0;
  right: -32px;
}
.footer .footer-bottom-left .footer-logo img {
  max-width: 75%;
}
.footer .footer-bottom-left .info-company p {
  font-size: 16px;
  letter-spacing: -0.32px;
}
.footer .footer-bottom-left .social-links {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}
.footer .footer-bottom-left .social-links svg {
  margin-left: 8px;
}
.footer .footer-bottom-right {
  opacity: 0.6;
  display: flex;
  height: 100%;
  justify-content: space-between;
  align-items: flex-end;
  padding: 60px 60px 40px 80px;
}
.footer .footer-bottom-right p {
  font-size: 14px;
  letter-spacing: 2.1px;
}

.underlined-link-offest .char {
  text-decoration: underline;
}
.underlined-link-offest {
  color: white;
  font-size: clamp(24px, 2.5vw, 48px);
  font-style: normal;
  line-height: 140%;
  letter-spacing: -0.96px;
  text-underline-offset: 15px;
  transition: all 0.3s;
}
.underlined-link-offest:hover {
  text-underline-offset: 20px;
  transition: all 0.3s;
  color: #fdc836;
}

.underline-link {
  color: white;
  text-decoration: none;
  position: relative;
  display: inline-block;
  padding-bottom: 8px;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 2px;
}
.underline-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 5px;
  width: 100%;
  height: 2px;
  background-color: #fff;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease-out;
}
.underline-link:hover, .underline-link.active {
  background-color: transparent;
}
.underline-link:hover::after, .underline-link.active::after {
  transform: scaleX(1);
}

.form-control {
  background-color: unset;
  padding: 15px 24px;
  border-radius: 16px;
  border: 0.5px solid rgba(255, 255, 255, 0.5);
}
.form-control:focus, .form-control:hover {
  border: 0.5px solid white;
  box-shadow: unset;
}
.form-control::-moz-placeholder {
  color: #fff;
  opacity: 1;
}
.form-control::placeholder {
  color: #fff;
  opacity: 1;
}

.form-check {
  margin-top: 25px;
}
.form-check label, .form-check a {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
  letter-spacing: -0.28px;
  color: #fff;
}
.form-check a:hover {
  color: #fdc836;
}

.captcha-policy {
  margin-top: 12px;
  font-size: 12px;
}
.captcha-policy a {
  color: white;
}
.captcha-policy a:hover {
  color: #fdc836;
}/*# sourceMappingURL=layout.css.map */