@media (max-width: 576px) {
    .section-2 {
        display: none;
    }

    .mobile-height {
        min-height: 300px !important;
    }
}

.section-2-3 {
    background: linear-gradient(135deg, #01cab8 50%, #6bf6ea 50%), #6bf6ea;
    background-size: 2em 2em;
}

.section-2-3-body {
    background: rgb(1, 202, 184);
    border-radius: 5px;
    background: linear-gradient(90deg, rgba(1, 202, 184, 1) 60%, rgba(255, 255, 255, 0.5) 100%);
}

.fade-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 25%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgb(0, 0, 0));
}

.hover-underline {
    position: relative;
    display: inline-block;
}

.hover-underline:before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 4px;
    background-color: currentColor;
    transition: width 0.25s ease-in-out;
}

.card:hover .hover-underline:before {
    width: 100%;
}

.card:hover .right-circle {
    transform: rotate(-40deg);
    transform-origin: center;
    transition: transform 0.25s ease-in-out;
}

.section-5 .card-img-top {
    transition: transform .5s ease-in-out;
    width: 100%;
    height: 300px;
}

.section-5 .card-img-top:hover {
    transform: scale(1.2);
}

.feature .feature-icon {
    font-size: 70px !important;
    color: hsl(0, 100%, 40%);
}

.feature .icon-link {
    color: hsl(0, 100%, 40%);
    font-size: small;
}

.icon-link .arrow-right {
    transition: transform 0.3s ease;
    /* Apply transition property */
}

.icon-link:hover .arrow-right {
    transform: translateX(5px);
    /* Adjust according to your preference */
}

/* Replace the color of the outline button */
.feature-button a {
    border-color: hsl(0, 100%, 40%) !important;
    /* Set the border color */
    color: hsl(0, 100%, 40%) !important;
    /* Set the text color */
}

/* Change the text color on hover (optional) */
.feature-button a:hover {
    color: black !important;
    background-color: hsl(0, 100%, 40%);
}