* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

.container {
  width: 100%;
}
@media (width >= 1100px) {
  .container {
    width: 1100px;
    margin: 0 auto;
  }
}

a {
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
}

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

.full-width {
  width: 100%;
}

.swiper {
  width: 100%;
  height: 100vh;
}
@media (width >= 1100px) {
  .swiper {
    max-height: 650px;
  }
}

.swiper-slide__image {
  position: relative;
  height: 100%;
}
@media (width >= 1100px) {
  .swiper-slide__image {
    width: 100vw;
    height: 100%;
    object-fit: cover;
  }
}

.swiper-button-prev:after {
  padding: 0.75rem 0.9375rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: #244675;
  background-color: white;
  border-radius: 0.125rem;
}

.swiper-button-next:after {
  padding: 0.75rem 0.9375rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: #244675;
  background-color: white;
  border-radius: 0.125rem;
}

.header {
  position: relative;
  padding-top: 1.5625rem;
  text-align: center;
  background-color: #fafafa;
}
@media (width >= 1100px) {
  .header {
    padding-top: 0;
  }
}

.header-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.header-content:nth-of-type(2) {
  padding: 0.625rem 2.5rem 0.625rem 1.875rem;
}
@media (width >= 1100px) {
  .header-content {
    flex-direction: row;
  }
  .header-content:nth-of-type(2) {
    padding: 0 2.5rem 0 1.875rem;
  }
}

.header-logo__container {
  padding-bottom: 1.56rem;
  background-color: #0030ff;
}

.header-logo__image {
  margin-top: 2rem;
}

.header-logo__image.fixed {
  position: fixed;
  top: 8px;
  left: 25px;
  margin: 0;
  z-index: 11;
  width: 5.6875rem;
}
@media (width >= 1100px) {
  .header-logo__image.fixed {
    top: 12px;
    left: auto;
    z-index: 11;
    width: 10.25rem;
  }
}

.header-section {
  display: flex;
  flex-direction: column;
  max-width: 93.75rem;
  background-color: #fff;
}
@media (width >= 1100px) {
  .header-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
  }
}

.header-socials__icon {
  padding: 0.625rem;
  color: #6781a7;
  transition: all 0.2s ease-in-out;
}
.header-socials__icon:hover {
  color: #0030ff;
  cursor: pointer;
}

.header-socials__link {
  padding: 1.25rem 2.5rem;
  font-family: "Roboto", sans-serif;
  font-size: 0.6875rem;
  font-weight: 700;
  color: #244675;
  background-color: #fafafa;
  border: 2px solid #fafafa;
  border-radius: 0.375rem;
  transition: all 0.2s ease-in-out;
}
@media (width >= 1100px) {
  .header-socials__link {
    margin-left: 0.625rem;
  }
}
.header-socials__link:hover {
  color: #0030ff;
  border: 2px solid #0030ff;
  background-color: transparent;
  cursor: pointer;
}

.nav {
  visibility: hidden;
  opacity: 0;
  height: 0;
  overflow-x: hidden;
  transition: all 0.2s ease-in-out;
}
@media (width >= 1100px) {
  .nav {
    visibility: visible;
    opacity: 1;
    height: auto;
    overflow-x: visible;
  }
}

@media (width >= 1100px) {
  .nav.fixed {
    position: fixed;
    background-color: #0030ff;
    top: 0;
    left: 0;
    z-index: 10;
    width: 100vw;
    display: flex;
    justify-content: flex-start;
    padding-left: 1.875rem;
    /* transition: all 0.2s ease-in; */
  }

  .nav.fixed .nav-list__item:hover .nav__button {
    color: #6781a7;
  }

  .nav.fixed .nav__button {
    color: #fff;
  }
}

@media (width >= 1100px) {
  .nav.show {
    position: fixed;
    visibility: visible;
    height: auto;
    top: auto;
    opacity: 1;
    height: 100vh;
    background-color: #fff;
    z-index: 3;
  }
}

@media screen and (width < 1100px) {
  .nav.show-mobile {
    position: fixed;
    visibility: visible;
    top: 40px;
    opacity: 1;
    height: 100vh;
    background-color: #fff;
    z-index: 3;
  }
}

