@import url("reset.css");

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Lato:wght@300;400;700&display=swap');

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

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  max-height: 100%;
  width: auto;
  object-fit: contain;
}

body {
  font-family: "Lato", sans-serif;
  font-size: 1.1rem;
  color: #303a4d;
}

[class*="__container"] {
  max-width: 72.624rem;
  margin: 0 auto;
  padding: 0 0.938rem;
}

.button {
  font-weight: 600;
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  transition: all 0.3s;
  color: #fff;
  background-color: #303a4d;
}

.title {
  font-family: "Playfair Display", serif;
  font-size: 3.5rem;
  font-weight: 600;
}

.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 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  z-index: 1000;
}

.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 5.75rem;
  flex-wrap: wrap;
  max-width: 74.624rem;
}

.header__logo {
  position: relative;
  z-index: 2;
  height: 60px;
  display: flex;
  align-items: center;
}

.header__navigation {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.menu__body {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.menu__link {
  font-weight: 600;
  position: relative;
}

.actions-header {
  display: flex;
  align-items: center;
  gap: 0.624rem;
}

.icon-menu {
  display: none;
  position: relative;
  width: 40px;
  height: 40px;
  cursor: pointer;
  z-index: 1000;
  background: transparent;
  border: none;
  padding: 8px;
  margin: 0;
}

.icon-menu span,
.icon-menu::before,
.icon-menu::after {
  content: "";
  transition: all 0.3s ease 0s;
  position: absolute;
  width: 24px;
  height: 3px;
  background-color: #303a4d;
  border-radius: 3px;
  left: 8px;
}

.icon-menu::before {
  top: 8px;
}

.icon-menu::after {
  bottom: 8px;
}

.icon-menu span {
  top: 50%;
  transform: translateY(-50%);
}

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

.menu-open .icon-menu::before {
  top: 50%;
  transform: rotate(-45deg);
}

.menu-open .icon-menu::after {
  bottom: 50%;
  transform: rotate(45deg);
}

.actions-header__button {
  font-weight: 600;
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border: 2px solid #303a4d;
  border-radius: 30px;
  transition: all 0.3s;
  position: relative;
  z-index: 2;
}

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

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

.main {
  min-height: 100vh;
  position: relative;
}

.main__container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-top: 19.188rem;
}

.main__caption {
  font-family: "Playfair Display", serif;
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-weight: 700;
  color: #fff;
  text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
}

.main__title {
  font-family: "Playfair Display", serif;
  font-size: 5.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: #fff;
  text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
}

.main__text {
  margin-bottom: 3.5rem;
  max-width: 33.375rem;
  line-height: 150%;
  letter-spacing: 0.02em;
  color: #fff;
  font-weight: 700;
  text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
}

.main__text p {
  margin-bottom: 1rem;
  color: #fff;
  font-weight: 700;
  text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
}

.main__text_bold {
  font-weight: 700;
  font-size: 1.5rem;
  margin-top: 1.5rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
}

.main__button {
  font-weight: 600;
  display: inline-block;
  padding: 1.25rem 3rem;
  border-radius: 30px;
  transition: all 0.3s;
  color: #fff;
  background-color: #303a4d;
  letter-spacing: 0.02em;
  font-size: 1.375rem;
  line-height: 110%;
}

.outro_home {
  background: #E6F3FF;
}

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

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

.about__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-top: 8.75rem;
  padding-bottom: 8.75rem;
  max-width: 1200px;
  margin: 0 auto;
}

.about__image {
  position: relative;
  max-width: 800px;
  height: 614px;
  flex: 1;
}

.about__content {
  flex: 1;
  padding-left: 2rem;
}

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

.about__title {
  font-family: "Playfair Display", serif;
  margin-bottom: 1.5rem;
}

.about__text {
  max-width: 100%;
  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/Home/pexels-davidmcbee-1546166.jpg") center/cover no-repeat;
  min-height: 100vh;
}

