.poppins-regular {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.poppins-bold {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
}


html{
  box-sizing: border-box;
  scroll-behavior: smooth;
}

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

a{
  color: inherit;
  text-decoration: none;
}
a:hover{
  color: #fff;
  transition: 0.45s;
}

li{
  list-style: none;
}

.container{
  max-width: 1200px;
  padding: 0 10px;
  margin: 0 auto;
}

img{
  max-width: 100%;
}

body{
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
  color: #1B1B1B;
  overflow-x: hidden;
}

:root {
  --main-color: #ffc527;
  --accent-color: #f85310;
}

/* ==================== top-header ==================== */
.top-header{
  background-color: black;
  display: grid;
  align-items: center;
  width: 100%;
  min-height: 45px;
  height: auto;
  position: relative;
  z-index: 5;
}

.top-header__inner{
  display: flex;
  justify-content: space-between;
}

.top-header__location{
  display: flex;
  align-items: center;
  gap: 10px;
}

.top-header__items{
  display: flex;
  gap: 20px;
}

.top-header__item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.top-header__item span{
  color: var(--accent-color);
}

.fa.fa-map-marker, .fa.fa-calendar, .fa.fa-wrench, .fa.fa-fire{
  color: #fff;
}

.fa-fire:before {
  content: "\f06d";
  color: var(--accent-color);
}

.top-header__location-link{
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  text-transform: uppercase;
  color: var(--main-color);
}

.top-header__location-link:hover{
  color: #fff;
}

#order {
  position: relative;
  top: -240px;
}

.top-header__bottom-box{
  display: flex;
  width: 100%;
  height: auto;
  background-color: #fff;
}

.top-header__bottom-items span{
  background-color: var(--accent-color);
  padding: 0 10px;
  color: #fff;
}

.top-header__bottom-items p{
  display: block;
  position: absolute;
  margin-top: -40px;
}

.top-header__bottom-inner{
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-header__bottom-logo-img{
  min-width: 100px;
  width: 200px;
  height: auto;
}

@media (max-width: 1025px){
  .top-header__bottom-logo-img{
    display: none;
  }
  .top-header__bottom-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
  }
  .top-header__location {
    display: none;
  }
  .top-header__items {
    display: flex;
    gap: 20px;
    margin: 0 auto;
  }
}

@media (max-width: 811px){
  .top-header__bottom-box {
    display: none;
  }
}

@media (max-width: 320px){
  .top-header__location-link {
    font-size: 13px;
  }
}

@media (max-width: 960px){
  .header {
    display: flex;
    background-color: var(--main-color);
    padding: 20px;
    width: 100%!important;
    margin: 0 auto;
    margin-top: 0!important;
    z-index: 9999;
    position: relative;
  }
  .top-header__items {
    display: grid;
    gap: 20px;
    margin: 0 auto;
    grid-template-columns: 1fr;
    justify-items: center;
    padding: 10px;
  }
}

.top-header__bottom-items{
  display: flex;
  gap: 50px;
}

.top-header__bottom-item {
  display: flex;
  align-items: center;
  gap: 20px;
}

.fa.fa-clock-o, 
.fa.fa-phone, 
.fa.fa-envelope-o {
  background-color: var(--main-color);
  padding: 10px;
  font-size: 30px;
  width: 50px;
  height: 50px;
  align-items: center;
  justify-content: center;
  display: flex;
}

.top-header__bottom-subtitle{
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  text-transform: uppercase;
}

.top-header__bottom-text{
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: rgb(138, 138, 138);
}

.top-header__bottom-text a:hover{
  color: var(--accent-color);
}

.header{
  display: flex;
  background-color: var(--main-color);
  padding: 20px;
  width: 100%;
  margin: 0 auto;
  margin-top: -40px;
  z-index: 999;
  position: relative;
}

.header.scrolled {
  position: fixed;
  background-color: var(--main-color);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.7s;
  left: 0;
  right: 0;
  width: 100%;
  top: 0;
  margin: 0;
  z-index: 9;
}

.header.scrolled .menu__list {
  color: black;
}

.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.menu__list{
  display: flex;
  gap: 30px;
}

.menu__link {
  font-family: "Poppins", sans-serif;
  font-size: 17px;
}

.header-btn {
  font-family: "Poppins", sans-serif;
  background-color: var(--accent-color);
  padding: 10px;
  text-transform: uppercase;
  font-size: 13px;
  color: #fff;
  transition: background-color 0.3s ease;
}

.header-btn:hover {
  background-color: #000000;
  color: #fff;
  padding: 10px;
  text-transform: uppercase;
  font-size: 13px;
}

@media (max-width: 919px){
  .header.scrolled {
    position: fixed;
    background-color: #ffc527;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.7s;
    left: 0;
    right: 0;
    width: 100%;
    top: 0;
    margin: 0;
    z-index: 9;
  }
}

@media (max-width: 320px){
  .header-btn {
    font-size: 11px;
  }
}

/* ==================== бургер меню ==================== */
.open{
  display: flex!important;
}
.burger {
  display: none;
  position: relative;
  z-index: 50;
  align-items: center;
  justify-content: start;
  width: 30px;
  height: 18px;
}
.burger span {
  height: 2px;
  width: 80%;
  transform: scale(1);
  background-color: #fff;
}
.header.scrolled .burger span {
  background-color: #000;
}
.burger .scrolled span {
  height: 2px;
  width: 80%;
  transform: scale(1);
  background-color: #000;
}
.burger::before, .burger::after{
  content: '';
  position: absolute;
  height: 2px;
  width: 100%;
  background-color: #000;
  transition: all 0.3s ease 0s;
}
.burger::before{
  top: 0;
}
.burger::after{
  bottom: 0;
}
.burger.active span{
  transform: scale(0);
}
.burger.active::before{
  top: 50%;
  transform: rotate(-45deg) translate(0, -50%);
}
.burger.active::after{
  bottom: 50%;
  transform: rotate(45deg) translate(0, 50%);
}
@media (min-width: 1098px){
  .burger-name{
    position: relative;
    margin-left: -20px;
    font-size: 24px;
    display: none;
  }
}

