﻿.home_section {
    padding: 30px 0px;
}

    .home_section#about {
        background-color: #FFF;
        padding: 40px 0px;
    }

        .home_section#about .about_top_pic {
            position: relative;
            padding-left: 0px;
            height: 50vh;
            width: 100%;
        }

            .home_section#about .about_top_pic img {
                border: 4px solid #FFF;
                border-radius: 18px;
                position: absolute;
            }

            .home_section#about .about_top_pic picture:first-child img {
                top: 0px;
                right: 0px;
                height: 80%;
                width: 80%;
                object-fit: cover;
            }

            .home_section#about .about_top_pic picture:last-child img {
                bottom: 0px;
                height: 60%;
                width: 60%;
                object-fit: cover;
                left: 0px;
            }

        .home_section#about .section_title {
            color: var(--g-orange-color);
        }

        .home_section#about h2 {
            color: var(--g-main-color);
            font-size: 24px;
            font-weight: 700;
            padding: 20px 0px;
            line-height: 42px !important;
        }

        .home_section#about p {
            text-align: justify;
        }


    .home_section#services {
        background-color: rgba( var(--g-purple-rgb),var(--g-bg-opacity));
        padding: 40px 0px;
    }

        .home_section#services .head_section {
            color: var(--g-main-color);
            display: block;
            font-weight: 700;
            font-size: 1.8rem;
            text-align: center;
        }

        .home_section#services .sub_head_section {
            color: var(--g-main-color);
            display: block;
            font-weight: 400;
            font-size: 1.2rem;
            text-align: center;
            margin-bottom: 2.5rem;
        }

        .home_section#services .service_item {
            background-color: #FFF;
            display: inline-block;
            color: var(--g-main-color);
            border-radius: var(--g-border-radius-2);
            padding: 1.5rem;
            display: flex;
            flex-direction: column;
            align-items: start;
            margin: 10px 0px;
        }

            .home_section#services .service_item:hover {
                box-shadow: rgba(0, 0, 0, 0.15) 0px 3px 3px 0px;
                transition: all 400ms ease;
            }

            .home_section#services .service_item .service-title {
                color: var(--g-main-color);
                font-size: 18px;
                font-weight: 600;
                margin: 15px 0px 10px auto;
                line-height: 35px !important;
            }

            .home_section#services .service_item:hover .service-title {
                color: var(--g-orange-color);
                transition: all 400ms ease;
            }


            .home_section#services .service_item .more_info {
                position: relative;
            }

                .home_section#services .service_item .more_info::after {
                    content: attr(data-text);
                    color: var(--g-ord2-color);
                    font-weight: 400;
                    font-size: var(--g-font-size-p);
                }

            .home_section#services .service_item:hover .more_info::after {
                color: var(--g-orange-color);
                transition: all 400ms ease;
            }

            .home_section#services .service_item .more_info::before {
                content: '';
                background-image: url('../img/arrow_default.svg');
                background-repeat: no-repeat;
                width: 35px;
                height: 35px;
                position: absolute;
                left: -25px;
                top: 8px;
            }

            .home_section#services .service_item:hover .more_info::before {
                background-image: url('../img/arrow_hover.svg');
                transition: all 400ms ease;
            }

            .home_section#services .service_item p {
                color: var(--g-ord2-color);
                font-weight: 400;
                font-size: var(--g-font-size-p);
                text-align: justify;
                display: -webkit-box;
                -webkit-box-orient: vertical;
                overflow: hidden;
                -webkit-line-clamp: 3;
                min-height: 95px;
            }

    .home_section#virtualTour {
        padding: 0px;
        background: rgb(255,255,255);
        background: -moz-linear-gradient(0deg, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 49%, rgba(250,242,255,1) 50%, rgba(250,242,255,1) 100%);
        background: -webkit-linear-gradient(0deg, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 49%, rgba(250,242,255,1) 50%, rgba(250,242,255,1) 100%);
        background: linear-gradient(0deg, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 49%, rgba(250,242,255,1) 50%, rgba(250,242,255,1) 100%);
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff",endColorstr="#faf2ff",GradientType=1);
    }

        .home_section#virtualTour .cover_virtual_tour {
            width: 100%;
            height: 60vh;
            border-radius: var(--g-border-radius-4);
            background-color: darkslategray;
            margin: 30px auto;
            display: inline-block;
            background-image: url('../img/dr/dr-pic-7.webp');
            background-position: right top;
            background-size: cover;
            background-repeat: no-repeat;
            display: flex;
            align-items: center;
            justify-content: center;
        }

            .home_section#virtualTour .cover_virtual_tour:hover .action_link::after {
                background-color: var(--g-orange-color);
                transition: all 400ms ease;
            }

            .home_section#virtualTour .cover_virtual_tour > span {
                display: flex;
                align-items: center;
                justify-content: center;
                flex-direction: column;
                width: 100%;
                height: 100%;
                background-color: rgba(16,8,23,0.5);
                border-radius: var(--g-border-radius-4);
            }

            .home_section#virtualTour .cover_virtual_tour .section_title {
                color: #FFF;
                font-size: 18px;
                font-weight: 600;
                margin: 15px auto;
                width: 50%;
                text-align: center;
                padding-top: 1vh;
            }

            .home_section#virtualTour .cover_virtual_tour .section_description {
                color: #FFF;
                font-size: 20px;
                font-weight: 700;
                width: 80%;
                text-align: center;
                line-height: 40px;
            }

            .home_section#virtualTour .cover_virtual_tour .action_link {
                background-color: #FFF;
                color: var(--g-main-color);
                padding: 10px 20px 10px 50px;
                border-radius: 36px;
                margin-top: 15px;
                display: block;
                position: relative;
            }

                .home_section#virtualTour .cover_virtual_tour .action_link::after {
                    content: '';
                    border-radius: 50%;
                    width: 40px;
                    height: 40px;
                    background-color: var(--g-main-color);
                    left: 5px;
                    top: 7px;
                    position: absolute;
                    background-image: url('../img/play-white-icon.svg');
                    background-repeat: no-repeat;
                    background-position: center center;
                }

    .home_section#otherServices {
        background-color: #FFF;
        padding: 60px 0px 50px 0px;
        position: relative;
    }

        .home_section#otherServices svg {
            position: absolute;
            top: 10px;
            right: 30px;
        }

        .home_section#otherServices .section_title, .section_description {
            display: block;
            text-align: center;
        }

        .home_section#otherServices .section_title {
            color: var(--g-main-color);
            font-size: 26px;
            font-weight: 800;
            line-height: 40px;
        }

            .home_section#otherServices .section_title strong {
                color: var(--g-orange-color);
                font-size: 26px;
                font-weight: 800;
            }

        .home_section#otherServices span.section_description {
            color: var(--g-ord2-color);
            font-size: var(--g-font-size-p);
            font-weight: 400;
        }

        .home_section#otherServices .other_service_holder {
            display: flex;
            flex-direction: column;
            justify-content: space-around;
            align-items: center;
            margin: 20px 0px;
            height: 100%;
        }

            .home_section#otherServices .other_service_holder .other_service_image {
                width: 300px;
                height: 300px;
                border-radius: 50%;
                object-fit: cover;
                margin: 10px;
            }

            .home_section#otherServices .other_service_holder .other_service_items {
                width: 90%;
                display: flex;
                flex-direction: column;
                align-items: start;
            }

                .home_section#otherServices .other_service_holder .other_service_items a {
                    color: var(--g-main-color);
                    display: flex;
                    flex-direction: column;
                    align-items: start;
                    justify-content: space-around;
                    margin: 20px 0px;
                }

                    .home_section#otherServices .other_service_holder .other_service_items a:hover {
                        color: var(--g-orange-color);
                        transition: all 400ms ease;
                    }

                    .home_section#otherServices .other_service_holder .other_service_items a > :first-child {
                        font-weight: 700;
                        font-size: 20px;
                        line-height: 46px;
                    }

                    .home_section#otherServices .other_service_holder .other_service_items a > span:last-child {
                        font-size: var(--g-font-size-p);
                        color: var(--g-ord2-color);
                        line-height: 28px;
                        display: -webkit-box;
                        -webkit-box-orient: vertical;
                        overflow: hidden;
                        -webkit-line-clamp: 2;
                        height: 55px;
                    }

    .home_section .headline {
        display: flex;
        align-items: normal;
        flex-direction: column;
        justify-content: space-between;
        margin-bottom: 20px;
    }

        .home_section .headline .section_title {
            display: flex;
            flex-direction: column;
            align-items: start;
        }

            .home_section .headline .section_title > :first-child {
                font-weight: 700;
                color: var(--g-main-color);
            }

            .home_section .headline .section_title > :last-child {
                font-weight: 400;
                color: var(--g-ord2-color);
            }


        .home_section .headline .section_actions {
            display: flex;
            align-items: center;
            justify-content: center;
        }

            .home_section .headline .section_actions .portfolio_link {
                margin: 10px 10px;
                padding: 8px 30px;
                border-radius: var(--g-border-radius-3);
            }

                .home_section .headline .section_actions .portfolio_link.yellow_link {
                    background-color: var(--g-orange-color);
                    color: var(--g-main-color);
                    border: 1px solid #FFF;
                    font-weight: 700;
                }

                    .home_section .headline .section_actions .portfolio_link.yellow_link:hover {
                        background-color: #FFF;
                        color: #2F0E4C;
                        border: 1px solid #2F0E4C;
                        transition: all 400ms ease;
                    }

                .home_section .headline .section_actions .portfolio_link.white_link {
                    background-color: #FFF;
                    color: #2F0E4C;
                    border: 1px solid #2F0E4C;
                    font-weight: 700;
                }

                    .home_section .headline .section_actions .portfolio_link.white_link:hover {
                        background-color: var(--g-orange-color);
                        color: #FFF;
                        border: 1px solid #FFF;
                        transition: all 400ms ease;
                    }

    .home_section#portfolio {
        background-color: #FFF;
        padding: 20px 0px;
        position: relative;
    }

        .home_section#portfolio .portfolio_cover {
            border-radius: var(--g-border-radius-3);
            height: 350px;
            width: 100%;
            object-fit: cover;
            margin: 10px auto;
        }

        .home_section#portfolio .video_object {
            border-radius: var(--g-border-radius-3);
            height: 350px;
            width: 100%;
            margin: 10px auto;
            position: relative;
            cursor: pointer;
        }

            .home_section#portfolio .video_object .portfolio_cover_video {
                border-radius: var(--g-border-radius-3);
                position: absolute;
                width: 100%;
                height: 100%;
                top: 0px;
                left: 0px;
                object-fit: cover;
                z-index: 1;
            }

            .home_section#portfolio .video_object:before {
                content: '';
                background-color: #FFF;
                width: 70px;
                height: 70px;
                border-radius: 50%;
                position: absolute;
                left: 50%;
                margin-left: -50px;
                top: 50%;
                margin-top: -50px;
                z-index: 2 !important;
                background: #FFF url('../img/play-purple-icon.svg') no-repeat center center;
            }

            .home_section#portfolio .video_object:hover:before {
                background-color: var(--g-orange-color);
            }

    .home_section#comments {
        background-color: #FFF;
        padding: 20px 0px;
        position: relative;
    }

        .home_section#comments .contact_info {
            margin: 30px 0px;
        }

            .home_section#comments .contact_info .social_list {
                background-color: #FAF2FF;
                border-radius: var(--g-border-radius-2);
                padding: 20px;
                margin: 0px 0px 20px 0px;
                width: 100%;
            }

                .home_section#comments .contact_info .social_list a {
                    margin: 0px 10px;
                    border-radius: 50%;
                }

                    .home_section#comments .contact_info .social_list a:hover {
                        box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
                        transition: all 400ms ease;
                    }

            .home_section#comments .contact_info .dr_pic {
                border-radius: var(--g-border-radius-2);
                height: 300px;
                width: 100%;
                object-fit: cover;
            }

            .home_section#comments .contact_info .contact_link {
                border-radius: var(--g-border-radius-2);
                background: var(--g-orange-color) url('../img/flower_back.svg') no-repeat left bottom;
                display: flex;
                align-items: center;
                justify-content: space-around;
                color: #FFF;
                width: 100%;
                padding-left: 50px;
                margin: 20px 0px 0px auto;
            }

                .home_section#comments .contact_info .contact_link:hover {
                    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
                    transition: all 400ms ease;
                }

                .home_section#comments .contact_info .contact_link span:nth-child(2) {
                    height: 35px;
                    width: 1px;
                    background-color: #FFF;
                    display: block;
                    position: relative;
                }

                .home_section#comments .contact_info .contact_link span:last-child {
                    display: flex;
                    flex-direction: column;
                    align-items: start;
                    font-size: 20px;
                    padding: 10px 0px;
                    font-weight: 500;
                    line-height: 36px;
                }

                    .home_section#comments .contact_info .contact_link span:last-child strong {
                        font-size: 28px;
                        font-weight: 700;
                        margin: 0px;
                    }


        .home_section#comments .comment_item {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

            .home_section#comments .comment_item .comment_cover {
                height: 310px;
                width: 330px;
                object-fit: cover;
                border-radius: var(--g-border-radius-2);
            }

            .home_section#comments .comment_item .comment_text {
                background-color: rgba(221,205,235,0.3);
                border-radius: var(--g-border-radius-2);
                padding: 20px;
                margin: 20px 0px 0px;
            }

                .home_section#comments .comment_item .comment_text p {
                    color: var(--g-main-color);
                    font-weight: 500;
                    padding-right: 15px;
                    border-right: 1px solid #FFF;
                    text-align: justify;
                    display: -webkit-box;
                    -webkit-box-orient: vertical;
                    overflow: hidden;
                    -webkit-line-clamp: 3;
                    min-height: 75px;
                    width: 290px;
                }

                .home_section#comments .comment_item .comment_text .visitor_info {
                    display: flex;
                    align-items: center;
                }

                    .home_section#comments .comment_item .comment_text .visitor_info .visitor_comment {
                        border-radius: 50%;
                        height: 60px;
                        width: 60px;
                        object-fit: contain;
                    }

                    .home_section#comments .comment_item .comment_text .visitor_info span {
                        padding-right: 15px;
                    }

    .home_section#blogs {
        background-color: var(--g-bk-yellow);
        padding: 30px 0px;
        position: relative;
    }

        .home_section#blogs .head_section {
            color: var(--g-main-color);
            display: block;
            font-weight: 700;
            font-size: 1.8rem;
            text-align: center;
        }

        .home_section#blogs .sub_head_section {
            color: var(--g-main-color);
            display: block;
            font-weight: 400;
            font-size: 1.2rem;
            text-align: center;
            margin-bottom: 2.5rem;
        }

