/********** Template CSS **********/
:root {
    --primary: #0da393;
    --secondary: #5F656F;
    --light: #F5F5F5;
    --dark: #313131;
    --bs-dark: #313131;
    --bs-primary: #0da393;
}

a {
    color: var(--bs-primary);
}

    a:hover {
        color: var(--bs-primary);
    }

.bg-primary {
    background-color: var(--primary) !important;
}

.bg-dark {
    background-color: #404040 !important;
}

.text-primary {
    color: var(--primary) !important;
}

.text-dark {
    color: #2e2e2e !important;
}

.btn-primary {
    color: #000;
    background-color: var(--primary);
    border-color: var(--primary);
}

    .btn-primary:hover {
        color: #000;
        background-color: var(--primary);
        border-color: var(--primary);
    }

    .btn-check:checked + .btn-primary,
    .btn-check:active + .btn-primary,
    .btn-primary:active,
    .btn-primary.active,
    .show > .btn-primary.dropdown-toggle {
        color: #000;
        background-color: var(--primary);
        border-color: var(--primary);
    }

    .btn-check:focus + .btn-primary,
    .btn-primary:focus {
        color: #fff;
        background-color: var(--primary);
        border-color: var(--primary);
        box-shadow: 0 0 0 .25rem rgba(13, 163, 147, 0.46);
    }

    .btn-check:checked + .btn-primary:focus, .btn-check:active + .btn-primary:focus, .btn-primary:active:focus, .btn-primary.active:focus, .show > .btn-primary.dropdown-toggle:focus {
        box-shadow: 0 0 0 .25rem rgba(13, 163, 147, 0.45);
    }

.btn-close:focus {
    box-shadow: 0 0 0 .25rem rgba(13, 163, 147, 0.35);
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

h1,
h2,
.h1,
.h2,
.fw-bold {
    font-weight: 700 !important;
}

h3,
h4,
.h3,
.h4,
.fw-medium {
    font-weight: 600 !important;
}

h5,
h6,
.h5,
.h6,
.fw-semi-bold {
    font-weight: 500 !important;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

    #spinner.show {
        transition: opacity .5s ease-out, visibility 0s linear 0s;
        visibility: visible;
        opacity: 1;
    }


/*** Button ***/
.btn {
    transition: .5s;
    font-weight: 500;
}

.btn-primary,
.btn-outline-primary:hover {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


.topbar-right {
    position: relative;
    background: var(--primary);
}

    .topbar-right::before {
        position: absolute;
        content: "";
        width: 30px;
        height: 100%;
        top: 0;
        left: -15px;
        transform: skewX(-30deg);
        background-color: var(--primary);
    }


/*** Navbar ***/
.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

.navbar .navbar-brand {
    position: relative;
    padding-right: 50px;
    height: 75px;
    display: flex;
    align-items: center;
    background: var(--primary);
}

    .navbar .navbar-brand::after {
        position: absolute;
        content: "";
        width: 50px;
        height: 100%;
        top: 0;
        right: -25px;
        transform: skewX(-30deg);
        background-color: var(--primary);
    }

.navbar .navbar-nav .nav-link {
    margin-right: 35px;
    padding: 20px 0;
    color: var(--primary);
    font-size: 18px;
    font-weight: 500;
    outline: none;
}

    .navbar .navbar-nav .nav-link:hover,
    .navbar .navbar-nav .nav-link.active {
        color: var(--primary);
    }

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    background: linear-gradient(to left, rgba(0, 0, 0, 0.32) 100%, rgba(89, 89, 89, 0.19) 100%);
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3.5rem;
    height: 3.5rem;
    background-color: var(--primary);
    border: 15px solid var(--primary);
    border-radius: 3.5rem;
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
    }

        #header-carousel .carousel-item img {
            position: absolute;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
}

.page-header {
    background: linear-gradient(to right, rgba(2, 36, 91, 1) 0%, rgba(2, 36, 91, 0) 100%), var(--bg-url) center center no-repeat;
    background-size: cover;
}

    .page-header .breadcrumb-item + .breadcrumb-item::before {
        color: var(--light);
    }

    .page-header .breadcrumb-item,
    .page-header .breadcrumb-item a {
        font-size: 18px;
        color: var(--light);
    }


/*** Facts ***/
.facts {
    position: relative;
    margin: 6rem 0;
    background: linear-gradient(135deg, #0f9b8e82, #0da393);
}

    .facts .border {
        border-color: rgba(255, 255, 255, .1) !important;
    }


/* Certificates */
.certificates {
    position: relative;
    margin: 6rem 0;
    background: linear-gradient(135deg, #0f9b8e82, #0da393);
}

    .certificates .certificates-header {
        color: #2e2e2e70;
    }

    .certificates .border {
        border-color: rgba(255, 255, 255, .1) !important;
    }



/*** Features ***/
.btn-play {
    position: absolute;
    top: 50%;
    right: -30px;
    transform: translateY(-50%);
    display: block;
    box-sizing: content-box;
    width: 16px;
    height: 26px;
    border-radius: 100%;
    border: none;
    outline: none !important;
    padding: 18px 20px 20px 28px;
    background: var(--primary);
}

@media (max-width: 992px) {
    .btn-play {
        left: 50%;
        right: auto;
        transform: translate(-50%, -50%);
    }
}

.btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 100%;
    animation: pulse-border 1500ms ease-out infinite;
}

.btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 100%;
    transition: all 200ms;
}

.btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    left: -1px;
    border-left: 16px solid #FFFFFF;
    border-top: 11px solid transparent;
    border-bottom: 11px solid transparent;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(2);
        opacity: 0;
    }
}

.modal-video .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

.modal-video .modal-body {
    position: relative;
    padding: 0px;
}

.modal-video .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: #FFFFFF;
    background: #000000;
    opacity: 1;
}


/*** Service ***/
.service-item {
    position: relative;
    margin: 65px 0 25px 0;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}

    .service-item .service-img {
        position: absolute;
        padding: 12px;
        width: 230px;
        height: 230px;
        top: -65px;
        left: 50%;
        transform: translateX(-50%);
        background: #FFFFFF;
        box-shadow: 0 0 45px rgba(0, 0, 0, .09);
        z-index: 2;
    }

    .service-item .service-detail {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        overflow: hidden;
        z-index: 1;
    }

    .service-item .service-title {
        position: absolute;
        padding: 110px 30px 25px 30px;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        background: #FFFFFF;
        transition: .5s;
    }

    .service-item:hover .service-title {
        top: -100%;
    }

    .service-item .service-text {
        position: absolute;
        overflow: hidden;
        padding: 110px 30px 25px 30px;
        width: 100%;
        height: 100%;
        top: 100%;
        left: 0;
        display: flex;
        align-items: center;
        text-align: center;
        background: rgba(2, 36, 91, .7);
        transition: .5s;
    }

    .service-item:hover .service-text {
        top: 0;
    }

    .service-item .service-text::before {
        position: absolute;
        content: "";
        width: 100%;
        height: 100px;
        top: -100%;
        left: 0;
        transform: skewY(-12deg);
        background: #FFFFFF;
        transition: .5s;
    }

    .service-item:hover .service-text::before {
        top: -55px;
    }

    .service-item .btn {
        position: absolute;
        width: 130px;
        height: 50px;
        left: 50%;
        bottom: -25px;
        transform: translateX(-50%);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--secondary);
        background: #FFFFFF;
        border: none;
        box-shadow: 0 0 45px rgba(0, 0, 0, .09);
        z-index: 2;
    }

        .service-item .btn:hover {
            color: #FFFFFF;
            background: var(--primary);
        }

    .service-item .service-detail h3 {
        font-size: 1.15rem;
        color: #3a3a3a;
    }

    .service-item .service-detail span {
        font-size: 14px;
    }

