* {
  box-sizing: border-box;
  /* margin: 0; */
  /* padding: 0; */

  font-family: "Montserrat";
  /* outline: 1px solid green !important; */
}

@font-face {
  font-family: "Montserrat";
  src: url("../font/Montserrat-VariableFont_wght.ttf") format("woff"),
    url("../font/Montserrat-Italic-VariableFont_wght.ttf") format("woff2");
  /* font-weight: normal; */
  /* font-style: normal; */
}

.container {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  /* padding: 15px 15px; */
}

.header {
  position: relative;
  /* height: 100vh; */
  background: linear-gradient(
    to top,
    rgba(200, 166, 200, 0.4),
    rgba(0, 0, 0, 0.4)
  );
  color: white;
}

.header__img {
  position: absolute;
  height: 70%;
  bottom: 0px;
  right: 0px;
  z-index: 1;
}

.header__title {
  position: relative;
  /* height: 18%; */
  z-index: 2;
}

/* .header__title::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(231, 89, 229, 0.5), rgba(239, 201, 250, 0));
    z-index: -1; Щоб фон був позаду тексту
} */

.header__title__txt {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 0 15px 40px 15px;
  padding-top: 15px;
  color: rgba(255, 255, 255, 0.9);
  gap: 10px;
  z-index: 10;
}

.header__title__txt__header {
  width: 61%;
  font-size: 16px;
}

.header__title__txt__header span {
  font-size: 12px;
}

.header__title__txt__main {
  display: flex;
  align-items: center;
  font-size: 12px;
}

.header__title__txt__main__dot {
  background: #fbcfdb;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-right: 10px;
}

.header__title__txt__subtitle {
  margin-top: 10px;
  font-size: 20px;
  text-transform: uppercase;
}

.header__main {
  display: flex;
  position: relative;
  flex-direction: column;
  justify-content: space-around;
  height: 50%;
  padding: 0 20px;
  z-index: 5;
}

.header__main__title {
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  color: #fbcfdb;
  text-transform: uppercase;
}

.header__main__main {
  text-align: center;
  font-size: 20px;
  /* text-transform: uppercase; */
  /* font-style: italic; */
  color: #fff;
  line-height: 26px;
  margin-top: 20px;
}

.header__main__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.btn {
  width: 90%;
  height: 50px;
  background: #e84782;
  color: white;
  font-size: 26px;
  font-weight: 900;
  text-transform: uppercase;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  /* text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);  */
  /* box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.4);  */
  transition: box-shadow 0.3s ease; /* плавний перехід тіні при наведенні */

  &:hover {
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.5); /* тінь кнопки при наведенні */
  }
}

.btn__accordion {
  box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.4);
}

.header__main__btn__flower {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 70px;
  height: 70px;
  right: -10px;
  overflow: hidden;
}
.header__main__btn__flower::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../img/Header/pink-cosmos\ 1-min.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  animation: rotate-background 8s linear infinite;
}

.header__main__btn__flower span {
  position: absolute;
  z-index: 1;
  color: #e84782;
  font-size: 14px;
  font-weight: 900;
}