.carousel_blogs .bolg_item {
    background-color: #FFF;
    border-radius: var(--g-border-radius-3);
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 300px;
    cursor: pointer;
    margin: 10px;
}

    .carousel_blogs .bolg_item:hover {
        box-shadow: rgba(0, 0, 0, 0.15) 0px 3px 3px 0px;
        transition: all 400ms ease;
    }

    .carousel_blogs .bolg_item img {
        border-top-left-radius: var(--g-border-radius-3);
        border-top-right-radius: var(--g-border-radius-3);
        height: 200px;
        width: 100%;
        object-fit: cover;
        margin-bottom: 10px;
    }

    .carousel_blogs .bolg_item .blog_title {
        color: var(--g-main-color);
        font-weight: 700;
        font-size: 16px;
        height: 60px;
        line-height: 34px !important;
        margin: 5px 30px 10px 30px;
        text-align: justify;
        -webkit-line-clamp: 2;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .carousel_blogs .bolg_item p {
        margin: 5px 30px 30px 30px;
        color: var(--g-ord2-color);
        text-align: justify;
        -webkit-line-clamp: 4;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }



.home_section#faq {
    background-color: #FFF;
    padding: 30px 0px;
    position: relative;
}

    .home_section#faq .head_section {
        color: var(--g-main-color);
        display: block;
        font-weight: 700;
        font-size: 1.8rem;
        text-align: center;
    }

    .home_section#faq .sub_head_section {
        color: var(--g-main-color);
        display: block;
        font-weight: 400;
        font-size: 1.2rem;
        text-align: center;
        margin-bottom: 2.5rem;
    }

    .home_section#faq a {
        text-decoration: none;
    }

    .home_section#faq .accordion, .home_section#faq .accordion * {
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }

    .home_section#faq .accordion {
        overflow: hidden;
        background: #ffffff;
        margin: 40px 0;
    }

    .home_section#faq .accordion-section {
        border-bottom: 1px solid #acacac;
    }

        .home_section#faq .accordion-section:last-child {
            border-bottom: none;
        }