/*** Project ***/
.product-container {
    background: var(--dark);
}

.project-carousel {
    position: relative;
    background: var(--dark);
}

.project-item {
    position: relative;
    display: block;
    margin: 15px;
    border: 1px solid #555;
    border-radius: .7rem;
}

    .project-item img {
        transition: .5s;
        border-radius: .7rem .7rem 0 0;
    }

    .project-item:hover img {
        margin-top: -10px;
    }

    .project-item .project-title {
        padding: 0 15px;
        width: 100%;
        height: 80px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        background: var(--dark);
        transition: .5s;
        border-radius: 0 0 .7rem .7rem;
    }

        .project-item .project-title h5 {
            color: #cbcbcbd4;
            font-size: 1rem;
        }

    .project-item:hover .project-title {
        background-color: var(--light);
    }

        .project-item:hover .project-title h5 {
            color: var(--dark);
        }

/* .project-item .project-title::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 30px;
    top: -15px;
    left: 0;
    transform: skewY(-5deg);
    background: var(--dark);
    transition: .5s;
} */

.project-carousel .owl-nav {
    position: absolute;
    width: 100%;
    height: 45px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    transition: .5s;
    opacity: 0;
    z-index: 1;
}

.project-carousel:hover .owl-nav {
    opacity: 1;
}

.project-carousel .owl-nav .owl-prev,
.project-carousel .owl-nav .owl-next {
    margin: 0 30px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 45px;
    font-size: 22px;
    transition: .5s;
}

/*--------------------------------------------------------------
	#shop single page
--------------------------------------------------------------*/
/*--------------------------------------------------------------
#11.1	shop-single-section
--------------------------------------------------------------*/
.shop-single-section {
    /*** product slider ***/
    /*** product info ***/
}

    .shop-single-section .shop-single-slider .slider-for {
        text-align: center;
    }

        .shop-single-section .shop-single-slider .slider-for img {
            display: inline-block;
        }

    .shop-single-section .shop-single-slider .slider-nav {
        padding: 0 25px;
        margin-top: 35px;
    }

        .shop-single-section .shop-single-slider .slider-nav > i {
            position: absolute;
            top: 50%;
            left: 0;
            -webkit-transform: translateY(-50%);
            -moz-transform: translateY(-50%);
            -o-transform: translateY(-50%);
            -ms-transform: translateY(-50%);
            transform: translateY(-50%);
            z-index: 100;
        }

            .shop-single-section .shop-single-slider .slider-nav > i:hover {
                cursor: pointer;
            }

        .shop-single-section .shop-single-slider .slider-nav .nav-btn-rt {
            left: auto;
            right: 0;
        }

        .shop-single-section .shop-single-slider .slider-nav .slick-slide {
            text-align: center;
        }

            .shop-single-section .shop-single-slider .slider-nav .slick-slide img {
                display: inline-block;
            }

    .shop-single-section .product-details {
        padding: 30px 30px 93px;
        /*** product option ***/
    }

@media (max-width: 1199px) {
    .shop-single-section .product-details {
        padding: 40px 30px 85px;
    }
}

@media (max-width: 991px) {
    .shop-single-section .product-details {
        margin-top: 45px;
        padding: 40px 30px;
    }
}

@media (max-width: 767px) {
    .shop-single-section .product-details {
        padding: 0;
    }
}

.shop-single-section .product-details h2 {
    font-size: 28px;
    font-size: 1.75rem;
    line-height: 1.4em;
    margin: 0 0 0.33em;
}

@media (max-width: 767px) {
    .shop-single-section .product-details h2 {
        font-size: 22px;
        font-size: 1.375rem;
    }
}

.shop-single-section .product-details .price {
    font-size: 36px;
    font-size: 2.25rem;
    color: #fd5f17;
    margin: 7px 0 14px;
}

@media (max-width: 991px) {
    .shop-single-section .product-details .price {
        font-size: 30px;
        font-size: 1.875rem;
    }
}

@media (max-width: 767px) {
    .shop-single-section .product-details .price {
        font-size: 25px;
        font-size: 1.5625rem;
    }
}

.shop-single-section .product-details .price .old {
    font-size: 24px;
    font-size: 1.5rem;
    font-weight: normal;
    color: #aaaaaa;
    text-decoration: line-through;
    display: inline-block;
    margin-left: 5px;
}

@media (max-width: 991px) {
    .shop-single-section .product-details .price .old {
        font-size: 20px;
        font-size: 1.25rem;
    }
}

@media (max-width: 767px) {
    .shop-single-section .product-details .price .old {
        font-size: 18px;
        font-size: 1.125rem;
    }
}

.shop-single-section .product-details p {
    margin-bottom: 1.3em;
}

    .shop-single-section .product-details p:last-child {
        margin: 0;
    }

.shop-single-section .product-details .product-option {
    margin-top: 45px;
}

    .shop-single-section .product-details .product-option .product-row {
        overflow: hidden;
    }

        .shop-single-section .product-details .product-option .product-row button:after {
            display: none;
        }

        .shop-single-section .product-details .product-option .product-row > div {
            height: 35px;
            display: inline-block;
            float: left;
        }

            .shop-single-section .product-details .product-option .product-row > div + div {
                margin-left: 15px;
            }

            .shop-single-section .product-details .product-option .product-row > div:first-child {
                width: 85px;
            }

            .shop-single-section .product-details .product-option .product-row > div:last-child .theme-btn:hover,
            .shop-single-section .product-details .product-option .product-row > div:last-child .theme-btn-s2:hover,
            .shop-single-section .product-details .product-option .product-row > div:last-child .theme-btn-s3:hover {
                background: #fd5f17;
                border-color: #fd5f17;
                color: #fff;
            }

    .shop-single-section .product-details .product-option .theme-btn,
    .shop-single-section .product-details .product-option .theme-btn-s2,
    .shop-single-section .product-details .product-option .theme-btn-s3 {
        background-color: transparent;
        color: #333;
        font-size: 14px;
        font-size: 0.875rem;
        padding: 0 20px;
        height: 35px;
        line-height: 32px;
        outline: 0;
        border: 2px solid #e6e6e6;
    }

        .shop-single-section .product-details .product-option .theme-btn:hover,
        .shop-single-section .product-details .product-option .theme-btn-s2:hover,
        .shop-single-section .product-details .product-option .theme-btn-s3:hover {
            background-color: #fd5f17;
            color: #fff;
            border-color: #fd5f17;
        }