@keyframes rotate-background {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.header__main__subtitle {
  /* max-width: 320px; */
  font-size: 28px;
  font-weight: 900;
  line-height: 26px;
  color: #e84782;
  margin: 80px 20px 20px 20px;
}

.header__main__subtitle span {
  font-size: 14px;
  font-weight: 600;
  /* color: #2f2f2f; */
}

.header__main__subtitle__p {
  /* text-align: end; */
  font-size: 14px;
  font-weight: 600;
  color: #000;
}

.header__subtitle {
  display: flex;
  position: relative;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  text-align: center;
  height: 20%;
  padding: 0 10px;
  z-index: 2;
}
/* 
.header__subtitle::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(231, 89, 229, 0.5), rgba(239, 201, 250, 0));
    z-index: -1; Щоб фон був позаду тексту
} */

.header__subtitle__header {
  position: relative;
  font-size: 12px;
  color: #53555d;
  align-self: flex-start; /* Розташування на початку батьківського блоку */
  text-align: left; /* Текст вирівняний ліворуч */
  padding-left: 10px; /* Можна додати внутрішній відступ для відстані від краю */
  margin: 10px 0 20px 0;
  width: 95%;
}

.header__subtitle__header__txt {
  padding: 10px 30px 10px 20px;
  text-align: start;
  color: white;
  background-color: rgba(232, 71, 130, 0.53);
  line-height: 16px;
  border-radius: 20px;
}

.header__subtitle__header img {
  position: absolute;
  bottom: -4px;
  right: -18px;
}

.header__subtitle__main {
  /* margin-top: 10px; */
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  color: rgba(68, 68, 68, 1);
  /* color: #E759E5; */
}

.look {
  background: linear-gradient(
    to bottom,
    rgba(232, 71, 130, 0.7),
    rgba(251, 207, 219, 1)
  );
  color: white;
  padding: 30px 20px;
  z-index: 5;
}

.look__title {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.look__main {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  gap: 10px;
  /* text-transform: uppercase; */
}

.look__main__content {
  font-size: 14px;
}
.look__main__content span {
  font-size: 12px;
  line-height: 20px;
  color: #e84782;
  text-transform: uppercase;
  font-weight: 700;
}

.look__main__img {
  position: relative;
}

.look__main__img__Mask {
  position: relative;
  z-index: 2;
}

.look__main__img__pink {
  position: absolute;
  top: -45px;
  right: -15px;
  z-index: 1;
}

.course__header {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
  height: 150px;
  font-size: 24px;
  font-weight: 700;
}

.course__header img {
  position: absolute;
  left: 10px;
}

.course__header__title {
  color: #e84782;
  padding: 0 15px;
}

.course__main {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
  gap: 0px;
  text-align: center;
}

.course__main__cart {
  display: flex;
  position: relative;
  flex-direction: column;
  align-items: center;
  max-width: 400px;
  flex: 1 1;
}

.course__main__cart__descr {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  background: #e84782;
  height: 100px;
  width: 320px;
  border-radius: 10px;
  color: white;
  font-size: 20px;
  font-weight: 500;
  padding: 10px;
  bottom: 30px;
  z-index: 4;
}

.course__main__cart__descr img {
  /* width: 100%; */
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -2;
}

.course__main__cart__descr__img01 {
  left: 100px;
}

.course__main__ellips__right {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -2;
}

.course__main__ellips__left {
  position: absolute;
  bottom: -200px;
  left: 0;
  z-index: -2;
}

.main {
  background: linear-gradient(
    to top,
    rgba(232, 180, 201, 1),
    rgba(246, 226, 234, 0.5)
  );
  padding-bottom: 40px;
}

.ladle__header {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 150px;
  font-size: 24px;
  font-weight: 700;
  color: #e84782;
  padding: 0 15px;
}

.lable__main {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.lable__main__cart {
  display: flex;
  align-items: center;
  justify-content: space-around;
  text-align: center;
  width: 320px;
  font-size: 16px;
  font-weight: 600;
}

.lable__main__cart__revers {
  flex-direction: row-reverse;
}

.lable__main__cart__img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: linear-gradient(to bottom, #e84782, #e666e4);
  border-radius: 40%;
  box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.4); /* тінь кнопки */
}

.lable__main__cart__descr {
  width: 256px;
  padding: 5px 10px;
  line-height: 22px;
}

.cartlogo {
  position: relative;
  text-align: center;
  background: white;
  margin: 70px 20px 0 20px;
  padding: 20px;
  border-radius: 20px 20px 0 0;
}

.cartlogo__img {
  position: absolute;
  top: -300px;
  right: -20px;
  z-index: 1;
}

.cartlogo__header {
  position: relative;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
  /* z-index: 7; */
}

.cartlogo__main__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.cartlogo__main__title__img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 40%;
  background: linear-gradient(to bottom, #e8e8e8, #ffffff);
  box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.4); /* тінь кнопки */
}
.cartlogo__main__title__descr {
  font-size: 12px;
  line-height: 20px;
}

/* СЛАЙДЕР ДЛЯ ФОТООООО */

.slider-container {
  position: relative;
  width: 90%;
  max-width: 800px;
  margin: 20px auto;
  overflow: visible; /* Дозволяємо елементам виходити за межі контейнера */
  background: white;
}

.slider__title {
  text-align: center;
  font-size: 24px;
  color: black;
  padding: 20px;
}

.slider {
  overflow: hidden; /* Обмежуємо видимість слайдів за межами контейнера */
}

.slides {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.slide {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 100%;
  box-sizing: border-box;
  cursor: pointer;
}

.slide img {
  width: 80%;
  display: block;
}

.prev,
.next {
  position: absolute;
  height: 40px;
  width: 40px;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(230, 102, 228, 0.7);
  /* color: white; */
  color: black;
  border: none;
  padding: 10px;
  cursor: pointer;
  border-radius: 50%;
  user-select: none;
  z-index: 1;
}

.prev {
  left: 5px; /* Виводимо кнопку за межі контейнера */
}

.next {
  right: 5px; /* Виводимо кнопку за межі контейнера */
}

.prev:hover,
.next:hover {
  background-color: rgba(230, 102, 228, 0.5);
}

.pagination {
  text-align: center;
  margin-bottom: 20px;
}

.pagination button {
  background-color: rgba(230, 102, 228, 0.4);
  border: none;
  color: white;
  padding: 7px 7px;
  margin: 0 3px;
  border-radius: 50%;
  cursor: pointer;
}

.pagination button.active {
  background-color: rgba(230, 102, 228, 0.8);
}

.pagination button:hover {
  background-color: rgba(230, 102, 228, 0.8);
}
/* @media (max-width: 600px) {
    .slider {
        width: 100%;
        border-radius: 0;
    }

    .prev, .next {
        padding: 5px;
    }

    .slide {
        cursor: pointer;
    }
} */

/* КІНЕЦЬ СЛАЙДЕРА */

.autor {
  text-align: center;
  background: white;
  margin: 20px 20px 0 20px;
  padding: 10px;
  border-radius: 0 0 20px 20px;
}

.autor__header__title__hi {
  font-size: 24px;
  font-weight: 700;
  margin: 10px;
}

.autor__header__title__txt {
  font-size: 14px;
}

.autor__header__title__txt span {
  font-size: 20px;
}

.autor__header__img {
  margin: 20px 10px;
}

.autor__main {
  display: flex;

  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.autor__main__cart {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: start;
  gap: 15px;
  border: 1px solid #e759e5;
  border-radius: 10px;
  padding: 15px;
  font-size: 14px;
  max-width: 320px;
}

.autor__main__cart__img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 15%;
}

.autor__main__cart__descr {
  width: 85%;
}

.autor__main__cart__img__star {
  height: 26px;
  width: 26px;
  background-image: url(../img/main/autor/Vector-min.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  margin: 0 7px;
}

.main__footer {
  text-align: center;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
  color: #53555d;
  margin-top: 20px;
}

.diagonal-box {
  position: relative;
  margin-top: 30px;
  width: 100%; /* ширина блоку */
  height: 50px; /* висота блоку */
  overflow: hidden; /* щоб лінія не виступала за межі блоку */
}

.diagonal-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%; /* довжина лінії, щоб перекрити діагональ */
  height: 2px; /* товщина лінії */
  background-color: #fff; /* колір лінії */
  transform: rotate(5deg); /* нахил для діагоналі */
  transform-origin: top left; /* точка обертання */
}

.price {
  margin: 35px 10px;
}

.price__name {
  font-size: 24px;
  text-transform: uppercase;
  text-align: center;
  font-weight: 700;
  margin: 0px 10px 30px 10px;
}

.price__cards {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.price__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  border-radius: 10px;
  padding: 10px;
}

.price__card__header {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  margin: 10px;
  height: 50px;
  width: 90%;
  border: 2px solid #e84782;
  border-radius: 50px;
}

.price__card__main {
  font-size: 12px;
  text-transform: uppercase;
  line-height: 18px;
  width: 95%;
  margin: 20px 0;
  padding-left: 10px;
}

.price__card__main ul li {
  font-weight: 700;
  color: #000;
  padding-top: 5px;
}

.price__card__main ul li del {
  font-weight: 500;
  color: #1a1a1a;
}

.price__card__subtitle {
  display: flex;
  gap: 20px;
}

.price__card__subtitle__del {
  display: flex;
  align-items: end;
  font-size: 20px;
  font-weight: 700;
  color: #505050;
}

.price__card__subtitle__pink {
  display: flex;
  align-items: end;
  font-size: 40px;
  font-weight: 900;
  color: #e84782;
}

.price__card__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
}

.price__card__btn__button {
  position: relative;
  bottom: -35px;
  width: 90%;
  box-shadow: 2px 4px 8px rgba(0, 0, 0, 0.8);
  text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.8);
  cursor: pointer;
}

