@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

html {
  scroll-behavior: smooth;
}

.navbar-toggler {
  padding: 0.25rem 0.75rem;
  font-size: 1.25rem;
  line-height: 1;
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: 0.25rem;
}

.navbar-toggler:hover, .navbar-toggler:focus {
  text-decoration: none;
}

.navbar-toggler-icon {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  vertical-align: middle;
  content: "";
  background: no-repeat center center;
  background-size: 100% 100%;
}

body {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  /* обычный вес */
  color: #0c0c0c;
  background-color: #f9f9f9;
  overflow-x: hidden;
  /* Убираем горизонтальный скролл у всего body */
  overflow-y: auto;
  /* Разрешаем вертикальный скролл у body */
}

h1 {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  /* жирный вес */
}

a {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}

.layout_padding {
  padding: 90px 0;
}

.layout_margin {
  margin: 90px 0;
}

.layout_padding2 {
  padding: 75px 0;
}

.layout_padding2-top {
  padding-top: 75px;
}

.layout_padding2-bottom {
  padding-bottom: 75px;
}

.layout_padding-top {
  padding-top: 90px;
}

.layout_padding-bottom {
  padding-bottom: 90px;
}

.heading_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.center{
  align-items: center !important;
}

.heading_container h2 {
  position: relative;
  font-weight: bold;
}

.heading_container h2 span {
  color: #7335b7;
}

.heading_container.heading_center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}

a,
a:hover,
a:focus {
  text-decoration: none;
}

a:hover,
a:focus {
  color: initial;
}

.btn,
.btn:focus {
  outline: none !important;
  -webkit-box-shadow: none;
  box-shadow: none;
}


.footer_container {
  background-color: #7335b7;
  color: #ffffff;
  border-radius: 350px 0 0 0;
  padding-top: 145px;
}


/* footer section*/
.footer_section {
  position: relative;
  text-align: center;
}

.footer_section p {
  padding: 25px 0;
  margin: 0;
}

.footer_section p a {
  color: inherit;
}

.vacancies img {
  width: auto;
  height: 340px;
}

.minus{
  margin-bottom: -45px !important;
}

.mob {
  display: none;
}


/* Основной контейнер Swiper */
.swiper-container {
  margin-top: 20px;
  width: 100%;
  height: 180px; /* Высота контейнера */
  overflow: hidden; /* Скрыть горизонтальный скролл */
}

/* Обертка для слайдов */
.swiper-wrapper {
  display: flex;
}

/* Слайды Swiper */
.swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 300px; /* Ширина слайда на больших экранах */
  box-sizing: border-box;
  background: #F4EAFF;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin-right: 15px; /* Отступ между слайдами */
}

/* Заголовок слайда */
.item-heading {
  font-size: 3rem;
  /* Размер шрифта */
  margin: 0;
  padding: 10px 0;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  background-image: linear-gradient(90deg, #7335b7, #f8842b);
  background-size: 200%;
  animation: gradient-animation 3s ease infinite;
}

/* Описание слайда */
.item-description {
  font-size: 0.9em;
  color: #666;
}

/* Адаптивные стили для Swiper */
@media (max-width: 767px) {
  .swiper-slide {
    width: 100%; /* Ширина слайда для мобильных устройств */
    margin-right: 0; /* Убрать отступ между слайдами */
  }

  .swiper-container {
    padding-left: 0; /* Убрать padding для мобильных устройств */
  }
}



/* Анимация переливания цветов */
@keyframes gradient-animation {
  0% {
    background-position: 0%;
  }

  50% {
    background-position: 100%;
  }

  100% {
    background-position: 0%;
  }
}


.no_btn {
  height: 250px !important;
}

.gray-text {
  color: #555;
}

.btn {
  color: #7335b7;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid #7335b7;
  padding: 10px 20px;
  font-size: 17px;
  cursor: pointer;
  font-weight: bold;
  background: transparent;
  position: relative;
  transition: all 1s;
  overflow: hidden;
}

.btn:hover {
  color: white;
}

.btn::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 0%;
  top: 0;
  left: -40px;
  transform: skewX(45deg);
  background-color: #7335b7;
  z-index: -1;
  transition: all 1s;
}

.btn:hover::before {
  width: 160%;
}

.about_section {
  background-color: #7335b7;
  color: #ffffff;
  border-radius: 250px 0 250px 0;
}

