html {
  scroll-behavior: smooth;
  overflow-y: scroll;
  
}



.tile_title,
.tile_title h1,
.tile_title h2,
.tile_title h3,
.tile_content h1,
.v_tile_content h2 {
  font-weight: 300;
}

body {
  margin: 0rem;
  height: 100%;
  width: 100%;
  font-family: 'Barlow', monospace;
  font-optical-sizing: auto;
  font-weight: 100;
  font-style: normal;
  font-size: 100%;
  font-variation-settings: "wdth" 120;
}

.wrapper_home {
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  background-color: #ffffff;
}

@media screen and (min-width: 4200px) {
  .wrapper_home {
    max-width: 70%;
  }
}

@media screen and (min-width: 6000px) {
  .wrapper_home {
    max-width: 50%;
  }
}



/*////////////////////////// MAIN GRID AND TILE ///////////////////////////*/



.main_grid {
  display: grid;
  grid-template-columns: repeat(minmax(1, 2), 1fr);
  grid-auto-rows: 23rem;
  row-gap: 5rem;
  padding: 0rem;
  overflow: hidden;
  align-items: center;
  aspect-ratio: auto;
}

.tile {
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: start;
  color: #212121;
  height: 100%;
  width: 100%;
  overflow: hidden;
  aspect-ratio: auto;
}

@media screen and (max-width: 769px) {
  .main_grid {
    display: grid;
    align-items: center;
    grid-template-columns: repeat(minmax(1, 2), 1fr);
    grid-auto-rows: 47rem;
    row-gap: 8rem;
  }
}

@media (max-width: 450px) {
  .main_grid {
    grid-template-columns: repeat(minmax(1, 2), 1fr);
    grid-auto-rows: 40rem;
    row-gap: 7rem;
  }
}

@media (max-width: 400px) {
  .main_grid {
    grid-template-columns: repeat(minmax(1, 2), 1fr);
    grid-auto-rows: 30rem;
    row-gap: 5rem;
  }
}

@media (max-width: 350px) {
  .main_grid {
    grid-template-columns: repeat(minmax(1, 2), 1fr);
    grid-auto-rows: 24rem;
  }
}

@media screen and (min-width: 1000px) {
  .main_grid {
    grid-template-columns: repeat(minmax(1, 2), 1fr);
    grid-auto-rows: 30rem;
    row-gap: 7rem;
  }
}

@media screen and (min-width: 1300px) {
  .main_grid {
    grid-template-columns: repeat(minmax(1, 2), 1fr);
    grid-auto-rows: 40rem;
    row-gap: 10rem;
  }
}

@media screen and (min-width: 1700px) {
  .main_grid {
    grid-template-columns: repeat(minmax(1, 2), 1fr);
    grid-auto-rows: 48rem;
    row-gap: 12rem;
  }
}

@media screen and (min-width: 2000px) {
  .main_grid {
    grid-template-columns: repeat(minmax(1, 2), 1fr);
    grid-auto-rows: 55rem;
    row-gap: 15rem;
  }
}

@media screen and (min-width: 2200px) {
  .main_grid {
    grid-template-columns: repeat(minmax(1, 2), 1fr);
    grid-auto-rows: 60rem;
    row-gap: 20rem;
  }
}

@media screen and (min-width: 2400px) {
  .main_grid {
    grid-template-columns: repeat(minmax(1, 2), 1fr);
    grid-auto-rows: 64rem;
  }
}

@media screen and (min-width: 2850px) {
  .main_grid {
    grid-template-columns: repeat(minmax(1, 2), 1fr);
    grid-auto-rows: 75rem;
  }
}

@media screen and (min-width: 3100px) {
  .main_grid {
    grid-template-columns: repeat(minmax(1, 2), 1fr);
    grid-auto-rows: 80rem;
  }
}

@media screen and (min-width: 4100px) {
  .main_grid {
    grid-template-columns: repeat(minmax(1, 2), 1fr);
    grid-auto-rows: 100rem;
    row-gap: 25rem;
  }
}

@media screen and (min-width: 4800px) {
  .main_grid {
    grid-template-columns: repeat(minmax(1, 2), 1fr);
    grid-auto-rows: 110rem;
    row-gap: 30rem;
  }
}