.nav-list {
  margin: 0;
  padding: 0;
  width: 100vw;
  text-align: left;
  list-style: none;
}
@media (width >= 1100px) {
  .nav-list {
    display: flex;
    width: auto;
  }
}

.nav-list__item {
  position: relative;
  width: 100%;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  color: #6781a7;
  font-size: 0.9375rem;
  transition: all 0.2s ease-in-out;
  white-space: nowrap;
  border-bottom: 1px solid rgba(36, 70, 117, 0.25);
  transition: all 0.2s ease-in-out;
}
.nav-list__item:hover {
  background-color: #244675;
  cursor: pointer;
}
.nav-list__item:hover .nav__button {
  color: #dcdcdc;
}
@media (width >= 1100px) {
  .nav-list__item:hover {
    background-color: transparent;
  }
  .nav-list__item:hover .nav__button {
    color: #0030ff;
  }
}
@media (width >= 1100px) {
  .nav-list__item {
    border-bottom: none;
  }
}

.nav__button {
  text-align: left;
  padding: 1.875rem 2.1875rem;
  width: 100%;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  color: #6781a7;
  font-size: 0.9375rem;
  border: none;
  background-color: transparent;
  transition: all 0.2s ease-in-out;
}
.nav__button:hover {
  color: #0030ff;
  cursor: pointer;
}
@media (width >= 1100px) {
  .nav__button {
    padding: 1.875rem 0.9375rem;
  }
}

.nav__button.open i {
  transform: rotate(90deg);
}

i.nav__button-arrow {
  position: absolute;
  right: 30px;
  user-select: none;
}
@media (width >= 1100px) {
  i.nav__button-arrow {
    display: none;
  }
}

.nav-dropdown {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 78px;
  left: 0;
  padding: 0;
  height: 100vh;
  width: 100vw;
  background-color: #fff;
  border: 1px solid rgba(36, 70, 117, 0.25);
  list-style: none;
  z-index: 2;
  transform: translateX(100%);
  transition: all 0.2s ease-in-out;
}
@media (width >= 1100px) {
  .nav-dropdown {
    top: 60px;
    left: 15px;
    height: auto;
    width: 25rem;
    transform: none;
  }
}

@media (width >= 1100px) {
  .nav-dropdown.show {
    visibility: visible;
    opacity: 1;
    transform: translateX(0%);
    transition: all 0.2s ease-in-out;
  }
}

@media screen and (width < 1100px) {
  .nav-dropdown.show-mobile {
    visibility: visible;
    opacity: 1;
    transform: translateX(0%);
    transition: all 0.2s ease-in-out;
  }
}

.nav-dropdown__item {
  position: relative;
  padding: 1.875rem 1.25rem 1.875rem 3.125rem;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  color: #6781a7;
  font-size: 0.9375rem;
  background-color: #fff;
  color: #244675;
  border-bottom: 1px solid rgba(36, 70, 117, 0.25);
  transition: all 0.2s ease-in-out;
}
.nav-dropdown__item a:before {
  content: "";
  position: absolute;
  inset: 0;
}
.nav-dropdown__item a:visited {
  color: #6781a7;
}
.nav-dropdown__item:hover {
  background-color: #244675;
  color: #fff;
  cursor: pointer;
}
.nav-dropdown__item:hover a {
  color: #fff;
}
@media (width >= 1100px) {
  .nav-dropdown__item:hover a {
    color: #dcdcdc;
  }
}
@media (width >= 1100px) {
  .nav-dropdown__item {
    padding: 1.25rem;
  }
  .nav-dropdown__item:nth-last-child(1) {
    border-bottom: none;
  }
}

.nav-dropdown__link:after {
  position: absolute;
  content: "";
  inset: 0;
}

.nav-toggle {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  position: fixed;
  top: 0;
  right: 0;
  padding: 0.625rem;
  width: 100vw;
  height: 2.5rem;
  background-color: #0030ff;
  z-index: 4;
  cursor: pointer;
}
@media (width >= 1100px) {
  .nav-toggle {
    display: none;
  }
}