.services {
  background-color: #E8F5E9;
}

.services__container {
  padding-top: 4rem;
  padding-bottom: 8.75rem;
}

.services__title {
  text-align: center;
  margin-bottom: 5rem;
}

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

.item-services {
  display: flex;
  flex-direction: column;
  align-items: start;
  min-height: 100%;
}

.item-services__image {
  margin-bottom: 2rem;
  max-width: 360px;
  height: 421px;
  overflow: hidden;
  border-radius: 16px;
}

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

.item-services__image video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  display: block;
  background: #000;
}

.item-services__image video.rotate-180 {
  transform: rotate(180deg);
}

.item-services__image video.rotate-90 {
  transform: rotate(90deg);
}

.item-services__image video.rotate-270 {
  transform: rotate(270deg);
}

.item-services__title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.item-services__text {
  max-width: 21.5rem;
  line-height: 150%;
  margin-bottom: 2rem;
  flex-grow: 1;
  letter-spacing: 0.02em;
}

.item-services__button {
  background-color: inherit;
  border: 2px solid #303a4d;
  color: #303a4d;
}

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

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

.testimonial__container {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-direction: column;
  padding-top: 4rem;
  padding-bottom: 8.75rem;
}

.testiomonial__caption {
  font-family: "Playfair Display", serif;
  margin-bottom: 4rem;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 2.5rem;
  color: #303a4d;
}

.testimonial__title {
  margin-bottom: 4rem;
  font-size: 2rem;
  max-width: 40.75rem;
  line-height: 136%;
  font-weight: 500;
}

.item-testimonial__image {
  max-width: 64px;
  margin: 0 auto;
  margin-bottom: 1.063rem;
  height: 64px;
}

.item-testimonial__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.item-testimonial__title {
  margin-bottom: 0.25rem;
  font-weight: 600;
}

.item-testimonial__caption {
  font-size: 0.938rem;
}

.testimonial__steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  margin-bottom: 4rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 1rem;
}

.testimonial__step {
  background: #fff;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial__step:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.step__title {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #303a4d;
  line-height: 1.2;
}

.step__text {
  font-size: 1.1rem;
  line-height: 1.5;
  color: #303a4d;
  flex-grow: 1;
}

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

.outro__container {
  padding-top: 8.75rem;
  padding-bottom: 8.75rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.outro__content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.outro__title {
  font-family: "Playfair Display", serif;
  margin-bottom: 0;
  font-size: 3rem;
  line-height: 1.2;
}

.outro__highlight {
  font-size: 1.5rem;
  font-weight: 600;
  color: #303a4d;
  margin-bottom: 1.5rem;
}

.outro__features {
  list-style: none;
  margin: 0;
  padding: 0;
  margin-bottom: 2rem;
}

.outro__features li {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #303a4d;
}

.outro__description {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #303a4d;
  margin-bottom: 2rem;
}

.outro__buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.outro__button {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

.button--outline {
  background-color: transparent;
  border: 2px solid #303a4d;
  color: #303a4d;
}

.button--outline:hover {
  background-color: #303a4d;
  color: #fff;
}

.outro__image {
  height: 500px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

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

.footer {
  line-height: 150%;
}

.footer__container {
  padding-top: 3.25rem;
  padding-bottom: 3.25rem;
  max-width: 74.624rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
}

.footer__policy {
  font-weight: 600;
  letter-spacing: 0.02em;
  justify-self: start;
}

.footer__logo {
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 2rem;
}

.footer__copyright {
  font-weight: 600;
  letter-spacing: 0.02em;
  justify-self: end;
  margin-left: 2rem;
}

/* ****************ABOUT PAGE**************** */
.main__text_pages {
  max-width: 37.5rem;
  font-size: 1.5rem;
  line-height: 1.6;
}

.main__text_pages p {
  font-size: 1.5rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.main__container_pages {
  padding-top: 300px;
}

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

/* ****************SERVICES PAGE**************** */
.services-page__container {
  padding-top: 160px;
}

.services-page__item {
  margin-bottom: 132px;
}

.services-page__item:not(:last-child) {
  padding-bottom: 132px;
  margin-bottom: 132px;
  border-bottom: 1px solid rgba(48, 58, 77, 0.4);
}

.services-page__column {
  display: flex;
  align-items: center;
  gap: 97px;
}

.services-page__title {
  font-family: "Playfair Display", serif;
  margin-bottom: 24px;
}

.services-page__text {
  margin-bottom: 56px;
  max-width: 480px;
  font-size: 18px;
  line-height: 150%;
  letter-spacing: 0.02em;
}

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

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

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

.services-page__img video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  display: block;
  background: #000;
}

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

.main_contact {
  background: url("../images/Contact/contact page background.png") center / cover no-repeat;
}

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

.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 #e1e4eb;
}

.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%;
}

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

iframe {
  width: 100%;
  height: 400px;
  filter: grayscale(100%);
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* **************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 #e1e4eb;
  border-radius: 8px;
}

.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: start;
  gap: 24px;
}