.about_section .row {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.about_section .img-box {
  position: relative;
}

.about_section .img-box img {
  width: 100%;
  -webkit-animation: upDown 5s infinite;
  animation: upDown 5s infinite;
}

.about_section .detail-box p {
  margin-top: 15px;
}

.about_section .detail-box a:hover {
  color: #ffffff;
  -webkit-transform: translateY(-3px);
  transform: translateY(-3px);
}

@-webkit-keyframes upDown {
  0% {
    -webkit-transform: translateY(-45px);
    transform: translateY(-45px);
  }

  50% {
    -webkit-transform: translateY(45px);
    transform: translateY(45px);
  }

  100% {
    -webkit-transform: translateY(-45px);
    transform: translateY(-45px);
  }
}

@keyframes upDown {
  0% {
    -webkit-transform: translateY(-45px);
    transform: translateY(-45px);
  }

  50% {
    -webkit-transform: translateY(45px);
    transform: translateY(45px);
  }

  100% {
    -webkit-transform: translateY(-45px);
    transform: translateY(-45px);
  }
}

.case_section .heading_container {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.case_section .heading_container h2::before {
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.case_section .box {
  margin-top: 45px;
  background-color: #ffffff;
  -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.15);
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.15);
  text-align: center;
}

.case_section .box .img-box {
  position: relative;
}

.case_section .box .img-box img {
  width: 100%;
}

.case_section .box .detail-box {
  padding: 25px;
  background-color: #F4EAFF;
}

.case_section .box .detail-box h5 {
  font-weight: bold;
}

.case_section .box .detail-box p {
  font-size: 15px;
}

.case_section .box .detail-box a {
  color: #7335b7;
}

.client_section .box {
  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;
  margin: 45px 0;
  text-align: center;
}

.client_section .box .img-box {
  width: 125px;
  height: 125px;
  min-width: 125px;
  position: relative;
  margin-bottom: -62.5px;
}

.client_section .box .img-box img {
  width: 100%;
  border-radius: 100%;
}

.client_section .box .client_info .client_name h5 {
  font-weight: bold;
  margin-bottom: 0;
  text-transform: uppercase;
}

.client_section .box .client_info .client_name h6 {
  margin-bottom: 0;
  color: #7335b7;
  font-weight: normal;
  font-size: 15px;
  text-transform: uppercase;
}

.client_section .box .client_info i {
  font-size: 24px;
}

.client_section .box p {
  margin-top: 15px;
}

.client_section .box .detail-box {
  background-color: #ffffff;
  background-color: #7335b7;
  color: #ffffff;
  border-radius: 15px;
  padding: 85px 45px 15px 45px;
}

.client_section .carousel-indicators {
  position: unset;
  margin: 0;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.client_section .carousel-indicators li {
  background-color: #7335b7;
  width: 10px;
  height: 10px;
  border-radius: 100%;
  opacity: 1;
}

.client_section .carousel-indicators li.active {
  width: 20px;
  height: 20px;
  background-color: #f8842b;
}

/* Header section */
.hero_area {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-color: #7335b7;
  border-radius: 0 0 350px 0;
}

.sub_page .hero_area {
  min-height: auto;
  border-radius: 0 0 145px 0;
}

/* Slider section */
.slider_section {
  min-height: 100vh;
  /* Устанавливаем минимальную высоту */
  display: flex;
  align-items: center;
  /* Центрируем контент вертикально */
  justify-content: center;
  /* Центрируем контент горизонтально */
  padding: 20px 0;
}

.slider_section .row {
  align-items: center;
}

.slider_section #customCarousel1 {
  width: 100%;
  position: unset;
}

.slider_section .detail-box {
  text-align: center;
  color: #ffffff;
  max-width: 100%;
  /* Убедитесь, что detail-box не превышает ширину контейнера */
  overflow: hidden;
  /* Скрываем излишки содержимого */
  position: relative;
  /* Для корректного позиционирования элементов внутри */
  padding-bottom: 20px;
  /* Добавляем отступ снизу */
}

.slider_section .detail-box h1 {
  font-weight: bold;
  margin-bottom: 20px;
}

.slider_section .detail-box .btn-box {
  display: flex;
  justify-content: center;
  margin: 0 -5px;
  margin-top: 30px;
  /* Немного уменьшаем отступ сверху */
  padding-bottom: 20px;
  /* Дополнительный отступ снизу */
}

.slider_section .img-box img {
  width: 100%;
  height: 530px;
  border-radius: 20px;
}

.slider_section .carousel-indicators {
  position: unset;
  margin: 0;
  justify-content: center;
  align-items: center;
  margin-top: 45px;
}

.slider_section .carousel-indicators li {
  background-color: #ffffff;
  width: 15px;
  height: 15px;
  border-radius: 100%;
  opacity: 1;
}

.slider_section .carousel-indicators li.active {
  width: 23px;
  height: 23px;
  background-color: #f8842b;
}

/* Button styling */
.animated-button {
  position: relative;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 16px 36px;
  border: 4px solid transparent;
  font-size: 16px;
  background-color: inherit;
  border-radius: 100px;
  font-weight: 600;
  color: white;
  box-shadow: 0 0 0 2px #f8842b;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated-button svg {
  position: absolute;
  width: 24px;
  fill: white;
  z-index: 9;
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated-button .arr-1 {
  right: 16px;
}

.animated-button .arr-2 {
  left: -25%;
}

.animated-button .circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  background-color: #f8842b;
  border-radius: 50%;
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated-button .text {
  position: relative;
  z-index: 1;
  transform: translateX(-12px);
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated-button:hover {
  box-shadow: 0 0 0 12px transparent;
  color: white;
  border-radius: 12px;
}

.animated-button:hover .arr-1 {
  right: -25%;
}

.animated-button:hover .arr-2 {
  left: 16px;
}

.animated-button:hover .text {
  transform: translateX(12px);
}

.animated-button:active {
  scale: 0.95;
  box-shadow: 0 0 0 4px #f8842b;
}

.animated-button:hover .circle {
  width: 220px;
  height: 220px;
  opacity: 1;
}

/* Media queries for responsive design */
@media (max-width: 768px) {
  .slider_section .img-box img {
    height: auto;
    max-height: 350px;
    /* Ограничиваем высоту на мобильных устройствах */
  }

  .slider_section .detail-box .btn-box {
    margin-top: 20px;
    /* Слегка уменьшаем отступ сверху для мобильных устройств */
  }

  .slider_section .detail-box h1 {
    font-size: 24px;
    /* Уменьшаем размер заголовка на мобильных */
  }

  .slider_section .detail-box p {
    font-size: 16px;
    /* Уменьшаем размер текста */
  }
}

@media (max-width: 576px) {
  .slider_section .detail-box {
    padding: 10px;
  }

  .slider_section .detail-box .btn-box {
    margin-top: 15px;
  }

  .slider_section .img-box img {
    max-height: 250px;
  }
}


.sub_page .hero_area {
  min-height: auto;
  border-radius: 0 0 145px 0;
}

.header_section {
  padding: 15px 0;
}

.header_section .container-fluid {
  padding-right: 25px;
  padding-left: 25px;
}

/* Основные стили для навигации */
/* Основные стили для навигации */
.navbar-brand span {
  font-weight: bold;
  color: #ffffff;
  font-size: 24px;
}

.custom_nav-container {
  padding: 0;
}

.custom_nav-container .navbar-nav {
  margin: auto;
}

.custom_nav-container .navbar-nav .nav-item .nav-link {
  padding: 5px 25px;
  color: #ffffff;
  text-align: center;
  text-transform: uppercase;
  border-radius: 5px;
  position: relative;
  /* Необходимо для позиционирования линии */
  overflow: hidden;
  /* Чтобы линия не выходила за пределы блока */
  -webkit-transition: color 0.3s, background-color 0.3s, transform 0.3s;
  transition: color 0.3s, background-color 0.3s, transform 0.3s;
}

/* Линия под ссылками */
.custom_nav-container .navbar-nav .nav-item .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: #f8842b;
  transform: scaleX(0);
  transform-origin: bottom right;
  -webkit-transition: transform 0.3s ease;
  transition: transform 0.3s ease;
}

/* Появление линии при наведении */
.custom_nav-container .navbar-nav .nav-item:hover .nav-link::after,
.custom_nav-container .navbar-nav .nav-item.active .nav-link::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}


/* Стили при наведении и активном состоянии */
.custom_nav-container .navbar-nav .nav-item:hover .nav-link,
.custom_nav-container .navbar-nav .nav-item.active .nav-link {
  background-color: transparent;
  /* Убираем белую область */

}

/* Линия под ссылками */
.custom_nav-container .navbar-nav .nav-item .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: #f8842b;
  transform: scaleX(0);
  transform-origin: bottom right;
  -webkit-transition: transform 0.3s ease;
  transition: transform 0.3s ease;
}