@media (max-width: 1098px) {
  .burger {
    display: flex;
    cursor: pointer;
  }
  .logo__img-menu{
    width: 150px;
    position: absolute;
    top: 0;
    margin-top: 20px;
  }
  .menu {
    display: none;
    position: fixed;
    height: 100%;
    width: 100%;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 50;
    animation: burgerAnimation 0.4s;
    background-color: #fff;
  }
  .menu ul {
    flex-direction: column;
    row-gap: 30px;
  }
  .menu__list {
    font-family: "Roboto", sans-serif;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    margin-left: 30px;
    }
  .menu__link {
    font-family: "Poppins", sans-serif;
    color: #000000;
    font-size: 20px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    transition: color 0.24s ease 0s;
    letter-spacing: 0.1em;
    line-height: 10px;
  }
  .menu__link::after {
    content: '';
    position: absolute;
    left: -5%;
    bottom: 20px; 
    height: 1px; 
    width: 110%;
    background-color: #ffff;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.24s ease-in-out;
  }
  .menu__link:hover::after {
    transform: scaleX(1);
  }
  .translator {
    display: flex;
    justify-content: space-between;
    text-align: center;
    align-items: center;
    gap: 20px;
    color: var(--main-color);
    margin-top: -180px;
    margin-bottom: 30px;
  }
  .burger__items {
    display: flex;
    align-items: center;
    gap: 30px;
  }
  .burger-name{
    position: relative;
    margin-left: -23px;
    font-size: 21px;
    top: 10px;
  }
}

@media (max-width: 1098px){
  .dropdown-center {
    position: absolute;
    right: 0;
    margin-right: 70px;
  }
}

@keyframes burgerAnimation{
  from {opacity: 0;}
  to {opacity: 1;}
}

/* ==================== bg ==================== */
.bg{
  background-image: url(/img/slider2.jpg);
  background-repeat: no-repeat;
  background-position: center bottom;
  width: 100%;
  height: 700px;
  margin-top: -30px;
}

.bg__items {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  margin-top: 350px;
  position: absolute;
  right: 0;
  margin-right: 250px;
}

.bg__title {
  font-family: "Poppins", sans-serif;
  text-align: end;
  font-size: 40px;
  font-weight: 700;
  width: 600px;
  margin-bottom: 50px;
  z-index: 1;
  position: relative;
}

.bg__short-line {
  width: 60%;
  height: 20px;
  background-color: var(--accent-color);
  right: 0;
  position: absolute;
  margin-top: -70px;
}

.bg__btn {
  font-family: "Poppins", sans-serif;
  background-color: #000;
  color: #fff;
  padding: 10px 20px;
  text-transform: uppercase;
  box-shadow: 0px 0px 20px 0px #ffc527;
  border-radius: 20px;
  border: none;
  transition: background-color 0.3s ease;
}

.bg__btn:hover{
  background-color: var(--main-color);
  color: #000;
  transition: background-color 0.3s ease;
}

@media (max-width: 919px){
  .bg__title {
    text-align: end;
    font-size: 40px;
    width: 400px;
    margin-bottom: 50px;
  }
  .bg__short-line {
    width: 90%;
    height: 20px;
    background-color: var(--accent-color);
    right: 0;
    position: absolute;
    margin-top: -70px;
  }
  .bg__items {
    margin-top: 300px;
    margin-right: 20px;
  }
}

@media (max-width: 786px){
  .bg__title {
    text-align: end;
    font-size: 35px;
    width: 343px;
    margin-bottom: 50px;
  }
  .bg__items {
    margin-top: 300px;
    margin-right: 20px;
  }
}

@media (max-width: 478px){
  .bg__title {

  }
  .bg__short-line {
    width: 92%;
    height: 20px;
    background-color: var(--accent-color);
    right: 0;
    position: absolute;
    margin-top: -70px;
  }
  .bg::before {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 600px;
    background-color: #ffffffc2;
  }
  .bg__items {
    margin-top: 300px;
    margin-right: 20px;
  }
}

@media (max-width: 320px){
  .bg__title {
    font-size: 20px;
  }
  .bg__short-line {
    width: 55%;
    height: 10px;
    background-color: var(--accent-color);
    right: 0;
    position: absolute;
    margin-top: -60px;
  }
}

/* ==================== connection ==================== */
.connection{
  background-image: url('/img/intro-section-pattern.png');
  background-position: center;
  width: 100%;
  height: 800px;
  margin-bottom: 50px;
}

.connection::before {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 800px;
  background-color: var(--main-color);
  z-index: -1;
}

.connection__title{
  font-family: "Poppins", sans-serif;
  font-size: 50px;
  font-weight: 700;
  text-align: center;
  top: 50px;
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  margin-bottom: 100px;
}

.connection__title span {
  display: inline-block;
  position: relative;
  color: #fff;
  font-weight: 700;
}

.connection__img {
  margin: 0 auto;
  display: block;
  margin-bottom: 50px;
  width: 150px;
}

.connection__btn {
  font-family: "Poppins", sans-serif;
  text-align: center;
  margin: 0 auto;
  font-size: 100px;
  font-weight: 700;
  display: block;
  margin-bottom: 20px;
}

