@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

/* Reset and base styles  */
* {
	padding: 0px;
	margin: 0px;
	border: none;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

/* Links */

a, a:link, a:visited  {
    text-decoration: none;
}

a:hover  {
    text-decoration: none;
}

/* Common */

aside, nav, footer, header, section, main {
	display: block;
}

h1, h2, h3, h4, h5, h6, p {
    font-size: inherit;
	font-weight: inherit;
}

ul, ul li {
	list-style: none;
}

img {
	vertical-align: top;
}

img, svg {
	max-width: 100%;
	height: auto;
}

address {
  font-style: normal;
}

/* Form */

input, textarea, button, select {
	font-family: inherit;
    font-size: inherit;
    color: inherit;
    background-color: transparent;
}

input::-ms-clear {
	display: none;
}

button, input[type="submit"] {
    display: inline-block;
    box-shadow: none;
    background-color: transparent;
    background: none;
    cursor: pointer;
}

input:focus, input:active,
button:focus, button:active {
    outline: none;
}

button::-moz-focus-inner {
	padding: 0;
	border: 0;
}

label {
	cursor: pointer;
}

legend {
	display: block;
}

section {
    overflow: hidden;
    position: relative;
}

:root {
  --container-width: 1248px;
  --container-padding: 15px;

  --font-main: Montserrat, sans-serif;

  --page-bg: #fff;
  --text-color: rgba(21, 21, 21, 1);
  --accent: rgba(85, 85, 85, 1);
  --link-color: rgba(191, 138, 68, 1);
  --more: rgba(19, 58, 27, 1);
  --date-text: rgba(51, 51, 51, 1);

  --arrow-1: rgba(233, 233, 233, 1);
  --arrow-2: rgba(64, 64, 64, 1);
  --footer-bg: rgba(237, 237, 237, 1);
  --copyright: rgba(119, 119, 119, 1);
  --card-br: rgba(233, 233, 233, 1);
}

html {
  scroll-behavior: smooth;
  background-color: rgb(39, 39, 39);
}

body {
  background-color: var(--page-bg);
  color: var(--text-color);
  font-family: var(--font-main);
}

img {
  display: block;
}

a {
  color: var(--link-color);
}

code {
  background-color: #e9f1f6;
  padding: 0.2rem;
  border-radius: 4px;
}

pre.code {
  overflow-x: auto;
  background-color: #e9f1f6;
  padding: 1rem;
  border-radius: 4px;
}

/* Контейнеры */
.container {
	margin: 0 auto;
	padding: 0 var(--container-padding);

	max-width: var(--container-width);
	width: 100%;
}

.visually-hidden {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	border: 0;
	padding: 0;
	white-space: nowrap;
	clip-path: inset(100%);
	clip: rect(0 0 0 0);
	overflow: hidden;
}


.page {
  height: 100%;
  font-size: 14px;
  font-family: var(--font-main);
  line-height: 18px;
}

.page__body {
  display: flex;
  flex-direction: column;
  min-width: 320px;
  min-height: 100%;
  margin: 0;
  background-color: #fff;
  color: #000000;
}

.page-main {
  flex-grow: 1;
}h

.footer {
  margin-top: auto;
}

.footer {
  padding: 60px 0;
  background-color: #e3e3e3;
}

/* Nav Icon */
.mobile-nav-btn {
  --time: 0.1s;

  --width: 50px;
  --height: 42px;

  --line-height: 6px;
  --spacing: 2px;

  --color: #000;
  --radius: 4px;

  /* Fixed height and width */
  /* height: var(--height); */
  /* width: var(--width); */

  /* Dynamic height and width */
 /*  // height: calc(var(--line-height) * 3 + var(--spacing) * 2); */
  height: 38px;
  width: var(--width);

  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--link-color);
  /* border-radius: 8px; */
}

.nav-icon {
  margin: auto;
  position: relative;
  width: 22px;
  height: 1px;
  background-color: var(--link-color);
  border-radius: var(--radius);
}

