/*
@File: guto-lite Template Styles

* This file contains the styling for the actual template, this
is the file you need to edit to change the look of the
template.

This files table contents are outlined below>>>>>

*******************************************
*******************************************

** - Default CSS
** - Top Header Area CSS
** - Navbar Area CSS
** - Search Overlay CSS
** - Main Banner Area CSS
** - Featured Services Area CSS
** - About Area CSS
** - Testimonials Area CSS
** - Services Area CSS
** - Services Details Area CSS
** - Video Area CSS
** - Funfacts Area CSS
** - Working Process Area CSS
** - Why Choose Area CSS
** - Team Area CSS
** - Projects Area CSS
** - Projects Details Area CSS
** - Pricing Area CSS
** - Partner Area CSS
** - Blog Area CSS
** - Blog Details Area CSS
** - Subscribe Area CSS
** - Page Title Area CSS
** - FAQ Area CSS
** - 404 Error Area CSS
** - Widget Sidebar Area CSS
** - Pagination CSS
** - Products Area CSS
** - Products Details Area CSS
** - Cart Area CSS
** - Checkout Area CSS
** - Contact Area CSS
** - Profile Authentication Area CSS
** - Footer Area CSS
** - Go Top CSS
*/

/*================================================
Default CSS
=================================================*/
:root {
    --fontFamily: 'Nunito Sans', sans-serif;
    --mainColor: #4237dc;
    --optionalColor: #e82b2b;
    --paragraphColor: #2e3345;
    --whiteColor: #ffffff;
    --blackColor: #030f2b;
    --fontSize: 15px;
    --transition: .5s;
}
body {
    padding: 0;
    margin: 0;
    font: {
        size: var(--fontSize);
        family: var(--fontFamily);
    };
}
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
}
a {
    color: var(--blackColor);
    transition: var(--transition);
    text-decoration: none;
    outline: 0 !important;

    &:hover {
        text-decoration: none;
    }
}
a:focus {
    outline: 1px solid #000 !important
}
.footer-area {
    a:focus {
        outline: 1px solid #fff !important
    }
}
.d-table {
    width: 100%;
    height: 100%;

    &-cell {
        vertical-align: middle;
    }
}
img {
    max-width: 100%;
    height: auto;
}
p {
    color: var(--paragraphColor);
    margin-bottom: 15px;
    line-height: 1.8;

    &:last-child {
        margin-bottom: 0;
    }
}
.ptb-100 {
    padding: {
        top: 100px;
        bottom: 100px;
    };
}
.pt-100 {
    padding-top: 100px;
}
.pb-100 {
    padding-bottom: 100px;
}
.ptb-70 {
    padding: {
        top: 70px;
        bottom: 70px;
    };
}
.pt-70 {
    padding-top: 70px;
}
.pb-70 {
    padding-bottom: 70px;
}
.container {
    max-width: 1230px;
}
.bg-f8e8e9 {
    background-color: #f8e8e9;
}
.bg-f3f3f4 {
    background-color: #f3f3f4;
}
.bg-FAFAFB {
    background-color: #FAFAFB;
}
.mini-cart-count {
    padding: 4px 4px;
    color: #fff;
    font-size: 10px;
    position: absolute;
    left: 15px;
    top: 9px;
    border-radius: 50%;
}
/*section-title*/
.section-title {
    text-align: center;
    max-width: 665px;
    margin: {
        left: auto;
        right: auto;
        bottom: 60px;
    };
    .sub-title {
        display: block;
        margin-bottom: 10px;
        font: {
            size: 14px;
            weight: 700;
        };
    }
    h2 {
        font-size: 36px;
        margin-bottom: 0;
    }

    p {
        margin-top: 12px;
    }
}
/*default-btn*/
.default-btn {
    display: inline-block;
    box-shadow: unset !important;
    transition: var(--transition);
    border: none;
    color: var(--whiteColor);
    border-radius: 5px;
    padding: 11px 30px 11px 55px;
    position: relative;
    font: {
        weight: 700;
        size: var(--fontSize);
    };
    i {
        position: absolute;
        left: 28px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 20px;
    }
    &:hover {
        color: var(--whiteColor);
    }
}
/*form-control*/
.form-control {
    border-radius: 0;
    background-color: #f5f5f5 !important;
    box-shadow: unset !important;
    transition: var(--transition);
    border: none !important;
    height: 50px;
    padding-left: 15px;
    color: var(--blackColor);
    font: {
        size: var(--fontSize);
        weight: 500;
    };
    &::placeholder {
        color: #999999;
        transition: var(--transition);
    }
    &:focus {
        &::placeholder {
            color: transparent;
        }
    }
}
textarea.form-control {
    padding-top: 15px;
    height: auto;
}

/*================================================
Navbar Area CSS
=================================================*/
.navbar-area {
    position: relative;
    padding: 0;

    &.is-sticky {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 999;
        box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.09);
        background-color: var(--whiteColor) !important;
        animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
    }
}
.guto-lite-responsive-nav {
    display: none;
}
.guto-lite-nav {
    .container-fluid {
        padding: {
            left: 35px;
            right: 35px;
        };
    }
    .navbar {
        position: inherit;
        padding: 0;

        .navbar-brand {
            font-size: inherit;
            line-height: 1;
            padding: 0;
            padding-top: 30px;
            padding-bottom: 30px;
            a {
                cursor: pointer !important;
            }
        }
        ul {
            padding-left: 0;
            list-style-type: none;
            margin-bottom: 0;
        }
        .navbar-nav {
            margin-left: auto;

            .nav-item {
                position: relative;
                margin: {
                    left: 13px;
                    right: 13px;
                };
                a {
                    color: var(--blackColor);
                    text-transform: capitalize;
                    cursor: pointer;
                    font: {
                        size: 16px;
                        weight: 700;
                    };
                    padding: {
                        left: 0;
                        right: 0;
                    };
                }
                .dropdown-toggle {
                    padding-right: 17px;

                    &::after {
                        display: none;
                    }
                    &::before {
                        content: "\ea17";
                        position: absolute;
                        right: -4px;
                        top: 3px;
                        font: {
                            weight: 300;
                            size: 20px;
                            family: 'boxicons';
                        };
                    }
                }
                &:last-child {
                    margin-right: 0;
                }
                &:first-child {
                    margin-left: 0;
                }
                .dropdown-menu {
                    border: none;
                    top: 62px;
                    left: 0;
                    z-index: 99;
                    opacity: 0;
                    width: 250px;
                    display: block;
                    border-radius: 0;
                    padding: 10px 0;
                    margin-top: 15px;
                    position: absolute;
                    visibility: hidden;
                    background: var(--whiteColor);
                    transition: all 0.2s ease-in-out;
                    border-top: 3px solid;
                    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);

                    li {
                        margin: 0;

                        a {
                            padding: 8px 20px;
                            position: relative;
                            display: block;
                            color: var(--blackColor);
                            font: {
                                size: 15px;
                                weight: 700;
                            };
                            i {
                                margin: 0;
                                position: absolute;
                                top: 50%;
                                font-size: 20px;
                                transform: translateY(-50%);
                                right: 15px;
                            }
                            &:hover, &:focus, &.active {
                                background: transparent;
                            }
                        }
                        .dropdown-menu {
                            top: 0;
                            opacity: 0;
                            left: -250px;
                            margin-top: 15px;
                            visibility: hidden;

                            li {
                                a {
                                    color: var(--blackColor);

                                    &:hover, &:focus, &.active {
                                        background: transparent;
                                    }
                                }
                                .dropdown-menu {
                                    top: 0;
                                    opacity: 0;
                                    left: 250px;
                                    visibility: hidden;

                                    li {
                                        a {
                                            color: var(--blackColor);

                                            &:hover, &:focus, &.active {
                                                background: transparent;
                                            }
                                        }
                                        .dropdown-menu {
                                            top: 0;
                                            opacity: 0;
                                            left: -250px;
                                            visibility: hidden;

                                            li {
                                                a {
                                                    color: var(--blackColor);

                                                    &:hover, &:focus, &.active {
                                                        background: transparent;
                                                    }
                                                }
                                                .dropdown-menu {
                                                    top: 0;
                                                    opacity: 0;
                                                    left: 250px;
                                                    visibility: hidden;

                                                    li {
                                                        a {
                                                            color: var(--blackColor);

                                                            &:hover, &:focus, &.active {
                                                                background: transparent;
                                                            }
                                                        }
                                                        .dropdown-menu {
                                                            top: 0;
                                                            opacity: 0;
                                                            left: -250px;
                                                            visibility: hidden;

                                                            li {
                                                                a {
                                                                    color: var(--blackColor);

                                                                    &:hover, &:focus, &.active {
                                                                        background: transparent;
                                                                    }
                                                                }
                                                                .dropdown-menu {
                                                                    top: 0;
                                                                    opacity: 0;
                                                                    left: 250px;
                                                                    visibility: hidden;

                                                                    li {
                                                                        a {
                                                                            color: var(--blackColor);

                                                                            &:hover, &:focus, &.active {
                                                                                background: transparent;
                                                                            }
                                                                        }
                                                                    }
                                                                }
                                                                &.active {
                                                                    a {
                                                                        background: transparent;
                                                                    }
                                                                }
                                                                &:hover, &:focus {
                                                                    .dropdown-menu {
                                                                        opacity: 1;
                                                                        visibility: visible;
                                                                    }
                                                                }
                                                                &:focus-within {
                                                                    .dropdown-menu {
                                                                        opacity: 1;
                                                                        visibility: visible;
                                                                    }
                                                                }
                                                            }
                                                        }
                                                        &:hover, &:focus {
                                                            .dropdown-menu {
                                                                opacity: 1;
                                                                visibility: visible;
                                                            }
                                                        }
                                                        &:focus-within {
                                                            .dropdown-menu {
                                                                opacity: 1;
                                                                visibility: visible;
                                                            }
                                                        }
                                                    }
                                                }
                                                &:hover, &:focus {
                                                    .dropdown-menu {
                                                        opacity: 1;
                                                        visibility: visible;
                                                    }
                                                }
                                                &:focus-within {
                                                    .dropdown-menu {
                                                        opacity: 1;
                                                        visibility: visible;
                                                    }
                                                }
                                            }
                                        }
                                        &:hover, &:focus {
                                            .dropdown-menu {
                                                        opacity: 1;
                                                visibility: visible;
                                            }
                                        }
                                        &:focus-within {
                                            .dropdown-menu {
                                                opacity: 1;
                                                visibility: visible;
                                            }
                                        }
                                    }
                                }
                                &:hover, &:focus {
                                    .dropdown-menu {
                                        opacity: 1;
                                        visibility: visible;
                                    }
                                }
                                &:focus-within {
                                    .dropdown-menu {
                                        opacity: 1;
                                        visibility: visible;
                                    }
                                }
                            }
                        }
                        &:hover, &:focus {
                            .dropdown-menu {
                                opacity: 1;
                                visibility: visible;
                                margin-top: 0;
                            }
                        }
                        &:focus-within {
                            .dropdown-menu {
                                opacity: 1;
                                visibility: visible;
                            }
                        }
                    }
                }
                &:hover, &:focus, &:focus-within {
                    .dropdown-menu {
                        opacity: 1;
                        visibility: visible;
                        margin-top: 0;
                    }
                }
            }
        }
        .others-option {
            margin-left: 20px;

            .option-item {
                margin-left: 25px;

                &:first-child {
                    margin-left: 0;
                }
                .default-btn {
                    color: var(--whiteColor);

                    &:hover {
                        color: var(--whiteColor);
                    }
                }
                .cart-btn {
                    color: var(--blackColor);
                    line-height: 1;
                    display: inline-block;
                    font-size: 22px;
                    position: relative;
                    top: 2px;
                }
                .search-box {
                    cursor: pointer;
                    color: var(--blackColor);
                    transition: var(--transition);
                    line-height: 1;
                    display: inline-block;
                    font-size: 22px;
                    position: relative;
                    margin-right: -5px;
                    top: 4px;
                }
            }
        }
    }
}
.others-option-for-responsive {
    display: none;

    .dot-menu {
        padding: 0 10px;
        height: 30px;
        cursor: pointer;
        z-index: 9991;
        position: absolute;
        right: 65px;
        top: -35px;

        .inner {
            display: flex;
            align-items: center;
            height: 30px;

            .circle {
                height: 5px;
                width: 5px;
                border-radius: 100%;
                margin: 0 2px;
                transition: var(--transition);
                background-color: var(--blackColor);
            }
        }
    }
    .container {
        position: relative;

        .container {
            position: absolute;
            right: 0;
            top: 15px;
            max-width: 300px;
            margin-left: auto;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
            transform: scaleX(0);
            z-index: 2;
            padding: {
                left: 15px;
                right: 15px;
            };
            &.active {
                opacity: 1;
                visibility: visible;
                transform: scaleX(1);
            }
        }
    }
    .option-inner {
        padding: 15px 20px;
        box-shadow: 0 15px 40px rgba(0,0,0,.09);
        background-color: var(--whiteColor);

        .others-option {
            .option-item {
                margin-left: 25px;

                &:first-child {
                    margin-left: 0;
                }
                .default-btn {
                    color: var(--whiteColor);

                    &:hover {
                        color: var(--whiteColor);
                    }
                }
                .cart-btn {
                    color: var(--blackColor);
                    line-height: 1;
                    display: inline-block;
                    font-size: 22px;
                    position: relative;
                    top: 2px;
                }
                .search-box {
                    cursor: pointer;
                    color: var(--blackColor);
                    transition: var(--transition);
                    line-height: 1;
                    display: inline-block;
                    font-size: 22px;
                    position: relative;
                    margin-right: -5px;
                    top: 4px;
                }
            }
        }
    }
}

// Mobile and iPad Navbar
@media only screen and (max-width: 1199px) {

    .navbar-area {
        border-bottom: 1px solid #eeeeee;
        padding: {
            top: 15px;
            bottom: 15px;
        };
        &.is-sticky {
            padding: {
                top: 15px;
                bottom: 15px;
            };
        }
    }
    .logo a {
        font-size: 25px;
        font-weight: bold;
    }
    .guto-lite-responsive-nav {
        display: block;

        .guto-lite-responsive-menu {
            position: relative;
            margin-top: -37px;

            &.mean-container {
                .mean-nav {
                    margin-top: 40px;

                    ul {
                        font-size: 15px;

                        li {
                            li {
                                a {
                                    font-size: 15px;
                                }
                            }
                        }
                    }
                }
                .navbar-nav {
                    overflow-y: scroll;
                    height: 357px;
                    box-shadow: 0 7px 13px 0 rgba(0, 0, 0, .1);
                    padding-bottom: 3px !important;
                }
            }
        }
        .mean-container {
            a {
                &.meanmenu-reveal {
                    color: var(--blackColor);
                    top: 5px;

                    span {
                        background: var(--blackColor);
                    }
                }
            }
        }
        .dropdown-toggle {
            &::after {
                display: none !important;
            }
        }
        .others-option {
            display: none !important;

            .option-item {
                margin-left: 25px;

                &:first-child {
                    margin-left: 0;
                }
                .default-btn {
                    color: var(--whiteColor);

                    &:hover {
                        color: var(--whiteColor);
                    }
                }
                .cart-btn {
                    color: var(--blackColor);
                    line-height: 1;
                    display: inline-block;
                    font-size: 22px;
                    position: relative;
                    top: 2px;
                }
                .search-box {
                    cursor: pointer;
                    color: var(--blackColor);
                    transition: var(--transition);
                    line-height: 1;
                    display: inline-block;
                    font-size: 22px;
                    position: relative;
                    margin-right: -5px;
                    top: 4px;
                }
            }
        }
        .logo {
            position: relative;
            width: 60%;
            z-index: 999;
        }
    }
    .guto-lite-nav {
        display: none;
    }
    .others-option-for-responsive {
        display: block;
    }

}

