/****************************************************** General */
body {
  background: rgb(0, 25, 125);
  background: -moz-linear-gradient(
    135deg,
    rgba(0, 25, 125, 1) 0%,
    rgba(0, 147, 208, 1) 100%
  );
  background: -webkit-linear-gradient(
    135deg,
    rgba(0, 25, 125, 1) 0%,
    rgba(0, 147, 208, 1) 100%
  );
  background: linear-gradient(
    135deg,
    rgba(0, 25, 125, 1) 0%,
    rgba(0, 147, 208, 1) 100%
  );
  color: #ffffff;
}
.grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.grid-contact-rows {
  grid-template-rows: minmax(358px, 1fr);
}
#burger {
  cursor: pointer;
}
p.highlight {
  font-size: clamp(1.75rem, 1.1338rem + 2.6291vw, 3.5rem);
  font-weight: 400;
  line-height: 125%;
}
@media screen and (max-width: 768px) {
  .grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
/****************************************************** Section 1 */
.section-1 {
  font-size: 14px;
  font-weight: 300;
}
.section-1 .grid {
  grid-template-rows: minmax(250px, auto);
}
.section-1 .grid-1 > div > .row > div {
  font-size: 0.9375rem;
}
.section-1 .grid .row .mt-3 .col-12 {
  margin-bottom: 2rem;
  font-size: 1rem;
}
.section-1 .grid .row .mt-3 .col-12 a,
.section-1 .grid .row .mt-3 .col-12 a:link {
  color: #909dbd;
  text-decoration: none;
  transition: all 0.25s ease-in-out;
}

.section-1 .grid .row .mt-3 .col-12 a:hover {
  color: #ffffff;
}
.section-1 .grid-1 > div {
  padding-top: clamp(6.25rem, 3.213rem + 12.9577vw, 14.875rem);
  padding-bottom: 1.5rem;
}
.section-1 .grid-1 > div:first-child {
  border-right: 0.5px solid #ffffff;
}
.section-1 .grid-2 {
  grid-template-rows: repeat(var(--finance-grid-2-rows), minmax(180px, 250px));
  column-gap: clamp(1rem, -0.2324rem + 5.2582vw, 4.5rem);
  row-gap: clamp(1.5rem, -0.1725rem + 7.1362vw, 6.25rem);
}
.section-1 .box {
  border: 0.5px solid #ffffff;
  color: inherit;
  text-decoration: none;
}
@media screen and (max-width: 1200px) {
  .section-1 .grid-2 {
    grid-template-rows: repeat(var(--finance-grid-2-rows), minmax(180px, 200px));
    column-gap: 2vw;
  }
}
@media screen and (max-width: 768px) {
  .section-1 .grid-1 > div:first-child {
    border-right: none;
  }
  .section-1 .grid-1 > div + div {
    overflow-x: hidden;
  }
  .grid-2 {
    grid-template-rows: 1fr !important;
    grid-auto-columns: 1fr;
    width: 100%;
    overflow-x: scroll;
    grid-auto-flow: column;
  }
  .grid-2::-webkit-scrollbar {
    width: 1px;
    height: 1px;
    background-color: transparent;
  }
  .grid-2::-webkit-scrollbar-track {
    background-color: #e5ecfe;
    border-radius: 10px;
  }
  .grid-2::-webkit-scrollbar-corner {
    background-color: transparent;
  }
  .grid-2::-webkit-scrollbar-thumb {
    height: 4px;
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.5);
    background-color: #dac9fa;
  }

  .section-1 .grid-2 .box {
    min-width: 10rem;
    margin-bottom: 5.5rem;
  }
}
.section-1 .box p.highlight {
  font-size: clamp(2.5rem, 2.3239rem + 0.7512vw, 3rem);
  font-weight: 300;
  line-height: 120%;
  will-change: font-weight;
  transition: font-weight 0.3s ease-in-out;
}
.section-1 .box:hover p.highlight {
  font-weight: 700;
}
.section-1 .box p.highlight + img {
  width: 2.5rem;
  height: 2.5rem;
  align-self: center;
}

.section-1 .box {
  position: relative;
  padding: 2rem;
}
.section-1 .box .box-bg {
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  margin: 0;
  top: 0;
  left: 0;
  opacity: 0;
  z-index: 0;
  /* TRANSITION */
  transition: opacity 0.4s ease-in-out;
  -webkit-transition: opacity 0.4s ease-in-out;
  -moz-transition: opacity 0.4s ease-in-out;
  -o-transition: opacity 0.4s ease-in-out;
}
.section-1 .box > div:not(.box-bg) {
  z-index: 1;
}
.no_page-template .section-2 .grid-item a {
  position: relative;
}
.section-1 .box:hover .box-bg {
  opacity: 1;
}

/****************************************************** Footer */
footer {
  color: #0f2a95;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}
footer a {
  color: inherit;
  text-decoration: none;
}
footer p.highlight {
  font-size: clamp(1.75rem, 1.3099rem + 1.8779vw, 3rem);
  font-weight: 300;
  line-height: 130%;
}
footer .flex-1 {
  gap: clamp(24px, 35px + 0.75vh, 40px);
  font-size: clamp(1rem, 0.8239rem + 0.7512vw, 1.5rem);
  font-weight: 400;
  line-height: 125%;
}
footer .flex-2 {
  gap: clamp(20px, 21px + 0.75vh, 24px);
}
footer .flex-3 {
  gap: clamp(7px, 8px + 0.75vh, 10px);
}
footer .flex-4 {
  gap: 7px;
}
footer .flex-5 {
  gap: clamp(18px, 25px + 0.75vh, 30px);
}
