/*
UX/UI DESIGN AND FRONTEND DEVELOPMENT BY:
Evgenii Golubev | DIVISIDE.RU | telegram - @divside
*/

@font-face {
  font-family: 'Cramaten';
  font-weight: 400;
  src: url('../fonts/Cramaten.woff2') format('woff2');
  font-style: normal;
}


/* DEFAULT  */

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  list-style-type: none;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  outline: none;

  font-family: "Manrope", sans-serif;
  font-optical-sizing: auto;
  font-size: 16px;
  line-height: 1;
  font-weight: 500;
  font-style: normal;
  color: #232323;
}

:root {
  --white: #ffffff;
  --black: #232323;
  --accent: #F66410;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  position: relative;
  min-height: 100%;

  overflow-x: hidden;
}

main {
  min-height: 100%;
  height: 100%;
}

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #F8F8F8;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 70;
}

.spinner {
  width: 50px;
  height: 50px;
  border: 5px solid #D0D0D0;
  border-top-color: #CC5510;
  border-radius: 50%;
  animation: spinPreloader 1s linear infinite;
}

@keyframes spinPreloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  text-decoration: none;
}

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

span {
  font: inherit;
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  color: inherit;
}

section {
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
  overflow: hidden;
}

.container {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1200px;
  padding: 0 16px;
}

img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  user-select: none;
}

button {
  background: transparent;
  cursor: pointer;
}

.title {
  font-family: 'Cramaten';
  font-size: 168px;
  line-height: 153px;
  text-transform: uppercase;
}

.text {
  font-size: 15px;
  line-height: 22px;
}

.btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;

  padding: 43px 56px 40px 56px;
  border-radius: 20px;

  font-family: "Manrope", sans-serif;
  font-optical-sizing: auto;
  font-size: 14px;
  letter-spacing: 0.3em;
  font-weight: 800;
  font-style: normal;
  color: #fff;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;

  background: linear-gradient(135deg, #EB5600 0%, #FF7526 100%);

  /* Внутренняя и внешняя тень */
  box-shadow: inset 0px 0px 8px #FFA471,
    0px 28px 50px rgba(206, 75, 0, 0.22);

  cursor: pointer;
  transition: 0.2s;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -40%;
  display: flex;
  width: 48px;
  height: 120%;
  filter: blur(16px);
  background: white;
  transform: translateY(-10%) rotate(15deg);
  opacity: 0.8;
}

.btn:hover {
  transform: scale(0.98);
  transition: 0.2s;
}

.btn:hover::before {
  left: 140%;
  transition: 0.5s !important;
}

@media (max-width: 1500px) {}

@media (max-width: 1300px) {
  .container {
    max-width: 1024px;
  }

  .title {
    font-size: 96px;
    line-height: 86px;
  }

  .text {
    font-size: 15px !important;
    line-height: 22p !important;
  }

}

@media (max-width: 1100px) {
  .container {
    max-width: 750px;
  }

  .title {
    font-size: 60px;
    line-height: 58px;
  }

  .text {
    font-size: 12px !important;
    line-height: 20px !important;
  }

  .btn {
    font-size: 11px;
    line-height: 15px;
    padding: 34px 48px 32px 48px;
  }
}

@media (max-width: 768px) {
  .container {
    max-width: 100%;
    padding: 0 16px;
  }
}

/* END DEFAULT  */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* XXXXXXXXXXXXXXXXXXXXX */
.header {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: center;
  z-index: 50;
}

/* 
.header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, white, transparent);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  mask: linear-gradient(to bottom,
      black 45%,
      transparent 100%);
  z-index: -1;
} */

.header__pc {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  transition: 0.2s;
}

.header__pc--bg {
  background: white;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: 0.2s;
}


.header__pc-container {
  flex-direction: row;
  max-width: 100%;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
}

.header__pc-logo-wrapper {
  display: flex;
  cursor: pointer;
  transition: 0.2s;
}

.header__pc-logo-img {
  display: flex;
  width: auto;
  height: 98px;
  flex: 0 0 auto;
  object-fit: contain;
}

.header__pc-logo-wrapper:hover {
  transform: scale(0.95);
  opacity: 0.65;
  transition: 0.2s;
}

.header__pc-nav {
  display: flex;
}

.header__pc-list {
  display: flex;
  gap: 124px;
}

.header__pc-item {
  display: flex;
  transition: 0.2s;
}

.header__pc-link {
  display: flex;
  font-size: 15px;
  padding: 16px;
  white-space: nowrap;
  transition: 0.2s;
}

.header__pc-item:hover .header__pc-link {
  color: var(--accent);
  transition: 0.2s;
}

.header__pc-extra {
  display: flex;
  flex-direction: column;
}

.header__pc-phone {
  font-size: 20px;
  font-weight: 600;
  white-space: nowrap;
  margin-bottom: 8px;
  transition: 0.2s;
}

.header__pc-phone:hover {
  color: var(--accent);
  transition: 0.2s;
}

.header__pc-hours {
  display: flex;
  flex-direction: column;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.4;
  white-space: nowrap;
}

.header__pc-hours span {
  font-weight: 700;
}

.header__mob {
  position: relative;
  width: 100%;
  display: none;
}

.header__mob-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 100%;
  padding: 16px;
}

.header__mob-logo-wrapper {
  display: flex;
  cursor: pointer;
  z-index: 1;
}

.header__mob-logo-img {
  display: flex;
  width: auto;
  height: 64px;
  flex: 0 0 auto;
  object-fit: contain;
}

.header__mob-wrapper {
  position: absolute;
  top: 0;
  left: -100%;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100svh;
  padding: 16px;
  background: white;
  z-index: 2;
  transition: 0.2s;
}

.header__mob-wrapper--active {
  position: absolute;
  top: 0;
  left: 0;
  transition: 0.2s;
}

.header__mob-nav {
  display: flex;
  width: 100%;
}