.nav-toggle__button {
  position: relative;
  height: 0.125rem;
  width: 2.5rem;
  background-color: #fff;
}
.nav-toggle__button:before {
  content: "";
  position: absolute;
  top: 6px;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #fff;
  transition: all 0.2s ease-in-out;
}
.nav-toggle__button:after {
  content: "";
  position: absolute;
  bottom: 6px;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #fff;
  transition: all 0.2s ease-in-out;
}

.nav-toggle__button.open:before {
  left: 8px;
  width: 60%;
}
.nav-toggle__button.open:after {
  left: 8px;
  width: 60%;
}

.nav-utility {
  display: flex;
  justify-content: space-between;
  width: 100%;
  background-color: #fafafa;
}

.nav-utility__contact {
  display: flex;
  align-items: center;
}

.nav-utility__contact-info {
  display: flex;
  align-items: center;
  padding: 0.9375rem;
  font-family: "Roboto", sans-serif;
  font-size: 0.6875rem;
  font-weight: 300;
  color: #244675;
}
.nav-utility__contact-info:nth-of-type(1) {
  position: relative;
}
.nav-utility__contact-info:nth-of-type(1):after {
  content: "";
  position: absolute;
  display: inline-block;
  top: 14px;
  right: 0;
  width: 0.0625rem;
  height: 1rem;
  background-color: #bcbcbc;
}
.nav-utility__contact-info i {
  color: #0030ff;
  padding-right: 0.625rem;
  font-size: 0.875rem;
}
.nav-utility__contact-info span {
  display: none;
}
@media (width >= 1100px) {
  .nav-utility__contact-info span {
    display: block;
  }
}

.nav-utility__links {
  display: none;
}
@media (width >= 1100px) {
  .nav-utility__links {
    display: flex;
    align-items: center;
  }
}

.nav-utility__links-info {
  position: relative;
  padding: 0 0.75rem;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 0.6875rem;
  color: #244675;
}
.nav-utility__links-info:after {
  content: "";
  position: absolute;
  display: inline-block;
  top: -1px;
  right: 0;
  width: 0.0625rem;
  height: 1rem;
  background-color: #bcbcbc;
}
.nav-utility__links-info i {
  margin: 0 0.3125rem;
  color: #0030ff;
}
.nav-utility__links-info:nth-last-of-type(1):after {
  content: none;
}

.hero-slider {
  position: relative;
}

.info-box {
  position: absolute;
  top: 20%;
  left: 0;
  right: 0;
  margin: 0 55px;
  padding: 1.5625rem;
  border-radius: 0.8125rem;
  background-color: #fafafa;
  z-index: 1;
}
@media (width >= 1100px) {
  .info-box {
    top: 120px;
    right: 300px;
    left: auto;
    margin: 0;
    padding: 0.9375rem 1.25rem 3.4375rem 2.5rem;
    max-width: 35.9375rem;
  }
}

.info-box__title {
  margin-bottom: 0.9375rem;
  font-family: "Roboto", sans-serif;
  font-weight: 900;
  font-size: 2.3125rem;
  color: #244675;
}

.info-box__body {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.8125rem;
  color: #244675;
}

.info-box__links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}
@media (width >= 1100px) {
  .info-box__links {
    flex-direction: row;
    gap: 0;
  }
}

.info-box__link {
  align-self: normal;
  padding: 1.25rem 0.9375rem;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  color: #244675;
  text-align: center;
  border: 1px solid #0030ff;
  border-radius: 0.4375rem;
  transition: all 0.2s ease-in-out;
}
.info-box__link:hover {
  color: #fafafa;
  background-color: #0030ff;
}
@media (width >= 1100px) {
  .info-box__link {
    margin-right: 0.875rem;
    padding: 1.25rem 2.5rem;
    font-size: 0.875rem;
  }
}

.info-box__group {
  display: flex;
}

