@font-face {
    font-family: morabba;
    src: url("../fonts/Morabba.ttf");
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: morabba;
    user-select: none;
}

/* AHOME START */

.ahome{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    padding: 75px 10px;
    background-color: rgba(63, 190, 109, 0.1);
}
.ahome h1{
    font-size: 45px;
    background: #3fbe6d;
    background: linear-gradient(to left, #3fbe6d 0%, #6dff9e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.ahome p{
    color: gray;
    font-size: 20px;
}

/* AHOME END */

/* HOME START */

.home{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0px 10px;
    margin: 100px 0px;
}
.home-container{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    gap: 30px;
    width: 1200px;
}

.home-rast{
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    gap: 10px;
    width: 600px;
    text-align: justify;
}
.home-rast h1{
    color: #3FBE6D;
}
.home-rast p{
    color: rgba(0, 0, 0, 0.8);
    line-height: 28px;
}
.home-chap{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 500px;
}
.home-chap img{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

/* HOME END */

/* HOME-2 START */

.home2{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0px 10px;
    margin: 100px 0px;
}
.home2-container{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    gap: 30px;
    width: 1200px;
}

.home2-chap{
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    gap: 10px;
    width: 600px;
    text-align: justify;
}
.home2-chap h1{
    color: #3FBE6D;
}
.home2-chap p{
    color: rgba(0, 0, 0, 0.8);
    line-height: 28px;
}
.home2-rast{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 500px;
}
.home2-rast img{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

/* HOME-2 END */

/* TEAM START */

.team{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0px 10px;
    margin: 100px 0px;
}

.team-container{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 50px;
    width: 1200px;
}

.team-title{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
.team-title p{
    color: gray;
}

.team-cards{
    display: grid;
    grid-template-columns: repeat(4,auto);
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 20px;
    row-gap: 40px;
}
.team-cards img{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

/* TEAM END */














































/* RESPONSIVE START */

@media screen and (max-width:768px) {

    .home-container{
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
    }
    .home2-container{
        flex-direction: column-reverse;
        align-items: center;
        justify-content: center;
        width: 100%;
    }
    .home-rast,
    .home2-rast{
        width: 100%;
    }
    .home-chap,
    .home2-chap{
        width: 100%;
    }

    .team-container{
        width: 100%;
    }
    .team-title{
        align-items: center;
        justify-content: center;
        flex-direction: column;
        width: 100%;
        text-align: center;
        gap: 10px;
    }
    .team-cards{
        grid-template-columns: repeat(1,auto);
        align-items: center;
        justify-content: center;
    }
    
}

@media screen and (min-width:769px) and (max-width:1000px) {

    .home-container{
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
    }
    .home2-container{
        flex-direction: column-reverse;
        align-items: center;
        justify-content: center;
        width: 100%;
    }
    .home2-chap{
        width: 100%;
    }
    .home-rast{
        width: 100%;
    }

    .team-container{
        width: 100%;
    }
    .team-title{
        align-items: center;
        justify-content: center;
        flex-direction: column;
        width: 100%;
        text-align: center;
        gap: 10px;
    }
    .team-cards{
        grid-template-columns: repeat(2,auto);
        align-items: center;
        justify-content: center;
    }
    
}

@media screen and (min-width:1001px) and (max-width:1250px) {

    .home-container{
        width: 100%;
    }
    .home2-container{
        width: 100%;
    }

    .team-container{
        width: 100%;
    }
    .team-title{
        align-items: center;
        justify-content: center;
        flex-direction: column;
        width: 100%;
        text-align: center;
        gap: 10px;
    }
    .team-cards{
        grid-template-columns: repeat(3,auto);
        align-items: center;
        justify-content: center;
    }
    
}

/* RESPONSIVE END */