@import url("reset.css");

@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&display=swap");

/* ************COMMON************ */

:root {
  --color-text: #000000;
  --color-bg: #FFFFFF;
  --color-border: rgba(0, 0, 0, 0.1);
  --spacing-unit: 1rem;
  --scrollbar-width: 17px;
}

html {
  scrollbar-gutter: stable;
  overflow-y: scroll;
}

.logo {
  display: inline-block;
}

.logo img {
  height: 2.5rem;
  width: auto;
}

body {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--color-text);
  background-color: var(--color-bg);
  letter-spacing: -0.01em;
  padding-top: 5rem; /* Account for fixed header */
}

body.menu-open {
  overflow: hidden;
  padding-right: 0;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--color-bg);
  z-index: 1000;
  border-bottom: 1px solid var(--color-border);
}

body.menu-open .header {
  width: 100%;
  padding-right: 0;
}

[class*="__container"] {
  max-width: 90rem;
  margin: 0 auto;
  padding: 0 var(--spacing-unit);
}

.button {
  font-size: 0.875rem;
  padding: 0.75rem 1.5rem;
  border: 1px solid var(--color-text);
  background: transparent;
  color: var(--color-text);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
}

.button:hover {
  background: var(--color-text);
  color: var(--color-bg);
}

.title {
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.wrapper {
  min-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  overflow: hidden;
}

/* ************HEADER************ */
.header__container {
  max-width: 90rem;
  margin: 0 auto;
  padding: 1.5rem 2rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  box-sizing: border-box;
  width: 100%;
  position: relative;
}

.header__menu-btn {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  justify-self: start;
  transition: opacity 0.3s ease;
}

.header__menu-btn:hover {
  opacity: 0.7;
}

.header__menu-text {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
}

.header__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  grid-column: 2;
  transition: opacity 0.3s ease;
}

.header__logo:hover {
  opacity: 0.7;
}

.header__logo img {
  height: 2.5rem;
  width: auto;
  display: block;
}

.header__utils {
  display: flex;
  align-items: center;
  gap: 2rem;
  justify-self: end;
}

.utils__btn {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
  color: var(--color-text);
  transition: opacity 0.3s ease;
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.utils__btn i {
  font-size: 1rem;
}

.utils__btn:hover {
  opacity: 0.7;
}

.utils__btn::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--color-text);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.utils__btn:hover::after {
  transform: scaleX(1);
}

/* Search Overlay */
.search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #FFFFFF;
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.search-overlay.active {
  opacity: 1;
  visibility: visible;
}

.search-overlay__content {
  position: relative;
  width: 100%;
  max-width: 90rem;
  margin: 0 auto;
  padding: 2rem;
}

.search-overlay__close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.5rem;
  color: #000000;
}

.search-overlay__form {
  margin-top: 6rem;
  width: 100%;
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
}

.search-overlay__input {
  width: 100%;
  padding: 1rem 0;
  font-size: 2rem;
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  background: none;
  outline: none;
  font-family: inherit;
}

.search-overlay__input::placeholder {
  color: rgba(0, 0, 0, 0.5);
}

.search-results {
  margin-top: 2rem;
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
}

.search-results__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.search-results__item {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.search-results__link {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  color: #000000;
  transition: opacity 0.3s ease;
}

.search-results__link:hover {
  opacity: 0.7;
}

.search-results__title {
  font-size: 1.25rem;
  font-weight: 400;
  margin: 0;
}

.search-results__description {
  font-size: 0.875rem;
  color: rgba(0, 0, 0, 0.6);
  margin: 0.5rem 0 0;
}

.no-results {
  text-align: center;
  padding: 2rem 0;
  color: rgba(0, 0, 0, 0.6);
}

/* Navigation Menu */
.header__nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--color-bg);
  padding: 1.5rem;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  z-index: 999;
  display: flex;
  overflow-y: auto;
}

.header__nav.active {
  transform: translateX(0);
}

.nav__content {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding-top: 4rem;
}

.nav__list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.nav__link {
  font-size: 4rem;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.2;
  transition: opacity 0.3s ease;
}

