/* stylelint-disable */
/* BREAKPOINTS */
/* stylelint-disable */
/* stylelint-disable */
.custom-checkbox__field:checked + .custom-checkbox__content::after {
  opacity: 1;
}

.custom-checkbox__field:focus + .custom-checkbox__content::before {
  outline: 2px solid #f00;
  outline-offset: 2px;
}

.custom-checkbox__field:disabled + .custom-checkbox__content {
  opacity: 0.4;
  pointer-events: none;
}

/* stylelint-disable */
/* stylelint-disable */
/* stylelint-disable value-keyword-case */
@font-face {
  font-family: "Open Sans";
  src: url("../fonts/../fonts/OpenSans-Regular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Open Sans";
  src: url("../fonts/../fonts/OpenSans-Italic.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
  font-style: italic;
}
@font-face {
  font-family: "Open Sans";
  src: url("../fonts/../fonts/OpenSans-Medium.woff2") format("woff2");
  font-weight: 500;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Open Sans";
  src: url("../fonts/../fonts/OpenSans-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Open Sans";
  src: url("../fonts/../fonts/OpenSans-Bold.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Open Sans";
  src: url("../fonts/../fonts/OpenSans-ExtraBold.woff2") format("woff2");
  font-weight: 800;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Raleway";
  src: url("../fonts/../fonts/Raleway-SemiBold.woff") format("woff");
  font-weight: 600;
  font-display: swap;
  font-style: normal;
}
@font-face {
    font-family: "Raleway";
    src: url("../fonts/../fonts/Raleway-Bold.woff") format("woff");
    font-weight: 700;
    font-display: swap;
    font-style: normal;
  }
@font-face {
    font-family: "DrukCyr";
    src: url("../fonts/../fonts/DrukCyr-Medium.woff2") format("woff2");
    font-weight: 500;
    font-display: swap;
    font-style: normal;
}
html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  scroll-behavior: smooth;
  zoom: normal;
}

*,
*::before,
*::after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(22, 58, 207, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(22, 58, 207, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(22, 58, 207, 0);
  }
}

.call-button {
  position: fixed;
  right: 20px;
  bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 60px;
  width: 100%;
  max-height: 60px;
  min-height: 60px;
  background-color: #163acf;
  z-index: 100;
  border-radius: 100%;
  transition: all ease .2s;
  animation: pulse 2s infinite;
}

.call-button svg {
  transition: all ease .2s;
}

@media (min-width: 1024px) {
  .call-button {
    right: 50px;
    bottom: 50px;
  }
}

@media (any-hover: hover) {
  .call-button:hover {
    transform: scale(1.08);
  }
  .call-button:hover svg {
    transform: rotate(20deg);
  }
}

.page {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  height: 100%;
  font-size: 18px;
  -webkit-text-size-adjust: 100%;
  color: #00152b;
  background-color: #fff;
}

.page__body{
  margin: 0;
  min-width: 320px;
  min-height: 100%;
  font-size: 16px;
  overflow-x: hidden;
}

img {
  height: auto;
  max-width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

a {
  text-decoration: none;
}

p {
  margin: 0;
}

.site-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  min-height: 100vh;
}
.site-container--contact {
  background-image: url("../img/contact-hero.jpg");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.main {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.is-hidden {
  display: none !important; /* stylelint-disable-line declaration-no-important */
}

.list-reset {
  list-style: none;
  margin: 0;
  padding: 0;
}

.input-reset {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  border-radius: 0;
  background-color: #fff;
}
.input-reset::-webkit-search-decoration, .input-reset::-webkit-search-cancel-button, .input-reset::-webkit-search-results-button, .input-reset::-webkit-search-results-decoration {
  display: none;
}

.visually-hidden {
  position: absolute;
  overflow: hidden;
  margin: -1px;
  border: 0;
  padding: 0;
  width: 1px;
  height: 1px;
  clip: rect(0 0 0 0);
}

.container {
  margin: 0 auto;
  padding: 0 16px;
  max-width: 1152px;
}

.js-focus-visible :focus:not(.focus-visible) {
  outline: none;
}

.centered {
  text-align: center;
}

.dis-scroll {
  position: fixed;
  left: 0;
  top: 0;
  overflow: hidden;
  width: 100%;
  height: 100vh;
  -ms-scroll-chaining: none;
  overscroll-behavior: none;
}

.page--ios .dis-scroll {
  position: relative;
}

.logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  max-width: 200px;
  width: 100%;
}
.centerJsInsertetLogo{
    display: none;
}
.logo img {
  display: block;
  width: 100%;
  height: 100%;
}
@media (min-width: 800px) {
  /* .logo {
    max-width: 260px;
  } */
}
@media (min-width: 1660px) {
  .logo {
    max-width: 250px;
  }
}

.content {
  font-size: 14px;
  line-height: 1.6;
  color: #000;
}
@media (min-width: 375px) {
  .content {
    font-size: calc(0.2574002574vw + 13.0347490347px);
  }
}
@media (min-width: 1152px) {
  .content {
    font-size: 16px;
  }
}
.content h1, .content h2, .content h3, .content h4, .content h5, .content h6 {
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
}

.content h1 {
  font-size: 26px;
}

.content h2 {
  font-size: 24px;
}

.content h3 {
  font-size: 22px;
}

.content h4 {
  font-size: 20px;
}

.content h5, .content h6 {
  font-size: 18px;
}

.content h1:not(:last-child), .content h2:not(:last-child), .content h3:not(:last-child), .content h4:not(:last-child), .content h5:not(:last-child), .content h6:not(:last-child) {
  margin-bottom: 35px;
}
.content p:not(:last-child) {
  margin-bottom: 20px;
}
.content strong {
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
}
.content ul, .content ol {
  margin-left: 10px;
  padding: 10px 0 10px 20px;
}
.content ul:not(:last-child), .content ol:not(:last-child) {
  margin-bottom: 30px;
}
.content ul {
  list-style: none;
}
.content ul li {
  position: relative;
  padding-left: 12px;
}
.content ul li:not(:last-child) {
  margin-bottom: 5px;
}
.content ul li:before {
  content: "";
  display: block;
  position: absolute;
  top: 6px;
  left: 0;
  width: 4px;
  height: 4px;
  background-color: #163acf;
  border-radius: 100%;
}
@media (min-width: 800px) {
  .content ul li {
    padding-left: 20px;
  }
  .content ul li:before {
    width: 6px;
    height: 6px;
  }
}
.content img {
  height: 350px;
  display: block;
  width: 100%;
}
@media (min-width: 645px) {
  .content img {
    height: 450px;
  }
}
@media (min-width: 1152px) {
  .content img {
    height: 780px;
  }
}
.content img:not(:last-child) {
  margin-top: 25px;
  margin-bottom: 25px;
}

.info-list__item {
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  font-size: 16px;
  position: relative;
  padding-left: 32px;
  line-height: 1.4;
  color: #fff;
}
.info-list__item:not(:last-child) {
  margin-bottom: 22px;
}
@media (min-width: 375px) {
  .info-list__item {
    font-size: calc(0.5148005148vw + 14.0694980695px);
  }
}
@media (min-width: 1152px) {
  .info-list__item {
    font-size: 20px;
  }
}
.info-list__item:before {
  content: "";
  display: block;
  position: absolute;
  top: 8px;
  left: 0;
  width: 8px;
  height: 8px;
  background-color: #163acf;
  border-radius: 100%;
}
@media (min-width: 800px) {
  .info-list__item {
    padding-left: 42px;
  }
  .info-list__item:not(:last-child) {
    margin-bottom: 16px;
  }
  .info-list__item:before {
    top: 12px;
    width: 12px;
    height: 12px;
  }
}

.down-mark {
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  font-size: 14px;
  position: relative;
  padding-right: 28px;
}
@media (min-width: 375px) {
  .down-mark {
    font-size: calc(0.5148005148vw + 12.0694980695px);
  }
}
@media (min-width: 1152px) {
  .down-mark {
    font-size: 18px;
  }
}
.down-mark:before {
  content: url("../img/arrow-down.svg");
  display: block;
  max-width: 20px;
  max-height: 20px;
  position: absolute;
  top: 0;
  right: 0;
  -webkit-animation: top-down 1.7s infinite linear;
  animation: top-down 1.7s infinite linear;
}
@media (min-width: 1024px) {
  .down-mark {
    padding-right: 34px;
  }
  .down-mark:before {
    max-width: 24px;
    max-height: 24px;
  }
}

.direct-link {
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  font-size: 14px;
  position: relative;
  padding-right: 24px;
  color: #163acf;
}
@media (min-width: 375px) {
  .direct-link {
    font-size: calc(0.5148005148vw + 12.0694980695px);
  }
}
@media (min-width: 1152px) {
  .direct-link {
    font-size: 18px;
  }
}
@media (max-width: 575px) {
  .direct-link {
    font-size: 10px;
  }
}
.direct-link:before {
  content: url("../img/arrow-up-right.svg");
  display: block;
  max-width: 20px;
  max-height: 20px;
  position: absolute;
  top: 0;
  right: 0;
  -webkit-transition: -webkit-transform ease 0.3s;
  transition: -webkit-transform ease 0.3s;
  transition: transform ease 0.3s;
  transition: transform ease 0.3s, -webkit-transform ease 0.3s;
}
@media (min-width: 1024px) {
  .direct-link {
    padding-right: 30px;
  }
  .direct-link:before {
    max-width: 24px;
    max-height: 24px;
  }
}
@media (any-hover: hover) {
  .direct-link:hover {
    color: rgba(22, 58, 207, 0.8);
  }
  .direct-link:hover:before {
    -webkit-transform: translateY(-4px) translateX(4px);
    -ms-transform: translateY(-4px) translateX(4px);
    transform: translateY(-4px) translateX(4px);
  }
}

@media (max-width: 575px) {
  .direct-link:before {
           max-width: 10px;
        max-height: 10px;
        top: -5px;
  }
}

.copyright {
  font-size: 14px;
  color: #fff;

}

.social-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px;
}
.social-list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  max-width: 32px;
  width: 100%;
  min-height: 32px;
  max-height: 32px;
  border: 2px solid #fff;
  border-radius: 100%;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}
.logoblock {vertical-align: top; width: 100%; max-width: 300px; min-width: 300px;}
.fsocials {padding-top: 40px;}
.poslugimenu {color: #fff; font-size: 18px; line-height: 40px; padding-left: 40px; min-width: 280px;}
.poslugimenu .fmenu_poslugi {font-weight: bold;}
.pronasmenu {color: #fff; font-size: 18px; line-height: 40px; padding-left: 30px; max-width: 270px; width: 100%;}
.pronasmenu .fmenu_pronas {font-weight: bold;}
.fcontact {color: #fff; font-size: 18px; line-height: 40px; padding-left: 30px; min-width: 170px;}
.fcontact .fcont {font-weight: bold;}
.contact-list_footer {font-weight: 600;}
.footeremail {padding-top: 20px; padding-bottom: 30px; display: block;}
@media (any-hover: hover) {
  .social-list__item:hover {
    border-color: #163acf;
  }
}
.social-list__item-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.social-list__item-link img {
  -o-object-fit: contain;
  object-fit: contain;
  max-width: 16px;
}

.contact-list__item:first-child {
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .contact-list__item:first-child {
    flex-direction: row;
  }
}

@media (max-width: 768px) {
  .poslugimenu, .pronasmenu, .fcontact {padding-left: 0px; line-height: 32px;}
	.hero__contacts {margin-bottom:0px !important;}
	.hero--inner-service .hero__form {bottom:-160% !important;}
  .hero--specific .hero__form {bottom:-150% !important;}
  .inner-team__slider-buttons {display: none !important;}
  .pagecategory .hero__container {min-height: 200px;}
}

.contact-list__item:not(:last-child) {
  margin-bottom: 36px;
}

.location {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 17px;
  color: #F3D208;
  font-weight: bold;
  font-size: 20px;
}
.location::before {
  content: "";
  width: 27px;
  height: 32px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 33' fill='none'%3E%3Cg fill='%23F9D606' fill-rule='evenodd' clip-path='url(%23a)' clip-rule='evenodd'%3E%3Cpath d='M16 3.167A10.667 10.667 0 0 0 5.333 13.833c0 4.131 2.688 8.14 5.635 11.25A39.227 39.227 0 0 0 16 29.53a39.238 39.238 0 0 0 5.032-4.447c2.947-3.11 5.634-7.119 5.634-11.25A10.667 10.667 0 0 0 16 3.167Zm0 28-.74 1.109-.004-.003-.01-.006-.03-.02a25.091 25.091 0 0 1-.513-.36 41.9 41.9 0 0 1-5.672-4.969c-3.052-3.224-6.365-7.882-6.365-13.085a13.333 13.333 0 0 1 26.667 0c0 5.203-3.312 9.861-6.365 13.084a41.91 41.91 0 0 1-5.672 4.969 25.091 25.091 0 0 1-.513.36l-.03.021-.009.006-.003.002s-.002.001-.741-1.108Zm0 0 .74 1.11a1.335 1.335 0 0 1-1.48-.001l.74-1.11Z'/%3E%3Cpath d='M16 11.167a2.667 2.667 0 1 0 0 5.333 2.667 2.667 0 0 0 0-5.333Zm-5.334 2.666a5.333 5.333 0 1 1 10.667 0 5.333 5.333 0 0 1-10.666 0Z'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='a'%3E%3Cpath fill='%23fff' d='M0 .5h32v32H0z'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E") center no-repeat;
}
.location--centered {
  grid-template-columns: repeat(2, auto);
  justify-content: center;
}

.contact-list__item-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  -webkit-column-gap: 10px;
  -moz-column-gap: 10px;
  column-gap: 10px;
  font-size: clamp(14px, 3vw, 18px);
  line-height: 1.3;
}
.contact-list__item-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  max-width: 22px;
  max-height: 24px;
}
.contact-list__item-icon img {
  display: block;
  -o-object-fit: contain;
  object-fit: contain;
}
.contact-list__item-text strong {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
}

.contact-list__item-text_footer {
  color: #F3D208;
  font-size: 16px;
  margin-bottom: 15px;
}

.rating-set__body {
  position: relative;
  width: 136px;
  height: 20px;
}
.rating-set__body:before {
  content: url("../img/rating-set-lower.png");
  display: block;
  width: 100%;
  height: 100%;
}
.rating-set__active {
  position: absolute;
  width: 0;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
}
.rating-set__active:before {
  content: url("../img/rating-set-upper.png");
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.rating-set__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.rating-set__item {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 20%;
  flex: 0 0 20%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

@-webkit-keyframes top-down {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  25% {
    -webkit-transform: translateY(4px);
    transform: translateY(4px);
  }
  50% {
    -webkit-transform: translateY(-4px);
    transform: translateY(-4px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes top-down {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  25% {
    -webkit-transform: translateY(4px);
    transform: translateY(4px);
  }
  50% {
    -webkit-transform: translateY(-4px);
    transform: translateY(-4px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@-webkit-keyframes moving {
  from {
    -webkit-transform: translateX(50px);
    transform: translateX(50px);
    opacity: 0;
  }
  to {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes moving {
  from {
    -webkit-transform: translateX(50px);
    transform: translateX(50px);
    opacity: 0;
  }
  to {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}
.title-xl {
  font-family: "Open Sans", sans-serif;
  font-weight: 800;
  margin: 0;
  font-size: clamp(36px, 5vw, 48px);
  color: #fff;
}
.title-xl p:not(:last-child) {
  margin-bottom: 10px;
}

.title-l {
  font-family: "Open Sans", sans-serif;
  font-weight: 800;
  margin: 0;
  font-size: clamp(30px, 4.5vw, 48px);
  color: #fff;
}
.title-l p:not(:last-child) {
  margin-bottom: 10px;
}

.title-m {
  font-family: "Open Sans", sans-serif;
  font-weight: 800;
  margin: 0;
  font-size: clamp(22px, 4vw, 34px);
  color: #fff;
}
.title-m p:not(:last-child) {
  margin-bottom: 10px;
}

.title-s {
  font-family: "Open Sans", sans-serif;
  font-weight: 800;
  margin: 0;
  font-size: clamp(18px, 3vw, 26px);
  color: #fff;
}
.title-s p:not(:last-child) {
  margin-bottom: 10px;
}

.btn-reset {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: none;
  padding: 0;
  background-color: transparent;
  cursor: pointer;
}

.btn {
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  padding: 16px 24px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 14px;
  color: #fff;
  background-color: #163acf;
  text-align: center;
  -webkit-box-shadow: 0 8px 18px 0 rgba(20, 66, 252, 0.1), 0 33px 33px 0 rgba(20, 66, 252, 0.09), 0 74px 45px 0 rgba(20, 66, 252, 0.05), 0 132px 53px 0 rgba(20, 66, 252, 0.01), 0 206px 58px 0 rgba(20, 66, 252, 0);
  box-shadow: 0 8px 18px 0 rgba(20, 66, 252, 0.1), 0 33px 33px 0 rgba(20, 66, 252, 0.09), 0 74px 45px 0 rgba(20, 66, 252, 0.05), 0 132px 53px 0 rgba(20, 66, 252, 0.01), 0 206px 58px 0 rgba(20, 66, 252, 0);
  -webkit-transition: color ease 0.3s, background-color ease 0.3s;
  transition: color ease 0.3s, background-color ease 0.3s;
}
@media (min-width: 800px) {
  .btn {
    padding: 16px 34px;
    font-size: 16px;
  }
}
@media (any-hover: hover) {
  .btn:hover {
    color: #fff;
    background-color: rgba(22, 58, 207, 0.8);
  }
}

.btn-outline {
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  padding: 16px 24px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 14px;
  color: #00152b;
  background-color: transparent;
  text-align: center;
  border: 2px solid #163acf;
  -webkit-transition: color ease 0.3s, background-color ease 0.3s;
  transition: color ease 0.3s, background-color ease 0.3s;
}
.btn-outline:active {
  color: #fff;
  background-color: #112da1;
}
.btn-outline:visited {
  color: #1B4DFF;
}
.btn-outline:focus {
  outline: none;
  -webkit-box-shadow: 0 0 4px #163acf;
  box-shadow: 0 0 4px #163acf;
}
@media (min-width: 800px) {
  .btn-outline {
    padding: 16px 34px;
    font-size: 16px;
  }
}
@media (any-hover: hover) {
  .btn-outline:hover {
    color: #fff;
    background-color: #163acf;
  }
}

.btn-close {
  position: relative;
  display: block;
  width: 20px;
  height: 20px;
  -webkit-transition: -webkit-transform ease 0.3s;
  transition: -webkit-transform ease 0.3s;
  transition: transform ease 0.3s;
  transition: transform ease 0.3s, -webkit-transform ease 0.3s;
}
.btn-close:before, .btn-close:after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 3px;
  background-color: #afB8bf;
  border-radius: 2px;
}
.btn-close:before {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.btn-close:after {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
@media (any-hover: hover) {
  .btn-close:hover {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
  }
}

.burger {
  position: relative;
  border: none;
  padding: 0;
  width: 20px;
  height: 14px;
  color: #00152b;
  background-color: transparent;
  cursor: pointer;
}
.burger::before, .burger::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: currentColor;
  border-radius: 1px;
  -webkit-transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.burger::before {
  top: 0;
}
.burger::after {
  top: calc(100% - 2px);
}
.burger__line {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 2px;
  background-color: currentColor;
  border-radius: 1px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.burger.active::before {
  top: 50%;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.burger.active::after {
  top: 50%;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.burger.active .burger__line {
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}

.rating {
  position: relative;
  width: 100px;
  height: 16px;
}
.rating-upper, .rating-lower {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-position: left center;
  background-size: cover;
  background-repeat: no-repeat;
}
.rating-upper {
  background-image: url("../img/rating-upper.svg");
  z-index: 6;
}
.rating-lower {
  background-image: url("../img/rating-lower.svg");
}
@media (min-width: 1024px) {
  .rating {
    width: 124px;
    height: 20px;
  }
}

.nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.nav li {
  font-size: 18px;
  text-align: center;
}
.nav li:not(:last-child) {
  margin-bottom: 36px;
}
.nav li.active {
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
}
.nav li.active a:before {
  width: 100%;
}
@media (any-hover: hover) {
  .nav li:hover a:before {
    width: 100%;
  }
}
.nav li a {
  position: relative;
  padding-bottom: 5px;
  display: inline-block;
  font-size: inherit;
  color: #00152b;
}
.nav li a:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 3px;
  background-color: #163acf;
  -webkit-transition: width ease-in 0.2s;
  transition: width ease-in 0.2s;
}
@media (min-width: 1200px) {
  .nav ul {

    display: flex;
    align-items: center;
    justify-content: space-between;
 
  }
  .nav li {
    font-size: 16px;
  }
  .nav li:not(:last-child) {
    margin-bottom: 0;
  }
}
@media (min-width: 1280px) {
  .nav ul {
    /* gap: 10px 18px; */
    display: flex;
    justify-content: space-between;
  }
}
/* @media (min-width: 1440px) {
  .nav ul {
    gap: 10px 34px;
  }
} */

.feedback-form {
position: relative;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
padding: 38px !important;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
background-color: #fff;
-webkit-box-shadow: 0 14px 24px 0 rgba(0,21,43,.05);
box-shadow: 0 14px 24px 0 rgba(0,21,43,.05);
transition: all ease .3s;
min-width: 320px;
width:100%;
}

.feedback-form.hide {
  display: none;
  opacity: 0;
  transform: scale(0);
}

.feedback-form .just-validate-error-label {
  margin-top: 4px;
  font-size: 12px;
}

.feedback-form__spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.feedback-form br {
  display: none;
}
.feedback-form .wpcf7-list-item {
  margin: 0;
}
@media (min-width: 800px) {
  .feedback-form {

  }
}
.feedback-form__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.feedback-form__title {
  max-width: 240px;
  font-size: clamp(18px, 3vw, 24px);
  color: #00152b;
}
@media (min-width: 768px) {
  .feedback-form__title {
    max-width: 340px;
  }
}
@media (min-width: 1024px) {
  .feedback-form__title {
    max-width: 400px;
  }
}
.feedback-form__label {
  display: block;
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  margin: 20px 0 0 0;
  width: 100%;
  font-size: 12px;
}
.feedback-form__label:first-child {
  margin: 0;
}
@media (min-width: 800px) {
  .feedback-form__label {
    font-size: 14px;
  }
}
.feedback-form__rating-set {
  margin: 10px 0 0 0;
}
.feedback-form__input, .feedback-form__area, .wpcf7-phonetext {
  display: block;
  margin: 10px 0 0 0;
  padding: 18px;
  width: 100%;
  font-size: 12px;
  font-weight: 400;
  background-color: transparent;
  color: #00152b;
  outline: none;
  border: 1px solid #d9d9d9;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}
.feedback-form__input:focus, .feedback-form__area:focus {
  color: #000;
  border-color: #00152b;
}
.feedback-form__input::-webkit-input-placeholder, .feedback-form__area::-webkit-input-placeholder {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}
.feedback-form__input::-moz-placeholder, .feedback-form__area::-moz-placeholder {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}
.feedback-form__input:-ms-input-placeholder, .feedback-form__area:-ms-input-placeholder {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}
.feedback-form__input::-ms-input-placeholder, .feedback-form__area::-ms-input-placeholder {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}
.feedback-form__input::placeholder, .feedback-form__area::placeholder {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}
.feedback-form__label--select{
	position: relative;
}
.feedback-form__label--select span::before {
	position: absolute;
    content: "";
    width: 16px;
    height: 16px;
    background: url(../../assets/mainpage/chevron.png);
    right: 31px;
    top: 19px;
    background-size: contain;
}
@media (min-width: 800px) {
  .feedback-form__input, .feedback-form__area {
    padding: 18px 22px;
    font-size: 14px;
  }
}
.feedback-form__select option[selected] {
  font-size: 12px;
  color: #00152b;
}
@media (min-width: 375px) {
  .feedback-form__select option[selected] {
    font-size: calc(0.2574002574vw + 11.0347490347px);
  }
}
@media (min-width: 1152px) {
  .feedback-form__select option[selected] {
    font-size: 14px;
  }
}
.feedback-form__item {
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  margin: 20px 0;
  font-size: 12px;
}
.feedback-form__item:last-child {
  margin: 32px 0 0 0;
}
@media (min-width: 800px) {
  .feedback-form__item {
    font-size: 14px;
  }
}
.feedback-form__input-radio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  
  /* display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 20px;
  margin: 10px 0 0 0; */
}
.feedback-form__input-radio .wpcf7-list-item label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  -webkit-column-gap: 4px;
  -moz-column-gap: 4px;
  column-gap: 4px;
  cursor: pointer;
}
.feedback-form__item-point label {
  font-size: 12px;
  cursor: pointer;
}
@media (min-width: 800px) {
  .feedback-form__item-point {
    -webkit-column-gap: 10px;
    -moz-column-gap: 10px;
    column-gap: 10px;
  }
  .feedback-form__item-point label {
    font-size: 14px;
  }
}
.feedback-form__input-radio .wpcf7-list-item input {
    display: block;
    appearance: none;
    width: 12px;
    height: 12px;
    background-color: transparent;
    border: 1px solid #afb8bf;
    border-radius: 100%;
    cursor: pointer;
    -webkit-transition: all ease 0.3s;
    transition: all ease 0.3s;
}
.feedback-form__input-radio .wpcf7-list-item input:checked {
  background-color: #00152b;
}
.feedback-form__area {
  padding: 10px 10px;
  height: 100px;
  resize: vertical;
}

@media (min-width: 767px) {
  .feedback-form__area {
    height: 120px;
  }
}

.feedback-form__area:focus {
  color: #000;
  border-color: #00152b;
}
.feedback-form__area::-webkit-input-placeholder {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}
.feedback-form__area::-moz-placeholder {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}
.feedback-form__area:-ms-input-placeholder {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}
.feedback-form__area::-ms-input-placeholder {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}
.feedback-form__area::placeholder {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}
.feedback-form__description {
  margin: 40px 0 0 0;
  font-size: 10px;
  color: #afb8Bf;
  text-align: center;
}
h2.chimkorisni {
  font-family: Open Sans;
  font-size: clamp(22px,4vw,34px);
  font-weight: 800;
  line-height: 62px;
  text-align: center;
  margin-bottom: 40px;
}
@media (min-width: 800px) {
  .feedback-form__description {
    font-size: 12px;
  }
}
.feedback-form__button {
  display: block;
  padding: 18px 30px;
  max-width: 300px;
  width: 100%;
  margin-top: 40px;
}
.wpcf7-spinner {display: none;}
@media (min-width: 767px) {
  .feedback-form__button {
    margin: 34px auto 0;
  }
}
@media (min-width: 800px) {
  .feedback-form__button {
    padding: 24px 30px;
  }
}
.feedback-form .choices:after {
  content: url("../img/select-arrow.svg");
  display: block;
  margin: 0;
  height: unset;
  width: unset;
  border: none;
  border-radius: 0;
  position: absolute;
  right: 24px;
  top: 24px;
  -webkit-transition: -webkit-transform ease 0.2s;
  transition: -webkit-transform ease 0.2s;
  transition: transform ease 0.2s;
  transition: transform ease 0.2s, -webkit-transform ease 0.2s;
  pointer-events: none;
}
.feedback-form .choices.is-open:after {
  margin: 0;
  -webkit-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  transform: rotate(-180deg);
  border: none;
}
@media (min-width: 800px) {
  .feedback-form .choices:after {
    top: 30px;
  }
}
.feedback-form .choices__inner {
  margin: 10px 0 0 0;
  padding: 18px 36px 18px 18px !important;
}
.feedback-form .choices__inner option[selected] {
  font-size: 12px;
  color: #00152b;
}
@media (min-width: 375px) {
  .feedback-form .choices__inner option[selected] {
    font-size: calc(0.2574002574vw + 11.0347490347px);
  }
}
@media (min-width: 1152px) {
  .feedback-form .choices__inner option[selected] {
    font-size: 14px;
  }
}
@media (min-width: 800px) {
  .feedback-form .choices__inner {
    padding: 22px 36px 22px 18px !important;
  }
}
.feedback-form .choices__list--single {
  padding: 0;
}
.feedback-form .choices__item--selectable {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 12px;
  color: #00152b;
  opacity: 1;
}
@media (min-width: 375px) {
  .feedback-form .choices__item--selectable {
    font-size: calc(0.2574002574vw + 11.0347490347px);
  }
}
@media (min-width: 1152px) {
  .feedback-form .choices__item--selectable {
    font-size: 14px;
  }
}

.review-message {
  position: relative;
  padding: 38px;
  background-color: #fff;
  transition: all ease .3s;
}

.review-message.hide {
  display: none;
  opacity: 0;
  transform: scale(0);
}

.review-message__text {
  margin: 0 auto;
  max-width: 85%;
  width: 100%;
  font-size: 18px;
  color: #00152b;
  text-align: center;
}

.review-message__close {
  position: absolute;
  top: 10px;
  right: 20px;
}
.phone-form {
  position: relative;
}
.phone-form .wpcf7-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.phone-form--footer {
  max-width: 440px;
  padding: 0 25px 25px;
}
.phone-form--footer .phone-form__label,
.phone-form--footer .phone-form__input {
  color: #fff;
}
.phone-form--footer .phone-form__input {
  border-top: none;
  border-right: none;
  border-left: none;
}
.phone-form--footer .phone-form__input:focus {
	color: #fff;
	border-color: #fff;
}
.phone-form--footer.sent .wpcf7-response-output {
	color: #fff;
}
@media (min-width: 768px) {
  .phone-form--footer .phone-form__label {
    width: calc(40% - 8px);
  }
  .phone-form--footer .phone-form__btn {
    width: calc(60% - 8px);
  }
  .phone-form--footer .phone-form__input {
    padding: 18px 16px;
  }
}
.phone-form br {
  display: none;
}
@media (min-width: 768px) {
  .phone-form p {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 16px;
  }
}
.phone-form__label {
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  font-size: 12px;
  display: block;
  color: #00152b;
}
@media (min-width: 375px) {
  .phone-form__label {
    font-size: calc(0.2574002574vw + 11.0347490347px);
  }
}
@media (min-width: 1152px) {
  .phone-form__label {
    font-size: 14px;
  }
}
@media (min-width: 768px) {
  .phone-form__label {
    width: calc(50% - 8px);
  }
}
.phone-form__input {
  display: block;
  margin: 10px 0 0 0;
  padding: 18px;
  width: 100%;
  font-size: 12px;
  background-color: transparent;
  color: #00152b;
  outline: none;
  border: 1px solid #d9d9d9;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}
.phone-form__input:focus {
  color: #000;
  border-color: #00152b;
}
.phone-form__input::-webkit-input-placeholder {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}
.phone-form__input::-moz-placeholder {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}
.phone-form__input:-ms-input-placeholder {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}
.phone-form__input::-ms-input-placeholder {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}
.phone-form__input::placeholder {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}
@media (min-width: 768px) {
  .phone-form__input {
    padding: 18px 22px;
    font-size: 14px;
  }
}
.phone-form__btn {
  margin: 14px 0 0 0;
  width: 100%;
}
@media (min-width: 768px) {
  .phone-form__btn {
    margin: 0;
    padding: 19px 24px;
    width: calc(50% - 8px);
    -ms-flex-item-align: end;
    align-self: flex-end;
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 16px 0;
  background-color: #fff;
  -webkit-box-shadow: 0 14px 24px 0 rgba(0, 21, 43, 0.05);
  box-shadow: 0 14px 24px 0 rgba(0, 21, 43, 0.05);
  z-index: 200;
}
@media (min-width: 800px) {
  .header {
    padding: 32px 0;
  }
}
.header__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  max-width: 1360px;
gap: 15px;
}
.header__logo {
  position: relative;
  z-index: 20;
}
.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 80px 36px 40px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  opacity: 0;
  -webkit-transform: translateY(-120%);
  -ms-transform: translateY(-120%);
  transform: translateY(-120%);
  -webkit-transition: opacity ease-in 0.6s, -webkit-transform ease-in 0.6s;
  transition: opacity ease-in 0.6s, -webkit-transform ease-in 0.6s;
  transition: transform ease-in 0.6s, opacity ease-in 0.6s;
  transition: transform ease-in 0.6s, opacity ease-in 0.6s, -webkit-transform ease-in 0.6s;
}
/* .header__inner:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 58px;
  -webkit-box-shadow: 0 14px 24px 0 rgba(0, 21, 43, 0.05);
  box-shadow: 0 14px 24px 0 rgba(0, 21, 43, 0.05);
  opacity: 0;
} */
.header__inner.active {
  opacity: 1;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}
.header__inner.active:before {
  opacity: 1;
}
@media (min-width: 800px) {
  .header__inner {
    padding: 160px 36px 56px;
  }
  .header__inner:before {
    height: 105px;
  }
}
@media (min-width: 1024px) {
  .header__inner {
    padding: 160px 36px 30px;
  }
}
@media (min-width: 1200px) {
  .header__inner {
    /* display: flex;
    align-items: center;
    justify-content: space-between; */
    padding: 0;
    position: static;
    /* flex-direction: row;
    column-gap: 10px; */
    top: unset;
    left: unset;
    /* width: 81%; */
    height: unset;
    background-color: transparent;
    opacity: unset;
    transform: unset;
    transition: unset;
    display: block;
    max-width: 1152px;
    margin: 0 auto;
  }
  .header__inner:before {
    display: none;
  }
  .header__inner .header__contact{
    display: none;
  }
  .header .logo{
    display: none;
  }
  .header .centerJsInsertetLogo{
    display: flex;
    margin: 0 30px;
  }
  .header{
    min-height: 105px;
  }
}
/* @media (min-width: 1660px) {
  .header__inner {
    width: 68%;
  }
} */
.header__nav {
  margin: auto 0;
}
@media (min-width: 1200px) {
  .header__nav {
    margin: 0;
  }
}
.header__contact {
  display: block;
  text-align: center;
}
.header__contact-btn {
  margin: 20px auto;
  width: 100%;
  color: #fff;
  background-color: #163acf;
  -webkit-box-shadow: 0 8px 18px 0 rgba(20, 66, 252, 0.1), 0 33px 33px 0 rgba(20, 66, 252, 0.09), 0 74px 45px 0 rgba(20, 66, 252, 0.05), 0 132px 53px 0 rgba(20, 66, 252, 0.01), 0 206px 58px 0 rgba(20, 66, 252, 0);
  box-shadow: 0 8px 18px 0 rgba(20, 66, 252, 0.1), 0 33px 33px 0 rgba(20, 66, 252, 0.09), 0 74px 45px 0 rgba(20, 66, 252, 0.05), 0 132px 53px 0 rgba(20, 66, 252, 0.01), 0 206px 58px 0 rgba(20, 66, 252, 0);
}
@media (min-width: 576px) {
  .header__contact-btn {
    width: 70%;
  }
}
@media (min-width: 768px) {
  .header__contact-btn {
    width: 50%;
  }
}
.header__contact-icon {
  display: none;
}
@media (min-width: 1200px) {
  .header__contact {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .header__contact-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0;
    width: unset;
    font-size: 16px;
    font-weight: 700;
    color: #00152b;
    background-color: transparent;
    -webkit-box-shadow: unset;
    box-shadow: unset;
    -webkit-column-gap: 5px;
    -moz-column-gap: 5px;
    column-gap: 5px;
  }
  .header__contact-btn:last-child {
    margin-left: 10px;
    padding-left: 10px;
    border-left: 1px solid #D9D9D9;
  }
  .header__contact-icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    max-width: 20px;
    max-height: 21px;
  }
  .header__contact-icon img {
    display: block;
    -o-object-fit: contain;
    object-fit: contain;
  }
}
@media (min-width: 1280px) {
  .header__contact-btn {
    font-size: 18px;
  }
}
@media (min-width: 1200px) {
  .header__burger {
    display: none;
  }
}

.footer {
  padding-top: 45px;
  margin: auto 0;
  padding-bottom: 60px;
  background-image: url("../img/contact-hero.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media (min-width: 375px) {
  .footer {
    padding-top: calc(9.6525096525vw + 8.8030888031px);
  }
}
@media (min-width: 1152px) {
  .footer {
    padding-top: 120px;
  }
}
.footer--contact {
  padding-top: 0;
  background: none;
}
.footer__container {
  max-width: calc(1152px + 16px * 2);
}
.footer__top {
  display: flex;
  flex-direction: column;
}
@media (min-width: 1200px) {
  .footer__top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    flex-wrap: wrap;
    flex-direction: row;
  }
}
.contact__content {
  position: relative;
  margin-bottom: 20px;
}
.footer__top-content {
  position: relative;
  order: 1;
  margin-bottom: 20px;
  display: inline-block;
  width: 49%;
  vertical-align: top;
}
.footerform {
  display: inline-block;
  width: 49%;
  vertical-align: top;
}
.map-blocks {
  order:3;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}



.map-block {
  position: relative;
}

.map-block__map-link {
  position: relative;
  display: block;
}

.map-block__map-link::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAHEAAAB/CAMAAADvqt2SAAAAzFBMVEUAAAD32C763Qf63Qf73Qf51yP62Bv51xT73gf72BP52w373Aj63Af63An62wb62gn72gb51gr62gr51xD62gn62gX62Qb62xD62gz62wf73Aj41Qj62Qb62Qn41gv62gb73gf62gb62Qv51wr62Av63Aj62wb52gb62Qf62Qj52Qn73Aj52Aj73Aj62gb62An61wb62Qf62Aj73gf63Aj62Qj63Af61wb73gj74Qj62Qf62Qf84Qn62gf62Ab62Ab62wf52Ab52Ab51gaoUjS4AAAAQ3RSTlMABoqIjgkLDosRF3hvdWkqUB82EyZfVhUabHIiWTwcXJBTMi0whmZiSkQ5gEGDZCTyTEeTfD+a7rC2usSyrM3Vot7l9/+S+QAADixJREFUaN7s1G9TogAQBvBsOk1QUBEhxb8wAkYgXFpjY6fT9/9O9+wuejmTh3Z2r3pytOnNr2d35eo73/kvKXF+lPa5wuurQhKl/D70h9z+gmbAKuVyBalWqgh9UkgW9oKcVCPHMAzLUhTFUvjNMqoGuTv0QmCusWXbg8GgmQe/2rZCLFSYQC+zO+JEA9brJUlbkiRJrwdX1D1aukQ94tCsR5auu67r4Yei63BZVSzLwHiZ/Kd+OA8DO7OJI8vzJpPWPpOJx2qbUYuKfn6hMk+AVA8cunkesNms3+8vJP3+bDZrkYoR97holU2gnxDhcUF4XI84WFEUhmHGCbMwiuAyiqJsyj7PnS09SsRDQfJcd4JyiwhWEKRp2uCkSEAqqgoKU26IHwxnnwx7PE8PXn8RhtAAjcedXcbjcSMNoEpRXU96+9GCPAukgoqCgbZ1l7wI7VLCHGc4HJqUIcUBi7JoSibXtO28Zum8FQK0BzRQr0XjzNIGNFi+H8fTeIrgI/YBCxqE0YJNnJBs8/SWJfYsFOSBUj+q5zim6U+nmnb3J5qmTWPfB8omemK07aTJky2XS8gJHjcUkAbaX4g3JA5ardZF6nW88Fmr1cDGPprCpH22PBckDkh2eeJEGeQNomAmXgyuBkZV1fvr5Xq93ixH96pKLtBpnJtRnyYrJAZbXJKPVFbIE0VB8vwd97B52c7f9plvXzYPUIFiukPMNsBk+YAGuB9eZSEoO2wSyBNtdNCPPHDP27cPsl1fq2z6ptNppCEOyKObVYjExRaINFKDRooV0kTHDvbH3hLcsbwuxcQNyWQ9aVnllqWiM7V2IBV0zKlW4ElRNrXYdMZpQKT7jiwA0bDZ1nNwSAXr6nWBxz1v1TrX7DSyUFraSk4WN9S9HMQGu+rjCsdyQlaP9a6QgQwWF2tUy38h+VHD38M9iImqtx8VnH/0Tzxdq907jVsymTTpYCsQj1c0LBugi6MJGo4JEBucH1Lbl+flzxvKZo2vyiG5wWS1OG/p5uSxBwE/vg36XritWZQ1OmZMK1wdcK/r0Y3klt9HN+tfB+iKSZNazlpuO3/4oOSRinw1Lr74mYz0EHxaLUcj1iRCj0ZY8yFJg02zxW86y0anbSAIwlJA1ElwVQkh/lLCT0kgamiQwTExjpO8/0N1dvfm9gzEaquqcv3d7M7MMbuTjAz6fYRyj8Q+ZnqlS3y5HU8JpL7VDXgK7PV6WU+hSnSmIxESGPaOc0Uo90n0JRIYQ14oUDg9PkQW5TpFwrGno1+PQN5L9+zZpEmUJNoSJ4jFxgU2RWESDXdAZGAWReMyG0HqKlGx/5BKbHK/RJupLBGxWLgHATRepsAD/DJqRG6W8XgZcjkdY65viMiVmMdFOhASB+diG53pdHI8nMdPtKUCqVBwBjwgUZBlGw8411VKRO7u1TxuV0+/3FGS/dkbZ1pHYGHAzHkqUv4aJgsinoisba7wq/TA9blv0jWCeEaJtyP4dHgYT2xArlApHKr9mQWVxY7/p8wv6VeEEo3+lRi3GCTmr0tuBSYtVGEWFhg4FGwqVWbsp+1rfizmQSghEvV6RO8QqESV+CQSYZuGQDcNpdGn+M2F0j+bhfv15/PoVjb5vUgdqob/s8RaYwGF0MPP80lMpAUElTUPOs8tIWpXuShJ5BqDxJls8ZQSuURViA8/cIThUSaRYh+o3HkPyCYfNZNogS/E/on4xvrt+eIyStwUTEUipqhqPE1pJ5GjQGywD4+6G+YXz6hXKx64lflwp15foW7epN8mx3nJYNgOuTH5blFHR+5WifgsqGxpV2QSXYfigXdkkQSSiDDaUMfimzUlWg4zV8jSZr0n8g25YRFjrCgetKuOlYuMxDhU880iSLxh8u2bhx5yrwdHWvvsOt5B1WkksciucYQoYewOtYm5MBHl0lFeED4BRTYc69AiibHqItMfPlCqZ4g/hmp9w6EuDEhidojj70f2iFyw6myscCtKQBLZyf9AiOZUrHHHoVKhddl6z8+N4R0iw2vL4SXcqk2HRZ71O3uEcbhGZCOfh09VsUx1ZE0qLJ1vo2Zm99xU4Z9lkczH9QBmdaAR2am+xpIjtW/5dVlXeOptTIm9RmTp+ZhIPsw6nXgE4ozGqcKH/b7oSGyrD32q1kVmwgvu4SIrEKeWSCH+SInScbgaw12ch3LcEmhnbxPg+/s7kdwkkOzALa1j97KadXBCIuOIGo9WbfkdJYau4VCXBlRmtQymxotuHjpsrUQzq8WjE0fpOFhVbyqekdnHdxB+XiYVgETWceM8mvQAZyREmDUh8jGN8foncUWJnTVWCbH64CKztAZWwVAk/hbi2VeNehuPhbgkUZAMdxUGaEPlWBfhVZ2GExlIJT5JBXQ1JsRRh5jef6tPxJURmdykz50YfjinRvJ8j39fjLj7juhTTTVyqvHNrBeJW94ee51Dr+ZxjwkyK9057lU6Z6Pv0dW1ExOvHoHoneN5FCLd3SF6OoAEUztgy3Q40fu3jen4Q43JhXzuneMNQOKD3vEx7hU7p2K1txlfU41MV2g5JQ5UoyPTXr3IG55cifiSIrlIzDU8dWy5/+2b247TQAyGoVlQURsJEKy2Sy84KCAaWgKFtqTqgb7/Q/Hbnn88IRvthi1XYMQZ+uHjeMbG/5TUnDWrHNs5VLlWJbez4yvODlwAmOzLoROLbFAR8PPHbrPZ+XtSNcCfcaJX8slCiH52OFIaK7Q5dlOdXPO0ql3HOT5ulxxWp59r/1md4fdFLDkYwCXPRzQ6OJEfPUq7DhAZrEwPDx3wRIpMPdmWA4AipuMFS/4pLasg0o2eHhY6l0noVIE4D2IOancd83lZlkrkOcqjg4FjRa7dksfQWaXnnhJLkfnyxs6qhCjSdNylbmTgMDk8dLRffU5HluweQYRRlfcNUrI1dPn5Gr8DUSJ0jEatRqkbPTmcCEeyBngztzSk8UYjfPN7h1zi1/U3jOiRuud5LG70UPXrI65WmpFfGmbdChE62ufmI8igXjtvjl/O5WFZlQTRDg52OZYbVnFIjI6EknZ9tP6xopLDoRLtk+2JPL/Y1Pv9dneR2y8pEsSiGCTF0I3aulvRrJYfUuhg1rqppBLxIn6zXIMoVoVRo4obi9TQH/Pa4US7sUq0frSyU7qSThxj3tASnQ7kQhQVl3TzgM0qjOp3ZCf6ldVix186tshIIX6DAQX4fmHyAXMOfPcezEiEilvGDU8qnMbaOvodwB0pSnqXPIgPD1BSiDAqpgzvdYxjE6SXGLnoECQAsyEOUaroVVwjlSo2HwIkJdFehWZnGxtuU3KU21wDtOl0ejmFAGpzEBr14uAqTuT45+sKI7VpVo0dP7LmFWNAlCRRpjeYGclU7hJUTHqCjho3NQ0TVZyZik5sxI7dWmd86ox/fTnIpAZI5ChRh4BPhWlExKoZNT7n1NY38m3FRy3N/FAl6UkJ1zXtOsyCkjYtAk8lEINRrUtgLroXkRp+W20niHgytjsxDGpLkByhs1AdDajEhRgVFQf1po4tAR8C+XzUQURnrkr6c+chvltZ7FyPxZFiVRJt4GMqyj+QYcNcVC+qUTveyalk6LDKisjXUBJmxSdBSUW+cRVHIwnU6MT1IHZUKHAh+0lseRKtAIKHFxC368kTRJGX4CnQvXhKbcrb+ItuFUHUcOUDpNg1fWPdZ8GuE0nJKQQ8G9pZ9sc/udUSzrdVBCqzv2OIRLsyXuO/vI5IGamKfNDkdyDj1E4pfZB7oY/kJHaNWNSuCB6zq7eMm4yGnaDWQcCL9a32RjK3VGyETRfxwSO+XWtSql3zY/ysY0DizJqojMcBWPjQ4IjcN5vOxKZ4lO8e0/NhN7WrIGtHFkAKM79WycFTDY9VY9YhY6vvM6ai27Q7eK5eccyiL/T7iFxlwpSOB8JOo8iYF3yRl0MKNtU4ZfLfMvKMoyRDnhypvWQZZG7dmwNPHCCZE9Wmj28h+kQQyK8hesq1G1bv+7xl6DXDTbrOAORkpTUJ7PZkqOjoeTQrNWATpD4NAjQMr/EJcJAzatSJnXHaLq+cXftQMHNk/bohdQto1U2cyAp+txUEuFJ7SUGalpT9MhFLfAK167dzX+tpMgW8sys/cZrcRK6CMIypIYBMfXfi7UQb03H2SS0zRx6OxjseHJg1gLK90jGy7nIlkKZlw7AePwpcp0PyMaecHqacN9xFSy4iKJJT8xS5W602VdOkmvmWF5r6tOndkGEHyXcfDJlc5fZb//Ep+FCBMq0Wk/YA0q44uGz74XtElocbL+WlANWkkojQkLWmBzFoecUND0ZsY1jvtVQqjQUNElFNSif21pI7Hp/CUskNyA2KN4HpXg6BPdQk0vIS1WeqrWlzyFLhXurLI7ZxYEciib2RFrFcDhLLFgnyVEBB3cnhGlB/HzqxiZwBqZZFa5M0UeBBQQHOUmB/YlrvrBRwyUtvNpb71XFiDbMGKYDdUdozL21zDkhRU68aC3SV1WFk3bIuVs10ZY1AJ/6pL3WFBtuPYVkPUBHghKcKIiu0lj5hMb0v8ipdSJRLlQpuH7Zi+dZWxzwP74kUZ2otwNIlmFxh/SJrpFzp/EwgW8V7ahnWILnIqpuzXz9+xDan8rhbyaXVMyDFslJlwXwHKKgitpkLg4qC3Vnxx4kphR0BBCagoL6FYBFYeIhRc+FZgN77SAAFKMR2yQX37Ao8OX/Z1JwNicyMi+yvYGAuzGNfPl2vPjNTt9lBhQAGmq7n91pb77+wjxiCqun/fBAeFTwnEUhdopc1cxgYaIEp7vFDD5mzYwVKASxoR9z5iUFX+QIRzYj7uyIQI+nXB//lX5RfzhCuVjlXK3cAAAAASUVORK5CYII=') center / cover no-repeat;
  width: 36px;
  height: 36px;
  animation: jump .5s infinite alternate;
}

.map-blocks__item:nth-child(1) .map-block__map-link::after{
	left: 13%;
    top: -8%;
}

.map-blocks__item:nth-child(2) .map-block__map-link::after{
	left: -10%;
    top: -11%;
}

.map-blocks__item:nth-child(3) .map-block__map-link::after{
    top: -8%;
    left: 10%;
}
.map-blocks__item:nth-child(4) .map-block__map-link::after{
	top: 31.5%;
	left: 29.8%;
}
.map-blocks__item:nth-child(5) .map-block__map-link::after{
	bottom: 5.5%;
	left: 1%;
}

.map-blocks__item:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    justify-self: center;
	max-width: 536px;
}


.map-block__location {
  position: relative;
  z-index: 1;
  margin-right: 17px;
}
.map-block__text {
  z-index: 10;
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  margin: 23px 0 0 0;
  position: relative;
  font-size: 20px;
  line-height: 1.3;
  color: #fff;
}

.map-block__address {
  position: relative;
  color: #fff;
  text-align: center;
  font-size: 20px;
}

.map-block__text a {
  color: #f9d606;
  text-decoration: underline;
}

.map-block--centered .contact-list__item-link {
  justify-content: center;
}
.map-block--centered .map-block__text {
  text-align: center;
}


.footer__title {
  text-align: center;
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  font-size: 52px;
}
.ffotmtit {font-size: 20px; font-weight: bold; margin-bottom: 30px;}
.footerform .feedback-form {
  background: none !important; box-shadow: none !important; padding: 0px !important;
}
.footerform .feedback-form__button {margin: 0px; margin-top: 30px;}
.footer__description {
  text-align: center;
  width: 100%;
  margin: 0 auto;
  margin-bottom: 60px;
}

.footer__title {
  font-size: clamp(26px, 4vw, 40px);

}
.footer__description {
  margin-top: 16px;
  font-size: clamp(14px, 3vw, 16px);
  line-height: 1.3;
  color: #fff;
}
@media (min-width: 375px) {
  .footer__description {
    margin-top: calc(-1.0296010296vw + 19.861003861px);
  }
}
@media (min-width: 1152px) {
  .footer__description {
    margin-top: 8px;
  }
}
.footer__contact-list {
  margin: 34px 0 0 0;
  position: relative;
  z-index: 5;
}
.footer__top-form {
  margin: 54px auto 0;
  width: 100%;
  order: 4;
  background: #fff;
  padding: 38px;
  box-shadow: 0 14px 24px 0 rgba(0, 21, 43, 0.05);
  transition: all ease .3s;
}
.hero__form {
  background: #fff;
  padding: 38px;
  box-shadow: 0 14px 24px 0 rgba(0, 21, 43, 0.05);
  transition: all ease .3s;
}

@media (min-width: 1200px) {
  .footer__top-form {
    margin: 0;
/*     margin-bottom: 100px; */
    margin-bottom: 80px;
    order: 2;
  }
}

.contact__map-link,
.footer__map-link {
  position: relative;
  display: block;
  width: 100%;
  text-align: center;
}


.footer__map-pin {
  position: absolute;
  top: 100px;
  left: 180px;
  width: 32px !important;
  height: 32px !important;
  margin: 0 !important;
  animation: jump .5s infinite alternate;
}

@media (max-width: 1199px) {
  .footer__map-pin {
    top: 25%;
    left: 40%;
  }

  .map-block__map-pin {
    top: 25%;
    left: 40%;
  }

  .location {
    gap: 12px;
    font-size: 18px;
  }
  .location::before {
    width: 22px;
    height: 26px;
  }

  .map-blocks {
    gap: 50px;
  }

  .map-block__text,
  .map-block__address {
    font-size: 18px;
  }
}

@media (max-width: 767px) {
  .footer__map-pin {
    top: 30%;
    left: 35%;
  }

  .map-block__map-pin {
    top: 30%;
    left: 35%;
  }

  .location {
    gap: 10px;
    font-size: 16px;
  }
  .location--centered {
    grid-template-columns: auto 1fr;
    justify-content: stretch;
  }

  .map-blocks {
    grid-template-columns: 1fr;
    gap: 30px;
  }


  .map-block__text {
    margin-top: 15px;
    font-size: 16px;
  }

  .map-block__address {
    font-size: 16px;
  }

/*   .map-block--kyiv .map-block__map-link {
    margin: -51px 0 -68px 5px;
  }

  .map-block--kyiv .map-block__map-link::after {
    width: 36px;
    height: 36px;
  }
	
  .map-block--odessa .map-block__map-link::after {
    width: 36px;
    height: 36px;
  } */

  /* .map-block + .map-block {
    margin-top: 80px;
  } */
}

@media (max-width: 575px) {
/*   .map-block--kyiv .map-block__map-link {
    margin: 0 -20px;
  } */
}

@media (max-width: 767px) {
  .footer__map-pin.pin-lviv {
    top: 20%;
    left: 35%;
  }

  .map-block__map-pin--lviv {
    top: 20%;
    left: 35%;
  }
}

@media (min-width: 768px) {
  .footer__map-link img {
    margin: -60px 0 0 0;
    width: 70%;
  }

  .map-block__map-img {
    min-height: 576px;
  }

  /* .map-block__map-link {
    margin: -60px 0 0 0;
    width: 70%;
  } */
}

@media (min-width: 1200px) {
  .footer__map-link img {
    width: 100%;
    -webkit-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2);
  }

  .map-block__map-link {
    width: 100%;
    margin: -90px 0 -178px -22px;
  }
}
.footer__bottom {
  margin-top: 50px;
  padding-top: 54px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 40px;
  border-top: 1px solid #fff;
}
.footer__bottom .wpcf7 {
  order: 2;
}
.footer__bottom .wpcf7 form.invalid .wpcf7-response-output {
  color: #fff;
}
@media (min-width: 375px) {
  .footer__bottom {
    margin-top: calc(8.4942084942vw + 18.1467181467px);
  }
}
@media (min-width: 1152px) {
  .footer__bottom {
/*     margin-top: 20px; */
    margin-top: 52px;
  }
}
@media (min-width: 375px) {
  .footer__bottom {
    padding-top: calc(1.287001287vw + 49.1737451737px);
  }
}
@media (min-width: 1152px) {
  .footer__bottom {
/*     padding-top: 64px; */
    padding-top: 40px;
  }
}
@media (min-width: 1200px) {
  .footer__bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: flex-start;
    gap: 10px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}
.footer__logo {
  max-width: 340px;
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}
@media (min-width: 800px) {
  .footer__logo {
    max-width: 340px;
  }
}
@media (min-width: 1024px) {
  .footer__logo {
    -webkit-box-ordinal-group: unset;
    -ms-flex-order: unset;
    order: unset;
  }
}
@media (min-width: 1200px) {
  .footer__logo {
    flex-shrink: 1;
  }
}
.footer__copyright {
  margin-top: 35px;
}
/* .footer__copyright {
  -webkit-box-ordinal-group: 4;
  -ms-flex-order: 3;
  order: 3;
}
@media (min-width: 1024px) {
  .footer__copyright {
    -webkit-box-ordinal-group: unset;
    -ms-flex-order: unset;
    order: unset;
  }
}
@media (min-width: 1200px) {
  .footer__copyright {
    margin: 0 0 0 160px;
    text-align: left;
    flex-shrink: 1;
  }
} */
.footer__social-list {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
  width: 100%;
}
/* @media (min-width: 1024px) {
  .footer__social-list {
    -webkit-box-ordinal-group: unset;
    -ms-flex-order: unset;
    order: unset;
  }
} */
@media (min-width: 1200px) {
  .footer__social-list {
    margin: 0 0 0 auto;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    flex-wrap: nowrap;
    width: auto;
  }
}

.sidebar {
  padding: 15px;
  background-color: #fff;
  -webkit-box-shadow: 0 14px 24px 0 rgba(0, 21, 43, 0.1);
  box-shadow: 0 14px 24px 0 rgba(0, 21, 43, 0.1);
}
@media (min-width: 1024px) {
  .sidebar {
    padding: 20px;
  }
}
.sidebar__dropdown {
  margin: 14px 0 0 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}

.sidebar__dropdown-button {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px;
  max-width: 325px;
  width: 100%;
  font-size: 12px;
  color: #00152b;
  background-color: transparent;
  border: 1px solid #d9d9d9;
  transition: all ease .2s;
}
.sidebar__dropdown-button svg {
  transition: all ease .2s;
}
.sidebar__dropdown-button.open {
  color: #163acf;
  border-color: #163acf;
  box-shadow: 0 14px 24px 0 rgba(0, 21, 43, 0.05);
}
.sidebar__dropdown-button.open svg {
  transform: rotate(-180deg);
}
.sidebar__dropdown-button.open svg path {
  stroke: #163acf;
}
.sidebar__dropdown-button.open + .sidebar__dropdown {
  max-height: 500px;
}
@media (min-width: 800px) {
  .sidebar__dropdown {
    margin: 0;
    max-height: none;
  }
  .sidebar__dropdown-button {
    display: none;
  }
}
.sidebar__caption {
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  font-size: 14px;
}
@media (min-width: 375px) {
  .sidebar__caption {
    font-size: calc(0.5148005148vw + 12.0694980695px);
  }
}
@media (min-width: 1152px) {
  .sidebar__caption {
    font-size: 18px;
  }
}
.sidebar__categories, .sidebar__caption-tag, .sidebar__tags {
  margin-top: 12px;
}
@media (min-width: 375px) {
  .sidebar__categories, .sidebar__caption-tag, .sidebar__tags {
    margin-top: calc(1.5444015444vw + 6.2084942085px);
  }
}
@media (min-width: 1152px) {
  .sidebar__categories, .sidebar__caption-tag, .sidebar__tags {
    margin-top: 24px;
  }
}

.categories {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 12px;
}
.categories__label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 10px;
  -moz-column-gap: 10px;
  column-gap: 10px;
  cursor: pointer;
}
.categories__radio-inner {
  position: relative;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  border: 1px solid #afb8bf;
  -webkit-transition: all ease 0.1s;
  transition: all ease 0.1s;
}
.categories__radio-inner:before {
  content: url("../img/check-icon.svg");
  display: block;
  position: absolute;
  top: -5px;
  left: 1px;
  z-index: 6;
}
.categories__radio {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  -webkit-transition: all ease 0.1s;
  transition: all ease 0.1s;
  cursor: pointer;
}
.categories__radio:checked {
  background-color: #163acf;
  opacity: 1;
}
.categories__label-text {
  font-size: 14px;
  -webkit-transition: all ease 0.1s;
  transition: all ease 0.1s;
}
@media (min-width: 375px) {
  .categories__label-text {
    font-size: calc(0.2574002574vw + 13.0347490347px);
  }
}
@media (min-width: 1152px) {
  .categories__label-text {
    font-size: 16px;
  }
}

.card-lawyer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  padding: 0;
  margin: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.card-lawyer.active .card-lawyer__main {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.card-lawyer.active .card-lawyer__bottom {
  opacity: 0;
}
@media (min-width: 1200px) and (any-hover: hover) {
  .card-lawyer:hover .card-lawyer__main {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
  .card-lawyer:hover .card-lawyer__bottom {
    opacity: 0;
  }
}
.card-lawyer__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 24px 20px;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
}
@media (min-width: 1024px) {
  .card-lawyer__inner {
    padding: 24px 30px;
  }
}
.card-lawyer__name {
  font-family: "Open Sans", sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: #fff;
}
@media (min-width: 375px) {
  .card-lawyer__name {
    font-size: calc(0.5148005148vw + 18.0694980695px);
  }
}
@media (min-width: 1152px) {
  .card-lawyer__name {
    font-size: 24px;
  }
}
.card-lawyer__specialization {
  font-size: 14px;
  margin: 2px 0 0 0;
  display: inline-block;
  color: #fff;
}
@media (min-width: 375px) {
  .card-lawyer__specialization {
    font-size: calc(0.5148005148vw + 12.0694980695px);
  }
}
@media (min-width: 1152px) {
  .card-lawyer__specialization {
    font-size: 18px;
  }
}
.card-lawyer__bottom {
  margin: auto 0 0 0;
  position: relative;
  -webkit-transition: opacity ease 0.4s;
  transition: opacity ease 0.4s;
  z-index: 10;
}
.card-lawyer__main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 45px 24px 30px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  background: rgba(22, 58, 207, 0.9);
  text-align: center;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transition: -webkit-transform ease 0.4s;
  transition: -webkit-transform ease 0.4s;
  transition: transform ease 0.4s;
  transition: transform ease 0.4s, -webkit-transform ease 0.4s;
  z-index: 20;
}
@media (min-width: 1024px) {
  .card-lawyer__main {
    padding: 40px 36px 50px;
  }
}
.card-lawyer__main-top {
  margin-bottom: 32px;
}
@media (min-width: 375px) {
  .card-lawyer__main-top {
    margin-bottom: calc(2.574002574vw + 22.3474903475px);
  }
}
@media (min-width: 1152px) {
  .card-lawyer__main-top {
    margin-bottom: 52px;
  }
}
.card-lawyer__info {
  font-size: 16px;
  padding: 32px 0 0 0;
  position: relative;
  line-height: 1.5;
  color: #fff;
}
@media (min-width: 375px) {
  .card-lawyer__info {
    font-size: calc(0.2574002574vw + 15.0347490347px);
  }
}
@media (min-width: 1152px) {
  .card-lawyer__info {
    font-size: 18px;
  }
}
.card-lawyer__info:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 106px;
  height: 2px;
  background-color: #fff;
}
@media (min-width: 1024px) {
  .card-lawyer__info {
    padding: 52px 0 0 0;
  }
}

.blog-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  min-height: 320px;
  background-color: #fff;
  -webkit-box-shadow: 0 14px 24px 0 rgba(0, 21, 43, 0.1);
  box-shadow: 0 14px 24px 0 rgba(0, 21, 43, 0.1);
}
@media (min-width: 800px) {
  .blog-item {
    min-height: 320px;
  }
}
.blog-item__top {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
}
.blog-item__top img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
  -o-object-fit: cover;
  object-fit: cover;
}
.blog-item__top-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 10px;
  gap: 6px;
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 6;
  box-sizing: border-box;
}
.blog-item__date {
  font-size: 12px;
  color: #fff;
}
.blog-item__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 20px 0 0 0;
  padding: 0 12px 18px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  flex: 1;
}
.blog-item__title {
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-align: center;
}
@media (min-width: 375px) {
  .blog-item__title {
    font-size: calc(0.5148005148vw + 14.0694980695px);
  }
}
@media (min-width: 1152px) {
  .blog-item__title {
    font-size: 20px;
  }
}
.blog-item__description {
  margin: 14px 0 20px 0;
  font-size: 14px;
  text-align: center;
}
.blog-item__description p:not(:last-child) {
  margin-bottom: 5px;
}
.blog-item__link {
  margin: auto 0 0 0;
  font-size: 16px;
}
.blog-item__link:before {
  top: -2px;
}

.blog-tag {
  padding: 8px 18px;
  font-size: 12px;
  color: #fff;
  border: 1px solid #fff;
}

.pagination {
  font-family: "Open Sans",sans-serif;
  font-weight: 700;
  margin: 25px auto 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px 6px;
  max-width: 700px;
  width: 100%;
  color: #163acf;
}

.pagination .current {
  font-weight: 400;
  color: #00152b;
}

.white-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 36px 20px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  background-color: #fff;
  -webkit-box-shadow: 0 14px 24px 0 rgba(0, 21, 43, 0.09);
  box-shadow: 0 14px 24px 0 rgba(0, 21, 43, 0.09);
}
@media (min-width: 1024px) {
  .white-block {
    padding: 40px 28px;
    min-height: 420px;
  }
}
.white-block__icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  max-width: 68px;
  min-height: 67px;
  max-height: 68px;
}
.white-block__icon img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
@media (min-width: 1024px) {
  .white-block__icon {
    max-width: 100px;
    min-height: 100px;
    max-height: 101px;
  }
}
@media (max-width: 575px) {
  .white-block__icon {
    max-width: 45px;
    min-height: 45px;
    max-height: 45px;
  }
}
.white-block__title {
  font-family: "Open Sans", sans-serif;
  font-weight: 800;
  margin: 40px 0 20px 0;
  font-size: 20px;
  text-align: center;
}
@media (max-width: 575px) {
  .white-block__title {
    font-size: 12px;
    margin: 20px 0;
  }
}
.white-block__description {
  margin: 16px 0;
  font-size: 14px;
  line-height: 1.35;
  text-align: center;
}
.white-block__description p:not(:last-child) {
  margin-bottom: 10px;
}
.white-block__description strong {
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
}
@media (min-width: 800px) {
  .white-block__description {
    font-size: 16px;
  }
}
.white-block__direct-link {
  margin: auto auto 0;
}

.consultation-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  padding: 0 34px 25px 25px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  min-height: 380px;
  background-color: #163acf;
  -webkit-box-shadow: 0 14px 24px 0 rgba(0, 21, 43, 0.05);
  box-shadow: 0 14px 24px 0 rgba(0, 21, 43, 0.05);
  -webkit-transition: background-color ease 0.3s;
  transition: background-color ease 0.3s;
}
.consultation-block:before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background-image: url("../img/consultation-decor.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top left;
  width: 287px;
  max-width: 100%;
  height: 100%;
}
.consultation-block:after {
  content: url("../img/arrow-up-white-small.svg");
  display: block;
  position: absolute;
  right: 25px;
  bottom: 25px;
  -webkit-transition: -webkit-transform ease 0.4s;
  transition: -webkit-transform ease 0.4s;
  transition: transform ease 0.4s;
  transition: transform ease 0.4s, -webkit-transform ease 0.4s;
}
@media (min-width: 1024px) {
  .consultation-block {
    padding: 0 40px 30px 30px;
  }
  .consultation-block:after {
    content: url("../img/arrow-up-white-big.svg");
    right: 30px;
    bottom: 30px;
  }
}
@media (any-hover: hover) {
  .consultation-block:hover {
    background-color: rgba(22, 58, 207, 0.8);
  }
  .consultation-block:hover:after {
    -webkit-transform: translateX(4px) translateY(-6px);
    -ms-transform: translateX(4px) translateY(-6px);
    transform: translateX(4px) translateY(-6px);
  }
}
.consultation-block__title {
  font-family: "Open Sans", sans-serif;
  font-weight: 800;
  margin: 0;
  font-size: 24px;
  max-width: 240px;
  color: #fff;
}
@media (min-width: 768px) {
  .consultation-block__title {
    max-width: 300px;
  }
}

.swiper-pagination-bullet {
  margin: 0 5px;
  width: 12px;
  height: 12px;
  background-color: transparent;
  opacity: 1;
  border-radius: 0;
  border: 1px solid #AFB8BF;
}
.swiper-pagination-bullet-active {
  background-color: #163acf;
  border-color: #163acf;
}

@media (min-width: 1200px) {
  .slider-button {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  .slider-button.swiper-button-disabled {
    opacity: 0.5;
  }
  .slider-button--prev {
    left: 16px;
  }
  .slider-button--next {
    right: 16px;
  }
}
@media (min-width: 1770px) {
  .slider-button--prev {
    left: 0;
  }
  .slider-button--next {
    right: 0;
  }
}

.about-slider {
  position: relative;
  margin: 0 auto;
  padding: 0 16px 68px;
  max-width: 100%;
}
.about-slider .swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 325px;
  min-height: 480px;
  height: 100%;
}
.about-slider .swiper-slide .card-lawyer {
  -webkit-transform: scale(0.942);
  -ms-transform: scale(0.942);
  transform: scale(0.942);
  -webkit-transition: -webkit-transform ease 0.3s;
  transition: -webkit-transform ease 0.3s;
  transition: transform ease 0.3s;
  transition: transform ease 0.3s, -webkit-transform ease 0.3s;
}
.about-slider .swiper-slide-active .card-lawyer {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.about-slider .swiper-pagination {
  bottom: 0;
}
.about-slider .card-lawyer {
  height: unset;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
@media (min-width: 576px) {
  .about-slider .swiper-slide .card-lawyer {
    -webkit-transform: unset;
    -ms-transform: unset;
    transform: unset;
  }
}
@media (min-width: 1024px) {
  .about-slider {
    padding: 0 16px 94px;
  }
}
@media (min-width: 1200px) {
  .about-slider {
    max-width: 1152px;
  }
  .about-slider .swiper-slide {
    width: auto;
    min-height: 560px;
  }
}
@media (min-width: 1200px) {
  .about-slider__button {
    top: 42%;
  }
  .about-slider__button--prev {
    left: 10px;
  }
  .about-slider__button--next {
    right: 10px;
  }
}

@media (min-width: 1300px) {
  .about-slider__button--prev {
    left: 60px;
  }
  .about-slider__button--next {
    right: 60px;
  }
}

@media (min-width: 1440px) {
  .about-slider__button--prev {
    left: 100px;
  }
  .about-slider__button--next {
    right: 100px;
  }
}
@media (min-width: 1660px) {
  .about-slider__button--prev {
    left: 140px;
  }
  .about-slider__button--next {
    right: 140px;
  }
}

.video-slider {
  position: relative;
  margin: 0 auto;
  padding: 0 0 80px;
  max-width: 100%;
}
@media (min-width: 1200px) {
  .video-slider {
    padding: 0 0 0;
    max-width: 92%;
  }
}
@media (min-width: 1550px) {
  .video-slider {
    max-width: 1440px;
  }
}
@media (min-width: 768px) {
  .video-slider__container {
    height: 100%;
    text-align: center;
  }
}
@media (min-width: 1024px) {
  .video-slider__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 10px;
    text-align: unset;
  }
}
@media (min-width: 768px) {
  .video-slider__img-preview {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
@media (min-width: 1024px) {
  .video-slider__img-preview {
    display: block;
    width: 55%;
    height: unset;
  }
}
@media (min-width: 1440px) {
  .video-slider__img-preview {
    width: 55%;
  }
}
.video-slider__img-box {
  margin: 50px 0 0 0;
  height: 182px;
}
.video-slider__img-box img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
@media (min-width: 0px) {
  .video-slider__img-box {
    width: 100%;
	  height: auto;
  }
}
@media (min-width: 1024px) {
  .video-slider__img-box {
    margin: 0;
    width: 100%;
    height: 391px;
  }
}
.video-slider__label {
  font-size: 16px;
  color: #afb8bf;
}
@media (min-width: 375px) {
  .video-slider__label {
    font-size: calc(0.2574002574vw + 15.0347490347px);
  }
}
@media (min-width: 1152px) {
  .video-slider__label {
    font-size: 18px;
  }
}
@media (min-width: 1024px) {
  .video-slider__label {
    display: none;
  }
}
.video-slider__content {
  margin: 40px 0 0 0;
}
@media (min-width: 1024px) {
  .video-slider__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 40%;
  }
}
@media (min-width: 1440px) {
  .video-slider__content {
   width: 40%;
  }
}
.video-slider__content-label {
  display: none;
}
@media (min-width: 1024px) {
  .video-slider__content-label {
    display: block;
  }
}
.video-slider__content-title {
  line-height: 1.5;
  color: #00152b;
}
@media (min-width: 1024px) {
  .video-slider__content-title {
    margin: 30px 0 0 0;
  }
}
.video-slider__content-author {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-style: italic;
  font-size: 18px;
  margin: 8px 0 20px 0;
}
@media (min-width: 375px) {
  .video-slider__content-author {
    font-size: calc(0.7722007722vw + 15.1042471042px);
  }
}
@media (min-width: 1152px) {
  .video-slider__content-author {
    font-size: 24px;
  }
}
.video-slider__button {
  margin: 0 auto ;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  padding: 14px 20px;
  gap: 12px;
  width: 100%;
	    box-shadow: 0px 0px 50px 10px #163ACF57;
}
@media (min-width: 640px) {
  .video-slider__button {
/*     margin: 34px auto 0; */
    width: 70%;
  }
}
@media (min-width: 768px) {
  .video-slider__button {
    width: 60%;
  }
}
@media (min-width: 1024px) {
  .video-slider__button {
/*     margin: auto 0 0 0; */
    padding: 16px 28px;
    max-width: 264px;
    width: 100%;
  }
}
@media (min-width: 1200px) {
  .video-slider__button-navigation {
    top: 42%;
  }
}
@media (min-width: 1550px) {
  .video-slider__button-navigation--prev {
    left: -2%;
  }
  .video-slider__button-navigation--next {
    right: -2%;
  }
}
@media (min-width: 1660px) {
  .video-slider__button-navigation--prev {
    left: -6%;
  }
  .video-slider__button-navigation--next {
    right: -6%;
  }
}
.video-slider .swiper-slide {
  height: auto !important;
}

.review-slider {
  position: relative;
  margin: 0 auto;
  padding-left: 16px;
  padding-bottom: 20px;
  max-width: 100%;
}
/* .review-slider .swiper-wrapper {max-height: 500px !important;} */

.review-slider .swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 36px 0 19px 0;
  width: 325px;
  /* height: auto !important; */
}
.review-slider .review-item {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
@media (min-width: 1024px) {
  .review-slider {
    padding: 0 0 30px 0;
  }
  .review-slider .swiper-slide {
    padding: 20px 5px;
    width: 680px;
    min-height: 300px;
    -webkit-transform: scale(0.849);
    -ms-transform: scale(0.849);
    transform: scale(0.849);
    opacity: 0.5;
    -webkit-transition: transofrm ease 0.3s;
    transition: transofrm ease 0.3s;
  }
  .review-slider .swiper-slide-active {
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}

.latest-slider {
  position: relative;
  padding: 0 0 60px 0;
  width: 100%;
}
.latest-slider__pagination {
  bottom: 0 !important;
}

.present-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 100%;
}

@media (min-width: 768px) {
  .present-grid {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
    justify-items: center;
    gap: 20px;
    width: 100%;
  }
}

@media (min-width: 1200px) {
  .present-grid {
    -ms-grid-columns: (1fr)[4];
    grid-template-columns: repeat(4, 1fr);
    gap: 10px 20px;
    width: 100%;
  }
}

.present-grid__item {
  width: 320px;
  height: 580px;
  overflow: hidden;
}

.present-grid__item  blockquote {
  display: block;
  min-width: unset !important;
  width: 100%;
  height: 100%;
}
.present-grid__item iframe {
  width: 100%;
  height: 100%;
}

@media (min-width: 1024px) {
  .present-grid__item  {
    width: auto;
  }
}

.life-slider {
  position: relative;
  max-width: 94%;
}
@media (min-width: 800px) {
  .life-slider {
    max-width: 100%;
  }
}
.life-slider__content {
  font-family: "Open Sans", sans-serif;
  font-weight: 800;
  position: absolute;
  left: 50%;
  bottom: 10px;
  max-width: 90%;
  width: 100%;
  font-size: clamp(14px, 2vw, 16px);
  color: #fff;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  text-align: center;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
  z-index: 10;
}
.life-slider__content p:not(:last-child) {
  margin-bottom: 5px;
}
@media (min-width: 800px) {
  .life-slider__content {
    max-width: 400px;
    bottom: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
}
@media (min-width: 1024px) {
  .life-slider__content {
    opacity: 0;
  }
}
.life-slider .swiper-slide {
  height: 200px;
  position: relative;
  width: 100%;
}
@media (min-width: 375px) {
  .life-slider .swiper-slide {
    height: calc(33.462033462vw + 74.5173745174px);
  }
}
@media (min-width: 1152px) {
  .life-slider .swiper-slide {
    height: 460px;
  }
}
.life-slider .swiper-slide:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}
.life-slider .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}
@media (min-width: 800px) {
  .life-slider .swiper-slide {
    width: 700px;
    opacity: 0.4;
    -webkit-transform: scale(0.94);
    -ms-transform: scale(0.94);
    transform: scale(0.94);
    -webkit-transition: all ease 0.3s;
    transition: all ease 0.3s;
  }
  .life-slider .swiper-slide-active {
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}
@media (min-width: 1024px) {
  .life-slider .swiper-slide:before {
    display: none;
  }
}
@media (any-hover: hover) {
  .life-slider .swiper-slide:hover .life-slider__content {
    opacity: 1;
  }
  .life-slider .swiper-slide:hover img {
    -webkit-filter: blur(5px);
    filter: blur(5px);
  }
}

.tabs-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  border-bottom: 2px solid #afb8bf;
}

.tabs-line {
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 180px;
  height: 3px;
  background-color: #163acf;
  -webkit-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
}

.tab-btn {
  font-size: 14px;
  padding: 0 40px 16px;
  width: 50%;
  text-align: center;
  color: #afb8bf;
  -webkit-transition: all ease 0.1s;
  transition: all ease 0.1s;
}
@media (min-width: 375px) {
  .tab-btn {
    font-size: calc(0.5148005148vw + 12.0694980695px);
  }
}
@media (min-width: 1152px) {
  .tab-btn {
    font-size: 18px;
  }
}
.tab-btn.active {
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  color: #163acf;
}
@media (min-width: 1024px) {
  .tab-btn {
    padding: 0 50px 12px;
  }
}

.tabs-content__item {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-animation: moving 0.5s ease;
  animation: moving 0.5s ease;
}
.tabs-content__item.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.tabs-content__grid {
  width: 100%;
}
@media (min-width: 768px) {
  .tabs-content__grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 20px;
  }

}
@media (min-width: 1024px) {
  .tabs-content__grid {
    gap: 40px;
  }
}
.tabs-content__grid-item {
  height: 182px;
}
.tabs-content__grid-item:not(:last-child) {
  margin-bottom: 20px;
}
@media (min-width: 375px) {
  .tabs-content__grid-item {
    height: calc(20.3346203346vw + 105.7451737452px);
  }
}
@media (min-width: 1152px) {
  .tabs-content__grid-item {
    height: 340px;
  }
}
.tabs-content__grid-item iframe {
  width: 100%;
  height: 100%;
}
@media (min-width: 768px) {
  .tabs-content__grid-item {
    width: calc(50% - 10px);
  }
  .tabs-content__grid-item:not(:last-child) {
    margin-bottom: 0;
  }
}
@media (min-width: 1024px) {
  .tabs-content__grid-item {
    width: calc(50% - 20px);
  }
}
.tabs-content__direct-link {
  margin-top: 20px;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
}
@media (min-width: 375px) {
  .tabs-content__direct-link {
    margin-top: calc(2.574002574vw + 10.3474903475px);
  }
}
@media (min-width: 1152px) {
  .tabs-content__direct-link {
    margin-top: 40px;
  }
}

.tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 8px;
}
@media (min-width: 800px) {
  .tags {
    gap: 14px;
  }
}

.tag {
  position: relative;
  font-size: 14px;
  padding: 10px 20px;
  border: 1px solid #afb8bf;
  cursor: pointer;
}

.tag:before{
  content: url("../img/x-icon.svg");
  display: none;
  position: absolute;
  top: 54%;
  right: 10px;
  transform: translateY(-50%);
}

.tag.selected-tag {
  padding: 10px 24px 10px 20px;
  color: #163acf;
  background: rgba(22, 58, 207, 0.1);
  border-color: #163acf;
}

.tag.selected-tag:before {
  display: block;
}

.tag.selected-tag

@media (min-width: 375px) {
  .tag {
    font-size: calc(0.2574002574vw + 13.0347490347px);
  }
}
@media (min-width: 1152px) {
  .tag {
    font-size: 16px;
  }
}

.appointment-block {
  width: 100%;
}
@media (min-width: 1024px) {
  .appointment-block {
    margin: 0 auto;
    padding: 0 16px;
    max-width: calc(1152px + 16px * 2);
  }
}
.appointment-block__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 40px 16px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  min-height: 412px;
  background-color: #163acf;
  -webkit-box-shadow: 0 8px 18px 0 rgba(20, 66, 252, 0.1), 0 33px 33px 0 rgba(20, 66, 252, 0.09), 0 74px 45px 0 rgba(20, 66, 252, 0.05), 0 132px 53px 0 rgba(20, 66, 252, 0.01), 0 206px 58px 0 rgba(20, 66, 252, 0);
  box-shadow: 0 8px 18px 0 rgba(20, 66, 252, 0.1), 0 33px 33px 0 rgba(20, 66, 252, 0.09), 0 74px 45px 0 rgba(20, 66, 252, 0.05), 0 132px 53px 0 rgba(20, 66, 252, 0.01), 0 206px 58px 0 rgba(20, 66, 252, 0);
}
@media (min-width: 1024px) {
  .appointment-block__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 40px 44px;
    min-height: unset;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}
.appointment-block__description {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  margin: 0 0 10px 0;
  max-width: 560px;
  font-size: 20px;
  line-height: 1.5;
  color: #fff;
}
.appointment-block__description br {
  display: none;
}
.appointment-block__description strong {
  margin: 10px 0;
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  display: block;
  font-size: 24px;
}
.appointment-block__direct-link {
  margin: auto 0 0 0;
  -ms-flex-item-align: start;
  align-self: flex-start;
  color: #1B41CC;
  background: #fff;
  padding: 15px 40px 15px 20px;
  margin: 0 auto;
  margin-top: 60px;
}
.appointment-block__direct-link:before {
  content: url("../img/arrow-up-right.svg");
  top: 15px;
  right: 10px;
}
@media (min-width: 1024px) {
  .appointment-block__direct-link {
    margin: 0;
    -ms-flex-item-align: unset;
    -ms-grid-row-align: unset;
    align-self: unset;
    background: #fff;
    padding: 15px 40px 15px 20px;
    color: #1B41CC;
  }
}

@media (max-width: 575px) {	
	.appointment-block__direct-link:before{
		top: 9px;
    	right: 23px;
	}
}
@media (any-hover: hover) {
  .appointment-block__direct-link:hover {
    color: #1B41CC;
    opacity: 0.9;
  }
}

.video-modal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 16px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/popup-decor.jpg");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transition: -webkit-transform ease 0.3s;
  transition: -webkit-transform ease 0.3s;
  transition: transform ease 0.3s;
  transition: transform ease 0.3s, -webkit-transform ease 0.3s;
  z-index: 250;
}
.video-modal.active {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
/* .video-modal__content {
  width: 324px;
  height: 182px;
}
@media (min-width: 375px) {
  .video-modal__content {
    width: calc(90.0900900901vw + -13.8378378378px);
  }
}
@media (min-width: 1152px) {
  .video-modal__content {
    width: 1024px;
  }
}
@media (min-width: 375px) {
  .video-modal__content {
    height: calc(50.7078507079vw + -8.1544401544px);
  }
}
@media (min-width: 1152px) {
  .video-modal__content {
    height: 576px;
  }
} */
.video-modal__content-item {
  display: none;
  width: 100%;
  height: 100%;
}
.video-modal__close {
  position: absolute;
  top: 20px;
  right: 20px;
}
@media (min-width: 1024px) {
  .video-modal__close {
    top: 46px;
    right: 46px;
  }
}

.review-modal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 16px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/popup-decor.jpg");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transition: -webkit-transform ease 0.3s;
  transition: -webkit-transform ease 0.3s;
  transition: transform ease 0.3s;
  transition: transform ease 0.3s, -webkit-transform ease 0.3s;
  z-index: 250;
}
.review-modal.active {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.review-modal__content {
  max-width: 500px;
  width: 100%;
}

.popup {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 50px 25px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/popup-decor.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-transition: all ease 0.2s;
  transition: all ease 0.2s;
  z-index: 400;
}
@media screen and (max-width: 768px) {
  .popup {
    align-items: start;
    overflow-y: auto;
  }
}
.popup.hide {
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
}
.popup__content {
  max-width: 900px;
  width: 100%;
}
.popup__content-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 0 18px;
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
  min-height: 230px;
}
.popup__content-top:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(34.51%, rgba(0, 0, 0, 0.4)), to(rgba(0, 0, 0, 0))), -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.2)), to(rgba(0, 0, 0, 0.2)));
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.4) 34.51%, rgba(0, 0, 0, 0) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
  z-index: 5;
}
.popup__content-top img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
@media (min-width: 1024px) {
  .popup__content-top {
    min-height: 280px;
  }
}
.popup__content-title, .popup__content-description {
  position: relative;
  max-width: 450px;
  width: 100%;
  color: #fff;
  text-align: center;
  z-index: 10;
}
.popup__content-title {
  font-family: "Open Sans", sans-serif;
  font-weight: 800;
  font-size: clamp(20px, 3vw, 30px);
}
.popup__content-description {
  font-size: clamp(16px, 2vw, 18px);
}
.popup__content-description p:not(:last-child) {
  margin-bottom: 5px;
}
.popup__content-close {
  position: absolute;
  top: -20px;
  right: 0;
  z-index: 6;
}
.popup__content-close:before, .popup__content-close:after {
  background-color: #fff;
}
@media (min-width: 400px) {
  .popup__content-close {
    top: 16px;
    right: 16px;
  }
}
.popup__content-bottom {
  padding: 22px 16px;
  min-height: 380px;
  background-color: #fff;
}
@media (min-width: 768px) {
  .popup__content-bottom {
    padding: 26px 30px 30px;
    min-height: 260px;
  }
}
.popup__contacts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 24px 0 0 0;
  padding: 24px 0 0 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
  border-top: 1px solid #afb8bf;
}
@media (max-width: 768px) {
  .popup__contacts {
    grid-template-columns: 1fr;
  }
}
@media (min-width: 768px) {
  .popup__contacts {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 10px;
  }
}
@media (min-width: 1024px) {
  .popup__contacts {
    margin: 32px 0 0 0;
    padding: 32px 0 0 0;
  }
}
.popup__contacts-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 768px) {
  .popup__contacts-inner {
    width: 100%;
  }
}
.popup__contact-link, .popup__contact-location {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}
.popup__contact-link img, .popup__contact-location img {
  display: block;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  max-width: 23px;
  max-height: 23px;
  -o-object-fit: contain;
  object-fit: contain;
}
.popup__contact-link, .popup__contact-location {
  font-size: 14px;
  color: #00152b;
}
.popup__contact-link, .popup__contact-location .addresseess {
  display: flex;
  gap: 5px;
}
@media (min-width: 375px) {
  .popup__contact-link, .popup__contact-location {
    font-size: calc(0.2574002574vw + 13.0347490347px);
  }
}
@media (min-width: 1152px) {
  .popup__contact-link, .popup__contact-location {
    font-size: 16px;
  }
}
.footer--contact {display: none !important;}
.popup__contact-location {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.popup__contact-location img {
  margin-top: 2px;
  display: inline-block;
  width: 28px;
  vertical-align: top;
}
@media (min-width: 768px) {
  .popup__contact-location {
    width: 100%;
  }
}

.video-review {
  padding-top: 44px;
  padding-bottom: 72px;
  background-color: #fafbff;
}
@media (min-width: 375px) {
  .video-review {
    padding-top: calc(14.157014157vw + -9.0888030888px);
  }
}
@media (min-width: 1152px) {
  .video-review {
    padding-top: 154px;
  }
}
@media (min-width: 375px) {
  .video-review {
    padding-bottom: calc(1.6731016731vw + 65.7258687259px);
  }
}
@media (min-width: 1152px) {
  .video-review {
    padding-bottom: 85px;
  }
}
.video-review__container .swiper-pagination{
	margin-top: 100px;
}
@media (min-width: 1200px) {
  .video-review__container {
    position: relative;
  }
}
.video-review__slider-buttons {
  display: none;
}
@media (min-width: 1200px) {
  .video-review__slider-buttons {
    display: block;
  }
}

.review {
  padding-bottom: 66px;
  padding-top: 60px;
  background-color: #fafbff;
}
@media (min-width: 375px) {
  .review {
    padding-bottom: calc(2.8314028314vw + 55.3822393822px);
  }
}
@media (min-width: 1152px) {
  .review {
    padding-bottom: 88px;
  }
}
.review__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 60px;
  margin: 0 auto;
  max-width: 92%;
  width: 100%;
}
@media (min-width: 375px) {
  .review__button {
/*     margin-top: calc(2.0592020592vw + 60.277992278px); */
  }
}
@media (min-width: 1152px) {
  .review__button {
/*     margin-top: 80px; */
  }
}
@media (min-width: 800px) {
  .review__button {
    padding: 16px 40px;
    max-width: 340px;
  }
}
@media (min-width: 1024px) {
  .review__button {
    padding: 20px 40px;
  }
}