.header__mob-list {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.header__mob-item {
  display: flex;
}

.header__mob-link {
  font-size: 60px;
  line-height: 66px;
}

.header__mob-extra {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-top: auto;
}

.header__mob-phone {
  font-size: 24px;
  line-height: 33px;
  font-weight: 600;
  margin-bottom: 16px;
}

.header__mob-hours {
  display: flex;
  flex-direction: column;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.4;
  white-space: nowrap;
}

.header__mob-hours span {
  font-weight: 700;
}

.header__menu-btn-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--accent);
  z-index: 3;
}

.header__menu-btn-open-svg {
  display: flex;
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
}

.header__menu-btn-close-svg {
  display: flex;
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  display: none;
}

.header__menu-btn-wrapper--active .header__menu-btn-open-svg {
  display: none;
}

.header__menu-btn-wrapper--active .header__menu-btn-close-svg {
  display: flex;
}


@media (max-width: 1500px) {}

@media (max-width: 1300px) {
  .header__pc-list {
    gap: 24px;
  }
}

@media (max-width: 1100px) {
  .header__pc {
    display: none;
  }

  .header__mob {
    display: flex;
  }
}

@media (max-width: 768px) {}

/* XXXXXXXXXXXXXXXXXXXXX */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* XXXXXXXXXXXXXXXXXXXXX */
.hero {
  height: 100vh;
  max-height: 1080px;
  background: url('../img/bg1.jpg') center/cover no-repeat;
}

.hero__container {
  height: 100%;
  flex-direction: row;
  gap: 56px;
}

.hero__col {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 50%;
}

.hero__col--one {
  width: calc(40% - 28px);
}

.hero__col--two {
  width: calc(60% - 28px);
  justify-content: center;
}

.hero__img-wrapper {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  width: auto;
  height: 89%;
}

.hero__img {
  display: flex;
  width: auto;
  height: 100%;
  object-fit: contain;
}

.hero__circle-man {
  position: absolute;
  bottom: 48px;
  left: 55%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 45px;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 110px 0 rgba(33, 40, 47, 0.2);
  backdrop-filter: blur(4px);
  border-radius: 50%;
  z-index: 2;

  animation: nameMove 1s ease-in-out infinite alternate;
}

@keyframes nameMove {
  from {
    transform: translateX(-48%);
  }

  to {
    transform: translateX(-52%);
  }

}

.hero__circle-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 230px;
  height: 230px;
  flex: 0 0 auto;
  border-radius: 50%;
  gap: 16px;
  background: white;
}

.hero__circle-name {
  max-width: 170px;
  font-size: 20px;
  line-height: 26px;
  letter-spacing: 0.04em;
  font-weight: 800;
  text-transform: uppercase;
  text-align: center;
}

.hero__circle-who {
  max-width: 140px;
  text-align: center;
  font-size: 15px;
  line-height: 20px;
  font-weight: 600;
  color: #BABABA;
}

.hero__text-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;

  margin-top: 40px;
  margin-bottom: 19px;
}

.hero__title {
  font-size: 140px;
  line-height: 120px;
  z-index: 2;
}

.hero__subtitle {
  position: absolute;
  right: 50px;
  bottom: 30px;
  max-width: 290px;
  font-size: 15px;
  line-height: 22px;
  color: #ADADAD;
  font-weight: 700;
  z-index: 2;
}

.hero__subtitle span {
  color: #292929;
}

.hero__circle-address {
  position: absolute;
  top: 0;
  right: -110px;
  display: flex;
  width: 192px;
  height: 192px;
  flex: 0 0 auto;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: white;
  border-radius: 50%;
  border: 3px solid #F3F3F3;
}

.hero__circle-icon {
  display: flex;
  width: 40px;
  height: auto;
  flex: 0 0 auto;
  object-fit: contain;
}

.hero__circle-text {
  max-width: 120px;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 0.02em;
  font-weight: 800;
  text-transform: uppercase;
  text-align: center;
}

.hero__btn-wrapper {
  display: flex;
  width: 100%;
  gap: 56px;
  align-items: center;
  justify-content: flex-start;
}

.hero__btn {}

.hero__after-btn {
  display: flex;
  align-items: center;
  font-size: 14px;
  line-height: 19px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #595959;
}

.hero__after-btn::before {
  content: '';
  display: flex;
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  border-radius: 50%;
  /* box-shadow: 0 0 0 10px rgba(246, 100, 16, 0.08); */
  background: var(--accent);
  margin-right: 28px;

  animation: pulse 1s infinite;
}

@keyframes pulse {
  from {
    box-shadow: 0 0 0 0px rgba(246, 100, 16, 0.5);
  }

  to {
    box-shadow: 0 0 0 10px rgba(246, 100, 16, 0);
  }
}

@media (max-width: 1500px) {}

@media (max-width: 1300px) {
  .hero {
    height: auto;
    max-height: none;
  }

  .hero__container {
    height: 100%;
    flex-direction: row;
    gap: 56px;
    padding-top: 96px;
  }

  .hero__img-wrapper {
    height: 100%;
  }

  .hero__text-wrapper {
    margin-bottom: 48px;
  }

  .hero__title {
    font-size: 96px;
    line-height: 86px;
    margin-bottom: 16px;
  }

  .hero__subtitle {
    position: static;
    right: auto;
    bottom: auto;
    max-width: 100%;
  }

  .hero__btn-wrapper {
    gap: 24px;
    margin-bottom: 80px;
  }

  .hero__circle-address {
    position: absolute;
    top: 63px;
    right: -40px;
    transform: scale(0.8);
  }

  .hero__circle-man {
    bottom: -2px;
    transform: translateX(-50%) scale(0.8);
    animation: none;
  }
}

@media (max-width: 1100px) {
  .hero__container {
    height: auto;
    gap: 16px;
    padding-top: 48px;
  }

  .hero__col--one {
    width: calc(40% - 8px);
  }

  .hero__col--two {
    width: calc(60% - 8px);
  }

  .hero__text-wrapper {
    margin-bottom: 24px;
  }

  .hero__title {
    font-size: 60px;
    line-height: 58px;
    margin-bottom: 8px;
  }

  .hero__subtitle {
    font-size: 12px;
    line-height: 20px;
  }

  .hero__btn-wrapper {
    gap: 16px;
    align-items: center;
    margin-bottom: 64px;
  }

  .hero__btn {
    flex: 0 0 auto;
  }

  .hero__after-btn::before {
    margin-right: 16px;
  }

  .hero__after-btn {
    display: flex;
    align-items: center;
    font-size: 11px;
    line-height: 11px;
  }

  .hero__circle-address {
    display: none;
    position: absolute;
    top: 63px;
    right: -40px;
    transform: scale(0.8);
  }

  .hero__circle-man {
    bottom: -42px;
    transform: translateX(-50%) scale(0.6);
    animation: none;
  }
}