/*////////////////////////// SIDE_BY_SIDE tile  ///////////////////////////*/



.side_by_side {
  display: flex;
  width: 100%;
  height: 100%;
  gap: 0.25rem;
  margin-bottom: 100px;
  margin-top: 100px;
}

.black_tile {
  flex: 1;
  background-color: rgb(19, 19, 19);
  color: white;
  display: flex;
  justify-content: center;
  align-self: center;
  align-items: stretch;
  width: 100%;
  height: 100%;
}

.image_tile {
  flex: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #ffffff;
  width: 100%;
  height: 100%;
  object-fit: cover;
  overflow: hidden;
}

.tile_image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.4s ease;
  transform-origin: center center;
}

.tile_image:hover {
  transform: scale(1.05);
}

.tile_content {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  margin-left: 2vw;
  margin-right: 2vw;
}

.tile_content h1 {
  font-size: 3rem;
}

.tile_content p {
  font-size: 2rem;
}

.tile_title {
  color: rgb(255, 255, 255);
  margin-right: 100px;
  white-space: normal;
  overflow-wrap: break-word;
}

.tile_button {
  background-color: transparent;
  color: rgb(255, 255, 255);
  border: 0.1rem solid rgb(255, 255, 255);
  font-size: 2rem;
  cursor: pointer;
  max-width: 200px;
  max-height: 70px;
  line-height: 0px;
  padding: 0 1rem;
}

.tile_button p {
  font-size: 2rem;
}

.tile_button:hover {
  background-color: white;
  color: black;
}



/*////////////////////////// SIDE_BY_SIDE.ALT /////////////////////////// */



.side_by_side.alt {
  height: 100%;
}

.alt_tile_title {
  color: black;
  font-weight: normal;
  margin-right: 5rem;
  white-space: normal;
  overflow-wrap: break-word;
}

.text_tile.alt_tile {
  flex: 1;
  background-color: rgb(255, 255, 255);
  color: rgb(0, 0, 0);
  display: flex;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  height: 100%;
}

.tile_button.alt_button {
  background-color: transparent;
  color: #000;
  border: 0.1rem solid rgb(0, 0, 0);
  font-size: 2rem;
  cursor: pointer;
  max-width: 200px;
  max-height: 70px;
  line-height: 0px;
  padding: 0 1rem;
}

.tile_button.alt_button:hover {
  background-color: rgb(0, 0, 0);
  color: rgb(255, 255, 255);
}


@media screen and (min-width: 2800px) {
  .tile_button p {
    font-size: 1.75rem;
  }

  .tile_button {
    max-width: 400px;
    max-height: 140px;
  }

  .tile_button.alt_button {
    max-width: 400px;
    max-height: 140px;
  }
}

@media screen and (min-width: 2000px) and (max-width: 2800px) {
  .tile_button p {
    font-size: 1.75rem;
  }

  .tile_button {
    max-width: 380px;
    max-height: 130px;
  }

  .tile_button.alt_button {
    max-width: 380px;
    max-height: 130px;
  }
}

@media screen and (min-width: 1520px) and (max-width: 2000px) {
  .tile_content h1 {
    font-size: 2.75rem;
  }

  .tile_content p {
    font-size: 1.75rem;
  }

  .tile_button p {
    font-size: 1.5rem;
  }
}

@media screen and (max-width: 1520px) {
  .tile_content h1 {
    font-size: 2.5rem;
  }

  .tile_content p {
    font-size: 1.5rem;
  }

  .tile_button p {
    font-size: 1.25rem;
  }

  .tile_title {
    margin-right: 35px;
  }
}

@media screen and (max-width: 1300px) {
  .tile_content h1 {
    font-size: 2rem;
  }

  .tile_content p {
    font-size: 1.25rem;
  }

  .tile_button p {
    font-size: 1rem;
  }
}

@media screen and (max-width: 1000px) {
  .tile_content h1 {
    font-size: 1.5rem;
  }

  .tile_content p {
    font-size: 1rem;
  }

  .tile_button p {
    font-size: 0.75rem;
  }
}

@media screen and (min-width: 2850px) {
  .tile_content h1 {
    font-size: 3.5rem;
  }

  .tile_content p {
    font-size: 2.5rem;
  }

  .tile_button p {
    font-size: 2.25rem;
  }
}

