.header__wrapper {
  display: flex;
  flex-direction: column;
  padding-top: 20px;
}
.header__wrp {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.header__logo {
  display: flex;
  gap: 20px;
  align-items: center;
}
.header__logo-wrp {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.header__name {
  font-size: clamp(1.25rem, 1.125rem + 0.625vw, 1.875rem);
  font-weight: 700;
}
.header__desc {
  color: #66727F;
  font-size: clamp(0.6875rem, 0.625rem + 0.3125vw, 1rem);
  line-height: 1.3;
  max-width: 450px;
}
.header__contacts {
  display: flex;
  gap: 20px;
  align-items: center;
}
.header__contact {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: clamp(0.875rem, 0.85rem + 0.125vw, 1rem);
  color: #0B1F33;
}
.header__contact:hover {
  color: #51EC85;
}
.header__ic {
  width: 25px;
  height: 25px;
  fill: #54BFE4;
}

@media only screen and (max-width: 946px) {
  .header hr {
    display: none;
  }
  .header__wrapper {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding-top: 10px;
  }
  .header__logo {
    gap: 5px;
  }
  .header__logo-wrp {
    gap: 3px;
  }
  .header__right {
    flex-basis: 10%;
  }
  .header__left {
    flex-basis: 90%;
  }
  .header__contacts {
    display: none;
  }
}
.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  transition: all 0.3s;
  cursor: pointer;
  line-height: 1;
  text-decoration: none;
  font-size: clamp(0.875rem, 0.825rem + 0.25vw, 1.125rem);
  padding: 20px 30px;
  align-self: flex-start;
  font-weight: 700;
  text-transform: uppercase;
  z-index: 50;
}

.btn-green {
  background: #51EC85;
  border: 1px solid #51EC85;
  color: #fff;
}
.btn-green:hover {
  background: rgb(103.9896373057, 238.5103626943, 149.1191709845);
  color: #fff;
}

@media only screen and (max-width: 946px) {
  .btn {
    padding: 15px 20px;
  }
}
.header .nav__contacts {
  display: none;
}

@media only screen and (max-width: 946px) {
  .header .nav__contacts {
    display: flex;
    flex-direction: column;
    margin-top: 50px;
    padding-left: 15px;
    gap: 10px;
  }
  .header .nav__contacts a {
    color: #66727F;
  }
  .header .nav__contact {
    display: flex;
    align-items: center;
  }
  .header .nav__icon {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    fill: #54BFE4;
    flex-shrink: 0;
  }
  .header .nav__phone a {
    font-weight: 700;
    font-size: 18px;
    color: #0B1F33;
    line-height: 1.3;
  }
  .header .nav__email a {
    color: #66727F;
    font-size: 14px;
    line-height: 1.3;
  }
  .header .nav__adress p {
    color: #66727F;
    font-size: 14px;
    line-height: 1.3;
  }
  .header .search-mobile {
    display: flex;
    margin: 20px 0 10px 15px;
  }
  .header .search-mobile form {
    display: flex;
  }
  .header .search-mobile input {
    width: 90%;
    height: 50px;
    border: none;
    border-bottom: 1px solid #66727F;
    font-size: 14px;
  }
  .header .search-mobile .search__icon {
    width: 20px;
    height: 20px;
  }
  .header .search-mobile .header__social-link {
    background: transparent;
    border: none;
    box-shadow: none;
  }
}
.nav__list {
  display: flex;
  align-items: center;
  margin: 0;
}

.nav__item:not(:last-child) {
  margin-right: 40px;
}

.nav__item {
  position: relative;
  padding: 15px 0;
}

.nav__link {
  color: #282828;
  font-size: 18px;
}
.nav__link:hover {
  color: #51EC85;
}

.nav__link--drop::after {
  content: "";
  width: 7px;
  height: 7px;
  background-image: url("../img/download.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: inline-block;
  margin-left: 5px;
  transition: transform 0.3s;
}

.nav__list--dropdown {
  position: absolute;
  background-color: #fff;
  left: 0;
  top: 100%;
  display: block;
  box-shadow: 0 10px 15px 0 rgba(0, 0, 0, 0.07);
  transition: all 0.3s;
  opacity: 0;
  visibility: hidden;
  width: 280px;
  z-index: 90;
}

.dropdown-submenu {
  display: flex;
  align-items: initial;
}

.dropdown-submenu__item {
  flex-grow: 1;
  min-width: 200px;
  padding: 0px 30px;
}

.dropdown-submenu__list {
  padding: 0;
}

.dropdown-submenu__item:not(:last-child) {
  border-right: 1px solid #bfbfbf;
}

.dropdown-submenu__item:first-child {
  padding-left: 0;
}

.dropdown-submenu__item:last-child {
  padding-right: 0;
}

.mobile-back {
  display: none;
}

.mobile-back__link {
  color: #282828;
  font-weight: 500;
}

.dropdown-list__item {
  border-bottom: 1px solid #ececec;
}

.dropdown-list__link {
  font-size: 15px;
  color: #282828;
  padding: 13px 20px;
  display: block;
}
.dropdown-list__link:hover {
  color: #54BFE4;
}

.dropdown-submenu__list-item {
  margin-bottom: 10px;
}

@media (min-width: 946px) {
  .nav__link--drop:hover::after {
    transform: rotate(180deg);
    transition: all 0.3s;
  }
  .nav__item:hover .nav__list--dropdown {
    visibility: visible;
    opacity: 1;
    transition: all 0.3s;
  }
}
.burger {
  width: 40px;
  height: 20px;
  cursor: pointer;
  background-color: transparent;
  border: none;
  position: relative;
  display: none;
}

.burger::before,
.burger::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 1px;
  background-color: #000;
}

.burger::after {
  top: auto;
  bottom: 0;
}

.burger span {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  height: 1px;
  display: inline-block;
  background-color: #000;
}

.overlay {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
}

.lock {
  overflow: hidden;
}

@media (max-width: 946px) {
  .burger {
    display: block;
  }
  .mobile-back {
    display: block;
  }
  .main-menu {
    position: fixed;
    left: 0;
    top: 0;
    max-width: 400px;
    width: 80%;
    height: 100vh;
    z-index: 100;
    box-shadow: 5px 0 15px -5px rgba(0, 0, 0, 0.8);
    background-color: #fff;
    transform: translateX(-150vw);
    overflow-x: hidden;
    overflow-y: auto;
    display: block;
  }
  .nav__list {
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
    padding-top: 10%;
    position: relative;
    justify-content: flex-start;
  }
  .nav__item {
    margin-left: 0 !important;
    font-size: 20px;
    width: 100%;
    padding: 0;
    position: static;
  }
  .nav__link,
  .dropdown-submenu__list-item a {
    padding: 13px 20px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .dropdown-submenu__list-item {
    padding: 0;
  }
  .nav__link {
    border-bottom: 1px solid #ececec;
  }
  .nav__link::after {
    transform: rotate(-90deg);
  }
  .nav__list--dropdown {
    position: absolute;
    top: 0;
    right: auto;
    left: 100%;
    box-shadow: none;
    width: 100%;
    display: none;
  }
  .dropdown-submenu__item {
    width: 100%;
    padding: 0;
    border: none !important;
  }
  .dropdown-submenu__title {
    padding: 0 30px;
  }
  .dropdown-submenu__banner {
    display: inline-block;
    padding: 20px;
  }
  .nav__list.transformation {
    transform: translateX(-100%);
    transition: all 0.3s;
  }
  .nav__list--dropdown.transformation {
    opacity: 1;
    visibility: visible;
    display: block;
    transform: none;
    background-color: #fff;
    transition: all 0.3s;
  }
  .main-menu.open {
    transform: translateX(0);
    transition: all 0.3s;
  }
  .overlay.open {
    opacity: 1;
    visibility: visible;
    transition: all 0.3s;
  }
  .mobile-back a {
    position: relative;
    border: none;
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }
  .mobile-back a::before {
    content: "";
    width: 10px;
    height: 10px;
    background-image: url("../img/download.svg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: inline-block;
    margin-right: 10px;
    transform: rotate(90deg);
  }
}
.close_btn {
  display: none;
  position: absolute;
  z-index: 60;
  right: 10px;
  top: 17px;
  cursor: pointer;
}
.close_btn .ic_close {
  width: 20px;
  height: 20px;
}

@media only screen and (max-width: 946px) {
  .open .close_btn {
    display: block;
  }
}
@media only screen and (max-width: 1200px) {
  .nav__link {
    font-size: 16px;
  }
}
.bgmain__h1 {
  font-size: clamp(1.25rem, 0.975rem + 1.375vw, 2.625rem);
  font-weight: 700;
  line-height: 1.5;
  text-transform: uppercase;
  max-width: 970px;
}
.bgmain__h1 span {
  padding: 10px 10px;
  background: linear-gradient(90deg, #f2f8fc 0%, rgba(68, 181, 220, 0.3098039216) 100%);
  border-radius: 0 10px 10px 0;
}
.bgmain__top {
  margin: 30px 0;
}
.bgmain__smtext {
  font-size: clamp(0.875rem, 0.85rem + 0.125vw, 1rem);
  line-height: 1.3;
}
.bgmain__banner {
  position: relative;
  width: 100%;
  border-radius: 20px;
  background: linear-gradient(59deg, #2E7D98 34.54%, #46BAE2 77.68%);
  padding: 30px;
  color: #fff;
}
.bgmain__banner hr {
  max-width: 30%;
}
.bgmain__banner p {
  line-height: 1.5;
  font-size: clamp(0.875rem, 0.825rem + 0.25vw, 1.125rem);
  padding: 20px 0;
}
.bgmain__icon1 {
  position: absolute;
  right: 20px;
  top: 20px;
  z-index: 0;
}
.bgmain__icon2 {
  position: absolute;
  left: 20px;
  bottom: 20px;
  z-index: 0;
}
.bgmain__heading {
  font-size: clamp(1.25rem, 1.125rem + 0.625vw, 1.875rem);
  font-weight: 700;
  margin: 20px 0;
}
.bgmain__wrp {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 40px;
}
.bgmain__wrp p {
  font-weight: 700;
  padding-top: 0;
}

.servs {
  margin: 60px 0;
}

.serv {
  border-radius: 20px;
  background: #FFF;
  box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.08);
  width: 100%;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  position: relative;
  overflow: hidden;
}
.serv__img {
  border-radius: 24px;
  background: linear-gradient(180deg, #86DEFD 0%, #46BAE2 100%);
  width: 98px;
  height: 98px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.serv__img img {
  width: 38px;
  height: 38px;
}
.serv__decor {
  position: absolute;
  right: 0;
  bottom: 0;
}
.serv__h3 {
  font-size: clamp(0.875rem, 0.825rem + 0.25vw, 1.125rem);
  font-weight: 700;
  line-height: 1.4;
}
.serv__p {
  font-size: clamp(0.875rem, 0.825rem + 0.25vw, 1.125rem);
  color: #66727F;
  line-height: 1.4;
}

@media only screen and (max-width: 576px) {
  .serv__img {
    width: 68px;
    height: 68px;
    border-radius: 15px;
  }
  .serv__img img {
    width: 28px;
    height: 28px;
  }
}
.cases {
  margin: 60px 0;
  background: #E4EEF5;
  padding: 60px 0;
}

.case {
  border-radius: 20px;
  background: #FFF;
  box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.08);
  width: 100%;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  position: relative;
  overflow: hidden;
}
.case__label {
  color: #66727F;
  margin-bottom: 10px;
  font-size: clamp(0.875rem, 0.825rem + 0.25vw, 1.125rem);
}
.case__title {
  font-weight: 700;
  line-height: 1.3;
  font-size: clamp(0.875rem, 0.825rem + 0.25vw, 1.125rem);
}
.case__text {
  line-height: 1.3;
  font-size: clamp(0.875rem, 0.825rem + 0.25vw, 1.125rem);
}

.header {
  position: absolute;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}

.menu-fixed {
  box-shadow: 0 4px 15px -10px rgba(0, 0, 0, 0.6);
  position: fixed;
  animation: slide-down 0.7s;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.7);
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
}
.menu-fixed .header__desc {
  display: none;
}
.menu-fixed .header__wrapper {
  padding-top: 5px;
}
.menu-fixed hr {
  margin: 3px 0;
}
.menu-fixed .header__logo img {
  width: 40px;
  height: 40px;
}
.menu-fixed .btn {
  padding: 15px 30px;
}

@keyframes slide-down {
  0% {
    opacity: 0;
    transform: translateY(-100%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.mainform {
  margin: 60px 0;
}
.mainform__wrp {
  padding: 50px;
  background: linear-gradient(59deg, #2E7D98 34.54%, #46BAE2 77.68%);
  color: #fff;
  border-radius: 10px;
}
.mainform__title {
  font-size: clamp(1.125rem, 1.05rem + 0.375vw, 1.5rem);
  text-transform: uppercase;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 20px;
}
.mainform__subtitle {
  line-height: 1.3;
  font-size: clamp(0.875rem, 0.8375rem + 0.1875vw, 1.0625rem);
  margin-bottom: 20px;
}
.mainform__li {
  font-size: clamp(0.875rem, 0.8375rem + 0.1875vw, 1.0625rem);
  margin: 30px 0;
  display: flex;
  align-items: center;
}
.mainform__bullet {
  height: 7px;
  width: 7px;
  background: #51EC85;
  display: block;
  border-radius: 50%;
  margin-right: 15px;
}
.mainform label {
  width: 100%;
}
.mainform__input {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: none;
  background: rgba(255, 255, 255, 0.19);
  border-radius: 4px;
  color: #fff;
  padding: 17px;
}
.mainform__input::-moz-placeholder {
  color: #fff;
}
.mainform__input::placeholder {
  color: #fff;
}
.mainform__button {
  display: flex;
}
.mainform__btn {
  padding: 20px 30px;
}
.mainform__text {
  font-size: 12px;
  line-height: 1.3;
  padding: 15px 0 0 15px;
}
.mainform a {
  color: #fff;
  text-decoration: underline;
}
.mainform a:hover {
  color: #51EC85;
}

@media only screen and (max-width: 578px) {
  .mainform {
    margin: 30px 0;
  }
  .mainform__wrp {
    padding: 15px;
  }
  .mainform__li {
    margin: 17px 0;
  }
  .mainform__text {
    padding: 0 0 0 15px;
  }
}
body.modal-open {
  padding-right: 0px !important;
}

body {
  overflow-y: scroll !important;
}

.compensate-for-scrollbar {
  padding-right: 0px !important;
}

textarea:focus {
  border: none;
  outline: none !important;
}

.modal-header {
  justify-content: center;
  position: relative;
}

.graypart {
  background-color: #f6f9fc;
}

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

.modal-content {
  position: relative;
}

.btn-close {
  position: absolute;
  right: 15px;
  top: 15px;
  z-index: 50;
}

#watchme {
  border: none;
  background: transparent;
  box-shadow: none;
}
#watchme .btn-close {
  right: -30px;
}
#watchme .modal-content {
  border: none;
  background: transparent;
  box-shadow: none;
}

.modal-title {
  font-weight: 600;
  font-size: 22px;
  line-height: 1.2;
  color: #282828;
}

.modal-contacts {
  padding: 20px 40px;
}
.modal-contacts__heading {
  font-weight: 300;
  font-size: 16px;
  line-height: 1.4;
  margin-bottom: 20px;
  color: #282828;
}
.modal-contacts__contacts a {
  display: block;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 700;
  color: #282828;
  margin-bottom: 5px;
}
.modal-contacts__bottom {
  margin-top: 40px;
  font-size: 14px;
  display: inline-flex;
  color: #282828;
  align-items: center;
  padding: 10px 17px;
  border: 1px solid #ececec;
  -moz-column-break-after: 4px;
  break-after: 4px;
}
.modal-contacts__bottom span {
  margin-left: 10px;
}
.modal-contacts__bottom .ic_modal {
  width: 20px;
  height: 20px;
  fill: #51EC85;
}

.files {
  font-size: 10px;
}

.form-group_modal {
  padding: 33px;
}
.form-group_modal label {
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 10px;
  width: 100%;
}

.form_input__modal {
  padding: 13px 0px;
  border: none;
  border-bottom: 1px solid lightgray;
  margin-bottom: 20px;
  border-radius: 0px;
  width: 100%;
  background: transparent;
}
.form_input__modal:focus {
  border-bottom: 2px solid #51EC85;
}

.form_group__bottom-modal {
  padding: 0px 40px;
  flex-direction: column;
  margin-bottom: 20px;
}

.form_btn__modal {
  padding: 17px 40px;
  background: #51EC85;
  color: #fff;
  border: 1px solid #51EC85;
  transition: all 0.3s;
  display: block;
  margin-bottom: 30px;
  border-radius: 4px;
}
.form_btn__modal:hover {
  background: #fff;
  color: #244d72;
  border: 1px solid #51EC85;
}

.politika_modal {
  font-size: 12px;
  line-height: 1.4;
  margin-bottom: 20px;
}

.close-menu__modal {
  position: absolute;
  right: 15px;
  top: 30px;
  cursor: pointer;
  width: 25px;
  height: 25px;
  z-index: 900;
}

.close-menu__modal span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: #282828;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}

.close-menu__modal span:nth-child(1) {
  top: 12px;
  width: 0%;
  left: 50%;
}

.close-menu__modal span:nth-child(2) {
  transform: rotate(45deg);
}

.close-menu__modal span:nth-child(3) {
  transform: rotate(-45deg);
}

.close-menu__modal span:nth-child(4) {
  top: 12px;
  width: 0%;
  left: 50%;
}

.reg_tabs {
  margin: 0 40px;
}

.modal-header_reg {
  border-bottom: 1px solid transparent;
  flex-direction: column;
  padding: 30px 0;
}

.modal-header {
  padding: 40px 20px 20px 40px;
  display: flex;
  flex-direction: column;
}
.modal-header h5 {
  font-weight: 700;
  font-size: 22px;
  line-height: 1.2;
}
.modal-header h5 span {
  font-weight: 300;
  font-size: 18px;
}
.modal-header a {
  display: block;
  font-size: 22px;
  text-decoration: none;
  font-weight: 700;
}

.modal-body {
  position: relative;
  z-index: 700;
  padding: 0;
}

#success {
  margin: auto auto;
  max-width: 460px;
  height: 400px;
  background-color: #fff;
  background-image: none;
  text-align: center;
  padding: 40px;
  display: none;
  z-index: 9999;
  position: fixed;
  top: 50%;
  left: 0;
  right: 0;
  box-shadow: 1px 10px 20px rgba(30, 30, 30, 0.3019607843);
  bottom: 50%;
}
#success p {
  font-size: clamp(1.25rem, 1.1875rem + 0.3125vw, 1.5625rem);
  line-height: 1.3;
}
#success h3 {
  font-size: clamp(1.5625rem, 1.375rem + 0.9375vw, 2.5rem);
  margin-bottom: 20px;
  line-height: 1.3;
}

.span-hidden {
  display: none;
}

.text_success {
  font-size: 34px;
  line-height: 1.5;
}

.radio_title {
  font-size: 12px;
  font-weight: 600;
}

.radio_mtitle {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 15px;
}

.radio_block {
  display: flex;
  font-size: 12px;
  align-items: center;
  margin-bottom: 7px;
}
.radio_block input,
.radio_block .radio_title,
.radio_block .radio_old-price {
  margin-right: 10px;
}

.radio_old-price {
  text-decoration: line-through;
  opacity: 0.5;
}

.radio_new-price {
  font-family: "Arial";
  font-weight: 700;
}

.form_group__bottom-modal p {
  font-size: 11px;
  margin-left: 10px;
}

.modal-content .custom_chek {
  display: flex;
  align-items: center;
  padding: 15px 0px;
}
.modal-content .custom_chek p {
  font-size: 11px;
  margin-left: 10px;
  line-height: 1.3;
}

@media only screen and (max-width: 568px) {
  .modal-title {
    font-size: 22px;
    margin-top: 20px;
  }
  .form-group_modal,
  .form_group__bottom-modal {
    padding: 20px 20px;
  }
  .modal-header {
    padding-top: 60px;
  }
  .modal_heading {
    padding: 0px 0px;
    margin-bottom: 20px;
  }
  .text_success {
    font-size: 24px;
    line-height: 1.5;
  }
}
.modal-content {
  height: auto !important;
  overflow: hidden !important;
}

.span-hidden {
  display: none;
}

.checkbox-text {
  margin-left: 10px;
  line-height: 1.3;
  margin-top: -5px;
}

.just-validate-error-label {
  background: #fff !important;
  font-size: 12px !important;
  padding: 4px !important;
  border-radius: 5px !important;
}

.button__modal {
  padding: 20px 40px;
}

.cresults__checkbox {
  margin-top: 20px;
}
.cresults__checkbox .checkbox-text {
  margin-left: 0;
  display: block;
}

.form__radios {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 27px 16px 27px 24px;
  border-radius: 8px;
  background: #eee;
  margin-bottom: 15px;
}

.form__radios__modals {
  flex-direction: column;
  padding: 0px;
  align-items: start;
  background: none;
}

.form__radios__btns__modals {
  display: flex;
  gap: 10px;
}

.form__radios__title__modals {
  font-size: 14px !important;
  color: #66727F !important;
  margin-bottom: 10px;
}

.radio-mess input {
  display: none;
}

.radio__img {
  width: 62px;
  height: 40px;
  border-radius: 5px;
  cursor: pointer;
  opacity: 0.8;
}

.radio-mess input:checked ~ .radio__img {
  opacity: 1;
}

.form__radios__title {
  color: #0B1F33;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 20.5px;
}

.cresults__agreement .checkbox-text {
  color: #5C5C77;
  font-size: 14px;
}

.cresults__agreement .checkbox-text a {
  color: #51EC85;
  font-size: 14px;
  text-decoration: underline;
}

@media only screen and (max-width: 576px) {
  .cresults__agreement .checkbox-text {
    font-size: 12px;
    line-height: 1.4;
  }
  .cresults__agreement .checkbox-text a {
    font-size: 12px;
  }
  .form__radios__title {
    font-size: 14px;
    margin-bottom: 10px;
  }
  .form__radios {
    flex-wrap: wrap;
  }
}
.custom-checkbox {
  display: flex;
  align-items: center;
  width: 100%;
  margin: 0;
  cursor: pointer;
}

.checkbox-hidden {
  display: none;
}

.checkbox-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 19px;
  max-width: 19px;
  flex: 0 0 20px;
  height: 20px;
  border-radius: 2px;
  border-radius: 1px;
  background: rgba(202, 204, 216, 0.4);
  margin-right: 10px;
}

.custom-checkbox input:checked + .checkbox-wrap::after {
  transform: scale(1);
  opacity: 1;
}

.custom-checkbox .checkbox-wrap::after {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  background: url(../img/check-ic.svg) no-repeat 0 0;
  background-size: 100%;
  will-change: transform;
  transform: scale(0);
  opacity: 0;
  transition: all 0.1s linear;
}

.just-validate-error-label {
  font-size: 12px;
  color: #5C5C77 !important;
}

.modal__wrapper {
  padding-top: 0 !important;
}
.modal__wrapper li {
  padding: 0 !important;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.footer {
  margin-top: auto;
  background: #3B3D47;
  padding: 60px 0 30px 0;
}
.footer__wrp {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  gap: 20px;
}
.footer__logo {
  display: flex;
  gap: 20px;
  align-items: center;
}
.footer__logo-wrp {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__name {
  font-size: clamp(1.25rem, 1.125rem + 0.625vw, 1.875rem);
  font-weight: 700;
  color: #fff;
}
.footer__desc {
  color: rgba(255, 255, 255, 0.5725490196);
  font-size: clamp(0.6875rem, 0.625rem + 0.3125vw, 1rem);
  line-height: 1.3;
  max-width: 450px;
}
.footer__top {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(236, 236, 236, 0.1725490196);
  padding-bottom: 30px;
}
.footer__menu {
  display: flex;
  gap: 20px;
}
.footer__menu a {
  color: rgba(255, 255, 255, 0.5725490196);
  font-size: clamp(0.875rem, 0.825rem + 0.25vw, 1.125rem);
}
.footer__menu a:hover {
  color: #fff;
}
.footer__contacts {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
}
.footer__contact {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: clamp(0.875rem, 0.825rem + 0.25vw, 1.125rem);
  color: rgba(255, 255, 255, 0.5725490196);
}
.footer__contact:hover {
  color: #51EC85;
}
.footer__ic {
  width: 25px;
  height: 25px;
  fill: #54BFE4;
}
.footer__privacy {
  font-size: 12px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.5725490196);
}
.footer__delosait {
  display: flex;
  gap: 4px;
  align-items: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5725490196);
  justify-content: end;
}
.footer__delosait a {
  color: rgba(255, 255, 255, 0.5725490196);
}
.footer__delosait a:hover {
  color: #fff;
}
.footer__heart {
  fill: rgb(186, 3, 3);
  width: 16px;
  height: 16px;
}

@media only screen and (max-width: 1200px) {
  .footer__menu {
    display: none;
  }
}
@media only screen and (max-width: 768px) {
  .footer__delosait {
    justify-content: center;
  }
  .footer__privacy {
    justify-content: center;
    text-align: center;
    margin-bottom: 10px;
  }
}

.content {
  padding: 30px;
}
.content h1, .content h2, .content h3, .content h4, .content h5 {
  line-height: 1.4;
  margin: 10px 0 0 0;
  font-weight: 600;
  font-size: clamp(1.25rem, 1.125rem + 0.625vw, 1.875rem);
}
.content p {
  font-size: clamp(0.875rem, 0.825rem + 0.25vw, 1.125rem);
  line-height: 1.4;
  color: #66727F;
  margin: 7px 0;
}
.content ul {
  list-style-type: disc;
  padding-left: 30px;
}
.content ul li {
  padding: 4px 0;
  line-height: 1.4;
  font-size: clamp(0.875rem, 0.825rem + 0.25vw, 1.125rem);
  color: #66727F;
}
.content ol {
  list-style-type: decimal;
  padding-left: 30px;
}
.content ol li {
  padding: 4px 0;
  line-height: 1.4;
  font-size: clamp(0.875rem, 0.825rem + 0.25vw, 1.125rem);
  color: #66727F;
}

.link{
  text-decoration: underline;
  cursor: pointer;
}