/** SwiperJS **/
.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  height: auto;
  max-height: 730px;
  overflow: hidden;
}

.swiper-pagination {
  margin-bottom: 1.25rem;
}

.swiper-pagination-bullet {
  background-color: #fff;
  opacity: 1;
  height: 0.25rem;
  width: 1.875rem;
  border-radius: 0;
}

.swiper-pagination-bullet-active {
  background-color: #b83833;
  border-radius: 0;
}

.cards-slider__prev {
  display: flex;
  position: absolute;
  bottom: 50px;
  right: 40px;
  border-radius: 0.125rem;
  background-color: #c8c8c8;
  padding: 0.5rem;
  z-index: 1;
  cursor: pointer;
}
.cards-slider__prev img {
  width: 0.875rem;
}

.cards-slider__next {
  display: flex;
  position: absolute;
  bottom: 50px;
  right: 0;
  border-radius: 0.125rem;
  background-color: #c8c8c8;
  padding: 0.5rem;
  z-index: 1;
  cursor: pointer;
}
.cards-slider__next img {
  width: 0.875rem;
}

/** Global Styles **/
* {
  box-sizing: border-box;
  margin: 0px;
  padding: 0px;
}

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

a {
  text-decoration: none;
  cursor: pointer;
}

/** Header Styles **/
.header {
  position: fixed;
  width: 100%;
  opacity: 1;
  z-index: 2;
  transition: all 0.2s ease-in-out;
}

.header.hide {
  opacity: 0;
}
.header.hide:hover {
  opacity: 1;
  background-color: #000;
}

.header-container {
  padding: 0 1.5625rem;
}

.header-contacts {
  position: relative;
  display: flex;
  padding: 0.9375rem 0;
  justify-content: space-between;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 0.75rem;
  color: #fff;
  z-index: 1;
}

.header-contacts__email {
  padding-left: 2.1875rem;
  position: relative;
  color: #fff;
  transition: all 0.2s ease-in-out;
}
.header-contacts__email:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 1.3125rem;
  aspect-ratio: 1/1;
  -webkit-mask-image: url("../src/icons/mail-icon.png");
  mask-image: url("../src/icons/mail-icon.png");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  background-color: currentColor;
}
.header-contacts__email:hover {
  color: #b83833;
}

.header-contacts__phone {
  position: relative;
  color: #fff;
  transition: all 0.2s ease-in-out;
}
.header-contacts__phone:before {
  position: absolute;
  content: "";
  top: -2px;
  left: -35px;
  width: 1.125rem;
  aspect-ratio: 1/1;
  -webkit-mask-image: url("../src/icons/phone-icon.png");
  mask-image: url("../src/icons/phone-icon.png");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  background-color: currentColor;
}
.header-contacts__phone:hover {
  color: #b83833;
}

.header-content {
  display: flex;
  justify-content: space-between;
  padding: 0.9375rem 0;
  border-top: 1px solid #fff;
}
@media (width >= 1100px) {
  .header-content {
    display: flex;
    align-items: center;
  }
}

.header-content-items {
  display: flex;
  align-items: center;
  margin-bottom: 1.25rem;
}

.header-content__logo {
  max-width: 4.875rem;
  z-index: 1;
}
@media (width >= 1100px) {
  .header-content__logo {
    max-width: 100%;
  }
}

.header__link {
  display: none;
}
@media (width >= 1100px) {
  .header__link {
    display: block;
    margin-left: 1.875rem;
    padding: 0.9375rem 2.5rem;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-size: 0.6875rem;
    color: #fff;
    background-color: #b83833;
    border: 2px solid #b83833;
    border-radius: 0.625rem;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
  }
  .header__link:hover {
    background-color: transparent;
    border-color: #fff;
    color: #fff;
  }
}

/** Nav Styles **/
.nav {
  position: absolute;
  inset: 0;
  height: 100vh;
  transform: translateX(100%);
  padding-top: 10rem;
  background-color: #202080;
  transition: transform 0.2s ease-in-out;
}
@media (width >= 1100px) {
  .nav {
    display: block;
    position: initial;
    height: auto;
    transform: translateX(0%);
    padding: 0;
    background-color: transparent;
  }
}

.nav.open {
  transform: translateX(0%);
}
.nav.open .nav-list__item {
  opacity: 1;
}