/* Появление линии при наведении */
.custom_nav-container .navbar-nav .nav-item:hover .nav-link::after,
.custom_nav-container .navbar-nav .nav-item.active .nav-link::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}


.custom_nav-container .navbar-toggler {
  outline: none;
}

.custom_nav-container .navbar-toggler {
  padding: 0;
  width: 37px;
  height: 42px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.custom_nav-container .navbar-toggler span {
  display: block;
  width: 35px;
  height: 4px;
  background-color: #ffffff;
  margin: 7px 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: relative;
  border-radius: 5px;
  transition: all 0.3s;
}

.custom_nav-container .navbar-toggler span::before,
.custom_nav-container .navbar-toggler span::after {
  content: "";
  position: absolute;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #ffffff;
  top: -10px;
  border-radius: 5px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.custom_nav-container .navbar-toggler span::after {
  top: 10px;
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] {
  -webkit-transform: rotate(360deg);
  transform: rotate(360deg);
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] span {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] span::before,
.custom_nav-container .navbar-toggler[aria-expanded="true"] span::after {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  top: 0;
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] .s-1 {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  margin: 0;
  margin-bottom: -4px;
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] .s-2 {
  display: none;
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] .s-3 {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  margin: 0;
  margin-top: -4px;
}

.custom_nav-container .navbar-toggler[aria-expanded="false"] .s-1,
.custom_nav-container .navbar-toggler[aria-expanded="false"] .s-2,
.custom_nav-container .navbar-toggler[aria-expanded="false"] .s-3 {
  -webkit-transform: none;
  transform: none;
}

.quote_btn-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.quote_btn-container a {
  color: #000000;
  text-transform: uppercase;
}

.quote_btn-container a span {
  margin-left: 5px;
}

.quote_btn-container a:hover {
  color: #f8842b;
}

.quote_btn-container .quote_btn {
  display: inline-block;
  padding: 5px 25px;
  background-color: #f8842b;
  color: #ffffff;
  border-radius: 5px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: 1px solid #f8842b;
}

.quote_btn-container .quote_btn:hover {
  color: #ffffff;
  -webkit-transform: translateY(-3px);
  transform: translateY(-3px);
}

/*end header section*/
/* Изначальное скрытое меню */


/* Для мобильных устройств */
@media (max-width: 992px) {
  /* Меню */

  .custom_nav-container .navbar-nav .nav-item .nav-link {
    text-align: right;
  }

  #navbarSupportedContent {
    width: 100%;
    position: fixed;
    top: 70px;
    /* Отступ под хедером */
    right: -100%;
    /* Прячем меню */
    height: 100vh;
    background-color: #7335b7;
    z-index: 1000;
    transition: right 0.3s ease-in-out;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
  }

  /* Когда меню открыто */
  .navbar-collapse.show {
    right: 0 !important;
    transition: right 0.3s ease-in-out;
  }

  /* Стили для ссылок меню */
  .navbar-nav {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    /* Расстояние между элементами */
    padding-right: 30px;
    /* Выравнивание по правому краю */
  }

  .navbar-nav .nav-item {
    width: 100%;
  }

  .navbar-nav .nav-item .nav-link {
    display: block;
    text-align: right;
    /* Выравнивание текста по правому краю */
    padding: 20px 40px;
    /* Увеличенный padding */
    border-bottom: 2px solid #f8842b;
    /* Оранжевые границы по всем сторонам */
    color: #ffffff;
    font-size: 24px;
    /* Увеличенный размер текста */
    border-radius: 5px;
    transition: all 0.3s ease;
  }

  /* Стили при наведении на ссылку */
  .navbar-nav .nav-item .nav-link:hover {
    background-color: #f8842b;
    color: #ffffff;
  }
}

.navbar-toggler {
  z-index: 1100;
  position: relative;
}


/* info section */
.info_section h4 {
  font-weight: 600;
  margin-bottom: 20px;
}

.info_section .info_contact .contact_link_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.info_section .info_contact .contact_link_box a {
  margin: 5px 0;
  color: #ffffff;
}

.info_section .info_contact .contact_link_box a i {
  margin-right: 5px;
}

.info_section .info_contact .contact_link_box a:hover {
  color: #f8842b;
}

.info_section .info_social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 20px;
}