.nav__link:hover {
  opacity: 0.7;
}

.nav__footer {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-bottom: 2rem;
}

.nav__socials {
  display: flex;
  gap: 2rem;
}

.nav__social-link {
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: opacity 0.3s ease;
}

.nav__social-link:hover {
  opacity: 0.7;
}

.nav__copyright {
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  opacity: 0.7;
}

/* Menu Open State */
.menu-open {
  overflow: hidden;
}

.menu-open .header__nav {
  transform: translateX(0);
}

.menu-open .header__menu-btn span:first-child {
  transform: translateY(7px) rotate(45deg);
}

.menu-open .header__menu-btn span:nth-child(2) {
  opacity: 0;
}

.menu-open .header__menu-btn span:last-child {
  transform: translateY(-7px) rotate(-45deg);
}

/* Overlay */
.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 998;
}

.menu-open .nav-overlay {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 768px) {
  .header__container {
    padding: 1.5rem 1rem;
  }
  
  .header__utils {
    gap: 1rem;
  }
}

/* ****************PAGES**************** */
.page__main {
  padding-bottom: 160px;
}

/* *****************HOME**************** */

.main {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 0;
}

.main__container {
  max-width: 90rem;
  margin: 0 auto;
  padding: 0 var(--spacing-unit);
  text-align: center;
}

.main__title {
  font-size: 4.5rem;
  font-weight: 400;
  margin-bottom: 2rem;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.main__text {
  font-size: 1.25rem;
  max-width: 36rem;
  margin: 0 auto 3rem;
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.7);
}

.main__button {
  font-size: 1rem;
  padding: 1rem 2.5rem;
  border: 1px solid var(--color-text);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
}

.main__button:hover {
  background: var(--color-text);
  color: var(--color-bg);
}

.outro_home {
  background: url("../images/Home/CTA.jpg") center / cover no-repeat;
}

/* ************ABOUT**************** */

.main_about {
  position: relative;
  overflow: hidden;
}

.main__video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.main__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.main__video::-webkit-media-controls-panel {
  background: rgba(0, 0, 0, 0.5);
}

.main__video::-webkit-media-controls-volume-slider {
  background: #fff;
  border-radius: 25px;
  padding: 0 5px;
}

.video-unmute {
  position: absolute;
  bottom: 20px;
  right: 20px;
  z-index: 2;
  background: rgba(0, 0, 0, 0.6);
  border: 2px solid white;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  font-size: 20px;
  padding: 0;
  color: white;
}

.video-unmute:hover {
  background: rgba(0, 0, 0, 0.8);
  transform: scale(1.1);
}

.video-unmute.muted::after {
  content: '🔇';
}

.unmute-icon {
  width: 24px;
  height: 24px;
  filter: invert(1);
}

.main__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
}

.main__container_pages {
  position: relative;
  z-index: 1;
}

.main__title_white {
  color: #fff;
}

.main__text_white {
  color: #fff;
}

.about__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-top: 8.75rem;
  padding-bottom: 8.75rem;
}

.about__image {
  position: relative;
  max-width: 552px;
  height: 614px;
}

.about__image img {
  border-radius: 16px;
  max-width: 100%;
  height: 100%;
  object-fit: cover;
}

.about__title {
  margin-bottom: 1.5rem;
}

.about__text {
  max-width: 30rem;
  letter-spacing: 0.02em;
  line-height: 150%;
  margin-bottom: 3.5rem;
}

.about__text p:not(:last-child) {
  margin-bottom: 2.5rem;
}

.outro_about {
  background: url("../images/About/CTA.jpg") center / cover no-repeat;
}

/* **************SERVICES**************** */

.main_services {
  background: url("../images/Services/Services-Hero.jpg") center / cover no-repeat;
}

.services {
  padding: 8rem 0;
}

.services__container {
  max-width: 90rem;
  margin: 0 auto;
  padding: 0 var(--spacing-unit);
}

.services__title {
  font-size: 3.5rem;
  font-weight: 400;
  text-align: center;
  margin-bottom: 6rem;
  letter-spacing: -0.02em;
}

