:root {
  --mycol-1: #ffc548;
  --mycol-2: #ff9920;
  --mycol-3: #dc0155;
  --mycol-4: #19253b;
  --mycol-5: #e8e8e8;

  --bradius: 15px;
  --btnradius: 5px;

  --trns-background: background-color 0.5s ease-in-out;
  --trns-color: color 0.5s ease-in-out;
  --trns-txt: text-shadow 1s ease-in-out;
  --trns-oline: outline-color 0.5s ease-in-out;
}
/* скролл */
* {
  scrollbar-width: thin;
  scrollbar-color: var(--mycol-3) var(--mycol-4);
}

/* для Chrome/Edge/Safari */
*::-webkit-scrollbar {
  height: 12px;
  width: 12px;
}
*::-webkit-scrollbar-track {
  background: var(--mycol-4);
}
*::-webkit-scrollbar-thumb {
  background-color: var(--mycol-4);
  border-radius: 5px;
  border: 3px solid var(--mycol-1);
}

html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  scroll-behavior: smooth; /*медленная прокрутка */
  font-size: 16px;
  font-weight: 500;
  font-family: "Comfortaa", Arial, sans-serif;
  box-sizing: border-box;
  background-color: var(--mycol-4);
}

*,
*::before,
*::after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

@font-face {
  font-family: "lovedbytheking";
  src: local("lovedbytheking"),
    url("../fonts/lovedbytheking-regular.woff2") format("woff2"),
    url("../fonts/lovedbytheking-regular.woff") format("woff");
  font-style: normal;
  font-display: swap;
}


@font-face {
  font-family: "noteworthy";
  src: local("noteworthy"),
    url("../fonts/noteworthy.woff") format("woff2"),
    url("../fonts/noteworthy.woff") format("woff");
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Comfortaa";
  src: local("Comfortaa-VariableFont_wght"),
    url("../fonts/Comfortaa-VariableFont_wght.woff2") format("woff2"),
    url("../fonts/Comfortaa-VariableFont_wght.woff") format("woff");
  font-style: normal;
  font-display: swap;
}

body {
  font-family: "Comfortaa";
}
main {
  overflow: hidden;
}

.section {
  width: 100vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 0;
}

.container {
  max-width: 1400px;
  min-width: 320px;
  padding: 5% 1rem;
  overflow: hidden;
}

.list-reset {
  margin: 0;
  padding: 0;
  list-style: none;
}

.text-centr {
  text-align: center;
}

input {
  caret-color: var(--mycol-3);
}
p::selection {
  color: var(--mycol-3);
  background-color: var(--mycol-1);
}

.logo-link {
  margin-right: auto;
  outline: 1px solid transparent;
  padding: 10px 25px;
  border-radius: var(--bradius);
  font-size: min(5vw, 2rem);
  font-weight: 700;
  font-family: "lovedbytheking";
  color: var(--mycol-3);
  -webkit-transition: var(--trns-color), var(--trns-oline);
  -o-transition: var(--trns-color), var(--trns-oline);
  transition: var(--trns-color), var(--trns-oline);
}

.logo-link:focus,
.logo-link:hover {
  color: var(--mycol-1);
}

.logo-link:focus,
.logo-link:active {
  outline-color: var(--mycol-2);
  color: var(--mycol-2);
}

.focus-activ {
  outline: 1px solid transparent;
  outline-offset: 10px;
  border-radius: var(--btnradius);
  -webkit-transition: var(--trns-color), var(--trns-oline);
  -o-transition: var(--trns-color), var(--trns-oline);
  transition: var(--trns-color), var(--trns-oline);
}

.focus-activ:focus,
.focus-activ:hover {
  outline-color: var(--mycol-2);
  color: var(--mycol-2);
}

.focus-activ:active {
  outline-color: var(--mycol-3);
  color: var(--mycol-3);
}

.link-line {
  position: relative;
  outline: 1px solid transparent;
  outline-offset: 5px;
  transition: var(--trns-border) var(--trns-color);
}

.link-line:focus {
  outline-color: var(--mycol-1);
  color: var(--mycol-1);
}

.link-line:hover {
  outline-color: transparent;
  color: var(--mycol-1);
}