#faq .accordion-section-title {
    width: 100%;
    padding: 15px 5px;
    display: inline-block;
    position: relative;
    background: #ffffff;
    color: var(--g-main-color);
    transition: all linear 0.15s;
    font-weight: 600;
}

    #faq .accordion-section-title:focus {
        color: #1a1918
    }

    #faq .accordion-section-title .plus, .accordion-section-title .minus {
        position: absolute;
        left: 0;
        width: 10px
    }

    #faq .accordion-section-title .plus {
        display: inline-block;
        float: left;
    }

    #faq .accordion-section-title .minus {
        display: none
    }

    #faq .accordion-section-title.active {
        color: #1a1918
    }

        #faq .accordion-section-title.active .minus {
            display: inline-block;
            float: left;
        }

        #faq .accordion-section-title.active .plus {
            display: none
        }

    #faq .accordion-section-title.active, .accordion-section-title:hover {
        text-decoration: none;
        color: var(--g-orange-color);
    }

#faq .accordion-section-content {
    padding: 10px 5px;
    display: none;
}

    #faq .accordion-section-content p {
        margin: 0;
        color: var(--g-ord2-color);
        line-height: 32px;
        font-size: var(--g-font-size-p);
    }



@media (min-width: 360px) {
}

@media (min-width: 540px) {
}

