@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

.block{
    margin-top: 70px !important;
    margin-bottom: 70px !important;
}

.cover{
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 740px;
}

.cover .content{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-content: center;
}

.cover .content img{
    width: 562px;
}

/* TABLET */
@media screen and (min-width: 744px) and (max-width: 1349px) {
    .cover{
        height: 500px;
        width: 100% !important;
    }

    .cover .content img{
        width: 50%;
    }
}

/* MOBILE */
@media screen and (max-width: 743px) {
    .cover{
        height: 300px;
        width: 100% !important;
    }

    .cover .content img{
        width: 70%;
    }
}

.container.block.title{
    display: flex;
    text-align: left;
    justify-content: space-between;
    align-items: center;
    font-size:xx-large;
    font-family: "Inter", sans-serif;
    color: #2E3192;
    padding: 0 50px;
}

.container.block.title span{
    color: #F8312F;
}

/* TABLET + MOBILE */
@media screen and (max-width: 1349px) {
    .container.block.title{
        flex-flow: column;
        text-align: center;
    }

    .container.block.title img{
        width: 80%;
    }
}

/* MOBILE */
@media screen and (max-width: 743px) {
    .container.block.title{
        font-size: 1rem;
    }

    .container.block.title img{
        width: 90%;
    }
}

.activities{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.activities .activity{
    font-size: x-large;
    font-family: "Inter", sans-serif;
    color: #2E3192;
    font-size: 25px;
}

.activities .activity img{
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 30px;
}

/* TABLET */
@media screen and (min-width: 744px) and (max-width: 1349px) {
    .activities{
        grid-template-columns: repeat(2, 1fr);
    }
}

/* MOBILE */
@media screen and (max-width: 743px) {
    .activities{
        grid-template-columns: repeat(1, 1fr);
    }
}

.plus{
    margin: 0 auto;
    width: 69px;
    height: 69px;
    position: relative;
}

.plus::before, .plus::after{
    content: "";
    display: block;
    border-radius: 100px;
    background-color: #2E3192;
    position: absolute;
}

.plus::before{
    width: 100%;
    height: 16%;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.plus::after{
    width: 16%;
    height: 100%;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

/* MOBILE */
@media screen and (max-width: 743px) {
    .plus{
        width: 35px;
        height: 35px;
    }
}

.tagline{
    max-width: 960px;
    margin: 0 auto;
    font-family: "Inter", sans-serif;
    font-size: 35px;
    color: #2E3192;
    text-align: center;
    font-weight: bolder;
    margin-top: 70px;
}

/* MOBILE */
@media screen and (max-width: 743px) {
    .tagline{
        font-size: 1.5rem;
    }
}

.action{
    padding: 52px;
    background-color: #1A5DAC;
    position: relative;
    display: flex;
    flex-flow: column;
    align-items: center;
    text-align: center;
}

.action::before{
    background-size: cover;
    background-image: url('../images/Lovepik_com-401445556-white-stars 1.png');
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

.action h2{
    width: 1185px;
    font-size: 55px;
    font-family: "Inter", sans-serif;
    color: #FFF;
    font-weight: bolder;
}

.action .quick_actions{
    z-index: 1;
    margin-top: 20px !important;
}

.action .quick_actions .btn-primary{
    background-color: #fff !important;
    color: #1A5DAC !important;
    transition: .2s;
}

.action .quick_actions .btn-secondary{
    background-color: transparent !important;
    color: #fff !important;
    border-color: #fff !important;
}

.action .quick_actions .btn-primary:hover{
    background-color: #ffffff8a !important;
}

.action .quick_actions .btn-secondary:hover{
    background-color: #ffffff8a !important;
}

/* TABLET + MOBILE */
@media screen and  (max-width: 1349px) {
    .action h2{
        width: 80%;
        font-size: 1.8rem;
    }

    .action .quick_actions .btn-secondary{
        margin-left: 10px;
    }
}

/* MOBILE */
@media screen and (max-width: 743px) {
    .action h2{
        width: 95%;
        font-size: 1.8rem;
    }
}