.services__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.item-services {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.item-services__image {
  width: 100%;
  aspect-ratio: 1;
  margin-bottom: 2rem;
  overflow: hidden;
}

.item-services__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.item-services__title {
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.item-services__text {
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 2rem;
  text-align: center;
  max-width: 24rem;
  color: rgba(0, 0, 0, 0.7);
}

.item-services__button {
  font-size: 0.875rem;
  padding: 0.75rem 2rem;
  border: 1px solid var(--color-text);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
}

.item-services__button:hover {
  background: var(--color-text);
  color: var(--color-bg);
}

.outro_services {
  background: url("../images/Services/CTA.jpg") center / cover no-repeat;
}

/* ************TESTIMONIAL**************** */

/* ****************OUTRO**************** */

.outro__container {
  padding-top: 8.75rem;
  padding-bottom: 8.75rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-color: #FDF5E6;
}

.outro__title {
  margin-bottom: 1.25rem;
  color: #000000;
}

.outro__text {
  max-width: 33.625rem;
  line-height: 150%;
  margin-bottom: 2.5rem;
  letter-spacing: 0.02em;
  color: #000000;
}

.outro__button {
  padding: 1.25rem 3rem;
  color: #000000;
  background-color: #FDF5E6;
  border: 2px solid #000000;
}

/* ****************FOOTER**************** */

.footer {
  padding: 4rem 0;
  background-color: #FFFFFF;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.footer__container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: center;
}

.footer__policy {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.footer__logo {
  justify-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer__logo img {
  height: 60px;
  width: auto;
  object-fit: contain;
}

.footer__copyright {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-align: right;
}

/* ****************ABOUT PAGE**************** */
.main__text_pages {
  max-width: 37.5rem;
}

.main__container_pages {
  padding-top: 300px;
}

.main_pages {
  min-height: 676px !important;
}

/* ****************SERVICES PAGE**************** */
.services-page__container {
  padding-top: 160px;
  max-width: 1200px;
  margin: 0 auto;
}

.services-page__item {
  margin-bottom: 132px;
  display: flex;
  justify-content: center;
}

.services-page__column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 97px;
  align-items: center;
  width: 100%;
}

.services-page__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 480px;
}

.services-page__title {
  margin-bottom: 24px;
  text-align: left;
}

.services-page__text {
  margin-bottom: 56px;
  font-size: 18px;
  line-height: 150%;
  letter-spacing: 0.02em;
  text-align: left;
}

.services-page__img {
  width: 100%;
  height: 614px;
  justify-self: end;
}

.services-page__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

/* ****************CONTACT PAGE****************/

.main_contact {
  background: url("../images/Contact/Contact-Hero.jpg") center / cover no-repeat;
}

.contact__container {
  display: flex;
  justify-content: space-between;
  gap: 109px;
  padding-top: 140px;
  padding-bottom: 140px;
  background-color: #FDF5E6;
}

.contact__title {
  margin-bottom: 48px;
  font-weight: 600;
  line-height: 110%;
  font-size: 40px;
}

.connect-contact {
  display: flex;
  flex-direction: column;
  align-items: start;
  row-gap: 32px;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.connect-contact__item {
  display: inline-flex;
  align-items: center;
  gap: 24px;
}

.connect-contant__type {
  margin-bottom: 4px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 110%;
  text-transform: uppercase;
}

.connect-contact__label {
  font-size: 22px;
  line-height: 150%;
  letter-spacing: 0.02em;
}

.contact__links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.contact__text {
  max-width: 545px;
  font-size: 18px;
  line-height: 150%;
  color: #000000;
}

.contact__text p:not(:last-child) {
  margin-bottom: 15px;
}

iframe {
  width: 100vw;
  height: 482px;
}

/* **************REVIEWS PAGE**************** */
.reviews__container {
  padding-top: 160px;
  padding-bottom: 160px;
}

.reviews__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 24px;
  row-gap: 96px;
}

.reviews__column {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  background-color: #FDF5E6;
}

.reviews__item {
  padding-top: 48px;
  padding-bottom: 56px;
  padding-right: 32px;
  padding-left: 32px;
}

.item-reviews {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.item-reviews__img {
  max-width: 46px;
  height: 36px;
  margin: 0 auto;
  margin-bottom: 46px;
}

.item-reviews__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.item-reviews__text {
  margin-bottom: 40px;
  font-size: 18px;
  letter-spacing: 0.02em;
  line-height: 150%;
}

.item-reviews__author {
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.01em;
  margin-bottom: 10px;
}

.item-reviews__geo {
  font-size: 14px;
  letter-spacing: 0.002em;
}

/* ******************PRICING PAGE******************** */
.pricing__container {
  padding-top: 140px;
  padding-bottom: 140px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.pricing__caption {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: 4%;
}

.pricing__title {
  font-weight: 600;
  font-size: 72px;
  margin-bottom: 24px;
}

.pricing__text {
  font-size: 22px;
  letter-spacing: 2%;
  margin-bottom: 88px;
}

.pricing__row {
  display: flex;
  align-items: stretch;
  gap: 24px;
  width: 100%;
}

.pricing__column {
  flex: 1;
  border: 2px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  transition: all 0.3s ease;
  display: flex;
  background-color: #FDF5E6;
}

.pricing__column:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.pricing__item {
  padding: 40px;
  padding-bottom: 48px;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.item-pricing__info {
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  margin-bottom: 32px;
}

.item-pricing__label {
  font-weight: 600;
  font-size: 24px;
  margin-bottom: 16px;
}

.item-pricing__cost {
  font-size: 48px;
  font-weight: 600;
  margin-bottom: 8px;
}

.item-pricing__cost span {
  font-size: 16px;
  color: #666;
}

.item-pricing__list {
  margin-bottom: 32px;
  flex-grow: 1;
  min-height: 200px;
}

.item-pricing__item {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 16px;
}

.item-pricing__item::before {
  content: "";
  background: url("../img/pricing/check.svg") 0 0 no-repeat;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.item-pricing__button {
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  color: #000000;
  padding: 16px 32px;
  background-color: #FDF5E6;
  border-radius: 30px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid #000000;
}

.item-pricing__button:hover {
  background-color: #1a2230;
}

.main_pricing {
  background: url("../images/Pricing/Pricing-Hero.jpg") center / cover no-repeat;
}

.outro_pricing {
  background: url("../images/Pricing/Pricing-CTA.jpg") center / cover no-repeat;
}

.team {
  background-color: #FDF5E6;
}

.team__container {
  padding-top: 140px;
  padding-bottom: 140px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.team__title {
  text-align: center;
  margin-bottom: 96px;
  max-width: 483px;
}

.team__row {
  display: grid;
  column-gap: 24px;
  row-gap: 96px;
  grid-template-columns: repeat(3, 1fr);
}

.team__item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.item-team__img {
  max-width: 360px;
  height: 363px;
  margin-bottom: 40px;
}

.item-team__img img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  object-fit: cover;
}

.item-team__name {
  max-width: 186px;
  font-size: 32px;
  font-weight: 600;
  line-height: 120%;
  text-align: center;
  margin-bottom: 12px;
}

.item-team__role {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 26px;
  letter-spacing: 2%;
}

.item-team__role span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.item-team__role span::after {
  content: "";
  background: url("../img/team/icons/star.svg") 0 0 no-repeat;
  width: 12px;
  height: 12px;
}

.item-team__text {
  font-size: 16px;
  text-align: center;
  letter-spacing: 2%;
  line-height: 150%;
  max-width: 328px;
  margin-bottom: 20px;
}

.item-team__icons {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* *************FAQ PAGE************** */
.faqs__container {
  padding-top: 140px;
  padding-bottom: 140px;
}

.faqs__title {
  text-align: center;
  margin-bottom: 80px;
}

.spollers-faq__item {
  width: 100%;
}

.spollers-faq__item:not(:last-child) {
  margin-bottom: 24px;
}

.spollers-faq__button {
  display: inline-block;
  border: 2px solid rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  border-radius: 8px;
  background-color: #FDF5E6;
}

.spollers-faq__button span {
  padding-left: 40px;
  padding-top: 32px;
  padding-bottom: 32px;
  font-weight: 600;
}

.spollers-faq__button img {
  padding-right: 34.5px;
}

.spollers-faq__text {
  max-height: 0;
  overflow: hidden;
  width: 100%;
  display: block;
}

.spollers-faq__item.active .spollers-faq__text {
  max-height: 1000px;
  max-height: calc(1000px + 16px);
}

.spollers-faq__item.active .spollers-faq__button {
  border-bottom: none;
  border-radius: 8px 8px 0px 0px;
}

.spollers-faq__item.active .spollers-faq__button span {
  padding-bottom: 32px;
}

.spollers-faq__item.active .spollers-faq__button img {
  transform: translate(-34px, 0px) rotate(180deg);
}

.spollers-faq__inner {
  padding-top: 20px;
  padding-left: 40px;
  border: 2px solid rgba(0, 0, 0, 0.1);
  border-radius: 0px 0px 8px 8px;
  line-height: 150%;
  padding-bottom: 20px;
  border-top: none;
  padding-right: 100px;
  background-color: #FDF5E6;
}

/* ****************TEAM PAGE**************** */
.director__container {
  padding-top: 140px;
  padding-bottom: 140px;
  display: flex;
  align-items: center;
  gap: 96px;
}

.director__title {
  margin-bottom: 16px;
}

.director__role {
  font-size: 22px;
  letter-spacing: 2%;
  margin-bottom: 40px;
}

.director__text {
  letter-spacing: 2%;
  line-height: 150%;
  max-width: 480px;
}

.director__text p:not(:last-child) {
  margin-bottom: 20px;
}

.director__img {
  max-width: 552px;
  height: 614px;
}

.director__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

/* ****************GALLERY SECTION**************** */
.gallery {
  background-color: #FDF5E6;
  padding: 80px 0;
}

.gallery__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 24px;
}

.gallery__item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 16px;
  width: 100%;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery__item:hover img {
  transform: scale(1.05);
}

@media (max-width: 992px) {
  .gallery {
    padding: 60px 0;
  }

  .gallery__grid {
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .gallery {
    padding: 50px 0;
  }

  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 16px;
  }

  .gallery__container {
    padding: 0 16px;
  }
}

@media (max-width: 480px) {
  .gallery {
    padding: 40px 0;
  }

  .gallery__grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(6, auto);
    gap: 16px;
  }

  .gallery__container {
    padding: 0 12px;
  }

  .gallery__item {
    aspect-ratio: 4/3;
  }
}

/* ****************RESOURCES**************** */
.resources__container {
  padding-top: 140px;
  padding-bottom: 140px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 24px;
  row-gap: 96px;
  justify-items: center;
}

.resources__img {
  max-width: 360px;
  height: 330px;
  margin-bottom: 32px;
}

.resources__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.resources__title {
  font-weight: 600;
  font-size: 24px;
  margin-bottom: 12px;
}

.resources__text {
  letter-spacing: 2%;
  line-height: 150%;
  max-width: 243px;
  margin-bottom: 32px;
}

.resources__button {
  background-color: #FDF5E6;
  color: #000000;
  font-weight: 600;
  letter-spacing: 2%;
  border: 2px solid #000000;
  border-radius: 64px;
}

/* ****************ADAPTIVE**************** */

@media (max-width: 992px) {
  .services__row {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  
  .footer__container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1rem;
  }
  
  .footer__copyright {
    text-align: center;
  }
}

@media (min-width: 47.999rem) {
  .menu__list {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
  }
}

@media (max-width: 995px) {
  .item-pricing__button {
    font-size: 19px;
  }
}

@media (max-width: 62.6875rem) {
  .resources__container {
    padding-top: 70px;
    padding-bottom: 70px;
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery__paggination {
    gap: 27px;
  }

  .gallery__row {
    grid-template-columns: repeat(2, 1fr);
  }

  .team__row {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 30px;
  }

  .director__container {
    flex-direction: column;
    padding-top: 70px;
    padding-bottom: 70px;
    gap: 10px;
    text-align: center;
  }

  .item-pricing {
    padding: 20px;
    padding-bottom: 30px;
  }

  .pricing__title {
    font-size: 39px;
  }

  .pricing__text {
    margin-bottom: 25px;
  }

  .item-pricing__button {
    padding: 16px 42px;
  }

  .footer__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
  }

  .footer__policy,
  .footer__copyright {
    justify-self: center;
    text-align: center;
    margin: 0.5rem 0;
  }

  .footer__logo {
    margin-bottom: 1rem;
  }

  .services-page__column {
    gap: 30px;
    font-size: 15px;
  }

  .services-page__title {
    font-size: 29px;
  }

  .reviews__row {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 30px;
    column-gap: 10px;
  }

  .reviews__item {
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 20px;
    padding-top: 20px;
    display: inline-block;
  }

  .item-reviews__text {
    font-size: 16px;
  }

  .item-reviews__author {
    font-size: 16px;
  }
}

@media (max-width: 47.999rem) {
  .spollers-faq__item.active .spollers-faq__button img {
    transform: translate(-10px, -10px) rotate(180deg);
  }

  .spollers-faq__button span {
    padding-top: 15px;
    padding-left: 10px;
    padding-bottom: 15px;
    font-weight: 600;
    font-size: 14px;
  }

  .spollers-faq__button img {
    padding-right: 10px;
  }

  .spollers-faq__inner {
    font-size: 16px;
    padding-left: 10px;
    line-height: 130%;
  }

  .pricing__container {
    text-align: center;
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .pricing__row {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .item-pricing__button {
    font-size: 17px;
    padding: 15px 32px;
  }

  .reviews__container {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .icon-menu {
    display: block;
    position: relative;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 1.875rem;
    flex: 0 0 1.875rem;
    width: 1.875rem;
    height: 1.125rem;
    cursor: pointer;
    z-index: 5;
  }

  .icon-menu span,
  .icon-menu::before,
  .icon-menu::after {
    content: "";
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    right: 0;
    position: absolute;
    width: 100%;
    height: 0.125rem;
    background-color: #000;
  }

  .icon-menu::before {
    top: 0;
  }

  .icon-menu::after {
    bottom: 0;
  }

  .contact__container {
    flex-direction: column;
    padding-top: 80px;
    gap: 50px;
    padding-bottom: 80px;
  }

  .icon-menu span {
    top: calc(50% - 0.0625rem);
  }

  .menu-open .icon-menu span {
    width: 0;
  }

  .menu-open .icon-menu::before {
    top: calc(50% - 0.0625rem);
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }

  .menu-open .icon-menu::after {
    bottom: calc(50% - 0.0625rem);
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }

  .menu__body {
    background-color: #fff;
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    padding: 9.375rem 0.938rem 1.875rem 0.938rem;
    overflow: auto;
    flex-direction: column;
    row-gap: 5rem;
  }

  .menu__body::before {
    content: "";
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    min-height: 5.75rem;
    background-color: #fff;
    border-bottom: 1px solid #000;
    z-index: 2;
  }

  .menu-open .menu__body {
    left: 0;
  }

  .menu-open .menu__body::before {
    left: 0;
  }

  .menu__item {
    text-align: center;
  }

  .menu__item:not(:last-child) {
    margin-bottom: 1.563rem;
  }

  .menu__link {
    font-size: 2rem;
  }

  .actions-header__button {
    padding: 0.75rem;
  }

  .main__container {
    padding-top: 12.5rem;
  }

  .main__container_pages {
    padding-top: 290px;
  }

  .main__title {
    font-size: 3rem;
  }

  .title {
    font-size: 2rem;
  }

  .about__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .about__container {
    flex-direction: column;
    padding-top: 4.375rem;
    padding-bottom: 4.375rem;
    gap: 4rem;
  }

  .services__container {
    padding-top: 4.375rem;
    padding-bottom: 4.375rem;
  }

  .testimonial__title {
    font-size: 1.5rem;
    margin-bottom: 2rem;
  }

  .testiomonial__caption {
    margin-bottom: 2rem;
  }

  .outro__container {
    padding-top: 4.375rem;
    padding-bottom: 4.375rem;
  }

  .logo {
    font-size: 1rem;
  }

  .services-page__column {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 20px;
    gap: 4rem;
  }
}

@media (max-width: 61.936rem) {
  .footer__container {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    row-gap: 0.938rem;
  }

  .logo {
    font-size: 2rem;
  }
}

@media (max-width: 530px) {
  .reviews__row {
    grid-template-columns: 1fr;
  }

  .team__row {
    grid-template-columns: 1fr;
  }

  .gallery__row {
    grid-template-columns: 1fr;
  }

  .resources__container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .pricing__container {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  
  .pricing__item {
    padding: 24px;
  }
  
  .item-pricing__cost {
    font-size: 36px;
  }
}

/* ************UTILITIES************ */
.text-center {
  text-align: center;
}

.text-uppercase {
  text-transform: uppercase;
}

.letter-spacing {
  letter-spacing: 0.1em;
}

.font-light {
  font-weight: 300;
}

.font-regular {
  font-weight: 400;
}

.font-medium {
  font-weight: 500;
}

.font-semibold {
  font-weight: 600;
}

/* ****************ACCOUNT PAGE**************** */
.account {
  padding: 120px 0;
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  background-color: var(--color-bg);
}

.account__container {
  max-width: 400px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

.account__title {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 2rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.account__form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form__group {
  display: flex;
  flex-direction: column;
}

.form__input {
  width: 100%;
  padding: 0.75rem 0;
  border: none;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.875rem;
  transition: border-color 0.3s ease;
  background: transparent;
  font-family: inherit;
}

.form__input::placeholder {
  color: var(--color-text);
  opacity: 0.6;
}

.form__input:focus {
  outline: none;
  border-color: var(--color-text);
}

.form__forgot-link {
  color: var(--color-text);
  font-size: 0.75rem;
  text-decoration: none;
  letter-spacing: 0.1em;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.form__forgot-link:hover {
  opacity: 1;
}

.form__submit {
  background-color: var(--color-text);
  color: var(--color-bg);
  padding: 1rem;
  border: none;
  font-size: 0.75rem;
  cursor: pointer;
  transition: opacity 0.3s ease;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 1rem;
}

.form__submit:hover {
  opacity: 0.8;
}

.form__login-link {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.875rem;
}

.form__login-link a {
  color: var(--color-text);
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.3s ease;
}

.form__login-link a:hover {
  opacity: 0.7;
}

/* ****************DASHBOARD PAGE**************** */
.dashboard {
  padding: 120px 0;
  min-height: calc(100vh - 200px);
  background-color: #FFFFFF;
}

.dashboard__container {
  max-width: 400px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

.dashboard__title {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 40px;
}

.dashboard__section {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding: 15px 0;
}

.dashboard__section:last-child {
  border-bottom: none;
}

.dashboard__section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.dashboard__section-title {
  font-size: 14px;
  font-weight: 400;
}

.dashboard__toggle {
  background: none;
  border: none;
  padding: 0;
  font-size: 14px;
  cursor: pointer;
}

.dashboard__section-content {
  margin-top: 15px;
  padding-left: 20px;
}

.dashboard__subsection {
  margin-bottom: 10px;
}

.dashboard__subsection:last-child {
  margin-bottom: 0;
}

.dashboard__link {
  color: #000000;
  text-decoration: none;
  font-size: 14px;
  transition: opacity 0.3s ease;
}

.dashboard__link:hover {
  opacity: 0.7;
}

.dashboard__signout {
  background: none;
  border: none;
  padding: 0;
  font-size: 14px;
  color: #000000;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.dashboard__signout:hover {
  opacity: 0.7;
}

@media (max-width: 480px) {
  .dashboard {
    padding: 80px 0;
  }

  .dashboard__container {
    padding: 0 15px;
  }
}