.header-logo,
.footer-top-logo,
.sidebar-logo-head {
    display: flex;
    align-items: center;
    gap: 5px;
}

.header-logo img,
.footer-top-logo img {
    width: 100px;
    position: relative;
    left: -5px;
}

.sidebar-logo-head img {
    width: 70px;
    position: relative;
    left: -5px;
}

.footer-top-logo h3,
.sidebar-logo-head h3 {
    color: var(--white);
}

.sidebar-logo-head h3 {
    font-size: 15px;
}

.intro-section {
    height: 100vh;
}

@media (max-width: 991px) {
    .intro-section {
        height: auto;
    }

    .intro-wrapper.section-padding {
        padding: 120px 0 0;
    }

    .cta-thumb .icon {
        display: none;
    }

}

.km-about-wrapper {
    position: relative;
    overflow: hidden;
}

.km-about-section {
    padding: 60px 0;
    position: relative;
}

.km-about-section.style-2 {
    background: #fffbf1;
}

.km-about-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 70px;
    align-items: start;
}

.km-about-left {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* IMAGE */
.km-about-image {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
}

.km-about-image::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: linear-gradient(180deg,
            rgba(0, 0, 0, 0) 20%,
            rgba(0, 0, 0, 0.4) 100%);
    z-index: 1;
    transition: all .5s ease;
}

.km-about-image img {
    width: 100%;
    border-radius: 30px;
    transform: scale(1);
    transition: all .7s ease;
}

.km-about-image:hover img {
    transform: scale(1.08);
}

.km-about-image:hover::before {
    background: linear-gradient(180deg,
            rgba(0, 0, 0, 0.05) 0%,
            rgba(0, 0, 0, 0.6) 100%);
}

/* CONTENT */
.km-subtitle {
    display: inline-block;
    color: var(--theme);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    position: relative;
    padding-left: 60px;
}

.km-subtitle::before {
    position: absolute;
    content: "";
    width: 45px;
    height: 2px;
    background: var(--theme);
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.km-about-content h2 {
    line-height: 1.2;
    color: var(--black);
    margin-bottom: 25px;
    font-weight: 700;
}

.km-about-content p {
    font-size: 16px;
    line-height: 31px;
    color: var(--black);
    opacity: .8;
    margin-bottom: 20px;
}

/* LIST */
.km-about-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.km-list-item {
    display: flex;
    align-items: center;
    gap: 18px;
    background: var(--white);
    padding: 18px 22px;
    border-radius: 18px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.06);
    transition: all .4s ease;
}

.km-list-item:hover {
    transform: translateX(10px);
    background: var(--theme);
}

.km-list-item i {
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.05);
    color: var(--theme);
    font-size: 22px;
    flex-shrink: 0;
    transition: all .4s ease;
}

.km-list-item span {
    color: var(--black);
    font-size: 16px;
    font-weight: 600;
    line-height: 28px;
    transition: all .4s ease;
}

.km-list-item:hover i {
    background: var(--white);
    transform: rotateY(180deg);
}

.km-list-item:hover span {
    color: var(--white);
}

/* MOBILE */
@media (max-width: 991px) {

    .km-about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .km-about-content {
        order: 1 !important;
    }

    .km-about-left {
        order: 2 !important;
    }


    .km-about-content h2 {
        font-size: 38px;
    }

    .km-about-section {
        padding: 40px 0;
    }
}

@media (max-width: 575px) {

    .km-about-content h2 {
        font-size: 30px;
    }

    .km-about-content p {
        font-size: 15px;
        line-height: 28px;
    }

    .km-list-item {
        align-items: flex-start;
    }

    .km-list-item span {
        font-size: 15px;
        line-height: 26px;
    }

    .km-about-image img {
        min-height: 350px;
        object-fit: cover;
    }
}

.social-icon-cnt {
    margin-top: 25px;
    gap: 20px;
}

.social-icon-cnt a i {
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.05);
    color: var(--theme);
    font-size: 18px;
    transition: all .4s ease;
}