/* Animations */
@keyframes bounceBottom {

  0%,
  10%,
  25%,
  40%,
  70%,
  100% {
    transform: translate(-50%, 0);
  }

  20% {
    transform: translate(-50%, -12px);
  }

  35% {
    transform: translate(-50%, -6px);
  }
}

@keyframes bounceTop {

  0%,
  10%,
  25%,
  40%,
  70%,
  100% {
    transform: translate(-50%, 0);
  }

  20% {
    transform: translate(-50%, 12px);
  }

  35% {
    transform: translate(-50%, 6px);
  }
}

/* General Styles */
:root {
  --usat-white: #E5EAEE;
  --usat-black: #222224;
  --usat-dark: #0C0D0E;
  --usat-gray: #34353E;
  --usat-light-gray: #ABABAB;
}

html {
  -webkit-text-size-adjust: 100%;
  height: -webkit-fill-available;
  scroll-behavior: smooth;
}

body {
  font-family: "Rubik", sans-serif;
  background-color: var(--usat-dark);
  margin: 0;
  overscroll-behavior: none;
  overflow-x: hidden;
}

h1,
h2 {
  font-weight: 500;
  font-size: clamp(42px, 7.4vh, 72px);
  line-height: 1.08;
  margin: 0;
}

@media only screen and (max-width : 991.98px) {

  h1,
  h2 {
    font-size: 42px;
    line-height: 1.0952;
  }
}

@media only screen and (max-width : 401.98px) {

  h1,
  h2 {
    font-size: 40px;
  }
}

p {
  font-weight: 400;
  font-size: clamp(11px, 1.8vh, 16px);
  line-height: 1.625;
  letter-spacing: 3.2px;
  text-transform: uppercase;
}

@media only screen and (max-width : 991.98px) {
  p {
    font-size: 11px;
    line-height: 2;
    letter-spacing: 2.2px;
  }
}

@media only screen and (max-width : 401.98px) {
  p {
    font-size: 10px;
  }
}

figure {
  margin: 0;
  width: 100%;
  overflow: auto;
  border-radius: 13px;
  box-shadow: 0 0 0 1px var(--usat-white);
  border-style: hidden;
}

@media only screen and (max-width : 991.98px) {
  figure {
    border-radius: 10px;
  }
}

figure table {
  font-size: 22px;
  line-height: 1.3;
  border-collapse: collapse;
  border-style: hidden;
}

@media only screen and (max-width : 991.98px) {
  figure table {
    font-size: 16px;
  }
}

figure table tr:first-child td {
  padding: 10px 40px;
  background-color: var(--usat-white);
  color: var(--usat-black);
  white-space: nowrap;
  text-align: center;
}

@media only screen and (max-width : 991.98px) {
  figure table tr:first-child td {
    padding: 5px 20px;
  }
}

figure table td {
  border: 1px solid var(--usat-white);
  padding: 30px;
}

@media only screen and (max-width : 991.98px) {
  figure table td {
    padding: 15px;
  }
}

figure.privacy-info table td:nth-child(1) {
  width: 199px;
}

figure.privacy-info table td:nth-child(3) {
  min-width: 170px;
}

figure.privacy-info table td:nth-child(4) {
  width: 175px;
}

figure.cookies-info table td {
  min-width: 170px;
}

figure.necessary-cookies table td:nth-child(3) {
  min-width: 170px;
}

figure.analytical-cookies table td:nth-child(1) {
  width: 196px;
}

figure.analytical-cookies table td:nth-child(3) {
  word-break: break-word;
  min-width: 170px;
}

section {
  position: relative;
  width: 100%;
}

section .bg {
  width: 100%;
  height: 100%;
  overflow-y: hidden;
}

section .container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 1303px;
  max-width: calc(100% - 136px);
  height: 100%;
  padding: 0 68px;
  margin: 0 auto;
  z-index: 2;
}

@media only screen and (max-width : 991.98px) {
  section .container {
    max-width: calc(100% - 32px);
    padding: 0 16px;
  }
}

