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

body, html {
  background-color: #F8F8F6;
  font-family: "Raleway", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

body.lock {
  overflow: hidden;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
}

.container {
  max-width: 1470px;
  margin: 0 auto;
  padding: 0 15px;
}

.nav {
  position: fixed;
  width: 100%;
  background-color: #F8F8F6;
  top: 0;
  left: 0;
  z-index: 998;
}
.nav__wrapp {
  padding: 26px 0;
  border-bottom: 1px solid #000000;
}
.nav__menu-list {
  display: grid;
  grid-template-columns: auto auto 1fr auto auto;
  justify-items: center;
  align-items: center;
}
.nav__menu-item {
  font-size: 19px;
  letter-spacing: 3px;
  transition: 0.3s ease;
  -webkit-transition: 0.3s ease;
  -moz-transition: 0.3s ease;
  -ms-transition: 0.3s ease;
  -o-transition: 0.3s ease;
}
.nav__menu-item:not(:last-child) {
  margin-right: 34px;
}
.nav__menu-item a:hover {
  text-decoration: underline;
  color: #000000;
}
.nav__burger {
  display: none;
  cursor: pointer;
}
.nav__logo {
  width: auto;
  height: clamp(37px, 5vw, 53px);
}
.nav__logo img {
  width: 100%;
  height: 100%;
}
.nav__menu-social {
  display: none;
}

.social__networks-title, .social__feedback-title {
  font-weight: 400;
  font-size: clamp(17px, 5vw, 22px);
  letter-spacing: 3px;
}
.social__feedback {
  margin-top: 30px;
}
.social__icons, .social__feedback-mail {
  margin-top: 20px;
}
.social__icons {
  display: inline-block;
  padding: 7px;
  opacity: 1;
  transition: 0.3s ease;
  -webkit-transition: 0.3s ease;
  -moz-transition: 0.3s ease;
  -ms-transition: 0.3s ease;
  -o-transition: 0.3s ease;
}
.social__icons:hover {
  opacity: 0.6;
}
.social__feedback-mail {
  display: inline-block;
  font-weight: 400;
  font-size: clamp(15px, 3vw, 18px);
  letter-spacing: 3px;
  transition: 0.3s ease;
  -webkit-transition: 0.3s ease;
  -moz-transition: 0.3s ease;
  -ms-transition: 0.3s ease;
  -o-transition: 0.3s ease;
}
.social__feedback-mail:hover {
  text-decoration: underline;
}

.header__wrapp {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: clamp(139px, 16vw, 221px);
  padding-bottom: clamp(50px, 7vw, 90px);
}
.header__title {
  font-family: "Merriweather", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 63px;
  line-height: 114%;
  max-width: 835px;
}
.header__subtitle {
  font-weight: 400;
  font-size: clamp(15px, 4vw, 20px);
  line-height: 150%;
  max-width: 503px;
  margin-top: 30px;
}
.header__img {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 584px;
  max-height: 584px;
  height: 100%;
  position: relative;
  padding: 1.64%;
}
.header__img::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border: 1px solid #000000;
}
.header__img img {
  width: 100%;
  height: 100%;
}

.btn {
  font-weight: 400;
  display: inline-block;
  font-size: clamp(15px, 4vw, 19px);
  margin-top: 50px;
  padding-top: clamp(9px, 3vw, 16px);
  padding-right: clamp(15px, 4vw, 21px);
  padding-bottom: clamp(9px, 3vw, 16px);
  padding-left: clamp(15px, 4vw, 21px);
  border: 2px solid #000000;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
  transition: 0.3s ease;
  -webkit-transition: 0.3s ease;
  -moz-transition: 0.3s ease;
  -ms-transition: 0.3s ease;
  -o-transition: 0.3s ease;
}
.btn:hover {
  background: #000000;
  color: #fff;
}

