/*colors*/
* {
  list-style: none;
  text-decoration: none;
  margin: 0;
  padding: 0;
  text-align: left;
  border: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  outline: 0;
  font-weight: normal;
  font-size: 1.6rem;
  font-family: "Inter", sans-serif;
}

button {
  background: transparent;
  cursor: pointer;
}

img {
  display: block;
  max-width: 100%;
}

html,
body {
  overflow-x: hidden;
}

body {
  position: relative;
  background-color: #010308;
}
body::before {
  content: "";
  height: 100%;
  width: 0.15rem;
  position: fixed;
  top: 0;
  left: 2.4rem;
  background: rgba(176, 176, 176, 0.1019607843);
  pointer-events: none;
  z-index: 1;
}
body::after {
  content: "";
  height: 100%;
  width: 0.15rem;
  position: fixed;
  top: 0;
  right: 2.4rem;
  background: rgba(176, 176, 176, 0.1019607843);
  pointer-events: none;
  z-index: 1;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  overflow: overlay;
}
@media (max-width: 1250px) {
  html {
    font-size: 55%;
  }
}
@media (max-width: 600px) {
  html {
    font-size: 62.5%;
  }
}

input,
button,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

@font-face {
  font-family: "Patrick Hand";
  src: url("./../../assets/fonts/PatrickHand-Regular.woff2") format("woff2"), url("./../../assets/fonts/PatrickHand-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
.footer__container, .header__content {
  max-width: 1246px;
  padding: 0 1.5rem;
  margin: 0 auto;
}
@media (max-width: 1050px) {
  .footer__container, .header__content {
    padding: 0px 2.4rem;
  }
}

.header {
  width: 100%;
  padding: 2.4rem 0;
  border-bottom: 0.15rem solid rgba(176, 176, 176, 0.1);
}
.header__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  gap: 0;
  width: 100%;
}
.header__logo {
  width: 18rem;
  height: 3.5rem;
}
.header__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.header__text {
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 140%;
  color: #ffffff;
  letter-spacing: 0.028rem;
}

.footer {
  position: relative;
  width: 100%;
  padding: 9.6rem 0 4.8rem;
  border-top: 1px solid rgba(176, 176, 176, 0.06);
  overflow: hidden;
}
.footer__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: 16rem;
  position: relative;
}
.footer__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 3.2rem;
  position: relative;
}
.footer__title {
  font-size: 7.2rem;
  font-family: "Albert Sans", sans-serif;
  font-weight: 400;
  line-height: 120%;
  color: #f6f6f6;
  letter-spacing: -0.2rem;
  position: relative;
}
.footer__title-highlight {
  position: relative;
  display: inline-block;
  font: inherit;
}
.footer__title-highlight::before {
  content: "";
  position: absolute;
  bottom: 0.8rem;
  left: 0;
  width: 100%;
  height: 5rem;
  background-color: #3996be;
  -webkit-transform: rotate(-1.1deg);
  -ms-transform: rotate(-1.1deg);
  transform: rotate(-1.1deg);
  z-index: -1;
}
.footer__description {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 140%;
  color: #b0b0b0;
  max-width: 100%;
}
.footer__button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1.6rem;
  padding: 0.8rem 2.4rem 0.8rem 0.8rem;
  background-color: #ff6249;
  border-radius: 99.9rem;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.footer__button:hover {
  background-color: #ed3315;
  -webkit-transform: translateY(-0.2rem);
  -ms-transform: translateY(-0.2rem);
  transform: translateY(-0.2rem);
}
.footer__button-icon {
  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: 4rem;
  height: 3.2rem;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.footer__button-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.footer__button-text {
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 140%;
  color: #ffffff;
  text-transform: uppercase;
  white-space: nowrap;
}
.footer__image {
  position: relative;
}
.footer__image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 100vw;
  height: 1px;
  background: rgba(176, 176, 176, 0.1019607843);
  pointer-events: none;
}
.footer__image::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 100vw;
  height: 1px;
  background: rgba(176, 176, 176, 0.1019607843);
  pointer-events: none;
}
.footer__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
}
.footer__copyright {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 2rem;
}
.footer__copyright-text {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 140%;
  color: #d1d1d1;
}
.footer__separator {
  width: 1px;
  height: 2rem;
  background-color: rgba(176, 176, 176, 0.2);
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
}
.footer__signature {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1.6rem;
}
.footer__signature-text {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 140%;
  color: #d1d1d1;
}
.footer__signature-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 3.9rem;
  height: 1.4rem;
}
.footer__signature-logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.footer__back-to-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1.6rem;
  cursor: pointer;
}
.footer__back-to-top:hover .s-footer-cta__back-to-top-button {
  background-color: rgba(25, 25, 25, 0.9);
  -webkit-transform: translateY(-0.4rem);
  -ms-transform: translateY(-0.4rem);
  transform: translateY(-0.4rem);
}
.footer__back-to-top-text {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 140%;
  color: #fff3f1;
}
.footer__back-to-top-button {
  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: 3.2rem;
  height: 3.2rem;
  background-color: rgba(25, 25, 25, 0.75);
  border: 1px solid rgba(176, 176, 176, 0.2);
  border-radius: 50%;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.footer__back-to-top-button svg {
  width: 2.4rem;
  height: 2.4rem;
  color: #f6f6f6;
}
@media (max-width: 1440px) {
  .footer {
    padding: 9.6rem 7rem 4.8rem;
  }
  .footer__title {
    font-size: 6.4rem;
  }
}
@media (max-width: 1024px) {
  .footer {
    padding: 8rem 4rem 4rem;
  }
  .footer__container {
    gap: 12rem;
  }
  .footer__content {
    gap: 2.4rem;
  }
  .footer__title {
    font-size: 5.6rem;
  }
  .footer__title-highlight::before {
    height: 4rem;
    bottom: 0.6rem;
  }
  .footer__decoration {
    width: 100%;
    max-width: 90rem;
  }
  .footer__bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 2.4rem;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}
@media (max-width: 768px) {
  .footer {
    padding: 6.4rem 2.4rem 3.2rem;
  }
  .footer__container {
    gap: 8rem;
  }
  .footer__content {
    gap: 2rem;
  }
  .footer__title {
    font-size: 4rem;
    letter-spacing: -0.1rem;
  }
  .footer__title-highlight::before {
    height: 3rem;
    bottom: 0.4rem;
  }
  .footer__description {
    font-size: 1.4rem;
  }
  .footer__button {
    gap: 1.2rem;
    padding: 0.6rem 2rem 0.6rem 0.6rem;
  }
  .footer__button-icon {
    width: 3.2rem;
    height: 2.8rem;
  }
  .footer__button-text {
    font-size: 1.4rem;
  }
  .footer__decoration {
    height: 10rem;
  }
  .footer__copyright {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 1.6rem;
  }
  .footer__separator {
    display: none;
  }
  .footer__copyright-text, .footer__signature-text {
    font-size: 1.4rem;
  }
}
@media (max-width: 480px) {
  .footer {
    padding: 4.8rem 1.6rem 2.4rem;
  }
  .footer__container {
    gap: 6.4rem;
  }
  .footer__content {
    gap: 1.6rem;
  }
  .footer__title {
    font-size: 3.2rem;
  }
  .footer__title-highlight::before {
    height: 2.4rem;
    bottom: 0.3rem;
  }
  .footer__description {
    font-size: 1.2rem;
  }
  .footer__button {
    width: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 1rem 2rem;
  }
  .footer__button-text {
    font-size: 1.2rem;
  }
  .footer__decoration {
    height: 8rem;
  }
  .footer__back-to-top-text {
    font-size: 1.2rem;
  }
  .footer__back-to-top-button {
    width: 2.8rem;
    height: 2.8rem;
  }
  .footer__back-to-top-button svg {
    width: 2rem;
    height: 2rem;
  }
}