.page-title {
  font-family: 'Lora', serif;
  color: var(--cc-bg);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 1rem;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  text-align: left;
  margin-right: 9%;
  margin-bottom: 2rem;
}

.title-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.title-small {
  font-size: 1.5rem;
  text-align: right;
  font-weight: normal;
  line-height: 0.75;
}

.title-small:first-child {
  margin-bottom: 1.250rem;
}

.title-large {
  font-size: 7rem; /* Bigger font for the website name */
  font-weight: 600;
  line-height: 0.75;
}

/* SWIPER */

.hero-swiper {
  width: 100%;
  border-radius: 2rem;
}

.hero-carousel {
  position: relative;
}

.hero-text {
  position: absolute;
  z-index: 10;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
}

.hero-slide img {
  display: block;
    width: 100%;
    height: auto;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
}

.buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1rem;
}

.hero-button-wrap {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--cc-text);
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  display: inline-block;
  padding: 2.5rem 1.5rem;
  border-radius: 1.5rem;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.blurred-box.medium-blur:hover {
  color: white;
}

.blurred-box.medium-blur:first-child:hover {
  background: rgba(76, 89, 168, 0.6);
}

.hero-button-wrap:nth-child(2):hover {
  background: rgba(226, 108, 89, 0.6);
}

.hero-button-wrap:nth-child(3):hover {
  background: rgba(0, 0, 0, 0.6);
}

.hero-button-wrap .arrow-icon svg path {
  stroke: var(--cc-text);
}

.hero-button-wrap .arrow-icon svg,
.hero-button-wrap .arrow-icon svg path {
  -webkit-transition: stroke 0.5s, fill 0.5s, color 0.5s;
  -o-transition: stroke 0.5s, fill 0.5s, color 0.5s;
  transition: stroke 0.5s, fill 0.5s, color 0.5s;
}

.hero-button-wrap:hover .arrow-icon svg path {
  stroke: white;
}


.hero-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
}

.nav-icon {
  border-radius: 3rem;
  width: 3rem;
  height: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: var(--cc-bg);
}

.nav-icon img {
  width: 29px;
  height: 29px;
}


@media only screen and (max-width: 1366px) {
  
  .hero-text {
    position: static;
  }

  .page-title {
    position: absolute;
    right: 2rem;
    bottom: 35%;
    z-index: 5;
    margin-right: 2rem;
    margin-bottom: 0rem;
  }

  .buttons {
    margin-top: 2rem;
  }

  .hero-button-wrap {
    border: 1px solid var(--cc-neutral-dark);
  }
}


@media only screen and (max-width: 900px) {

  .hero-text {
    margin-top: 2rem;
  }
  
  .page-title {
    position: static;
    color: var(--cc-text);
  }

  .buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  .hero-button-wrap {
    padding: 1rem 1rem;
  }
  
}

@media only screen and (max-width: 768px) {
  .title-large {
    font-size: 4rem;
  } 

  .title-small:first-child {
    margin-bottom: 1rem;
  }

  .title-small {
    font-size: 1.2rem;
  }
  
}

@media only screen and (max-width: 450px) {   
  
  .title-large {
    font-size: 2rem;
  } 

  .title-small:first-child {
    margin-bottom: 0.75rem;
  }

  .title-small {
    font-size: 1.125rem;
    line-height: 1.125;
  }

}