.pricing__column {
  border: 2px solid #e1e4eb;
  border-radius: 8px;
}

.pricing__item {
  padding: 40px;
  padding-bottom: 48px;
}

.item-pricing__info {
  padding-bottom: 32px;
  border-bottom: 1px solid #e1e4eb;
  margin-bottom: 32px;
}

.item-pricing__label {
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 1%;
  margin-bottom: 16px;
}

.item-pricing__cost {
  font-size: 72px;
  font-weight: 600;
  margin-bottom: 16px;
}

.item-pricing__list {
  margin-bottom: 64px;
}

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

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

.item-pricing__item:not(:last-child) {
  margin-bottom: 12px;
}

.item-pricing__button {
  display: inline-block;
  font-size: 22px;
  letter-spacing: 2%;
  font-weight: 600;
  color: #fff;
  padding: 20px 82px;
  background-color: #303a4d;
  border-radius: 64px;
}

.team {
  background-color: #e1e4eb;
}

.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 #e1e4eb;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  border-radius: 8px;
}

.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 #e1e4eb;
  border-radius: 0px 0px 8px 8px;
  line-height: 150%;
  padding-bottom: 20px;
  border-top: none;
  padding-right: 100px;
}

/* ****************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**************** */
.gallery__container {
  padding-bottom: 140px;
  padding-top: 140px;
}

.gallery__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 24px;
  row-gap: 96px;
  margin-bottom: 96px;
  justify-items: center;
}

.gallery__item {
  max-width: 360px;
  height: 407px;
}

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

.gallery__paggination {
  display: flex;
  align-items: center;
  justify-content: center;
  align-items: center;
  gap: 42px;
}

.gallery__paggination button:first-child {
  transform: translate(0px, 5px);
}

.gallery__paggination button:last-child {
  transform: rotate(-180deg) translate(0px, 5px);
}

.gallery_active {
  color: #fff;
  padding: 10px 15px;
  background-color: #303a4d;
  border-radius: 100px;
  display: inline-block;
}