.services {
  background: #E3E2DD;
  padding-top: clamp(60px, 7vw, 90px);
  padding-bottom: clamp(60px, 7vw, 90px);
}
.services__title {
  font-family: "Merriweather", serif;
  font-weight: 700;
  font-style: normal;
  font-size: clamp(27px, 5vw, 50px);
  margin-bottom: clamp(50px, 7vw, 100px);
}
.services__card {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: flex-start;
  grid-gap: 24px;
}
.services__card-item {
  padding: clamp(20px, 5vw, 30px);
  background: #F8F8F6;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.25);
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
  transition: 0.3s ease;
  -webkit-transition: 0.3s ease;
  -moz-transition: 0.3s ease;
  -ms-transition: 0.3s ease;
  -o-transition: 0.3s ease;
}
.services__card-item:hover {
  background: #000;
  color: #F8F8F6;
}
.services__card-text-wrapp {
  display: flex;
  justify-content: space-between;
}
.services__card-title {
  margin-top: 20px;
  font-weight: 500;
  font-size: clamp(21px, 5vw, 32px);
  color: #000;
  transition: 0.3s ease;
  -webkit-transition: 0.3s ease;
  -moz-transition: 0.3s ease;
  -ms-transition: 0.3s ease;
  -o-transition: 0.3s ease;
}
.services__card-title::after {
  content: "";
  display: block;
  margin-top: 10px;
  border-bottom: 1px solid #000;
  width: 60%;
}
.services__card-item:hover .services__card-title {
  color: #F8F8F6;
}
.services__card-item:hover .services__card-title::after {
  border-bottom: 1px solid #F8F8F6;
}
.services__card-opacyti {
  font-weight: 600;
  font-size: clamp(95px, 10vw, 144px);
  line-height: 50%;
  color: rgba(0, 0, 0, 0.15);
  transition: 0.3s ease;
  -webkit-transition: 0.3s ease;
  -moz-transition: 0.3s ease;
  -ms-transition: 0.3s ease;
  -o-transition: 0.3s ease;
}
.services__card-item:hover .services__card-opacyti, .services__card-item:hover .services__card-subitem p {
  color: #F8F8F6;
}
.services__card-subitem-wrapp {
  margin-top: 30px;
}
.services__card-subitem {
  display: flex;
  transition: 0.3s ease;
  -webkit-transition: 0.3s ease;
  -moz-transition: 0.3s ease;
  -ms-transition: 0.3s ease;
  -o-transition: 0.3s ease;
}
.services__card-subitem:not(:first-child) {
  margin-top: 15px;
}
.services__card-subitem p {
  font-weight: 400;
  font-size: clamp(14px, 4vw, 18px);
  line-height: 144%;
  max-width: 440px;
}
.services__card-line-wrapp {
  display: flex;
  align-items: center;
  height: clamp(19px, 5vw, 25px);
}
.services__card-line {
  display: block;
  width: 12px;
  height: 1px;
  background: #000;
  margin-right: 6px;
  transition: 0.3s ease;
  -webkit-transition: 0.3s ease;
  -moz-transition: 0.3s ease;
  -ms-transition: 0.3s ease;
  -o-transition: 0.3s ease;
}
.services__card-item:hover .services__card-line {
  background: #F8F8F6;
}