@media (max-width: 767px) {

    .shop-single-section .product-details .product-option .theme-btn,
    .shop-single-section .product-details .product-option .theme-btn-s2,
    .shop-single-section .product-details .product-option .theme-btn-s3 {
        font-size: 14px;
        font-size: 0.875rem;
    }
}

.shop-single-section .product-details .product-option .theme-btn:before,
.shop-single-section .product-details .product-option .theme-btn-s2:before,
.shop-single-section .product-details .product-option .theme-btn-s3:before {
    display: none;
}

.shop-single-section .product-details .product-option .heart-btn i {
    font-size: 15px;
    font-size: 0.9375rem;
}

.shop-single-section .product-details .product-option .product-row > div:last-child .theme-btn,
.shop-single-section .product-details .product-option .product-row > div:last-child .theme-btn-s2,
.shop-single-section .product-details .product-option .product-row > div:last-child .theme-btn-s3 {
    background-color: #fff;
    font-size: 18px;
    font-size: 1.125rem;
    color: #777777;
    border: 1px solid #e6e6e6;
}

.shop-single-section .product-details #product-count {
    border-radius: 0;
    border: 1px solid #e6e6e6;
}

    .shop-single-section .product-details #product-count:focus {
        -webkit-box-shadow: none;
        box-shadow: none;
        outline: none;
    }

.shop-single-section .product-details .bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-up,
.shop-single-section .product-details .bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-down {
    border-radius: 0;
    border-color: #e6e6e6;
}

    .shop-single-section .product-details .bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-up:hover,
    .shop-single-section .product-details .bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-down:hover {
        background-color: #fd5f17;
        color: #fff;
    }

.shop-single-section .product-info {
    margin-top: 75px;
    /*** tabs ***/
    /*** client rv ***/
    /*** review form ***/
}

    .shop-single-section .product-info h4 {
        font-size: 15px;
        font-size: 0.9375rem;
        margin: 0;
        line-height: 1.7em;
    }

    .shop-single-section .product-info p {
        margin-bottom: 1.3em;
    }

    .shop-single-section .product-info .tab-pane p:last-child {
        margin-bottom: 0;
    }

    .shop-single-section .product-info .nav-tabs {
        border: 0;
    }

@media (max-width: 767px) {
    .shop-single-section .product-info .nav-tabs {
        margin-bottom: 20px;
    }
}

.shop-single-section .product-info .nav-tabs li {
    border: 2px solid #efefef;
    margin-right: 1px;
}

    .shop-single-section .product-info .nav-tabs li.active a {
        border: 0;
        outline: 0;
    }

.shop-single-section .product-info .nav-tabs a {
    font-size: 15px;
    font-size: 0.9375rem;
    font-weight: 500;
    color: #777777;
    border: 0;
    border-radius: 0;
    margin: 0;
    display: block;
    padding: 12px 20px 11px;
}

@media (max-width: 767px) {
    .shop-single-section .product-info .nav-tabs a {
        font-size: 14px;
        font-size: 0.875rem;
        font-weight: normal;
        padding: 10px 10px 8px;
        text-transform: none;
    }
}

.shop-single-section .product-info .nav-tabs a:hover,
.shop-single-section .product-info .nav-tabs .active a {
    background: #fd5f17;
    color: #fff;
}

.shop-single-section .product-info .nav-tabs .active,
.shop-single-section .product-info .nav-tabs li:hover {
    border-color: #fd5f17;
}

.shop-single-section .product-info .tab-content {
    border: 2px solid #efefef;
    padding: 35px 25px;
    margin-top: -1px;
}

@media (max-width: 767px) {
    .shop-single-section .product-info .tab-content {
        border: 0;
        padding: 0;
        margin: 0;
    }
}

.shop-single-section .product-info .client-rv {
    overflow: hidden;
    margin-bottom: 30px;
}

    .shop-single-section .product-info .client-rv:last-child {
        margin-bottom: 0;
    }

    .shop-single-section .product-info .client-rv .client-pic {
        width: 60px;
        float: left;
    }

@media (max-width: 767px) {
    .shop-single-section .product-info .client-rv .client-pic {
        width: 100%;
        float: none;
        margin-bottom: 10px;
    }
}

.shop-single-section .product-info .client-rv .details {
    width: calc(100% - 80px);
    float: right;
}

@media (max-width: 767px) {
    .shop-single-section .product-info .client-rv .details {
        width: 100%;
        float: none;
    }
}

.shop-single-section .product-info .client-rv .name-rating-time {
    border-bottom: 1px solid #e6e6e6;
}

@media (max-width: 767px) {
    .shop-single-section .product-info .client-rv .name-rating-time {
        padding-bottom: 3px;
    }
}

.shop-single-section .product-info .client-rv .name-rating-time > div,
.shop-single-section .product-info .client-rv .name-rating > div {
    display: inline-block;
    font-size: 14px;
    font-size: 0.875rem;
}

@media (max-width: 767px) {

    .shop-single-section .product-info .client-rv .name-rating-time > div,
    .shop-single-section .product-info .client-rv .name-rating > div {
        font-size: 12px;
        font-size: 0.75rem;
        display: block;
    }
}

.shop-single-section .product-info .client-rv .rating {
    font-size: 12px;
    color: #fd5f17;
    padding-left: 12px;
}

@media (max-width: 767px) {
    .shop-single-section .product-info .client-rv .rating {
        padding-left: 0;
        margin: 4px 0 7px;
    }
}

.shop-single-section .product-info .client-rv .name-rating-time .time {
    float: right;
    color: #b3b3b3;
    text-transform: uppercase;
}

@media (max-width: 767px) {
    .shop-single-section .product-info .client-rv .name-rating-time .time {
        float: none;
    }
}

.shop-single-section .product-info .client-rv .review-body {
    padding-top: 12px;
}

@media screen and (min-width: 1200px) {
    .shop-single-section .product-info .review-form-wrapper {
        padding-left: 45px;
    }
}

@media (max-width: 991px) {
    .shop-single-section .product-info .review-form {
        margin-top: 45px;
    }
}

.shop-single-section .product-info .review-form h4 {
    margin-bottom: 1.73em;
}

.shop-single-section .product-info .review-form form input,
.shop-single-section .product-info .review-form form textarea {
    background: #fbfbfb;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    height: 40px;
    border: 2px solid #efefef;
}

    .shop-single-section .product-info .review-form form input:focus,
    .shop-single-section .product-info .review-form form textarea:focus {
        -webkit-box-shadow: none;
        box-shadow: none;
        outline: none;
    }

.shop-single-section .product-info .review-form form textarea {
    height: 130px;
}