.link-line:hover::after {
  transform-origin: bottoma;
  transform: scaleX(1);
}

.link-line::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 3px;
  bottom: -5px;
  left: 0;
  background: var(--mycol-1);
  transform: scaleX(0);
  transform-origin: bottom;
  transition: transform 0.3s;
}

.link-line:active {
  position: relative;
  top: 5px;
  color: var(--mycol-3);
}

header {
  position: fixed;
  width: 100%;
  z-index: 9000;
  background: var(--mycol-4);
  padding: 10px 20px;
  border-bottom: 3px solid var(--mycol-3);
}

nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.nav-links {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
}

.nav__link {
  color: var(--mycol-1);
  text-decoration: none;
  font-size: min(4.5vw, 1.2rem);
  line-height: 2;
}

.nav__link:hover {
  text-decoration: underline;
}

.burger {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  cursor: pointer;
}

.line {
  width: 25px;
  height: 3px;
  background: var(--mycol-3);
  margin: 3px 0;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease; /* Плавный переход */
}


.order-heading {
  text-align: center;

  line-height: 1.5;
  color: var(--mycol-1);
  font-size: min(4vw, 2rem);
  font-family: "noteworthy";
  text-shadow: 0 0 5px var(--mycol-4);
}

.heading1 {
  text-align: right;
  /* padding: 0 1rem; */
  color: var(--mycol-1);
  font-size: min(7vw, 7rem);
  font-family: "noteworthy";
  font-weight: 400;
  text-shadow: 0 0 5px var(--mycol-4);
}

.heading1__taxi {
  text-align: center;
  font-size: clamp(3rem, 5vw, 7rem);
}

.header__heading2 {
  text-align: center;
  /* padding: .7rem 0; */
  line-height: 1.5;
  color: var(--mycol-5);
  font-size: min(4vw, 3rem);
  font-family: "noteworthy";
  text-shadow: 0 0 5px var(--mycol-4);
}

.buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1rem;
  padding: 2rem;
}

.heading__buttons {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.btn__amber {
  background-color: var(--mycol-4);
  color: var(--mycol-5);
}

.btn {
  width: auto;
  height: auto;
  padding: 15px;
  outline: transparent;
  border-radius: var(--bradius);
  font-size: min(4.5vw, 1.5rem);
  font-family: "noteworthy";
  box-shadow: 0 0 15px var(--mycol-1);
  -webkit-transition: var(--trns-color), var(--trns-background),
    var(--trns-oline);
  -webkit-transition: var(--trns-color), var(--trns-background),
    var(--trns-oline);
  -webkit-transition: var(--trns-color), var(--trns-background),
    var(--trns-oline);
  -o-transition: var(--trns-color), var(--trns-background), var(--trns-oline);
  transition: var(--trns-color), var(--trns-background), var(--trns-oline);
}

.btn:hover {
  position: relative;
  top: 5px;
  box-shadow: 0 0 15px var(--mycol-2);
}

.btn-top {
  position: fixed;

  bottom: 70px;
  right: 20px;
  -webkit-box-shadow: 0 0 20px var(--mycol-1);
  box-shadow: 0 0 20px var(--mycol-1);
  border-radius: 50px;
}

.btn-top:hover {
  /* bottom: 55px; */
  -webkit-box-shadow: 0 0 20px var(--mycol-1);
  box-shadow: 0 0 20px var(--mycol-1);
}

.button-call {
  color: var(--mycol-1);
  border: 1px solid currentColor;
  background-color: transparent;
}

.button-call:focus,
.button-call:hover {
  color: var(--mycol-2);
  border: 1px solid currentColor;
}

.button-call:active {
  color: var(--mycol-3);
  border: 1px solid currentColor;
}

.button-applicatoin {
  color: var(--mycol-4);

  background-image: linear-gradient(90deg, #ff9920 40%, #ffc548 80%);
}

.button-applicatoin:focus,
.button-applicatoin:hover {
  background-color: var(--mycol-2);
}

.button-applicatoin:active {
  background-color: var(--mycol-3);
}

.title {
  background-image: -webkit-gradient(
    linear,
    left bottom,
    left top,
    from(rgba(74, 4, 50, 0.434)),
    to(rgba(4, 40, 44, 0.491))
  );

  background-image: -o-linear-gradient(
    bottom,
    rgba(74, 4, 50, 0.434) 0%,
    rgba(4, 40, 44, 0.491) 100%
  );

  background-image: linear-gradient(
    0deg,
    rgba(74, 4, 50, 0.434) 0%,
    rgba(4, 40, 44, 0.491) 100%
  );
}

.title__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column wrap;
  flex-flow: column wrap;
  -webkit-box-pack: space-evenly;
  -ms-flex-pack: space-evenly;
  justify-content: space-evenly;
  min-height: 95svh;
}

.title:before {
  content: "";
  background-image: url("../img/car.webp");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -1;
}

.about {
  padding: 0;
  line-height: 1.8;
  /* background-color: var(--mycol-5); */
}

.about__title {
  padding-top: 10%;
  font-size: min(4vw, 1.8rem);
  color: var(--mycol-5);
  line-height: 1.5;
  margin-bottom: 2rem;
}

.about__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column wrap;
  flex-flow: column wrap;
  padding-top: 7rem;

  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: var(--mycol-5);
  font-size: min(3vw, 2rem);
}

