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

:where(ul, ol):where([class]) {
  padding-left: 0;
}

body,
:where(blockquote, figure, fieldset):where([class]) {
  margin: 0;
}

:where(
  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  p,
  ul,
  ol,
  dl
):where([class]) {
  margin-block: 0;
}

:where(dd[class]) {
  margin-left: 0;
}

:where(fieldset[class]) {
  padding: 0;
  border: none;
}

:where(ul[class]) {
  list-style: none;
}

:where(address[class]) {
  font-style: normal;
}

p {
  --paragraphMarginBottom: 24px;

  margin-block: 0;
}

p:where(:not([class]):not(:last-child)) {
  margin-bottom: var(--paragraphMarginBottom);
}

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

button {
  font: inherit;
}

a:where([class]) {
  display: inline-flex;
}

button {
  cursor: pointer;
}

button {
  -webkit-tap-highlight-color: transparent;
}

svg * {
  transition-property: fill, stroke;
}

@media (prefers-reduced-motion: reduce) {
  *,
  ::before,
  ::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  font-family: Arial, sans-serif;
}

html {
  scroll-behavior: smooth;
}

.rooms,
.about-rating,
.requirements,
.reviews,
.faq {
  scroll-margin-top: 10vw;
}

@media (max-width: 980px) {
  .rooms,
  .about-rating,
  .requirements,
  .reviews,
  .faq {
    scroll-margin-top: 100px;
  }
}

:root {

  --purple: #7525FE;
  --pink: #9b51e0;
  --pink-02: #F0C3FF86;
  --grey-01: #F5F5FC; /*бэкграунд хедера*/
  --grey-02: #707070; /*в карточке*/
  --grey-03: #54595F; /*в хедере*/
  --grey-04: #54595F16;
  --grey-05: #F9FBFF;
  --dark: #0C003B;
  --white: white;

  --card-gradient: linear-gradient(135deg, #e6f4fc 0%, #f5eefc 100%);

  --container-padding-x: 16px;
  --continer-width: 1320px;

  --header-height: 90px;
  --header-height-mobile: 150px;
}

.wrapper {
  width: 100%;
  max-width: var(--continer-width);
  margin-inline: auto;
  padding-inline: var(--container-padding-x);
}

h1 {
  font-size: 24px;
}

h2 {
  font-size: 32px;
}

h3 {
  font-size: 28px;
  font-weight: normal;
}

p {
  font-size: 20px;
  color: var(--grey-02);
}

@media (max-width: 980px) {
  h2 {
    font-size: 28px;
  }

  p {
    font-size: 16px;
  }
}

a {
  text-decoration: none;
  color: inherit;
  outline: none;
}

.button {
  background-color: var(--purple);
  color: var(--white);
  font-size: 20px;
  border-radius: 50px;
  padding: 15px 40px;
  transition: background-color 0.3s ease, color 0.3s ease, border 0.3s ease;

  &:hover {
    border: 1px solid var(--purple);
    color: var(--purple);
    background-color: var(--white);
  }
}


/* Burger */
.burger {
  display: none;
  --gap: 5px;
  --height-bar: 2.5px;
  --pos-y-bar-one: 0;
  --pos-y-bar-three: 0;
  --scale-bar: 1;
  --rotate-bar-one: 0;
  --rotate-bar-three: 0;
  width: 25px;

  flex-direction: column;
  gap: var(--gap);
  cursor: pointer;
  position: fixed;
}

@media (max-width: 980px) {
  .burger {
    display: flex;
    position: fixed;
    top: calc(var(--header-height) / 2);
    left: 90%;
    transform: translate(-50%, -50%);
  }
}

.bar {
  position: relative;
  height: var(--height-bar);
  width: 100%;
  border-radius: .5rem;
  background-color: var(--purple);
}

.bar--1 {
  top: var(--pos-y-bar-one);
  transform: rotate(var(--rotate-bar-one));
  transition: top 200ms 100ms, transform 100ms;
}

.bar--2 {
  transform: scaleX(var(--scale-bar));
  transition: transform 150ms 100ms;
}

.bar--3 {
  bottom: var(--pos-y-bar-three);
  transform: rotate(var(--rotate-bar-three));
  transition: bottom 200ms 100ms, transform 100ms;
}

.check-icon:checked + .burger > .bar--1 {
  transition: top 200ms, transform 200ms 100ms;
}

.check-icon:checked + .burger > .bar--3 {
  transition: bottom 200ms, transform 200ms 100ms;
}

.check-icon:checked + .burger {
  --pos-y-bar-one: calc(var(--gap) + var(--height-bar));
  --pos-y-bar-three: calc(var(--gap) + var(--height-bar));
  --scale-bar: 0;
  --rotate-bar-one: 45deg;
  --rotate-bar-three: -45deg;
}

/**/


.header {
  position: fixed;
  width: 100%;
  background-color: var(--grey-01);
}

.header-container {

  display: flex;
  flex-direction: row;
  align-items: center;

  height: var(--header-height);
  font-weight: bold;
  font-size: 17px;
}

.header-logo {
  width: 182px;
  height: 41px;
}

.navigation-menu {
  flex: 1;
}

@media (max-width: 980px) {

  .navigation-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: var(--header-height);
    left: 0;
    width: 100%;
    background: var(--grey-01);
    padding: 20px 0;
  }

  .navigation-items {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }
}