.review-item {
  position: relative;
  padding: 36px 12px;
  background-color: #fff;
  -webkit-box-shadow: 0 14px 24px 0 rgba(0, 21, 43, 0.08);
  box-shadow: 0 14px 24px 0 rgba(0, 21, 43, 0.08);
}
.review-item:before {
  content: url("../img/review-icon.svg");
  display: block;
  position: absolute;
  top: -36px;
  left: 12px;
}
@media (min-width: 1024px) {
  .review-item {
    padding: 42px 52px;
  }
  .review-item:before {
    top: -20px;
    left: 64px;
  }
}
@media (min-width: 1024px) {
  .review-item__top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}
.review-item__name {
  font-family: "Open Sans", sans-serif;
  font-weight: 800;
  font-size: 21px;
  max-width: 300px;
}
@media (min-width: 375px) {
  .review-item__name {
    font-size: calc(0.9009009009vw + 17.6216216216px);
  }
}
@media (min-width: 1152px) {
  .review-item__name {
    font-size: 28px;
  }
}
@media (min-width: 1024px) {
  .review-item__name {
    max-width: 400px;
  }
}
.review-item__rating {
  margin: 12px 0 0 0;
}
@media (min-width: 1024px) {
  .review-item__rating {
    margin: 0;
  }
}
.review-item__info {
  margin-top: 20px;
  padding-bottom: 10px;
}
@media (min-width: 375px) {
  .review-item__info {
    margin-top: calc(1.287001287vw + 15.1737451737px);
  }
}
@media (min-width: 1152px) {
  .review-item__info {
    margin-top: 30px;
  }
}
@media (min-width: 768px) {
  .review-item__info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 10px;
  }
}
.review-item__theme {
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  font-size: 14px;
  max-width: 300px;
}
@media (min-width: 375px) {
  .review-item__theme {
    font-size: calc(0.5148005148vw + 12.0694980695px);
  }
}
@media (min-width: 1152px) {
  .review-item__theme {
    font-size: 18px;
  }
}
.review-item__info-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 20px 0 0 0;
  gap: 18px;
}
@media (min-width: 768px) {
  .review-item__info-left {
    margin: 0;
    gap: 30px;
  }
}
@media (min-width: 1024px) {
  .review-item__info-left {
    gap: 52px;
  }
}
.review-item__date, .review-item__location {
  font-family: "Open Sans", sans-serif;
  font-weight: 500;
  font-size: 14px;
  position: relative;
  color: #afb8bf;
}
@media (min-width: 375px) {
  .review-item__date, .review-item__location {
    font-size: calc(0.2574002574vw + 13.0347490347px);
  }
}
@media (min-width: 1152px) {
  .review-item__date, .review-item__location {
    font-size: 16px;
  }
}
.review-item__date:before, .review-item__location:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
.review-item__date {
  padding-left: 38px;
}
.review-item__date:before {
  content: url("../img/date-icon.svg");
}
.review-item__location {
  padding-left: 32px;
}
.review-item__location:before {
  content: url("../img/location-icon.svg");
}
.review-item__content {
  margin-top: 24px;
  font-size: 14px;
  line-height: 1.4;
}
@media (min-width: 375px) {
  .review-item__content {
    margin-top: calc(0.7722007722vw + 21.1042471042px);
  }
}
@media (min-width: 1152px) {
  .review-item__content {
    margin-top: 30px;
  }
}
@media (min-width: 1152px) {
  .review-item__content {
    font-size: 16px;
  }
}
.review-item__content p:not(:last-child) {
  margin-bottom: 5px;
}

