#proyecto {
    position: relative;
    background-color: var(--primary-color);
    border: 10px solid var(--primary-color);
    border-radius: 40px;
}

#proyecto .container>h2 {
    color: #fff;
    margin: 40px 0;
}

#proyecto .carousel-basic {
    height: 600px;
}
#proyecto .areas-wrapper{
    display: flex;
    flex-direction: row;
    margin: 40px 0;
    justify-content: space-between;
    flex-wrap: wrap;
}
#proyecto .areas-wrapper>h3,
#proyecto .areas-wrapper>span {
    font-family: 'Montserrat',
        sans-serif;
    font-weight: 300;
    font-size: 30px;
    color: var(--secondary-color);
    opacity: 0.6;
    cursor: pointer;
    transition: all 0.4s ease 0s;
}
@media(max-width: 998px){
    #proyecto .carousel-basic {
            height: 400px;
        }
                #proyecto .areas-wrapper>h3,
                #proyecto .areas-wrapper>span {
                    font-size: 20px;
                }
}
@media(max-width: 480px){
    #proyecto .carousel-basic {
            height: 240px;
        }
                #proyecto .areas-wrapper>h3,
                #proyecto .areas-wrapper>span {
                    font-size: 14px;
                }
}