body {
  font-family: "Montserrat", sans-serif;
  color: #000000;
  font-size: 16px;
  font-weight: 400;
}

h1,
h2 {
  font-weight: 400;
  margin: 0;
}

p {
  margin-top: 0;
}

svg {
  fill: currentColor;
}

button {
  -webkit-tap-highlight-color: transparent;
}

.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow: hidden;
  position: relative;
}

main.site {
  flex-grow: 1;
}

.container {
  max-width: 1320px;
  padding: 0 16px;
  margin: 0 auto;
  box-sizing: border-box;
}

.button {
  background-color: #1175B4;
  color: #fff;
  border: none;
  border-radius: 15px;
  font-size: 24px;
  text-align: center;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  box-sizing: border-box;
  cursor: pointer;
  transition: 0.2s;
  text-decoration: none;
}

.button:hover {
  background-color: #0F6AA3;
}

.popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 10;
  overflow: auto;
}

.popup-content {
  position: absolute;
  top: 0;
  left: 50%;
  width: 100%;
  max-width: 500px;
  transform: translateX(-50%);
  z-index: 20;
  margin: 70px 0;
}

.popup-close {
  display: block;
  position: absolute;
  top: -46px;
  right: -36px;
  width: 34px;
  height: 34px;
  background: url(../img/close.svg) center/contain no-repeat;
  border: none;
}

.title {
  text-align: center;
  max-width: 570px;
  margin: 0 auto 10px;
  font-size: 28px;
  font-weight: 500;
}

.sub-title {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 50px;
  font-size: 18px;
}

.scroll-to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  border-radius: 50%;
  padding: 0;
  display: flex;
  width: 50px;
  height: 50px;
  box-shadow: 4px 4px 28px rgba(0, 0, 0, 0.25);
  background: rgba(0, 0, 0, 0.6) url(../img/scroll.svg) center/40px 11px no-repeat;
  border: 2px solid #fff;
  box-sizing: border-box;
  cursor: pointer;
  z-index: 10;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: 0.2s;
}