.price__card__btn__flower {
  right: 10px;
  bottom: -45px;
}

.programm {
  background: #f6e2ea;
}

.programm__header {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
  height: 150px;
  font-size: 24px;
  font-weight: 700;
}

.programm__header img {
  position: absolute;
  right: 35px;
  bottom: 40px;
  z-index: -1;
}

.programm__cart {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 340px;
  margin: 0 auto;
}

.programm__cart__flower {
  position: absolute;
  left: -20px;
  top: -30px;
}

.programm__cart__box {
  position: absolute;
  left: -10px;
  top: 10px;
}

.programm__cart__main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 340px;
  text-align: center;
  padding: 20px 15px 15px 40px;
  line-height: 20px;
  background: #e8b5c9;
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.4); /* тінь кнопки */
}

.programm__cart__three {
  display: flex;
  justify-content: space-between;
  margin: 30px auto;
  font-size: 12px;
  text-align: center;
  min-height: 250px;
}

.programm__cart__three__cart {
  flex: 1; /* Опціонально, щоб кожен елемент займав однакову ширину */
  margin: 0 5px; /* Опціонально, для додаткових відступів між елементами */
  border-radius: 15px;
  overflow: hidden; /* Застосовується для того, щоб зображення не виходили за межі округлених кутів */
}