section .content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}

@media only screen and (max-width : 991.98px) {
  section .content {
    gap: 12px;
  }
}

section .content>* {
  margin: 0;
}

.btn-group {
  display: flex;
  align-items: center;
  gap: 10px;
}

@media only screen and (max-width : 991.98px) {
  .btn-group {
    flex-direction: column;
  }
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: clamp(178px, 22.4vh, 222px);
  height: clamp(34px, 4.8vh, 46px);
  border-radius: 5px;
  font-weight: 400;
  font-size: clamp(10px, 1.4vh, 12px);
  line-height: 1.83;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  text-decoration: none;
  background-color: transparent;
  transition: all 0.4s cubic-bezier(.215, .61, .355, 1);
  cursor: pointer;
}

@media only screen and (max-width : 991.98px) {
  .btn {
    min-width: 178px;
    height: 34px;
    font-size: 10px;
    line-height: 26px;
  }
}

.btn.btn-outline-light {
  border: 1px solid var(--usat-white);
  background-color: transparent;
  color: var(--usat-white);
}

.btn.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(25.8px);
}

.btn.btn-dark {
  border: 1px solid var(--usat-gray);
  background-color: var(--usat-gray);
  color: var(--usat-white);
}

.btn.btn-dark:hover {
  background: var(--usat-dark);
  border-color: var(--usat-dark);
}

.btn.btn-light {
  border: 1px solid var(--usat-white);
  background-color: var(--usat-white);
  color: var(--usat-dark);
}

.btn.btn-light:hover {
  opacity: 0.5;
}

.btn-arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 40px;
  height: 40px;
  background-color: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  animation: bounceBottom 3s infinite;
  animation-delay: 3s;
}

.btn-arrow span {
  font-size: 12px;
  line-height: 1.83;
  letter-spacing: 2.4px;
  text-indent: 2.4px;
  text-transform: uppercase;
  color: #727272;
}

.custom-checkbox input[type="checkbox"] {
  display: none;
}

.custom-checkbox input[type="checkbox"]:disabled+.checkbox {
  background-image: url('../assets/images/checkbox-checked.svg');
  background-size: cover;
  cursor: not-allowed;
}

.custom-checkbox input[type="checkbox"]:checked+.checkbox {
  background-image: url('../assets/images/checkbox-checked.svg');
  background-size: cover;
}

.custom-checkbox .checkbox {
  width: 23px;
  height: 23px;
  background-image: url('../assets/images/checkbox.svg');
  background-size: cover;
  cursor: pointer;
}

.desktop-only {
  display: block;
}

@media only screen and (max-width : 991.98px) {
  .desktop-only {
    display: none;
  }
}

.mobile-only {
  display: none;
}

@media only screen and (max-width : 991.98px) {
  .mobile-only {
    display: block;
  }
}

/* Header Styles */
header {
  display: flex;
  justify-content: space-between;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: transparent;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}

header .header__nav-items {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 48px 0 35px;
  margin: 0 auto;
  width: 1139px;
  max-width: 100%;
  gap: 96px;
}

@media only screen and (max-width : 991.98px) {
  header .header__nav-items {
    justify-content: space-between;
    padding: 40px 26px 29px;
    max-width: calc(100% - 52px);
    gap: 0;
  }
}

header .header__nav-item.logo a {
  display: flex;
  text-decoration: none;
}

@media only screen and (max-width : 991.98px) {
  header .header__nav-item.logo img {
    width: 130.53px;
  }
}

header .header__nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 150px;
  font-size: 12px;
  line-height: 22px;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: var(--usat-white);
  text-decoration: none;
  transition: color 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
}

header .header__nav-link:hover {
  color: #cbcbcb;
}

@media only screen and (max-width : 991.98px) {
  header .header__nav-link {
    display: none;
  }
}

header .header__menu-button {
  display: none;
  justify-content: center;
  align-items: center;
  border: none;
  box-shadow: unset;
  cursor: pointer;
  transition: 0.2s;
  background: transparent;
  margin: 0px;
  padding: 0px;
}