.latest-posts {
  padding-top: 60px;
  padding-bottom: 60px;
}
@media (min-width: 375px) {
  .latest-posts {
    padding-top: calc(7.722007722vw + 31.0424710425px);
  }
}
@media (min-width: 1152px) {
  .latest-posts {
    padding-top: 120px;
  }
}
@media (min-width: 375px) {
  .latest-posts {
    padding-bottom: calc(7.722007722vw + 31.0424710425px);
  }
}
@media (min-width: 1152px) {
  .latest-posts {
    padding-bottom: 120px;
  }
}
.latest-posts__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.latest-posts__top {
  margin-bottom: 30px;
  width: 100%;
}
@media (min-width: 375px) {
  .latest-posts__top {
    margin-bottom: calc(2.574002574vw + 20.3474903475px);
  }
}
@media (min-width: 1152px) {
  .latest-posts__top {
    margin-bottom: 50px;
  }
}
@media (min-width: 1024px) {
  .latest-posts__top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    gap: 10px;
  }
}
.latest-posts__title {
  color: #00152b;
  text-align: center;
}
@media (min-width: 1024px) {
  .latest-posts__title {
    max-width: 700px;
  }
}
.latest-posts__link {
  margin: 40px 0 0 0;
  display: none;
}
.latest-posts__link--mobile {
  display: inline-block;
}
@media (min-width: 1024px) {
  .latest-posts__link {
    margin: 0;
    display: inline-block;
  }
  .latest-posts__link--mobile {
    display: none;
  }
}