.shop-single-section .product-info .review-form form > div {
    margin-bottom: 27px;
}

    .shop-single-section .product-info .review-form form > div:last-child {
        margin-bottom: 0;
    }

.shop-single-section .product-info .review-form form .rating-wrapper > div {
    display: inline-block;
}

@media (max-width: 767px) {
    .shop-single-section .product-info .review-form form .rating-wrapper > div {
        display: block;
        float: none !important;
    }
}

.shop-single-section .product-info .review-form form .rating-wrapper > div:last-child {
    float: right;
}

@media (max-width: 767px) {
    .shop-single-section .product-info .review-form form .rating-wrapper > div:last-child {
        margin-top: 20px;
    }
}

.shop-single-section .product-info .review-form form .rating a {
    font-size: 14px;
    color: #cccccc;
    display: inline-block;
    margin-right: 10px;
}

@media (max-width: 767px) {
    .shop-single-section .product-info .review-form form .rating a {
        font-size: 12px;
        margin-right: 5px;
    }
}

.shop-single-section .product-info .review-form form .rating a:last-child {
    margin: 0;
}

.shop-single-section .product-info .review-form form .rating a:hover {
    color: #fd5f17;
}

.shop-single-section .product-info .review-form form .theme-btn-s4 {
    background-color: transparent;
    color: #908f8f;
    outline: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}

    .shop-single-section .product-info .review-form form .theme-btn-s4:hover {
        background-color: #fd5f17;
        color: #fff;
    }

@media screen and (min-width: 767px) {
    .shop-single-section .product-info .review-form form .theme-btn-s4 {
        font-size: 15px;
        font-size: 0.9375rem;
        padding: 0 20px;
    }
}

.shop-single-section .slider-nav .slick-slide:focus {
    outline: none;
}

.shop-single-section .product-details .product-field {
    border-right: 4px solid #0da393;
    padding: 0 8px;
    margin-bottom: 16px;
}

    .shop-single-section .product-details .product-field .field-title {
        font-weight: bold;
    }

.shop-single-section .product-details h4 {
    color: #5e5e5e;
}

.shop-single-section .product-body h3 {
    font-size: #383838;
    font-weight: 100;
    font-size: 1.2rem;
}

/*# sourceMappingURL=style.css.map */

/*** End Shop Single Page ***/

/*** Team ***/
.team-item .team-social {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: -100%;
    display: flex;
    align-items: center;
    background: var(--primary);
    transition: .5s;
}

.team-item:hover .team-social {
    left: 0;
}


/*** Testimonial ***/
.testimonial-carousel::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

.testimonial-carousel::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

@media (min-width: 768px) {

    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 200px;
    }
}

@media (min-width: 992px) {

    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 300px;
    }
}

.testimonial-carousel .owl-nav {
    position: absolute;
    width: 350px;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
    opacity: 0;
    transition: .5s;
    z-index: 1;
}

.testimonial-carousel:hover .owl-nav {
    width: 300px;
    opacity: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    position: relative;
    color: var(--primary);
    font-size: 45px;
    transition: .5s;
}

    .testimonial-carousel .owl-nav .owl-prev:hover,
    .testimonial-carousel .owl-nav .owl-next:hover {
        color: var(--dark);
    }

.testimonial-carousel .testimonial-img img {
    width: 100px;
    height: 100px;
}

.testimonial-carousel .testimonial-img .btn-square {
    position: absolute;
    bottom: -19px;
    left: 50%;
    transform: translateX(-50%);
}

