@font-face {
  font-family: "Montserrat";
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  src: url("../fonts/Montserrat/Montserrat-Regular.woff") format("woff"), url("../fonts/Montserrat/Montserrat-Regular.woff2") format("woff2");
}
@font-face {
  font-family: "Montserrat";
  font-weight: 500;
  font-style: normal;
  font-display: swap;
  src: url("../fonts/Montserrat/Montserrat-Medium.woff") format("woff"), url("../fonts/Montserrat/Montserrat-Medium.woff2") format("woff2");
}
@font-face {
  font-family: "Montserrat";
  font-weight: 600;
  font-style: normal;
  font-display: swap;
  src: url("../fonts/Montserrat/Montserrat-SemiBold.woff") format("woff"), url("../fonts/Montserrat/Montserrat-SemiBold.woff2") format("woff2");
}
@font-face {
  font-family: "Montserrat";
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  src: url("../fonts/Montserrat/Montserrat-Bold.woff") format("woff"), url("../fonts/Montserrat/Montserrat-Bold.woff2") format("woff2");
}
body {
  font-family: "Montserrat", "Arial", sans-serif;
  font-size: 16px;
  font-weight: 400;
  margin: 0;
  padding: 0;
  width: 100%;
  height: auto;
  min-height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #191919;
  background-color: #ffffff;
}
img {
  max-width: 100%;
  height: auto;
}
a {
  text-decoration: none;
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  white-space: nowrap;
  clip-path: inset(100%);
  clip: rect(0 0 0 0);
  overflow: hidden;
}
*,
*::after,
*::before {
  box-sizing: border-box;
}
ul,
ol {
  padding: 0;
  margin: 0;
}
ul li {
  list-style: none;
}
input,
textarea {
  outline: none;
  font-family: "Montserrat", "Arial", sans-serif;
}
fieldset {
  padding: 0;
  margin: 0;
  border: none;
}
h1,
h2,
h3,
h4,
h5 {
  margin: 0;
}
p {
  padding: 0;
  margin: 0;
}
@media (width < 1200px) {
  body {
    zoom: 90%;
  }
}
@media (width < 1200px) {
  body {
    zoom: 100%;
  }
}
@media (width > 2000px) {
  body {
    zoom: 120%;
  }
}
@media (width > 3000px) {
  body {
    zoom: 140%;
  }
}
.button {
  border: none;
  font-family: "Montserrat", "Arial", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 20px;
  color: #ffffff;
  background-color: transparent;
  padding: 0;
  cursor: pointer;
}
.wrapper {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 60px;
}
@media (width < 1400px) {
  .wrapper {
    padding: 0 35px;
  }
}
@media (width < 1200px) {
  .wrapper {
    padding: 0 20px;
  }
}
.header {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #ffffff;
  box-shadow: 0 2px 14px 0 rgba(0, 0, 0, 0.1);
  z-index: 10;
}
.header__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}
.header__logo {
  display: flex;
}
@media (width < 1200px) {
  .header__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
  }
  .header__logo {
    width: 150px;
  }
}
@media (width < 800px) {
  .header__content {
    padding: 8px 0;
  }
}
.main-nav__list {
  display: flex;
  gap: 30px;
}
.main-nav__link {
  color: #191919;
  font-weight: 600;
  line-height: 30px;
  text-transform: uppercase;
  padding-bottom: 7px;
  position: relative;
  overflow: hidden;
}
.main-nav__link::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #191919;
  transform: translateX(-30%);
  opacity: 0;
  transition: transform 0.5s ease, opacity 0.2s ease;
}
.main-nav__link:hover::before {
  transform: translateX(0);
  opacity: 1;
}
@media (width < 1200px) {
  .main-nav {
    margin-left: auto;
    margin-right: 20px;
  }
  .main-nav__list {
    display: flex;
    gap: 15px;
  }
  .main-nav__link {
    font-size: 14px;
  }
}
@media (width < 800px) {
  .main-nav {
    display: none;
  }
}
.language {
  position: relative;
}
.language__current {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #191919;
  font-weight: 500;
  text-transform: uppercase;
  cursor: pointer;
}
.language__current svg {
  width: 24px;
  transition: transform 0.3s ease;
  transform: rotate(0deg);
}
.language__current.active svg {
  transform: rotate(180deg);
}
.language__body {
  position: absolute;
  top: calc(100% + 25px);
  left: 0;
  width: 100%;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.language__body.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.language__list {
  padding: 8px;
}
.language__item {
  margin-bottom: 8px;
  text-align: center;
}
.language__item:last-child {
  margin-bottom: 0;
}
.language__button {
  font-size: 14px;
  color: #191919;
  font-weight: 500;
  text-transform: uppercase;
  cursor: pointer;
}
.language__arrow {
  width: 8px !important;
}
.hero {
  background-image: url(../image/bg/hero-bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  z-index: 1;
  padding-top: 60px;
  min-height: 100vh;
}
@media (width > 2000px) {
  .hero {
    min-height: auto;
  }
  .hero__text {
    padding: 150px 0;
  }
}
@media (width > 3000px) {
  .hero {
    background-position: center;
  }
}
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(25, 25, 25, 0.9) 0%, rgba(25, 25, 25, 0.9) 14%, rgba(25, 25, 25, 0.65) 41%, rgba(25, 25, 25, 0.65) 75%, rgba(25, 25, 25, 0.2) 100%);
  z-index: -1;
}
.hero__text {
  padding-top: 180px;
  color: #ffffff;
}
.hero__subtitle {
  font-size: 24px;
  line-height: 30px;
  font-weight: 400;
  margin-bottom: 30px;
}
.hero__title {
  font-size: 72px;
  line-height: 75px;
  font-weight: 600;
  margin-bottom: 20px;
}
.hero__phone {
  color: #ffffff;
}
.hero__email {
  color: #ffffff;
}
.hero__adress {
  color: #ffffff;
  line-height: 1.5;
}
.hero__worktime {
  color: #ffffff;
  line-height: 1.5;
}
@media (width < 1300px) {
  .hero {
    min-height: auto;
    background-position: top;
    padding-top: 54px;
  }
  .hero__text {
    padding: 150px 0;
  }
}
@media (width < 1200px) {
  .hero__text {
    padding-top: 120px;
    padding-bottom: 140px;
  }
  .hero__subtitle {
    width: 60%;
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 25px;
  }
  .hero__title {
    font-size: 46px;
    line-height: 50px;
  }
}
@media (width < 800px) {
  .hero {
    padding-top: 40px;
  }
  .hero__text {
    padding-top: 100px;
    padding-bottom: 120px;
  }
  .hero__subtitle {
    width: 100%;
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 0;
    text-align: center;
  }
  .hero__title {
    font-size: 32px;
    line-height: 34px;
    text-align: center;
  }
}
.hero-info {
  padding: 45px 0 30px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
  position: relative;
}
@media (width < 1400px) {
  .hero-info {
    gap: 30px;
  }
}
.hero-info::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #ffffff;
  border-radius: 2px;
}
.hero-info__contacts {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hero-info__phone {
  display: flex;
  gap: 8px;
  align-items: center;
}
.hero-info__phone svg path {
  stroke: #ffffff;
  fill: transparent;
  transition: fill 0.3s ease, stroke 0.3s ease;
}
.hero-info__phone:hover svg path {
  fill: #1061AB;
  stroke: #1061AB;
}
.hero-info__email {
  display: flex;
  gap: 8px;
  align-items: center;
}
.hero-info__email svg path {
  stroke: #ffffff;
  fill: transparent;
  transition: fill 0.3s ease;
}
.hero-info__email:hover svg path {
  fill: #1061AB;
}
.hero-info__adress {
  display: flex;
  gap: 12px;
  align-items: center;
}
.hero-info__worktime {
  display: flex;
  gap: 12px;
  align-items: center;
}
.hero-info__button {
  padding: 10px 0px;
  color: #ffffff;
  cursor: pointer;
  text-decoration: underline;
  transition: color 0.3s ease, text-decoration 0.3s ease, transform 0.3s ease;
}
.hero-info__button:hover {
  color: #1061AB;
  text-decoration: none;
  transform: scale(1.1);
}
@media (width < 1200px) {
  .hero-info {
    padding: 40px 0 24px 0;
    gap: 20px;
    flex-wrap: wrap;
  }
  .hero-info__contacts {
    width: 100%;
    flex-direction: row;
    gap: 30px;
  }
}
@media (width < 800px) {
  .hero-info {
    padding: 20px 0;
    gap: 26px;
    flex-direction: column-reverse;
  }
  .hero-info__contacts {
    flex-wrap: wrap;
    gap: 5px;
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }
}
.social__list {
  display: flex;
  gap: 25px;
}
.social__link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid #ffffff;
  border-radius: 50%;
  background-color: transparent;
  transition: background-color 0.3s ease;
}
.social__link:hover {
  border: none;
}
.social__link--tg:hover {
  background-color: #2AABEE;
}
.social__link--viber:hover {
  background-color: #7360F2;
}
.social__link--wa:hover {
  background-color: #25D366;
}
.social__link--fb:hover {
  background-color: #0866FF;
}
.social__link--tt:hover {
  background-color: #191919;
}
@media (width < 800px) {
  .social__list {
    gap: 15px;
    width: 100%;
    justify-content: space-between;
  }
  .hero__social {
    margin-top: 0;
    width: 100%;
  }
  .hero-info__adress,
  .hero-info__worktime {
    display: none;
  }
}
.about-us__content {
  margin: 90px 0 90px 0;
}
.about-us__top {
  display: flex;
  gap: 80px;
  margin-bottom: 90px;
}
.about-us__top-text {
  width: calc(100% - 515px);
  padding: 14px 0;
}
.about-us__top-item {
  font-size: 18px;
  line-height: 20px;
  margin-bottom: 20px;
  padding-left: 26px;
  position: relative;
}
.about-us__top-item::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 2px;
  width: 6px;
  height: 12px;
  border-right: 2px solid #1061AB;
  border-bottom: 2px solid #1061AB;
  transform: rotate(45deg);
}
.about-us__top-item:last-child {
  margin-bottom: 0;
}
.about-us__image {
  width: 435px;
  height: 495px;
}
.about-us__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-us__header {
  font-size: 34px;
  font-weight: 400;
  line-height: 40px;
  margin-bottom: 25px;
}
.about-us__text {
  font-size: 18px;
  line-height: 24px;
  margin-bottom: 25px;
  color: #605E5D;
}
.about-us__bottom {
  display: flex;
  gap: 80px;
}
.about-us__bottom-list {
  display: flex;
  justify-content: center;
  gap: 50px;
  padding-top: 30px;
}
.about-us__bottom-item {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.about-us__bottom-number {
  font-size: 46px;
  line-height: 62px;
}
.about-us__bottom-number--sign {
  font-weight: 500;
  color: #1061AB;
}
.about-us__bottom-number--number {
  font-weight: 500;
}
.about-us__bottom-title {
  color: #605E5D;
}
.about-us__bottom-text {
  width: calc(100% - 515px);
}
@media (width < 1200px) {
  .about-us__content {
    margin: 40px 0 65px 0;
  }
  .about-us__top {
    flex-direction: column-reverse;
    gap: 35px;
    margin-bottom: 35px;
  }
  .about-us__top-text {
    width: 100%;
    padding: 0;
  }
  .about-us__top-item {
    font-size: 16px;
    margin-bottom: 15px;
  }
  .about-us__image {
    width: 100%;
    height: 300px;
  }
  .about-us__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .about-us__header {
    margin-bottom: 15px;
  }
  .about-us__text {
    font-size: 16px;
    line-height: 20px;
  }
  .about-us__bottom {
    flex-direction: column;
    gap: 35px;
  }
  .about-us__bottom-title {
    color: #605E5D;
  }
  .about-us__bottom-text {
    width: 100%;
  }
}
@media (width < 800px) {
  .about-us__bottom-list {
    padding-top: 0;
  }
  .about-us__content {
    margin: 24px 0 40px 0;
  }
  .about-us__top {
    flex-direction: column-reverse;
    gap: 20px;
    margin-bottom: 20px;
  }
  .about-us__image {
    height: 200px;
  }
  .about-us__bottom {
    gap: 20px;
  }
  .about-us__header {
    font-size: 28px;
    line-height: 32px;
    margin-bottom: 20px;
  }
  .about-us__bottom-number {
    font-size: 26px;
    line-height: 30px;
  }
  .about-us__bottom-text {
    width: 100%;
  }
  .about-us__bottom-title {
    text-align: center;
  }
  .about-us__bottom-item {
    gap: 5px;
  }
}
.heading__hashtag {
  font-size: 22px;
  font-weight: 400;
  line-height: 20px;
  color: #062745;
  text-transform: uppercase;
  margin-bottom: 15px;
}
.heading__section {
  font-size: 40px;
  font-weight: 400;
  line-height: 46px;
}
@media (width < 1200px) {
  .heading__hashtag {
    font-size: 20px;
    line-height: 22px;
  }
}
@media (width < 800px) {
  .heading__hashtag {
    font-size: 16px;
    margin-bottom: 5px;
  }
  .heading__section {
    font-size: 28px;
    line-height: 32px;
  }
}
.services {
  background-image: url(../image/bg/features-bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  padding-top: 120px;
  padding-bottom: 35px;
  margin-bottom: 60px;
}
.services__content {
  background-color: #ffffff;
  padding: 35px;
  padding-bottom: 70px;
}
.services__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 70px;
}
.services__list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}
.services__item {
  width: 30%;
  margin-bottom: 20px;
}
.services__button {
  background-color: #062745;
  padding: 15px 80px;
  border-radius: 50px;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}
