.contents,.column,.features{
    width: 100%;
    display: flex;
}

h2{
    font-size: 30px;
    font-weight: normal;
}

h3{
    font-weight: bold;
    font-size: 20px;
}

.column{
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.column p{
    max-width: 800px;
    font-size: 15px;
}

.contents{
    flex-direction: column;
    padding: 2rem 0;
}

.features{
    flex-direction: column;
    gap: 1.5rem;
    padding: 20px 0;
}

.features .feature{
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 280px;
    background-color: var(---backgroundColor);
    border-radius: 10px;
    padding: 20px;
    gap: 1.5rem;
    justify-content: end;
    position: relative;
}

.feature i{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 40px;
    position: absolute;
    top: 30px;
    left: 20px;
    font-size: 20px;
    background-color: rgba(128, 128, 128, 0.221);
}

.feature span{
    font-size: 16px;
}

.content h1{
    color: var(---colorOnSecondary);
}

.content p{
    max-width: 600px;
    margin: 1.5rem 0;
    font-size: 15px;
}

.content img{
    width: 100%;
    height: auto;
    object-fit: cover;
}

.content .block{
    background-color: var(---backgroundColor);
    padding: 2rem;
    border-radius: 10px;
    margin: 1.5rem 0;
    max-width: 500px;
}

.heading{
    color: var(---textColor);
    font-weight: normal;
    border: 1px solid var(---textColor);
    border-radius: 30px;
    height: 28px;
    max-width: max-content;
    padding: 0 20px;
    display: flex;
    margin-bottom: .5rem;
    font-size: 13px;
    align-items: center;
}

.feature:nth-child(1){
    background-color: var(---colorOnSecondary);
    color: var(---backgroundColor);
}

.cta{
    width: 100%;
    padding: 20px;
}

.cta .div{
    width: 100%;
    padding: 20px;
    border-radius: 10px;
    background-color: var(---backgroundColor);
}

.cta p{
    max-width: 600px;
    font-size: 15px;
}


@media screen and (min-width:1024px){

    .cta{
        padding: 2rem;
    }

    .cta .div{
        padding: 2rem;
    }

    .contents .content{
        width: 50%;
    }

    .content img{
        width: 80%;
        height: auto;
        object-fit: contain;
    }

    .contents{
        flex-direction: row;
        justify-content: space-between;
    }

    .content h1{
        font-size: 30px;
    }

    .contents,.column{
        padding: 2rem;
    }

    .features{
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        margin-top: 2rem;
    }

    .features .feature{
        width: calc(100%/4.4);
        max-width:280px;
        height: 320px;
        
    }

}

@media screen and (min-width:1200px) {

    .contents, .column{
        padding: 2rem 6rem;
    }

    .cta{
        padding: 2rem 6rem;
    }
}