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

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

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

label {
  display: block;
}

button {
  border: none;
  background-color: transparent;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

::-moz-placeholder {
  color: inherit;
}

::placeholder {
  color: inherit;
}

textarea {
  display: block;
}

input,
textarea,
button,
select {
  font: inherit;
  color: inherit;
  background-color: transparent;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  border-radius: 0;
}

ul,
ol {
  list-style-type: none;
}

picture,
img {
  display: inline-block;
  max-width: 100%;
  width: 100%;
  height: auto;
  vertical-align: bottom;
  -o-object-fit: cover;
     object-fit: cover;
}

:focus {
  outline: none;
}

:focus-visible {
  outline: 1.5px solid #333333;
  outline-offset: 0px;
}

html,
body {
  overflow-x: clip;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  scroll-padding-top: 25px;
}
@media (prefers-reduced-motion) {
  html {
    scroll-behavior: none;
  }
}

body {
  min-width: 320px;
  font-family: "Source Serif Pro", serif;
  font-size: 0.875rem;
  line-height: 1.5;
  letter-spacing: 0.7px;
  color: #636363;
  -webkit-tap-highlight-color: transparent;
  position: relative;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0px);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0px);
  }
}
@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: translateX(0px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateX(0px) scale(1);
  }
}
.max-width {
  max-width: 1216px;
  margin-left: auto;
  margin-right: auto;
  height: 100%;
  width: calc(100% - clamp(16px, 3.125vw, 32px));
}

.header {
  width: 100%;
}

.header__container {
  padding: clamp(16px, 3.125vw, 24px) 0;
}

.header__top {
  margin-bottom: clamp(16px, 3.125vw, 24px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(16px, 3.125vw, 24px);
}
@media (min-width: 768px) {
  .header__top {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
  }
}
@media (min-width: 1000px) {
  .header__top {
    flex-wrap: nowrap;
  }
}

.header__logo {
  width: 100%;
  height: auto;
  max-width: 349px;
  display: block;
}
@media (min-width: 1000px) {
  .header__logo {
    order: 1;
  }
}

.header__search {
  width: 100%;
  display: grid;
  min-height: 40px;
  grid-template-columns: 1fr 48px;
  max-width: 300px;
  margin: 0 auto;
}
.header__search input,
.header__search button {
  height: 100%;
}
.header__search button {
  background-color: #a28251;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 250ms ease-in-out;
}
.header__search button img {
  width: 24px;
  height: 24px;
  min-width: 24px;
  min-height: 24px;
  transform-origin: center;
  transition: transform 250ms ease-in-out;
  will-change: transform;
  transform: scale(1);
}
.header__search button:focus-visible {
  outline: none;
}
.header__search button:hover {
  background-color: #636363;
}
.header__search button:hover img {
  transform: scale(1.05);
}
.header__search input {
  padding-left: 12px;
  border-top: 2px solid #c0c0c0;
  border-left: 2px solid #c0c0c0;
  background: #f8f8f8;
}
.header__search input:focus-visible {
  outline: none;
}
.header__search input::-moz-placeholder {
  color: #c0c0c0;
}
.header__search input::placeholder {
  color: #c0c0c0;
}
@media (min-width: 768px) {
  .header__search {
    margin: 0 0 0 auto;
  }
}
@media (min-width: 1000px) {
  .header__search {
    order: 2;
    margin: 0;
  }
}

.header__phone {
  background-color: #fff;
  border: 1px solid #a28251;
  padding: 8px 20px;
  text-align: center;
  text-transform: uppercase;
  font-size: clamp(18px, 2.6041666667vw, 20px);
  width: 100%;
  max-width: 328px;
  color: #a28251;
  transition: box-shadow 250ms ease-in-out;
}
.header__phone:hover {
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}
@media (min-width: 768px) {
  .header__phone {
    width: -moz-fit-content;
    width: fit-content;
    text-align: right;
  }
}
.header__phone p:last-child {
  display: flex;
  align-items: center;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
  gap: 8px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .header__phone p:last-child {
    margin: 0 0 0 auto;
  }
}
.header__phone p:last-child img {
  width: 24px;
  height: 24px;
  min-width: 24px;
  min-height: 24px;
}
@media (min-width: 1000px) {
  .header__phone {
    order: 3;
  }
}

.header__nav--mobile-button {
  width: 100%;
  display: grid;
  background-color: #ece7e6;
  height: 52px;
  grid-template-columns: 1fr 52px;
}
@media (min-width: 600px) {
  .header__nav--mobile-button {
    display: none;
  }
}
.header__nav--mobile-button p {
  height: 100%;
  line-height: 52px;
  text-align: left;
  padding-left: 12px;
  color: #000;
}

.header__nav--mobile-button-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #d1d1d1;
}
.header__nav--mobile-button-icon img {
  width: 24px;
  height: 24px;
  min-width: 24px;
  min-height: 24px;
}