.nav-list {
  list-style: none;
}
@media (width >= 1100px) {
  .nav-list {
    display: flex;
    flex-direction: row;
  }
}

.nav-list__item {
  position: relative;
  opacity: 0;
  padding: 1.25rem;
  font-family: "Roboto", sans-serif;
  font-size: 0.9375rem;
  color: #fff;
  cursor: pointer;
}
.nav-list__item:hover {
  background-color: #fff;
  color: #b83833;
}
.nav-list__item:hover .nav-list__link {
  font-weight: 500;
  color: #b83833;
}
.nav-list__item:hover .nav-list__button {
  font-weight: 500;
  color: #b83833;
}
.nav-list__item:hover .nav-list__button:after {
  background-color: #b83833;
}
.nav-list__item:nth-of-type(1) {
  transition: opacity 600ms ease-in, background-color 0.2s ease-in-out;
}
.nav-list__item:nth-of-type(2) {
  transition: opacity 800ms ease-in, background-color 0.2s ease-in-out;
}
.nav-list__item:nth-of-type(3) {
  transition: opacity 1000ms ease-in, background-color 0.2s ease-in-out;
}
.nav-list__item:nth-of-type(4) {
  transition: opacity 1200ms ease-in, background-color 0.2s ease-in-out;
}
.nav-list__item:nth-of-type(5) {
  transition: opacity 1400ms ease-in, background-color 0.2s ease-in-out;
}
.nav-list__item:nth-of-type(6) {
  transition: opacity 1600ms ease-in, background-color 0.2s ease-in-out;
}
@media (width >= 1100px) {
  .nav-list__item {
    opacity: 1;
    padding: 0.625rem 1.25rem;
  }
  .nav-list__item:hover {
    background-color: transparent;
  }
}

.nav-list__link {
  color: #fff;
  transition: color 0.2s ease-in-out;
}
.nav-list__link:after {
  position: absolute;
  content: "";
  inset: 0;
}

.nav-list__button {
  font-family: "Roboto", sans-serif;
  font-size: 0.9375rem;
  color: #fff;
  cursor: pointer;
  background-color: transparent;
  border: none;
}
.nav-list__button:hover {
  color: #b83833;
}
.nav-list__button:after {
  position: absolute;
  content: "";
  top: 21px;
  right: 35px;
  height: 0.9375rem;
  width: 0.9375rem;
  mask-image: url("../src/icons/chevron-right.svg");
  -webkit-mask-image: url("../src/icons/chevron-right.svg");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  background-color: #fff;
}
@media (width >= 1100px) {
  .nav-list__button:after {
    top: 35px;
    right: 50px;
    transform: rotate(90deg);
  }
}

.nav-list__button.open:after {
  transform: rotate(90deg);
}
@media (width >= 1100px) {
  .nav-list__button.open:after {
    top: 28px;
    transform: rotate(270deg);
  }
}

.nav-list__dropdown {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  left: 0;
  top: 58px;
  width: 100%;
  transform: translateX(100%);
  background-color: #202080;
  list-style: none;
  border-top: 1px solid #1b2125;
  z-index: 1;
  transition: all 0.2s ease-in-out;
}
@media (width >= 1100px) {
  .nav-list__dropdown {
    top: 50px;
    width: 17.5rem;
    border: 1px solid #1b2125;
    transform: translateX(0);
  }
}

