.main {
  background-color: #fff;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  align-items: stretch;
  font-family:
    Montserrat,
    -apple-system,
    Roboto,
    Helvetica,
    sans-serif;
  font-weight: 900;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


/* header */

.header-section {
  background-color: #ffdae3;
  padding-bottom: 22px;
  font-family:
    Montserrat,
    -apple-system,
    Roboto,
    Helvetica,
    sans-serif;
  color: #ffdae3;
  font-weight: 900;
}

.header-inner {
  background-color: #ff95ad;
  width: 100%;
  padding: 0 1px 30px;
}

.header-content {
  background-color: #ff4570;
  display: flex;
  padding-top: 20px;
  padding-left:60px;
  align-items: stretch;
  flex-wrap: wrap;
  justify-content: space-between;
}

.header-title {
  font-size: 80px;
  margin: 0;
  padding-right:30px;
  padding-top: 30px;
}

.header-subtitle {
  z-index: 10;
  align-self: start;
  margin-top: 13px;
  padding-top: 50px;
  padding-right: 100px;
  font-size: 40px;
  text-align: center;
}

.header-subtitle:hover {
  text-shadow: none;
  color: #ff95ad;
  transition: 200ms;
}

.about-me-page {
  text-decoration: none;
  color: inherit;
}

.home {
  text-decoration: none;
  color: inherit;
}

/* header */

/* Header and Paragraph */

.main-content {
  display: flex;
  margin-top: 72px;
  width: 100%;
  padding: 0 56px;
  flex-direction: column;
  align-items: stretch;
}



/* Header and Paragraph */


/* main content */
  
  .text-content {
    flex: 1;
    max-width: 600px;
  }
  
  .page-header {
    color: #9747ff;
    font-size: 40px;
    margin-bottom: 10px;
    margin: 100px 0 0 89px;
  }
  
  .description {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 0;
    max-width: 40%;
    margin: 20px 0 0 89px;
  }
  
  .logo {
    flex-shrink: 0;
    width: 40%;
    display: flex;
    justify-content: center;
  }
  
  .natus-logo {
    max-width: 100%;
    height: auto;
  }

.image-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    width: 70%;
    margin-top: 20px;
    margin-right: 100px;
    padding-top: 100px;
    align-self: center;
    margin-left: 100px;
    align-items: center;
}

.box {
    width: 100%;
    display: inline-block;
    position: relative;
}

img {
width: 100%;
}


.sleep-awareness-container {
    display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto auto;
        gap: 15px;
        width: 70%;
        margin-right: 100px;
        padding-top: 100px;
        align-self: center;
        grid-template-areas:
            "poster web"
            "poster screen";
}

.sleep-awareness-box:first-child {
    grid-area: poster;
}

.sleep-awareness-box:nth-child(2) {
    grid-area: screen;
}

.screen {
    grid-area: web;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    width: 100%;
    align-items: end;
    padding-left: 10px;
    padding-bottom: 50px;
}

.sleep-awareness-details {
    margin-top: 0;
    font-size: 20px;
    font-weight: 400;
}

.banner-container {
    display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto auto;
        gap: 15px;
        width: 70%;
        margin-right: 100px;
        padding-top: 100px;
        align-self: center;
}

.details {

    font-size: 20px;
    font-weight: 400;
}

/* main content */



/* arrow buttons */

.project-arrows {
  display: flex;
  width: 100%;
  align-items: stretch;
  gap: 20px;
  font-size: 36px;
  color: #ff4570;
  flex-wrap: wrap;
  justify-content: space-between;
}

.project-arrows {
  align-self: center;
  margin-top: 146px;
  max-width: 1616px;
}

.arrow-icon {
    display: flex;
    align-items: stretch;
    gap: 28px;
    text-decoration: none;
    color: inherit;
  }
  

.arrow-caption {
  margin: auto 0;
  font-size: 27px;
  font-weight: 900;
}


.arrow-wrapper {
  position: relative;
  width: 70px;
  height: 50px;
}

.arrow-wrapper img {
  position: absolute;
  width: 100%;
  height: 100%;
  transition: opacity 0.2s ease-in-out;
}

.arrow-hover {
  opacity: 0;
}

.arrow-wrapper:hover .arrow-hover {
  opacity: 1;
}

.arrow-wrapper:hover .arrow-default {
  opacity: 0;
}

/* arrow buttons */


/* footer */

.contact-footer {
  background-color: #ff95ad;
  margin-top: 56px;
  width: 100%;
  padding: 36px 70px 102px;
}

.contact-info {
  font-size: 25px;
  color: #fff;
  font-weight: 600;
  line-height: 45px;
  font-style: normal;
}

/* footer */
