﻿.bg-breadcrumb .breadcrumb-item a {
    color: #fff !important;
    text-decoration: none;
}

    .bg-breadcrumb .breadcrumb-item a:hover {
        color: #fff !important;
        text-decoration: underline;
    }


.about-anim {
    opacity: 0;
    transition: all .8s ease;
}

    .about-anim.anim-left {
        transform: translateX(-70px);
    }

    .about-anim.anim-right {
        transform: translateX(70px);
    }

    .about-anim.anim-bottom {
        transform: translateY(70px);
    }

    .about-anim.show {
        opacity: 1;
        transform: translate(0, 0);
    }

.bg-breadcrumb .breadcrumb-item a {
    color: #fff !important;
    text-decoration: none;
}

    .bg-breadcrumb .breadcrumb-item a:hover {
        color: #fff !important;
        text-decoration: underline;
    }

/* ABOUT SECTION */
.about .container {
    position: relative;
}

.section-about-title {
    color: #2E8B57 !important;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.about h1 {
    font-family: 'Jost', sans-serif;
    font-weight: 700;
    color: #111827;
}

.about p {
    color: #5f6670;
    line-height: 1.75;
}

/* IMAGE CARD */
.about-image-frame {
    position: relative;
    border: none !important;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.18);
    transition: transform .45s ease, box-shadow .45s ease;
}

    .about-image-frame::before {
        display: none !important;
    }

    .about-image-frame img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 22px;
        display: block;
        transition: transform 1s ease, filter .6s ease;
        filter: saturate(.95) contrast(1.03);
    }

    .about-image-frame:hover {
        transform: translateY(-10px);
        box-shadow: 0 38px 90px rgba(0, 0, 0, 0.25);
    }

        .about-image-frame:hover img {
            transform: scale(1.04);
        }

.about-anim.anim-left.show .about-image-frame {
    animation: aboutImageFloat 4.5s ease-in-out infinite;
}

@keyframes aboutImageFloat {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-7px);
    }
}

/* TEXT CARD */
.about .col-lg-5 {
    background: #ffffff;
    padding: 32px;
    border-radius: 22px;
    box-shadow: 0 18px 50px rgba(0,0,0,0.07);
}

.about i.fa-arrow-right {
    color: #2E8B57 !important;
}

.about .btn-primary {
    border-radius: 50px;
    padding: 12px 34px;
    font-weight: 700;
}

/* RIGHT PANEL */
.about .col-lg-3 > div {
    border-radius: 22px !important;
    box-shadow: 0 20px 55px rgba(0,0,0,0.08);
    border: none !important;
}

.about .col-lg-3 h5 {
    color: #2E8B57;
    font-weight: 700;
}

.about .col-lg-3 a {
    color: #343a40;
    text-decoration: none;
    margin-bottom: 7px;
    transition: all .25s ease;
}

    .about .col-lg-3 a:hover {
        color: #2E8B57;
        transform: translateX(4px);
    }

/* RESPONSIVE */
@media (max-width: 991.98px) {
    .about .col-lg-5 {
        padding: 24px;
    }

    .about-image-frame {
        margin-bottom: 20px;
    }
}
