
body {
  background: #F6F6F6;
}

/* Header */
.header-hero-wrapper{
  background: linear-gradient(154deg, #428e5f 0%, #112120 100%);
  position: relative;
  min-height: 950px;
  overflow: hidden;
  margin-bottom: 85px;
}
.header-hero-wrapper::after {
  content: "";
  position: absolute;
  z-index: 1;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 159px;
  background: url("../images/hero.svg") no-repeat bottom/100% 159px;
}
.header {
  padding: 0 20px;
}
.header-wrapper{
  max-width: 1240px;
  margin: 0 auto;
  align-items: center;
  padding-top: 44px;
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}
.logo {
  color: #fff;
  font-weight: 700;
  font-size: 20px;
}
.nav-list {
  display: flex;
  gap: 80px;
}
.nav-list-item {
  font-size: 15px;
}
.nav-link{
  color: #fff;
  position: relative;
}
.nav-link::before{
  content: "";
  position: absolute;
  transition: 0.2s;
  width: 0;
  height: 4px;
  border-radius: 100px;
  background: #C4C4C4;
  top: 100%;
}
.nav-link:hover::before{
  width: 80%;
}

.header-buttons {
}
.sign-up {
  padding: 13px 25px;
  color: #fff;
  font-size: 15px;
}
.login {
  padding: 13px 43px;
  background: #FF7B4E;
  border-radius: 100px;
  color: #fff;
}
.sign-up:hover, .login:hover {
  transition: 0.2s;
  opacity: 0.8;
}
.burger-menu {
  display: none;
  height: 50px;
  width: 50px;
  position: relative;
}
.burger-menu span {
  display: block;
  height: 5px;
  width: 100%;
  background: #fff;
  border-radius: 25px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.3s ease;
}
.burger-menu span:nth-child(1) {
  top: 25%;
}
.burger-menu span:nth-child(3) {
  top: 75%;
}
.burger-menu.active span:nth-child(1) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}
.burger-menu.active span:nth-child(2) {
  opacity: 0;
}
.burger-menu.active span:nth-child(3) {
  top: 50%;
  transform: translate(-50%, 50%) rotate(-45deg);
}
.dropdown-menu {
  position: absolute;
  z-index: 100;
  right: 2em;
  top: 100px;
  width: 300px;
  background: linear-gradient(154deg, #428e5f 0%, #112120 100%);
  backdrop-filter: blur(15px);
  border-radius: 15px;
  overflow: hidden;
  height: 0;
  transition: height 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.dropdown-list-item{
  padding: 0.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.dropdown-buttons{
  margin-bottom: 5px;
  margin-top: 10px;
  display: flex;
  justify-content: center;
}
@media (min-width: 900px) {
  .dropdown-menu{
    height: 0;
  }
}
@media (max-width: 965px) {
  .nav-list{
    gap: 50px;
  }
}
@media (max-width: 800px){
  .nav-list, .header-buttons{
    display: none;
  }
  .burger-menu{
    display: block;
  }
  .burger-menu.active{

  }
  .dropdown-menu.active {
    height: 300px;
  }
} 
@media (max-width: 576px) {
  .dropdown-menu{
    left: 2rem;
    width: unset;
  }
  .dropdown-list-item{
    font-size: 20px;
  }
}
/* Hero */

.hero-section {
  position: relative;
  z-index: 1;
}
.hero-container {
  max-width: 1240px;
  margin: 0 auto;
  padding-top: 86px;  
  position: relative;
  padding-left: 20px;
}
.hero-img{
  position: absolute;
  left: 0;right: 0;top: 0;bottom: 0;
  max-width: 1154px;
  height: auto;
  z-index: -1;
  margin-left: 290px;
  top: -100px;
}
.hero-subtitle {
  display: block;
  box-sizing: border-box;
  max-width: 227px;
  height: 50px;
  border-radius: 15px;
  padding: 11px 30px;
  background: #4E887A;
  color: #fff;
  font-size: 18px;
}
.hero-title {
  padding-top: 7px;
  color: #fff;
  font-weight: 600;
  font-size: 55px;
  max-width: 603px;
}
.hero-description {
  color: #fff;
  font-size: 25px;
  opacity: 0.5;
  max-width: 519px;
  margin-top: 30px;
}
.hero-button {
  margin-top: 68px;
  padding: 27px 47px;
  font-weight: 600;
  font-size: 25px;
  color: #FEFEFE;
  background: linear-gradient(129.54deg, #FF7B4E 15.57%, #FF584E 95.03%);
  border-radius: 27px;
}
.hero-button:hover {
  transition: 0.2s;
  opacity: 0.8;
}
@media (max-width: 1040px) {
  .hero-title{
    font-size: 40px;
  }
  .hero-img{
    margin-left: 100px;
  }
  .hero-description{
    margin-top: 10px;
  }
  .hero-button{
    margin-top: 30px;
  }

}
@media (max-width: 800px){
  .hero-img{
    margin-left: 20px;
  }
  .header-hero-wrapper{
    margin-bottom: 30px;
  }
}
@media (max-width: 550px){
  .hero-subtitle{
    margin: 0 auto;
  }
  .hero-title{
    text-align: center;
    font-size: 25px;
  }
  .hero-description{
    text-align: center;
    font-size: 20px;
  }
  .hero-button{
    display: block;
    max-height: 240px;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-container {
    padding: 0 5px;
  }
  .hero-button{
  }
}

@media (max-width: 700px) {
  .header-hero-wrapper::after{
    height: 0;
  }
  .hero-img{
    top: 0;
    height: 0;
  }
  .header-hero-wrapper{
    min-height: 550px;
  }
  .hero-content{
    background: url('../images/hero-group.svg') no-repeat;
  }
  .hero-container{
    padding-top: 30px;
  }
  .hero-button{
    display: block;
    max-height: 240px;
  }
}

/* Choice */

.choice {
  display: flex;
  max-width: 1440px;
  margin: 0 auto;
  padding-left: 95px;
  gap: 22px;
}
.choice-container {
}
.choice-over-title {
  color: #0F1F1C;
  font-weight: 600;
  font-size: 30px;
  padding-top: 27px;
}
.choice-title {
  font-size: 55px;
  font-weight: 600;
  color: #0F1F1C;
}
.choice-description {
  color: #0F1F1C;
  font-size: 25px;
  opacity: 0.5;
  max-width: 456px;
  margin-top: 25px;
}
.choice-button {
  position: absolute;
  box-sizing: border-box;
  width: 223px;
  height: 79px;
  background: linear-gradient(129.54deg, #FF7B4E 15.57%, #FF584E 95.03%);
  border-radius: 27px;
  color: #FEFEFE;
  padding: 25px 44px;
  font-weight: 600;
  font-size: 20px;
  margin-top: 60px;
}
.choice-button:hover {
  transition: 0.2s;
  opacity: 0.8; 
}
.swiper {
  max-width: 862px;
  overflow: hidden;
}
.swiper-slide{
  display: flex;
  align-items: center;
}
.swiper-slide img{
  transition: 0.4s;
  border-radius: 35px;
  transform: scale(0.88);
}
.swiper-slide-next img {
  transform: scale(1);
}
.swiper-button-prev::after, .swiper-button-next::after{
  display: none;
}
.custom-next img{
  transform: rotate(180deg);
}
.custom-prev{
  width: 68px !important;
  height: 68px !important;
}
.custom-next{
  width: 68px !important;
  height: 68px !important;
  margin-right: 20px;
}
@media (max-width: 900px) {
  .choice{
    flex-direction: column;
    padding-left: 30px;
  }
  .swiper{
    max-width: 540px;
    margin: 0 auto;
    margin-top: 70px;
  }
  .choice-title{
    text-align: center;
  }
  .choice-over-title{
    text-align: center;
  }
  .choice-description{
    text-align: center;
    margin: 0 auto;
  }
  .choice-button{
    position: static;
    display: block;
    margin: 0 auto;
    margin-top: 30px;
  }
}
@media (max-width: 700px) {
  .swiper {
    max-width: 403px;
  }
} 
@media (max-width: 440px) {
  .choice {
    padding: 0 10px;
  }
  .choice-over-title{
    font-size: 20px;
  }
  .choice-title{
    font-size: 40px;
  }
  .choice-description{
    font-size: 20px;
  }
  .swiper{
    margin-top: 20px;
    max-width: 100%;
  }
  .custom-next{
    margin-right: 0;
  }
} 
/* Reviews */

.reviews {
  max-width: 1250px;
  margin: 0 auto;
  margin-top: 200px;
  display: flex;
  gap: 68px;
  padding-left: 20px;
}
.reviews-img {
  border-radius: 60px;
}
.reviews-container {
}
.reviews-title {
  color: #0F1F1C;
  font-size: 45px;
  max-width: 565px;
}
.reviews-info-wrapper {
  display: flex;
  gap: 33px;
  margin-top: 45px;
}
.review-photo {
  border-radius: 71.5px;
}
.reviews-info-container {
}
.reviews-nickname {
  color: #0F1F1C;
  font-size: 33px;
  margin-top: 18px;
}
.reviews-locate {
  margin-top: 15px; 
  color: #0F1F1C;
  opacity: 0.5;
  font-size: 25px;
}
.reviews-text {
  color: #0F1F1C;
  font-size: 22px;
  max-width: 491px;
  margin-top: 60px;
  opacity: 0.5;
}
.reviews-stars {
  display: flex;
  margin-top: 30px;
  gap: 12px;
}
@media (max-width: 982px) {
  .reviews{
    flex-direction: column;
    padding-right: 20px;
  }
  .reviews-img{
    display: block;
    max-width: 80%;
    margin: 0 auto;
  }
  .reviews-container{
    text-align: center;
  }
  .reviews-info-wrapper{
    max-width: 440px;
    margin-bottom: 30px;
  }
  .reviews-title , .reviews-info-wrapper, .reviews-text, .reviews-stars{
    margin: 0 auto;
  }
  .reviews-stars{
    display: block;
    margin: 0 auto;
    margin-top: 20px;
  }
  .reviews-text{
    margin-top: 10px;
  }
}
@media (max-width: 530px) {
  .reviews{
    margin-top: 70px;
    row-gap: 10px;
  }
  .reviews-title{
    font-size: 35px;
  }
}
@media (max-width: 530px) {
  .reviews-info-wrapper{
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    text-align: center;
    align-items: center;
  }
  .review-photo{
    display: block;
    margin: 0 auto;
  }
}
/* Join */

.section-join {
  max-width: 1240px;
  margin: 0 auto;
  background: #fff;
  border-radius: 60px;
  margin-top: 233px;
}
.join-wrapper {
  max-width: 1060px;
  margin: 0 auto;
  padding-bottom: 115px;
  position: relative;
}
.join-wrapper::after {
  content: url('../images/join-after.svg');
  position: absolute;
  top: 74px;
  right: 0;
}
.join-wrapper::before {
  content: url('../images/join-before.svg');
  position: absolute;
  left: 0;
  bottom: 56px;
}
.join-title {
  text-align: center;
  max-width: 519px;
  margin: 0 auto;
  color: #0F1F1C;
  font-size: 45px;
  padding-top: 116px;
}
.join-desc {
  margin-top: 35px;
  color: #0F1F1C;
  font-size: 30px;
  text-align: center;
}
.join-button {
  display: block;
  padding: 25px 55px;
  background: linear-gradient(129.54deg, #FF7B4E 15.57%, #FF584E 95.03%);
  margin: 0 auto;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  border-radius: 27px;
  margin-top: 60px;
}
.join-button:hover {
  transition: 0.3s;
  opacity: 0.8;
  scale: 1.1;
}
@media (max-width: 600px) {
  .join-title{
    font-size: 35px;
  }
  .join-desc{
    font-size: 20px;
  }
  .section-join{
    margin-top: 40px;
  }
}
/* Subscribe */

.subscribe {
  margin-top: 135px;
}
.subscribe-title {
  max-width: 454px;
  margin: 0 auto;
  text-align: center;
  color: ##0F1F1C;
  font-weight: 600;
  font-size: 55px;
}
.input-container {
  background: #fff;
  max-width: 800px;
  height: 129px;
  border-radius: 35px;
  position: relative;
  margin: 0 auto;
  margin-top: 60px;
}
.email-input {
  padding: 46px;
  color: #0F1F1C;
  font-size: 24px;
}
.subscribe-button {
  margin-top: 12px;
  position: absolute;
  right: 10px;
  padding: 34px 86px;
  color: #fff;
  font-weight: 600;
  font-size: 25px;
  border-radius: 35px;
  background: linear-gradient(129.54deg, #FF7B4E 15.57%, #FF584E 95.03%), #FFFFFF;
  z-index: 10;
}
.subscribe-button:hover {
  transition: 0.3s;
  opacity: 0.8;
}
@media (max-width: 800px) {
  .subscribe-button {
    position: static;
    width: 90%;
    display: block;
    margin: 0 auto;
    margin-top: 10px;
  }
  .email-input{
    max-width: 90%; 
  }
}
@media (max-width: 685px) {
  .subscribe-title{
    font-size: 40px;
  }
  .subscribe{
    margin-top: 40px;
  }
  .input-container{
    margin-top: 20px;
  }
}
/* Footer */

footer {
  padding-bottom: 74px;
  padding-top: 70px;
}
.footer-wrapper {
  max-width: 1240px;
  margin: 0 auto;
  align-items: center;
  padding-top: 44px;
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}
.nav-list-item.footer .nav-link {
  color: #0F1F1C;
  opacity: 0.5;
}
.nav-list-item.footer .nav-link::before {
  display: none;
}
.logo.footer {
  color: #FF7C4E;
}
.sign-up.footer {
  color: #838B89;
}
@media (max-width: 1240px) {
  .footer-wrapper {
    margin: 0 10px;
  }
}
@media (max-width: 800px) {
  .nav-list.footer {
    display: flex;
  }
  .header-buttons.footer{
    display: flex;
  }
  .footer-wrapper{
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: 60px;
  }
  .nav-list.footer{
    flex-direction: column;
    gap: 10px;
  }
  .nav-list-item.footer{
    text-align: center;
    font-size: 40px;
  }
  .logo.footer{
    font-size: 30px;
  }
  .header-buttons.footer button{
    font-size: 30px;
  }
}