.info_section .info_social a {
  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;
  color: #ffffff;
  border-radius: 100%;
  margin-right: 10px;
  font-size: 24px;
}

.info_section .info_social a:hover {
  color: #f8842b;
}

.info_section .info_links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.info_section .info_links a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 15px;
  color: #ffffff;
}

.info_section .info_links a:hover {
  color: #f8842b;
}

.info_section form input {
  border: none;
  border-bottom: 1px solid #ffffff;
  background-color: transparent;
  width: 100%;
  height: 45px;
  color: #ffffff;
  outline: none;
}

.info_section form input::-webkit-input-placeholder {
  color: #ffffff;
}

.info_section form input:-ms-input-placeholder {
  color: #ffffff;
}

.info_section form input::-ms-input-placeholder {
  color: #ffffff;
}

.info_section form input::placeholder {
  color: #ffffff;
}

.info_section form button {
  width: 100%;
  text-align: center;
  display: inline-block;
  padding: 10px 55px;
  background-color: #f8842b;
  color: #ffffff;
  border-radius: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: 1px solid #f8842b;
  margin-top: 15px;
}

.info_section form button:hover {
  color: #ffffff;
  -webkit-transform: translateY(-3px);
  transform: translateY(-3px);
}

/* end info section */


/* ===============  ABOUT.HTML =============== */

/* Місія та Цінності */
.left_col {
  border-right: 2px solid #7335b7;
  border-left: 2px solid #7335b7;
}


.right_col {
  border-right: 2px solid #7335b7;
}

.mission_values_section {
  padding: 60px 0;
  background-color: #f9f9f9;
}

.mission_values_section h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  text-align: center;
  position: relative;
}

.mission_values_section p {
  font-size: 1.1rem;
  line-height: 1.6;
}

.mission_values_section ul {
  list-style: none;
  padding: 0;
}

.mission_values_section ul li {
  font-size: 1.1rem;
}

/* Стиль для заголовков с анимацией печатной машинки */
.mission-heading-wrapper,
.values-heading-wrapper {
  display: inline-block;
  position: relative;
  /* Отступ для курсора */
}

.cursor {
  display: inline-block;
  font-weight: bold;
  font-size: 1.5rem;
  animation: blink 0.7s steps(1) infinite;
  color: #000;
  /* Цвет курсора */
  margin-left: 5px;
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}

/* Дополнительные стили для выравнивания контента */
.mission-content,
.values-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.mission-content p,
.values-content ul {
  margin-top: 20px;
}

.values-content ul {
  padding-left: 0;
  /* Убираем отступы слева */
}

.values-content ul li {
  margin-bottom: 15px;
  /* Увеличиваем расстояние между элементами списка */
}


.history_section {
  background-color: #7335b7;
  color: #ffffff;
  border-radius: 250px 0 250px 0;
}

.timeline {
  --col-gap: 2rem;
  --row-gap: 2rem;
  --line-w: 0.25rem;
  display: grid;
  grid-template-columns: var(--line-w) 1fr;
  grid-auto-columns: max-content;
  column-gap: var(--col-gap);
  list-style: none;
  width: min(60rem, 90%);
  margin-inline: auto;
}

/* line */
.timeline::before {
  content: "";
  grid-column: 1;
  grid-row: 1 / span 20;
  background: rgb(225, 225, 225);
  border-radius: calc(var(--line-w) / 2);
}

/* columns*/

/* row gaps */
.timeline li:not(:last-child) {
  margin-bottom: var(--row-gap);
}

