@import url("reset.css");

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

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

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

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

button,
input,
textarea,
select {
  font-family: "Inter", sans-serif;
}

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

.header--overlay {
  background: transparent;
}

.page-home .header--overlay .header__logo.logo {
  color: #ee82ee;
}

.page-home .header--overlay .menu__link {
  color: #fff;
}

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

.header__logo {
  position: relative;
  z-index: 2;
  display: inline-flex;
  line-height: 0;
  font-size: 0;
  color: #ee82ee;
  text-decoration: none;
}

.header__logo-svg {
  display: block;
  height: 4.5rem;
  width: auto;
}

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

.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 {
  background: url("../img/home/background_placeholder.png") center / cover no-repeat;
  min-height: 100vh;
}

.page-home .page__main {
  padding-bottom: 0;
  width: 100%;
}

.page-home .main {
  position: relative;
  overflow: hidden;
  background: #000;
  min-height: 85vh;
  width: 100%;
}

.intro {
  background-color: #000;
  color: #fff;
}

.intro__container {
  max-width: 72.624rem;
  margin: 0 auto;
  padding: 1.75rem 0.938rem;
  text-align: center;
}

.intro__text {
  max-width: 52rem;
  margin: 0 auto;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: 0.01em;
}

.work-grid {
  width: 100%;
}

.work-grid__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.work-grid__item {
  display: block;
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #000;
}

.work-grid__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  vertical-align: top;
  transition: transform 0.3s ease;
}

.work-grid__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  transition: opacity 0.25s ease;
  text-align: center;
  pointer-events: none;
}

.work-grid__title {
  color: #fff;
  font-size: clamp(0.75rem, 1.4vw, 1.125rem);
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

@media (hover: hover) {
  .work-grid__item:hover .work-grid__overlay,
  .work-grid__item:focus-visible .work-grid__overlay {
    opacity: 1;
  }

  .work-grid__item:hover img {
    transform: scale(1.03);
  }
}

.project {
  width: 100%;
}

.project__video {
  width: 100%;
}

.project__info {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 72.624rem;
  margin: 0 auto;
  padding: 2rem 0.938rem 3rem;
}

.project__info-title,
.project__info-text {
  width: 100%;
  text-align: left;
}

.project__info-title {
  margin: 0 0 1rem;
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 600;
  line-height: 1.3;
  color: #303a4d;
}

.project__info-text {
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.65;
  color: #303a4d;
}

.project-gallery {
  max-width: 72.624rem;
  margin: 0 auto;
  padding: 0 0.938rem 3rem;
}

.project-gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  background-color: #fff;
}

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

.project-gallery__grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

.project-gallery--gifs {
  width: 100vw;
  max-width: none;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 2.5rem 0 3rem;
}

.project-gallery--gifs .project-gallery__grid {
  width: 100%;
  max-width: none;
  margin: 0;
  gap: 0;
  background-color: #000;
}

.project-gallery--gifs .project-gallery__gif-link {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background-color: #000;
  text-decoration: none;
  color: inherit;
  -webkit-tap-highlight-color: transparent;
}

.project-gallery--gifs .project-gallery__gif-link img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.project-gallery--gifs .project-gallery__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  transition: opacity 0.25s ease;
  text-align: center;
  pointer-events: none;
}

.project-gallery--gifs .project-gallery__overlay-title {
  color: #fff;
  font-size: clamp(0.75rem, 1.4vw, 1.125rem);
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

@media (hover: hover) {
  .project-gallery--gifs .project-gallery__gif-link:hover .project-gallery__overlay,
  .project-gallery--gifs .project-gallery__gif-link:focus-visible .project-gallery__overlay {
    opacity: 1;
  }

  .project-gallery--gifs .project-gallery__gif-link:hover img,
  .project-gallery--gifs .project-gallery__gif-link:focus-visible img {
    transform: scale(1.03);
  }
}

.project-gallery--dark {
  width: 100vw;
  max-width: none;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-bottom: 2.5rem;
  padding: 2rem 0.938rem 2.5rem;
  background-color: #000;
}

.project-gallery--dark .project-gallery__grid {
  max-width: 72.624rem;
  margin: 0 auto;
  background-color: #000;
}

.project-gallery--dark .project-gallery__item {
  background-color: #000;
}

.project-gallery__grid--4 {
  grid-template-columns: repeat(4, 1fr);
}

.project-gallery__grid--6 {
  grid-template-columns: repeat(6, 1fr);
}

.project-gallery + .project-gallery {
  padding-top: 0;
}

.project-gallery--storyboard .project-gallery__item {
  aspect-ratio: 1188 / 918;
}

.iam-storyboard {
  padding-top: 0;
}

.iam-storyboard__grid {
  display: grid;
  grid-template-columns: repeat(10, minmax(0, 1fr));
  gap: 3px;
  width: 100%;
  background-color: #fff;
}

.project-gallery__item {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  border: none;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  line-height: 0;
  cursor: pointer;
  background: #fff;
  -webkit-tap-highlight-color: transparent;
}

.project-gallery__item:focus-visible {
  outline: 2px solid #0ad0fc;
  outline-offset: 2px;
}

.project-gallery__item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  pointer-events: none;
}