.services__button--bottom {
  display: none;
}
.services__button::before {
  content: '';
  position: absolute;
  top: 100%;
  left: -50%;
  width: 300px;
  height: 200px;
  background: linear-gradient(0deg, transparent, transparent 30%, rgba(0, 132, 255, 0.3));
  transform: rotate(-45deg);
  transition: all 0.5s ease-in;
  opacity: 0;
}
.services__button:hover::before {
  opacity: 1;
  transform: rotate(-45deg) translate(100%, 100%);
}
@media (width < 1200px) {
  .services {
    padding-top: 65px;
    padding-bottom: 40px;
    margin-bottom: 45px;
  }
  .services .wrapper {
    padding: 0;
  }
  .services__content {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 30px 20px;
  }
  .services__top {
    margin-bottom: 50px;
  }
  .services__list {
    flex-wrap: wrap;
    gap: 10px;
  }
  .services__item {
    width: 100%;
    margin-bottom: 0;
  }
  .services__button {
    display: none;
  }
  .services__button--bottom {
    display: block;
    margin: 0 auto;
    margin-top: 50px;
  }
}
@media (width < 500px) {
  .services__top {
    margin-bottom: 12px;
  }
  .services__button--bottom {
    margin-top: 20px;
  }
}
.service-product {
  height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
.service-product__img {
  margin-bottom: 32px;
}
.service-product__header {
  font-size: 26px;
  font-weight: 400;
  line-height: 32px;
  text-align: center;
  min-height: 64px;
}
@media (width < 1200px) {
  .service-product__header {
    font-size: 24px;
    line-height: 28px;
  }
}
.service-product__text {
  margin-top: 20px;
  text-align: center;
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  color: #605E5D;
}
@media (width < 1200px) {
  .service-product {
    height: auto;
    padding: 28px;
  }
  .service-product__header {
    font-size: 26px;
    line-height: 36px;
  }
  .service-product__text {
    margin-top: 30px;
  }
}
@media (width < 800px) {
  .service-product {
    padding: 20px;
  }
  .service-product__header {
    font-size: 22px;
    line-height: 30px;
    min-height: auto;
  }
  .service-product__text {
    margin-top: 16px;
  }
}
.faq__content {
  display: flex;
  gap: 60px;
  padding-top: 60px;
  margin-bottom: 60px;
}
.faq__left {
  width: 30%;
}
.faq__header {
  margin-bottom: 40px;
}
.faq__right {
  width: calc(70% - 60px);
}
.faq__summary {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #DBDBDB;
  list-style: none;
  position: relative;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.faq__summary-title {
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
}
.faq__summary svg {
  transform: rotate(0);
  transition: transform 0.3s ease;
}
.faq__summary svg.open {
  transform: rotate(180deg);
}
.faq__answer {
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid #DBDBDB;
  display: none;
  margin-bottom: 20px;
}
@media (width < 1200px) {
  .faq__content {
    flex-direction: column;
    gap: 0;
    padding-top: 30px;
  }
  .faq__left {
    width: 100%;
  }
  .faq__left-img {
    display: none;
  }
  .faq__header {
    margin-bottom: 40px;
  }
  .faq__right {
    width: 100%;
  }
}
@media (width < 800px) {
  .faq__content {
    padding-top: 0;
    margin-bottom: 20px;
  }
  .faq__summary-title {
    padding-right: 10px;
    font-size: 14px;
    line-height: 20px;
  }
}
.feedback {
  position: relative;
  overflow: hidden;
}
.feedback::before {
  content: attr(data-content);
  position: absolute;
  top: 32px;
  left: 0;
  width: 100%;
  height: auto;
  font-size: 180px;
  font-weight: 700;
  line-height: 80px;
  color: #191919;
  text-align: center;
  text-transform: uppercase;
  opacity: 10%;
  animation: move-text 10s linear infinite;
  animation-delay: 1s;
}
.feedback--bg {
  position: absolute;
  top: 220px;
  right: 0;
  width: 824px;
  z-index: -1;
}
@media (width > 3000px) {
  .feedback--bg {
    left: 50%;
  }
}
.feedback__content {
  margin-top: 116px;
  margin-bottom: 283px;
}
.feedback__callback {
  width: 70%;
  background-image: url(../image/bg/feedback-bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 35px;
  position: relative;
}
.feedback__callback::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(21, 22, 26, 0.7);
  z-index: 0;
  backdrop-filter: blur(5px);
}
.feedback__form {
  position: relative;
  z-index: 1;
}
.feedback__header {
  color: #ffffff;
  font-weight: 600;
  font-size: 40px;
  line-height: 50px;
  margin-bottom: 10px;
}
.feedback__title {
  color: #ffffff;
  font-weight: 500;
  font-size: 30px;
  line-height: 40px;
}
.feedback__list {
  margin-top: 44px;
  margin-bottom: 60px;
}
.feedback__item {
  width: 65%;
  margin-bottom: 30px;
  display: flex;
  gap: 20px;
  align-items: center;
}
.feedback__text {
  color: #ffffff;
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
}
.feedback__button {
  padding: 15px 70px;
  border-radius: 50px;
  color: #ffffff;
  margin-left: 20px;
  margin-bottom: 20px;
  font-size: 18px;
  line-height: 20px;
  font-weight: 500;
  position: relative;
  z-index: 1;
}
.feedback__button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50px;
  background: linear-gradient(to right, #062745 0%, #1061AB 60%, #1061AB 100%);
  opacity: 1;
  transition: opacity 0.3s ease;
  z-index: -1;
}
.feedback__button::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50px;
  background: linear-gradient(to right, #1061AB 0%, #1061AB 60%, #062745 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}
.feedback__button:hover::after {
  opacity: 1;
}
.feedback__button:hover::before {
  opacity: 0;
}
@keyframes move-text {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-120%);
  }
}
@media (width < 1200px) {
  .feedback .wrapper {
    padding: 0;
  }
  .feedback::before {
    top: 75%;
    font-size: 92px;
    animation: move-text 7s linear infinite;
  }
  .feedback--bg {
    display: none;
  }
  .feedback__content {
    margin-top: 0;
    margin-bottom: 20px;
    padding-bottom: 105px;
  }
  .feedback__callback {
    width: 100%;
    padding: 35px 50px;
    position: relative;
  }
  .feedback__item {
    width: 80%;
    margin-bottom: 20px;
    gap: 30px;
  }
  .feedback__text {
    font-size: 16px;
    line-height: 20px;
  }
}
@media (width < 800px) {
  .feedback::before {
    top: 78%;
    font-size: 65px;
    animation: move-text 6s linear infinite;
  }
  .feedback__content {
    padding-bottom: 75px;
  }
  .feedback__callback {
    padding: 20px;
  }
  .feedback__item {
    width: 100%;
    gap: 15px;
  }
  .feedback__text {
    font-size: 14px;
  }
  .feedback__header {
    font-size: 26px;
    line-height: 30px;
  }
  .feedback__title {
    font-size: 22px;
    line-height: 24px;
  }
  .feedback__list {
    margin-top: 24px;
    margin-bottom: 40px;
  }
}
.facebook__content {
  padding-bottom: 35px;
  position: relative;
}
.facebook__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
  padding: 0 30px;
}
.facebook__link {
  background-color: #062745;
  padding: 15px 60px;
  border-radius: 50px;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}
