@font-face {
    font-family: kalameh;
    src: url("../fonts/KalamehWeb-Medium.woff2");
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: kalameh;
    scroll-behavior: smooth;
}

/* Aboutus START */

.about {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0 10px;
    margin: 100px 0;
}

.about-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    width: 1200px;
}

.about-rast {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 400px;
}

.about-rast img {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.about-vasat {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: column;
    width: 500px;
    height: 240px;
    gap: 20px;
}

.about-vasat p {
    color: gray;
    font-size: 14px;
    text-align: justify;
}

.about-chap {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    width: 220px;
}

.about-chap-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 20px;
    border-radius: 20px;
    background-color: #F3F3F3;
    gap: 10px;
}

.about-chap-card i {
    color: rgb(255, 50, 50);
    font-size: 24px;
}

.about-chap-card .border {
    width: 1px;
    height: 30px;
    background-color: rgba(0, 0, 0, 0.5);
}

.about-chap-card p {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    color: rgba(0, 0, 0, 0.7);
}

.about-chap-card p span {
    color: black;
    font-size: 20px;
}

/* Aboutus END */












@media screen and (max-width:600px) {

    .about-container {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        width: 100%;
        gap: 20px;
    }

    .about-rast,
    .about-vasat,
    .about-chap {
        width: 100%;
        height: auto;
    }

}

@media screen and (min-width:601px) and (max-width:900px) {

    .about-container {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        width: 100%;
        gap: 20px;
    }

    .about-rast,
    .about-vasat,
    .about-chap {
        width: 100%;
        height: auto;
    }

    .about-chap {
        flex-direction: row;
    }

}

@media screen and (min-width:901px) and (max-width:1200px) {

    .about-container {
        width: 100%;
    }

    .about-rast,
    .about-vasat,
    .about-chap {
        height: auto;
    }

}

/* Responsive END */