.project-gallery:not(.project-gallery--storyboard):not(.project-gallery--dark) .project-gallery__item {
  background: transparent;
  border: none;
}

.project-gallery:not(.project-gallery--storyboard) .project-gallery__item img {
  object-fit: cover;
}

.project-gallery__item--lower img {
  object-position: center 38%;
}

.iam-storyboard .project-gallery__item {
  position: relative;
  display: block;
  width: 100%;
  min-width: 0;
  margin: 0;
  padding: 0;
  border: none;
  aspect-ratio: 3267 / 2194;
  overflow: hidden;
  line-height: 0;
  cursor: pointer;
  background: #fff;
  -webkit-tap-highlight-color: transparent;
}

.iam-storyboard .project-gallery__item img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
}

.project-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.project-lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.project-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
}

.project-lightbox__figure {
  position: relative;
  z-index: 1;
  max-width: min(92vw, 72.624rem);
  max-height: 90vh;
  margin: 0;
}

.project-lightbox__img {
  display: block;
  max-width: 100%;
  max-height: 90vh;
  width: auto;
  height: auto;
  object-fit: contain;
}

.project-lightbox__close {
  position: absolute;
  top: -2.75rem;
  right: 0;
  padding: 0.25rem 0.5rem;
  border: none;
  background: transparent;
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.project-lightbox__close:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.project-lightbox__nav {
  position: absolute;
  z-index: 2;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 2.25rem;
  line-height: 1;
  cursor: pointer;
  transition: background-color 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}

.project-lightbox__nav:hover {
  background: rgba(255, 255, 255, 0.28);
}

.project-lightbox__nav:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.project-lightbox__nav--prev {
  left: 1.25rem;
}

.project-lightbox__nav--next {
  right: 1.25rem;
}

@media (max-width: 47.999rem) {
  .project-lightbox__nav {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1.75rem;
  }

  .project-lightbox__nav--prev {
    left: 0.5rem;
  }

  .project-lightbox__nav--next {
    right: 0.5rem;
  }
}

body.lightbox-open {
  overflow: hidden;
}

.project__video .reel__player {
  aspect-ratio: 16 / 9;
}

.reel-label {
  background-color: #0ad0fc;
  color: #fff;
}

.reel-label__container {
  max-width: 72.624rem;
  margin: 0 auto;
  padding: 0.625rem 0.938rem;
  text-align: center;
}

.reel-label__text {
  margin: 0;
  font-size: 30px;
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.reel {
  width: 100%;
  background-color: #000;
}

.reel__player,
.video-player {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background-color: #000;
  overflow: hidden;
}

.video-player__stage {
  position: absolute;
  inset: 0;
  display: flex;
}

.video-player__video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  background: #000;
  cursor: pointer;
}

.video-player__center {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.video-player__center-icon {
  display: none;
}

.video-player.is-paused .video-player__center-icon--play {
  display: flex;
}

.video-player.is-playing .video-player__center {
  opacity: 0;
  pointer-events: none;
}

.video-player.is-playing:hover .video-player__center,
.video-player.is-playing:focus-within .video-player__center {
  opacity: 1;
  pointer-events: auto;
}

.video-player.is-playing:hover .video-player__center-icon--pause,
.video-player.is-playing:focus-within .video-player__center-icon--pause {
  display: flex;
}

.video-player__chrome {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  padding: 0 0.5rem 0.35rem;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.75) 100%);
  color: #fff;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.video-player:hover .video-player__chrome,
.video-player:focus-within .video-player__chrome,
.video-player.is-paused .video-player__chrome,
.video-player.is-settings-open .video-player__chrome {
  opacity: 1;
}

.video-player__scrub {
  position: relative;
  height: 0.35rem;
  margin: 0 0.25rem 0.4rem;
  cursor: pointer;
}

.video-player:hover .video-player__scrub,
.video-player:focus-within .video-player__scrub {
  height: 0.45rem;
}

.video-player__scrub-buffered,
.video-player__scrub-filled {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  border-radius: 2px;
  pointer-events: none;
}

.video-player__scrub-buffered {
  width: 0;
  background: rgba(255, 255, 255, 0.35);
}

.video-player__scrub-filled {
  width: 0;
  background: #f00;
  z-index: 1;
}

.video-player__seek {
  position: absolute;
  inset: 0;
  width: 100%;
  margin: 0;
  opacity: 0;
  cursor: pointer;
  z-index: 2;
}

.video-player__scrub-tooltip {
  position: absolute;
  bottom: calc(100% + 0.5rem);
  left: 0;
  transform: translateX(-50%);
  padding: 0.25rem 0.4rem;
  background: #fff;
  color: #000;
  font-size: 0.75rem;
  font-weight: 500;
  border-radius: 2px;
  white-space: nowrap;
  pointer-events: none;
  z-index: 4;
}

.video-player__scrub-tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 4px solid transparent;
  border-top-color: #fff;
}