@media only screen and (max-width : 991.98px) {
  header .header__menu-button {
    display: flex;
  }
}

header .header__menu-button .menu-button {
  width: 30px;
  height: 24px;
  position: relative;
  display: inline-block;
}

header .header__menu-button .menu-button .line {
  position: absolute;
  left: 0px;
  right: 0px;
  margin: 0px auto;
  height: 2px;
  width: 20px;
  background: var(--usat-white);
  transition: 0.7s;
}

header .header__menu-button .menu-button .line:nth-child(1) {
  top: 5px;
}

header .header__menu-button .menu-button .line:nth-child(2) {
  top: 11px;
}

header .header__menu-button .menu-button .line:nth-child(3) {
  top: 17px;
}

header .header__menu-button .menu-button.active .line:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

header .header__menu-button .menu-button.active .line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

header .header__menu-button .menu-button.active .line:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* Header menu Styles */
.header-menu {
  position: fixed;
  inset: 0px;
  z-index: 99;
  display: none;
  flex-direction: column;
  background: var(--usat-black);
  opacity: 0;
  visibility: hidden;
  transform: translate3d(0px, -100%, 0px);
  transition: opacity 700ms step-end, transform 700ms cubic-bezier(0.8, 0, 0.55, 0.94), visibility 700ms step-end, background-color 700ms cubic-bezier(0.8, 0, 0.55, 0.94);
}

@media only screen and (max-width : 991.98px) {
  .header-menu {
    display: flex;
  }
}

.header-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translate3d(0px, 0px, 0px);
  transition: opacity 700ms step-start, transform 700ms cubic-bezier(0.8, 0, 0.55, 0.94), visibility 700ms step-start, background-color 700ms cubic-bezier(0.8, 0, 0.55, 0.94);
}

.header-menu .header-menu__container {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  flex-direction: column;
  gap: 52px;
  padding-top: 203px;
}

.header-menu .header-menu__link {
  font-size: 42px;
  line-height: 1.0952;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--usat-white);
  transition: color 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.header-menu .header-menu__link:hover {
  color: #cbcbcb;
}

@media only screen and (max-width: 401.98px) {
  .header-menu .header-menu__link {
    font-size: 40px;
  }
}

.header-menu__social-items {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 40px;
  display: flex;
  gap: 78px;
}

.header-menu__social-items a svg path {
  transition: fill 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.header-menu__social-items a:hover svg path {
  fill: var(--usat-white);
}

/* Footer Styles */
footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 1302px;
  max-width: calc(100% - 40px);
  height: 100%;
  padding: 0 20px;
  margin: 0 auto;
}

footer .footer__top {
  background-color: #3D3E44;
  padding: 45px 0 0;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

@media only screen and (max-width : 991.98px) {
  footer .footer__top {
    padding: 50px 0 0;
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
  }
}

footer .footer__logo {
  margin-bottom: 16px;
}

@media only screen and (max-width : 991.98px) {
  footer .footer__logo {
    margin-bottom: 8px;
  }
}

footer .footer__links {
  width: 100%;
}

footer .footer__links a {
  display: flex;
  text-decoration: none;
}

footer .footer__social {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px 47.6px;
  padding: 34px 0;
  margin: 0 auto;
}

@media only screen and (max-width : 991.98px) {
  footer .footer__social {
    max-width: 520px;
  }
}

@media only screen and (max-width : 991.98px) {
  footer .social-item {
    flex: 0 0 calc(25% - 47.6px);
  }
}

footer .footer__social a {
  justify-content: center;
}

footer .footer__social a svg path {
  transition: fill 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
}

footer .footer__social a:hover svg path {
  fill: var(--usat-white);
}

footer .footer__site {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 38px;
  padding: 25px 0;
  width: 100%;
  max-width: 811px;
  margin: 0 auto;
}

@media only screen and (max-width : 991.98px) {
  footer .footer__site {
    max-width: 620px;
  }
}

footer .footer__site::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #727272;
  content: '';
}

