/*----------------------------
    About Us
-----------------------------*/
.about-ceo-wrapper {
    .img-box {
        position: relative;
        padding-left: 25px;

        &::after {
            position: absolute;
            content: "";
            top: 40%;
            left: 0;
            width: 30%;
            height: 64%;
            border: 3px solid #FC3C68;
            z-index: 0;
        }

        .ceo-bg {
            position: relative;
            z-index: 1;
            background-position: top center;
            background-size: cover;
            background-repeat: no-repeat;
            width: 100%;
            height: 600px;
        }
    }

    .content {
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;

        .title {
            font-family: var(--heading-font-two);
            font-size: 42px;
            line-height: 60px;
            font-weight: 700;
            color: var(--heading-color);
            text-transform: initial;
            margin-bottom: 40px;
        }

        .info {
            margin-bottom: 30px;
        }

        .other {
            .owner-title {
                font-family: var(--heading-font-two);
                font-size: 24px;
                line-height: 36px;
                font-weight: 700;
                color: var(--heading-color);
                margin-bottom: 15px;
            }

            .post {
                color: #666666;
                margin-bottom: 25px;
            }
        }
    }
}

.authors-feedback {
    .authors-feedback-slider {
        .single-author-feedback {
            border: 1px solid #ddd;
            padding: 25px 25px;
            display: flex;

            .img-box {
                .bg-img {
                    width: 300px;
                    background-repeat: no-repeat;
                    background-position: top center;
                    background-size: cover;
                    min-height: 300px;

                }
            }

            .content {
                display: flex;
                flex-direction: column;
                justify-content: center;
                padding-left: 30px;

                .quote {
                    font-size: 70px;
                    color: var(--main-color-one);
                    line-height: 0;
                }

                .info {
                    font-size: 22px;
                    line-height: 36px;
                    color: var(--heading-color);
                    font-style: italic;
                    margin-bottom: 30px;
                }

                .posts-title {
                    font-size: 16px;
                    font-family: var(--heading-font-two);
                    line-height: 32px;
                    font-weight: 500;
                    color: var(--heading-color);
                }

                .user {
                    color: #999999;
                    font-size: 14px;
                    line-height: 28px;
                    font-style: italic;
                }
            }
        }

        .slick-dots {
            text-align: center;
            margin-top: 20px;

            li {
                display: inline-block;
                width: 12px;
                height: 10px;
                background-color: #DDDDDD;
                margin: 0 5px;
                transition: $transition;

                &:hover {
                    cursor: pointer;
                }

                &.slick-active {
                    background-color: var(--main-color-one);
                    width: 18px;
                }

                button {
                    display: none;
                }
            }
        }
    }
}

.partners-with-wrapper {
    .partner-title {
        font-family: var(--heading-font-two);
        font-size: 20px;
        line-height: 60px;
        font-weight: 700;
        color: var(--heading-color);
        margin-bottom: 40px;
    }

    .partner-with-slider {
        .single-partner-item {
            img {
                margin: auto;
            }
        }
    }
}