.video-player__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.video-player__bar-left,
.video-player__bar-right {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  min-width: 0;
}

.video-player__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  margin: 0;
  padding: 0;
  border: none;
  background: transparent;
  color: #fff;
  cursor: pointer;
}

.video-player__btn:hover {
  opacity: 0.85;
}

.video-player__icon {
  display: block;
}

.video-player__icon--pause,
.video-player__icon--unmuted,
.video-player__icon--exit-fs {
  display: none;
}

.video-player.is-playing .video-player__icon--play {
  display: none;
}

.video-player.is-playing .video-player__icon--pause {
  display: block;
}

.video-player:not(.is-muted) .video-player__icon--muted {
  display: none;
}

.video-player:not(.is-muted) .video-player__icon--unmuted {
  display: block;
}

.video-player.is-fullscreen .video-player__icon--enter-fs {
  display: none;
}

.video-player.is-fullscreen .video-player__icon--exit-fs {
  display: block;
}

.video-player__volume {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.video-player__volume-slider {
  width: 0;
  height: 3px;
  margin: 0;
  accent-color: #fff;
  cursor: pointer;
  transition: width 0.2s ease;
}

.video-player__volume:hover .video-player__volume-slider,
.video-player__volume:focus-within .video-player__volume-slider {
  width: 4.5rem;
}

.video-player__time {
  font-size: 0.75rem;
  font-weight: 500;
  white-space: nowrap;
  user-select: none;
}

.video-player__settings-wrap {
  position: relative;
}

.video-player__panel {
  position: absolute;
  right: 0;
  bottom: calc(100% + 0.5rem);
  min-width: 10.5rem;
  max-height: 14rem;
  overflow-y: auto;
  background: rgba(28, 28, 28, 0.98);
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
  z-index: 10;
}

.video-player__menu-item,
.video-player__menu-back,
.video-player__option {
  display: block;
  width: 100%;
  padding: 0.55rem 0.85rem;
  border: none;
  background: transparent;
  color: #fff;
  font-size: 0.8125rem;
  text-align: left;
  cursor: pointer;
}

.video-player__menu-item:hover,
.video-player__menu-back:hover,
.video-player__option:hover {
  background: rgba(255, 255, 255, 0.12);
}

.video-player__menu-back {
  font-weight: 600;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.video-player__option.is-active {
  font-weight: 600;
}

.video-player__option.is-active::after {
  content: "✓";
  float: right;
}

.video-player:fullscreen {
  aspect-ratio: auto;
  width: 100vw;
  height: 100vh;
}

.video-player:fullscreen .video-player__video {
  object-fit: contain;
}

@media (max-width: 47.999rem) {
  .video-player__chrome {
    opacity: 1;
  }

  .video-player__volume-slider {
    width: 3.5rem;
  }
}

.main__video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.main__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.main__video-hit,
.main__video-ui {
  display: none;
}

.main__video-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  cursor: pointer;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  transition: background 0.2s, transform 0.15s;
}

.main__video-btn:active {
  transform: scale(0.94);
  background: rgba(0, 0, 0, 0.65);
}

.main__video-btn-icon {
  display: none;
  align-items: center;
  justify-content: center;
}

.main__video-wrap:not(.is-paused) .main__video-btn--play .main__video-btn-icon--pause {
  display: flex;
}

.main__video-wrap.is-paused .main__video-btn--play .main__video-btn-icon--play {
  display: flex;
}

.main__video-wrap.is-muted .main__video-btn--sound .main__video-btn-icon--muted {
  display: flex;
}

.main__video-wrap:not(.is-muted) .main__video-btn--sound .main__video-btn-icon--unmuted {
  display: flex;
}

.page-home .main__container {
  position: relative;
  z-index: 1;
  color: #fff;
}

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

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

.main__title {
  font-size: 5.5rem;
  font-weight: 600;
  margin-bottom: 2rem;
}

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

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

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

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

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

.about__image {
  position: relative;
  flex: 0 0 auto;
  width: 100%;
  max-width: 20rem;
}

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

.about__content {
  flex: 1;
  min-width: 0;
  text-align: left;
  padding-top: 1rem;
}

.about__title {
  margin-bottom: 1.5rem;
}

.about__hello {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.75rem;
}

.about__text {
  max-width: none;
  width: 100%;
  letter-spacing: 0.02em;
  line-height: 150%;
  margin-bottom: 0;
}

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

.about__contact {
  letter-spacing: 0.02em;
  line-height: 150%;
  margin: 1rem 0 0;
}

.about__contact a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.about__contact a:hover {
  opacity: 0.75;
}

.about-cv {
  padding-bottom: 8.75rem;
  font-size: 1rem;
  line-height: 1.55;
  letter-spacing: 0.02em;
}

.about-cv__container {
  max-width: 72.624rem;
  margin: 0 auto;
  padding: 0 0.938rem;
}

.about-cv__title,
.about-cv__heading,
.about-cv__entry-title,
.about-cv__lines li,
.about-cv__list li {
  font-size: inherit;
  font-weight: 400;
  line-height: inherit;
  letter-spacing: inherit;
}

.about-cv__title,
.about-cv__heading {
  font-weight: 700;
}

.about-cv__title {
  font-size: 1.2rem;
  margin: 0 0 0.75rem;
}

.about-cv__section {
  margin-bottom: 1.25rem;
}

.about-cv__section:last-child {
  margin-bottom: 0;
}

.about-cv__heading {
  text-transform: uppercase;
  margin: 0 0 0.75rem;
}

.about-cv__lines,
.about-cv__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.about-cv__lines > li,
.about-cv__list > li,
.about-cv__entry {
  margin-bottom: 0.75rem;
}

.about-cv__lines > li:last-child,
.about-cv__list > li:last-child,
.about-cv__entry:last-child {
  margin-bottom: 0;
}

.about-cv__entry-title {
  margin: 0 0 0.75rem;
}

.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: 8.75rem;
  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;
}

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

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

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

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