.info-box__phone {
  margin-right: 0.625rem;
  padding: 0.875rem;
  color: #fff;
  font-size: 1.75rem;
  border: 1px solid #0030ff;
  border-radius: 0.4375rem;
  background-color: #0030ff;
  transition: all 0.2s ease-in-out;
}
.info-box__phone:hover {
  color: #0030ff;
  background-color: transparent;
}
@media (width >= 1100px) {
  .info-box__phone {
    margin-right: 1.5625rem;
  }
}

.info-box__contact-title {
  margin: 0.25rem 0 0.5rem 0;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 0.75rem;
  color: #244675;
}
@media (width >= 1100px) {
  .info-box__contact-title {
    font-size: 0.875rem;
  }
}

.info-box__email {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 0.75rem;
  color: #244675;
  transition: all 0.2s ease-in-out;
}
.info-box__email:hover {
  color: #0030ff;
  background-color: transparent;
}
@media (width >= 1100px) {
  .info-box__email {
    font-size: 0.875rem;
  }
}

.services {
  padding: 20px 0 120px 0;
  background-color: #fafafa;
}

.services-container {
  text-align: center;
}

.services__eyebrow {
  position: relative;
  display: inline-block;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: #0030ff;
}
.services__eyebrow:after {
  content: "";
  position: absolute;
  bottom: -25px;
  left: 35px;
  background-image: url("../src/images/waves.png");
  background-repeat: no-repeat;
  fill: #0030ff;
  height: 100%;
  width: 100%;
}

.services__title {
  padding: 0 1.25rem;
  font-family: "Roboto", sans-serif;
  font-weight: 900;
  font-size: 2rem;
  color: #244675;
}
@media (width >= 1100px) {
  .services__title {
    padding: 0 14.0625rem;
    font-size: 2.375rem;
  }
}

.services-cards {
  display: grid;
  justify-content: center;
  margin: 0 1.25rem;
  gap: 1.5625rem;
  grid-template-columns: minmax(0, 1fr);
  grid-auto-rows: minmax(150px, 1fr);
}
@media (width >= 1100px) {
  .services-cards {
    margin: 0;
    grid-template-columns: repeat(4, minmax(0, 230px));
  }
}

.services__card {
  padding: 1.5625rem 1.5625rem 1.875rem 1.5625rem;
  text-align: left;
  background-color: #fff;
  border-radius: 0.5rem;
  box-shadow: 0.1875rem 0.1875rem 2.375rem 0.375rem rgba(0, 0, 0, 0.07);
}

.services__card-icon {
  display: inline-block;
  margin-bottom: 1.5rem;
  padding: 0.625rem;
  min-width: 1.875rem;
  text-align: center;
  background-color: #fafafa;
  border-radius: 0.25rem;
  font-size: 1.25rem;
  color: #0030ff;
}

.services__card-title {
  margin-bottom: 2.1875rem;
  position: relative;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 1.3125rem;
  color: #244675;
}
.services__card-title:before {
  content: "";
  position: absolute;
  bottom: -32px;
  left: 0;
  background-image: url("../src/images/waves.png");
  background-repeat: no-repeat;
  fill: #0030ff;
  height: 100%;
  width: 100%;
}
.services__card-title:after {
  content: "";
  position: absolute;
  bottom: -41px;
  left: 0;
  background-image: url("../src/images/waves.png");
  background-repeat: no-repeat;
  fill: #0030ff;
  height: 100%;
  width: 100%;
}

.services__card-body {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 0.8125rem;
  color: #244675;
  line-height: 1.4375rem;
}

.about {
  padding: 3.125rem 1.25rem 0 1.25rem;
  background-color: #bcbcbc;
}

.about-eyebrow {
  position: relative;
  padding-left: 4.0625rem;
  font-family: "Roboto", sans-serif;
  font-size: 0.625rem;
  font-weight: 700;
  color: #0030ff;
}
.about-eyebrow:before {
  content: "";
  position: absolute;
  top: 5px;
  left: 0;
  background-image: url("../src/images/waves.png");
  background-repeat: no-repeat;
  fill: #0030ff;
  height: 100%;
  width: 100%;
}