.check-icon:checked ~ .header-container .navigation-menu {
  display: flex;
}

.navigation-items {
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.navigation-item-link {
  color: var(--grey-03);

  &:hover {
    padding-bottom: 5px;
    border-bottom: 2px solid var(--purple);
  }
}

.navigation-item:last-child .navigation-item-link {
  color: var(--purple);
  padding: 12px 24px;
  border: 1px solid var(--purple);
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  &::before {
    width: 24px;
    height: 24px;
    display: inline-block;
    vertical-align: middle;
    content: "";
    margin-right: 10px;
    background-image: url("data:image/svg+xml,%0A%3Csvg xmlns='http://www.w3.org/2000/svg' version='1.1' xmlns:xlink='http://www.w3.org/1999/xlink' width='32' height='32' x='0' y='0' viewBox='0 0 682.667 682.667' style='enable-background:new 0 0 512 512' xml:space='preserve' class=''%3E%3Cg%3E%3Cdefs%3E%3CclipPath id='a' clipPathUnits='userSpaceOnUse'%3E%3Cpath d='M0 512h512V0H0Z' fill='%237525fe' opacity='1' data-original='%23000000'%3E%3C/path%3E%3C/clipPath%3E%3C/defs%3E%3Cg clip-path='url(%23a)' transform='matrix(1.33333 0 0 -1.33333 0 682.667)'%3E%3Cpath d='m0 0-433.385-165.437c-21.983-8.391-21.621-21.09.801-28.223l97.365-27.86 51.179-146.354c7.766-22.211 28.282-27.341 45.59-11.406l65.114 59.952 91.502-73.681c18.594-14.42 37.625-7.349 42.295 15.709l71.01 350.63C36.141-3.612 21.98 8.388 0 0Z' style='stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1' transform='translate(464.639 454.906)' fill='none' stroke='%237525fe' stroke-width='30' stroke-linecap='round' stroke-linejoin='round' stroke-miterlimit='10' stroke-dasharray='none' stroke-opacity='' data-original='%23000000' opacity='1'%3E%3C/path%3E%3Cpath d='m0 0 260.809 133.243L93.535-44.497l-29.594-119.86' style='stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1' transform='translate(130.728 234.059)' fill='none' stroke='%237525fe' stroke-width='30' stroke-linecap='round' stroke-linejoin='round' stroke-miterlimit='10' stroke-dasharray='none' stroke-opacity='' data-original='%23000000' opacity='1'%3E%3C/path%3E%3Cpath d='m0 0 156.959-126.387' style='stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1' transform='translate(225.052 188.92)' fill='none' stroke='%237525fe' stroke-width='30' stroke-linecap='round' stroke-linejoin='round' stroke-miterlimit='10' stroke-dasharray='none' stroke-opacity='' data-original='%23000000' opacity='1'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
  }

  &:hover {
    color: var(--white);
    background-color: var(--purple);

    &::before {
      background-image: url("data:image/svg+xml,%0A%3Csvg xmlns='http://www.w3.org/2000/svg' version='1.1' xmlns:xlink='http://www.w3.org/1999/xlink' width='32' height='32' x='0' y='0' viewBox='0 0 682.667 682.667' style='enable-background:new 0 0 512 512' xml:space='preserve' class=''%3E%3Cg%3E%3Cdefs%3E%3CclipPath id='a' clipPathUnits='userSpaceOnUse'%3E%3Cpath d='M0 512h512V0H0Z' fill='%23ffffff' opacity='1' data-original='%23000000'%3E%3C/path%3E%3C/clipPath%3E%3C/defs%3E%3Cg clip-path='url(%23a)' transform='matrix(1.33333 0 0 -1.33333 0 682.667)'%3E%3Cpath d='m0 0-433.385-165.437c-21.983-8.391-21.621-21.09.801-28.223l97.365-27.86 51.179-146.354c7.766-22.211 28.282-27.341 45.59-11.406l65.114 59.952 91.502-73.681c18.594-14.42 37.625-7.349 42.295 15.709l71.01 350.63C36.141-3.612 21.98 8.388 0 0Z' style='stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1' transform='translate(464.639 454.906)' fill='none' stroke='%23ffffff' stroke-width='30' stroke-linecap='round' stroke-linejoin='round' stroke-miterlimit='10' stroke-dasharray='none' stroke-opacity='' data-original='%23000000' opacity='1' class=''%3E%3C/path%3E%3Cpath d='m0 0 260.809 133.243L93.535-44.497l-29.594-119.86' style='stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1' transform='translate(130.728 234.059)' fill='none' stroke='%23ffffff' stroke-width='30' stroke-linecap='round' stroke-linejoin='round' stroke-miterlimit='10' stroke-dasharray='none' stroke-opacity='' data-original='%23000000' opacity='1' class=''%3E%3C/path%3E%3Cpath d='m0 0 156.959-126.387' style='stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1' transform='translate(225.052 188.92)' fill='none' stroke='%23ffffff' stroke-width='30' stroke-linecap='round' stroke-linejoin='round' stroke-miterlimit='10' stroke-dasharray='none' stroke-opacity='' data-original='%23000000' opacity='1' class=''%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    }

  }

}

.main-block {
  padding-top: var(--header-height);
}


.hero-block {
  background-image: linear-gradient(to bottom, var(--grey-01) 10%, var(--white) 100%);
}

.hero-block_wrapper {
  padding-top: 90px;
  display: flex;
}

.hero_text-block {
  width: 60%;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.fof {
  justify-content: center;
  align-items: center;
}

.fof-btn {
  margin-inline: auto;
}

.hero_title {
  font-size: 44px;
  color: var(--dark);
}

.hero_text {
  font-size: 20px;
  color: var(--grey-02);
}

.hero_link {
  margin-right: auto;
}

.hero_arrow-block {
  padding-top: 50px;
}

.hero_arrow {
  width: 48px;
  height: 19px;
  animation: float 2s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0);
  }
}

.hero_image-block {
  display: flex;
  flex: 1;
  justify-content: center;
}

.hero_image {
  height: 647px;
}

.fof-img {
  height: 323px;
  width: auto;
}

@media (max-width: 980px) {

  .hero-block_wrapper {
    flex-direction: column;
    padding-top: 10px;
  }

  .hero_text-block {
    width: auto;
  }

  .hero_title {
    font-size: 32px;
  }

  .hero_arrow-block {
    display: none;
  }

  .hero_link {
    margin-inline: auto;
    margin-bottom: 20px;
  }

  .hero_image {
    width: auto;
    height: 347px;
  }
}

.about-rating_title,
.about-rating_text {
  padding-inline: 10px;
}

.about-rating_title {
  margin: 20px 0;
}

.about-rating_text {
  margin-bottom: 20px;
}

.about-rating_bullets {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

@media (max-width: 980px) {
  .about-rating_bullets {
    grid-template-columns: 1fr;
  }
}

.about-rating_bullets-card {
  display: flex;
  padding: 10px;
}

.about-rating_bullets-card-title {
  margin: 8px 0 16px;
}

.about-rating_bullets-card-image {
  margin-right: 10px;
}


.rooms-block_title {
  margin: 20px 0;
}

.rooms-block_title,
.rooms-block_text {
  padding: 0 10px;
}

.rooms-block_list {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.rooms-block_list-card {
  display: grid;
  grid-template-columns: 2fr 1fr;
  background-image: var(--card-gradient);
  border-radius: 5px;
  padding: 40px;
  gap: 30px;
}

@media (max-width: 980px) {
  .rooms-block_list-card {
    grid-template-columns: 1fr;
    padding: 10px;
  }
}

.rooms-block_list-card-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.rooms-block_list-card-title {
  display: flex;
  gap: 20px;
  align-items: center;
}

@media (max-width: 980px) {
  .rooms-block_list-card-title {
    flex-direction: column;
  }
}

.rooms-block_list-card-logo {
  width: 55px;
  height: 55px;
}

.rooms-block_list-card-name {
  font-size: 32px;
  color: var(--dark);
}

.rooms-block_list-card-more {
  color: var(--purple);
  font-size: 18px;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  margin-right: auto;
  border-bottom: 1px dashed;
}

.rooms-block_list-card-more:hover {
  transform: scale(1.05);
}

.rooms-block_list-card-more::after {
  content: '';
  display: inline-block;
  width: 32px;
  height: 32px;
  background-image: url("data:image/svg+xml,%0A%3Csvg xmlns='http://www.w3.org/2000/svg' version='1.1' xmlns:xlink='http://www.w3.org/1999/xlink' width='32' height='32' x='0' y='0' viewBox='0 0 31.49 31.49' style='enable-background:new 0 0 512 512' xml:space='preserve' class=''%3E%3Cg%3E%3Cpath d='M21.205 5.007a1.112 1.112 0 0 0-1.587 0 1.12 1.12 0 0 0 0 1.571l8.047 8.047H1.111A1.106 1.106 0 0 0 0 15.737c0 .619.492 1.127 1.111 1.127h26.554l-8.047 8.032c-.429.444-.429 1.159 0 1.587a1.112 1.112 0 0 0 1.587 0l9.952-9.952a1.093 1.093 0 0 0 0-1.571l-9.952-9.953z' style='' fill='%237525fe' data-original='%231e201d' opacity='1'%3E%3C/path%3E%3C/g%3E%3C/svg%3E");
  background-size: contain;
  margin-left: 15px;
}


.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 9;
}

.modal-overlay.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.rooms-block_list-card-more-modal {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;

  width: 66.66vw;
  max-width: 1000px;
  max-height: 100vh;

  overflow-y: auto;
  overscroll-behavior: contain;

  display: flex;
  flex-direction: column;
  justify-content: flex-start;

  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  background-color: var(--white);
}

@media (max-width: 980px) {
  .rooms-block_list-card-more-modal {
    width: 95vw;

  }
}

.rooms-block_list-card-more-modal.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.modal-head {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  background-color: var(--dark);
  color: var(--white);
  padding: 10px;
}

.modal-close {
  margin-left: auto;
  cursor: pointer;
}

.modal-close::after {
  content: '';
  display: inline-block;
  width: 32px;
  height: 32px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' version='1.1' xmlns:xlink='http://www.w3.org/1999/xlink' width='32' height='32' x='0' y='0' viewBox='0 0 48 48' style='enable-background:new 0 0 512 512' xml:space='preserve'%3E%3Cg%3E%3Cpath d='M9.15 9.15c-8.19 8.19-8.19 21.51 0 29.7 4.09 4.09 9.47 6.14 14.85 6.14s10.76-2.05 14.85-6.14c8.19-8.19 8.19-21.51 0-29.7-8.19-8.19-21.51-8.19-29.7 0zm28.29 28.29c-7.41 7.41-19.46 7.41-26.87 0s-7.41-19.46 0-26.87c3.7-3.7 8.57-5.56 13.44-5.56s9.73 1.85 13.44 5.56c7.39 7.4 7.39 19.46-.01 26.87z' fill='%23ffffff' opacity='1' data-original='%23000000'%3E%3C/path%3E%3Cpath d='M33.55 14.45a.996.996 0 0 0-1.41 0L24 22.59l-8.13-8.13a.996.996 0 1 0-1.41 1.41L22.59 24l-8.13 8.13a.996.996 0 0 0 .71 1.7c.26 0 .51-.1.71-.29L24 25.41l8.13 8.13c.2.2.45.29.71.29s.51-.1.71-.29a.996.996 0 0 0 0-1.41L25.41 24l8.13-8.13c.4-.39.4-1.03.01-1.42z' fill='%23ffffff' opacity='1' data-original='%23000000'%3E%3C/path%3E%3C/g%3E%3C/svg%3E");
  background-size: contain;
}

.modal-logo {
  width: 41px;
  height: 41px;
  margin: 10px;
}

.modal-title {
  font-weight: normal;
}

.modal-info-block {
  display: flex;
  flex-direction: column;
  padding: 30px;
  gap: 20px;
}

.modal-info-block-link {
  margin-inline: auto;
}

.modal-info-block-title,
.modal-info-block-topic-title {
  color: var(--dark);
}

.modal-info-block-topic,
.modal-ul {
  font-size: 16px;
  line-height: 1.4;
  color: var(--grey-02);
}

.modal-info-block-promo {
  color: var(--purple);
  font-weight: bold;
  font-size: 26px;
}

.modal-info-promos {
  display: flex;
  gap: 20px;
}

@media (max-width: 980px) {
  .modal-info-promos {
    flex-direction: column;
  }
}

.modal-info-promos-side {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-inline: auto;
}

.rooms-block_list-card-links {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.rooms-block_list-card-link {
  font-size: 16px;
}

.rooms-block_list-card-link:nth-of-type(2) {
  background-color: var(--pink);

  &:hover {
    border: 1px solid var(--pink);
    color: var(--pink);
    background-color: var(--white);
  }
}


@media (max-width: 980px) {
  .rooms-block_list-card-links {
    flex-direction: column;
  }

  .rooms-block_list-card-link {
    margin-inline: auto;
  }
}


.rooms-block_list-card-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 15px;
  box-shadow: 0 0 5px 2px var(--grey-04);
  border-radius: 5px;
  background-color: var(--white);
  padding: 20px;
}

.rooms-block_list-card-bonus {
  font-size: 22px;
  color: var(--purple);
  font-weight: bold;
}

.rooms-block_list-card-bonus-count {
  font-size: 35px;
  color: var(--dark);
  font-weight: bold;
}

.requirements {
  margin-top: 40px;
  padding: 20px 0;
  background-image: linear-gradient(to right, var(--white) 40%, var(--pink-02) 100%);
}

.requirements-block {
  display: flex;
  flex-direction: column;
}

.requirements-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.requirements-title,
.reviews-title,
.faq {
  padding: 30px 0;
}

.requirements-card {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding: 20px;
}

@media (max-width: 980px) {
  .requirements-card {
    grid-template-columns: 1fr;
    padding: 10px 0;
  }

  .requirements-card-imagearea {
    display: none;
  }
}

.requirements-card-textarea {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.requirements-card-text {
  line-height: 1.5;
}

.requirements-card-notice {
  background-color: var(--grey-05);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.requirements-card-notice-normal,
.requirements-card-notice-bold {
  font-size: 16px;
  color: var(--dark);
  line-height: 1.5;
}

.requirements-card-notice-bold {
  font-weight: bold;
}

.requirements-link {
  margin-top: 20px;
  margin-inline: auto;
}

@media (max-width: 980px) {
  .requirements-link {
    font-size: 16px;
  }
}

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

.swiper-slide {
  padding-top: 40px;
}

.swiper-slide-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.swiper-slide-text {
  font-style: italic;
  color: var(--dark);
  text-align: center;
  line-height: 1.5;
}

.swiper-slide-above {
  display: flex;
  margin-top: 25px;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.swiper-slide-player {
  display: flex;
  flex-direction: column;
  font-size: 14px;
  gap: 5px;
}

.swiper-slide-player-name {
  font-weight: bold;
}

.swiper-slide-player-name,
.swiper-slide-player-room {
  font-size: 14px;
  color: var(--dark);
}

.faq-title {
  margin-bottom: 30px;
  color: var(--dark);
}

.question {
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  cursor: pointer;
  position: relative;
  font-weight: bold;
  font-size: 20px;
}

.questions__details .question::after {
  content: "+";
  display: flex;
  align-items: center;
  justify-content: center;
  height: 20px;
  width: 20px;
  font-size: 30px;
  font-weight: normal;
  color: var(--purple);
  transition: all 0.3s ease-in-out;
  margin-left: auto;
}

.questions__details .question:hover::after {
  opacity: 80%;
}

.questions__details[open] .question::after {
  transform: rotate(45deg);
}

.questions__details[open] + .answer {
  grid-template-rows: 1fr;
  border-bottom: var(--purple) 2px solid;
  padding-bottom: 10px;
  margin-bottom: 20px;
}

.questions__details {
  border-bottom: var(--white) 2px solid;

}

.questions__details[open] {
  border-bottom: var(--white) 2px;
}

.faq__accordion {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0 auto;
}

.answer {
  display: grid;
  grid-template-rows: 0fr;
  transition-duration: 0.3s;
}

.answer-body {
  overflow: hidden;
  margin-top: 20px;
  text-align: justify;
}


.footer {
  padding: 25px 0;
  background-color: var(--dark);
  text-align: center;
}

.fof-footer{
  margin-bottom: auto;
}

.footer-text {
  color: var(--white);
  font-size: 14px;
}