/* card */
.timeline li {
  grid-column: 2;
  --inlineP: 1.5rem;
  margin-inline: var(--inlineP);
  grid-row: span 2;
  display: grid;
  grid-template-rows: min-content min-content min-content;
}

/* date */
.timeline li .date {
  --dateH: 3rem;
  height: var(--dateH);
  margin-inline: calc(var(--inlineP) * -1);

  text-align: center;
  background-color: var(--accent-color);

  color: white;
  font-size: 1.25rem;
  font-weight: 700;

  display: grid;
  place-content: center;
  position: relative;

  border-radius: calc(var(--dateH) / 2) 0 0 calc(var(--dateH) / 2);
}

/* date flap */
.timeline li .date::before {
  content: "";
  width: var(--inlineP);
  aspect-ratio: 1;
  background: var(--accent-color);
  background-image: linear-gradient(rgba(0, 0, 0, 0.2) 100%, transparent);
  position: absolute;
  top: 100%;

  clip-path: polygon(0 0, 100% 0, 0 100%);
  right: 0;
}

/* circle */
.timeline li .date::after {
  content: "";
  position: absolute;
  width: 2rem;
  aspect-ratio: 1;
  background: var(--bgColor);
  border: 0.3rem solid var(--accent-color);
  border-radius: 50%;
  top: 50%;

  transform: translate(50%, -50%);
  right: calc(100% + var(--col-gap) + var(--line-w) / 2);
}

/* title descr */
.timeline li .title,
.timeline li .descr {
  background: var(--bgColor);
  position: relative;
  padding-inline: 1.5rem;
}

.timeline li .title {
  overflow: hidden;
  padding-block-start: 1.5rem;
  padding-block-end: 1rem;
  font-weight: 700;
}

.timeline li .descr {
  padding-block-end: 1.5rem;
}

/* shadows */
.timeline li .title::before,
.timeline li .descr::before {
  content: "";
  position: absolute;
  width: 90%;
  height: 0.5rem;
  background: rgba(0, 0, 0, 0.5);
  left: 50%;
  border-radius: 50%;
  filter: blur(4px);
  transform: translate(-50%, 50%);
}

.timeline li .title::before {
  bottom: calc(100% + 0.125rem);
}

.timeline li .descr::before {
  z-index: -1;
  bottom: 0.25rem;
}

@media (min-width: 40rem) {
  .timeline {
    grid-template-columns: 1fr var(--line-w) 1fr;
  }

  .timeline::before {
    grid-column: 2;
  }

  .timeline li:nth-child(odd) {
    grid-column: 1;
  }

  .timeline li:nth-child(even) {
    grid-column: 3;
  }

  /* start second card */
  .timeline li:nth-child(2) {
    grid-row: 2/4;
  }

  .timeline li:nth-child(odd) .date::before {
    clip-path: polygon(0 0, 100% 0, 100% 100%);
    left: 0;
  }

  .timeline li:nth-child(odd) .date::after {
    transform: translate(-50%, -50%);
    left: calc(100% + var(--col-gap) + var(--line-w) / 2);
  }

  .timeline li:nth-child(odd) .date {
    border-radius: 0 calc(var(--dateH) / 2) calc(var(--dateH) / 2) 0;
  }
}


/* Team Section */
.team_section {
  padding: 60px 0;
  background-color: #f9f9f9;
}

.team_section h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  text-align: center;
}

.team_member {
  text-align: center;
  margin-bottom: 30px;
}

.team_member img {
  width: 100%;
  border-radius: 50%;
  max-width: 200px;
  height: auto;
}

.team_member h3 {
  font-size: 1.5rem;
  margin: 10px 0;
}

.team_member p {
  font-size: 1.1rem;
}


/* ===============  CAREER.HTML =============== */

/* Стили для секции "Дорожня карта нового співробітника" */
.onboarding_roadmap_section {
  background: #f3f0ff;
  /* Светлый фон с фиолетовым оттенком */
  padding: 60px 0;
}

.heading_container {
  text-align: center;
  margin-bottom: 40px;
}

.heading_container h2 {
  font-size: 2.4rem;
  color: #7335b7;
  /* Фиолетовый цвет для заголовка */
  margin-bottom: 20px;
}

.heading_container p {
  font-size: 1.2rem;
  color: #555;
}