.about-title {
  font-family: "Roboto", sans-serif;
  font-weight: 900;
  font-size: 1.6875rem;
  color: #244675;
}
@media (width >= 1100px) {
  .about-title {
    max-width: 55%;
  }
}

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

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

.about-text__heading {
  font-family: "Roboto", sans-serif;
  line-height: 1.375rem;
  font-size: 1rem;
}

.about-text__list {
  padding: 0;
  list-style: none;
}

.about-text__list-item {
  position: relative;
  padding: 0 0 1.25rem 2.5rem;
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  line-height: 1.375rem;
}
.about-text__list-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-image: url("../src/images/checkmark.png");
  background-repeat: no-repeat;
  fill: #0030ff;
  height: 100%;
  width: 100%;
}

.subpage {
  background-color: #fafafa;
}

.subpage-hero {
  position: relative;
  width: 100%;
  height: auto;
  background-color: #6781a7;
}

.subpage-hero__title {
  position: absolute;
  top: 25%;
  left: 0;
  right: 0;
  font-family: "Roboto", sans-serif;
  font-size: 2.375rem;
  color: #dcdcdc;
  text-align: center;
  z-index: 1;
}
@media (width >= 1100px) {
  .subpage-hero__title {
    top: 40%;
  }
}

.subpage-hero__image {
  max-height: 25rem;
  width: 100%;
  object-fit: cover;
  mix-blend-mode: multiply;
  opacity: 0.5;
}

.subpage-hero__image--high-opacity {
  opacity: 0.7;
  mix-blend-mode: normal;
}

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

.subpage__headline {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  color: #244675;
  line-height: 1.5;
}
@media (width >= 1100px) {
  .subpage__headline {
    width: 50%;
  }
}

.subpage__headline--full {
  width: 100%;
}

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

.subpage__text-media--center {
  justify-content: center;
}

.subpage__multi-image {
  display: flex;
  flex-direction: row;
  max-width: 55%;
}

.subpage__image-figure {
  display: flex;
  justify-content: center;
  margin: 1.25rem;
  gap: 10px;
  max-width: 35%;
  /* max-width: 28.125rem; */
  overflow: hidden;
  border: 2px solid #323232;
}

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

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

.subpage-content--center {
  margin: 0 auto;
}

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

.subpage-section__item {
  max-width: 230px;
  width: 100%;
}

.subpage__list {
  list-style: none;
  padding: 0;
}

.subpage__list-item {
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  color: #244675;
  line-height: 1.5;
}
.subpage__list-item a {
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  color: #244675;
}

.subpage__title {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: #244675;
}
@media (width >= 1100px) {
  .subpage__title {
    font-size: 1.5rem;
  }
}

.subpage__body {
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  line-height: 1.8125rem;
  color: #244675;
}

@media (width >= 1100px) {
  .subpage__body--half {
    width: 50%;
  }
}

.subpage-form {
  display: flex;
  flex-direction: column;
  padding: 1.5rem 0;
  border-radius: 0.8125rem;
  background-color: #fff;
}
@media (width >= 1100px) {
  .subpage-form {
    padding: 3.125rem;
  }
}

.subpage-form__label {
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.8125rem;
  text-align: left;
  color: #244675;
}

.subpage-form__input {
  margin: 0.9375rem 0;
  padding: 0.625rem;
  max-width: 36rem;
  width: 100%;
  background-color: #fafafa;
  border: 1px solid #dcdcdc;
  border-radius: 0.3125rem;
}

.subpage-form__input--short {
  max-width: 12.5rem;
}

.subpage-form__dropdown {
  margin: 0.9375rem 0;
  padding: 0.625rem 1.25rem;
  max-width: 23.5rem;
  width: 100%;
  background-color: #fafafa;
  border: 1px solid #dcdcdc;
  border-radius: 0.3125rem;
}

.subpage-form__group {
  display: flex;
  flex-direction: column;
  margin: 0.625rem 0;
  border: 1px solid #dcdcdc;
  border-radius: 0.9375rem;
}

.subpage-form__group-title {
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.8125rem;
  color: #244675;
}

