section{
    padding: 2rem 5rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}
.first-section{
    padding-top: 100px;
}
.darshanpage-hero{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    text-align: justify;
    padding: 2rem;
    background: var(--primary-extra-light);
    border: 1px solid #e1acbc61;
    border-radius: 10px;
    /* #e1acbc5e */
}
.darshanpage-hero:nth-child(2n){
    background-color:  var(--primary-light);
}
.darshanpage-hero:nth-child(2n){
    flex-direction: row-reverse;
}
.darshanpage-hero>*{
    flex:1;
    max-width: 700px;
}
.darshanpage-hero-img{
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.darshanpage-hero-img img{
    border-radius: 10px;
    height: auto;
    width: 100%;
    box-shadow: 0 0 5px 0 #000;
    transition: all .5s ease-in-out;
}
.darshanpage-hero-img img:hover{
    scale: 102%;
}
.darshanpage-hero p{
    margin: 1rem 1rem 1rem 0;
}
.darshanpage-hero ol{
    list-style-type: none;
}
.first-section h1{
    text-align: center;
    font-size: 2.5rem;
    text-decoration: underline;
}
@media screen and (max-width:768px) {
    section{
        padding: 1rem;
    }
    
    .darshanpage-hero{
        flex-direction: column-reverse;
    }
    .darshanpage-hero:nth-child(2n){
        flex-direction: column-reverse;
    }
    .darshanpage-hero p{
        margin: 0rem;
    }
}
@media screen and (min-width:1500px) {
    section{
        max-width: 1500px;
        margin: auto;
    }
}