/*!
Theme Name: Ten Twenty Four Theme
Author: Rodders
Version: 1.0
Text Domain: ten-twenty-four
*/
/* =========================
   Flex Utilities
   ========================= */
/* Display */
.flex {
  display: flex;
}

.inline-flex {
  display: inline-flex;
}

/* Direction */
.flex-row {
  flex-direction: row;
}

.flex-row-reverse {
  flex-direction: row-reverse;
}

.flex-col {
  flex-direction: column;
}

.flex-col-reverse {
  flex-direction: column-reverse;
}

/* Wrap */
.flex-wrap {
  flex-wrap: wrap;
}

.flex-nowrap {
  flex-wrap: nowrap;
}

.flex-wrap-reverse {
  flex-wrap: wrap-reverse;
}

/* Justify content */
.justify-start {
  justify-content: flex-start;
}

.justify-end {
  justify-content: flex-end;
}

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

.justify-between {
  justify-content: space-between;
}

.justify-around {
  justify-content: space-around;
}

.justify-evenly {
  justify-content: space-evenly;
}

/* Align items */
.items-start {
  align-items: flex-start;
}

.items-end {
  align-items: flex-end;
}

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

.items-baseline {
  align-items: baseline;
}

.items-stretch {
  align-items: stretch;
}

/* Align self (per-child override) */
.self-auto {
  align-self: auto;
}

.self-start {
  align-self: flex-start;
}

.self-end {
  align-self: flex-end;
}

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

.self-stretch {
  align-self: stretch;
}

/* Align content (multi-row flex) */
.content-start {
  align-content: flex-start;
}

.content-end {
  align-content: flex-end;
}

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

.content-between {
  align-content: space-between;
}

.content-around {
  align-content: space-around;
}

.content-evenly {
  align-content: space-evenly;
}

.gap-sm {
  gap: step(1);
  color: red;
}

.gap-md {
  gap: step(2);
}

.gap-lg {
  gap: step(4);
}

/* =========================
   Breakpoints (mobile-first)
   ========================= */