/*================================================
Search Overlay CSS
=================================================*/
.search-overlay {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
    overflow: hidden;

    .search-overlay-layer {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        z-index: 1;
        transform: translateX(100%);

        &:nth-child(1) {
            left: 0;
            background-color: rgba(0, 0, 0, 0.5);
            transition: all 0.3s ease-in-out 0s;
        }
        &:nth-child(2) {
            left: 0;
            background-color: rgba(0, 0, 0, 0.4);
            transition: all 0.3s ease-in-out 0.3s;
        }
        &:nth-child(3) {
            left: 0;
            background-color: rgba(0, 0, 0, 0.7);
            transition: all 0.9s ease-in-out 0.6s;
        }
    }
    .search-overlay-close {
        position: absolute;
        top: 40px;
        right: 40px;
        width: 50px;
        z-index: 2;
        text-align: center;
        cursor: pointer;
        padding: 10px;
        transition: all 0.9s ease-in-out 1.5s;
        opacity: 0;
        visibility: hidden;

        .search-overlay-close-line {
            width: 100%;
            height: 3px;
            float: left;
            margin-bottom: 5px;
            background-color: var(--whiteColor);
            transition: all 500ms ease;

            &:nth-child(1) {
                transform: rotate(45deg);
            }
            &:nth-child(2) {
                margin-top: -7px;
                transform: rotate(-45deg);
            }
        }
        &:hover {
            .search-overlay-close-line {
                transform: rotate(180deg);
            }
        }
    }
    .search-overlay-form {
        transition: all 0.9s ease-in-out 1.4s;
        opacity: 0;
        visibility: hidden;
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translateY(-50%) translateX(-50%);
        z-index: 2;
        max-width: 500px;
        width: 500px;

        form {
            position: relative;

            .input-search {
                display: block;
                width: 100%;
                height: 60px;
                border: none;
                border-radius: 30px;
                color: var(--blackColor);
                padding: 2px 0 0 25px;

                &::placeholder {
                    transition: var(--transition);
                    letter-spacing: .5px;
                    color: var(--blackColor);
                }
                &:focus {
                    &::placeholder {
                        color: transparent;
                    }
                }
            }
            button {
                position: absolute;
                right: 5px;
                top: 5px;
                width: 50px;
                color: var(--whiteColor);
                height: 50px;
                border-radius: 50%;
                transition: var(--transition);
                border: none;
                font-size: 20px;
                line-height: 50px;

                &:hover {
                    color: var(--whiteColor);
                }
            }
        }
    }
    &.search-overlay-active {
        &.search-overlay {
            opacity: 1;
            visibility: visible;

            .search-overlay-layer {
                transform: translateX(0);
            }
            .search-overlay-close {
                opacity: 1;
                visibility: visible;
            }
            .search-overlay-form {
                opacity: 1;
                visibility: visible;
            }
        }
    }
}

/*================================================
Main Banner Area CSS
=================================================*/
.main-banner-area {
    background-color: #f9f9f9;
    position: relative;
    z-index: 1;
    padding: {
        top: 90px;
        bottom: 90px;
    };
    .container {
        max-width: 1350px;
    }
}
.main-banner-content {
    padding-right: 15px;

    .sub-title {
        display: block;
        margin-bottom: 12px;
        font: {
            size: 14px;
            weight: 700;
        };
    }
    h1 {
        font-size: 55px;
        margin-bottom: 15px;
    }
    p {
        font-weight: 600;
        color: var(--blackColor);
        max-width: 600px;
    }
    .default-btn {
        margin-top: 10px;
    }
}
.main-banner-image {
    z-index: 1;
    position: relative;
    margin-left: 15px;
    text-align: right;
    padding: {
        left: 100px;
        bottom: 40px;
    };
    img {
        border-radius: 10px;

        &:nth-child(2) {
            position: absolute;
            left: 0;
            bottom: 0;
            border-radius: 50%;
            border: 5px solid var(--whiteColor);
            width: 350px;
        }
    }
}
.shape1 {
    position: absolute;
    z-index: -1;
    top: 20%;
    left: 3%;

    img {
        animation: {
            name: rotateme;
            duration: 20s;
            iteration-count: infinite;
            timing-function: linear;
        };
    }
}
.shape2 {
    position: absolute;
    z-index: -1;
    left: 40px;
    bottom: 40px;

    img {
        animation: movebounce 5s linear infinite;
    }
}
.shape3 {
    position: absolute;
    z-index: -1;
    left: 28%;
    bottom: 12%;

    img {
        animation: movescale 5s linear infinite;
    }
}
.shape4 {
    position: absolute;
    z-index: -1;
    top: 10%;
    left: 25%;

    img {
        animation: moveleftbounce 5s linear infinite;
    }
}
.shape5 {
    position: absolute;
    top: 5%;
    left: 20%;

    img {
        border-radius: 0;
        animation: {
            name: rotateme;
            duration: 20s;
            iteration-count: infinite;
            timing-function: linear;
        };
    }
}
.shape6 {
    position: absolute;
    z-index: -1;
    top: 20px;
    left: 15px;

    img {
        border-radius: 0;
        animation: movebounce 5s linear infinite;
    }
}
.shape7 {
    z-index: 1;
    position: absolute;
    right: 50px;
    bottom: 65px;

    img {
        animation: movebounce 5s linear infinite;
    }
}
.shape8 {
    position: absolute;
    z-index: -1;
    bottom: 5%;
    left: 2%;

    img {
        animation: movebounce 5s linear infinite;
    }
}
.shape9 {
    position: absolute;
    z-index: -1;
    top: 40px;
    left: 20px;

    img {
        animation: movebounce 5s linear infinite;
    }
}
.shape10 {
    position: absolute;
    z-index: -1;
    right: 125px;
    bottom: 60px;

    img {
        animation: movebounce 5s linear infinite;
    }
}
@keyframes rotateme {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
@keyframes movescale {
    0% {
        transform: scale(.8);
    }
    50% {
        transform: scale(1);
    }
    100% {
        transform: scale(.8);
    }
}
@keyframes movebounce {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(20px);
    }
    100% {
        transform: translateY(0px);
    }
}
@keyframes moveleftbounce {
    0% {
        transform: translateX(0px);
    }
    50% {
        transform: translateX(20px);
    }
    100% {
        transform: translateX(0px);
    }
}
@keyframes animationFramesOne {
    0% {
        transform: translate(0px,0px) rotate(0deg) ;
    }
    20% {
        transform: translate(73px,-1px) rotate(36deg) ;
    }
    40% {
        transform: translate(141px,72px) rotate(72deg) ;
    }
    60% {
        transform: translate(83px,122px) rotate(108deg) ;
    }
    80% {
        transform: translate(-40px,72px) rotate(144deg) ;
    }
    100% {
        transform:  translate(0px,0px) rotate(0deg) ;
    }
}

/*================================================
Main Banner Area Two CSS
=================================================*/
.main-banner-area-two {
    .container-fluid {
        padding: {
            left: 35px;
            right: 35px;
        };
    }
}
.main-banner-content-two {
    background-color: rgba(255, 255, 255, .70);
    position: relative;
    z-index: 1;
    max-width: 675px;
    margin: {
        left: auto;
        right: -270px;
    };
    padding: {
        top: 60px;
        bottom: 60px;
        right: 100px;
    };
    .sub-title {
        display: block;
        margin-bottom: 12px;
        font: {
            size: 14px;
            weight: 700;
        };
    }
    h1 {
        font-size: 60px;
        margin-bottom: 15px;
    }
    p {
        font-weight: 600;
        color: var(--blackColor);
        max-width: 600px;
    }
    .default-btn {
        margin-top: 10px;
    }
}
.main-banner-image-two {
    padding-left: 85px;
}

/*================================================
Featured Services Area CSS
=================================================*/
.single-featured-services-box {
    margin-bottom: 30px;
    border: 1px solid #f1f1f1;
    border-radius: 5px;
    padding: 60px 30px;
    text-align: center;
    transition: var(--transition);

    img {
        margin-bottom: 30px;
    }
    h3 {
        font-size: 22px;
        margin-bottom: 12px;

        a {
            display: inline-block;
        }
    }
    .link-btn {
        display: inline-block;
        font-weight: 700;
        position: relative;
        padding-right: 17px;

        i {
            position: absolute;
            right: 0;
            top: 4px;
        }
    }
}

/*================================================
About Area CSS
=================================================*/
.about-area {
    position: relative;
    z-index: 1;

    &.bg-black {
        background-color: var(--blackColor);
    }
}
.about-image {
    text-align: center;
    border-radius: 5px;
    padding-right: 15px;

    img {
        border-radius: 5px;
    }
}
.about-content {
    padding-left: 15px;

    .sub-title {
        display: block;
        margin-bottom: 10px;
        font: {
            size: 14px;
            weight: 700;
        };
    }
    h2 {
        font-size: 36px;
        margin-bottom: 10px;
    }
    p {
        margin-bottom: 25px;
    }
    h3 {
        font-size: 22px;
        margin-bottom: 10px;
    }
    &.color-white {
        h2, h3 {
            color: var(--whiteColor);
        }
        p {
            color: #e3e3e3;
        }
    }
}

/*================================================
Testimonials Area CSS
=================================================*/
.testimonials-area {
    position: relative;
    z-index: 1;

    &::before {
        position: absolute;
        left: 0;
        right: 0;
        top: 30%;
        transform: translateY(-30%);
        text-align: center;
        z-index: -1;
        font-size: 350px;
        line-height: 1;
        content: "\ee33";
        font-family: 'boxicons';
        opacity: 0.05;
    }
}
.single-testimonials-item {
    text-align: center;

    p {
        color: var(--blackColor);
        margin-bottom: 0;
        font: {
            weight: 600;
            size: 18px;
        };
    }
    .clients-info {
        margin-top: 30px;

        img {
            border-radius: 50%;
            width: 52px;
            height: 52px;
            border: 3px solid var(--whiteColor);
        }
        .info {
            margin-left: 15px;
            text-align: left;

            h3 {
                font-size: 19px;
                margin-bottom: 5px;
            }
            span {
                display: block;
                font: {
                    weight: 700;
                    size: 14px;
                };
            }
        }
    }
}
.testimonials-slides {
    margin-top: -10px;

    .single-testimonials-item {
        max-width: 850px;
        margin: {
            left: auto;
            right: auto;
        };
    }
    &.owl-theme {
        .owl-nav {
            [class*=owl-] {
                margin: 0;
                position: absolute;
                left: 0;
                top: 50%;
                transform: translateY(-50%);
                width: 40px;
                height: 40px;
                background-color: var(--whiteColor);
                border-radius: 50%;
                font-size: 25px;
                padding: 0;
                text-align: center;
                transition: var(--transition);

                i {
                    position: absolute;
                    left: 0;
                    right: 0;
                    top: 50%;
                    transform: translateY(-50%);
                }
                &.owl-next {
                    left: auto;
                    right: 0;
                }
                &:hover {
                    color: var(--whiteColor);
                }
            }
        }
    }
}

/*================================================
Services Area CSS
=================================================*/
.services-area {
    padding-bottom: 50px;
}
.single-services-box {
    margin-bottom: 50px;
    position: relative;
    padding-left: 85px;

    .icon {
        width: 60px;
        height: 60px;
        border-radius: 5px;
        background-color: #f3f3f4;
        text-align: center;
        position: absolute;
        left: 0;
        top: 0;
        font-size: 30px;
        transition: var(--transition);

        i {
            position: absolute;
            left: 0;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
        }
    }
    h3 {
        font-size: 22px;
        margin-bottom: 10px;

        a {
            display: inline-block;
        }
    }
    .link-btn {
        display: inline-block;
        font-weight: 700;
        position: relative;
        padding-right: 17px;
        margin-top: -5px;

        i {
            position: absolute;
            right: 0;
            top: 4px;
        }
    }
    &:hover {
        .icon {
            color: var(--whiteColor);
        }
    }
}

/*================================================
Services Details Area CSS
=================================================*/
.elementor-widget-Overview_Area {
    margin-bottom: 80px !important;
    &:last-child{
        margin-bottom: 0 !important;
    }
}
.services-details-overview {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    margin: {
        right: -25px;
        left: -25px;
        bottom: 80px;
    }
    &:last-child {
        margin-bottom: 0;
    }
    .services-details-desc {
        flex: 0 0 50%;
        max-width: 50%;
        padding: {
            right: 25px;
            left: 25px;
        };
        h2 {
            margin-bottom: 15px;
            font-size: 30px;
        }
        .features-text {
            margin-top: 20px;

            h3 {
                margin-bottom: 10px;
                font-size: 20px;
                padding-left: 30px;
                position: relative;

                i {
                    position: absolute;
                    left: -6px;
                    top: -4px;
                    font-size: 30px;
                }
            }
        }
    }
    .services-details-image {
        flex: 0 0 50%;
        max-width: 50%;
        padding: {
            right: 15px;
            left: 15px;
        };
    }
}

/*================================================
Video Area CSS
=================================================*/
.video-area {
    position: relative;
    z-index: 1;
    background: {
        position: center center;
        size: cover;
        repeat: no-repeat;
    };
    padding: {
        top: 220px;
        bottom: 220px;
    };
    &::before {
        content: '';
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        background-color: var(--blackColor);
        opacity: 0.5;
        z-index: -1;
    }
}
.video-content {
    text-align: center;

    h2 {
        font-size: 36px;
        margin-bottom: 12px;
        color: var(--whiteColor);
    }
    p {
        color: var(--whiteColor);
        max-width: 610px;
        opacity: 0.9;
        margin: {
            left: auto;
            right: auto;
        };
    }
    .video-btn {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        position: relative;
        transition: var(--transition);
        background-color: rgba(255, 255, 255, .65);
        font-size: 60px;
        display: inline-block;
        margin-top: 10px;

        i {
            position: absolute;
            left: 0;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            margin-top: -1px;
        }
        &:hover {
            color: var(--whiteColor);
        }
    }
}

/*================================================
Funfacts Area CSS
=================================================*/
.single-funfacts-box {
    text-align: center;
    border: 5px solid #fbf1f2;
    border-radius: 85px;
    margin-bottom: 30px;
    background: {
        position: center center;
        size: cover;
        repeat: no-repeat;
    };
    padding: {
        top: 80px;
        bottom: 80px;
        left: 20px;
        right: 20px;
    };
    h3 {
        margin-bottom: 0;
        font: {
            size: 50px;
            weight: 900;
        };
        .odometer {
            position: relative;
            top: 1px;
        }
    }
    p {
        line-height: 1;
        margin-top: 10px;
        font: {
            size: 17px;
            weight: 700;
        };
    }
}

/*================================================
Working Process Area CSS
=================================================*/
.single-working-process-box {
    margin-bottom: 30px;
    position: relative;
    padding-left: 85px;
    transition: var(--transition);
    z-index: 1;

    .number {
        position: absolute;
        right: 35%;
        top: -25px;
        z-index: -1;
        opacity: .07;
        line-height: 1;
        font: {
            style: italic;
            weight: 700;
            size: 180px;
        };
    }
    .icon {
        width: 60px;
        height: 60px;
        border-radius: 5px;
        text-align: center;
        position: absolute;
        left: 0;
        top: 0;
        color: var(--whiteColor);
        font-size: 30px;

        i {
            position: absolute;
            left: 0;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
        }
    }
    p {
        color: var(--blackColor);
    }
    h3 {
        font-size: 22px;
        margin-bottom: 10px;

        a {
            display: inline-block;
        }
    }
    &:hover {
        transform: translateY(-10px);
    }
}
.col-lg-4 {
    &:nth-child(2) {
        .single-working-process-box {
            .icon {
                color: var(--whiteColor);
            }
        }
    }
    &:nth-child(3) {
        .single-working-process-box {
            .icon {
                background-color: var(--blackColor);
                color: var(--whiteColor);
            }
        }
    }
}

/*================================================
Why Choose Area CSS
=================================================*/
.why-choose-area {
    position: relative;
    z-index: 1;

    &.bg-black {
        background-color: var(--blackColor);
    }
    .shape9 {
        right: 20px;
        left: auto;
        transform: scaleX(-1);
    }
    .shape10 {
        left: 50px;
        right: auto;
        bottom: 20%;
    }
    .shape8 {
        right: 2%;
        left: auto;
    }
}
.why-choose-image {
    text-align: center;
    border-radius: 5px;
    padding-left: 15px;

    img {
        border-radius: 5px;
    }
}
.why-choose-content {
    padding-right: 15px;

    .sub-title {
        display: block;
        margin-bottom: 10px;
        font: {
            size: 14px;
            weight: 700;
        };
    }
    h2 {
        font-size: 36px;
        margin-bottom: 10px;
    }
    p {
        margin-bottom: 25px;

        &:last-child {
            margin-bottom: 0;
        }
    }
    h3 {
        font-size: 22px;
        margin-bottom: 10px;
        position: relative;
        padding-left: 30px;

        &::before {
            width: 22px;
            height: 3px;
            content: '';
            position: absolute;
            left: 0;
            top: 12px;
        }
    }
    &.color-white {
        h2, h3 {
            color: var(--whiteColor);
        }
        p {
            color: #e3e3e3;
        }
    }
}