.nav-icon::before,
.nav-icon::after {
  content: "";
  display: block;

  position: absolute;
  left: 0;

  width: 22px;
  height: 1px;

  border-radius: var(--radius);
  background-color: var(--link-color);
  transition: transform var(--time) ease-in, top var(--time) linear var(--time);
}

.nav-icon::before {
  /* top: calc(var(--line-height) * -2); */
  top: calc(-1 * (var(--line-height) + var(--spacing)));
}

.nav-icon::after {
  /* top: calc(var(--line-height) * 2); */
  top: calc(var(--line-height) + var(--spacing));
}

.nav-icon.nav-icon--active {
  background-color: transparent;
}

.nav-icon.nav-icon--active::before,
.nav-icon.nav-icon--active::after {
  top: 0;
  transition: top var(--time) linear, transform var(--time) ease-in var(--time);
}

.nav-icon.nav-icon--active::before {
  transform: rotate(45deg);
}

.nav-icon.nav-icon--active::after {
  transform: rotate(-45deg);
}

/* Layout */

.mobile-nav-btn {
  z-index: 999;
  display: none;
}

.title-1 {
  font-size: 74px;
  line-height: 88px;
  font-weight: 500;
  font-family: var(--font-main);
}

.title-1 span {
  font-weight: 800;
}

.title-2 {
  font-size: 42px;
  line-height: 100%;
  font-weight: 500;
  color: var(--text-color);
  font-family: var(--font-main);
}

.title-3 {
  font-size: 24px;
  line-height: 30px;
  font-weight: 500;
  color: var(--text-color);
  font-family: var(--font-main);
}

.title-4 {
  font-size: 21px;
  line-height: 100%;
  font-weight: 500;
  color: var(--text-color);
  font-family: var(--font-main);
}

.text {
  font-size: 17px;
  line-height: 22px;
  font-weight: 400;
  color: var(--accent);
  font-family: var(--font-main);
}

.promo-text {
  font-size: 24px;
  line-height: 34px;
  font-weight: 400;
  font-family: var(--font-main);
}

.slider-text {
  font-size: 24px;
  line-height: 22px;
  font-weight: 400;
  color: var(--accent);
  font-family: var(--font-main);
}

.slider-text-2 {
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
  color: var(--accent);
  font-family: var(--font-main);
}

.footer-title {
  font-size: 18px;
  line-height: 100%;
  font-weight: 500;
  color: var(--text-color);
  font-family: var(--font-main);
}

.footer-text {
  font-size: 17px;
  line-height: 120%;
  font-weight: 400;
  color: var(--text-color);
  font-family: var(--font-main);
}
.footer-link {
  transition: 0.4s ease;
}

.footer-link:focus,
.footer-link:hover,
.footer-link:active {
  color: var(--link-color);
}

.card-text {
  font-size: 16px;
  line-height: 21px;
  font-weight: 400;
  color: var(--accent);
  font-family: var(--font-main);
}

.info-text {
  font-size: 17px;
  line-height: 22px;
  font-weight: 400;
  color: var(--page-bg);
  font-family: var(--font-main);
}

.reviews-name {
  font-size: 18px;
  line-height: 24px;
  font-weight: 500;
  color: var(--text-color);
  font-family: var(--font-main);
}
.reviews-date {
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  color: rgba(51, 51, 51, 1);
  font-family: var(--font-main);
}

.reviews-link {
  font-size: 16px;
  line-height: 22px;
  font-weight: 300;
  color: rgba(19, 58, 27, 1);
  font-family: var(--font-main);
  transition: 0.3s ease;
}

.reviews-link:focus,
.reviews-link:hover,
.reviews-link:active {
  color: var(--link-color);
}

.reviews-text {
  font-size: 18px;
  line-height: 22px;
  font-weight: 300;
  color: var(--text-color);
  font-family: var(--font-main);
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-family: var(--font-main);
  font-weight: 500;
  font-size: 17px;
  line-height: 100%;
  color: var(--page-bg);
  border: 1px solid transparent;
  background-color: var(--link-color);
  padding: 19px 22px;
  transition: 0.4s linear;
  cursor: pointer;
}

