* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

p,
h1,
h2,
h3,
h4,
h5,
h6,
body {
  margin: 0;
}

ul {
  padding: 0;
  margin: 0;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
  color: currentColor;
}

button {
  font-family: inherit;
  background-color: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}

input,
textarea {
  font-family: inherit;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

svg {
  width: 24px;
  height: 24px;
  display: block;
}

address {
  font-style: normal;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  white-space: nowrap;
  -webkit-clip-path: inset(100%);
          clip-path: inset(100%);
  clip: rect(0 0 0 0);
  overflow: hidden;
}

body {
  font-family: "Poppins", sans-serif;
  color: #1c1c1c;
  background: #fff;
}

.no-scroll {
  overflow: hidden;
}

.container {
  max-width: 320px;
  padding: 0 16px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .container {
    max-width: 768px;
    padding: 0 24px;
  }
}
@media screen and (min-width: 1440px) {
  .container {
    max-width: 1440px;
    padding: 0 135px;
  }
}

.section {
  padding: 16px 0;
}
@media screen and (min-width: 768px) {
  .section {
    padding: 32px 0;
  }
}
@media screen and (min-width: 1440px) {
  .section {
    padding: 40px 0;
  }
}

.title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 600;
  font-size: 34px;
  line-height: 1.12;
  letter-spacing: -0.01em;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .title {
    font-size: 44px;
    line-height: 1.05;
  }
}

.subtitle {
  font-weight: 500;
  font-size: 20px;
  line-height: 1.5;
  text-transform: capitalize;
}

.text {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.57;
  color: rgba(0, 0, 0, 0.6);
}

.btn {
  display: inline-block;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.43;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #f5f5f7;
  background-color: #003df6;
  padding: 24px 49px;
  text-align: center;
  border-radius: 30px;
  transition: background-color 0.3s ease-in-out;
}
.btn:is(:hover, :focus) {
  background-color: #0030c3;
}

.header {
  padding: 16px 0;
  position: relative;
}
.header__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__logo {
  font-weight: 600;
  font-size: 18px;
  line-height: 1.67;
  text-transform: capitalize;
}
.header__nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  flex-direction: column;
  gap: 32px;
  background-color: #fff;
  padding: 32px 16px;
}
@media screen and (min-width: 768px) {
  .header__nav {
    display: flex;
    position: static;
    width: auto;
    flex-direction: row;
    gap: 16px;
    background-color: transparent;
    padding: 0;
  }
}
@media screen and (min-width: 1440px) {
  .header__nav {
    gap: 40px;
  }
}
.header__nav--active {
  display: flex;
}
.header__menu {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media screen and (min-width: 768px) {
  .header__menu {
    flex-direction: row;
    align-items: center;
    gap: 16px;
  }
}
@media screen and (min-width: 1440px) {
  .header__menu {
    gap: 40px;
  }
}
.header__menu-item {
  position: relative;
}
@media screen and (min-width: 768px) {
  .header__menu-item:hover .header__dropdown {
    display: flex;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}
.header__menu-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  font-size: 16px;
}
@media screen and (min-width: 768px) {
  .header__menu-link {
    font-size: 18px;
    font-weight: 400;
  }
}
.header__dropdown-icon {
  width: 8px;
  height: 8px;
  fill: #1c1c1c;
}
.header__dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fff;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  min-width: 200px;
  flex-direction: column;
  gap: 8px;
  z-index: 100;
  padding: 16px 0;
  display: none;
}
@media screen and (min-width: 768px) {
  .header__dropdown {
    display: flex;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
  }
}
.header__dropdown-item {
  width: 100%;
}
.header__dropdown-link {
  display: block;
  padding: 8px 16px;
  font-size: 16px;
  color: #1c1c1c;
  white-space: nowrap;
  transition: background-color 0.2s ease;
}
.header__dropdown-link:hover {
  background-color: #f5f5f7;
}
.header__menu-item--open .header__dropdown {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.header__burger {
  fill: #1c1c1c;
}
@media screen and (min-width: 768px) {
  .header__burger {
    display: none;
  }
}

.hero {
  background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../img/hero-bg.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 110px 0;
}
@media screen and (min-width: 768px) {
  .hero {
    padding: 150px 0;
  }
}
.hero__title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 600;
  font-size: 40px;
  line-height: 1.07;
  letter-spacing: -0.02em;
  text-align: center;
  color: #fff;
  margin-bottom: 24px;
}
@media screen and (min-width: 768px) {
  .hero__title {
    font-size: 50px;
    line-height: 1.2;
  }
}
@media screen and (min-width: 1440px) {
  .hero__title {
    max-width: 726px;
    margin: 0 auto 24px;
  }
}
.hero__text {
  font-size: 18px;
  text-align: center;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .hero__text {
    max-width: 592px;
    margin: 0 auto;
  }
}

