.essence-section {
    width: 100%;
    padding: 60px 0 0px;
    box-sizing: border-box;
}

.essence-section .essence__content {
    width: 90%;
    max-width: 1350px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.essence-section .essence__title {
    font-weight: bold;
    color: #01155A;
    text-align: center;
    margin-bottom: 25px;
}

.essence-section .essence__content-image {
    width: 48%;
    max-width: 700px;
    height: auto;
}

.essence-section .essence__content-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.essence-section .essence__content-description {
    width: 48%;
    font-weight: 400;
    color: #121212;
    line-height: 24px;
}

@media screen and (max-width:760px) {
    .essence-section .essence__content {
        flex-direction: column;
        align-items: flex-start;
    }

    .essence-section .essence__content-image,
    .essence-section .essence__content-description {
        width: 100%;
    }
}

@media screen and (min-width:760px) and (max-width:1020px) {
    .essence-section .essence__content {
        flex-direction: column;
        align-items: flex-start;
    }

    .essence-section .essence__content-image,
    .essence-section .essence__content-description {
        width: 100%;
    }
}