*,
::after,
::before {
  font-family: Nunito;
  margin: 0;
  padding: 0
}

html {
  overflow-x: hidden
}

body {
  overflow: hidden
}

.container {
  max-width: 1146px;
  margin: 0 auto;
  position: relative
}

.container--no-relative {
  max-width: 1146px;
  margin: 0 auto
}

.popup-menu {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 24px rgba(27, 0, 0, .2);
  position: absolute;
  right: 0;
  top: 0;
  transform-origin: 100% 0;
  transition: transform .3s ease-in-out;
  z-index: 100
}

.popup-menu.hidden {
  transform: scale(0, 0)
}

.popup-menu ul {
  display: block !important
}

.popup-menu ul li {
  text-align: right;
  padding: 10px 25px !important;
  border-bottom: 1px solid #e9eaeb
}

.popup-menu ul li:last-child {
  border-bottom: 0
}

.popup-menu ul li a {
  padding: 0
}

.floating-social {
  position: fixed;
  right: 60px;
  bottom: 50px;
  z-index: 500
}

.floating-social #to-top svg {
  width: 17px;
  height: 25px
}

.floating-social__item {
  cursor: pointer;
  background-color: #fff;
  box-shadow: 0 5px 24px rgba(27, 0, 0, .2);
  padding: 12px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 10px 0
}

.floating-social__item img,
.floating-social__item svg {
  width: 25px;
  height: 25px
}

.floating-social__item:nth-child(2) {
  background: #25d366
}

.floating-social__item:nth-child(3) {
  background: #ff49a1
}

.floating-social__item:nth-child(4) {
  background: #08c
}

.floating-social__item:nth-child(5) {
  background: #07f
}

li,
ul {
  list-style: none
}

a {
  text-decoration: none;
  cursor: pointer
}

.header__burger {
  display: none;
  width: 40px;
  height: 40px;
  background-color: #ff284c;
  border-radius: 50%;
  position: relative;
  z-index: 1005;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center
}

.header__burger.active .line:first-child {
  transform: rotate(45deg);
  position: relative;
  top: 4px
}

.header__burger.active .line:last-child {
  transform: rotate(-45deg);
  position: relative;
  bottom: 4px
}

.header__burger .line {
  width: 25px;
  height: 4px;
  background-color: #fff;
  margin: 2px 0;
  transition: transform .15s linear
}

.alert {
  display: none;
  align-items: flex-start;
  font-weight: 400;
  font-size: 12px;
  line-height: 17px;
  color: #7e8189
}

.alert__red-text {
  font-weight: 600;
  color: #ff284c
}

.alert svg {
  width: 20px;
  height: 20px;
  margin-right: 7px;
  position: relative;
  top: -5px
}

.switcher {
  display: flex;
  align-items: center;
  font-weight: 400;
  font-size: 12px;
  color: #7e8189
}

.checkbox {
  position: absolute;
  z-index: 1;
  opacity: 0;
  cursor: pointer
}

.checkbox+label {
  display: inline-flex;
  align-items: center;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  cursor: pointer
}

.checkbox+label::before {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  flex-shrink: 0;
  flex-grow: 0;
  border: 1px solid #ff284c;
  border-radius: .25em;
  margin-right: .5em;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 50% 50%;
  cursor: pointer;
  transition: background-color .15s linear, border-color .15s linear
}

.checkbox:checked+label::before {
  border-color: #ff284c;
  background-color: #ff284c;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3e%3c/svg%3e")
}

.checkbox:disabled+label::before {
  border-color: #ccc
}

.checkbox-ios {
  display: inline-block;
  height: 28px;
  line-height: 28px;
  margin-right: 10px;
  position: relative;
  vertical-align: middle;
  font-size: 14px;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none
}

.checkbox-ios .checkbox-ios-switch {
  position: relative;
  display: inline-block;
  box-sizing: border-box;
  width: 45px;
  height: 28px;
  border-radius: 30px;
  vertical-align: top;
  background: #e9eaeb;
  transition: .2s
}

.checkbox-ios .checkbox-ios-switch:before {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  display: inline-block;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #7e8189;
  transition: .15s
}

.checkbox-ios input[type=checkbox] {
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  z-index: -1;
  opacity: 0
}

.checkbox-ios input[type=checkbox]:not(:disabled):active+.checkbox-ios-switch:before {
  box-shadow: inset 0 0 2px rgba(0, 0, 0, .3)
}

.checkbox-ios input[type=checkbox]:checked+.checkbox-ios-switch {
  background: #e9eaeb
}

.checkbox-ios input[type=checkbox]:checked+.checkbox-ios-switch:before {
  background-color: #ff284c;
  transform: translateX(78%)
}

.checkbox-ios input[type=checkbox]:not(:disabled)+.checkbox-ios-switch {
  cursor: pointer;
  border-color: rgba(0, 0, 0, .3)
}

.checkbox-ios input[type=checkbox]:disabled+.checkbox-ios-switch {
  filter: grayscale(70%);
  border-color: rgba(0, 0, 0, .1)
}

.checkbox-ios input[type=checkbox]:disabled+.checkbox-ios-switch:before {
  background: #eee
}

.checkbox-ios.focused .checkbox-ios-switch:before {
  box-shadow: inset 0 0 4px #ff5623
}

