:root {
  --black: #212121;
  --body: #f9fafb;
  --white: #ffffff;
  --gray: #57585c;
  --black-hover: #333333;
  --font-size-heading: clamp(30px, 4.75vw + 1rem, 70px);
  --text-heading: #2d2d2d;
  --main-font: "BebasNeueRegular", sans-serif;
  --extra-font: "Inter", sans-serif;
  --container: 1520px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  text-transform: uppercase;
  font-family: var(--main-font);
  font-size: var(--font-size-heading);
  font-weight: 400;
  color: #2d2d2d;
}

.extra__font {
  font-family: var(--extra-font);
}
.extra__font.light {
  font-weight: 300;
}
.extra__font.regular {
  font-weight: 400;
}
.extra__font.bold {
  font-weight: 600;
}

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

body {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: var(--body);
  margin: auto;
}

.container {
  width: 100%;
}
.container__header {
  background-color: #ffffff;
  display: flex;
  justify-content: center;
  margin: auto;
  align-items: center;
  width: 100%;
  z-index: 99;
}

.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--black);
  color: var(--white);
  padding: 33px 45px;
  text-decoration: none;
  text-transform: uppercase;
  font-family: var(--main-font);
  font-weight: 400;
  line-height: 30px;
  font-size: clamp(16px, 2.5vw, 25px);
  border: 1px solid transparent;
  outline: none;
  transition: 0.3s ease;
  cursor: pointer;
}
.btn.btn--load-more {
  padding: 20px 30px;
  border-radius: 10px;
}
.btn.btn--load-more:disabled {
  opacity: 0.5;
  cursor: no-drop;
}
.btn.btn--load-more:disabled:hover, .btn.btn--load-more:disabled:focus {
  opacity: 0.5;
  background-color: var(--black);
  border-color: var(--black);
}
.btn:hover,
.btn :focus,
.btn :active {
  background-color: var(--black-hover);
  color: var(--white);
  border-color: var(--black-hover);
}
.btn.btn--white {
  background-color: #fff;
  color: var(--black);
  border: 1px solid var(--black);
}
.btn.btn--white:hover,
.btn.btn--white :focus,
.btn.btn--white :active {
  background-color: #F5C4A0;
  color: #fff;
  border-color: #F5C4A0;
}
.btn--korpus {
  background-color: transparent;
  padding: 13px 25px;
  border-radius: 80px;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  width: 100%;
  cursor: pointer;
}
.btn--korpus:disabled {
  cursor: no-drop;
  opacity: 0.5;
}
.btn--korpus span {
  font-family: var(--extra-font);
  font-weight: 400;
  font-size: 20px;
  line-height: 25px;
  letter-spacing: 1%;
  color: var(--black);
}
.btn--korpus:not(:disabled):hover,
.btn--korpus:not(:disabled) :focus,
.btn--korpus:not(:disabled) :active {
  background-color: #F5C4A0;
  border-color: #F5C4A0;
}
.btn--korpus:not(:disabled):hover span,
.btn--korpus:not(:disabled) :focus span,
.btn--korpus:not(:disabled) :active span {
  color: var(--white);
}
.btn--reset {
  background-color: var(--black);
  padding: 13px 25px;
  border-radius: 80px;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  cursor: pointer;
}
.btn--reset:disabled {
  cursor: no-drop;
  opacity: 0.5;
}
@media screen and (max-width: 1140px) and (min-width: 814px) {
  .btn--reset {
    margin-right: 0;
    margin-left: auto;
  }
}
@media screen and (max-width: 813px) {
  .btn--reset {
    margin: auto;
  }
}
.btn--reset span {
  font-family: var(--extra-font);
  font-weight: 400;
  font-size: 20px;
  line-height: 25px;
  letter-spacing: 1%;
  color: var(--white);
}
.btn--reset:not(:disabled):hover,
.btn--reset:not(:disabled) :focus,
.btn--reset:not(:disabled) :active {
  background-color: #F5C4A0;
  border-color: #F5C4A0;
}

a:visited {
  color: inherit;
}