.btn:focus,
.btn:hover,
.btn:active {
  border-color: var(--link-color);
  background-color: transparent;
  color: var(--link-color);
}

.promo__btn {
  max-width: 283px;
  width: 100%;
}

.btn.btn-lg{
  	display:flex;
  }

.btn.btn-mb{
  	display:none;
  }

.info-section__btn {
  max-width: 283px;
  width: 100%;
}

.text-white {
  color: var(--page-bg);
}

.text-gray {
  color: rgba(205, 205, 205, 1);
}

.page-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  min-width: 320px;
  z-index: 98;
  background-color: transparent;
  transition: 0.2s linear;
  padding: 24px 0 0 0;
}

.header__active {
  top: 0;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
  background-color: var(--page-bg);
  padding: 5px 0;
}

.logo {
  flex-shrink: 0;
}

.header__row {
  display: flex;
  flex-grow: 1;
  align-items: center;
}

.header__nav {
  flex-grow: 1;
  margin: 0 61px;
}

.nav__list {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 19px;
}

.nav__list a {
  font-size: 17px;
  line-height: 100%;
  font-weight: 400;
  font-family: var(--font-main);
  color: var(--page-bg);
  transition: 0.4s linear;
}

.header__active .nav__list a {
  color: var(--text-color);
}

.nav__list a:focus,
.nav__list a:hover,
.nav__list a:active {
  color: var(--link-color);
}

.header-right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
}

