/*Обнуление*/
* {
  padding: 0;
  margin: 0;
  border: 0;
  font-family: "Roboto", sans-serif !important;
}
*,
*:before,
*:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
:focus,
:active {
  outline: none;
}
a:focus,
a:active {
  outline: none;
}

nav,
footer,
header,
aside {
  display: block;
}

html,
body {
  height: 100%;
  width: 100%;
  font-size: 100%;
  line-height: 1;
  font-size: 14px;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}
input,
button,
textarea {
  font-family: inherit;
}

input::-ms-clear {
  display: none;
}
button {
  cursor: pointer;
}
button::-moz-focus-inner {
  padding: 0;
  border: 0;
}
a,
a:visited {
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}
ul li {
  list-style: none;
}
img {
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: 400;
}
/*--------------------*/

#banner {
  position: fixed;
  top: -70px; /* Стартовая позиция, за пределами видимой области */
  left: 0;
  width: 100%;
  background-color: #10a37f;
  color: white;
  text-align: center;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 18px;
  padding: 10px 0;
  transition: top 0.5s ease-in-out; /* Анимация для плавного перемещения */
  z-index: 1000; /* Убедитесь, что плашка находится над другими элементами */
}

.button {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #10a37f;
  border-radius: 45px;
  text-transform: uppercase;
  color: #fff;
  font-weight: 400;
  font-size: 16px;
  max-height: 45px;
  padding: 10px 30px;
  cursor: pointer;
  transition: background 0.2s ease-out;
}
.button:hover {
  background: #17c498;
}

body {
  background-color: #181b21;
}
header {
  margin-top: 20px;
}
.logo {
  display: flex;
  height: 5em;
  width: 5em;
  border-radius: 5px;
  background-image: url("../favicon.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  cursor: pointer;
}
.places-counter {
  background-color: rgb(0, 0, 0, 0.5);
  border-radius: 50px;
  max-height: 45px;
  padding: 10px 20px;
}
.places-counter span {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: 100%;
}
.places-counter strong {
  margin: 0 10px;
  font-size: 35px;
  font-weight: 800;
  color: #10a37f;
  padding-bottom: 4px;
}
.title {
  color: #fff;
  font-size: 45px;
  line-height: 120%;
}
.payouts {
  background-color: #10a37f;
  border-radius: 0 10px 10px 10px;
}
.payouts-text {
  color: #fff;
  font-size: 16px;
  font-weight: normal;
  padding: 10px;
  background: #1c2536;
  display: inline-block;
  border-radius: 10px 10px 0 0;
}
.info {
  border: 1px solid #10a37f;
  border-radius: 10px;
  padding: 15px;
  line-height: 110%;
  font-size: 24px;
}
.info p {
  color: #fff;
  opacity: 0.9;
  font-weight: 300;
}
.info strong {
  font-weight: 600;
}
.info video {
  max-width: 100%;
  border-radius: 10px;
  overflow: hidden;
}
.info-divider {
  height: 80%;
  width: 1px;
  background-color: #10a37f;
}
.calculator__body {
  border: 1px solid #10a37f;
  border-radius: 10px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: 2rem 0;

  /* margin: 0 2rem; */
}
.calculator__title {
  padding: 10px 20px;
  font-weight: 700;
  font-size: 24px;
}
.calculator__subtitle {
  font-size: 18px;
  margin: 0 30px 0 20px;
  font-weight: 400;
  margin-bottom: 10px;
  flex: 0 0 auto;
  color: #fff;
  line-height: 120%;
}
.green-underline {
  padding-bottom: 10px;
  position: relative;
}
.green-underline:after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 90%;
  height: 2px;
  background-color: #10a37f;
}
.calc_blocks {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: end;
  margin: 0 10px;
  margin-top: 20px;
  padding: 20px;
}

