@charset "UTF-8";
:root {
  --black-site: #000000;
  --black-color: #242424;
  --back-color:#f7f7f7;
  --back-color-2:#EDEDED;
  --white-color: #ffffff;
  --primary-color:#CD4A4C;
  --red-color: #e3000b;
  --text-color: #777777;
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

img {
  display: block;
  border-style: none;
  width: 100%;
  height: 100%;
}

.image-cover {
  -o-object-fit: cover;
     object-fit: cover;
}

input,
textarea {
  outline: none;
  border: none;
  background-color: transparent;
}

button {
  display: block;
  cursor: pointer;
  outline: none;
  border: none;
  background: transparent;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

li {
  margin: 0;
  padding: 0;
}

address {
  display: block;
  font-style: normal;
  margin: 0;
}

p {
  margin: 0;
  padding: 0;
}

a {
  display: block;
  outline: none;
  border: none;
  text-decoration: none;
  color: var(--black-color);
}

main {
  position: relative;
}

body {
  position: relative;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  color: var(--text-color);
  overflow-x: hidden;
}

html,
body {
  scrollbar-width: none;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
  display: none;
}

.disable-scroll {
  position: relative;
  overflow: hidden;
  height: 100vh;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
}

.page-main {
  padding: 50px 0 0;
}
@media (max-width: 1160px) {
  .page-main {
    padding: 30px 0 0;
  }
}
@media (max-width: 575px) {
  .page-main {
    padding: 20px 0 0;
  }
}

.section {
  padding: 100px 0 0;
}
@media (max-width: 1160px) {
  .section {
    padding: 70px 0 0;
  }
}
@media (max-width: 575px) {
  .section {
    padding: 50px 0 0;
  }
}

.container {
  position: relative;
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 0 60px;
}
@media (min-width: 1921px) {
  .container {
    max-width: 1920px;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 30px;
  }
}
@media (max-width: 575px) {
  .container {
    padding: 0 15px;
  }
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5 {
  margin: 0;
  padding: 0;
  color: var(--black-color);
}

h1,
.h1 {
  font-weight: 500;
  font-size: 42px;
  line-height: 1em;
  text-transform: uppercase;
  margin-bottom: 50px;
}
@media (max-width: 575px) {
  h1,
  .h1 {
    margin-bottom: 30px;
  }
}
@media (max-width: 768px) {
  h1,
  .h1 {
    font-size: 36px;
  }
}
@media (max-width: 575px) {
  h1,
  .h1 {
    font-size: 32px;
  }
}

h2,
.h2 {
  font-weight: 500;
  font-size: 36px;
  line-height: 1em;
  text-transform: uppercase;
  margin-bottom: 50px;
}
@media (max-width: 575px) {
  h2,
  .h2 {
    margin-bottom: 30px;
  }
}
@media (max-width: 768px) {
  h2,
  .h2 {
    font-size: 30px;
  }
}
@media (max-width: 575px) {
  h2,
  .h2 {
    font-size: 25px;
  }
}

.h3,
h3 {
  font-size: 22px;
  font-weight: 700;
  line-height: 170%;
}
@media (max-width: 768px) {
  .h3,
  h3 {
    font-size: 20px;
  }
}
@media (max-width: 575px) {
  .h3,
  h3 {
    font-size: 18px;
  }
}

.medium {
  max-width: 800px;
  font-size: 18px;
  line-height: 150%;
}
@media (max-width: 575px) {
  .medium {
    font-size: 17px;
  }
}

.boot__content {
  min-height: calc(100vh - 84px);
  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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
}

.errror-page__content {
  min-height: calc(100vh - 84px);
  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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 30px;
}
.errror-page h1 {
  margin-bottom: 0;
}
.errror-page h2 {
  text-align: center;
  text-transform: none;
  font-weight: 400;
  max-width: 80%;
  line-height: 1.3;
}

.menu-burger {
  position: relative;
  display: none;
  z-index: 10;
  width: 35px;
  height: 35px;
  cursor: pointer;
  border: 1px solid var(--primary-color);
  border-radius: 5px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
@media (max-width: 575px) {
  .menu-burger {
    width: 25px;
    height: 25px;
  }
}
.menu-burger__line {
  position: absolute;
  height: 1px;
  background: var(--primary-color);
  right: 6px;
  width: 12px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media (max-width: 575px) {
  .menu-burger__line {
    right: 4px;
    width: 10px;
  }
}
.menu-burger__line:before, .menu-burger__line:after {
  content: "";
  position: absolute;
  height: 1px;
  background: var(--primary-color);
  width: 18px;
  right: 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media (max-width: 575px) {
  .menu-burger__line:before, .menu-burger__line:after {
    width: 15px;
  }
}
.menu-burger__line:before {
  top: -8px;
}
@media (max-width: 575px) {
  .menu-burger__line:before {
    top: -6px;
  }
}
.menu-burger__line:after {
  top: 8px;
}
@media (max-width: 575px) {
  .menu-burger__line:after {
    top: 6px;
  }
}
.menu-burger__open {
  position: relative;
  outline: none;
  border: none;
  width: 100%;
  height: 100%;
  background: transparent;
  padding: 0;
}
.menu-burger.active {
  border-color: var(--primary-color);
}
.menu-burger.active .menu-burger__line {
  background: transparent;
}
.menu-burger.active .menu-burger__line:before {
  top: 0;
  background-color: var(--primary-color);
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
  right: 1px;
}
.menu-burger.active .menu-burger__line:after {
  top: 0;
  background-color: var(--primary-color);
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
  right: 1px;
}

@media (max-width: 1160px) {
  .menu-burger {
    display: block;
  }
}
.header {
  position: relative;
  padding: 20px 0;
  width: 100% !important;
  background-color: var(--white-color);
  -webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
          box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  z-index: 120;
  -webkit-transition: top 0.7s ease, opacity 0.7s ease, -webkit-box-shadow 1s ease;
  transition: top 0.7s ease, opacity 0.7s ease, -webkit-box-shadow 1s ease;
  transition: box-shadow 1s ease, top 0.7s ease, opacity 0.7s ease;
  transition: box-shadow 1s ease, top 0.7s ease, opacity 0.7s ease, -webkit-box-shadow 1s ease;
}
.header.detached {
  position: fixed !important;
  top: 0;
  opacity: 1 !important;
  width: 100% !important;
  background-color: var(--white-color) !important;
  -webkit-box-shadow: 0 15px 10px 0 rgba(0, 0, 0, 0.2);
          box-shadow: 0 15px 10px 0 rgba(0, 0, 0, 0.2);
  -webkit-transition: top 0.7s ease, opacity 0.7s ease, -webkit-box-shadow 1s ease;
  transition: top 0.7s ease, opacity 0.7s ease, -webkit-box-shadow 1s ease;
  transition: box-shadow 1s ease, top 0.7s ease, opacity 0.7s ease;
  transition: box-shadow 1s ease, top 0.7s ease, opacity 0.7s ease, -webkit-box-shadow 1s ease;
}
.header.invisible {
  position: fixed;
  top: -20%;
  left: 0;
  right: 0;
  width: 100%;
  height: auto;
  -webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
          box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  -webkit-transition: top 0.7s ease, opacity 0.7s ease, -webkit-box-shadow 1s ease;
  transition: top 0.7s ease, opacity 0.7s ease, -webkit-box-shadow 1s ease;
  transition: box-shadow 1s ease, top 0.7s ease, opacity 0.7s ease;
  transition: box-shadow 1s ease, top 0.7s ease, opacity 0.7s ease, -webkit-box-shadow 1s ease;
}

.header-body {
  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;
}
.header-body__item:nth-child(4) {
  display: none;
}
@media (max-width: 1160px) {
  .header-body__item:nth-child(3) {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .header-body__item:nth-child(2) {
    width: 0 !important;
  }
  .header-body__item:nth-child(4) {
    width: 185px;
    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: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}
@media (max-width: 575px) {
  .header-body__item:nth-child(3) {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
    padding-top: 6px;
    width: calc(100% - 180px);
  }
  .header-body__item:nth-child(4) {
    width: 90px;
  }
}
@media (max-width: 575px) and (max-width: 374px) {
  .header-body__item:nth-child(4) {
    width: 70px;
  }
}

.header-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  z-index: 1;
}
.header-list__item {
  position: relative;
  font-size: 20px;
  line-height: 120%;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media (min-width: 1025px) {
  .header-list__item:hover a {
    color: var(--primary-color);
  }
}
.header-list__item.current a {
  color: var(--primary-color);
}
.header-list__item a {
  display: block;
  font-size: 15px;
  padding: 10px 20px;
  font-weight: 500;
  text-transform: lowercase;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media (max-width: 1160px) {
  .header-list__item a {
    padding: 10px 0;
  }
}
.header-list.active {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100vh;
  left: 0;
  top: 70px;
  padding: 40px;
  -webkit-animation: header-list 0.7s ease-in-out;
          animation: header-list 0.7s ease-in-out;
  z-index: 10;
  background-color: var(--white-color);
  -webkit-transition: all 0.7s ease-in-out;
  transition: all 0.7s ease-in-out;
}
@media (max-width: 575px) {
  .header-list.active {
    width: 100%;
    padding: 20px;
    top: 50px;
  }
}
@media (max-width: 1160px) {
  .header-list {
    display: none;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media (max-width: 575px) {
  .header-list__indent {
    margin-top: 50px;
  }
}

@-webkit-keyframes header-list {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-30%);
            transform: translateX(-30%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
}

@keyframes header-list {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-30%);
            transform: translateX(-30%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
}
.header-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.header-info a {
  display: block;
  text-align: right;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media (min-width: 1025px) {
  .header-info a:hover {
    color: var(--primary-color);
  }
}
@media (max-width: 1160px) {
  .header-info {
    min-width: 185px;
  }
  .header-info a {
    text-align: left;
  }
}

.header-menu-logo {
  width: 150px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  z-index: 1;
  overflow: hidden;
}
.header-menu-logo img {
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media (min-width: 1025px) {
  .header-menu-logo img:hover {
    -webkit-filter: drop-shadow(0px 0px 0px var(--black-color));
            filter: drop-shadow(0px 0px 0px var(--black-color));
  }
}
@media (max-width: 1160px) {
  .header-menu-logo {
    margin: 0 auto;
  }
}
@media (max-width: 575px) {
  .header-menu-logo {
    width: 90px;
    margin: 0;
  }
}

.header-body-contact {
  width: 150px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
.header-body-contact a {
  text-align: right;
  font-weight: 700;
  font-size: 18px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media (min-width: 1025px) {
  .header-body-contact a:hover {
    color: var(--primary-color);
  }
}
@media (max-width: 1160px) {
  .header-body-contact a {
    text-align: left;
    font-size: 16px;
  }
}
@media (max-width: 575px) {
  .header-body-contact a {
    text-align: center;
    font-size: 14px;
    line-height: 1;
    white-space: nowrap;
  }
}
@media (max-width: 575px) {
  .header-body-contact {
    width: auto;
  }
}

.footer {
  padding: 20px 0;
  background-color: var(--back-color);
}
@media (max-width: 575px) {
  .footer {
    padding: 15px 0;
  }
}
.footer a {
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media (min-width: 1025px) {
  .footer a:hover {
    color: var(--primary-color);
  }
}
.footer__info {
  font-size: 11px;
  font-weight: 300;
  line-height: 100%;
  text-align: center;
  margin-bottom: 15px;
}
@media (max-width: 575px) {
  .footer__info {
    font-size: 8px;
  }
}
.footer__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 14px;
}
@media (max-width: 1160px) {
  .footer__bottom {
    -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;
  }
  .footer__bottom div {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }
}
.footer__bottom a {
  font-weight: 300;
  font-size: 14px;
  color: var(--text-color);
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.65);
  z-index: 999;
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
  display: none;
}

.modal-overlay.active {
  display: block;
}

.modal {
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 1000;
  background: var(--white-color);
  padding: 50px;
  max-width: 1100px;
  width: 100%;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  display: none;
  overflow-y: scroll;
  max-height: 90vh;
}
@media (max-width: 1160px) {
  .modal {
    max-width: 80%;
    padding: 50px 20px 30px;
  }
}
@media (max-width: 768px) {
  .modal {
    padding: 50px 10px 20px;
  }
}
@media (max-width: 575px) {
  .modal {
    max-width: 95%;
    overflow-y: scroll;
    max-height: 90vh;
  }
}
.modal::-webkit-scrollbar {
  width: 1px;
  height: 1px;
}
.modal::-webkit-scrollbar-track {
  background-color: transparent;
}
.modal::-webkit-scrollbar-thumb {
  background-color: transparent;
}
.modal.trigger-modal {
  padding: 0;
  max-width: 700px;
  margin: 0 auto;
  height: 700px;
  overflow: hidden;
}
@media (max-width: 1160px) {
  .modal.trigger-modal {
    max-width: 500px;
    height: 500px;
  }
}
@media (max-width: 575px) {
  .modal.trigger-modal {
    max-width: 300px;
    height: 300px;
  }
}
.modal.trigger-modal .close {
  z-index: 3;
}
.modal.trigger-modal .close svg line {
  stroke: var(--white-color);
}

.modal.active {
  display: block;
}

body.modal-open {
  overflow: hidden;
  padding-right: var(--scrollbar-width);
}

.close {
  position: absolute;
  top: 15px;
  right: 15px;
  cursor: pointer;
  z-index: 2;
}
.close svg {
  width: 25px;
  height: 25px;
}
@media (max-width: 768px) {
  .close {
    top: 10px;
    right: 10px;
  }
  .close svg {
    width: 20px;
    height: 20px;
  }
}
.close svg line {
  stroke: var(--black-color);
}

.trigger-modal__img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
}
.trigger-modal::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0.6) 100%);
  z-index: 1;
  pointer-events: none;
}
.trigger-modal h2,
.trigger-modal h3 {
  color: var(--white-color);
  text-align: center;
  -webkit-backdrop-filter: blur(1.5px);
          backdrop-filter: blur(1.5px);
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.6);
}
.trigger-modal__wrapper {
  padding: 50px 40px;
  position: relative;
  height: 100%;
  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;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  z-index: 2;
  border: 10px solid var(--white-color);
}
@media (max-width: 1160px) {
  .trigger-modal__wrapper {
    padding: 30px 20px;
  }
}
@media (max-width: 575px) {
  .trigger-modal__wrapper {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 40px 10px;
    border: 5px solid var(--white-color);
  }
  .trigger-modal__wrapper h2 {
    margin-bottom: 10px;
  }
}
.trigger-modal__inner {
  width: 100%;
}
.trigger-modal h3 {
  font-weight: 500;
  font-size: 48px;
  line-height: 1em;
  text-transform: uppercase;
  margin-bottom: 30px;
}
@media (max-width: 1160px) {
  .trigger-modal h3 {
    font-size: 42px;
  }
}
@media (max-width: 768px) {
  .trigger-modal h3 {
    font-size: 36px;
  }
}
@media (max-width: 575px) {
  .trigger-modal h3 {
    font-size: 26px;
  }
}
.trigger-modal .button {
  margin: 0 auto;
  -webkit-box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.6);
          box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.6);
}

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

.button {
  position: relative;
  display: block;
  max-width: 350px;
  width: 100%;
  padding: 15px 5px;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  background-color: var(--primary-color);
  border: 2px solid var(--primary-color);
  color: var(--white-color);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  text-align: center;
  letter-spacing: 1.5px;
  border-radius: 5px;
  transition: all 0.4s ease;
}
.button:before, .button:after {
  content: "";
  position: absolute;
  top: 2px;
  right: 2px;
  bottom: 2px;
  left: 2px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.button:before {
  border-top: 2px solid var(--white-color);
  border-bottom: 2px solid var(--white-color);
  -webkit-transform: scaleX(0);
      -ms-transform: scaleX(0);
          transform: scaleX(0);
}
.button:after {
  border-left: 2px solid var(--white-color);
  border-right: 2px solid var(--white-color);
  -webkit-transform: scaleY(0);
      -ms-transform: scaleY(0);
          transform: scaleY(0);
}
@media (min-width: 1025px) {
  .button:hover {
    color: var(--white-color) !important;
  }
  .button:hover:before, .button:hover:after {
    -webkit-transform: scale(1);
        -ms-transform: scale(1);
            transform: scale(1);
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }
}
@media (max-width: 1025px) {
  .button {
    color: var(--white-color) !important;
  }
  .button:before, .button:after {
    -webkit-transform: scale(1);
        -ms-transform: scale(1);
            transform: scale(1);
  }
}
@media (max-width: 575px) {
  .button {
    max-width: 300px;
    padding: 10px 0;
  }
}

.documents {
  padding: 50px 0;
  border-top: 1px solid var(--primary-color);
}
@media (max-width: 768px) {
  .documents {
    padding: 30px 0;
  }
}
.documents h1 {
  text-align: center;
  margin-bottom: 50px;
}
@media (max-width: 575px) {
  .documents h1 {
    margin-bottom: 30px;
  }
}
.documents__content {
  max-width: 1100px;
  margin: 0 auto;
  margin-bottom: 20px;
}
.documents__content p {
  padding-bottom: 10px;
}
.documents__content h3 {
  margin-top: 15px;
  margin-bottom: 7px;
}
.documents__button {
  margin: 0 auto;
}

.sticky-button {
  position: fixed;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  bottom: 30px;
  right: 30px;
  cursor: pointer;
  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;
  background: var(--primary-color);
  z-index: 25;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media (min-width: 1025px) {
  .sticky-button:hover .sticky-button__wave,
  .sticky-button:hover .sticky-button__wave.shadow {
    opacity: 0;
  }
}
@media (max-width: 575px) {
  .sticky-button {
    width: 70px;
    height: 70px;
  }
}
.sticky-button__wave {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 2px solid var(--primary-color);
  width: 110%;
  height: 110%;
  opacity: 0.9;
  -webkit-animation: sticky-button-wave 2s infinite cubic-bezier(0.37, 0, 0.8, 0.77);
          animation: sticky-button-wave 2s infinite cubic-bezier(0.37, 0, 0.8, 0.77);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.sticky-button__wave.shadow {
  border-color: var(--primary-color);
  opacity: 0.6;
  -webkit-animation: sticky-button-wave-shadow 2s infinite cubic-bezier(0.37, 0, 0.8, 0.77);
          animation: sticky-button-wave-shadow 2s infinite cubic-bezier(0.37, 0, 0.8, 0.77);
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.sticky-button__text {
  position: relative;
  color: var(--white-color);
  font-size: 15px;
  text-align: center;
  font-weight: 400;
  z-index: 2;
}
@media (max-width: 575px) {
  .sticky-button__text {
    font-size: 13px;
    line-height: 1.2;
  }
}

@-webkit-keyframes sticky-button-wave {
  100% {
    width: 200%;
    height: 200%;
    border-color: transparent;
    opacity: 0;
  }
}

@keyframes sticky-button-wave {
  100% {
    width: 200%;
    height: 200%;
    border-color: transparent;
    opacity: 0;
  }
}
@-webkit-keyframes sticky-button-wave-shadow {
  100% {
    width: 180%;
    height: 180%;
    border-color: transparent;
    opacity: 0;
  }
}
@keyframes sticky-button-wave-shadow {
  100% {
    width: 180%;
    height: 180%;
    border-color: transparent;
    opacity: 0;
  }
}
.slideshow {
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.1);
  position: absolute;
}
.slideshow:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}
@media (max-width: 575px) {
  .slideshow__img-desk {
    display: none;
  }
}
.slideshow__img-mob {
  display: none;
}
@media (max-width: 575px) {
  .slideshow__img-mob {
    display: block;
  }
}
.slideshow__item {
  width: 100%;
  height: 100%;
  position: absolute;
  opacity: 0;
  -webkit-animation: slideanim 30s infinite;
          animation: slideanim 30s infinite;
  pointer-events: none;
}
.slideshow__item:nth-child(1), .slideshow__item:nth-child(1) img {
  -webkit-animation-delay: 0;
          animation-delay: 0;
}
.slideshow__item:nth-child(2), .slideshow__item:nth-child(2) img {
  -webkit-animation-delay: 15s;
          animation-delay: 15s;
}
.slideshow__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-animation: zoom 30s infinite;
          animation: zoom 30s infinite;
}

@-webkit-keyframes slideanim {
  16% {
    opacity: 1;
    pointer-events: auto;
  }
  33% {
    opacity: 1;
    pointer-events: auto;
  }
  95% {
    opacity: 0;
  }
}

@keyframes slideanim {
  16% {
    opacity: 1;
    pointer-events: auto;
  }
  33% {
    opacity: 1;
    pointer-events: auto;
  }
  95% {
    opacity: 0;
  }
}
@-webkit-keyframes zoom {
  50% {
    -webkit-transform: scale(1.3);
            transform: scale(1.3);
  }
}
@keyframes zoom {
  50% {
    -webkit-transform: scale(1.3);
            transform: scale(1.3);
  }
}
.first-screen {
  position: relative;
  min-height: calc(100vh - 84px);
  height: 100%;
}
.first-screen__wrapper {
  max-width: 1920px;
  height: 100%;
  overflow: hidden;
}
.first-screen__slide {
  position: relative;
  width: 100%;
  height: 100%;
}
.first-screen__slide:before {
  position: absolute;
  content: "";
  top: 0;
  width: 100%;
  height: calc(100% - 20px);
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.4)), color-stop(80%, rgba(0, 0, 0, 0)));
  background: linear-gradient(to top, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0) 80%);
  z-index: 1;
  pointer-events: none;
}
.first-screen__slide img {
  position: absolute;
  width: 100%;
  height: calc(100% - 20px);
  top: 0;
  left: 0;
  bottom: 20px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 768px) {
  .first-screen__desc {
    display: none;
  }
}
.first-screen__mob {
  display: none;
}
@media (max-width: 768px) {
  .first-screen__mob {
    display: block;
  }
}
.first-screen__bottom {
  position: absolute;
  width: calc(100% - 50px);
  bottom         : 30px;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  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;
  color: var(--white-color);
  opacity: 0.8;
  font-size: 11px;
  font-weight: 300;
  line-height: 100%;
  z-index: 2;
  text-align: center;
  pointer-events: none;
}
.first-screen__bottom span {
  padding: 0 5px;
}
@media (max-width: 768px) {
  .first-screen__bottom span {
    display: none;
  }
}
@media (max-width: 768px) {
  .first-screen__bottom {
    -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;
    width: calc(100% - 80px);
  }
}
@media (max-width: 575px) {
  .first-screen__bottom {
    width: calc(100% - 50px);
    font-size: 8px;
  }
}
.first-screen__item {
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  text-align: center;
}
.first-screen__item a {
  color: var(--white-color);
  font-size: 15px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media (min-width: 1025px) {
  .first-screen__item a:hover {
    color: var(--primary-color);
  }
}
.first-screen__item:last-child {
  text-align: center;
  width: 100%;
  max-width: 100%;
}

.contact-top {
  padding-bottom: 100px;
  overflow: hidden;
}
@media (max-width: 1160px) {
  .contact-top {
    padding-bottom: 0;
  }
}
.contact-top__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 1160px) {
  .contact-top__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.contact-top__left, .contact-top__right {
  width: 48%;
}
@media (max-width: 1160px) {
  .contact-top__left, .contact-top__right {
    width: 100%;
  }
}
@media (max-width: 1160px) {
  .contact-top__left {
    margin-bottom: 30px;
  }
}

.contact-bottom {
  padding: 50px 0;
  background-color: var(--back-color-2);
  color: var(--black-color);
}
@media (max-width: 575px) {
  .contact-bottom {
    padding: 30px;
  }
}
.contact-bottom a {
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media (min-width: 1025px) {
  .contact-bottom a:hover {
    color: var(--primary-color);
  }
}
.contact-bottom__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 30px;
}
@media (max-width: 1160px) {
  .contact-bottom__wrapper {
    display: grid;
    grid-template-columns: 170px calc(100% - 170px);
    gap: 20px;
  }
}
@media (max-width: 575px) {
  .contact-bottom__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.contact-bottom__item {
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
}
@media (max-width: 1160px) {
  .contact-bottom__item {
    max-width: 100%;
  }
  .contact-bottom__item:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
  }
  .contact-bottom__item:nth-child(2) {
    grid-column: 1;
    grid-row: 2;
  }
  .contact-bottom__item:nth-child(3) {
    grid-column: 2;
    grid-row: 1;
  }
  .contact-bottom__item:nth-child(4) {
    grid-column: 2;
    grid-row: 2;
  }
}

.contact-bottom-info {
  padding: 30px 0;
  font-size: 11px;
  font-weight: 300;
  line-height: 100%;
  text-align: center;
}
.contact-bottom-info span {
  display: block;
  padding-top: 10px;
  font-size: 13px;
  font-weight: 400;
}

.contact-bottom__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 14px;
}
@media (max-width: 1160px) {
  .contact-bottom__bottom {
    -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;
  }
  .contact-bottom__bottom div {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }
}
.contact-bottom__bottom a {
  font-weight: 300;
  font-size: 14px;
  color: var(--text-color);
}

.contact-top-map {
  position: relative;
}
.contact-top-map__map {
  width: 100%;
  -webkit-transition: height 0.3s ease-in-out;
  transition: height 0.3s ease-in-out;
}
@media (max-width: 1160px) {
  .contact-top-map__map {
    width: calc(100% + 60px);
    margin: 0 -30px;
  }
}
.contact-top-map .mapTitle {
  position: absolute;
  z-index: 1000;
  -webkit-box-shadow: rgba(0, 0, 0, 0.25) 0px 0px 5px;
          box-shadow: rgba(0, 0, 0, 0.25) 0px 0px 5px;
  display: none;
  padding: 5px 10px;
  border-radius: 5px;
  background: rgb(255, 255, 255);
  border-width: 1px;
  border-style: solid;
  border-color: rgb(204, 204, 204);
  font-size: 13px;
  color: var(--primary-color);
}

.contact-top-form__description {
  font-weight: 400;
  line-height: 100%;
  margin-bottom: 50px;
}
@media (max-width: 575px) {
  .contact-top-form__description {
    margin-bottom: 30px;
  }
}
.contact-top-form .feedback {
  position: relative;
}
.contact-top-form .feedback__inner {
  position: relative;
  border-bottom: 1px solid var(--text-color);
  margin-bottom: 30px;
}
.contact-top-form .feedback__label {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  color: var(--black-color);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.contact-top-form .feedback__input {
  width: 100%;
  padding: 10px 10px 10px 0;
}
.contact-top-form .feedback__contact {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  border: 0;
  clip: rect(0 0 0 0);
}
.contact-top-form .feedback__police {
  font-size: 14px;
  line-height: 1em;
}
.contact-top-form .feedback__police a {
  display: inline;
  text-decoration: underline;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media (min-width: 1025px) {
  .contact-top-form .feedback__police a:hover {
    color: var(--primary-color);
  }
}
@media (max-width: 395px) {
  .contact-top-form .feedback__police .feedback-checked__link-1 {
    padding-left: 25px;
    line-height: 1.4;
  }
}
.contact-top-form .feedback .button {
  margin-bottom: 10px;
}
.contact-top-form .feedback .wpcf7-not-valid-tip {
  position: absolute;
  bottom: 0px;
  right: 5px;
  font-size: 12px !important;
  line-height: 12px !important;
  color: var(--red-color) !important;
}
.contact-top-form .feedback .wpcf7-response-output {
  border: none !important;
  position: absolute;
  bottom: -80px;
  margin: 0;
  z-index: 5;
  width: 100%;
  font-size: 14px !important;
  line-height: 110% !important;
  padding: 0 !important;
  text-align: center !important;
}
.contact-top-form .feedback .transparent-background {
  background-color: var(--primary-color) !important;
  color: var(--white-color) !important;
  padding: 10px !important;
}
.contact-top-form .feedback .transparent-background-hidden {
  top: -1px;
  bottom: -1px;
  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;
  font-size: 22px !important;
  background-color: var(--white-color) !important;
  color: var(--primary-color) !important;
}
.contact-top-form .filled,
.contact-top-form .focus,
.contact-top-form .mouse {
  -webkit-transform: translate3d(0, -120%, 0);
          transform: translate3d(0, -120%, 0);
  font-size: 13px;
  line-height: 16px;
  color: var(--text-color);
}

.wpcf7-form-control.wpcf7-acceptance input[type=checkbox] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.wpcf7-form-control.wpcf7-acceptance span.wpcf7-list-item-label {
  position: relative;
  padding-left: 25px;
  cursor: pointer;
}

.wpcf7-form-control.wpcf7-acceptance span.wpcf7-list-item-label::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  height: 16px;
  width: 16px;
  border: 1px solid var(--text-color);
  border-radius: 3px;
  background-color: transparent;
}

.wpcf7-form-control.wpcf7-acceptance input[type=checkbox]:checked + span.wpcf7-list-item-label::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 4px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  color: var(--black-color);
  font-size: 12px;
}

.wpcf7-list-item {
  margin: 0 !important;
}

.about-first-screen {
  min-height: calc(100vh - 84px);
  height: 100%;
  position: relative;
  overflow: hidden;
}
@media (min-width: 1921px) {
  .about-first-screen {
    overflow: hidden;
    margin: 0 auto;
    max-width: 1920px;
    padding: 0 60px;
  }
}
.about-first-screen__content {
  position: absolute;
  top: 65%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  opacity: 0;
  -webkit-animation: text-fade-in 0.6s ease-out 1s forwards;
          animation: text-fade-in 0.6s ease-out 1s forwards;
  z-index: 2;
}
.about-first-screen__content h3 {
  max-width: 800px;
  margin-top: -20px;
  line-height: 130%;
  font-weight: 400;
}

@-webkit-keyframes text-fade-in {
  0% {
    opacity: 0;
    -webkit-transform: translate(-50%, -15%);
            transform: translate(-50%, -15%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}

@keyframes text-fade-in {
  0% {
    opacity: 0;
    -webkit-transform: translate(-50%, -15%);
            transform: translate(-50%, -15%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}
.about-first-screen.color-black .slideshow:after {
  background: -webkit-gradient(linear, left bottom, right top, from(rgba(255, 255, 255, 0.5)), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(to top right, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0) 100%);
}
.about-first-screen.color-black .about-first-screen__content h1,
.about-first-screen.color-black .about-first-screen__content h3 {
  color: var(--black-color);
}
.about-first-screen.color-white .slideshow:after {
  background: -webkit-gradient(linear, left bottom, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(to top right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%);
}
.about-first-screen.color-white .about-first-screen__content h1,
.about-first-screen.color-white .about-first-screen__content h3 {
  color: var(--white-color);
}

.about-description {
  padding-bottom: 100px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media (max-width: 1160px) {
  .about-description {
    padding-bottom: 70px;
  }
}
@media (max-width: 575px) {
  .about-description {
    padding-bottom: 50px;
  }
}
@media (min-width: 1025px) {
  .about-description:hover [data-fancybox]:hover::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.4);
    -webkit-transition: background-color 0.3s ease;
    transition: background-color 0.3s ease;
    z-index: 2;
  }
}
.about-description [data-fancybox]::after {
  content: "\f00e";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-size: 40px;
  color: var(--white-color);
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media (min-width: 1025px) {
  .about-description:hover [data-fancybox]:hover::after {
    opacity: 1;
  }
}
.about-description__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 1160px) {
  .about-description__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.about-description__img {
  width: calc(50% - 25px);
  padding-top: calc(50% - 25px);
  position: relative;
  overflow: hidden;
  height: 0;
}
.about-description__img img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 1160px) {
  .about-description__img {
    width: 100%;
    padding-top: 100%;
    margin-bottom: 30px;
  }
}
.about-description__text {
  width: calc(50% - 25px);
}
.about-description__text p:not(:last-child) {
  padding-bottom: 10px;
}
@media (max-width: 1160px) {
  .about-description__text {
    width: 100%;
    padding-left: 0;
  }
}

.about-second-screen {
  background-color: var(--back-color);
  padding-bottom: 100px;
  overflow: hidden;
}
@media (max-width: 1160px) {
  .about-second-screen {
    padding-bottom: 70px;
  }
}
@media (max-width: 575px) {
  .about-second-screen {
    padding-bottom: 50px;
  }
}
.about-second-screen__text {
  max-width: 900px;
  margin-bottom: 50px;
}
@media (max-width: 575px) {
  .about-second-screen__text {
    margin-bottom: 30px;
  }
}

.about-second-screen-slider {
  position: relative;
}
@media (min-width: 1921px) {
  .about-second-screen-slider {
    overflow: hidden;
    margin: 0 auto;
    max-width: 1920px;
    padding: 0 60px;
  }
}
.about-second-screen-slider__slider {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.about-second-screen-slider__slide {
  width: auto;
  height: 33vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
}
@media (max-width: 768px) {
  .about-second-screen-slider__slide {
    height: 100vw;
  }
}
.about-second-screen-slider__slide img {
  height: 33vw;
  width: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 768px) {
  .about-second-screen-slider__slide img {
    height: 100vw;
  }
}
.about-second-screen-slider__controls {
  position: absolute;
  width: calc(100% - 50px);
  top: 50%;
  left: 50px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  z-index: 5;
}
@media (max-width: 1160px) {
  .about-second-screen-slider__controls {
    position: relative;
    width: 100%;
    margin-top: 15px;
    left: 0;
    -webkit-transform: translateY(0%);
        -ms-transform: translateY(0%);
            transform: translateY(0%);
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.about-second-screen-slider__prev, .about-second-screen-slider__next {
  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: 50px;
  height: 50px;
  background-color: var(--white-color);
  border-radius: 50%;
  border: 1px solid var(--black-color);
  opacity: 0.6;
}
@media (max-width: 1160px) {
  .about-second-screen-slider__prev, .about-second-screen-slider__next {
    width: 30px;
    height: 30px;
    margin: 0 10px;
  }
}
.about-second-screen-slider__prev svg, .about-second-screen-slider__next svg {
  width: 12px;
  height: 12px;
  cursor: pointer;
}
@media (max-width: 1160px) {
  .about-second-screen-slider__prev svg, .about-second-screen-slider__next svg {
    width: 10px;
    height: 10px;
  }
}
.about-second-screen-slider__prev svg {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

.about-second-screen-slider__prev.swiper-button-disabled,
.about-second-screen-slider__next.swiper-button-disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.about-third-screen {
  padding-bottom: 100px;
}
@media (max-width: 1160px) {
  .about-third-screen {
    padding-bottom: 70px;
  }
}
@media (max-width: 575px) {
  .about-third-screen {
    padding-bottom: 50px;
  }
}
.about-third-screen__wrapper {
  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;
}
@media (max-width: 1160px) {
  .about-third-screen__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.about-third-screen__left, .about-third-screen__right {
  position: relative;
  width: calc(50% - 25px);
  overflow: hidden;
}
@media (max-width: 1160px) {
  .about-third-screen__left, .about-third-screen__right {
    width: 100%;
  }
}
@media (max-width: 1160px) {
  .about-third-screen__left {
    margin-bottom: 30px;
  }
}
@media (max-width: 1160px) {
  .about-third-screen h2, .about-third-screen__text {
    max-width: 100%;
  }
}
.about-third-screen__text p:not(:last-child) {
  padding-bottom: 10px;
}

.about-third-screen-slider {
  width: 100%;
}
.about-third-screen-slider__wrapper {
  position: relative;
  cursor: none;
}
.about-third-screen-slider__wrapper a {
  cursor: none;
}
@media (max-width: 1160px) {
  .about-third-screen-slider__wrapper {
    cursor: default;
  }
  .about-third-screen-slider__wrapper .custom-cursor {
    display: none;
  }
  .about-third-screen-slider__wrapper a {
    cursor: none;
  }
}
.about-third-screen-slider__slide {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 100%;
}
.about-third-screen-slider__slide img {
  position: absolute;
  width: 100%;
  height: calc(100% - 20px);
  top: 0;
  left: 0;
  bottom: 20px;
  -o-object-fit: cover;
     object-fit: cover;
}
.about-third-screen-slider__controls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  width: 100%;
  margin-top: 15px;
  z-index: 5;
  position: static;
}
@media (max-width: 1160px) {
  .about-third-screen-slider__controls {
    position: relative;
  }
}
.about-third-screen-slider__prev {
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 50px;
  height: 50px;
  background-color: var(--white-color);
  border-radius: 50%;
  border: 1px solid var(--black-color);
  opacity: 0.6;
  margin: 0 10px;
}
@media (max-width: 1160px) {
  .about-third-screen-slider__prev {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 30px;
    height: 30px;
  }
}
@media (max-width: 1160px) {
  .about-third-screen-slider__prev svg {
    width: 10px;
    height: 10px;
  }
}
.about-third-screen-slider__next {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  border: none;
  z-index: 10;
  cursor: none;
  pointer-events: auto !important;
  opacity: 0 !important;
}
@media (max-width: 1160px) {
  .about-third-screen-slider__next {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 30px;
    height: 30px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    background-color: var(--white-color);
    border-radius: 50%;
    border: 1px solid var(--black-color);
    opacity: 0.6 !important;
    margin: 0 10px;
  }
}
.about-third-screen-slider__next svg {
  width: 12px;
  height: 12px;
  cursor: pointer;
}
@media (max-width: 1160px) {
  .about-third-screen-slider__next svg {
    width: 10px;
    height: 10px;
  }
}
.about-third-screen-slider__prev svg {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

.about-second-screen-slider__prev.swiper-button-disabled,
.about-second-screen-slider__next.swiper-button-disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.custom-cursor {
  position: absolute;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--white-color);
  border: 1px solid var(--black-color);
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 15;
  pointer-events: none;
  -webkit-transition: -webkit-transform 0.05s linear;
  transition: -webkit-transform 0.05s linear;
  transition: transform 0.05s linear;
  transition: transform 0.05s linear, -webkit-transform 0.05s linear;
  background-image: url("/wp-content/themes/fokin-factory/assets/img/arrow.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px 12px;
  opacity: 0.6;
}
@media (max-width: 1160px) {
  .custom-cursor {
    display: none !important;
  }
}

.pros-first-screen {
  min-height: calc(100vh - 84px);
  height: 100%;
  position: relative;
  overflow: hidden;
}
@media (min-width: 1921px) {
  .pros-first-screen {
    overflow: hidden;
    margin: 0 auto;
    max-width: 1920px;
    padding: 0 60px;
  }
}
.pros-first-screen__back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120%;
  background-size: cover;
  z-index: 1;
  will-change: transform;
}
.pros-first-screen__back::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-color: var(--white-color);
  border-style: solid;
  border-width: 50vh 50vw 50vh 50vw;
  -webkit-animation: border-reveal 0.6s ease-out forwards;
          animation: border-reveal 0.6s ease-out forwards;
  pointer-events: none;
  z-index: 3;
}
.pros-first-screen__back:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}
.pros-first-screen__content {
  position: absolute;
  top: 65%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  opacity: 0;
  -webkit-animation: text-fade-in 0.6s ease-out 1s forwards;
          animation: text-fade-in 0.6s ease-out 1s forwards;
  z-index: 2;
}
.pros-first-screen__content h3 {
  max-width: 800px;
  margin-top: -20px;
  line-height: 130%;
  font-weight: 400;
}

.pros-first-screen.color-black .slideshow:after {
  background: -webkit-gradient(linear, left bottom, right top, from(rgba(255, 255, 255, 0.5)), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(to top right, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0) 100%);
}
.pros-first-screen.color-black .pros-first-screen__content h1,
.pros-first-screen.color-black .pros-first-screen__content h3 {
  color: var(--black-color);
}
.pros-first-screen.color-white .slideshow:after {
  background: -webkit-gradient(linear, left bottom, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(to top right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%);
}
.pros-first-screen.color-white .pros-first-screen__content h1,
.pros-first-screen.color-white .pros-first-screen__content h3 {
  color: var(--white-color);
}

.pros-section {
  padding-bottom: 100px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media (max-width: 1160px) {
  .pros-section {
    padding-bottom: 70px;
  }
}
@media (max-width: 575px) {
  .pros-section {
    padding-bottom: 50px;
  }
}
@media (min-width: 1025px) {
  .pros-section:hover [data-fancybox]:hover::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.4);
    -webkit-transition: background-color 0.3s ease;
    transition: background-color 0.3s ease;
    z-index: 2;
  }
}
.pros-section [data-fancybox]::after {
  content: "\f00e";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-size: 40px;
  color: var(--white-color);
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media (min-width: 1025px) {
  .pros-section:hover [data-fancybox]:hover::after {
    opacity: 1;
  }
}
.pros-section__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 80px;
}
@media (max-width: 1160px) {
  .pros-section__wrapper {
    gap: 50px;
  }
}
@media (max-width: 575px) {
  .pros-section__wrapper {
    gap: 0;
  }
}
.pros-section__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.pros-section__inner:nth-child(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media (max-width: 1160px) {
  .pros-section__inner:nth-child(even) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media (max-width: 1160px) {
  .pros-section__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.pros-section__left, .pros-section__right {
  width: 48%;
}
@media (max-width: 1160px) {
  .pros-section__left, .pros-section__right {
    width: 100%;
  }
}
.pros-section__right {
  padding: 30px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}
@media (max-width: 1160px) {
  .pros-section__left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    height: 500px !important;
  }
}
@media (max-width: 575px) {
  .pros-section__left {
    height: 300px !important;
  }
}
.pros-section__img {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
@media (max-width: 1160px) {
  .pros-section__img {
    max-width: 500px;
  }
}
@media (max-width: 575px) {
  .pros-section__img {
    max-width: 300px;
  }
}
.pros-section__img img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

.pros-section-block {
  display: grid;
  grid-template-columns: 60px 1fr;
  grid-template-rows: auto 1fr;
  gap: 10px 20px;
}
@media (max-width: 768px) {
  .pros-section-block {
    grid-template-columns: 40px 1fr;
    grid-template-rows: 1fr auto;
    gap: 10px;
  }
}
.pros-section-block__lottie {
  width: 60px;
  height: 60px;
  grid-column: 1;
  grid-row: 1/span 2;
  align-self: start;
}
@media (max-width: 768px) {
  .pros-section-block__lottie {
    width: 40px;
    height: 40px;
    grid-row: 1;
  }
}
.pros-section-block h3 {
  grid-column: 2;
  grid-row: 1;
  margin: 0;
  line-height: 110%;
}
@media (max-width: 768px) {
  .pros-section-block h3 {
    -ms-flex-item-align: center;
        align-self: center;
  }
}
.pros-section-block__text {
  grid-column: 2;
  grid-row: 2;
}
@media (max-width: 768px) {
  .pros-section-block__text {
    grid-column: 1/span 2;
  }
}

.pros-top-section {
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media (min-width: 1025px) {
  .pros-top-section:hover [data-fancybox]:hover::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.4);
    -webkit-transition: background-color 0.3s ease;
    transition: background-color 0.3s ease;
    z-index: 2;
  }
}
.pros-top-section [data-fancybox]::after {
  content: "\f00e";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-size: 40px;
  color: var(--white-color);
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media (min-width: 1025px) {
  .pros-top-section:hover [data-fancybox]:hover::after {
    opacity: 1;
  }
}
.pros-top-section h2 {
  margin-bottom: 15px;
}
.pros-top-section__header {
  max-width: 75%;
  margin-bottom: 30px;
}
@media (max-width: 1160px) {
  .pros-top-section__header {
    max-width: 100%;
  }
}
.pros-top-section__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 1160px) {
  .pros-top-section__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.pros-top-section__text, .pros-top-section__right {
  width: 48%;
}
@media (max-width: 1160px) {
  .pros-top-section__text, .pros-top-section__right {
    width: 100%;
  }
}
.pros-top-section__text ul {
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 30px;
  margin-bottom: 30px;
}
@media (max-width: 1160px) {
  .pros-top-section__text ul {
    gap: 20px;
  }
}
@media (max-width: 575px) {
  .pros-top-section__text ul {
    gap: 10px;
  }
}
.pros-top-section__text ul li {
  position: relative;
  padding-left: 20px;
}
.pros-top-section__text ul li::before {
  position: absolute;
  content: "—";
  left: 0;
}
.pros-top-section__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 1160px) {
  .pros-top-section__right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 500px !important;
  }
}
@media (max-width: 960px) {
  .pros-top-section__right {
    -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;
    gap: 30px;
    height: auto !important;
  }
}
.pros-top-section__img {
  position: relative;
  width: 48%;
  height: 100%;
  overflow: hidden;
}
@media (max-width: 1160px) {
  .pros-top-section__img {
    width: 500px;
    height: 0;
    padding-top: 500px;
  }
}
@media (max-width: 575px) {
  .pros-top-section__img {
    width: 300px;
    padding-top: 300px;
  }
}
.pros-top-section__img img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

.projects-first-screen-slider {
  position: relative;
  overflow: hidden;
}
.projects-first-screen-slider__wrapper {
  height: 100%;
}
.projects-first-screen-slider__slider {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.projects-first-screen-slider__slide {
  width: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
}
.projects-first-screen-slider__slide a {
  height: 100%;
  width: 100%;
}
.projects-first-screen-slider__slide img {
  width: auto;
  height: calc(100% - 20px);
  top: 0;
  left: 0;
  bottom: 20px;
  -o-object-fit: cover;
     object-fit: cover;
}

.project-gallery {
  position: relative;
  padding-bottom: 100px;
}
@media (max-width: 1160px) {
  .project-gallery {
    padding-bottom: 70px;
  }
}
@media (max-width: 575px) {
  .project-gallery {
    padding-bottom: 50px;
  }
}
.project-gallery__item {
  width: calc(25% - 14px);
  margin: 7px;
  opacity: 0;
  -webkit-transform: translateY(20px);
      -ms-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: opacity 0.4s, -webkit-transform 0.4s;
  transition: opacity 0.4s, -webkit-transform 0.4s;
  transition: transform 0.4s, opacity 0.4s;
  transition: transform 0.4s, opacity 0.4s, -webkit-transform 0.4s;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media (min-width: 1025px) {
  .project-gallery__item:hover [data-fancybox]:hover::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.4);
    -webkit-transition: background-color 0.3s ease;
    transition: background-color 0.3s ease;
    z-index: 2;
  }
}
.project-gallery__item [data-fancybox]::after {
  content: "\f00e";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-size: 40px;
  color: var(--white-color);
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media (min-width: 1025px) {
  .project-gallery__item:hover [data-fancybox]:hover::after {
    opacity: 1;
  }
}
.project-gallery__item.animate {
  opacity: 1;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}
@media (max-width: 1160px) {
  .project-gallery__item {
    width: calc(33.3333333333% - 14px);
  }
}
@media (max-width: 768px) {
  .project-gallery__item {
    width: calc(50% - 10px);
    margin: 5px;
  }
}

:root {
  --radius: 12px;
  --shadow: rgba(36, 36, 36, 0.2) 0px 0px 16px 0px;
}

.calling-card {
  max-width: 650px;
  margin: 0 auto;
  -webkit-box-shadow: rgba(0, 0, 0, 0.07) 0px 4px 24px 0px;
          box-shadow: rgba(0, 0, 0, 0.07) 0px 4px 24px 0px;
}

.header-card {
  background: url("/wp-content/themes/fokin-factory/assets/img/vizit/banner.svg") 0% 0%/cover no-repeat;
  padding: 30px;
  min-height: 170px;
  border-bottom-right-radius: 12px;
  border-bottom-left-radius: 12px;
}

.profile-card__container {
  padding: 0 15px;
}
.profile-card__header {
  position: relative;
  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;
  text-align: center;
  margin: -85px auto 0;
  width: 190px;
  height: 190px;
}
.profile-card__header svg {
  position: absolute;
  top: -5px;
  left: -5px;
  width: 200px;
  height: 200px;
  pointer-events: none;
  -webkit-transition: stroke 0.3s ease;
  transition: stroke 0.3s ease;
}
.profile-card__avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
.profile-card__wrapper {
  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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  color: var(--black-color);
}
.profile-card__wrapper .button {
  background-color: var(--calling-card);
  border: 2px solid var(--calling-card);
}
.profile-card__position {
  font-weight: 600;
}
.profile-card__position div {
  text-transform: none;
  font-weight: 400;
  margin-top: 8px;
}
.profile-card__messengers {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 16px;
}
.profile-card__messengers .messenger {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background: var(--white);
  padding: 12px;
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
  border-radius: var(--radius);
  -webkit-box-shadow: var(--shadow);
          box-shadow: var(--shadow);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media (min-width: 1025px) {
  .profile-card__messengers .messenger:hover {
    -webkit-box-shadow: rgba(36, 36, 36, 0.2) 0px 0px 4px 0px;
            box-shadow: rgba(36, 36, 36, 0.2) 0px 0px 4px 0px;
  }
}
.profile-card__messengers .messenger a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.profile-card__messengers .messenger svg {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.profile-card__info {
  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;
  width: 100%;
}
.profile-card__item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: var(--white);
  padding: 12px;
  border-radius: var(--radius);
  -webkit-box-shadow: var(--shadow);
          box-shadow: var(--shadow);
  gap: 10px;
  text-align: left;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media (min-width: 1025px) {
  .profile-card__item:hover {
    -webkit-box-shadow: rgba(36, 36, 36, 0.2) 0px 0px 4px 0px;
            box-shadow: rgba(36, 36, 36, 0.2) 0px 0px 4px 0px;
  }
}
.profile-card__item a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.profile-card__item p {
  font-size: 13px;
  color: var(--text-color);
}
.profile-card__item span {
  font-weight: 500;
}
.profile-card__item svg {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.profile-card__item-map {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.profile-card__item-map .profile-address {
  width: calc(100% - 50px);
}
.profile-card__socials {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 16px;
}
.profile-card__social {
  position: relative;
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.profile-card__social a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.profile-card__social div {
  width: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: var(--back-color);
  padding: 12px;
  border-radius: var(--radius);
  -webkit-box-shadow: var(--shadow);
          box-shadow: var(--shadow);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.profile-card__social div img {
  width: 40px;
  height: 40px;
}
@media (min-width: 1025px) {
  .profile-card__social div:hover {
    -webkit-box-shadow: rgba(36, 36, 36, 0.2) 0px 0px 4px 0px;
            box-shadow: rgba(36, 36, 36, 0.2) 0px 0px 4px 0px;
  }
}
.profile-card #profile-map {
  bottom: 20px;
  left: 10px;
  width: calc(100% - 20px);
  height: 300px;
  border-radius: var(--radius);
  overflow: hidden;
}
.profile-card__contact {
  position: relative;
  width: 100%;
  margin-bottom: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: var(--white);
  padding: 12px;
  border-radius: var(--radius);
  -webkit-box-shadow: var(--shadow);
          box-shadow: var(--shadow);
  gap: 40px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media (min-width: 1025px) {
  .profile-card__contact:hover {
    -webkit-box-shadow: rgba(36, 36, 36, 0.2) 0px 0px 4px 0px;
            box-shadow: rgba(36, 36, 36, 0.2) 0px 0px 4px 0px;
  }
}
.profile-card .feedback {
  position: relative;
  text-align: left;
}
.profile-card .feedback__inner {
  position: relative;
  border-bottom: 1px solid var(--text-color);
  margin-bottom: 30px;
}
.profile-card .feedback__input {
  width: 100%;
  padding: 10px 10px 10px 0;
  font-size: 14px;
}
.profile-card .feedback__contact {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  border: 0;
  clip: rect(0 0 0 0);
}
.profile-card .feedback__police {
  font-size: 14px;
  line-height: 1em;
}
.profile-card .feedback__police a {
  display: inline;
  text-decoration: underline;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media (min-width: 1025px) {
  .profile-card .feedback__police a:hover {
    color: var(--primary-color);
  }
}
@media (max-width: 395px) {
  .profile-card .feedback__police .feedback-checked__link-1 {
    padding-left: 25px;
    line-height: 1.4;
  }
}
.profile-card .feedback .button {
  margin-bottom: 10px;
}
.profile-card .feedback .wpcf7-not-valid-tip {
  position: absolute;
  bottom: 0px;
  right: 5px;
  font-size: 12px !important;
  line-height: 12px !important;
  color: var(--red-color) !important;
}
.profile-card .feedback .wpcf7-response-output {
  border: none !important;
  position: absolute;
  bottom: -80px;
  margin: 0;
  z-index: 5;
  width: 100%;
  font-size: 14px !important;
  line-height: 110% !important;
  padding: 0 !important;
  text-align: center !important;
}
.profile-card .feedback .transparent-background {
  background-color: var(--primary-color) !important;
  color: var(--white-color) !important;
  padding: 10px !important;
}
.profile-card .feedback .transparent-background-hidden {
  top: -1px;
  bottom: -1px;
  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;
  font-size: 22px !important;
  background-color: var(--white-color) !important;
  color: var(--primary-color) !important;
}