@media screen and (min-width: 4000px) {
  .tile_content h1 {
    font-size: 5rem;
  }

  .tile_content p {
    font-size: 4rem;
  }

  .tile_button p {
    font-size: 4rem;
  }
}

@media (max-width: 769px) {
  .side_by_side {
    gap: 0.2rem;
    margin: 1rem 0;
    flex-direction: column-reverse;
  }

  .side_by_side.alt {
    flex-direction: column;
  }

  .image_tile {
    padding-bottom: 0rem;
    flex: 2;
    height: auto;
  }

  .text_tile.alt_tile {
    background-color: #ffffff;
  }

  .side_by_side,
  .side_by_side.alt {
    gap: 0rem;
  }
}

@media screen and (max-width: 769px) {
  .tile_button {
    width: 100%;
    max-width: 100px;
    max-height: 35px;
    padding: 0 0rem;
  }

  .tile_button {
    border: 1px solid rgb(255, 255, 255);
  }

  .tile_content h1 {
    font-size: 1.75rem;
  }

  .tile_content p {
    font-size: 1.25rem;
  }

  .tile_button p {
    font-size: 1rem;
  }

  .tile_content {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .alt_tile_title {
    margin-right: 20px;
  }

  .tile_button.alt_button {
    border: 1px solid rgb(0, 0, 0);
    width: 100%;
    max-width: 100px;
    max-height: 35px;
    padding: 0rem;
    margin: auto;
  }

  .black_tile,
  .text_tile.alt_tile {
    padding-bottom: 2rem;
    padding-top: 2rem;
  }
}

@media (max-width: 500px) {
  .tile_content h1 {
    font-size: 1.75rem;
  }

  .tile_content p {
    font-size: 1.1rem;
  }

  .alt_tile_title {
    margin-right: 0.5rem;
  }

  .tile_button p {
    font-size: 0.8rem;
  }

  .tile_button.alt_button {
    max-width: 100px;
    max-height: 40px;
    padding: 0%;
    margin: 0%;
  }

  .tile_button {
    max-width: 100px;
    max-height: 30px;
    padding: 0%;
  }
}

@media (max-width: 400px) {
  .tile_content h1 {
    font-size: 1.25rem;
  }

  .tile_content p {
    font-size: 0.8rem;
  }

  .alt_tile_title {
    margin-right: 0.5rem;
  }

  .tile_button.alt_button {
    max-width: 80px;
    max-height: 30px;
  }

  .tile_button {
    max-width: 80px;
    max-height: 30px;
  }

  .tile_button p {
    font-size: 0.8rem;
  }
}

@media (max-width: 350px) {
  .tile_content h1 {
    font-size: 1.25rem;
  }

  .tile_content p {
    font-size: 0.8rem;
  }

  .tile_button.alt_button {
    max-width: 70px;
    max-height: 25px;
  }

  .tile_button {
    max-width: 70px;
    max-height: 25px;
  }

  .tile_button p {
    font-size: 0.7rem;
  }
}



/*////////////////////////// Vertical stack  /////////////////////////// */



.hello-title {
  font-weight: bold;
  margin-bottom: 1rem;
  margin-left: 0rem;
  align-self: flex-start;
}

.hello-carousel {
  display: flex;
  flex-direction: row;
  height: 100%;
  width: 100%;
  gap: 1.5rem;
  scroll-snap-type: x mandatory;
  justify-content: center;
  margin-bottom: 10rem;
}

.story-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  scroll-snap-align: start;
  border: 0px solid #ccc;
  overflow: hidden;
}

.story-card img,
.story-card video {
  width: 100%;
  height: auto;
}

.vert_tiles_container {
  display: flex;
  flex-direction: column;
  margin-top: 13rem;
  margin-bottom: 13rem;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}

.image_with_textbox {
  width: 100%;
  max-width: 65%;
  margin: 0 auto;
  padding-bottom: 0rem;
}

.image_with_textbox img {
  width: 100%;
  height: auto;
  display: block;
}

.text_box {
  padding-top: 1.5rem;
  background-color: #ffffff;
  margin-top: 1rem;
  padding-top: 0px;
}

.heading_and_button {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  
}