.connection__subtitle {
  font-family: "Poppins", sans-serif;
  text-align: center;
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 50px;
}

.connection__social{
  display: flex;
}

.connection__social {
  display: flex;
  justify-content: center;
  gap: 30px;
}

.connection__social-img{
  width: 50px;
}

@media (max-width: 919px){
  .connection__btn {
    font-size: 80px;
 }
}

@media (max-width: 478px){
  .connection {
    background-image: url(/img/intro-section-pattern.png);
    background-position: center;
    width: 100%;
    height: 650px;
  }
  .connection::before {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 650px;
    background-color: #ffc527;
    z-index: -1;
  }
  .connection__title {
    font-size: 30px;
  }
  .connection__btn {
    font-size: 35px;
  }
  .connection__subtitle {
    font-size: 25px;
  }
  .connection__img {
    width: 80px;
  }
}

@media (max-width: 320px){
  .connection__btn {
    font-size: 30px;
  }
  .connection__subtitle {
    font-size: 21px;
  }
}

/* ==================== services ==================== */
#services {
  position: relative;
  top: -140px;
}

.services{
  margin-bottom: 50px;
}

.services__item-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.services__item-logo {
  position: absolute;
  width: 100px;
  min-width: 100px;
}

.services__img{
  position: relative;
  margin: 0 auto;
  display: block;
  top: 10px;
  background-color: #ffffff;
  z-index: 1;
  padding: 0 10px;
}

.services__title{
  font-family: "Poppins", sans-serif;
  font-size: 50px;
  font-weight: 700;
  text-align: center;
  padding: 20px;
  border: 1px solid var(--main-color);
  display: inline-block;
  left: 50%;
  transform: translate(-50%, -50%);
  position: relative;
  margin-top: 50px;
  text-transform: uppercase;
}

.services__subtitle{
  text-align: center;
  background-color: #fff;
  margin: 0 auto;
  top: -72px;
  position: relative;
  padding: 0 10px;
  color: var(--accent-color);
  width: fit-content;
  letter-spacing: .1em;
}

.services__text-title{
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  margin-top: -30px;
  color: #8a8a8a;
  margin-bottom: 100px;
}

.services__items{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}

.services__item {
  display: flex;
  flex-direction: column;
  justify-content: space-between; 
  height: 100%; 
  box-shadow: 0px -1px 40px 0px rgb(220, 218, 218);
}

.services__item-title {
  font-family: "Poppins", sans-serif;
  background-color: var(--accent-color);
  color: #fff;
  font-size: 23px;
  padding: 15px;
  top: -6px;
  position: relative;
  margin-bottom: 15px;
  letter-spacing: .1em;
  text-align: center;
}

.services__item-text {
  font-family: "Poppins", sans-serif;
  position: relative;
  margin-bottom: 20px;
  line-height: 35px;
  padding: 0 20px;
  height: 100%;
}

.fa-plus:before {
  color: var(--main-color);
  right: 10px;
  position: relative;
}

.services__btn{
  display: flex;
  justify-content: space-evenly;
  margin-top: -30px;
}

.services__item-btn{
  background-color: #000000;
  color: #fff;
  padding: 10px 12px;
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
  font-size: 12px;
  gap: 5px;
  display: flex;
  margin-bottom: 10px;
  border: none;
  align-items: baseline;
  transition: background-color 0.3s ease;
}

.services__item-btn:hover{
  background-color: var(--main-color);
  color: #000;
  padding: 10px 12px;
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
  font-size: 12px;
  transition: background-color 0.3s ease;
}

.services__item-btn-orange{
  background-color: var(--main-color);
  color: #000;
  transition: background-color 0.3s ease;
}

.services__item-btn-orange:hover{
  background-color: #000;
  color: #fff;
  transition: background-color 0.3s ease;
}

@media (max-width: 919px){
  .services__items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .services__text-title {
    margin-bottom: 50px;
  }
}

@media (max-width: 478px){
  .services__items {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .services__img {
    top: 18px;
  }
  .services__title {
    font-size: 35px;
  }
  .services__subtitle {
    top: -63px;
  }
  .services__text-title {
    margin-bottom: 50px;
  }
  .services__item-btn{
    gap: 5px;
  }
}

@media (max-width: 344px){
  .services__btn {
    display: flex;
    margin-top: -30px;
    flex-direction: column;
    text-align: center;
  }
  .services__item-btn {
    gap: 5px;
    text-align: center;
    justify-content: center;
  }
}

@media (max-width: 320px){
  .services__title {
    font-size: 33px;
  }
}

/* ==================== indicator ==================== */
#indicator {
  position: relative;
  top: -100px;
}

.indicator{
  margin-bottom: 50px;
  background-color: #000;
  width: 100%;
  height: auto;
  padding: 50px 0 200px;
}

.indicator__img{
  position: relative;
  margin: 0 auto;
  display: block;
  top: 10px;
  background-color: #000;
  z-index: 1;
  padding: 0 10px;
}

.indicator__title{
  font-family: "Poppins", sans-serif;
  font-size: 50px;
  font-weight: 700;
  text-align: center;
  padding: 20px;
  border: 1px solid var(--main-color);
  display: inline-block;
  left: 50%;
  transform: translate(-50%, -50%);
  position: relative;
  margin-top: 50px;
  text-transform: uppercase;
  color: #fff;
}

.indicator__subtitle{
  text-align: center;
  background-color: #000;
  margin: 0 auto;
  top: -72px;
  position: relative;
  padding: 0 10px;
  color: #fff;
  width: fit-content;
  letter-spacing: .1em;
}

