* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

/* <!-- FIRST SECTION (About Me) ---------------------------------------------------------------------------------------------> */
.first {
  background: linear-gradient(to right, #1C449B 25%, #1C449B00 60%, #ffffff00), url('/assets/images/meetKatie_top.jpg');
  /* Gradient + Background Image */
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  flex-direction: column;
  padding: 10rem 3rem 10rem 3rem;
  color: white;
}

.first .content {
  margin-top: 3.125rem;
}

.mobile-image{
  display: none;
}

.mobile-image img{
  width: 100vw;
  height: 100%;
  object-fit: cover;
}

/* First Section Text */
.first .content p {
  width: 55%;
}

/* <!-- QUOTE SECTION (About Me) ---------------------------------------------------------------------------------------------> */
.quote-section {
  background-color: white;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3em;
  color: #1C449B;
}

/* Quote Section Text */
.quote-section p.quote {
  font-size: 5.5rem;
  font-weight: 900;
  font-style: italic;
  text-align: center;
  letter-spacing: 0.125rem;
}

.quote-section p.author {
  font-size: 4rem;
  font-weight: 900;
  font-style: italic;
  text-align: right;
  letter-spacing: 0.125rem;
}

/* <!-- SECOND SECTION (About Me) ---------------------------------------------------------------------------------------------> */
.second {
  background-color: #1C449B;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  row-gap: 6.25rem;
  padding: 10rem 3rem 10rem 3rem;
  color: white;
}

.second .image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.second img {
  width: 50rem;
  height: 44rem;
  object-fit: cover;
}

.second h4 {
  margin-bottom: 1rem;
  width: 105%;
}

/* <!-- PRIORITIES SECTION ---------------------------------------------------------------------------------------------> */
.priorities {
  display: flex;
  flex-direction: column;
  padding: 10rem 3rem 10rem 3rem;
  color: #1C449B;
  text-align: left;
}

.priorities .content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-row-gap: 1rem;
  justify-items: center;
  align-items: start;
  margin-top: 3.125rem;
  margin-left: 1rem;
}

.priorities .content .priority {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: left;
  justify-content: center;
}

.priorities .content .info {
  width: 75%;
  text-align: center;
}

.icon-placeholder {
  width: 11rem;
  height: 11rem;
  /* background-color: #1C449B;
  border-radius: 50%; */
  font-size: 11rem;
  display: flex!important;
  justify-content: center;
  align-items: center;
}

/* Priorities Text */
.priorities .content h3 {
  margin-top: 1.5rem;
}

.priorities .content p {
  font-size: 1.25rem;
  margin-top: 1.5rem;
}

/* Priorities Buttons */
.priorities .buttons {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 1.5rem;
}

/* <!-- THIRD SECTION (About Me) ---------------------------------------------------------------------------------------------> */
.third {
  background: linear-gradient(to bottom, #1C449B 20%, #1C449B00 75%, #ffffff00), url('/assets/images/meetKatie_banner.jpg');
  /* Gradient + Background Image */
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 80vh;
  padding: 10rem 3rem 10rem 3rem;
  color: white;
}

.third .quote, .author {
  font-size: 3rem;
}

/* <!-- DONATION SECTION (About Me) ---------------------------------------------------------------------------------------------> */
.donations {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding: 10em 3em 10em 3em;
  color: #1C449B;
  text-align: left;
}

.donations .buttons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 1.5rem;
  align-items: center;
  width: 100%;
}

.donations .buttons a {
  font-size: 6.25rem;
  padding: 1.5rem;
}

/* <!-- MEDIA QUERIES ---------------------------------------------------------------------------------------------> */
/* <!-- Laptop ----------------!> */
@media only screen and (min-width: 1025px) and (max-width: 1440px),
only screen and (min-width: 853px) and (max-width: 1280px) {
  .quote-section p.quote {
    font-size: 4rem;
  }

  .quote-section p.author {
    font-size: 3rem;
  }

  .second {
    row-gap: 5rem;
  }

  .second img {
    width: 35rem;
    height: 29rem;
    object-fit: cover;
  }

  .icon-placeholder {
    width: 10rem;
    /* Width of the circle */
    height: 10rem;
    /* Height of the circle (should match width for a perfect circle) */
    font-size: 10rem;
  }

  .donations .buttons a {
    font-size: 5rem;
    padding: 1.25rem;
  }
}

