html {
  scroll-behavior: smooth;
}
html body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  font-family: "Inter", sans-serif;
  font-variation-settings: "wdth" 100;
}
body {
  background-image: linear-gradient(to bottom, #5d96c3, #61aec7);
}

* {
  box-sizing: border-box;
}

.container {
  max-width: 1100px;
  width: 100%;
  padding: 0 2rem;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.head-bar {
  background-color: white;
  /* box-shadow: 0px 4px 4px #0000002a; */
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  display: flex;
  justify-content: center;
  border-bottom: 1px solid oklch(92.9% 0.013 255.508);
  /* position: sticky; */
  position: relative;
  top: 0;
  z-index: 100;
  padding: 0 2rem;
}

.head_bar_items {
  display: flex;
  flex: 1;
  justify-content: space-between;
  max-width: 1100;
}

.head_bar_item {
  display: flex;
  position: relative;
  overflow: hidden;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
}

.head_bar_item a {
  text-decoration: underline;
  color: oklch(44.6% 0.03 256.802);
  font-weight: 500;
  font-size: 0.875rem;
}

.header_info_icon {
  width: 1rem;
}

.mobile-header {
  display: none;
}

.banner {
  background-color: white;
  padding-bottom: 100;
  display: flex;
  position: relative;
  justify-content: center;
}

.building-img {
  margin-top: 4rem;
  flex: 1;
  min-width: 31rem;
  transform: scale(1.25);
}

.building-img img {
  width: 100%;
}

.intro-text {
  color: rgb(37, 37, 37);
  background-color: rgba(255, 255, 255, 0.639);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.intro-text h1 {
  font-size: 1.75rem;
  color: oklch(37.1% 0 0);
  margin-top: 0;
  margin-bottom: 0.25rem;
  font-family: "Special Elite";
  text-transform: uppercase;
  text-align: center;
}

.intro-text p {
  font-family: "Special Elite";
  text-transform: uppercase;
  margin-bottom: 2.5rem;
  letter-spacing: 1.25px;
  color: oklch(37.1% 0 0);
}

.intro-text_button-container {
  display: flex;
  justify-content: start;
}

.button {
  cursor: pointer;
  border-radius: 10px;
  align-items: center;
  text-decoration: none;
  border: 1px solid #4e7fa5;
  padding: 1rem 3rem;
  text-transform: uppercase;
  background: #487699;
  color: white;
  letter-spacing: 1.25px;
  box-shadow: rgb(80 80 80 / 50%) 3px 3px 6px;
}

.bar {
  height: 30px;
  width: 100%;
  background-color: #d9e6e9;
}

.bar-bottom {
  height: 30px;
  width: 100%;
  background-color: #d9e6e9;
  box-shadow: 0px 4px 4px #0000002a;
  margin-top: 80px;
}

.quote {
  color: white;
  text-align: end;
  padding-right: 32px;
  padding-top: 35px;
  padding-bottom: 35px;
  font-weight: 500;
}

.reviews {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 1.5rem;
  overflow-x: auto;
  scrollbar-width: none;
  padding-top: 20px;
  padding-bottom: 20px;
}

.review {
  background-color: white;
  padding: 2rem;
  font-size: large;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  box-shadow: 0px 4px 4px #0000002a;
  aspect-ratio: 1/1;
}

.review__message {
  font-weight: 300;
}

.review__author {
  font-size: 0.875rem;
  text-align: right;
  font-weight: 500;
}

.stars {
  display: grid;
  grid-template-rows: 1fr;
  grid-template-columns: repeat(5, 1fr);
}

.title-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 5rem;
}

.product-title {
  color: #386381;
  font-weight: 600;
  font-size: 30px;
}

.product-bar {
  height: 2px;
  background-color: #00000033;
  margin-left: 30px;
  margin-right: 30px;
  width: 100%;
}

.product {
  display: flex;
  flex-direction: row;
  align-items: center;
  white-space: nowrap;

  gap: 10px;
  width: 200px;
}

.product-name {
  color: white;
  font-size: 25px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2 1fr);
  gap: 40px;
  padding-top: 4rem;
  margin-left: 2rem;
}

.insurance-title-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 40px;
  padding-bottom: 40px;
}

.insurance-title {
  color: #4a7b9b;
  font-weight: 600;
  font-size: 30px;
  white-space: nowrap;
}

.insurance-bar {
  height: 7px;
  background-color: #5992b8;
  margin-left: 30px;
  margin-right: 30px;
  width: 100%;
}

.insurance-companies_grid {
  padding-bottom: 50px;
  padding-top: 50px;
  color: white;
  font-size: 1.5rem;
  font-weight: 500;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  row-gap: 2rem;
  margin-left: 2rem;
}

.insurance-companies_grid div {
  width: 14rem;
}

#icon {
  background-color: white;
  padding: 10px;
  border-radius: 500px;
}

.contact-info-grid {
  margin-left: 2rem;
}

.contact-info-title {
  color: oklch(37.1% 0 0);
  font-weight: 500;
  padding-top: 40px;
  padding-bottom: 60px;
}

.contact {
  display: flex;
  gap: 20px;
  margin-bottom: 4rem;
  text-align: left;
}

.contact-words {
  color: oklch(37.1% 0 0);
  font-size: 1.25rem;
  font-weight: 550;
}

#get-in-touch {
  margin-top: 70px;
}

.bottom-section {
  background-color: white;
  width: 100%;
}
.last-display {
  display: flex;
  position: relative;
}

#rachael-stand {
  position: absolute;
  top: -19rem;
  height: 650px;
  right: 7rem;
}

#rachael-circle-laptop {
  position: absolute;
  z-index: 30;
  top: -140px;
  left: -3rem;
  width: 15rem;
  transform: rotate(345deg);
}

@media (max-width: 900px) {
  .container {
    padding: 0 1rem;
  }

  #rachael-circle-laptop {
    display: none;
  }

  #rachael-stand {
    display: none;
  }

  .head-bar {
    display: none;
  }

  .mobile-header-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem 0;
    background-color: white;
  }
  .mobile-header {
    width: 160px;
    display: flex;
  }

  .mobile-header > img {
    width: 100%;
  }

  #banner-section .container {
    padding: 0;
  }

  .banner {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    overflow: hidden;
  }

  .building-img {
    transform: none;
    min-width: 30rem;
    max-width: 40rem;
    margin-top: 0;
  }

  #reviews-section .container {
    padding: 0;
  }

  .reviews {
    margin-top: 60px;
    padding: 1rem;
  }

  .quote {
    display: none;
  }

  .products-container {
    background-color: #355a77;
    border-radius: 20px;
    margin-top: 80px;
  }

  .companies-container {
    background-color: #355a77;
    border-radius: 20px;
  }

  .product-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding-bottom: 40px;
  }

  .product-bar {
    display: none;
  }

  .product-title {
    color: white;
    padding-top: 20px;
    font-weight: 500;
  }

  .insurance-companies_grid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
  }

  #get-in-touch {
    text-align: center;
    margin-top: 50px;
  }

  .last-display {
    display: flex;
    justify-content: center;
  }

  .contact-info-grid {
    margin: 0;
  }
}

@media (min-width: 900px) and (max-width: 1191px) {
  #rachael-circle-laptop {
    left: 0.5rem;
  }
}