.roadmap_steps {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.step {
  display: flex;
  align-items: center;
  background-color: #ffffff;
  border: 2px solid #e0e0e0;
  /* Светло-серая граница */
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.step_icon {
  font-size: 3rem;
  color: #f8842b;
  /* Оранжевый цвет */
  margin-right: 20px;
}

.step_content h3 {
  font-size: 1.4rem;
  color: #7335b7;
  /* Фиолетовый цвет для заголовка этапа */
  margin-bottom: 10px;
}

.step_content p {
  color: #555;
  line-height: 1.6;
}

/* Стили для двух колонок */
@media (min-width: 768px) {
  .roadmap_steps {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 30px;
  }

  .step {
    width: calc(50% - 15px);
  }
}


/* Стили для секции "Вакансії" */
.vacancy_section {
  background: #f9f2e6;
  /* Светлый фон с оранжевым оттенком */
  padding: 60px 0;
}

.vacancy_section .container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.vacancy_section .vacancy_item {
  border: 2px solid #f8842b;
  /* Оранжевая граница */
  border-radius: 15px;
  padding: 20px;
  background-color: #ffffff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
  max-width: 800px;
}

.vacancy_section .vacancy_item:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.vacancy_section .vacancy_title h3 {
  font-size: 1.5rem;
  color: #f8842b;
  /* Яркий оранжевый для заголовка вакансии */
  margin-bottom: 10px;
}

.vacancy_section .vacancy_description p {
  color: #555;
  line-height: 1.6;
}

.vacancy_section .vacancy_info {
  margin-top: 20px;
  font-size: 1rem;
}

.vacancy_section .vacancy_info span {
  display: block;
  margin-bottom: 10px;
  color: #555;
}

.vacancy_section .vacancy_info .label {
  font-weight: bold;
  color: #7335b7;
  /* Фиолетовый цвет для меток */
}

/* Стили для двух колонок */
@media (min-width: 768px) {
  .vacancy_section .vacancy_item {
    width: calc(50% - 20px);
  }
}

.vacancy_contact {
  margin-top: 15px;
}

.contact-btn {
  display: inline-block;
  padding: 10px 20px;
  margin-right: 10px;
  margin-bottom: 10px;
  font-size: 16px;
  border-radius: 30px;
  text-decoration: none;
  color: #fff;
  transition: all 0.3s ease;
}

.contact-btn i {
  margin-right: 8px;
  font-size: 20px;
}

/* Telegram кнопка */
.contact-btn.telegram {
  background-color: #0088cc;
}

.contact-btn.telegram:hover {
  transform: translateY(-3px);
  color: #F2EFEA;
}

/* Viber кнопка */
.contact-btn.viber {
  background-color: #7360f2;
}

.contact-btn.viber:hover {
  transform: translateY(-3px);
  color: #F2EFEA;
}


/* ===============  CASE.HTML =============== */

/* Стили для секции "Кейси" */
.cases_section {
  background: #f3f0ff;
  padding: 60px 20px;
}

.cases_section .container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  align-items: stretch; /* Убедитесь, что все элементы имеют одинаковую высоту */
}

.case_item {
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  overflow: hidden;
  background-color: #ffffff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  flex: 1 1 calc(33.33% - 20px); /* Задает ширину для трех колонок */
  max-width: calc(33.33% - 20px);
}

@media (max-width: 1199px) {
  .case_item {
    flex: 1 1 calc(50% - 20px);
    max-width: calc(50% - 20px); /* Две колонки на средних экранах */
  }
}

@media (max-width: 767px) {
  .case_item {
    flex: 1 1 100%; /* Одна колонка на маленьких экранах */
    max-width: 100%;
  }
}

.case_image {
  width: 100%;
  height: 260px;
  overflow: hidden;
}

.case_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case_content {
  padding: 20px;
  min-height: 200px; /* Фиксированная минимальная высота для равного размера всех карточек */
}

.case_content h3 {
  font-size: 1.5rem;
  color: #7335b7;
  margin-bottom: 10px;
}

.case_content p {
  color: #555;
  margin-bottom: 15px;
}

.case_details {
  font-size: 1rem;
  color: #555;
}

.case_details span {
  display: block;
  margin-bottom: 10px;
}

.case_item:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}



/* ===============  CONTACT.HTML =============== */
.contact_section {
  position: relative;
}

.contact_section form {
  margin-top: 45px;
}

.contact_section input {
  margin-bottom: 25px;
}



.contact_section .map_container {
  height: 100%;
  min-height: 325px;
  overflow: hidden;
  margin-left: 45px;
}

.contact_section .map_container .map {
  height: 100%;
}

.contact_section .map_container .map #googleMap {
  height: 100%;
}

.card {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 35px;
  background: #F4EAFF;
  box-shadow: 16px 16px 32px rgba(115, 53, 183, 0.3), -16px -16px 32px rgba(248, 132, 43, 0.3);
  border-radius: 15px;
  padding: 20px;
  width: 100%;
  max-width: 400px; /* Ограничение ширины формы */
  margin: 0 auto; /* Центрирование по горизонтали */
}

/* Стиль для заголовка */
.login {
  color: #7335b7;
  /* Основной цвет заголовка */
  text-transform: uppercase;
  letter-spacing: 2px;
  display: block;
  font-weight: bold;
  font-size: x-large;
}

/* Основной стиль для полей ввода */
.inputBox {
  position: relative;
  width: auto;
}

.inputBox input {
  width: 100%;
  padding: 10px;
  outline: none;
  border: none;
  color: #000;
  font-size: 1em;
  background: transparent;
  border-left: 2px solid #7335b7;
  /* Цвет границы слева */
  border-bottom: 2px solid #7335b7;
  /* Цвет нижней границы */
  transition: 0.1s;
  border-bottom-left-radius: 15px;
}

.inputBox span {
  margin-top: 5px;
  position: absolute;
  left: 0;
  transform: translateY(-4px);
  margin-left: 10px;
  padding: 10px;
  pointer-events: none;
  font-size: 12px;
  color: #7335b7;
  /* Цвет текста метки */
  text-transform: uppercase;
  transition: 0.5s;
  letter-spacing: 3px;
  border-radius: 8px;
}

