@import url("reset.css");

@import url("https://fonts.googleapis.com/css?family=Inter:regular,500,600,700&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Franklin+Gothic+Medium:wght@400;600;700&display=swap');

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

.logo {
  font-weight: 700;
  font-size: 2.25rem;
}

.logo img {
  height: 4rem;
  width: auto;
  display: block;
  object-fit: contain;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  color: #1a1a1a;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  background-color: #ffffff;
}

[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-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: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  z-index: 1000;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  padding-top: calc(1rem - 0.5cm);
  padding-bottom: calc(1rem - 0.5cm);
  transition: all 0.3s ease;
}

.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;
  display: flex;
  align-items: center;
  height: auto;
  min-height: 5.75rem;
}

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

.menu__body {
  display: flex;
  align-items: center;
  gap: calc(1.5rem + 0.2cm);
}

.menu__link {
  font-weight: 600;
  position: relative;
  transition: color 0.3s ease;
}

.menu__link:hover {
  color: #22c55e;
}

.menu__link_dropdown::after {
  content: "▼";
  margin-left: 0.25rem;
  font-size: 0.75rem;
  display: inline-block;
  transition: transform 0.3s ease;
}

.menu__item_dropdown {
  position: relative;
}

.menu__dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fff;
  min-width: 250px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  border-top: 3px solid #22c55e;
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  z-index: 1000;
  margin-top: 0.5rem;
}

.menu__item_dropdown:hover .menu__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.menu__dropdown-item {
  list-style: none;
}

.menu__dropdown-link {
  display: block;
  padding: 0.75rem 1.5rem;
  color: #303a4d;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease, background-color 0.3s ease;
}

.menu__dropdown-link:hover {
  color: #22c55e;
  background-color: #f0fdf4;
}

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

.icon-menu {
  display: none;
}

.actions-header__button {
  font-weight: 600;
  display: inline-block;
  padding: 0.75rem 1.75rem;
  border: 2px solid #15803d;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
  background: linear-gradient(135deg, #15803d 0%, #22c55e 100%);
  color: #fff;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(21, 128, 61, 0.2);
}

.actions-header__button:hover {
  background: linear-gradient(135deg, #22c55e 0%, #15803d 100%);
  border-color: #22c55e;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(21, 128, 61, 0.3);
}

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

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

.main {
  position: relative;
  min-height: 80vh;
  padding-top: 7.75rem;
  margin-bottom: -0.5cm;
  overflow: hidden;
}

.main__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  /* Add these properties to prevent flicker */
  will-change: transform;
  backface-visibility: hidden;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  opacity: 1;
}

.main::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 0;
}

.main__container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
  padding-top: calc(19.188rem - 5cm);
  margin-bottom: -0.5cm;
  max-width: 74.624rem;
  margin: 0 auto;
  padding-left: 0.938rem;
  padding-right: 0.938rem;
}

.main__caption {
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-weight: 500;
}

.main__title {
  font-family: "Franklin Gothic Medium", "Franklin Gothic", Arial, sans-serif;
  font-size: 2.75rem;
  font-weight: 600;
  margin-bottom: 2rem;
  color: #000000;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: geometricPrecision;
  letter-spacing: -0.01em;
}