.indicator__text-title{
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  margin-top: -30px;
  color: #fff;
  margin-bottom: 100px;
}

.clients__counter-item{
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  justify-items: center;
}

.clients__result-item{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.clients__item-icons {
  width: 50px;
  height: auto;
  margin-bottom: 10px;
}

.clients__item-numbers {
  font-family: "Poppins", sans-serif;
  font-size: 40px;
  font-weight: 500;
  color: #fff;
}

.clients__item-text {
  font-family: "Poppins", sans-serif;
  text-align: center;
  font-size: 15px;
  color: #fff;
  border-left: 1px solid var(--accent-color);
  border-right: 1px solid var(--accent-color);
  max-width: 180px;
}

@media (max-width: 988px){
  .clients__counter-item{
    display: grid;
    gap: 50px 0;
    grid-template-columns: 1fr 1fr 1fr;
    justify-items: center;
  }
  .clients__item-text{
    border: none;
  }
}

@media (max-width: 478px){
  .clients__counter-item{
    display: grid;
    gap: 50px;
    grid-template-columns: 1fr;
    justify-items: center;
  }
  .indicator__title {
    font-size: 24px;
  }
  .indicator__subtitle {
    top: -57px;
  }
  .indicator__img {
    top: 24px;
  }
  .indicator {
    padding: 20px 0 150px;
  }
}

@media (max-width: 344px){
  .indicator__title {
    font-size: 22px;
  }
}

@media (max-width: 320px){
  .indicator__title {
    font-size: 20px;
  }
}


/* ==================== order ==================== */
#order {
  position: relative;
  top: -250px;
}

.order {
  margin-bottom: 100px;
}

.tabs {
  display: flex;
  margin-top: -100px;
  justify-content: center;
  gap: 10px;
}

.tab-link {
  font-family: "Poppins", sans-serif;
  background-color: var(--main-color);
  color: #000;
  width: 20%;
  height: 50px;
  border: none;
}

.tab-link.active {
  font-family: "Poppins", sans-serif;
  background-color: #ffffff;
  color: var(--accent-color);
  height: 50px;
  width: 20%;
}

.tab-content {
  display: none;
  margin-top: -1px;
}

.tab-content.active {
  display: block;
}

.tab-content__items {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.tab-content__img{
  position: relative;
  margin: 0 auto;
  display: block;
  top: 60px;
  right: 230px;
  background-color: #ffffff;
  z-index: 1;
  padding: 0 10px;
}

.tab-content__title {
  font-family: "Poppins", sans-serif;
  font-size: 40px;
  font-weight: 700;
  text-align: center;
  padding: 20px;
  border: 1px solid var(--main-color);
  display: inline-block;
  position: relative;
  margin-top: 50px;
  text-transform: uppercase;
}

.tab-content__subtitle {
  text-align: center;
  background-color: #fff;
  margin: 0 auto;
  top: -22px;
  right: 180px;
  position: relative;
  padding: 0 10px;
  color: var(--accent-color);
  width: fit-content;
  letter-spacing: .1em;
}

.tab-content__text-title {
  text-align: start;
  max-width: 600px;
  margin: 0 auto;
  margin-top: 20px;
  color: #8a8a8a;
  margin-bottom: 50px;
}

.servicesForm {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 20px;
}

.servicesgradeForm{
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 20px;
}

input[type="text"], input[type="email"], input[type="tel"], select, input[type="date"] {
  padding: 10px;
  border: 1px solid #e7e7e7;
  font-size: 16px;
  font-weight: 100;
  width: 100%;
  height: 41px;
  color: #000;
  background-color: transparent;
  margin-bottom: 20px;
}

input:focus {
  outline: none; 
  border: 1px solid #ffc527;
}

textarea{
  border: 1px solid #e7e7e7;
}

textarea.wpcf7-form-control.wpcf7-textarea.wpcf7-validates-as-required.servicesForm {
    width: 100%;
    height: 70px;
    padding: 10px;
    font-weight: 100;
}

.gradeForm{
  padding: 30px 5px;
}

textarea:focus {
  outline: none; 
  border: 1px solid #ffc527;
}

select:focus {
  outline: none; 
  border: 1px solid #ffc527;
}

.servicegradeForm::placeholder{
  color: #000;
  padding: 0 10px;
  margin-top: 10px;
  position: absolute;
}

.gradeForm::placeholder {
  color: #000;
  padding: 10px;
  margin-top: -25px;
  position: absolute;
}

input::placeholder {
  color: #000;
}

.form-btn {
  border: none;
  padding: 10px;
  background-color: var(--main-color);
  text-transform: uppercase;
  font-size: 21px;
  -webkit-box-shadow: 0 10px 20px 0 #c4c4c4;
  width: 100%;
}

.form-btn:hover {
  border: none;
  padding: 10px;
  background-color: #000;
  color: #fff;
  -webkit-box-shadow: 0 10px 20px 0 #c4c4c4;
  width: 100%;
}

.tab-content-services__img {
  width: 100%;
  height: 500px;
  object-fit: contain;
}

@media (max-width: 1119px){
  .tab-content__items {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: space-between;
    gap: 50px;
  }
  .tab-link.active, .tab-link  {
    width: 25%;
  }
  .tab-content__items-img {
    display: flex;
    flex-direction: column-reverse;
  }
}

@media (max-width: 478px){
  .order {
    margin-bottom: 0;
  }
  .tab-link.active, .tab-link {
    width: 50%;
    font-size: 15px;
  }
  .tab-content__title {
    font-size: 23px;
  }
  .tab-content__subtitle {
    right: 70px;
  }
  .tab-content__img {
    right: 130px;
  }
  .tab-content__items-img {
    display: flex;
    flex-direction: column-reverse;
  }
  .tab-content__img {
    right: 140px;
  }
}

@media (max-width: 344px){
  .tab-link.active, .tab-link {
    width: 50%;
    font-size: 14px;
  }
  .tab-content__title {
    font-size: 22px;
  }
  .tab-content__img {
    right: 130px;
  }
}

@media (max-width: 320px){
  .tab-link.active, .tab-link {
    font-size: 13px;
  }
  .tab-content__title {
    font-size: 20px;
  }
}


/* ==================== reviews ==================== */
#reviews {
  position: relative;
  top: -90px;
}

