/*--------------------------------------------------------------
  13. About
----------------------------------------------------------------*/

.ak-about-bg-color {
    background: $about_bg;
}

.ak-about-hr {
    @include ak-hr;
    margin-top: 190px;
    position: absolute;
    display: none;
    background: #ffd28d;
    @media screen and (min-width: 1725px) {
        width: 0%;
        display: inline-block;
        overflow: hidden;
    }
}

.ak-about.ak-style-1 {
    position: relative;
    .ak-about-bg-img {
        position: absolute;
        right: 0;
        top: 0;
        width: 45%;
        height: 100%;
        overflow: hidden;
        img {
            width: 100%;
            height: 100% !important;
        }
    }
    .about-section.ak-about-1 {
        width: 50%;
        padding: 150px 0px;
        .about-text-section {
            .about-title {
                font-size: 60px;
                color: $white;
                span {
                    color: $yellow;
                }
            }
        }
    }
}

.meet-the-content-about-section {
    display: flex;
    align-items: center;
    gap: 5%;
    .about-info {
        flex-grow: 1;
        flex-shrink: 1;
    }
    .about-img {
        overflow: hidden;
        flex-grow: 2;
        flex-shrink: 0;
        img {
            width: 100%;
            height: 100%;
        }
    }
    .about-social {
        flex-grow: 0;
        flex-shrink: 1;
        a {
            text-decoration: underline;
        }
    }
}

@media screen and (max-width: 991px) {
    .meet-the-content-about-section {
        flex-wrap: wrap;
        gap: 60px;
    }
    .ak-about.ak-style-1 {
        .ak-about-bg-img {
            opacity: 0.2;
            img {
                object-fit: cover;
                background-position: center center;
            }
        }
        .about-section.ak-about-1 {
            width: 100%;
        }
    }
}

@media screen and (max-width: 767px) {
    .ak-about.ak-style-1 {
        display: flex;
        flex-wrap: wrap;
        .ak-about-bg-img {
            position: relative;
            width: 100%;
            opacity: 1;
            img {
                object-fit: cover;
            }
        }
        .about-section.ak-about-1 {
            width: 100%;
            padding: 30px 0px 0px 0px;
            .about-text-section {
                .about-title {
                    font-size: 32px;
                }
            }
        }
    }
    .meet-the-content-about-section {
        flex-wrap: wrap;
        gap: 60px;
        .about-img {
            flex-shrink: 1;
        }
    }
}
