#aboutWelcome{
    height: 250px;
    width: 100%;
    position: relative;
}

#aboutWelcome img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(80%) contrast(120%);
}

#welcomeDetails{
    padding: 0 20px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

#welcomeDetails h1{
    font-size: 35px;
    font-weight: 600;
    line-height: 35px;
    color: var(--white-color);
}

#welcomeDetails p{
    font-size: 15px;
    color: var(--white-color);
    letter-spacing: 1px;
}

/* main about */
#mainAboutSection{
    width: 1200px;
    margin: 60px auto 100px;
    padding: 0 20px;
    max-width: 100%;
}

#aboutText p{
    color: var(--black-color);
    font-size: 15px;
    margin-bottom: 20px;
}

#aboutText p b{
    color: var(--main-color);
    font-weight: 600;
}

/* make a other about */
#otherAbout{
    margin-top: 100px;
    margin: 0 0 0px;
    background-size: cover;
    background: url('../img/about/secAbout.png');
}

#innerOtherAbout{
    width: 1200px;
    max-width: 100%;
    margin: 50px auto 150px;
    padding: 50px 20px;
    display: flex;
    justify-content: space-between;
}

#otherAbout #otherAboutText{
    width: 500px;
}

#otherAboutText h2{
    font-size: 30px;
    font-weight: 600;
    color: var(--white-color);
}

#otherAboutText p{
    font-size: 15px;
    color: var(--white-color);
    font-weight: 300;
}

#otherAboutText1{
    margin-bottom: 30px;
}

#aboutImgs{
    width: 500px;
    margin-left: 50px;
}

#aboutImgs img{
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
}

/* make about cards */
#aboutCards{
    width: 1200px;
    max-width: 100%;
    padding: 0 20px;
    margin: 50px auto 100px;
}

#innerAboutCards{
    text-align: center;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 50px;
}

#innerAboutCards img{
    width: 100px;
    margin-bottom: 10px;
}

#innerAboutCards h3{
    font-size: 20px;
    font-weight: 500;
}

#innerAboutCards p{
    font-size: 15px;
    margin-top: 5px;
}

/* make a join section now */
#joinBox{
    width: 1200px;
    max-width: 100%;
    margin: auto;
    position: relative;
    border-radius: 50px;
    padding: 0 20px;
    height: 200px;
    margin-bottom: 150px;
}

#joinBoxDetails{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    padding: 0 40px;
}

#joinBoxDetails h3{
    color: var(--white-color);
    font-size: 30px;
    font-weight: 600;
    line-height: 30px;
}

#joinBoxDetails p{
    color: var(--white-color);
    font-size:  15px;
}

#joinBox img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

#joinBoxDetails button{
    width: 200px;
    max-width: 100%;
    height: 40px;
    border: none;
    border-radius: 20px;
    margin-top: 10px;
    background: var(--main-color);
    font-size: 15px;
    font-weight: 400;
    cursor: pointer;
}

/* make a responsive */
@media (max-width: 1000px) {
    #aboutImgs{
        width: 400px;
        margin-left: 50px;
    }
}

@media (max-width: 850px) {
    #aboutImgs{
        width: 300px;
        margin-left: 50px;
    }
}

@media (max-width: 750px) {
    
    #innerAboutCards{
        grid-template-columns: repeat(1,1fr);
    }
}

@media (max-width: 700px) {
    #innerOtherAbout{
        flex-direction: column;
    }
    #otherAbout #otherAboutText{
        width: 100%;
        margin-bottom: 50px;
    }
    #aboutImgs{
        width: 100%;
        margin-left: 0px;
    }
    #joinBox{
        height: 300px;
    }
    #joinBoxDetails h3{
        font-size: 25px;
        font-weight: 500;
    }

    #joinBoxDetails p{
        color: var(--white-color);
        font-size:  14px;
    }
}