main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.banner-content{
    position: absolute;
    bottom: 5vw;
    left: 50%;
    transform: translate(-50%);
    width: 85%;
}

.banner-content > h1{
    text-align: center;
    font-size: 7.5vw;
    color: white;
}

.cap{
    margin: 2rem 15vw 0;
}

.cap-title {
    position: relative;
    font-size: 0.9rem;
    font-family: var(--bold-font);
}

.cap-subtitle{
    font-size: 0.9rem;
    margin-top: 1.5rem;
    font-family: var(--bold-font);
}

.cap-p{
    font-size: 0.9rem;
}

.cap-title::before {
    content: "";
    display: inline-block;
    background-image: url('/res/imgs/tyc/dot.svg');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    width: 1.75rem;  
    height: 1.5rem;
    position: absolute;
    left: -2rem; 
    top: 0;
}


@media (width>=768px) {
    .banner-content{
        bottom: 0.5rem;
        left: 7.5%;
        transform: unset;
    }
    
    .banner-content > h1{
        text-align: left;
        font-size: 2.5rem;
        margin: 0;
    }

    .cap{
        margin: 2rem 10vw 0;
    }
    
    .cap-title {
        font-size: 1rem;
        line-height: normal;
    }
    
    .cap-subtitle{
        font-size: 1rem;
        margin-top: 1rem;
        line-height: normal;
    }
    
    .cap-p{
        font-size: 1rem;
        line-height: normal;
    }
    
    .cap-title::before {
        width: 2rem;  
        height: 1.75rem;
        left: -2.25rem;
    }
}


@media (width>=1024px) {
    .banner-content{
        bottom: 1rem;
    }
    
    .banner-content > h1{
        font-size: 3rem;
    }
    
    .cap-title {
        font-size: 1.1rem;
    }
    
    .cap-subtitle{
        font-size: 1.1rem;
        margin-top: 1.1rem;
    }
    
    .cap-p{
        font-size: 1.1rem;
    }
    
    .cap-title::before {
        width: 2rem;  
        height: 1.6rem;
        left: -2.5rem;
    }
}

@media (width>=1600px) {
    .banner-content{
        bottom: 1.5rem;
    }
    
    .banner-content > h1{
        font-size: 3.5rem;
    }

    .cap-title {
        font-size: 1.2rem;
    }
    
    .cap-subtitle{
        font-size: 1.2rem;
        margin-top: 1.2rem;
    }
    
    .cap-p{
        font-size: 1.2rem;
    }
    
    .cap-title::before {
        width: 2rem;  
        height: 1.75rem;
        left: -2.5rem;
    }
}