.content-block {
  padding: 480px 0 60px;
}
@media (min-width: 1024px) {
  .content-block {
    padding: 480px 0 60px;
  }
}
@media (min-width: 1200px) {
  .content-block {
    padding: 100px 0 60px;
  }
}
.content-block__mark-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media (min-width: 1200px) {
  .content-block__mark-inner {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}
.content-block__wrap {
  margin-top: 35px;
}
@media (min-width: 375px) {
  .content-block__wrap {
    margin-top: calc(3.2175032175vw + 22.9343629344px);
  }
}
@media (min-width: 1152px) {
  .content-block__wrap {
    margin-top: 60px;
  }
}
@media (min-width: 1024px) {
  .content-block__wrap {
    margin-left: auto;
    margin-right: auto;
    max-width: 80%;
  }
}

.hero {
  padding-top: 42px;
  margin: 64px 0 0 0;
  position: relative;
  padding-bottom: 188px;
}

@media (min-width: 375px) {
  .hero {
    padding-top: calc(5.4054054054vw + 21.7297297297px);
  }
}

@media (min-width: 1152px) {
  .hero {
    padding-top: 84px;
  }
}
@media (min-width: 480px) {
  .hero {
    padding-bottom: 220px;
  }
}
@media (min-width: 768px) {
  .hero {
    padding-bottom: 280px;
  }
}
@media (min-width: 800px) {
  .hero {
    margin: 104px 0 0 0;
  }
}
@media (min-width: 1200px) {
  .hero {
    margin: 105px 0 0 0;
    padding-bottom: 50px;
    background-position: center center;
  }

}

.hero--specific {
  padding-top: 100px;
  min-height: 680px;
}
@media (min-width: 375px) {
  .hero--specific {
    padding-top: calc(-2.0592020592vw + 107.722007722px);
  }
}
@media (min-width: 1152px) {
  .hero--specific {
    padding-top: 84px;
  }
}
@media (min-width: 1024px) {
  .hero--specific {
    padding-bottom: 186px;
    min-height: 620px;
  }
}
.hero--inner-service {
  padding-top: 60px;
  min-height: 680px;
  background-position: 25% center;
}
@media (min-width: 1024px) {
  .hero--inner-service {
    padding-top: 100px;
    min-height: 620px;
    background-position: left center;
  }
}
.hero__container {
  position: relative;
  z-index: 10;
}

@media (min-width: 1024px) {
  .hero__container {
    padding: 0 16px;
  }
}
@media (min-width: 1200px) {
  .hero__container {
    position: relative;
  }
}
@media (min-width: 1200px) {
  .hero__content {
    width: 51%;
  }
  .hero__content--specific, .hero__content--inner-service {
    padding: 80px 0 0 0;
  }
}
.hero__title {
  text-align: center;
}
.hero__title--specific {
  font-size: clamp(18px, 4vw, 32px);
  line-height: 1.4;
}
@media (min-width: 768px) {
  .hero__title {
    text-align: unset;
  }
}
.hero__info-list {
  margin: 42px auto 0;
}
.hero__contacts {
  margin-top: 44px;
  margin-left: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  flex-direction: column;
  gap: 24px;
}
@media (min-width: 375px) {
  .hero__contacts {
    margin-top: calc(1.287001287vw + 39.1737451737px);
  }
}
@media (min-width: 700px) {
  .hero__contacts {
    margin-left: 0;
    flex-direction: row;
  }
}

@media (min-width: 1152px) {
  .hero__contacts {
    margin-top: 54px;
  }
}
@media (min-width: 768px) {
  .hero__contacts {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    gap: 40px;
  }
  .hero__contacts--inner-service {
    padding-left: 36px;
    gap: 16px;
  }

}
@media (max-width: 768px) {
  .nomob {display: none;}
  .hero__contacts {padding: 18px 12px 18px 12px !important; margin-left: 0px; display: block;}
  .hero__contacts-text {font-size: 13px !important;}
  .hero__contacts-text_phone {font-size: 18px;}
  .hero__contacts-consultation {display: inline-block !important; max-width: 170px; vertical-align: top;}
  .mobinline {display: inline-block !important; max-width: 180px; margin-left: 0px; float: right;}
  .hero__contacts-consultation span.hero__contacts-text {font-size: 18px !important;}
  a.hero__contacts-consultation span.hero__contacts-text {display: none;}
  .paddup {padding-bottom: 7px;}
  .mobicont {display: inline-block; width: 100%; max-width: 150px;}
  .hero__contacts-inner {gap: 4px !important;}
  .hero__contacts-inner a svg {width: 30px !important; height: 30px !important;}
  .hero__contacts-consultation {display: inline-block !important; width: 100%; max-width: 150px !important; min-width: 100px !important;}
  .soctext {font-size: 9px !important;}
  .footer__top-content {display: block !important; max-width: 100% !important; width: 100% !important; text-align: center;}
  .footer__contact-list {text-align: center; margin: 0 auto !important;}
  .footer__top-form .contact-list__item-link { font-size: 24px !important; justify-content: space-around;}
  .hero__contacts-text_footer {max-width: 100% !important;}
  .hero__contacts-inner {justify-content: space-evenly;}
  .footerform {width: 100% !important; text-align: center;}
  .footer__top-form .contact-list__item-icon {display: none;}
  .additional-phone {margin-top: 0px !important; margin-left: 0px !important; padding-left: 0px !important; font-size: 24px !important;}
  .footer__top .feedback-form__description {text-align: center !important;}
  .steps-list__item {min-height: 200px !important;}
  .steps-list__item-title {padding-top: 0px !important;}
  .steps-list__item::after {bottom: -30px !important;}
  /* .home {background-position-x: -700px !important;} */

}
::placeholder  {color: #999 !important;}
.solution__present {display: none !important;}
.solution {padding-bottom: 90px !important;}

.mobinline_footer {margin-top: 40px;}
.hero__contacts-text_phone {
  font-size: 15px;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  display: block;
  max-width: 180px;
  color: #07215C;
  line-height: 24px;
  word-wrap: break-word;
  white-space: normal;
}

.hero__contacts-consultation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  /* align-items: center; */
  -webkit-column-gap: 20px;
  -moz-column-gap: 20px;
  column-gap: 20px;
  min-width: 240px;
}

.hero__contacts-consultation svg {
  flex-shrink: 0;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
  margin-top: 18px;
}
.hero__contacts-consultation svg path {
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}
.hero__contacts-consultation_soc svg path {
  fill: #07215C;
  }
  .hero__contacts-consultation_soc {text-align: center;}
.hero__contacts-consultation_soc:hover svg path {
    fill: #163acf;
  }
  .soctext {font-size: 11px; color: #07215C; text-align: center;}
@media (any-hover: hover) {
  .hero__contacts-consultation:hover svg path {
    fill: #163acf;
  }
}
.hero__contacts-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
}

.footer__top .feedback-form__description {text-align: left;}
.hero__contacts-text {
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  display: block;
  font-size: 16px;
  max-width: 180px;
  color: #fff;
  word-wrap: break-word;
  white-space: normal;
}
.hero__contacts-text_footer {
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  display: block;
  font-size: 16px;
  max-width: 180px;
  color: #000;
  word-wrap: break-word;
  white-space: normal;
  margin-bottom: 20px;
}
.hero__form {
  padding: 0 25px;
  width: 100%;
  position: absolute;
  left: 0;
/*   bottom: -120%; */
}

.hero--inner-service .hero__form {

}

@media (min-width: 420px) {
  .hero__form {
    bottom: -170%;
  }
}

@media (min-width: 480px) {
  .hero__form {
    padding: 0 16px;
    max-width: 552px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}
@media (min-width: 700px) {
  .hero__form {
    padding: 0;
    bottom: -170%;
  }
}

@media (min-width: 768px) {
  .hero__form {
    padding: 0;
    bottom: -155%;
  }
}

@media (min-width: 940px) {
  .hero__form {
    bottom: -155%;
  }
}

@media (min-width: 1200px) {
  .hero__form {
    max-width: 500px;
    top: 0;
    left: unset;
    right: 16px;
    -webkit-transform: unset;
    -ms-transform: unset;
    transform: unset;
    bottom: unset;
  }
}
@media (min-width: 1550px) {
  .hero__form {
    right: 0;
  }
}

.about {
  padding: 510px 0 248px;
}
@media (min-width: 1024px) {
  .about {
    padding: 510px 0 280px;
  }
}
@media (min-width: 1200px) {
  .about {
    padding: 120px 0 280px;
  }
}
.about__mark-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media (min-width: 1200px) {
  .about__mark-inner {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}
.about__content {
  margin-top: 88px;
}
@media (min-width: 375px) {
  .about__content {
    margin-top: calc(4.8906048906vw + 69.6602316602px);
  }
}
@media (min-width: 1152px) {
  .about__content {
    margin-top: 126px;
  }
}
@media (min-width: 1024px) {
  .about__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
  }
}
.about__title {
  color: #00152b;
  text-align: center;
}
@media (min-width: 1024px) {
  .about__title {
    max-width: 500px;
    text-align: unset;
  }
}
.about__content-link {
  display: none;
}
@media (min-width: 1024px) {
  .about__content-link {
    display: inline-block;
  }
}
.about__slider-inner {
  margin-top: 30px;
}
@media (min-width: 375px) {
  .about__slider-inner {
    margin-top: calc(5.9202059202vw + 7.7992277992px);
  }
}
@media (min-width: 1152px) {
  .about__slider-inner {
    margin-top: 76px;
  }
}
@media (min-width: 1200px) {
  .about__slider-inner {
    position: relative;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 1770px) {
  .about__slider-inner {
    max-width: 1660px;
  }
}
.about__slider-buttons {
  display: none;
}
@media (min-width: 1200px) {
  .about__slider-buttons {
    display: block;
  }
}
.about__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 44px auto 0;
}
@media (min-width: 1024px) {
  .about__bottom {
    display: none;
  }
}

.services {
  padding: 0 0 84px 0;
  background-image: url("../img/services-bg.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media (min-width: 1024px) {
  .services {
    padding: 0 0 88px 0;
  }
}
.services__btn {
  margin: -46px auto 0;
  display: block;
  color: #fff;
}
.services__btn:visited {
  color: #fff;
}
@media (min-width: 576px) {
  .services__btn {
    max-width: 228px;
    width: 100%;
  }
}

.services-list {
  -webkit-transform: translateY(-5%);
  -ms-transform: translateY(-5%);
  transform: translateY(-5%);
}
@media (min-width: 320px) {
  .services-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 24px;
    -webkit-transform: translateY(-10%);
    -ms-transform: translateY(-10%);
    transform: translateY(-10%);
  }
}
@media (min-width: 768px) {
  .services-list {
    -webkit-transform: translateY(-10%);
    -ms-transform: translateY(-10%);
    transform: translateY(-10%);
  }
}
@media (min-width: 1200px) {
  .services-list {
    gap: 30px;
    -webkit-transform: translateY(-15%);
    -ms-transform: translateY(-15%);
    transform: translateY(-15%);
  }
}
.services-list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 300px;
}
.services-list__item:not(:last-child) {
  margin-bottom: 26px;
}
.services-list__item > a.consultation-block {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  width: 100%;
}
@media (min-width: 320px) {
  .services-list__item {
    -ms-flex-preferred-size: calc(50% - 12px);
    flex-basis: calc(50% - 12px);
    min-height: 320px;
  }
  .services-list__item:not(:last-child) {
    margin-bottom: 0;
  }
}
@media (max-width: 575px) {
  .services-list {
    gap: 10px;
  }
  .services-list__item {
      -ms-flex-preferred-size: calc(50% - 5px);
      flex-basis: calc(50% - 5px);
    padding: 24px 10px;
    min-height: 160px;
/*     height: 160px; */
  }
  .services li.services-list__item {
    padding: 0;
  }
  .services-list__item .consultation-block {
      padding: 0 15px 15px;
      min-height: 160px;
      height: 160px;
  }
    .services-list__item .consultation-block .consultation-block__title {
        font-size: 14px;
    }

    .services-list__item .white-block__title {
        margin: 10px 0;
    }
}
@media (min-width: 1200px) {
  .services-list__item {
    -ms-flex-preferred-size: calc(33.33% - 30px);
    flex-basis: calc(33.33% - 30px);
  }
}

.try {
  padding-top: 20px;
  padding-bottom: 10px;
}
@media (min-width: 375px) {
  .try {
    padding-top: calc(5.148005148vw + 0.694980695px);
  }
}
@media (min-width: 1152px) {
  .try {
    padding-top: 60px;
  }
}
.try__main {
  margin: 30px auto 40px auto;
  padding: 0 16px;
  max-width: 100%;
}
@media (min-width: 768px) {
  .try__main {
    margin-top: 60px;
  }
}

@media (min-width: 1024px) {
  .try__main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin: 60px auto 60px auto;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}

@media (min-width: 1152px) {
  .try__main {
    margin-top: 80px;
  }
}
@media (min-width: 1200px) {
  .try__main {
    padding: 0;
    padding-left: calc((100% - calc(1152px + 16px * 2)) / 2);
  }
}
@media (min-width: 1024px) {
  .try__main-content {
    position: relative;
    padding-left: 16px;
    width: 58%;
    z-index: 10;
  }
}
@media (min-width: 1200px) {
  .try__main-content {
    width: 55%;
  }
}
@media (min-width: 1440px) {
  .try__main-content {
    width: 57%;
  }
}
.try__title {
  color: #00152b;
  text-align: center;
}
@media (min-width: 1024px) {
  .try__title {
    text-align: left;
  }
}
.try__image {
  margin: 40px 0 0 0;
  text-align: right;
}
.try__image img {
  -webkit-transform: translateX(16px);
  -ms-transform: translateX(16px);
  transform: translateX(16px);
}
@media (min-width: 1024px) {
  .try__image {
    margin: 0;
    width: 42%;
  }
  .try__image img {
    -webkit-transform: translateX(16px);
    -ms-transform: translateX(16px);
    transform: translateX(16px);
  }
}
@media (min-width: 1200px) {
  .try__image {
    width: 44%;
  }
}
@media (min-width: 1440px) {
  .try__image {
    width: 32%;
  }
  .try__image img {
    -webkit-transform: scale(1.3) translateX(-54px);
    -ms-transform: scale(1.3) translateX(-54px);
    transform: scale(1.3) translateX(-54px);
  }
}

.errors__title {
  font-family: "Open Sans", sans-serif;
  font-weight: 800;
  margin-top: 20px;
  font-size: 18px;
  margin-bottom: 26px;
  color: #163acf;
  text-align: center;
}
@media (min-width: 375px) {
  .errors__title {
    margin-top: calc(1.8018018018vw + 13.2432432432px);
  }
}
@media (min-width: 1152px) {
  .errors__title {
    margin-top: 34px;
  }
}
@media (min-width: 1152px) {
  .errors__title {
    font-size: 20px;
  }
}
@media (min-width: 1024px) {
  .errors__title {
    padding-left: 24px;
    text-align: left;
  }
}

.errors-list {
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .errors-list {
    margin: 0 0 0 24px;
  }
}
.errors-list__item {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 14px;
  position: relative;
  padding-left: 20px;
  color: #00152b;
}
.errors-list__item:not(:last-child) {
  margin-bottom: 12px;
}
@media (min-width: 1152px) {
  .errors-list__item {
    font-size: 16px;
  }
}
.errors-list__item:before {
  content: "";
  display: block;
  position: absolute;
  top: 6px;
  left: 0;
  width: 8px;
  height: 8px;
  background-color: #163acf;
  border-radius: 100%;
}
@media (min-width: 1024px) {
  .errors-list__item {
    padding-left: 30px;
  }
  .errors-list__item:before {
    width: 12px;
    height: 12px;
  }
}

@media (min-width: 768px) {
  .steps-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 24px;
  }
}
@media (min-width: 1024px) {
  .steps-list {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
}
@media (min-width: 1200px) {
  .steps-list {
    gap: 48px;
  }
}
.steps-list__item {min-height: 330px;}
.steps-list__item {
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  background-color: #fafbff;
  color: #00152b;
}
.steps-list__item:not(:last-child) {
  margin-bottom: 28px;
}
@media (min-width: 768px) {
  .steps-list__item {
    width: calc(50% - 12px);
  }
  .steps-list__item:not(:last-child) {
    margin-bottom: 0;
  }
}
@media (min-width: 1024px) {
  .steps-list__item {
    width: calc(33.3333333333% - 16px);
  }
}
@media (min-width: 1200px) {
  .steps-list__item {
    width: calc(33.3333333333% - 32px);
  }
}
.steps-list__item-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  max-width: 80px;
  max-height: 80px;
  min-height: 80px;
}
.steps-list__item-icon img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.steps-list__item-title {
  font-weight: 800;
  font-size: 18px;
  margin: 20px 0 0 0;
  text-align: center;
  padding-top: 50px;
}
.steps-list__item-description {
  margin: 8px 0 0 0;
  font-size: 14px;
  line-height: 1.4;
  text-align: center;
}
.steps-list__item-description p:not(:last-child) {
  margin-bottom: 10px;
}