/* <!-- Desktop/Laptop + Upscale (125% Scale) ----------------!> */
@media (max-width: 1536px) and (min-width: 1535px) and (min-resolution: 120dpi) and (max-resolution: 121dpi) {
  .first {
    padding: 8rem 3rem 8rem 3rem;
  }

  .first .content {
    margin-top: 2.5rem;
  }

  .quote-section p.quote {
    font-size: 4rem;
  }

  .quote-section p.author {
    font-size: 3rem;
  }

  .second {
    row-gap: 5rem;
    padding: 8rem 3rem 8rem 3rem;
  }

  .second img {
    width: 40rem;
    height: 35rem;
    object-fit: cover;
  }

  .priorities {
    padding: 8rem 3rem 8rem 3rem;
  }

  .priorities .content p {
    margin-top: 1rem;
  }

  .third {
    padding: 8rem 3rem 8rem 3rem;
  }
}

/* <!-- Desktop + Scale (150% Scale) ----------------!> */
@media (max-width: 1280px) and (min-width: 1279px) and (min-resolution: 144dpi) and (max-resolution: 145dpi) {
  .first {
    padding: 6rem 3rem 6rem 3rem;
  }

  .first .content {
    margin-top: 2.5rem;
  }

  .quote-section p.quote {
    font-size: 3.5rem;
  }

  .quote-section p.author {
    font-size: 2.5rem;
  }

  .second {
    row-gap: 5rem;
    padding: 6rem 3rem 6rem 3rem;
  }

  .second img {
    width: 30rem;
    height: 25rem;
    object-fit: cover;
  }

  .priorities {
    padding: 6rem 3rem 6rem 3rem;
  }

  .priorities .content p {
    margin-top: 1rem;
  }

  .third {
    padding: 6rem 3rem 6rem 3rem;
  }

  .third .quote, .author {
    font-size: 2rem;
  }
}

/* <!-- Mobile ----------------!> */
@media only screen and (max-width: 767px),
only screen and (orientation: portrait) {

  /* <!-- First Section -----> */
  .first {
    background: linear-gradient(#1c449b, #1c449b), url('/assets/images/meetKatie_top.jpg');
    /* Gradient + Background Image */
    background-size: cover;
    background-position: 70%;
    background-attachment: none;
    padding: 7rem 1rem 0 1rem;
  }

  .first .content {
    margin-top: 2rem;
  }

  .mobile-image{
    display: flex;
    justify-content: center;
  }

  .first .content p {
    width: 100%;
  }

  /* <!-- Quote Section -----> */
  .quote-section {
    padding: 1rem;
  }

  .quote-section p.quote {
    font-size: 2.5rem;
    letter-spacing: 0;
  }

  .quote-section p.author {
    font-size: 1.5rem;
    text-align: center;
    letter-spacing: 0;
  }

  /* <!-- Second Section -----> */
  .second {
    display: block;
    padding: 0 1rem 0 1rem;
    color: white;
    justify-items: center;
  }

  .second img {
    width: 100vw;
    height: 100%;
    object-fit: cover;
  }

  .second .content {
    padding-top: 1rem;
    width: 90vw;
  }

  /* <!-- Second Section -----> */
  .priorities {
    padding: 7rem 1rem 7rem 1rem;
  }

  .priorities h1 {
    text-align: center;
    font-size: 4rem;
  }

  .priorities .content {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 1fr);
    grid-row-gap: 0;
    justify-items: center;
    align-items: center;
    margin-top: 1rem;
    margin-left: 0;
  }

  .priorities .content .priority {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
  }

  .priorities .content p {
    font-size: 1rem;
  }

  .icon-placeholder {
    width: 5rem;
    height: 5rem;
    font-size: 5rem;
  }

  .info {
    width: 100%;
  }

  .priorities .content .info.left {
    text-align: left;
    padding-left: 1rem;
    padding-right: 0;
  }

  .priorities .content .info.right {
    text-align: right;
    padding-right: 1rem;
    padding-left: 0;
  }

  /* <!-- Third Section -----> */
  .third {
    background: linear-gradient(#1c449bc7, #1c449bc7), url('/assets/images/meetKatie_banner.jpg');
    background-size: cover;
    background-position: 60%;
    background-attachment: none;
    height: 80vh;
    padding: 3rem 1rem 3rem 1rem;
  }

  .third .quote, .author {
    font-size: 1.5rem;
  }

  .third .author {
    text-align: right;
  }

  /* <!-- Donations Section -----> */
  .donations {
    padding: 7rem 1rem 7rem 1rem;
    text-align: center;
  }

  .donations .buttons {
    display: grid;
    grid-template-columns: 0;
    grid-template-rows: 1fr;
    margin-top: 1rem;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    justify-items: center;
    width: 100%;
  }

  .donations .buttons a {
    font-size: 2.5rem;
    padding: 1rem;
    margin: 0;
    width: 80vw;
  }
}
