/****************************************************** 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;
}
p {
  margin: 0;
}
.grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: minmax(350px, 1fr);
}
#burger {
  cursor: pointer;
}
p.highlight {
  font-size: clamp(1.75rem, 1.1338rem + 2.6291vw, 3.5rem);
  font-weight: 300;
  line-height: 130%;
}
@media screen and (max-width: 425px) {
  .grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
/****************************************************** Burger Menu */
#cd-nav a {
  color: #00074d;
}
/****************************************************** Section 1 */
.section-1 p:not(.highlight) {
  font-size: clamp(1rem, 0.912rem + 0.3756vw, 1.25rem);
  font-weight: 400;
  line-height: 24px;
}
.section-1 {
  max-height: 75rem;
  overflow-y: hidden;
}
/****************************************************** Section 2 */
.section-2 .custom-row {
  border-bottom: 0.5px solid #ffffff;
}
.section-2 .custom-row .grid > a:nth-child(odd) {
  border-right: 0.5px solid #ffffff;
}
.section-2 :is(a, a:hover) {
  color: #ffffff;
  text-decoration: none;
}
.section-2 p {
  font-size: clamp(1.25rem, 0.9859rem + 1.1268vw, 2rem);
  width: clamp(6.5rem, 4.5414rem + 8.3568vw, 12.0625rem);
  line-height: 125%;
}
.section-2 div.container-fluid div.grid p.d-flex {
  width: auto;
  max-width: 62%;
  margin-left: clamp(1rem, -1.7551rem + 4.898vw, 4rem);
}
.ko_page-template .section-2 .grid-item,
.no_page-template .section-2 .grid-item {
  position: relative;
  border-right: 0.5px solid #ffffff;
}
.no_page-template .section-2 .grid-item .post-thumbnail {
  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;
}
.no_page-template .section-2 .grid-item a {
  position: relative;
}
.no_page-template .section-2 .grid-item:hover .post-thumbnail {
  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);
}

@media screen and (max-width: 768px) {
  /********************* Section 1 ****************************
  ************************************************************/
  .no_page-template .section-1,
  .ko_page-template .section-1 {
    max-height: 39.2rem;
  }
  /********************* Section 2 ****************************
  ************************************************************/
  .no_page-template .section-2 .grid-item,
  .ko_page-template .section-2 .grid-item {
    position: relative;
    border-right: none;
    border-bottom: 0.5px solid #ffffff;
  }
  .section-2 .custom-row {
    border-bottom: none;
  }
  .section-2 .grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 1fr;
  }
  .section-2 .grid .grid-item {
    min-height: 9.2rem;
  }
  .section-2 .grid .grid-item .px-3 {
    padding-bottom: 2rem;
  }
}