.nav-list__dropdown.open {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.nav-list__dropdown-item {
  width: 100%;
  position: relative;
  border-bottom: 1px solid #1b2125;
}

.nav-list__dropdown-link {
  display: block;
  padding: 1.25rem;
  color: #fff;
  width: 100%;
}
.nav-list__dropdown-link:hover {
  color: #b83833;
  font-weight: 500;
  background-color: #fff;
}
.nav-list__dropdown-link:after {
  position: absolute;
  content: "";
  inset: 0;
}

.nav-toggle {
  position: fixed;
  top: 60px;
  right: 25px;
  padding: 0.625rem;
  z-index: 3;
  cursor: pointer;
}
@media (width >= 1100px) {
  .nav-toggle {
    display: none;
  }
}

.nav-toggle__button {
  position: relative;
  width: 2.5rem;
  height: 0.125rem;
  background-color: #d4d6b9;
}
.nav-toggle__button:before {
  position: absolute;
  content: "";
  top: 8px;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #d4d6b9;
}
.nav-toggle__button:after {
  position: absolute;
  content: "";
  bottom: 8px;
  width: 100%;
  height: 100%;
  background-color: #d4d6b9;
}

.nav-toggle__button.open {
  background-color: transparent;
}
.nav-toggle__button.open:before {
  top: 5px;
  transform: rotate(45deg);
}
.nav-toggle__button.open:after {
  transform: rotate(135deg);
  bottom: -5px;
}

.hero {
  background-color: #000;
}

.hero__image {
  position: relative;
  object-fit: cover;
  height: 100%;
  opacity: 0.33;
}
@media (width >= 1100px) {
  .hero__image {
    width: 100%;
    height: 100%;
  }
}

.hero-container {
  position: absolute;
  margin: auto;
  top: 25%;
  right: 0;
  left: 0;
  z-index: 1;
}
@media (width >= 1100px) {
  .hero-container {
    padding: 0 1.5625rem;
  }
}

.hero-content {
  text-align: center;
}

.hero__title {
  margin-bottom: 1.875rem;
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: #fff;
  line-height: 2.75rem;
}
@media (width >= 1100px) {
  .hero__title {
    font-size: 3.5rem;
    line-height: 4.8125rem;
  }
}

.hero__subhead {
  margin-bottom: 1.875rem;
  padding: 0 5.625rem;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 0.875rem;
  color: #fff;
  line-height: 1.75rem;
}
@media (width >= 1100px) {
  .hero__subhead {
    font-size: 1rem;
    line-height: 2.25rem;
  }
}

.hero-cta {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}
@media (width >= 1100px) {
  .hero-cta {
    flex-direction: row;
  }
}

.hero-cta__link {
  display: inline-block;
  margin-bottom: 0.9375rem;
  padding: 0.9375rem 2.8125rem;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 0.6875rem;
  color: #fff;
  background-color: #b83833;
  border: 2px solid #b83833;
  border-radius: 0.625rem;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
.hero-cta__link:nth-of-type(2) {
  background-color: #202080;
  border: 2px solid #202080;
}
.hero-cta__link:hover {
  background-color: transparent;
  border-color: #fff;
  color: #fff;
}
@media (width >= 1100px) {
  .hero-cta__link {
    margin: 0 0.9375rem;
  }
}

.what-we-do {
  padding: 5rem 1.25rem;
}
@media (width >= 1100px) {
  .what-we-do {
    padding: 5rem 0;
  }
}

.what-we-do-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2.5rem;
}
@media (width >= 1100px) {
  .what-we-do-content {
    flex-direction: row;
    align-items: flex-start;
  }
}

.what-we-do__slider {
  height: 29.6875rem;
}

.what-we-do__slider.hide {
  display: none;
}

.what-we-do__all-cards {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fill, minmax(21.875rem, 1fr));
  grid-auto-rows: 1fr;
}
.what-we-do__all-cards .what-we-do__card {
  height: 100%;
}

.what-we-do__all-cards.hide {
  display: none;
}

.what-we-do__title {
  margin-bottom: 1.25rem;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 2.25rem;
  color: #202080;
  line-height: 1;
}
@media (width >= 1100px) {
  .what-we-do__title {
    margin-bottom: 0;
  }
}

.what-we-do__body {
  text-align: center;
  margin-bottom: 1.875rem;
  max-width: 33.75rem;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-size: 1rem;
  color: #000;
}
@media (width >= 1100px) {
  .what-we-do__body {
    margin-bottom: 0;
  }
}