input {
  box-sizing: border-box;
  /* padding: 8px 14px; */
  background-color: #e9eaeb;
  border: 0;
  border-radius: 8px;
  color: #7e8189
}

input::-moz-placeholder {
  color: #7e8189
}

input::placeholder {
  color: #7e8189
}

input:active,
input:focus {
  outline: 0;
  border: 0
}

h1 {
  font-family: Comfortaa;
  font-weight: 700;
  color: #272b38;
  font-size: 40px
}

h1.white {
  color: #fff
}

.h2-title {
  font-family: Comfortaa;
  font-weight: 700;
  color: #272b38;
  font-size: 30px
}

.h2-title--center {
  font-family: Comfortaa;
  font-weight: 700;
  color: #272b38;
  font-size: 30px;
  text-align: center
}

.h2-title--right {
  font-family: Comfortaa;
  font-weight: 700;
  color: #272b38;
  font-size: 30px;
  text-align: right
}

.h3-title {
  font-weight: 600;
  font-size: 20px;
  color: #272b38
}

.h3-title--white {
  font-weight: 600;
  font-size: 18px;
  color: #fff
}

.description {
  font-family: Nunito;
  font-weight: 400;
  font-size: 20px;
  line-height: 150%;
  color: #272b38
}

.description--white {
  font-family: Nunito;
  font-weight: 400;
  font-size: 20px;
  line-height: 150%;
  color: #fff
}

.btn-secondary {
  padding: 14px 28px;
  border: 2px solid #272b38;
  color: #272b38;
  background-color: transparent;
  font-weight: 600;
  font-size: 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color .15s linear, color .15s linear, border-color .15s linear
}

.btn-secondary:hover {
  background-color: #272b38;
  color: #fff
}

.btn-secondary:active,
.btn-secondary:focus {
  color: #fff;
  background-color: #3e4353;
  border-color: #3e4353
}

.btn-services-primary {
  padding: 10px 20px;
  color: #fff;
  background: #467edb;
  border-radius: 8px;
  border: 0;
  cursor: pointer;
  font-weight: 700;
  font-size: 16px;
  transition: background-color .15s linear
}

.btn-services-primary:hover {
  background-color: #3d68ac
}

.btn-services-primary:active,
.btn-services-primary:focus {
  background-color: #6498eb
}

.btn-services-secondary {
  padding: 10px 20px;
  color: #fff;
  background: #55bc44;
  border-radius: 8px;
  border: 0;
  cursor: pointer;
  font-weight: 700;
  font-size: 16px;
  transition: background-color .15s linear
}

.btn-services-secondary:hover {
  background-color: #519e45
}

.btn-services-secondary:active,
.btn-services-secondary:focus {
  background-color: #83d676
}

.btn-primary {
  padding: 14px 28px;
  color: #fff;
  background: #ff284c;
  border-radius: 8px;
  border: 0;
  cursor: pointer;
  font-weight: 700;
  font-size: 16px;
  transition: background-color .15s linear
}

.btn-primary:hover {
  background-color: #ff627c
}

.btn-primary:active,
.btn-primary:focus {
  background-color: #d10628
}

.link {
  text-decoration: none;
  transition: color .15s linear;
  color: #4a8fb6;
  font-size: 16px
}

.link:hover {
  color: #467184
}

.link:active,
.link:focus {
  color: #86b2cb
}

.link--header {
  color: #272b38;
  text-decoration: none;
  transition: color .15s linear;
  font-size: 16px
}

.link--header:hover {
  color: #7d8293
}

.link--header:active,
.link--header:focus {
  color: #000
}

.link--drop-down {
  color: #272b38;
  text-decoration: none;
  transition: color .15s linear;
  font-size: 16px;
  display: flex;
  align-items: center;
  position: relative
}

.link--drop-down svg {
  transition: transform .25s linear;
  width: 15px;
  height: 7px;
  margin-left: 7px
}

.link--drop-down svg.rotate {
  transform: rotate(180deg)
}

.link--drop-down:hover {
  color: #7d8293
}

.link--drop-down:active,
.link--drop-down:focus {
  color: #000
}

.link--cats {
  color: #ff284c;
  text-decoration: none;
  transition: color .15s linear;
  font-size: 16px;
  display: flex;
  align-items: center;
  position: relative;
  justify-content: flex-end
}

.link--cats svg {
  width: 15px;
  height: 15px;
  margin-right: 7px
}

.link--cats:hover {
  color: #aa1c33
}

.link--cats:active,
.link--cats:focus {
  color: #f86880
}

.header {
  /* position: absolute; */
  width: 100%;
  top: 0;
  left: 0
}

.header.sticky {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 500;
  background-color: #fff;
  -webkit-animation: .45s showHeader;
  animation: .45s showHeader
}

.header.sticky .header__inner {
  padding: 2px 0
}

.header.sticky .header__logo svg {
  transform: scale(.7, .7)
}

.header__inner {
  padding: 15px 0;
  display: flex;
  align-items: center;
  justify-content: space-between
}

.header__logo svg {
  transition: transform .35s;
  transform-origin: left center;
  width: 220px;
  height: 70px
}

.header__nav {
  width: 100%;
  max-width: 600px;
  margin-right: -15px
}

.header__nav ul {
  display: flex;
  align-items: center;
  justify-content: space-between
}

.header__nav ul a {
  padding: 15px
}

.header__nav ul li:last-child .popup-menu {
  top: 80px
}

