@import url(https://fonts.googleapis.com/css?family=Open+Sans:300,regular,500,600,700,800,300italic,italic,500italic,600italic,700italic,800italic);
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
}

* {
  box-sizing: border-box;
}

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

ul {
  list-style: none;
}

body {
  margin: 0;
}

a {
  margin: 0;
  padding: 0;
  text-decoration: none;
  color: inherit;
}

input, textarea, select, button, .slick-slide, .slick-tarck, .slick-list {
  outline: none;
}

input, textarea {
  margin: 0;
  border: none;
  background: transparent;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 0;
  font-size: 16px;
}

button {
  border: none;
  background: transparent;
  border-radius: 0;
  cursor: pointer;
  margin: 0;
  padding: 0;
  display: block;
  font-size: inherit;
  color: inherit;
}

img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

*::before,
*::after {
  position: absolute;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

body {
  font-family: "Open Sans", sans-serif;
  color: var(--main);
  background: #F4F4F4;
}
body.modal-open {
  overflow: hidden;
}

html, body {
  height: 100%;
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1 1 auto;
}

.container {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 0 60px;
}
@media (max-width: 1280px) {
  .container {
    padding: 0 40px;
  }
}
@media (max-width: 600px) {
  .container {
    padding: 0 20px;
  }
}

:root {
  --primary: #1030C5;
  --dark: #121523;
  --main: #262C49;
}

.titleSection {
  font-weight: 700;
  font-size: 48px;
  line-height: 1.25;
}
@media (max-width: 1280px) {
  .titleSection {
    font-size: 46px;
  }
}
@media (max-width: 1112px) {
  .titleSection {
    font-size: 40px;
  }
}
@media (max-width: 1000px) {
  .titleSection {
    font-size: 36px;
  }
}
@media (max-width: 800px) {
  .titleSection {
    font-size: 34px;
  }
}
@media (max-width: 600px) {
  .titleSection {
    font-size: 30px;
  }
}
.titleSection.white {
  color: #fff;
}

.btn {
  text-align: center;
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1;
  color: #fff;
  padding: 23px 20px;
  border-radius: 16px;
  background: #F7AA47;
  border: 1px solid rgba(0, 0, 0, 0);
  transition: 0.3s ease;
}
@media (any-hover: hover) {
  .btn:hover {
    background: #fff;
    color: #F7AA47;
    border-color: #F7AA47;
  }
}
@media (max-width: 600px) {
  .btn {
    font-size: 16px;
  }
}
.btn.white {
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: transparent;
  color: #F7AA47;

}
@media (any-hover: hover) {
  .btn.white:hover {
    background: #fff;
    border-color: #F7AA47;
    color: #F7AA47;
  }
}

.mb80 {
  margin-bottom: 80px;
}
@media (max-width: 1280px) {
  .mb80 {
    margin-bottom: 40px;
  }
}

.pS {
  padding: 160px 0;
}
@media (max-width: 1600px) {
  .pS {
    padding: 120px 0;
  }
}
@media (max-width: 1280px) {
  .pS {
    padding: 80px 0;
  }
}
@media (max-width: 600px) {
  .pS {
    padding: 60px 0;
  }
}

.pb0 {
  padding-bottom: 0;
}

.formStyle {
  display: flex !important;
  flex-direction: column;
  gaP: 20px;
}
.formStyle .input__wrapper {
  width: 100%;
}
.formStyle input, .formStyle select, .formStyle textarea {
  width: 100%;
  font-family: "Open Sans", sans-serif;
  font-size: 18px;
  line-height: 1;
  padding: 20px 20px;
  border-radius: 16px;
  transition: 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: transparent;
  color: var(--main);
}
.formStyle input:focus, .formStyle select:focus, .formStyle textarea:focus {
  border: 1px solid rgb(0, 0, 0);
}
.formStyle input::-moz-placeholder, .formStyle select::-moz-placeholder, .formStyle textarea::-moz-placeholder {
  font-size: 18px;
  font-family: "Open Sans", sans-serif;
}
.formStyle input::placeholder, .formStyle select::placeholder, .formStyle textarea::placeholder {
  font-size: 18px;
  font-family: "Open Sans", sans-serif;
}

.popup {
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  pointer-events: none;
  opacity: 0;
  transition: 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  padding: 0 20px;
}
.popup.active {
  opacity: 1;
  pointer-events: auto;
}
.popup__body {
  max-width: 400px;
  width: 100%;
  max-height: 80vh;
  overflow: hidden;
  overflow-y: auto;
  padding: 50px 30px;
  background: #fff;
  box-shadow: 0px 3px 20px rgba(0, 0, 0, 0.15);
  border-radius: 16px;
  position: relative;
}
.popup__body::-webkit-scrollbar {
  display: none;
}
@media (max-width: 600px) {
  .popup__body {
    padding: 50px 20px;
  }
}
.popup__body .popup__close {
  cursor: pointer;
  position: absolute;
  width: 20px;
  height: 20px;
  background-image: url("../assets/images/icons/closePopup.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  top: 20px;
  right: 20px;
}
.popup__title {
  font-weight: 700;
  font-size: 30px;
  margin-bottom: 40px;
}
@media (max-width: 600px) {
  .popup__title {
    margin-bottom: 30px;
    font-size: 28px;
  }
}
.popup form {
  display: flex !important;
  flex-direction: column;
  gaP: 20px;
}
.popup form .input__wrapper {
  width: 100%;
}
.popup form input, .popup form select, .popup form textarea {
  width: 100%;
  font-family: "Open Sans", sans-serif;
  font-size: 18px;
  line-height: 1;
  padding: 20px 20px;
  border-radius: 16px;
  transition: 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: transparent;
  color: var(--main);
}
.popup form input:focus, .popup form select:focus, .popup form textarea:focus {
  border: 1px solid rgb(0, 0, 0);
}
.popup form input::-moz-placeholder, .popup form select::-moz-placeholder, .popup form textarea::-moz-placeholder {
  font-size: 18px;
  font-family: "Open Sans", sans-serif;
}
.popup form input::placeholder, .popup form select::placeholder, .popup form textarea::placeholder {
  font-size: 18px;
  font-family: "Open Sans", sans-serif;
}

.wpcf7-not-valid {
  border-color: red !important;
  color: red !important;
}
.wpcf7-not-valid::-moz-placeholder {
  color: red !important;
}
.wpcf7-not-valid::placeholder {
  color: red !important;
}

.wpcf7-not-valid-tip {
  display: none;
}

.wpcf7-response-output {
  margin: 0 !important;
  text-align: center;
  font-size: 12px;
}

.popupInfo .popup__body {
  max-width: 1200px;
  display: grid;
  grid-template-columns: repeat(2, minmax(auto, 1fr));
  gap: 40px;
}
@media (max-width: 600px) {
  .popupInfo .popup__body {
    grid-template-columns: repeat(1, minmax(auto, 1fr));
    gap: 30px;
  }
}
.popupInfo__img {
  display: flex;
  align-items: center;
  justify-content: center;
}
.popupInfo__img img {
  max-width: 400px;
}
@media (max-width: 600px) {
  .popupInfo__img img {
    max-width: 320px;
  }
}
.popupInfo__content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.popupInfo__title {
  font-size: 32px;
  line-height: 1.2;
}
@media (max-width: 600px) {
  .popupInfo__title {
    font-size: 28px;
  }
}
.popupInfo__dscr {
  line-height: 1.6;
}
.popupInfo__benefits-title {
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 20px;
}
.popupInfo__benefits-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.popupInfo__benefits-list li {
  position: relative;
  display: flex;
  align-items: flex-start;
  /*align-items: center;*/
  gap: 8px;
}
.popupInfo__benefits-list li::before {
  position: static;
  content: "";
  width: 24px;
  aspect-ratio: 4/4;
  background-image: url("../assets/images/icons/check.svg");
  background-size: contain;
  border-radius: 4px;
  flex-shrink: 0;
}
.popupInfo__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
@media (max-width: 600px) {
  .popupInfo__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  .popupInfo__bottom .drillingPrices__item-price {
    order: -1;
  }
}
.popupInfo__bottom .btn {
  max-width: 200px;
  width: 100%;
}
@media (max-width: 600px) {
  .popupInfo__bottom .btn {
    max-width: 100%;
    width: 100%;
  }
}

.header {
  background: #fff;
  padding: 20px 0;
  font-size: 15px;
  line-height: 1.6;
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.header__logo {
  display: flex;
  align-items: center;
  gap: 50px;
}
.header__logo img {
  max-width: 115px;
}
@media (max-width: 800px) {
  .header__logo img {
    max-width: 140px;
  }
}
@media (max-width: 430px) {
  .header__logo img {
    max-width: 130px;
  }
}
@media (max-width: 1000px) {
  .header__address {
    display: none;
  }
}
.header__info {
  display: flex;
  align-items: center;
  gap: 24px;
}
.header__phone-wrapper {
  display: flex;
  align-items: center;
  gap: 5px;
}
@media (max-width: 500px) {
  .header__phone-wrapper {
    flex-direction: column;
    font-weight: 500;
    gap: 2px;
  }
}
@media (any-hover: hover) {
  .header__phone-wrapper a:hover {
    text-decoration: underline;
  }
}
.header__btn {
  padding: 14px 30px;
  font-weight: 400;
}
@media (max-width: 1280px) {
  .header__btn {
    display: none;
  }
}
.header__social {
  display: flex;
  align-items: center;
  gap: 24px;
}
@media (max-width: 800px) {
  .header__social {
    display: none;
  }
}
@media (max-width: 800px) {
  .header__social.footer {
    display: flex;
  }
}
.header__social img {
  width: 30px;
  flex-shrink: 0;
}
.header__social a {
  display: block;
  transition: 0.3s ease;
}
@media (any-hover: hover) {
  .header__social a:hover {
    opacity: 0.8;
  }
}


.promo {
  padding-top: 100px;
}
@media (max-width: 1112px) {
  .promo {
    padding-top: 50px;
  }
}
.promo__inner {
  padding-bottom: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
@media (max-width: 1112px) {
  .promo__inner {
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 50px;
  }
}
@media (max-width: 600px) {
  .promo__inner {
    gap: 30px;
  }
}
.promo__title {
  max-width: 860px;
  font-weight: 700;
  font-size: 58px;
  line-height: 1.2;
  color: var(--dark);
}
@media (max-width: 1280px) {
  .promo__title {
    font-size: 56px;
  }
}
@media (max-width: 1112px) {
  .promo__title {
    font-size: 46px;
  }
}
@media (max-width: 1000px) {
  .promo__title {
    font-size: 36px;
  }
}
@media (max-width: 600px) {
  .promo__title {
    font-size: 34px;
  }
}
.promo__title strong {
  font-weight: 700;
  color: #F7AA47;
}
.promo__content {
  max-width: 310px;
  flex-shrink: 0;
}
@media (max-width: 1112px) {
  .promo__content {
    max-width: 100%;
  }
}
.promo__content ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 45px;
}
.promo__content ul li {
  position: relative;
  padding-left: 24px;
}
.promo__content ul li::before {
  content: "";
  width: 16px;
  height: 1px;
  top: 14px;
  left: 0;
  background: var(--main);
}
.promo__content .btn {
  width: 100%;
}
@media (max-width: 1112px) {
  .promo__content .btn {
    max-width: 300px;
  }
}
@media (max-width: 600px) {
  .promo__content .btn {
    max-width: 100%;
  }
}
.promo__items {
  display: grid;
  grid-template-columns: repeat(4, minmax(auto, 1fr));
  padding: 40px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  gap: 80px;
}
@media (max-width: 1280px) {
  .promo__items {
    gap: 40px;
  }
}
@media (max-width: 1000px) {
  .promo__items {
    grid-template-columns: repeat(2, minmax(auto, 1fr));
    gap: 20px;
  }
}
@media (max-width: 500px) {
  .promo__items {
    grid-template-columns: repeat(1, minmax(auto, 1fr));
    gap: 20px;
    padding: 20px 0;
  }
}
.promo__item {
  font-weight: 700;
  font-size: 18px;
  line-height: 1.6;
  position: relative;
  padding-left: 24px;
}
@media (max-width: 1000px) {
  .promo__item {
    font-size: 16px;
  }
}
.promo__item::before {
  content: "";
  width: 16px;
  height: 1px;
  top: 14px;
  left: 0;
  background: var(--main);
}
@media (max-width: 600px) {
  .promo__img {
    aspect-ratio: 4/3;
  }
}

.quiz__inner {
  min-height: 756px;
  display: flex;
  gap: 40px;
  background: #fff;
  border-radius: 16px;
  padding: 40px;
  position: relative;
}
@media (max-width: 1280px) {
  .quiz__inner {
    flex-direction: column;
    min-height: auto;
  }
}
@media (max-width: 600px) {
  .quiz__inner {
    padding: 20px;
    gap: 20px;
  }
}
.quiz__slides {
  max-width: 800px;
  width: 55.56vw;
}
@media (max-width: 1280px) {
  .quiz__slides {
    max-width: 100%;
    width: 100%;
  }
}
.quiz__slides .cf7mls-btns {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
  margin-top: 40px;
}
@media (max-width: 600px) {
  .quiz__slides .cf7mls-btns {
    flex-direction: column;
    gap: 10px;
    margin-top: 30px;
  }
}
.quiz__slides .cf7mls-btns .cf7mls_next, .quiz__slides .cf7mls-btns .cf7mls_back {
  max-height: 66px;
  margin: 0 !important;
  text-align: center !important;
  font-family: "Open Sans", sans-serif !important;
  font-weight: 700 !important;
  font-size: 18px !important;
  line-height: 1 !important;
  color: #fff !important;
  padding: 23px 20px !important;
  border-radius: 16px !important;
  background: var(--primary) !important;
  border: 1px solid rgba(0, 0, 0, 0) !important;
  transition: 0.3s ease;
}
.quiz__slides .cf7mls-btns .cf7mls_next img, .quiz__slides .cf7mls-btns .cf7mls_back img {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  display: none !important;
}
@media (max-width: 600px) {
  .quiz__slides .cf7mls-btns .cf7mls_next, .quiz__slides .cf7mls-btns .cf7mls_back {
    max-width: 100% !important;
    width: 100% !important;
  }
}
.quiz__slides .cf7mls-btns .cf7mls_next {
  max-width: 224px;
  width: 100%;
  position: relative;
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.quiz__slides .cf7mls-btns .cf7mls_next::after {
  position: static;
  content: "";
  width: 8px;
  height: 16px;
  background-image: url("../assets/images/icons/arrow-next.svg");
  background-size: contain;
  margin-top: 2px;
}
.quiz__slides .cf7mls-btns .cf7mls_back {
  background: transparent !important;
  color: var(--primary) !important;
  position: relative;
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.quiz__slides .cf7mls-btns .cf7mls_back::before {
  position: static;
  content: "";
  width: 8px;
  height: 16px;
  background-image: url("../assets/images/icons/arrow-prev.svg");
  background-size: contain;
  margin-top: 2px;
}
.quiz__slide-title {
  font-weight: 400;
  font-size: 32px;
  line-height: 1.2;
  padding-bottom: 40px;
  margin-bottom: 40px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
@media (max-width: 600px) {
  .quiz__slide-title {
    font-size: 24px;
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
}
.quiz__slide-body {
  display: grid;
  grid-template-columns: repeat(3, minmax(auto, 1fr));
  gap: 80px;
}
@media (max-width: 1280px) {
  .quiz__slide-body {
    gap: 40px;
  }
}
@media (max-width: 800px) {
  .quiz__slide-body {
    grid-template-columns: repeat(2, minmax(auto, 1fr));
  }
}
@media (max-width: 600px) {
  .quiz__slide-body {
    gap: 20px;
  }
  .quiz__slide-body.radio-show {
    grid-template-columns: repeat(1, minmax(auto, 1fr));
  }
}
.quiz__slide-body .wpcf7-form-control-wrap {
  position: static;
  width: 100%;
}
.quiz__slide-body .wpcf7-form-control.wpcf7-radio .wpcf7-list-item {
  margin: 0 !important;
}
.quiz__slide-body .wpcf7-form-control.wpcf7-radio .wpcf7-list-item input {
  cursor: pointer;
  position: absolute;
  width: 100%;
  height: 120px;
  top: 0;
  left: 0;
}
.quiz__slide-body .wpcf7-form-control.wpcf7-radio .wpcf7-list-item input:checked {
  background-image: url("../assets/images/icons/radio-check.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.quiz__slide-body .input__wrapper {
  cursor: pointer;
  position: relative;
  transition: 0.3s ease;
}
@media (any-hover: hover) {
  .quiz__slide-body .input__wrapper:hover {
    opacity: 0.8;
  }
}
.quiz__slide-body .input__wrapper img {
  cursor: pointer;
  height: 120px;
  margin-bottom: 24px;
}
@media (max-width: 600px) {
  .quiz__slide-body .input__wrapper img {
    margin-bottom: 20px;
  }
}
.quiz__slide-body .input__wrapper.radio-show .wpcf7-list-item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.quiz__slide-body .input__wrapper.radio-show input {
  position: static !important;
  width: 20px !important;
  height: 20px !important;
  border-radius: 4px !important;
  background-image: url("../assets/images/icons/radio.svg") !important;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  flex-shrink: 0;
}
.quiz__slide-body .input__wrapper.radio-show input:checked {
  background-image: url("../assets/images/icons/radio-active.svg") !important;
}
.quiz__content {
  position: absolute;
  top: 50%;
  height: calc(100% + 80px);
  transform: translate(0, -50%);
  right: 40px;
  max-width: 380px;
  border-radius: 16px;
  padding: 40px;
  background: #EDEDED;
}
@media (max-width: 1280px) {
  .quiz__content {
    display: none;
    position: static;
    transform: translate(0, 0%);
    height: auto;
    max-width: 100%;
  }
}
@media (max-width: 600px) {
  .quiz__content {
    display: block;
    padding: 20px;
  }
}
.quiz__content-title {
  font-weight: 700;
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 40px;
  position: relative;
  padding-left: 24px;
}
.quiz__content-title::before {
  content: "";
  width: 16px;
  height: 1px;
  top: 14px;
  left: 0;
  background: var(--main);
}
@media (max-width: 600px) {
  .quiz__content-title {
    margin-bottom: 30px;
  }
}
.quiz__content-img {
  margin: 0 -40px;
  width: calc(100% + 80px);
  margin-bottom: 60px;
}
@media (max-width: 600px) {
  .quiz__content-img {
    margin: 0 -20px;
    width: calc(100% + 40px);
    margin-bottom: 30px;
  }
}
.quiz__content-dscr {
  font-size: 18px;
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (max-width: 1000px) {
  .quiz__content-dscr {
    font-size: 16px;
  }
}

.gallery {
  background: var(--primary);
  color: #fff;
}
.gallery .titleSection {
  max-width: 970px;
}
.gallery__inner {
  position: relative;
}
.gallery__slider {
  margin-top: 120px;
  overflow: hidden;
  border-radius: 16px;
}
@media (max-width: 1200px) {
  .gallery__slider {
    margin-top: 0;
  }
}
.gallery__slider .slick-list {
  margin: 0 -10px;
}
.gallery__slider .slick-slide {
  cursor: pointer;
  margin: 0 10px;
  border-radius: 16px;
  overflow: hidden;
  opacity: 0.5;
  transition: 0.3s ease;
  pointer-events: none;
}
@media (max-width: 1200px) {
  .gallery__slider .slick-slide {
    height: 500px;
  }
}
@media (max-width: 600px) {
  .gallery__slider .slick-slide {
    height: 400px;
  }
}
.gallery__slider .slick-slide img {
  height: 100%;
}
.gallery__slider .slick-slide.slick-current {
  opacity: 1;
  pointer-events: auto;
}
.gallery__slider-nav {
  width: -moz-max-content;
  width: max-content;
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 70px;
}
@media (max-width: 600px) {
  .gallery__slider-nav {
    margin: 0;
    margin-top: 30px;
    width: 100%;
    justify-content: center;
  }
}
.gallery__slider-nav .slick-arrow {
  font-size: 0;
  border: none;
  display: block;
  width: 40px;
  height: 24px;
  cursor: pointer;
  padding: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.gallery__slider-nav .slick-prev {
  background-image: url("../assets/images/icons/slick-prev.svg");
}
.gallery__slider-nav .slick-next {
  background-image: url("../assets/images/icons/slick-next.svg");
}
.gallery__body-slider {
  border-radius: 16px;
  overflow: hidden;
  max-width: 530px;
  position: absolute;
  z-index: 10;
  top: calc(50% - 47px);
  transform: translate(0, -50%);
  left: 0;
}
@media (max-width: 1200px) {
  .gallery__body-slider {
    position: static;
    transform: translate(0, 0);
    margin-bottom: 40px;
    max-width: 100%;
  }
}
@media (max-width: 600px) {
  .gallery__body-slider {
    margin-bottom: 20px;
  }
}
.gallery__body {
  padding: 40px;
  background: #fff;
  color: var(--main);
}
@media (max-width: 600px) {
  .gallery__body {
    padding: 20px;
  }
}
.gallery__title {
  font-weight: 400;
  font-size: 32px;
  line-height: 1.2;
  margin-bottom: 40px;
  color: var(--dark);
}
@media (max-width: 600px) {
  .gallery__title {
    font-size: 24px;
    margin-bottom: 30px;
  }
}
.gallery__info {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
@media (max-width: 1000px) {
  .gallery__info {
    font-size: 16px;
  }
}
.gallery__info span {
  position: relative;
  padding-left: 24px;
}
.gallery__info span::before {
  content: "";
  width: 16px;
  height: 1px;
  top: 14px;
  left: 0;
  background: var(--main);
}
.gallery__dscr {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 60px;
}
@media (max-width: 1000px) {
  .gallery__dscr {
    font-size: 16px;
  }
}
@media (max-width: 600px) {
  .gallery__dscr {
    margin-bottom: 40px;
  }
}
.gallery .btn {
  max-width: 307px;
  width: 100%;
}
@media (max-width: 600px) {
  .gallery .btn {
    max-width: 100%;
  }
}

.equipmentOptions__items {
  display: grid;
  grid-template-columns: repeat(2, minmax(auto, 1fr));
  gap: 80px;
}
@media (max-width: 1280px) {
  .equipmentOptions__items {
    gap: 40px;
  }
}
@media (max-width: 1000px) {
  .equipmentOptions__items {
    grid-template-columns: repeat(1, minmax(auto, 1fr));
  }
}
.equipmentOptions__item-inner {
  display: grid;
  grid-template-columns: repeat(2, minmax(auto, 1fr));
  gap: 40px;
}
@media (max-width: 1280px) {
  .equipmentOptions__item-inner {
    gap: 20px;
  }
}
@media (max-width: 600px) {
  .equipmentOptions__item-inner {
    grid-template-columns: repeat(1, minmax(auto, 1fr));
  }
}
.equipmentOptions__item-img {
  border-radius: 16px;
  overflow: hidden;
}
@media (max-width: 600px) {
  .equipmentOptions__item-img {
    height: 280px;
  }
}
.equipmentOptions__item-title {
  font-weight: 700;
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 24px;
  position: relative;
  padding-left: 24px;
}
.equipmentOptions__item-title::before {
  content: "";
  width: 16px;
  height: 1px;
  top: 14px;
  left: 0;
  background: var(--main);
}
.equipmentOptions__item-dscr {
  line-height: 1.6;
}
.equipmentOptions__item .btn {
  margin-top: 24px;
  width: 100%;
}

.trigger {
  padding: 0;
}
@media (max-width: 1280px) {
  .trigger {
    background: var(--primary);
    color: #fff;
    padding: 80px 0;
  }
}
@media (max-width: 600px) {
  .trigger {
    padding: 60px 0;
  }
}
.trigger__img {
  aspect-ratio: 16/8;
}
@media (max-width: 1280px) {
  .trigger__img {
    display: none;
  }
}
.trigger__inner {
  position: relative;
}
.trigger__body {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(auto, 1fr));
  gap: 20px;
  padding-bottom: 80px;
}
@media (max-width: 1280px) {
  .trigger__body {
    position: static;
    grid-template-columns: repeat(1, minmax(auto, 1fr));
    gap: 40px;
    padding-bottom: 0;
  }
}
.trigger__list-title {
  font-weight: 400;
  font-size: 32px;
  line-height: 1.2;
  margin-bottom: 40px;
}
@media (max-width: 600px) {
  .trigger__list-title {
    font-size: 24px;
    margin-bottom: 30px;
  }
}
.trigger__list-wrapper {
  display: grid;
  grid-template-columns: repeat(2, minmax(auto, 1fr));
  gap: 20px;
}
@media (max-width: 800px) {
  .trigger__list-wrapper {
    grid-template-columns: repeat(1, minmax(auto, 1fr));
    gap: 10px;
  }
}
.trigger__list-wrapper ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.trigger__list-wrapper ul li {
  position: relative;
  padding-left: 24px;
}
.trigger__list-wrapper ul li::before {
  content: "";
  width: 16px;
  height: 1px;
  top: 11px;
  left: 0;
  background: var(--main);
}
@media (max-width: 1280px) {
  .trigger__list-wrapper ul li::before {
    background: #fff;
  }
}

.drillingPrices__items {
  display: grid;
  grid-template-columns: repeat(2, minmax(auto, 1fr));
  gap: 80px;
}
@media (max-width: 1280px) {
  .drillingPrices__items {
    gap: 40px;
  }
}
@media (max-width: 800px) {
  .drillingPrices__items {
    grid-template-columns: repeat(1, minmax(auto, 1fr));
  }
}
.drillingPrices__item-inner {
  display: grid;
  grid-template-columns: repeat(2, minmax(auto, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}
@media (max-width: 1280px) {
  .drillingPrices__item-inner {
    grid-template-columns: repeat(1, minmax(auto, 1fr));
  }
}
@media (max-width: 600px) {
  .drillingPrices__item-inner {
    gap: 30px;
  }
}
.drillingPrices__item-img {
  height: 100%;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.drillingPrices__item-img img {
  -o-object-fit: contain;
     object-fit: contain;
  height: 100%;
}
@media (max-width: 1280px) {
  .drillingPrices__item-img {
    max-height: 300px;
  }
}
@media (max-width: 600px) {
  .drillingPrices__item-img {
    max-height: 280px;
  }
}
.drillingPrices__item-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (max-width: 600px) {
  .drillingPrices__item-content {
    gap: 20px;
  }
}
.drillingPrices__item-title {
  font-weight: 400;
  font-size: 32px;
  line-height: 1.2;
}
@media (max-width: 600px) {
  .drillingPrices__item-title {
    font-size: 24px;
  }
}
.drillingPrices__item-dscr, .drillingPrices__item-price p {
  font-size: 18px;
  line-height: 1.6;
}
@media (max-width: 1000px) {
  .drillingPrices__item-dscr, .drillingPrices__item-price p {
    font-size: 16px;
  }
}
.drillingPrices__item-dscr-full, .drillingPrices__item-benefits {
  display: none;
}
.drillingPrices__item-price strong {
  display: block;
  margin-top: 10px;
  font-weight: 400;
  font-size: 32px;
  line-height: 1.2;
  color: var(--primary);
}
@media (max-width: 600px) {
  .drillingPrices__item-price strong {
    font-size: 28px;
  }
}
.drillingPrices__item-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(auto, 1fr));
  gap: 20px;
}
@media (max-width: 600px) {
  .drillingPrices__item-nav {
    gap: 10px;
  }
}
@media (max-width: 400px) {
  .drillingPrices__item-nav {
    grid-template-columns: repeat(1, minmax(auto, 1fr));
    gaP: 10px;
  }
}

.drillingSteps__slider .swiper-container {
  box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.08);
  overflow: hidden;
  border-radius: 16px;
  position: relative;
}
.drillingSteps__slider .swiper-wrapper {
  max-height: 415px;
  height: 100% !important;
}
@media (max-width: 1000px) {
  .drillingSteps__slider .swiper-wrapper {
    max-height: 613px;
  }
}
@media (max-width: 600px) {
  .drillingSteps__slider .swiper-wrapper {
    max-height: 543px;
  }
}
.drillingSteps__slider .swiper-pagination {
  position: static;
  transform: translate(0%, 0%);
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 30px;
}
.drillingSteps__slider .swiper-pagination .swiper-pagination-bullet {
  transition: 0.5s ease;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #919191;
}
.drillingSteps__slider .swiper-pagination .swiper-pagination-bullet-active {
  width: 35px;
  border-radius: 5px;
  background: var(--primary);
}
.drillingSteps__item {
  display: flex !important;
  border-radius: 16px;
}
@media (max-width: 1000px) {
  .drillingSteps__item {
    flex-direction: column;
  }
}
.drillingSteps__item-img {
  max-width: 420px;
  width: 100%;
}
@media (max-width: 1000px) {
  .drillingSteps__item-img {
    max-width: 100%;
    height: 350px;
  }
}
@media (max-width: 600px) {
  .drillingSteps__item-img {
    height: 280px;
  }
}
.drillingSteps__item-content {
  background: #fff;
  padding: 40px 20px;
}
@media (max-width: 600px) {
  .drillingSteps__item-content {
    padding: 20px;
  }
}
.drillingSteps__item-title {
  font-weight: 700;
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 24px;
}
@media (max-width: 600px) {
  .drillingSteps__item-title {
    margin-bottom: 20px;
  }
}
.drillingSteps__item-dscr {
  font-size: 18px;
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (max-width: 1000px) {
  .drillingSteps__item-dscr {
    font-size: 16px;
  }
}

.benefits__inner {
  position: relative;
}
@media (max-width: 1280px) {
  .benefits__inner {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }
}
.benefits__items {
  position: relative;
  z-index: 10;
  max-width: 750px;
  padding: 40px;
  background: #fff;
  border-radius: 16px;
  display: grid;
  grid-template-columns: repeat(2, minmax(auto, 1fr));
  gap: 80px;
}
@media (max-width: 1280px) {
  .benefits__items {
    gap: 40px;
    max-width: 100%;
  }
}
@media (max-width: 600px) {
  .benefits__items {
    grid-template-columns: repeat(1, minmax(auto, 1fr));
    padding: 20px;
    gap: 20px;
  }
}
.benefits__item-title {
  font-weight: 700;
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 30px;
  position: relative;
  padding-left: 24px;
}
@media (max-width: 600px) {
  .benefits__item-title {
    margin-bottom: 20px;
  }
}
.benefits__item-title::before {
  content: "";
  width: 16px;
  height: 1px;
  top: 14px;
  left: 0;
  background: var(--main);
}
.benefits__item-dscr {
  line-height: 1.6;
}
.benefits__img {
  max-width: 750px;
  height: 100%;
  border-radius: 16px;
  background: #ededed;
  position: absolute;
  top: -40px;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1280px) {
  .benefits__img {
    max-width: 100%;
    display: none;
  }
}
@media (max-width: 800px) {
  .benefits__img {
    position: static;
  }
}
@media (max-width: 600px) {
  .benefits__img {
    height: 550px;
    display: block;
  }
}
.benefits__img img {
  border-radius: 16px;
  height: 100%;
}

.arrangementPrices__items {
  display: grid;
  grid-template-columns: repeat(3, minmax(auto, 1fr));
  gap: 80px;
}
@media (max-width: 1280px) {
  .arrangementPrices__items {
    gap: 40px;
  }
}
@media (max-width: 1000px) {
  .arrangementPrices__items {
    grid-template-columns: repeat(1, minmax(auto, 1fr));
  }
}
.arrangementPrices__item {
	
	display: flex;    
    flex-direction: column;
	/*
  display: grid;
  grid-auto-flow: row;
  grid-template: auto auto 1fr auto auto/1fr; */
}
.arrangementPrices__item-img {
 /* height: 290px; */
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
}
.arrangementPrices__item-img img {
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 600px) {
  .arrangementPrices__item-img {
    margin-bottom: 30px;
  }
}
.arrangementPrices__item-title {
  font-weight: 700;
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 30px;
  position: relative;
  /*padding-left: 24px;*/
}
.arrangementPrices__item-title::before {
 /* content: "";
  width: 16px;
  height: 1px;
  top: 14px;
  left: 0;
  background: var(--main);*/
}
@media (max-width: 600px) {
  .arrangementPrices__item-title {
    margin-bottom: 20px;
  }
}
.arrangementPrices__item-dscr {
  line-height: 1.6;
  margin-bottom: 24px;
}
.arrangementPrices__item-dscr-full {
  display: none;
}
.arrangementPrices__item-benefits {
  display: none;
}
.arrangementPrices__item-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.arrangementPrices__item-price strong {
  font-weight: 400;
  font-size: 32px;
  line-height: 1.2;
  color: #F7AA47;
}
@media (max-width: 600px) {
  .arrangementPrices__item-price strong {
    font-size: 28px;
  }
}
.arrangementPrices__item-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
}
@media (max-width: 600px) {
  .arrangementPrices__item-nav {
    margin-top: 30px;
    gap: 10px;
  }
}
.arrangementPrices__item-nav .btn {
  width: 100%;
}

.arrangementSteps .titleSection {
  margin-bottom: 40px;
}
.arrangementSteps__minTitle {
  font-weight: 700;
  font-size: 18px;
  line-height: 1.6;
  position: relative;
  padding-left: 24px;
}
.arrangementSteps__minTitle::before {
  content: "";
  width: 16px;
  height: 1px;
  top: 14px;
  left: 0;
  background: var(--main);
}

.catalog__items {
  display: grid;
  grid-template-columns: repeat(3, minmax(auto, 1fr));
  gap: 80px;
}
@media (max-width: 1280px) {
  .catalog__items {
    gap: 40px;
  }
}
@media (max-width: 1000px) {
  .catalog__items {
    grid-template-columns: repeat(1, minmax(auto, 1fr));
  }
}
.catalog__item {
  display: grid;
  grid-auto-flow: row;
  grid-template: auto 1fr auto auto auto/1fr;
}
.catalog__item-img {
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 40px;
  padding: 10px;
}
.catalog__item-title {
  font-weight: 700;
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 40px;
  position: relative;
  padding-left: 24px;
}
.catalog__item-title::before {
  content: "";
  width: 16px;
  height: 1px;
  top: 14px;
  left: 0;
  background: var(--main);
}
.catalog__item-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 24px;
}
.catalog__item-list li {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  line-height: 1.6;
}
.catalog__item-list li strong {
  font-weight: 700;
}
.catalog__item-price {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 40px;
}
.catalog__item-price strong {
  font-weight: 400;
  font-size: 32px;
  line-height: 1.2;
  color: var(--primary);
}
@media (max-width: 600px) {
  .catalog__item-price strong {
    font-size: 28px;
  }
}
.catalog__item .btn {
  width: 100%;
}

.services__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
@media (max-width: 1000px) {
  .services__top {
    flex-direction: column;
    align-items: flex-start;
  }
}
.services__top strong {
  font-weight: 700;
  font-size: 18px;
  line-height: 1.6;
}
.services__items {
  display: grid;
  grid-template-columns: repeat(3, minmax(auto, 1fr));
  gap: 80px 20px;
}
@media (max-width: 1280px) {
  .services__items {
    gap: 40px 20px;
  }
}
@media (max-width: 800px) {
  .services__items {
    grid-template-columns: repeat(2, minmax(auto, 1fr));
  }
}
@media (max-width: 600px) {
  .services__items {
    grid-template-columns: repeat(1, minmax(auto, 1fr));
  }
}
.services__item {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (max-width: 800px) {
  .services__item {
    gap: 20px;
  }
}
.services__item img {
  aspect-ratio: 4/4;
  max-height: 470px;
  border-radius: 16px;
  overflow: hidden;
}
@media (max-width: 600px) {
  .services__item img {
    aspect-ratio: 4/3;
  }
}
.services__item-title {
  font-weight: 700;
  font-size: 18px;
  line-height: 1.6;
  position: relative;
  padding-left: 24px;
}
.services__item-title::before {
  content: "";
  width: 16px;
  height: 1px;
  top: 14px;
  left: 0;
  background: var(--main);
}

.about__inner {
  width: 100%;
  position: relative;
}
@media (max-width: 1280px) {
  .about__inner {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }
}
.about__img {
  max-width: 750px;
  aspect-ratio: 1;
  border-radius: 16px;
  overflow: hidden;
}
@media (max-width: 1280px) {
  .about__img {
    max-width: 100%;
    aspect-ratio: 16/13;
	display: none;
  }
}
@media (max-width: 600px) {
  .about__img {
    aspect-ratio: 4/4;
	display: block;
  }
}
.about__content {
  max-width: 750px;
  background: #fff;
  height: 100%;
  position: absolute;
  top: -140px;
  right: 0;
  padding: 40px;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (max-width: 1360px) {
  .about__content {
    top: -40px;
  }
}
@media (max-width: 1280px) {
  .about__content {
    position: static;
    max-width: 100%;
  }
}
@media (max-width: 600px) {
  .about__content {
    gap: 30px;
    padding: 20px;
  }
}
.about__content ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 18px;
  line-height: 1.6;
}
@media (max-width: 1000px) {
  .about__content ul {
    font-size: 16px;
  }
}
.about__content ul li {
  position: relative;
  padding-left: 24px;
}
.about__content ul li::before {
  content: "";
  width: 16px;
  height: 1px;
  top: 14px;
  left: 0;
  background: var(--main);
}
.about__nextTitle {
  font-weight: 400;
  font-size: 32px;
  line-height: 1.2;
}
@media (max-width: 600px) {
  .about__nextTitle {
    font-size: 28px;
  }
}
.about__items {
  display: grid;
  grid-template-columns: repeat(3, minmax(auto, 1fr));
  gap: 40px;
}
@media (max-width: 800px) {
  .about__items {
    grid-template-columns: repeat(1, minmax(auto, 1fr));
    gap: 30px;
  }
}
@media (max-width: 800px) {
  .about__item {
    text-align: center;
  }
}
.about__item strong {
  white-space: nowrap;
  display: block;
  font-weight: 700;
  font-size: 56px;
  line-height: 1.2;
  margin-bottom: 16px;
}
@media (max-width: 1280px) {
  .about__item strong {
    font-size: 46px;
  }
}
@media (max-width: 1112px) {
  .about__item strong {
    font-size: 42px;
  }
}
@media (max-width: 600px) {
  .about__item strong {
    font-size: 40px;
    margin-bottom: 10px;
  }
}
.about__item-title {
  font-weight: 700;
  font-size: 18px;
  line-height: 1.6;
  position: relative;
  padding-left: 24px;
}
@media (max-width: 600px) {
  .about__item-title {
    padding-left: 0;
  }
}
.about__item-title::before {
  content: "";
  width: 16px;
  height: 1px;
  top: 14px;
  left: 0;
  background: var(--main);
}
@media (max-width: 600px) {
  .about__item-title::before {
    display: none;
  }
}

.triggerContacts .titleSection {
  max-width: 700px;
}
.triggerContacts__inner {
  display: grid;
  grid-template-columns: 0.55fr 0.45fr;
  gap: 40px;
  align-items: center;
}
@media (max-width: 1000px) {
  .triggerContacts__inner {
    grid-template-columns: 1fr;
  }
}
.triggerContacts__item {
  padding: 40px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  display: grid;
  grid-template-columns: 0.3fr 0.7fr;
  gap: 20px;
}
@media (max-width: 600px) {
  .triggerContacts__item {
    grid-template-columns: 1fr;
    padding: 30px 0;
  }
}
.triggerContacts__item:last-child {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.triggerContacts__item-title {
  font-weight: 700;
  font-size: 18px;
  line-height: 1.6;
}
.triggerContacts__item-dscr {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 18px;
  line-height: 1.6;
}
.triggerContacts__item-dscr a {
  color: var(--primary);
}
@media (any-hover: hover) {
  .triggerContacts__item-dscr a:hover {
    text-decoration: underline;
  }
}
.triggerContacts__item-bottom {
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
@media (max-width: 600px) {
  .triggerContacts__item-bottom {
    gap: 20px;
  }
}
.triggerContacts__item-bottom .header__btn {
  display: block;
}
.triggerContacts__item-bottom .header__social {
  display: flex;
}
@media (max-width: 1000px) {
  .triggerContacts__img {
    display: none;
  }
}
@media (max-width: 800px) {
  .triggerContacts__img {
    display: block;
  }
}

.reviews {
  background: linear-gradient(201deg, #FFDF49 40%, #F7AA47 140%);
  color: #fff;
}
.reviews__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.reviews__top .btn {
  max-width: 300px;
  width: 100%;
 /* border: 1px solid #fff;*/
}
@media (max-width: 800px) {
  .reviews__top .btn {
    display: none;
  }
}
.reviews__slider {
  overflow: hidden;
  border-radius: 16px;
}
.reviews__slider .slick-list {
  display: flex;
  margin: 0 -10px;
}
.reviews__slider .slick-track {
  display: flex;
}
.reviews__slider-nav {
  width: -moz-max-content;
  width: max-content;
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 70px;
}
.reviews__slider-nav .slick-arrow {
  font-size: 0;
  border: none;
  display: block;
  width: 40px;
  height: 24px;
  cursor: pointer;
  padding: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.reviews__slider-nav .slick-prev {
  background-image: url("../assets/images/icons/slick-prev.svg");
}
.reviews__slider-nav .slick-next {
  background-image: url("../assets/images/icons/slick-next.svg");
}
.reviews__item {
  margin: 0 10px;
  border-radius: 16px;
  background: #fff;
  color: var(--main);
  padding: 40px;
  display: grid !important;
  grid-auto-flow: row;
  grid-template: auto auto 1fr auto/1fr;
}
@media (max-width: 600px) {
  .reviews__item {
    padding: 20px;
  }
}
.reviews__item-title {
  font-weight: 700;
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 20px;
}
.reviews__item-date {
  font-weight: 400;
  line-height: 1.6;
  opacity: 0.5;
  margin-bottom: 20px;
}
.reviews__item-dscr {
  display: flex;
  flex-direction: column;
  gap: 10px;
  line-height: 1.6;
  margin-bottom: 20px;
}
.reviews__item-dscr-full{
	display: none;
}
.reviews__item-btn {
  line-height: 1.6;
  color: #F7AA47;
  text-align: left;
}
@media (max-width: 600px) {
  .reviews .reviews__slider-nav {
    margin-top: 30px;
    width: 100%;
    justify-content: center;
  }
}
.reviews .btn.mob {
  display: none;
}
@media (max-width: 800px) {
  .reviews .btn.mob {
    display: block;
    width: 100%;
    border-color: #fff;
    margin-top: 30px;
  }
}

.paymentOptions__inner {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  position: relative;
}
@media (max-width: 1000px) {
  .paymentOptions__inner {
    flex-direction: column;
  }
}
.paymentOptions__inner::before {
  content: "";
  width: 720px;
  aspect-ratio: 16/8.5;
  top: -20px;
  left: 0;
  background-image: url("../assets/images/paymentOptions.webp");
  background-position: top left;
  background-repeat: no-repeat;
  background-size: contain;
}
@media (max-width: 1280px) {
  .paymentOptions__inner::before {
    display: none;
  }
}
.paymentOptions .titleSection {
  max-width: 400px;
}
.paymentOptions__items {
  max-width: 860px;
  display: grid;
  grid-template-columns: repeat(3, minmax(auto, 1fr));
  gap: 80px;
}
@media (max-width: 1280px) {
  .paymentOptions__items {
    gap: 40px;
  }
}
@media (max-width: 800px) {
  .paymentOptions__items {
    grid-template-columns: repeat(1, minmax(auto, 1fr));
  }
}
@media (max-width: 600px) {
  .paymentOptions__items {
    gap: 20px;
  }
}
@media (max-width: 600px) {
  .paymentOptions__item {
    display: flex;
    align-items: center;
    gap: 10px;
  }
}
@media (max-width: 800px) {
  .paymentOptions__item.null {
    display: none;
  }
}
.paymentOptions__item strong {
  display: block;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 10px;
}
@media (max-width: 600px) {
  .paymentOptions__item strong {
    margin: 0;
  }
}
.paymentOptions__item p {
  line-height: 1.6;
}

@media (max-width: 600px) {
  .faq {
    padding-top: 0;
  }
}
.faq__inner {
  display: grid;
  grid-template-columns: repeat(2, minmax(auto, 1fr));
  gap: 40px;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
}
@media (max-width: 1000px) {
  .faq__inner {
    grid-template-columns: repeat(1, minmax(auto, 1fr));
  }
}
.faq__items {
  background: #fff;
  padding: 40px;
  padding-right: 0;
}
@media (max-width: 600px) {
  .faq__items {
    padding: 20px;
  }
}
.faq__item {
  cursor: pointer;
  padding: 24px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
@media (max-width: 600px) {
  .faq__item {
    padding: 20px 0;
  }
}
.faq__item:first-child {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.faq__item:last-child {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.faq__item-title {
  position: relative;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.6;
  padding-right: 30px;
  color: #F7AA47;
}
.faq__item-title::before {
  content: "";
  width: 24px;
  aspect-ratio: 4/4;
  top: 50%;
  transform: translate(0, -50%);
  right: 0;
  background-image: url("../assets/images/icons/arrowFaq.svg");
  background-size: contain;
  transition: 0.3s ease;
}
.faq__item-title.accordion-active::before {
  transform: translate(0, -50%) rotate(180deg);
}
.faq__item-body {
  display: none;
  margin-top: 24px;
  line-height: 1.6;
}
.faq__body {
  background-image: url("../assets/images/faq.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #fff;
  text-align: center;
  padding: 60px 20px;
}
.faq__body-title {
  font-weight: 400;
  font-size: 32px;
  line-height: 1.2;
  margin-bottom: 40px;
}
@media (max-width: 600px) {
  .faq__body-title {
    margin-bottom: 30px;
    font-size: 28px;
  }
}
.faq__body-dscr {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 80px;
}
@media (max-width: 600px) {
  .faq__body-dscr {
    margin-bottom: 30px;
    font-size: 16px;
  }
}
.faq__body .btn {
  max-width: 280px;
  width: 100%;
  background: transparent;
  border: 1px solid #fff;
}
@media (any-hover: hover) {
  .faq__body .btn:hover {
    background: #fff;
  }
}
@media (max-width: 600px) {
  .faq__body .btn {
    max-width: 100%;
  }
}

.footer {
  background: #fff;
}
.footer__inner {
  padding: 80px 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(auto, 1fr));
  gap: 20px;
}
@media (max-width: 1000px) {
  .footer__inner {
    grid-template-columns: repeat(1, minmax(auto, 1fr));
  }
}
@media (max-width: 600px) {
  .footer__inner {
    padding: 40px 0;
    gap: 30px;
  }
}
.footer__logo-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
}
@media (max-width: 1000px) {
  .footer__logo-wrapper {
    gap: 30px;
  }
}
.footer__logo-wrapper .header__social {
  display: flex;
}
.footer__logo {
  max-width: 165px;
}
.footer__addres, .footer__contacts {
  line-height: 1.6;
  font-size: 18px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (max-width: 1000px) {
  .footer__addres, .footer__contacts {
    font-size: 16px;
  }
}
.footer__addres strong, .footer__contacts strong {
  font-weight: 700;
  display: block;
}
.footer__bottom {
  padding: 40px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  line-height: 1.6;
}
@media (max-width: 1000px) {
  .footer__bottom {
    flex-direction: column;
    gap: 10px;
  }
}
@media (max-width: 600px) {
  .footer__bottom {
    padding: 20px 0;
  }
}
.footer__bottom p {
  opacity: 0.5;
}
@media (any-hover: hover) {
  .footer__bottom a:hover {
    text-decoration: underline;
  }
}

.vverx img {
	width: 55px;
    position: fixed;
    right: 10px;
    bottom: 10px;
	}

@media (max-width: 600px) {
 .vverx img {
	display:none;
	}
}


.avtor {display: flex;}
.avtor img.photot {
	    width: 145px;
    border-radius: 50%;
}
.avtorname {
    font-size: 20px;
    display: flex;
    align-items: center;
    margin-left: 10px;
    line-height: 1.5;
}