.facebook__link--bottom {
  display: none;
}
.facebook__link::before {
  content: '';
  position: absolute;
  top: 100%;
  left: -50%;
  width: 300px;
  height: 200px;
  background: linear-gradient(0deg, transparent, transparent 30%, rgba(0, 132, 255, 0.3));
  transform: rotate(-45deg);
  transition: all 0.7s ease-in;
  opacity: 0;
}
.facebook__link:hover::before {
  opacity: 1;
  transform: rotate(-45deg) translate(100%, 100%);
}
.facebook__list {
  display: flex;
  justify-content: space-between;
  margin: 0 30px 50px;
  overflow: hidden;
}
@media (width < 800px) {
  .facebook__list {
    gap: 0;
    margin: 0 0 20px;
  }
  .facebook__content {
    padding-bottom: 0;
    margin-bottom: 40px;
  }
  .facebook__top {
    margin-bottom: 32px;
    padding: 0;
  }
  .facebook__link {
    display: none;
  }
  .facebook__link--bottom {
    display: block;
    text-align: center;
  }
}
.tiktok__content {
  padding-bottom: 35px;
  position: relative;
}
.tiktok__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
  padding: 0 30px;
}
.tiktok__link {
  background-color: #062745;
  padding: 15px 60px;
  border-radius: 50px;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}