@media screen and (min-width: 768px) {
  .partners {
    margin-top: -49px;
  }
}
.partners__wrapper {
  max-width: 100%;
  padding: 24px 0;
  background-color: #f5f5f7;
}
@media screen and (min-width: 768px) {
  .partners__wrapper {
    max-width: 692px;
    padding: 16px 0;
    border-radius: 30px;
  }
}
@media screen and (min-width: 1440px) {
  .partners__wrapper {
    max-width: 1097px;
  }
}
.partners__list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 50px;
  padding: 0 16px;
}
@media screen and (min-width: 768px) {
  .partners__list {
    flex-wrap: nowrap;
    gap: 44px;
    padding: 0 40px;
  }
}
@media screen and (min-width: 1440px) {
  .partners__list {
    gap: 124px;
    padding: 0 80px;
  }
}
.partners__list-item {
  flex-basis: calc((100% - 50px) / 2);
}
@media screen and (min-width: 768px) {
  .partners__list-item {
    flex-basis: calc((100% - 42px) / 5);
  }
}
@media screen and (min-width: 1440px) {
  .partners__list-item {
    flex-basis: calc((100% - 496px) / 5);
  }
}
.partners__list-item:last-child {
  display: none;
}
@media screen and (min-width: 768px) {
  .partners__list-item:last-child {
    display: block;
  }
}
.partners__item-img {
  margin: 0 auto;
}

.features__head {
  margin-bottom: 16px;
}
@media screen and (min-width: 768px) {
  .features__head {
    margin-bottom: 24px;
  }
}
.features .title {
  margin-bottom: 16px;
}
.features__head-text {
  font-size: 18px;
  text-align: center;
}
.features__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media screen and (min-width: 768px) {
  .features__list {
    flex-direction: row;
  }
}
.features__list-item {
  background-color: #f5f5f7;
  border-radius: 30px;
  padding: 16px;
}
@media screen and (min-width: 768px) {
  .features__list-item {
    flex-basis: calc((100% - 32px) / 3);
    padding: 24px;
  }
}
@media screen and (min-width: 1440px) {
  .features__list-item {
    padding: 32px;
  }
}
.features__item-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background-color: rgba(102, 149, 215, 0.41);
  margin-bottom: 16px;
}
.features__item-icon {
  fill: #003df6;
}
.features__item-info {
  min-height: 178px;
}
@media screen and (min-width: 768px) {
  .features__item-info {
    min-height: 222px;
  }
}
@media screen and (min-width: 1440px) {
  .features__item-info {
    min-height: 156px;
  }
}
.features .subtitle {
  margin-bottom: 8px;
}

.about__wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media screen and (min-width: 768px) {
  .about__wrapper {
    flex-direction: row;
    align-items: center;
    gap: 24px;
  }
}
@media screen and (min-width: 1440px) {
  .about__wrapper {
    gap: 80px;
  }
}
.about__img-wrapper {
  border-radius: 30px;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .about__img-wrapper {
    flex-basis: 50%;
    display: flex;
    align-self: normal;
  }
}
@media screen and (min-width: 1440px) {
  .about__img-wrapper {
    max-width: 505px;
    flex-shrink: 0;
  }
}
.about__img {
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .about__info {
    flex-basis: 50%;
  }
}
@media screen and (min-width: 1440px) {
  .about__info {
    flex-basis: 100%;
  }
}
.about .title {
  text-align: left;
  margin-bottom: 24px;
}
.about .text {
  margin-bottom: 24px;
}
.about .btn {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .about .btn {
    width: auto;
    padding: 24px 64px;
  }
}