@media (max-width: 768px) {
  .hero__container {
    flex-direction: column;
    gap: 0;
  }

  .hero__col--one,
  .hero__col--two {
    width: 100%;
    align-items: center;
  }

  .hero__col--two {
    order: 1;
  }

  .hero__col--one {
    order: 2;
  }

  .hero__text-wrapper {
    align-items: center;
    margin-top: 64px;
  }

  .hero__title {
    max-width: 400px;
    text-align: center;
  }

  .hero__subtitle {
    max-width: 300px;
    text-align: center;
  }

  .hero__btn-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 24px;
    margin-bottom: 32px;
  }

  .hero__img-wrapper {
    position: relative;
    width: 100%;
    height: auto;
  }

  .hero__img {
    display: flex;
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  .hero__circle-man {
    left: 50%;
    bottom: -30px;
    transform: translateX(-50%) scale(0.7);
    animation: none;
  }
}

/* XXXXXXXXXXXXXXXXXXXXX */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* XXXXXXXXXXXXXXXXXXXXX */
.services {
  position: relative;
  overflow: visible;
  background: url(../img/services_bg2.jpg) center / cover no-repeat;
  z-index: 3;
}

.services__container {
  align-items: center;
  padding-top: 150px;
  z-index: 2;
}

.services__bg-line {
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  width: 100%;
  height: 150px;
  background: linear-gradient(to bottom, transparent, white);
  z-index: 2;
}

.services__bg {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  width: 1920px;
  height: auto;
  z-index: 1;
  display: none;
}

.services__title {
  text-align: center;
  margin-bottom: 32px;
}

.services__subtitle {
  max-width: 550px;
  text-align: center;
  color: #ADADAD;
  margin-bottom: 80px;
}

.services__cols {
  display: flex;
  width: 100%;
  max-width: 900px;
  gap: 64px;
  padding-top: 54px;
}

.services__col {
  display: flex;
  width: calc(50% - 32px);
}

.services__list {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 100px;
}

.services__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  background: #eee;
  padding: 40px 40px 72px 40px;
  border-radius: 40px;
  border: 4px solid white;
  background: url('../img/bg1.jpg') center/cover no-repeat;
  box-shadow: 0px 130px 200px rgba(157, 157, 157, 0.1);
}

.services__item--one {
  background: url('../img/services__item--one.jpg') center/cover no-repeat;
}

.services__item--two {
  background: url('../img/services__item--two.jpg') center/cover no-repeat;
}

.services__item--three {
  background: url('../img/services__item--three.jpg') center/cover no-repeat;
}

.services__item--four {
  background: url('../img/services__item--four.jpg') center/cover no-repeat;
}

.services__item--five {
  background: url('../img/services__item--five.jpg') center/cover no-repeat;
}

.services__item--six {
  background: url('../img/services__item--six.jpg') center/cover no-repeat;
}