/*================================================
Team Area CSS
=================================================*/
.single-team-box {
    margin-bottom: 30px;
    text-align: center;

    .image {
        position: relative;
        border-radius: 50%;

        img {
            border-radius: 50%;
        }
        .social {
            position: absolute;
            right: 18px;
            bottom: 18px;

            span {
                display: inline-block;
                width: 40px;
                height: 40px;
                color: var(--whiteColor);
                border-radius: 50%;
                position: relative;
                font-size: 18px;
                cursor: pointer;
                transition: var(--transition);

                i {
                    position: absolute;
                    left: 0;
                    right: 0;
                    top: 50%;
                    transform: translateY(-50%);
                    margin-left: -3px;
                }
                &:hover {
                    color: var(--whiteColor);
                }
            }
            ul {
                padding-left: 0;
                margin-bottom: 0;
                list-style-type: none;
                position: absolute;
                right: 0;
                bottom: 95px;

                li {
                    top: 0;
                    right: 0;
                    display: block;
                    position: absolute;
                    transition: var(--transition);
                    transform: scale(0);

                    a {
                        display: block;
                        width: 40px;
                        height: 40px;
                        border-radius: 50%;
                        color: var(--whiteColor);
                        position: relative;
                        font-size: 18px;

                        i {
                            position: absolute;
                            left: 0;
                            right: 0;
                            top: 50%;
                            transform: translateY(-50%);
                            margin-left: -1px;
                        }
                        &.linkedin {
                            background-color: #2867B2;
                        }
                        &.facebook {
                            background-color: #4267B2;
                        }
                        &.twitter {
                            background-color: #1DA1F2;
                        }
                        &.instagram {
                            background: linear-gradient(to right, #ff3019 0%, #c90477 100%);
                        }
                    }
                    &:nth-child(1) {
                        right: -25px;
                        top: 5px;
                    }
                    &:nth-child(2) {
                        right: -35px;
                        top: -47px;
                    }
                    &:nth-child(3) {
                        right: -30px;
                        top: -99px;
                    }
                    &:nth-child(4) {
                        right: 0;
                        top: -143px;
                    }
                    &:nth-child(5) {
                        right: 45px;
                        top: -175px;
                    }
                }
            }
            &:hover {
                ul {
                    li {
                        transform: scale(1);
                    }
                }
            }
        }
    }
    .content {
        margin-top: 25px;

        h3 {
            font-size: 22px;
            margin-bottom: 7px;
        }
        span {
            display: block;
            font: {
                weight: 700;
            };
        }
    }
}

/*================================================
Projects Area CSS
=================================================*/
.single-projects-box {
    text-align: center;
    position: relative;
    margin-bottom: 30px;
    border-radius: 0 0 10px 10px;
    box-shadow: 0px 15px 35px rgba(0, 0, 0, 0.04);
    border-bottom: 3px solid;
    background-color: var(--whiteColor);

    .projects-content {
        padding: 30px 20px;

        h3 {
            margin-bottom: 0;
            font-size: 22px;
        }
        .category {
            display: block;
            margin-top: 10px;
            font-weight: 700;
        }
    }
    .plus-icon {
        a {
            width: 60px;
            height: 60px;
            position: absolute;
            top: 25px;
            right: 25px;
            transform: scale(0);
            transition: all .4s ease-out 0s;
            overflow: hidden;
            border-radius: 50%;

            span {
                width: 25px;
                height: 25px;
                position: absolute;
                top: 50%;
                left: 50%;
                transform: translate(-50%,-50%);

                &::after, &::before {
                    position: absolute;
                    content: '';
                    width: 2px;
                    height: 100%;
                    background-color: var(--whiteColor);
                    top: 0;
                    left: 50%;
                    transform: translateX(-50%);
                }
                &::after {
                    height: 2px;
                    width: 100%;
                    top: 50%;
                    left: 0;
                    transform: translateY(-50%);
                }
            }
        }
    }
    &:hover {
        .plus-icon {
            a {
                transform: scale(1);
            }
        }
    }
}
.discover-more-projects-btn {
    margin-top: 20px;
}

/*================================================
Projects Details Area CSS
=================================================*/
.project-details-image {
    margin-bottom: 30px;
    overflow: hidden;
    position: relative;

    img {
        transition: var(--transition);
    }
    a {
        position: absolute;
        left: 50%;
        top: 50%;
        width: 75px;
        height: 75px;
        font-size: 50px;
        border-radius: 50%;
        text-align: center;
        color: var(--whiteColor);
        transition: var(--transition);
        opacity: 0;
        visibility: hidden;
        margin-top: 20px;
        transform: translateY(-50%) translateX(-50%);

        i {
            position: absolute;
            left: 0;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
        }
        &:hover {
            color: var(--whiteColor);
        }
    }
    &:hover {
        a {
            margin-top: 0;
            opacity: 1;
            visibility: visible;
        }
        img {
            transform: scale(1.3) rotate(4deg);
        }
    }
}
.projects-details-desc {
    margin-top: 5px;

    h2 {
        margin-bottom: 13px;
        font-size: 30px;
    }
    .features-text {
        margin-top: 20px;
        margin-bottom: 20px;

        h3 {
            margin-bottom: 10px;
            font-size: 20px;
            padding-left: 30px;
            position: relative;

            i {
                position: absolute;
                left: -6px;
                top: -4px;
                font-size: 30px;
            }
        }
    }
    .project-details-info {
        display: flex;
        flex-wrap: wrap;
        margin: {
            right: -15px;
            left: -15px;
            top: 35px;
        };
        .single-info-box {
            flex: 0 0 20%;
            max-width: 20%;
            padding: {
                left: 15px;
                right: 15px;
            };
            h4 {
                margin-bottom: 10px;
                font: {
                    size: 18px;
                    weight: 700;
                }
            }
            span {
                display: block;
                color: var(--paragraphColor);
                font-size: 15px;
            }
            .social {
                padding-left: 0;
                margin-bottom: 0;
                list-style-type: none;

                li {
                    display: inline-block;
                    margin-right: 8px;
                    font-size: 18px;

                    a {
                        color: var(--paragraphColor);
                        display: block;

                        &:hover {
                            transform: translateY(-5px);
                        }
                    }
                }
            }
        }
    }
}

/*================================================
Pricing Area CSS
=================================================*/
.single-pricing-box {
    border-radius: 5px;
    text-align: center;
    margin-bottom: 30px;
    padding: 40px 30px 28px 30px;
    transition: var(--transition);
    background-color: var(--whiteColor);
    box-shadow: 0 0 60px 0 rgba(0, 0, 0, 0.08);

    .pricing-header {
        position: relative;
        z-index: 1;
        margin: -40px -30px 30px -30px;
        border-radius: 5px 5px 0 0;
        padding: {
            left: 30px;
            right: 30px;
            top: 30px;
            bottom: 25px;
        };
        h3 {
            color: var(--whiteColor);
            font-size: 22px;
            margin-bottom: 0;
        }
    }
    .price {
        color: var(--blackColor);
        line-height: 50px;
        align-items: baseline;
        position: relative;
        z-index: 1;
        font: {
            size: 45px;
            weight: 800;
        };
        sub {
            line-height: 16px;
            color: var(--paragraphColor);
            margin: 0 -8px 0 -12px;
            position: relative;
            top: -4px;
            display: inline-block;
            font: {
                weight: 700;
                size: 16px;
            };
        }
    }
    .price-features-list {
        text-align: left;
        padding: 30px 30px;
        margin: 25px -30px 30px -30px;
        list-style-type: none;
        border: {
            bottom: 1px solid #eeeeee;
            top: 1px solid #eeeeee;
        }
        li {
            position: relative;
            color: #737b9a;
            padding: {
                top: 8px;
                bottom: 8px;
                right: 25px;
            };
            font: {
                weight: 600;
                size: 16px;
            };
            i {
                font-size: 20px;
                position: absolute;
                right: 0;
                top: 10px;

                &.bx-check {
                    color: #6ac04f;
                }
                &.bx-x {
                    color: #dd5252;
                }
            }
        }
    }
    &.orange {
        .pricing-header {
            background-color: #ffa143;
        }
        .default-btn {
            background-color: #ffa143;
        }
    }
    &:hover {
        transform: translateY(-10px);
    }
}

/*================================================
Partner Area CSS
=================================================*/
.partner-area {
    position: relative;
    z-index: 1;

    &::before {
        content: '';
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        height: 50%;
        background-color: #f3f3f4;
        z-index: -1;
    }
}
.partner-inner-area {
    background-color: var(--blackColor);
    border-radius: 5px;
    padding: {
        left: 70px;
        right: 70px;
    };
    .section-title {
        text-align: left;
        margin-bottom: 0;
        max-width: 100%;

        h2 {
            color: var(--whiteColor);
        }
    }
    .partner-list {
        margin-bottom: -40px;
    }
    .partner-item {
        text-align: center;
        margin-bottom: 40px;
    }
}

.partner-area-two {
    .section-title {
        text-align: left;
        max-width: 100%;
        margin: {
            bottom: 0;
            top: -8px;
        };
    }
}
.partner-list {
    margin-bottom: -40px;
}
.partner-item {
    text-align: center;
    margin-bottom: 40px;
}

/*================================================
Blog Area CSS
=================================================*/
.single-blog-post {
    margin-bottom: 30px;
    border: 1px solid #eee;
    border-radius: 5px;

    .image {
        border-radius: 5px;
        position: relative;

        &::before {
            content: '';
            position: absolute;
            left: 0;
            right: 0;
            top: 0;
            bottom: 0;
            background-color: var(--blackColor);
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
            border-radius: 5px;
        }
        .user {
            position: absolute;
            left: 30px;
            z-index: 2;
            opacity: 0;
            transition: .7s;
            visibility: hidden;
            top: 30px;
            margin-top: 20px;

            img {
                width: 50px;
                height: 50px;
                border-radius: 50%;
            }
            .info {
                color: var(--whiteColor);
                margin-left: 10px;
                font-weight: 600;

                span {
                    display: block;
                    font-weight: 700;
                    margin-bottom: 3px;
                }
            }
        }
        .link-btn {
            display: block;
            position: absolute;
            left: 0;
            border-radius: 5px;
            right: 0;
            top: 0;
            bottom: 0;
            z-index: 1;
        }
    }
    .content {
        margin-top: 25px;
        padding: 0 25px 25px 25px;
        position: relative;

        .meta {
            padding-left: 0;
            list-style-type: none;
            margin-bottom: 10px;

            li {
                display: inline-block;
                margin-right: 15px;
                position: relative;
                color: var(--paragraphColor);
                font-weight: 600;
                padding-left: 22px;

                &:last-child {
                    margin-right: 0;
                }
                a {
                    color: var(--paragraphColor);
                    text-transform: capitalize;
                }
                i {
                    position: absolute;
                    left: 0;
                    top: 2px;
                    font-size: 17px;
                }
            }
        }
        h3 {
            font-size: 22px;
            margin-bottom: 0;
            line-height: 1.4;
            -ms-word-wrap: break-word;
            word-wrap: break-word;
        }
        .link-btn {
            display: inline-block;
            font-weight: 700;
            position: absolute;
            padding-right: 17px;
            left: 0;
            bottom: -15px;
            opacity: 0;
            visibility: hidden;

            i {
                position: absolute;
                right: 0;
                top: 4px;
            }
        }
        p {
            margin-top: 5px;
        }
    }
    &:hover {
        .image {
            &::before {
                visibility: visible;
                opacity: 0.67;
            }
            .user {
                opacity: 1;
                visibility: visible;
                margin-top: 0;
            }
        }
        .content {
            .link-btn {
                bottom: -30px;
                opacity: 1;
                visibility: visible;
            }
        }
    }
}
.single-blog-post.without-image {
    border: 1px solid #eee;
    padding: 20px 30px;
    .content {
        margin-top: 7px;
    }
}

.sticky {
    .single-blog-post {
        background: #212529;
        .content {
            padding: 20px 30px;
            margin-top: 5px;
            h3 {
                a {
                    color: #fff;
                }
            }
            p {
                color: #fff;
            }
            ul {
                li {
                    color: #fff;
                    a {
                        color: #fff;
                        margin-right: 20px;
                        position: relative;
                        text-transform: capitalize;
                        font-weight: 600;
                    }
                }
            }
        }
        &.without-image {
            padding: 0;
            margin-top: 0;
        }
    }
}
/*================================================
Blog Details Area CSS
=================================================*/
.blog-details-desc {
    background-color: #f7f8fa;
    padding: 25px;
    .article-content {
        .entry-meta {
            margin-bottom: 15px;

            ul {
                padding-left: 0;
                margin-bottom: 0;
                list-style-type: none;

                li {
                    margin-right: 20px;
                    display: inline-block;
                    position: relative;
                    font-weight: 600;
                    font-size: 15px;
                    color: var(--paragraphColor);

                    &::before {
                        right: -12px;
                        top: 5px;
                        height: 13px;
                        content: '';
                        width: 1px;
                        background-color: #d4c7c7;
                        position: absolute;
                    }
                    i {
                        font-size: 18px;
                    }
                    a {
                        text-transform: capitalize;
                        text-decoration: none;
                        display: inline-block;
                        color: var(--paragraphColor);
                        font-weight: 700;
                    }
                    &:last-child {
                        margin-right: 0;

                        &::before {
                            display: none;
                        }
                    }
                }
            }
        }
        h3 {
            font-size: 22px;
            margin: {
                bottom: 15px;
                top: 25px;
            };
        }
        .wp-block-gallery {
            &.columns-3 {
                .blocks-gallery-grid {
                    padding-left: 0;
                    list-style-type: none;
                    display: flex;
                    flex-wrap: wrap;
                    margin: {
                        right: -10px;
                        left: -10px;
                        bottom: 0;
                        top: 30px;
                    }
                    li {
                        flex: 33.3333%;
                        max-width: 33.3333%;
                        padding: {
                            right: 10px;
                            left: 10px;
                        }
                        margin: 0 !important;
                        margin-bottom: 0px !important;
                        figure {
                            margin-bottom: 0;
                        }
                    }
                    figcaption {
                        width: auto !important;
                    }
                }
            }
        }
        .features-list {
            padding-left: 0;
            list-style-type: none;
            margin: {
                top: 25px;
                bottom: 30px;
            };
            li {
                margin-bottom: 15px;
                position: relative;
                padding-left: 26px;
                color: #585d81;
                font-size: 15.5px;

                i {
                    display: inline-block;
                    font-size: 20px;
                    position: absolute;
                    left: 0;
                    top: 1px;
                }
                &:last-child {
                    margin-bottom: 0;
                }
            }
        }
    }
    .article-footer {
        display: flex;
        flex-wrap: wrap;
        border-top: 1px solid #eeeeee;
        padding-top: 30px;
        margin-top: 30px;

        .article-tags {
            flex: 0 0 50%;
            max-width: 50%;

            span {
                display: inline-block;
                color: var(--blackColor);
                margin-right: 3px;
                position: relative;
                top: 3px;
                font-size: 18px;
            }
            a {
                display: inline-block;
                font-weight: 700;
            }
        }
        .article-share {
            flex: 0 0 50%;
            max-width: 50%;

            .social {
                padding-left: 0;
                list-style-type: none;
                text-align: right;
                margin-bottom: 0;

                li {
                    display: inline-block;

                    span {
                        display: inline-block;
                        margin-right: 3px;
                        font-weight: 700;
                        position: relative;
                        top: -1px;
                    }
                    a {
                        display: block;
                        width: 32px;
                        height: 32px;
                        line-height: 33px;
                        border-radius: 50%;
                        color: var(--whiteColor);
                        border: 1px solid;
                        text-align: center;
                        font-size: 17px;
                        margin-left: 2px;

                        &:hover, &:focus {
                            background-color: transparent;
                        }
                        &.facebook {
                            background-color: #3b5998;
                            border-color: #3b5998;
                            color: var(--whiteColor);

                            &:hover, &:focus {
                                color: #3b5998;
                                background-color: transparent;
                            }
                        }
                        &.twitter {
                            background-color: #1da1f2;
                            border-color: #1da1f2;
                            color: var(--whiteColor);

                            &:hover, &:focus {
                                color: #1da1f2;
                                background-color: transparent;
                            }
                        }
                        &.linkedin {
                            background-color: #007bb5;
                            border-color: #007bb5;
                            color: var(--whiteColor);

                            &:hover, &:focus {
                                color: #007bb5;
                                background-color: transparent;
                            }
                        }
                        &.instagram {
                            background-color: #c13584;
                            border-color: #c13584;
                            color: var(--whiteColor);

                            &:hover, &:focus {
                                color: #c13584;
                                background-color: transparent;
                            }
                        }
                    }
                }
            }
        }
    }
    .article-author {
        margin-top: 30px;
        border-radius: 5px;
        background: #fdfcfc;

        .author-profile-header {
            height: 115px;
            border-radius: 5px 5px 0 0;
            background: {
                position: center center;
                size: cover;
                repeat: no-repeat;
            };
        }
        .author-profile {
            padding: 0 25px 25px;

            .author-profile-title {
                position: relative;
                z-index: 1;
                margin-top: -45px;

                img {
                    display: inline-block;
                    border: 3px solid var(--whiteColor);
                    width: 100px;
                    height: 100px;
                    margin-bottom: 25px;
                }
                h4 {
                    margin-bottom: 8px;
                    font-size: 20px;
                }
                span {
                    display: block;
                    margin-bottom: 12px;
                    color: var(--paragraphColor);
                }
            }
        }
    }
}
blockquote, .blockquote {
    overflow: hidden;
    background-color: #fafafa;
    padding: 40px 50px !important;
    position: relative;
    z-index: 1;
    margin: {
        bottom: 20px;
        top: 20px;
    };
    p {
        color: var(--blackColor);
        line-height: 1.6;
        margin-bottom: 0;
        font: {
            style: italic;
            weight: 700;
            size: 20px !important;
        };
    }
    cite {
        display: none;
    }
    &::before {
        color: #efefef;
        position: absolute;
        animation: fade-up 1.5s infinite linear;
        left: 50px;
        top: -50px;
        z-index: -1;
        content: "\ee33";
        font: {
            family: 'boxicons';
            size: 135px;
        };
    }
    &::after {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 3px;
        margin: {
            top: 20px;
            bottom: 20px;
        };
    }
}
.guto-lite-post-navigation {
    display: flex;
    flex-wrap: wrap;
    justify-content: end;
    margin-top: 30px;
    padding: {
        top: 30px;
        bottom: 30px;
    };
    border: {
        top: 1px solid #eeeeee;
        bottom: 1px solid #eeeeee;
    };
}
.prev-link-wrapper {
    flex: 0 0 50%;
    max-width: 50%;
    padding-right: 15px;

    a {
        display: flex;
        align-items: center;

        &:hover {
            .image-prev {
                &::after {
                    opacity: 1;
                    visibility: visible;
                }
                .post-nav-title {
                    opacity: 1;
                    visibility: visible;
                }
            }
        }
    }
    .image-prev {
        display: inline-block;
        min-width: 100px;
        width: 100px;
        border-radius: 5px;
        overflow: hidden;
        vertical-align: top;
        margin-right: 20px;
        position: relative;
        transition: var(--transition);

        img {
            border-radius: 5px;
        }
        &::after {
            display: block;
            content: '';
            height: 100%;
            width: 100%;
            position: absolute;
            top: 0;
            left: 0;
            border-radius: 5px;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
        }
        .post-nav-title {
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            right: 0;
            margin: 0 auto;
            text-align: center;
            text-transform: uppercase;
            z-index: 2;
            color: var(--whiteColor);
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
            font: {
                size: var(--fontSize);
                weight: 700;
            };
        }
    }
    .prev-link-info-wrapper {
        color: var(--blackColor);
        transition: var(--transition);
    }
    .prev-title {
        display: inline-block;
        font: {
            weight: 700;
            size: 17px;
        };
    }
    .meta-wrapper {
        display: block;
        text-transform: capitalize;
        margin-top: 6px;
        font: {
            weight: 600;
            size: 14px;
        };
    }
}
.next-link-wrapper {
    flex: 0 0 50%;
    max-width: 50%;
    text-align: right;
    padding: {
        left: 15px;
    };
    a {
        display: flex;
        align-items: center;
        justify-content: flex-end;

        &:hover {
            .image-next {
                &::after {
                    opacity: 1;
                    visibility: visible;
                }
                .post-nav-title {
                    opacity: 1;
                    visibility: visible;
                }
            }
        }
    }
    .image-next {
        display: inline-block;
        min-width: 100px;
        width: 100px;
        border-radius: 5px;
        overflow: hidden;
        vertical-align: top;
        margin-left: 20px;
        position: relative;
        transition: var(--transition);

        img {
            border-radius: 5px;
        }
        &::after {
            display: block;
            content: '';
            height: 100%;
            width: 100%;
            position: absolute;
            top: 0;
            left: 0;
            border-radius: 5px;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
        }
        .post-nav-title {
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            right: 0;
            margin: 0 auto;
            text-align: center;
            text-transform: uppercase;
            z-index: 2;
            color: var(--whiteColor);
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
            font: {
                size: var(--fontSize);
                weight: 700;
            };
        }
    }
    .next-link-info-wrapper {
        transition: var(--transition);
        color: var(--blackColor);
    }
    .next-title {
        display: inline-block;
        font: {
            weight: 700;
            size: 17px;
        };
    }
    .meta-wrapper {
        display: block;
        text-transform: capitalize;
        margin-top: 6px;
        font: {
            weight: 600;
            size: 14px;
        };
    }
}

/*================================================
Subscribe Area CSS
=================================================*/
.subscribe-area {
    position: relative;
    z-index: 1;

    &::before {
        content: '';
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        height: 50%;
        z-index: -1;
        background-color: var(--blackColor);
    }
}
.subscribe-inner-area {
    position: relative;
    z-index: 1;
    border-radius: 5px;
    text-align: center;
    padding: {
        left: 100px;
        right: 100px;
    };
    .sub-title {
        display: block;
        color: var(--whiteColor);
        opacity: 0.8;
        margin-bottom: 10px;
        font: {
            size: 14px;
            weight: 700;
        };
    }
    h2 {
        font-size: 36px;
        margin-bottom: 0;
        color: var(--whiteColor);
    }
    form {
        max-width: 700px;
        position: relative;
        padding-right: 205px;
        margin: {
            left: auto;
            right: auto;
            top: 30px;
        };
        label {
            position: absolute;
            margin-bottom: 0;
            left: 15px;
            top: 8px;
            font-size: 25px;
        }
        .input-newsletter {
            height: 50px;
            display: block;
            width: 100%;
            background-color: var(--whiteColor);
            color: var(--blackColor);
            border-radius: 5px;
            font-weight: 600;
            border: none;
            padding-left: 55px;

            &::placeholder {
                color: #999999;
                transition: var(--transition);
            }
            &:focus {
                &::placeholder {
                    color: transparent;
                }
            }
        }
        .default-btn {
            position: absolute;
            right: 0;
            top: -1.5px;
            color: var(--whiteColor);
            height: 52px;

            &:hover {
                background-color: var(--whiteColor);
                color: var(--blackColor);
            }
        }
        #validator-newsletter {
            position: absolute;
            left: 0;
            right: 0;
            bottom: -40px;
            color: var(--whiteColor);
        }
    }
}
.subscribe-shape1 {
    position: absolute;
    left: 15px;
    bottom: 15px;
    z-index: -1;
}
.subscribe-shape2 {
    position: absolute;
    right: 15px;
    bottom: 0;
    z-index: -1;
}