@media (min-width: 1024px) {
  .steps-list__item-description {
    font-size: 16px;
  }
}

.features {
  padding-top: 60px;
  padding-bottom: 60px;
}
@media (min-width: 375px) {
  .features {
    padding-top: calc(7.722007722vw + 31.0424710425px);
  }
}
@media (min-width: 1152px) {
  .features {
    padding-top: 120px;
  }
}
@media (min-width: 375px) {
  .features {
    padding-bottom: calc(2.574002574vw + 50.3474903475px);
  }
}
@media (min-width: 1152px) {
  .features {
    padding-bottom: 80px;
  }
}
.features__title {
  margin-bottom: 30px;
  color: #00152b;
  text-align: center;
}
@media (min-width: 375px) {
  .features__title {
    margin-bottom: calc(2.574002574vw + 20.3474903475px);
  }
}
@media (min-width: 1152px) {
  .features__title {
    margin-bottom: 50px;
  }
}

@media (min-width: 768px) {
  .features-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 40px 30px;
  }
}
@media (min-width: 1440px) {
  .features-list {
    gap: 50px 66px;
  }
}
.features-list__item {
  min-height: 272px;
  background-color: #fafbff;
}
.features-list__item:last-child {
  background-color: transparent;
}
.features-list__item:not(:last-child) {
  margin-bottom: 24px;
}
.features-list__item .consultation-block, .features-list__item .feature-item {
  flex: 1;
  min-height: 272px;
  text-align: center;
}
.features-list__item .consultation-block:before {
content: '';
    top: -28px;
    left: -28px;
    transform: scale(0.8);
    background-image: url(../img/consultation-small-icon.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: top left;
    width: 238px;
    max-width: 100%;
    height: 100%;
}

@media (min-width: 768px) {
  .features-list__item {
    width: calc(50% - 15px);
  }
  .features-list__item:not(:last-child) {
    margin-bottom: 0;
  }
  .features-list__item .consultation-block {
    min-height: 100%;
  }
}
@media (min-width: 1024px) {
  .features-list__item {
    width: calc(33.3333333333% - 20px);
  }
}
@media (min-width: 1440px) {
  .features-list__item {
    width: calc(33.3333333333% - 44px);
  }
}

.feature-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 12px 12px 24px 12px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media (min-width: 768px) {
  .feature-item {
    padding: 32px;
  }
}
.feature-item__icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding-bottom: 12px;
  max-width: 80px;
  width: 100%;
  max-height: 80px;
  border-bottom: 3px solid #163acf;
  margin: 0 auto;
}
.feature-item__icon img {
  -o-object-fit: contain;
  object-fit: contain;
}
.feature-item__title {
  font-family: "Open Sans", sans-serif;
  font-weight: 800;
  margin: 20px 0 0 0;
  font-size: 18px;
  color: #00152b;
}
.feature-item__description {
  margin: 20px 0 0 0;
  font-size: 14px;
  line-height: 1.3;
}
.feature-item__description p:not(:last-child) {
  margin-bottom: 5px;
}