.about__driver {
  margin-bottom: 5rem;
}
.text {
  /* max-width: 800px; */
  font-size: min(1rem, 1.5rem);
  font-weight: 600;
  margin-bottom: 20px;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column wrap;
  flex-flow: column wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-line-pack: center;
  align-content: center;
}

.heading3 {
  padding-top: 5rem;
  margin-bottom: 2rem;
  color: var(--mycol-1);
  line-height: 1.8;
  font-size: min(5vw, 2rem);
  text-align: center;
  font-family: "noteworthy";
}

.heading-popup {
  padding: 1rem;
  color: var(--mycol-3);
  line-height: 1.8;
  font-size: min(5vw, 2rem);
  text-align: center;
  font-family: "noteworthy";
}

.txt-popup {
  color: var(--mycol-1);
  line-height: 1.8;
  font-size: min(3vw, 1.5rem);
  text-align: center;
  font-family: "noteworthy";
}

.price-popup {
  color: var(--mycol-2);
  line-height: 1.8;
  font-size: min(3vw, 1.5rem);
  text-align: center;
  font-family: "noteworthy";
}

.text-red {
  color: var(--mycol-3);
  line-height: 1.8;
}

.yellow1 {
  color: var(--mycol-1);
}

.white {
  color: var(--mycol-5);
}