@media (min-width: 768px) {
}

@media (min-width: 992px) {

   

    .home_section#virtualTour .cover_virtual_tour .section_title {
        padding-top: 8vh;
    }

    .home_section#virtualTour .cover_virtual_tour .section_description {
        font-size: 24px;
        width: 75%;
        line-height: 42px;
    }

    .home_section#services {
        padding: 80px 0px;
    }

    .home_section#otherServices svg {
        top: 10vh;
        right: 15vw;
    }

    .home_section#otherServices .section_title {
        font-size: 32px;
        line-height: 52px;
    }

        .home_section#otherServices .section_title strong {
            font-size: 32px;
        }

    .home_section#about {
        padding: 80px 0px;
    }

        .home_section#about h2 {
            font-size: 28px;
            font-weight: 900;
            line-height: 48px !important;
        }

        .home_section#about .about_top_pic picture:last-child img {
            left: 40px;
        }    

    .home_section#about .about_top_pic {
        padding-left: 40px;
        height: 450px;
        width: 50%;
    }

    .home_section#virtualTour .cover_virtual_tour {
        height: 70vh;
        background-position: center top;
    }

    .home_section#otherServices .other_service_holder {
        flex-direction: row;
    }

        .home_section#otherServices .other_service_holder .other_service_image {
            width: 400px;
            height: 400px;
            margin: 30px;
        }

        .home_section#otherServices .other_service_holder .other_service_items {
            width: calc(50% - 300px);
        }

            .home_section#otherServices .other_service_holder .other_service_items a {
                margin: 40px 0px;
            }

    .home_section .headline {
        flex-direction: row;
        margin-bottom: 40px;
        align-items: center;
    }

    .home_section#portfolio {
        padding: 60px 0px;
    }

    .home_section#comments {
        padding: 60px 0px;
    }

        .home_section#comments .contact_info {
            margin: 0px;
        }

            .home_section#comments .contact_info .social_list {
                width: 400px;
                padding: 30px;
            }

            .home_section#comments .contact_info .dr_pic {
                height: 350px;
            }

            .home_section#comments .contact_info .contact_link {
                width: 400px;
            }

        .home_section#comments .comment_item .comment_text {
            padding: 30px;
        }

            .home_section#comments .comment_item .comment_text p {
                width: 340px;
            }

        .home_section#comments .comment_item .comment_cover {
            width: 390px;
        }

    .home_section#blogs {
        padding: 60px 0px;
    }

    .carousel_blogs .bolg_item {
        width: 400px;
    }

        .carousel_blogs .bolg_item img {
            height: 250px;
        }

    .home_section#faq {
        padding: 60px 0px;
    }

}