.heading_and_button h2 {
  font-size: 3rem;
  margin: 0;
  font-weight: 300;
}

.heading_and_button button {
  padding: 0px;
  font-size: 2rem;
  background-color: #ffffff;
  color: rgb(0, 0, 0);
  border: 0.1rem solid rgb(0, 0, 0);
  cursor: pointer;
  width: 200px;
  height: 70px;
  justify-content: space-between;
  align-items: flex-start;
}

.text_box p {
  margin-top: 1rem;
  font-size: 2rem;
  /* line-height: 1.1; */
  font-weight: 200;
  margin-right: 15rem;
}

.heading_and_button button:hover {
  background-color: rgb(0, 0, 0);
  color: rgb(255, 255, 255);
}


@media screen and (min-width: 2800px) {
  .heading_and_button button {
    font-size: 2rem;
    width: 250px;
    height: 70px;
  }

  .text_box p {
    font-size: 2.75rem;
    margin-right: 13rem;
  }

  .text_box h2 {
    font-size: 3rem;
    margin-right: 1rem;
  }

  .text_box {
    margin-top: 2rem;
  }

  .vert_tiles_container {
    margin-top: 13rem;
    margin-bottom: 13rem;
  }

  .hello-carousel {
    margin-bottom: 13rem;
  }

  .hello-title {
    font-size: 4rem;
  }
}

@media screen and (max-width: 2800px) {
  .text_box p {
    font-size: 2.5rem;
    margin-right: 5rem;
  }

  .text_box h2 {
    font-size: 2.5rem;
    margin-right: 0.75rem;
  }

  .vert_tiles_container {
    margin-top: 11rem;
    margin-bottom: 11rem;
  }

  .hello-carousel {
    margin-bottom: 11rem;
  }

  .hello-title {
    font-size: 3.5rem;
  }

  .heading_and_button button {
    font-size: 1.75rem;
    width: 230px;
    height: 60px;
    padding: 0px;
  }
}

@media screen and (max-width: 2200px) {
  .text_box p {
    font-size: 1.75rem;
    margin-right: 2rem;
  }

  .text_box h2 {
    font-size: 2rem;
  }

  .text_box {
    margin-top: 1rem;
  }

  .vert_tiles_container {
    margin-top: 8rem;
    margin-bottom: 8rem;
  }

  .hello-carousel {
    margin-bottom: 8rem;
  }

  .hello-title {
    font-size: 3rem;
  }

  .heading_and_button button {
    font-size: 1.5rem;
    width: 160px;
    height: 50px;
  }
}

@media screen and (max-width: 1550px) {
  .text_box p {
    font-size: 1.5rem;
    margin-right: 2rem;
  }

  .text_box h2 {
    font-size: 1.5rem;
  }

  .text_box {
    margin-top: 1rem;
  }

  .vert_tiles_container {
    margin-top: 7rem;
    margin-bottom: 7rem;
  }

  .hello-carousel {
    margin-bottom: 6rem;
  }

  .hello-title {
    font-size: 2.5rem;
  }

  .heading_and_button button {
    font-size: 1.25rem;
    width: 140px;
    height: 40px;
  }
}

@media screen and (max-width: 1250px) {
  .text_box p {
    font-size: 1.25rem;
    margin-right: 3rem;
  }

  .text_box h2 {
    font-size: 1.25rem;
  }

  .heading_and_button button {
    font-size: 1rem;
    width: 120px;
    height: 30px;
  }

  .vert_tiles_container {
    margin-top: 5rem;
    margin-bottom: 5rem;
  }

  .hello-carousel {
    margin-bottom: 4rem;
  }

  .hello-title {
    font-size: 2rem;
  }
}

@media screen and (max-width: 960px) {
  .heading_and_button button {
    font-size: 0.75rem;
    width: 90px;
    height: 30px;
    border: 1px solid rgb(0, 0, 0);
  }

  .text_box p {
    font-size: 1rem;
    margin-right: 3rem;
  }

  .text_box h2 {
    font-size: 1.15rem;
  }

  .vert_tiles_container {
    margin-top: 5rem;
    margin-bottom: 5rem;
  }

  .hello-carousel {
    width: 100%;
    gap: 0.5rem;
  }

  .vert_tiles_container {
    width: 90%;
  }

  .hello-title {
    font-size: 1.5rem;
  }

  .image_with_textbox {
    max-width: 65%;
}}

