@charset "UTF-8";

/*=========
Color Code
===========*/
.footer_section_4 .footer_app_btn a, .rx-practice-btn a, .slider_content_wrap .rx_slider_text a {
    z-index: 1;
    height: 55px;
    width: 170px;
    display: block;
    font-size: 15px;
    font-weight: 700;
    line-height: 55px;
    position: relative;
    text-align: center;
    text-transform: uppercase;
}

    .footer_section_4 .footer_app_btn a:before, .rx-practice-btn a:before, .slider_content_wrap .rx_slider_text a:before {
        top: 10px;
        left: 10px;
        content: "";
        width: 100%;
        height: 100%;
        position: absolute;
        transition: 0.3s all ease-in-out;
    }

    .footer_section_4 .footer_app_btn a:after, .rx-practice-btn a:after, .slider_content_wrap .rx_slider_text a:after {
        top: 0;
        left: 0;
        content: "";
        z-index: -1;
        width: 100%;
        height: 100%;
        position: absolute;
        opacity: 0;
        visibility: hidden;
        transition: 0.3s all ease-in-out;
    }

    .footer_section_4 .footer_app_btn a:hover:before, .rx-practice-btn a:hover:before, .slider_content_wrap .rx_slider_text a:hover:before {
        top: -10px;
        left: -10px;
    }

    .footer_section_4 .footer_app_btn a:hover:after, .rx-practice-btn a:hover:after, .slider_content_wrap .rx_slider_text a:hover:after {
        opacity: 1;
        visibility: visible;
    }

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translate3d(0, -100%, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}
/*global area*/
/*----------------------------------------------------*/
body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    font-size: 16px;
    line-height: 1.55;
    color: #343434;
    font-family: "DM Sans", sans-serif;
    -moz-osx-font-smoothing: antialiased;
    -webkit-font-smoothing: antialiased;
}

::selection {
    color: #ffffff;
    background-color: #23bcb9;
}

::-moz-selection {
    color: #ffffff;
    background-color: #23bcb9;
}

.container {
    max-width: 1200px;
}

.ul-li ul {
    margin: 0;
    padding: 0;
}

    .ul-li ul li {
        list-style: none;
        display: inline-block;
    }

.ul-li-block ul {
    margin: 0;
    padding: 0;
}

    .ul-li-block ul li {
        display: block;
        list-style: none;
    }

div#preloader {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 99999;
    width: 100%;
    height: 100%;
    overflow: visible;
    background: #282828 url("../img/pre.gif") no-repeat center center;
}