.main__text {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  margin-bottom: 3.5rem;
  max-width: 33.375rem;
  line-height: 1.7;
  letter-spacing: 0.01em;
  color: #4a4a4a;
  font-size: 1.125rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

.main__button {
  font-weight: 600;
  display: inline-block;
  padding: 1rem 2.5rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  color: #fff;
  background: linear-gradient(135deg, #15803d 0%, #22c55e 100%);
  letter-spacing: 0.02em;
  font-size: 1rem;
  line-height: 1.5;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(21, 128, 61, 0.3);
}

.main__button:hover {
  background: linear-gradient(135deg, #22c55e 0%, #15803d 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(21, 128, 61, 0.4);
}

.outro_home {
  background: url("../img/home/hero_placeholder.jpg") center / cover no-repeat;
}

/* ************SOLUTIONS**************** */

.solutions {
  padding-top: calc(8.75rem - 0.5cm);
  padding-bottom: 5rem;
  background: linear-gradient(to bottom, #ffffff 0%, #f8fafc 100%);
  position: relative;
  overflow: hidden;
}

.solutions__container {
  max-width: 74.624rem;
  margin: 0 auto;
  padding: 0 0.938rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
}

.solutions__content {
  width: 100%;
  max-width: 50rem;
  position: relative;
  z-index: 3;
}

.solutions__globe {
  position: absolute;
  right: 2cm;
  top: 50%;
  transform: translateY(calc(-50% + 2cm));
  z-index: 1;
  opacity: 1;
  pointer-events: none;
}

.solutions__globe img {
  max-width: 400px;
  height: auto;
  object-fit: contain;
}

@media (max-width: 1200px) {
  .solutions__globe {
    display: none;
  }
}

.solutions__title {
  font-family: "Franklin Gothic Medium", "Franklin Gothic", Arial, sans-serif;
  text-align: left;
  margin-bottom: 1.5rem;
  margin-top: -2cm;
  margin-left: -2.5cm;
  margin-right: 0;
  color: #000000;
  font-size: 2.75rem;
  font-weight: 600;
  white-space: nowrap;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: geometricPrecision;
  letter-spacing: -0.01em;
}

.solutions__rolling {
  position: relative;
  min-height: 7rem;
  margin-bottom: 1.5rem;
  margin-top: 1rem;
  overflow: visible;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 0.5rem;
  padding-bottom: 1.5rem;
}

.solutions__rolling-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  font-family: "Franklin Gothic Medium", "Franklin Gothic", Arial, sans-serif;
  font-size: 2.75rem;
  font-weight: 600;
  line-height: 1.2;
  background: linear-gradient(to right, #86efac, #15803d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 0.5s ease, transform 0.5s ease;
  text-align: center;
  white-space: nowrap;
  padding-bottom: 0.5rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: geometricPrecision;
  letter-spacing: -0.01em;
}

.solutions__rolling-item-left {
  text-align: left;
}

.solutions__rolling-item.active {
  opacity: 1;
  transform: translateY(0);
}

.solutions__text {
  text-align: justify;
  line-height: 1.7;
  letter-spacing: 0.01em;
  color: #4a5568;
  font-size: 1.125rem;
  margin-left: -2.5cm;
  margin-right: 0;
  margin-top: -0.8cm;
  margin-bottom: 0.8rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

.solutions__text-green {
  color: #15803d;
}

.solutions__button {
  display: inline-block;
  padding: 0.875rem 2rem;
  background: linear-gradient(135deg, #15803d 0%, #22c55e 100%);
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-left: -2.5cm;
  margin-top: 1cm;
  box-shadow: 0 4px 15px rgba(21, 128, 61, 0.3);
}

.solutions__button:hover {
  background: linear-gradient(135deg, #22c55e 0%, #15803d 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(21, 128, 61, 0.4);
}

.solutions__button:hover {
  background-color: #86efac;
  color: #15803d;
  transform: scale(1.05);
}


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

.main_about {
  background: url("../img/about/background_placeholder.png") 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;
}

.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("../img/about/hero_placeholder.jpg") center / cover no-repeat;
}

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

.main_services {
  background: url("../img/services/background_placeholder.png") center / cover no-repeat;
}

.services {
  background-color: #e1e4eb;
}

.services__container {
  padding-top: 0;
  padding-bottom: 1rem;
  text-align: center;
}

.services {
  background: linear-gradient(to bottom, #f8fafc 0%, #ffffff 100%);
  padding-top: 3rem;
  padding-bottom: 3rem;
  min-height: fit-content;
}

.services__title {
  text-align: center;
  margin-bottom: 1rem;
  font-size: 1.75rem;
  color: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: geometricPrecision;
  background-color: #15803d;
  padding: 1rem 2rem;
  display: inline-block;
  border-radius: 8px;
  position: relative;
  z-index: 1;
}

.services__subtitle {
  text-align: center;
  font-size: 1.872rem;
  color: #303a4d;
  margin-bottom: 2.5rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: geometricPrecision;
}

.services__row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 1.5rem;
  padding: 1rem 0;
  max-width: 1400px;
  margin: 0 auto;
}

.services__column {
  width: 100%;
}

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

.item-services__image {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 16px;
  background: #ffffff;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.05);
  cursor: pointer;
}

.item-services__image:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12), 0 8px 16px rgba(0, 0, 0, 0.08);
}

.item-services__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), filter 0.4s ease;
  will-change: transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  opacity: 1;
  min-height: 100%;
}

.item-services__image:hover img {
  transform: scale(1.1);
  filter: brightness(0.85);
}

.item-services__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 60%, rgba(0, 0, 0, 0.8) 100%);
  z-index: 1;
  transition: background 0.4s ease;
  opacity: 0.9;
}