@media screen and (max-width: 769px) {
  .vert_tiles_container {
    margin-top: 5rem;
    margin-bottom: 5rem;
    padding: 0px;
  }

  .hello-carousel {
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 5rem;  
  }

  .story-card {
    width: 100%;
    align-self: center;
  }    

  .story-card .heading_and_button {
    flex-direction: column;
    padding-left: 1rem;
  }

  .story-card .text_box {
    align-self: center;
  }

  .flex-container {
    display: flex;
    flex-direction: row;
    width: 100%;
  }

  .text_box {
    width: 50%;
  }

  .image_with_textbox {
    max-width: 70%;
  }

  .tile_content {
    padding-top: 0px;
    padding-bottom: 5px;
  }

  .heading_and_button button {
    font-size: 1rem;
    width: 120px;
    max-height: 30px;
  }

  .text_box p {
    font-size: 1rem;
    margin-top: 5px;
  }

  .text_box h2 {
    font-size: 1.25rem;
    margin: 0;
  }
}

@media screen and (max-width: 665px) {
  .text_box p {
    font-size: 1rem;
    margin-top: 5px
  }

  .text_box h2 {
    font-size: 1.15rem;
  }

  .text_box {
    padding-top: 0px;
  }

  .heading_and_button button {
    font-size: 1rem;
    width: 100px;
    height: 30px;
    padding: 0px;
  }

  .image_with_textbox {
    max-width: 80%;
  }
}


@media screen and (max-width: 530px) {
  .text_box p {
    font-size: 1rem;
    margin-top: 5px;
  }

  .text_box h2 {
    font-size: 1rem;
  }

  .image_with_textbox {
    max-width: 80%;
  }

  .heading_and_button button {
    font-size: 1rem;
    width: 100px;
    height: 30px;
  }

  .text_box {
    margin-top: 1rem;
  }
}

@media screen and (max-width: 500px) {
  .vert_tiles_container {
    margin-top: 4rem;
    margin-bottom: 4rem;
  }

  .text_box p {
    font-size: 0.75rem;
    margin-top: 5px;
  }

  .text_box h2 {
    font-size: 0.9rem;
  }

  .heading_and_button button {
    font-size: 0.75rem;
    max-width: 80px;
    max-height: 20px;
    padding: 0;
  }

  .text_box {
    margin-top: 0.75rem;
    margin-right: 0px;
  }

  .hello-carousel {
    gap: 0.5rem;
    margin-bottom: 4rem;  
  }

  .hello-title {
    font-size: 1.25rem;
  }
}

@media screen and (max-width: 400px) {
  .vert_tiles_container {
    margin-top: 3rem;
    margin-bottom: 3rem;
  }

  .hello-carousel {
    margin-bottom: 3rem;
  }

  .text_box h2 {
    font-size: 0.75rem;
  }
}



/*////////////////////////// Navbar /////////////////////////// */



.navbar {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  box-sizing: border-box;
  background-color: #ffffff;
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
}

.navbar_logo img {
  height: auto;
  width: auto;
  max-height: 5.5rem;
  padding-top: 1.9rem;
  padding-left: 1.25rem;
  padding-right: 2rem;
}

.navbar_upper p {
  display: flex;
  justify-content: flex-start;
  gap: 10px;
  position: relative;
  margin-right: 0rem;
  margin-left: 2rem;
}

.navbar_link {
  white-space: nowrap;
  text-decoration: none;
  color: rgb(0, 0, 0);
  font-size: 1.75rem;
  font-weight: 500;
  padding-bottom: 0px;
  display: inline-block;
}

.navbar_link:hover {
  color: rgb(88, 88, 88);
}

body {
  padding-top: 10.5rem;
}

.navbar_container {
  display: flex;
  justify-content: left;
  align-items: center;
  padding-bottom: 2rem;
  padding-top: 1rem;
  padding-left: 1rem;
}

.navbar_lower {
  padding-top: 1%;
  display: flex;
  justify-content: flex-end;
}

.navbar_lower p {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 2rem;
}

.mobile_navbar {
  max-height: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.45);
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.1);
}