/* Usage:
   @include min-width("md") {
     font-size: 1.25rem;
   }
*/
.poppins-regular {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.poppins-medium {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.poppins-semibold {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.poppins-bold {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
}

p.small {
  font-size: 10px;
}

p {
  margin-top: 0;
}

.accent {
  color: #fbb03b;
}

address {
  font-style: normal;
  font-weight: 500;
  color: #fbb03b;
}

.no-margin {
  margin: 0;
}

.has-large-font-size,
.has-x-large-font-size {
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.has-small-font-size {
  font-size: 0.875rem !important;
  font-weight: 600;
}
@media (max-width: 600px) {
  .has-small-font-size {
    font-size: 0.7875rem !important;
  }
}

.has-medium-font-size {
  font-size: 1rem !important;
  font-weight: 600;
}
@media (max-width: 600px) {
  .has-medium-font-size {
    font-size: 0.9rem !important;
  }
}

.has-large-font-size {
  font-size: 1.5rem !important;
  font-weight: 600;
}
@media (max-width: 600px) {
  .has-large-font-size {
    font-size: 1.35rem !important;
  }
}

.has-x-large-font-size {
  font-size: 2rem !important;
  font-weight: 600;
}
@media (max-width: 600px) {
  .has-x-large-font-size {
    font-size: 1.8rem !important;
  }
}

h1 {
  font-size: 2rem !important;
  font-weight: 600;
}
@media (max-width: 600px) {
  h1 {
    font-size: 1.8rem !important;
  }
}

h2 {
  font-size: 1.5rem !important;
  font-weight: 600;
}
@media (max-width: 600px) {
  h2 {
    font-size: 1.35rem !important;
  }
}

h3 {
  font-size: 1.17rem !important;
  font-weight: 600;
}
@media (max-width: 600px) {
  h3 {
    font-size: 1.053rem !important;
  }
}

h4 {
  font-size: 1rem !important;
  font-weight: 600;
}
@media (max-width: 600px) {
  h4 {
    font-size: 0.9rem !important;
  }
}

h5 {
  font-size: 0.83rem !important;
  font-weight: 600;
}
@media (max-width: 600px) {
  h5 {
    font-size: 0.747rem !important;
  }
}

h6 {
  font-size: 0.67rem !important;
  font-weight: 600;
}
@media (max-width: 600px) {
  h6 {
    font-size: 0.603rem !important;
  }
}

body {
  margin: 0;
  padding-top: 4px;
  background: linear-gradient(to right, #10254e 25%, #60bee2 25% 50%, #ff715b 50% 75%, #fbb03b 75%) top/100% 4px no-repeat;
}

.container {
  max-width: 87.5rem;
  margin: 0 auto;
  padding: 0 1rem;
}

.width-fill {
  width: 100%;
}

section {
  margin: 1rem 0;
}
@media (min-width: 768px) {
  section {
    margin: 2rem 0;
  }
}
@media (min-width: 1024px) {
  section {
    margin: 4rem 0;
  }
}

.anchor-content {
  position: relative;
  display: flex;
  gap: 2rem;
}
@media (min-width: 768px) {
  .anchor-content {
    flex-direction: column;
  }
}
@media (min-width: 1024px) {
  .anchor-content {
    flex-direction: row;
  }
}
.anchor-content aside {
  display: none;
  background: #f7f7ff;
  padding: 1rem;
  flex: 1;
}
@media (min-width: 768px) {
  .anchor-content aside {
    display: block;
  }
}
.anchor-content aside nav {
  position: sticky;
  top: 0.5rem;
}
.anchor-content aside ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.anchor-content aside ul li {
  padding: 0.5rem;
}
.anchor-content aside ul a {
  text-decoration: none;
  color: #10254e;
  font-weight: 600;
}
.anchor-content aside ul a:hover {
  background: linear-gradient(to right, #10254e 25%, #60bee2 25% 50%, #ff715b 50% 75%, #fbb03b 75%) bottom/100% 2px no-repeat;
}
.anchor-content article {
  flex: 3;
}

.post-layout {
  display: flex;
  gap: 2rem;
}
.post-layout article {
  flex: 3;
}
.post-layout aside {
  flex: 1;
}

#header {
  background: #f7f7ff;
  padding: 2rem 0;
}

.header__wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (min-width: 1024px) {
  .header__wrapper {
    max-width: 87.5rem;
    margin: 0 auto;
    padding: 0 1rem;
    flex-direction: row;
    align-items: center;
  }
}

.header__mobile {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.header__logo {
  max-width: 21.25rem;
  padding: 0 1rem;
}
@media (min-width: 1024px) {
  .header__logo {
    padding: 0;
  }
}
.header__logo img {
  display: block;
}

.header__menu-toggle {
  position: relative;
  right: 1rem;
  width: 2.5rem;
  height: 2.5rem;
  border: none;
  margin: 0;
  transition: 0.5s;
  background: none;
  flex: 0 0 2.5rem;
}
.header__menu-toggle span {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  display: block;
  height: 0.1875rem;
  width: 60%;
  transition: 0.5s;
  background-color: #10254e;
}
.header__menu-toggle span:nth-child(2) {
  top: 0.6875rem;
}
.header__menu-toggle span:nth-child(4) {
  bottom: 0.5rem;
}
.header__menu-toggle.open {
  background-color: #10254e;
}
.header__menu-toggle.open span {
  background-color: #ff715b;
}
.header__menu-toggle.open span:nth-child(3) {
  opacity: 0;
}
.header__menu-toggle.open span:nth-child(2) {
  transform: rotate(45deg);
  top: 1.1875rem;
}
.header__menu-toggle.open span:nth-child(4) {
  transform: rotate(-45deg);
  bottom: 1.125rem;
}
@media (min-width: 1024px) {
  .header__menu-toggle {
    display: none;
  }
}

.header__menu {
  display: flex;
  position: relative;
  bottom: -2rem;
  flex-direction: column;
  list-style: none;
  padding: 0;
  margin: 0;
  background-color: #10254e;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.8s;
}
.header__menu.open {
  max-height: 1000px;
}
@media (min-width: 1024px) {
  .header__menu {
    background: none;
    flex-direction: row;
    gap: 0.5rem;
    bottom: auto;
    max-height: 1000px;
  }
}

.header__menu__item {
  position: relative;
}
@media (min-width: 1024px) {
  .header__menu__item {
    width: auto;
  }
}
.header__menu__item a {
  display: block;
  text-decoration: none;
  font-weight: 500;
  padding: 1rem 1rem;
  color: #fff;
}
@media (min-width: 1024px) {
  .header__menu__item a {
    color: #10254e;
    padding: 1rem;
  }
  .header__menu__item a:hover {
    background: linear-gradient(to right, #10254e 25%, #60bee2 25% 50%, #ff715b 50% 75%, #fbb03b 75%) bottom/100% 2px no-repeat;
  }
}
.header__menu__item a:hover {
  background-color: rgba(252, 252, 252, 0.1);
}
.header__menu__item.active a {
  background-color: rgba(252, 252, 252, 0.1);
}
@media (min-width: 1024px) {
  .header__menu__item.active a {
    background: none;
    background: linear-gradient(to right, #10254e 25%, #60bee2 25% 50%, #ff715b 50% 75%, #fbb03b 75%) bottom/100% 2px no-repeat;
  }
}

#footer {
  position: relative;
  background: #10254e;
  padding: 2rem 0;
  color: #fff;
  z-index: 0;
  margin-top: 4rem;
  overflow: hidden;
}
#footer:before, #footer:after {
  content: "";
  position: absolute;
  top: 25rem;
  right: 0;
  width: 37.5rem;
  height: 100%;
  clip-path: polygon(100% 100%, 0 100%, 100% 0);
  pointer-events: none;
  z-index: -1;
}
@media (min-width: 1024px) {
  #footer:before, #footer:after {
    top: 12.5rem;
    width: 31.25rem;
    height: 100%;
  }
}
#footer:before {
  content: "";
  background-color: #60bee2;
}
#footer:after {
  content: "";
  background-color: #ff715b;
  right: -5rem;
}

.footer__wrapper {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (min-width: 1024px) {
  .footer__wrapper {
    flex-direction: row;
    gap: 4.375rem;
  }
}

.footer__logo {
  max-width: 7.5rem;
}

.footer__content {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
}
@media (min-width: 1024px) {
  .footer__content {
    flex-direction: row;
  }
}

@media (min-width: 1024px) {
  .footer__text {
    max-width: 21.875rem;
  }
}
.footer__text p {
  font-size: 0.875rem;
}
.footer__text a {
  display: flex;
  align-items: center;
  font-style: normal;
  font-weight: 500;
  color: #fbb03b;
  font-size: 1rem;
  line-height: 18px;
  text-decoration: none;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}
.footer__text a svg {
  stroke: #fff;
}
.footer__text .footer__what_3_link {
  display: inline-block;
  color: #fff;
  margin-top: 0.5rem;
}
.footer__text .footer__what_3_link:hover {
  background: linear-gradient(to right, #10254e 25%, #60bee2 25% 50%, #ff715b 50% 75%, #fbb03b 75%) bottom/100% 2px no-repeat;
}

.footer__menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer__menu__item {
  padding-bottom: 0.5rem;
}
@media (min-width: 1024px) {
  .footer__menu__item {
    text-align: right;
  }
}
.footer__menu__item a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}
.footer__menu__item a:hover {
  background: linear-gradient(to right, #10254e 25%, #60bee2 25% 50%, #ff715b 50% 75%, #fbb03b 75%) bottom/100% 2px no-repeat;
}
.footer__menu__item.active a {
  background: linear-gradient(to right, #10254e 25%, #60bee2 25% 50%, #ff715b 50% 75%, #fbb03b 75%) bottom/100% 2px no-repeat;
}

.footer__bottom {
  display: flex;
}
@media (min-width: 1024px) {
  .footer__bottom {
    justify-content: flex-end;
  }
}

.footer__copyright {
  margin-top: 2rem;
  max-width: 46.875rem;
  padding-bottom: 0.5rem;
}
@media (min-width: 1024px) {
  .footer__copyright {
    text-align: right;
    background: linear-gradient(to right, #10254e 25%, #60bee2 25% 50%, #ff715b 50% 75%, #fbb03b 75%) bottom/100% 2px no-repeat;
  }
}

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: #f5f5f5;
  border-bottom: 4px solid #ff715b;
  color: #333333;
  text-decoration: none;
  min-height: 12.5rem;
  transition: all 0.2s;
  height: 100%;
}
.card:hover {
  color: #fff;
  background-color: #10254e;
  border-color: #60bee2;
}

.card__content {
  padding: 1.5rem;
}

.card__title {
  font-size: 1.25rem;
  margin-top: 0;
}

.card__footer {
  padding: 1rem 1.5rem;
  margin-top: auto;
  margin-bottom: 0;
  font-weight: 600;
}

.card--with-img {
  border: 0.0625rem solid #f5f5f5;
  border-bottom-width: 0.25rem;
  gap: 0;
}
.card--with-img:hover {
  border-color: #f5f5f5;
  border-bottom-color: #10254e;
  background: #ff715b;
}

.card--no-content {
  justify-content: center;
  background: unset;
  height: auto;
  border: 0.125rem solid #f5f5f5;
}
.card--no-content:hover {
  background: unset;
  border-color: #f5f5f5;
}

.card__img {
  display: flex;
  background-color: white;
  padding: 1rem;
  height: 9.375rem;
  align-items: center;
  justify-content: center;
  margin: 0;
}
.card__img img {
  width: auto;
  max-width: 9.375rem;
  max-height: 3.125rem;
}

.cards-grid {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 3rem;
  list-style: none;
  padding: 0;
}
@media (min-width: 768px) {
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .cards-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.breadcrumbs ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1rem;
  background-color: #f7f7ff;
  padding: 0.5rem;
  margin-bottom: 2rem;
}
.breadcrumbs li {
  color: #10254e;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.875rem;
}
.breadcrumbs li:not(:first-child):before {
  position: relative;
  content: ">";
  left: -0.5rem;
}
.breadcrumbs a {
  color: inherit;
  text-decoration: inherit;
  font-weight: inherit;
  font-size: inherit;
}
.breadcrumbs a:hover {
  background: linear-gradient(to right, #10254e 25%, #60bee2 25% 50%, #ff715b 50% 75%, #fbb03b 75%) bottom/100% 2px no-repeat;
}

.brand-banner {
  position: relative;
  width: 100%;
  height: 31.25rem;
  background: #f5f5f5;
  margin-bottom: 4rem;
}

.brand-banner__sqaure {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  display: none;
  width: 12.5rem;
  height: 12.5rem;
  background: #ff715b;
}
.brand-banner__sqaure span {
  position: absolute;
  top: 0;
  right: -6.25rem;
  bottom: 0;
  margin: auto;
  text-transform: uppercase;
  font-size: 1.875rem;
  font-weight: 600;
}
.brand-banner__sqaure.--icon-one {
  justify-content: center;
  align-items: center;
  background: #10254e;
}
.brand-banner__sqaure.--icon-one:before {
  content: "";
  width: 2.5rem;
  height: 8.75rem;
  background: #ff715b;
}
.brand-banner__sqaure.--icon-zero {
  justify-content: center;
  align-items: center;
  background: #60bee2;
}
.brand-banner__sqaure.--icon-zero:before {
  content: "";
  width: 7.5rem;
  height: 7.5rem;
  border-radius: 999px;
  background: #10254e;
}
.brand-banner__sqaure.--icon-two {
  background: #10254e;
}
.brand-banner__sqaure.--icon-two:before {
  content: "";
  width: 0;
  height: 0;
  border-bottom: 12.5rem solid #fbb03b;
  border-left: 12.5rem solid transparent;
  background: #10254e;
}
.brand-banner__sqaure.--icon-four {
  background: #ff715b;
}
.brand-banner__sqaure.--icon-four:before, .brand-banner__sqaure.--icon-four:after {
  content: "";
  position: absolute;
  width: 6.25rem;
  height: 6.25rem;
  background: #10254e;
}
.brand-banner__sqaure.--icon-four:before {
  top: 0;
  right: 0;
}
.brand-banner__sqaure.--icon-four:after {
  bottom: 0;
}
.brand-banner__sqaure.--num {
  display: none;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 3.125rem;
  font-weight: 700;
  color: #fff;
}
.brand-banner__sqaure.--num.--one {
  background: #10254e;
  color: #ff715b;
}
.brand-banner__sqaure.--num.--zero {
  background: #60bee2;
  color: #10254e;
}
.brand-banner__sqaure.--num.--two {
  background: #ff715b;
  color: #10254e;
}
.brand-banner__sqaure.--num.--four {
  background: #10254e;
  color: #fbb03b;
}

.review-cards {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  border: 2px solid #f7f7ff;
  padding: 2rem;
  z-index: 0;
}
@media (min-width: 1024px) {
  .review-cards:before {
    content: "";
    position: absolute;
    right: 10%;
    bottom: 0;
    width: 31.25rem;
    height: 20rem;
    background: rgba(16, 37, 78, 0.1);
    z-index: 0;
    border-top-left-radius: 100%;
    border-top-right-radius: 100%;
  }
}

.review-cards__title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #10254e;
  width: 100%;
  margin: 0;
}

.review-cards__list {
  display: flex;
  gap: 1rem;
  width: 100%;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  user-select: none;
  scroll-behavior: smooth;
}
.review-cards__list.active {
  cursor: grabbing;
}

.review-card {
  display: flex;
  flex: 1 1 100%;
  flex-direction: column;
  gap: 1.5rem;
  margin: 0;
  padding: 1.5rem 1rem;
  background-color: #f7f7ff;
  border-bottom-width: 0.25rem;
  border-bottom-style: solid;
  z-index: 1;
  min-width: 18.75rem;
  max-width: 28.125rem;
}
@media (min-width: 1024px) {
  .review-card {
    flex: 1 1 33%;
  }
}
.review-card:nth-child(4n+1) {
  border-color: #10254e;
}
.review-card:nth-child(4n+1) .review-card__text:before {
  color: #10254e;
}
.review-card:nth-child(4n+2) {
  border-color: #60bee2;
}
.review-card:nth-child(4n+2) .review-card__text:before {
  color: #60bee2;
}
.review-card:nth-child(4n+3) {
  border-color: #ff715b;
}
.review-card:nth-child(4n+3) .review-card__text:before {
  color: #ff715b;
}
.review-card:nth-child(4n+4) {
  border-color: #fbb03b;
}
.review-card:nth-child(4n+4) .review-card__text:before {
  color: #fbb03b;
}

.review-card__image {
  max-width: 9.375rem;
}

.review-card__text {
  position: relative;
  font-weight: 400;
  margin: 0;
  padding: 1.875rem 0 0 0.625rem;
}
.review-card__text:before {
  content: '"';
  font-size: 6rem;
  position: absolute;
  top: -40px;
  left: -1px;
  opacity: 0.4;
}

.review-card__source {
  font-weight: 600;
  margin-top: auto;
}

.review-card__star {
  display: inline-block;
  width: 6.25rem;
  height: 1.25rem;
  background-color: #fbb03b;
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><path d='M50 5 L61 39 H98 L68 59 L79 91 L50 72 L21 91 L32 59 L2 39 H39 Z'/></svg>");
  -webkit-mask-repeat: repeat-x;
  -webkit-mask-size: 1.25rem 1.25rem;
  mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><path d='M50 5 L61 39 H98 L68 59 L79 91 L50 72 L21 91 L32 59 L2 39 H39 Z'/></svg>");
  mask-repeat: repeat-x;
  mask-size: 1.25rem 1.25rem;
}

.partners-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 2rem;
  align-items: center;
  margin-bottom: 1rem;
}

.partners-list__header {
  display: flex;
  position: relative;
  flex: 1;
  padding: 1rem 0;
  margin-bottom: 1rem;
  background: linear-gradient(to right, #10254e 25%, #60bee2 25% 50%, #ff715b 50% 75%, #fbb03b 75%) bottom/100% 0.125rem no-repeat;
}

.partners-list__title {
  font-size: 1.5rem;
  margin: 0;
  color: #10254e;
  text-align: center;
}

.partners-list__ul {
  flex: 1;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media (min-width: 1024px) {
  .partners-list__ul {
    gap: 3rem;
    flex-wrap: nowrap;
  }
}
.partners-list__ul li {
  flex: 1 1 30%;
  text-align: center;
}
@media (min-width: 1024px) {
  .partners-list__ul li {
    flex: 1;
  }
}
.partners-list__ul img {
  max-width: 7.5rem;
}
.partners-list__ul a {
  transition: all 0.2s;
}
.partners-list__ul a:hover {
  opacity: 0.6;
}

.wp-block-button .wp-block-button__link {
  position: relative;
  background-color: #10254e;
  color: #fff;
  padding: 1rem 2.5rem;
  border-radius: 6px;
  font-family: "Poppins", sans-serif;
  text-decoration: none;
  transition: background-color 0.2s ease;
  font-weight: 500;
  z-index: 0;
  overflow: hidden;
}
.wp-block-button .wp-block-button__link:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: -1px;
  right: -1px;
  width: 3.125rem;
  background: #ff715b;
  clip-path: polygon(100% 100%, 0 100%, 100% 0);
  pointer-events: none;
  z-index: -1;
}
.wp-block-button .wp-block-button__link:hover {
  background-color: #ff715b;
}
.wp-block-button.is-style-outline .wp-block-button__link {
  background-color: transparent;
  border: 2px solid #10254e;
  color: #10254e;
}
.wp-block-button.is-style-outline .wp-block-button__link:before {
  background: #10254e;
}
.wp-block-button.is-style-outline .wp-block-button__link:hover {
  background-color: #10254e;
  color: #fff;
}

.banner {
  position: relative;
  background-color: #10254e;
  padding: 2rem 0;
  margin-bottom: 4rem;
  color: #fff;
  overflow: hidden;
}
.banner h1 {
  position: relative;
  z-index: 0;
  margin: 0;
}

.banner__content {
  align-self: flex-end;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background-color: #ff715b;
  padding: 2rem;
  color: #fff;
}
.banner__content a {
  position: relative;
  background-color: #10254e;
  color: #fff;
  padding: 1rem 2.5rem;
  border-radius: 6px;
  font-family: "Poppins", sans-serif;
  text-decoration: none;
  transition: background-color 0.2s ease;
  font-weight: 500;
  z-index: 0;
  overflow: hidden;
  max-width: max-content;
}
.banner__content a:hover {
  background-color: #fbb03b;
}

.banner--home {
  position: relative;
  padding: 4rem 0;
  height: 25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #10254e;
}
.banner--home h1 {
  font-size: 3.75rem;
  letter-spacing: 0.5rem;
  font-weight: 500;
  text-transform: uppercase;
  padding: 1rem;
}
.banner--home:before {
  content: "";
  position: absolute;
  right: -18.75rem;
  bottom: -18.75rem;
  width: 37.5rem;
  height: 37.5rem;
  border-radius: 62.5rem;
  background-color: #ff715b;
}

.banner--image {
  position: relative;
  background-color: #333;
  background-position: center;
  background-size: cover;
  padding: 4rem 0;
}
.banner--image .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 18.75rem;
}

.banner--title .container {
  position: relative;
}
.banner--title .container:before {
  content: "";
  position: absolute;
}
.banner--title.--about, .banner--title.--services, .banner--title.--partners, .banner--title.--contact {
  padding: 4rem 0;
}
.banner--title.--about {
  background-color: #10254e;
}
.banner--title.--about:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  height: 100%;
  width: 90%;
  border-bottom-right-radius: 4.375rem;
  background: #ff715b;
}
@media (min-width: 1024px) {
  .banner--title.--about:before {
    width: 40%;
    min-width: calc(50% - 12.5rem);
  }
}
.banner--title.--services {
  background-color: #10254e;
}
.banner--title.--services:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  height: 100%;
  width: calc(50% - 43.75rem);
  background: #fbb03b;
}
.banner--title.--services .banner__element {
  position: absolute;
  bottom: 0;
}
.banner--title.--services .banner__element:before, .banner--title.--services .banner__element:after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 18.75rem;
  height: 18.75rem;
  background-color: #fbb03b;
}
.banner--title.--services .banner__element:before {
  bottom: -9.375rem;
  left: -1rem;
  border-top-right-radius: 999px;
  border-bottom-right-radius: 999px;
}
@media (min-width: 1024px) {
  .banner--title.--services .banner__element:before {
    width: 32.5rem;
  }
}
.banner--title.--services .banner__element:after {
  border-radius: 999px;
  left: 6.25rem;
  bottom: -15rem;
}
@media (min-width: 1024px) {
  .banner--title.--services .banner__element:after {
    left: 20rem;
  }
}
.banner--title.--partners {
  background-color: #10254e;
  color: #fff;
}
.banner--title.--partners:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  height: 100%;
  width: 10%;
  background: #ff715b;
}
@media (min-width: 1024px) {
  .banner--title.--partners:before {
    width: calc(50% - 43.75rem);
  }
}
.banner--title.--partners .banner__element {
  position: absolute;
  top: -24.375rem;
  left: -20.625rem;
  width: 43.75rem;
  height: 43.75rem;
  transform: rotate(20deg);
}
@media (min-width: 1024px) {
  .banner--title.--partners .banner__element {
    left: -7.5rem;
  }
}
.banner--title.--partners .banner__element:before, .banner--title.--partners .banner__element:after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
}
.banner--title.--partners .banner__element:before {
  background-color: #ff715b;
}
.banner--title.--partners .banner__element:after {
  background-color: #60bee2;
  clip-path: inset(0 0 50% 0);
}
.banner--title.--contact {
  background-color: #10254e;
}
.banner--title.--contact .banner__element {
  position: absolute;
  right: 0;
}
.banner--title.--contact .banner__element:before {
  content: "";
  position: absolute;
  top: -6.25rem;
  right: -3.5rem;
  height: 9.375rem;
  width: 21.875rem;
  border-bottom-left-radius: 12.5rem;
  border-bottom-right-radius: 12.5rem;
  background: #fbb03b;
}
@media (min-width: 1024px) {
  .banner--title.--contact .banner__element:before {
    top: -13.75rem;
    right: -6.25rem;
    height: 18.75rem;
    width: 43.75rem;
    border-bottom-left-radius: 25rem;
    border-bottom-right-radius: 25rem;
  }
}
.banner--title.--contact .banner__element:after {
  content: "";
  position: absolute;
  top: -0.9375rem;
  right: 6.25rem;
  height: 2.5rem;
  width: 2.5rem;
  border-radius: 999px;
  background: #10254e;
}
@media (min-width: 1024px) {
  .banner--title.--contact .banner__element:after {
    top: -1.875rem;
    right: 12.5rem;
    height: 5rem;
    width: 5rem;
  }
}