footer .footer__site a {
  min-width: 130px;
  font-size: 10px;
  line-height: 2.6;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #CBCBCB;
  justify-content: center;
  transition: color 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
}

footer .footer__site a:hover {
  color: var(--usat-white);
}

footer .footer__bottom {
  background-color: var(--usat-dark);
  padding: 13.5px 0;
}

@media only screen and (max-width : 991.98px) {
  footer .footer__bottom {
    padding: 11px 0;
  }
}

footer .footer__copyright {
  font-size: 10px;
  line-height: 2.6;
  letter-spacing: 2px;
  color: #CBCBCB;
  text-transform: uppercase;
  text-align: center;
}

@media only screen and (max-width : 991.98px) {
  footer .footer__copyright {
    line-height: 2;
  }
}

/* Cookies Consent Styles */
.cookies-consent {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  background: #222224BF;
}

.cookies-consent__container {
  position: absolute;
  bottom: 0;
  right: 38px;
  width: 530px;
  max-width: 100%;
  min-height: 391px;
  background-color: var(--usat-gray);
  color: var(--usat-white);
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

@media only screen and (max-width : 991.98px) {
  .cookies-consent__container {
    right: 19px;
  }
}

@media only screen and (max-width : 575.98px) {
  .cookies-consent__container {
    right: 0;
    width: 100%;
  }
}

.cookies-consent__title {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 72px;
  border-bottom: 1px solid var(--usat-white);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.54;
}

.cookies-consent__description {
  font-size: 16px;
  line-height: 1.54;
  padding: 17px 23px;
}

.cookies-consent__description>div:not(:first-child) {
  margin-top: 16px;
}

.cookies-consent__button-group {
  padding: 13px 16px 30px;
}

@media only screen and (max-width : 991.98px) {
  .cookies-consent__button-group {
    padding-top: 3px;
  }
}

.cookies-consent__buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.cookies-consent__buttons .btn {
  font-size: 12px;
  line-height: 22px;
  letter-spacing: 2.4px;
  padding: 8px;
  min-width: unset;
  min-height: 49px;
}

.cookies-consent__buttons .btn-manage {
  position: relative;
  margin-top: 30px;
  padding: 0;
  background-color: transparent;
  border: none;
  font-size: 12px;
  line-height: 1.3;
  letter-spacing: 2.4px;
  color: var(--usat-white);
  text-transform: uppercase;
  cursor: pointer;
}

@media only screen and (max-width : 991.98px) {
  .cookies-consent__buttons .btn-manage {
    margin-top: 20px;
  }
}

.cookies-consent__buttons .btn-manage::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: calc(100% - 2.4px);
  height: 1px;
  background-color: var(--usat-white);
  content: '';
}

/* Disclaimer Styles */
.disclaimer {
  background-color: var(--usat-black);
  color: var(--usat-white);
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  padding: 55px 0 53px;
  overflow: hidden;
}

@media only screen and (max-width : 1279.98px) {
  .disclaimer {
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
    padding: 44px 0 49px;
  }
}

.disclaimer .container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 1303px;
  max-width: calc(100% - 136px);
  height: 100%;
  padding: 0 68px;
  margin: 0 auto;
  z-index: 2;
}

@media only screen and (max-width : 1279.98px) {
  .disclaimer .container {
    max-width: calc(100% - 27px);
    padding: 0 13.5px;
  }
}

.disclaimer .content {
  position: relative;
  background-color: var(--usat-dark);
  border-radius: 12px;
  padding: 32px 26px 26px;
  width: calc(100% - 52px);
}

@media only screen and (max-width : 1279.98px) {
  .disclaimer .content {
    text-align: center;
  }
}

@media only screen and (max-width : 401.98px) {
  .disclaimer .content {
    padding: 32px 20px 26px;
    width: calc(100% - 40px);
  }
}