.tiktok__link--bottom {
  display: none;
}
.tiktok__link::before {
  content: '';
  position: absolute;
  top: 100%;
  left: -50%;
  width: 300px;
  height: 200px;
  background: linear-gradient(0deg, transparent, transparent 30%, rgba(0, 132, 255, 0.3));
  transform: rotate(-45deg);
  transition: all 0.7s ease-in;
  opacity: 0;
}
.tiktok__link:hover::before {
  opacity: 1;
  transform: rotate(-45deg) translate(100%, 100%);
}
.tiktok__list {
  display: flex;
  justify-content: space-between;
  margin: 0 30px 50px;
  overflow: hidden;
}
@media (width < 800px) {
  .tiktok__list {
    gap: 0;
    margin: 0 0 20px;
  }
  .tiktok__content {
    padding-bottom: 0;
    margin-bottom: 40px;
  }
  .tiktok__top {
    margin-bottom: 32px;
    padding: 0;
  }
  .tiktok__link {
    display: none;
  }
  .tiktok__link--bottom {
    display: block;
    text-align: center;
  }
}
.facebook-product {
  position: relative;
  overflow: hidden;
}
.facebook-product:hover .facebook-product__img img {
  transform: scale(1.2);
}
.facebook-product:hover .facebook-product__img::before {
  opacity: 0;
}
.facebook-product__img {
  width: 100%;
  height: 400px;
  position: relative;
}
@media (width < 1400px) {
  .facebook-product__img {
    height: 300px;
  }
}
.facebook-product__img img {
  width: inherit;
  height: inherit;
  object-fit: cover;
  transform: scale(1);
  transition: transform 0.5s ease;
}
.facebook-product__img video {
  width: inherit;
  height: inherit;
  object-fit: cover;
  position: relative;
  z-index: 1;
}
.facebook-product__img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(to bottom, #14181C 0%, rgba(0, 0, 0, 0) 100%);
  z-index: 2;
  opacity: 1;
  transition: opacity 0.3s ease;
}
.facebook-product__content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  z-index: 2;
}
.facebook-product__text {
  color: #ffffff;
  padding: 15px;
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
  display: block;
  width: 100%;
  text-align: center;
  opacity: 1;
  transition: opacity 0.3s ease;
}
.facebook-product__link {
  font-size: 14px;
  line-height: 18px;
  font-weight: 600;
  text-transform: uppercase;
  color: #ffffff;
  width: 100%;
  text-align: center;
  padding: 15px;
  position: relative;
  z-index: 0;
  transform: scale(1);
  transition: transform 0.3s ease;
}
.facebook-product__link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(123, 123, 123, 0.50);
  backdrop-filter: blur(5px);
  z-index: -1;
  transition: background-color 0.5s ease;
}
.facebook-product__link:hover {
  transform: scale(1.2);
}
.facebook-product:hover .facebook-product__text {
  opacity: 0;
}
.facebook-product__link:hover::before {
  background-color: transparent;
  backdrop-filter: blur(0);
}
@media (width < 1200px) {
  .facebook-product:hover .facebook-product__img::before {
    opacity: 1;
  }
  .facebook-product__img {
    width: 100%;
    height: 360px;
  }
  .facebook-product__text {
    padding: 20px 30px;
    display: block;
    width: 100%;
    text-align: left;
  }
}
.map {
  position: relative;
  height: 500px;
}
.map::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000000;
  opacity: 0.2;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.map:hover::before {
  opacity: 0;
}
.map:hover .map__block {
  opacity: 0;
  pointer-events: none;
}
.map__block {
  position: absolute;
  top: 90px;
  left: 78%;
  transform: translateX(-50%);
  padding: 50px 35px;
  z-index: 1;
  max-width: 578px;
  width: 100%;
  opacity: 1;
  transition: opacity 0.3s ease;
}
@media (width < 1500px) {
  .map__block {
    left: 70%;
  }
}
@media (width < 1100px) {
  .map__block {
    left: 65%;
  }
}
@media (width < 800px) {
  .map iframe {
    height: 200px;
  }
}
.map__block::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(5px);
  box-shadow: 0 0 10px 0 #DBDBDB;
  z-index: -1;
}
.map__header {
  font-size: 26px;
  line-height: 30px;
  font-weight: 500;
  margin-bottom: 20px;
}
.map__adress {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  margin-bottom: 20px;
}
.map__phone {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  display: block;
  margin-bottom: 5px;
  color: #191919;
}
.map__worktime {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  display: block;
  margin-bottom: 20px;
}
.map__text {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
}
.map__text--name {
  font-weight: 600;
  color: #062745;
}
@media (width < 1200px) {
  .map {
    height: auto;
  }
  .map::before {
    display: none;
  }
  .map:hover::before {
    opacity: 1;
  }
  .map:hover .map__block {
    opacity: 1;
    pointer-events: all;
  }
  .map__block {
    transform: translateX(0);
    position: relative;
    max-width: 100%;
    width: 100%;
    opacity: 1;
    left: unset;
    top: unset;
    background-color: #ffffff;
  }
  .map__block::before {
    display: none;
  }
}
@media (width < 800px) {
  .map__block {
    padding: 20px;
  }
  .map__header {
    font-size: 20px;
    line-height: 26px;
  }
  .map__adress {
    margin-bottom: 15px;
  }
  .map__worktime {
    margin-bottom: 15px;
  }
}
.footer {
  background-image: url(../image/bg/footer-bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  z-index: 1;
}
@media (width > 2000px) {
  .footer {
    background-position: center;
  }
}
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, #191919 0%, rgba(25, 25, 25, 0.9) 14%, rgba(25, 25, 25, 0.6) 41%, rgba(25, 25, 25, 0.9) 75%, #191919 100%);
  z-index: -1;
}
.footer__content {
  position: relative;
  padding-top: 80px;
}
.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 50px;
  position: relative;
  margin-bottom: 50px;
}
.footer__top::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
}
.footer__contacts {
  margin-right: 40px;
}
.footer__phone {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  margin-bottom: 25px;
}
.footer__phone-link {
  font-size: 16px;
  font-weight: 500;
  line-height: 18px;
  position: relative;
  display: inline-block;
  background-color: #1061AB;
  padding: 25px 45px;
  border-radius: 50px;
  color: #ffffff;
  cursor: pointer;
  width: 250px;
  text-align: center;
  transition: background-color 0.3s ease;
  overflow: hidden;
}
.footer__phone-link:hover {
  background-color: #062745;
}
.footer__phone-link:hover .footer__phone-text {
  opacity: 0;
}
.footer__phone-link:hover .footer__phone-number {
  opacity: 1;
}
.footer__phone-text,
.footer__phone-number {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: block;
  line-height: 18px;
  transition: opacity 0.3s ease;
  text-align: center;
  pointer-events: none;
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer__phone-text {
  opacity: 1;
  z-index: 1;
}
.footer__phone-number {
  opacity: 0;
  z-index: 2;
}
.footer__email {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 25px;
}
.footer__email-link {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  line-height: 18px;
}
.footer__privacy {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: #ffffff;
}
.footer__privacy-link {
  font-size: 14px;
  color: #ffffff;
  cursor: pointer;
}
@media (width < 1200px) {
  .footer__content {
    position: relative;
    padding-top: 35px;
  }
  .footer__top {
    flex-wrap: wrap;
    gap: 20px;
    padding-bottom: 25px;
    margin-bottom: 30px;
  }
  .footer__contacts {
    margin-right: 0;
    width: 100%;
  }
  .footer__phone {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
  }
  .footer__phone-link {
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    line-height: 18px;
  }
  .footer__email {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 25px;
  }
  .footer__email-link {
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    line-height: 18px;
  }
  .footer__button {
    background-color: #1061AB;
    padding: 15px 45px;
    border-radius: 50px;
    color: #ffffff;
    cursor: pointer;
  }
  .footer__privacy {
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: #ffffff;
  }
  .footer__privacy-link {
    font-size: 14px;
    color: #ffffff;
    cursor: pointer;
  }
  .footer__logo img {
    width: 150px;
  }
  .footer-nav__item {
    margin-right: 20px;
  }
}
@media (width < 1200px) {
  .footer__privacy {
    padding: 10px 0;
    flex-wrap: wrap;
    font-size: 10px;
  }
  .footer__privacy-link {
    font-size: 10px;
  } 
}
.footer-info {
  display: flex;
  justify-content: space-between;
  margin-bottom: 50px;
}
.footer-info__item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}
.footer-info__item:last-child {
  margin-bottom: 0;
}
.footer-info__item svg {
  width: 36px;
  height: 36px;
}
.footer-info__text {
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: #ffffff;
}
@media (width < 1200px) {
  .footer-info {
    flex-wrap: wrap;
    margin-bottom: 40px;
    gap: 30px;
  }
}
.footer-nav__list {
  display: flex;
  align-items: center;
  gap: 40px;
}
@media (width < 800px) {
  .footer-nav__list {
    flex-wrap: wrap;
    gap: 15px;
  }
}
.footer-nav__link {
  font-size: 16px;
  color: #ffffff;
  text-transform: uppercase;
  font-weight: 600;
  position: relative;
  overflow: hidden;
  padding-bottom: 7px;
}
.footer-nav__link::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #ffffff;
  transform: translateX(-30%);
  opacity: 0;
  transition: transform 0.5s ease, opacity 0.2s ease;
}
.footer-nav__link:hover::before {
  transform: translateX(0);
  opacity: 1;
}
.modal {
  position: fixed;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  background-color: rgba(25, 25, 25, 0.3);
  backdrop-filter: blur(5px);
  transition: opacity 0.3s ease;
  z-index: 100;
}
.modal.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.modal__close {
  position: absolute;
  top: 25px;
  right: 25px;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.privacy {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  width: 1200px;
  height: 600px;
  background: url(../image/bg/policy.png) no-repeat center center;
  background-size: cover;
  padding: 35px 30px 30px 50px;
}
.privacy__content {
  height: 87%;
  overflow-y: auto;
}
.privacy__content::-webkit-scrollbar {
  width: 10px;
}
.privacy__content::-webkit-scrollbar-track {
  background: #ffffff;
  border-bottom-right-radius: 6px;
  border-top-right-radius: 6px;
}
.privacy__content::-webkit-scrollbar-thumb {
  background: #605E5D;
  border-radius: 6px;
  border: 3px solid #ffffff;
}
.privacy__header {
  font-size: 26px;
  line-height: 30px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 30px;
}
.privacy li {
  padding-bottom: 15px;
}
.privacy a {
  color: #191919;
  text-decoration: underline;
}
.callback {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  width: 1200px;
  height: 500px;
  background: url(../image/bg/bg-callback.jpg) no-repeat center center;
  background-size: cover;
  padding: 60px 35px;
}
.callback__header {
  font-size: 30px;
  line-height: 34px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 60px;
  color: #ffffff;
}
.callback__list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  margin-bottom: 40px;
}
.callback__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  font-size: 18px;
  line-height: 24px;
  font-weight: 500;
  transition: transform 0.3s ease;
}
.callback__link:hover {
  transform: scale(1.1);
}
.callback__text {
  font-size: 18px;
  line-height: 24px;
  font-weight: 500;
  color: #ffffff;
  text-align: center;
  margin: 0;
  margin-bottom: 20px;
}
.callback__phone {
  display: flex;
  justify-content: center;
}
.callback__phone-link {
  display: flex;
  width: fix-content;
  gap: 8px;
  align-items: center;
  padding: 15px 70px;
  border-radius: 50px;
  color: #ffffff;
  margin-left: 20px;
  margin-bottom: 20px;
  font-size: 18px;
  line-height: 20px;
  font-weight: 500;
  position: relative;
  z-index: 1;
}
.callback__phone-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50px;
  background: linear-gradient(to right, #062745 0%, #1061AB 60%, #1061AB 100%);
  opacity: 1;
  transition: opacity 0.3s ease;
  z-index: -1;
}
.callback__phone-link::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50px;
  background: linear-gradient(to right, #1061AB 0%, #1061AB 60%, #062745 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}
.callback__phone-link:hover::after {
  opacity: 1;
}
.callback__phone-link:hover::before {
  opacity: 0;
}
@media (width < 1200px) {
  .callback {
    width: calc(100% - 60px);
    margin: 0 30px;
    left: 0;
    transform: translate(0, -50%);
  }
  .privacy {
    width: calc(100% - 60px);
    margin: 0 30px;
    left: 0;
    transform: translate(0, -50%);
  }
}
@media (width < 800px) {
  .callback {
    padding: 20px 15px;
    height: auto;
  }
  .callback__header {
    font-size: 18px;
    line-height: 22px;
    margin: 30px 0;
  }
  .modal__close {
    top: 15px;
    right: 15px;
  }
  .callback__list {
    gap: 20px;
    flex-wrap: wrap;
  }
  .callback__item {
    width: calc(33.33% - 14px);
  }
  .callback__link img {
    width: 30px;
  }
  .callback__link {
    font-size: 12px;
    line-height: 14px;
  }
  .callback__text {
    font-size: 16px;
    line-height: 20px;
  }
  .callback__phone-link {
    justify-content: center;
    width: 100%;
    padding: 15px 0;
    margin-left: 0;
    margin-bottom: 0;
  }
  .privacy {
    padding: 20px 15px;
    height: 400px;
  }
  .privacy__header {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 15px;
  }
  .privacy a {
    word-break: break-all;
  }
  .privacy__content {
    height: 80%;
    font-size: 14px;
  }
}
.swiperButton {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  background-color: #000000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.swiperButtonPrevFb,
.swiperButtonPrevTt {
  left: -15px;
}
.swiperButtonNextFb,
.swiperButtonNextTt {
  right: -15px;
}
.tiktok .facebook-product__content {
  height: fit-content;
}
@media (width < 800px) {
  .swiperButton {
    display: none;
  }
}

.cookie-consent {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 720px;
    background: #1e1e1e;
    color: #fff;
    padding: 20px;
    border-radius: 8px;
    z-index: 9999;
}
.cookie-consent__actions {
    margin-top: 15px;
    display: flex;
    gap: 10px;
}
.cookie-consent button {
    padding: 8px 16px;
    font-size: 16px;
}
#cookie-accept {
    background: #1061AB;
    color: #fff;
}
#cookie-decline {
    background: #555;
    color: #fff;
}
.hidden {
    display: none;
}
@media (width < 800px) {
  .cookie-consent {
    padding: 14px 12px;
  }
  .cookie-consent__content p {
    font-size: 14px;
    line-height: 20px;
  }
  .cookie-consent__actions {
      justify-content: center;
  }
}