.subscribe-inner-area-two {
    text-align: center;
    background: {
        position: center center;
        size: cover;
        repeat: no-repeat;
    };
    padding: {
        left: 100px;
        right: 100px;
    };
    .sub-title {
        display: block;
        opacity: 0.8;
        margin-bottom: 10px;
        font: {
            size: 14px;
            weight: 700;
        };
    }
    h2 {
        font-size: 36px;
        margin-bottom: 0;
        color: var(--whiteColor);
    }
    form {
        max-width: 700px;
        position: relative;
        padding-right: 205px;
        margin: {
            left: auto;
            right: auto;
            top: 30px;
        };
        label {
            position: absolute;
            margin-bottom: 0;
            left: 15px;
            top: 8px;
            color: var(--blackColor);
            font-size: 25px;
        }
        .input-newsletter {
            height: 50px;
            display: block;
            width: 100%;
            background-color: var(--whiteColor);
            color: var(--blackColor);
            border-radius: 5px;
            font-weight: 600;
            border: none;
            padding-left: 55px;

            &::placeholder {
                color: #999999;
                transition: var(--transition);
            }
            &:focus {
                &::placeholder {
                    color: transparent;
                }
            }
        }
        .default-btn {
            position: absolute;
            right: 0;
            top: -1.5px;
            height: 52px;
        }
    }
}

/*================================================
Page Title Area CSS
=================================================*/
.page-title-area {
    position: relative;
    z-index: 1;
    overflow: hidden;
    background: {
        color: var(--blackColor);
        position: center center;
        size: cover;
        repeat: no-repeat;
    };
    padding: {
        top: 100px;
        bottom: 100px;
    };
    .shape9 {
        left: -14.5%;
        top: -31%;

        img {
            animation: unset;
        }
    }
    &::before {
        content: '';
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        background-color: var(--blackColor);
        opacity: 0.6;
        z-index: -1;
    }
}
.page-title-content {
    max-width: 810px;

    .sub-title {
        display: block;
        color: var(--whiteColor);
        opacity: 0.8;
        margin-bottom: 12px;
        font: {
            size: 14px;
            weight: 700;
        };
    }
    h2 {
        -ms-word-wrap: break-word;
        word-wrap: break-word;
        margin-bottom: 0;
        position: relative;
        padding-bottom: 16px;
        font-size: 40px;
        color: var(--whiteColor);

        &::before {
            content: '';
            position: absolute;
            left: 0;
            width: 80px;
            height: 2px;
            bottom: 0;
        }
    }

		ul {
			padding-left: 0;
			list-style-type: none;
			margin-top: 10px;
			word-break: break-all;
			margin-bottom: -5px;
			li {
				display: inline-block;
                -ms-word-wrap: break-word;
                word-wrap: break-word;
				position: relative;
				font-size: 15px;
				font-weight: 500;
				padding-right: 10px;
    			margin-left: 15px;
                color: var(--whiteColor);
				&::before {
					content: "";
					position: absolute;
					top: 5px;
					right: -3px;
					background-color: var(--whiteColor);
					width: 1px;
					height: 15px;
					transform: rotate(25deg);
				}
				&:last-child {
					&::before {
						display: none;
					}
                }
                &:first-child {
                    margin-left: 0;
				}
				a {
					color: var(--whiteColor);
				}
			}
			.active {
				color: var(--whiteColor);
			}
		}
}

.page-title-area.style-2 {
    &::before {
        content: none;
    }
    h2 {
        &::before {
            background-color: #fff;
        }
    }
    .page-title-content {
        max-width: 670px;
    }
}

/*================================================
FAQ Area CSS
=================================================*/
.faq-accordion {
    .card {
        margin-bottom: 15px;
        border-radius: 0 !important;
        border: none;
        display: block;
        flex-direction: unset;
        text-align: left;
        box-shadow: 2px 8px 20px 0 rgba(25, 42, 70, 0.13) !important;
        padding: {
            left: 5px;
            right: 5px;
        };
        .card-header {
            padding: 0;
            border: none;
            text-align: left;
            background-color: var(--whiteColor);

            button {
                display: block;
                background-color: transparent;
                border: none;
                cursor: pointer;
                width: 100%;
                text-align: left;
                position: relative;
                border-bottom: 1px solid #eeeeee;
                transition: var(--transition);
                font: {
                    size: 18px;
                    weight: 700;
                };
                padding: {
                    top: 20px;
                    bottom: 18px;
                    left: 20px;
                    right: 20px;
                };
                &::before {
                    content: "\ea17";
                    position: absolute;
                    right: 20px;
                    transition: var(--transition);
                    top: 50%;
                    transform: translateY(-50%) rotate(180deg);
                    font: {
                        family: 'boxicons';
                        size: 20px;
                    };
                }
                &.collapsed {
                    border-bottom-width: 0;

                    &::before {
                        transform: translateY(-50%) rotate(0);
                    }
                }
            }
        }
        .card-body {
            ul {
                margin-bottom: 15px;

                &:last-child {
                    margin-bottom: 0;
                }
                li {
                    margin-bottom: 12px;
                    color: var(--paragraphColor);

                    &:last-child {
                        margin-bottom: 0;
                    }
                }
            }
        }
        &:last-child {
            margin-bottom: 0;
        }
    }
}

/*================================================
404 Error Area CSS
=================================================*/
.error-area {
    border-top: 1px dashed #eeeeee;
}
.error-content {
    text-align: center;

    h3 {
        font-size: 35px;
        margin: {
            bottom: 20px;
            top: 45px;
        };
    }
    p {
        max-width: 550px;
        margin: {
            left: auto;
            right: auto;
            bottom: 0;
        };
    }
    .default-btn {
        margin-top: 30px;
    }
}

/*================================================
Pagination CSS
=================================================*/
.pagination-area {
    margin-top: 25px;

    .page-numbers {
        width: 40px;
        height: 40px;
        background-color: var(--whiteColor);
        box-shadow: 0 0 15px 2px #e4e4ee;
        color: var(--blackColor);
        text-align: center;
        display: inline-block;
        border-radius: 0;
        line-height: 42px;
        position: relative;
        margin: {
            left: 4px;
            right: 4px;
        };
        font: {
            weight: 700;
            size: 18px;
        };
        &:hover, &.current {
            color: var(--whiteColor);
        }
        i {
            position: relative;
            top: 1.5px;
        }
    }
}

/*================================================
Contact Area CSS
=================================================*/
.contact-info-box {
    margin-bottom: 30px;
    position: relative;
    padding-left: 100px;
    z-index: 1;

    &:last-child {
        margin-bottom: 0;
    }
    .icon {
        width: 75px;
        height: 85px;
        background-color: #f7f7f7;
        border-radius: 3px;
        position: absolute;
        text-align: center;
        left: 0;
        font-size: 40px;
        transition: var(--transition);
        top: 50%;
        transform: translateY(-50%);

        i {
            position: absolute;
            left: 0;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
        }
    }
    h3 {
        margin-bottom: 10px;
        font-size: 20px;
    }
    p {
        margin-bottom: 2px;
        font-weight: 600;

        &:last-child {
            margin-bottom: 0;
        }
    }
    .back-icon {
        position: absolute;
        right: 0;
        bottom: -15px;
        z-index: -1;
        color: var(--blackColor);
        line-height: 1;
        opacity: .04;
        font-size: 100px;
        transform: rotate(-5deg);
    }
    &:hover {
        .icon {
            color: var(--whiteColor);
        }
    }
}
.contact-form {
    padding: 40px;
    margin-right: 30px;
    box-shadow: 0 0 20px rgba(158,158,158,.16);
    background-color: var(--whiteColor);

    form {
        .form-group {
            textarea.form-control {
                height: auto;
            }
        }
        .help-block {
            ul {
                margin: {
                    bottom: 0;
                    top: 12px;
                };
                li {
                    color: red;
                }
            }
        }
        .default-btn {
            margin-top: 5px;
        }
        #msgSubmit {
            margin: 0 !important;

            &.text-danger, &.text-success {
                margin-top: 15px !important;
            }
        }
    }
}
#map {
    iframe {
        width: 100%;
        height: 500px;
        margin-bottom: -7px;
        border: none;
    }
}

/*================================================
Coming Soon Area CSS
=================================================*/
.coming-soon-area {
    height: 100vh;
    position: relative;
    z-index: 1;
    background: #f6f7fb;
    background: {
        position: top center;
        size: cover;
        repeat: no-repeat;
    };
}
.coming-soon-content {
    max-width: 700px;
    background: var(--whiteColor);
    border-radius: 5px;
    overflow: hidden;
    text-align: center;
    padding: 40px 60px;
    box-shadow: 1px 5px 24px 0 rgba(68, 102, 242, .05);
    margin: {
        left: auto;
        right: auto;
    };
    .logo {
        display: inline-block;
    }
    h2 {
        font-size: 40px;
        margin: {
            top: 30px;
            bottom: 0;
        };
    }
    #timer {
        margin-top: 40px;

        .finished-message {
            margin-top: 20px;
        }

        .countdown-items {
            background-color: var(--blackColor);
            color: var(--whiteColor);
            width: 100px;
            height: 105px;
            border-radius: 5px;
            font: {
                size: 35px;
                weight: 700;
            };
            margin: {
                left: 10px;
                right: 10px;
            };
            .guto-lite-label {
                display: block;
                margin-top: -2px;
                font: {
                    size: 15px;
                    weight: 500;
                };
            }
        }
    }
    form {
        position: relative;
        max-width: 500px;
        margin: {
            left: auto;
            right: auto;
            top: 40px;
        };
        .form-group {
            margin-bottom: 25px;
            width: 100%;
            position: relative;

            .label-title {
                margin-bottom: 0;
                position: absolute;
                display: block;
                left: 0;
                top: 0;
                pointer-events: none;
                width: 100%;
                height: 100%;

                i {
                    position: absolute;
                    left: 0;
                    transition: var(--transition);
                    top: 11px;
                    font: {
                        size: 22px;
                    };
                }
                &::before {
                    content: "";
                    display: block;
                    position: absolute;
                    bottom: 0;
                    left: 0;
                    width: 0;
                    height: 2px;
                    transition: var(--transition);
                }
            }
            .input-newsletter {
                border-radius: 0;
                border: none;
                border-bottom: 2px solid #eeeeee;
                padding: 0 0 0 32px;
                color: var(--blackColor);
                height: 45px;
                display: block;
                width: 100%;
                transition: var(--transition);
                font: {
                    size: 16px;
                    weight: 400;
                };
                &::placeholder {
                    color: #A1A1A1;
                    transition: var(--transition);
                }
                &:focus {
                    &::placeholder {
                        color: transparent;
                    }
                }
            }
        }
        .default-btn {
            border-radius: 0;

            &::before {
                border-radius: 0;
            }
        }
        .validation-danger {
            margin-top: 15px;
            color: red;
        }
        .validation-success {
            margin-top: 15px;
        }
    }
}