[data-background] {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

a {
    color: inherit;
    text-decoration: none;
    transition: 0.3s all ease-in-out;
}

    a:hover, a:focus {
        text-decoration: none;
    }

img {
    max-width: 100%;
    height: auto;
}

section {
    overflow: hidden;
}

button {
    cursor: pointer;
}

    .form-control:focus,
    button:visited,
    button.active,
    button:hover,
    button:focus,
    input:visited,
    input.active,
    input:hover,
    input:focus,
    textarea:hover,
    textarea:focus,
    a:hover,
    a:focus,
    a:visited,
    a.active,
    select,
    select:hover,
    select:focus,
    select:visited {
        outline: none;
        box-shadow: none;
        text-decoration: none;
        color: inherit;
    }

.form-control {
    box-shadow: none;
}

.relative-position {
    position: relative;
}

.pera-content p {
    margin-bottom: 0;
}

.headline h1,
.headline h2,
.headline h3,
.headline h4,
.headline h5,
.headline h6 {
    margin: 0;
    font-family: "Bricolage Grotesque", sans-serif;
}

.block-display {
    width: 100%;
    display: block;
}

.background_overlay {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    position: absolute;
}

.background_position {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.scrollup {
    width: 45px;
    right: 15px;
    z-index: 5;
    height: 45px;
    display: none;
    bottom: 20px;
    position: fixed;
    line-height: 45px;
    background-color: #23bcb9;
}

    .scrollup i {
        color: #fff;
    }

.rx-section-title h2 {
    color: #000000;
    font-size: 35px;
    font-weight: 700;
}

    .rx-section-title h2 span {
        color: #23bcb9;
    }

@-webkit-keyframes fadeFromLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-20px);
        transform: translateX(-20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes fadeFromLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-20px);
        transform: translateX(-20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@-webkit-keyframes fadeFromRight {
    0% {
        opacity: 0;
        -webkit-transform: translateX(20px);
        transform: translateX(20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes fadeFromRight {
    0% {
        opacity: 0;
        -webkit-transform: translateX(20px);
        transform: translateX(20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@-webkit-keyframes fadeFromUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(20px);
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes fadeFromUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(20px);
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

.fadeFromUp {
    -webkit-animation-name: fadeFromUp;
    animation-name: fadeFromUp;
}

.fadeFromRight {
    -webkit-animation-name: fadeFromRight;
    animation-name: fadeFromRight;
}

.fadeFromLeft {
    -webkit-animation-name: fadeFromLeft;
    animation-name: fadeFromLeft;
}

/*---------------------------------------------------- */
/*Header area*/
/*----------------------------------------------------*/
.header_style_four {
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    position: absolute;
}

    .header_style_four .header_top_content {
        padding: 15px 0px 12px;
        background: #194179;
    }

        .header_style_four .header_top_content .header_top_text span {
            color: #fff;
            font-size: 14px;
        }

            .header_style_four .header_top_content .header_top_text span a {
                font-size: 16px;
                font-weight: 700;
                margin-left: 5px;
                color: #23bcb9;
                position: relative;
            }

                .header_style_four .header_top_content .header_top_text span a:after {
                    left: 0;
                    bottom: 0;
                    height: 2px;
                    content: "";
                    width: 100%;
                    position: absolute;
                    background-color: #23bcb9;
                }

        .header_style_four .header_top_content .header_top_contact a {
            color: #fff;
            font-size: 15px;
            margin-left: 25px;
        }

            .header_style_four .header_top_content .header_top_contact a i {
                margin-right: 5px;
                color: #23bcb9;
            }

    .header_style_four .header_main_menu_wrap {
        padding: 5px 0px;
        background-color: #ffffff;
    }

        .header_style_four .header_main_menu_wrap .brand_logo {
            margin-right: 15px;
        }

        .header_style_four .header_main_menu_wrap .rx_main_navigation {
            float: left;
            padding-top: 16px;
        }

            .header_style_four .header_main_menu_wrap .rx_main_navigation li {
                margin-left: 35px;
                position: relative;
            }

                .header_style_four .header_main_menu_wrap .rx_main_navigation li:after {
                    top: 8px;
                    width: 6px;
                    height: 6px;
                    content: "";
                    left: -13px;
                    position: absolute;
                    background-color: #23bcb9;
                }

                .header_style_four .header_main_menu_wrap .rx_main_navigation li:last-child:after {
                    content: none;
                }

            .header_style_four .header_main_menu_wrap .rx_main_navigation a {
                /*color: #fff;*/
                font-weight: 500;
                padding-bottom: 30px;
                text-transform: capitalize;
            }

        /*.header_style_four .header_main_menu_wrap .rx_header_btn {           
            margin-top: 12px;           
            margin-left: 30px;
           
        }
*/
        .header_style_four .header_main_menu_wrap .rx_header_btn a {
            padding: 13px 35px;
            color: #ffffff;
            font-size: 15px;
            border-radius: 4px;
            font-weight: 700;
            line-height: 50px;
            background-color: #23bcb9;
            transition: 0.3s all ease-in-out;
        }

            .header_style_four .header_main_menu_wrap .rx_header_btn a:hover {
                background-color: #194179;
            }

    .header_style_four .dropdown .dropdown-menu {
        top: 65px;
        left: 0;
        opacity: 0;
        z-index: 2;
        margin: 0px;
        padding: 0px;
        height: auto;
        width: 220px;
        display: block;
        border: none;
        padding: 10px 0px 0px;
        visibility: hidden;
        position: absolute;
        border-radius: 0;
        background-color: #fff;
        transition: all 0.4s ease-in-out;
        border-bottom: 2px solid #23bcb9;
        box-shadow: 0 5px 10px 0 rgba(83, 82, 82, 0.1);
    }

        .header_style_four .dropdown .dropdown-menu li {
            width: 100%;
            margin-left: 0;
            padding: 10px 15px 15px 30px;
            border-bottom: 1px solid #e5e5e5;
        }

            .header_style_four .dropdown .dropdown-menu li:after {
                top: 19px;
                left: 15px;
            }

            .header_style_four .dropdown .dropdown-menu li a {
                color: #343434;
                font-size: 15px;
                padding: 10px 0px;
                font-weight: 700;
            }

                .header_style_four .dropdown .dropdown-menu li a:hover {
                    padding-left: 15px;
                }

                .header_style_four .dropdown .dropdown-menu li a:after {
                    display: none;
                }

    .header_style_four .dropdown:hover .dropdown-menu {
        top: 52px;
        opacity: 1;
        visibility: visible;
    }

.rx-sticky-menu {
    top: -50px;
    width: 100%;
    z-index: 10;
    position: fixed;
    background: #000;
    animation-duration: 0.7s;
    animation-fill-mode: both;
    animation-name: fadeInDown;
    animation-timing-function: ease;
    transition: 0.3s all ease-in-out;
}

    .rx-sticky-menu .rx-mobile_menu_wrap.mobile_menu_on .rx-mobile_menu_content {
        top: 50px;
    }

.header_style_four .rx-mobile_menu_content {
    top: 0px;
    bottom: 0;
    right: -350px;
    height: 100vh;
    z-index: 101;
    position: fixed;
    width: 280px;
    overflow-y: scroll;
    background-color: #194179;
    padding: 40px 0px;
    box-shadow: 0px 3px 5px rgba(100, 100, 100, 0.19);
    transition: all 0.5s ease-in;
}

    .header_style_four .rx-mobile_menu_content .rx-mobile-main-navigation {
        width: 100%;
    }

        .header_style_four .rx-mobile_menu_content .rx-mobile-main-navigation .navbar-nav {
            width: 100%;
        }

    .header_style_four .rx-mobile_menu_content .navbar-nav .dropdown-menu {
        position: static !important;
        transform: none !important;
    }

    .header_style_four .rx-mobile_menu_content .rx-mobile-main-navigation .navbar-nav li {
        width: 100%;
        display: block;
        transition: 0.3s all ease-in-out;
        border-bottom: 1px solid #17a2b82e;
    }

        .header_style_four .rx-mobile_menu_content .rx-mobile-main-navigation .navbar-nav li:first-child {
            border-bottom: 1px solid #17a2b82e;
        }

        .header_style_four .rx-mobile_menu_content .rx-mobile-main-navigation .navbar-nav li a {
            color: #ffffff;
            padding: 0;
            width: 100%;
            display: block;
            font-weight: 500;
            font-size: 14px;
            padding: 10px 30px;
            text-transform: uppercase;
        }

    .header_style_four .rx-mobile_menu_content .m-brand-logo {
        width: 160px;
        margin: 0 auto;
        margin-bottom: 30px;
    }

.header_style_four .rx-mobile_menu_wrap.mobile_menu_on .rx-mobile_menu_content {
    right: 0px;
    transition: all 0.7s ease-out;
}

.header_style_four .mobile_menu_overlay {
    top: 0;
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 100;
    right: 0%;
    height: 120vh;
    opacity: 0;
    visibility: hidden;
    background-color: rgba(0, 0, 0, 0.9);
    transition: all 0.5s ease-in-out;
}

.header_style_four .mobile_menu_overlay_on {
    overflow: hidden;
}

.header_style_four .rx-mobile_menu_wrap.mobile_menu_on .mobile_menu_overlay {
    opacity: 1;
    visibility: visible;
}

.header_style_four .rx-mobile_menu_button {
    right: 0;
    top: 14px;
    z-index: 5;
    color: #061121;
    display: none;
    cursor: pointer;
    font-size: 25px;
    line-height: 40px;
    position: absolute;
    text-align: center;
}

.header_style_four .rx-mobile_menu .rx-mobile-main-navigation .navbar-nav li a:after {
    display: none;
}

.header_style_four .rx-mobile_menu .rx-mobile-main-navigation .dropdown > .dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.header_style_four .rx-mobile_menu .rx-mobile_menu_content .rx-mobile-main-navigation .navbar-nav .dropdown-menu {
    border: none;
    display: none;
    transition: none;
    box-shadow: none;
    padding: 5px 0px;
    width: 100%;
    background-color: transparent;
}

    .header_style_four .rx-mobile_menu .rx-mobile_menu_content .rx-mobile-main-navigation .navbar-nav .dropdown-menu li {
        border: none;
        padding: 0 20px;
        line-height: 1;
    }

.header_style_four .rx-mobile_menu .dropdown {
    position: relative;
}

    .header_style_four .rx-mobile_menu .dropdown .dropdown-btn {
        position: absolute;
        top: 6px;
        right: 10px;
        height: 30px;
        color: #afafaf;
        line-height: 22px;
        padding: 5px 10px;
        border: 1px solid #17a2b82e;
    }

    .header_style_four .rx-mobile_menu .dropdown:after {
        display: none;
    }

.header_style_four .rx-mobile_menu .rx-mobile_menu_close {
    color: #ebebeb;
    cursor: pointer;
    top: 15px;
    right: 15px;
    font-size: 17px;
    position: absolute;
}

.rx_main_navigation .nav-link {
    display: contents;
}

    .rx_main_navigation .nav-link.active {
        color: #23bcb9 !important;
    }
/*---------------------------------------------------- */
/*Slider area*/
/*----------------------------------------------------*/
.slider_content_wrap {
    z-index: 5;
}

    .slider_content_wrap .background_overlay {
        z-index: 1;
        background-color: rgba(0, 0, 0, 0.6);
    }

    .slider_content_wrap .rx_slider_img {
        top: 0;
        left: 0;
        z-index: -2;
        height: 100%;
        width: 100%;
        position: absolute;
    }

    .slider_content_wrap .rx_slider_text {
        color: #fff;
        max-width: 735px;
        padding-left: 50px;
    }

        .slider_content_wrap .rx_slider_text span {
            opacity: 0;
            font-weight: 700;
            position: relative;
            display: inline-block;
            text-transform: uppercase;
            transform: translateY(50px);
        }

            .slider_content_wrap .rx_slider_text span:after {
                top: 10px;
                right: -80px;
                content: "";
                height: 2px;
                width: 70px;
                position: absolute;
                background-color: #23bcb9;
            }

        .slider_content_wrap .rx_slider_text h1 {
            font-size: 60px;
            font-weight: 700;
            line-height: 1.2;
            padding: 25px 0px 30px;
            opacity: 0;
            transform: translateY(50px);
        }

        .slider_content_wrap .rx_slider_text p {
            font-size: 18px;
            padding-bottom: 55px;
            opacity: 0;
            transform: translateY(50px);
        }

        .slider_content_wrap .rx_slider_text a {
            background-color: #23bcb9;
            opacity: 0;
            transform: translateY(50px);
        }

            .slider_content_wrap .rx_slider_text a:before {
                border: 2px solid #23bcb9;
            }

    .slider_content_wrap .rx_slider_text_img_area {
        z-index: 2;
        padding: 200px 0px 175px;
    }

        .slider_content_wrap .rx_slider_text_img_area .rx_slider_side_img {
            right: -80px;
            bottom: 4em;
            opacity: 0;
            position: absolute;
            z-index: -1;
            transform: translateX(50px);
        }

.slider_style_four .owl-nav .owl-next,
.slider_style_four .owl-nav .owl-prev {
    top: 50%;
    width: 55px;
    height: 55px;
    line-height: 55px;
    position: absolute;
    text-align: center;
    border-radius: 100%;
    background-color: #fff;
    transform: translateY(-50%);
    transition: 0.3s all ease-in-out;
}

    .slider_style_four .owl-nav .owl-next:hover,
    .slider_style_four .owl-nav .owl-prev:hover {
        color: #fff;
        background-color: #23bcb9;
    }

.slider_style_four .owl-nav .owl-prev {
    left: 55px;
}

.slider_style_four .owl-nav .owl-next {
    right: 55px;
}

.slider_style_four .owl-item.active .img-zooming {
    transform: scale(1.15);
    transition: all 7000ms linear;
}

.slider_style_four .owl-item.active .rx_slider_text span {
    opacity: 1;
    transform: translateY(0);
    transition: all 1500ms ease;
    transition-delay: 900ms;
}

.slider_style_four .owl-item.active .rx_slider_text h1 {
    opacity: 1;
    transform: translateY(0);
    transition: all 1500ms ease;
    transition-delay: 1200ms;
}

.slider_style_four .owl-item.active .rx_slider_text p {
    opacity: 1;
    transform: translateY(0);
    transition: all 1500ms ease;
    transition-delay: 1500ms;
}

.slider_style_four .owl-item.active .rx_slider_text a {
    opacity: 1;
    transform: translateY(0);
    transition: all 1500ms ease;
    transition-delay: 1800ms;
}

.slider_style_four .owl-item.active .rx_slider_side_img {
    opacity: 1;
    transform: translateY(0);
    transition: all 1500ms ease;
    transition-delay: 2100ms;
}

/*---------------------------------------------------- */
/*Feature area*/
/*----------------------------------------------------*/
@keyframes icon-bounce {
    0%, 100%, 20%, 50%, 80% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

.rx-feature-section {
    top: -90px;
    z-index: 2;
    overflow: visible;
}

.rx-feature-icon-text {
    padding: 50px 40px;
    background-color: #194179;
    transition: 0.3s all ease-in-out;
}

    .rx-feature-icon-text .rx-feature-icon {
        line-height: 1;
        padding-bottom: 30px;
    }

        .rx-feature-icon-text .rx-feature-icon i {
            font-size: 50px;
            color: #23bcb9;
        }

    .rx-feature-icon-text .rx-feature-text h3 {
        color: #000;
        color: #fff;
        font-size: 22px;
        font-weight: 700;
        padding-bottom: 15px;
    }

    .rx-feature-icon-text .rx-feature-text p {
        color: #bebebe;
        line-height: 1.733;
        transition: 0.3s all ease-in-out;
    }

    .rx-feature-icon-text:hover {
        background-color: #fafafa;
    }

        .rx-feature-icon-text:hover .rx-feature-text h3 {
            color: #000;
        }

        .rx-feature-icon-text:hover .rx-feature-text p {
            color: #555555;
        }

        .rx-feature-icon-text:hover .rx-feature-icon {
            animation: icon-bounce 0.8s ease-out infinite;
        }

/*---------------------------------------------------- */
/*About area*/
/*----------------------------------------------------*/
.rx-about-section {
    padding: 10px 0px 95px;
}

.rx-about-award-img .rx-about-award-text {
    left: 0;
    right: 0;
    bottom: 28px;
    height: 70px;
    margin: 0 auto;
    max-width: 370px;
    line-height: 70px;
    padding-left: 30px;
    position: absolute;
    background-color: #fff;
}

    .rx-about-award-img .rx-about-award-text:before {
        top: 5px;
        left: 5px;
        content: "";
        position: absolute;
        border-top: 15px solid #194179;
        border-right: 15px solid transparent;
    }

    .rx-about-award-img .rx-about-award-text span {
        color: #194179;
        font-size: 20px;
        margin-top: 5px;
        font-weight: 700;
        font-family: "Poppins";
    }

    .rx-about-award-img .rx-about-award-text i {
        float: left;
        margin-top: 15px;
        font-size: 40px;
        color: #23bcb9;
        margin-right: 10px;
        animation: icon-bounce 2s ease-out infinite;
    }

.rx-about-text {
    padding-top: 15px;
    padding-left: 25px;
}

    .rx-about-text .rx-about-text-wrap {
        margin-top: 25px;
    }

        .rx-about-text .rx-about-text-wrap p {
            line-height: 1.75;
            padding-bottom: 15px;
        }

        .rx-about-text .rx-about-text-wrap ul li {
            color: #000000;
            font-weight: 500;
            position: relative;
            padding-left: 30px;
            margin-bottom: 10px;
        }

            .rx-about-text .rx-about-text-wrap ul li:before {
                top: 0;
                left: 0;
                font-weight: 900;
                content: "";
                color: #23bcb9;
                position: absolute;
                font-family: "Font Awesome 5 Free";
            }

/*---------------------------------------------------- */
/*practice area*/
/*----------------------------------------------------*/
.rx-practice-section {
    padding: 90px 0px 100px;
    background-color: #f9f9f9;
}

    .rx-practice-section .rx-section-title {
        margin: 0 auto;
        max-width: 580px;
    }

    .rx-practice-section .rx-practice-content {
        padding-top: 25px;
    }

.rx-practice-btn a {
    color: #fff;
    margin: 0 auto;
    background-color: #000000;
}

    .rx-practice-btn a:before {
        border: 2px solid #000;
    }

    .rx-practice-btn a:after {
        background-color: #23bcb9;
    }

    .rx-practice-btn a:hover:before {
        border: 2px solid #23bcb9;
    }

.rx-practice-icon-text {
    padding: 40px;
    margin-bottom: 40px;
    background-color: #fff;
    transition: 0.3s all ease-in-out;
    box-shadow: 0px 0px 32px 0px rgba(73, 73, 73, 0.06);
}

    .rx-practice-icon-text .rx-practice-text h3 {
        color: #000000;
        font-size: 24px;
        font-weight: 700;
        max-width: 350px;
        line-height: 1.25;
        padding-bottom: 22px;
    }

    .rx-practice-icon-text .rx-practice-text p {
        color: #555555;
        line-height: 1.75;
    }

    .rx-practice-icon-text .rx-practice-icon {
        top: 30px;
        right: 30px;
        width: 60px;
        height: 60px;
        position: absolute;
        background-color: #23bcb9;
        transition: 0.6s cubic-bezier(0.24, 0.74, 0.58, 1);
        transition-delay: 0.3s;
    }

        .rx-practice-icon-text .rx-practice-icon i {
            color: #fff;
            line-height: 60px;
            font-size: 40px;
        }

    .rx-practice-icon-text:hover {
        box-shadow: 0px 14px 32px 0px rgba(73, 73, 73, 0.27);
    }

        .rx-practice-icon-text:hover .rx-practice-text h3 {
            color: #23bcb9;
        }

        .rx-practice-icon-text:hover .rx-practice-icon {
            background-color: #000;
            transform: rotateY(360deg);
        }

/*---------------------------------------------------- */
/*portfolio area*/
/*----------------------------------------------------*/
@keyframes toLeftFromRight {
    49% {
        transform: translateX(-100%);
    }

    50% {
        opacity: 0;
        transform: translateX(100%);
    }

    51% {
        opacity: 1;
    }
}

.rx-portfolio-secton {
    padding: 100px 0px;
}

    .rx-portfolio-secton .rx-section-title {
        margin: 0 auto;
        max-width: 690px;
    }

    .rx-portfolio-secton .rx-portfolio-content {
        margin: 0 auto;
        margin-top: 60px;
        max-width: 1920px;
    }

.rx-portfolio-main {
    max-width: 370px;
    margin: 0 auto;
}

    .rx-portfolio-main h3 {
        font-size: 19px;
        padding: 10px 0;
        text-align: center;
        font-weight: 700;
        line-height: 19px;
        border-bottom: 4px solid #23bcb9;
    }

}

.rx-portfolio-innerbox {
    max-width: 370px;
    margin: 0 auto;
}

    .rx-portfolio-innerbox:before, .rx-portfolio-innerbox:after {
        top: 15px;
        content: "";
        position: absolute;
        z-index: 4;
        height: 1px;
        left: 15px;
        right: 15px;
        transform: scaleX(0);
        transform-origin: 0 0;
        transition-duration: 0.35s;
        animation-duration: 0.35s;
        background-color: #23bcb9;
        transition-delay: 0.2s;
    }

    .rx-portfolio-innerbox:after {
        top: auto;
        bottom: 15px;
    }

    .rx-portfolio-innerbox .rx-portfolio-border {
        position: absolute;
        height: 100%;
        width: 100%;
        top: 0;
        left: 0;
        z-index: 3;
    }

        .rx-portfolio-innerbox .rx-portfolio-border:before, .rx-portfolio-innerbox .rx-portfolio-border:after {
            left: 15px;
            top: 15px;
            bottom: 15px;
            content: "";
            position: absolute;
            z-index: -1;
            width: 1px;
            transform: scaleY(0);
            transform-origin: 0 0;
            transition-duration: 0.35s;
            animation-duration: 0.35s;
            background-color: #23bcb9;
            transition-delay: 0.2s;
        }

        .rx-portfolio-innerbox .rx-portfolio-border:after {
            left: auto;
            right: 15px;
        }

    .rx-portfolio-innerbox .rx-portfolio-img {
        overflow: hidden;
    }

        .rx-portfolio-innerbox .rx-portfolio-img:before {
            top: 0;
            left: 0;
            opacity: 0;
            z-index: 2;
            width: 100%;
            content: "";
            height: 100%;
            visibility: hidden;
            position: absolute;
            transition: 0.3s all ease-in-out;
            background-color: rgba(0, 0, 0, 0.7);
        }

        .rx-portfolio-innerbox .rx-portfolio-img img {
            transition: 0.7s all ease-in-out;
        }

    .rx-portfolio-innerbox .rx-portfolio-text {
        left: 0px;
        z-index: 5;
        opacity: 0;
        bottom: 30px;
        visibility: hidden;
        position: absolute;
        transition: 0.4s all ease-in-out;
    }

        .rx-portfolio-innerbox .rx-portfolio-text span {
            font-size: 14px;
            font-weight: 700;
            color: #23bcb9;
        }

        .rx-portfolio-innerbox .rx-portfolio-text h3 {
            color: #fff;
            font-size: 13px;
            font-weight: 600;
            padding-top: 3px;
        }

    .rx-portfolio-innerbox .rx-port-icon {
        opacity: 0;
        color: #fff;
        width: 55px;
        z-index: 5;
        right: 0px;
        bottom: 30px;
        height: 55px;
        line-height: 55px;
        visibility: hidden;
        position: absolute;
        background-color: #23bcb9;
        transition: 0.4s all ease-in-out;
    }

        .rx-portfolio-innerbox .rx-port-icon a {
            width: 100%;
            display: block;
        }

        .rx-portfolio-innerbox .rx-port-icon:hover i {
            animation: toLeftFromRight 0.3s forwards;
        }

    .rx-portfolio-innerbox:hover:before, .rx-portfolio-innerbox:hover:after {
        opacity: 1;
        transform: scale(1);
    }

    .rx-portfolio-innerbox:hover .rx-portfolio-border:before, .rx-portfolio-innerbox:hover .rx-portfolio-border:after {
        opacity: 1;
        transform: scale(1);
    }

    .rx-portfolio-innerbox:hover .rx-portfolio-img img {
        transform: scale(1.2);
    }

    .rx-portfolio-innerbox:hover .rx-portfolio-img:before {
        opacity: 1;
        visibility: visible;
    }

    .rx-portfolio-innerbox:hover .rx-portfolio-text {
        left: 30px;
        opacity: 1;
        visibility: visible;
    }

    .rx-portfolio-innerbox:hover .rx-port-icon {
        opacity: 1;
        right: 30px;
        visibility: visible;
    }

.rx-testimonial-slider .owl-dots, .rx-portfolio-slider .owl-dots {
    margin-top: 30px;
    text-align: center;
}

    .rx-testimonial-slider .owl-dots .owl-dot, .rx-portfolio-slider .owl-dots .owl-dot {
        width: 20px;
        height: 20px;
        margin: 0px 5px;
        border-radius: 100%;
        display: inline-block;
        border: 2px solid #cdcdcd;
        transition: 0.3s all ease-in-out;
    }

        .rx-testimonial-slider .owl-dots .owl-dot.active, .rx-portfolio-slider .owl-dots .owl-dot.active {
            background-color: #000;
            border: 2px solid #000;
        }

/*---------------------------------------------------- */
/*Counter area*/
/*----------------------------------------------------*/
.rx-counter-section .background_parallax {
    padding: 55px 0px 60px;
}

.rx-counter-section .background_overlay {
    z-index: 0;
    background-color: rgba(0, 0, 0, 0.8);
}

.rx-counter-icon-text .rx-counter-icon {
    margin-right: 20px;
}

    .rx-counter-icon-text .rx-counter-icon i {
        font-size: 50px;
        color: #23bcb9;
    }

.rx-counter-icon-text .rx-counter-text {
    color: #fff;
    display: block;
    overflow: hidden;
}

    .rx-counter-icon-text .rx-counter-text span {
        line-height: 1;
        font-size: 41px;
        font-weight: 500;
        display: inline-block;
        font-family: "Bricolage Grotesque", sans-serif;
    }

    .rx-counter-icon-text .rx-counter-text p {
        font-size: 18px;
        font-weight: 700;
        padding-top: 8px;
        text-transform: capitalize;
    }

    .rx-counter-icon-text .rx-counter-text .odometer-formatting-mark {
        display: none;
    }

/*---------------------------------------------------- */
/*Testimonial area*/
/*----------------------------------------------------*/
.rx-testimonial-section {
    padding: 100px 0px;
}

    .rx-testimonial-section .rx-section-title {
        margin: 0 auto;
        max-width: 510px;
    }

    .rx-testimonial-section .rx-testimonial-content {
        padding-top: 70px;
    }

.rx-testimonial-img-text .rx-testimonial-img {
    width: 206px;
    height: 206px;
    margin-right: 30px;
    overflow: hidden;
    border-radius: 30px;
}

    /* .rx-testimonial-img-text .rx-testimonial-img:before {
        top: 0;
        left: 0;
        z-index: 1;
        content: "";
        width: 100%;
        height: 100%;
        position: absolute;
        background-color: rgba(0, 0, 0, 0.5);
    }
*/
    .rx-testimonial-img-text .rx-testimonial-img .rx-testi-quote {
        display: none;
        top: 12px;
        z-index: 2;
        left: 12px;
        color: #fff;
        line-height: 1;
        font-size: 70px;
        position: absolute;
    }

.rx-testimonial-img-text .rx-testimonial-text {
    display: block;
    overflow: hidden;
    padding-top: 10px;
}

    .rx-testimonial-img-text .rx-testimonial-text p {
        color: #555555;
        font-size: 18px;
        line-height: 1.722;
    }

    .rx-testimonial-img-text .rx-testimonial-text .rx-testimonial-author {
        margin-bottom: 10px;
    }

        .rx-testimonial-img-text .rx-testimonial-text .rx-testimonial-author h4 {
            color: #000;
            font-size: 21px;
            font-weight: 700;
            padding-left: 18px;
            position: relative;
            padding-bottom: 8px;
        }

            .rx-testimonial-img-text .rx-testimonial-text .rx-testimonial-author h4:before {
                left: 0;
                top: 12px;
                content: "";
                height: 3px;
                width: 10px;
                position: absolute;
                background-color: #000;
            }

        .rx-testimonial-img-text .rx-testimonial-text .rx-testimonial-author span {
            color: #949494;
            font-size: 14px;
            font-style: italic;
        }

.rx-testimonial-slider .owl-dots {
    margin-top: 35px;
}

/*---------------------------------------------------- */
/*Contact area*/
/*----------------------------------------------------*/
@keyframes ripple {
    70% {
        box-shadow: 0 0 0 40px rgba(253, 167, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(253, 167, 0, 0);
    }
}

.rx-contact-section .background_parallax {
    z-index: 2;
    padding: 100px 0px 80px;
}

    .rx-contact-section .background_parallax .background_overlay {
        z-index: 0;
        background-color: rgba(0, 0, 0, 0.7);
    }

.rx-contact-text {
    padding-top: 40px;
    /*padding-left: 140px;*/
}

    .rx-contact-text .rx-contact-icon {
        width: 90px;
        height: 90px;
        margin: auto;
        line-height: 90px;
        padding-top: 12px;
        border-radius: 100%;
        position: relative;
        background-color: #23bcb9;
    }

        .rx-contact-text .rx-contact-icon:before, .rx-contact-text .rx-contact-icon:after {
            position: absolute;
            top: 50%;
            left: 50%;
            width: 90px;
            height: 90px;
            transform: translate(-50%, -50%);
            border-radius: 50%;
            -ms-box-shadow: 0 0 0 0 #23bcb9;
            -o-box-shadow: 0 0 0 0 #23bcb9;
            box-shadow: 0 0 0 0 #23bcb9;
            animation: ripple 3s infinite;
        }

        .rx-contact-text .rx-contact-icon:before {
            animation-delay: 0.9s;
            content: "";
            position: absolute;
        }

        .rx-contact-text .rx-contact-icon:after {
            animation-delay: 0.6s;
            content: "";
            position: absolute;
        }

        .rx-contact-text .rx-contact-icon i {
            color: #fff;
            font-size: 45px;
        }

.rx-contact-text-wrap {
    margin-top: 35px;
}

    .rx-contact-text-wrap h4 {
        color: #fff;
        font-size: 48px;
        font-weight: 700;
        padding-bottom: 35px;
    }

    .rx-contact-text-wrap ul li {
        margin-bottom: 15px;
    }

        .rx-contact-text-wrap ul li i {
            margin-right: 15px;
            color: #23bcb9;
        }

        .rx-contact-text-wrap ul li a {
            color: #d5d5d5;
        }

.rx-contact-form {
    padding: 25px;
    margin-right: 70px;
    background-color: #fff;
}

    .rx-contact-form input,
    .rx-contact-form textarea {
        width: 100%;
        height: 45px;
        margin-bottom: 15px;
        padding-left: 20px;
        border: 2px solid #e4e4e4;
    }

    .rx-contact-form textarea {
        height: 95px;
        padding-top: 10px;
    }

    .rx-contact-form button {
        border: none;
        width: 100%;
        height: 50px;
        font-weight: 700;
        text-transform: uppercase;
        background-color: #23bcb9;
        transition: 0.3s all ease-in-out;
    }

        .rx-contact-form button i {
            margin-right: 8px;
        }

        .rx-contact-form button:hover {
            color: #fff;
            background-color: #000;
        }

/*---------------------------------------------------- */
/*Footer area*/
/*----------------------------------------------------*/
.footer_section {
    padding: 115px 0px 100px;
    background-image: url(../img/law/map2.png);
}

    .footer_section .background_overlay {
        background-color: rgba(51, 51, 51, 0.05);
    }

    .footer_section .footer_widget {
        padding-left: 40px;
    }

    .footer_section .widget_footer_text {
        color: #cdcdcd;
        max-width: 310px;
        line-height: 1.75;
    }

    .footer_section .widget_title {
        margin-bottom: 25px;
    }

    .footer_section .footer_app_btn {
        margin-top: 25px;
    }

        .footer_section .footer_app_btn a {
            display: inline-block;
            padding: 20px 40px;
            color: #ffffff;
            border: 2px solid #494949;
            background-color: #343434;
        }

    .footer_section .practice_list {
        margin-right: -60px;
    }

        .footer_section .practice_list li {
            display: block;
            color: #cdcdcd;
            margin-bottom: 15px;
            position: relative;
            transition: 0.3s all ease-in-out;
        }

            .footer_section .practice_list li:before {
                left: 0;
                top: 10px;
                content: "";
                width: 0px;
                position: absolute;
                transition: 0.3s all ease-in-out;
                border: 1px dashed #23bcb9;
            }

            .footer_section .practice_list li:hover {
                padding-left: 20px;
            }

                .footer_section .practice_list li:hover:before {
                    width: 15px;
                }

    .footer_section .latest-blog-widget .blog-img-content {
        margin-bottom: 20px;
    }

    .footer_section .latest-blog-widget .blog-img {
        width: 70px;
        float: left;
        height: 56px;
        margin-right: 20px;
    }

    .footer_section .latest-blog-widget .blog-text .blog-meta {
        font-size: 14px;
        color: #c5c5c5;
        line-height: 1;
    }

    .footer_section .latest-blog-widget .blog-text h4 {
        font-size: 14px;
        color: #fff;
        line-height: 1.43;
        overflow: hidden;
    }

.footer_copyright {
    padding: 20px 0px;
    background-color: #141921;
    border-bottom: 5px solid #23bcb9;
}

    .footer_copyright .footer_social {
        margin-top: 5px;
    }

        .footer_copyright .footer_social li {
            color: #fff;
            width: 60px;
            height: 60px;
            margin-right: 8px;
            line-height: 60px;
            text-align: center;
            border: 2px solid #393939;
            transition: 0.3s all ease-in-out;
        }

            .footer_copyright .footer_social li:hover {
                color: #fff;
                background-color: #23bcb9;
                border: 2px solid #23bcb9;
            }

    .footer_copyright .copyright_text {
        color: #fff;
        margin-top: 22px;
        font-size: 14px;
    }

        .footer_copyright .copyright_text a {
            font-weight: 700;
        }

    .footer_copyright .footer_logo img {
        width: 80px;
    }

.footer_section_2 {
    overflow: visible;
    margin-top: 200px;
    padding-top: 165px;
    overflow-x: initial;
}

    .footer_section_2 .background_overlay {
        background-color: #343434;
    }

    .footer_section_2 .background_waterprint {
        position: absolute;
        left: 0;
        right: 0;
        top: -50px;
    }

        .footer_section_2 .background_waterprint h2 {
            font-size: 300px;
            color: rgba(255, 255, 255, 0.02);
        }

    .footer_section_2:before {
        top: -85px;
        position: absolute;
        left: 0;
        content: "";
        width: 103%;
        z-index: -1;
        height: 300px;
        transform: rotate(-5deg);
        background-color: #343434;
    }

.footer_section_3,
.footer_section_4 {
    background-image: url(../img/law/map.png);
}

    .footer_section_3 .background_overlay,
    .footer_section_4 .background_overlay {
        background-color: rgb(253 253 253 / 71%);
    }

    .footer_section_3 .widget_title,
    .footer_section_3 .widget_footer_text,
    .footer_section_3 .practice_list li,
    .footer_section_3 .latest-blog-widget .blog-text h4,
    .footer_section_3 .latest-blog-widget .blog-text .blog-meta,
    .footer_section_4 .widget_title,
    .footer_section_4 .widget_footer_text,
    .footer_section_4 .practice_list li,
    .footer_section_4 .latest-blog-widget .blog-text h4,
    .footer_section_4 .latest-blog-widget .blog-text .blog-meta {
        color: #343434;
    }

        .footer_section_3 .latest-blog-widget .blog-text .blog-meta i,
        .footer_section_4 .latest-blog-widget .blog-text .blog-meta i {
            color: #23bcb9;
        }

        .footer_section_3 .practice_list li:hover,
        .footer_section_4 .practice_list li:hover {
            color: #23bcb9;
        }

            .footer_section_3 .practice_list li:hover a,
            .footer_section_4 .practice_list li:hover a {
                transition: none;
            }

.copyright_3 {
    background-color: #f5f5f5;
}

    .copyright_3 .footer_social li {
        background-color: #fff;
        border-color: #fff;
        color: #343434;
    }

        .copyright_3 .footer_social li a {
            transition: none;
        }

    .copyright_3 .copyright_text {
        color: #343434;
    }

.scrollup {
    width: 45px;
    right: 15px;
    z-index: 5;
    height: 45px;
    display: none;
    bottom: 20px;
    position: fixed;
    line-height: 45px;
    background-color: #23bcb9;
}

    .scrollup i {
        color: #fff;
    }

/*Footer style 4 area*/
/*---------------------*/
.footer_section_4 {
    overflow: hidden;
    background-image: url('../images/ft-bg.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

    .footer_section_4 .widget_title {
        color: #000;
        font-size: 20px;
        font-weight: 700;
        position: relative;
        display: inline-block;
    }

        .footer_section_4 .widget_title:after {
            top: 18px;
            width: 42px;
            height: 3px;
            content: "";
            right: -55px;
            position: absolute;
            background-color: #23bcb9;
        }

    .footer_section_4 .latest-blog-widget .blog-text h4 {
        color: #555555;
        font-size: 14px;
        font-weight: 600;
    }

    .footer_section_4 .footer_app_btn a {
        padding: 0;
        border: none;
        background-color: #000;
        width: 125px;
        font-size: 13px;
    }

        .footer_section_4 .footer_app_btn a:before {
            border: 2px solid #000;
        }

        .footer_section_4 .footer_app_btn a:after {
            background-color: #23bcb9;
        }

        .footer_section_4 .footer_app_btn a:hover:before {
            border: 2px solid #23bcb9;
        }

    .footer_section_4 .practice_list li:hover a {
        color: #000;
        font-weight: 700;
    }

    .footer_section_4 .practice_list li::before {
        border: 1px dashed #000;
    }

/*---------------------------------------------------- */
/*Responsive area*/
/*----------------------------------------------------*/
@media screen and (max-width: 1199px) {
    .slider_style_four .owl-nav .owl-prev {
        left: 15px;
    }

    .slider_style_four .owl-nav .owl-next {
        right: 15px;
    }

    .header_style_four .header_main_menu_wrap .rx_main_navigation li {
        margin-left: 35px;
    }
}

@media screen and (max-width: 1024px) {
    .header_style_four .header_main_menu_wrap .rx_main_navigation li {
        margin-left: 30px;
    }

    .header_style_four .header_main_menu_wrap .rx_header_btn {
        width: 135px;
    }
}

@media screen and (max-width: 991px) {
    .header_style_four .header_main_menu_wrap .rx_main_navigation {
        display: none;
    }

    .header_style_four .header_main_menu_wrap .rx_header_btn {
        margin-right: 50px;
    }

    .header_style_four .rx-mobile_menu_button {
        display: block;
    }

    .footer_copyright .footer_social {
        margin-top: 0;
        text-align: center;
        margin-bottom: 20px;
    }

        .footer_copyright .footer_social li {
            height: 50px;
            width: 50px;
            line-height: 50px;
        }

    .footer_copyright .copyright_text {
        text-align: center !important;
    }

    .rx-feature-icon-text {
        margin-bottom: 30px;
    }

    .rx-about-img-wrap {
        margin: 0 auto;
        max-width: 570px;
    }

    .rx-counter-icon-text {
        margin-bottom: 30px;
    }

    .rx-contact-text {
        padding-left: 0;
    }

        .rx-contact-text .rx-contact-icon {
            margin: 0 auto;
        }

    .rx-contact-text-wrap {
        text-align: center;
    }

    .rx-contact-form {
        margin-right: 0;
        margin-top: 30px;
    }

    .footer_section_4 .footer_widget {
        padding-left: 0;
        margin-bottom: 30px;
    }
}

@media screen and (max-width: 930px) {
    .header_style_four .header_top_content .header_top_contact a {
        font-size: 14px;
        margin-left: 5px;
    }

    .slider_content_wrap .rx_slider_text_img_area .rx_slider_side_img {
        display: none;
    }
}

@media screen and (max-width: 835px) {
    .header_style_four .header_top_content .header_top_contact {
        display: none;
    }

    .slider_style_four .owl-nav .owl-next,
    .slider_style_four .owl-nav .owl-prev {
        left: 0;
        right: 0;
        top: auto;
        width: 45px;
        bottom: 30px;
        height: 45px;
        margin: 0 auto;
        line-height: 45px;
        transform: translateY(0);
    }

    .slider_style_four .owl-nav .owl-prev {
        right: 50px;
    }

    .slider_style_four .owl-nav .owl-next {
        left: 50px;
    }

    .rx-feature-section {
        top: 0;
        padding-top: 60px;
    }

    .slider_content_wrap .rx_slider_text {
        padding-left: 0;
    }
}

@media screen and (max-width: 580px) {
    .slider_content_wrap .rx_slider_text h1 {
        font-size: 45px;
    }

    .rx-section-title h2 {
        font-size: 40px;
    }
}

@media screen and (max-width: 480px) {
    .header_style_four .header_main_menu_wrap .brand_logo {
        width: 215px;
    }

    .header_style_four .header_main_menu_wrap .rx_header_btn {
        margin-left: 0;
        margin-top: 8px;
    }

    .header_style_four .header_main_menu_wrap .rx_header_btn {
        width: 105px;
        font-size: 14px;
        font-weight: 500;
        margin-right: 40px;
    }

    .slider_content_wrap .rx_slider_text h1 {
        font-size: 40px;
    }

    .slider_content_wrap .rx_slider_text_img_area {
        padding: 230px 0px 190px;
    }

    .rx-section-title h2 {
        font-size: 30px;
    }

    .rx-about-text {
        padding-left: 0;
        padding-top: 40px;
    }

    .rx-about-section {
        padding: 50px 0px;
    }

    .rx-practice-section,
    .rx-portfolio-secton {
        padding: 50px 0px;
    }

        .rx-practice-section .rx-practice-content {
            padding-top: 30px;
        }

    .rx-counter-icon-text .rx-counter-text span {
        font-size: 35px;
    }

    .rx-counter-icon-text .rx-counter-icon i {
        font-size: 45px;
    }

    .rx-counter-section .background_parallax {
        padding: 50px 0px;
    }

    .rx-testimonial-section,
    .rx-contact-section .background_parallax {
        padding: 50px 0px;
    }

    .rx-testimonial-img-text .rx-testimonial-img {
        width: 100px;
        height: 100px;
        margin-right: 15px;
    }

        .rx-testimonial-img-text .rx-testimonial-img .rx-testi-quote {
            display: none;
        }

    .rx-testimonial-img-text .rx-testimonial-text {
        padding-top: 0;
    }

    .rx-contact-text-wrap h4 {
        font-size: 38px;
    }

    .footer_section_4 {
        padding: 50px 0px;
    }

        .footer_section_4 .widget_title {
            font-size: 24px;
        }
}

@media screen and (max-width: 380px) {
    .slider_content_wrap .rx_slider_text h1 {
        font-size: 36px;
    }

    .rx-section-title h2 {
        font-size: 28px;
    }

    .rx-practice-icon-text {
        padding: 30px;
    }

        .rx-practice-icon-text .rx-practice-text h3 {
            font-size: 20px;
            width: 185px;
        }

        .rx-practice-icon-text .rx-practice-icon {
            right: 15px;
        }

    .rx-practice-icon-text {
        margin-bottom: 20px;
    }

    .slider_content_wrap .rx_slider_text p {
        font-size: 16px;
    }

    .rx-about-award-img .rx-about-award-text span {
        font-size: 16px;
    }
}

@media screen and (max-width: 360px) {
    .slider_content_wrap .rx_slider_text h1 {
        font-size: 30px;
    }
}

@media screen and (max-width: 320px) {
    .header_style_four .header_main_menu_wrap .rx_header_btn {
        display: none;
    }

    .rx-about-award-img .rx-about-award-text {
        padding-left: 15px;
    }

    .rx-practice-icon-text .rx-practice-icon {
        height: 40px;
        width: 40px;
    }

        .rx-practice-icon-text .rx-practice-icon i {
            font-size: 25px;
        }

    .footer_copyright .footer_social li {
        height: 40px;
        width: 40px;
        line-height: 40px;
    }
}
/*---------------------------------------------------- */
.saas_two_section_title .title_tag,
.saas_two_banner_section .s2-banner_content .s2-tilte_tag,
.saas_two_feature_section .s2-feature_text .feature_tag,
.integration_section .integration_text .feature_tag {
    color: #951fb3;
    font-size: 18px;
    font-weight: 500;
    padding: 3px 30px;
    border-radius: 8px;
    display: inline-block;
    background-color: #ede0f4;
}

.saas_two_section_title h2,
.saas_two_banner_section .s2-banner_content h1,
.saas_two_about_section .s2-about_text_icon .s2-about_text h3,
.saas_two_feature_section .s2-feature_text h2,
.integration_section .integration_text h2,
.saas_two_team_section .s2-team_img_text .s2_name_info h3 {
    font-weight: 700;
    color: #010101;
}

    .saas_two_section_title h2 span,
    .saas_two_banner_section .s2-banner_content h1 span,
    .saas_two_about_section .s2-about_text_icon .s2-about_text h3 span,
    .saas_two_feature_section .s2-feature_text h2 span,
    .integration_section .integration_text h2 span,
    .saas_two_team_section .s2-team_img_text .s2_name_info h3 span {
        font-weight: 300;
    }

.saas_btn:before,
.service_read_more a:after,
.saas_two_about_section .s2-about_text_icon .s2-about_text a:after,
.integration_section .integration_text a:after,
.saas_two_banner_section .s2-banner_content .banner_btn a i,
.saas_two_feature_section .s2-feature_text .saas_btn a i,
.s2-pricing_section .s2-pricing_item .s2-pricing_btn a i {
    background: linear-gradient(-45deg, #6b2c94 32%, #fc01fd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.saas_two_about_section .s2-about_text_icon .s2-about_text p,
.saas_two_feature_section .s2-feature_text p,
.integration_section .integration_text p {
    color: #353535;
    font-size: 16px;
    line-height: 1.588;
    padding-bottom: 20px;
}

.service_read_more a,
.saas_two_about_section .s2-about_text_icon .s2-about_text a,
.integration_section .integration_text a {
    color: #0066ff;
    font-size: 15px;
    font-weight: 600;
    position: relative;
    font-family: "Manrope";
}

    .service_read_more a:after,
    .saas_two_about_section .s2-about_text_icon .s2-about_text a:after,
    .integration_section .integration_text a:after {
        top: 0px;
        right: -35px;
        content: "";
        font-size: 20px;
        font-weight: 900;
        position: absolute;
        opacity: 0;
        visibility: hidden;
        transition: 0.3s all ease-in-out;
        font-family: "Font Awesome 5 Free";
    }

    .service_read_more a:before,
    .saas_two_about_section .s2-about_text_icon .s2-about_text a:before,
    .integration_section .integration_text a:before {
        height: 2px;
        width: 0%;
        bottom: -3px;
        content: "";
        position: absolute;
        background-color: #0066ff;
        transition: 0.4s all ease-in-out;
    }

    .service_read_more a:hover:before,
    .saas_two_about_section .s2-about_text_icon .s2-about_text a:hover:before,
    .integration_section .integration_text a:hover:before {
        width: 100%;
    }

    .service_read_more a:hover:after,
    .saas_two_about_section .s2-about_text_icon .s2-about_text a:hover:after,
    .integration_section .integration_text a:hover:after {
        opacity: 1;
        right: -25px;
        transition-delay: 0.3s;
        visibility: visible;
    }

.saas_two_banner_section .s2-banner_content .banner_btn a,
.saas_two_feature_section .s2-feature_text .saas_btn a,
.s2-pricing_section .s2-pricing_item .s2-pricing_btn a {
    transition: 0.3s all ease-in-out;
    position: relative;
    overflow: hidden;
    border-radius: 50px;
    display: inline-block;
}

    .saas_two_banner_section .s2-banner_content .banner_btn a:before,
    .saas_two_feature_section .s2-feature_text .saas_btn a:before,
    .s2-pricing_section .s2-pricing_item .s2-pricing_btn a:before {
        position: absolute;
        content: "";
        width: 0px;
        height: 0px;
        right: 0;
        top: 45px;
        right: 15px;
        box-shadow: 0 0 30px 31px rgba(213, 8, 217, 0.9);
        border-radius: 50%;
        z-index: -1;
        opacity: 0;
        visibility: hidden;
        transition: 0.3s all ease-in-out;
    }

    .saas_two_banner_section .s2-banner_content .banner_btn a:after,
    .saas_two_feature_section .s2-feature_text .saas_btn a:after,
    .s2-pricing_section .s2-pricing_item .s2-pricing_btn a:after {
        height: 100%;
        width: 100%;
        position: absolute;
        content: "";
        top: -100%;
        right: 0;
        z-index: -2;
        transition: 0.3s all ease-in-out;
        background-color: #6c2b95;
    }

    .saas_two_banner_section .s2-banner_content .banner_btn a:hover,
    .saas_two_feature_section .s2-feature_text .saas_btn a:hover,
    .s2-pricing_section .s2-pricing_item .s2-pricing_btn a:hover {
        color: #fff;
    }

        .saas_two_banner_section .s2-banner_content .banner_btn a:hover i,
        .saas_two_feature_section .s2-feature_text .saas_btn a:hover i,
        .s2-pricing_section .s2-pricing_item .s2-pricing_btn a:hover i {
            background: none;
            -webkit-text-fill-color: inherit;
        }

        .saas_two_banner_section .s2-banner_content .banner_btn a:hover:before,
        .saas_two_feature_section .s2-feature_text .saas_btn a:hover:before,
        .s2-pricing_section .s2-pricing_item .s2-pricing_btn a:hover:before {
            opacity: 1;
            right: 25px;
            visibility: visible;
        }

        .saas_two_banner_section .s2-banner_content .banner_btn a:hover:after,
        .saas_two_feature_section .s2-feature_text .saas_btn a:hover:after,
        .s2-pricing_section .s2-pricing_item .s2-pricing_btn a:hover:after {
            top: 0;
        }
/*---------------------------------------------------- */
/*Feature area*/
/*----------------------------------------------------*/
.saas_two_feature_section {
    padding: 55px 0px 65px;
}

    .saas_two_feature_section .s2-feature_text {
        /*max-width: 520px;*/
        padding: 20px 0 0 30px;
    }

        .saas_two_feature_section .s2-feature_text h2 {
            font-size: 40px;
            line-height: 1.25;
            padding: 15px 0px 15px;
        }

        .saas_two_feature_section .s2-feature_text p {
            padding-bottom: 43px;
        }

        .saas_two_feature_section .s2-feature_text .saas_btn a {
            padding: 10px 25px 10px 25px;
        }

            .saas_two_feature_section .s2-feature_text .saas_btn a i {
                font-size: 20px;
                margin-right: 5px;
            }

    .saas_two_feature_section .s2-feature_right {
        padding-left: 35px;
    }

        .saas_two_feature_section .s2-feature_right .s2-feature_list {
            margin-bottom: 10px;
            padding: 22px 32px 20px;
            border-radius: 10px;
            display: inline-block;
            transition: 0.4s all ease-in-out;
            position: relative;
            height: 100%;
            background: #e4f1e9;
        }

            .saas_two_feature_section .s2-feature_right .s2-feature_list:before {
                position: absolute;
                content: "";
                height: 0px;
                width: 5px;
                left: 0;
                top: 50%;
                border-radius: 50px;
                transform: translateY(-50%);
                transition: 0.3s all ease-in-out;
            }

            .saas_two_feature_section .s2-feature_right .s2-feature_list:hover:before {
                height: 60px;
            }

            .saas_two_feature_section .s2-feature_right .s2-feature_list .s2-feature_icon {
                width: 95px;
                float: left;
                height: 95px;
                border-radius: 100%;
                line-height: 105px;
                margin-right: 30px;
            }

                .saas_two_feature_section .s2-feature_right .s2-feature_list .s2-feature_icon:after {
                    left: 0;
                    right: 0;
                    top: 5px;
                    width: 90%;
                    height: 90%;
                    content: "";
                    margin: 0 auto;
                    position: absolute;
                    border: 5px solid #fff;
                    border-radius: 100%;
                }

                .saas_two_feature_section .s2-feature_right .s2-feature_list .s2-feature_icon i,
                .saas_two_feature_section .s2-feature_right .s2-feature_list .s2-feature_icon svg {
                    font-size: 30px;
                }

            .saas_two_feature_section .s2-feature_right .s2-feature_list .s2-feature_text_box {
                max-width: 310px;
                display: inline-block;
            }

                .saas_two_feature_section .s2-feature_right .s2-feature_list .s2-feature_text_box h3 {
                    color: #010101;
                    font-size: 22px;
                    font-weight: 700;
                    padding-bottom: 15px;
                }

            .saas_two_feature_section .s2-feature_right .s2-feature_list:hover {
                margin-left: 30px;
                box-shadow: 0px 3px 43px 0px rgba(0, 0, 0, 0.13);
            }

            .saas_two_feature_section .s2-feature_right .s2-feature_list:nth-child(1) .s2-feature_icon {
                background-color: #c9efef;
            }

                .saas_two_feature_section .s2-feature_right .s2-feature_list:nth-child(1) .s2-feature_icon i {
                    color: #23bcb9;
                }

            .saas_two_feature_section .s2-feature_right .s2-feature_list:nth-child(1):before {
                background-color: #23bcb9;
            }

            .saas_two_feature_section .s2-feature_right .s2-feature_list:nth-child(2) .s2-feature_icon {
                background-color: #e1e1f5;
            }

                .saas_two_feature_section .s2-feature_right .s2-feature_list:nth-child(2) .s2-feature_icon i {
                    color: #6c2b95;
                }

            .saas_two_feature_section .s2-feature_right .s2-feature_list:nth-child(2):before {
                background-color: #6c2b95;
            }

            .saas_two_feature_section .s2-feature_right .s2-feature_list:nth-child(3) .s2-feature_icon {
                background-color: #ebdcf4;
            }

                .saas_two_feature_section .s2-feature_right .s2-feature_list:nth-child(3) .s2-feature_icon i {
                    color: #d912dc;
                }

            .saas_two_feature_section .s2-feature_right .s2-feature_list:nth-child(3):before {
                background-color: #d912dc;
            }

.saasio-breadcurmb-section {
    position: relative;
    z-index: 1;
    background-color: #4a614f;
    background-image: url(../images/page-header.jpg);
    background-attachment: fixed;
    background-size: cover;
    padding: 50px 0px 50px;
    position: relative;
    margin-top: 8em;
}

.overlay-head {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    background-size: cover;
    background: radial-gradient(#ffffff3d 15%, transparent 16%), linear-gradient(45deg, transparent 49%, #ffffff3d 49% 51%, transparent 51%), linear-gradient(-45deg, transparent 49%, #ffffff3d 49% 51%, transparent 51%);
    background-size: 2em 2em;
    background-color: #101010;
    opacity: 0.2;
}

.breadcurmb-title h2 {
    margin: 0;
    color: #fff;
    font-weight: 700;
    font-size: 36px;
    padding-bottom: 20px;
}

.saasio-page-breadcurmb li {
    display: inline-block;
}

    .saasio-page-breadcurmb li a {
        color: #fff;
        margin: 0px 10px;
        position: relative;
    }

        .saasio-page-breadcurmb li a:after {
            top: 2px;
            right: -17px;
            content: '\f105';
            font-weight: 900;
            font-size: 12px;
            position: absolute;
            font-family: "Font Awesome 6 Pro";
        }

    .saasio-page-breadcurmb li:last-child a::after {
        display: none;
    }

.bis-contact-page-content {
    padding: 45px 50px;
    background-color: rgb(255, 255, 255);
    -webkit-box-shadow: 0px 0px 70px 0px rgba(0, 0, 0, 0.06);
    box-shadow: 0px 0px 70px 0px rgba(0, 0, 0, 0.06);
}

.bis-faq-contact-info-title {
    max-width: 440px;
}

    .bis-faq-contact-info-title h3 {
        font-weight: 700;
        font-size: 26px;
        padding-bottom: 20px;
        color: #000000;
    }

.bis-faq-contact-info-wrap {
    padding-top: 10px;
}

.bis-faq-contact-info {
    margin-top: 20px;
}

    .bis-faq-contact-info .info-item-area {
        margin-bottom: 20px;
    }

        .bis-faq-contact-info .info-item-area:last-child {
            margin-bottom: 0;
        }

        .bis-faq-contact-info .info-item-area .inner-icon {
            width: 50px;
            height: 50px;
            line-height: 54px;
            margin-right: 30px;
            border-radius: 30px;
            background: #23bcb9;
            position: absolute;
            top: auto;
            text-align: center;
            left: 0;
            right: auto;
        }

            .bis-faq-contact-info .info-item-area .inner-icon i,
            .bis-faq-contact-info .info-item-area .inner-icon svg {
                color: #fff;
                font-size: 23px;
            }

        .bis-faq-contact-info .info-item-area .inner-text {
            max-width: 410px;
            padding-left: 4em;
            position: relative;
        }

            .bis-faq-contact-info .info-item-area .inner-text h4 {
                font-size: 20px;
                font-weight: 700;
                color: #000000;
                margin-bottom: 0;
                padding-bottom: 5px;
            }

.bis-faq-contact-form-area {
    margin-left: 45px;
}

.bis-faq-contact-form {
    margin-top: 20px;
}

    .bis-faq-contact-form input, .bis-faq-contact-form textarea {
        width: 100%;
        height: 55px;
        border: none;
        color: #7a7a7a;
        font-size: 15px;
        padding-left: 25px;
        margin-bottom: 30px;
        background-color: #efefef;
        border: 1px solid #e3e3e3;
    }

    .bis-faq-contact-form textarea {
        height: 110px;
        padding-top: 15px;
    }

    /*.bis-faq-contact-form button {
        color: #fff;
        border: none;
        font-weight: 700;*/
    /*padding: 18px 20px;*/
    /*background-color: #6c2b95;*/
    /*}*/

    .bis-faq-contact-form button i,
    .bis-faq-contact-form button svg {
        margin-left: 8px;
    }

.sa_blog_grid_section .dia-blog-img-text {
    margin-bottom: 50px;
}

.list2 {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .list2 li {
        margin-bottom: 10px;
        font-size: 16px;
        line-height: 1.6;
    }

        .list2 li i,
        .list2 li svg {
            color: #e53935; /* Red highlight for icon */
            margin-right: 8px;
            font-size: 18px;
        }

    .list2 strong {
        color: #2e7d32; /* Green highlight for important words */
        font-weight: bold;
    }

.news-feed-section {
    padding: 100px 0px;
}

    .news-feed-section .blog-feed-post {
        position: relative;
        border-radius: 9px;
        overflow: hidden;
        margin-bottom: 40px;
        box-shadow: 0px 0px 35px rgba(0,0,0,0.15);
    }

    .news-feed-section .saasio-blog-text {
        padding: 22px 30px 0px 0px;
    }

        .news-feed-section .saasio-blog-text h3 {
            color: #373a5b;
            font-size: 24px;
            font-weight: 700;
            line-height: 1.6;
            
        }

        .news-feed-section .saasio-blog-text p {
            margin-bottom: 0;
            padding-top: 20px;
        }
/*** Start Of blog Section ***/


.news-feed-section {
    padding: 50px 0px;
}

    .news-feed-section .blog-feed-post {
        position: relative;
        border-radius: 9px;
        overflow: hidden;
        margin-bottom: 40px;
        box-shadow: 0px 0px 35px rgba(0,0,0,0.15);
    }

    .news-feed-section .saasio-blog-text {
        padding: 22px 30px 0px 0px;
    }

        .news-feed-section .saasio-blog-text h3 {
            color: #373a5b;
            font-size: 24px;
            font-weight: 700;
            line-height: 1.6;
        }

        .news-feed-section .saasio-blog-text p {
            margin-bottom: 0;
            padding-top: 20px;
        }

.blog-read-more {
    color: #6c2b95;
    display: block;
    font-weight: 700;
    margin-top: 20px;
}

.saasio-post-meta a {
    color: #777a91;
    margin-right: 15px;
}

    .saasio-post-meta a i {
        margin-right: 3px;
        font-size: 15px;
    }

.saasio-pagination {
    padding-top: 30px;
}

    .saasio-pagination a {
        height: 40px;
        width: 40px;
        color: #fff;
        font-weight: 700;
        margin: 0px 5px;
        line-height: 40px;
        display: inline-block;
        background-color: #6c2b95;
        transition: .3s all ease-in-out;
    }

        .saasio-pagination a:hover,
        .saasio-pagination a.active {
            background-color: #cc0fda;
        }

.saasio-blog-sidebar {
    padding-left: 30px;
}

.side-bar-widget {
    margin-bottom: 60px;
}

.saasio-blog-sidebar .widget-title-2 {
    font-size: 24px;
    font-weight: 700;
    padding-bottom: 30px;
}

.side-bar-widget .search-widget input {
    height: 50px;
    width: 100%;
    border: none;
    padding-left: 15px;
    background-color: #e6e6e6;
}

.side-bar-widget .search-widget button {
    top: 0;
    right: 0;
    color: #fff;
    width: 50px;
    border: none;
    height: 50px;
    position: absolute;
    background-color: #6c2b95;
}

.category-widget li a {
    width: 100%;
    display: block;
    
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid #e8d8d8;
}
.event-img{
    margin-bottom:10px;
    display:block;
}

.category-widget li:last-child a {
    border-bottom: 0;
}

.category-widget li a span {
    float: right;
}

.recent-post-img-text {
    width: 100%;
    display: inline-block;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #e8d8d8;
}

    .recent-post-img-text:last-child {
        border-bottom: none;
    }

    .recent-post-img-text .recent-post-img {
        height: 100px;
        width: 100px;
        overflow: hidden;
        margin-right: 15px;
    }

    .recent-post-img-text .recent-post-text h3 {
        font-size: 20px;
        font-weight: 700;
        line-height: 1.5;
        padding-bottom: 5px;
    }

    .recent-post-img-text .recent-post-text .rec-post-meta {
        color: #9e9e9b;
    }
/*******************************************
    IMAGE STYLING
*******************************************/
.slider-wrapper .event-wrapper .item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 10px;
}

/*******************************************
    OWL CAROUSEL MAIN WRAPPER
*******************************************/
.slider-wrapper .owl-carousel.event-wrapper {
    position: relative;
    z-index: 5;
    padding: 0; /* space for arrows */
}

    /*******************************************
    OWL NAVIGATION (FIXED)
*******************************************/
    .slider-wrapper .owl-carousel.event-wrapper .owl-nav {
        position: absolute;
        top: 50%;
        left: 0;
        width: 100%;
        transform: translateY(-50%);
        z-index: 20; /* stays ABOVE images */
        pointer-events: none; /* wrapper non-clickable */
    }

        /* Buttons */
        .slider-wrapper .owl-carousel.event-wrapper .owl-nav button.owl-prev,
        .slider-wrapper .owl-carousel.event-wrapper .owl-nav button.owl-next {
            pointer-events: all; /* buttons clickable */
            position: absolute;
            width: 48px;
            height: 48px;
            background: rgba(0,0,0,0.6) !important;
            border-radius: 50%;
            color: #fff !important;
            display: flex !important;
            justify-content: center;
            align-items: center;
            font-size: 22px !important;
            border: none;
            z-index: 30;
            transition: 0.3s;
        }

        /* Arrows inside vertically centered */
        .slider-wrapper .owl-carousel.event-wrapper .owl-nav .owl-prev {
            left: -20px;
        }

        .slider-wrapper .owl-carousel.event-wrapper .owl-nav .owl-next {
            right: -20px;
        }

        .slider-wrapper .owl-carousel.event-wrapper .owl-nav button:hover {
            background: rgba(0,0,0,0.85) !important;
        }

        /* Hide default icons */
        .slider-wrapper .owl-carousel.event-wrapper .owl-nav button span {
            display: none;
        }

        /* Font Awesome */
        .slider-wrapper .owl-carousel.event-wrapper .owl-nav .owl-prev::before {
            content: "\f104"; /* left */
            font-family: "Font Awesome 6 Pro";
            font-weight: 900;
        }

        .slider-wrapper .owl-carousel.event-wrapper .owl-nav .owl-next::before {
            content: "\f105"; /* right */
            font-family: "Font Awesome 6 Pro";
            font-weight: 900;
        }

    /*******************************************
    DOTS (FIXED TO HORIZONTAL)
*******************************************/
    .slider-wrapper .owl-carousel.event-wrapper .owl-dots {
        text-align: center;
        margin-top: 15px;
        width: 100%;
    }

        .slider-wrapper .owl-carousel.event-wrapper .owl-dots .owl-dot {
            display: inline-block; /* FIX: dots horizontal */
        }

            .slider-wrapper .owl-carousel.event-wrapper .owl-dots .owl-dot span {
                width: 12px;
                height: 12px;
                background: #ccc;
                border-radius: 50%;
                margin: 4px;
                display: inline-block;
                transition: 0.3s ease;
            }

            .slider-wrapper .owl-carousel.event-wrapper .owl-dots .owl-dot.active span {
                background: #333;
                transform: scale(1.3);
            }



.popular-widget a {
    color: #fff;
    font-weight: 600;
    padding: 10px 15px;
    margin: 3px;
    float: left;
    display: inline-block;
    background-color: #6c2b95;
}

.blog-details-img {
    margin-bottom: 40px;
}

.blog-details-text {
    padding-top: 2em;
}

    .blog-details-text h2 {
        color: #373a5b;
        font-size: 32px;
        font-weight: 700;
    }

    .blog-details-text h3 {
        color: #373a5b;
        font-size: 28px;
        font-weight: 700;
        padding-bottom: 10px;
    }

    .blog-details-text article {
        padding: 20px 0px
    }

    .blog-details-text blockquote {
        z-index: 1;
        color: #fff;
        font-weight: 500;
        font-size: 20px;
        padding: 50px;
        border-radius: 4px;
        
        position: relative;
        background-color: #73299a;
    }

        .blog-details-text blockquote:after {
            top: 50%;
            left: 0;
            right: 0;
            z-index: -1;
            font-size: 175px;
            font-weight: 900;
            content: '\f10d';
            text-align: center;
            position: absolute;
            transform: translateY(-50%);
            color: rgb(255 255 255 / 25%);
            font-family: 'Font Awesome 5 Free';
        }

        .blog-details-text blockquote h4 {
            font-size: 18px;
            font-weight: 700;
            padding-top: 15px;
        }

.blog-details-tag {
    margin-top: 40px;
    padding: 10px 0px;
    border: 1px solid #ded7d7;
    border-left: none;
    border-right: none;
}

.blog-feed-tag a {
    margin-left: 8px;
    padding: 10px 10px;
    display: inline-block;
    background-color: #f7f7f7;
    transition: .3s all ease-in-out;
}

.blog-details-tag a:hover {
    color: #fff;
    background-color: #73299a;
}

.blog-feed-share a {
    width: 43px;
    height: 43px;
    line-height: 43px;
    text-align: center;
    display: inline-block;
    background-color: #f7f7f7;
    transition: .3s all ease-in-out;
}

.saasio-comment-field {
    padding-top: 80px;
}

    .saasio-comment-field h3 {
        font-weight: 600;
        font-size: 30px;
    }

.comment-author-img {
    width: 120px;
    height: 120px;
    overflow: hidden;
    margin-right: 20px;
    border-radius: 100%;
}

.comment-list-item {
    margin: 60px 0px;
}

.comment-inner-box {
    padding: 30px;
    margin-bottom: 30px;
    background-color: #f8f8f8;
}

.comment-author-text {
    overflow: hidden;
}

    .comment-author-text p {
        margin-bottom: 0;
        padding: 15px 0px 5px;
    }

    .comment-author-text h4 {
        font-size: 22px;
        font-weight: 700;
        padding-bottom: 10px;
    }

    .comment-author-text span {
        color: #969696;
    }

.comment-reply {
    margin-top: 10px;
    padding: 8px 20px;
    border-radius: 4px;
    display: inline-block;
    color: #fff !important;
    background-color: #73299a;
}

.comment-form {
    margin-top: 40px;
}

    .comment-form input,
    .comment-form textarea {
        width: 100%;
        height: 60px;
        border: none;
        padding-left: 20px;
        margin-bottom: 20px;
        background-color: #f0f0f0;
    }

    .comment-form textarea {
        height: 180px;
        padding-top: 20px;
    }

    .comment-form button {
        border: none;
        color: #fff;
        padding: 15px 30px;
        background-color: #73299a;
    }

@media screen and (max-width: 1024px) {
    .news-feed-section .saasio-blog-text {
        padding: 22px 30px 30px 0px
    }

        .news-feed-section .saasio-blog-text h3 {
            font-size: 20px;
        }

    .recent-post-img-text .recent-post-text h3 {
        font-size: 18px;
    }
}

@media screen and (max-width: 991px) {
    .blog-feed-img {
        margin-bottom: 20px;
    }

    .blog-feed-img-txt {
        padding: 30px;
    }

    .saasio-blog-sidebar {
        padding-left: 0;
    }
}

@media screen and (max-width: 767px) {
    .saasio-blog-sidebar {
        margin-top: 30px;
    }

    .saasio-breadcurmb-section {
        padding: 150px 0px 100px;
    }

    .breadcurmb-title h2 {
        font-size: 30px;
    }

    .blog-feed-share {
        margin-top: 15px;
        float: left !important;
    }

    .comment-inner-box {
        padding: 15px;
    }

    .comment-author-img {
        height: 80px;
        width: 80px;
    }
}
/*==========  Mobile First Method  ==========*/

/* Custom, iPhone Retina */
@media only screen and (min-width : 320px) and (max-width : 479px) {
    .header_style_four .header_top_content .header_top_contact a {
        margin-left: 5px;
        display: block;
    }

    .apbc-service-section {
        padding: 30px 0;
        overflow: hidden;
    }

    .apbc-service-slider .apbc-service-single .apbc-service-content {
        height: 100%;
    }

    .apbc-team-section {
        padding: 10px 0 30px;
        overflow: hidden;
    }

    .apbc-about-section {
        padding: 40px 0;
    }

    .apbc-about-left .apbc-countarea {
        border-style: none;
        border-color: inherit;
        border-width: -10px;
        left: 13px;
    }

        .apbc-about-left .apbc-countarea .apbc-headline {
            margin-right: 15px;
            width: 45px;
        }

    .apbc-video-section .apbc-video-left .apbc-title-area h4 {
        font-size: 25px;
    }

    .apbc-blog-section {
        padding: 40px 0 20px 0;
    }

    .apbc-video-section {
        padding: 40px 0 20px 0 !important;
    }

    .saasio-breadcurmb-section {
        margin-top: 8em;
        padding: 2em 0;
    }
    /*responsive css jasbrij diagnotics*/
    .header_style_four .header_top_content {
        padding: 5px 0px 5px;
        text-align: center;
    }
    .saas_two_feature_section .s2-feature_right {
        padding-left: 0;
    }
    .bis-faq-contact-form-area {
        margin-left: 0;
    }
    .bis-contact-page-content {
        padding: 15px 10px;
    }
    .bis-faq-contact-info .info-item-area .inner-icon {
        left: 15px;
    }
    .slider_content_wrap .rx_slider_text_img_area {
        padding: 180px 0px 140px;
    }

    .rx-feature-section {
        top: 0;
        padding-top: 20px;
    }

    .rx-feature-icon-text {
        padding: 30px 20px;
    }

    .rx-about-section {
        padding: 10px 0px;
    }

    .rx-practice-icon-text .rx-practice-text h3 {
        max-width: 180px !important;
        font-size: 20px;
    }
}
/* Extra Small Devices, Phones */
@media only screen and (min-width : 480px) and (max-width : 765px) {
    .saasio-breadcurmb-section {
        margin-top: 8em;
    }

    .header_style_four .header_top_content .header_top_contact a {
        margin-left: 5px;
        display: block;
    }

    .apbc-service-section {
        padding: 30px 0;
        overflow: hidden;
    }

    .apbc-service-slider .apbc-service-single .apbc-service-content {
        height: 100%;
    }

    .apbc-team-section {
        padding: 10px 0 30px;
        overflow: hidden;
    }

    .apbc-about-section {
        padding: 40px 0;
    }

    .apbc-about-left .apbc-countarea {
        border-style: none;
        border-color: inherit;
        border-width: -10px;
        left: 13px;
    }

        .apbc-about-left .apbc-countarea .apbc-headline {
            margin-right: 15px;
            width: 45px;
        }

    .apbc-video-section .apbc-video-left .apbc-title-area h4 {
        font-size: 25px;
    }

    .apbc-blog-section {
        padding: 40px 0 20px 0;
    }

    .apbc-video-section {
        padding: 40px 0 20px 0 !important;
    }
    /*responsive css jasbrij diagnotics*/
    .header_style_four .header_top_content {
        padding: 5px 0px 5px;
        text-align: center;
    }

    .slider_content_wrap .rx_slider_text_img_area {
        padding: 180px 0px 140px;
    }

    .rx-feature-section {
        top: 0;
        padding-top: 20px;
    }

    .rx-feature-icon-text {
        padding: 30px 20px;
    }

    .rx-about-section {
        padding: 10px 0px;
    }

    .rx-practice-icon-text .rx-practice-text h3 {
        font-size: 22px;
        max-width: 200px !important;
    }
}

/* Small Devices, Tablets */
@media only screen and (min-width : 768px) and (max-width : 992px) {
    .saasio-breadcurmb-section {
        margin-top: 8em;
    }
}

/* Medium Devices, Desktops */
@media only screen and (min-width : 992px) and (max-width : 1200px) {
    .header_style_four .header_main_menu_wrap .brand_logo {
        margin-right: 10px;
        width: 204px;
    }

    .header_style_four .header_main_menu_wrap .rx_main_navigation {
        float: left;
        padding-top: 8px;
    }

        .header_style_four .header_main_menu_wrap .rx_main_navigation li {
            margin-left: 25px;
        }
}