.header__nav-content {
  background-color: #ece7e6;
  display: flex;
  flex-direction: column;
  transform: translateY(-1px);
  opacity: 0;
  overflow: hidden;
  transition: opacity 300ms;
}
@media (min-width: 600px) {
  .header__nav-content {
    transform: translateY(0);
    opacity: 1;
    flex-direction: row;
    padding: 0 24px;
  }
}

.header__nav-link {
  width: -moz-fit-content;
  width: fit-content;
  padding: 1rem;
  color: #a28251;
  text-transform: uppercase;
  background-color: transparent;
  transition: background-color 250ms ease-in-out, color 250ms ease-in-out;
}
.header__nav-link:hover {
  background-color: #a28251;
  color: #fff;
}
@media (min-width: 600px) {
  .header__nav-link {
    color: #000;
  }
}

.header__nav-content-wrapper {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 300ms;
}
.header__nav-content-wrapper.active {
  grid-template-rows: 1fr;
}
.header__nav-content-wrapper.active .header__nav-content {
  opacity: 1;
}
@media (min-width: 600px) {
  .header__nav-content-wrapper {
    grid-template-rows: 1fr;
  }
  .header__nav-content-wrapper .header__nav-content {
    opacity: 1;
  }
}

.footer__copyright {
  background-color: #ece7e6;
  padding: clamp(16px, 3.125vw, 24px) 0;
}

.footer__copyright-content {
  color: #828282;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: clamp(12px, 2.0833333333vw, 16px);
}

.footer__banner {
  padding: clamp(24px, 4.1666666667vw, 32px) 24px;
  border: 1px solid #e9e9e9;
  background: #f8f8f8;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: clamp(24px, 4.1666666667vw, 32px);
  margin-bottom: clamp(24px, 4.1666666667vw, 32px);
}
.footer__banner img {
  width: 100%;
  height: auto;
  max-width: 349px;
}

.footer__nav {
  padding: clamp(24px, 4.1666666667vw, 32px) 0 clamp(48px, 8.3333333333vw, 64px);
}

.footer__nav-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  row-gap: 24px;
}

.footer__nav-col {
  width: 100%;
  max-width: 401px;
}
.footer__nav-col h2 {
  color: #a28251;
  font-weight: 400;
  width: 100%;
  font-size: 14px;
  padding: 8px clamp(16px, 2.6041666667vw, 20px);
  border-bottom: 2px solid #e9e9e9;
}

.footer__nav-links {
  width: 100%;
  margin-top: clamp(12px, 2.0833333333vw, 16px);
  padding: 0 clamp(16px, 2.6041666667vw, 20px);
  display: flex;
  flex-direction: column;
}
.footer__nav-links a {
  width: -moz-fit-content;
  width: fit-content;
  color: #636363;
  text-transform: uppercase;
  font-size: 12px;
  padding: 8px 0;
  transition: color 200ms;
}
.footer__nav-links a:hover {
  color: #a28251;
}

.btn {
  border-radius: 4px;
  border: 2px solid #fff;
  background: #a28251;
  color: #fff;
  padding: clamp(16px, 2.6041666667vw, 20px) clamp(24px, 4.1666666667vw, 32px);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0.2px;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  transition: background-color 250ms ease-in-out, color 250ms ease-in-out;
}
.btn:hover {
  background-color: #fff;
  color: #60546a;
}

