.homepage-hero{
    height: 100vh;
    width: 100vw;
    background-image: url("/public/img/home/homepage-hero.jpg");
    background-size: cover;
    background-position: top;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    flex-wrap: wrap;
}
.homepage-login{
    max-width: 1440px;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding: 1rem;
}
.homepage-login>*{
    min-width: 300px;
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}
.cta-text{
    text-align: center;
    padding: 1rem;
    background-color: #ffffff87;
    border-radius: 5px;
    
}
.cta-text p{
    font-weight: bold;
    font-size: 1.25rem;
}
.cta-text .primary-btn{
    margin-top: 1rem;
    display: inline-block;
}
.login_form{
    width: 100%;
    min-height: 350px;
    max-width: 300px;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    text-align: center;
    background-color: #ffffff87;
    padding: 1.5rem;
    border-radius: 10px;
    color: #333;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    box-shadow: 0px 0px 20px #00000075;
}
.login_form label{
    text-align: left;
}
.login_form input{
    height: 35px;
    width: 100%;
    border: none;
    outline: none;
    padding: 10px;
    border: 1px solid #333;
    background-color: #ffffff87;
    border-radius: 5px;
}
.login_form label p{
    padding-bottom: 10px;
}
.login_form input[type="submit"]{
    height: auto;
    background-color: var(--primary-color);
    transition: all .25s ease-in-out;
    border: none;
}
.login_form input[type="submit"]:hover{
    height: auto;
    background-color: var(--primary-dark);
}
.forget_password{
    font-size: 14px;
    color: var(--primary-color);
    text-decoration: underline;
    transition: all .3s ease-in-out;
}
.forget_password:hover{
    color: var(--primary-dark);
}
.quote{
    background-color: #2f2f2fc5;
    border-radius: 10px;
    padding: 1rem;
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.quote>h2{
    color: #fff;
}
.quote>p{
    font-size: 1.2rem;
    text-align: justify;
    color: #aaa;
}
.quote-share{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}
.quote-share>button{
    background-color: transparent;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    transition: all .3s ease-in-out;
}
.quote-share>button:hover{
    transform: translateY(-10px);
}
.bottom-quote{
    padding: 5rem;
    background-color: var(--primary-color);
}
.bottom-quote, .bottom-quote *{
    border-radius: 0;
    text-align: center !important;
}
.bottom-quote p{
    font-size: 1.5rem;
}
.homepage-about{
    max-width: 1440px;
    margin: auto;
    padding: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: space-evenly;
}
.homepage-about>*:first-child{
    min-width: 280px;
    flex: 1;
    text-align: justify;
}
.homepage-about>*:nth-child(2){
    max-width: 320px;
}
.homepage-about-ashram>*{
    margin: 1rem 0;
}

.carousel-container {
    width: 250px;
    height: 400px;
    position: relative;
    overflow: hidden;
  }
  
  .carousel {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
  }
  
  .notice {
    height: inherit;
    background-color: #f2f2f2;
    color: var(--primary-color);
    padding: 10px;
    font-size: 16px;
    position: relative;
    border-radius: 5px;
  }
  .notice h3{
    padding: 5px 0;
  }
  .notice>p{
    height: 320px;
    text-align: justify;
    padding-bottom: 1rem;
    overflow-y: scroll;
  }
  .date {
    position: absolute;
    bottom: 5px;
    right: 5px;
    font-size: 12px;
  }
  
  .navigation {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
  }
  
  .navigation button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #bbb;
    border: none;
    margin: 0 5px;
    cursor: pointer;
  }
  
  .navigation button.active {
    background-color: #555;
  }


.card-carousel{
    padding: 1rem;
    display: flex;
    gap: 1rem;
    overflow: hidden;
}
.card{
    width: 100%;
    min-width: 250px;
    text-align: justify;
    border-radius: 1rem;
    overflow: hidden;
    background-color: #eee;
    transition: all .5s ease-in;
    user-select: none;
}
.card>img{
    height: 100%;
    width: 100%;
    /*object-fit: cover;*/
    aspect-ratio: 1;
    transition: all .3s ease-in-out;
    transform-origin: bottom;
}
.card:hover>img{
    transform: scale(110%);
    position: relative;
}
.card-desc{
    line-clamp: 4;
    padding: 1rem;
}





.swiper {
    width: 100%;
    height: 100%;
    padding: 1rem;
  }

  .swiper-slide {
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: grab;
  }
  .swiper-slide:active {
    cursor:grabbing
  }

  /* .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  } */










@media screen and (min-width: 1400px) {
    .homepage-hero>*{
        padding: 10rem;
    }
}
@media screen and (max-width: 600px) {
    
    .homepage-hero{
        min-height: 400px;
        align-items: center;
        justify-content: center;
        height: auto;
        padding: 5rem 2rem;
    }
    .bottom-quote{
        padding: 1rem;
    }
}