@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;
}

img{
  user-select: none;
}

/* ABOUTUS START */

.aboutus{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0px 10px;
    margin: 50px 0px;
}
.aboutus-container{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 1200px;
    gap: 50px;
}

.aboutus-top{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 30px;
}

.aboutus-rast{
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    gap: 40px;
    width: 500px;
}
.aboutus-rast-title{
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
}
.aboutus-rast-title p{
    font-size: 18px;
    color: gray;
}
.aboutus-rast-title h1{
    font-size: 30px;
    position: relative;
}
.aboutus-rast-title h1 span{
    color: red;
}
.aboutus-rast-title h1::after{
    content: '';
    position: absolute;
    right: 0;
    bottom: -5px;
    width: 165px;
    height: 3px;
    background-color: red;
    border-radius: 3px;
}
.aboutus-rast-desc{
    width: 100%;
    text-align: justify;
    color: gray;
}

.aboutus-chap{
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 500px;
}
.aboutus-chap img{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.aboutus-namads{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 30px;
}
.aboutus-namads-title{
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.aboutus-namads-title::after{
    content: '';
    background: linear-gradient(to right,#833ab4,#fd1d1d,#fcb045);
    width: 135px;
    height: 4px;
    border-radius: 3px;
    bottom: -5px;
    right: 35px;
    position: absolute;
}
.aboutus-namad{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 20px;
}
.aboutus-namad a img{
    background-color: white;
    border: 2px solid rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    padding: 10px;
    box-shadow: 0 0 10px -5px black;
    width: 120px;
    height: 150px;
}

#zarinpal img{
    width: 120px;
}

/* ABOUTUS END */








/* RESPONSIVE START */

@media screen and (max-width:480px) {

    .aboutus-top{
        width: 100%;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .aboutus-rast-title h1{
        font-size: 20px;
    }
    
    .aboutus-rast{
        width: 100%;
    }
    .aboutus-chap{
        width: 100%;
    }
    
}

@media screen and (min-width:481px) and (max-width:900px) {

    .aboutus-top{
        width: 100%;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    
    .aboutus-rast{
        width: 100%;
    }
    .aboutus-chap{
        width: 100%;
    }
    
}

/* RESPONSIVE END */