.section__subtitle {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
}
.section__subtitle p {
  font-family: var(--main-font);
  color: #353535;
}
@media screen and (min-width: 641px) {
  .section__subtitle p {
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    letter-spacing: 0.02px;
  }
}
@media screen and (max-width: 640px) {
  .section__subtitle p {
    font-weight: 400;
    font-size: 13px;
    line-height: 30px;
    letter-spacing: 0.13px;
    text-align: center;
  }
  .section__subtitle{
      justify-content: center;
  }
}
.section__subtitle div.line {
  width: 70%;
  height: 1px;
  background-color: #979797;
}

.section__text {
  font-family: var(--extra-font);
  font-weight: 300;
  color: #57585c;
}
@media screen and (min-width: 641px) {
  .section__text {
    font-size: 18px;
    line-height: 25px;
    letter-spacing: 0.18px;
  }
}
@media screen and (max-width: 640px) {
  .section__text {
    font-size: 12px;
    line-height: 16px;
    text-align: center;
  }
}

.section__header {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

.link {
  font-family: var(--main-font);
  font-weight: 400;
  font-size: 25px;
  line-height: 30px;
  letter-spacing: 0.25px;
  text-align: center;
  text-decoration: underline;
  text-decoration-style: solid;
  text-decoration-thickness: 0%;
  text-decoration-skip-ink: auto;
  color: #000000;
  transition: color 0.3s ease;
}
.link:hover {
  color: #e5af88;
}

.none {
  display: none !important;
}

.no-scroll {
  overflow: hidden !important;
}

.menu__overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(102, 102, 102, 0.4196078431);
  backdrop-filter: blur(8px);
  z-index: 20;
  display: none;
}
.menu__overlay.active {
  display: flex;
}

.no_scroll {
  overflow-y: hidden !important;
}

html {
  scroll-behavior: smooth;
}

header {
  width: 100%;
  max-width: var(--container);
  background-color: var(--white);
  display: grid;
}
@media screen and (min-width: 1521px) {
  header {
    padding: 0 0px 0 0px;
  }
}
@media screen and (max-width: 1520px) and (min-width: 641px) {
  header {
    padding: 0 40px 0 40px;
  }
}
@media screen and (max-width: 640px) {
  header {
    padding: 0 16px;
  }
}
@media screen and (min-width: 1281px) {
  header {
    grid-template-columns: 570px 1fr;
  }
}
@media screen and (max-width: 1280px) and (min-width: 861px) {
  header {
    grid-template-columns: 499px 1fr;
  }
}
@media screen and (max-width: 860px) and (min-width: 721px) {
  header {
    grid-template-columns: 2fr 1fr;
  }
}
@media screen and (max-width: 720px) and (min-width: 641px) {
  header {
    grid-template-columns: 3fr 1fr;
  }
}
@media screen and (max-width: 640px) {
  header {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (min-width: 1281px) {
  header .btn {
    margin-left: 120px;
  }
}
@media screen and (max-width: 640px) {
  header .btn {
    display: none;
  }
}

.header__left {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.header__right {
  display: flex;
  align-items: center;
  width: 100%;
}
@media screen and (min-width: 861px) {
  .header__right {
    justify-content: space-between;
  }
}
@media screen and (max-width: 860px) {
  .header__right {
    justify-content: flex-end;
  }
}
.header__logo {
  max-width: 110px;
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  padding-top: 11px;
}
@media screen and (min-width: 861px) {
  .header__tel {
    display: inline-flex;
    flex-direction: column;
    padding-left: 65px;
  }
}
@media screen and (max-width: 860px) {
  .header__tel {
    display: none;
  }
}
.header__tel a {
  font-family: var(--main-font);
  font-size: clamp(16px, 2.5vw, 25px);
  font-weight: 400;
  color: var(--black);
  text-decoration: none;
  width: fit-content;
  line-height: 30px;
  transition: color 0.3s ease;
}
.header__tel a:hover {
  text-decoration: underline;
  text-underline-offset: 2px;
  color: #E5AF88;
}
.header__tel span {
  font-family: var(--extra-font);
  font-weight: 300;
  color: var(--gray);
  font-size: 18px;
  line-height: 30px;
  width: fit-content;
  text-align: center;
}

#nav-icon4 {
  width: 38px;
  height: 20px;
  position: relative;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  cursor: pointer;
  z-index: 110;
}

#nav-icon4 span {
  display: block;
  position: absolute;
  height: 1px;
  background: var(--black);
  border-radius: 0px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}

#nav-icon4 span:nth-child(1) {
  top: 0px;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
  width: 100%;
}