.hotel-types .title {
  margin-bottom: 24px;
}
@media screen and (min-width: 1440px) {
  .hotel-types .title {
    margin-bottom: 40px;
  }
}
.hotel-types__list {
  max-width: 272px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media screen and (min-width: 768px) {
  .hotel-types__list {
    max-width: 578px;
    flex-direction: row;
    flex-wrap: wrap;
  }
}
@media screen and (min-width: 1440px) {
  .hotel-types__list {
    max-width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .hotel-types__list-item {
    flex-basis: calc((100% - 16px) / 2);
  }
}
@media screen and (min-width: 1440px) {
  .hotel-types__list-item {
    flex-basis: calc((100% - 48px) / 4);
  }
}
.hotel-types__item-link {
  text-align: center;
}
.hotel-types__item-img {
  width: 100%;
  height: 150px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 30px;
  margin-bottom: 8px;
}
@media screen and (min-width: 768px) {
  .hotel-types__item-img {
    height: 224px;
    margin-bottom: 16px;
  }
}

.popular-hotels .title {
  margin-bottom: 16px;
}
@media screen and (min-width: 768px) {
  .popular-hotels .title {
    margin-bottom: 24px;
  }
}
@media screen and (min-width: 1440px) {
  .popular-hotels .title {
    margin-bottom: 40px;
  }
}
.popular-hotels__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media screen and (min-width: 768px) {
  .popular-hotels__list {
    flex-direction: row;
  }
}
.popular-hotels__list-item {
  border-radius: 30px;
  background-color: #f5f5f7;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .popular-hotels__list-item {
    flex-basis: calc((100% - 16px) / 2);
  }
}
@media screen and (min-width: 1440px) {
  .popular-hotels__list-item {
    flex-basis: calc((100% - 32px) / 3);
  }
}
.popular-hotels__list-item:last-child {
  display: none;
}
@media screen and (min-width: 1440px) {
  .popular-hotels__list-item:last-child {
    display: block;
  }
}
.popular-hotels__item-img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}
.popular-hotels__item-info {
  display: flex;
  justify-content: space-between;
  padding: 18px;
  min-height: 141px;
}
.popular-hotels__item-title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.4;
  margin-bottom: 8px;
}
.popular-hotels__item-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 8px;
}
.popular-hotels__item-star {
  width: 16px;
  height: 16px;
  fill: #f7cc46;
}
.popular-hotels__item-rating-value {
  font-size: 14px;
  line-height: 1.57;
  color: rgba(0, 0, 0, 0.6);
}
.popular-hotels__item-location {
  display: flex;
  align-items: center;
  gap: 8px;
}
.popular-hotels__item-location-icon {
  width: 12px;
  height: 16px;
  fill: #1c1c1c;
}
.popular-hotels__item-location-value {
  font-size: 14px;
  line-height: 1.57;
  color: rgba(0, 0, 0, 0.6);
}
.popular-hotels__item-price {
  text-align: right;
  font-size: 12px;
  line-height: 1.25;
  color: rgba(0, 0, 0, 0.6);
}
.popular-hotels__item-price--accent {
  display: block;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 1.2;
  color: #003df6;
  margin-top: 7px;
}
.popular-hotels .btn {
  width: 100%;
  border-radius: 0;
}