.testiomonial__caption {
  margin-bottom: 4rem;
  font-weight: 600;
  text-transform: uppercase;
}

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

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

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

.footer__container {
  padding-top: 2.75rem;
  padding-bottom: 2.75rem;
  max-width: 74.624rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer__social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.75rem;
}

.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 2rem;
  width: 2rem;
  height: 2rem;
  line-height: 0;
  color: #000;
  transition: opacity 0.2s;
}

.footer__social-link:hover {
  opacity: 0.65;
}

.footer__icon {
  width: 1.75rem;
  height: 1.75rem;
  display: block;
  flex-shrink: 0;
}

.footer__icon--linkedin {
  width: 1.5rem;
}

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

.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****************/

.page--contact {
  background-color: #fff;
}

.contact-page {
  background-color: #fff;
  padding: 8.5rem 0 5rem;
}

.contact-page__container {
  max-width: 72.624rem;
  margin: 0 auto;
  padding: 0 0.938rem;
}

.contact-page__intro {
  text-align: center;
  margin-bottom: 4.5rem;
}

.contact-page__tagline {
  font-size: 1.35rem;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.01em;
  margin-bottom: 0.5rem;
}

.contact-page__email {
  display: inline-block;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 400;
  line-height: 1.2;
  color: inherit;
  text-decoration: none;
  border-bottom: 0.2rem solid #4a7cff;
  padding-bottom: 0.1rem;
}