@-webkit-keyframes showHeader {
  from {
    transform: translateY(-105px)
  }

  to {
    transform: translateY(0)
  }
}

@keyframes showHeader {
  from {
    transform: translateY(-105px)
  }

  to {
    transform: translateY(0)
  }
}

.main {
  height: 500px;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative
}

.main .swiper-pagination {
  display: flex;
  align-items: center;
  justify-content: center
}

.main .swiper-pagination-bullet {
  width: 50px;
  height: 3px;
  border-radius: 5px;
  background-color: #b7b7b7;
  opacity: 1;
  transition: transform .15s linear, background-color .15s linear
}

.main .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #fff;
  transform: scaleY(1.7)
}

.main__slider {
  width: 100%;
  height: 500px
}

.main__slider .container--no-relative {
  height: 100%
}

.main__info {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  align-items: center;
  height: 100%
}

.main__info h1 {
  margin-bottom: 10px
}

.main__info .btn-primary {
  margin-top: 30px
}

.main__image {
  width: 100%;
  height: 500px;
  background-size: cover !important;
  background-position: center !important
}

.main .arrow--left {
  position: absolute;
  z-index: 2;
  left: 0;
  top: 0;
  height: 100%;
  width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color .25s ease-in-out
}

.main .arrow--left svg {
  width: 20px;
  height: 35px
}

.main .arrow--left:hover {
  background: rgba(255, 255, 255, .2)
}

.main .arrow--right {
  position: absolute;
  z-index: 2;
  right: 0;
  top: 0;
  transform: scaleX(-1);
  height: 100%;
  width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color .25s ease-in-out
}

.main .arrow--right svg {
  width: 20px;
  height: 35px
}

.main .arrow--right:hover {
  background: rgba(255, 255, 255, .2)
}

.main__blackout {
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: rgba(39, 43, 56, .5);
  left: 0;
  top: 0
}

.services {
  padding: 90px 0
}

.services .h2-title--center {
  margin-bottom: 30px
}

.services__wrapper {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-gap: 30px
}

.services__item {
  background-color: #e9eaeb;
  border-radius: 10px;
  grid-column: span 2;
  display: flex;
  flex-direction: column;
}

.services__info .services__flex {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-grow: 1;
  flex-direction: column;
}

.services__info .services__flex .services__buttons {
  display: flex;
  gap: 5px;
  margin-top: auto;
  margin-left: auto;
}


.services__item .h3-title {
  margin-bottom: 10px
}

.services__item-img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  max-width: 362px;
  min-height: 200px;
  max-height: 200px;
  background-size: cover;
  background-position: center
}

.services__item:nth-child(1) {
  background-color: #e9eaeb;
  border-radius: 10px;
  grid-column: span 3
}

.services__item:nth-child(1) .h3-title {
  margin-bottom: 10px
}

.services__item:nth-child(1) .services__item-img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  max-width: 558px;
  min-height: 245px;
  max-height: 245px;
  background-size: cover;
  background-position: center
}

.services__item:nth-child(2) {
  background-color: #e9eaeb;
  border-radius: 10px;
  grid-column: span 3
}

.services__item:nth-child(2) .h3-title {
  margin-bottom: 10px
}

.services__item:nth-child(2) .services__item-img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  max-width: 558px;
  min-height: 245px;
  max-height: 245px;
  background-size: cover;
  background-position: center
}