@media (min-width: 1024px) {
  .feature-item__description {
    font-size: 16px;
  }
}

.hero-services {
  position: relative;
  margin: 56px 0 0 0;
  padding: 96px 0 180px;
}
@media (min-width: 800px) {
  .hero-services {
    margin: 104px 0 0 0;
  }
}
@media (min-width: 1200px) {
  .hero-services {
    margin: 120px 0 0 0;
    background-position: center center;
  }
}

.hero-services__title {
  margin: 0 auto;
  max-width: 664px;
  width: 100%;
  text-align: center;
}

.main-services {
  padding-bottom: 40px;
}
@media (min-width: 375px) {
  .main-services {
    padding-bottom: calc(5.148005148vw + 20.694980695px);
  }
}
@media (min-width: 1152px) {
  .main-services {
    padding-bottom: 80px;
  }
}
.main-services .services-list {
  -webkit-transform: translateY(-4%);
  -ms-transform: translateY(-4%);
  transform: translateY(-4%);
}
@media (min-width: 768px) {
  .main-services .services-list {
    -webkit-transform: translateY(-6%);
    -ms-transform: translateY(-6%);
    transform: translateY(-6%);
  }
}

.inner-team {
  padding-top: 20px;
  padding-bottom: 80px;
}
@media (min-width: 375px) {
  .inner-team {
    padding-top: calc(5.148005148vw + 0.694980695px);
  }
}
@media (min-width: 1152px) {
  .inner-team {
    padding-top: 60px;
  }
}
@media (min-width: 375px) {
  .inner-team {
    padding-bottom: calc(5.148005148vw + 60.694980695px);
  }
}
@media (min-width: 1152px) {
  .inner-team {
    padding-bottom: 120px;
  }
}
@media (min-width: 1200px) {
  .inner-team__wrap {
    position: relative;
  }
}
@media (min-width: 1200px) {
  .inner-team__button {
    top: 50%;
  }
  .inner-team__button--prev {
    left: 10px;
  }
  .inner-team__button--next {
    right: 10px;
  }
}

