@import "cssreset.css";
@import "templates/page.css";


.jumbo-slider{
    height: 100vh;
    width: 100%;
    overflow: hidden;
    padding-top: 31px
    
}
.jumbo-slider__container{
    position: relative;

}
.container{
    flex: 1;
    max-width: 1600px;
    width: 100%;
    height: 100%;
}
.jumbo-slider__slide{
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    padding-left: 80px;
    padding-right: 80px; 
}
.jumbo-slider__slide-bg {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
}

.jumbo-slider__slide-bg img {
  width: 100%;
  max-width: 1200px;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 50%;
}

.jumbo-slider__slide--active .jumbo-slider__slide-bg{
    opacity: .9;
}

.jumbo-slider__info{
    display: flex;
    justify-content: center;
    /* align-items: center; */
    flex-direction: column;
    position: relative;
    z-index: 2;
    height: 100%;
    /* padding-left: 20px;
    padding-right: 20px; */
}
.jumbo-slider__info button{
    width: 45%;
}
.jumbo-slider__title{
    font-size: 4rem;
    /* font-weight: 300; */
    color: white;
    position:relative ;
    opacity: 0;
    margin-bottom: 2rem;
}
.jumbo-slider__description{
    font-size: 2.5rem;
    font-weight: 100;
    /* background: white; */
    color: white;
    padding: 10px;
    width: fit-content;
    margin-bottom: 2rem;
    position:relative ;
    opacity: 0;
    
    /* transform: translate3d(0, 100px, 0); 
    transition: transform .4s ease-in-out 1.5s, opacity .4s ease-in-out 1.5s; */
}

.jumbo-slider__slide--active .jumbo-slider__slide-number, .jumbo-slider__slide--active .jumbo-slider__title, .jumbo-slider__slide--active .jumbo-slider__description{
    opacity: 1;
    transform: translate3d(0, 0, 0); 
}

.jumbo-slider__nav{
    display: flex;
    position: absolute;
    top: 200px;
    right: 0; 
    writing-mode: vertical-rl;
    z-index: 4;
    width: 100%;
}
.jumbo-slider__link{
    font-size: 1.4rem;
    color: white;
    text-transform: uppercase;
    padding: 20px;
    text-decoration: none;
}
.jumbo-slider__link--active{
    color: #03fc7f;
}
.jumbo-slider__elipsis{
    width: 100vw;
    position: absolute;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    z-index: 4;
}
.jumbo-slider__circle{
    width: 10px;
    height: 10px;
    border: 1px solid white;
    border-radius: 50%;
    margin-bottom: 10px;
    margin-right: 5px;
}
.jumbo-slider__circle--filled{
    background: white;
}

.jumbo-slider__line{
    height: 5px;
    width: 0;
    background: white;
    transition: width 6s ease-in-out;
}
.jumbo-slider__slide--active .jumbo-slider__line{
    width: 100%;
    background: #03fc7f;
}
.benefit-img{
    width: 300px;
    height: 350px;
    border-radius: 50%;
    overflow: hidden;
    object-fit: cover;
    text-align: center;
    position: absolute;
    top: -200px; 
}
.our-story-section {
  /* background-image: url(../Images/bk2.png);
  background-size: 25%;
  background-position: calc(0% + 150px) calc(0% - 10px);
  background-repeat: no-repeat; */
  /* backdrop-filter: blur(60px); */
  background:#fcf0de;
  color: #fffbe8;
  padding: 60px 60px;
 
}
.our-story-container {
  animation: fadeIn 1.2s ease-in-out;
}
.our__story-cont{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
.our__story-img{
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
    
}
.our__story-img img{
    width: 500px;
    height: 500px;
    max-width: 1200px;
    object-fit: cover;
    margin-right: 30px;
    border-radius: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}
.our__story-content{
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
}

.our-story-title {
  font-size: 2.8rem;
  color:  #5a2c1f; /* warm orange */
  margin-bottom: 25px;
  position: relative;
  display: inline-block;
  display: flex;
  justify-content: center;
  align-items: center;
}

.our-story-text {
  font-size: 1.5rem;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #5a2c1f;
}
@media only screen and (max-width: 1300px){
    .jumbo-slider__slide{
    padding-left: 40px;
    padding-right: 40px;
    }
    .jumbo-slider__title{
    font-size: 3rem;
    }
    .jumbo-slider__description{
        font-size: 1.5rem;
        margin-bottom: 2rem;
        position:relative ;
        opacity: 0;
    } 
}

@media only screen and (max-width: 1000px){
    .jumbo-slider__slide{
    padding-left: 30px;
    padding-right: 30px;
    flex-direction: column;
    gap: 0;
    }
    .jumbo-slider__slide-bg{
        margin-top: 35px;
        order: -1; 
    }
    .jumbo-slider__title{
    font-size: 2.8rem;
    margin-bottom: 2rem;
    }
    .jumbo-slider__description{
        font-size: 1.5rem;
        

    }
    .jumbo-slider__info button{
        width: 50%;
    }
    .our__story-cont{
        flex-direction: column;
    }
    
    
}
@media only screen and (max-width: 1000px) {
    .jumbo-slider{
        padding-top: 21px;
    }
}
@media only screen and (max-width: 900px) {
    .jumbo-slider__description{
        margin-bottom: 0;
        visibility: hidden;
    }
    .jumbo-slider__info button{
        position: absolute;
        bottom: 80px;
    }

}
@media only screen and (max-width: 540px) {
   .jumbo-slider__title{
    font-size: 2rem;
    margin-bottom: 0;
    }
    
}
@media only screen and (max-width: 480px) {
    .our__story-img img{
        width: 300px;
        height: 300px;
    }
    
}
@media only screen and (max-width: 360px) {
     .jumbo-slider__title{
    font-size: 2rem;
    margin-bottom: 0;
    }
    .our-story-title{
        font-size: 2rem;
    }
}