.services__info {
  padding: 25px 25px 30px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.services__info ul li {
  font-weight: 400;
  font-size: 14px;
  color: #7e8189;
  margin: 2px 0
}

/* .services__info .btn-services-secondary {
  margin-left: 5px
} */

.stages {
  padding-bottom: 90px
}

.stages .h2-title {
  margin-bottom: 12px
}

.stages__inner {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-column-gap: 30px
}

@media screen and (max-width:540px) {
  .stages__inner {
    display: block;
    grid-template-columns: repeat(12, 1fr);
    grid-column-gap: 30px
  }
}

.stages__info {
  grid-column: span 5
}

.stages__info p {
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  color: #7e8189;
  margin-bottom: 30px
}

.stages__items {
  grid-column: span 7
}

.stages__item {
  display: flex;
  align-items: center;
  background-color: #e9eaeb;
  margin-bottom: 30px;
  border-radius: 10px
}

.stages__item .stages__info {
  margin-left: 40px
}

.stages__item .stages__info p {
  margin-bottom: 0
}

.stages__item .stages__icon,
.stages__item .stages__icon--center-icon {
  transition: background-color .25s
}

.stages__item.active .stages__icon,
.stages__item.active .stages__icon--center-icon {
  background-color: #ff284c
}

.stages__item:last-child {
  margin-bottom: 0
}

.stages__item p {
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: #7e8189
}

.stages__icon,
.stages__icon--center-icon {
  width: 120px;
  height: 120px;
  background-color: #272b38;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px
}

.stages__icon--center-icon svg {
  width: 65px;
  height: 65px;
  margin: 7px 0 0 7px
}

.stages__icon svg {
  width: 65px;
  height: 65px;
  margin: 0
}

.stages__arrow-down {
  width: 68px;
  height: 68px;
  border: 2px solid #272b38;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer
}

.stages__arrow-down:hover svg {
  transform: translateY(7px)
}

.stages__arrow-down svg {
  height: 18px;
  transition: transform .15s ease-in
}

.benefits {
  padding-bottom: 90px
}

.benefits .h2-title--center {
  margin-bottom: 60px
}

.benefits__wrapper {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(2, 2fr);
  grid-column-gap: 30px
}

.benefits__item {
  padding: 0 4px 10px;
  grid-column: span 2;
  grid-row: span 2;
  background-color: #e9eaeb;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* justify-content: space-between; */
  border-radius: 10px
}

.benefits__item:hover .benefits__icon {
  transform: translateY(-12px);
  box-shadow: 0 10px 15px rgba(255, 40, 76, .35)
}

.benefits__item .h3-title {
  margin-bottom: 5px;
  font-size: 15px;
}

.benefits__icon {
  background-color: #ff284c;
  /* padding: 17px; */
  width: 79px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  margin-top: -20px;
  transition: transform .2s ease-in-out, box-shadow .25s
}

.benefits__icon svg {
  width: 32px;
  height: 32px
}

.benefits__info {
  text-align: center;
  word-wrap: break-word;
  margin-top: 25px
}

.benefits__info.hidden {
  max-height: 95px;
  overflow: hidden;
}

.benefits__info .h3-title,
.benefits__info p {
  word-break: break-word
}

.benefits__info p {
  font-size: 11px;

  color: #7E8189;
  font-family: Nunito Sans;

  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.about-us {
  padding-bottom: 150px
}

.about-us__inner {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-column-gap: 30px
}

.about-us .h2-title {
  grid-column: span 3
}

.about-us__info {
  grid-column: span 5
}

.about-us__info .h3-title {
  font-size: 20px;
  margin-bottom: 15px
}

.about-us__info .h3-title span {
  color: #ff284c
}

.about-us__info p {
  font-size: 16px;
  line-height: 150%;
  color: #7e8189;
  max-width: 400px
}

.photo-report {
  position: relative
}

.photo-report__inner {
  position: relative;
  height: 462px;
  min-height: 462px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-column-gap: 30px
}

.photo-report__flex {
  display: flex;
  justify-content: space-between;
  align-items: center
}

.photo-report__arrows {
  display: flex
}

.photo-report__nav {
  grid-area: row 1/span 5;
  padding: 0 30px 40px 0
}

.photo-report__nav .photo-report__slider-number {
  font-weight: 400;
  font-size: 14px;
  line-height: 19px;
  color: #fff
}

.photo-report__nav .photo-report__slider-number .swiper-pagination-current {
  font-weight: 600;
  font-size: 32px
}

.photo-report__nav .arrow--left {
  cursor: pointer;
  border: 2px solid #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color .15s linear
}

.photo-report__nav .arrow--left:hover {
  background-color: rgba(255, 255, 255, .15)
}

.photo-report__nav .arrow--left:hover svg {
  transform: translateX(-5px)
}

.photo-report__nav .arrow--left svg {
  transition: transform .15s linear;
  width: 15px
}

.photo-report__nav .arrow--right {
  cursor: pointer;
  border: 2px solid #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 15px;
  transition: background-color .15s linear
}

.photo-report__nav .arrow--right:hover {
  background-color: rgba(255, 255, 255, .15)
}

.photo-report__nav .arrow--right:hover svg {
  transform: translateX(5px) scaleX(-1)
}

.photo-report__nav .arrow--right svg {
  transition: transform .15s linear;
  width: 15px;
  transform: translateX(0) scaleX(-1)
}

.photo-report__nav-bg {
  position: absolute;
  z-index: -2;
  top: -60px;
  background-color: #272b38;
  height: 100%;
  width: 40%;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px
}

.photo-report__nav-bg-left-part {
  background-color: #272b38;
  height: 100%;
  width: 35%;
  position: absolute;
  z-index: -2;
  left: 0;
  top: -60px
}

.photo-report__slider {
  height: 264px;
  grid-column: span 9;
  overflow: hidden
}

.photo-report__slider-number {
  color: #fff;
  font-size: 24px
}

.photo-report__slider .swiper-slide .photo-report__photo {
  width: 264px;
  height: 264px;
  max-width: 264px;
  max-height: 264px;
  background-size: cover;
  background-position: center;
  background-color: red;
  border-radius: 10px
}

.photo-report__info {
  grid-column: span 3
}

.photo-report__info p {
  font-size: 16px;
  line-height: 150%;
  text-align: right;
  color: #7e8189;
  margin-top: 10px
}

.photo-report__info .btn-secondary {
  display: block;
  margin-left: auto;
  margin-top: 35px
}

.prices {
  padding: 90px 0
}

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

.prices .h2-title {
  margin-bottom: 30px
}

.prices__inner {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-gap: 30px
}

.prices__left-bar {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-gap: 30px;
  grid-column: span 9
}

.prices__table {
  grid-column: span 12;
  display: flex;
  background: #fff;
  box-shadow: 0 5px 24px rgba(27, 0, 0, .2);
  border-radius: 10px
}

.prices__table-price {
  position: relative
}

.prices__table-row {
  width: 25%;
  border-right: 1px solid #d9d9d9;
  transition: width .3s, transform .3s
}

.prices__table-row.hidden {
  transform: scaleX(0);
  width: 90px !important
}

.prices__table-row.hidden .scores {
  transform: scale(0)
}

.prices__table-row:last-child {
  border-right: 0
}

.prices__table-row .h3-title {
  text-align: center;
  padding: 15px 0;
  width: 100%;
  border-bottom: 1px solid #d9d9d9;
  font-size: 16px
}

.prices__table-content {
  padding: 10px;
  border-bottom: 1px solid #d9d9d9;
  min-height: 35px;
  display: flex;
  align-items: center;
  justify-content: center
}

.prices__table-content p {
  font-weight: 400;
  font-size: 14px;
  text-align: center;
  color: #7e8189
}

.prices__table-content .scores {
  font-weight: 600;
  font-size: 14px;
  text-align: center;
  color: #ff284c;
  transition: transform .5s
}

.prices__table-content .checkbox {
  width: 45px;
  height: 45px
}

.prices__table-row--big {
  width: 25%;
  border-right: 1px solid #d9d9d9
}

.prices__table-row--big:last-child {
  border-right: 0
}

.prices__table-row--big .h3-title {
  text-align: center;
  padding: 15px 0;
  width: 100%;
  font-size: 16px;
  border-bottom: 1px solid #d9d9d9
}

.prices__table-counter {
  display: flex;
  align-items: center
}

.prices__table-counter input {
  max-width: 60px
}

.prices__table-counter .minus {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  width: 15px;
  height: 15px;
  margin: 0 10px
}

.prices__table-counter .minus .line {
  width: 100%;
  height: 2px;
  background-color: #272b38
}

.prices__table-counter .plus {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  width: 15px;
  height: 15px;
  margin: 0 10px;
  position: relative
}

.prices__table-counter .plus .line {
  width: 100%;
  height: 2px;
  background-color: #272b38
}

.prices__table-counter .plus .line:last-child {
  transform: rotate(0);
  width: 2px;
  height: 100%;
  position: absolute
}

.prices__result {
  grid-column: span 12;
  display: flex;
  justify-content: flex-end;
  align-items: center
}

.prices__result p {
  font-weight: 400;
  font-size: 12px;
  color: #7e8189
}

.prices__result p:last-child {
  margin-left: 30px
}

.prices__result p span {
  font-weight: 600;
  font-size: 24px;
  color: #272b38
}

.prices__info {
  grid-column: span 12;
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  grid-gap: 30px
}

.prices__info p {
  grid-column: span 5;
  font-weight: 400;
  font-size: 14px;
  line-height: 19px;
  color: #7e8189
}

.prices__info-image {
  grid-column: span 4;
  background: #e9eaeb;
  border-radius: 10px;
  min-height: 362px
}

.prices__right-bar {
  grid-column: span 3;
  display: flex;
  flex-direction: column;
  align-items: center
}

.prices__change-mode .checkbox-ios input[type=checkbox]+.checkbox-ios-switch:before {
  background-color: #ff284c
}

.prices__change-mode .switcher {
  align-items: center;
  justify-content: center
}

.prices__change-mode .switcher label {
  display: flex;
  align-items: center
}

.prices__change-mode .switcher label.active {
  color: #272b38;
  font-weight: 600
}

.prices__change-mode .switcher .checkbox-ios {
  margin: 0 15px
}

.prices__change-mode .switcher svg {
  width: 20px;
  height: 20px;
  margin-right: 10px
}

.prices__load-image {
  display: flex;
  flex-direction: column;
  background: #fff;
  box-shadow: 0 5px 24px rgba(27, 0, 0, .2);
  border-radius: 10px;
  padding: 17px 20px 25px;
  width: 90%
}

.prices__load-image .switcher {
  margin-bottom: 15px
}

.prices__load-image .h3-title {
  margin-bottom: 10px;
  font-size: 16px
}

.prices__load-image .scores-price {
  font-weight: 400;
  font-size: 12px;
  margin: 10px 0;
  text-align: center;
  color: #7e8189
}

.prices__load-image .your-scores {
  font-weight: 400;
  font-size: 14px;
  text-align: center;
  color: #ff284c
}

.prices__load-image input {
  width: 100%;
  margin: 5px 0
}

.prices__load-image .prices__result {
  justify-content: space-between;
  margin: 10px 0
}

.prices__load-image .prices__result p span {
  font-size: 14px !important
}

.prices__load-image .prices__count,
.prices__load-image .prices__result-text {
  font-weight: 400;
  font-size: 10px;
  line-height: 14px;
  color: #7e8189
}

.prices__load-image .prices__count span,
.prices__load-image .prices__result-text span {
  font-weight: 600;
  font-size: 14px;
  line-height: 19px;
  color: #272b38
}

.prices__load-image .btn-primary,
.prices__load-image .btn-secondary {
  margin-top: 10px;
  font-size: 12px;
  text-align: center;
  font-weight: 600;
  padding: 10px 0
}

.prices__load-image .btn-secondary {
  margin-top: 5px
}

.success-promo {
  color: #5dc55d !important;
  font-weight: 700;
  font-size: 12px;
  text-align: center;
  margin: 10px 0 0
}

.success-promo.hidden {
  display: none
}

.alert.hidden {
  display: flex !important
}

.resultPrice {
  position: relative
}

.resultPrice-old.hidden {
  display: none
}

.resultPrice-old {
  position: absolute;
  left: 0;
  top: -12px;
  font-size: 16px !important;
  color: #7e8189 !important
}

.resultPrice-old::after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 2px;
  background-color: #ff284c;
  top: 50%;
  transform: translateY(-50%)
}

.footer {
  padding: 40px 0;
  background-color: #272b38
}

.footer .header__logo {
  margin-bottom: 25px
}

.footer__inner {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-column-gap: 30px;
  grid-row-gap: 30px
}

.footer__social ul li {
  color: #fff;
  display: flex;
  align-items: center;
  font-size: 14px;
  margin: 10px 0
}

.footer__social ul li svg {
  margin-right: 10px;
  width: 20px;
  height: 20px
}

.footer__number {
  display: flex;
  flex-direction: column;
  justify-content: flex-end
}

.footer__number p {
  font-weight: 700;
  font-size: 24px;
  color: #fff;
  text-align: right
}

.footer__call-link {
  font-weight: 400;
  font-size: 14px;
  color: #fff;
  text-decoration: none;
  text-align: right;
  margin-left: auto;
  position: relative;
  transition: color .15s linear
}

.footer__call-link:hover {
  color: #7e8189
}

.footer__call-link:hover::after {
  border-color: #7e8189
}

.footer__call-link::after {
  content: "";
  position: absolute;
  width: 100%;
  border-top: 2px dashed #fff;
  display: block;
  transition: border-color .15s linear
}

.footer .row {
  grid-column: span 3
}

.footer .row:last-child {
  grid-column: span 4
}

.footer .row.footernav {
  grid-column: span 2
}

.footer .row.mainrow {
  grid-column: span 4
}

.footer .row ul {
  margin-top: 20px
}

.footer .row ul li {
  line-height: 110%;
  margin: 8px 0
}

.footer .row ul li a {
  font-size: 14px;
  color: #7e8189;
  text-decoration: none;
  transition: color .15s linear
}

.footer .row ul li a:hover {
  color: #fff
}

.footer .row .social {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-top: 40px
}

.footer .row .social img,
.footer .row .social svg {
  cursor: pointer;
  width: 24px;
  height: 24px;
  margin-left: 13px
}

@font-face {
  font-family: Nunito;
  src: url(../fonts/Nunito-Regular.woff2) format("woff2"), url(../Nunito-Regular.woff) format("woff");
  font-weight: 400;
  font-display: swap;
  font-style: normal
}

@font-face {
  font-family: Nunito;
  src: url(../fonts/Nunito-Bold.woff2) format("woff2"), url(../Nunito-Bold.woff) format("woff");
  font-weight: 700;
  font-display: swap;
  font-style: normal
}

@font-face {
  font-family: Nunito;
  src: url(../fonts/Nunito-SemiBold.woff2) format("woff2"), url(../Nunito-SemiBold.woff) format("woff");
  font-weight: 600;
  font-display: swap;
  font-style: normal
}

@font-face {
  font-family: Comfortaa;
  src: url(../fonts/Comfortaa-Bold.woff2) format("woff2"), url(../Comfortaa-Bold.woff) format("woff");
  font-weight: 700;
  font-display: swap;
  font-style: normal
}

.main.element-animation,
.prices__load-image.element-animation,
.prices__table.element-animation {
  transform: scale(.9, .9) translateY(10px);
  transform-origin: center bottom;
  opacity: .5;
  transition: transform 1.95s, opacity .45s linear
}

.main.element-animation.element-show,
.prices__load-image.element-animation.element-show,
.prices__table.element-animation.element-show {
  opacity: 1;
  transform: scale(1, 1) translateY(0)
}

.prices__header.element-animation {
  transform: scale(.9, .9) translateY(10px);
  transform-origin: center bottom;
  opacity: .5;
  transition: transform .75s, opacity .25s linear
}

.prices__header.element-animation.element-show {
  opacity: 1;
  transform: scale(1, 1) translateY(0)
}

.services__item--big.element-animation,
.services__item.element-animation {
  transform: scale(.8, .8) translateY(60px);
  transform-origin: center bottom;
  opacity: .6;
  transition: transform .65s, opacity .55s linear
}

.services__item--big.element-animation.element-show,
.services__item.element-animation.element-show {
  opacity: 1;
  transform: scale(1, 1) translateY(0)
}

.h2-title--center.element-animation {
  transform: scale(.7, .7) translateY(30px);
  transform-origin: center bottom;
  opacity: .5;
  transition: transform .55s, opacity .45s linear
}

.h2-title--center.element-animation.element-show {
  opacity: 1;
  transform: scale(1, 1) translateY(0)
}

.stages__info.element-animation .h2-title {
  transform: scale(.7, .7) translateX(30px);
  transform-origin: left center;
  opacity: .5;
  transition: transform .55s, opacity .45s linear
}

.stages__info.element-animation p {
  transform: scale(.7, .7) translateX(30px);
  transform-origin: left center;
  opacity: .5;
  transition: transform .85s, opacity .45s linear
}

.stages__info.element-animation .stages__arrow-down {
  transform: scale(.7, .7) translateX(30px);
  transform-origin: left center;
  opacity: .5;
  transition: transform 1.1s, opacity .45s linear
}

.stages__info.element-animation.element-show .h2-title,
.stages__info.element-animation.element-show .stages__arrow-down,
.stages__info.element-animation.element-show p {
  opacity: 1;
  transform: scale(1, 1) translateY(0)
}

.stages__items.element-animation .stages__item {
  transform: scale(.8, .8) translateY(60px);
  transform-origin: center bottom;
  opacity: .6;
  transition: transform .65s, opacity .55s linear
}

.stages__items.element-animation .stages__item:nth-child(2) {
  transition: transform .85s, opacity .55s linear
}

.stages__items.element-animation .stages__item:nth-child(3) {
  transition: transform 1.1s, opacity .55s linear
}

.stages__items.element-animation .stages__item:nth-child(4) {
  transition: transform 1.35s, opacity .55s linear;
}

.stages__items.element-animation .stages__item:nth-child(5) {
  transition: transform 1.6s, opacity .55s linear;
}

.stages__items.element-animation .stages__item:nth-child(6) {
  transition: transform 1.85s, opacity .55s linear;
}

.stages__items.element-animation .stages__item:nth-child(7) {
  transition: transform 2.1s, opacity .55s linear;
}

.stages__items.element-animation .stages__item:nth-child(8) {
  transition: transform 2.35s, opacity .55s linear;
}

.stages__items.element-animation .stages__item:nth-child(9) {
  transition: transform 2.6s, opacity .55s linear;
}

.stages__items.element-animation .stages__item:nth-child(10) {
  transition: transform 2.85s, opacity .55s linear;
}

.stages__items.element-animation.element-show .stages__item {
  opacity: 1;
  transform: scale(1, 1) translateY(0)
}

.benefits__item.element-animation {
  transform: scale(.8, .8) translateY(60px);
  transform-origin: center bottom;
  opacity: .6;
  transition: transform .65s, opacity .55s linear
}

.benefits__item.element-animation:nth-child(2) {
  transition: transform .85s, opacity .55s linear
}

.benefits__item.element-animation:nth-child(3) {
  transition: transform 1.1s, opacity .55s linear
}

.benefits__item.element-animation:nth-child(4) {
  transition: transform 1.3s, opacity .55s linear
}

.benefits__item.element-animation:nth-child(5) {
  transition: transform 1.5s, opacity .55s linear
}

.benefits__item.element-animation:nth-child(6) {
  transition: transform 1.7s, opacity .55s linear
}

.benefits__item.element-show {
  opacity: 1;
  transform: scale(1, 1) translateY(0)
}

.about-us__inner.element-animation .h2-title {
  transform: scale(.7, .7) translateX(30px);
  transform-origin: left center;
  opacity: .5;
  transition: transform .55s, opacity .45s linear
}

.about-us__inner.element-animation .h3-title {
  transform: scale(.7, .7) translateX(30px);
  transform-origin: left center;
  opacity: .5;
  transition: transform .75s, opacity .45s linear
}

.about-us__inner.element-animation p {
  transform: scale(.7, .7) translateX(30px);
  transform-origin: left center;
  opacity: .5;
  transition: transform .95s, opacity .45s linear
}

.about-us__inner.element-animation.element-show .h2-title,
.about-us__inner.element-animation.element-show .h3-title,
.about-us__inner.element-animation.element-show p {
  opacity: 1;
  transform: scale(1, 1) translateY(0)
}

.photo-report__inner.element-animation .swiper-slide {
  transform: scale(.7, .7) translateX(30px);
  transform-origin: bottom center;
  opacity: .5;
  transition: transform .55s, opacity .45s linear
}

.photo-report__inner.element-animation .photo-report__slider-number {
  transform: scale(.7, .7) translateX(30px);
  transform-origin: left center;
  opacity: .5;
  transition: transform .75s, opacity .45s linear
}

.photo-report__inner.element-animation .arrow--left {
  transform: scale(.7, .7) translateX(30px);
  transform-origin: left center;
  opacity: .5;
  transition: transform .95s, opacity .45s linear
}

.photo-report__inner.element-animation .arrow--right {
  transform: scale(.7, .7) translateX(30px);
  transform-origin: right center;
  opacity: .5;
  transition: transform 1.1s, opacity .45s linear
}

.photo-report__inner.element-animation .h2-title--right {
  transform: scale(.7, .7) translateX(30px);
  transform-origin: right center;
  opacity: .5;
  transition: transform 1.3s, opacity .45s linear
}

.photo-report__inner.element-animation .btn-secondary,
.photo-report__inner.element-animation p {
  transform: scale(.7, .7) translateX(30px);
  transform-origin: right center;
  opacity: .5;
  transition: transform 1.5s, opacity .45s linear
}

.photo-report__inner.element-animation.element-show .arrow--left,
.photo-report__inner.element-animation.element-show .arrow--right,
.photo-report__inner.element-animation.element-show .btn-secondary,
.photo-report__inner.element-animation.element-show .h2-title--right,
.photo-report__inner.element-animation.element-show .photo-report__slider-number,
.photo-report__inner.element-animation.element-show .swiper-slide,
.photo-report__inner.element-animation.element-show p {
  opacity: 1;
  transform: scale(1, 1) translateX(0)
}

.floating-social.element-animation .floating-social__item {
  transform: scale(.8, .8) translateY(60px);
  transform-origin: center bottom;
  opacity: .6;
  transition: transform .65s, opacity .55s linear
}

.floating-social.element-animation .floating-social__item:nth-child(2) {
  transition: transform .85s, opacity .55s linear
}

.floating-social.element-animation .floating-social__item:nth-child(3) {
  transition: transform 1.1s, opacity .55s linear
}

.floating-social.element-animation .floating-social__item:nth-child(4) {
  transition: transform 1.3s, opacity .55s linear
}

.floating-social.element-animation .floating-social__item:nth-child(5) {
  transition: transform 1.5s, opacity .55s linear
}

.floating-social.element-animation .floating-social__item:nth-child(6) {
  transition: transform 1.7s, opacity .55s linear
}

.floating-social.element-animation.element-show .floating-social__item {
  opacity: 1;
  transform: scale(1, 1) translateY(0)
}

@media screen and (max-width:50000px) {
  .main {
    height: 650px;
    min-height: 650px
  }

  .main__image,
  .main__slider {
    height: 650px
  }
}

@media screen and (max-width:1920px) {
  .main {
    height: 500px;
    min-height: 500px
  }

  .main__image,
  .main__slider {
    height: 500px
  }
}

@media screen and (max-width:1190px) {

  .container,
  .container--no-relative {
    padding: 0 10px 0 10px;
  }
}

@media screen and (max-width:992px) {
  .header__burger {
    display: flex
  }

  .services__item {
    grid-column: span 3 !important
  }

  .services__item-img {
    max-width: none
  }

  .stages__item {
    justify-content: flex-start
  }

  .stages__item .stages__info {
    text-align: left
  }

  .benefits__item {
    grid-column: span 4;
    margin: 15px 0
  }

  .main__info {
    margin-left: 50px
  }

  .photo-report__inner {
    height: auto
  }

  .photo-report__slider {
    grid-area: row 1/span 12
  }

  .photo-report__nav {
    grid-area: row 2/span 12;
    margin: 15px 0;
    padding: 15px 25px;
    background-color: #272b38;
    border-radius: 10px
  }

  .photo-report__slider-number {
    margin-top: 8px
  }

  .photo-report__nav-bg,
  .photo-report__nav-bg-left-part {
    display: none
  }

  .photo-report__info {
    grid-column: span 12
  }

  .photo-report__info .h2-title--right,
  .photo-report__info p {
    text-align: center
  }

  .photo-report__info .btn-secondary {
    margin: 30px auto
  }

  .photo-report__slider .swiper-slide .photo-report__photo {
    width: 100%;
    height: 100%
  }

  .about-us,
  .photo-report {
    padding-bottom: 90px
  }

  .floating-social {
    right: 30px;
    bottom: 80px
  }

  .about-us__info {
    grid-column: span 8
  }

  .stages__items {
    grid-column: span 12
  }

  .stages__info {
    grid-column: span 12;
    margin: 0;
    max-width: none
  }

  .stages__info .h2-title,
  .stages__info p {
    text-align: center
  }

  .stages__info .stages__arrow-down {
    margin: 0 auto 30px
  }

  .footer__inner {
    grid-auto-flow: column;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 1fr)
  }

  .footer__inner .row .social {
    justify-content: flex-start
  }

  .footer__inner .row .social img,
  .footer__inner .row .social svg {
    margin-left: 0;
    margin-right: 13px
  }

  .footer__number p {
    text-align: left
  }

  .footer__call-link {
    margin-right: auto;
    margin-left: 0
  }

  .header__nav {
    position: fixed;
    max-width: none;
    top: 0;
    left: 0;
    height: 100vh;
    z-index: 1000;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .35s
  }

  .header__nav.hidden {
    transform: translateY(-100vh)
  }

  .header__nav .popup-menu {
    width: 100%;
    height: 100vh;
    left: 0;
    top: 0 !important
  }

  .header__nav .popup-menu ul {
    height: 100%;
    display: flex !important;
    align-items: center;
    justify-content: center
  }

  .header__nav .popup-menu ul li {
    width: 100%;
    display: flex;
    justify-content: center
  }

  .header__nav ul {
    flex-direction: column
  }

  .header__nav ul li {
    margin: 10px 0
  }

  .header__nav ul li a {
    font-size: 22px;
    padding: 0
  }
}