@media (min-width: 1200px) {  

    .home_section#virtualTour .cover_virtual_tour .section_title {
        padding-top: 8vh;
    }

    .home_section#virtualTour .cover_virtual_tour .section_description {
        font-size: 24px;
        width: 75%;
        line-height: 42px;
    }

    header .tel-call .icon-holder {
        width: 50px;
        height: 50px;
        background-size: 25px auto;
    }

    .home_section#services {
        padding: 80px 0px;
    }

    .home_section#otherServices svg {
        top: 10vh;
        right: 15vw;
    }

    .home_section#otherServices .section_title {
        font-size: 32px;
        line-height: 52px;
    }

        .home_section#otherServices .section_title strong {
            font-size: 32px;
        }

    .home_section#about {
        padding: 80px 0px;
    }

        .home_section#about h2 {
            font-size: 32px;
            font-weight: 900;
            line-height: 50px !important;
        }
    
    .home_section#about .about_top_pic {
        padding-left: 40px;
        height: 450px;
        width: 50%;
    }

    .home_section#otherServices .other_service_holder {
        flex-direction: row;
    }

        .home_section#otherServices .other_service_holder .other_service_image {
            width: 400px;
            height: 400px;
            margin: 30px;
        }

        .home_section#otherServices .other_service_holder .other_service_items {
            width: calc(50% - 300px);
        }

            .home_section#otherServices .other_service_holder .other_service_items a {
                margin: 40px 0px;
            }

    .home_section .headline {
        flex-direction: row;
        margin-bottom: 40px;
    }

    .home_section#portfolio {
        padding: 60px 0px;
    }

    .home_section#comments {
        padding: 60px 0px;
    }

        .home_section#comments .contact_info {
            margin: 0px;
        }

            .home_section#comments .contact_info .social_list {
                width: 400px;
                padding: 30px;
            }

            .home_section#comments .contact_info .dr_pic {
                height: 350px;
            }

            .home_section#comments .contact_info .contact_link {
                width: 400px;
            }

        .home_section#comments .comment_item .comment_text {
            padding: 40px;
        }

            .home_section#comments .comment_item .comment_text p {
                width: 470px;
            }

        .home_section#comments .comment_item .comment_cover {
            width: 555px;
        }

    .home_section#blogs {
        padding: 60px 0px;
    }

    .carousel_blogs .bolg_item {
        width: 400px;
    }

        .carousel_blogs .bolg_item img {
            height: 250px;
        }

    .home_section#faq {
        padding: 60px 0px;
    }
}

