@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap");
:root {
  --main-font: "Inter", sans-serif;
  --green-color: rgb(21, 150, 0);
  --black-color: rgb(38, 38, 38);
  --gray-color: rgb(236, 236, 236);
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video,
textarea {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  outline: none;
}

* {
  box-sizing: border-box;
}

/* always display scrollbars */
html {
  overflow-x: hidden;
}

body {
  background: #fff;
  color: #000;
  font-variant-numeric: lining-nums proportional-nums;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100vh;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

strong {
  font-weight: bold;
}

input {
  outline: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

img {
  border: 0;
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

a {
  display: block;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h6 {
  color: var(--black-color);
  font-family: var(--main-font);
  font-size: 56px;
  font-weight: 700;
  transition: all 0.3s ease;
}
h1.element-animation,
h2.element-animation,
h3.element-animation,
h4.element-animation,
h6.element-animation {
  opacity: 0;
  transform: translate(-50px, -50px);
}
h1.element-show,
h2.element-show,
h3.element-show,
h4.element-show,
h6.element-show {
  opacity: 1;
  transform: translate(0px, 0px);
}

p {
  transition: all 0.3s ease;
}
p.element-animation {
  opacity: 0;
  transform: translate(15px, 5px);
}
p.element-show {
  opacity: 1;
  transform: translate(0px, 0px);
}

.container {
  max-width: 1720px;
  position: relative;
  margin-left: auto;
  margin-right: auto;
  padding-right: 20px;
  padding-left: 20px;
}

.element-show,
.element-animation {
  transition: all 0.5s ease !important;
}

.element-animation {
  opacity: 0;
}

.element-show {
  opacity: 1;
}

.green-button {
  background: transparent;
  border-radius: 53px;
  padding: 2px;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 3;
}
@media screen and (max-width: 1000px) {
  .green-button {
    padding: 0;
  }
}
.green-button span {
  font-family: var(--main-font);
  font-size: 22px;
  position: inherit;
  box-sizing: border-box;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: var(--green-color);
  padding: 12px 22px;
  color: #fff;
  z-index: 3;
  transition: all 0.7s ease;
}
.green-button::before {
  background: var(--green-color);
  content: "";
  display: block;
  position: absolute;
  width: 0px;
  height: 50%;
  left: 0;
  top: 0;
  z-index: 2;
  animation: hoverBackBeforeButton 0.6s ease 1;
}
@keyframes hoverBackBeforeButton {
  0% {
    width: 100%;
  }
  100% {
    width: 0px;
  }
}
.green-button::after {
  background: var(--green-color);
  content: "";
  display: block;
  position: absolute;
  width: 0px;
  height: 50%;
  right: 0;
  bottom: 0;
  z-index: 2;
  animation: hoverBackAfterButton 0.6s ease 1;
}
@keyframes hoverBackAfterButton {
  0% {
    width: 100%;
  }
  100% {
    width: 0px;
    transform: translateX(0%);
  }
}
@media (hover: hover) {
  .green-button:hover span {
    background: #fff;
    color: var(--green-color);
    transition: all 0.7s ease;
  }
  .green-button:hover::before {
    width: 100%;
    animation: hoverBeforeButton 0.6s ease 1;
  }
  @keyframes hoverBeforeButton {
    0% {
      width: 0px;
    }
    100% {
      width: 100%;
    }
  }
  .green-button:hover::after {
    width: 100%;
    animation: hoverAfterButton 0.6s ease 1;
  }
  @keyframes hoverAfterButton {
    0% {
      width: 0px;
      transform: translateX(0%);
    }
    100% {
      width: 100%;
    }
  }
}

.button-main-prev,
.button-main-next {
  width: 48px;
  height: 48px;
  border-radius: 500px;
  border: 1px solid #fff;
  background: #fff;
  cursor: pointer;
  display: none;
  justify-content: center;
  align-items: center;
  padding: 0;
  transition: all 0.3s ease;
}
@media screen and (max-width: 700px) {
  .button-main-prev,
  .button-main-next {
    width: 25px;
    height: 25px;
  }
}
.button-main-prev:hover,
.button-main-next:hover {
  transition: all 0.3s ease;
  border: 1px solid var(--green-color);
}
.button-main-prev::before,
.button-main-next::before {
  content: "";
  display: block;
  background-image: url("/images/icons/arrow-slider.svg");
  background-position: 55% 51%;
  background-repeat: no-repeat;
  background-size: 20%;
  width: inherit;
  height: inherit;
}

.button-prev,
.button-next {
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
  width: 48px;
  height: 48px;
  border-radius: 500px;
  border: 1px solid #fff;
  background: #fff;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  transition: all 0.3s ease;
}
.button-prev:hover,
.button-next:hover {
  transition: all 0.3s ease;
  border: 1px solid var(--green-color);
}
.button-prev::before,
.button-next::before {
  content: "";
  display: block;
  background-image: url("/images/icons/arrow-slider.svg");
  background-position: 55% 51%;
  background-repeat: no-repeat;
  background-size: 20%;
  width: inherit;
  height: inherit;
}

.button-prev::before,
.button-main-prev::before {
  transform: rotate(180deg);
}

.notyf {
  align-items: center !important;
}

.fancybox-container {
  z-index: 997 !important;
}

.fancybox-slide--html {
  padding: 20px !important;
}

.modal {
  display: none;
  max-width: 721px !important;
  padding: 100px 80px 80px 80px !important;
  border-radius: 50px;
  background: var(--gray-color) !important;
}
@media screen and (max-width: 750px) {
  .modal {
    padding: 60px 40px 40px 40px !important;
  }
}
@media screen and (max-width: 470px) {
  .modal {
    padding: 40px 20px 20px 20px !important;
    border-radius: 30px;
  }
}
.modal .modal-close {
  cursor: pointer;
  position: absolute;
  top: 25px;
  right: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  padding: 20px;
}
@media screen and (max-width: 470px) {
  .modal .modal-close {
    height: 20px;
    width: 20px;
    top: 10px;
    right: 10px;
  }
}
.modal .modal-close::before {
  content: "";
  display: block;
  min-width: 22px;
  max-width: 22px;
  min-height: 22px;
  max-height: 22px;
  background-image: url("/images/icons/close-modal.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.modal .title,
.modal .subtitle {
  font-family: var(--main-font);
  text-align: center;
}
.modal .title {
  color: var(--green-color);
  font-size: 40px;
  font-weight: 700;
}
@media screen and (max-width: 700px) {
  .modal .title {
    font-size: 22px;
  }
}
.modal .subtitle {
  margin-top: 16px;
  color: var(--black-color);
  font-size: 32px;
  font-weight: 400;
}
@media screen and (max-width: 700px) {
  .modal .subtitle {
    font-size: 18px;
  }
}
.modal form {
  margin-top: 40px;
  width: 100%;
  /* для элемента input c type="checkbox" */
  /* для элемента label, связанного с .custom-checkbox */
  /* создание в label псевдоэлемента before со следующими стилями */
  /* стили при наведении курсора на checkbox */
  /* стили для активного чекбокса (при нажатии на него) */
  /* стили для чекбокса, находящегося в состоянии checked */
  /* стили для чекбокса, находящегося в состоянии disabled */
}
@media screen and (max-width: 700px) {
  .modal form {
    margin-top: 24px;
  }
}
.modal form .input-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.modal form .input-container .is-invalid {
  border: 1px solid rgb(226, 61, 61);
  color: rgb(226, 61, 61);
}
.modal form .input-container .is-invalid::placeholder, .modal form .input-container .is-invalid::-ms-input-placeholder {
  color: rgb(226, 61, 61) !important;
}
.modal form .input-container .error {
  color: rgb(226, 61, 61);
  padding-left: 24px;
  font-family: var(--main-font);
  font-size: 16px;
  font-weight: 400;
}
@media screen and (max-width: 700px) {
  .modal form .input-container .error {
    padding-left: 16px;
  }
}
.modal form input {
  all: initial;
}
.modal form .fields {
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.modal form .fields input {
  box-sizing: border-box;
  width: 100%;
  background: #fff;
  border-radius: 53px;
  padding: 24px;
  color: var(--black-color);
  font-family: var(--main-font);
  font-size: 20px;
  font-weight: 500;
}
@media screen and (max-width: 700px) {
  .modal form .fields input {
    padding: 16px 24px;
    font-size: 16px;
  }
}
.modal form .fields input::placeholder, .modal form .fields input::-ms-input-placeholder {
  font-family: var(--main-font);
  color: rgb(189, 192, 191);
  font-size: 16px;
  font-weight: 500;
}
@media screen and (max-width: 700px) {
  .modal form .fields input::placeholder, .modal form .fields input::-ms-input-placeholder {
    font-size: 14px;
  }
}
.modal form .custom-checkbox > input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}
.modal form .custom-checkbox > span a,
.modal form .custom-checkbox > span {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  color: rgb(155, 155, 155);
  font-family: var(--main-font);
  font-size: 16px;
  font-weight: 500;
}
@media screen and (max-width: 470px) {
  .modal form .custom-checkbox > span a,
  .modal form .custom-checkbox > span {
    font-size: 14px;
  }
}
.modal form .custom-checkbox > span::before {
  content: "";
  display: inline-block;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  flex-grow: 0;
  border: 1px solid rgb(155, 155, 155);
  border-radius: 0.25em;
  margin-right: 0.5em;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 50% 50%;
  background: #fff;
}
@media screen and (max-width: 470px) {
  .modal form .custom-checkbox > span::before {
    height: 20px;
    width: 20px;
  }
}
.modal form .custom-checkbox > input:not(:disabled):not(:checked) + span:hover::before {
  border-color: var(--green-color);
}
.modal form .custom-checkbox > input:not(:disabled):active + span::before {
  background-image: url("/images/icons/ckeckbox.svg");
  background-repeat: no-repeat;
  background-size: 10px 8px;
  background-position: center;
  background-color: #fff;
  border-color: var(--green-color);
}
.modal form .custom-checkbox > input:checked + span::before {
  background-image: url("/images/icons/ckeckbox.svg");
  background-repeat: no-repeat;
  background-size: 40%;
  background-position: center;
  background-color: #fff;
  border-color: var(--green-color);
}
.modal form .custom-checkbox > input:disabled + span::before {
  background-color: #e9ecef;
}
.modal form button {
  cursor: pointer;
  width: 100%;
  margin-top: 40px;
  border: none;
}
@media screen and (max-width: 700px) {
  .modal form button span {
    padding: 16px 24px;
    font-size: 18px;
  }
}
@media screen and (max-width: 470px) {
  .modal form button {
    margin-top: 32px;
  }
}/*# sourceMappingURL=preset.css.map */