.whats-included { 
    background-color: rgba(12, 25, 55, 1);
}

.whats-included .container { 
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 120px 80px;
}

.whats-included .container .pre-title { 
    width: 87px;
    height: 12px;
    border-radius: 26px;
    background-color: rgba(50, 186, 246, 1);
    margin-bottom: 8px;
}

.whats-included .container h2 { 
    font-family: CircularXX TT,sans-serif;
    font-weight: 700;
    font-size: 48px;
    line-height: 57.6px;
    text-align: center;
    color: white;
    margin-bottom: 56px;
}

.whats-included .container .whats-included-content { 
    width: 100%;
    max-width: 1274px;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px;
}

.whats-included .container .whats-included-content .whats-included-content-item { 
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 1);
    border-radius: 24px;
    width: calc((100% - 80px) / 3);
    height: 248px;
    padding: 48px 32px;
}

.whats-included .container .whats-included-content .whats-included-content-item:nth-child(4),
.whats-included .container .whats-included-content .whats-included-content-item:nth-child(5) {
    width: calc((100% - 40px) / 2);
}

.whats-included .container .whats-included-content .whats-included-content-item .whats-included-content-item-image { 
    width: 56px;
    height: 56px;
    object-fit: contain;
    object-position: center;
    margin-bottom: 8px;
}

.whats-included .container .whats-included-content .whats-included-content-item .whats-included-content-item-title { 
    font-family: CircularXX TT,sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 26px;
    text-align: center;
    color: rgba(12, 25, 55, 1);
}

.whats-included .container .whats-included-content .whats-included-content-item .whats-included-content-item-description { 
    font-family: CircularXX TT,sans-serif;
    font-weight: 450;
    font-size: 20px;
    line-height: 26px;
    text-align: center;
    color: rgba(12, 25, 55, 1);
}

.whats-included .container .whats-included-content .whats-included-content-item .whats-included-content-item-description p { 

}

@media (max-width: 992px) {
    .whats-included .container { 
        padding: 56px 80px;
    }

    .whats-included .container h2{
        font-size: 32px;
        line-height: 38.4px;
        margin-bottom: 32px;
    }

    .whats-included .container .whats-included-content{
        flex-direction: column;
        gap: 32px;
    }

    .whats-included .container .whats-included-content .whats-included-content-item { 
        width: 100%;
        padding: 24px 16px;
    }

    .whats-included .container .whats-included-content .whats-included-content-item:nth-child(4),
    .whats-included .container .whats-included-content .whats-included-content-item:nth-child(5) {
        width: 100%;
    }
} 

.desktop-break {
    display: block;
}

@media (max-width: 992px) {
    .desktop-break {
        display: none;
    }
}

@media (max-width: 768px) {
    .whats-included .container { 
        padding: 56px 32px;
    }

    .whats-included .container .pre-title {
        width: 64px;
        height: 8px;
        border-radius: 26px;
    }

}