.programm__cart__three__cart__img {
  min-height: 150px;
}
.programm__cart__three__cart__img img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

.programm__cart__three__cart {
  background: #e8b5c9;
  border-radius: 10px;
}

.programm__cart__three__cart__main__title {
  font-weight: 700;
  padding: 10px 5px;
}
.programm__cart__three__cart__main__subtitle {
  padding: 5px;
}
.programe_tren,
.content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 auto;
  gap: 10px;
}
.programe_tren_991 {
  display: none;
}
.programe_tren {
  margin: 50px 0 0 0;
}

.programe_tren_supercard {
  width: 47vw;
  min-height: 200px;
  background-color: #e8b5c9;
  border-radius: 10px;
}
.programe_tren_vidos {
  width: 100%;
  border-radius: 10px;
}

.programe_tren_video_text {
  margin-top: 10px;
  font-weight: 600;
  font-size: 12px;
}
.programe_tren_subtext {
  min-height: 30px;
  padding: 10px;
  font-size: 14px;
  font-weight: 700;
}
.programe_tren_subtitle {
  text-align: start;
  margin-top: 10px;
  padding: 0 10px 10px 10px;
  margin: 0px auto;
  font-size: 12px;
  font-weight: 500;
}

.programe_tren_subtitle ul {
  padding-inline-start: 10px;
  list-style: disc;
}

.programe_tren_subtitle ul > li {
  position: relative;
  left: 5px;
}

.content {
  overflow: hidden;
  max-height: 0;
  transition: all 1s ease-in-out;
}

.expanded {
  max-height: 1000vh;
}

#expandButton {
  position: relative;
  left: 10%;
  background: white;
  color: black;
  border: 2px solid #e8b5c9;
  border-radius: 50px;
  height: 46px;
  width: 170px;
  padding: 10px;
  font-size: 14px;
  text-align: center;
  align-items: center;
  margin: 10px;
  text-shadow: none;
  box-shadow: none;
  /* z-index: 10;  */
}

#expandButton:hover {
  border: 1px solid #e8b5c9;
  box-shadow: none;
}

.supercart {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(
    to top,
    rgba(251, 207, 219, 0.25),
    rgba(246, 226, 234, 1),
    rgba(232, 180, 201, 1)
  );
  border-radius: 10px 10px 0 0;
  margin: 50px 20px 0 20px;
  padding: 10px;
}

.supercart__header {
  z-index: 5;
}
.supercart__header__title {
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  padding-top: 30px;
  line-height: 30px;
}

.supercart__header__subtitle {
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  color: #e84782;
  padding-top: 10px;
}