/*================================================
Footer Area CSS
=================================================*/
.footer-area {
    background-color: var(--blackColor);
    padding-top: 100px;
    position: relative;
    z-index: 1;
}
.footer-bottom-area {
    margin-top: 70px;
    background-color: #061331;
    padding: {
        top: 30px;
        bottom: 30px;
    };
    p {
        color: var(--whiteColor);

        a {
            font-weight: 700;

            &:hover {
                color: var(--whiteColor);
            }
        }
    }
    ul {
        text-align: right;
        padding-left: 0;
        margin-bottom: 0;
        list-style-type: none;

        li {
            display: inline-block;
            position: relative;
            margin: {
                left: 10px;
                right: 10px;
            };
            a {
                display: block;
                color: var(--whiteColor);
            }
            &::before {
                width: 7px;
                height: 1px;
                background-color: #dddddd;
                content: '';
                position: absolute;
                left: -15px;
                top: 11px;
            }
            &:last-child {
                margin-right: 0;
            }
            &:first-child {
                margin-left: 0;

                &::before {
                    display: none;
                }
            }
        }
    }
}
.circle-map {
    position: absolute;
    top: 12%;
    right: 10%;
    z-index: -1;
}

/*================================================
Go Top CSS
=================================================*/
.go-top {
    position: fixed;
    cursor: pointer;
    bottom: 20px;
    right: 20px;
    color: var(--whiteColor);
    z-index: 4;
    width: 43px;
    text-align: center;
    height: 45px;
    opacity: 0;
    visibility: hidden;
    font-size: 27px;
    transition: var(--transition);
    box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.1);

    i {
        position: absolute;
        right: 0;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        text-align: center;
        margin: {
            left: auto;
            right: auto;
        };
    }
    &.active {
        opacity: 1;
        visibility: visible;
        bottom: 20px;
    }
    &:hover {
        color: var(--whiteColor);
    }
}

.mchimp-errmessage, .mchimp-sucmessage {
    text-align: center;
    color: #fff;
    margin-top: 5px;
    padding: 7px 0px;
    font-size: 13px;
    border-radius: 6px;
}
.mchimp-errmessage {
    background: #c35151;
    a {
        display: block;
        color: #fff;
    }
}
.mchimp-sucmessage {
    background: #109834;
}

.admin-bar {
    .navbar-area.is-sticky{
        top: 32px;
    }
}

.gallery-item:hover a img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}
.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: -webkit-zoom-in;
    cursor: zoom-in;
    border-radius: 5px;
    a {
        display: block;
        border-radius: 5px;
        overflow: hidden;
        img {
            -webkit-transition: var(--transition);
            transition: var(--transition);
        }
    }
}

/*================================================
Widget Sidebar CSS
=================================================*/
.sidebar {
    padding-left: 15px;
    .widget {
        margin-top: 30px;
        &:first-child {
            margin-top: 0;
        }
    }
    .widget {
        margin-bottom: 30px;
        background-color: #f7f8fa;
        padding: 25px;
        .widget-title {
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 12px;
            border-bottom: 1px solid #d6d6d6;
            font-size: 22px;
            &::before {
                content: '';
                position: absolute;
                left: 0;
                bottom: 0;
                width: 50px;
                height: 1px;
                bottom: -1px;
            }
        }
        ul {
            padding-left: 0;
            list-style-type: none;
            margin: 0;
            li {
                position: relative;
                margin-bottom: 12px;
                overflow: hidden;
                color: var(--blackColor);
                padding-left: 18px;
                font-weight: 600;
                font-size: 15px;
                &:last-child {
                    margin-bottom: 0;
                }
                &::before {
                    height: 8px;
                    width: 8px;
                    content: '';
                    border-radius: 50%;
                    left: 0;
                    top: 6px;
                    position: absolute;
                }
                a {
                    &:hover {
                        .post_count {
                            border: 1px solid;
                        }
                    }
                    .post_count {
                        position: absolute;
                        right: 0;
                        border: 1px solid #eee;
                        width: 25px;
                        text-align: center;
                        height: 25px;
                        line-height: 25px;
                        font-size: 13px;
                    }
                }
            }
        }
    }

    .widget_search {
        form {
            position: relative;

            label {
                display: block;
                margin-bottom: 0;
            }
            .screen-reader-text {
                overflow: hidden;
            }
            .search-field {
                height: 50px;
                display: block;
                width: 100%;
                border: none;
                border-radius: 5px;
                padding: 2px 0 0 15px;
                color: var(--blackColor);
                background-color: #ffffff;
                transition: var(--transition);
                font: {
                    size: 15px;
                    weight: 400;
                };
                &::placeholder {
                    transition: var(--transition);
                    color: var(--paragraphColor);
                }
                &:focus {
                    &::placeholder {
                        color: transparent;
                    }
                }
            }
            button {
                top: 5px;
                right: 5px;
                padding: 0;
                width: 40px;
                border: none;
                height: 40px;
                font-size: 20px;
                position: absolute;
                transition: var(--transition);
                background-color: #f7f8fa;

                i {
                    position: absolute;
                    left: 0;
                    right: 0;
                    top: 50%;
                    transform: translateY(-50%);
                }
                &:hover {
                    border-radius: 5px;
                    color: var(--whiteColor);
                }
            }
        }
    }
    select {
        height: 45px;
        border: 1px solid #eee;
        width: 100%;
        font-size: 13.5px;
        padding: 8px 15px;
    }
    .nice-select {
        float: unset;
        word-break: break-word;
        width: 100%;
        white-space: inherit;

        .option {
            padding-top: 2px;
            padding-bottom: 2px;
            min-height: 100%;
            font-size: 14px;
            text-transform: capitalize;
        }

        ul li::before {
            display: none;
        }
        ul {
            padding-top: 12px;

            li {
                margin-bottom: 0px;
            }
        }
        .option.selected.focus {
            display: none;
        }

        .list {
            padding-left: 0;
            width: 100%;
            margin-bottom: 0;
            list-style-type: none;
            width: 100%;
            margin-top: 5px;
        }
    }
    .widget_categories {
        ul {
            li {

                a {
                    text-transform: capitalize;
                }
                .children {
                    margin-top: 10px;
                }
            }
        }
    }
    .widget_pages {
        ul {
            li.page_item_has_children {
                > a {
                    margin-bottom: 10px;
                    display: inline-block;
                }
            }
            li {
                a {
                    text-transform: capitalize;
                }
            }
        }
    }
    .widget_rss {
        ul {
            li {
                margin-bottom: 20px;
                &::before {
                    top: 10px;
                }
                &:last-child {
                    margin-bottom: 0;
                }
                .rsswidget {
                    display: block;
                    color: #222222;
                    font-weight: 600;
                }
                .rss-date {
                    font-size: 13px;
                    margin: 3px 0 10px;
                    display: block;
                }
                .rssSummary {
                    color: #222222;
                    line-height: 25px;
                    font-size: 14px;
                }
                cite {
                    font-weight: 600;
                    display: block;
                    margin-top: 10px;
                    font-style: normal;
                    color: #222;
                    font-size: 13.5px;
                }
            }
        }
    }
    .tagcloud {
        a {
            display: inline-block;
            background: var(--whiteColor);
            color: var(--blackColor);
            padding: 7px 15px;
            border: none;
            border-radius: 3px;
            font: {
                weight: 600;
                size: 14px !important;
            };
            margin: {
                top: 8px;
                right: 4px;
            };
            &:hover, &:focus {
                color: var(--whiteColor);
            }
        }
    }
    .widget_text {
        p {
            img {
                margin: 10px 0;
            }
        }
        .wp-caption-text {
            border: none;
            text-align: center;
            font-size: 13px;
        }
    }
    .calendar_wrap {
        table {
            margin: 0;
            width: 100%;
            th, td {
                font-size: 14px;
                padding: 8px 5px;
                a {
                    text-decoration: none;
                }
            }
           text-align: center;
            #today {
                background-color: #eee;
                font-weight: 800;
            }
        }
        caption {
            padding-top: 0;
            color: #393d40;
            caption-side: top;
            font-weight: 600;
        }
        .wp-calendar-nav-next {
            margin-top: 5px;
            float: right;
        }
        .wp-calendar-nav-prev {
            margin-top: 5px;
        }
    }
    .widget_nav_menu {
        .sub-menu {
            margin-top: 8px;
        }
    }
    .widget_recent_comments {
        .recentcomments {
            .comment-author-link {
                font-weight: 400;
                font-size: 14px;

                a {
                    font-weight: 500;
                }
            }
        }
    }
    .widget_media_gallery {
        .gallery {
            margin: 0;
            .gallery-item {
                margin: 0;
            }
        }
    }
    .widget_recent_entries {
        ul {
            li {
                a {
                    font-weight: 600;
                    font-size: 15.5px;

                }
                .post-date {
                    display: block;
                    font-size: 13px;
                    color: #767676;
                }
            }
        }
    }
    p {
        font-size: 14px;
    }
    span.post-count {
        float: right;
    }
}

.wpcf7-not-valid-tip {
    margin-top: 10px;
}

/*Unit Test CSS*/
.blog-details-area {

    .blog-details-content {
        .nice-select {
            width: 100%;
            margin-bottom: 10px;

            ul {
                padding-left: 0;
                margin-top: 10px;
                li {
                    list-style-type: none;
                    padding-top: 8px;
                    padding-left: 20px;
                }
            }
        }
        h1 {
            font-size: 40px;
            margin-bottom: 15px;
            font-weight: bold;
        }
        h2 {
            font-size: 35px;
            margin-bottom: 15px;
            font-weight: bold;
        }
        h3 {
            font-size: 30px;
            margin-bottom: 15px;
            font-weight: bold;
        }
        h4 {
            font-size: 25px;
            margin-bottom: 15px;
            font-weight: bold;
        }
        h5 {
            font-size: 20px;
            margin-bottom: 15px;
            font-weight: bold;
        }
        h6 {
            font-size: 18px;
            margin-bottom: 15px;
            font-weight: bold;
        }
        p {
            a {
                text-decoration: underline;
                &:hover {
                    text-decoration: none;
                }
            }
        }
        .entry-content {
            a {
                text-decoration: underline;
                &:hover {
                    text-decoration: none;
                }
            }
        }
        dl, ol, ul {
            margin-top: 20px;
            margin-bottom: 20px;
        }
        dt {
            margin-bottom: 5px;
            color: #0d1028;
        }
        dd {
            margin: 0 1rem 1rem;
            font-size: 15px;
            line-height: 26px;
            a {
                text-decoration: underline;
                &:hover {
                    text-decoration: none;
                }
            }
        }
        ul {
            list-style: disc;
            padding-left: 20px;
            li {
                list-style: disc;
                line-height: 1.8;
                margin-bottom: 5px;
                color: #737b9a;
                a {
                    text-decoration: underline;
                    &:hover {
                        text-decoration: none;
                    }
                }
                ol {
                    margin: 5px 0 0;
                    list-style-type: decimal;
                    li {
                        list-style-type: decimal;
                    }
                }

                ul {
                    margin: 5px 0 0;
                    list-style-type: circle;
                    li {
                        list-style-type: circle;

                        ol {
                            list-style-type: decimal;
                            li {
                                list-style-type: decimal;
                            }
                        }
                    }
                }
            }
        }
        ol {
            padding-left: 20px;
            li {
                line-height: 1.8;
                margin-bottom: 5px;
                color: #737b9a;
                a {
                    text-decoration: underline;
                    &:hover {
                        text-decoration: none;
                    }
                }
                ol, ul {
                    margin: 5px 0 0;
                }
            }
        }
        b, strong {
            font-weight: 800;
        }
        dfn, cite, em {
            font-style: italic;
        }
        code, kbd, tt, var {
            font-size: .88889em;
            font-family: Menlo,monaco,Consolas,Lucida Console,monospace;
        }
        kbd {
            background-color: #676767;
        }
        mark, ins {
            background: #fff9c0;
            text-decoration: none;
        }
        pre {
            font-size: .88889em;
            font-family: "Courier 10 Pitch",Courier,monospace;
            line-height: 1.8;
            overflow: auto;
        }
        abbr, acronym {
            border-bottom: 1px dotted #484848;
            cursor: help;
        }
        .wp-calendar-nav {
            margin-top: -40px;
            margin-bottom: 22px;
            .wp-calendar-nav-next {
                float: right;
            }
            .wp-calendar-nav-prev {
                float: left;
            }
        }
    }
    .blocks-gallery-caption {
        margin-bottom: 8px;
    }
    .wp-block-group__inner-container {
        padding: 30px;
    }
    .wp-block-archives-list {
        li {
            span.post-count {
                padding-left: 8px;
                float: right;
            }
        }
    }
    .wp-block-categories-dropdown {
        margin-bottom: 20px;
        select {
            height: 45px;
            border: 1px solid #eee;
            width: 100%;
            font-size: 14px;
            padding: 8px 15px;
            color: #555;
        }
    }
    .wp-block-tag-cloud {
        a {
            display: inline-block;
            background: var(--whiteColor);
            color: var(--blackColor);
            padding: 7px 15px;
            border: none;
            text-decoration: none !important;
            border-radius: 3px;
            font-weight: 600;
            font-size: 14px !important;
            margin-top: 8px;
            margin-right: 4px;
            &:hover, &:focus {
                color: var(--whiteColor) !important;
            }
        }
    }
    .wp-block-search {
        margin-bottom: 30px;
        position: relative;

        label {
            display: block;
            margin-bottom: 10px;
        }
        .screen-reader-text {
            display: none;
        }
        .wp-block-search__input {
            background-color: var(--whiteColor);
            height: 50px;
            padding: 6px 15px;
            border: 1px solid #eeeeee;
            width: 100%;
            max-width: 100%;
            display: block;
            outline: 0;
            transition: var(--transition);
        }
        button {
            position: absolute;
            right: 0;
            outline: 0;
            bottom: 0;
            height: 50px;
            width: 80px;
            z-index: 1;
            border: none;
            color: var(--whiteColor);
            transition: var(--transition);
            &:hover {
                color: var(--whiteColor);
                background: #393953 !important;
            }
        }
    }
}

/* Template: Comments */
.comments-area {
    .comments-title {
        margin-bottom: 25px;
        font-size: 22px;
        font-weight: bold;
        border-bottom: 1px solid #eee;
        position: relative;
        padding-bottom: 10px;
        &::before {
            content: '';
            height: 24px;
            width: 3px;
            left: -32px;
            position: absolute;
        }
    }
    .comment-content {
        h1 {
            font-size: 35px;
            margin-bottom: 15px;
        }
        h2 {
            font-size: 30px;
            margin-bottom: 15px;
        }
        h3 {
            font-size: 26px;
            margin-bottom: 15px;
        }
        h4 {
            font-size: 22px;
            margin-bottom: 15px;
        }
        h5 {
            font-size: 20px;
            margin-bottom: 15px;
        }
        h6 {
            font-size: 18px;
            margin-bottom: 15px;
        }
        p {
            margin-bottom: 10px;
            font-size: 14px;
            &:last-child {
                margin-bottom: 0;
            }
            a {
                text-decoration: underline;
                &:hover {
                    text-decoration: none;
                }
            }
        }
        .entry-content {
            a {
                text-decoration: underline;
                &:hover {
                    text-decoration: none;
                }
            }
        }
        dl, ol, ul {
            margin-top: 20px;
            margin-bottom: 20px;
        }
        dt {
            margin-bottom: 5px;
            color: #0d1028;
        }
        dd {
            margin: 0 1rem 1rem;
            font-size: 15px;
            line-height: 26px;
            a {
                text-decoration: underline;
                &:hover {
                    text-decoration: none;
                }
            }
        }
        ul {
            list-style: disc;
            padding-left: 20px;
            li {
                list-style: disc;
                line-height: 1.8;
                margin-bottom: 5px;
                ul {
                    margin: 5px 0 0;
                    list-style-type: circle;
                    li {
                        list-style-type: circle;
                    }
                }
            }
        }
        ol {
            padding-left: 20px;
            li {
                line-height: 1.8;
                margin-bottom: 5px;
                list-style-type: decimal;
                ol {
                    margin: 5px 0 0;
                }
            }
        }
        b, strong {
            font-weight: 600;
            color: #212529;
        }
        dfn, cite, em, i {
            font-style: italic;
        }
        code, kbd, tt, var {
            font-size: .88889em;
            font-family: Menlo,monaco,Consolas,Lucida Console,monospace;
        }
        kbd {
            background-color: #676767;
        }
        mark, ins {
            background: #fff9c0;
            text-decoration: none;
        }
        pre {
            font-size: .88889em;
            font-family: "Courier 10 Pitch",Courier,monospace;
            line-height: 1.8;
            overflow: auto;
            background: #fafafa;
        }
        abbr, acronym {
            border-bottom: 1px dotted #484848;
            cursor: help;
        }
    }
    blockquote {
        background-color: #fff;
        border-bottom: 1px solid #eee;
        border-top: 1px solid #eee;
        border-right: 1px solid #eee;
    }
}
/* End Template: Comments */

