.hero {
  height: 650px;
  background-color: rgba(219, 201, 184, 0.85);
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url(media/squirrel-acorn-background2.png);
  background-blend-mode: lighten;
  background-size: cover;
  background-repeat: repeat;
}

.hero-bubble {
  background-color: rgba(241, 241, 241, 0.65);
  width: 65%;
  padding: 30px;
  border-radius: 50px;
}

.hero-bubble h1 {
  font-size: 3.5rem;
  color: var(--mainText);
}
.hero-bubble h1 span {
  display: block;
  font-size: 2.5rem;
  color: var(--secondaryText);
}

.about-us {
  text-align: center;
  padding-top: 70px;
}

.about-us h2 {
  color: var(--mainText);
  font-size: 3rem;
  margin-bottom: 40px;
}

.about-us h2 span {
  display: block;
}

.about-us p {
  width: 75%;
  margin: 15px auto;
}

.values {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  padding: 30px;

  margin: 50px auto 0 auto;
}

.value-card {
  flex: 1 1 calc(33.333% - 30px);
  text-align: center;
  margin-bottom: 30px;
}

.value-card p {
  text-align: center;
}

.value-card img {
  margin-bottom: 30px;
  width: 100px;
}

.value-card h3 {
  color: var(--mainText);
  font-size: 1.6rem;
  line-height: 1.8rem;
  letter-spacing: 0.03rem;
  margin-bottom: 10px;
}

.mini-morgans-description {
  margin-top: 90px;
  background-image: url("media/squirrel-acorn-background2.png");
  background-position: center;
  background-size: cover;
  background-color: rgba(255, 255, 255, 0.91);
  background-blend-mode: lighten;
  padding-bottom: 10px;
}
.description-header {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 70px;
  color: var(--mainText);
}

.description-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  padding: 30px;
}

.description-img-wrapper {
  flex: 1 1 calc(50% - 30px);

  position: relative;
}
.description-img {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  width: 420px;
  aspect-ratio: 1/1;
  border-radius: 50%;
}

.description-text-wrapper {
  flex: 1 1 calc(50% - 30px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 400px;
}

.description-text-wrapper p a {
  color: var(--mainText);
  font-weight: 600;
  text-decoration: none;
}
.description-text-wrapper p a:hover {
  color: var(--secondaryText);
}

.description-text-wrapper p {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.1rem;
  line-height: 1.6rem;
  font-weight: 400;
}

.description-text-wrapper h3 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  color: var(--mainText);
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.description-text-wrapper p span {
  color: var(--mainText);
  font-weight: bolder;
}

.description-text-wrapper p {
  margin-bottom: 40px;
}

.description-links-wrapper {
  width: 95%;
  margin: 0 auto;
}

.description-links-wrapper a {
  margin-right: 10px;
}

.ethos {
  background-image: url("media/squirrel-acorn-background2.png");
  background-position: center;
  background-size: cover;
  background-color: rgba(255, 255, 255, 0.91);
  background-blend-mode: lighten;
  padding-bottom: 90px;
}

.ethos-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  flex-wrap: nowrap;
  gap: 30px;
  padding: 30px;
  position: relative;
}

.ethos-img-wrapper {
  flex: 1 1 calc(50% - 30px);

  position: relative;
}

.ethos-img {
  position: relative;
  width: 420px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  left: 50%;
  transform: translateX(-50%);
}

.ethos-text-wrapper {
  flex-basis: 70%;
  position: relative;
  top: 26%;

  min-width: 0;
}

.ethos-text-wrapper h2 {
  font-size: 2.5rem;
  text-align: center;
  color: var(--mainText);
  margin-bottom: 30px;
}
/* .ethos-text-wrapper h1 span {
  } */

.slide-wrapper {
  width: 100%;
  margin: 0 auto;

  position: relative;
}

.slide-wrapper img {
  width: 40px;
  position: absolute;
  left: 30px;
}

.slide-wrapper p {
  position: relative;
  width: 70%;
  left: 100px;
  font-size: 1.1rem;
}

.slide:hover {
  cursor: grab !important;
}

.swiper-btn {
  color: var(--darkText);
  font-size: 5px !important;
  font-weight: 1000;
}
.swiper-btn:hover {
  color: var(--backgroundBlock);
}

.apps-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 40px;
  padding: 50px 0;
}

:root {
  --swiper-navigation-size: 20px;
}

/* Pop Up Window */
.pop-up-window {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  padding: 30px 50px;
  background-color: #fff5e3;
  border-radius: 20px;
  border: none;
}

.pop-up-window i {
  position: absolute;
  right: 3%;
  top: 2%;
  font-size: 2rem;
  color: var(--secondaryText);
}
.pop-up-window i:hover {
  cursor: pointer;
  color: var(--buttonSelect);
}

.pop-up-window .pop-up-logo-wrapper {
  text-align: center;
  margin-bottom: 30px;
}
.pop-up-window .pop-up-logo-wrapper img {
  width: 170px;
}

.pop-up-window .pop-up-content {
  text-align: center;
  margin-bottom: 30px;
}
.pop-up-window .pop-up-content h3 {
  color: var(--mainText);
  font-size: 2.5rem;
}
.pop-up-window .pop-up-content h4 {
  color: var(--secondaryText);
  font-size: 1.8rem;
  margin-bottom: 40px;
}

.pop-up-btn-wrapper {
  text-align: center;
}

.pop-up-btn-wrapper a {
  display: inline-block;
  width: 100%;
}

@media (max-width: 994px) {
  .description-links-wrapper a {
    display: block;
    margin-bottom: 10px;
  }

  .value-card {
    flex-basis: 45%;
  }

  .apps-wrapper {
    display: flex;
    flex-direction: column-reverse;
  }

  .apps-wrapper .map-app iframe {
    height: 300px;
  }
}

@media (max-width: 920px) {
  .description-wrapper {
    display: block;
  }

  .description-text-wrapper {
    margin-top: 30px;
    display: block;
  }

  .description-text-wrapper h3 {
    text-align: center;
  }

  .description-links-wrapper {
    width: fit-content;
  }
  .description-links-wrapper a {
    display: inline;
  }

  .ethos-wrapper {
    display: block;
  }

  .ethos-text-wrapper {
    position: static;
    margin-top: 30px;
  }

  .widgets-wrapper {
    display: block;
  }
}

@media (max-width: 767px) {
  .hero-bubble h1 {
    font-size: 3.5rem;
    margin-bottom: 40px;
  }

  .hero-bubble h1 span {
    font-size: 1.6rem;
  }

  .hero-bubble {
    width: 90%;
  }

  .pop-up-window {
    width: 90%;
  }
}

@media (max-width: 500px) {
  .values {
    display: block;
  }
  .description-links-wrapper {
    width: 100%;
    margin-bottom: 50px;
  }

  .description-img-wrapper img {
    width: 300px;
  }

  .description-links-wrapper a {
    display: block;
    margin-bottom: 10px;
  }

  .description-wrapper {
    margin-bottom: 100px;
  }

  .description-img-wrapper h4 {
    text-align: center;
  }

  .block h2 {
    font-size: 1.6rem;
  }

  .ethos-img-wrapper {
    margin-top: 50px;
  }
  .ethos-img-wrapper img {
    width: 300px;
  }

  .slide-wrapper img {
    display: None;
  }

  .slide-wrapper p {
    width: 80%;
    margin: 0 auto;
    position: static;
  }
}