.reviews{
  background-color: #000;
  height: auto;
  margin-bottom: 50px;
  padding: 50px 0 100px;
}

.reviews__img{
  position: relative;
  margin: 0 auto;
  display: block;
  top: 10px;
  background-color: #000;
  z-index: 1;
  padding: 0 10px;
}

.reviews__title{
  font-family: "Poppins", sans-serif;
  font-size: 50px;
  font-weight: 700;
  text-align: center;
  padding: 20px;
  border: 1px solid var(--main-color);
  display: inline-block;
  left: 50%;
  transform: translate(-50%, -50%);
  position: relative;
  margin-top: 50px;
  text-transform: uppercase;
  color: #fff;
}

.reviews__subtitle{
  font-family: "Poppins", sans-serif;
  text-align: center;
  background-color: #000;
  margin: 0 auto;
  top: -72px;
  position: relative;
  padding: 0 10px;
  color: #fff;
  width: fit-content;
  letter-spacing: .1em;
}

.reviews__text-title{
  font-family: "Poppins", sans-serif;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  margin-top: -30px;
  color: #fff;
}

.reviews__item-img {
  display: flex;
  justify-content: space-between;
}

.swiper-wrapper__one {
  width: 150px;
}

.swiper {
  width: 100%;
  height: 300px;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide__name {
  font-size: 23px;
  font-weight: 700;
  margin-top: 30px;
  position: absolute;
  top: 0;
  color: #000;
}

.swiper-slide img {
  display: block;
  object-fit: cover;
  position: absolute;
  top: 0;
  margin-top: 80px;
}

.swiper-slide__text {
  font-family: "Poppins", sans-serif;
  max-width: 800px;
  color: #000;
  margin-top: 60px;
  padding: 30px;
  font-size: 16px;
}

.swiper-pagination-vertical.swiper-pagination-bullets, .swiper-vertical>.swiper-pagination-bullets {
  top: 50%;
  transform: translate3d(0px, -50%, 0);
  display: flex;
  flex-direction: column;
}

.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: #f8f9fa;
}

.swiper-pagination-bullet {
  background: var(--accent-color);
}


@media (max-width: 478px){
  .reviews__img {
    top: 18px;
  }
  .reviews__title {
    font-size: 35px;
  }
  .reviews__subtitle {
    top: -63px;
  }
  .reviews__text-title {
    margin-bottom: 100px;
  }
  .swiper-wrapper__one {
    width: 100px;
  }
  .swiper-slide__text {
    font-size: 14px;
  }
}

/* ==================== work-process ==================== */
#work-process {
  position: relative;
  top: -130px;
}

.work-process{
  margin-bottom: 50px;
}

.work-process__img{
  position: relative;
  margin: 0 auto;
  display: block;
  top: 10px;
  background-color: #ffffff;
  z-index: 1;
  padding: 0 10px;
}

.work-process__title{
  font-family: "Poppins", sans-serif;
  font-size: 50px;
  font-weight: 700;
  text-align: center;
  padding: 20px;
  border: 1px solid var(--main-color);
  display: inline-block;
  left: 50%;
  transform: translate(-50%, -50%);
  position: relative;
  margin-top: 50px;
  text-transform: uppercase;
}

.work-process__subtitle{
  text-align: center;
  background-color: #fff;
  margin: 0 auto;
  top: -72px;
  position: relative;
  padding: 0 10px;
  color: var(--accent-color);
  width: fit-content;
  letter-spacing: .1em;
}

.work-process__text-title{
  text-align: center;
  max-width: 750px;
  margin: 0 auto;
  margin-top: -30px;
  color: #8a8a8a;
  margin-bottom: 100px;
}

.work-process__items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.work-process__item {
  text-align: center;
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  align-items: center;
}


.work-process__icons {
  width: 50px;
  height: auto;
  z-index: 1;
}

.work-process__item-subtitle {
  font-family: "Poppins", sans-serif;
  font-size: 21px;
  font-weight: 700;
  margin-bottom: 20px;
}

.work-process__text {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 100;
  max-width: 250px;
}

.circle-white__four, 
.circle-white__three, 
.circle-white__two, 
.circle-white__one {
  width: 130px;
  height: 130px;
  background-color: var(--main-color);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  text-align: center;
  display: flex;
  margin-bottom: 30px;
  transition: all 0.3s;
}

.circle-white__two:hover,
.circle-white__one:hover {
  width: 130px;
  height: 130px;
  background-color: #d84306;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  text-align: center;
  display: flex;
  margin-bottom: 30px;
  transition: all 0.5s;
  border: 4px solid #d84306;
}

.circle-white__three:hover{
  width: 130px;
  height: 130px;
  background-color: #fff;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  text-align: center;
  display: flex;
  margin-bottom: 30px;
  transition: all 0.5s;
  border: 4px solid var(--accent-color);
}

.circle-white__four:hover{
  width: 130px;
  height: 130px;
  background-color: var(--accent-color);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  text-align: center;
  display: flex;
  margin-bottom: 30px;
  transition: all 0.5s;
  border: 4px solid var(--accent-color);
}