/* Comments list style */
#comments {
    clear: both;
    padding: 30px;
    margin-top: 30px;
    list-style: none;
    background-color: #fff;
    border: 1px solid #eee;
    .comment-list {
        margin: 0;
        padding: 0;
        list-style-type: none;
        .children {
            margin: 0;
            padding: 0;
            list-style-type: none;
        }
        &:before {
            display: none;
        }
        .comment-body {
            border-bottom: 1px solid #eee;
            margin-left: 65px;
            font-size: 14px;
            margin-bottom: 20px;
            padding-bottom: 20px;
            .comment-content {
                img {
                    margin: 7px 0;
                }
            }
            .reply {
                margin-top: 15px;
                a {
                    border: 1px dashed #ded9d9;
                    color: var(--blackColor);
                    display: inline-block;
                    padding: 5px 20px;
                    border-radius: 30px;
                    font-size: 13px;
                    font-weight: 700;
                    &:hover {
                        color: var(--whiteColor);
                    }
                }
            }
        }
    }
    .comment-author {
        font-size: 15px;
        margin-bottom: 0.4em;
        position: relative;
        text-transform: capitalize;
        z-index: 2;
        .avatar {
            height: 50px;
            left: -65px;
            position: absolute;
            width: 50px;
        }
        .says {
            display: none;
        }
        b.fn {
            font-weight: 600;
        }
    }
    .comment-meta {
        margin-bottom: 1em;
    }
    .comment-metadata {
        color: #615b5b;
        font-size: 11px;
        font-weight: 600;
        letter-spacing: 1px;
        a {
            color: #615b5b;
        }
        a.comment-edit-link {
            color: #222;
            margin-left: 1em;
        }
    }
    .comment-reply-link {
        font-weight: 600;
        position: relative;
        .icon {
            color: #222;
            left: -2em;
            height: 1em;
            position: absolute;
            top: 0;
            width: 1em;
        }
    }
    .children {
        padding-left: 10px !important;
        .comment-author {
            .avatar {
                height: 30px;
                left: -45px;
                width: 30px;
            }
        }
    }
    .bypostauthor > .comment-body > .comment-meta > .comment-author .avatar {
        border: 1px solid #575757;
        padding: 2px;
    }
   .no-comments,
   .comment-awaiting-moderation {
        color: #767676;
        font-size: 14px;
        font-size: 0.875rem;
        font-style: italic;
    }
    .comments-pagination {
        margin: 2em 0 3em;
    }
}
.comments-area {
    .comment-list {
        .comment {
            .comment-respond {
                margin-bottom: 30px;
            }
        }
    }
}
/* End Comments list style */

/* Comment form */
.comment-respond {
    .comment-reply-title {
        margin-bottom: 15px;
        font-size: 18px;
        font-weight: bold;
        border-bottom: 1px solid #eee;
        position: relative;
        text-transform: capitalize;
        padding-bottom: 10px;
        &::before {
            content: '';
            height: 24px;
            width: 3px;
            left: -32px;
            position: absolute;
        }
        #cancel-comment-reply-link {
            margin-left: 12px;
        }
    }
    form {
        overflow: hidden;
        label {
            display: block;
            font-weight: 800;
            color: #444967;
            margin-bottom: 10px
        }
    }
    input[type="date"], input[type="time"], input[type="datetime-local"], input[type="week"], input[type="month"], input[type="text"], input[type="email"], input[type="url"], input[type="password"], input[type="search"], input[type="tel"], input[type="number"], textarea {
        display: block;
        width: 100%;
        border: none;
        height: 50px;
        outline: 0;
        font-size: 14.5px;
        border-radius: 3px;
        color: var(--blackColor);
        padding: 1px 0 0 15px;
        background-color: #f5f5f5;
    }
    textarea {
        height: auto !important;
    }
    .form-submit {
        text-align: left;
        margin-top: 0;
        line-height: 1.8;
        margin-top: 20px;
        input {
            border: none;
            color: var(--whiteColor);
            padding: 12px 30px 10px;
            display: inline-block;
            cursor: pointer;
            text-transform: capitalize;
            -webkit-transition: var(--transition);
            transition: var(--transition);
            border-radius: 0;
            font-weight: 700;
            font-size: var(--fontSize);
            &:hover {
                color: var(--whiteColor);
            }
        }
    }
    input, textarea {
        padding-top: 15px;
        &:focus {
            outline: thin dotted !important;
        }
    }
    p {
        line-height: 1;
        margin-bottom: 0;
        margin-top: 15px;
    }
    .comment-form-cookies-consent {
        label {
            display: inline-block;
            margin: 0;
            line-height: 20px;
            font-weight: normal;
            font-size: 14px;
        }
    }
    p.comment-notes {
        line-height: 25px;
        font-size: 14px;
        margin-top: 5px;
    }
    p.comment-form-comment {
        float: left;
        width: 100%;
        margin-bottom: 0;
    }
    p.comment-form-author {
        width: 50%;
        float: left;
        padding-right: 12px;
        margin-bottom: 0;
    }
    p.comment-form-email {
        width: 50%;
        float: left;
        padding-left: 12px;
        margin-bottom: 0;
    }
    p.comment-form-url {
        float: left;
        width: 100%;
        margin-bottom: 0;
    }
    p.comment-form-cookies-consent {
        width: 100%;
        float: left;
        position: relative;
        padding-left: 20px;
        input {
            position: absolute;
            left: 0;
            top: 3px;
        }
    }
    p.form-submit {
        float: left;
        width: 100%;
    }
    p.logged-in-as {
        line-height: 26px;
        font-size: 15px;
        margin-top: 15px !important;
        margin-bottom: 10px;
        a {
            text-decoration: underline;
            font-size: 13.5px;
            &:hover {
                text-decoration: none;
            }
        }
    }
    .required {
        color: red;
    }
}
/* End Comment form */

/* Unit test all post style */
.wp-block-image {
    margin-bottom: 20px;
    figcaption {
        font-size: 14px;
        margin-top: 12px;
        text-align: center;
        color: #737b9a;
        a {
            text-decoration: underline;
            &:hover {
                text-decoration: none;
            }
        }
    }
}
.wp-block-button {
    margin: 20px 0;
    clear: both;
    .wp-block-button__link {
        font-size: 16px;
        border-radius: 5px;
        br {
            display: none;
        }
        color: #fff !important;
        &:hover {
            background-color: #222;
            color: #fff;
        }
    }
}
.is-style-squared {
    .wp-block-button__link {
        border-radius: 0;
    }
}
.is-style-outline {
    .wp-block-button__link {
        background-color: transparent !important;
        font-size: 16px;
        border-radius: 5px;
        color: #32373c !important;
        border: 2px solid;
        &:hover {
            background-color: transparent;
        }
    }
}
pre.wp-block-code {
    border: 1px solid #eee;
    padding: 10px 15px;
}
pre.wp-block-preformatted {
    background-color: #fafafa;
    padding: 20px;
    margin: 20px 0;
}
.wp-block-pullquote {
    border-top: 4px solid #555d66;
    border-bottom: 4px solid #555d66;
    color: #40464d;
    border-color: transparent;
    border-width: 2px;
    padding: 0;
    blockquote {

        color: #737b9a;
        border: none;
        margin-right: 0;
        padding-left: 0;
        p {
            font-size: 2.25em;
            font-style: italic;
        }
        cite {
            display: inline-block;
            font-family: -apple-system,BlinkMacSystemFont,"Segoe UI","Roboto","Oxygen","Ubuntu","Cantarell","Fira Sans","Droid Sans","Helvetica Neue",sans-serif;
            line-height: 1.6;
            text-transform: none;
            color: #767676;
            font-size: 15px;
            font-style: normal;
        }
    }
}
.wp-block-table.is-style-stripes td {
    border-color: #eaeaea;
}
.wp-block-verse {
    font-family: "Poppins", sans-serif !important;
    font-size: 16px !important;
}
.wp-block-columns {
    margin-top: 20px;
    margin-bottom: 20px;
}
.wp-block-media-text {
    margin-top: 30px;
    margin-bottom: 30px;
    .has-large-font-size {
        font-size: 25px;
        margin-top: 0 !important;
    }
}
.page-links {
    margin-top: 20px;
    margin-bottom: 20px;
    clear: both;
    span.page-links-title {
        font-weight: 800;
        font-size: 20px;
        padding-right: 10px;
    }
    .post-page-numbers{
        width: 35px;
        height: 35px;
        border-radius: 25px;
        background-color: #ffffff;
        border: 1px solid #eee;
        font-size: 15px;
        line-height: 35px;
        color: #0a0c19;
        text-align: center;
        display: inline-block;
        margin-left: 5px;
        text-decoration: none !important;
        &:hover {
            color: #ffffff;
        }
    }
    .current {
        color: #ffffff;
    }
}
.wp-block-archives-list {
    padding: 0 !important;
    li {
        list-style: none !important;
        a {
            &:hover {
                text-decoration: underline;
            }
        }
    }
}
.wp-block-categories-list {
    padding: 0 !important;
    li {
        list-style: none !important;
        a {
            text-transform: capitalize;
            &:hover {
                text-decoration: underline;
            }
        }
        span.post-count {
            padding-left: 8px;
        }
        .children {
            li {
                a {
                    position: relative;
                    &::before {
                        content: '-';
                        position: absolute;
                        left: -13px;
                        top: -2px;
                    }
                }
            }
        }
    }
}
.wp-block-archives-dropdown {
    margin-bottom: 20px;
    select {
        height: 45px;
        border: 1px solid #eee;
        width: 100%;
        font-size: 14px;
        padding: 8px 15px;
    }
}
.wp-block-latest-comments {
    padding: 0 !important;
    .wp-block-latest-comments__comment-meta {
        a {
            font-weight: 800;
            text-decoration: underline;
            &:hover {
                text-decoration: none;
            }
        }
    }
}
.wp-block-latest-posts {
    li {
        a {
            font-weight: 800;
        }
    }
}
.blog-details-area  {
    iframe, video {
        width: 100%;
    }
    .post-tag-media {
        background-color: #ffffff;
        clear: both;
        margin-top: 20px;
        padding: 10px 25px;
        clear: both;

        ul {
            padding: 0;
            li {
                display: inline-block;
                margin: 5px 0;
                span {
                    font-weight: 600;
                    margin-right: 5px;
                    display: inline-block;
                }
                a {
                    color: #606060 !important;
                    margin-left: 5px;
                    text-transform: capitalize;
                    font-size: 13px;
                    border: 1px solid #ececec;
                    padding: 3px 15px;
                    border-radius: 30px;
                    display: inline-block;
                    text-decoration: none !important;
                    background-color: #fff;
                    &:hover {
                        color: #ffffff !important;
                    }
                }
            }
        }
    }

}
.wp-block-gallery  {
    padding: 0 !important;
    margin-bottom: 5px !important;
    .blocks-gallery-item {
        margin-bottom:  15px !important;
    }
    .blocks-gallery-grid {
        padding: 0 !important;
        margin-top: 10px !important;
        margin-bottom: 5px !important;
    }
}
.wp-block-cover {
    margin-top: 30px;
    margin-bottom: 30px;
    p.wp-block-cover-text {
        font-weight: 400;
        margin-bottom: 20px !important;
        font-size: 30px !important;
        line-height: 1.5;
        color: #fff;
        strong {
            color: #fff;
        }
    }
}
.wp-block-cover.has-background-dim.alignleft {
    margin-top: 0;
}
.wp-block-cover.has-background-dim-60.has-background-dim {
    .wp-block-cover-text {
        a {
            color: #fff;
        }
    }
}
.wp-block-file {
    a {
        text-decoration: underline;
        font-size: 15px;
        &:hover {
            text-decoration: none;
        }
    }
    .wp-block-file__button {
        border-radius: 4px !important;
        font-size: 14px !important;
        font-weight: 800;
        display: table;
        margin: 15px 0 0;
        &:hover {
            background-color: #000 !important;
            color: #fff;
        }
    }
}
.wp-block-quote.is-style-large {
    border: none;
    padding-left: 0;
    margin: 20px 0;
}
.has-cyan-bluish-gray-background-color.has-cyan-bluish-gray-background-color {
    p {
        color: var(--blackColor);
    }
    cite {
        color: var(--blackColor);
        font-style: normal;
    }
    blockquote {
        max-width: 80%;
        background: transparent;
        &::before {
            left: 0;
            top: -11px;
            font-size: 75px;
        }
        &::after{
            display: none;
        }
    }
}
.wp-block-gallery.alignwide {
    width: 100%;
}
.wp-caption {
    .wp-caption-text {
        font-size: 14px;
        line-height: 20px;
        margin: 0;
        text-align: center;
        padding: 15px 0 0;
        a {
            text-decoration: underline;
            &:hover {
                text-decoration: none;
            }
        }
    }
}
.has-very-light-gray-color.has-very-light-gray-color {
    color: #fff;
}

.gallery-caption{z-index: 99990;}
.bypostauthor{z-index: 99990;}
/* End Unit test all post style */

/* Post Format: Gallery */
.gallery {
	margin: 30px -1.1666667% 0;
}
.gallery-item {
	display: inline-block;
	max-width: 33.33%;
	padding: 0 1.1400652% 2.2801304%;
	text-align: center;
	vertical-align: top;
	width: 100%;
}
.gallery-columns-1 .gallery-item {
	max-width: 100%;
}
.gallery-columns-2 .gallery-item {
	max-width: 50%;
}
.gallery-columns-4 .gallery-item {
	max-width: 25%;
}
.gallery-columns-5 .gallery-item {
	max-width: 20%;
}
.gallery-columns-6 .gallery-item {
	max-width: 16.66%;
}
.gallery-columns-7 .gallery-item {
	max-width: 14.28%;
}
.gallery-columns-8 .gallery-item {
	max-width: 12.5%;
}
.gallery-columns-9 .gallery-item {
	max-width: 11.11%;
}
.gallery-icon img {
	margin: 0 auto;
}
.gallery-caption {
	display: block;
	font-size: 13px;
	font-style: italic;
	line-height: 1.6153846154;
    padding-top: 10px;
}
.gallery-columns-6 .gallery-caption,
.gallery-columns-7 .gallery-caption,
.gallery-columns-8 .gallery-caption,
.gallery-columns-9 .gallery-caption {
	display: none;
}
/* End Post Format: Gallery */

/* Pingback style */
.comments-area {
    .comment-list {
        .trackback {
            .comment-body {
                margin-left: 0 !important;
                font-size: 15px !important;
                a {
                    text-decoration: underline;
                    color: red;
                    &:hover {
                        text-decoration: none;
                    }
                }
            }
            a.url {
                margin-top: 5px;
                font-size: 14px;
            }
        }
        .pingback {
            .comment-body {
                margin-left: 0 !important;
                font-size: 15px !important;
                a {
                    color:red;
                    text-decoration: underline;
                    &:hover {
                        text-decoration: none;
                    }
                }
            }
            a.url {
                margin-top: 5px;
                font-size: 14px;
            }
        }
    }
}
/* End Pingback style */

/* Post password form style */
.post-password-form {
    label {
        font-weight: 600;
        font-size: 15px;
        input {
            border: 1px solid #ccc;
            height: 45px;
            margin: 0 10px;
            padding: 6px 15px;
            &:focus {
                outline: thin dotted !important;
            }
        }
    }
    input[type="submit"] {
        border: 1px solid;
        color: #fff;
        height: 45px;
        padding: 5px 20px;
        font-weight: 600;
        transition: 0.4s;
        cursor: pointer;
        &:hover {
            border: 1px solid;
            color: #fff;
        }
    }
}
/* End Post password form style */

/* Comment navigation */
.comment-navigation {
    .nav-previous {
        margin-bottom: 25px;
        a {
            border: 1px solid #eee;
            background: #fff;
            padding: 8px 18px;
            font-size: 15px;
            display: inline-block;
            padding-top: 7px;
            &:hover {
                color: #fff;
            }
        }
    }
    .nav-next {
        margin-bottom: 25px;
        a {
            border: 1px solid #eee;
            background: #fff;
            padding: 7px 18px;
            font-size: 15px;
            display: inline-block;
            padding-top: 7px;
            &:hover {
                color: #fff;
            }
        }
    }
}
/* End Comment navigation */

/* Post search not found form */
.no-results {
    h1.page-title {
        font-size: 25px;
    }
    form {
        position: relative;
        .search-submit {
            position: absolute;
            cursor: pointer;
            top: 0;
            right: 0;
            border: none;
            color: #fff;
            font-size: 15px;
            height: 50px;
            padding: 05px 15px;
            &:hover {
                background-color: #222;
                color: #fff;
            }
        }
    }
}
/* End Post search not found form */

