.main-head {
    background: url("../yoga-img/inhead.jpg") no-repeat center;
    background-size: cover;
    height: 70svh;
    width: 100%;
}

.overlay {
    color: #830435;
}

.overlay h4{ 
    color: #fff;
}

/* about section  */

.about .style {
    width: 300px;
    height: auto;
    margin: auto;
    display: block;
    margin-bottom: 50px;
}

/* vision section  */


.vision h1 {
    color: #e29500;
}

.vision-cards {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    /* flex-wrap: wrap; */
}

.vision-cards .card {
    display: flex;
    justify-content: start;
    align-items: start;
    flex-direction: column;
    gap: 20px;
    border-radius: 14px;
    padding: 20px;
    max-width: 350px;
    width: 100%;
    height: 400px;
}

.vision-cards .card img {
    width: 50px;
    height: 50px;
    background: linear-gradient(90deg, #893f97, #e29500);
    padding: 9px;
    border-radius: 9px;
}

/* team section  */

.team {
    background: url(../yoga-img/head.jfif) no-repeat center;
    padding: 40px 0;

}

.team h1 {
    color: #fff;
}

.silider {
    display: flex;
    overflow-x: auto;
    padding: 30px 9px;
    gap: 30px;
}

.silider::-webkit-scrollbar {
    display: none;
}

.team-cards {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    animation: scroll 20s linear infinite;
}

.team-card {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 260px;
    padding: 15px;
    border: 1px solid #fff;
    color: #fff;
    border-radius: 15px;
    box-shadow: 0 0 15px 4px #e29500;
    background: rgb(0, 0, 0, 0.6);
    height: 350px;
}

@keyframes scroll {
    from{transform: translateX(0%);}
    to{transform: translateX(-100%);}
    
}

/* studio section  */

.studio-img {
    display: flex;
    justify-content: center;
    align-items: center;
}

.studio-img img {
    border-radius: 15px;
}

.studio .text {
    display: flex;
    justify-content: center;
    align-items: start;
    width: 100%;
    height: 100%;
    line-height: 1.7;
    flex-direction: column;
    gap: 30px;
}