.calc__input::-webkit-outer-spin-button,
.calc__input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.contacts {
  color: #fff;
  background-color: #21252c;
}
.contacts p {
  letter-spacing: 0.8px;
  font-weight: lighter;
  line-height: 130%;
}
.map {
  max-height: 575px;
}
.map img {
  max-height: 575px;
  object-fit: cover;
}
@media (max-width: 767px) {
  .calc_blocks {
    flex-direction: column;
    padding: 10px;
    align-items: center;
  }
}
.calculator__calcblock {
  flex: 1 0 auto;
  width: 150px;
  margin: 0 10px;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .calculator__calcblock {
    width: 100%;
  }
}
.calc__area {
  position: relative;
  width: 100%;
  height: 60px;
  margin-bottom: 15px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
}
.calc__label {
  text-align: center;
  position: absolute;

  transition: 0.3s ease;
  font-size: 26px;
  pointer-events: none;
}
.calc__input {
  background-color: #0e0e11;
  text-align: center;
  border-radius: 12px;
  display: flex;
  width: 100%;
  height: 100%;
  padding: 0 0 5px 0;
  border-bottom: 1px solid #303838;
  outline: none;
  transition: 0.05s ease;
  font-weight: 700;
  color: #c0c0c0;
}
.calc__input input::before {
  content: "$";
}
.calc__input input {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.calc__input:focus {
  border-bottom: 1px solid #2d2e2e2c;
}
.calc__input:focus ~ .calc__label,
.calc__input:not(:placeholder-shown) ~ .calc__label {
  opacity: 0;
}
.calc__output {
  color: white;
  background-color: #10a37f;
}

.slider__container {
  margin: 0 auto;
  position: relative;
  width: 80%;
}
.slider__container p {
  margin: 0;
  padding: 0;
  width: 100%;
  color: #fff;
}
.slider__container ul {
  padding: 0;
  margin: 0 auto;
  font-family: inherit;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  color: #fff;
}
form button {
  flex: 1 1 !important;
  width: 100% !important;
}
@media (max-width: 767px) {
  .title {
    font-size: 35px;
  }
  .info {
    font-size: 18px;
  }
}
@media (max-width: 991px) {
  .payouts {
    border-radius: 10px;
  }
}

.contact {
  margin-bottom: 45px;
}
.contact__inner {
  border-radius: 16px;
  background: rgba(245, 245, 245, 0.05);
  backdrop-filter: blur(17.5px);
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  padding: 55px;
}
@media (max-width: 1310px) {
  .contact__inner {
    padding-top: calc(47.9947px + 0.534759vw);
  }
}
@media (max-width: 1310px) {
  .contact__inner {
    padding-right: calc(-1.04278px + 4.27807vw);
  }
}
@media (max-width: 1310px) {
  .contact__inner {
    padding-bottom: calc(47.9947px + 0.534759vw);
  }
}
@media (max-width: 1310px) {
  .contact__inner {
    padding-left: calc(-1.04278px + 4.27807vw);
  }
}
.contact__title {
  color: rgb(255, 255, 255);
  text-align: center;
  font-weight: 700;
  line-height: 32px;
  margin: 0px auto 16px;
  font-size: 32px;
  max-width: 725px;
}
@media (max-width: 1310px) {
  .contact__title {
    font-size: calc(20.7914px + 0.855615vw);
  }
}
@media (max-width: 1310px) {
  .contact__title {
    max-width: calc(24.4652px + 53.4759vw);
  }
}
.contact__text {
  color: rgb(255, 255, 255);
  text-align: center;
  margin: 0px auto 45px;
  max-width: 350px;
  font-size: 17px;
  line-height: 20px;
}
@media (max-width: 1310px) {
  .contact__text {
    margin-bottom: calc(23.984px + 1.60428vw);
  }
}
@media (max-width: 1310px) {
  .contact__text {
    max-width: calc(237.914px + 8.55615vw);
  }
}
@media (max-width: 1310px) {
  .contact__text {
    font-size: calc(14.1979px + 0.213904vw);
  }
}
@media (max-width: 1310px) {
  .contact__text {
    line-height: calc(17.1979px + 0.213904vw);
  }
}
.contact__text br {
  display: none;
}
.contact-form {
  max-width: 725px;
  width: 100%;
}
.contact-form__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 25px;
  align-items: start;
}
@media (max-width: 1310px) {
  .contact-form__inner {
    gap: calc(10.3957px + 0.427807vw);
  }
}
.contact-form__box {
  border-radius: 10px;
  border: 1px solid rgb(75, 80, 94);
  background: rgb(45, 47, 55);
}
.contact-form__box-input {
  width: 100%;
  height: 100%;
  background: unset;
  padding: 18px 20px;
  color: rgb(255, 255, 255);
  font-size: 15px;
  line-height: 15px;
}
@media (max-width: 1310px) {
  .contact-form__box-input {
    padding-top: calc(13.7968px + 0.320856vw);
  }
}
@media (max-width: 1310px) {
  .contact-form__box-input {
    padding-bottom: calc(13.7968px + 0.320856vw);
  }
}
.contact-form__box-input::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.4);
  font-size: 15px;
  line-height: 15px;
}
.contact-form__box-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
  font-size: 15px;
  line-height: 15px;
}
.contact-form__checkboxes {
  width: 100%;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -webkit-box-align: start;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 35px;
}
@media (max-width: 1310px) {
  .contact-form__checkboxes {
    margin-bottom: calc(20.9893px + 1.06952vw);
  }
}
.contact-form__checkboxes br {
  display: none;
}
.contact-form__checkboxes .container {
  display: block;
  position: relative;
  padding-left: 30px;
  cursor: pointer;
  user-select: none;
  margin-left: unset;
  margin-right: unset;
  padding-right: unset;
  color: rgb(255, 255, 255);
  font-family: Inter, sans-serif;
  font-size: 15px;
  line-height: 23px;
  text-align: start;
}
.contact-form__checkboxes .container a {
  text-decoration: underline;
  color: rgb(255, 255, 255);
}
.contact-form__checkboxes .container a:hover {
  text-decoration: unset;
}
.contact-form__checkboxes .container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0px;
  width: 0px;
}
.contact-form__checkboxes .checkmark {
  position: absolute;
  top: 2px;
  left: 0px;
  height: 18px;
  width: 18px;
  border-radius: 4px;
  border: 1px solid rgb(75, 80, 94);
  background: rgb(45, 47, 55);
  transition: border 0.3s ease 0s;
}
.contact-form__checkboxes .container input:checked ~ .checkmark {
  border: 1px solid rgb(8, 180, 166);
}
.contact-form__checkboxes .checkmark::after {
  content: "";
  position: absolute;
  opacity: 0;
  transition: opacity 0.3s ease 0s;
}
.contact-form__checkboxes .container input:checked ~ .checkmark::after {
  opacity: 1;
}
.contact-form__checkboxes .container .checkmark::after {
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: 12px;
  height: 10px;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../img/tick-icon.png");
}
.contact-form__wrap {
  position: relative;
  border-radius: 100px;
  pointer-events: none;
}
.contact-form__wrap::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0px;
  z-index: 1;
  opacity: 0;
  pointer-events: none;
}
.contact-form__button {
  max-width: 100%;
  transition: opacity 0.3s ease 0s;
  opacity: 0.4;
}
/* .contact-form__button--mobile { display: none; } */
@media (max-width: 1100px) {
  .window__wrapper {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .window__wrapper {
    grid-template-columns: 1fr;
  }
  .window__img {
    order: -1;
  }
  .window__img {
    height: 325px;
    min-height: 325px;
  }
}
@media (max-width: 768px) and (max-width: 1310px) {
  .window__img {
    height: calc(128.85px + 14.9733vw);
  }
}
@media (max-width: 768px) and (max-width: 1310px) {
  .window__img {
    min-height: calc(128.85px + 14.9733vw);
  }
}
@media (max-width: 768px) {
  .window-form {
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .window-body {
    padding: 0px;
  }
}
@media (max-width: 768px) {
  .contact-form__inner {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 550px) {
  .window__bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-align: start;
    align-items: flex-start;
    gap: 20px;
  }
  .window__wrapper {
    border-bottom: unset;
    padding-bottom: 0px;
  }
  .window-bottom__wrap {
    max-width: 100%;
    width: 100%;
  }
  .window-bottom__wrap-button {
    width: 100%;
    max-width: 100%;
  }
  .lines {
    display: none;
  }
  .window__img svg {
    display: none;
  }
  .contact__text br {
    display: block;
  }
  .contact-form__checkboxes br {
    display: block;
  }
  .contact-form__button {
    display: none;
  }
  .contact-form__button--mobile {
    display: flex;
  }
  .greating__inner::before {
    display: none;
  }
  .greating__line {
    z-index: 1;
    bottom: 260px;
  }
}