.testimonial-carousel .owl-item .testimonial-text {
    margin-bottom: 30px;
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    transform: scale(.8);
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-text {
    transform: scale(1);
}

.testimonial-carousel .owl-item {
    top: 5px !important;
}


/*** Footer ***/

.footer {
    color: #B0B9AE;
    background-image: url("../img/footer.jpg");
    visibility: visible;
    animation-delay: 0.1s;
    animation-name: fadeIn;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-top: 1px solid;
}

@media (max-width: 768px) {
    .footer {
        background-position: 66%;
    }
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: right;
    color: #B0B9AE;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

    /*    .footer .btn.btn-link::after {
        position: relative;
        content: "\f104";
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        margin-right: 10px;
    }*/

    .footer .btn.btn-link i {
        position: relative;
        margin-right: 10px;
    }

    .footer .btn.btn-link:hover {
        color: var(--light);
        letter-spacing: 1px;
        box-shadow: none;
    }

.copyright {
    color: #B0B9AE;
    border-top: 1px solid rgba(255, 255, 255, .1);
}

/* Cmmon styles */
.scroll-adjust {
    scroll-margin-top: 75px;
}

.text-shadow {
    text-shadow: 2px 3px 4px #333;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
    color: var(--dark);
}

    /* End common styles */

    /* About */
    h1.about-title {
        font-size: 1.7rem;
        font-weight: 300;
        line-height: 1.2;
    }

/* End About */

/* RTL */

.text-start {
    text-align: right !important;
}

.text-end {
    text-align: left !important;
}

.text-justify {
    text-align: justify;
}

/* End RTL */

/* Rounded */
.rounded-0 {
    border-radius: 0 !important;
}

.rounded-1 {
    border-radius: 0.2rem !important;
    /* حدود 3.2px */
}

.rounded-2 {
    border-radius: 0.25rem !important;
    /* حدود 4px */
}

.rounded-3 {
    border-radius: 0.3rem !important;
    /* حدود 4.8px */
}

.rounded-4 {
    border-radius: 0.375rem !important;
    /* حدود 6px */
}

.rounded-5 {
    border-radius: 0.5rem !important;
    /* حدود 8px */
}

/* End Rounded */

/*--------------------------------------------------------------
	#blog single page
--------------------------------------------------------------*/
/*--------------------------------------------------------------
#8.1	blog-single-section
--------------------------------------------------------------*/
.blog-single-section {
    /*** tag-share ***/
    /*** author-box ***/
    /*** more-posts ***/
    /*** comments area ***/
    /*** comment-respond ***/
}

    .blog-single-section .entry-meta {
        list-style: none;
        overflow: hidden;
        margin: 35px 0;
    }

@media (max-width: 767px) {
    .blog-single-section .entry-meta {
        margin: 25px 0;
    }
}

.blog-single-section .entry-meta li {
    font-weight: 500;
    font-size: 14px;
    font-size: 0.875rem;
    float: left;
}

@media (max-width: 767px) {
    .blog-single-section .entry-meta li {
        font-size: 12px;
        font-size: 0.75rem;
    }
}

@media (max-width: 600px) {
    .blog-single-section .entry-meta li {
        float: none;
        display: block;
        margin-bottom: 5px;
    }
}

.blog-single-section .entry-meta li i {
    font-size: 16px;
    font-size: 1rem;
    display: inline-block;
    padding-right: 5px;
}

@media (max-width: 767px) {
    .blog-single-section .entry-meta li i {
        font-size: 12px;
        font-size: 0.75rem;
    }
}

.blog-single-section .entry-meta > li + li {
    margin-left: 20px;
    padding-left: 20px;
    position: relative;
}

@media (max-width: 600px) {
    .blog-single-section .entry-meta > li + li {
        margin-left: 0;
        padding-left: 0;
    }
}

.blog-single-section .entry-meta li a {
    color: #636893;
}

    .blog-single-section .entry-meta li a:hover {
        color: var(--primary);
    }

.blog-single-section .entry-meta li:last-child i {
    position: relative;
    top: 3px;
}

.blog-single-section .post h2 {
    font-size: 30px;
    font-size: 1.875rem;
    margin: -0.22em 0 0.7em;
    line-height: 1.3em;
}

@media (max-width: 991px) {
    .blog-single-section .post h2 {
        font-size: 30px;
        font-size: 1.875rem;
    }
}

@media (max-width: 767px) {
    .blog-single-section .post h2 {
        font-size: 25px;
        font-size: 1.5625rem;
    }
}

.blog-single-section .post p {
    margin-bottom: 1.5em;
}

.blog-single-section .post h3 {
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 1.3em;
    margin: 1.8em 0 1em;
}

@media (max-width: 991px) {
    .blog-single-section .post h3 {
        font-size: 22px;
        font-size: 1.375rem;
    }
}

@media (max-width: 767px) {
    .blog-single-section .post h3 {
        font-size: 20px;
        font-size: 1.25rem;
    }
}

.blog-single-section .post blockquote {
    background-color: #fd5f17;
    color: #fff;
    line-height: 1.6em;
    padding: 120px 45px 50px;
    margin-top: 60px;
    border: 0;
    text-align: center;
    position: relative;
}

@media (max-width: 767px) {
    .blog-single-section .post blockquote {
        padding: 55px 25px;
    }
}

.blog-single-section .post blockquote:before {
    font-family: "Flaticon";
    content: "\f105";
    font-size: 60px;
    font-size: 3.75rem;
    color: rgba(255, 255, 255, 0.5);
    position: absolute;
    left: 50%;
    top: 50px;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

@media (max-width: 767px) {
    .blog-single-section .post blockquote:before {
        display: none;
    }
}

.blog-single-section .post blockquote .quoter {
    font-size: 14px;
    font-size: 0.875rem;
    display: block;
    margin-top: 15px;
}

.blog-single-section .tag-share {
    border-top: 1px solid #e6f0fb;
    border-bottom: 1px solid #e6f0fb;
    margin: 75px 0 0;
    padding: 30px 0;
    color: #131e4a;
}

    .blog-single-section .tag-share ul {
        list-style: none;
        display: inline-block;
        overflow: hidden;
    }

        .blog-single-section .tag-share ul li {
            float: left;
        }

@media (max-width: 767px) {
    .blog-single-section .tag-share ul li {
        margin: 2px;
    }
}

.blog-single-section .tag-share ul > li + li {
    margin-left: 10px;
}

@media (max-width: 767px) {
    .blog-single-section .tag-share ul > li + li {
        margin: 2px;
    }
}

.blog-single-section .tag-share .tag {
    float: left;
}

    .blog-single-section .tag-share .tag > span {
        color: #131e4a;
        font-weight: bold;
        display: inline-block;
        padding-right: 8px;
    }

    .blog-single-section .tag-share .tag ul {
        list-style: none;
        position: relative;
        top: 5px;
    }

    .blog-single-section .tag-share .tag li {
        position: relative;
    }

        .blog-single-section .tag-share .tag li:after {
            content: ",";
            position: absolute;
            right: -4px;
            bottom: 0;
        }

    .blog-single-section .tag-share .tag a {
        font-size: 14px;
        font-size: 0.875rem;
        color: #131e4a;
    }

@media (max-width: 767px) {
    .blog-single-section .tag-share .tag a {
        font-size: 13px;
        font-size: 0.8125rem;
    }
}

.blog-single-section .tag-share .tag a:hover {
    color: #fd5f17;
}

.blog-single-section .tag-share .share {
    float: right;
    position: relative;
    top: -15px;
}

    .blog-single-section .tag-share .share > span {
        color: #131e4a;
        font-weight: 600;
        display: inline-block;
        padding-right: 8px;
    }

    .blog-single-section .tag-share .share ul {
        position: relative;
        top: 15px;
    }

        .blog-single-section .tag-share .share ul > li + li {
            margin-left: 10px;
        }

@media (max-width: 767px) {
    .blog-single-section .tag-share .share ul > li + li {
        margin-left: 8px;
    }
}

@media (max-width: 767px) {
    .blog-single-section .tag-share .share ul > li {
        margin: 5px;
    }
}

.blog-single-section .tag-share .share a {
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    border: 1px solid #eae6e6;
    border-radius: 50%;
    display: inline-block;
    font-size: 14px;
    font-size: 0.875rem;
    color: #627381;
}

@media (max-width: 767px) {
    .blog-single-section .tag-share .share a {
        font-size: 13px;
        font-size: 0.8125rem;
    }
}

.blog-single-section .tag-share .share a:hover {
    background: #fd5f17;
    border-color: #fd5f17;
    color: #fff !important;
}

.blog-single-section .tag-share .share ul > li:first-child a {
    color: #3c5ba4;
}

.blog-single-section .tag-share .share ul > li:nth-child(2) a {
    color: #47a0d9;
}

.blog-single-section .tag-share .share ul > li:nth-child(3) a {
    color: #0073b1;
}

.blog-single-section .tag-share .share ul > li:nth-child(4) a {
    color: #933f94;
}

.blog-single-section .author-box {
    padding: 35px 40px 25px;
    margin: 70px 0;
    border: 2px solid #f4f4f4;
}

@media (max-width: 991px) {
    .blog-single-section .author-box {
        padding: 35px 40px;
    }
}

@media (max-width: 767px) {
    .blog-single-section .author-box {
        padding: 25px;
    }
}

.blog-single-section .author-box .author-avatar {
    float: left;
}

@media (max-width: 767px) {
    .blog-single-section .author-box .author-avatar {
        float: none;
    }
}

.blog-single-section .author-box .author-avatar img {
    border-radius: 50%;
}

.blog-single-section .author-box .author-content {
    display: block;
    overflow: hidden;
    padding-left: 25px;
}

@media (max-width: 767px) {
    .blog-single-section .author-box .author-content {
        padding: 0;
        margin: 15px 0 0 0;
    }
}

.blog-single-section .author-box .author-content p {
    margin-bottom: 20px;
}

.blog-single-section .author-box .author-name {
    font-size: 16px;
    font-size: 1rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 10px;
    color: #131e4a;
}

.blog-single-section .author-box .social-link {
    display: inline-block;
    list-style: none;
}

    .blog-single-section .author-box .social-link li {
        float: left;
        margin-right: 12px;
    }

    .blog-single-section .author-box .social-link a {
        display: block;
        font-size: 13px;
        font-size: 0.8125rem;
        color: #131e4a;
    }

        .blog-single-section .author-box .social-link a:hover {
            color: #fd5f17;
        }

.blog-single-section .more-posts {
    overflow: hidden;
    border: 2px solid #f4f4f4;
    padding: 0 25px;
}

    .blog-single-section .more-posts > div {
        width: 50%;
        float: left;
    }

@media (max-width: 767px) {
    .blog-single-section .more-posts > div {
        width: 100%;
        float: none;
    }
}

.blog-single-section .more-posts > div > a {
    display: inline-block;
}

.blog-single-section .more-posts .previous-post,
.blog-single-section .more-posts .next-post {
    padding: 40px 0;
}

@media (max-width: 767px) {

    .blog-single-section .more-posts .previous-post,
    .blog-single-section .more-posts .next-post {
        padding: 25px 15px !important;
    }
}

.blog-single-section .more-posts .next-post {
    text-align: right;
    border-left: 1px solid #f4f4f4;
    padding-left: 15px;
    padding-right: 5px;
}

@media (max-width: 767px) {
    .blog-single-section .more-posts .next-post {
        border-left: 0;
        text-align: left;
        border-top: 1px solid #dae9f9;
    }
}

.blog-single-section .more-posts .next-post .post-control-link {
    padding-right: 25px;
    position: relative;
}

@media (max-width: 767px) {
    .blog-single-section .more-posts .next-post .post-control-link {
        padding-right: 0;
    }
}

.blog-single-section .more-posts .next-post .post-control-link:before {
    font-family: "Flaticon";
    content: "\f104";
    position: absolute;
    right: 0;
    top: 0;
}

@media (max-width: 767px) {
    .blog-single-section .more-posts .next-post .post-control-link:before {
        display: none;
    }
}

.blog-single-section .more-posts .previous-post {
    padding-right: 15px;
    padding-left: 5px;
}

    .blog-single-section .more-posts .previous-post .post-control-link {
        padding-left: 25px;
        position: relative;
    }

@media (max-width: 767px) {
    .blog-single-section .more-posts .previous-post .post-control-link {
        padding-left: 0;
    }
}

.blog-single-section .more-posts .previous-post .post-control-link:before {
    font-family: "Flaticon";
    content: "\f103";
    position: absolute;
    left: 0;
    top: 0;
}

@media (max-width: 767px) {
    .blog-single-section .more-posts .previous-post .post-control-link:before {
        display: none;
    }
}

.blog-single-section .more-posts .previous-post > a > span,
.blog-single-section .more-posts .next-post > a > span {
    display: block;
}

.blog-single-section .more-posts .post-control-link {
    font-size: 14px;
    font-size: 0.875rem;
    color: #777777;
}

.blog-single-section .more-posts .post-name {
    font-size: 17px;
    font-size: 1.0625rem;
    color: #131e4a;
    margin: 0.7em 0 0;
    font-weight: 600;
}

@media (max-width: 991px) {
    .blog-single-section .more-posts .post-name {
        font-size: 18px;
        font-size: 1.125rem;
    }
}

.blog-single-section .more-posts a:hover .post-control-link {
    color: #fd5f17;
}

.blog-single-section .comments-area {
    margin-top: 70px;
}

    .blog-single-section .comments-area .comments {
        border: 2px solid #f4f4f4;
    }

    .blog-single-section .comments-area li > div {
        border-bottom: 1px solid #f4f4f4;
        padding: 35px;
    }

@media (max-width: 991px) {
    .blog-single-section .comments-area li > div {
        padding: 35px 25px;
    }
}

.blog-single-section .comments-area ol {
    list-style-type: none;
    padding-left: 0;
}

    .blog-single-section .comments-area ol ul {
        padding-left: 30px;
        list-style-type: none;
    }

    .blog-single-section .comments-area ol > li:last-child div {
        border-bottom: 0;
    }

.blog-single-section .comments-area .comments-title {
    font-size: 22px;
    font-size: 1.375rem;
    font-weight: 600;
    margin: 0 0 1.5em;
}

@media (max-width: 991px) {
    .blog-single-section .comments-area .comments-title {
        font-size: 20px;
        font-size: 1.25rem;
    }
}

.blog-single-section .comments-area li > div {
    position: relative;
}

.blog-single-section .comments-area .comment-theme {
    position: absolute;
    left: 35px;
}

@media (max-width: 767px) {
    .blog-single-section .comments-area .comment-theme {
        position: static;
    }
}

.blog-single-section .comments-area .comment-theme img {
    border-radius: 50%;
}

.blog-single-section .comments-area .comment-main-area {
    padding-left: 100px;
}

@media (max-width: 767px) {
    .blog-single-section .comments-area .comment-main-area {
        padding-left: 0;
        margin-top: 25px;
    }
}

.blog-single-section .comments-area .comment-main-area p {
    margin-bottom: 20px;
}

.blog-single-section .comments-area .comments-meta h4 {
    font-size: 16px;
    font-size: 1rem;
    color: #131e4a;
    font-weight: bold;
    margin: 0 0 1em;
}

    .blog-single-section .comments-area .comments-meta h4 span {
        font-size: 13px;
        font-size: 0.8125rem;
        color: #777777;
        font-weight: normal;
        font-style: italic;
        text-transform: none;
        display: inline-block;
        padding-left: 5px;
    }

@media (max-width: 767px) {
    .blog-single-section .comments-area .comments-meta h4 span {
        padding-left: 0;
    }
}

.blog-single-section .comments-area .comment-reply-link {
    background: #fe9363;
    font-size: 13px;
    font-size: 0.8125rem;
    width: 80px;
    height: 25px;
    line-height: 25px;
    font-weight: 600;
    color: #fff;
    text-align: center;
    border-radius: 50px;
    display: inline-block;
}

    .blog-single-section .comments-area .comment-reply-link:hover {
        background-color: #fd5f17;
    }

.blog-single-section .comment-respond {
    margin-top: 70px;
}

    .blog-single-section .comment-respond .comment-reply-title {
        font-size: 22px;
        font-size: 1.375rem;
        margin: 0 0 1.5em;
    }

@media (max-width: 991px) {
    .blog-single-section .comment-respond .comment-reply-title {
        font-size: 20px;
        font-size: 1.25rem;
    }
}

.blog-single-section .comment-respond form input,
.blog-single-section .comment-respond form textarea {
    background-color: #fff;
    width: 100%;
    height: 50px;
    border: 2px solid #f4f4f4;
    padding: 6px 15px;
    margin-bottom: 15px;
    outline: 0;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    -ms-transition: all 0.3s;
    transition: all 0.3s;
}

    .blog-single-section .comment-respond form input:focus,
    .blog-single-section .comment-respond form textarea:focus {
        -webkit-box-shadow: none;
        box-shadow: none;
        border-color: #fd5f17;
    }

@media (max-width: 991px) {

    .blog-single-section .comment-respond form input,
    .blog-single-section .comment-respond form textarea {
        height: 40px;
    }
}

.blog-single-section .comment-respond form textarea {
    height: 220px;
    padding: 15px;
}

@media (max-width: 991px) {
    .blog-single-section .comment-respond form textarea {
        height: 150px;
    }
}

.blog-single-section .comment-respond .form-inputs {
    overflow: hidden;
}

    .blog-single-section .comment-respond .form-inputs > input:nth-child(2) {
        width: 49%;
        float: left;
    }

@media (max-width: 767px) {
    .blog-single-section .comment-respond .form-inputs > input:nth-child(2) {
        width: 100%;
        float: none;
    }
}

.blog-single-section .comment-respond .form-inputs > input:nth-child(3) {
    width: 49%;
    float: right;
}

@media (max-width: 767px) {
    .blog-single-section .comment-respond .form-inputs > input:nth-child(3) {
        width: 100%;
        float: none;
    }
}

.blog-single-section .comment-respond .form-submit input {
    max-width: 180px;
    background-color: #fd5f17;
    color: #fff;
    margin-bottom: 0;
    border: 0;
    outline: 0;
    text-transform: capitalize;
    font-weight: bold;
    border-radius: 50px;
}

    .blog-single-section .comment-respond .form-submit input:hover {
        background-color: #131e4a;
    }

@media screen and (min-width: 1200px) {
    .blog-single-left-sidebar-section .blog-sidebar {
        padding-right: 45px;
        padding-left: 0;
    }
}

/*------------------------------------
	blog sidebar
------------------------------------*/
.blog-sidebar {
    /*** search-widget ***/
    /*** about-widget ***/
    /*** category-widget ***/
    /*** recent-post-widget ***/
    /*** tag-widget ***/
}

@media screen and (min-width: 992px) {
    .blog-sidebar {
        padding-left: 45px;
    }
}

@media (max-width: 991px) {
    .blog-sidebar {
        margin-top: 80px;
        max-width: 400px;
    }
}

@media (max-width: 767px) {
    .blog-sidebar {
        margin-top: 60px;
        max-width: 400px;
    }
}

.blog-sidebar .widget {
    padding: 35px 28px;
    border-radius: 0;
    border: 2px solid #f4f4f4;
}

    .blog-sidebar .widget h3 {
        font-size: 18px;
        font-size: 1.125rem;
        margin: 0 0 1.3em;
        position: relative;
        text-transform: capitalize;
    }

        .blog-sidebar .widget h3:before {
            content: "";
            background-color: var(--primary);
            width: 4px;
            height: 16px;
            position: absolute;
            left: -29px;
            top: 1px;
        }

.blog-sidebar > .widget + .widget {
    margin-top: 65px;
}

.blog-sidebar .search-widget form div {
    position: relative;
}

.blog-sidebar .search-widget input {
    background-color: #f8f8f8;
    height: 50px;
    font-size: 16px;
    font-size: 1rem;
    padding: 6px 50px 6px 20px;
    border: 0;
    border-radius: 5px;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    -ms-transition: all 0.3s;
    transition: all 0.3s;
}

    .blog-sidebar .search-widget input:focus {
        background-color: rgb(23 253 197 / 10%);
    }

.blog-sidebar .search-widget form button {
    background: transparent;
    font-size: 20px;
    font-size: 1.25rem;
    color: var(--primary);
    border: 0;
    outline: 0;
    position: absolute;
    right: 10px;
    top: 55%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.blog-sidebar .about-widget {
    text-align: center;
}

    .blog-sidebar .about-widget .img-holder {
        margin-bottom: 25px;
    }

        .blog-sidebar .about-widget .img-holder img {
            border-radius: 50%;
        }

    .blog-sidebar .about-widget p {
        font-size: 15px;
        font-size: 0.9375rem;
        margin-bottom: 1.2em;
    }

    .blog-sidebar .about-widget a {
        font-size: 14px;
        font-size: 0.875rem;
        font-weight: bold;
        color: #131e4a;
        text-decoration: underline;
    }

        .blog-sidebar .about-widget a:hover {
            color: #fd5f17;
        }

.blog-sidebar .category-widget ul {
    list-style: none;
}

    .blog-sidebar .category-widget ul li {
        font-size: 15px;
        font-size: 0.9375rem;
        position: relative;
    }

@media (max-width: 767px) {
    .blog-sidebar .category-widget ul li {
        font-size: 14px;
        font-size: 0.875rem;
    }
}

.blog-sidebar .category-widget ul li span {
    position: absolute;
    right: 0;
}

.blog-sidebar .category-widget ul > li + li {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #f3f2f2;
}

.blog-sidebar .category-widget ul a {
    display: block;
    color: #777777;
    padding-left: 25px;
    position: relative;
}

    .blog-sidebar .category-widget ul a:before {
        font-family: "Themify";
        content: "\e628";
        position: absolute;
        left: 0;
        top: 2px;
        font-size: 11px;
    }

    .blog-sidebar .category-widget ul a:hover,
    .blog-sidebar .category-widget ul li:hover:before {
        color: #fd5f17;
    }

.blog-sidebar .recent-post-widget .post {
    overflow: hidden;
}

.blog-sidebar .recent-post-widget .posts > .post + .post {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #f3f2f2;
}

.blog-sidebar .recent-post-widget .post .img-holder {
    width: 68px;
    float: left;
}

    .blog-sidebar .recent-post-widget .post .img-holder img {
        width: 100%;
        border-radius: 0;
    }

.blog-sidebar .recent-post-widget .post .details {
    width: calc(100% - 68px);
    float: left;
    padding-left: 20px;
}

.blog-sidebar .recent-post-widget .post h4 {
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 1.3em;
    margin: 0 0 0.3em;
}

@media (max-width: 1199px) {
    .blog-sidebar .recent-post-widget .post h4 {
        margin: 0;
    }
}

.blog-sidebar .recent-post-widget .post h4 a {
    display: inline-block;
    color: #131e4a;
}

    .blog-sidebar .recent-post-widget .post h4 a:hover {
        color: var(--primary);
    }

.blog-sidebar .recent-post-widget .post .details .date {
    font-size: 13px;
    font-size: 0.8125rem;
    color: #777777;
}

    .blog-sidebar .recent-post-widget .post .details .date i {
        display: inline-block;
        padding-right: 7px;
    }

.blog-sidebar .tag-widget ul {
    overflow: hidden;
    list-style: none;
}

    .blog-sidebar .tag-widget ul li {
        float: left;
        margin: 0 8px 8px 0;
    }

        .blog-sidebar .tag-widget ul li a {
            font-size: 13px;
            font-size: 0.8125rem;
            display: inline-block;
            padding: 5px 14px;
            color: #777777;
            border: 2px solid #efefef;
            border-radius: 0;
        }

            .blog-sidebar .tag-widget ul li a:hover {
                background: var(--primary);
                color: #fff;
            }

/**** pagination ****/
.pagination-wrapper {
    text-align: center;
    margin-top: 60px;
}

@media (max-width: 991px) {
    .pagination-wrapper {
        text-align: left;
        margin-top: 40px;
    }
}

.pagination-wrapper .pg-pagination {
    display: inline-block;
    overflow: hidden;
    list-style-type: none;
    text-align: center;
}

    .pagination-wrapper .pg-pagination li {
        float: left;
        margin-right: 10px;
    }

@media (max-width: 767px) {
    .pagination-wrapper .pg-pagination li {
        margin-right: 5px;
    }
}

.pagination-wrapper .pg-pagination li:last-child {
    margin-right: 0;
}

.pagination-wrapper .pg-pagination li a {
    background-color: transparent;
    width: 50px;
    height: 50px;
    line-height: 47px;
    font-size: 16px;
    font-size: 1rem;
    font-weight: bold;
    color: #a9b8c4;
    border: 2px solid #c9cfd4;
    display: block;
    border-radius: 0;
}

@media (max-width: 991px) {
    .pagination-wrapper .pg-pagination li a {
        width: 40px;
        height: 40px;
        line-height: 37px;
        font-size: 15px;
        font-size: 0.9375rem;
    }
}

.pagination-wrapper .pg-pagination .active a,
.pagination-wrapper .pg-pagination li a:hover {
    background: #fd5f17;
    border-color: #fd5f17;
    color: #fff;
}

.pagination-wrapper .pg-pagination .fi:before {
    font-size: 15px;
    font-size: 0.9375rem;
}

.pagination-wrapper-left {
    text-align: left;
}

.pagination-wrapper-right {
    text-align: right;
}

@media screen and (min-width: 1200px) {
    .pagination-wrapper-right {
        padding-right: 50px;
    }
}

@media (max-width: 991px) {
    .pagination-wrapper-right {
        margin-top: 45px;
        text-align: left;
    }
}

.theme-accordion-s1 {
    margin-bottom: 0;
}

    .theme-accordion-s1 .panel-default {
        background: transparent;
        border: 0;
        border-radius: 0;
        -webkit-box-shadow: none;
        box-shadow: none;
    }

    .theme-accordion-s1 .panel-heading {
        background-color: transparent;
        padding: 0;
        border-radius: 0;
    }

    .theme-accordion-s1 .panel + .panel {
        margin-top: 15px;
    }

    .theme-accordion-s1 .panel-heading a {
        background: #fd5f17;
        font-size: 16px;
        font-size: 1rem;
        font-weight: 600;
        color: #fff;
        display: block;
        padding: 18px 25px;
        position: relative;
    }

@media (max-width: 991px) {
    .theme-accordion-s1 .panel-heading a {
        font-size: 15px;
        font-size: 0.9375rem;
        padding: 15px 25px;
    }
}

@media (max-width: 767px) {
    .theme-accordion-s1 .panel-heading a {
        padding: 12px 15px;
    }
}

.theme-accordion-s1 .panel-heading a:before {
    font-family: "themify";
    content: "\e64b";
    font-size: 15px;
    font-size: 0.9375rem;
    position: absolute;
    right: 25px;
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    -ms-transition: all 0.3s;
    transition: all 0.3s;
}

@media (max-width: 991px) {
    .theme-accordion-s1 .panel-heading a:before {
        font-size: 18px;
        font-size: 1.125rem;
        right: 20px;
    }
}

.theme-accordion-s1 .panel-heading a:focus {
    text-decoration: none;
}

.theme-accordion-s1 .panel-heading .collapsed {
    background-color: #fff;
    color: #131e4a;
    -webkit-box-shadow: 0px 5px 15px 0px rgba(68, 68, 68, 0.1);
    box-shadow: 0px 5px 15px 0px rgba(68, 68, 68, 0.1);
}

    .theme-accordion-s1 .panel-heading .collapsed:before {
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        transform: rotate(0);
    }

.theme-accordion-s1 .panel-heading + .panel-collapse > .panel-body {
    background-color: #fff;
    border: 0;
    padding: 40px 25px 15px;
    -webkit-box-shadow: 0px 5px 15px 0px rgba(68, 68, 68, 0.1);
    box-shadow: 0px 5px 15px 0px rgba(68, 68, 68, 0.1);
}

@media (max-width: 991px) {
    .theme-accordion-s1 .panel-heading + .panel-collapse > .panel-body {
        padding: 20px 25px 10px;
        font-size: 15px;
        font-size: 0.9375rem;
    }
}

@media (max-width: 767px) {
    .theme-accordion-s1 .panel-heading + .panel-collapse > .panel-body {
        padding: 15px 15px 8px;
    }
}

.theme-accordion-s1 .panel-heading + .panel-collapse > .panel-body p {
    margin-bottom: 1.3em;
}

/* 1. Position a pseudo‑overlay over each slide */
@keyframes flashFadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.carousel-clip .carousel-inner {
    background-color: #000;
}

.carousel-clip .carousel-item {
    opacity: 0;
}

    .carousel-clip .carousel-item.active {
        animation: flashFadeIn .7s ease-out 0.1s forwards;
    }

.phone-button {
    position: fixed;
    bottom: 20px;
    left: 40px;
    /* RTL: left side is accessible */
    z-index: 1000;
    width: 50px;
    height: 50px;
    background-color: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease;
    outline: none;
    border: none;
}

    .phone-button:before {
        position: absolute;
        content: "";
        z-index: -1;
        top: -15px;
        left: -15px;
        background-color: var(--primary);
        width: 80px;
        height: 80px;
        border-radius: 100%;
        animation-fill-mode: both;
        -webkit-animation-fill-mode: both;
        opacity: 0.6;
        -webkit-animation: pulse 1s ease-out;
        animation: pulse 1.8s ease-out;
        -webkit-animation-iteration-count: infinite;
        animation-iteration-count: infinite;
    }

@-webkit-keyframes pulse {
    0% {
        -webkit-transform: scale(0);
        opacity: 0;
    }

    25% {
        -webkit-transform: scale(0.3);
        opacity: 1;
    }

    50% {
        -webkit-transform: scale(0.6);
        opacity: .6;
    }

    75% {
        -webkit-transform: scale(0.9);
        opacity: .3;
    }

    100% {
        -webkit-transform: scale(1);
        opacity: 0;
    }
}

@keyframes pulse {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    25% {
        transform: scale(0.3);
        opacity: 1;
    }

    50% {
        transform: scale(0.6);
        opacity: .6;
    }

    75% {
        transform: scale(0.9);
        opacity: .3;
    }

    100% {
        transform: scale(1);
        opacity: 0;
    }
}

.popover .popover-body {
    padding: 0;
}

.modal .carousel-control-prev {
    left: -50px;
    width: 10%;
}

.modal .carousel-control-prev-icon {
    background-color: transparent;
    border: none;
}

.modal .carousel-control-next {
    right: -50px;
    width: 10%;
}

.modal .carousel-control-next-icon {
    background-color: transparent;
    border: none;
}

@media (max-width: 576px) {
    .about-experiance {
        width: 100%;
    }
}