@media (min-width: 1400px) {   

    .home_section#virtualTour .cover_virtual_tour .section_title {
        padding-top: 8vh;
    }

    .home_section#virtualTour .cover_virtual_tour .section_description {
        font-size: 24px;
        width: 75%;
        line-height: 42px;
    }

    .home_section#services {
        padding: 80px 0px;
    }

    .home_section#otherServices svg {
        top: 10vh;
        right: 15vw;
    }

    .home_section#otherServices .section_title {
        font-size: 32px;
        line-height: 52px;
    }

        .home_section#otherServices .section_title strong {
            font-size: 32px;
        }

    .home_section#about {
        padding: 80px 0px;
    }

        .home_section#about h2 {
            font-size: 32px;
            font-weight: 900;
            line-height: 50px !important;
        }

   

    .home_section#about .about_top_pic {
        padding-left: 40px;
        height: 450px;
        width: 50%;
    }

    .home_section#otherServices .other_service_holder {
        flex-direction: row;
    }

        .home_section#otherServices .other_service_holder .other_service_image {
            width: 400px;
            height: 400px;
            margin: 30px;
        }

        .home_section#otherServices .other_service_holder .other_service_items {
            width: calc(50% - 300px);
        }

            .home_section#otherServices .other_service_holder .other_service_items a {
                margin: 40px 0px;
            }

    .home_section .headline {
        flex-direction: row;
        margin-bottom: 40px;
    }

    .home_section#portfolio {
        padding: 60px 0px;
    }

    .home_section#comments {
        padding: 60px 0px;
    }

        .home_section#comments .contact_info {
            margin: 0px;
        }

            .home_section#comments .contact_info .social_list {
                width: 400px;
                padding: 30px;
            }

            .home_section#comments .contact_info .dr_pic {
                height: 350px;
            }

            .home_section#comments .contact_info .contact_link {
                width: 400px;
            }

        .home_section#comments .comment_item .comment_text {
            padding: 40px;
        }

            .home_section#comments .comment_item .comment_text p {
                width: 470px;
            }

        .home_section#comments .comment_item .comment_cover {
            width: 555px;
        }

    .home_section#blogs {
        padding: 60px 0px;
    }

    .carousel_blogs .bolg_item {
        width: 400px;
    }

        .carousel_blogs .bolg_item img {
            height: 250px;
        }

    .home_section#faq {
        padding: 60px 0px;
    }

}