/* ****************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: #fff;
  color: #303a4d;
  font-weight: 600;
  letter-spacing: 2%;
  border: 2px solid #303a4d;
  border-radius: 64px;
}

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

@media (max-width: 992px) {
  .services__row {
    grid-template-columns: 1fr;
    gap: 6rem;
    justify-items: center;
  }

  .item-services {
    text-align: center;
    align-items: center;
  }

  .page__main {
    padding-bottom: 80px;
  }

  .outro__container {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .outro__image {
    height: 300px;
    order: -1;
  }

  .outro__title {
    font-size: 2.5rem;
  }

  .outro__buttons {
    justify-content: center;
  }

  .testimonial__steps {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .testimonial__step {
    min-height: auto;
    padding: 1.5rem;
  }
}

@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;
  }

  .menu__body {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background-color: #fff;
    padding: 100px 20px 30px 20px;
    transition: all 0.3s ease 0s;
    overflow: auto;
    z-index: 999;
  }

  .menu__body::before {
    content: "";
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 80px;
    background-color: #fff;
    z-index: 2;
    transition: all 0.3s ease 0s;
  }

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

  .menu__list {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .menu__link {
    font-size: 24px;
    font-weight: 600;
    display: block;
    padding: 10px;
  }

  .actions-header__button {
    margin-top: 20px;
    font-size: 18px;
    display: inline-block;
    padding: 10px 20px;
  }

  .header__container {
    position: relative;
    z-index: 1000;
  }

  .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) {
  .testimonial__step {
    padding: 1.25rem;
  }
  
  .step__title {
    font-size: 1.35rem;
  }
  
  .step__text {
    font-size: 1rem;
  }

  .contact-form__container {
    padding: 0 1rem;
  }

  .contact-form__title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }

  .contact-form__subtitle {
    font-size: 1.1rem;
    padding: 0 1rem;
  }

  .contact-form__form {
    padding: 1.5rem;
  }

  .contact__container {
    flex-direction: column;
    padding: 2rem 1rem;
    gap: 2rem;
  }

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

  .connect-contact {
    gap: 1.5rem;
  }

  .connect-contact__item {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .connect-contact__icon {
    margin: 0 auto;
  }

  .contact__links {
    justify-content: center;
    margin-top: 2rem;
  }

  .contact__text {
    font-size: 1.1rem;
    padding: 0 1rem;
  }

  iframe {
    height: 300px;
  }

  .header__container {
    padding: 0 1rem;
  }

  .header__logo img {
    height: 60px;
  }

  .menu__body {
    padding: 6rem 1rem 2rem;
  }

  .menu__link {
    font-size: 1.5rem;
  }

  .actions-header__button {
    font-size: 1.2rem;
    padding: 0.5rem 1rem;
  }

  .footer__container {
    padding: 2rem 1rem;
    text-align: center;
  }

  .footer__logo img {
    height: 50px;
  }

  .footer__policy,
  .footer__copyright {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .main__title {
    font-size: 2rem;
  }

  .main__text_pages {
    font-size: 1.1rem;
  }

  .contact-form__title {
    font-size: 2rem;
  }

  .contact-form__subtitle {
    font-size: 1rem;
  }

  .contact__title {
    font-size: 1.75rem;
  }

  .connect-contact__label {
    font-size: 1.1rem;
  }

  .contact__text {
    font-size: 1rem;
  }

  .header__logo img {
    height: 50px;
  }

  .menu__link {
    font-size: 1.25rem;
  }

  .actions-header__button {
    font-size: 1rem;
  }
}

/* Add smooth scrolling for better mobile experience */
html {
  scroll-behavior: smooth;
}

/* Improve touch targets for mobile */
button,
a,
input,
select,
textarea {
  min-height: 44px;
}

/* Prevent zoom on input focus for iOS */
@media screen and (-webkit-min-device-pixel-ratio:0) { 
  select,
  textarea,
  input {
    font-size: 16px;
  }
}

/* Improve form field spacing on mobile */
.contact-form__field {
  margin-bottom: 1.25rem;
}

.contact-form__field label {
  margin-bottom: 0.5rem;
  display: block;
}

.contact-form__field input,
.contact-form__field select,
.contact-form__field textarea {
  width: 100%;
  padding: 0.75rem;
  border-radius: 8px;
}

/* Improve button touch targets */
.button {
  padding: 0.875rem 1.75rem;
  min-width: 44px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Improve spacing for mobile navigation */
.menu__list {
  gap: 1rem;
}

.menu__item {
  padding: 0.5rem 0;
}

/* Improve footer spacing on mobile */
.footer__container {
  gap: 1rem;
}

.footer__logo {
  margin: 1rem 0;
}

/* Contact Form Styles */
.contact-form {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e8f0f8 100%);
  position: relative;
}