.about {
  padding-top: clamp(60px, 7vw, 90px);
  padding-bottom: clamp(60px, 7vw, 90px);
}
.about__title {
  font-family: "Merriweather", serif;
  font-weight: 700;
  font-style: normal;
  font-size: clamp(27px, 5vw, 50px);
  margin-bottom: clamp(50px, 7vw, 100px);
}
.about__wrapp {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.about__text {
  font-weight: 400;
  font-size: clamp(15px, 4vw, 22px);
  letter-spacing: 2px;
  line-height: 159%;
  max-width: 841px;
}
.about__br {
  width: 100%;
  height: 30px;
}
.about__img {
  max-width: 526px;
  max-height: 526px;
}
.about__img img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.fag {
  padding-top: clamp(60px, 7vw, 90px);
  padding-bottom: clamp(60px, 7vw, 90px);
  background: #E3E2DD;
}
.fag__title {
  font-family: "Merriweather", serif;
  font-weight: 700;
  font-style: normal;
  font-size: clamp(27px, 5vw, 50px);
  margin-bottom: clamp(50px, 7vw, 100px);
}
.fag__accordion-wrapp {
  display: grid;
  grid-gap: 20px;
}
.fag__accordion-toggle {
  cursor: pointer;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 48px;
  grid-gap: 24px;
  align-items: center;
  min-height: 64px;
}
.fag__accordion-toggle-title {
  font-weight: 500;
  font-size: 24px;
}
.fag__accordion-toggle-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s ease;
  -webkit-transition: 0.3s ease;
  -moz-transition: 0.3s ease;
  -ms-transition: 0.3s ease;
  -o-transition: 0.3s ease;
}
.fag__accordion-content {
  height: 0;
  overflow: hidden;
}
.fag__accordion-content-text p {
  font-weight: 400;
  font-size: 19px;
  line-height: 137%;
  margin-top: 10px;
}

.accordion {
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
  padding: 20px 30px;
  background-color: #fff;
  transition: 0.3s ease;
  -webkit-transition: 0.3s ease;
  -moz-transition: 0.3s ease;
  -ms-transition: 0.3s ease;
  -o-transition: 0.3s ease;
}
.accordion.active {
  background-color: #fff;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.25);
}

.active .fag__accordion-toggle-btn {
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -o-transform: rotate(180deg);
}

@media (any-hover: hover) and (pointer: fine) {
  .accordion:hover {
    background-color: #fff;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.25);
  }
}
@media (any-hover: hover) and (pointer: fine) {
  .accordion {
    background-color: rgba(0, 0, 0, 0);
  }
}
.callback-form {
  padding-top: clamp(60px, 7vw, 90px);
  padding-bottom: clamp(60px, 7vw, 90px);
  background: #E3E2DD;
  position: relative;
}
.callback-form__text {
  margin-bottom: clamp(50px, 7vw, 100px);
}
.callback-form__title {
  font-family: "Merriweather", serif;
  font-weight: 700;
  font-style: normal;
  font-size: clamp(27px, 5vw, 50px);
  margin-bottom: 20px;
}
.callback-form__subtitle {
  font-weight: 400;
  font-size: 24px;
}
.callback-form__wrapp {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  border-radius: 10px;
  padding: 40px;
  box-shadow: 0 0 17px 0 rgba(0, 0, 0, 0.25);
  background: #f8f8f6;
  position: relative;
}
.callback-form__input {
  border: 1px solid #000;
  background: #F8F8F6;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  padding: 10px;
  width: 100%;
  height: 45px;
  outline: none;
}
.callback-form__input._error {
  border: 2px solid red;
}
.callback-form__label {
  position: absolute;
  top: 6px;
  padding: 0 4px;
  background-color: #F8F8F6;
  display: block;
  font-size: 14px;
  font-weight: 400;
  left: 8px;
  color: #000;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}
.callback-form__comment {
  min-height: 145px;
  display: block;
  outline: none;
  resize: none;
}
.callback-form__wrapp-btn {
  position: relative;
  display: flex;
  align-items: center;
}
.callback-form__btn {
  outline: none;
  border: 2px solid #000;
  background: transparent;
  cursor: pointer;
  font-size: clamp(15px, 4vw, 19px);
  font-weight: 400;
  padding-top: clamp(9px, 3vw, 16px);
  padding-right: clamp(15px, 4vw, 21px);
  padding-bottom: clamp(9px, 3vw, 16px);
  padding-left: clamp(15px, 4vw, 21px);
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
  transition: 0.3s ease;
  -webkit-transition: 0.3s ease;
  -moz-transition: 0.3s ease;
  -ms-transition: 0.3s ease;
  -o-transition: 0.3s ease;
}
.callback-form__btn:hover {
  background: #000000;
  color: #fff;
}
.callback-form__checkbox-wrapp {
  display: block;
  position: relative;
  margin-left: 43px;
}
.callback-form__checkbox-input {
  width: 1px;
  height: 1px;
  position: absolute;
  opacity: 0;
}
.callback-form__checkbox-input:checked + .callback-form__checkbox .callback-form__span::after {
  background-color: #000;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
  transform: scale(1);
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
}
.callback-form__checkbox {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  grid-gap: 25px;
  font-weight: 400;
  font-size: 15px;
  line-height: 147%;
  letter-spacing: 3px;
}
.callback-form__span {
  display: block;
  position: relative;
  border: 1px solid #000;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
  width: 24px;
  height: 24px;
  transition: 0.3s ease;
  -webkit-transition: 0.3s ease;
  -moz-transition: 0.3s ease;
  -ms-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  cursor: pointer;
}
.callback-form__span::after {
  content: "";
  position: absolute;
  left: -1px;
  top: -1px;
  width: 24px;
  height: 24px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url(../img/check.svg);
  transform: scale(0);
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  -moz-transform: scale(0);
  -o-transform: scale(0);
}
.callback-form__img {
  max-width: 490px;
  max-height: 490px;
}
.callback-form__img img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
.callback-form .contract {
  text-decoration: underline;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 100%;
  max-width: 700px;
}
.form::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0px;
  background: rgba(0, 0, 0, 0.58) url(../img/loading.gif) center center no-repeat;
  background-size: 5%;
  opacity: 0;
  visibility: hidden;
}
.form._sending::after {
  opacity: 1;
  visibility: visible;
}
.form__input-wrapp {
  position: relative;
  padding: 15px 0 0;
}
.form__wrapp-input {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 30px;
}