/* Стили при фокусе для полей ввода */
.inputBox input:valid~span,
.inputBox input:focus~span {
  transform: translateX(113px) translateY(-15px);
  font-size: 0.8em;
  padding: 5px 10px;
  background: #7335b7;
  /* Цвет фона метки при фокусе */
  letter-spacing: 0.2em;
  color: #fff;
  border: 2px;
}

.inputBox input:valid,
.inputBox input:focus {
  border: 2px solid #7335b7;
  /* Цвет границы поля при фокусе */
  border-radius: 15px;
}

/* Кастомный селект */
.custom-select {
  position: relative;
  width: 260px;
  border-radius: 15px;
}

.select-selected {
  background-color: #ffffff;
  /* Белый фон для выбранного элемента */
  border-radius: 8px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #7335b7;
  /* Цвет текста выбранного элемента */
  transition: background-color 0.3s ease;
}

.select-items {
  position: absolute;
  background-color: #ffffff;
  /* Белый фон для выпадающего списка */
  border: 2px solid #7335b7;
  /* Цвет границы списка */
  width: 100%;
  border-radius: 8px;
  z-index: 99;
  margin-top: 5px;
  overflow-y: auto;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
}

.select-items li {
  padding: 10px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: background-color 0.2s ease;
}

.select-items li:hover {
  background-color: #7335b7;
  /* Цвет фона элемента списка при наведении */
  color: #ffffff;
  /* Цвет текста элемента списка при наведении */
}

.select-hide {
  display: none;
}

/* Стиль для кнопки */
.enter {
  height: 45px;
  border-radius: 15px;
  border: 2px solid #7335b7;
  /* Цвет границы кнопки */
  cursor: pointer;
  background-color: transparent;
  transition: 0.5s;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 2px;
  color: #7335b7;
  /* Цвет текста кнопки */
}

.enter:hover {
  background-color: #7335b7;
  /* Цвет фона кнопки при наведении */
  color: #ffffff;
  /* Цвет текста кнопки при наведении */
}

/* Центрируем кнопку и элементы в форме */
form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 100%;
}

/* Лоадер Wrapper */
.loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 1);
  /* Блокирует видимость основного контента */
  z-index: 9999;
  /* Убедитесь, что лоадер выше всего остального */
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Лоадер */
.loader {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 10;
  width: 160px;
  height: 100px;
  margin-left: -80px;
  margin-top: -50px;
  border-radius: 5px;
  background: #1e3f57;
  animation: dot1_ 3s cubic-bezier(0.55, 0.3, 0.24, 0.99) infinite;
}

.loader:nth-child(2) {
  z-index: 11;
  width: 150px;
  height: 90px;
  margin-top: -45px;
  margin-left: -75px;
  border-radius: 3px;
  background: #3c517d;
  animation-name: dot2_;
}

.loader:nth-child(3) {
  z-index: 12;
  width: 40px;
  height: 20px;
  margin-top: 50px;
  margin-left: -20px;
  border-radius: 0 0 5px 5px;
  background: #6bb2cd;
  animation-name: dot3_;
}

@keyframes dot1_ {

  3%,
  97% {
    width: 160px;
    height: 100px;
    margin-top: -50px;
    margin-left: -80px;
  }

  30%,
  36% {
    width: 80px;
    height: 120px;
    margin-top: -60px;
    margin-left: -40px;
  }

  63%,
  69% {
    width: 40px;
    height: 80px;
    margin-top: -40px;
    margin-left: -20px;
  }
}

@keyframes dot2_ {

  3%,
  97% {
    height: 90px;
    width: 150px;
    margin-left: -75px;
    margin-top: -45px;
  }

  30%,
  36% {
    width: 70px;
    height: 96px;
    margin-left: -35px;
    margin-top: -48px;
  }

  63%,
  69% {
    width: 32px;
    height: 60px;
    margin-left: -16px;
    margin-top: -30px;
  }
}

@keyframes dot3_ {

  3%,
  97% {
    height: 20px;
    width: 40px;
    margin-left: -20px;
    margin-top: 50px;
  }

  30%,
  36% {
    width: 8px;
    height: 8px;
    margin-left: -5px;
    margin-top: 49px;
    border-radius: 8px;
  }

  63%,
  69% {
    width: 16px;
    height: 4px;
    margin-left: -8px;
    margin-top: -37px;
    border-radius: 10px;
  }
}

/* Основные стили для карточек */
.service_section {
  text-align: center;
  background-color: #F4EAFF;
}

.service_section .heading_container {
  align-items: center;
}

.service_section .row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.service_section .col-md-6 {
  display: flex;
  justify-content: center;
}

.service_section .box {
  margin-top: 25px;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.25);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  z-index: 1;
  cursor: pointer;
}

/* Плавное вдавливание при клике */
@keyframes press {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(0.95);
  }

  100% {
    transform: scale(1);
  }
}

/* Анимация для "звяканья" и вращения */
@keyframes ding {
  0% {
    transform: scale(1) rotate(0deg);
  }

  50% {
    transform: scale(1.1) rotate(10deg);
  }

  100% {
    transform: scale(1) rotate(0deg);
  }
}

@keyframes flip {
  0% {
    transform: rotateY(0deg);
  }

  50% {
    transform: rotateY(180deg);
  }

  100% {
    transform: rotateY(360deg);
  }
}

.service_section .box:active {
  animation: press 0.3s ease-out;
}

