@use "../abstracts/variables" as vars;

.about1 {

    .section-top__subtitle {
        .text {
            color: #878C8F;
        }
    }

    &__left {
        position: relative;

        &-thumb {
            position: relative;
            z-index: 2;

            img {
                width: 100%;
            }
        }

        .shape {
            position: absolute;
            bottom: -2%;
            left: 33%;
            z-index: 0;

            @media (max-width: 992px) {
                display: none;
            }

        }

        &-thumb2 {
            position: absolute;
            bottom: 6%;
            right: 12%;
            z-index: 5;

            @media (max-width: 1199px) {
                bottom: 6%;
                right: 31%;
            }

            @media (max-width: 992px) {
                bottom: 6%;
                right: 19%;
            }

            @media (max-width: 575px) {
                bottom: 6%;
                right: -5%;
            }

            @media (max-width: 425px) {
                bottom: 6%;
                right: -20%;
            }

            @media (max-width: 375px) {
                bottom: 0%;
                right: -25%;

                img {
                    max-width: 85%;
                }
            }

            .main-img {
                position: relative;
                z-index: 2;
                border: 20px solid vars.$color-white;
                border-radius: 50%;
                background: vars.$color-white;
                ;
            }

        }
    }

    &__right {
        &-feature {
            display: flex;
            align-items: center;
            gap: 10px;
            border-radius: 8px;
            padding: 28px 30px 28px 10px;
            background-color: #EFF3FA;

            @media (max-width: 1399px) {
                padding: vars.rem(10) vars.rem(10);
            }

            @media (max-width: 768px) {
                flex-wrap: wrap;
            }

            .about1__right-featurethumb {
                max-width: 236px;
            }
        }

        &-featurecontent {
            .item {
                display: flex;
                align-items: center;
                gap: 15px;
                margin-bottom: 10px;
                font-family: vars.$font-family-base;
                font-weight: 600;
                font-size: vars.rem(16);
                line-height: 28px;
                letter-spacing: 0%;
            }

            p {
                margin-bottom: 0;
            }
        }

        &-bottom {
            margin-top: 35px;
            display: flex;
            gap: 10px;
            align-items: center;
            justify-content: space-between;

            @media (max-width: 1399px) {
                justify-content: flex-start;
                gap: 20px;
            }

            @media (max-width: 768px) {
                flex-wrap: wrap;
            }

            .item {
                display: flex;
                align-items: center;
                gap: 20px;

                .icon {
                    width: 65px;
                    height: 65px;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    border-radius: 8px;
                    border: 1px solid vars.$color-primary;
                }

                .title {
                    font-family: vars.$font-family-base;
                    font-weight: 700;
                    font-style: Bold;
                    font-size: 20px;
                    line-height: 100%;
                    letter-spacing: -2%;
                    color: vars.$color-black;
                }
            }
        }

        .theme__btn {
            margin-top: 35px;
        }
    }
}