.header-contact {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-contact__link {
  font-size: 16px;
  line-height: 100%;
  font-weight: 600;
  font-family: var(--font-main);
  color: var(--header-text);
  transition: 0.4s linear;
  text-transform: uppercase;
}

.header-contact__link:focus,
.header-contact__link:hover,
.header-contact__link:active {
  color: var(--link-color);
}

.mobile-nav {
  position: fixed;
  // top: 0;
  top: 0;
  left: -110%;
  width: 80%;
  height: 100%;
  z-index: 99;

  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 40px;
  padding: 50px 10px 40px 40px;
  background: var(--page-bg);
  transition: all 0.4s ease-in;
  box-shadow: 5px 0 10px rgba(0, 0, 0, 0.2);
}

.mobile-nav--open {
  left: 0;
}

.mobile-nav__list {
  display: flex;
  flex-direction: column;
}

.mobile-nav__list a {
  display: block;
  padding: 15px 0;
  font-family: var(--font-main);
  font-size: 24px;
  line-height: 110%;
  font-weight: 400;
  color: var(--text-color);
  transition: 0.4s linear;
  width: 100%;
  text-transform: uppercase;
}

.mobile-nav__list a:hover,
.mobile-nav__list a:focus,
.mobile-nav__list a:active {
  color: var(--accent);
}

.menu__close {
  display: none;
}

.footer {
  background-color: var(--footer-bg);
  padding: 42px 0 24px;
}

.footer__wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 135px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(220, 220, 220, 1);
}
.footer__logo {
  flex-shrink: 0;
}
.footer__row {
  flex-grow: 1;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: flex-start;
}
.footer__block-left {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.footer__block-info {
  display: flex;
  align-items: flex-start;
  gap: 52px;
}
.footer__block-address {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__block-right {
  display: flex;
  align-items: center;
  gap: 30px;
}
.footer__social {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.footer__social-link {
  transition: 0.4s ease;
}

.footer__copyright a {
  font-size: 13px;
  line-height: 100%;
  font-weight: 400;
  color: var(--copyright);
}

.slider-slide,
.swiper-slide {
  display: flex !important;
  height: auto !important;
}

.pagination .swiper-pagination-bullet {
  width: 11px;
  height: 11px;
  background-color: rgba(217, 217, 217, 1);
  border-radius: 0;
  transition: all 0.3s ease;
  border-radius: 50%;
  opacity: 1;
}

.pagination .swiper-pagination-bullet-active {
  background-color: var(--link-color);
  opacity: 1;
}

.slider-arrow {
  position: relative;
  width: 40px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;

  background-color: var(--arrow-1);
  z-index: 50;
  cursor: pointer;
  transition: 0.5s linear;
}

.slider-arrow:focus,
.slider-arrow:hover,
.slider-arrow:active {
  background-color: var(--link-color);
}

.slider-arrow:focus svg path,
.slider-arrow:hover svg path,
.slider-arrow:active svg path {
  stroke: var(--page-bg);
}

.slider-arrow-2 {
  position: relative;
  width: 40px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;

  background-color: var(--arrow-2);
  z-index: 50;
  cursor: pointer;
  transition: 0.5s linear;
}

.slider-arrow-2:focus,
.slider-arrow-2:hover,
.slider-arrow-2:active {
  background-color: var(--link-color);
}

.button-prev svg {
  position: relative;
  transform: rotate(180deg);
}

.button-next svg {
  position: relative;
}

.swiper-pagination {
  bottom: -50px !important;
}

.pt {
  padding-top: 75px;
}
.pb {
  padding-bottom: 100px;
}

.pt-2 {
  padding-top: 95px;
}
.pb-2 {
  padding-bottom: 115px;
}
.pb-3{
  padding-bottom: 75px;
}

.ptb {
  padding: 75px 0;
}

.bg-black {
  background-color: var(--text-color);
}

.promo {
  height: 100vh;
}

.promo__wrapper {
  min-width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.promo__wrapper::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 0;
}

.banner {
  height: 100%;
}

.banner__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.promo__block {
  display: flex;
  align-items: center;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.promo__inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 30px;
  max-width: 600px;
}
.promo__info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.slider {
  min-width: 320px;
}

.slider__wrapper {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.slider__top {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.slider-btns {
  display: flex;
  align-items: center;
  gap: 10px;
}

.slider__inner {
  position: relative;
}

.slider-slide {
  flex-direction: column;
  gap: 20px;
}

.slider__img img {
  width: 100%;
  object-fit: cover;
}
.slider__info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.card {
  min-width: 320px;
}

.card__wrapper {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.card__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.card__item {
  display: flex;
  flex-direction: column;
  gap: 30px;
  border: 1px solid var(--card-br);
  padding: 39px 21px 35px;
}
.card__item-icon {
  display: flex;
  justify-content: flex-start;
  width: 74px;
  height: 65px;
}

.card__item-info {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.info-section {
  min-width: 320px;
  position: relative;
}

.info-section::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 2;
}

.info-section-ptb-1 {
  padding: 204px 0;
}

.info-section-ptb-2 {
  padding: 155px 0;
}

.info-section-ptb-3 {
  padding: 174px 0;
}

.info-section__wrapper {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 3;
}

.info-section__inner {
  width: 49%;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.info-section__inner .title-3 {
  font-weight: 400;
}

.info-section__gap {
  gap: 26px;
}

.info-section__block {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.info-section__banner {
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.reviews {
  min-width: 320px;
}

.reviews__wrapper {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.reviews-slide {
  flex-direction: column;
  gap: 20px;
  padding: 25px 36px 25px 30px;
  border: 1px solid var(--card-br);
}

.reviews__top {
  display: flex;
  align-items: center;
  gap: 12px;
}
.reviews__icon {
  display: block;
  width: 36px;
  height: 36px;
  border-radius: 50%;
}
.reviews__top-name {
  display: flex;
  flex-direction: column;
}

.reviews__info {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.reviews__info-block {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.reviews__info .reviews-link {
  text-decoration: underline;
}

.reviews-video {
  position: relative;
}

.reviews-video img:nth-child(1) {
  width: 100%;
}

.reviews-play {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.about {
  min-width: 320px;
}

.about__wrapper {
  display: flex;
  align-items: center;
  gap: 103px;
}
.about__img {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 13px;
  width: 40%;
}

.about__img img {
  object-fit: cover;
}
.about__info {
  width: 52%;
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.about__info-block {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.partners__link {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 111px;
  padding: 10px;
  border: 1px solid var(--card-br);
}
.partners__link img {
  object-fit: contain;
  max-width: 100%;
  max-height: 100%;
}

.slide-1 {
  min-width: 320px;
}

.slide__wrapper {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.slide-item {
  width: auto !important;
  flex-shrink: 0;
}

.slide-1__img {
  display: block;
  width: 100%;
  max-height: 491px;
}

.slide-1__img img {
  object-fit: cover;
  width: 488px;
  height: 491px;
}



.no-scroll {
  overflow: hidden;
}

.modal {
  position: fixed;
  width: 643px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
  z-index: 400;
  visibility: hidden;
  opacity: 0;
  transition: 0.7s ease;
}

.modal-bg {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 399;
  background-color: rgba(0, 0, 0, 0.3);
  visibility: hidden;
  opacity: 0;
}

.modal__active {
  visibility: visible;
  opacity: 1;
  transform: translate(-50%, -50%);
}

.modal__active-bg {
  visibility: visible;
  opacity: 1;
}

.modal__wrapper {
  display: flex;
  flex-direction: column;
  position: relative;
  background-color: rgba(247, 247, 247, 1);
  z-index: 1;
  border-radius: 16px;
  padding: 50px;
}

.modal__form {
  width: 100%;
}

.modal__top {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 20px;
  position: relative;
}

.modal-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.modal-form__top-inner {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.modal-form__top {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
}

.modal__block {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.modal-label {
  width: 100%;
}

.modal-label .modal-input {
  width: 100%;
}

.modal-label {
  width: 100%;
  font-size: 18px;
  line-height: 27px;
  font-weight: 700;
  font-family: var(--font-main);
  color: var(--text-color);
}
.modal__input {
  width: 100%;
  font-size: 15px;
  line-height: 24px;
  font-weight: 400;
  font-family: var(--font-main);
  color: var(--text-color);
  padding: 17px 20px;
  background-color: var(--page-bg);
  border-radius: 12px;
  border: 1px solid transparent;
  transition: 0.3s ease;
  cursor: pointer;
}

.modal-input::placeholder {
  color: var(--form-place);
}

.modal__btn {
  position: absolute;
  right: 0;
  top: -2px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  cursor: pointer;
  transform: rotate(0deg);
  transition: transform 0.5s ease;
}

.modal__btn:hover {
  transform: rotate(25deg);
}

.modal__input:focus,
.modal__input:hover,
.modal__input:active {
  border: 1px solid var(--link-color);
  outline: none;
}

.modal-review {
  outline: none;
  resize: none;
  height: 82px;
  width: 100%;
}

.form__success {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.form__success .alert-success {
  width: 500px;
  background-color: white;
  padding: 20px;
  position: relative;
  border-radius: 15px;
}

.form__success .alert-success button {
  width: 20px;
  height: 20px;
  position: absolute;
  right: 10px;
  top: 10px;
  font-size: 19px;
  line-height: 23px;
  color: #151515;
  background: url("/storage/app/media/svg/close-success-2.svg") no-repeat;
  background-size: cover;
  background-position: center;
}

.form__success .alert-success button span {
  visibility: hidden;
}

.form__success .alert-success p {
  font-size: 19px;
  line-height: 23px;
  color: #151515;
}

.fixed-social {
  position: fixed;
  right: 20px;
  bottom: 12px;
  z-index: 200;
  transition: 0.7s ease;
}

.fixed-social__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

.fixed-social__item {
  position: relative;
}

.fixed-social__link {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: visible; 
  transition: transform 0.4s ease;
  z-index: 1;
}

.fixed-social__link img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  z-index: 2;
  position: relative;
}


.fixed-social__link:hover {
  transform: scale(1.08);
}


.fixed-social__link::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  z-index: 0;
  opacity: 0.6;
  transform-origin: center;
  animation: pulse 2.5s ease-in-out infinite;
}


.fixed-social__item:nth-child(1) .fixed-social__link::after {
  background: #E4405F; 
  box-shadow: 0 0 25px 5px rgba(228, 64, 95, 0.5);
}

.fixed-social__item:nth-child(2) .fixed-social__link::after {
  background: #25D366; 
  box-shadow: 0 0 25px 5px rgba(37, 211, 102, 0.5);
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.3);
    opacity: 0.2;
  }
  100% {
    transform: scale(1);
    opacity: 0.7;
  }
}