.scroll-to-top.active {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.header {
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
}

.header-main {
  display: flex;
  justify-content: space-between;
  padding-top: 20px;
  gap: 16px;
}

.header-left {
  flex-basis: 320px;
}

.header-burger {
  display: none;
  padding: 0;
  width: 30px;
  height: 30px;
  border: none;
  margin-right: 20px;
  margin-top: 2px;
  background: url(../img/burger.svg) center/contain no-repeat;
}

.header-right {
  flex-grow: 1;
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.header-right::before {
  content: "";
}

.header-close {
  display: none;
}

.header-logo {
  display:block;
  margin-bottom: 10px;
}

.header-logo img {
  max-width: 100%;
}

.header-description {
  font-size: 14px;
  text-align: center;
  font-weight: 300;
}

.header-nav {
  max-width: 560px;
  flex-grow: 1;
}

.header-nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

.header-nav a:hover {
  text-decoration: underline;
}

.header-nav-list {
  list-style: none;
  padding: 0 0 0 16px;
  margin: 0;
  display: flex;
  font-size: 15px;
}

.header-nav-list:not(:last-child) {
  border-bottom: 1px solid #fff;
}

.header-nav-list > li {
  flex-basis: 25%;
  padding: 7px 8px;
  box-sizing: border-box;
}

.has-children {
  position: relative;
}

.has-children:hover .nav-sub-menu {
  pointer-events: auto;
  visibility: visible;
  opacity: 1;
}

.has-children > a {
  position: relative;
}

.has-children > a:after {
  content: "";
  display: block;
  width: 14px;
  height: 6px;
  position: absolute;
  right: -18px;
  top: 7px;
  background: url(../img/dropdown-arrow.svg) center/contain no-repeat;
}

.nav-sub-menu {
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
  transition: 0.2s;
  position: absolute;
  top: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  list-style: none;
  padding: 0;
  margin: 0;
  border: 1px solid #fff;
  padding: 10px;
  box-sizing: border-box;
  width: 280px;
  font-size: 14px;
  z-index: 10;
}

.nav-sub-menu li:not(:last-child) {
  margin-bottom: 6px;
}
.current-menu-item a {
    opacity: 0.75;
}
.current-menu-item a:hover {
    text-decoration: none;
    cursor: auto;
}
.header-contacts {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.header-contacts a {
  color: #fff;
  text-decoration: none;
  transition: 0.2s;
}

.header-contacts a:hover {
  text-decoration: underline;
}

.header-phone {
  font-size: 26px;
  margin-bottom: 4px;
}

.header-contacts-bottom {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-vk img {
  display: block;
  width: 40px;
  height: 40px;
  -o-object-fit: contain;
     object-fit: contain;
}

.header-email {
  font-size: 20px;
}

.header-bottom {
  padding: 10px 0 20px;
}

.header-menu {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 18px;
}

.header-menu li {
  position: relative;
}

.header-menu li:not(:last-child) {
  margin-right: 20px;
}

.header-menu li:not(:last-child)::after {
  content: "";
  width: 1px;
  height: 20px;
  background-color: #fff;
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
}

.header-menu a {
  color: #fff;
  text-decoration: none;
}

.header-menu a:hover {
  text-decoration: underline;
}

.hero {
  color: #fff;
  position: relative;
}

.hero-inner {
  display: flex;
  padding: 70px 0;
  position: relative;
  z-index: 2;
}

.hero-left {
  flex-basis: 60%;
}

.hero-title {
  font-size: 68px;
  font-weight: 500;
  margin-bottom: 16px;
}

.hero-sub-title {
  font-size: 28px;
  margin-bottom: 16px;
}

.hero-text {
  font-size: 18px;
  margin-left: 40px;
  line-height: 1.3;
}

.hero-text p {
  margin: 0;
}

.hero-text ul {
  list-style: none;
  padding-left: 0;
}

.hero-right {
  flex-basis: 40%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-slider:not(.slick-initialized) {
  display: flex;
}

.hero-slider:not(.slick-initialized) .hero-slider-item {
  flex-basis: 100%;
  flex-shrink: 0;
}

.hero-slider .slick-dots {
  display: flex;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
  justify-content: center;
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0;
}

.hero-slider .slick-dots li {
  margin: 0 3px;
  border-radius: 50%;
}

.hero-slider .slick-dots li.slick-active button::after {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.hero-slider .slick-dots button {
  position: relative;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  border: 2px solid #fff;
  background: transparent;
  padding: 0;
  box-sizing: border-box;
  display: block;
  cursor: pointer;
}

.hero-slider .slick-dots button::after {
  opacity: 0;
  content: "";
  width: 11px;
  height: 11px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  background-color: #fff;
  border-radius: 50%;
  transition: 0.2s;
}

.hero-slider .slick-list {
  height: inherit;
}

.hero-slider .slick-track {
  height: inherit;
}

.hero-slider-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.hero-button {
  margin-top: 16px;
  min-width: 325px;
}

.callback {
  text-align: center;
  padding: 24px;
  box-sizing: border-box;
  background-color: rgba(0, 0, 0, 0.5);
  border: 4px solid #fff;
  border-radius: 6px;
  max-width: 500px;
  color: #fff;
}

.callback-title {
  font-size: 28px;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 20px;
  line-height: 1.3;
}

.callback-sub-title {
  font-weight: 300;
  font-size: 22px;
  margin-bottom: 20px;
  line-height: 1.3;
}

.callback-form {
  max-width: 326px;
  margin: 0 auto;
}

.callback-form-input {
  display: block;
  width: 100%;
  box-sizing: border-box;
  height: 48px;
  border: 3px solid #fff;
  border-radius: 15px;
  background-color: rgba(0, 0, 0, 0.6);
  margin-bottom: 9px;
  outline: none;
  text-align: center;
  font-size: 18px;
  color: #fff;
}

.callback-form-input::-moz-placeholder {
  color: #979797;
}

.callback-form-input::placeholder {
  color: #979797;
}

.callback-form-submit {
  display: block;
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 10px;
}

.callback-form-text {
  font-size: 14px;
}

.callback-form-text a {
  color: #54B8F6;
  text-decoration: none;
}

.callback-form-text a:hover {
  text-decoration: underline;
}

.price-inner {
  padding: 70px 0 0;
}

.price-text {
  text-align: center;
  line-height: 30px;
  font-size: 18px;
  margin-bottom: 50px;
}

.price-table {
  max-width: 1050px;
  margin-left: auto;
  margin-right: auto;
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 4px;
  position: relative;
  padding: 24px 32px;
  color: #fff;
}

.price-table::after {
  content: "";
  display: block;
  width: calc(100% - 16px);
  height: calc(100% - 16px);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 4px solid #fff;
  border-radius: 4px;
  z-index: 1;
}

.price-table table {
  position: relative;
  z-index: 2;
  width: 100%;
  border-collapse: collapse;
  font-size: 16px;
  color: #fff;
}

.price-table thead th {
  border-bottom: 1px solid #fff;
  font-weight: 400;
  text-align: left;
}

.price-table thead th:nth-child(1) {
  padding-left: 10px;
}

.price-table td {
  padding: 12px 4px;
  border-bottom: 1px solid #979797;
}

.price-table td:nth-child(1) {
  width: 20%;
  padding-left: 10px;
}

.price-table td:nth-child(2) {
  font-size: 14px;
}

.price-table td:nth-child(3) {
  width: 20%;
}

.price-table td:nth-child(4) {
  width: 10%;
}

.price-table-title {
  font-size: 28px;
  text-align: center;
  margin-bottom: 16px;
}

.price-table-bottom {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 32px 0 0;
}

.price-table-button {
  max-width: 330px;
  width: 100%;
}
.price-table-button:hover{
  text-decoration: none;
  color: #fff;
}

.servises-inner {
  padding: 70px 0 0;
}

.servises-title {
  font-size: 28px;
  font-weight: 500;
  text-align: center;
  max-width: 570px;
  margin: 0 auto 10px;
}

.servises-sub-title {
  text-align: center;
  font-size: 18px;
  max-width: 410px;
  margin: 0 auto 32px;
}

.servises-row {
  display: flex;
  flex-wrap: wrap;
  gap: 55px;
  justify-content: center;
}

.servises-item {
  flex-basis: calc((100% - 110px) / 3);
  box-sizing: border-box;
  position: relative;
  height: 0;
  padding-bottom: 33%;
}

.servises-item-title {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  background-color: rgba(255, 255, 255, 0.4);
  font-size: 24px;
  font-weight: 500;
  padding: 14px;
  margin: 0;
}

.servises-item-price {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  background-color: rgba(0, 0, 0, 0.6);
  box-sizing: border-box;
  width: 174px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #fff;
  font-size: 14px;
  line-height: 1.3;
  text-align: center;
}

.servises-item-image {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
}

.features-inner {
  padding: 70px 0;
}

.features-title {
  text-align: center;
  max-width: 570px;
  margin: 0 auto 10px;
  font-size: 28px;
  font-weight: 500;
}

.features-sub-title {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 50px;
  font-size: 18px;
}

.features-row {
  display: flex;
  justify-content: space-around;
}

.features-item {
  text-align: center;
  flex-basis: 320px;
}

.features-item-icon {
  margin-bottom: 10px;
  display: inline-block;
  width: 123px;
  height: 123px;
  -o-object-fit: contain;
     object-fit: contain;
}

.features-item-title {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 10px;
  margin-top: 0;
}

.features-item-text {
  font-size: 14px;
}

.features-bottom {
  text-align: center;
  padding-top: 32px;
  margin-bottom: 50px;
}

.features-link {
  display: inline-block;
  font-size: 18px;
  color: #2693D8;
  text-decoration: none;
}

.features-blocks {
  display: flex;
  gap: 56px;
  margin-bottom: 50px;
}

.features-block {
  flex-basis: calc((100% - 112px) / 3);
  text-align: center;
  padding: 5px;
  box-sizing: border-box;
  color: #fff;
  font-size: 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.6);
  font-weight: 300;
  margin-bottom: 0;
}

.features-get {
  display: flex;
  margin-bottom: 32px;
}

.features-get-left {
  flex-basis: 40%;
  padding-top: 32px;
}

.features-get-title {
  font-weight: 500;
  font-size: 28px;
}

.features-get-list {
  list-style: none;
  font-weight: 300;
  font-size: 14px;
  padding-left: 0;
  line-height: 1.5;
}

.features-get-right {
  flex-basis: 60%;
  padding-left: 32px;
  box-sizing: border-box;
}

.features-get-right img {
  max-width: 100%;
}

.features-bot-text {
  font-size: 16px;
  max-width: 680px;
  margin-bottom: 0;
}

.cta {
  background: url(../img/cta-bg.jpg) center top/cover no-repeat;
  color: #fff;
}

.cta-inner {
  padding: 16px 0;
}

.cta-top-text {
  font-size: 24px;
  margin-bottom: 24px;
}

.cta-title {
  text-align: center;
  font-weight: 700;
  font-size: 30px;
  margin-bottom: 32px;
}

.cta-form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cta-form-input {
  flex-basis: calc((100% - 132px) / 4);
  outline: none;
  border-radius: 15px;
  border: 3px solid #fff;
  color: #fff;
  text-align: center;
  padding: 0 16px;
  box-sizing: border-box;
  height: 48px;
  background-color: rgba(0, 0, 0, 0.6);
}

.cta-form-input::-moz-placeholder {
  color: #979797;
}

.cta-form-input::placeholder {
  color: #979797;
}

.cta-form-button {
  flex-basis: calc((100% - 132px) / 4);
}

.cta-bottom {
  display: flex;
  align-items: center;
  padding: 16px 0 0;
}

.cta-bottom-text {
  font-size: 18px;
}

.cta-bottom-phone {
  flex-grow: 1;
  text-align: center;
  font-size: 14px;
}

.cta-bottom-phone a {
  font-size: 18px;
}

.cta-bottom-ag {
  flex-basis: calc(25% - 44px);
  font-size: 12px;
  font-weight: 300;
}

.cta-title-bottom {
  margin-bottom: 16px;
  font-size: 18px;
  text-align: center;
}

.cta-row {
  display: flex;
}

.cta-left {
  flex-shrink: 0;
  flex-basis: 380px;
  padding-right: 50px;
  box-sizing: border-box;
}

.cta-contacts {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
}

.cta-contacts-phone {
  font-size: 32px;
  font-weight: 600;
  text-decoration: none;
  color: #fff;
}

.cta-contacts-phone:hover {
  text-decoration: underline;
}

.cta-contacts-address {
  font-size: 28px;
}

.cta-contacts-email {
  font-size: 28px;
  text-decoration: none;
  color: #fff;
}

.cta-contacts-email:hover {
  text-decoration: underline;
}

.cta-right {
  flex-grow: 1;
}

.cta-footer {
  padding-bottom: 140px;
}

.cta-footer .cta-form {
  flex-wrap: wrap;
  gap: 32px;
}
.cta-footer .cta-form .wpcf7-response-output {
	display:flex;
    align-items:center;
    position: inherit;
    margin: 0;
    padding: 0;
    border: 0;
}
.cta-wrap {
    flex-basis: calc((100% - 64px) / 3);
}
.cta-wrap2 {
    width: 25%;
}
.cta-wrap2 input {
    width: 100%;
}
.cta-footer .cta-form-input {
  flex-basis: calc((100% - 64px) / 3);
  box-sizing: border-box;
  min-width: 0;
  width:100%;
}
.cta-form .wpcf7-not-valid.cta-form-input {
    border: 3px solid #d43f3a;
}
.cta-form .wpcf7-response-output{
	padding-left:0;
    position: inherit;
    margin: 0;
    padding: 0;
}
.cta-footer .wpcf7-not-valid.cta-form-input {
    border: 3px solid #d43f3a;
}

.cta-footer .cta-form-message {
  width: 100%;
  outline: none;
  border-radius: 15px;
  border: 3px solid #fff;
  color: #fff;
  padding: 16px 16px 16px 60px;
  box-sizing: border-box;
  height: 122px;
  background-color: rgba(0, 0, 0, 0.6);
  resize: none;
}
.cta-textarea {
    width: 100%;
}

.cta-footer .cta-form-message::-moz-placeholder {
  color: #979797;
}

.cta-footer .cta-form-message::placeholder {
  color: #979797;
}

.cta-footer .cta-form-button {
  flex-basis: 336px;
}

.definition-inner {
  padding: 70px 0 0;
}

.definition-title {
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 32px;
}

.definition-row {
  display: flex;
}

.definition-left {
  flex-basis: 50%;
  padding-left: 40px;
  padding-right: 40px;
  box-sizing: border-box;
  padding-top: 32px;
}

.definition-left p {
  font-size: 14px;
  line-height: 24px;
}

.definition-left-title {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 28px;
}

.definition-right {
  flex-basis: 50%;
}

.definition-right img {
  max-width: 100%;
  display: block;
}

.definition-right img:not(:last-child) {
  margin-bottom: 32px;
}

.definition-right p {
  font-size: 14px;
  line-height: 24px;
}

.works-inner {
  padding: 70px 0 0;
}

.works-title {
  text-align: center;
  font-size: 28px;
  font-weight: 500;
  max-width: 468px;
  margin: 0 auto 32px;
}

.works-row {
  display: flex;
  flex-wrap: wrap;
  gap: 56px;
}

.works-item {
  flex-basis: calc((100% - 168px) / 4);
  position: relative;
}

.works-image {
  height:auto;
}

.works-image img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  height: 280px;
}

.works-text {
  color: #fff;
  font-size: 14px;
  display: flex;
  height: 57px;
  width: 100%;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  left: 0;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.6);
  padding: 0 24px;
  box-sizing: border-box;
  margin: 0;
}

.steps-inner {
  padding: 70px 0 0;
}

.steps-row {
  display: flex;
  justify-content: space-evenly;
  gap: 20px;
}

.steps-item {
  text-align: center;
  flex-basis: 260px;
}

.steps-icon {
  margin-bottom: 10px;
}

.steps-icon img {
  width: 123px;
  height: 123px;
  -o-object-fit: contain;
     object-fit: contain;
  display: inline-block;
}

.steps-title {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 10px;
}

.steps-text {
  font-size: 12px;
  font-weight: 300;
  line-height: 1.4;
}

.reviews .title {
  margin-bottom: 60px;
}

.reviews-inner {
  padding: 70px 0;
}

.reviews-item {
  display: flex;
  gap: 56px;
}

.reviews-item:not(:last-child) {
  margin-bottom: 32px;
}

.reviews-gallery {
  width: calc((100% - 56px) / 2);
}

.reviews-gallery-main {
  margin-bottom: 10px;
}
.div{
  width: 620px;
}
.reviews-gallery-main img {
  width: 620px;
  height: 340px;
  max-width: 100%;
  object-fit: cover;
}
.reviews-gallery-row .slick-track {
  transform: none!important;
}
.reviews-gallery-item {
  border: 3px solid transparent;
  height: auto;
}
.reviews-gallery-item.slick-current {
  border: 3px solid #0076b8;
  height: auto;
}

.reviews-gallery-item img {
  width: 100%;
  max-width: 100%;
  height: 148px;
  object-fit: cover;
}
.reviews-slider .slick-prev, .reviews-slider .slick-next {
  position: absolute;
  background: transparent;
  font-size: 0;
  width: 28px;
  height: 28px;
  border-style: solid;
  margin: 10px;
  display: inline-block;
  margin: auto;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 10;
  cursor: pointer;
}
.reviews-slider .slick-prev:before, .reviews-slider .slick-next:before {
	display: none;
}
.reviews-slider .slick-prev {
    border-width: 14px 14px 14px 0px;
    border-color: transparent #ffffff;
    left: 0px;
		right: auto;
}
.reviews-slider .slick-next {
    border-width: 14px 0px 14px 14px;
    border-color: transparent #ffffff;
    right: 0px;
    left: auto;
}
.reviews-slider .slick-prev:hover, .reviews-slider .slick-next:hover {
  border-color: transparent #0076b8;
}

.reviews-content {
  flex-basis: calc((100% - 56px) / 2);
}

.reviews-header {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
}

.reviews-photo {
  margin-right: 56px;
}

.reviews-photo img {
  width: 168px;
  height: 168px;
  border-radius: 50%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

.reviews-name {
  font-size: 26px;
  margin-bottom: 8px;
}

.reviews-service {
  font-weight: 300;
  font-size: 18px;
  margin-bottom: 8px;
}

.reviews-numbers {
  font-weight: 500;
  font-size: 20px;
}

.reviews-text {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.5;
}

.reviews-item-reverse {
  flex-direction: row-reverse;
}

.krovfooter {
  padding: 16px 0;
  background-color: rgba(0, 0, 0, 0.6);
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 2;
  color: #fff;
}

.footer-nav {
  display: flex;
  align-items: center;
  list-style: none;
  justify-content: space-between;
  margin-bottom: 24px;
  flex-wrap: wrap;
  row-gap: 16px;
  -moz-column-gap: 8px;
       column-gap: 8px;
  padding-left: 0;
}

.footer-nav a {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
}

.footer-nav a:hover {
  text-decoration: underline;
}

.footer-text {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 300;
  font-size: 14px;
  flex-wrap: wrap;
}

.footer-text a {
  color: currentColor;
  text-decoration: none;
}

.footer-text a:hover {
  text-decoration: underline;
}

#politicabottom {
    flex-basis: calc(50% - 84px);
}


@media (min-width: 1024px) {
  .desktop-hidden {
    display: none;
  }
}

@media (max-width: 1200px) {
  .header-left {
    flex-basis: 240px;
  }

  .header-description {
    font-size: 12px;
  }

  .header-nav-list {
    padding-left: 0;
    font-size: 14px;
  }

  .header-phone {
    font-size: 20px;
  }

  .header-email {
    font-size: 16px;
  }

  .header-menu {
    font-size: 16px;
  }
}

@media (max-width: 1024px) {
  .footer-nav {
    justify-content: center;
  }
}

@media (max-width: 1023px) {
  .header-left {
    flex-basis: 192px;
  }

  .header-nav-list > li {
    padding: 7px 4px;
  }

  .header-nav-list {
    font-size: 12px;
  }

  .header-phone {
    font-size: 14px;
  }

  .header-contacts-bottom {
    flex-direction: column;
    align-items: flex-end;
    gap: 0;
  }

  .header-vk {
    order: 1;
  }

  .header-email {
    font-size: 14px;
  }

  .header-menu {
    font-size: 12px;
  }

  .hero-left {
    flex-basis: 100%;
  }

  .hero-title {
    font-size: 48px;
  }

  .hero-sub-title {
    font-size: 22px;
  }

  .hero-text {
    margin-left: 0;
    font-size: 15px;
  }

  .hero-right {
    display: none;
  }

  .price-table td:nth-child(2) {
    font-size: 12px;
  }

  .price-table-title {
    font-size: 18px;
  }

  .servises-row {
    gap: 40px;
  }

  .servises-item {
    flex-basis: calc((100% - 40px) / 2);
    padding-bottom: 40%;
  }

  .servises-item-title {
    font-size: 16px;
  }

  .features-row {
    justify-content: space-between;
  }

  .features-item-icon {
    width: 90px;
    height: 90px;
  }

  .features-item-title {
    font-size: 16px;
  }

  .features-item-text {
    font-size: 12px;
  }

  .features-blocks {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .features-block {
    max-width: 400px;
    flex-basis: 280px;
  }

  .features-get {
    display: block;
  }

  .features-get-right img {
    height: 190px;
    width: 100%;
    display: block;
    -o-object-fit: cover;
       object-fit: cover;
  }

  .features-get-right {
    padding-left: 0;
  }

  .features-bot-text {
    max-width: 100%;
  }

  .cta-title {
    font-size: 20px;
  }

  .cta-form {
    flex-wrap: wrap;
    gap: 32px;
  }

  .cta-form-input {
    flex-basis: calc((100% - 32px) / 2);
  }

  .cta-form-button {
    flex-basis: calc((100% - 32px) / 2);
  }

  .cta-bottom-ag {
    flex-basis: calc(50% - 32px);
  }

  .cta-row {
    flex-direction: column-reverse;
  }

  .cta-left {
    flex-basis: auto;
    padding-right: 0;
  }

  .cta-contacts {
    align-items: center;
    gap: 16px;
    text-align: center;
  }

  .cta-right {
    margin-bottom: 32px;
  }

  .cta-footer .cta-form-button {
    justify-self: center;
  }

  .definition-title {
    text-align: center;
  }

  .definition-row {
    display: block;
    text-align: center;
    max-width: 540px;
    margin: 0 auto;
  }

  .definition-left {
    padding-top: 0;
  }

  .definition-right img:not(:last-child) {
    margin-bottom: 0;
  }

  .definition-right img {
    max-width: 330px;
    margin: 0 auto;
  }

  .footer-nav a {
    font-size: 12px;
  }

  .footer-text {
    font-size: 12px;
    row-gap: 16px;
    -moz-column-gap: 8px;
         column-gap: 8px;
    justify-content: center;
  }
}

@media (max-width: 920px) {
  .reviews-item {
    flex-direction: column-reverse;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 900px) {
  .cta-footer .cta-form-input {
    flex-basis: calc((100% - 32px) / 2);
  }

  .works-item {
    flex-basis: calc((100% - 56px) / 2);
  }

  .steps-row {
    flex-wrap: wrap;
  }

  .steps-item {
    flex-basis: calc(50% - 20px);
    box-sizing: border-box;
  }
}

@media (max-width: 767px) {
  .mobile-hidden {
    display: none;
  }
}

@media (max-width: 767.98px) {
  .popup-close {
    right: 16px;
  }

  .title {
    font-size: 18px;
  }

  .sub-title {
    font-size: 16px;
  }

  .scroll-to-top {
    right: 12px;
    bottom: 12px;
    width: 40px;
    height: 40px;
    background-size: 26px;
  }

  .header .container {
    padding: 0;
  }

  .header-main {
    padding: 0;
    align-items: center;
  }

  .header-burger {
    display: block;
  }

  .header-right {
    display: none;
    position: fixed;
    z-index: 20;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    flex-direction: column;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.8);
    padding-top: 40px;
    justify-content: flex-start;
  }

  .header-right.active {
    display: flex;
  }

  .header-close {
    display: block;
    position: absolute;
    top: 20px;
    right: 20px;
    width: 34px;
    height: 34px;
    background: url(../img/close.svg) center/contain no-repeat;
    border: none;
  }

  .header-logo {
    margin-bottom: 0;
  }

  .header-description {
    display: none;
  }

  .header-nav {
    flex-grow: 0;
    margin-bottom: 10px;
    display: flex;
    flex-direction: column;
  }

  .header-nav-list:not(:last-child) {
    border-bottom: none;
  }

  .header-nav-list {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .header-nav-list a {
    font-size: 20px;
  }

  .header-nav-list:first-child {
    order: 1;
  }

  .nav-sub-menu {
    position: static;
    pointer-events: auto;
    visibility: visible;
    opacity: 1;
    background-color: transparent;
    border: none;
  }

  .nav-sub-menu a {
    font-size: 14px;
  }

  .header-contacts {
    align-items: center;
  }

  .header-phone {
    font-size: 26px;
    margin-bottom: 6px;
  }

  .header-contacts-bottom {
    align-items: center;
  }

  .header-email {
    font-size: 20px;
  }

  .header-bottom {
    padding: 6px 16px 12px;
  }

  .header-menu {
    font-size: 10px;
  }

  .hero-inner {
    padding: 32px 0;
  }

  .hero-left {
    text-align: center;
  }

  .hero-title {
    font-size: 32px;
  }

  .hero-sub-title {
    font-size: 18px;
  }

  .hero-text ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-left: 0;
  }

  .callback-title {
    font-size: 18px;
  }

  .callback-sub-title {
    font-size: 12px;
  }

  .price-text {
    font-size: 16px;
    line-height: 1.3;
  }

  .price-table {
    padding-left: 10px;
    padding-right: 10px;
  }

  .price-table thead th {
    font-size: 10px;
  }

  .price-table td:nth-child(1) {
    width: auto;
  }

  .price-table td:nth-child(2) {
    font-size: 10px;
  }

  .price-table td:nth-child(3) {
    font-size: 10px;
  }

  .price-table td:nth-child(3) {
    width: auto;
  }

  .price-table td:nth-child(4) {
    width: auto;
  }

  .price-table-title {
    font-size: 16px;
  }

  .servises-inner {
    padding-top: 45px;
  }

  .servises-title {
    font-size: 18px;
  }

  .servises-sub-title {
    font-size: 16px;
  }

  .servises-row {
    gap: 20px;
  }

  .servises-item {
    flex-basis: 100%;
    padding-bottom: 100%;
  }

  .servises-item-price {
    width: 130px;
  }

  .features-title {
    font-size: 18px;
  }

  .features-sub-title {
    font-size: 16px;
  }

  .features-row {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .features-item {
    flex-basis: auto;
    max-width: 230px;
  }

  .features-block {
    font-size: 15px;
  }

  .features-get-title {
    font-size: 18px;
    text-align: center;
  }

  .features-get-list {
    text-align: center;
  }

  .features-get-right {
    margin-left: -16px;
    margin-right: -16px;
  }

  .features-bot-text {
    text-align: center;
  }

  .cta-top-text {
    font-size: 16px;
    text-align: center;
    margin-bottom: 10px;
  }

  .cta-title {
    font-size: 14px;
    margin-bottom: 10px;
  }

  .cta-form {
    gap: 16px;
    max-width: 330px;
    margin: 0 auto;
  }

  .cta-form-input {
    flex-basis: 100%;
  }

  .cta-form-button {
    flex-basis: 100%;
  }

  .cta-bottom {
    flex-direction: column-reverse;
    max-width: 330px;
    margin: 0 auto;
  }

  .cta-bottom-phone {
    text-align: center;
  }

  .cta-bottom-ag {
    text-align: center;
    font-size: 12px;
  }

  .cta-title-bottom {
    font-size: 14px;
  }

  .cta-contacts-phone {
    font-size: 22px;
  }

  .cta-contacts-address {
    font-size: 18px;
  }

  .cta-contacts-email {
    font-size: 18px;
  }

  .cta-footer {
    padding-bottom: 200px;
  }

  .cta-footer .cta-form-input {
    flex-basis: 100%;
  }

  .cta-footer .cta-form-message {
    padding-left: 16px;
  }

  .definition-title {
    font-size: 18px;
  }

  .definition-left {
    padding-left: 0;
    padding-right: 0;
  }

  .definition-left-title {
    font-size: 14px;
  }

  .works-row {
    gap: 16px;
  }

  .works-item {
    flex-basis: calc((100% - 16px) / 2);
  }

  .reviews-header {
    display: block;
    text-align: center;
  }

  .reviews-photo img {
    width: 136px;
    height: 136px;
    display: inline-block;
  }

  .reviews-photo {
    margin-right: 0;
    margin-bottom: 16px;
  }

  .reviews-text {
    text-align: center;
  }
}

@media (max-width: 530px) {
  .works-text {
    font-size: 12px;
    padding: 0 8px;
  }

  .steps-row {
    max-width: 380px;
    margin: 0 auto;
  }

  .steps-item {
    flex-basis: 100%;
  }
}

@media (max-width: 480px) {
  .hero-button {
    min-width: 100%;
  }

  .definition-right img {
    max-width: calc(100% + 32px);
    margin-left: -16px;
    margin-right: -16px;
  }
}

@media (max-width: 424px) {
  .reviews-gallery-row {
    flex-wrap: wrap;
    row-gap: 10px;
  }

  .reviews-gallery-item {
    flex-basis: calc((100% - 16px) / 2);
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .tablet-hidden {
    display: none;
  }
}
#politica {
	color: #fff;
}
.invalid.callback-form .wpcf7-response-output {
  position: inherit;
}
.callback-form .wpcf7-response-output {
  position: inherit;
  margin-bottom: 0;
}
.wpcf7-not-valid.callback-form-input {
    border: 3px solid #d43f3a;
}
@media(max-width:991px){
    .cta-wrap2 {
        width: 47.5%;
    }
}
@media(max-width:920px){
    .reviews-gallery {
        width: 100%;
    }
}
@media(max-width:768px){
	.cta-wrap {
        flex-basis: 100%;
    }
    .cta-wrap2 {
        width: 100%;
    }
}
@media(max-width:576px){
	.works-image img {
    	height: 200px;
	}
    .reviews-gallery-item img {
        height: 100px;
    }
}