.supercart__header__txt {
  margin-top: 40px;
  font-size: 24px;
}

.supercart__header__btn {
  margin-top: 30px;
}

/* Timerrrrrrrrrrrrr */

.supercart__header__timer {
  margin-top: 20px;
  color: white;
}
.supercart__header__timer__black {
  color: #000;
}

.timer__header {
  font-size: 14px;
  /* margin-top: 30px; */
  font-weight: 700;
}

.timer__footer {
  font-size: 12px;
  margin-top: 20px;
  font-weight: 700;
}
#timerContainer1,
#timerContainer2 {
  font-family: Arial, sans-serif;
  text-align: center;
  font-size: 18px;
  margin-top: 20px;
  color: #e84782;
}

/* #timerContainer1 {
    background-color: #e8478234;
    border-radius: 10px;
} */

#timerContainer2 {
  color: #000;
}

.timerElement {
  display: inline-block;
  margin: 0 10px;
}
.timerElement span {
  font-weight: 500;
  font-size: 24px;
}

.timerLabel {
  font-size: 10px;
  color: #666;
}

.supercart__cart__garant {
  margin-top: 70px;
}

.supercart__cart__garant__header {
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
}

.supercart__cart__garant__title,
.supercart__cart__garant__subtitle {
  margin: 30px 0;
  font-size: 12px;
  font-weight: 500;
}

.supercart__oval01,
.supercart__oval02 {
  position: absolute;
  top: -30px;
  right: -20px;
  z-index: 1;
}

.supercart__oval01 {
  top: -70px;
}

/* accordioooooooooooooooooon */

.accordion {
  width: 90%;
  max-width: 600px;
  /* border: 1px solid #FAF5EE; */
  border-radius: 5px;
}

/* .accordion-item {
    border-bottom: 1px solid #ffe9cb;
} */

.accordion-item:last-child {
  border-bottom: none;
}

.accordion-button {
  font-size: 12px;
  font-weight: 700;
  color: black;
  width: 100%;
  margin-top: 5px;
  padding: 15px;
  text-align: left;
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  transition: background-color 0.3s;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-shadow: none;
}

.accordion-button:hover {
  background: none;
}

.icon {
  font-size: 1.2em;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  padding: 0 15px;
  background-color: none;
}

.accordion-content p {
  margin: 0;
  padding: 15px 0;
  font-size: 12px;
  text-align: left;
}

/* accordioooooooooooooooooon  КІНЕЦЦЦЦЦЦ */

.answer {
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 1),
    rgba(246, 226, 234, 1),
    rgba(232, 180, 201, 1),
    rgba(232, 71, 130, 0.5),
    rgba(231, 89, 229, 0.5)
  );
}

.questions {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.questions__header {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 20px;
  text-transform: uppercase;
  font-weight: 700;
  height: 120px;
}

.footer {
  margin-top: 80px;
  width: 100%;
  text-align: center;
  padding-bottom: 100px;
}

.footer__insta {
  margin: 10px 0 30px 0;
}
.footer__insta__text {
  margin-bottom: 15px;
}

.footer__call {
  text-transform: uppercase;
  font-weight: 300;
  font-size: 20px;
  margin-bottom: 20px;
}

.footer__social a {
  margin: 10px;
  text-decoration: none;
}

.footer__mail a {
  font-size: 20px;
  color: rgb(0, 60, 255);
}
.footer__mail {
  margin-top: 20px;
}

.icon__logo {
  width: 32px;
  height: auto;
}

.works__footer__info {
  margin-left: 20px;
  text-align: left;
  font-size: 14px;
}

.fixed-btn {
  position: fixed;
  min-width: 240px;
  height: 50px;
  background-color: #e84782;
  box-shadow: 2px 4px 8px rgba(0, 0, 0, 0.8);

  border: none;
  border-radius: 50px;
  font-size: 20px;
  bottom: 40px; /* Відстань від низу екрану, коли кнопка зафіксована */
  z-index: 1000;
  margin: 0 auto;
  text-align: center;
}

.fixed-btn a {
  color: black;
  text-decoration: none;
}

.fixed-btn:hover {
  border: 1px solid;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.6);
}

.kwiga-widget form {
  width: 100%;
}