.banner--collapse {
  margin-bottom: 1rem;
}

.banner--thumbnail {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.banner--thumbnail img {
  max-width: 12.5rem;
}

.banner--partner {
  background: none;
  color: #fff;
  background-color: #10254e;
  padding: 2rem 0;
}
.banner--partner .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 1024px) {
  .banner--partner .container {
    flex-direction: row;
  }
}
.banner--partner .container h1 {
  text-align: center;
}
@media (min-width: 1024px) {
  .banner--partner .container h1 {
    text-align: left;
  }
}
.banner--partner .banner__img {
  display: flex;
  background-color: #fff;
  padding: 1.875rem;
  margin: 0;
}
.banner--partner img {
  max-width: 6.25rem;
}

.callout {
  position: relative;
  display: inline-block;
  font-size: 2rem;
  padding-bottom: 0.625rem;
  color: #10254e;
}
.callout:after {
  content: "";
  position: absolute;
  bottom: 0;
  right: -10%;
  display: block;
  width: 100%;
  height: 0.25rem;
  background: linear-gradient(to right, #10254e 25%, #60bee2 25% 50%, #ff715b 50% 75%, #fbb03b 75%) bottom/100% 0.25rem no-repeat;
}

.callout-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem;
  font-size: 2rem;
  text-align: center;
  margin-bottom: 1rem;
  background: linear-gradient(to right, #10254e 25%, #60bee2 25% 50%, #ff715b 50% 75%, #fbb03b 75%) bottom/100% 0.25rem no-repeat ,#10254e;
}
.callout-banner strong {
  color: #fff;
}
@media (min-width: 1024px) {
  .callout-banner strong {
    display: flex;
    flex-direction: column;
  }
}
.callout-banner strong span {
  color: #ff715b;
}

.contact-block {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  max-width: 40.625rem;
  padding: 2rem 2rem 3rem;
  color: #333333;
  font-size: 1.375rem;
  line-height: 1.875rem;
  font-weight: 600;
  background: linear-gradient(to right, #10254e 25%, #60bee2 25% 50%, #ff715b 50% 75%, #fbb03b 75%) bottom/100% 4px no-repeat ,#f7f7ff;
}
.contact-block h2 {
  margin-top: 0;
}
.contact-block a {
  display: inline-block;
  text-decoration: none;
}
.contact-block a:hover {
  color: #ff715b;
}
.contact-block svg {
  margin-top: 0.25rem;
}
.contact-block address {
  color: #333333;
  font-weight: 600;
}

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

.contact__line {
  display: flex;
  gap: 0.5rem;
}

html {
  font-size: 16px;
}

body {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: 1.6;
}

img {
  width: 100%;
  height: auto;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  max-width: 60rem;
}

main a {
  color: #10254e;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

* {
  box-sizing: border-box;
}