.section-price {
  position: relative;
  background: -webkit-gradient(
    linear,
    left bottom,
    left top,
    from(#000),
    to(#27272793)
  );
  background: -o-linear-gradient(bottom, #000, #27272793);
  background: linear-gradient(0deg, #000, #27272793);
  z-index: -1;
}

/* границы ячеек первого ряда таблицы */
th {
  border: 1px solid var(--mycol-2);
  padding: 1vw;
  color: var(--mycol-2);
}
/* границы ячеек тела таблицы */
td {
  border: 1px solid var(--mycol-2);
  padding: 2%;
  color: var(--mycol-1);
  line-height: 1.5;
}
.relative {
  position: relative;
}

.carousel2 {
  max-width: 40%;
  border-radius: var(--bradius);
  float: left;
}

.carouselcar {
  width: 100%;
  border-radius: var(--bradius);
}

.galerea {
  background-color: var(--mycol-4);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column wrap;
  flex-flow: column wrap;
  -ms-flex-line-pack: center;
  align-content: center;
  padding-bottom: 2rem;
}

.galerea__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column wrap;
  flex-flow: column wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 3%;
  color: var(--mycol-2);
}

.galerea__link {
  margin-bottom: 120px;
}

.lucky-link {
  text-align: center;
}

/* slider для статей */

.articles-slider {
  max-height: 100%;
  display: flex;
  /* max-height: 550px; */
  flex-flow: column nowrap;
  padding: 3% 0%;

  align-items: baseline;
  overflow-x: auto;
  background: var(--mycol-4);
}

.article-heading {
  padding-left: 10%;
  color: var(--mycol-1);
  line-height: 1.8;
  font-size: min(5vw, 2rem);
  text-align: center;
  font-family: "noteworthy";
}

/* .card__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column wrap;
  flex-flow: column wrap;
  padding: 0%;
overflow-x: auto;
} */

.card-container {
  position: relative;

  display: flex;
  /* overflow-x: auto; */
  overflow: hidden;
  -ms-scroll-snap-type: x mandatory;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  gap: 2rem;
  padding: 1rem 0;
  align-items: flex-end;
  height: 400px;
}

.card-container {
  -webkit-animation: scroll 50s linear infinite;
  /* animation: scroll 10s linear infinite; */
  animation: marquee 50s linear infinite;

}

.card-container:hover {
  -webkit-animation-play-state: paused;
  animation-play-state: paused;
}

@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.card-container .card {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  width: 350px;
  max-width: 100%;
  height: 300px;
  scroll-snap-align: center;
  background: var(--mycol-1);
  border-radius: 20px;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  -webkit-box-shadow: 0 35px 80px rgba(0, 0, 0, 0.15);
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.15);
}

.card-container .card:hover {
  height: 300px;
}

.card-container .card .img-box {
  position: absolute;
  top: 20px;
  width: 300px;
  height: 220px;
  /* background: var(--mycol-1); */
  border-radius: var(--bradius);
  overflow: hidden;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}

.card-container .card:hover .img-box {
  top: -100px;
  scale: 0.75;
  -webkit-box-shadow: 0 15px 45px rgba(0, 0, 0, 0.2);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.2);
}

.card-container .card .img-box img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.card-container .card .content {
  position: absolute;
  top: 252px;
  width: 100%;
  height: 35px;
  padding: 0 30px;
  text-align: center;
  overflow: hidden;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}

.card-container .card:hover .content {
  top: 130px;
  height: 250px;
}

.card-container .card .content h3 {
  font-size: 1.2rem;
  margin-bottom: 1.3rem;
  color: var(--mycol-4);
  font-family: "noteworthy";
}

.card-container .card .content p {
  color: var(--mycol-4);
}

.card-container .card .content a {
  position: relative;
  top: 15px;
  display: inline-block;
  padding: 12px 25px;
  text-decoration: none;
  background: var(--mycol-3);
  color: var(--mycol-1);
  font-weight: 500;
  font-family: "noteworthy";
  border-radius: var(--btnradius);
}

.card-container .card .content a:hover {
  opacity: 0.8;
}
/* slider для статей */




.booking {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column wrap;
  flex-flow: column wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: var(--mycol-3);
}

.booking__list {
  padding-top: 5rem;
}

.contacts__list {
  color: var(--mycol-1);
font-size: min(4.5vw, 1.5rem);
  text-align: left;
}

.point::before {
  content: "✓ ";
  color: inherit;
}

.point2::before {
  content: " → ";
  color: inherit;
}

.contacts a,
.contacts__list a {
  color: inherit;
}

.footer__section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  gap: 2rem;
  padding: 150px 10px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  background-color: var(--mycol-4);
  text-align: center;
  color: var(--mycol-2);


  line-height: 2.5;
}