.toggle-button {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.toggle-button:focus {
  outline: none;
}

.toggle-button .bar {
  height: 3px;
  width: 100%;
  background-color: #333;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.toggle-button.open .bar:nth-child(1) {
  transform: rotate(45deg) translateY(13px);
}

.toggle-button.open .bar:nth-child(2) {
  opacity: 0;
}

.toggle-button.open .bar:nth-child(3) {
  transform: rotate(-45deg) translateY(-13px);
}


@media screen and (min-width: 1000px) {
  body {
    padding-top: 6.75rem;
  }

  .navbar_logo img {
    max-height: 4rem;
    padding: 0px;
    padding-top: 1.25rem;
  }

  .navbar_link {
    font-size: 1.25rem;
  }

  .navbar_upper p {
    box-shadow: inset 0 -1px 0 0 black;
  }

  .navbar_container {
    padding-bottom: 1.1rem;
    padding-top: 0rem;
  }
}


@media screen and (max-width: 1000px) {
  .navbar {
    padding-left: 1rem;
    padding-right: 2rem;
  }

  .navbar_container {
    flex-direction: row;
    align-items: center;
    padding-bottom: 0rem;
    justify-content: space-between;
    padding-left: 0%;
    padding-top: 0rem;
  }

  body {
    padding-top: 6.5rem;
  }

  .navbar_logo img {
    max-height: 4rem;
    padding: 0px;
    padding-top: 1.25rem;
  }

  .navbar_link {
    font-size: 1.25rem;
    padding-bottom: 1.1rem;
  }

  .mobile_navbar.active {
    max-height: 300px;
    padding-top: 1rem;
    padding-bottom: 1rem;
    margin-top: -0.25rem;
    position: fixed;
    width: 100%;
    z-index: 101;
    background-color: rgb(255, 255, 255);
  }

  .toggle-button {
    display: flex;
    width: 30px;
    height: 21px;
  }

  .navbar_upper {
    display: none;
  }
}



/*////////////////////////// Footer /////////////////////////// */



.site-footer {
  background-color: rgb(0, 0, 0);
  color: #ffffff;
  padding: 2rem 0;
  font-size: 1.25rem;
  font-weight: 400;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  max-width: 1500px;
  margin: 0 auto;
  padding-bottom: 10rem;
}

.footer-section {
  flex: 1;
  margin-bottom: 2rem;
  margin-left: 5rem;
}

.footer-section h3 {
  color: #fff;
  margin-bottom: 1rem;
}

.footer-section ul {
  list-style-type: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 0.65rem;
}

.footer-section a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: #fff;
}

.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid #555;
}

.footer-underline {
  height: 0.1rem;
  background-color: white;
  width: 100%;
  margin: 0 auto;
  margin-top: 3rem;
  margin-bottom: 1rem;
}


@media (min-width: 3200px) {
  .site-footer {
    font-size: 2rem;
  }

  .footer-underline {
    height: 0.2rem;
  }
}

@media screen and (max-width: 2000px) {
  .site-footer {
    font-size: 1rem;
  }

  .footer-underline {
    height: 0.1rem;
  }
}

@media screen and (max-width: 1100px) {
  .site-footer {
    font-size: 1rem;
  }

  .footer-underline {
    height: 0.05rem;
  }

  .footer-underline {
    margin-bottom: 2rem;
  }
}

@media (max-width: 769px) {
  .mobile-footer.active {
    gap: 0px;
  }

  .footer-underline {
    margin-bottom: 0rem;
    height: 0rem;
  }

  .footer-section {
    margin-bottom: 1rem;
    margin-left: 3rem;
  }

  .site-footer {
    font-size: 1rem;
  }
}

@media screen and (max-width: 600px) {
  .site-footer {
    font-size: 0.8rem;
  }

  .footer-section {
    margin-left: 2rem;
  }
}

@media screen and (max-width: 500px) {
  .site-footer {
    font-size: 0.6rem;
  }
}

@media screen and (max-width: 380px) {
  .site-footer {
    font-size: 0.5rem;
  }

  .footer-section {
    margin-left: 1rem;
  }
}

@media screen and (max-width: 300px) {
  .site-footer {
    font-size: 0.4rem;
  }
}