.circle-white__one {
  position: relative;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background-color: var(--main-color);
  overflow: hidden;
  border: 4px solid #ffc527;
}

.circle-white__one::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  clip: rect(0px, 130px, 130px, 60px);
  transform: rotate(270deg); 
  transform-origin: 50% 100%; 
  transition: all 0.5s;
  margin-top: -61px;
  margin-left: 5px;
}

.circle-white__one:hover:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--accent-color);
  clip: rect(0px, 130px, 130px, 60px); 
  transform: rotate(270deg);
  transform-origin: 50% 100%; 
  transition: all 0.5s;
  margin-top: -61px;
  margin-left: 5px;
}

.circle-white__two {
  position: relative;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background-color: var(--main-color);
  overflow: hidden;
  border: 4px solid #ffc527;
}

.circle-white__two::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  clip: rect(0px, 130px, 130px, 60px);
  transform: rotate(-90deg);
  transform-origin: 50%;
  transition: all 0.5s;
}

.circle-white__two:hover:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--accent-color);
  clip: rect(0px, 130px, 130px, 60px);
  transform: rotate(-90deg);
  transform-origin: 50%;
  transition: all 0.5s;
}

.circle-white__three {
  position: relative;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background-color: #fff;
  overflow: hidden;
  border: 4px solid #ffc527;
}

.circle-white__three:hover {
  position: relative;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background-color: #d84306;
  overflow: hidden;
  border: 4px solid #d84306;
}

.circle-white__three::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--main-color);
  clip: rect(0px, 120px, 120px, 60px); /* Скрыть половину круга */
  transform: rotate(270deg); /* Повернуть на 75% */
  transform-origin: 50% 100%; /* Точка вращения */
  transition: all 0.5s;
}

.circle-white__three:hover:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--accent-color);
  clip: rect(0px, 120px, 120px, 60px); /* Скрыть половину круга */
  transform: rotate(270deg); /* Повернуть на 75% */
  transform-origin: 50% 100%; /* Точка вращения */
  transition: all 0.5s;
}

.circle-white__four {
  position: relative;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background-color: #fff;
  overflow: hidden;
  border: 4px solid #ffc527;
}

@media (max-width: 960px){
  .work-process__items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
  }
}

@media (max-width: 478px){
  .work-process__items {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 50px;
  }
  .work-process__title {
    font-size: 35px;
  }
  .work-process__img {
    top: 18px;
  }
  .work-process__subtitle {
    top: -63px;
  }
}

@media (max-width: 320px){
  .work-process__title {
    font-size: 32px;
  }
  .work-process__subtitle {
    top: -54px;
    font-size: 14px;
  }
}

/* ==================== gallery ==================== */
#gallery {
  position: relative;
  top: -95px;
}

.gallery{
  padding: 50px 0 100px;
  background-color: #000;
}

.gallery__img{
  position: relative;
  margin: 0 auto;
  display: block;
  top: 10px;
  background-color: #000;
  z-index: 1;
  padding: 0 10px;
}

.gallery__title{
  font-family: "Poppins", sans-serif;
  font-size: 50px;
  font-weight: 700;
  text-align: center;
  padding: 20px;
  border: 1px solid var(--main-color);
  display: inline-block;
  left: 50%;
  transform: translate(-50%, -50%);
  position: relative;
  margin-top: 50px;
  text-transform: uppercase;
  color: #fff;
}

.gallery__subtitle{
  font-family: "Poppins", sans-serif;
  text-align: center;
  background-color: #000;
  margin: 0 auto;
  top: -72px;
  position: relative;
  padding: 0 10px;
  color: #fff;
  width: fit-content;
  letter-spacing: .1em;
}

.gallery__text-title{
  font-family: "Poppins", sans-serif;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  margin-top: -30px;
  margin-bottom: 100px;
  color: #fff;
}

.swiper2 {
  width: 100%;
  height: 100%;
}

.swiper-slide2 {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide__two img{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin: 0px;
}

.swiper2 {
  margin-left: auto;
  margin-right: auto;
}

.swiper-button-next:after, 
.swiper-button-prev:after{
  content: none;
}

.container-arrow {
  position: relative;
  padding: 0;
  max-width: 1200px;
}

.about__arrow {
  margin-top: 60px;
}

.fa-long-arrow-right:before {
  content: "\f178";
  color: #fff;
  background-color: var(--main-color);
  padding: 15px;
  display: inline-block; 
  -webkit-transform: perspective(200px) rotateY(-45deg) rotateX(0deg) rotateZ(0deg) translateZ(0px) scaleX(1.2);
  transition: all 0.5s;
}


.fa-long-arrow-left:before {
  content: "\f177";
  color: #fff;
  background-color: var(--main-color);
  padding: 15px;
  display: inline-block;
  -webkit-transform: perspective(200px) rotateY(45deg) rotateX(0deg) rotateZ(0deg) translateZ(0px) scaleX(1.2);
  transition: all 0.5s;
}

.fa-long-arrow-right:hover:before {
  content: "\f178";
  color: #000;
  background-color: #fff;
  padding: 15px;
  -webkit-transform: perspective(200px) rotateY(0deg) rotateX(0deg) rotateZ(0deg) translateZ(0px) scaleX(1.2);
  transition: all 0.5s;
}

.fa-long-arrow-left:hover:before{
  content: "\f177";
  color: #000;
  background-color: #fff;
  padding: 15px;
  -webkit-transform: perspective(200px) rotateY(-0deg) rotateX(0deg) rotateZ(0deg) translateZ(0px) scaleX(1.2);
  transition: all 0.5s;
}

.swiper-button-next {
  left: 75px;
  right: auto;
  z-index: 0;
}

.swiper-button-prev{
  z-index: 0;
}

@media (max-width: 478px){
  .gallery__title {
    font-size: 40px;
  }
  .gallery__img {
    top: 15px;
  }
  .gallery__subtitle {
    top: -66px;
  }
}

@media (max-width: 344px){
  .gallery__title {
    font-size: 37px;
  }
}

@media (max-width: 320px){
  .gallery__title {
    font-size: 36px;
  }
}
/* ==================== faq ==================== */
#faq {
  position: relative;
  top: -95px;
}