@media (min-width: 1300px) {
  .inner-team__button--prev {
    left: 60px;
  }
  .inner-team__button--next {
    right: 60px;
  }
}

@media (min-width: 1440px) {
  .inner-team__button--prev {
    left: 100px;
  }
  .inner-team__button--next {
    right: 100px;
  }
}
@media (min-width: 1660px) {
  .inner-team__button--prev {
    left: 160px;
  }
  .inner-team__button--next {
    right: 160px;
  }
}
@media (min-width: 1800px) {
  .inner-team__button--prev {
    left: 260px;
  }
  .inner-team__button--next {
    right: 260px;
  }
}
.inner-team__title {
  margin-bottom: 30px;
  color: #00152b;
  text-align: center;
}
@media (min-width: 375px) {
  .inner-team__title {
    margin-bottom: calc(2.574002574vw + 20.3474903475px);
  }
}
@media (min-width: 1152px) {
  .inner-team__title {
    margin-bottom: 50px;
  }
}

.inner-service__services {
  padding-top: 40px;
  padding-bottom: 40px;
}
@media (min-width: 375px) {
  .inner-service__services {
    padding-top: calc(5.148005148vw + 20.694980695px);
  }
}
@media (min-width: 1152px) {
  .inner-service__services {
    padding-top: 80px;
  }
}
@media (min-width: 375px) {
  .inner-service__services {
    padding-bottom: calc(5.148005148vw + 20.694980695px);
  }
}
@media (min-width: 1152px) {
  .inner-service__services {
    padding-bottom: 80px;
  }
}
.inner-service__services .services-list {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

.solution {
  padding-top: 30px;
  padding-bottom: 30px;
}
@media (min-width: 375px) {
  .solution {
    padding-top: calc(3.861003861vw + 15.5212355212px);
  }
}
@media (min-width: 1152px) {
  .solution {
    padding-top: 60px;
  }
}
@media (min-width: 375px) {
  .solution {
    padding-bottom: calc(3.861003861vw + 15.5212355212px);
  }
}
@media (min-width: 1152px) {
  .solution {
    padding-bottom: 60px;
  }
}
.solution__present {
  margin-top: 30px;
}
@media (min-width: 375px) {
  .solution__present {
    margin-top: calc(3.861003861vw + 15.5212355212px);
  }
}
@media (min-width: 1152px) {
  .solution__present {
    margin-top: 60px;
  }
}
@media (min-width: 1024px) {
  .solution__present-top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
  }
}
.solution__title {
  color: #00152b;
}
@media (min-width: 1024px) {
  .solution__title {
    max-width: 680px;
  }
}
.solution__tabs-inner {
  margin: 30px 0 0 0;
}
.solution__tabs-content {
  margin: 50px 0 0 0;
}