.what-we-do__button {
  display: inline-block;
  padding: 0.9375rem 2.8125rem;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 0.8125rem;
  background-color: transparent;
  border: 2px solid #c8c8c8;
  border-radius: 0.625rem;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
.what-we-do__button:hover {
  background-color: #202080;
  color: #fff;
  border-color: #202080;
}

.what-we-do__card {
  /* height: calc(100% - 70px); */
  border-radius: 0.625rem;
  border-bottom: 1px solid #c8c8c8;
  border-left: 1px solid #c8c8c8;
  border-right: 1px solid #c8c8c8;
}

.what-we-do__card-image {
  border-bottom: 1px solid #c8c8c8;
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
  border-radius: 0.625rem 0.625rem 0 0;
}

.what-we-do__card-info {
  display: flex;
  align-items: flex-start;
  margin-top: 0.625rem;
  padding: 1.875rem;
}

.what-we-do__card-icon {
  margin-right: 1.25rem;
}

.what-we-do__card-title {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: 1.4375rem;
}

.what-we-do__card__body {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-size: 0.6875rem;
}

.about {
  background-color: #c8c8c8;
}

.about-container {
  display: flex;
  flex-direction: column;
  gap: 3.125rem;
}
@media (width >= 1100px) {
  .about-container {
    flex-direction: row;
  }
}

.about-media {
  width: 100%;
}
@media (width >= 1100px) {
  .about-media {
    width: 60%;
  }
}

.about-media__image {
  width: 100%;
  vertical-align: middle;
}

.about-text {
  padding: 0 1.25rem;
}
@media (width >= 1100px) {
  .about-text {
    padding: 1.25rem 0 0 0;
    width: 40%;
  }
}

.about-text__title {
  margin-bottom: 0.3125rem;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 2.25rem;
  color: #202080;
  line-height: 1;
}
@media (width >= 1100px) {
  .about-text__title {
    padding-top: 2.5rem;
  }
}

.about-text__subhead {
  margin-bottom: 0.625rem;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-size: 1rem;
  color: #b83833;
}

.about-text__body {
  margin-bottom: 0.625rem;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-size: 1rem;
  color: #000;
}

.featured-work {
  text-align: center;
}

.featured-work__title {
  margin-bottom: 0.3125rem;
  padding-top: 2.5rem;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 2.25rem;
  color: #202080;
}

.featured-work__body {
  margin-bottom: 0.625rem;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-size: 1rem;
  color: #000;
}
@media (width >= 1100px) {
  .featured-work__body {
    padding: 0 11.875rem;
  }
}

.featured-work__gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(6.25rem, 1fr));
  grid-template-rows: repeat(2, minmax(6.25rem, 1fr));
  gap: 0.625rem;
  margin: 0.625rem 0;
}
@media (width >= 1100px) {
  .featured-work__gallery {
    grid-template-columns: repeat(4, minmax(12.5rem, 1fr));
  }
}

.featured-work__gallery-card {
  position: relative;
  height: 100%;
  width: 100%;
  cursor: pointer;
}
.featured-work__gallery-card:after {
  position: absolute;
  content: "";
  inset: 0;
  background-color: #202080;
  opacity: 0;
  transition: all 0.2s ease-in-out;
}
.featured-work__gallery-card:hover:after {
  opacity: 0.5;
}
.featured-work__gallery-card:hover .featured-work__gallery-title {
  opacity: 1;
  visibility: visible;
}

.featured-work__gallery-image {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.featured-work__gallery-title {
  position: absolute;
  top: 39%;
  left: 0;
  right: 0;
  opacity: 0;
  visibility: hidden;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  color: #fff;
  z-index: 1;
  transition: all 0.2s ease-in-out;
}
@media (width >= 1100px) {
  .featured-work__gallery-title {
    top: 45%;
    font-size: 1.25rem;
  }
}

.featured-work-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  padding-top: 2.5rem;
  background-color: #202080;
}
@media (width >= 1100px) {
  .featured-work-info {
    flex-direction: row;
    padding: 0;
  }
}

.featured-work-info__body {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 1.375rem;
  color: #fff;
}