.btn--secondary {
  padding: 14px;
  border: 1px solid #fff;
  background: #a28251;
  color: #fff;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 1px;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  transition: background-color 250ms ease-in-out;
}
.btn--secondary:hover {
  background-color: #636363;
}

.link {
  position: relative;
  white-space: nowrap;
}
.link::before {
  content: "";
  width: 100%;
  height: 1px;
  border-radius: 100vmax;
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: currentColor;
  transform-origin: center;
  will-change: transform;
  backface-visibility: hidden;
  transform: scaleX(0);
  transition: transform 200ms ease-in-out;
}
.link:hover::before {
  transform: scaleX(1);
}

.hero {
  background-image: url("../../assets/images/hero-bg.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  color: #fff;
  padding: clamp(48px, 8.3333333333vw, 64px) 0;
  display: none;
}
@media (min-width: 1000px) {
  .hero {
    display: block;
  }
}

.hero__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 48px;
  padding-left: 40px;
}
@media (min-width: 1000px) {
  .hero__content {
    flex-direction: row;
  }
}

.hero__header {
  min-width: 441px;
  width: 100%;
}
.hero__header h1 {
  font-size: 32px;
  line-height: 1.2;
  font-weight: 600;
  margin-bottom: 8px;
  max-width: 441px;
}
@media (min-width: 1000px) {
  .hero__header h1 {
    animation: fadeInRight 700ms ease-out 200ms forwards;
  }
}
.hero__header p {
  font-size: 20px;
  line-height: 1.6;
  color: #ddd;
  margin-bottom: 48px;
  max-width: 357px;
}
@media (min-width: 1000px) {
  .hero__header p {
    animation: fadeInRight 700ms ease-out 400ms forwards;
  }
}
@media (min-width: 1000px) {
  .hero__header p,
  .hero__header h1,
  .hero__header .btn {
    opacity: 0;
    transform: translateX(30px);
    will-change: transform, opacity;
  }
}
@media (min-width: 1000px) {
  .hero__header .btn {
    animation: fadeInRight 700ms ease-out 600ms forwards;
  }
}

.hero__image {
  width: 100%;
  max-width: 693px;
  height: auto;
  transform-origin: center;
}
@media (min-width: 1000px) {
  .hero__image {
    opacity: 0;
    transform: translateX(0px) scale(0.98);
    animation: fadeInScale 800ms ease-out 200ms forwards;
  }
}
.hero__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

@media (min-width: 1000px) {
  .hero--mobile {
    display: none;
  }
}

.hero--mobile__content {
  background-color: #60546a;
  padding: 16px 12px;
}
.hero--mobile__content h1 {
  font-size: 19px;
  color: #fff;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 5px;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 16px;
}
.hero--mobile__content .btn--secondary {
  margin: 0 auto;
}

.info {
  padding: 64px 0 32px;
  display: none;
}
@media (min-width: 1000px) {
  .info {
    display: block;
  }
}

.info__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  background-color: #60546a;
  padding: 4px 4px 4px 16px;
  margin-bottom: 24px;
}
.info__header h2 {
  color: #fff;
  font-size: 19px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 5px;
  text-transform: uppercase;
}
.info__header .btn--secondary {
  flex-shrink: 0;
}

.info__nav {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 8px;
}

.info__nav-button {
  padding: 2px 12px;
  color: #767676;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.7px;
  border: 1px solid #e9e9e9;
  border-bottom: none;
  background: #fff;
  transition: background-color 200ms;
  cursor: pointer;
}
.info__nav-button:focus-visible {
  outline: none;
}
.info__nav-button.active, .info__nav-button:hover {
  background-color: #f8f8f8;
}

.info__tabs {
  padding: 20px;
  border: 1px solid #e9e9e9;
  background-color: #fff;
  overflow: hidden;
  transition: height 350ms ease;
}

.info__tab {
  display: none;
}
.info__tab .info__tab-content-wrapper {
  transition: opacity 350ms;
  opacity: 0;
}
.info__tab.active {
  display: block;
}
.info__tab.active .info__tab-content-wrapper {
  opacity: 1;
}
.info__tab h3 {
  width: 100%;
  color: #636363;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.7px;
  padding-bottom: 12px;
  border-bottom: 1px solid #e9e9e9;
}