#nav-icon4 span:nth-child(2) {
  top: 10px;
  right: 0;
  left: unset;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
  width: 20px;
}

#nav-icon4 span:nth-child(3) {
  top: 20px;
  right: 0;
  left: unset;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
  width: 30px;
}

#nav-icon4.open span:nth-child(1) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  top: -3px;
  left: 8px;
  background: #fff;
}

#nav-icon4.open span:nth-child(2) {
  width: 0%;
  opacity: 0;
}

#nav-icon4.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 24px;
  left: 8px;
  width: 100%;
  background: #fff;
}

.menu {
  position: fixed;
  top: 0;
  right: -300%;
  width: 100%;
  z-index: 100;
  transition: right 0.5s ease;
}
@media screen and (min-width: 941px) {
  .menu {
    max-width: 927px;
    height: 100dvh;
    padding-bottom: 70px;
  }
}
@media screen and (max-width: 940px) {
  .menu {
    max-width: 100%;
    min-height: 100dvh;
    height: 100%;
    background-color: rgba(25, 25, 25, 0.9411764706);
    backdrop-filter: blur(50px);
  }
}
.menu.active {
  right: 0;
}
.menu ul {
  z-index: 5;
  position: relative;
  list-style-type: none;
}
.menu__inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media screen and (min-width: 941px) {
  .menu__inner {
    padding-top: 110px;
    padding-left: 110px;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    gap: 60px;
  }
}
@media screen and (max-width: 940px) and (min-width: 410px) {
  .menu__inner {
    padding-top: 213px;
    padding-bottom: 80px;
  }
}
@media screen and (max-width: 409px) {
  .menu__inner {
    padding-bottom: 10px;
    padding-top: 80px;
  }
}
@media screen and (max-width: 940px) {
  .menu__inner {
    padding-left: 20px;
    padding-right: 20px;
    width: auto;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    gap: 110px;
  }
}
.menu::before {
  position: absolute;
  content: "";
  background-color: rgba(25, 25, 25, 0.9411764706);
  backdrop-filter: blur(50px);
  z-index: 1;
}
@media screen and (min-width: 941px) {
  .menu::before {
    width: 100%;
    height: 100%;
  }
}
@media screen and (max-width: 940px) {
  .menu::before {
    width: 0;
    height: 0;
  }
}
.menu__link--parent {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 15px;
  text-decoration: underline;
  text-underline-offset: 6px;
  text-decoration-color: #e6eaf0;
  transition: text-decoration-color 0.3s ease;
}
.menu__link--parent span {
  font-family: var(--extra-font);
  font-weight: 300;
  line-height: 130%;
  text-transform: uppercase;
  color: #e6eaf0;
  transition: color 0.3s ease;
}
@media screen and (min-width: 941px) {
  .menu__link--parent span {
    font-size: 35px;
  }
}
@media screen and (max-width: 940px) {
  .menu__link--parent span {
    font-size: 18px;
  }
}
.menu__link--parent:hover {
  text-decoration-color: #e5af88;
}
.menu__link--parent:hover span {
  color: #e5af88;
}
.menu__link--parent:hover .icon__arrow-menu {
  fill: #e5af88;
  margin-left: 5px;
}
.menu__link--parent .icon__arrow-menu {
  fill: #e6eaf0;
  transition: fill 0.3s ease, margin-left 0.3s ease;
}
.menu__link--children {
  text-decoration: none;
}
.menu__link--children span {
  font-family: var(--extra-font);
  font-weight: 300;
  font-style: Light;
  line-height: 130%;
  transition: color 0.3s ease;
  color: white;
}
@media screen and (min-width: 941px) {
  .menu__link--children span {
    font-size: 25px;
  }
}
@media screen and (max-width: 940px) {
  .menu__link--children span {
    font-size: 14px;
  }
}
.menu__link--children:hover span {
  color: #e5af88;
}
.menu__list {
  left: 300%;
  transition: left 0.3s ease 0.5s;
}
@media screen and (max-width: 940px) and (min-width: 410px) {
  .menu__list {
    margin-left: 67px;
  }
}
@media screen and (max-width: 409px) {
  .menu__list {
    margin-left: 67px;
  }
}
.menu__list.active {
  left: 0;
}
.menu__list--children {
  display: flex;
  flex-direction: column;
  gap: 25px;
  padding-top: 40px;
  padding-bottom: 40px;
}
@media screen and (min-width: 941px) {
  .menu__list--children {
    padding-left: 90px;
  }
}
@media screen and (max-width: 940px) {
  .menu__list--children {
    padding-left: 55px;
  }
}
.menu__info {
  width: 100%;
  display: flex;
  justify-content: space-between;
  position: relative;
  top: 300%;
  transition: top 1s ease 0.5s;
}
@media screen and (min-width: 941px) {
  .menu__info {
    max-width: 584px;
  }
}
@media screen and (max-width: 940px) {
  .menu__info {
    max-width: 375px;
  }
}
.menu__info.active {
  top: 0;
}
.menu__info__about {
  list-style-type: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.menu__info__about li {
  font-family: var(--extra-font);
  font-weight: 400;
  line-height: 25px;
  color: #898989;
}
@media screen and (min-width: 941px) {
  .menu__info__about li {
    font-size: 18px;
  }
}
@media screen and (max-width: 940px) {
  .menu__info__about li {
    font-size: 12px;
  }
}
.menu__info__about li a {
  font-family: var(--extra-font);
  font-weight: 400;
  line-height: 25px;
  color: #898989;
  text-decoration: none;
  transition: color 0.3s ease;
}
@media screen and (min-width: 941px) {
  .menu__info__about li a {
    font-size: 18px;
  }
}
@media screen and (max-width: 940px) {
  .menu__info__about li a {
    font-size: 12px;
  }
}
.menu__info__about li a:hover {
  color: #e5af88;
}
.menu__info__socials {
  list-style-type: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.menu__info__socials li {
  font-family: var(--extra-font);
  font-weight: 400;
  font-size: 18px;
  line-height: 25px;
  color: #898989;
}
.menu__info__socials li a {
  font-family: var(--extra-font);
  font-weight: 400;
  line-height: 25px;
  color: #898989;
  text-decoration: none;
  transition: color 0.3s ease;
}
@media screen and (min-width: 941px) {
  .menu__info__socials li a {
    font-size: 18px;
  }
}
@media screen and (max-width: 940px) {
  .menu__info__socials li a {
    font-size: 12px;
  }
}
.menu__info__socials li a:hover {
  color: #e5af88;
}

.hero {
  max-width: var(--container);
  margin: auto;
  width: 100%;
  display: grid;
}
.hero__wrapper {
  max-width: 1920px;
  width: 100%;
  margin: auto;
  overflow: hidden;
}
@media screen and (max-width: 1520px) and (min-width: 941px) {
  .hero {
    padding: 0 0px 0 40px;
  }
}
@media screen and (min-width: 1281px) {
  .hero {
    grid-template-columns: 570px 1fr;
  }
}
@media screen and (max-width: 1280px) and (min-width: 941px) {
  .hero {
    grid-template-columns: 499px 1fr;
  }
}
@media screen and (max-width: 940px) {
  .hero {
    grid-template-columns: 1fr;
  }
}
.hero__info {
  display: flex;
  flex-direction: column;
  width: 100%;
}
@media screen and (min-width: 941px) {
  .hero__info {
    padding-top: 100px;
    padding-right: 60px;
  }
}
@media screen and (max-width: 940px) and (min-width: 481px) {
  .hero__info {
    padding-top: 60px;
    margin: auto;
    max-width: 530px;
    align-items: center;
  }
}
@media screen and (max-width: 560px) {
  .hero__info {
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media screen and (max-width: 480px) {
  .hero__info {
    padding-top: 30px;
    padding-bottom: 50px;
  }
}
.hero__info h1 {
  font-weight: 400;
  line-height: 110%;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}
@media screen and (max-width: 940px) and (min-width: 481px) {
  .hero__info h1 {
    text-align: center;
    max-width: 420px;
  }
}
@media screen and (max-width: 480px) {
  .hero__info h1 {
    text-align: center;
  }
}
.hero__info .section__subtitle {
  margin: 20px 0 10px;
}
@media screen and (max-width: 940px) and (min-width: 481px) {
  .hero__info .section__subtitle {
    max-width: 420px;
    width: 100%;
    text-align: center;
  }
}
.hero__info .section__subtitle p {
  width: 100%;
  max-width: fit-content;
}
@media screen and (max-width: 940px) {
  .hero__info .section__subtitle div.line {
    display: none;
  }
}
@media screen and (max-width: 940px) and (min-width: 481px) {
  .hero__info .section__text {
    max-width: 420px;
    text-align: center;
  }
}
@media screen and (min-width: 481px) {
  .hero__info .single-form {
    margin-top: 81px;
  }
}
@media screen and (max-width: 480px) {
  .hero__info .single-form {
    margin-top: 30px;
  }
}
@media screen and (max-width: 940px) and (min-width: 481px) {
  .hero__info .single-form {
    max-width: 530px;
    width: 100%;
  }
}
@media screen and (max-width: 940px) {
  .hero__info .single-form p.text {
    text-align: center;
  }
}
@media screen and (max-width: 940px) and (min-width: 481px) {
  .hero__info .single-form .single-form__request {
    height: 80px;
  }
}
@media screen and (max-width: 940px) {
  .hero__info .single-form .agreement__container {
    max-width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 480px) {
  .hero__info .single-form .single-form__submit {
    padding-left: 35px;
    padding-right: 35px;
  }
}
.hero__image {
  position: relative;
  width: 100%;
  overflow: visible;
}
@media screen and (max-width: 940px) {
  .hero__image {
    grid-row: 1/2;
  }
}
@media screen and (max-width: 480px) {
  .hero__image {
    padding: 0 16px;
  }
}
@media screen and (min-width: 1521px) {
  .hero__image {
    width: 1150px;
    height: 970px;
  }
}
.hero__image img {
  width: 100%;
}
@media screen and (max-width: 1720px) and (min-width: 1521px) {
  .hero__image img {
    object-fit: contain;
  }
}
@media screen and (max-width: 1520px) {
  .hero__image img {
    height: 100%;
    object-fit: cover;
  }
}
@media screen and (max-width: 1200px) and (min-width: 941px) {
  .hero__image img {
    object-position: -238px 0;
  }
}
@media screen and (min-width: 941px) {
  .hero__background {
    position: absolute;
    right: 0;
    top: 0;
    overflow: hidden;
  }
}
@media screen and (min-width: 1521px) {
  .hero__background {
    max-height: 970px;
    height: 100%;
    width: 100%;
  }
}
@media screen and (max-width: 1520px) and (min-width: 941px) {
  .hero__background {
    max-height: 100%;
    height: 100%;
    width: 100%;
  }
}
.hero__deadline {
  margin-top: 81px;
  display: grid;
}
@media screen and (min-width: 941px) {
  .hero__deadline {
    margin-bottom: 83px;
  }
}
@media screen and (max-width: 640px) and (min-width: 481px) {
  .hero__deadline {
    margin-bottom: 83px;
  }
}
@media screen and (min-width: 481px) {
  .hero__deadline {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 480px) {
  .hero__deadline {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 35px;
  }
}
@media screen and (max-width: 940px) and (min-width: 481px) {
  .hero__deadline {
    max-width: 510px;
    width: 100%;
  }
}
.hero__deadline__element {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.hero__deadline__element:first-child {
  border-right: 1px dashed #BABABA;
}
@media screen and (min-width: 481px) {
  .hero__deadline__element:last-child {
    border-left: 1px dashed #BABABA;
  }
}
@media screen and (max-width: 480px) {
  .hero__deadline__element:last-child {
    grid-column: 1/3;
  }
}
.hero__deadline__element p.title {
  font-size: 18px;
  line-height: 22px;
  text-align: center;
  color: #000000;
  max-width: 109px;
}
.hero__deadline__element p.subtitle {
  font-size: 12px;
  line-height: 13px;
  letter-spacing: 0.12px;
  text-align: center;
  color: #57585C;
}

.single-form {
  display: flex;
  flex-direction: column;
  gap: 25px;
  gap: 25px;
}
.single-form p.text {
  font-family: var(--main-font);
  font-weight: 400;
  font-size: clamp(20px, 2vw + 1rem, 40px);
  line-height: 40px;
  letter-spacing: 1%;
}
.single-form__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.single-form__request {
  display: flex;
  align-items: flex-start;
  z-index: 5;
}
.single-form__request-input {
  display: flex;
  width: 100%;
  height: 100%;
  min-height: 80px;
}
@media screen and (min-width: 941px) {
  .single-form__request-input {
    min-width: 502px;
  }
}
.single-form__request-input input {
  width: 100%;
  text-align: center;
  color: var(--gray);
  font-family: var(--extra-font);
  font-weight: 300;
  font-size: 18px;
  line-height: 30px;
  letter-spacing: 0.18px;
  border: 1px solid #FFFFFF;
  box-shadow: 0 20px 40px 10px #e6eaf0;
  outline: none;
  transition: box-shadow 0.3s ease;
}
@media screen and (max-width: 640px) {
  .single-form__request-input input {
    height: 100%;
    min-height: 80px;
  }
}
.single-form__request-input input:focus, .single-form__request-input input:active, .single-form__request-input input:hover {
  box-shadow: 0 20px 40px 10px #e5ecf8;
}
.single-form__request-input input::placeholder {
  color: var(--gray);
}
.single-form__request-input input::-webkit-outer-spin-button, .single-form__request-input input::-webkit-inner-spin-button {
  /* display: none; <- Crashes Chrome on hover */
  -webkit-appearance: none;
  margin: 0; /* <-- Apparently some margin are still there even though it's hidden */
}
.single-form__submit {
  background-color: var(--black);
  border: 1px solid transparent;
  outline: none;
  padding: 33px 44px;
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  transition: border-color 0.3s ease, background-color 0.3s ease;
}
.single-form__submit .icon__arrow-form {
  fill: var(--white);
  width: 41px;
  height: 12px;
  transition: fill 0.3s ease, transform 0.4s ease 0.1s;
}
.single-form__submit:hover {
  background-color: var(--black-hover);
  border-color: var(--black-hover);
}
.single-form__submit:hover .icon__arrow-form {
  fill: var(--white);
  transform: translateX(10px);
}

.error {
  display: flex;
  flex-direction: column;
  gap: 5px;
  display: none;
}
.error span {
  color: red;
  font-size: 16px;
  font-family: var(--extra-font);
}

/* Customize the label (the agreement__container) */
.agreement__container {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.agreement__container span.signature {
  font-family: var(--extra-font);
  font-weight: 300;
  font-size: 12px;
  line-height: 15px;
  letter-spacing: 0.12px;
  display: flex;
  height: 100%;
  padding-top: 6px;
  color: #000;
}
.agreement__container span.signature a,
.agreement__container span.signature a:hover,
.agreement__container span.signature a:visited{
    color: #000;
}

/* Hide the browser's default checkbox */
.agreement__container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: var(--white);
  box-shadow: 0px 10px 40px 10px #E6EAF0;
}

/* On mouse-over, add a grey background color */
.agreement__container:hover input ~ .checkmark {
  background-color: var(--white);
}

/* When the checkbox is checked, add a blue background */
.agreement__container input:checked ~ .checkmark {
  background-color: var(--white);
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.agreement__container input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.agreement__container .checkmark:after {
  left: 9px;
  top: 5px;
  width: 4px;
  height: 9px;
  border: solid var(--gray);
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.icon__wa {
  fill: #212121;
  transition: fill 0.3s ease;
  width: 41px;
  height: 40px;
}
.icon__wa:hover {
  fill: #F5C4A0;
}
.icon__tg {
  fill: #212121;
  transition: fill 0.3s ease;
  width: 41px;
  height: 40px;
}
.icon__tg:hover {
  fill: #F5C4A0;
}

.timer {
  width: 100%;
  margin: auto;
}

.timer {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1296px;
  margin: 0 auto;
  z-index: 5;
  position: relative;
  background-color: transparent;
}
.timer-container {
  display: flex;
  margin: auto;
  justify-content: space-between;
  align-items: center;
}
.timer-container-deadline {
  display: flex;
  gap: 10px;
  align-items: center;
}
.timer-container-deadline .offer__timeline {
  position: absolute;
  width: 118px;
  height: 118px;
}
.timer-container-deadline .offer__timeline-line {
  position: absolute;
  border-radius: 50%;
  overflow: unset;
  border: 4px solid #fff;
  width: 118px;
  height: 118px;
}
.timer-container-deadline .offer__timeline-circle {
  fill: none;
  stroke-width: 5px;
  stroke: #2c2c2c;
  stroke-dasharray: 314;
  stroke-dashoffset: 314;
  transition: all 0.6s ease;
}
.timer-container-deadline .time {
  display: inline-flex;
  flex-direction: column;
  position: relative;
  justify-content: center;
  border-radius: 50%;
  width: 118px;
  height: 118px;
}
.timer-container-deadline .time .count {
  font-family: var(--main-font);
  font-weight: 400;
  font-size: 40px;
  line-height: 30px;
  letter-spacing: 0.4px;
  text-align: center;
  text-align: center;
  color: #000000;
  position: relative;
  z-index: 1;
  padding-top: 5px;
  padding-left: 7px;
}
.timer-container-deadline .time .time-of {
  font-family: var(--extra-font);
  font-weight: 300;
  font-size: 12px;
  line-height: 13px;
  letter-spacing: 0.12px;
  text-align: center;
  margin-top: 7px;
  color: #57585c;
}

.social__buttons {
  display: flex;
}
@media screen and (min-width: 481px) {
  .social__buttons {
    gap: 10px;
  }
  .hero__deadline__element:last-child {
    padding-left: 25px;
  }
}
@media screen and (max-width: 480px) {
  .social__buttons {
    gap: 30px;
  }
}
.social__buttons.social__buttons-hero {
  margin-top: 20px;
}

.main__form {
  display: flex;
  flex-direction: column;
  gap: 19px;
  max-width: 493px;
  margin-top: 45px;
}
@media screen and (max-width: 640px) {
  .main__form {
    padding: 0 16px;
  }
}
.main__form__input {
  position: relative;
  max-width: 100%;
}
.main__form__input input {
  width: 100%;
  text-align: center;
  color: var(--gray);
  font-family: var(--extra-font);
  font-weight: 300;
  font-size: 18px;
  line-height: 30px;
  letter-spacing: 0.18px;
  border: 1px solid #ffffff;
  padding: 24px 0;
  outline: none;
  transition: box-shadow 0.3s ease;
}
.main__form__input input::placeholder {
  color: var(--gray);
}
.main__form__input input::-webkit-outer-spin-button, .main__form__input input::-webkit-inner-spin-button {
  /* display: none; <- Crashes Chrome on hover */
  -webkit-appearance: none;
  margin: 0; /* <-- Apparently some margin are still there even though it's hidden */
}
.main__form .single-form__submit span {
  font-family: var(--main-font);
  font-weight: 400;
  font-size: 25px;
  line-height: 30px;
  letter-spacing: 0.25px;
  text-align: center;
  vertical-align: middle;
  color: #ffffff;
}
.main__form__submit {
  padding: 29px 0;
}/*# sourceMappingURL=initial.css.map */