/* Resent posts with thumb */
.widget_guto-lite_posts_thumbs {
    position: relative;

    .item {
        position: relative;
        padding-left: 95px;

        .thumb {
            top: 0;
            left: 0;
            width: 80px;
            float: unset;
            height: 80%;
            display: block;
            position: absolute;
            border-radius: 0 0 15px 15px;
            border-bottom: 3px solid #d6d6d6;

            .fullimage {
                width: 80px;
                height: 100%;
                display: inline-block;
                border-radius: 0 0 15px 15px;
                background: {
                    size: cover !important;
                    repeat: no-repeat;
                    position: center center !important;
                };
            }
            &::before, &::after {
                transition: all .8s cubic-bezier(.2, 1, .22, 1);
                content: '';
                background-color: var(--whiteColor);
                position: absolute;
                z-index: 1;
                top: 50%;
                left: 50%;
                opacity: 0;
                transform: translate(-50%, -50%);
            }
            &::before {
                width: 40px;
                height: 1px;
                left: 100%;
            }
            &::after {
                height: 40px;
                width: 1px;
                top: 0;
            }
        }
        .info {
            .title {
                margin-bottom: 7px;
                line-height: 1.4;
                font: {
                    size: 16px;
                    weight: 700;
                };
                a {
                    display: inline-block;
                }
            }
            .meta {
                padding-left: 0;
                margin-bottom: 0;
                list-style-type: none;

                li {
                    display: inline-block;
                    margin-right: 15px;
                    overflow: inherit;
                    list-style-type: none;
                    color: #a0aec0;
                    position: relative;
                    padding-left: 18px;
                    font-size: 12px;

                    i {
                        position: absolute;
                        left: 0;
                        top: 3px;
                    }
                    a {
                        display: inline-block;
                        color: #a0aec0;

                        &:hover {
                            color: var(--mainColor);
                        }
                    }
                    &:last-child {
                        margin-right: 0;
                    }
                    &::before{
                        display: none;
                    }
                }
            }
        }
        &:last-child {
            margin-bottom: 0;
        }
        &:hover {
            .thumb {
                &::before, &::after {
                    opacity: 1;
                    top: 50%;
                    left: 50%;
                }
            }
        }
    }
    .no-thumb {
        .info {
            time {
                margin-top: 0;
            }
        }
    }
}
/* End Resent posts with thumb */

/* Unit test pages style
====================================================================*/
/* WP core style */
.alignnone {
	display: block;
    margin-bottom: 15px;
}
.aligncenter, div.aligncenter {
    display: block;
    margin: 15px auto 15px auto;
}
.alignright {
    float:right;
    margin: 5px 0 20px 20px;
}
.alignleft {
    float: left;
    margin: 5px 20px 20px 0;
}
a img.alignright {
    float: right;
    margin: 5px 0 20px 20px;
}
a img.alignnone {
    margin: 5px 20px 20px 0;
}
a img.alignleft {
    float: left;
    margin: 5px 20px 20px 0;
}
a img.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.wp-caption {
    max-width: 100%;
}
.wp-caption.alignnone {
    margin: 15px auto 10px;
}
.wp-caption.alignleft {
    margin: 5px 20px 20px 0;
}
.wp-caption.alignright {
    margin: 5px 0 20px 20px;
}
.wp-caption img {
    border: 0 none;
    height: auto;
    margin: 0;
    max-width: 100%;
    padding: 0;
    width: auto;
}
.wp-caption p.wp-caption-text {
    font-size: 13px;
    line-height: 17px;
    margin: 0;
    padding: 0 4px 5px;
}

/* End WP core style */

/* Page Markup And Formatting */
.page-main-content {
    padding-top: 70px;
    padding-bottom: 70px;
    overflow: hidden;
    h1 {
        font-size: 35px;
        margin-bottom: 15px;
        font-weight: bold;
    }
    h2 {
        font-size: 30px;
        margin-bottom: 15px;
        font-weight: bold;
    }
    h3 {
        font-size: 25px;
        margin-bottom: 15px;
        font-weight: bold;
    }
    h4 {
        font-size: 20px;
        margin-bottom: 15px;
        font-weight: bold;
    }
    h5 {
        font-size: 18px;
        margin-bottom: 15px;
        font-weight: bold;
    }
    h6 {
        font-size: 15px;
        margin-bottom: 15px;
        font-weight: bold;
    }
    p {
        margin-top: 20px;
        margin-bottom: 20px;
        &:first-child {
            margin-top: 0;
        }
        img.size-full.wp-image-904.alignright {
            margin: 15px 0 20px 20px;
        }
    }
    .entry-content {
        a {
            text-decoration: underline;
            &:hover {
                text-decoration: none;
            }
        }
    }
    footer.entry-footer {
        clear: both;
        .edit-link {
            margin-top: 10px;
            margin-bottom: 10px;
            display: block;
        }
    }
    dl, ol, ul {
        margin-top: 20px;
        margin-bottom: 20px;
    }
    dt {
        margin-bottom: 5px;
        color: #0d1028;
    }
    dd {
        margin: 0 1rem 1rem;
        font-size: 15px;
        line-height: 26px;
    }
    ul {
        list-style: disc;
        padding-left: 20px;
        li {
            list-style: disc;
            line-height: 1.8;
            margin-bottom: 5px;
            ul {
                margin: 5px 0 0;
                list-style-type: circle;
                li {
                    list-style-type: circle;
                }
            }
        }
    }
    ol {
        padding-left: 20px;
        li {
            line-height: 1.8;
            margin-bottom: 5px;
            ol {
                margin: 5px 0 0;
            }
        }
    }
    b, strong {
        color: #212529;
    }
    dfn, cite, em, i {
        font-style: italic;
    }
    code, kbd, tt, var {
        font-size: .88889em;
        font-family: Menlo,monaco,Consolas,Lucida Console,monospace;
    }
    kbd {
        background-color: #616161;
    }
    mark, ins {
        background: #fff9c0;
        text-decoration: none;
    }
    pre {
        font-size: .88889em;
        font-family: "Courier 10 Pitch",Courier,monospace;
        line-height: 1.8;
        background: #f1f1f1;
        overflow: auto;
    }
    abbr, acronym {
        border-bottom: 1px dotted #484848;
        cursor: help;
    }
}
address {
    margin: 20px 0;
    font-style: italic;
    line-height: 30px;
}

table {
    margin: 0 0 2rem;
    border-collapse: collapse;
    width: 100%;
    font-family: -apple-system,BlinkMacSystemFont,"Segoe UI","Roboto","Oxygen","Ubuntu","Cantarell","Fira Sans","Droid Sans","Helvetica Neue",sans-serif;
    td, th {
        padding: 12px 10px;
        border: 1px solid #eaeaea;
    }
    td {
        a {
            font-weight: 600;
            text-decoration: underline;
            &:hover {
                text-decoration: none;
            }
        }
    }
    th {
        a {
            text-decoration: underline;
            &:hover {
                text-decoration: none;
            }
        }
    }
    tbody {
        tr {
            th {
                font-weight: 600;
            }
        }
    }
}
.guto-lite-single-blank-page {
    height: 320px;
}
/* End Page Markup And Formatting */

.wp-block-gallery.columns-2.is-cropped.alignleft.extraclass {
    .blocks-gallery-grid{
        margin-top: 0 !important;
    }
    margin-top: 7px !important;
}

a.wp-block-file__button {
    color: #fff !important;
}

.navbar-area.hide-adminbar.is-sticky {
    top: 32px;
}

.dropdown-toggle::after {
    display: none;
}

.guto-lite-nav .navbar .navbar-brand {
    font-size: 25px;
    font-weight: 900;
}

/* Post search not found form */
.no-results {
    -webkit-box-shadow: 0px 0px 29px 0px rgba(102, 102, 102, 0.1);
    box-shadow: 0px 0px 29px 0px rgba(102, 102, 102, 0.1);
    background-color: var(--whiteColor);
    padding: 35px;

    h1.page-title {
        font-size: 25px;
        font-weight: 600;
        margin-bottom: 5px;
    }
    form {
        position: relative;

        label {
            display: block;
            margin-bottom: 0;
        }
        .screen-reader-text {
            display: none;
        }
        .search-field {
            background-color: #f6f4f7;
            height: 50px;
            padding: 6px 15px;
            border: 1px solid #f6f4f7;
            width: 100%;
            display: block;
            outline: 0;
            transition: var(--transition);
        }
        button {
            position: absolute;
            right: 0;
            bottom: 0;
            padding: 0;
            height: 50px;
            width: 50px;
            z-index: 1;
            font-size: 20px;
            line-height: 55px;
            transition: var(--transition);
            border: none;
            color: var(--whiteColor);
            border-radius: 5px;
        }
    }
}

.is-style-solid-color {
    blockquote {
        p, cite {
            margin-left: 29px;
        }
    }
}

.wp-block-audio audio {
    min-width: 250px;
}

.footer-area {
    .single-footer-widget {
        margin-bottom: 30px;
        img.alignnone.size-full {
            margin: 15px 0 30px;
        }
        p {
            color: #e4e4e4 !important;
        }
        ul {
            padding-left: 17px;
            list-style-type: none;
            margin: 0;
            li {
                position: relative;
                margin-bottom: 8px;
                line-height: 1.8;
                color: #e4e4e4 !important;
                &:last-child {
                    margin-bottom: 0;
                }
                &::before {
                    height: 7px;
                    width: 7px;
                    content: '';
                    background: #e4e4e4;
                    left: -17px;
                    top: 10px;
                    position: absolute;
                }
                a {
                    color: #e4e4e4 ;
                    transition: prop time;
                }
            }
        }
        .item .info time {
            color: #d3d3d3;
        }
    }
    .widget_search {
        form {
            position: relative;

            label {
                display: block;
                margin-bottom: 0;
            }
            .screen-reader-text {
                display: none;
            }
            .search-field {
                background-color: white;
                height: 50px;
                padding: 6px 15px;
                border: 1px solid #eeeeee;
                width: 100%;
                display: block;
                outline: 0;
                transition: 0.4s;
            }
            button {
                position: absolute;
                right: 0;
                bottom: 0;
                height: 50px;
                width: 50px;
                color: #fff;
                z-index: 1;
                border: 1px solid #ffffff;
                transition: 0.4s;

                &::before {
                    content: '';
                    position: absolute;
                    left: 0;
                    width: 100%;
                    height: 100%;
                    z-index: -1;
                    top: 0;
                    transition: 0.4s;
                }
                &::after {
                    content: '';
                    position: absolute;
                    left: 0;
                    width: 100%;
                    height: 100%;
                    z-index: -1;
                    top: 0;
                    transition: 0.4s;
                    opacity: 0;
                    visibility: hidden;
                }
                &:hover {
                    &::before {
                        opacity: 0;
                        visibility: hidden;
                    }
                    &::after {
                        opacity: 1;
                        visibility: visible;
                    }
                }
            }
        }
    }
    select {
        height: 45px;
        border: 1px solid #fff;
        width: 100%;
        color: #fff;
        font-size: 15px;
        padding: 8px 15px;
    }
    .nice-select {
        float: unset;
        word-break: break-word;
        width: 100%;
        white-space: inherit;

        .option {
            padding-top: 8px;
			padding-bottom: 5px;
			&:hover {
				background-color: #efefef;
			}
        }

        ul li::before {
            display: none;
        }
        ul {
            padding-top: 12px;

            li {
                margin-bottom: 0px;
            }
        }
        .option.selected.focus {
            display: none;
        }

        .list {
            padding-left: 0;
            margin-bottom: 0;
            list-style-type: none;
        }
	}
	.calendar_wrap a {
		color: #fff;
	}
	.widget_rss {
		img {
			margin-bottom: 0;
		}
		.rsswidget {
			color: #fff;
		}
	}
    .widget_categories {
        ul {
            li {
                a {
                    display: inline-block;
                    text-transform: capitalize;
                }
                .children {
                    margin-top: 10px;
                }
            }
        }
    }
    .widget_pages {
        ul {
            li.page_item_has_children {
                > a {
                    margin-bottom: 10px;
                    display: inline-block;
                }
            }
            li {
                a {
                    text-transform: capitalize;
                }
            }
        }
    }
    .widget_rss {
        ul {
            li {
                margin-bottom: 20px;
                &::before {
                    top: 10px;
                }
                &:last-child {
                    margin-bottom: 0;
                }
                .rsswidget {
                    display: block;
                    font-size: 17px;
                    color: #e4e4e4;
                    transition: prop time;
                    font-weight: 600;
                }
                .rss-date {
                    font-size: 12px;
                    margin: 7px 0 10px;
                    display: block;
                    text-transform: capitalize;
                    letter-spacing: 1px;
                    color: #e4e4e4 !important;
                }
                cite {
                    color: #e4e4e4 !important;
                    display: block;
                    margin-top: 10px;
                    font-style: normal;
                }
                .rssSummary {
                    color: #e4e4e4 !important;
                }
            }
        }
    }
    .tagcloud {
        a {
            border: 1px solid #eee;
            display: inline-block;
            padding: 5px 10px;
            font-size: 14px !important;
            margin: 5px 5px 5px 0;
            text-transform: capitalize;
            background: #fff;
            &:hover {
                color: #fff !important;
            }
        }
    }
    .widget_text {
        p {
            margin-top: 5px;
            &:first-child {
                margin-top: 0;
            }
            strong {
                font-size: 14px;
            }
            img {
                margin: 10px 0;
                max-width: 100%;
                width: auto;
            }
        }
    }
    .calendar_wrap {
        table {
            text-align: center;
            margin: 0;
            background: #fff;

            caption {
                color: #fff;
            }

            th, td {
                font-size: 14px;
                padding: 8px 5px;
                a {
                    text-decoration: none;
                }
            }
            #today {
                text-decoration: none;
                font-weight: 400;
                a {
                    text-decoration: none;
                }
            }
            #prev, #next {
                font-size: 14px;
                a {
                    text-decoration: none;
                }
            }
        }
        caption {
            caption-side: top;
            font-weight: 600;
            padding: 0 0 15px;
            line-height: 1;
            color: #e4e4e4;
        }
    }
    .widget_nav_menu {
        .sub-menu {
            margin-top: 8px;
        }
    }
    .widget_recent_comments {
        .recentcomments {
            .comment-author-link {
                font-size: 14px;
            }
            a {
                color: #e4e4e4 !important;
            }
        }
    }
    .widget_media_gallery {
        .gallery {
            margin: 0;
            .gallery-item {
                margin: 0;
            }
        }
    }
    .widget_recent_entries {
        ul {
            li {
                line-height: 1.5;
                a {
                    font-weight: 600;
                    font-size: 15.5px;
                    color: #e4e4e4 !important;
                }
                .post-date {
                    display: block;
                    font-size: 13px;
                    color: #fff;
                    margin-top: 5px;
                }
            }
        }
    }
    span.post-count {
        float: right;
        color: #e4e4e4 !important;
    }
    img.rss-widget-icon {
        margin-top: -5px;
    }

    .nice-select {
        .current {
            display: block;
            padding-top: 1px;
        }
        ul {
            li {
                color: #0c0c0c !important;
                text-transform: capitalize;
            }
        }
    }
}

span.wp-calendar-nav-prev {
    position: relative;
    top: 8px;
}
.wp-calendar-nav-next {
    position: relative;
    top: 8px;
}

.footer-area {
    .single-footer-widget {
        margin-bottom: 30px;

        .logo {
            display: inline-block;
            margin-bottom: 25px;
        }
        p {
            color: #dddddd;
        }
        .social-links {
            padding-left: 0;
            list-style-type: none;
            margin: {
                bottom: 0;
                top: 20px;
            };
            li {
                display: inline-block;
                margin-right: 5px;

                a {
                    display: block;
                    background-color: #373737;
                    width: 35px;
                    height: 35px;
                    text-align: center;
                    color: var(--whiteColor);
                    font-size: 18px;
                    border-radius: 2px;
                    position: relative;

                    i {
                        position: absolute;
                        left: 0;
                        right: 0;
                        top: 50%;
                        transform: translateY(-50%);
                    }
                    &:hover {
                        color: var(--whiteColor);
                    }
                }
                &:last-child {
                    margin-right: 0;
                    margin-bottom: 8px;

                }
                &::before {
                    display: none;
                }
            }
        }
        h3 {
            color: var(--whiteColor);
            font-size: 22px;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 7px;

            &::before {
                height: 2px;
                width: 45px;
                content: '';
                position: absolute;
                left: 0;
                bottom: 0;
            }
        }
        .links-list {
            padding-left: 0;
            margin-bottom: 0;
            list-style-type: none;

            li {
                margin-bottom: 12px;

                a {
                    display: inline-block;
                    color: #dddddd;
                    font-weight: 600;
                }
            }
        }
        .footer-contact-info {
            padding-left: 0;
            margin-bottom: 0;
            list-style-type: none;

            li {
                margin-bottom: 12px;
                color: #dddddd;

                span {
                    color: var(--whiteColor);
                    font-weight: 600;
                }
                a {
                    color: #dddddd;
                }
                &::before {
                    display: none;
                }
            }
        }
    }
}