.services__icon-wrapper {
  position: relative;
  display: flex;
  width: 105px;
  height: 105px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  padding: 40px 56px;
  border-radius: 26px;

  background: linear-gradient(135deg, #EB5600 0%, #FF7526 100%);
  box-shadow: inset 0px 0px 8px #FFA471, 0px 28px 50px rgba(206, 75, 0, 0.22);

  margin-top: -93px;
  margin-bottom: 64px;
  transition: 0.2s;
}

.services__icon {
  display: flex;
  width: 61px;
  height: 61px;
  flex: 0 0 auto;
  object-fit: contain;
  transition: 0.2s;
}

.services__name {
  text-align: center;
  font-size: 30px;
  line-height: 40px;
  letter-spacing: 0.02em;
  font-weight: 700;
  text-transform: uppercase;

  margin-bottom: 24px;
}

.services__subname {
  /* max-width: 280px; */
  text-align: center;
  color: #ADADAD;
}

@media (max-width: 1500px) {}

@media (max-width: 1300px) {
  .services__container {
    padding-top: 64px;
  }

  .services__title {
    text-align: center;
    margin-bottom: 16px;
  }

  .services__cols {
    padding-top: 16px;
    gap: 24px;
  }

  .services__col {
    display: flex;
    width: calc(50% - 8px);
  }

  .services__list {
    gap: 72px;
  }

  .services__item {
    padding: 40px;
  }

  .services__icon-wrapper {
    margin-top: -93px;
    margin-bottom: 32px;
  }

  .services__name {
    max-width: 90%;
    font-size: 18px;
    line-height: 25px;
    margin-bottom: 24px;
  }
}

@media (max-width: 1100px) {
  .services__list {
    gap: 56px;
  }

  .services__icon-wrapper {
    width: auto;
    height: auto;
    padding: 24px;
    border-radius: 16px;
    margin-top: -78px;
    margin-bottom: 22px;
  }

  .services__icon {
    display: flex;
    width: 32px;
    height: 32px;
    flex: 0 0 auto;
    object-fit: contain;
    transition: 0.2s;
  }

  .services__name {
    font-size: 18px;
    line-height: 22px;
    margin-bottom: 16px;
  }
}

@media (max-width: 768px) {
  .services__subtitle {
    margin-bottom: 64px;
  }

  .services__cols {
    flex-direction: column;
    padding-top: 0px;
    gap: 24px;
  }

  .services__list {
    flex-direction: column;
    gap: 56px;
  }

  .services__col {
    width: 100%;
  }

  .services__item {
    padding: 40px;
  }
}

/* XXXXXXXXXXXXXXXXXXXXX */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* XXXXXXXXXXXXXXXXXXXXX */
.getting {
  position: relative;
  background: url(../img/getting_bg.jpg) center / cover no-repeat;
}

.getting__container {
  align-items: center;
  padding-top: 200px;
  padding-bottom: 110px;
  z-index: 3;
}

.getting__bg {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  width: 1920px;
  height: auto;
  z-index: 1;
}

.getting__bg-line-up {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  height: 150px;
  background: linear-gradient(to bottom, white, transparent);
  z-index: 2;
}

.getting__bg-line-down {
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  width: 100%;
  height: 150px;
  background: linear-gradient(to bottom, transparent, white);
  z-index: 2;
}

.getting__title {
  text-align: center;
  margin-bottom: 80px;
}

.getting__list {
  display: flex;
  width: 100%;
  max-width: 820px;
  flex-wrap: wrap;
  gap: 8px;
  padding-bottom: 4px;
}

.getting__item {
  position: relative;
  display: flex;
  flex-direction: column;
  width: calc(50% - 8px);
  aspect-ratio: 1/1;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  padding: 32px 64px;
  border-radius: 50%;
  border: 2px solid transparent;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(90deg, #ECECEC 15%, #FFFFFF 100%) border-box;
  overflow: hidden;
}


.getting__icon {
  display: flex;
  width: 56px;
  height: 56px;
  flex: 0 0 auto;
  margin-bottom: 44px;
}

.getting__name {
  font-size: 18px;
  line-height: 25px;
  letter-spacing: 0.02em;
  font-weight: 800;
  text-transform: uppercase;
  text-align: center;

  margin-bottom: 18px;
}

.getting__name--two {
  max-width: 240px;
}

.getting__subname {
  font-size: 16px;
  line-height: 22px;
  font-weight: 500;
  text-align: center;
  color: #ADADAD;
}

.getting__subname--one {
  max-width: 220px;
}

.getting__subname--two {
  max-width: 190px;
}

.getting__subname--three {
  max-width: 210px;
}

.getting__subname--four {}

@media (max-width: 1500px) {}

@media (max-width: 1300px) {
  .getting__container {
    padding-top: 128px;
    padding-bottom: 128px;
  }

  .getting__title {
    margin-bottom: 48px;
  }
}

@media (max-width: 1100px) {
  .getting__container {
    padding-top: 128px;
    padding-bottom: 64px;
  }

  .getting__icon {
    margin-bottom: 24px;
  }

  .getting__name {
    font-size: 18px;
    line-height: 22px;
    margin-bottom: 16px;
  }

}

@media (max-width: 768px) {
  .getting__container {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .getting__list {
    flex-direction: column;
  }

  .getting__title {
    margin-bottom: 32px;
  }

  .getting__item {
    width: 100%;
    padding: 32px 48px;
    margin-top: -32px;
  }

  .getting__item:nth-child(1) {
    margin-top: 0;
  }

}

/* XXXXXXXXXXXXXXXXXXXXX */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* XXXXXXXXXXXXXXXXXXXXX */
.about {
  position: relative;
  border-bottom: 2px solid #F9F9F9;
}

.about__container {
  align-items: center;
  padding-top: 140px;
  z-index: 2;
}

.about__bg {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(calc(-50% - 16px));
  display: flex;
  width: 2166px;
  height: auto;
  z-index: 1;
}

.about__title {
  text-align: center;
  margin-bottom: 100px;
}

.about__columns {
  display: flex;
  width: 100%;
  gap: 48px;
}

.about__col {
  position: relative;
  display: flex;
  width: calc(50% - 24px);
}

.about__col--one {
  width: calc(47% - 24px);
  padding-bottom: 180px;
  z-index: 2;
}

.about__col--two {
  width: calc(53% - 24px);
  z-index: 1;
}

.about__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  background: white;
  padding: 53px 71px;
  border-radius: 40px;
  border: 4px solid #F5F5F5;
  box-shadow: 0px 130px 200px rgba(157, 157, 157, 0.1);
}

.about__name {
  font-size: 30px;
  line-height: 41px;
  letter-spacing: 0.02em;
  font-weight: 700;
  margin-bottom: 39px;
}

.about__text {
  font-size: 18px;
  line-height: 26px;
  color: #ADADAD;
}

.about__icon-wrapper {
  position: absolute;
  top: 130px;
  right: -70px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px 12px;
  border-radius: 26px;
  background: linear-gradient(135deg, #EB5600 0%, #FF7526 100%);
  box-shadow: inset 0px 0px 8px #FFA471, 0px 28px 50px rgba(206, 75, 0, 0.22);
}

.about__icon {
  display: flex;
  width: auto;
  height: 80px;
  flex: 0 0 auto;
  object-fit: contain;
}

.about__img {
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  width: auto;
  height: calc(100% + 192px);
}

@media (max-width: 1500px) {}

@media (max-width: 1300px) {
  .about__container {
    padding-top: 0;
  }

  .about__title {
    margin-bottom: 48px;
  }

  .about__columns {
    gap: 24px;
  }

  .about__col {
    position: relative;
    width: calc(50% - 12px);
  }

  .about__col--one {
    padding-bottom: 64px;
  }

  .about__inner {
    padding: 40px;
  }

  .about__name {
    font-size: 18px;
    line-height: 25px;
    margin-bottom: 18px;
  }

  .about__img {
    width: 100%;
    height: auto;
  }

  .about__icon-wrapper {
    top: 130px;
    right: -100px;
    transform: scale(0.8);
  }
}

@media (max-width: 1100px) {
  .about__img {
    width: auto;
    height: calc(100% + 64px);
  }
}

@media (max-width: 768px) {
  .about__container {
    padding-bottom: 64px;
  }

  .about {
    overflow: visible;
  }

  .about__bg {
    top: -23px;
    left: 50%;
    transform: translateX(calc(-50% - 8px));
    width: 152%;
  }

  .about__title {
    margin-bottom: 16px;
  }

  .about__columns {
    flex-direction: column;
    gap: 0;
  }

  .about__col {
    width: 100%;
    gap: 0;
  }

  .about__col--two {
    width: 100%;
    aspect-ratio: 1/1;
    order: 1;
  }

  .about__img {
    top: 0;
    left: 0;
    bottom: auto;
    width: 100%;
    height: auto;
  }

  .about__col--one {
    order: 2;
    padding-bottom: 0;
  }

  .about__icon-wrapper {
    position: relative;
    top: auto;
    right: auto;
    transform: scale(0.8);
    order: 1;
    margin-top: -100px;
    margin-bottom: 16px;
  }

  .about__inner {
    align-items: center;
  }

  .about__name {
    order: 2;
    text-align: center;
  }

  .about__text {
    order: 3;
    text-align: center;
  }
}

/* XXXXXXXXXXXXXXXXXXXXX */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* XXXXXXXXXXXXXXXXXXXXX */
.youtube {}

.youtube__container {
  align-items: center;
  padding-top: 250px;
  padding-bottom: 100px;
}

.youtube__title-wrapper {
  position: relative;
  display: flex;
  width: 100%;
}

.youtube__title {
  text-align: center;
  user-select: none;
  z-index: 2;
}

.youtube__title span {
  color: var(--accent);
}

.youtube__million {
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  font-size: 638px;
  line-height: 1;
  white-space: nowrap;
  color: #F9F9F9;
  user-select: none;
  z-index: 1;
}

@media (max-width: 1500px) {}

@media (max-width: 1300px) {
  .youtube__container {
    padding-top: 128px;
    padding-bottom: 100px;
  }

  .youtube__million {
    font-size: 358px;
  }
}

@media (max-width: 1100px) {
  .youtube__container {
    padding-top: 64px;
    padding-bottom: 54px;
  }

  .youtube__million {
    font-size: 118px;
  }
}

@media (max-width: 768px) {
  .youtube__container {
    padding-top: 56px;
    padding-bottom: 50px;
  }

  .youtube__million {
    display: none;
  }
}

/* XXXXXXXXXXXXXXXXXXXXX */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* XXXXXXXXXXXXXXXXXXXXX */

.splide {}

.slider {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.splide__track {}

.slider__track {
  width: 100%;
  margin-bottom: 115px;
}

.splide__list {}

.slider__list {}

.splide__slide {}

.slider__item {
  display: flex;
  width: 100%;
  max-width: 500px;
  aspect-ratio: 16/9;
  align-items: center;
  justify-content: center;
  border-radius: 26px;
  overflow: hidden;
  pointer-events: none;
}

.slider__current {
  pointer-events: all;
}

.slider__link {
  position: relative;
  display: flex;
  width: 100%;
  height: 100%;
}

.slider__img {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.1;
  transition: 0s;
}

.slider__current .slider__img {
  opacity: 1;
  transition: 0.8s;
}

.slider__current:hover .slider__img {
  transform: scale(1.050);
  transition: 0.2s;
}

.slider__arrow {
  position: absolute;
  top: 137px;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  width: 60px;
  height: 60px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  border-radius: 50%;
  cursor: pointer;
  transform-origin: center;
  transition: 0.2s;
}

.slider__arrow svg {
  display: flex;
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  object-fit: contain;
}

.slider__arrow:hover {
  background: #D55207;
  transform: translate(-50%, -50%) scale(0.9);
  transition: 0.2s;
}

.slider__arrow--left {
  left: calc(50% - 400px);
}

.slider__arrow--right {
  left: calc(50% + 400px);
}

.slider__arrows-mob {
  display: none;
  gap: 16px;
  align-items: center;
  justify-content: center;
}

.slider__arrow-mob {
  display: flex;
  width: 56px;
  height: 56px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  border-radius: 50%;
  cursor: pointer;
  transform-origin: center;
  transition: 0.2s;
}

.slider__arrow-mob svg {
  display: flex;
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  object-fit: contain;
}

.slider__arrow-mob--left {}

.slider__arrow-mob--right {}


.slider__btn {
  user-select: none;
  margin-bottom: 120px;
}

@media (max-width: 1500px) {}

@media (max-width: 1300px) {
  .slider__track {
    margin-bottom: 64px;
  }
}

@media (max-width: 1100px) {
  .slider__arrow--left {
    left: 16px;
    transform: translate(0, -50%);
  }

  .slider__arrow--left:hover {
    transform: translate(0, -50%);
  }

  .slider__arrow--right {
    left: auto;
    right: 16px;
    transform: translate(0, -50%);
  }

  .slider__arrow--right:hover {
    transform: translate(0, -50%);
  }
}

@media (max-width: 768px) {
  .slider__track {
    margin-bottom: 24px;
  }

  .slider__item {
    border-radius: 14px;
    width: calc(100% - 96px);
  }

  .slider__arrow {
    display: none;
  }

  .slider__arrows-mob {
    display: flex;
    margin-bottom: 40px;
  }
}

/* XXXXXXXXXXXXXXXXXXXXX */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* XXXXXXXXXXXXXXXXXXXXX */
.quiz {
  background: url('../img/quiz_bg.jpg') center/cover no-repeat;
  transition: 0.2s;
}

.quiz__container {
  align-items: center;
  padding-top: 120px;
  padding-bottom: 120px;
  transition: 0.2s;
}

.quiz__title {
  text-align: center;
  margin-bottom: 50px;
}

.quiz__title span {
  color: var(--accent);
}

.quiz__form {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1000px;
  border-radius: 40px;
  overflow: hidden;
  transition: 0.2s;
}

.quiz__slide {
  display: none;
  width: 100%;
}

.quiz__slide--active {
  display: flex;
  animation: showSlide 1s;
}

@keyframes showSlide {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.quiz__col {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 50%;
  padding: 64px;
  background: #F8F8F8;
}

.quiz__col--last-slide {
  align-items: center;
}

.quiz__prename {
  font-size: 20px;
  line-height: 27px;
  color: #C8C8C8;

  margin-bottom: 32px;
}

.quiz__name {
  font-size: 30px;
  line-height: 36px;
  font-weight: 700;

  margin-bottom: 40px;
}

.quiz__name--last-slide {
  font-size: 68px;
  line-height: 64px;
  font-weight: 400;
  text-align: center;
  width: 100%;
  margin-bottom: 32px;
}

/* RADIO BUTTON */
.quiz__label-radio {
  position: relative;
  display: flex;
  width: 100%;
  gap: 16px;
  align-items: center;
  cursor: pointer;

  margin-bottom: 24px;
}

.quiz__label-radio:last-of-type {
  margin-bottom: 0;
}

.quiz__radio-real {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  opacity: 0;
}

.quiz__radio-custom {
  position: relative;
  display: flex;
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  background: white;
  border: 2px solid #DFDFDF;
  border-radius: 50%;
}

.quiz__label-radio input:checked~.quiz__radio-custom {
  border: 2px solid var(--accent);
}

.quiz__radio-custom:after {
  content: '';
  position: absolute;
  display: flex;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0;
}

.quiz__label-radio input:checked~.quiz__radio-custom::after {
  opacity: 1;
}

/* RADIO BUTTON */



/* CHECKBOX BUTTON */
.quiz__label-checkbox {
  position: relative;
  display: flex;
  width: 100%;
  gap: 16px;
  align-items: center;
  cursor: pointer;

  margin-bottom: 24px;
}

.quiz__label-checkbox--policy {
  width: auto;
}

.quiz__label-checkbox:last-of-type {
  margin-bottom: 0;
}

.quiz__checkbox-real {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  opacity: 0;
}

.quiz__checkbox-custom {
  position: relative;
  display: flex;
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  background: white;
  border: 2px solid #DFDFDF;
}

.quiz__label-checkbox input:checked~.quiz__checkbox-custom {
  border: 2px solid var(--accent);
}

.quiz__checkbox-custom:after {
  content: '';
  position: absolute;
  display: flex;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  background: url('data:image/svg+xml,<svg width="19" height="19" viewBox="0 0 19 19" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M6.33801 16.7114L0.474609 10.8499L2.71205 8.61397L6.33782 12.2399L16.2889 2.28906L18.5246 4.52498L6.33801 16.7114Z" fill="%23F66410"/></svg>');
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0;
}

.quiz__label-checkbox input:checked~.quiz__checkbox-custom::after {
  opacity: 1;
}

/* CHECKBOX BUTTON */

.quiz__input {
  display: flex;
  width: 100%;
  padding: 29px 46px;
  border-radius: 20px;
  font-family: "Manrope", sans-serif;
  font-optical-sizing: auto;
  font-size: 20px;
  line-height: 1;
  font-style: normal;
  white-space: nowrap;
  overflow: hidden;
  margin-bottom: 16px;
  border: 2px solid var(--white);
}

.quiz__input:focus-within {
  border-color: var(--accent);
}

.quiz__input:hover {
  border-color: var(--accent);
}

.quiz__input--textarea {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  opacity: 0;
}

.quiz__btn-submit {
  width: 100%;
  margin-bottom: 16px;
}

.quiz__text {
  font-size: 18px;
  line-height: 25px;
  user-select: none;
}

.quiz__text--policy {
  font-size: 12px;
  line-height: 1;
  color: #727272;
}

.quiz__text--policy a {
  text-decoration: underline;
}

.quiz__line-wrapper {
  position: relative;
  display: flex;
  width: 100%;
  height: 8px;
  border-radius: 8px;
  background: #E4E4E4;
  overflow: hidden;

  margin-top: 80px;
  margin-bottom: 72px;
}

.quiz__line {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  background: var(--accent);
}

.quiz__line--one {
  width: calc(100% / 9 * 1);
}

.quiz__line--two {
  width: calc(100% / 9 * 2);
}

.quiz__line--three {
  width: calc(100% / 9 * 3);
}

.quiz__line--four {
  width: calc(100% / 9 * 4);
}

.quiz__line--five {
  width: calc(100% / 9 * 5);
}

.quiz__line--six {
  width: calc(100% / 9 * 6);
}

.quiz__line--seven {
  width: calc(100% / 9 * 7);
}

.quiz__line--eight {
  width: calc(100% / 9 * 8);
}

.quiz__line--nine {
  width: 100%;
}

.quiz__btns-wrapper {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: flex-start;
  gap: 24px;
}

.quiz__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 44px;
  border-radius: 12px;
  border: 2px solid var(--accent);

  font-size: 14px;
  line-height: 19px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--accent);
  text-transform: uppercase;
  white-space: nowrap;

  cursor: pointer;
  transition: 0.2s;
}

.quiz__btn:hover {
  transform: scale(0.95);
  transition: 0.2s;
}

.quiz__btn--prev:disabled {
  cursor: not-allowed;
  opacity: 0.3;
}

.quiz__btn--prev:disabled:hover {
  transform: scale(1);
}

.quiz__btn--next {
  background: var(--accent);
  color: white;
}

.quiz__btn--next:disabled {
  cursor: not-allowed;
  opacity: 0.5;
  background: grey;
  border: 2px solid grey;
}

.quiz__btn--next:disabled:hover {
  transform: scale(1);
}

.quiz__img {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  height: 100%;
}

@media (max-width: 1500px) {}

@media (max-width: 1300px) {
  .quiz__container {
    padding-top: 0;
    padding-bottom: 80px;
  }

  .quiz__col {
    padding: 48px;
  }

  .quiz__name {
    font-size: 24px;
    line-height: 24px;
    margin-bottom: 32px;
  }

  .quiz__name--last-slide {
    max-width: 350px;
    font-size: 48px;
    line-height: 45px;
    margin-bottom: 32px;
  }

  .quiz__text {
    font-size: 16px;
    line-height: 24px;
  }

  .quiz__line-wrapper {
    height: 4px;
    margin-top: 48px;
    margin-bottom: 48px;
  }

  .quiz__label-radio,
  .quiz__label-checkbox {
    margin-bottom: 16px;
  }

  .quiz__input {
    font-size: 15px;
  }

  .quiz__text--policy {
    font-size: 12px;
  }
}

@media (max-width: 1100px) {
  .quiz__slide {
    flex-direction: column;
  }

  .quiz__col {
    width: 100%;
    padding: 32px;
  }

  .quiz__prename {
    margin-bottom: 16px;
  }

  .quiz__col:nth-child(1) {
    order: 2;
  }

  .quiz__col:nth-child(2) {
    order: 1;
    padding: 0;
    aspect-ratio: 2/1;
  }

  .quiz__title {
    margin-bottom: 40px;
  }

  .quiz__name--last-slide {
    max-width: 100%;
    font-size: 56px;
    line-height: 52px;
    margin-bottom: 24px;
  }

  .quiz__input {
    padding: 24px 32px;
    font-size: 15px;
  }

}

@media (max-width: 768px) {
  .quiz__col:nth-child(1) {
    padding: 24px;
  }

  .quiz__name--last-slide {
    margin-bottom: 16px;
  }

  .quiz__form {
    border-radius: 20px;
  }

  .quiz__label-checkbox--policy {
    gap: 8px;
  }

  .quiz__input {
    padding: 24px 32px;
    font-size: 15px;
  }

  .quiz__btns-wrapper {
    flex-direction: column;
    gap: 16px;
  }

  .quiz__btn--prev {
    order: 2;
  }

  .quiz__btn--next {
    order: 1;
  }

  .quiz__btn {
    width: 100%;
  }
}

/* XXXXXXXXXXXXXXXXXXXXX */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* МОДАЛКА "СПАСИБО" */
.modal {
  position: fixed;
  inset: 0;
  display: flex;
  z-index: 101;
  background: rgba(0, 0, 0, 0.8);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  user-select: none;
  transition: 0.2s;
}

.modal--active {
  opacity: 1;
  visibility: visible;
  user-select: auto;
  transition: 0.2s;
}

.modal__wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  padding: 48px;
  overflow-y: auto;
  scrollbar-width: none;
}

.modal__content {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 600px;
  background: #fff;
  padding: 64px;
  border-radius: 16px;
  align-items: center;
  justify-content: center;
  margin: auto 0;
}

.modal__btn {
  position: absolute;
  top: 24px;
  right: 24px;
  display: flex;
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
}

.modal__btn svg {
  display: flex;
  width: 100%;
  height: 100%;
  flex: 0 0 auto;
  object-fit: contain;
}

.modal__title {
  text-align: center;
  /* font-size: 120px;
  line-height: 100px; */
  margin-top: 24px;
  margin-bottom: 16px;
}

.modal__title span {
  color: var(--accent);
}

.modal__subtitle {
  max-width: 170px;
  text-align: center;
}

@media (max-width: 1500px) {}

@media (max-width: 1300px) {}

@media (max-width: 1100px) {
  .modal__content {
    max-width: 400px;
  }
}

@media (max-width: 768px) {
  .modal__wrapper {
    padding: 16px;
  }

  .modal__btn {
    top: 16px;
    right: 16px;
  }
}

/* МОДАЛКА "СПАСИБО" */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* XXXXXXXXXXXXXXXXXXXXX */
.request {
  padding: 120px 48px;
}

.request__wrapper {
  display: flex;
  width: 100%;
  justify-content: center;
  background: #232323 url(../img/request__wrapper.jpg) center / cover no-repeat;
  border-radius: 57px;
  overflow: hidden;
}

.request__container {
  flex-direction: row;
  gap: 40px;
  padding-top: 64px;
  padding-bottom: 64px;
}

.request__col {
  display: flex;
  flex-direction: column;
  width: calc(50% - 20px);
}

.request__col--one {
  justify-content: center;
}

.request__col--two {}

.request__title {
  max-width: 400px;
  font-size: 140px;
  line-height: 120px;
  color: white;
  padding-top: 24px;
}

.request__form {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 400px;
  padding-top: 40px;
}

.request__input {
  display: flex;
  width: 100%;
  padding: 29px 46px;
  border-radius: 20px;
  font-family: "Manrope", sans-serif;
  font-optical-sizing: auto;
  font-size: 20px;
  line-height: 1;
  font-style: normal;
  white-space: nowrap;
  background: #171717;
  color: white;
  border: 2px solid #2F2F2F;
  overflow: hidden;
  margin-bottom: 16px;
}

.request__input:focus-within {
  border-color: var(--accent);
}

.request__input:hover {
  border-color: var(--accent);
}

.request__btn {
  width: 100%;
  margin-bottom: 16px;
}

.request__label {
  position: relative;
  display: flex;
  width: auto;
  max-width: 100%;
  gap: 16px;
  align-items: center;
  cursor: pointer;
}

.request__checkbox-real {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  opacity: 0;
}

.request__checkbox-custom {
  position: relative;
  display: flex;
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  background: #171717;
  border: 2px solid #2F2F2F;
}

.request__label input:checked~.request__checkbox-custom {
  border: 2px solid var(--accent);
}

.request__checkbox-custom:after {
  content: '';
  position: absolute;
  display: flex;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  background: url('data:image/svg+xml,<svg width="19" height="19" viewBox="0 0 19 19" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M6.33801 16.7114L0.474609 10.8499L2.71205 8.61397L6.33782 12.2399L16.2889 2.28906L18.5246 4.52498L6.33801 16.7114Z" fill="%23F66410"/></svg>');
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0;
}

.request__label input:checked~.request__checkbox-custom::after {
  opacity: 1;
}

.request__text {
  font-size: 12px;
  line-height: 1;
  color: #727272;
}

.request__text a {
  text-decoration: underline;
}

@media (max-width: 1500px) {}

@media (max-width: 1300px) {
  .request {
    padding: 80px 48px;
  }

  .request__wrapper {
    padding: 0 32px;
  }

  .request__title {
    max-width: 300px;
    font-size: 96px;
    line-height: 86px;
  }

  .request__form {
    padding-top: 0;
  }

  .request__input {
    font-size: 15px;
  }
}

@media (max-width: 1100px) {
  .request {
    padding: 80px 24px;
  }

  .request__wrapper {
    padding: 0 32px;
  }

  .request__container {
    flex-direction: column;
  }

  .request__col {
    width: 100%;
    padding: 0 24px;
  }

  .request__input {
    padding: 24px 32px;
    font-size: 15px;
  }

  .request__title {
    max-width: 100%;
    font-size: 60px;
    line-height: 58px;
    padding-top: 24px;
    padding-top: 0;
    text-align: center;
  }

  .request__form {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 100%;
    padding-top: 0;
  }

}

@media (max-width: 768px) {
  .request {
    padding: 80px 16px 16px 16px;
  }

  .request__wrapper {
    padding: 0;
    border-radius: 20px;
  }

  .request__col {
    width: 100%;
    padding: 0 8px;
  }
}

/* XXXXXXXXXXXXXXXXXXXXX */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* XXXXXXXXXXXXXXXXXXXXX */
.contacts {
  padding: 0 48px;
}

.contacts__wrapper {
  display: flex;
  width: 100%;
  justify-content: center;
  background:
    linear-gradient(to right,
      rgba(255, 255, 255, 1) 25%,
      rgba(255, 255, 255, 0.8) 50%,
      rgba(255, 255, 255, 0.6) 75%,
      rgba(255, 255, 255, 0.8) 100%),
    url('../img/contacts__wrapper.jpg') center / cover no-repeat;
  border: 2px solid #F6F6F6;
  border-radius: 57px;
  overflow: hidden;
}

.contacts__container {
  flex-direction: row;
  gap: 40px;
  padding-top: 88px;
  padding-bottom: 88px;
}

.contacts__col {
  display: flex;
  flex-direction: column;
  width: calc(50% - 20px);
}

.contacts__col--one {}

.contacts__col--two {
  justify-content: center;
}

.contacts__title {
  margin-bottom: 24px;
}

.contacts__subtitle {
  display: flex;
  flex-direction: column;
  font-size: 24px;
  line-height: 40px;
  margin-bottom: 24px;
}

.contacts__subtitle span {
  font-weight: 700;
}

.contacts__list {
  display: flex;
  width: 100%;
  gap: 16px;
  align-items: center;
  margin-bottom: 120px;
}

.contacts__item {
  display: flex;
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  transition: 0.2s;
}

.contacts__item:hover {
  opacity: 0.5;
  transition: 0.2s;
}

.contacts__item-link {
  display: flex;
  width: 100%;
  height: 100%;
  flex: 0 0 auto;
}

.contacts__item-img {
  display: flex;
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  object-fit: contain;
}


.contacts__phone {
  font-size: 64px;
  line-height: 40px;
  font-weight: 400;
  margin-bottom: 40px;
  transition: 0.2s;
}

.contacts__email {
  font-size: 30px;
  line-height: 40px;
  transition: 0.2s;
}

.contacts__phone:hover,
.contacts__email:hover {
  color: var(--accent);
  transition: 0.2s;
}

.contacts__point {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contacts__point-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px;
  border-radius: 26px;
  background: linear-gradient(135deg, #EB5600 0%, #FF7526 100%);
  box-shadow: inset 0px 0px 8px #FFA471, 0px 28px 50px rgba(206, 75, 0, 0.22);

  margin-bottom: 16px;
}

.contacts__point-icon {
  display: flex;
  width: 59px;
  height: 59px;
  flex: 0 0 auto;
  object-fit: contain;
}

.contacts__point-text {
  font-size: 24px;
  line-height: 40px;
  font-weight: 700;
  white-space: nowrap;
}

@media (max-width: 1500px) {}

@media (max-width: 1300px) {
  .contacts__wrapper {
    padding: 0 32px;
  }

  .contacts__container {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .contacts__subtitle {
    line-height: 24px;
    margin-bottom: 16px;
  }

  .contacts__list {
    margin-bottom: 64px;
  }

  .contacts__phone {
    font-size: 32px;
    line-height: 40px;
    font-weight: 500;
    margin-bottom: 0;
  }

  .contacts__email {
    font-size: 16px;
    line-height: 32px;
  }
}

@media (max-width: 1100px) {
  .contacts {
    padding: 0 24px;
  }

  .contacts__container {
    flex-direction: column;
    gap: 0;
  }

  .contacts__col {
    width: 100%;
    align-items: center;
  }

  .contacts__title,
  .contacts__subtitle,
  .contacts__phone,
  .contacts__email {
    text-align: center;
  }

  .contacts__subtitle {
    margin-bottom: 16px;
  }

  .contacts__list {
    justify-content: center;
    margin-bottom: 64px;
  }

  .contacts__point {
    transform: scale(0.6);
  }
}

@media (max-width: 768px) {
  .contacts {
    padding: 0 16px;
  }

  .contacts__wrapper {
    border-radius: 20px;
    padding: 0;
  }

  .contacts__col {
    padding: 8px;
  }

  .contacts__list {
    justify-content: center;
    margin-bottom: 32px;
  }

  .contacts__phone {
    font-size: 26px;
    line-height: 40px;
    margin-bottom: 8px;
  }

  .contacts__email {
    font-size: 14px;
    line-height: 1;
  }
}

/* XXXXXXXXXXXXXXXXXXXXX */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* XXXXXXXXXXXXXXXXXXXXX */
.footer {
  display: flex;
  width: 100%;
  justify-content: center;
}

.footer__container {
  flex-direction: row;
  justify-content: space-between;
  gap: 24px;
  padding-top: 40px;
  padding-bottom: 40px;
}

.footer__text {
  font-size: 15px;
  line-height: 40px;
  white-space: nowrap;
  color: #ADADAD;
}

.footer__text--name {}

.footer__text--policy {
  text-decoration: underline;
  text-decoration-style: dotted;
}

.footer__text--year {}

@media (max-width: 1500px) {}

@media (max-width: 1300px) {}

@media (max-width: 1100px) {
  .footer__container {
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding-top: 16px;
    padding-bottom: 16px;
  }
}

@media (max-width: 768px) {}

/* XXXXXXXXXXXXXXXXXXXXX */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* XXXXXXXXXXXXXXXXXXXXX */
/* XXXXXXXXXXXXXXXXXXXXX */

/*
UX/UI DESIGN AND FRONTEND DEVELOPMENT BY:
Evgenii Golubev | DIVISIDE.RU | telegram - @divside
*/