.contact-form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #2c5530, transparent);
}

.contact-form__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.contact-form__title {
  font-family: "Playfair Display", serif;
  text-align: center;
  margin-bottom: 1.5rem;
  font-size: 3.5rem;
  font-weight: 600;
  color: #2c5530;
  position: relative;
}

.contact-form__title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #2c5530, #4a7c59);
  border-radius: 2px;
}

.contact-form__subtitle {
  text-align: center;
  margin-bottom: 3.5rem;
  color: #4a5568;
  font-size: 1.3rem;
  line-height: 1.6;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 400;
}

.contact-form__form {
  background: #fff;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  border: 1px solid #e8f0f8;
  position: relative;
  overflow: hidden;
}

.contact-form__form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #2c5530, #4a7c59, #2c5530);
}

.contact-form__form iframe {
  border: none;
  border-radius: 12px;
  width: 100%;
  min-height: 700px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  background: #fafbfc;
}

.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.contact-form__field {
  margin-bottom: 1.5rem;
}

.contact-form__field label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  font-size: 1.1rem;
  color: #303a4d;
}

.contact-form__field input,
.contact-form__field select,
.contact-form__field textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid #e1e4eb;
  border-radius: 8px;
  font-size: 1.1rem;
  color: #303a4d;
  transition: border-color 0.3s ease;
  font-family: "Inter", sans-serif;
}

.contact-form__field input:focus,
.contact-form__field select:focus,
.contact-form__field textarea:focus {
  outline: none;
  border-color: #303a4d;
}

.contact-form__field textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form__submit {
  text-align: center;
  margin-top: 2rem;
}

.contact-form__submit .button {
  padding: 1rem 2.5rem;
  font-size: 1.375rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

@media (max-width: 768px) {
  .contact-form__row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .contact-form__form {
    padding: 1.5rem;
    margin: 0 1rem;
    border-radius: 16px;
  }

  .contact-form__form iframe {
    min-height: 600px;
    border-radius: 8px;
  }

  .contact-form__title {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
  
  .contact-form__subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
}

.why-choose {
  background-color: #f8f9fa;
  padding: 8.75rem 0;
}

.why-choose__container {
  max-width: 72.624rem;
  margin: 0 auto;
  padding: 0 0.938rem;
}

.why-choose__title {
  font-family: "Playfair Display", serif;
  text-align: center;
  margin-bottom: 3rem;
  font-size: 3.5rem;
  font-weight: 600;
  color: #303a4d;
}

.why-choose__content {
  max-width: 800px;
  margin: 0 auto;
}

.why-choose__text {
  font-size: 1.1rem;
  line-height: 150%;
  letter-spacing: 0.02em;
}

.why-choose__text p:not(:last-child) {
  margin-bottom: 1.5rem;
}

.why-choose__list {
  list-style: none;
  margin: 1.5rem 0;
  padding: 0;
}

.why-choose__list li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1rem;
  font-size: 1.1rem;
  line-height: 150%;
}

.why-choose__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #303a4d;
  font-weight: bold;
}

.why-choose__button {
  text-align: center;
  margin-top: 3rem;
}

.why-choose__button .button {
  padding: 1rem 2.5rem;
  font-size: 1.375rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

@media (max-width: 47.999rem) {
  .why-choose {
    padding: 4rem 0;
  }
  
  .why-choose__title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
  }
}

/* Testimonials Section */
.testimonials {
  padding: 8.75rem 0;
  background-color: #f8f9fa;
}

.testimonials__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.testimonials__title {
  font-family: "Playfair Display", serif;
  text-align: center;
  font-size: 3.5rem;
  font-weight: 600;
  color: #303a4d;
  margin-bottom: 4rem;
}

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

