
/* ============================= */
/* BASE */
/* ============================= */

body {
  margin: 0;
  background: #ffffff;
  color: #1d1d1f;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display",
               "Segoe UI", Roboto, Arial, sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

.aem-Grid {
  overflow: hidden;
}

.aem-Grid figure img {
  max-width: 300px;
  max-height: 300px;
  
}


/* ============================= */
/* HERO */
/* ============================= */

.page-header {
  position: relative;
  /* min-height: 85vh; */
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: left;
  text-align: left;
  color: #fff;
}

.page-header h1{
 border-top: 3px solid red;
 border-left: 3px solid red;
 padding: 20px;
 text-align: left;
 font-size:larger;
 color: #fff;
}

.page-header-full-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-header::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
                              rgba(0, 0, 0, 0.99),
                              rgba(0, 0, 0, 0));
}

.header-body {
  position: relative;
  z-index: 2;
  max-width: 500px;
  padding: 0 20px;
  text-align: left;
}

.eyebrow {
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: .85;
}

.headline {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 600;
  margin: 20px 0;
}

.description {
  font-size: 20px;
  opacity: .9;
  margin-bottom: 40px;
}

.btn-light {
  display: inline-block;
  padding: 14px 32px;
  background: #ffffff;
  color: #000;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 500;
  transition: all .3s ease;
}

.btn-light:hover {
  background: #f2f2f2;
  transform: scale(1.04);
}

/* ============================= */
/* NET */
/* ============================= */

.row {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.col-xs-12 { width: 100%; }
.col-sm-6 { width: 50%; }
.col-md-8 { width: 66.666%; }
.col-md-4 { width: 33.333%; }

@media (max-width: 992px) {
  .col-md-8,
  .col-md-4 {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .col-sm-6 {
    width: 100%;
  }
}

/* ============================= */
/* SECTIONS */
/* ============================= */

.section-text,
.related-resources,
.callout {
  padding: 80px 40px;
}

.section-text {
  max-width: 820px;
  margin: 0 auto;
}

.section-text b {
  font-size: 22px;
  font-weight: 600;
}

.section-text p {
  margin-bottom: 18px;
}
































section.media-video-player {
    height: 100%;
}
section.media-video-player {
    padding-bottom: 56.25%;
    position: relative;
    background: black;
    overflow: hidden;
    -webkit-touch-callout: none;
   
}
.col-xs-12>[class*='cmp-'] {
    height: 20%;
}
/* ============================= */
/* RELATED */
/* ============================= */

.related-resources {
  border-left: 1px solid #e5e5e5;
}

.related-resources h3 {
  font-weight: 600;
  margin-bottom: 20px;
}

.related-resources ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.related-resources a {
  color: #0066cc;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 12px;
  transition: opacity .2s ease;
}

.related-resources a:hover {
  opacity: .6;
}

/* ============================= */
/* CALLOUT */
/* ============================= */

.callout {
  border-radius: 24px;
  background: #f5f5f7;
  color: #1d1d1f;
  margin: 40px;
  transition: all .3s ease;
}

.bg-dark,
.bg-gray {
  background: #f5f5f7;
  color: #1d1d1f;
}

.callout h3 {
  font-weight: 600;
  margin-bottom: 16px;
}

/* ============================= */
/* SEPARATION OF BLOCKS */
/* ============================= */

.cmp-row {
  border-bottom: 1px solid #f0f0f0;
}

.cmp-row:last-child {
  border-bottom: none;
}

/* ============================= */
/* APPEARANCE ANIMATION */
/* ============================= */

/*  */
/* ============================= */
/* PURE CSS SCROLL-LIKE EFFECT */
/* ============================= */

.section-text,
.callout,
.related-resources {
  animation: appleFade 1s ease forwards;
  opacity: 0;
}

.section-text { animation-delay: 1.1s; }
.callout { animation-delay: 1.2s; }
.related-resources { animation-delay: 1.3s; }

@keyframes appleFade {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}