body {
  user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  scroll-behavior: smooth;
}

body * {
  scroll-behavior: smooth;
}

@font-face {
  font-family: "Gilroy";
  src: url("../assets/fonts/Gilroy-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Gilroy Semibold";
  src: url("../assets/fonts/Gilroy-Bold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: "Gilroy Bold";
  src: url("../assets/fonts/Gilroy-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  font-family: "proxima-nova-extra-wide", sans-serif;
  background: #fefefe;
  color: #1a1a1a;
}

* a {
  text-decoration: none;
  color: #1a1a1a;
  font-family: "proxima-nova-extra-wide", sans-serif;
  transition: all 0.5s;
}

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

body.dark-theme {
  background: #1a1a1a;
}

.dark-theme .dark-theme-text {
  color: #fefefe;
}

.dark-theme .dark-theme-text-light-white {
  color: #fbfbfb;
}

.dark-theme .dark-theme-text-creamy {
  color: #f2f2f2;
}

.dark-theme .dark-theme-text-yellow {
  color: #fee440;
}

.dark-theme .dark-theme-text-dark-grey {
  color: #484848;
}

.dark-theme .dark-theme-text-grey {
  color: #acacac;
}

.dark-theme .dark-theme-text-black {
  color: #1a1a1a;
}

.dark-theme .dark-theme-text-light-yellow {
  color: #fff3a7;
}

.dark-theme .header__nav a {
  color: #fefefe;
}

.dark-theme .footer svg {
  fill: #fefefe;
}

.dark-theme .block-white {
  background: #f2f2f2;
}

.dark-theme .text-black {
  color: #1a1a1a;
}

.header {
  padding: 22px 36px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header__actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.text-bold {
  text-transform: uppercase;
  font-weight: 700;
}

.text-semibold {
  text-transform: uppercase;
  font-weight: 600;
}

.header__nav a {
  font-family: "Gilroy", sans-serif;
  font-size: 20px;
  margin-right: 52px;
}

.header__nav a:hover {
  opacity: 0.4;
}

.toggle {
  width: 145px;
  height: 57px;
  background: #f1f1f1;
  border-radius: 39px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 27px;
  cursor: pointer;
  position: relative;
  transition: all 0.3s;
  margin-right: 12px;
}

.toggle__icon {
  font-size: 28px;
  z-index: 1;
  transition: color 0.3s;
}

.highlight {
  position: absolute;
  width: 67px;
  height: 45px;
  border-radius: 26px;
  background: #ffe44d;
  top: 50%;
  transform: translateY(-50%);
  left: 5px;
  transition: left 0.3s;
}

.toggle.night .highlight {
  left: calc(100% - 72px);
}

.nightBtn {
  background: #fde43e;
  color: #1a1a1a;
}

.icon-marquee {
  overflow: hidden;
  width: 100%;
  margin-top: 24px;
}

.icon-track {
  display: flex;
  gap: 40px;
  will-change: transform;
}

.icon-holder {
  position: relative;
  width: 160px;
  height: 70px;
  padding: 10px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-holder img {
  position: absolute;
  inset: 0;
  width: 90%;
  height: 90%;
  object-fit: contain;
  margin: auto;
  transition: opacity 0.3s, transform 0.3s;
}

.icon-track__icon-color {
  opacity: 0;
  transform: scale(0.98);
}

.icon-holder:hover .icon-track__icon {
  opacity: 0;
  transform: scale(1.1);
}

.icon-holder:hover .icon-track__icon-color {
  opacity: 1;
  transform: scale(1.1);
}

.call-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 19px 50px;
  border: 1px solid #1a1a1a;
  border-radius: 40px;
}

.call-btn:hover {
  border: 1px solid #fde43e;
  background: #fde43e;
}

.call-btn__svg {
  margin-right: 8px;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 42px 36px 111px;
  font-family: "Gilroy Semibold", sans-serif;
}

.footer .social-item {
  display: flex;
  align-items: center;
  font-family: "Gilroy Semibold", sans-serif;
  transition: all 0.5s;
}

.footer .social-item:hover {
  opacity: 0.7;
}

.footer .social-item img {
  margin-right: 8px;
  width: 20px;
  height: 20px;
}

.footer .qr {
  width: 170px;
}

.social-item:not(:last-child) {
  margin-bottom: 12px;
}

.footer-logo {
  display: block;
  margin-bottom: 26px;
}

.footer__contacts {
  text-align: right;
}

.footer__phone {
  margin: 12px 0;
  font-family: "Gilroy Semibold", sans-serif;
  transition: all 0.5s;
}

.footer__phone:hover {
  opacity: 0.7;
}

.flex {
  display: flex;
  align-items: center;
}

.glass {
  background: rgba(255, 255, 255, 0.2) !important;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fefefe;
}

.mb-24 {
  margin-bottom: 24px;
}

.mb-33 {
  margin-bottom: 33px;
}

.footer__contacts-mobile {
  display: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style-position: inside;
}

.reviews {
  font-size: 96px;
  padding: 60px 0 105px 36px;
}

.reviews__holder {
  display: flex;
  overflow: scroll;
  scrollbar-width: thin;
  scrollbar-color: #aaa transparent;
}

.reviews__holder::-webkit-scrollbar {
  height: 8px;
}

.reviews__holder::-webkit-scrollbar-track {
  background: #f0f0f0;
  border-radius: 4px;
}

.reviews__holder::-webkit-scrollbar-thumb {
  background: #aaa;
  border-radius: 4px;
}

.reviews__holder::-webkit-scrollbar-thumb:hover {
  background: transparent;
}

.review {
  flex: 0 0 443px;
  height: 592px;
  border-radius: 20px;
  overflow: hidden;
  margin-right: 10px;
  background: #000;
}

.review iframe {
  width: 100%;
  height: 100%;
  border: none;
  object-fit: cover;
  display: block;
}

.review blockquote.instagram-media {
  background: #000;
  border: none !important;
  border-radius: 20px;
  overflow: hidden;
  margin: 0 auto !important;
  max-width: 443px;
  width: 100%;
  height: 100%;
}

.loader {
  display: none;
  width: 40px !important;
  margin: 0 auto;
}

.m-0 {
  margin: 0;
}

.modal {
  position: fixed;
  background: rgba(0, 0, 0, 0.7);
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  display: none;
}

.modal-content {
  position: relative;
  width: 80%;
  max-height: 90%;
  border-radius: 40px;
  background: #fefefe;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 62px 20px 70px;
}

.modal-close {
  position: absolute;
  right: 42px;
  top: 42px;
  cursor: pointer;
}

.dark-theme .modal-close,
.modal-close-dark {
  display: none;
}

.dark-theme .modal-close-dark {
  display: block;
}

.dark-theme .modal-content {
  background: #1a1a1a;
}

.modal-title {
  margin-bottom: 42px;
  text-transform: uppercase;
  font-size: 40px;
  font-weight: 700;
}

.modal-success .modal-title {
  margin: 0;
}

.modal-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 80%;
}

.modal-form input {
  font-family: "Gilroy", sans-serif;
  width: 100%;
  border: none;
  outline: none;
  padding: 28px 24px;
  font-size: 20px;
  border-radius: 10px;
  color: #666666;
  background: #f2f2f2;
  margin-bottom: 16px;
}

.modal-form input::placeholder {
  color: #afafaf;
}

.modal-form input:last-child {
  margin-bottom: 66px;
}

.modal-form .rules {
  display: flex;
  align-items: center;
  margin-right: auto;
}

.modal-form .checkbox input {
  display: none;
}

.modal-form .checkmark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: #fee440;
  border-radius: 10px;
  cursor: pointer;
  position: relative;
}

.modal-form .checkmark__svg {
  width: 50%;
  height: 50%;
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.modal-form .checkbox input:checked + .checkmark .checkmark__svg {
  opacity: 1;
  transform: scale(1);
}

.modal-form .rules__text {
  margin-left: 13px;
  color: #1a1a1a;
  font-family: "Gilroy", sans-serif;
  font-size: 16px;
}

.modal-form .rules__yellow {
  color: #fee441;
  cursor: pointer;
  font-family: "Gilroy", sans-serif;
}

.modal-form button {
  display: block;
  width: 100%;
  border: none;
  outline: none;
  padding: 28px 0;
  font-size: 20px;
  font-weight: 700;
  border-radius: 20px;
  cursor: pointer;
  background: #fde43e;
  font-family: "proxima-nova-extra-wide", sans-serif;
  margin-top: 28px;
}

@media (max-width: 1200px) {
  .reviews {
    padding: 32px 0 32px 10px;
    font-size: 32px;
  }

  .reviews__holder {
    margin-top: 14px;
  }

  .review {
    height: 273px;
    flex: 0 0 auto;
  }

  .header .call-btn,
  .header .header__nav {
    display: none;
  }

  .header {
    padding: 30px 20px;
  }

  .footer {
    padding: 5px 10px 39px 10px;
  }

  .footer__contacts {
    display: none;
  }

  .footer__contacts-mobile {
    display: block;
    margin-top: 23px;
    font-size: 12px;
  }

  .footer-logo {
    margin-bottom: 23px;
  }

  .social-item {
    font-size: 12px;
  }

  .social-item:not(:last-child) {
    margin-bottom: 2px;
  }

  .footer__phone {
    margin: 5px 0;
  }

  .footer .qr {
    width: 35%;
  }
}