.info__tab-content {
  padding-top: 20px;
}

.info__tab-content-text {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.info__tab-content-text h4 {
  font-size: 14px;
  font-weight: 700;
}

.tab-1-content {
  display: grid;
  grid-template-columns: 266px 1fr;
  gap: 24px;
}
.tab-1-content .info__tab-content-img img {
  width: 100%;
  max-width: 195px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.tab-2-content {
  display: grid;
  grid-template-columns: 394px 1fr;
  gap: 24px;
}
.tab-2-content .info__tab-content-left-col {
  padding: 0 16px;
  color: #a28251;
}
.tab-2-content .info__tab-content-left-col ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.tab-2-content .info__tab-content-left-col li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 8px;
}
.tab-2-content .info__tab-content-left-col li div h4 {
  margin-bottom: 8px;
  font-size: 14px;
}

.coming-soon {
  padding: clamp(24px, 4.1666666667vw, 32px) 0;
}

.coming-soon h2 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: clamp(16px, 2.6041666667vw, 24px);
}

.coming-soon__content {
  display: flex;
  flex-direction: column;
  gap: clamp(12px, 2.0833333333vw, 16px);
}

.coming-soon__card {
  overflow: hidden;
  border: 1px solid #e9e9e9;
  padding: clamp(32px, 5.2083333333vw, 48px) clamp(16px, 2.6041666667vw, 20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(32px, 5.2083333333vw, 48px);
}
@media (pointer: fine) and (hover: hover) {
  .coming-soon__card {
    padding: clamp(32px, 5.2083333333vw, 48px) clamp(16px, 2.6041666667vw, 20px) 32px;
  }
}
.coming-soon__card figure {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.coming-soon__card figure img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.coming-soon__card figure figcaption {
  color: #828282;
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.3;
}

.coming-soon__card-1 .coming-soon__card-images {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 24px;
       column-gap: 24px;
  row-gap: 16px;
}
.coming-soon__card-1 .coming-soon__card-images figure {
  width: 100%;
  max-width: 304px;
}

.coming-soon__card-2 .coming-soon__card-images {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  row-gap: 16px;
}
.coming-soon__card-2 .coming-soon__card-images figure {
  width: clamp(90px, 14.7135416667vw, 136px);
}
.coming-soon__card-2 .coming-soon__card-images figure img {
  width: 100%;
  max-width: 124px;
}
.coming-soon__card-2 .coming-soon__card-images figure figcaption {
  font-size: 12px;
}
.coming-soon__card-2 .coming-soon__card-images figure:last-child {
  width: 136px;
  margin-left: 2px;
  margin-right: 2px;
}
.coming-soon__card-2 .coming-soon__card-images figure:last-child img {
  width: clamp(90px, 14.7135416667vw, 124px);
}
@media (min-width: 965px) {
  .coming-soon__card-2 .coming-soon__card-images figure:last-child {
    margin-left: 24px;
    margin-right: 0px;
  }
}

:where(.coming-soon__card-3, .coming-soon__card-4) .coming-soon__card-images {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
  row-gap: 12px;
}
:where(.coming-soon__card-3, .coming-soon__card-4) .coming-soon__card-images figure {
  width: clamp(120px, 41.6666666667vw, 150px);
  margin-inline: -2px;
}
@media (min-width: 768px) {
  :where(.coming-soon__card-3, .coming-soon__card-4) .coming-soon__card-images figure {
    margin-inline: -4px;
  }
}
:where(.coming-soon__card-3, .coming-soon__card-4) .coming-soon__card-images figure figcaption {
  font-size: 12px;
}
@media (min-width: 1080px) {
  :where(.coming-soon__card-3, .coming-soon__card-4) .coming-soon__card-images figure:last-child {
    margin-left: 24px;
    margin-right: 0px;
  }
}

.coming-soon__card-4 .coming-soon__card-images figure {
  margin-inline: 0px;
}
.coming-soon__card-4 .coming-soon__card-images figure figcaption {
  font-size: clamp(10px, 1.5625vw, 12px);
}
@media (min-width: 768px) {
  .coming-soon__card-4 .coming-soon__card-images figure {
    margin-inline: 0px;
  }
}
@media (min-width: 1080px) {
  .coming-soon__card-4 .coming-soon__card-images figure:last-child {
    margin-left: 24px;
    margin-right: 0px;
  }
}

.coming-soon__card-content {
  text-align: center;
}
.coming-soon__card-content .btn--secondary {
  margin-inline: auto;
}
@media (pointer: fine) and (hover: hover) {
  .coming-soon__card-content .btn--secondary {
    transform: translateY(80px);
    opacity: 0;
    transition: transform 450ms cubic-bezier(0.4, 0, 0.2, 1), opacity 450ms cubic-bezier(0.4, 0, 0.2, 1), background-color 250ms ease-in-out, color 250ms ease-in-out;
  }
}

.coming-soon__card-content-text {
  font-size: clamp(22px, 3.125vw, 24px);
  color: #828282;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 32px;
}
@media (pointer: fine) and (hover: hover) {
  .coming-soon__card-content-text {
    transform: translateY(48px);
    transition: transform 450ms cubic-bezier(0.4, 0, 0.2, 1);
  }
}
.coming-soon__card-content-text p:first-child {
  font-weight: 600;
}

@media (pointer: fine) and (hover: hover) {
  .coming-soon__card:hover .coming-soon__card-content .coming-soon__card-content-text {
    transform: translateY(0px);
  }
  .coming-soon__card:hover .coming-soon__card-content .btn--secondary {
    transform: translateY(0px);
    opacity: 1;
  }
}
.testimonials {
  display: none;
  padding: 64px 0 48px;
}
@media (min-width: 1250px) {
  .testimonials {
    display: block;
  }
}
.testimonials h2 {
  color: #a28251;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.7px;
}

.testimonials__content {
  display: grid;
  grid-template-columns: 40px 1fr 40px;
  align-items: center;
  gap: 24px;
}

.testimonials__viewport {
  overflow: hidden;
}

.testimonials__container {
  display: flex;
  gap: 24px;
  align-items: stretch;
  width: -moz-max-content;
  width: max-content;
  transition: transform 750ms cubic-bezier(0.19, 1, 0.22, 1);
  will-change: transform;
}

.testimonials__button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 250ms ease-in-out, transform 250ms ease-in-out;
}
.testimonials__button:hover {
  background-color: #c2d5f7;
}
.testimonials__button:focus-visible {
  outline: none;
}
.testimonials__button:active {
  transform: scale(0.9);
}
.testimonials__button img {
  width: 100%;
  height: 100%;
}
.testimonials__button:disabled {
  opacity: 0.25;
  pointer-events: none;
  cursor: auto;
}
.testimonials__button:disabled:hover, .testimonials__button:disabled:active {
  background-color: transparent;
}

.testimonials__button--next {
  transform: rotate(180deg);
}
.testimonials__button--next:active {
  transform: rotate(180deg) scale(0.9);
}

.testimonials__slide {
  width: 346px;
  padding: 20px;
  font-family: "Helvetica Neue", "Roboto", Helvetica, Arial, sans-serif;
}
.testimonials__slide .testimonials__slide-text {
  margin-bottom: 8px;
  color: #636363;
  font-weight: 400;
}
.testimonials__slide .testimonials__slide-author {
  color: #191919;
}

.about-page {
  padding: clamp(48px, 8.3333333333vw, 64px) 0;
  display: flex;
  flex-direction: column;
  gap: clamp(24px, 4.1666666667vw, 32px);
}

.about-page__text {
  display: flex;
  flex-direction: column;
  gap: 12px;
  opacity: 0;
  transform: translateX(30px);
  will-change: transform, opacity;
}
.about-page__text:nth-child(1) {
  animation: fadeInRight 800ms ease-out 100ms forwards;
}
.about-page__text:nth-child(2) {
  animation: fadeInRight 800ms ease-out 300ms forwards;
}
.about-page__text:nth-child(3) {
  animation: fadeInRight 800ms ease-out 500ms forwards;
}
.about-page__text:nth-child(4) {
  animation: fadeInRight 800ms ease-out 700ms forwards;
}
.about-page__text:nth-child(5) {
  animation: fadeInRight 800ms ease-out 900ms forwards;
}
.about-page__text:nth-child(6) {
  animation: fadeInRight 800ms ease-out 1100ms forwards;
}

.about-page__text h2 {
  color: #636363;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0.7px;
  font-weight: 600;
}

.contact-page {
  padding: clamp(48px, 8.3333333333vw, 64px) 0;
}
@media (min-width: 1000px) {
  .contact-page {
    display: grid;
    gap: 48px;
    align-items: center;
    grid-template-columns: 1fr 560px;
  }
}

.contact-info {
  display: none;
}
@media (min-width: 1000px) {
  .contact-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    opacity: 0;
    transform: translateX(-30px);
    will-change: transform, opacity;
    animation: fadeInLeft 800ms ease-out 100ms forwards;
  }
}