.service_section .box:active {
  animation: ding 0.3s ease-out, press 0.3s ease-out;
}

.service_section .box::before {
  content: "";
  width: 275px;
  height: 275px;
  position: absolute;
  right: -137.5px;
  bottom: -137.5px;
  background-color: #faf8fd;
  z-index: -1;
  border-radius: 100%;
  transition: all 0.3s ease;
}

.service_section .box .img-box {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 125px;
  border-radius: 15px;
}

.service_section .box .img-box img {
  width: 75px;
  transition: all 0.3s ease;
}

.service_section .box .detail-box {
  margin-top: 15px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service_section .box .detail-box h5 {
  font-weight: bold;
  position: relative;
}

.service_section .box .detail-box a {
  color: #7335b7;
  display: inline-block;
  padding: 10px 20px;
  margin-top: 10px;
  background-color: #ffffff;
  border: 1px solid #7335b7;
  border-radius: 5px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.service_section .box .detail-box a:hover {
  color: #000000;
  background-color: #ffffff;
}

.service_section .box:hover {
  color: #ffffff;
}

.service_section .box:hover::before {
  transform: scale(5);
  background-color: #7335b7;
}

.service_section .box:hover img {
  filter: invert(1);
}

.service_section .btn-box {
  display: flex;
  justify-content: center;
  margin-top: 45px;
}

.service_section .btn-box a {
  display: inline-block;
  padding: 10px 45px;
  background-color: #7335b7;
  color: #ffffff;
  border-radius: 5px;
  border: 1px solid #7335b7;
  transition: all 0.3s ease;
  text-decoration: none;
}

.service_section .btn-box a:hover {
  background-color: #ffffff;
  color: #000000;
  transform: translateY(-3px);
}

particle {
  position: fixed;
  left: 0;
  top: 0;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  z-index: 999;
  /* Чтобы частички были поверх всех элементов */
}

/* Стили для контактной секции */
.contact_section {
  background-color: #f3f0ff;
  /* Фон с фиолетовым оттенком */
  padding: 60px 0;
}

.contact_box {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 30px;
}

.contact_box:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.contact_box i {
  color: #7335b7;
  /* Фиолетовый цвет иконок */
  margin-bottom: 15px;
}

.contact_box h6 {
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 15px;
}

.contact_box p {
  color: #555;
  margin-bottom: 20px;
}

.contact_box a {
  background-color: #7335b7;
  color: #fff;
  padding: 10px 20px;
  border-radius: 50px;
  transition: background-color 0.3s ease;
}

.contact_box a:hover {
  background-color: #5e29a0;
}

.contact_box a:focus {
  outline: none;
}

/* Адаптивность */
@media (min-width: 768px) {
  .contact_box {
    margin-bottom: 0;
  }
}

/* Стиль для футера */
.mobile-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(135deg, #6a1b9a, #ab47bc);
  /* Плавный переход от фиолетового к розовому */
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 12px;
  box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  transition: transform 0.3s;
  /* Плавное скрытие */
}

/* Скрытый футер */
.mobile-footer.hidden {
  transform: translateY(100%);
  /* Переместить футер ниже видимой области */
}

/* Стиль для иконок соцсетей и кнопки скролла */
.social-icon {
  margin: 0 12px;
  /* Расстояние между иконками */
  color: #ffffff;
  /* Цвет иконок по умолчанию */
  font-size: 36px;
  /* Размер иконок */
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  /* Ширина иконок */
  height: 40px;
  /* Высота иконок */
  transition: color 0.3s, background-color 0.3s;
  text-align: center;
  /* Выровнять иконки по центру */

}

/* Иконка домика */
.social-icon.home {
  color: white;
  /* Мягкий оранжевый цвет иконки домика по умолчанию */
}

.social-icon.home:hover {
  color: #ff8f00;
  /* Более темный оранжевый при наведении */
  background: rgba(255, 255, 255, 0.3);
  /* Легкий фон при наведении */
}

/* Иконка Telegram */
.social-icon.telegram {
  color: white;
  /* Мягкий голубой цвет иконки Telegram по умолчанию */
}

.social-icon.telegram:hover {
  color: #42a5f5;
  /* Более насыщенный голубой при наведении */
  background: rgba(255, 255, 255, 0.3);
  /* Легкий фон при наведении */
}

/* Иконка Viber */
.social-icon.viber {
  color: white;
  /* Мягкий фиолетовый цвет иконки Viber по умолчанию */
}

.social-icon.viber:hover {
  color: #ab47bc;
  /* Более насыщенный фиолетовый при наведении */
  background: rgba(255, 255, 255, 0.3);
  /* Легкий фон при наведении */
}

/* Кнопка скролла вверх */
.social-icon.scroll-to-top {
  color: white;
  /* Цвет кнопки скролла вверх по умолчанию */
  opacity: 0;
  /* Начальная непрозрачность для скрытия */
  visibility: hidden;
  /* Начальная невидимость */
  transition: opacity 0.3s, visibility 0.3s;
}

.social-icon.scroll-to-top.show {
  opacity: 1;
  /* Полная непрозрачность для видимости */
  visibility: visible;
  /* Видимость элемента */
}

/* Скрываем футер на больших экранах */
@media (min-width: 768px) {
  .mobile-footer {
    display: none;
  }
}