.footer {
  padding-top: clamp(60px, 7vw, 90px);
  padding-bottom: clamp(60px, 7vw, 90px);
}
.footer__wrapp {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}
.footer__logo {
  width: 114px;
  height: auto;
}
.footer__logo img {
  width: 100%;
  height: 100%;
}
.footer__feedback {
  margin: 0;
}

.popup {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  background-color: rgba(0, 0, 0, 0.58);
  transition: opacity 500ms ease;
  -webkit-transition: opacity 500ms ease;
  -moz-transition: opacity 500ms ease;
  -ms-transition: opacity 500ms ease;
  -o-transition: opacity 500ms ease;
}
.popup__wrapp {
  flex-direction: column;
  max-width: 480px;
  padding: 30px;
  height: 100%;
  overflow: auto;
  z-index: 1000;
  min-width: 350px;
}
.popup__dialog {
  width: 100%;
  height: 100%;
  position: relative;
}
.popup__content {
  position: fixed;
  text-align: center;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  padding: 10px 15px;
  height: 100%;
}
.popup__close {
  width: 25px;
  height: auto;
  border: none;
  background-color: transparent;
  color: #f5f9fa;
  cursor: pointer;
  outline: none;
  margin-left: auto;
}
.popup__header h3 {
  font-weight: 400;
  font-size: 24px;
  letter-spacing: 3px;
}
.popup__form {
  height: 100%;
}
.popup__wrapp-input {
  grid-template-columns: 1fr;
}
.popup__wrapp-btn {
  flex-direction: column;
  align-items: stretch;
}
.popup__checkbox-wrapp {
  margin-left: 0;
  margin-top: 20px;
}
.popup__checkbox {
  grid-gap: 15px;
}
.popup__checkbox .contract {
  text-decoration: underline;
}
.form_ssuc_block{
      position: absolute;
    left: 0;
    right: 0;
    background: #000000b5;
    top: 0;
    bottom: 0;
    z-index: 1;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
        gap: 25px;
        padding: 20px;
        display: none;
}
.form_ssuc_block>p{
  color: white;
  font-size: 25px;
  font-weight: 600;
}