.contact-page__email:hover {
  opacity: 0.85;
}

.contact-page__body {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 2.5rem;
  align-items: start;
}

.contact-page__visual {
  max-width: 26rem;
  width: 100%;
}

.contact-page__visual img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 1rem;
  object-fit: cover;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.contact-form__group {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.contact-form__label {
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.3;
}

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

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

.contact-form__sublabel {
  font-size: 0.95rem;
  line-height: 1.3;
}

.contact-form__input {
  width: 100%;
  font: inherit;
  font-size: 1rem;
  color: #303a4d;
  background-color: #f3f4f6;
  border: 1px solid #303a4d;
  border-radius: 0.5rem;
  padding: 0.85rem 1rem;
  transition: border-color 0.2s, background-color 0.2s;
}

.contact-form__input:focus {
  outline: none;
  border-color: #4a7cff;
  background-color: #fff;
}

.contact-form__textarea {
  min-height: 12rem;
  resize: vertical;
}

.contact-form__actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 0.5rem;
}

.contact-form__submit {
  font: inherit;
  font-size: 1.05rem;
  font-weight: 500;
  color: #fff;
  background-color: #303a4d;
  border: none;
  border-radius: 0.65rem;
  padding: 0.9rem 1.75rem;
  cursor: pointer;
  transition: opacity 0.2s;
}

.contact-form__submit:hover {
  opacity: 0.88;
}

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

@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 {
    padding: 2rem 0.938rem;
  }

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

  .page-home .header--overlay .icon-menu span,
  .page-home .header--overlay .icon-menu::before,
  .page-home .header--overlay .icon-menu::after {
    background-color: #fff;
  }

  .page-home.menu-open .header--overlay .icon-menu span,
  .page-home.menu-open .header--overlay .icon-menu::before,
  .page-home.menu-open .header--overlay .icon-menu::after {
    background-color: #000;
  }

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

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

  .contact-page {
    padding: 7rem 0 3.5rem;
  }

  .contact-page__intro {
    margin-bottom: 3.5rem;
  }

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

  .contact-page__visual {
    max-width: 20rem;
  }

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

  .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: 4.5rem;
    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;
  }

  .intro__container {
    padding: 1.25rem 0.938rem;
  }

  .intro__text {
    font-size: 14px;
  }

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

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

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

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

  .iam-storyboard__grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .project-gallery__grid--6 {
    grid-template-columns: repeat(3, 1fr);
  }

  .reel-label__container {
    padding: 0.5rem 0.938rem;
  }

  .reel-label__text {
    font-size: 30px;
  }

  .page-home .main {
    min-height: 0;
    width: 100%;
    aspect-ratio: 16 / 9;
    max-height: 75vh;
  }

  .page-home .main__video {
    object-fit: cover;
    object-position: center;
  }

  .page-home .main__video-hit {
    display: block;
    position: absolute;
    inset: 0;
    z-index: 1;
    margin: 0;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
  }

  .page-home .main__video-ui {
    display: flex;
    gap: 0.75rem;
    position: absolute;
    bottom: 1rem;
    right: 0.75rem;
    left: 0.75rem;
    justify-content: flex-end;
    z-index: 2;
    pointer-events: none;
  }

  .page-home .main__container {
    pointer-events: none;
  }

  .page-home .main__video-wrap.needs-interaction::after {
    content: "Tap to play";
    position: absolute;
    inset: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.4);
    color: #fff;
    font-weight: 600;
    font-size: 1.125rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    pointer-events: none;
  }

  .page-home .main__video-ui {
    pointer-events: auto;
  }

  .main__container_pages {
    padding-top: 290px;
  }

  .main__title {
    font-size: 3rem;
  }

  .title {
    font-size: 2rem;
  }

  .about__content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    text-align: left;
    width: 100%;
    padding-top: 0;
  }

  .about__container {
    flex-direction: column;
    align-items: flex-start;
    padding-top: 4.375rem;
    padding-bottom: 4.375rem;
    gap: 2.5rem;
  }

  .about__image {
    max-width: 16rem;
  }

  .about__hello {
    font-size: 1.75rem;
  }

  .about-cv {
    padding-bottom: 4.375rem;
  }


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