.footer-list {
  color: var(--mycol-1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column wrap;
  flex-flow: column wrap;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.end-php {
  width: 100vw;
  height: 100vh;
  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;
  -ms-flex-line-pack: center;
  align-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  font-weight: 700;
  color: var(--mycol-5);
  text-shadow: 0 0 30px var(--mycol-4);
  font-size: min(4vw, 17rem);
  text-align: center;
  line-height: 2;
}

.end-php:before {
  content: "";
  background-image: url("../img/road.webp");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -1;
}

.end-php {
  background-image: linear-gradient(0deg, #19253b 0%, #3b25197c 100%);
}

.end-php a {
  color: var(--mycol-1);
  font-size: clamp(2.5rem, 5vw, 10rem);
  font-family: "noteworthy";
  font-weight: 400;
  text-shadow: 0 0 5px var(--mycol-4);
}

.webluck {
  width: 100vw;
  padding: 40px 0;

  text-align: center;
  font-family: "lovedbytheking";
  font-size: min(4vw, 2rem);
}

.social {
  position: fixed;
  z-index: 10;
  bottom: 20px;
  left: 20px;
  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;
}

.social-trigger {
  border: none;
  background: var(--mycol-3);
  border: 1px solid var(--mycol-1);
  border-radius: 50%;
  width: 80px;
  height: 80px;
  margin-right: 20px;
  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;
  cursor: pointer;
  -webkit-transition: background-color 0.3s;
  -o-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

.social-trigger svg {
  width: 45px;
  height: auto;
  /* max-height: 100%;
  max-width: 100%; */
}

.social-trigger svg path {
  fill: var(--mycol-4);
}

.social-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.social-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background-color: var(--mycol-4);
  border-radius: 50%;
  border: 1px solid var(--mycol-3);
  margin-right: 10px;
  -webkit-transition: opacity 0.3s, visibility 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, visibility 0.3s, -webkit-transform 0.3s;
  -o-transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s,
    -webkit-transform 0.3s;
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s,
    -webkit-transform 0.3s;
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s,
    -webkit-transform 0.3s;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
  opacity: 0;
  visibility: hidden;
}

.social-link svg {
  width: 45px;
  height: auto;
  /* max-height: 100%;
  max-width: 100%; */
}

.social-link svg path {
  fill: var(--mycol-3);
}

.social:not(.social_opened) .social-link {
  -webkit-transition-delay: 0s !important;
  -o-transition-delay: 0s !important;
  transition-delay: 0s !important;
}

.social.social_opened .social-link {
  opacity: 1;
  visibility: visible;
  animation: pulse 2s infinite;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.social.social_opened .social-trigger {
  background-color: var(--mycol-3);
  opacity: 40%;
}

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-box-shadow: 0 0 0 0 var(--mycol-2);
    box-shadow: 0 0 0 0 var(--mycol-2); /* можно адаптировать под свой var(--mycol-X) */
  }
  70% {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
    -webkit-box-shadow: 0 0 0 15px rgba(76, 164, 180, 0);
    box-shadow: 0 0 0 15px rgba(76, 164, 180, 0); /* плавное исчезновение */
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-box-shadow: 0 0 0 0 rgba(76, 164, 180, 0);
    box-shadow: 0 0 0 0 rgba(76, 164, 180, 0);
  }
}

@keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-box-shadow: 0 0 0 0 var(--mycol-2);
    box-shadow: 0 0 0 0 var(--mycol-2); /* можно адаптировать под свой var(--mycol-X) */
  }
  70% {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
    -webkit-box-shadow: 0 0 0 15px rgba(76, 164, 180, 0);
    box-shadow: 0 0 0 15px rgba(76, 164, 180, 0); /* плавное исчезновение */
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-box-shadow: 0 0 0 0 rgba(76, 164, 180, 0);
    box-shadow: 0 0 0 0 rgba(76, 164, 180, 0);
  }
}

.social-trigger,
.btn-top,
.btn {
  -webkit-animation: pulse 2s infinite;
  animation: pulse 2s infinite;
}

/* cookie */
.cookie-consent {
  position: fixed;
  bottom: -120px; /* изначально скрыт за экраном */
  left: 20px;
  right: 20px;
  max-width: 400px;
  margin: auto;
  background: var(--mycol-4);
  color: var(--mycol-5);
  padding: 15px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 9999;

  opacity: 0;
  pointer-events: none;
  transition: all 0.6s ease;
}

/* Появление */
.cookie-consent.show {
  bottom: 20px;
  opacity: 1;
  pointer-events: auto;
}

/* Исчезновение */
.cookie-consent.hide {
  bottom: -120px;
  opacity: 0;
  pointer-events: none;
}

.cookie-consent p {
  margin: 0;
  font-size: 14px;
  line-height: 1.4;
}

.cookie-consent a {
  color: var(--mycol-1);
  text-decoration: underline;
}

.cookie-consent button {
  background: var(--mycol-1);
  border: none;
  padding: 8px 14px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s ease;
}

.cookie-consent button:hover {
  background: var(--mycol-2);
}

/* cookie */
