@import "root.css";
@import "header.css";
@import "footer.css";

.banner-video-container{
    display: none;
}

a:link{
    text-decoration: none;
}

a:visited{
    text-decoration: none;
}

a:hover{
    text-decoration: none;
}

a:active{
    text-decoration: none;
}

.section-container{
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    row-gap: 3rem;
    padding-bottom: 3rem;
}

.section-title{
    font-weight: bold;
    text-align: center;
    margin-top: 3rem;
    font-size: 3rem;
}

.title{
    font-size: 1.5rem;
    padding-top: 2rem;
    font-weight: bold;
    text-align: center;
}

.icon{
    height: 35px;
    width: 35px;
}

.points-title{
    display: flex;
    align-items: center;
    column-gap: 0.5rem;
    font-size: 2rem;
    font-weight: 600;
    border-bottom: 1px solid black;
}

.description{
    font-size: 15px;       
}

.header-img{
    height: 350px;
}

@media screen and (min-width: 320px) and (max-width: 767px) {
    .points-container, .header-img{
        width: 75%;
    }
}

@media screen and (min-width: 768px) and (max-width: 1239px) {    
    .points-container, .header-img{
        width: 75%;
    }
}

@media screen and (min-width: 1240px){
    .points-container, .header-img{
        width: 65%;
    }
}