.testimonials__platform {
  background: #fff;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.testimonials__platform:hover {
  transform: translateY(-5px);
}

.testimonials__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 1.5rem;
}

.testimonials__icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
}

.testimonials__header h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #303a4d;
  margin-bottom: 0.5rem;
}

.testimonials__rating {
  color: #FFD700;
  font-size: 1.2rem;
  font-weight: 600;
}

.testimonials__content {
  text-align: center;
}

.testimonials__content p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #303a4d;
  margin-bottom: 1.5rem;
}

.testimonials__link {
  display: inline-block;
  color: #303a4d;
  font-weight: 600;
  text-decoration: none;
  padding: 0.5rem 1rem;
  border: 2px solid #303a4d;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.testimonials__link:hover {
  background-color: #303a4d;
  color: #fff;
}

@media (max-width: 992px) {
  .testimonials__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .testimonials {
    padding: 4rem 0;
  }

  .testimonials__title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
  }

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

/* Popup Styles */
.popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 2000;
  justify-content: center;
  align-items: center;
}

.popup.active {
  display: flex;
}

.popup__content {
  background-color: #fff;
  padding: 2.5rem;
  border-radius: 16px;
  position: relative;
  width: 90%;
  max-width: 500px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  animation: popupFadeIn 0.3s ease-out;
}

@keyframes popupFadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.popup__close {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 2rem;
  cursor: pointer;
  color: #303a4d;
  transition: color 0.3s ease;
  background: none;
  border: none;
  padding: 0;
  line-height: 1;
}

.popup__close:hover {
  color: #000;
}

.popup__title {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  color: #303a4d;
  margin-bottom: 1rem;
  text-align: center;
}

.popup__text {
  text-align: center;
  margin-bottom: 2rem;
  color: #303a4d;
  font-size: 1.1rem;
  line-height: 1.5;
}

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

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

.popup__field label {
  font-weight: 600;
  color: #303a4d;
}

.popup__field input {
  padding: 0.75rem 1rem;
  border: 2px solid #e1e4eb;
  border-radius: 8px;
  font-size: 1.1rem;
  transition: border-color 0.3s ease;
}

.popup__field input:focus {
  outline: none;
  border-color: #303a4d;
}

.popup__button {
  margin-top: 1rem;
  width: 100%;
  padding: 1rem;
  font-size: 1.2rem;
  text-align: center;
}

@media (max-width: 768px) {
  .popup__content {
    padding: 2rem;
    width: 95%;
  }

  .popup__title {
    font-size: 1.75rem;
  }
}

.map__container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 15px;
  width: 100%;
}

.map__title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2rem;
  color: #333;
}

@media (max-width: 768px) {
  .map__container {
    padding: 0 20px;
  }
  
  .map__title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }
  
  iframe {
    height: 300px;
  }
}

/* FAQ Section Styles */
.faq {
  padding: 80px 0;
  background-color: #f7f9fc;
}

.faq__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.faq__title {
  text-align: center;
  margin-bottom: 50px;
}

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

.faq__item {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.faq__question {
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.faq__question:hover {
  background-color: #f0f0f0;
}

.faq__question h3 {
  margin: 0;
  font-size: 18px;
  color: #333;
}

.faq__icon {
  font-size: 24px;
  color: #666;
  transition: transform 0.3s ease;
}

.faq__item.active .faq__icon {
  transform: rotate(45deg);
}

.faq__answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq__item.active .faq__answer {
  padding: 20px;
  max-height: 1000px;
}

.faq__answer p {
  margin: 0;
  color: #666;
  line-height: 1.6;
}

/* Responsive Styles for FAQ */
@media (max-width: 768px) {
  .faq {
    padding: 40px 0;
  }

  .faq__question h3 {
    font-size: 16px;
  }

  .faq__answer p {
    font-size: 14px;
  }
}