.contact-form__wrapper {
  opacity: 0;
  transform: translateX(30px);
  will-change: transform, opacity;
  animation: fadeInRight 800ms ease-out 100ms forwards;
}

.contact-form__wrapper h1 {
  margin-bottom: clamp(12px, 2.0833333333vw, 16px);
  color: #636363;
  font-size: clamp(22px, 3.125vw, 24px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-form__control {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-form__control label {
  color: #636363;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.7px;
}
.contact-form__control label span {
  color: #df280a;
}

.contact-form__control :where(input[type=text], textarea) {
  width: 100%;
  max-width: 365px;
  border: 1px solid #c0c0c0;
  padding: 8px;
  background: #fff;
  transition: border-color 200ms ease-in-out;
}
.contact-form__control :where(input[type=text], textarea).error:not(:focus-visible) {
  border-color: #df280a;
}

.contact-form__control textarea {
  width: 100%;
  max-width: 450px;
  resize: none;
  height: 80px;
}

.contact-form__control--checkbox label {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}
.contact-form__control--checkbox label input {
  position: absolute;
  opacity: 0;
}
.contact-form__control--checkbox label .contact-form__control-box {
  width: 24px;
  height: 24px;
  min-width: 24px;
  min-height: 24px;
  border: 1px solid #c0c0c0;
  transition: border-color 200ms ease-in-out;
}
.contact-form__control--checkbox label .contact-form__control-box-icon {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  opacity: 0;
  transition: opacity 250ms cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity;
}
.contact-form__control--checkbox label .contact-form__control-box-text a {
  position: relative;
  white-space: nowrap;
}
.contact-form__control--checkbox label .contact-form__control-box-text a::before {
  content: "";
  width: 100%;
  height: 1px;
  border-radius: 100vmax;
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: #000;
  transform-origin: center;
  will-change: transform;
  backface-visibility: hidden;
  transform: scaleX(0);
  transition: transform 200ms ease-in-out;
}
.contact-form__control--checkbox label .contact-form__control-box-text a:hover::before {
  transform: scaleX(1);
}
.contact-form__control--checkbox label:hover:not(:has(input:checked)) .contact-form__control-box-icon {
  opacity: 0.2;
}
.contact-form__control--checkbox label:has(input:checked) .contact-form__control-box-icon {
  opacity: 1;
}
.contact-form__control--checkbox label:has(input.error) .contact-form__control-box {
  border-color: #df280a;
}

.contact-form__box {
  padding-top: clamp(12px, 2.0833333333vw, 16px);
  border-top: 1px solid #e9e9e9;
}
.contact-form__box .btn--secondary {
  padding: clamp(8px, 1.5625vw, 12px) clamp(24px, 4.1666666667vw, 32px);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.5;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.form-errors {
  margin-bottom: clamp(16px, 2.6041666667vw, 24px);
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.form-error,
.form-success-text {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 200ms cubic-bezier(0.4, 0, 0.2, 1);
  will-change: grid-template-rows;
}
.form-error.visible,
.form-success-text.visible {
  grid-template-rows: 1fr;
}
.form-error.visible span,
.form-success-text.visible span {
  opacity: 1;
}
.form-error span,
.form-success-text span {
  opacity: 0;
  overflow: hidden;
  transition: opacity 300ms cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity;
  color: #df280a;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.7px;
}

.form-success-text span {
  color: #2e801a;
  font-size: 14px;
}/*# sourceMappingURL=style.css.map */