.faq{
  padding: 50px 0 100px;
}

.faq__img{
  position: relative;
  margin: 0 auto;
  display: block;
  top: 10px;
  background-color: #fff;
  z-index: 1;
  padding: 0 10px;
}

.faq__title{
  font-family: "Poppins", sans-serif;
  font-size: 50px;
  font-weight: 700;
  text-align: center;
  padding: 20px;
  border: 1px solid var(--main-color);
  display: inline-block;
  left: 50%;
  transform: translate(-50%, -50%);
  position: relative;
  margin-top: 50px;
  text-transform: uppercase;
  color: #000;
}

.faq__subtitle{
  font-family: "Poppins", sans-serif;
  text-align: center;
  background-color: #fff;
  margin: 0 auto;
  top: -72px;
  position: relative;
  padding: 0 10px;
  color: var(--accent-color);
  width: fit-content;
  letter-spacing: .1em;
}

.faq__text-title{
  font-family: "Poppins", sans-serif;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  margin-top: -30px;
  color: #8a8a8a;
}

.faq__item-img {
  display: flex;
  justify-content: space-around;
  margin-bottom: -40px;
  position: relative;
}

.faq__one{
  width: 150px;
  height: 150px;
  margin-top: 30px;
}

.faq__two{
  width: 150px;
  height: 150px;
  margin-bottom: 30px;
}

#accordionPanelsStayOpenExample {
  max-width: 800px;
  display: block;
  margin: 0 auto;
}

.accordion-button:not(.collapsed) {
  color: #fff;
  background-color: var(--accent-color);
  box-shadow: inset 0 calc(-1* var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color);
}

.accordion-button:focus {
  z-index: 3;
  outline: 0;
  box-shadow: var(--main-color);
}

.faq__text{
  font-family: "Poppins", sans-serif;
  text-align: center;
  margin-top: 10px;
  color: #8a8a8a;
  font-size: 14px;
}

.faq__text a:hover{
  color: var(--accent-color)
}

@media (max-width: 919px){
  .faq__item-img {
    display: flex;
    justify-content: space-between;
    margin-bottom: -40px;
    position: relative;
  }
}

@media (max-width: 478px){
  .faq__one{
    width: 100px;
    height: 100px;
    margin-top: 30px;
  }
  .faq__two{
    width: 80px;
    height: 80px;
    margin-top: 30px;
  }
  .faq__item-img {
    display: flex;
    justify-content: space-between;
    margin-bottom: -35px;
    position: relative;
  }
  .faq__title {
    font-size: 35px;
  }
  .faq__img {
    top: 18px;
  }
  .faq__subtitle {
    top: -63px;
  }
}

@media (max-width: 344px){
  .faq__title {
    font-size: 34px;
  }
}

@media (max-width: 320px){
  .faq__title {
    font-size: 31px;
  }
  .faq__subtitle {
    top: -52px;
    font-size: 14px;
  }
}
/* ==================== footer ==================== */
footer{
  padding: 50px 0 30px;
  background-color: #000;
}

.footer__items{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-items: center;
  align-items: end;
}

.footer__item-works {
  gap: 30px;
  position: relative;
  display: flex;
  flex-direction: column;
}

.footer__logo {
  min-width: 100px;
  width: 200px;
  height: auto;
}

.footer__text {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  margin-bottom: 30px;
  margin-top: -40px;
  max-width: 350px;
  color: #fff;
}

.footer__text-plas{
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  color: #fff;
}

