@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
.in-page-content {
  font-family: "Montserrat", serif;
}

img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
}

.subtitle {
  max-width: 755px;
  text-align: center;
  color: #757aa4;
  margin: 0 auto;
}

.button {
  display: block;
  font-weight: 500;
  font-size: 15px;
  line-height: 1;
  color: #fff;
  padding: 16px 18px 15px 18px;
  border-radius: 3px;
  cursor: pointer;
  border: none;
  outline: none;
  box-shadow: 0 4px 10px 0 rgba(16, 109, 159, 0.34);
  background: linear-gradient(90deg, #0c669c 0%, #3bbac2 100%);
  transition: 0.1s;
  text-decoration: none;
}
.button:hover {
  box-shadow: 0 4px 10px 0 rgba(16, 109, 159, 0.1);
  background: linear-gradient(90deg, #0d71af 0%, #48bec7 100%);
}
.button--big {
  padding: 18px 20px 17px 22px;
}
.button--secondary {
  background: #39b6c0;
}
.button--secondary:hover {
  background: #3dc9d3;
}
.button--arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 10px;
}
.button--arrow svg {
  display: block;
  width: 20px;
  height: 10px;
  fill: currentColor;
}

.label {
  display: block;
  font-weight: 700;
}

.input {
  display: block;
  width: 100%;
  max-width: unset;
  padding: 12px 20px;
  outline: none;
  font-size: 16px;
  line-height: 1.5;
  border: 1px solid transparent;
  border-radius: 6px;
  transition: 0.15s;
  color: #1b1d32;
  box-shadow: inset 0 4px 4px 0 rgba(201, 210, 234, 0.29);
  background: rgba(201, 210, 234, 0.1);
}
.input::-moz-placeholder {
  color: #757aa4;
}
.input::placeholder {
  color: #757aa4;
}
.input:hover {
  box-shadow: inset 0 4px 4px 0 rgba(201, 210, 234, 0.75);
}
.input:focus {
  border-color: #39b6c0;
}

.input-file input {
  display: none;
}
.input-file__field {
  display: block;
  width: 100%;
  max-width: unset;
  padding: 12px 20px;
  outline: none;
  font-size: 16px;
  line-height: 1.5;
  border: 1px solid transparent;
  border-radius: 6px;
  transition: 0.15s;
  color: #1b1d32;
  box-shadow: inset 0 4px 4px 0 rgba(201, 210, 234, 0.29);
  background: rgba(201, 210, 234, 0.1);
}
.input-file__field::-moz-placeholder {
  color: #757aa4;
}
.input-file__field::placeholder {
  color: #757aa4;
}
.input-file__field:hover {
  box-shadow: inset 0 4px 4px 0 rgba(201, 210, 234, 0.75);
}
.input-file__field:focus {
  border-color: #39b6c0;
}
.input-file__field {
  position: relative;
  padding-right: 54px;
}
.input-file__field:after {
  content: "";
  display: block;
  width: 22px;
  height: 22px;
  position: absolute;
  top: calc(50% - 11px);
  right: 22px;
  background-image: url(../img/icons/paperclip.svg);
  background-position: center;
  background-repeat: no-repeat;
}
.input-file__field-text {
  color: #7e83ae;
}

.textarea {
  display: block;
  width: 100%;
  max-width: unset;
  padding: 12px 20px;
  outline: none;
  font-size: 16px;
  line-height: 1.5;
  border: 1px solid transparent;
  border-radius: 6px;
  transition: 0.15s;
  color: #1b1d32;
  box-shadow: inset 0 4px 4px 0 rgba(201, 210, 234, 0.29);
  background: rgba(201, 210, 234, 0.1);
}
.textarea::-moz-placeholder {
  color: #757aa4;
}
.textarea::placeholder {
  color: #757aa4;
}
.textarea:hover {
  box-shadow: inset 0 4px 4px 0 rgba(201, 210, 234, 0.75);
}
.textarea:focus {
  border-color: #39b6c0;
}
.textarea {
  resize: none;
}

.select {
  display: block;
  width: 100%;
  max-width: unset;
  padding: 12px 20px;
  outline: none;
  font-size: 16px;
  line-height: 1.5;
  border: 1px solid transparent;
  border-radius: 6px;
  transition: 0.15s;
  color: #1b1d32;
  box-shadow: inset 0 4px 4px 0 rgba(201, 210, 234, 0.29);
  background: rgba(201, 210, 234, 0.1);
}
.select::-moz-placeholder {
  color: #757aa4;
}
.select::placeholder {
  color: #757aa4;
}
.select:hover {
  box-shadow: inset 0 4px 4px 0 rgba(201, 210, 234, 0.75);
}
.select:focus {
  border-color: #39b6c0;
}

.checkbox {
  display: flex;
  align-items: center;
  gap: 0 6px;
  cursor: pointer;
}
.checkbox__checker {
  display: flex;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  border-radius: 6px;
  border: 1px solid #C9C9C9;
}
.checkbox--white .checkbox__checker {
  background: #fff;
  border-color: #fff;
}
.checkbox__checker:after {
  content: "";
  display: block;
  width: 12px;
  height: 9px;
  margin: auto;
  background-image: url(../img/icons/check2-white.svg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.checkbox--white .checkbox__checker:after {
  background-image: url(../img/icons/check2.svg);
}
.checkbox input {
  display: none;
}
.checkbox input:checked ~ .checkbox__checker {
  border-color: #0c669c;
  background: #0c669c;
}
.checkbox input:not(:checked) ~ .checkbox__checker:after {
  display: none;
}
.checkbox--white input:checked ~ .checkbox__checker {
  border-color: #fff;
  background: #fff;
}
.checkbox--white .checkbox__text {
  color: #fff;
}
.checkbox--white .checkbox__text a {
  color: #fff;
}

.radio {
  display: flex;
  align-items: center;
  gap: 0 6px;
  cursor: pointer;
}
.radio__checker {
  display: flex;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  border-radius: 50%;
  border: 1px solid #C9C9C9;
}
.radio--white .radio__checker {
  background: #fff;
  border-color: #fff;
}
.radio__checker:after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  margin: auto;
  border-radius: 50%;
  background: #0c669c;
  box-shadow: 0px 0px 0px 3px #fff;
}
.radio--white .radio__checker:after {
  width: 10px;
  height: 10px;
}
.radio input {
  display: none;
}
.radio input:checked ~ .radio__checker {
  border-color: #0c669c;
  background: #0c669c;
}
.radio input:not(:checked) ~ .radio__checker:after {
  display: none;
}
.radio--white input:checked ~ .radio__checker {
  border-color: #fff;
  background: #fff;
}
.radio--white .radio__text {
  color: #fff;
}
.radio--white .radio__text a {
  color: #fff;
}

.popup {
  padding: 48px 48px;
  border-radius: 48px;
}
@media screen and (max-width: 767px) {
  .popup {
    padding: 48px 24px 24px 24px;
    border-radius: 24px;
  }
}
@media screen and (min-width: 768px) {
  .popup__title {
    max-width: 480px;
  }
}
.popup__form {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .popup__form {
    width: 480px;
  }
}
.popup .fancybox-close-small {
  color: currentColor;
  padding: 4px;
  right: 12px;
  top: 12px;
}

.politic {
  font-size: 12px;
  color: #757aa4;
}
.politic a {
  color: #757aa4;
  text-decoration: underline;
}
.politic a:hover {
  text-decoration: none;
  color: #757aa4;
}

.tabs-head {
  display: flex;
  align-items: center;
  gap: 0 30px;
  overflow: auto;
  padding: 10px;
  margin: -10px;
}
.tabs-head__item {
  box-shadow: 0 2px 10px 0 rgba(78, 127, 222, 0.2);
  background: #fff;
  border-radius: 3px;
  font-weight: 500;
  font-size: 18px;
  padding: 8px 30px;
  transition: 0.1s;
  white-space: nowrap;
}
.tabs-head__item:not(.active):hover {
  box-shadow: 0 2px 10px 0 rgba(78, 127, 222, 0.1);
  cursor: pointer;
}
.tabs-head__item.active {
  background: #39b6c0;
  color: #fff;
  cursor: context-menu;
}

.hero {
  background-image: url(/cifrovaya-zubotekhnicheskaya-laboratoriya/koronki-celnometallicheskie/img/hero/b.jpg);
  background-size: cover;
  background-position: center;
  position: relative;
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  .hero {
 /*   background-image: url(/cifrovaya-zubotekhnicheskaya-laboratoriya/koronki-celnometallicheskie/img/hero/bg-tablet.jpg);*/
  }
}
@media screen and (max-width: 991px) {
  .hero {
    margin: 60px 0 0 0;
  }
}
@media screen and (max-width: 767px) {
  .hero {
 /*   background-image: url(/cifrovaya-zubotekhnicheskaya-laboratoriya/koronki-iz-metallokeramiki/img/hero/bg-mob.jpg);*/
  }
}
.hero-item {
  height: 540px;
  display: grid;
  grid-template-columns: 1fr 400px;
  align-items: center;
  position: relative;
  background-repeat: no-repeat;
  background-position: 24vw center;
 /* background-image: url(/cifrovaya-zubotekhnicheskaya-laboratoriya/koronki-iz-metallokeramiki/img/hero/hero-pc.png);*/
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  .hero-item {
 /*   background-image: url(/cifrovaya-zubotekhnicheskaya-laboratoriya/koronki-iz-metallokeramiki/img/hero/hero-tablet.png);*/
    background-position: center bottom;
    background-size: 30%;
    padding: 50px 0 170px 0;
  }
}
@media screen and (max-width: 767px) {
  .hero-item {
    grid-template-columns: 1fr;
    height: auto;
  /*  background-image: url(/cifrovaya-zubotekhnicheskaya-laboratoriya/koronki-iz-metallokeramiki/img/hero/hero-mob.png);*/
    background-position: center bottom;
    background-size: 80%;
    padding: 50px 0 170px 0;
  }
}
.hero__description h1, .hero__description .h1 {
  font-weight: 500;
  font-size: 40px;
  line-height: 118%;
  color: #fff;
  margin: 0 0 20px 0;
}
@media screen and (max-width: 767px) {
  .hero__description h1, .hero__description .h1 {
    font-size: 28px;
  }
}
.hero__description h1 span, .hero__description .h1 span {
  font-weight: 500;
}
.hero__description p {
  line-height: 162%;
  color: #fff;
  max-width: 440px;
}
.hero__description .button {
  max-width: 330px;
}
.hero__description-signature {
  margin: 12px 0 0 0;
  font-weight: 400;
  font-size: 12px;
  line-height: 133%;
  color: #ccc;
}
.hero-advantages-outer {
  display: flex;
  flex-direction: column;
  align-items: end;
}
@media screen and (max-width: 767px) {
  .hero-advantages-outer {
    display: none;
  }
}
.hero__advantage + .hero__advantage {
  margin-top: 60px;
}
.hero__advantage-value {
  font-weight: 500;
  font-size: 28px;
  color: #fff;
  line-height: 1;
  margin: 2px 0 0 0;
}
.hero__advantage-description {
  color: #fff;
  font-size: 16px;
}
.hero__bullets {
  margin: 0 0 20px 0;
}
.hero__bullets-item {
  display: flex;
  align-items: center;
  gap: 0 12px;
}
.hero__bullets-item + .hero__bullets-item {
  margin-top: 12px;
}
.hero__bullets-item svg {
  display: block;
  width: 20px;
  height: 20px;
  fill: #fff;
}
.hero__bullets-item span {
  font-weight: 400;
  font-size: 16px;
  line-height: 162%;
  color: #fff;
}
@media screen and (max-width: 991px) {
  .hero__bullets-item span {
    font-size: 14px;
  }
}

.service {
  padding: 90px 0;
}
@media screen and (max-width: 991px) {
  .service {
    padding: 30px 0;
  }
}
.service .container > h2 {
  text-align: center;
  margin: 0 0 20px 0;
}
.service .container > p {
  font-weight: 400;
  font-size: 16px;
  line-height: 162%;
  text-align: center;
  color: #757aa4;
  margin: 0 0 40px 0;
}
.service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-gap: 30px 30px;
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  .service-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 767px) {
  .service-grid {
    grid-template-columns: 1fr;
  }
}
.service-card {
  display: flex;
  flex-direction: column;
  padding: 20px 20px;
  background: #e9f4ff;
  border-radius: 6px;
}
.service-card__image {
  display: block;
  margin: 0 0 20px 0;
}
.service-card__image img {
  display: block;
  width: 100%;
  border-radius: 6px;
}
.service-card__title {
  display: block;
  font-weight: 500;
  font-size: 22px;
  color: #1b1d32;
  text-decoration: none;
  margin: 0 0 10px 0;
}
.service-card__description {
  margin: 0 0 20px 0;
  font-size: 15px;
  line-height: 147%;
  color: #1b1d32;
}
.service-card__prices {
  margin: auto 0 0 0;
}
.service-card__price + .service-card__price {
  margin-top: 25px;
}
.service-card__price-title {
  font-size: 15px;
  line-height: 147%;
  color: #1b1d32;
  margin: 0 0 10px 0;
}
.service-card__price-wrapper {
  display: flex;
  align-items: center;
  gap: 0 10px;
}
.service-card__price-item {
  flex: 1;
  font-weight: 500;
  font-size: 16px;
  text-align: center;
  color: #1b1d32;
  padding: 10px;
  border-radius: 6px;
  background: #fff;
}
.service-card__price-item--discount {
  background: #0c669c;
  color: #fff;
}
.service-card__more {
  margin: auto 0 0 0;
  justify-content: space-between;
  padding: 16px 30px 15px 30px;
}

.feedback {
  position: relative;
  background-image: url(../img/feedback/bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.feedback .container {
  position: relative;
}
.feedback-grid {
  display: grid;
  grid-template-columns: 1fr 580px;
  grid-gap: 0 30px;
  align-items: center;
  padding: 68px 0;
}
@media screen and (max-width: 991px) {
  .feedback-grid {
    background: none;
    grid-template-columns: 1fr;
    grid-gap: 30px 0;
  }
}
@media screen and (max-width: 991px) {
  .feedback-grid {
    padding: 30px 0;
  }
}
.feedback-content h2 {
  font-weight: 500;
  font-size: 36px;
  color: #fff;
  margin: 0 0 40px 0;
}
@media screen and (max-width: 1199px) {
  .feedback-content h2 br {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .feedback-content h2 {
    font-size: 28px;
  }
}
.feedback-content p {
  color: #fff;
  margin: 0;
}
.feedback-content p + p {
  margin-top: 30px;
}
.feedback-content p.big {
  font-size: 20px;
}
@media screen and (max-width: 1199px) {
  .feedback-content p br {
    display: none;
  }
}
.feedback-form {
  box-shadow: 0 2px 10px 0 rgba(78, 127, 222, 0.2);
  background: #fff;
  border-radius: 20px;
  padding: 50px 50px;
  position: relative;
}
@media screen and (max-width: 991px) {
  .feedback-form {
    padding: 40px 30px;
  }
}
.feedback-form:before {
  content: "";
  display: block;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  position: absolute;
  top: 10px;
  left: 10px;
  box-shadow: 0 2px 10px 0 rgba(78, 127, 222, 0.2);
  background: #fff;
  border-radius: 15px;
}
.feedback-form > * {
  position: relative;
}
.feedback-form__title {
  font-weight: 500;
  font-size: 24px;
  margin: 0 0 22px 0;
}
.feedback-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 20px 20px;
}
@media screen and (max-width: 991px) {
  .feedback-form-grid {
    grid-template-columns: 1fr;
  }
}
@media screen and (min-width: 992px) {
  .feedback-form-grid .form-group:nth-child(5) {
    grid-column: 1/3;
  }
}
.feedback-form .politic {
  align-self: center;
  text-align: center;
}
.feedback__bullets {
  margin: 40px 0 0 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px 30px;
}
.feedback__bullets-item {
  display: flex;
  align-items: center;
  gap: 0 12px;
}
.feedback__bullets-item svg {
  display: block;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  fill: #fff;
}
.feedback__bullets-item span {
  font-weight: 400;
  font-size: 14px;
  line-height: 162%;
  color: #fff;
}

.feedback-flat {
  padding: 40px 0;
  background: url(../img/feedback/flat-bg.jpg);
  background-size: cover;
  background-position: center;
}
.feedback-flat-form {
  box-shadow: 0 2px 10px 0 rgba(78, 127, 222, 0.2);
  background: #fff;
  border-radius: 20px;
  padding: 50px 50px;
  position: relative;
}
@media screen and (max-width: 991px) {
  .feedback-flat-form {
    padding: 40px 30px;
  }
}
.feedback-flat-form:before {
  content: "";
  display: block;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  position: absolute;
  top: 10px;
  left: 10px;
  box-shadow: 0 2px 10px 0 rgba(78, 127, 222, 0.2);
  background: #fff;
  border-radius: 15px;
}
.feedback-flat-form > * {
  position: relative;
}
.feedback-flat-form > h2 {
  font-weight: 500;
  font-size: 24px;
  text-align: center;
  color: #1b1d32;
  margin: 0;
}
.feedback-flat-form > p {
  font-weight: 400;
  font-size: 15px;
  line-height: 133%;
  text-align: center;
  color: #7e83ae;
  margin: 0 0 24px 0;
}
.feedback-flat-form__title {
  font-weight: 500;
  font-size: 24px;
  margin: 0 0 50px 0;
}
.feedback-flat-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-gap: 20px 20px;
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  .feedback-flat-form-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 767px) {
  .feedback-flat-form-grid {
    grid-template-columns: 1fr;
  }
}
.feedback-flat-form .politic {
  margin: 24px 0 0 0;
}

.product {
  padding: 70px 0;
}
@media screen and (max-width: 991px) {
  .product {
    padding: 30px 0;
  }
}
.product .container > h2 {
  text-align: center;
  margin: 0 0 20px 0;
}
.product .container > p {
  font-weight: 400;
  font-size: 16px;
  line-height: 162%;
  text-align: center;
  color: #757aa4;
  margin: 0 0 40px 0;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 35px 35px;
}
@media screen and (max-width: 1199px) {
  .product-grid {
    gap: 15px 15px;
  }
}
@media screen and (max-width: 991px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
}
.product-card {
  padding: 45px 40% 45px 40px;
  border-radius: 6px;
  flex-direction: column;
  display: flex;
  background-repeat: no-repeat;
  background-position: bottom right;
  background-size: auto 100%;
  transition: 0.15s;
}
@media screen and (max-width: 991px) {
  .product-card {
    background-size: auto 45%;
    padding: 40px 15px 40px 15px;
  }
}
.product-card:nth-child(1) {
  background-color: #1a80a8;
}
.product-card:nth-child(2) {
  background-color: #0c669c;
}
.product-card:nth-child(3) {
  background-color: #218cad;
}
.product-card:nth-child(4) {
  background-color: #197299;
}
@media screen and (min-width: 992px) {
  .product-card:hover {
    box-shadow: 0 10px 26px 0 rgb(165, 175, 197), 0 10px 13px 0 rgba(95, 105, 126, 0.23);
  }
}
.product-card__title {
  font-weight: 500;
  font-size: 24px;
  color: #fff;
  margin: 0 0 20px 0;
}
.product-card__description {
  margin: 0 0 auto 0;
}
.product-card__description p {
  font-size: 14px;
  line-height: 171%;
  color: #fff;
}
@media screen and (max-width: 991px) {
  .product-card__description {
    padding: 0px 20% 0px 0px;
  }
}
.product-card .btn {
  margin: 38px 0 0 0;
  max-width: 190px;
}

.steps {
  background: linear-gradient(272deg, #deedf6 0%, #f9fbff 100%);
  padding: 70px 0;
}
@media screen and (max-width: 991px) {
  .steps {
    padding: 30px 0;
  }
}
.steps .container > h2 {
  text-align: center;
  margin: 0 0 20px 0;
}
.steps .container > p {
  font-weight: 400;
  font-size: 16px;
  line-height: 162%;
  text-align: center;
  color: #757aa4;
  margin: 0 0 40px 0;
}
.steps-grid {
  display: flex;
  justify-content: space-between;
  gap: 24px 24px;
}
@media screen and (max-width: 1199px) {
  .steps-grid {
    gap: 48px 0;
    flex-wrap: wrap;
    justify-content: space-evenly;
  }
}
.steps-card img {
  display: block;
  margin: 0 auto 26px auto;
  max-height: 50px;
}
.steps-card h3 {
  font-weight: 500;
  font-size: 18px;
  line-height: 1.2;
  text-align: center;
  margin: 0 0 10px 0;
}
.steps-card p {
  text-align: center;
  color: #757aa4;
  margin: 0 auto;
  max-width: 340px;
}
.steps__arrow {
  display: block;
}
@media screen and (max-width: 1199px) {
  .steps__arrow {
    display: none;
  }
}

.about-product {
  padding: 70px 0;
}
@media screen and (max-width: 991px) {
  .about-product {
    padding: 30px 0;
  }
}
.about-product .container > h2 {
  text-align: center;
  margin: 0 0 40px 0;
}
.about-product-grid {
  display: grid;
  grid-template-columns: calc(50% - 12px) calc(50% - 12px);
  grid-gap: 0 24px;
}
@media screen and (max-width: 991px) {
  .about-product-grid {
    grid-template-columns: 100%;
    grid-gap: 24px 0;
  }
}
.about-product-content p {
  font-weight: 400;
  font-size: 16px;
  line-height: 162%;
  color: #6d768c;
  margin: 0 0 20px 0;
}
.about-product__image {
  display: block;
  width: 100%;
}
.about-product__bullets {
  margin: 48px 0 0 0;
  display: flex;
  align-items: center;
  gap: 12px 12px;
  flex-wrap: wrap;
}
@media screen and (max-width: 991px) {
  .about-product__bullets {
    flex-direction: column;
    align-items: start;
    margin: 24px 0 0 0;
  }
}
.about-product__bullets-item {
  display: flex;
  align-items: center;
  gap: 0 12px;
}
.about-product__bullets-item svg {
  display: block;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  fill: #33C1CC;
}
.about-product__bullets-item span {
  font-weight: 400;
  font-size: 14px;
  line-height: 162%;
  color: #6d768c;
}
.about-product-service {
  margin: 40px 0 0 0;
}
.about-product-service-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 35px 35px;
}
@media screen and (max-width: 1199px) {
  .about-product-service-grid {
    gap: 15px 15px;
  }
}
@media screen and (max-width: 991px) {
  .about-product-service-grid {
    grid-template-columns: 1fr;
  }
}
.about-product-service-card {
  padding: 45px 30% 45px 40px;
  border-radius: 6px;
  flex-direction: column;
  display: flex;
  background-repeat: no-repeat;
  background-position: calc(100% - 40px) 40px;
  background-size: 60px 60px;
}
.about-product-service-card--wide {
  background-repeat: no-repeat;
  background-position: bottom right;
  background-size: auto 90%;
}
.about-product-service-card:nth-child(1) {
  background-color: #1a80a8;
}
@media screen and (min-width: 992px) {
  .about-product-service-card:nth-child(1) {
    grid-column: span 3;
  }
}
.about-product-service-card:nth-child(2) {
  background-color: #0c669c;
}
@media screen and (min-width: 992px) {
  .about-product-service-card:nth-child(2) {
    grid-column: span 3;
  }
}
.about-product-service-card:nth-child(3) {
  background-color: #218cad;
}
@media screen and (min-width: 992px) {
  .about-product-service-card:nth-child(3) {
    grid-column: span 2;
  }
}
.about-product-service-card:nth-child(4) {
  background-color: #197299;
}
@media screen and (min-width: 992px) {
  .about-product-service-card:nth-child(4) {
    grid-column: span 2;
  }
}
.about-product-service-card:nth-child(5) {
  background-color: #31a9ba;
}
@media screen and (min-width: 992px) {
  .about-product-service-card:nth-child(5) {
    grid-column: span 2;
  }
}
.about-product-service-card__title {
  font-weight: 600;
  font-size: 20px;
  line-height: 120%;
  margin: 0 0 20px 0;
  color: #fff;
}
.about-product-service-card__description {
  margin: 0 0 auto 0;
}
.about-product-service-card__description > *:first-child {
  margin-top: 0;
}
.about-product-service-card__description > *:last-child {
  margin-bottom: 0;
}
.about-product-service-card__description p {
  font-weight: 400;
  font-size: 14px;
  line-height: 171%;
  color: #fff;
}
.about-product-gallery {
  z-index: 1;
  position: relative;
}
.about-product-gallery .swiper-slide {
  border-radius: 10px;
  overflow: hidden;
}
.about-product-gallery-outer {
  position: relative;
  z-index: 1;
}
.about-product-gallery-outer:before {
  content: "";
  display: block;
  width: 200px;
  height: 200px;
  position: absolute;
  top: -15px;
  left: -15px;
  border-radius: 12px;
  background: #d9f4f6;
  z-index: 0;
}
.about-product-gallery-outer:after {
  content: "";
  display: block;
  width: 200px;
  height: 200px;
  position: absolute;
  bottom: -15px;
  right: -15px;
  border-radius: 12px;
  background: #d9f4f6;
  z-index: 0;
}
.about-product-gallery__arrow {
  display: flex;
  width: 50px;
  height: 50px;
  background: #fff;
  box-shadow: 0 2px 10px 0 rgba(78, 127, 222, 0.2);
  color: #39b6c0;
  position: absolute;
  bottom: 16px;
  transition: 0.1s;
  z-index: 1;
  border-radius: 50%;
  cursor: pointer;
}
.about-product-gallery__arrow:not(.swiper-button-disabled):hover {
  color: #fff;
  background: #39b6c0;
}
.about-product-gallery__arrow.swiper-button-disabled {
  opacity: 0.5;
  cursor: unset;
}
.about-product-gallery__arrow svg {
  display: block;
  width: 20px;
  height: 10px;
  fill: currentColor;
  margin: auto;
}
.about-product-gallery__arrow--prev {
  right: 81px;
}
.about-product-gallery__arrow--next {
  right: 16px;
}
.about-product-gallery__item {
  display: block;
}
.about-product-gallery__item img {
  display: block;
  width: 100%;
  border: 1px solid #fff;
}

.spoiler {
  background: linear-gradient(272deg, #deedf6 0%, #f9fbff 100%);
  padding: 70px 0;
}
@media screen and (max-width: 991px) {
  .spoiler {
    padding: 30px 0;
  }
}
.spoiler .container > h2 {
  text-align: center;
  margin: 0 0 40px 0;
}
.spoiler-grid {
  display: grid;
  grid-template-columns: 1fr 580px;
  grid-gap: 0 48px;
}
@media screen and (max-width: 991px) {
  .spoiler-grid {
    grid-template-columns: 1fr;
    grid-gap: 24px 0;
  }
}
.spoiler-card + .spoiler-card {
  margin-top: 36px;
}
.spoiler-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0 24px;
  cursor: pointer;
}
.spoiler-card__header h3 {
  display: block;
  font-weight: 500;
  font-size: 18px;
  line-height: 122%;
  color: #263238;
  margin: 0;
}
.spoiler-card__header svg {
  display: block;
  width: 16px;
  height: 8px;
  fill: #33c1cc;
  transition: 0.1s;
}
.spoiler-card.active .spoiler-card__header svg {
  transform: rotateZ(180deg);
}
.spoiler-card__content {
  padding: 12px 0 0 0;
}
.spoiler-card__content > *:first-child {
  margin-top: 0;
}
.spoiler-card__content > *:last-child {
  margin-bottom: 0;
}
.spoiler-card__content p {
  font-weight: 400;
  font-size: 16px;
  line-height: 162%;
  color: #6d768c;
}
.spoiler-card__content a:not([class]) {
  color: #39b6c0;
  text-decoration: underline;
}
.spoiler-card__content a:not([class]):hover {
  text-decoration: none;
}
.spoiler-feedback {
  box-shadow: 0 2px 10px 0 rgba(78, 127, 222, 0.2);
  background: linear-gradient(90deg, #66abd0 0%, #80cfd7 100%);
  border-radius: 20px;
  padding: 50px 50px;
  position: relative;
}
@media screen and (max-width: 991px) {
  .spoiler-feedback {
    padding: 30px 30px;
  }
}
.spoiler-feedback:before {
  content: "";
  display: block;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  position: absolute;
  top: 10px;
  left: 10px;
  box-shadow: 0 2px 10px 0 rgba(78, 127, 222, 0.2);
  background: #fff;
  border-radius: 15px;
}
.spoiler-feedback > * {
  position: relative;
}
.spoiler-feedback .form-group + .form-group {
  margin-top: 20px;
}
.spoiler-feedback .button {
  margin: 20px auto 0 auto;
}
.spoiler-feedback .politic {
  margin: 20px 0 0 0;
  text-align: center;
}
.spoiler-feedback__title {
  font-weight: 500;
  font-size: 18px;
  line-height: 133%;
  color: #1b1d32;
  margin: 0 0 12px 0;
}
.spoiler-feedback__subtitle {
  display: flex;
  align-items: center;
  gap: 0 12px;
  margin: 0 0 24px 0;
}
.spoiler-feedback__subtitle svg {
  display: block;
  width: 52px;
  height: 54px;
  flex: 0 0 52px;
}
.spoiler-feedback__subtitle span {
  display: block;
  font-weight: 400;
  font-size: 15px;
  line-height: 133%;
  color: #1b1d32;
}

.lab-review {
  background: #f1f8ff;
  padding: 70px 0;
  overflow: hidden;
}
@media screen and (max-width: 991px) {
  .lab-review {
    padding: 30px 0;
  }
}
.lab-review .container > h2 {
  text-align: center;
  margin: 0 0 20px 0;
}
.lab-review .container > p {
  font-weight: 400;
  font-size: 16px;
  line-height: 162%;
  text-align: center;
  color: #757aa4;
  margin: 0 0 40px 0;
}
.lab-review-carousel {
  overflow: hidden;
  padding: 30px;
  margin: -30px;
}
.lab-review-carousel-outer {
  position: relative;
}
.lab-review-carousel__arrow {
  display: flex;
  width: 50px;
  height: 50px;
  background: #fff;
  box-shadow: 0 2px 10px 0 rgba(78, 127, 222, 0.2);
  color: #39b6c0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.1s;
  z-index: 1;
  border-radius: 50%;
  cursor: pointer;
}
.lab-review-carousel__arrow:not(.swiper-button-disabled):hover {
  color: #fff;
  background: #39b6c0;
}
.lab-review-carousel__arrow.swiper-button-disabled {
  opacity: 0.5;
  cursor: unset;
}
.lab-review-carousel__arrow svg {
  display: block;
  width: 20px;
  height: 10px;
  fill: currentColor;
  margin: auto;
}
.lab-review-carousel__arrow--prev {
  left: -65px;
}
@media screen and (max-width: 1500px) {
  .lab-review-carousel__arrow--prev {
    left: 0;
  }
}
.lab-review-carousel__arrow--next {
  right: -65px;
}
@media screen and (max-width: 1500px) {
  .lab-review-carousel__arrow--next {
    right: 0;
  }
}
.lab-review-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-gap: 0 24px;
}
.lab-review__card {
  display: block;
  border: 1px solid var(--white);
  border-radius: 10px;
  box-shadow: 0 2px 20px 0 rgba(78, 127, 222, 0.2);
  background: #fff;
  padding: 24px 24px;
}
.lab-review__card img {
  display: block;
  width: 100%;
}

.prices {
  padding: 70px 0;
}
@media screen and (max-width: 991px) {
  .prices {
    padding: 30px 0;
  }
}
.prices .container > h2 {
  text-align: center;
  margin: 0 0 20px 0;
}
.prices .container > p {
  font-weight: 400;
  font-size: 16px;
  line-height: 162%;
  text-align: center;
  color: #757aa4;
  margin: 0 0 40px 0;
}
.prices-card {
  box-shadow: 0 10px 26px 0 rgba(165, 175, 197, 0.24);
  background: #fff;
  border-radius: 0 0 20px 20px;
}
.prices-card + .prices-card {
  margin-top: 24px;
}
.prices-card__header {
  display: flex;
  align-items: center;
  gap: 0 12px;
  justify-content: space-between;
  border-top: 1px dashed #a5afc5;
  border-bottom: 1px dashed #a5afc5;
  padding: 20px 72px;
}
@media screen and (max-width: 991px) {
  .prices-card__header {
    padding: 20px 20px;
  }
}
@media screen and (max-width: 767px) {
  .prices-card__header {
    flex-direction: column;
    align-items: start;
    gap: 12px 0;
  }
}
.prices-card__header-title {
  font-weight: 500;
  font-size: 18px;
  line-height: 200%;
  color: #1b1d32;
}
@media screen and (max-width: 767px) {
  .prices-card__header-title {
    font-size: 16px;
  }
}
.prices-card__header-value {
  font-weight: 500;
  font-size: 24px;
  line-height: 150%;
  color: #1b1d32;
}
@media screen and (max-width: 767px) {
  .prices-card__header-value {
    font-size: 18px;
  }
}
.prices-card__description {
  padding: 12px 72px;
}
@media screen and (max-width: 991px) {
  .prices-card__description {
    padding: 12px 20px;
  }
}
.prices-card__description > *:first-child {
  margin-top: 0;
}
.prices-card__description > *:last-child {
  margin-bottom: 0;
}
.prices-card__description p {
  font-weight: 400;
  font-size: 16px;
  line-height: 162%;
  color: #6d768c;
}
@media screen and (max-width: 767px) {
  .prices-card__description p {
    font-size: 14px;
  }
}

.advantages {
  padding: 70px 0;
}
@media screen and (max-width: 991px) {
  .advantages {
    padding: 30px 0;
  }
}
.advantages .container > h2 {
  text-align: center;
  margin: 0 0 20px 0;
}
.advantages .container > p {
  font-weight: 400;
  font-size: 16px;
  line-height: 162%;
  text-align: center;
  color: #757aa4;
  margin: 0 0 40px 0;
}
.advantages-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  grid-gap: 24px 24px;
}
@media screen and (max-width: 991px) {
  .advantages-grid {
    grid-template-columns: 1fr;
  }
}
.advantages__image {
  display: block;
  width: 100%;
  box-shadow: 0 2px 10px 0 rgba(51, 193, 204, 0.368627451);
  border-radius: 50%;
}
.advantages__card {
  position: relative;
  padding-left: 64px;
}
.advantages__card + .advantages__card {
  margin-top: 50px;
}
.advantages__card:before {
  content: "";
  display: block;
  width: 54px;
  height: 54px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-image: url(../img/advantages/plus.png);
  background-position: center;
  background-size: cover;
}
.advantages__card-title {
  font-weight: 500;
  font-size: 16px;
  line-height: 125%;
  color: #2a2651;
  margin: 0 0 10px 0;
}
.advantages__card-description {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 15px;
  line-height: 133%;
  color: #757aa4;
}
@media screen and (min-width: 992px) {
  .advantages-left .advantages__card {
    text-align: right;
    padding-right: 64px;
    padding-left: 0;
  }
  .advantages-left .advantages__card:before {
    right: 0;
    left: unset;
  }
}/*# sourceMappingURL=main.css.map */