/*================================================
Top Header Area CSS
=================================================*/
.top-header-area {
    background-color: #f9f9f9;
    padding: {
        top: 12px;
        bottom: 12px;
    };
    .container-fluid {
        padding: {
            left: 35px;
            right: 35px;
        };
    }
}
.top-header-contact-info {
    padding-left: 0;
    margin-bottom: 0;
    list-style-type: none;

    li {
        display: inline-block;
        margin-right: 20px;
        position: relative;
        font-weight: 600;
        padding-left: 25px;

        i {
            position: absolute;
            left: 0;
            top: 1px;
            font-size: 17px;

            &.bx-envelope {
                top: 1.5px;
            }
        }
        a {
            display: block;
        }
        &:last-child {
            margin-right: 0;
        }
    }
}
.top-header-right {
    text-align: right;

    ul {
        list-style-type: none;
        padding-left: 0;
        margin-bottom: 0;

        li {
            margin-right: 20px;
            position: relative;
            font-weight: 600;
            padding-left: 25px;

            i {
                position: absolute;
                left: 0;
                top: 1.5px;
                font-size: 17px;
            }
            a {
                display: block;
            }
            &:last-child {
                margin-right: 0;
            }
            .language-switcher {
                margin-right: -3px;

                .dropdown-toggle {
                    padding: 0;
                    border: none;
                    background-color: transparent;

                    &::after {
                        display: none;
                    }
                    img {
                        width: 35px;
                        border-radius: 5px;
                        border: 3px solid var(--whiteColor);
                        position: relative;
                        top: -2px;
                    }
                    span {
                        display: inline-block;
                        margin-left: 3px;
                        font-weight: 600;

                        i {
                            position: relative;
                            font-size: 18px;
                            top: 4px;
                            margin-left: -3px;
                        }
                    }
                }
                .dropdown-menu {
                    opacity: 0;
                    float: unset;
                    border: none;
                    padding: 15px;
                    display: block;
                    border-radius: 0;
                    margin-top: 12px;
                    visibility: visible;
                    transform: scaleX(0);
                    transition: var(--transition);
                    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);

                    .dropdown-item {
                        padding: 0;
                        color: var(--blackColor);
                        margin-bottom: 10px;
                        font-weight: 600;

                        &:last-child {
                            margin-bottom: 0;
                        }
                        img {
                            width: 40px;
                            border-radius: 5px;
                            border: 3px solid var(--whiteColor);
                        }
                        span {
                            display: inline-block;
                            margin-left: 8px;
                        }
                        &:hover, &:focus {
                            background-color: transparent !important;
                        }
                        &:active, &.active {
                            color: var(--blackColor);
                            background-color: transparent;
                        }
                    }
                    &.show {
                        opacity: 1;
                        visibility: visible;
                        transform: scaleX(1);
                    }
                }
            }
            &:nth-child(1) {
                padding-left: 0;
            }
        }
    }
}

/*================================================
Categories Area CSS
=================================================*/
.single-categories-box {
    margin-bottom: 30px;
    position: relative;
    text-align: center;
    overflow: hidden;

    img {
        transition: var(--transition);
    }
    .default-btn {
        background-color: var(--whiteColor);
        color: var(--blackColor);
        position: absolute;
        left: 25px;
        bottom: 25px;
        border: 1px solid var(--blackColor);
    }
    h3 {
        top: 18%;
        left: 25px;
        font-size: 25px;
        margin-bottom: 0;
        position: absolute;
        transform-origin: top left;
        transform: rotate(-90deg) scaleX(-1);

        span {
            transform: scaleX(-1);
            display: block;
        }
    }
    &:hover {
        img {
            transform: scale(1.04);
        }
        .default-btn {
            background-color: var(--blackColor);
            color: var(--whiteColor);
            border-color: var(--blackColor);
        }
    }
}
.single-categories-item {
    margin-bottom: 30px;
    overflow: hidden;
    position: relative;

    img {
        transition: var(--transition);
    }
    .content {
        position: absolute;
        left: 40px;
        top: 50%;
        transform: translateY(-50%);

        h3 {
            font-size: 22px;
            margin-bottom: 20px;
        }
        .default-btn {
            background-color: var(--whiteColor);
            color: var(--blackColor);
            border: 1px solid var(--blackColor);

            &:hover {
                background-color: var(--blackColor);
                color: var(--whiteColor);
            }
        }
    }
    &:hover {
        img {
            transform: scale(1.04);
        }
    }
}

/*================================================
Promotions Area CSS
=================================================*/
.promotions-content {
    img {
        margin-bottom: 25px;
    }
    h2 {
        font-size: 36px;
        margin-bottom: 12px;
        max-width: 700px;
    }
    p {
        max-width: 700px;
    }
    .default-btn {
        margin-top: 5px;
    }
}
.promotions-image {
    height: 100%;
    background: {
        position: center center;
        size: cover;
        repeat: no-repeat;
    };
    img {
        display: none;
    }
}
.promotions-text {
    background-color: #fafafa;
    text-align: center;
    padding: {
        left: 15px;
        right: 15px;
        top: 65px;
        bottom: 65px;
    };
    h1 {
        line-height: 1;
        font: {
            size: 90px;
            weight: 600;
        };
        margin: {
            bottom: 35px;
            top: -10px;
        };
        span {
            display: block;
            color: var(--paragraphColor);
            font: {
                size: 30px;
                weight: 400;
            };
        }
    }
    p {
        line-height: initial;
        font-size: 21px;
    }
    .default-btn {
        margin-top: 5px;
    }
}

/*================================================
Instagram Area CSS
=================================================*/
.instagram-area {
    .section-title {
        text-align: left;
        max-width: 100%;
        margin: {
            bottom: 0;
            top: -8px;
        };
    }
}
.instagram-item {
    position: relative;

    &::before {
        content: '';
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        background-color: var(--blackColor);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
    }
    .link-btn {
        display: block;
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        z-index: 2;
    }
    i {
        position: absolute;
        left: 50%;
        top: 50%;
        z-index: 1;
        color: var(--whiteColor);
        font-size: 40px;
        transition: var(--transition);
        opacity: 0;
        visibility: hidden;
        margin-top: 20px;
        transform: translateX(-50%) translateY(-50%);
    }
    &:hover {
        &::before {
            opacity: .65;
            visibility: visible;
        }
        i {
            opacity: 1;
            margin-top: 0;
            visibility: visible;
        }
    }
}

.footer-area.footer-light {
    background-color: #fafafa;

    .single-footer-widget {

        .footer-contact-info {
            li {
                color: #666666;

                span {
                    color: #666666;
                }
                a {
                    color: #666666;
                }
            }
        }

        h3 {
            color: #212529;
        }
        p {
            color: #666666 !important;
        }
        ul {
            li {
                color: #666666 !important;
                &::before {
                    background: #212529;
                }
                a {
                    color: #666666 ;
                }
            }
        }
        .item .info time {
            color: #666666;
        }
        .social-links {
            li {
                a {
                    i {
                        color: #fff;
                    }
                }
            }
        }
    }
	.calendar_wrap a {
		color: #666666;
	}
	.widget_rss {
		.rsswidget {
			color: #666666;
		}
	}
    .widget_rss {
        ul {
            li {
                .rsswidget {
                    color: #666666;
                }
                .rss-date {
                    color: #666666 !important;
                }
                cite {
                    color: #666666 !important;
                }
                .rssSummary {
                    color: #666666 !important;
                }
            }
        }
    }
    .calendar_wrap {
        table {
            caption {
                color: #666666;
            }
        }
        caption {
            color: #666666;
        }
    }
    .widget_recent_comments {
        .recentcomments {
            a {
                color: #666666 !important;
            }
        }
    }
    .widget_recent_entries {
        ul {
            li {
                a {
                    color: #666666 !important;
                }
                .post-date {
                    color: #666666;
                }
            }
        }
    }
    span.post-count {
        color: #666666 !important;
    }

}

.nice-select {
    .list {
        width: 100%;
    }
}

.footer-bottom-area.bottom-footer-light {
    background: #fafafa;
    border-top: 1px solid #eeeeee;
        p {
            color: #666666;
            a {
                &:hover {
                    color: #666666;
                }
            }
        }
        ul {

            li {
                a {
                    color: #666666;
                }
                &::before {
                    background-color: #666666;
                }
            }
        }
}

span.wpcf7-list-item {
    margin: 0;
}

/*================================================
Facility Area CSS
=================================================*/
.single-facility-box {
    margin-bottom: 30px;
    text-align: center;

    .icon {
        width: 150px;
        height: 150px;
        border-radius: 50%;
        position: relative;
        transition: var(--transition);
        background-color: #F9F9F9;
        font-size: 70px;
        margin: {
            left: auto;
            right: auto;
        };
        i {
            position: absolute;
            left: 0;
            right: 0;
            top: 45%;
            transform: translateY(-45%);
        }
    }
    h3 {
        z-index: 1;
        font-size: 22px;
        padding-top: 25px;
        position: relative;
        background-color: var(--whiteColor);
        margin: {
            top: -25px;
            bottom: 0;
        };
    }
    &:hover {
        .icon {
            color: var(--whiteColor);
        }
    }
}

/*================================================
Customer Service Area CSS
=================================================*/
.customer-service-content {
    h3 {
        font-size: 22px;
        margin-bottom: 12px;

        &:not(:first-child) {
            margin-top: 25px;
        }
    }
    ul {
        li {
            margin-bottom: 12px;
            color: var(--paragraphColor);

            &:last-child {
                margin-bottom: 0;
            }
        }
    }
}
.newsletter-is-available {
    .page-main-content, .blog-area.ptb-100, .blog-details-area.ptb-100, .related.products.products-area.ptb-70 {
        padding-bottom: 0 !important;
    }
}


.widget_guto-lite_socials_link {
    ul {
        padding-left: 0;
        margin-bottom: 0;
        list-style-type: none;

        li {
            margin-bottom: 15px;
            padding-left: 0 !important;

            a {
                display: block;
                background-color: #f5f5f5;
                border-radius: 0 0 15px 15px;
                border-bottom: 3px solid #d6d6d6;
                position: relative;
                color: var(--blackColor);
                padding: {
                    top: 15px;
                    bottom: 12px;
                    right: 15px;
                    left: 90px;
                };
                font: {
                    size: 16px;
                    weight: 700;
                };
                i {
                    position: absolute;
                    left: 0;
                    top: 0;
                    height: 100%;
                    width: 70px;
                    color: var(--whiteColor);
                    border-radius: 0 0 0 15px;
                    font-size: 22px;
                    text-align: center;
                    transition: var(--transition);

                    &::before {
                        position: absolute;
                        left: 0;
                        right: 0;
                        top: 50%;
                        transform: translateY(-50%);
                    }
                    &.bxl-facebook {
                        background-color: #485fb3;
                    }
                    &.bxl-twitter {
                        background-color: #00afe1;
                    }
                    &.bxl-linkedin {
                        background-color: #0e76a8;
                    }
                }
                &:hover {
                    border-radius: 0;

                    i {
                        border-radius: 0;
                    }
                }
            }
            &:last-child {
                margin-bottom: 0;
            }
            &::before{
                display: none;
            }
        }
    }
}


.widget_buy_now {
    position: relative;
    text-align: center;
    border-radius: 0 0 15px 15px;
    border-bottom: 3px solid #d6d6d6;

    img {
        border-radius: 0 0 15px 15px;
    }
    .content {
        position: absolute;
        left: 0;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        background-color: var(--whiteColor);
        padding: 30px 25px;
        max-width: 250px;
        margin: {
            left: auto;
            right: auto;
        };
        img {
            border-radius: 0;
        }
        p {
            line-height: 1.6;
            margin: {
                top: 15px;
                bottom: 15px;
            };
        }
        .buy-now-btn {
            border: none;
            color: var(--whiteColor);
            border-radius: 5px;
            transition: var(--transition);
            display: inline-block;
            padding: 10px 35px;
            background-color: var(--blackColor);
            font: {
                size: 16px;
                weight: 500;
            };
            &:hover {
                color: var(--whiteColor);
            }
        }
        &::before {
            content: '';
            position: absolute;
            left: 0;
            right: 0;
            top: 0;
            bottom: 0;
            border: 1px solid var(--whiteColor);
            margin: -15px;
            z-index: -1;
        }
    }
}
.gallery-icon img {
    cursor: auto;
}

a.modal-close-btn.active {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    z-index: 1;
    padding: 20px;
    box-sizing: border-box;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.75);
    text-align: center;
}


/* Accessibility */
/* Text meant only for screen readers. */
.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute !important;
    width: 1px;
    word-wrap: normal !important;
    /* Many screen reader and browser combinations announce broken words as they would appear visually. */
  }

  .screen-reader-text:focus {
    background-color: #f1f1f1;
    border-radius: 3px;
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
    clip: auto !important;
    clip-path: none;
    color: #21759b;
    display: block;
    font-size: 14px;
    font-size: 0.875rem;
    font-weight: bold;
    height: auto;
    right: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000;
    /* Above WP toolbar. */
  }

  /* Do not show the outline on the skip link target. */
  #content[tabindex="-1"]:focus {
    outline: 0;
  }

.screen-reader-text {
    display: block !important;
}

.sub-trigger {
    display:none;
}

@media only screen and (max-width: 1024px){

    #site-navigation .menu-close{
        display: none;
        width: 100%;
        padding-top: 10px;
        padding-bottom: 10px;
        opacity: 0;
        border: 1px solid #efefef;
    }

    #site-navigation .menu-close:before{
        content: "\ec4e";
        font-family: 'boxicons'!important;
        font-weight: normal;
        font-style: normal;
        font-variant: normal;
        line-height: 1;
        display: inline-block;
        text-transform: none;
        speak: none;
        -webkit-font-smoothing: antialiased;
        padding-right: 1em;
    }

    #site-navigation .menu-close:focus{
        outline: 1px dotted;
    }

    #site-navigation .menu-close:focus{
        height: auto;
        width: 100%;
        color: inherit;
        padding-top: 1em;
        opacity: 1;
    }

    #site-navigation .site-main-menu{
        font-size: 15px;
        font-weight: 600;
        ul {
            padding: 0;
            li {
                list-style-type: none;
                border: 1px solid #efefef;
                margin: 4px 0;
            }
        }
        .dropdown-menu {
            position: relative;
            top: 0;
            left: 0;
            z-index: 1000;
            display: none;
            float: unset;
            min-width: auto;
            padding: unset;
            margin: auto;
            font-size: 14px;
            color: #212529;
            text-align: left;
            list-style: none;
            background-color: #fff;
            background-clip: unset;
            border: 0;
            border-radius: .25rem;
            padding-left: 24px !important;
            .dropdown-item {
                width: unset;
                clear: unset;
            }
            .menu-item-has-children .sub-trigger {
                width: 24px;
                height: 24px;
                top: 3px;
                right: 5px;
            }
            .menu-item-has-children .sub-trigger:after {
                top: -2px;
                left: 0px;
            }
            .dropdown-menu {
                .sub-trigger {
                    display: none;
                }
            }
        }
    }

    .toggle-nav{
        font-size: 35px;
        color: #030f2b;
        cursor: pointer;
        border: none;

        position: absolute;
        right: 0;
        background: transparent;
        padding: 0 0 0;
        z-index: 999;
    }

    .toggle-nav:before {
        font-family: 'boxicons'!important;
        font-weight: normal;
        font-style: normal;
        font-variant: normal;
        line-height: 1;
        display: inline-block;
        text-transform: none;
        speak: none;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        content: "\eb2a";
    }

    .toggle-nav.menu-open:before {
        content: "\ec4e";
    }

    .toggle-nav:hover{
        background: transparent;
        color: #414141;
    }

    .toggle-nav:focus{
        outline: 1px dotted;
    }

    .menu-item-has-children .sub-trigger{
        position: relative;
        width: 30px;
        height: 30px;
        float: right;
        z-index: 100;
        border: 1px solid #efefef;
        cursor: pointer;
        display: block;
        background: transparent;
        color: #414141;
        top: 6px;
        right: 5px;
    }
    .menu-item-has-children .sub-trigger:focus{
        outline: 1px dotted #414141;
    }
    .menu-item-has-children .sub-trigger:after{
        position: absolute;
        top: 1px;
        left: 3px;
        font-size: 26px;
        text-shadow: none;
        font-family: 'boxicons'!important;
        font-weight: normal;
        font-style: normal;
        font-variant: normal;
        line-height: 1;
        display: inline-block;
        text-transform: none;
        speak: none;
        -webkit-font-smoothing: antialiased;
        content: "\ea17";
    }
    .menu-item-has-children .sub-trigger.is-open:after{
        content: "\ea24";
    }

	.toggle-nav,
	#site-navigation .menu-close{
		display: block;
	}

	.has-quadmenu-primary .toggle-nav{
		display: block !important;
	}

	#masthead .site-main-menu{
		float: none;
	}

	#site-navigation{
		display: none;
	}
	.mega-menu-primary #site-navigation{
		display: block;
	}

	#site-navigation.menu-open{
		display: block;
		max-height: 70vh;
		padding-right: 10px;
		overflow: hidden auto;
		grid-column: 1/4;
		justify-self: end;
		width: 100%;
        margin-top: 40px;
	}

	.has-quadmenu-primary #site-navigation.menu-open{
		border-top: 0;
	}

	#site-navigation.menu-open .site-main-menu{
		width: 100%;
	}

    .guto-lite-mobile-menu {
        position: relative;
        margin-top: -37px;
    }
    .toggle-nav.menu-open {
        top: -44px;
    }

}