.testimonials .title {
  margin-bottom: 24px;
}
@media screen and (min-width: 1440px) {
  .testimonials .title {
    margin-bottom: 40px;
  }
}
.testimonials__slider {
  margin-bottom: 40px;
}
.testimonials__list-item {
  padding: 24px;
  border-radius: 30px;
  background-color: #f5f5f7;
  height: auto;
}
@media screen and (min-width: 768px) {
  .testimonials__list-item {
    padding: 32px;
  }
}
@media screen and (min-width: 1440px) {
  .testimonials__list-item {
    padding: 40px;
  }
}
.testimonials__item-rating {
  display: flex;
  gap: 6px;
  margin-bottom: 16px;
}
@media screen and (min-width: 768px) {
  .testimonials__item-rating {
    margin-bottom: 24px;
  }
}
.testimonials__item-star {
  width: 22px;
  height: 22px;
  fill: #f7cc46;
}
.testimonials__item-text {
  font-size: 18px;
  margin-bottom: 16px;
}
@media screen and (min-width: 768px) {
  .testimonials__item-text {
    margin-bottom: 24px;
  }
}
.testimonials__item-name {
  line-height: 1.87;
  color: rgba(0, 0, 0, 0.6);
  font-weight: 500;
}
.testimonials__pagination {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}
.testimonials__pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  opacity: 1;
  transition: background-color 0.3s ease;
  margin: 0 8px;
}
.testimonials__pagination .swiper-pagination-bullet {
  background-color: #bcf;
}
.testimonials__pagination .swiper-pagination-bullet-active {
  background-color: #003df6;
}

.gallery {
  display: none;
}
@media screen and (min-width: 1440px) {
  .gallery {
    display: block;
  }
}
.gallery__list {
  display: flex;
  align-items: center;
  gap: 24px;
}
.gallery__list-item {
  overflow: hidden;
  align-self: normal;
}
.gallery__item-img {
  border-radius: 24px;
  width: 100%;
  max-height: 232px;
  -o-object-fit: cover;
     object-fit: cover;
}

.contact__wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media screen and (min-width: 1440px) {
  .contact__wrapper {
    flex-direction: row;
    gap: 80px;
  }
}
@media screen and (min-width: 768px) {
  .contact__content {
    max-width: 470px;
  }
}
.contact .title {
  text-align: left;
  margin-bottom: 8px;
}
@media screen and (min-width: 768px) {
  .contact .title {
    margin-bottom: 20px;
  }
}
.contact__text {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(0, 0, 0, 0.6);
}
.contact__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}
@media screen and (min-width: 768px) {
  .contact__list {
    flex-direction: row;
    gap: 60px;
    margin-bottom: 40px;
  }
}
@media screen and (min-width: 768px) {
  .contact__list-item {
    flex-basis: 50%;
  }
}
.contact__item-label {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(0, 0, 0, 0.6);
}
.contact__item-text {
  font-size: 18px;
}
.contact__img {
  border-radius: 30px;
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .contact__img {
    height: 410px;
  }
}
@media screen and (min-width: 1440px) {
  .contact__img {
    height: 358px;
  }
}

.footer {
  background-color: #f5f5f7;
  padding: 24px 0;
}
@media screen and (min-width: 768px) {
  .footer {
    padding: 20px 0;
  }
}
.footer__wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media screen and (min-width: 768px) {
  .footer__wrapper {
    flex-direction: row;
    justify-content: space-between;
  }
}
.footer__copyright, .footer__menu-link {
  line-height: 1.75;
  color: rgba(0, 0, 0, 0.6);
}
.footer__menu {
  display: flex;
  justify-content: space-between;
}
@media screen and (min-width: 768px) {
  .footer__menu {
    gap: 20px;
  }
}

.about-page__wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media screen and (min-width: 768px) {
  .about-page__wrapper {
    gap: 24px;
  }
}
@media screen and (min-width: 1440px) {
  .about-page__wrapper {
    flex-direction: row;
    gap: 80px;
  }
}
@media screen and (min-width: 1440px) {
  .about-page__info {
    flex-basis: 50%;
  }
}
.about-page__title {
  font-weight: 500;
  font-size: 20px;
  line-height: 1.5;
  margin-bottom: 16px;
}
@media screen and (min-width: 768px) {
  .about-page__title {
    margin-bottom: 24px;
  }
}
.about-page__description {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media screen and (min-width: 768px) {
  .about-page__description {
    flex-direction: row;
    gap: 40px;
  }
}
@media screen and (min-width: 1440px) {
  .about-page__img-wrapper {
    flex-shrink: 0;
    flex-basis: 50%;
    align-self: normal;
  }
}
.about-page__img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 30px;
}
@media screen and (min-width: 768px) {
  .about-page__img {
    height: 300px;
  }
}
@media screen and (min-width: 1440px) {
  .about-page__img {
    height: 406px;
  }
}