.hero-article {
  margin: 56px 0 0 0;
  padding: 100px 0;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media (min-width: 800px) {
  .hero-article {
    margin: 104px 0 0 0;
  }
}
@media (min-width: 1024px) {
  .hero-article {
    margin: 114px 0 0 0;
    padding: 120px 0;
  }
}
.hero-article__content {
  text-align: center;
}
.hero-article__category {
  font-size: 18px;
  color: #fff;
}
@media (min-width: 375px) {
  .hero-article__category {
    font-size: calc(0.5148005148vw + 16.0694980695px);
  }
}
@media (min-width: 1152px) {
  .hero-article__category {
    font-size: 22px;
  }
}
.hero-article__title {
  margin: 4px 0 0 0;
}

.article-content {
  padding-top: 30px;
  padding-bottom: 40px;
}
@media (min-width: 375px) {
  .article-content {
    padding-top: calc(3.861003861vw + 15.5212355212px);
  }
}
@media (min-width: 1152px) {
  .article-content {
    padding-top: 60px;
  }
}
@media (min-width: 375px) {
  .article-content {
    padding-bottom: calc(5.148005148vw + 20.694980695px);
  }
}
@media (min-width: 1152px) {
  .article-content {
    padding-bottom: 80px;
  }
}
.article-content__content-block {
  padding: 0;
}
.article-content__content-block .content-block__wrap {
  margin: 0 auto;
}
.article-content__tags {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #afb8bf;
}

.article-content__tags .tag {
  cursor: default;
}
@media (min-width: 375px) {
  .article-content__tags {
    margin-top: calc(2.574002574vw + 10.3474903475px);
  }
}
@media (min-width: 1152px) {
  .article-content__tags {
    margin-top: 40px;
  }
}
@media (min-width: 375px) {
  .article-content__tags {
    padding-top: calc(2.574002574vw + 10.3474903475px);
  }
}
@media (min-width: 1152px) {
  .article-content__tags {
    padding-top: 40px;
  }
}
@media (min-width: 1024px) {
  .article-content__tags {
    margin-left: auto;
    margin-right: auto;
    max-width: 80%;
  }
}

.blog-hero {
  margin: 56px 0 0 0;
  padding: 100px 0;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media (min-width: 800px) {
  .blog-hero {
    margin: 104px 0 0 0;
  }
}
@media (min-width: 1024px) {
  .blog-hero {
    margin: 114px 0 0 0;
    padding: 120px 0;
  }
}
.blog-hero__container {
  text-align: center;
}
.blog-hero__title {
  margin: 0 auto;
  max-width: 580px;
}

.blog-main {
  padding-top: 20px;
  padding-bottom: 60px;
}
@media (min-width: 375px) {
  .blog-main {
    padding-top: calc(2.574002574vw + 10.3474903475px);
  }
}
@media (min-width: 1152px) {
  .blog-main {
    padding-top: 40px;
  }
}
@media (min-width: 375px) {
  .blog-main {
    padding-bottom: calc(5.148005148vw + 40.694980695px);
  }
}
@media (min-width: 1152px) {
  .blog-main {
    padding-bottom: 100px;
  }
}
.blog-main__container {
  max-width: 1280px;
}
@media (min-width: 800px) {
  .blog-main__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}
@media (min-width: 800px) {
  .blog-main__sidebar {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 300px;
    flex: 0 0 300px;
  }
}
.blog-main__wrap {
  margin: 20px 0 0 0;
}
@media (min-width: 800px) {
  .blog-main__wrap {
    margin: 0;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
}

@media (min-width: 800px) {
  .blog-list {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
    -ms-grid-rows: auto;
    grid-template-rows: auto;
    gap: 12px;
  }
}
@media (min-width: 1200px) {
  .blog-list {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}
.blog-list.flex-parent {
  display: flex;
  justify-content: center;
  align-items: center;
}
.blog-list__item-message {
  padding: 40px 20px;
  font-weight: 700;
  font-size: 18px;
  color: #00152b;
  text-align: center;
}
.blog-list__item:not(:last-child) {
  margin-bottom: 20px;
}
@media (min-width: 800px) {
  .blog-list__item:not(:last-child) {
    margin-bottom: 0;
  }
}

.overlay-loading {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(120, 120, 120, 0.8);
  transition: all ease .2s;
  z-index: 1000;
}

.overlay-loading.hidden {
  opacity: 0;
  transform: scale(0);
}

.about-hero {
  margin: 56px 0 0 0;
  padding: 100px 0;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media (min-width: 800px) {
  .about-hero {
    margin: 104px 0 0 0;
  }
}
@media (min-width: 1024px) {
  .about-hero {
    margin: 114px 0 0 0;
    padding: 120px 0;
  }
}
.about-hero__container {
  text-align: center;
}
.about-hero__title {
  margin: 0 auto;
  max-width: 800px;
}

.greeting {
  padding-top: 40px;
}
@media (min-width: 375px) {
  .greeting {
    padding-top: calc(5.148005148vw + 20.694980695px);
  }
}
@media (min-width: 1152px) {
  .greeting {
    padding-top: 80px;
  }
}
.greeting__content-block {
  padding: 0;
}
.greeting__content-block .content-block__wrap {
  margin: 0 auto;
}
.greeting__title {
  margin-top: 30px;
  margin-bottom: 40px;
  color: #00152b;
  text-align: center;
}
@media (min-width: 375px) {
  .greeting__title {
    margin-top: calc(3.861003861vw + 15.5212355212px);
  }
}
@media (min-width: 1152px) {
  .greeting__title {
    margin-top: 60px;
  }
}

@media (min-width: 768px) {
  .greeting-list {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
    -ms-grid-rows: auto;
    grid-template-rows: auto;
    gap: 20px;
  }
}
@media (min-width: 1200px) {
  .greeting-list {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}
.greeting-list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 400px;
}
.greeting-list__item:not(:last-child) {
  margin-bottom: 16px;
}
.greeting-list__item > .card-lawyer {
  height: unset;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
@media (min-width: 768px) {
  .greeting-list__item {
    min-height: 500px;
  }
}
@media (min-width: 800px) {
  .greeting-list__item:not(:last-child) {
    margin-bottom: 0;
  }
}

.life {
  padding-top: 60px;
  padding-bottom: 40px;
}
@media (min-width: 375px) {
  .life {
    padding-top: calc(7.722007722vw + 31.0424710425px);
  }
}
@media (min-width: 1152px) {
  .life {
    padding-top: 120px;
  }
}
@media (min-width: 375px) {
  .life {
    padding-bottom: calc(5.148005148vw + 20.694980695px);
  }
}
@media (min-width: 1152px) {
  .life {
    padding-bottom: 80px;
  }
}
.life__title {
  margin-bottom: 30px;
  padding: 0 16px;
  color: #00152b;
  text-align: center;
}
@media (min-width: 375px) {
  .life__title {
    margin-bottom: calc(3.861003861vw + 15.5212355212px);
  }
}
@media (min-width: 1152px) {
  .life__title {
    margin-bottom: 60px;
  }
}

.contact {
  padding-top: 40px;
  margin: 56px 0 0 0;
  padding-bottom: 60px;
}

.contact__guide {
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  margin: 18px 0 0 0;
  position: relative;
  font-size: clamp(16px, 3vw, 18px);
  line-height: 1.3;
  color: #fff;
  text-align: center;
  z-index: 10;
}

.contact__guide a {
  color: #f9d606;
  text-decoration: underline;
}

@media (max-width: 767px) {
  .contact__guide {
    text-align: center;
  }
}

/* @media (min-width: 768px) {
  .contact__guide {
    text-align: left;
  }
} */

@media (min-width: 375px) {
  .contact {
    padding-top: calc(7.722007722vw + 11.0424710425px);
  }
}
@media (min-width: 1152px) {
  .contact {
    padding-top: 100px;
    padding-bottom: 10px;
  }
}
@media (min-width: 800px) {
  .contact {
    margin: 104px 0 0 0;
  }
}
@media (min-width: 1024px) {
  .contact {
    margin: 114px 0 0 0;
  }
}
.contact__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
}
@media (min-width: 1024px) {
  .contact__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    flex-wrap: wrap;
    flex-direction: row;
  }
}
@media (min-width: 1024px) {
  .contact__content {
    width: 48%;
  }
}
.contact__form {
  margin: 10px auto 0;
  max-width: 500px;
  width: 100%;
  order: 4;
}
@media (min-width: 1024px) {
  .contact__form {
    margin: 0;
    max-width: 460px;
    order: 2;
    margin-bottom: 100px;
  }
}
/* .contact__map-link {
  display: block;
  width: 100%;
  text-align: center;
} */
@media (min-width: 768px) {
  .contact__map-link img {
    margin: -20px 0 0 0;
    width: 70%;
  }
}

@media (min-width: 1024px) {
  .contact__map-link img {
    margin: -60px 0 0 0;
    width: 100%;
    -webkit-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2);
  }
}
.contact__description {
  margin-top: 16px;
  font-size: clamp(16px, 3vw, 18px);
  line-height: 1.3;
  color: #fff;
}
@media (min-width: 375px) {
  .contact__description {
    margin-top: calc(-1.0296010296vw + 19.861003861px);
  }
}
@media (min-width: 1152px) {
  .contact__description {
    margin-top: 8px;
  }
}
.contact__contact-list {
  position: relative;
  margin: 54px 0 0 0;
  z-index: 5;
}

.spinner {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 20;
}

.spinner.hide {
  display: none;
}

.form-success__inner {
  display: flex;
  flex-direction: column;
}
@media (min-width: 1024px) {
  .form-success__inner {
    display: flex;
    flex-direction: row;
  }
}

.form-success__uptitle {
  font-size: 16px;
  line-height: 38px;
  color: #AFB8BF;
  margin-bottom: 20px;
}
@media (min-width: 1024px) {
  .form-success__uptitle {
    font-size: 24px;
  }
}

.form-success__title {
  font-size: 30px;
  line-height: 40px;
  color: #00152B;
  margin-bottom: 20px;
}
@media (min-width: 1024px) {
  .form-success__title {
    font-size: 64px;
    line-height: 76px;
  }
}

.form_success__description {
  font-size: 18px;
  line-height: 24px;
  margin-bottom: 45px;
}
@media (min-width: 1024px) {
  .form_success__description {
    font-size: 24px;
    line-height: 38px;
    margin-bottom: 60px;
  }
}

.form-success__content {
  max-width: 100%;
}
@media (min-width: 1024px) {
  .form-success__content {
    max-width: 700px;
    align-self: center;
  }
}

.form-success__img {
  display: none;
}
@media (min-width: 1024px) {
  .form-success__img {
    display: block;
  }
}

.form-success {
  margin: 48px 0 0;
  padding: 48px 0;
}
@media (min-width: 1024px) {
  .form-success {
    margin: 114px 0 0;
    padding: 120px 0;
  }
}

.additional-phone {
  margin-top: 8px;
  margin-left: 16px;
  padding-left: 16px;
}
@media (min-width: 768px) {
  .additional-phone {
    margin-top: 0;
    border-left: 1px solid #929292;
  }
}

@media (max-width: 1199px) {
  .btn-mobile {
    font-family: "Open Sans", sans-serif;
    font-weight: 700;
    padding: 16px 24px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 14px;
    color: #fff;
    background-color: #163acf;
    text-align: center;
    -webkit-box-shadow: 0 8px 18px 0 rgba(20, 66, 252, 0.1), 0 33px 33px 0 rgba(20, 66, 252, 0.09), 0 74px 45px 0 rgba(20, 66, 252, 0.05), 0 132px 53px 0 rgba(20, 66, 252, 0.01), 0 206px 58px 0 rgba(20, 66, 252, 0);
    box-shadow: 0 8px 18px 0 rgba(20, 66, 252, 0.1), 0 33px 33px 0 rgba(20, 66, 252, 0.09), 0 74px 45px 0 rgba(20, 66, 252, 0.05), 0 132px 53px 0 rgba(20, 66, 252, 0.01), 0 206px 58px 0 rgba(20, 66, 252, 0);
    -webkit-transition: color ease 0.3s, background-color ease 0.3s;
    transition: color ease 0.3s, background-color ease 0.3s;
  }
}

.content ol {
  list-style: decimal;
}

.popup__location-text {
  display: inline-block;
  flex: 1;
  width: 100%;
  max-width: 370px;
}

.popup__social-list {
  display: flex;
  flex-basis: 100%;
  gap: 12px;
}
.popup__social-list li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.popup__social-list li a span {
  color: #07215C;
  font-size: 10px;
}

@keyframes jump {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-20px);
  }
}

.map-radio-group .changed + label {
  color: #F9D606;
}

.map-link-2.changed {
  display: block;
}

.contact-list__item-text-loc.changed {
  display: block;
}

.contact-list__item-text-loc {
  color: #ffffff;
  text-align: center;
}

.map-radio-group {
  display: flex;
  margin-left: 10px;
}
/* .map-radio-group label {
  margin-right: 10px;
  margin-left: 10px;
  padding-right: 10px;
}

label.map-radio-group-one {
  border-right: 1px solid #ffffff;
} */


.map-radio-group input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.map-radio-group label {
  display: block;
  position: relative;
  padding-left: 35px;
  cursor: pointer;
  font-size: 17px;
  user-select: none;
}

.map-radio-group label:first-child {
  border-right: 1px solid #ffffff;
  margin-right: 15px;
  padding-right: 15px;
}

.map-radio-group span {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  border: 1px solid #ffffff;
  border-radius: 50%;
}

.map-radio-group label input:checked ~ span {
  background-color: #fec901;
  border: 1px solid #fec901;
}

.map-radio-group span:after {
  content: "";
  position: absolute;
  display: none;
}

.map-radio-group label input:checked ~ span:after {
  display: block;
}

.map-radio-group label span:after {
  top: 1px;
  left: 1px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-image: url('/wp-content/themes/legal/assets/img/check.svg');
}





/* styles by oswald */
.cases__top {
  max-width: 1434px;
  padding: 0 141px;
}
#cases-slider-wrapper {
  max-width: 1434px;
  padding: 0 16px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 83px 1fr 83px;
  gap: 58px;
  align-items: center;
  width: 100%;
  position: relative;
}
#cases-slider-wrapper .navigation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
}
#cases-slider-wrapper .navigation button {
  display: none;
}
.swiper-pagination {
  position: static;
}
.cases-slider-btn {
  background-color: #f3f5ff;
  border: none;
  outline: none;
  width: 83px;
  height: 83px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

@media screen and (max-width: 768px) {
  #cases-slider-wrapper {
    grid-template-columns: 1fr;
  }
  .cases-slider-btn {
    display: none;
  }
  #cases-slider-wrapper .navigation .cases-slider-btn {
    display: block;
    width: 45px;
    height: 45px;
  }
  #cases-slider-wrapper .navigation .cases-slider-btn svg {
    width: 10px;
    height: 15px;
  }
}



.practice {
  padding: 70px 16px 100px;
}
.practice__top {
  max-width: 1720px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 43px;
  padding: 0 106px;
}
.practice-title {
  color: #00152b;
}
.practice__slider-wrapper {
  max-width: 1720px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 83px 1fr 83px;
  
  gap: 23px;
  align-items: center;
  width: 100%;
  position: relative;
}
.practice__slider-wrapper .swiper {
  width: 100%;
  box-shadow: 0px 12px 70px 0px #163ACF57;
}
.practice-navigation {
  padding-top: 80px;
}
.practice__slider-item {
  width: 100%;
  height: 400px;
  position: relative;
	overflow: hidden;
	box-shadow: 0px 0px 12px 2px #163ACF57;
}
.practice__slider-item.post {
  height: 250px;
}
.practice__slider-item img {
  top: 0;
  left: 0;
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: center;
  position: absolute;
	transform: scale(1);
	transition: .3s;
}
.practice__slider-item.post img,
.practice__slider-item.post .practice__slider-item__content {
  height: 250px;
}
.practice__slider-item:hover img{
	transform: scale(1.1);
	transition: .3s;
}
.practice__slider-item__content {
  background: rgba(0, 0, 0, 0.5);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: end;
  gap: 23px;
  padding: 26px 46px;
  color: #fff;
  box-sizing: border-box;
}
.practice__content-title {
 font-size: 21px;
    font-weight: 800;
    line-height: 24px;
}

.practice__content-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.practice__content-top__tag {
  border: 1px solid #fff;
  padding: 5px 24px;
}
.practice__content-top__date {
}
.practice-slider .swiper-slide {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 10px;
}
@media screen and (max-width: 1500px) {
  .practice-slider .swiper-slide {
    grid-template-columns: 2fr 3fr 2fr;
  }
  .practice__slider-item__content {
    padding: 25px;
  }
  .practice__content-title {
    font-size: 16px;
    line-height: 21px;
  }
  .practice__content-top {
    font-size: 14px;
  }
}
@media screen and (max-width: 1100px) {
  .practice-slider .swiper-slide {
    grid-template-columns: 9fr 10fr 9fr;
  }
}

@media screen and (max-width: 992px) {
  .practice {
    display: none;
  }
}

.practice-video {
  display: none;
  padding: 60px 0;
}
@media screen and (max-width: 992px) {
  .practice-video {
    display: block;
  }
}
.practice-video .section-title {
  font-size: 20px;
  font-weight: 800;
  line-height: 76px;
  margin-bottom: 24px;
  padding: 0 12px;
}
#practice-video-slider-wrapper {
  display: grid;
  grid-template-columns: 83px 1fr 83px;
  gap: 12px;
  align-items: center;
}
#practice-video-slider-wrapper .navigation {
  margin-top: 20px;
  padding: 0 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#practice-video-slider-wrapper .navigation .cases-slider-btn {
  display: none;
}
#practice-video-slider-wrapper .swiper {
  width: 100%;
  padding: 20px 12px 12px;
}
#practice-video-slider-wrapper .swiper .swiper-wrapper {
  min-height: 250px;
}
#practice-video-slider-wrapper .swiper-slide {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 250px;
  box-shadow: 0px 0px 12px 4px #163ACF57;
}

#practice-video-slider-wrapper .swiper-slide img {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: 250px;
  position: absolute;
/*   filter: brightness(30%); */
}
#practice-video-slider-wrapper .swiper-slide svg {
  z-index: 1;
}

@media screen and (max-width: 768px) {
  #practice-video-slider-wrapper {
    grid-template-columns: 1fr;
  }
  .cases-slider-btn {
    display: none;
  }
  #practice-video-slider-wrapper .navigation {
    display: grid;
    grid-template-columns: 45px 1fr 45px;
    gap: 12px;
    align-items: center;
  }
  #practice-video-slider-wrapper .navigation .cases-slider-btn {
    display: block;
    width: 45px;
    height: 45px;
  }
  #practice-video-slider-wrapper .navigation .cases-slider-btn svg {
    width: 10px;
    height: 15px;
  }
}


#practice-video-slider-wrapper.post-slider .swiper-slide {
  width: 85%;
}

@media screen and (max-width: 480px) {
	#practice-video-slider-wrapper.post-slider .swiper-slide {
	  width: 100%;
	}

  /* .feedback-form__input-radio {
    grid-template-columns: 100%;
  } */
}



.practice-subscribe-block {
  display: none;
  background-image: url('https://legal.iwaexpert.com/wp-content/uploads/2024/05/youtube.svg');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top right;

  border-top: 1px solid #163ACF80;
  border-bottom: 1px solid #163ACF80;
  justify-content: space-between;
  overflow: hidden;
}
.practice-subscribe-block.telegram-icon {
  background-image: url('https://legal.iwaexpert.com/wp-content/uploads/2024/05/telegram.svg');
  margin-bottom: 65px;
}
.practice-subscribe-block .left {
  width: 90%;
  padding: 20px 0 20px 20px;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 20px;
}
.practice-subscribe-block .left-name {
  font-size: 20px;
  font-weight: 700;
  color: #163ACF;
}
.practice-subscribe-block .left-link {
  display: block;
  background: #fff;
  box-shadow: 0px 6px 20px 0px #163ACF14;
  padding: 6px 12px;
  font-size: 12px;
  display: flex;
  align-items: center;
  color: #163ACF;
  font-weight: 700;
}


.practice-subscribe-telegram {
  background-color: #163ACF;
  background-image: url('https://legal.iwaexpert.com/wp-content/uploads/2024/05/telegram_desc.svg');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;

  box-shadow: 0px 25px 70px 0px #163ACF59;


  padding: 70px;
  max-width: 1200px;
  margin: 0 auto;
  margin-bottom: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.practice-subscribe-telegram .telegram-title {
  max-width: 450px;
  font-size: 28px;
  font-weight: 700;
  color: #fff;
}
.practice-subscribe-telegram .left-link {
  display: block;
  background: #fff;
  box-shadow: 0px 6px 20px 0px #163ACF14;
  padding: 6px 12px;
  font-size: 20px;
  display: flex;
  align-items: center;
  color: #163ACF;
  font-weight: 700;
}

@media screen and (max-width: 1200px) {
  .practice-subscribe-telegram {
    margin: 0 12px 120px 12px;
  }
}
@media screen and (max-width: 992px) {
  .practice-subscribe-block {
    display: block;
  }
  .practice-subscribe-telegram {
    display: none;
  }
}

.wp-block-embed__wrapper {
  padding-top: 56.35%;
}

.wp-block-embed__wrapper iframe {
  border: none;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.responsive-video{
	overflow: hidden;
	padding-bottom: 56.25%;
	position: relative;
	width: 90vw;
	max-width: 950px;
	max-height: 450px;
}

.responsive-video iframe{
	left:0;
	top:0;
	height:100%;
    width:100%;
	position:absolute;
}

.add-read-more.show-less-content .second-section,
.add-read-more.show-less-content .read-less {
    display: none;
}

.add-read-more.show-more-content .read-more {
    display: none;
}

.add-read-more .read-more,
.add-read-more .read-less {
    font-weight: bold;
    color: #121212;
    cursor: pointer;
}

.add-read-more {
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
}

@media (max-width: 600px) {
	.container.content > .pl-block{
		max-width: 93vw;
	}
}

section.try .errors__title {
	display: block;
}

.wpcf7-form-control.wpcf7-radio{
	flex-wrap: wrap;
    gap: 10px;
}

.wpcf7-form-control.wpcf7-radio>.wpcf7-list-item{
	max-width: 100px;
}