.featured-work-info__link {
  padding: 0.9375rem 3.125rem;
  margin: 3.125rem 0;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-size: 1rem;
  color: #000;
  background-color: #fff;
  border: 2px solid #fff;
  border-radius: 0.625rem;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
.featured-work-info__link:hover {
  background-color: transparent;
  color: #fff;
}

.subpage-header {
  position: relative;
  width: 100%;
  max-height: 37.5rem;
  background-color: #000;
  overflow: hidden;
}

.subpage-header__image {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.subpage__prev {
  display: flex;
  align-items: center;
  gap: 10px;
}

.subpage__prev-button {
  font-size: 14px;
  width: 15px;
}

.subpage__prev-title {
  font-family: "Poppins", sans-serif;
  color: #fff;
}

.subpage__bg-image {
  position: relative;
  object-fit: cover;
  height: 100%;
  opacity: 0.33;
}
@media (width >= 1100px) {
  .subpage__bg-image {
    width: 100%;
    height: 100%;
  }
}

.subpage-header__content {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  top: 50%;
  left: 0;
  right: 0;
}

.subpage-header__title {
  margin-bottom: 1.875rem;
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: #fff;
  line-height: 2.75rem;
}
@media (width >= 1100px) {
  .subpage-header__title {
    font-size: 3.5rem;
    line-height: 4.8125rem;
  }
}

.subpage-header__subhead {
  padding: 0 5.625rem;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 0.875rem;
  color: #fff;
  line-height: 1.75rem;
}
@media (width >= 1100px) {
  .subpage-header__subhead {
    font-size: 1rem;
    line-height: 2.25rem;
  }
}

.subpage-content {
  padding: 3.125rem 1.25rem;
}
@media (width >= 1100px) {
  .subpage-content {
    padding: 6.25rem 0;
  }
}

.subpage-content--row {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
  padding: 20px;
  gap: 20px;
  cursor: pointer;
  border-bottom: 1px solid rgba(124, 124, 124, 0.25);
}
@media (width >= 1100px) {
  .subpage-content--row {
    padding: 20px 0;
  }
}

.subpage-content--row:hover {
  .subpage-content__title {
    text-decoration: underline;
  }
}

.subpage-content__headline {
  margin-bottom: 1.875rem;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: #202080;
  line-height: 1.4;
}

.subpage-content__title {
  margin-bottom: 1.875rem;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #2b2b2b;
  line-height: 1;
}
@media (width >= 1100px) {
  .subpage-content__title {
    font-size: 1.25rem;
  }
}

.subpage-content__body {
  text-align: left;
  margin-bottom: 1.875rem;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-size: 0.75rem;
  color: #000;
}
@media (width >= 1100px) {
  .subpage-content__body {
    font-size: 1rem;
  }
}


.subpage-content__body--bold {
  font-weight: 400;
}

.subpage-content__list {
  margin-left: 0.9375rem;
  text-align: left;
  margin-bottom: 1.875rem;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-size: 1rem;
  color: #000;
}

.subpage-content__list-item {
  line-height: 1.2;
}

.subpage-content__link {
  font-weight: 500;
  color: #1b2125;
  line-height: 1;
  text-decoration: underline;
}
.subpage-content__link:link {
  color: #1b2125;
}
.subpage-content__link:visited {
  color: #1b2125;
}

.subpage-content__highlight {
  color: #b83833;
}

.subpage-content__section {
  margin: 6.25rem 0;
  text-align: center;
}
@media (width >= 1100px) {
  .subpage-content__section {
    text-align: left;
  }
}

.subpage-content__gallery {
  display: grid;
  grid-template-columns: repeat(2, 200px);
  grid-auto-rows: minmax(0, 200px);
  gap: 15px;
  justify-content: center;
}
@media (width >= 1100px) {
  .subpage-content__gallery {
    grid-template-columns: repeat(5, 200px);
    grid-auto-rows: minmax(0, 200px);
    justify-content: space-between;
  }
}

.subpage-content__gallery-container {
  width: 300px;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 4px;
}

.subpage-content__gallery-image {
  width: 100%;
  height: 100%;
  transition: all .1s ease-in-out;
  object-fit: cover;
  object-position: center;
  border-radius: 4px;
  cursor: pointer;
}

.subpage-content__gallery-image:hover {
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.25);
  transform: scale(1.01);
}

.subpage-content__image-container {
  min-width: 200px;
  width: 250px;
  aspect-ratio: 2/1;
  overflow: hidden;
  border-radius: 4px;
}

.subpage-content__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.subpage-item {
  margin-bottom: 1.875rem;
}

.subpage-item__title {
  margin-bottom: 0.3125rem;
  font-family: "Poppins", sans-serif;
  font-size: 1.125rem;
  color: #202080;
  line-height: 1;
}

.subpage-item__link {
  display: inline-block;
  padding: 0.3125rem 0;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  color: #2b2b2b;
  line-height: 1;
  text-decoration: underline;
}
.subpage-item__link:link {
  color: #1b2125;
}
.subpage-item__link:visited {
  color: #1b2125;
}

.subpage-item__body {
  padding: 0.3125rem 0;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-size: 1rem;
  color: #2b2b2b;
  line-height: 1;
}
.subpage-item__body a {
  font-weight: 400;
}
.subpage-item__body a:link {
  color: #202080;
}
.subpage-item__body a:visited {
  color: #202080;
}

.subpage-images {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 1.25rem;
}
@media (width >= 1100px) {
  .subpage-images {
    flex-direction: row;
    text-align: left;
  }
}

.subpage-images__image-card {
  width: 100%;
  max-width: 25rem;
  aspect-ratio: 3/2;
  border-radius: 0.3125rem;
  overflow: hidden;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.25);
}
@media (width >= 1100px) {
  .subpage-images__image-card {
    max-width: 21.875rem;
  }
}