.hotels__list {
  display: flex;
  flex-direction: column;
}
.hotels__list-item {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 16px 0;
}
@media screen and (min-width: 768px) {
  .hotels__list-item {
    gap: 24px;
    padding: 32px 0;
  }
}
@media screen and (min-width: 1440px) {
  .hotels__list-item {
    flex-direction: row;
    gap: 84px;
    padding: 40px 0;
  }
}
.hotels .title {
  text-align: left;
}
@media screen and (min-width: 1440px) {
  .hotels .title {
    max-width: 302px;
    width: 100%;
  }
}
.hotels__item-images {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 16px;
}
@media screen and (min-width: 768px) {
  .hotels__item-images {
    flex-direction: row;
  }
}
@media screen and (min-width: 768px) {
  .hotels__images-item {
    flex-basis: calc((100% - 32px) / 3);
  }
}
.hotels__item-img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 30px;
}
@media screen and (min-width: 768px) {
  .hotels__item-img {
    height: 240px;
  }
}
@media screen and (min-width: 1440px) {
  .hotels__item-img {
    height: 280px;
  }
}
.hotels__item-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 16px;
}
@media screen and (min-width: 768px) {
  .hotels__item-info {
    margin-bottom: 24px;
  }
}
@media screen and (min-width: 1440px) {
  .hotels__item-info {
    margin-bottom: 16px;
  }
}
.hotels__item-description-title {
  font-weight: 600;
  font-size: 18px;
  line-height: 1.22;
  text-transform: capitalize;
}
.hotels__item-description-text {
  line-height: 1.75;
  color: rgba(0, 0, 0, 0.6);
}
.hotels .btn {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .hotels .btn {
    width: auto;
  }
}

.legal {
  padding: 4rem 0;
  background-color: #f5f5f7;
  font-family: "Poppins", sans-serif;
  color: #232631;
}
.legal__title {
  font-size: 3rem;
  font-weight: 700;
  text-align: center;
  color: #2776e8;
  margin-bottom: 3rem;
}
.legal__section {
  margin-bottom: 3rem;
  background: #fff;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.legal__section h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #fa6832;
  font-family: "Plus Jakarta Sans", sans-serif;
}
.legal__section p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1rem;
  color: rgba(0, 0, 0, 0.6);
}
.legal__section ul {
  padding-left: 1.5rem;
}
.legal__section ul li {
  list-style-type: disc;
  margin-bottom: 0.5rem;
  font-size: 1rem;
  color: rgba(0, 0, 0, 0.6);
}
.legal__section a {
  color: #07ac9e;
  text-decoration: underline;
}
.legal__section a:hover {
  color: #2776e8;
}

.cookie-banner {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #232631;
  color: rgba(255, 255, 255, 0.7);
  font-family: "Poppins", sans-serif;
  padding: 1.5rem 1rem;
  z-index: 1000;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}
.cookie-banner__content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 768px) {
  .cookie-banner__content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
.cookie-banner__text {
  font-size: 1rem;
  line-height: 1.5;
}
.cookie-banner__link {
  color: #f7cc46;
  text-decoration: underline;
}
.cookie-banner__link:hover {
  color: #07ac9e;
}
.cookie-banner__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.cookie-banner__btn {
  font-size: 0.9rem;
  padding: 0.6rem 1.2rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  font-family: "Plus Jakarta Sans", sans-serif;
}
.cookie-banner__btn--accept {
  background-color: #24ab70;
  color: #fff;
}
.cookie-banner__btn--accept:hover {
  background-color: #1b8154;
}
.cookie-banner__btn--decline {
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.7);
  color: rgba(255, 255, 255, 0.7);
}
.cookie-banner__btn--decline:hover {
  border-color: #fff;
  color: #fff;
}