.menu__list-footer {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.menu__link-footer {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  color: var(--main-color);
}

.footer__item-info {
  display: flex;
  align-items: center;
  gap: 20px;
}

footer .fa.fa-clock-o, footer .fa.fa-phone, footer .fa.fa-envelope-o {
  background-color: var(--main-color);
  padding: 10px;
  font-size: 30px;
  width: 50px;
  height: 50px;
  align-items: center;
  justify-content: center;
  display: flex;
}

.footer-subtitle{
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  color: #fff;
}

.footer-text{
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  color: var(--main-color);
}

.footer__items-bootom-inner{
  display: flex;
  justify-content: center;
  gap: 10px;
}

.footer__items-bottom {
  text-align: center;
  margin-top: 50px;
  color: #fff;
}

.footer__items-bottom span{
  color: var(--main-color)
}

.footer__item-bottom a{
  color: var(--main-color);
}

.footer__item-bottom a:hover{
  color: #fff;
}

@media (min-width: 1024px){
  .footer__items {
    padding: 0 20px;
  }
}

@media (max-width: 919px){
  .footer__items{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-items: center;
    align-items: end;
    gap: 50px 0;
  }
  footer .fa.fa-clock-o, footer .fa.fa-phone, footer .fa.fa-envelope-o {
    background-color: var(--main-color);
    padding: 10px;
    font-size: 25px;
    width: 35px;
    height: 35px;
    align-items: center;
    justify-content: center;
    display: flex;
  }
}

@media (max-width: 478px){
  footer {
    padding: 50px 20px 70px;
    background-color: #000;
  }
  .footer__items{
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    justify-items: start;
    align-items: end;
  }
  .footer__items-bootom-inner {
    display: flex;
    gap: 10px;
    flex-direction: column;
  }
  footer .fa.fa-clock-o, footer .fa.fa-phone, footer .fa.fa-envelope-o {
    background-color: var(--main-color);
    padding: 10px;
    font-size: 20px;
    width: 30px;
    height: 30px;
    align-items: center;
    justify-content: center;
    display: flex;
  }
}

@media (max-width: 320px){
  .footer__text-plas {
    font-size: 15px;
  }
  .footer-text {
    font-size: 15px;
  }
}

/* ==================== quick-actions bottom menu ==================== */
@media (min-width: 768px){
  .quick-actions {
    display: none;
  }
}

@media (max-width: 768px) {
  .quick-actions {
    position: fixed;
    bottom: 0;
    width: 100%;
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }

  .quick-actions.show {
    opacity: 1;
    visibility: visible;
  }
  
  .quick-actions__items {
    display: flex;
    justify-content: center;
    padding: 10px 0;
  }
  
  .fixed-button {
    margin: 0 10px;
    padding: 10px 15px;
    background-color: #000;
    color: var(--accent-color);
    border: none;
    border-radius: 5px;
    font-size: 16px;
    display: flex;
    align-items: center;
    cursor: pointer;
  }
  .quick-actions__items {
    display: flex;
    justify-content: center;
    padding: 10px 0;
    transition: padding 0.3s ease; /* Добавим плавный переход */
  }
  
  .quick-actions__items.open {
    padding: 300px 0; /* Новое значение padding при открытии */
  }
}

/* ==================== scrollImage ==================== */
#scrollImage {
  width: 50px; /* Установите нужную ширину изображения */
  height: auto; /* Автоматическая высота */
  z-index: 1000; /* Чтобы изображение было поверх других элементов */
  cursor: pointer;
  margin-top: 100px;
  margin-right: 20px;
}

/* ==================== Стили для модального окна ==================== */
.modal {
  display: none; 
  position: fixed; 
  left: 0;
  top: 0;
  width: 100%; 
  height: 100%; 
  background-color: rgba(0, 0, 0, 0.9); /* Темный фон */
  justify-content: center;
  align-items: center;
}

.modal-img__order {
  position: absolute;
  top: -130px;
}

.modal-content {
  background-color: #fff;
  padding: 20px;
  border-radius: 0px;
  width: 400px;
  text-align: center;
  margin: 0 10px;
}

.modal-content h2 {
  font-family: "Poppins", sans-serif;
  font-size: 30px;
  font-weight: 700;
  margin-top: 20px;
  margin-bottom: 10px;
}

.modal-content p {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  margin-bottom: 20px;
  font-weight: 100;
}

.close {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 24px;
  cursor: pointer;
}

/* ==================== Стили для формы ==================== */
form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

form label {
  margin-top: 10px;
}

form input {
  padding: 8px;
  margin-top: 5px;
  border: 1px solid #ccc;
}

/*form button*/
.button-btn {
  margin-top: 20px;
  margin-bottom: -30px;
  padding: 10px;
  background-color: #ffc527;
  color: #000;
  border: none;
  width: 100%;
}

.button-btn:hover {
  background-color: #000;
  color: #fff;
}

/* ------------- кнопка чат ------------- */
.chat-button {
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 70px;
  height: 70px;
  background-color: var(--main-color);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  z-index: 999;
  animation: spineer 2s infinite;
   /* animation: pulse 2s infinite; */
}

@media (max-width: 460px){
    .chat-button {
  bottom: 100px;
  right: 20px;
}
}

/* Отключаем анимацию при наведении на саму кнопку или иконки */
.chat-button:hover,
.chat-button:active {
    animation: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Стандартный box-shadow */
}

@keyframes spineer {
  from {
      box-shadow: 0 0 0 0 var(--main-color);
  }
  to {
      box-shadow: 0 0 0 45px rgba(114, 156, 41, .01);
  }
}


@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.chat-button i {
    color: black;
    font-size: 30px;
    transition: transform 0.3s ease;
}

.social-icons {
    position: fixed;
    bottom: 130px;
    right: 50px;
    display: none;
    flex-direction: column;
    gap: 10px;
    z-index: 9999999;
}

@media (max-width: 460px){
.social-icons {
    bottom: 190px;
    right: 30px;
}
}

.social-icons a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    background-color: #fff;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.social-icons a:hover {
    transform: scale(1.2);
}

.social-icons a i {
    font-size: 20px;
    color: black;
}

.show-icons {
    display: flex;
}

.rotate {
    transform: rotate(45deg);
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6); /* Полупрозрачный черный */
  display: none; /* Скрыт по умолчанию */
  z-index: 999; /* Под иконками, но над другим контентом */
}

/* Стиль подсказок */
.tooltip {
  position: absolute;
  padding: 5px 10px;
  /* background-color: rgba(0, 0, 0, 0.75);
  color: #fff; */
  background-color: var(--main-color);
  color: black;
  border-radius: 4px;
  font-size: 14px;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1000;
  display: none; /* Скрыта по умолчанию */
}
@media (max-width: 960px){
  .tooltip {
     position: absolute;
     padding: 5px 10px;
     border-radius: 20px;
     font-size: 14px;
     white-space: nowrap;
     pointer-events: none;
     opacity: 0;
     transition: opacity 0.3s ease;
     z-index: 1000;
     display: none!important;
}
	}	
/* ------------- end кнопка чат ------------- */