.subpage-images__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.subpage__slider {
  height: 18.125rem;
}

.subpage-form {
  display: flex;
  flex-direction: column;
  padding: 0.9375rem 0;
}
@media (width >= 1100px) {
  .subpage-form {
    padding: 1.875rem 0;
    max-width: 43.75rem;
  }
}

.subpage-form__label {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: #202080;
  line-height: 1.4;
}

.subpage-form__input {
  margin-bottom: 1.875rem;
  padding: 0.9375rem;
  border: 1px solid #c8c8c8;
  border-radius: 0.625rem;
}

.subpage-form__dropdown {
  margin-bottom: 1.875rem;
  padding: 0.9375rem;
  max-width: 12.5rem;
  border: 1px solid #c8c8c8;
  border-radius: 0.625rem;
}

.subpage-form__button {
  max-width: 9.75rem;
  padding: 0.9375rem 2.5rem;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 0.6875rem;
  color: #fff;
  background-color: #b83833;
  border: 2px solid #b83833;
  border-radius: 0.625rem;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
.subpage-form__button:hover {
  background-color: transparent;
  color: #b83833;
}

.footer {
  background-color: #2b2b2b;
}

.footer-content {
  padding: 2.5rem 1.25rem;
}
@media (width >= 1100px) {
  .footer-content {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    padding: 5rem 0 3.125rem 0;
    gap: 11.5625rem;
    text-align: left;
  }
}

@media (width >= 1100px) {
  .footer-column {
    max-width: 20.625rem;
    margin: 0;
  }
}

.footer__logo {
  margin-bottom: 1.25rem;
}
.footer__body {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-size: 0.75rem;
  color: #fff;
  line-height: 2.0625rem;
}

.footer-links__title {
  margin: 3.125rem 0 1.25rem 0;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
}

.footer-links__list {
  display: inline-block;
  color: #fff;
  list-style: none;
}

.footer-links__item {
  text-align: left;
  position: relative;
  padding-bottom: 1.25rem;
}
.footer-links__item:hover {
  color: #b83833;
}
.footer-links__item:hover .footer-links__link {
  color: #b83833;
}
.footer-links__item:hover .footer-links__button {
  color: #b83833;
}

.footer-links__link {
  padding-left: 1.375rem;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-size: 0.875rem;
  color: #fff;
  transition: color 0.2s ease-in-out;
}
.footer-links__link:before {
  position: absolute;
  content: "";
  top: 5px;
  left: 0;
  width: 11px;
  aspect-ratio: 1/1;
  -webkit-mask-image: url("../src/icons/chevron-right.svg");
  mask-image: url("../src/icons/chevron-right.svg");
  -webkit-mask-repeat: no-repeat;
  background-color: currentColor;
}

.footer-links__button {
  padding-left: 1.375rem;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-size: 0.875rem;
  color: #fff;
  background-color: transparent;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
.footer-links__button:before {
  position: absolute;
  content: "";
  top: 5px;
  left: 0;
  width: 11px;
  aspect-ratio: 1/1;
  -webkit-mask-image: url("../src/icons/chevron-right.svg");
  mask-image: url("../src/icons/chevron-right.svg");
  -webkit-mask-repeat: no-repeat;
  background-color: currentColor;
}

.footer-links__button.open:before {
  transform: rotate(90deg);
}

.footer-links__dropdown {
  opacity: 0;
  visibility: hidden;
  list-style: none;
  transition: all 0.2s ease-in-out;
}

.footer-links__dropdown.open {
  opacity: 1;
  visibility: visible;
}

.footer-links__dropdown-item {
  padding-top: 1.25rem;
}

.footer-links__dropdown-link {
  padding-left: 2rem;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-size: 0.875rem;
  color: #fff;
  background-color: transparent;
  border: none;
  transition: color 0.2s ease-in-out;
}
.footer-links__dropdown-link:hover {
  color: #b83833;
}

.footer-list {
  display: inline-block;
  color: #fff;
  list-style: none;
}

.footer-list__item {
  padding-bottom: 1.25rem;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-size: 0.875rem;
  color: #fff;
}

.footer-legal {
  padding: 1.875rem 0 1.5625rem 0;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-size: 0.75rem;
  text-align: center;
  color: #fff;
  background-color: #1b2125;
}
@media (width >= 1100px) {
  .footer-legal {
    text-align: left;
  }
}

.footer-legal__link {
  color: #fff;
  font-weight: 500;
  transition: color 0.2s ease-in-out;
}
.footer-legal__link:hover {
  color: #b83833;
}

.modal__overlay {
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 1;
  visibility: visible;
  height: 100vh;
  width: 100vw;
  background: rgba(43, 43, 43, 0.9);
  z-index: 3;
  transition: all .2s ease-in-out;
}

@media (width >= 1100px) {
  .modal__overlay {
    background: rgba(43, 43, 43, 0.7);
  }
}

.modal__overlay.hidden {
  opacity: 0;
  visibility: hidden;
}

.modal {
  position: relative;
}

.modal-content {
  display: flex;
  justify-content: center;
}

.modal__image {
  margin: 20px;
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 5px;
}

.modal__close {
  position: absolute;
  padding: 10px 20px;
  cursor: pointer;
  top: 150px;
  right: 20px;
  font-family: "Roboto", sans-serif;
  font-size: 32px;
  color: #fff;
  border-radius: 5px;
  background-color: rgba(255,255,255, 0.5);
  transition: all .2s ease-in-out;
}

@media (width >= 1100px) {
  .modal__close {
    top: 50px;
    right: 100px;
    font-size: 32px;
  }
}

.modal__close:hover {
  background-color: rgba(32, 32, 128, 0.5);
}

.modal__prev-button {
  position: absolute;
  bottom: -100px;
  left: 20%;
  padding: 8px;
  border-radius: 3px;
  width: 75px;
  height: 75px;
  background-color: rgba(255,255,255, 0.5);
  cursor: pointer;
  transition: all .2s ease-in-out;
}
@media (width >= 1100px) {
  .modal__prev-button {
    padding: 10px;
    width: 50px;
    height: 50px;
    top: 50%;
    left: -45px;
  }
}

.modal__prev-button:hover {
  background-color: rgba(32, 32, 128, 0.5);
}

.modal__next-button {
  position: absolute;
  bottom: -100px;
  right: 20%;
  padding: 8px;
  border-radius: 3px;
  width: 75px;
  height: 75px;
  background-color: rgba(255,255,255, 0.5);
  cursor: pointer;
  transition: all .2s ease-in-out;
}
@media (width >= 1100px) {
  .modal__next-button {
    padding: 10px;
    width: 50px;
    height: 50px;
    top: 50%;
    right: -45px;
  }
}

.modal__next-button:hover {
  background-color: rgba(32, 32, 128, 0.5);
}
/* Spacing */

.m-0 {
  margin: 0;
}

.m-10 {
  margin: 10px 0;
}

.mt-40 {
  margin-top: 40px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-10 {
  margin-top: 10px;
}

.mt-5 {
  margin-top: 5px;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-5 {
  margin-bottom: 5px;
}

.p-0 {
  padding: 0;
}

.p-10 {
  padding: 10px 0;
}

.pt-40 {
  padding-top: 40px;
}

.pt-30 {
  padding-top: 30px;
}

.pt-20 {
  padding-top: 20px;
}

.pt-10 {
  padding-top: 10px;
}

.pt-5 {
  padding-top: 5px;
}

.pt-0 {
  padding-top: 0;
}

.pb-40 {
  padding-bottom: 40px;
}

.pb-30 {
  padding-bottom: 30px;
}

.pb-20 {
  padding-bottom: 20px;
}

.pb-10 {
  padding-bottom: 10px;
}

.pb-5 {
  padding-bottom: 5px;
}

.pb-0 {
  padding-top: 0;
}

/*# sourceMappingURL=styles.css.map */