.subpage-form__button {
  margin: 2.5rem 0;
  padding: 1.5625rem 0.9375rem;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #fafafa;
  text-align: center;
  background-color: #0030ff;
  border: 1px solid #0030ff;
  border-radius: 0.4375rem;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
}
.subpage-form__button:hover {
  color: #244675;
  background-color: transparent;
}
@media (width >= 1100px) {
  .subpage-form__button {
    margin: 3.125rem 0;
    padding: 1.25rem 2.5rem;
    max-width: 12.5rem;
    font-size: 0.875rem;
  }
}

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

.subpage-cta__button {
  max-width: 12.5rem;
  margin: 3.125rem 0;
  padding: 0.625rem 0.9375rem;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  color: #fafafa;
  text-align: center;
  background-color: #0030ff;
  border: 1px solid #0030ff;
  border-radius: 0.4375rem;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
}
.subpage-cta__button:hover {
  color: #244675;
  background-color: transparent;
}
@media (width >= 1100px) {
  .subpage-cta__button {
    padding: 1.25rem 2.5rem;
    font-size: 0.875rem;
  }
}

.subpage-cta__button--secondary {
  color: #244675;
  background-color: transparent;
}
.subpage-cta__button--secondary:hover {
  color: #fafafa;
  background-color: #0030ff;
}

.footer {
  padding: 4.375rem 1.25rem 0 1.25rem;
  text-align: center;
}
@media (width >= 1100px) {
  .footer {
    padding: 4.375rem 0 0 0;
    text-align: left;
  }
}

.footer-content {
  display: flex;
  flex-direction: column;
}
@media (width >= 1100px) {
  .footer-content {
    flex-direction: row;
    justify-content: center;
    gap: 5.625rem;
  }
}

.footer-sponsors {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 0 9.375rem 0;
}
.footer-sponsors:after {
  content: "";
  position: absolute;
  bottom: 75px;
  left: 0;
  right: 0;
  margin: 0 auto;
  background-image: url("../src/images/waves.png");
  fill: #0030ff;
  height: 0.375rem;
  width: 21.875rem;
}
@media (width >= 1100px) {
  .footer-sponsors:after {
    bottom: 125px;
    width: 50rem;
  }
}

.footer-sponsers__title {
  font-family: "Roboto", sans-serif;
  font-size: 2rem;
  color: #244675;
}

.footer-sponsors__content {
  display: flex;
  flex-direction: column;
  gap: 4.6875rem;
}
@media (width >= 1100px) {
  .footer-sponsors__content {
    flex-direction: row;
  }
}

.footer-sponsors__logo {
  max-width: 6.25rem;
}

.footer-logo__container {
  padding: 1rem;
  max-width: 200px;
  border-radius: 0.5rem;
  background-color: #0030ff;
}

.footer-logo__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.footer__body {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 0.75rem;
  line-height: 1.375rem;
}
@media (width >= 1100px) {
  .footer__body {
    max-width: 16.875rem;
  }
}

.footer-links-title {
  position: relative;
  display: inline-block;
  margin: 0 0 1.25rem 0;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #244675;
}
.footer-links-title:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -25px;
  margin: 0 auto;
  background-image: url("../src/images/waves.png");
  background-repeat: no-repeat;
  fill: #0030ff;
  height: 100%;
  width: 3.4375rem;
}

.footer-links {
  padding: 0;
  list-style: none;
}

.footer-links__item {
  padding: 0.3125rem 0;
}

.footer-links__item-link {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 0.8125rem;
  color: #244675;
  transition: all 0.2s ease-in-out;
}
.footer-links__item-link:hover {
  color: #0030ff;
}

.footer-links__item-contact {
  margin: 0;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 0.8125rem;
  color: #0030ff;
}

.footer-legal {
  padding: 1.25rem;
  text-align: center;
  background-color: #455e75;
}

.footer__copyright {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 0.9375rem;
  color: #dcdcdc;
}
.footer__copyright a {
  color: #dcdcdc;
  transition: color 0.2s ease-in-out;
  text-decoration: underline;
}
.footer__copyright a:hover {
  color: #0030ff;
}

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