.content-section {
    padding-bottom: 80px;
    position: relative;
}

.row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.row.reverse {
    flex-direction: row-reverse;
}

.col {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.content-section .image-wrap {
    position: relative;
    display: inline-block;
    padding-bottom: 88px;
    padding-right: 21px;
}

.content-section .main-img {
    width: 100%;
    border-radius: 30px;
    display: block;
    max-height: 500px;
}

.content-section .small-img {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 254px;
    height: 254px;
    border-radius: 30px;
    background-color: #dddddd;
}

.content-section .row.reverse .image-wrap .small-img {
    left: 0;
    right: auto;
}

.content-section .row.reverse .image-wrap {
    padding-bottom: 54px;
    padding-left: 41px;
    padding-right: 0;
}

.content-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-top: 20px;
}

.content-section ul li {
    position: relative;
    padding-left: 23px;
}

.content-section ul li+li {
    margin-top: 20px;
}

.content-section ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    color: #8dc63f;
    background-image: url("../../assets/images/list.png");
    background-size: contain;
    background-repeat: no-repeat;
    width: 16px;
    height: 16px;
}

.text-img-col-section .text-img-col-col b,
.text-img-col-section .text-img-col-col strong {
    font-weight: 600;
    color: var(--black);
}

.content-section b,
.content-section strong {
    color: var(--black);
}

.content-section .row.reverse .image-col.align_right .image-wrap .small-img {
    right: 0;
    left: unset;
}

.content-section .row.reverse .image-col.align_right .image-wrap {
    padding-right: 21px;
    padding-bottom: 88px;
    padding-left: 0;
}

.content-section .container>.row+p {
    margin-top: 28px;
}

.content-section a {
    font-weight: 600;
    color: var(--black);
}

.content-section a:hover,
.content-section a:focus {
    color: var(--parrot);
}

.content-col h5 {
    margin-bottom: -10px;
    color: var(--black);
}

.content-section p+p {
    margin-top: 0;
}

.leaf-wrapper {
    display: none;
}

.content-section .content-col ul+p {
    margin-top: 20px;
}

@media (min-width: 769px) {
    .contact-card {
        min-height: 334px;
    }
}

@media (min-width: 1024px) {
    .content-section.show-leaf .leaf-wrapper {
        position: absolute;
        right: 0;
        bottom: 100px;
        display: block;
        z-index: -1;
    }
}

@media (max-width: 991px) {
    .row,
    .row.reverse {
        gap: 30px;
    }
    .content-section {
        padding-bottom: 60px;
    }
    .content-section .small-img {
        width: 160px;
        height: 160px;
        border-radius: 15px;
    }
    .content-section .image-wrap {
        text-align: center;
    }
    .content-section .main-img,
    .content-section .small-img {
        border-radius: 15px;
    }
}

@media (max-width: 768px) {
    .row,
    .row.reverse {
        flex-direction: column;
        gap: 20px;
    }
    .content-section {
        padding-bottom: 40px;
    }
    .col {
        gap: 10px;
    }
    .content-section ul {
        margin-top: 10px;
    }
    .content-section ul li+li {
        margin-top: 10px;
    }
    .content-section ul li {
        padding-left: 18px;
    }
    .content-section ul li::before {
        width: 12px;
        height: 12px;
    }
    .content-section ul li {
        padding-left: 16px;
    }
    .content-section .main-img,
    .content-section .small-img {
        border-radius: 10px;
    }
    .content-section .container>.row+p {
        margin-top: 12px;
    }
    .contact-card h4 {
        margin-bottom: 8px;
    }
    .content-col h5 {
        margin-bottom: -5px;
    }
    .content-section .content-col ul+p {
        margin-top: 10px;
    }
}