:root{
    --primary:#001533;
    --secondary:#00b3ff;
    --btn: #012c50;
}

.box-section > h1{
    padding-top: 2%;
    color: var(--primary);
    font-size: 5vw;
    text-align: center;
}

.box-section > p{
    padding: 0 5%;
    text-align: center;
}

.content-section >p{
    padding: 0 10% 2%;
}

h2{
    color: var(--secondary);
    font-size: 3vw;
    text-align: center;
}

.content-information h3 > a{
    font-size: 1.1vw;
    color: var(--primary);
}

.box-information > img{
    height: 200px;
}

section .box-section{
    width: 100%;
}

.box-section .content-section{
    padding: 4% 2%;
}

.box-section .content-section h2{
    padding: 1% 0;
}

.content-section .information-section{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;

}

.box-information{
    display: flex;
    flex-direction: column;
    width: 25%;
    gap: 25px;
    min-height: 300px;
    padding: 2%;
    background: #f0f1f2;
    box-shadow: 10px 9px 5px 3px rgba(0, 0, 0, 0.2);
    border-radius: 20px;
}

.box-information .content-information{
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    justify-content: center;
}

.box-information .main-btn{
    background-color: var(--btn);
    text-align: center;
    color: white;
    width: 50%;
    border-radius: 20px;
    font-size: 20px;
    font-weight: 600;
    transition: .25s;
}

.box-information .main-btn:hover{
    background-color: #00b3ff;
    color: white;
}

.info-seo{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-bottom: 5%;
}

.info-seo > h2{ 
    color: var(--primary);
}

.text-information{
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 80%;
}

.text-information h2{
    font-size: 1.5vw;
    text-align: start;
}

.info-seo h3{ 
    font-size: 1vw;
    color: var(--secondary);
}

@media (max-width: 996px) {
    .box-section, 
    .info-seo{
        padding: 10% 5% 2% 5%;
    }
    .box-section > h1{
        font-size: 6.5vw;
    }
    .content-information h3 > a,
    .info-seo > h2{
        font-size: 4.5vw;
    }
    .box-information > img{
        height: 160px;
    }
    .content-information p{
        text-align: start;
    }
    .box-section{
        display: flex;
        flex-direction: column;
        gap: 5vw;
    }
    .box-section .content-section h2 {
        padding: 1% 0;
        text-align: center;
        font-size: 5.5vw;
    }
    .content-section .information-section {
        align-items: center;
        flex-direction: column;
    }
    .content-section .information-section {
        flex-direction: column;
    }
    .box-information {
        width: 80%;
        min-height: 250px;
    }
    .text-information h2{
        font-size: 4vw;
    }
    .info-seo h3{
        font-size: 3.5vw;
    }
}

@media (min-width: 769px) and (max-width: 1200px) {
    .box-information {
        width: 45%;
    }
}