@media screen and (max-width:720px) {
  .services__item {
    grid-column: span 6 !important
  }

  .services__item .services__item-img {
    max-width: none !important
  }

  .stages__item .stages__info {
    padding-right: 15px
  }

  .stages__item .stages__info p {
    text-align: left;
    font-size: 14px
  }

  .stages__item .stages__info .h3-title {
    font-size: 16px
  }

  .benefits__item {
    grid-column: span 6
  }

  .photo-report__slider .swiper-slide .photo-report__photo {
    max-width: none
  }
}

@media screen and (max-width:540px) {
  .main__info {
    margin: 0 30px
  }

  .main__info-inner {
    padding-right: 30px
  }

  .main__info-inner h1 {
    font-size: 24px
  }

  .main__info-inner p {
    font-size: 18px
  }

  .stages__item {
    padding-bottom: 25px;
    flex-direction: column
  }

  .stages__item .stages__icon,
  .stages__item .stages__icon--center-icon {
    width: 100%;
    margin-bottom: 25px
  }

  .benefits__item,
  .stages__items {
    grid-column: span 11
  }

  .about-us .h2-title {
    grid-column: span 11;
    margin-bottom: 20px
  }

  .photo-report__info {
    grid-column: span 11
  }

  .photo-report__slider {
    grid-area: row 1/span 11
  }

  .photo-report__nav {
    grid-area: row 2/span 11
  }

  .stages__info {
    grid-column: span 11
  }
}

/*# sourceMappingURL=main.min.css.map */