@media only screen and (max-width : 1279.98px) {
  .disclaimer .content .image {
    display: none;
  }
}

.disclaimer .content .text {
  position: relative;
  width: 475px;
  margin-left: auto;
  margin-right: 60px;
}

@media only screen and (max-width: 1440px) {
  .disclaimer .content .text {
    margin-right: 30px;
  }
}

@media only screen and (max-width: 1340px) {
  .disclaimer .content .text {
    margin-right: 0;
  }
}

@media only screen and (max-width : 1279.98px) {
  .disclaimer .content .text {
    width: 811px;
    max-width: 100%;
    margin: 0 auto;
  }
}

.disclaimer .content h3 {
  font-weight: 500;
  font-size: 28px;
  line-height: 1.143;
  color: var(--usat-white);
  margin: 0;
}

.disclaimer .content p {
  font-size: 10px;
  line-height: 2.6;
  letter-spacing: 2px;
  color: #CBCBCB;
}

.disclaimer__asset {
  position: absolute;
  left: 112px;
  top: -82px;
}

.disclaimer__bg {
  position: absolute;
  left: 0;
  top: 0;
}

.disclaimer .btn-arrow {
  display: none;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 37px;
}

/* Popup Styles */
.popup {
  display: none;
}

.popup .manage-cookies {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: var(--usat-white);
  z-index: 1000;
  background-color: #222224BF;
  -webkit-backdrop-filter: blur(30px);
  backdrop-filter: blur(30px);
  overflow: auto;
  overscroll-behavior: contain;
}

.popup .manage-cookies .popup-content {
  position: relative;
  max-width: 1150px;
  margin: 0 auto;
  padding: 120px 16px 60px;
}

@media only screen and (max-width : 991.98px) {
  .popup .manage-cookies .popup-content {
    padding: 60px 16px 30px;
  }
}

.popup .manage-cookies .popup-content .btn-close {
  position: absolute;
  right: 8px;
  top: 116px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
}

@media only screen and (max-width : 991.98px) {
  .popup .manage-cookies .popup-content .btn-close {
    top: 56px;
  }
}

.popup .manage-cookies .popup-content .btn-accept {
  font-weight: 400;
  font-size: 12px;
  line-height: 1.83;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  text-indent: 2.4px;
  height: 48px;
  min-width: 208px;
  border-radius: 8px;
}

.popup .manage-cookies .popup-content h2 {
  font-weight: 700;
  font-size: 65px;
  line-height: 1.046;
  width: 536px;
  max-width: calc(100% - 30px);
}

@media only screen and (max-width : 991.98px) {
  .popup .manage-cookies .popup-content h2 {
    font-size: 42px;
  }
}

.popup .manage-cookies .popup-content p {
  font-size: 24px;
  line-height: 1.54;
  letter-spacing: 0;
  text-transform: none;
}

@media only screen and (max-width : 991.98px) {
  .popup .manage-cookies .popup-content p {
    font-size: 16px;
  }
}

.popup .manage-cookies .popup-content a {
  color: var(--usat-white);
}

.popup .manage-cookies .popup-content figure {
  margin: 30px 0 60px;
}

@media only screen and (max-width : 991.98px) {
  .popup .manage-cookies .popup-content figure {
    margin: 15px 0 30px;
  }
}

.popup .manage-cookies .popup-content__tab-options {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.popup .manage-cookies .popup-content__tab-option {
  font-size: 24px;
}

@media only screen and (max-width : 991.98px) {
  .popup .manage-cookies .popup-content__tab-option {
    font-size: 16px;
  }
}

.popup .manage-cookies .popup-content__checkbox {
  display: flex;
  align-items: center;
  gap: 60px;
}

@media only screen and (max-width : 991.98px) {
  .popup .manage-cookies .popup-content__checkbox {
    gap: 40px;
  }
}

.popup .manage-cookies .popup-content__checkbox>div {
  display: flex;
  align-items: center;
  gap: 8px;
}

.popup .manage-cookies .popup-content__footer {
  text-align: center;
}