.item-services__image:hover .item-services__overlay {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.5) 60%, rgba(0, 0, 0, 0.95) 100%);
  opacity: 1;
}

.item-services__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  z-index: 2;
  color: #fff;
  transition: transform 0.4s ease, opacity 0.4s ease;
  transform: translateY(0);
  text-align: left;
}

.item-services__image:hover .item-services__content {
  transform: translateY(-4px);
}

.item-services__title {
  font-family: "Inter", sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #ffffff;
  line-height: 1.3;
  transition: color 0.3s ease;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.item-services__image:hover .item-services__title {
  color: #ffffff;
}

.item-services__link {
  font-family: "Inter", sans-serif;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.item-services__arrow {
  color: #22c55e;
  font-size: 1.5rem;
  font-weight: bold;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-block;
}

.item-services__image:hover .item-services__link {
  color: #ffffff;
}

.item-services__link:hover {
  color: #22c55e;
}

.item-services__link:hover .item-services__arrow {
  transform: translate(5px, 0);
}

/* ************TECH PARTNERS**************** */

.tech-partners {
  padding-top: 5rem;
  padding-bottom: 6rem;
  border-top: 1px solid rgba(48, 58, 77, 0.1);
  background: linear-gradient(135deg, #9db882 0%, #7a9a6a 100%);
  position: relative;
  overflow: hidden;
}

.tech-partners::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.tech-partners__container {
  max-width: 74.624rem;
  margin: 0 auto;
  padding: 0 0.938rem;
  text-align: center;
}

.tech-partners__text {
  font-size: 1.5rem;
  color: #fff;
  line-height: 1.6;
  margin-bottom: 2rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: geometricPrecision;
}

.tech-partners__image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.tech-partners__image img {
  max-width: 200px;
  height: auto;
}

.outro_services {
  background: url("../img/services/hero_placeholder.jpg") center / cover no-repeat;
}

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


.testimonial {
  background: url("../img/home/cusucc.png") center / cover no-repeat;
  position: relative;
  background-attachment: fixed;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
  will-change: transform;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.testimonial__container {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  text-align: left;
  flex-direction: column;
  padding-top: 8.75rem;
  padding-bottom: 8.75rem;
  position: relative;
  z-index: 1;
  max-width: 74.624rem;
  margin: 0 auto;
  padding-left: 3rem;
  padding-right: 0.938rem;
}

.testiomonial__caption {
  margin-bottom: 2rem;
  font-weight: 600;
  text-transform: uppercase;
  text-align: left;
  color: #ffffff;
}

.testimonial__content {
  position: relative;
  width: 70%;
  min-height: 300px;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 2rem;
  border-radius: 12px;
  backdrop-filter: blur(10px);
}

.testimonial__slides-wrapper {
  position: relative;
  min-height: 300px;
  width: 100%;
}

.testimonial__slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease-in-out, visibility 0.6s;
  transform: translateX(0);
  pointer-events: none;
  will-change: opacity;
}

.testimonial__slide--active {
  position: relative;
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  pointer-events: auto;
}

.testimonial__content {
  position: relative;
  width: 70%;
  min-height: 400px;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 2rem;
  border-radius: 12px;
  backdrop-filter: blur(10px);
  overflow: hidden;
}

.testimonial__success-tag {
  font-family: "Inter", sans-serif;
  font-size: 1.045rem;
  font-weight: 700;
  color: #22c55e;
  text-align: left;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.testimonial__title {
  margin-bottom: 3rem;
  font-size: 2rem;
  max-width: 100%;
  line-height: 136%;
  font-weight: 500;
  text-align: left;
  color: #ffffff;
}

.item-testimonial {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-top: 2rem;
}

.item-testimonial__info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.item-testimonial__image {
  max-width: 64px;
  flex-shrink: 0;
  margin-bottom: 0;
  height: 64px;
}

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

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

.item-testimonial__caption {
  font-size: 0.938rem;
  color: rgba(255, 255, 255, 0.8);
}

.testimonial__dots {
  display: flex;
  gap: 0.75rem;
  margin-top: 2rem;
  justify-content: center;
  align-items: center;
}

.testimonial__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background-color: rgba(128, 128, 128, 0.6);
  backdrop-filter: blur(5px);
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.testimonial__dot:hover {
  background-color: rgba(160, 160, 160, 0.8);
  transform: scale(1.2);
}

.testimonial__dot--active {
  background-color: #22c55e;
  width: 32px;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(34, 197, 94, 0.4);
}

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

/* ************CUSTOMERS/LOGO SECTION**************** */

.customers {
  padding-top: 9.24rem;
  padding-bottom: 9.24rem;
  background-color: #1a2a40;
}

.customers__container {
  max-width: 74.624rem;
  margin: 0 auto;
  padding: 0 0.938rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5.28rem;
}

.customers__tags {
  font-family: "Inter", sans-serif;
  font-size: 0.9975rem;
  font-weight: 600;
  color: #22c55e;
  text-align: center;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: calc(0.5rem - 1cm);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.customers__title {
  font-family: "Franklin Gothic Medium", "Franklin Gothic", Arial, sans-serif;
  font-size: 1.9rem;
  font-weight: 600;
  color: #000000;
  text-align: center;
  margin: 0;
  margin-top: -0.7cm;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  filter: brightness(0) invert(1);
}

.customers__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 4rem;
  width: 100%;
}

.customers__logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.7;
  transition: opacity 0.3s ease, transform 0.3s ease;
  min-height: 60px;
  min-width: 100px;
}

.customers__logo-item:hover {
  opacity: 1;
  transform: scale(1.1);
}

.customers__logo-img {
  max-width: 165px;
  max-height: 66px;
  width: auto;
  height: auto;
  min-width: 88px;
  min-height: 33px;
  object-fit: contain;
  opacity: 0.9;
  transition: opacity 0.3s ease;
  display: block;
}

.customers__logo-item:hover .customers__logo-img {
  opacity: 1;
}

/* ************CONTACT FORM**************** */

.contact-form {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #1a2a40;
}

.contact-form__container {
  max-width: 74.624rem;
  margin: 0 auto;
  padding: 0 0.938rem;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}

.contact-form__content {
  display: flex;
  flex-direction: column;
}

.contact-form__title {
  font-family: "Franklin Gothic Medium", "Franklin Gothic", Arial, sans-serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.contact-form__subtitle {
  font-size: 1.5rem;
  font-weight: 600;
  color: #22c55e;
  margin-bottom: 1.5rem;
}

.contact-form__text {
  font-size: 1rem;
  line-height: 1.7;
  color: #a0a0a0;
  margin-bottom: 0;
}

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

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

.contact-form__field {
  display: flex;
  flex-direction: column;
}

.contact-form__label {
  font-weight: 600;
  font-size: 0.875rem;
  color: #ffffff;
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}

.contact-form__input,
.contact-form__textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  font-size: 1rem;
  font-family: "Inter", sans-serif;
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.contact-form__input:focus,
.contact-form__textarea:focus {
  outline: none;
  border-color: #22c55e;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
}

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

.contact-form__button {
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, #15803d 0%, #22c55e 100%);
  color: #ffffff;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(21, 128, 61, 0.3);
  align-self: flex-start;
}

.contact-form__button:hover {
  background: linear-gradient(135deg, #22c55e 0%, #15803d 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(21, 128, 61, 0.4);
}

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

.outro__title {
  margin-bottom: 1.25rem;
}

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

.outro__button {
  padding: 1.25rem 3rem;
}

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

.footer {
  line-height: 150%;
  background-color: #1a2a40;
  color: #ffffff;
}

.footer__container {
  padding-top: 4rem;
  padding-bottom: 2rem;
  max-width: 74.624rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin: 0 auto;
  padding-left: 0.938rem;
  padding-right: 0.938rem;
}

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

.footer__column--left {
  gap: 1.5rem;
}

.footer__logo {
  display: flex;
  align-items: center;
  margin-bottom: 0;
}

.footer__description {
  color: #a0a0a0;
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
  max-width: 100%;
}

.footer__heading {
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1.5rem;
  font-family: "Inter", sans-serif;
}

.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer__link {
  color: #a0a0a0;
  text-decoration: underline;
  font-weight: 400;
  font-size: 0.95rem;
  transition: color 0.3s ease;
  display: inline-block;
}

.footer__link:hover {
  color: #22c55e;
}

.footer__connect {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.footer__connect-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer__connect-icon {
  color: #22c55e;
  flex-shrink: 0;
}

.footer__connect-text {
  color: #ffffff;
  font-size: 0.95rem;
}

.footer__buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s ease;
  text-align: center;
}

.footer__button--white {
  background-color: #ffffff;
  color: #1a2a40;
}

.footer__button--white:hover {
  background-color: #f0f0f0;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

.footer__button--orange {
  background-color: #22c55e;
  color: #ffffff;
}

.footer__button--orange:hover {
  background-color: #15803d;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem 0;
  background-color: #1a2a40;
}

.footer__bottom-container {
  max-width: 74.624rem;
  margin: 0 auto;
  padding-left: 0.938rem;
  padding-right: 0.938rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer__copyright {
  font-weight: 400;
  letter-spacing: 0.02em;
  color: #a0a0a0;
  font-size: 0.9rem;
  text-align: center;
}

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

.main__container_pages {
  padding-top: 300px;
}

.main_pages {
  min-height: 676px !important;
  padding-top: 7.75rem;
}

/* ****************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 {
  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;
}

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

.main_contact {
  background: url("../img/contact/background_placeholder.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;
  color: #303a4d;
}

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

.contact__info .contact-form__form {
  margin-top: 2.5rem;
}

/* Override form styles for contact page (light background) */
.contact__info .contact-form__label {
  color: #303a4d;
}

.contact__info .contact-form__input,
.contact__info .contact-form__textarea {
  color: #303a4d;
  background-color: #ffffff;
  border: 2px solid #e1e4eb;
}

.contact__info .contact-form__input:focus,
.contact__info .contact-form__textarea:focus {
  border-color: #22c55e;
  background-color: #ffffff;
}

.contact__info .contact-form__input::placeholder,
.contact__info .contact-form__textarea::placeholder {
  color: #9ca3af;
}

iframe {
  width: 100vw;
  height: 482px;
  filter: grayscale(100%);
}

/* **************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: 1200px) {
  .services__row {
    grid-template-columns: repeat(3, 1fr);
  }
}

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

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

  .item-services__image {
    height: 400px;
  }

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

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

  .page__main {
    padding-bottom: 80px;
  }
}

@media (min-width: 47.999rem) {
  .menu__list {
    display: flex;
    align-items: center;
    gap: calc(1.5rem + 0.2cm);
    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 {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 3rem 1rem 2rem;
    text-align: center;
  }

  .footer__column {
    align-items: center;
  }

  .footer__column--left {
    text-align: center;
  }

  .footer__nav {
    align-items: center;
  }

  .footer__social {
    justify-content: center;
  }

  .footer__bottom-container {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .footer__legal {
    justify-content: center;
  }

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

  .menu__dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background-color: transparent;
    padding: 0;
    margin-top: 1rem;
    margin-left: 1.5rem;
  }

  .menu__dropdown-link {
    padding: 0.5rem 0;
    font-size: 1.5rem;
  }

  .menu__item_dropdown:hover .menu__dropdown {
    transform: none;
  }

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

  .customers__logos {
    gap: 2.5rem;
  }

  .customers__logo-img {
    max-width: 132px;
    max-height: 55px;
  }

  .customers__title {
    font-size: 1.75rem;
  }

  .contact-form__container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-form__row {
    grid-template-columns: 1fr;
  }

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

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

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

  .logo {
    font-size: 1rem;
  }

  .logo img {
    height: 3rem;
  }

  .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 {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .footer__column {
    align-items: center;
  }

  .footer__bottom-container {
    flex-direction: column;
    text-align: center;
  }

  .logo {
    font-size: 2rem;
  }

  .logo img {
    height: 3.5rem;
  }
}

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