/*------ Theme Default Css
=======================================*/

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Fira+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


/*===== 01. Common Classes Start =====*/

.hi-my-default {
    margin: 100px 0;
}

.hi-mt-default {
    margin-top: 100px;
}

.hi-mb-default {
    margin-bottom: 100px;
}

.hi-py-default {
    padding: 100px 0;
}

.hi-pt-default {
    padding-top: 100px;
}

.hi-pb-default {
    padding-bottom: 100px;
}

.hi-load-item {
    display: none;
}

.hi-load-spinner {
    position: relative;
    cursor: pointer;
    width: 18px;
    height: 18px;
    display: inline-block;
    vertical-align: middle;
}

.hi-load-spinner:before,
.hi-load-spinner:after {
    position: absolute;
    display: block;
    content: "";
    width: 9px;
    height: 9px;
    left: 0;
    top: -5px;
    right: 0;
    bottom: 0;
    margin: auto;
    border-width: 2px;
    border-style: solid;
    border-color: transparent;
    border-bottom-color: #fff;
    border-right-color: #fff;
    border-radius: 0 0 1px 0;
    transform: translate(0%, 0%) rotate(45deg);
    transition: all 0.4s ease-in-out;
}

.loadspinner .hi-load-spinner:before {
    border-radius: 50%;
    animation: 0.8s rotate 0.4s linear forwards infinite;
}

.loadspinner .hi-load-spinner:after {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    animation: 0.8s rotate2 0.4s linear forwards infinite;
}

@keyframes rotate {
    to {
        transform: translate(0%, 0%) rotate(405deg);
    }
}

@keyframes rotate2 {
    to {
        transform: translate(0%, 0%) rotate(-315deg);
    }
}


/*===== // =====*/

/*===== 02. Preloader Start =====*/

.prealoader {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 999999;
    width: 100%;
    height: 100%;
}

.load-circle {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 50px;
    height: 50px;
}

.load-circle span {
    display: inline-block;
    width: 64px;
    height: 64px;
}

.load-circle span:after {
    content: "";
    display: block;
    width: 46px;
    height: 46px;
    margin: 1px;
    border-radius: 50%;
    border: 5px solid #ffffff;
    border-color: #ffffff transparent #ffffff transparent;
    animation: rotate .5s linear infinite;
}

@-webkit-keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*===== // =====*/

/*===== 03. Above Header =====*/

.header-above-dark {
    color: #ffffff;
}

.header-above-light {
    color: var(--color-secondary-dark);
}

.header-above-light {
    background-color: #ffffff;
}

.header-above-info .header-widget {
    height: 100%;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.header-above-info .widget-left,
.header-above-info .widget-right {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.header-above-info .widget-right {
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.header-above-dark .widget-left .widget {
    border-right: 1px solid rgba(221, 221, 221, 0.25);
}

.header-above-dark .widget-left .widget:last-child {
    border-right: 0;
}

.header-above-dark .widget-right .widget:not(:first-child) {
    border-right: 1px solid rgba(221, 221, 221, 0.25);
}

.header-above-dark .widget-right .widget.widget-social-widget:first-child li a {
    border-left: 1px solid rgba(221, 221, 221, 0.25);
}

.header-above-dark .widget-right .widget.widget-social-widget:first-child li:last-child a {
    border-right: 1px solid rgba(221, 221, 221, 0.25);
}

/*===== // =====*/

/*===== 04. Navigation Start =====*/

.logo img {
    max-width: 180px;
}

.navigator .menubar .menu-wrap>li.active>a,
.navigator .menubar .menu-wrap>li.focus>a,
.navigator .menubar .menu-wrap>li:hover>a {
    text-shadow: 0 0 0.75px var(--color-primary);
}

.navigator .menubar .menu-wrap>li:not(:last-child):after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 0;
    height: 20px;
    display: inline-block;
    margin: auto;
    border-right: 2px dotted #707070;
    z-index: -1;
}

/*===== // =====*/

/*===== 05. Cart =====*/

.menu-right li .cart-icon-wrap i {
    display: inline-block;
    color: inherit;
    vertical-align: middle;
    font-size: 22px;
}

.menu-right li.cart-wrapper {
    position: relative;
}

.menu-right li.cart-wrapper .cart-icon-wrap span {
    position: absolute;
    top: -3px;
    right: -5px;
    width: 18px;
    height: 18px;
    line-height: 17px;
    display: inline-block;
    font-size: 11px;
    color: #ffffff;
    border-width: 1px;
    border-style: solid;
    border-radius: 50%;
    text-align: center;
}

.shopping-cart {
    position: absolute;
    top: 100%;
    right: 0;
    z-index: 1;
    width: 320px;
    padding: 20px;
    background: #ffffff;
    border-radius: 0 3px 3px;
    border: 0;
    border-top: 3px solid;
    opacity: 0;
    visibility: hidden;
    -webkit-box-shadow: 0 15px 30px -5px rgba(0, 0, 0, 0.07);
    box-shadow: 0 15px 30px -5px rgba(0, 0, 0, 0.07);
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
}

.header .widget-nav-menu .sub-menu:before,
.navigator .menubar .menu-wrap>.menu-item>.dropdown-menu:before,
.shopping-cart:after {
    top: -8px;
    left: 95%;
    content: "";
    position: absolute;
    width: 11px;
    height: 11px;
    border: 3px solid;
    background-color: #ffffff;
    border-right: none;
    border-bottom: none;
    -ms-transform: translateX(-50%) rotate(45deg);
    transform: translateX(-50%) rotate(45deg);
}

.shopping-cart:after {
    right: 15%;
}

.header .widget-nav-menu .sub-menu:before,
.navigator .menubar .menu-wrap>.menu-item>.dropdown-menu:before {
    left: 15%;
}

.menu-right .cart-wrapper:hover .shopping-cart,
.menu-right .cart-wrapper:focus .shopping-cart {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate3d(0, 2px, 0);
    transform: translate3d(0, 2px, 0);
}

.shopping-cart .cart-header {
    border-bottom: 1px solid #E8E8E8;
    padding-bottom: 15px;
}

.shopping-cart .cart-header .cart-total {
    float: right;
}

.shopping-cart .cart-badge {
    color: #ffffff;
    font-size: 10px;
    margin: 0;
    width: 16px;
    height: 16px;
    line-height: 1.6;
    text-align: center;
    vertical-align: super;
    border-radius: 100px;
    display: inline-block;
}

.shopping-cart .cart-items {
    padding: 0;
    margin: 0;
    padding-top: 20px;
    list-style: none;
}

.shopping-cart .cart-items li {
    display: inline-block;
    width: 100%;
    margin: 0 10px 10px 0;
    padding: 0;
    font-size: 15px;
    position: relative;
}

.shopping-cart .cart-items .item-img {
    float: left;
    margin-right: 12px;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    text-align: center;
    line-height: 4.5;
    border-width: 1px;
    border-style: solid;
    border-color: var(--color-primary);
}

.shopping-cart .cart-items .item-img img {
    width: 90%;
    border-radius: 50%;
    display: inline-block;
}

.shopping-cart .cart-items .item-name {
    font-size: 14px;
    font-weight: 600;
    display: block;
    padding-top: 15px;
}

.shopping-cart .cart-items .item-price {
    font-size: 12px;
    font-weight: 600;
    margin-right: 0;
    color: #222;
}

.shopping-cart .cart-items .item-quantity {
    font-size: 12px;
    font-weight: 400;
    color: red;
}

.shopping-cart .hi-btn {
    display: block;
}

/* ---//--- */

/*===== 06. Slider =====*/

.slider-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding: 0;
    color: #ffffff;
    background-color: #333;
    z-index: 0;
}

.main-slider,
.main-slider .owl-item img {
    width: 100%;
    height: 100%;
}

.theme-slider {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: rgba(0, 0, 0, 0.5);
}

.theme-table {
    overflow: hidden;
    display: table;
    width: 100%;
    height: 100%;
}

.theme-table-cell {
    display: table-cell;
    vertical-align: middle;
}

.theme-slider div.theme-content {
    overflow: hidden;
    position: relative;
    max-width: 635px;
    width: 100%;
    margin-bottom: 150px;
}

.theme-slider .text-left {
    margin-right: auto;
}

.theme-slider .text-center {
    margin: auto;
}

.theme-slider .text-right {
    margin-left: auto;
}

.theme-content h3 {
    font-weight: 400;
    margin-bottom: 5px;
    display: block;
}

.theme-content h1 {
    font-size: 60px;
    margin-bottom: 10px;
}

.theme-content p {
    font-weight: 300;
    margin-bottom: 46px;
}

.theme-content .hi-btn:not(:last-child) {
    margin-right: 28px;
}

.owl-carousel {
    position: relative;
    z-index: 0;
}

/* ===== owl Nav ===== */

.owl-theme:not(.main-slider) .owl-nav {
    width: 100%;
    margin: 25px auto 0 auto;
}

.main-slider .owl-nav {
    position: absolute;
    bottom: 11.9em;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 10;
}

.owl-theme div.owl-nav [class*=owl-] {
    width: 25px;
    height: 25px;
    font-size: 18px;
    line-height: 25px;
    display: inline-block;
    cursor: pointer;
    text-align: center;
    color: #ffffff;
    background-color: var(--color-primary);
    border: 1px solid var(--color-primary);
    border-radius: 100%;
}

.owl-theme .owl-nav [class*=owl-]:hover {
    color: var(--color-primary);
    background-color: #ffffff;
    border-color: #ffffff;
    box-shadow: 0 0 10px 0px rgba(0, 0, 0, 0.15);
}

.owl-theme .owl-nav .owl-prev i {
    margin-left: 0px;
}

.owl-theme .owl-nav .owl-next i {
    margin-right: -2px;
}

/*===== // =====*/

/*===== 07. Info Section =====*/

.info-section {
    margin: -120px 0px 20px 0px;
}

.footer-info-wrapper,
.info-wrapper {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -moz-flex;
    display: -webkit-flex;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-info-wrapper li,
.info-wrapper li {
    flex: 1;
    position: relative;
    list-style: none;
}

.info-wrapper li:not(:last-child) {
    margin-right: 20px;
}

.info-wrapper .widget-contact .contact-info:hover {
    color: #ffffff;
}

.info-wrapper .widget-contact:hover .contact-icon {
    color: #ffffff;
    transition: all .5s;
}

.info-wrapper .widget {
    background-color: rgba(0, 0, 0, 0.70);
    padding: 28px 55px;
    position: relative;
    border-radius: 0;
    overflow: hidden;
    display: block;
    height: 100%;
    z-index: 0;
    color: #ffffff;
}

.info-wrapper .contact-icon {
    font-size: 44px;
    height: 44px;
    transition: all .5s;
}

.info-wrapper .info-first .widget::before,
.info-wrapper .info-third .widget::before,
.info-wrapper .info-second .widget {
    background-color: var(--color-primary);
}

.info-wrapper .widget:hover::before,
.info-wrapper .widget:focus-within::before {
    right: 0;
}

.info-wrapper .widget::before {
    top: 0;
    right: 100%;
    background-color: var(--color-primary);
}

.info-wrapper .widget::after,
.info-wrapper .widget::before {
    content: "";
    position: absolute;
    width: 105%;
    height: 105%;
    z-index: -1;
    transition: all .5s;
}

.info-wrapper .widget:hover::after,
.info-wrapper .widget:focus-within::after {
    left: 0;
}

.info-wrapper .widget::after {
    bottom: 0;
    left: 100%;
    background-image: url(../images/bg/info-hover.png);
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: right;
}

.info-wrapper .widget::after,
.info-wrapper .widget::before {
    content: "";
    position: absolute;
    width: 105%;
    height: 105%;
    z-index: -1;
    transition: all .5s;
}

.info-wrapper .widget:hover .contact-icon i,
.info-wrapper .widget:focus-within .contact-icon i {
    text-shadow: 235px -17px 0 rgb(255 255 255 / 0.2);
    transition: all .5s;
}

.info-wrapper .contact-icon i {
    text-shadow: 1200px -17px 0 rgb(255 255 255 / 0.2);
    transition: all .5s;
}

/*===== // =====*/

/*===== 08. Heading Default =====*/

.about-panel {
    padding: 35px 0;
}

.heading-title {
    margin-bottom: 2rem;
}

.heading-default {
    width: 100%;
    max-width: 750px;
    margin: 0 auto 55px;
    text-align: center;
}

.heading-default>span {
    font-weight: 600;
    display: block;
    margin-bottom: 9px;
}

.heading-default p {
    color: #777777;
    display: block;
    margin: 0;
    margin-top: 10px;
}

.heading-default h3 {
    font-size: 36px;
    font-family: inherit;
    position: relative;
    max-width: max-content;
    margin: 0 auto;
    padding: 0 14px;
}

.heading-default h3:before {
    content: "";
    position: absolute;
    top: 0;
    left: -60px;
    bottom: 0;
    margin: auto 0;
    width: 60px;
    height: 2px;
}

.heading-default h3 .hi-heading {
    margin-left: 2px;
    padding: 8px .232em;
    text-align: center;
    display: inline-block;
    line-height: 0;
}

.heading-default:not(.heading-white) h3 .hi-heading {
    color: #ffffff;
}

.heading-default h3 .hi-heading:after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.heading-default .hi-heading .hi-text-wrapper,
.heading-default .hi-heading .hi-text-wrapper b {
    text-align: center;
    line-height: 1;
}

.heading-white>span,
.heading-white h3,
.heading-white p {
    color: #ffffff;
}

.heading-white h3:before,
.heading-white h3 .hi-heading:after {
    background-color: #ffffff;
}

/*===== // =====*/

/*===== 09. Service Section =====*/

.service-item {
    width: 100%;
    display: block;
    padding: 47px 30px;
    position: relative;
    z-index: 0;
    overflow: hidden;
    background-color: #ffffff;
    border-bottom: 2px solid transparent;
}

.testimonial-carousel .owl-item,
.services-carousel .owl-item {
    padding: 17px;
}

.service-item .service-icon {
    font-size: 44px;
    display: inline-block;
    line-height: normal;
    margin-bottom: 8px;
}

.service-item .service-icon {
    color: #9a9a9a;
}

.service-item p {
    color: #777777;
    margin-top: 16px;
    margin-bottom: 0;
}

.service-item .service-icon {
    color: #9a9a9a;
}

.service-content>a {
    position: absolute;
    bottom: -14px;
    right: 0;
    font-size: 34px;
    color: #ffffff;
    opacity: 0;
}

.service-content>a:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    min-width: 120px;
    min-height: 120px;
    background-color: var(--color-primary);
    z-index: -1;
    opacity: 0;
    -webkit-transform: translateX(-28px) translateY(10px) rotate(52deg);
    transform: translateX(-28px) translateY(10px) rotate(52deg);
}

.service-item:hover,
.services-carousel .owl-item.center .service-item {
    border-bottom-color: var(--color-primary);
    box-shadow: 0px 2px 40px 0px rgba(35, 31, 32, 0.07);
}


.service-item:hover .service-content>a:before,
.services-carousel .owl-item.center .service-content>a:before {
    opacity: 1;
}

.service-item:hover .service-icon,
.services-carousel .owl-item.center .service-icon {
    color: var(--color-primary);
}

.service-item:hover .service-content>a,
.services-carousel .owl-item.center .service-content>a {
    opacity: 1;
}

/*===== // =====*/

/*===== 10. Features Section =====*/

.features-section.bg-primary .features-item {
    color: #ffffff;
    padding: 0;
}

.features-section.bg-primary .features-title {
    padding-bottom: 16px;
}

.features-section.bg-primary .features-title:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 2px;
    background-color: #ffffff;
}

.features-section.bg-primary .features-item p {
    margin: 16px 0 0;
}

.features-section.bg-primary .features-icon {
    font-size: 43px;
    width: 153px;
    max-width: 53px;
    height: 53px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    /* overflow: hidden; */
    transition: .3s ease-in-out;
}

.features-section.bg-primary .features-icon:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 0;
    height: 0;
    opacity: 0;
    /* visibility: hidden; */
    z-index: -1;
    border-radius: 100%;
    border: 1px solid #ffffff;
    transition: .3s ease-in-out;
}

.features-section.bg-primary .features-item:hover .features-icon,
.features-section.bg-primary .features-item:focus-within .features-icon {
    scale: 0.7;
}

.features-section.bg-primary .features-item:hover .features-icon:before,
.features-section.bg-primary .features-item:focus-within .features-icon:before {
    opacity: 1;
    visibility: visible;
    width: 100%;
    height: 100%;
    scale: 1.4;
    border: 3px dashed #fff;
    -webkit-animation: spinAround 9s linear infinite;
    -moz-animation: spinAround 9s linear infinite;
    animation: spinAround 9s linear infinite;
}

@-webkit-keyframes spinAround {
    from {
        -webkit-transform: rotate(0deg)
    }

    to {
        -webkit-transform: rotate(360deg);
    }
}

@-moz-keyframes spinAround {
    from {
        -moz-transform: rotate(0deg)
    }

    to {
        -moz-transform: rotate(360deg);
    }
}

@keyframes spinAround {
    from {
        transform: rotate(0deg)
    }

    to {
        transform: rotate(360deg);
    }
}

.features-item {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 26px 22px;
    position: relative;
    overflow: hidden;
}

.features-section:not(.bg-primary) .features-item:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: var(--color-primary);
    transition: ease-in all .5s;
    border-left: 0px dashed var(--color-primary);
}

.features-section:not(.bg-primary) .features-item:hover,
.features-section:not(.bg-primary) .features-item:focus-within {
    background-color: #ffffff;
    box-shadow: 0px 0px 10px 0px rgba(85, 83, 83, 0.35);
}

.features-section:not(.bg-primary) .features-item:hover:before,
.features-section:not(.bg-primary) .features-item:focus-within:before {
    border-left: 5px dashed var(--color-secondary);
}

.features-section:not(.bg-primary) .features-item:hover .features-icon,
.features-section:not(.bg-primary) .features-item:focus-within .features-icon {
    color: var(--color-primary);
}

.features-icon {
    display: inherit;
    margin-right: 25px;
    width: 75px;
    position: relative;
    font-size: 75px;
}

.features-title {
    position: relative;
    z-index: 0;
}

.features-item p {
    margin: 7px 0 0;
}

.features-section:not(.bg-primary) .features-item p {
    color: #777777;
    margin-bottom: 10px;
}

.bg-primary .features-title a:hover,
.bg-primary .features-title a:focus {
    color: #ffffff;
}

/*===== // =====*/

/*===== 11. Filter Tab =====*/

.hi-tab-filter {
    width: 100%;
    text-align: center;
    margin: 0 0 25px;
    padding: 0;
    display: block;
}

.hi-tab-filter a {
    display: inline-block;
    position: relative;
    letter-spacing: .4px;
    font-size: 18px;
    padding: 6px 8px 4px;
    font-weight: 600;
    border: none;
    z-index: 0;
}

.hi-tab-filter a:not(:last-child) {
    margin-right: 40px;
}

.hi-tab-filter a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--color-primary);
    -webkit-transition: top 0.3s;
    -moz-transition: top 0.3s;
    transition: top 0.3s;
}

.hi-tab-filter a::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 2px;
    background-color: var(--color-primary);
    -webkit-transition: height 0.3s;
    -moz-transition: height 0.3s;
    transition: height 0.3s;
}

.hi-tab-filter a.active::before,
.hi-tab-filter a:hover::before,
.hi-tab-filter a:focus::before {
    top: 100%;
    opacity: 1;
}

.hi-tab-filter a.active::after,
.hi-tab-filter a:hover::after,
.hi-tab-filter a:focus::after {
    height: 100%;
}

/*===== // =====*/

/*===== 12. Portfolio/Gallery =====*/

.gallery-area {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -moz-flex;
    display: -webkit-flex;
    display: flex;
    flex-direction: row;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
    flex-wrap: wrap;
}

.gallery-area .gallery-item {
    margin: 0;
}

.mgf-popup a {
    /*display: inline-block;*/
}

.mfp-close-btn-in button.mfp-close {
    display: inline-block;
    max-width: 40px;
    height: 40px;
    text-align: center;
    right: 0;
    padding: 0;
    background-color: var(--color-primary);
}

.gallery-item,
.portfolio-item {
    width: 100%;
    overflow: hidden;
    position: relative;
    z-index: 0;
}

.gallery-item .gallery-icon img,
.portfolio-item .portfolio-icon img {
    width: 100%;
}

.gallery-item .gallery-icon,
.portfolio-item .portfolio-icon {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.gallery-item .gallery-caption,
.portfolio-item .portfolio-caption {
    font-weight: 400;
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 58px 28px;
    color: #ffffff;
    text-align: center;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -moz-flex;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.gallery-item .gallery-caption:before,
.portfolio-item .portfolio-caption:before {
    position: absolute;
    top: 50%;
    right: 30px;
    bottom: 50%;
    left: 30px;
    border-top: 1px solid #ffffff;
    border-bottom: 1px solid #ffffff;
    content: '';
    opacity: 0;
    background-color: #ffffff;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
    -webkit-transition-delay: 0.6s;
    transition-delay: 0.6s;
}

.gallery-item h6,
.portfolio-item h6,
.gallery-item p,
.portfolio-item p {
    opacity: 0;
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, -webkit-transform 0.35s, -moz-transform 0.35s, -o-transform 0.35s, transform 0.35s;
}

.gallery-item h6,
.portfolio-item h6 {
    -webkit-transform: translate3d(0%, 50%, 0);
    transform: translate3d(0%, 50%, 0);
    -webkit-transition-delay: 0.3s;
    transition-delay: 0.3s;
}

.gallery-item p,
.portfolio-item p {
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
}

.gallery-item i,
.portfolio-item i {
    display: inline-block;
    transition: .5s ease-in;
    visibility: hidden;
    opacity: 0;
    transform: translateY(100px);
}

.gallery-item:hover .gallery-icon img,
.portfolio-item:hover .portfolio-icon img {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
}

.gallery-item:hover .gallery-caption,
.portfolio-item:hover .portfolio-caption {
    background: url(../images/bg/pattern.png) repeat 0, 0 rgba(0, 0, 0, .6);
}

.gallery-item:hover h6,
.portfolio-item:hover h6 {
    opacity: 1;
    -webkit-transform: translate3d(0%, 0%, 0);
    transform: translate3d(0%, 0%, 0);
    -webkit-transition-delay: 0.3s;
    transition-delay: 0.3s;
}

.gallery-item:hover p,
.portfolio-item:hover p {
    opacity: 1;
    -webkit-transition-delay: 0.6s;
    transition-delay: 0.6s;
}

.gallery-item:hover i,
.portfolio-item:hover i {
    visibility: visible;
    opacity: 1;
    transform: translateY(0px);
}

.gallery-item:hover .gallery-caption:before,
.portfolio-item:hover .portfolio-caption:before {
    background: rgba(255, 255, 255, 0);
    top: 30px;
    bottom: 30px;
    opacity: 1;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
}

.gallery-item h6,
.portfolio-item h6 {
    font-size: 15px;
}

.portfolio-item i {
    font-size: 30px;
}

.gallery-item i {
    font-size: 20px;
    width: 44px;
    height: 44px;
    line-height: 2.3;
    border-radius: 50%;
    margin: 0 auto;
    background-color: var(--color-primary);
}

/*===== // =====*/

/*===== 13. Pricing =====*/

.dottet-bg-image {
    background: linear-gradient(rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.3)), url(../images/bg/dotted-arrow-dark.png) no-repeat top;
}

.pricing-item {
    padding: 50px;
    border-radius: 5px;
    background-color: #ffffff;
    text-align: center;
    display: block;
    position: relative;
    z-index: 0;
    box-shadow: 0px 0px 9.4px 0.6px rgba(0, 0, 0, 0.15);
}

.pricing-item:hover {
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
}

.recommended-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    display: block;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.87;
    padding: 0 1.51em;
    border-radius: 25px;
    background-color: #faeff0;
    z-index: 1;
}

.pricing-icon {
    width: 100%;
    display: block;
    font-size: 100px;
    line-height: normal;
    text-align: center;
}

.pricing {
    font-size: 60px;
    font-weight: 800;
    display: inline-flex;
}

.pricing sup {
    font-size: 25px;
    line-height: 2.75;
    font-weight: normal;
}

.pricing-item ul,
.pricing-item li {
    list-style: none;
    margin: 0;
    padding: 0;
}

.pricing-item ul {
    margin-bottom: 35px;
}

.pricing-item li {
    line-height: 2.75;
}

/*===== // =====*/

/*===== 14. Team =====*/

.team-member {
    margin: 0px;
    position: relative;
    z-index: 0;
    overflow: hidden;
    display: block;
}

.team-footer {
    width: 100%;
    height: 71px;
    position: absolute;
    bottom: 0;
    padding: 16px 0px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    color: #ffffff;
    background-color: var(--color-primary);
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.team-info {
    display: block;
    padding: 0 10px;
}

.team-info h6 a:hover,
.team-info h6 a:focus {
    color: #ffffff;
}

.team-member img {
    width: 100%;
}

.team-footer span {
    margin-bottom: 16px;
    display: inline-block;
}

.team-footer p {
    border-top: 1px solid #dddddd;
    padding-top: 16px;
}

.team-footer .widget {
    margin-top: 55px;
    visibility: hidden;
}

.team-footer .widget-social-widget li a {
    color: var(--color-primary);
    background-color: #ffffff;
}

.team-member:hover .widget {
    visibility: visible;
}

.team-member:hover .team-footer {
    justify-content: space-around;
    height: 100%;
    padding: 46px 10px 32px;
    background-color: rgba(0, 0, 0, 0.6);
}

.team-member:hover .team-footer h6 {
    color: var(--color-primary);
}

/*===== // =====*/

/*===== 15. Fun Fact =====*/

.funfact-section:before {
    content: '';
    width: 100%;
    height: 100%;
    background-color: #000000ba;
    position: absolute;
    top: 0;
    z-index: 0;
}

.funfact-section {
    background: url(../images/bg/fun-fact-bg.jpg) center center fixed rgba(0, 0, 0, .6);
    background-blend-mode: multiply;
    background-size: cover;
    padding: 80px 0;
    position: relative;
}

.funfact-item {
    width: 100%;
    display: inline-block;
    text-align: center;
    color: #ffffff;
}

.funfact-item i,
.funfact-item img {
    font-size: 60px;
    width: 60px;
    margin-bottom: 8px;
    display: inline-block;
    color: var(--color-primary);
}

.funfact-item h1 {
    font-size: 48px;
}

.funfact-item p {
    font-size: 18px;
    font-weight: 300;
    margin: 10px 0 0;
}

/*===== // =====*/

/*===== 16. Testimonial Section =====*/

.testimonial-item,
.testimonial-item .testimonial-content {
    width: 100%;
    display: block;
    transition: .3s ease-in-out;
}

.testimonial-item .testimonial-content {
    padding: 47px 30px;
    position: relative;
    z-index: 0;
    background-color: #ffffff;
    transition: .3s ease-in-out;
    box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.22);
}

.testimonial-item .testimonial-content:after {
    content: "";
    position: absolute;
    bottom: -16px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 35px;
    height: 35px;
    background-color: inherit;
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    box-shadow: 4px 4px 4px 0 rgba(0, 0, 0, 0.1);
    z-index: -1;
}

.testimonial-title p {
    color: var(--color-primary);
    margin-top: 6px;
    margin-bottom: 0;
    transition: .3s ease-in-out;
}

.testimonial-content blockquote {
    margin: 25px 0 0;
    padding: 0;
    padding-bottom: 60px;
    position: relative;
    border: 0;
    background: none;
    z-index: 0;
}

.testimonial-content blockquote:after {
    content: "\efce";
    font-family: IcoFont;
    position: absolute;
    bottom: 0;
    left: 0;
    line-height: normal;
    color: #e1e1e1;
    font-size: 40px;
    z-index: 0;
}

.testimonial-item .testimonial-icon {
    width: 100%;
    display: block;
    line-height: normal;
    margin-top: 35px;
    text-align: center;
}

.testimonial-item .testimonial-icon .image-box {
    display: inline-block;
    width: 60px;
    border-radius: 100%;
    overflow: hidden;
}

.testimonial-item .testimonial-icon img {
    width: auto;
    margin: 0 auto;
}

.testimonial-carousel .owl-item.center .testimonial-content {
    color: #ffffff;
    background-color: var(--color-primary);
}

.testimonial-carousel .owl-item:hover .testimonial-content {
    box-shadow: 0px 0px 22px 0px rgba(0, 0, 0, 0.22);
}

.testimonial-carousel .owl-item:hover .testimonial-item,
.testimonial-carousel .owl-item.center .testimonial-item {
    transform: translateY(-12px);
}

.testimonial-carousel .owl-item.center blockquote:after,
.testimonial-carousel .owl-item.center .testimonial-title p {
    color: #ffffff;
}

/*===== // =====*/

/*===== 17. CTA Section =====*/

.cta-section {
    background-color: #ffffff;
    background-blend-mode: multiply;
    background-size: cover;
    position: relative;
    z-index: 0;
}

.cta-bg-image {
    background: url(../images/bg/cta-bg.jpg) center center scroll rgba(0, 0, 0, .7);
}

.cta-bg-image .cta-wrapper {
    color: #ffffff;
    border: none;
    box-shadow: none;
}

.cta-wrapper {
    border-top: 3px solid var(--color-primary);
    display: -ms-flexbox;
    display: flex;
    padding: 56px 48px;
    -ms-flex-align: flex-start;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0px 0px 4.75px 0.25px rgba(0, 0, 0, 0.15);
    position: relative;
}

.cta-text-content .cta-wrapper {
    border: 0;
    padding: 25px 125px;
}

.cta-img-icon {
    width: 203px;
    margin-right: 25px;
}

.cta-section:not(.cta-bg-image) .cta-wrapper {
    background-color: #ffffff;
}

.cta-section .cta-wrapper:after {
    content: '';
    position: absolute;
    right: 0;
    left: 0;
    width: 100%;
    height: 62px;
    opacity: 0.3;
    background-position: center bottom;
    z-index: -1;
}

.cta-shadow-one .cta-wrapper:after {
    background: url(../images/bg/shadow-one.png) no-repeat;
    bottom: -38px;
}

.cta-shadow-two .cta-wrapper:after {
    background: url(../images/bg/shadow-two.png) no-repeat;
    bottom: -50px;
    transform: rotate(-180deg);
}

.cta-content h4 {
    font-size: 24px;
    margin-bottom: 5px;
}

.cta-content p {
    margin-bottom: 0;
}

.cta-section:not(.cta-bg-image) p {
    color: #777777;
}

.cta-learn-more {
    display: inline-block;
    margin-left: 18px;
    color: var(--color-primary);
}

.cta-learn-more a {
    text-decoration: underline;
    font-weight: 500;
}

.cta-learn-more a:hover,
.cta-learn-more a:focus {
    text-decoration: none;
}

.cta-bg-image .cta-learn-more {
    color: #ffffff;
}

/*===== // =====*/

/*===== 18. Blog Post Section =====*/

.post-items {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 0;
    border-radius: 0;
    border: 1px solid #d0d0d0;
    z-index: 0;
    display: -webkit-box;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    -webkit-align-items: flex-start;
    align-items: flex-start;
}

.post-items .posted-on a:hover,
.post-items .posted-on a:focus-within {
    color: var(--color-border-dark);
}

.post-meta ul {
    margin: 0;
    padding: 0;
}

.post-shadow .post-items {
    box-shadow: 0px 0px 38px 0px rgba(68, 68, 68, 0.12);
    border: none;
}

.post-image {
    width: 100%;
    position: relative;
    overflow: hidden;
    z-index: 0;
}

.post-image>a {
    position: relative;
    z-index: 0;
    display: block;
    overflow: hidden;
}

.post-image:hover .author-name,
.post-image:hover .author-name a,
.post-items .post-image a:hover,
.post-items .post-image a:focus {
    color: #ffffff;
}

.post-image .author-name,
.post-items .post-hover:after,
.post-items .post-hover:before,
.post-image .post-meta,
.post-image>a img {
    -webkit-transform: rotate(0) scale(1);
    transform: rotate(0) scale(1);
    -webkit-transition: all 1.3s;
    transition: all 1.3s;
}

.post-items:hover .post-image>a img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.post-image .post-hover:after {
    content: "";
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.75);
    z-index: 0;
}

.post-image .post-hover:before,
.post-image .post-meta {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.post-image .post-meta {
    position: absolute;
    bottom: 0;
    left: 0;
    margin: 0 auto;
    padding: 0;
    width: 100%;
    text-align: center;
    color: #ffffff;
    z-index: 0;
}

.post-image .author-name,
.post-image .post-hover:after,
.post-items .post-hover:before {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    visibility: hidden;
    opacity: 0;
}

.post-image:hover .author-name,
.post-items:hover .post-hover:after,
.post-items:hover .post-hover:before {
    visibility: visible;
    opacity: 1;
}

.post-items:hover .post-image .post-hover:before,
.post-items:hover .post-image .post-meta ul li a,
.post-items:hover .post-image .posted-on {
    border-color: #ffffff;
}

.post-meta .posted-on:not(.post-date),
.post-meta p,
.post-meta p,
.post-date p {
    margin: 0;
}

.post-items .post-date {
    max-width: max-content;
    text-align: center;
    display: inline-block;
    color: #ffffff;
    background-color: var(--color-primary);
    border: 1px solid transparent;
    padding: .35em 0.51em;
}

.post-items .post-date span {
    font-size: 38px;
    line-height: 1;
    font-weight: bold;
    display: block;
    word-break: break-word;
}

.post-image .posted-on {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.post-image .author-name {
    width: 100%;
    height: 100%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-primary);
}

.post-image .author-name p {
    margin: 0;
}

.post-image .author-name>a {
    max-width: max-content;
    display: inline-block;
    margin: 0 auto;
    font-size: 14px;
}

.post-author span {
    display: block;
}

.post-image .post-list {
    position: absolute;
    bottom: 18px;
    left: 0;
    z-index: 1;
}

.post-image .post-list,
.post-image .posted-on {
    margin: 20px 0 0 20px;
    display: inline-block;
}

.post-image .author-name img {
    display: inline-block;
    margin-bottom: 5px;
    border-radius: 100%;
}

.post-title {
    font-weight: 400;
}

.post-content {
    width: 100%;
    padding: 25px 20px 23px;
}

.post-content p {
    margin: 18px 0 14px;
}

.post-meta.up {
    margin-bottom: 12px;
}

.post-meta:not(.imu) {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.post-meta.down {
    border-top: 1px solid #d0d0d0;
    margin-top: 20px;
    padding-top: 22px;
}

.post-items .post-meta .post-meta ul,
.post-meta:not(.up):not(.imu)>span {
    flex: auto;
    text-align: center;
    line-height: 1;
}

.post-meta:not(.down):not(.imu)>span:not(.post-date) {
    flex: auto;
    text-align: left;
    line-height: 1;
}

.post-meta:not(.imu)>span:not(.post-date) {
    border-right: 1px solid #d0d0d0;
    border-left: 1px solid #d0d0d0;
    padding: 0 5px;
}

.post-meta:not(.imu)>span:not(.post-date):first-child {
    border-left: 0;
    padding-left: 0;
    border-right: 0;
}

.post-meta:not(.imu)>span:not(.post-date):last-child {
    padding-right: 0;
    border-right: 0;
}

.post-meta:not(.imu)>span:nth-child(even) {
    border-right: 0;
}

.post-meta>span i {
    margin-right: 5px;
    color: var(--color-primary);
}

.more-link {
    position: relative;
    padding-right: 0;
}

.more-link:after {
    content: "\ea7c";
    font-family: IcoFont;
    font-size: 20px;
    right: 0;
    opacity: 0;
    vertical-align: middle;
    display: inline-block;
    -webkit-transform: translateX(-5px);
    transform: translateX(-5px);
}

.more-link:hover:after,
.more-link:focus:after {
    opacity: 1;
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
    color: var(--color-primary);
}

.post-items .post-meta ul,
.post-items .post-meta ul li {
    padding: 0;
    display: inline-block;
}

.post-items .post-meta ul li a {
    display: inline-block;
    font-weight: 500;
    line-height: 2.5;
    padding: 0 20px;
    color: #ffffff;
    background-color: var(--color-primary);
    border: 1px solid transparent;
}

/*===== // =====*/

/*===== 19. Blog Post Image Carousel =====*/

.post-image-carousel {
    width: 100%;
    overflow: hidden;
    z-index: 1;
}

.post-image-carousel.owl-carousel .owl-item img {
    width: auto;
    max-width: 100%;
}

.post-image-carousel:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    visibility: hidden;
    opacity: 0;
    z-index: 1;
}

.post-items:hover .post-image-carousel:before {
    visibility: visible;
    opacity: 1;
}

.post-image-carousel.owl-theme .owl-nav {
    text-align: center;
    -webkit-tap-highlight-color: transparent;
    line-height: 0;
    margin: 0;
}

.post-image-carousel.owl-theme .owl-nav [class*=owl-] {
    width: 51px;
    height: 180px;
    line-height: 60px;
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto 0;
    z-index: 10;
    cursor: pointer;
    text-align: center;
    transition: all .2s ease 0s;
    color: #ffffff;
    background-color: rgba(0, 0, 0, 0.75);
    border: none;
    opacity: 0;
    visibility: hidden;
    border-radius: 0;
    z-index: 2
}

.post-image-carousel.owl-theme .owl-nav .owl-prev {
    left: -20px;
}

.post-image-carousel.owl-theme .owl-nav .owl-next {
    right: -20px;
}

.post-items:hover .post-image-carousel.owl-theme .owl-prev {
    right: auto;
    left: 8px;
    opacity: 1;
    visibility: visible;
}

.post-items:hover .post-image-carousel.owl-theme .owl-next {
    left: auto;
    right: 8px;
    opacity: 1;
    visibility: visible;
}

.post-image-carousel.owl-theme .owl-prev:hover,
.post-image-carousel.owl-theme .owl-next:hover {
    background-color: rgba(214, 21, 35, 0.75);
}

/*===== // =====*/

/*===== 20. Author-Area =====*/

.author-details {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    padding: 40px;
    margin: 1.5rem auto;
    border-radius: 3px;
    overflow: hidden;
    border: 1px solid #d0d0d0;
}

.author-details .section-header {
    width: 100%;
    display: block;
    margin-bottom: 1.5rem;
}

.author-details .section-header h2 {
    font-weight: 500;
    line-height: 1.1;
}

.author-details .media {
    width: 100%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
}

.author-details .media .auth-mata {
    -ms-flex-item-align: start;
    align-self: flex-start;
    -ms-flex-negative: 1;
    flex-shrink: 1;
    -ms-flex-positive: 0;
    flex-grow: 0;
    margin-right: 1.5rem;
}

.author-details .media .auth-mata img {
    width: 100px;
}

.author-details .media .media-body {
    -ms-flex-negative: 1;
    flex-shrink: 1;
    -ms-flex-positive: 0;
    flex-grow: 0;
}

.author-details .media .media-body h4 {
    margin-bottom: .5rem;
}

.author-details .media .media-body p {
    margin: 0;
    line-height: 1.5;
}

/*===== // =====*/

/*===== 21. Comments-Area =====*/

.toggle-comments {
    width: 100%;
    text-align: center;
    margin-top: 1.5rem;
}

.xolo-is-toggle-comments .comments-area {
    display: none;
}

.xolo-is-toggle-comments.comments-visible .comments-area {
    display: block;
}

.comments-area {
    margin-top: 1.5rem;
}

.single-comments-title,
.comments-title {
    margin-bottom: 1rem;
    text-align: left;
}

.comment-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.comments-area li {
    list-style: none;
}

.comments-area .comment-body {
    position: relative;
    padding: 25px 25px 25px 140px;
    min-height: 120px;
    overflow-wrap: break-word;
    word-wrap: break-word;
    border-radius: 3px;
    z-index: 0;
    margin-bottom: 1rem;
}

.comments-area .comment-list>.comment>.comment-body {
    border-top: 1px solid #f1f1f1;
    border-bottom: 1px solid #f1f1f1;
}

.comments-area .comment-meta {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-align: flex-start;
    align-items: flex-start;
    -ms-flex-direction: column;
    flex-direction: column;
}

.comments-area .comment-meta .comment-author img {
    position: absolute;
    z-index: 0;
    left: 20px;
    top: 28px;
    width: 100px;
}

.comment-meta .comment-metadata {
    width: 100%;
    line-height: 1.5;
    font-size: 14px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-justify-content: space-between;
    justify-content: space-between;
}

.comment-content {
    position: relative;
    z-index: 0;
    padding: 1em 2.35rem 1em 0;
}

.comment-content p {
    margin: 0;
}

.comment-metadata .edit-link,
.comment-body .reply {
    position: relative;
    z-index: 0;
}

.comment-metadata .edit-link a,
.comment-body .reply a {
    padding-left: 5px;
}

.comment-metadata .edit-link:before {
    content: "\ef10";
    font-family: IcoFont;
}

.comment-body .reply:before {
    content: "\ec7f";
    font-family: IcoFont;
}

.comment-metadata .edit-link:before,
.comment-body .reply:before {
    font-size: 12px;
    color: var(--color-primary);
}

.comment-metadata .edit-link:before {
    vertical-align: text-bottom;
}

.comment-body .reply {
    text-align: right;
}

.comment-list .children {
    position: relative;
    padding: 0;
    margin: 0;
    margin-left: 2.5rem;
    z-index: 0;
}

#cancel-comment-reply-link {
    color: var(--color-primary);
    text-decoration: underline;
}

#cancel-comment-reply-link:hover,
#cancel-comment-reply-link:focus {
    text-decoration: none;
}

/*===== // =====*/

/*===== 22. Form Part for Comment =====*/

.comment-respond {
    margin-top: 2.25rem;
}

.comment-reply-title {
    text-align: left;
    margin-bottom: 15px;
}

.comment-form {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
}

.comment-form>p:not(.comment-notes):not(.comment-form-comment):not(.comment-form-cookies-consent):not(.form-submit) {
    flex: auto;
}

.comment-form>p:nth-child(2n+1):not(.comment-notes):not(.comment-form-comment):not(.comment-form-cookies-consent):not(.form-submit) {
    margin-right: 30px;
}

.comment-form p.comment-form-url:not(.comment-notes):not(.comment-form-comment):not(.comment-form-cookies-consent):not(.form-submit) {
    margin-right: 0;
}

.comment-form-comment {
    max-width: 100%;
    flex-basis: 100%;
}

.comment-form>p:not(:last-child) {
    margin-bottom: 30px;
}

.comment-form-cookies-consent,
.form-submit {
    width: 100%;
}

/*===== // =====*/

/*===== 23. Footer Section =====*/

.footer-section {
    padding-top: 60px;
}

.footer-dark {
    color: #ffffff;
    background-color: #151535;
}

.footer-light {
    background-color: #ffffff;
}

.footer-light .widget-payment-methods li a {
    color: var(--color-primary);
}

.footer-light .widget-payment-methods li a:hover,
.footer-light .widget-payment-methods li a:focus {
    color: var(--color-secondary-dark);
}

.footer-info-wrapper li:not(:last-child) {
    margin-right: 25px;
}

.contact-info-wrapper .widget,
.footer-info-wrapper .widget {
    padding: 30px 18px;
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
    display: block;
    height: 100%;
    z-index: 0;
    color: #ffffff;
}

.footer-info-wrapper .widget {
    border-radius: 3px;
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.22);
}


.footer-info-wrapper .contact-icon {
    font-size: 74px;
    height: 74px;
    padding-right: 18px;
    margin-right: 18px;
    border-right: 1px solid #dddde0;
}

.footer-info-wrapper .contact-info span.text {
    font-size: 20px;
    font-weight: 600;
    color: var(--color-secondary);
}

.footer-info-wrapper .contact-info span.title {
    color: #777777;
    margin-top: 5px;
}

.footer-main {
    padding: 45px 0;
    border-bottom: 1px solid rgba(125, 125, 125, 0.3);
}

.footer-copyright {
    padding: 24px 0;
    border-bottom: 5px solid var(--color-primary);
}

.footer-main .contact-area:not(:last-child) {
    margin-bottom: 15px;
}


.footer-info-wrapper .widget-contact::before {
    background-color: var(--color-primary);
}

.footer-info-wrapper .widget-contact:hover::before,
.footer-info-wrapper .widget-contact:focus-within::before {
    right: 0;
}

.footer-info-wrapper .widget-contact::before {
    top: 0;
    right: 100%;
    background-color: var(--color-primary);
}

.footer-info-wrapper .widget-contact::after,
.footer-info-wrapper .widget-contact::before {
    content: "";
    position: absolute;
    width: 105%;
    height: 105%;
    z-index: -1;
    transition: all .5s;
}

.footer-info-wrapper .widget-contact:focus-within .title,
.footer-info-wrapper .widget-contact:hover .title,
.footer-info-wrapper .widget-contact:focus-within .contact-icon,
.footer-info-wrapper .widget-contact:hover .contact-icon {
    color: #ffffff;
}


.footer-info-wrapper .widget-contact:hover::after,
.footer-info-wrapper .widget-contact:focus-within::after {
    left: 0;
}

.footer-info-wrapper .widget-contact::after,
.footer-info-wrapper .widget-contact::before {
    content: "";
    position: absolute;
    width: 105%;
    height: 105%;
    z-index: -1;
    transition: all .5s;
}

.footer-info-wrapper .widget-contact::after {
    bottom: 0;
    left: 100%;
    background-image: url(../images/bg/info-hover.png);
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: right;
}

.footer-info-wrapper .widget-contact:hover .contact-icon i,
.footer-info-wrapper .widget-contact:focus-within .contact-icon i {
    text-shadow: 235px -17px 0 rgb(255 255 255 / 0.2);
    transition: all .5s;
}

/*===== // =====*/

/*===== 24. Back To Top Start =====*/

.scrollup {
    display: none;
    position: fixed;
    bottom: 28px;
    right: 30px;
    width: 42px;
    height: 42px;
    line-height: 42px;
    font-size: 20px;
    text-align: center;
    cursor: pointer;
    color: #ffffff;
    background-color: var(--color-primary);
    border: none;
    outline: none;
    border-bottom-left-radius: 50%;
    border-top-left-radius: 50%;
    border-bottom-right-radius: 50%;
    box-shadow: 0 0 12px 0 rgba(0, 0, 0, .2);
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    z-index: 99;
}

.scrollup i {
    display: inline-block;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}

.scrollup:hover {
    color: #ffffff;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
}

.scrollup:hover i {
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
}

/*===== // =====*/

/*===== 25. Breadcrumb Section =====*/

.breadcrumb-area {
    width: 100%;
    position: relative;
    z-index: 0;
    overflow: hidden;
    height: auto;
    display: block;
    color: #ffffff;
    background: url(../images/bg/breadcrumbg.jpg) center center scroll rgba(0, 0, 0, .75);
    background-blend-mode: multiply;
    background-size: cover;
}

.breadcrumb-content {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    width: 100%;
    height: 100%;
    padding: 35px 0;
    min-height: 236px;
}

.breadcrumb-heading {
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 0;
    /* margin: auto 0; */
    height: 100%;
    width: 100%;
    max-width: 50%;
}

.breadcrumb-heading h2 {
    margin-bottom: 0;
}

.breadcrumb-list {
    flex-shrink: 0;
    list-style: none;
    width: 100%;
    max-width: 50%;
    padding: 0;
    margin: 0;
}

.breadcrumb-list li {
    display: inline-block;
    word-break: break-word;
}

.breadcrumb-list li i {
    vertical-align: middle;
}

.breadcrumb-list li span {
    color: var(--color-primary);
    display: inline-block;
}

.breadcrumb-content .breadcrumb-list li a:not(:focus):not(:hover) {
    color: #ffffff;
}

.breadcrumb-center .breadcrumb-content {
    -ms-flex-direction: column;
    flex-direction: column;
    justify-content: center;
}

.breadcrumb-center .breadcrumb-heading {
    text-align: center;
}

.breadcrumb-center .breadcrumb-list {
    text-align: center;
}

.breadcrumb-right .breadcrumb-content {
    flex-direction: row-reverse;
}

.breadcrumb-right .breadcrumb-list,
.breadcrumb-left .breadcrumb-heading {
    text-align: left;
}

.breadcrumb-left .breadcrumb-list,
.breadcrumb-right .breadcrumb-heading {
    text-align: right;
}

.breadcrumb-footer {
    background-color: var(--color-primary);
    background-color: #ffffff45;
    border-top: 1px solid #d61523;
}

.breadcrumb-content-below {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    justify-content: space-between;
    min-height: 83px;
}

.breadcrumb-content-below .breadcrumb-list,
.breadcrumb-content-below .breadcrumb-widget {
    flex: 1;
    line-height: 0.5;
}

.breadcrumb-content-below .breadcrumb-list {
    text-align: left;
}

.breadcrumb-content-below .breadcrumb-widget {
    text-align: right;
}

.breadcrumb-widget .widget {
    display: inline-block;
    max-width: 180px;
}

.breadcrumb-home {
    margin-right: 20px;
}

.breadcrumb-home a {
    display: inline-block;
    line-height: 1.65;
    padding: 0 7px;
    font-size: 22px;
    color: var(--color-secondary-dark);
    background-color: #ffffff;
}

.breadcrumb-home a:hover,
.breadcrumb-home a:focus {
    color: var(--color-primary);
}

/*===== // =====*/

/*===== 26. About Page =====*/

.about-panel p {
    margin-bottom: 35px;
}

.skills-image {
    width: 100%;
    display: block;
    margin: 0 auto;
}

.skills-image img {
    margin: 0 auto;
}

.skills-wrapper {
    width: 100%;
    display: block;
    padding: 20px 0;
}

.skills-panel {
    display: flex;
    align-items: center;
    width: 100%;
}

.skills-panel:not(:last-child) {
    margin-bottom: 60px
}

.skills-growth {
    margin-right: 35px;
}

.skills-panel p:last-child {
    margin-bottom: 0;
}

.progressbar {
    display: inline-block;
    width: 100px;
}

.circle {
    width: 95px;
    height: 95px;
    margin: 0 auto;
    display: inline-block;
    position: relative;
    text-align: center;
}

.circle canvas {
    vertical-align: middle;
    border-radius: 50%;
}

.circle div {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    text-align: center;
    line-height: 95px;
    font-size: 25px;
    font-weight: 700;
}

/*===== // =====*/

/*===== 27. Pagination =====*/

.pagination {
    position: relative;
    text-align: center;
    z-index: 0;
    width: 100%;
    max-width: fit-content;
    display: block;
    margin: 0 auto;
    margin-top: 50px;
    padding: 12px 10px;
    box-shadow: 0px 0px 5.52px 0.48px rgba(0, 0, 0, 0.2);
}

.pagination .nav-links {
    line-height: 40px;
    display: inline-flex;
}

.pagination .page-numbers:not(.dots) {
    font-weight: 600;
    border-width: 2px;
    border-style: solid;
    border-color: transparent;
    display: flow-root;
    font-size: 16px;
    line-height: 1.1;
    min-width: 25px;
    text-align: center;
    padding: 2px;
    transition: all 0.3s ease 0s;
    vertical-align: baseline;
    white-space: nowrap;
    border-radius: 0;
    cursor: pointer;
}

.pagination .nav-links .prev.page-numbers,
.pagination .nav-links .next.page-numbers,
.pagination .nav-links .page-numbers.current {
    color: #ffffff;
    background-color: var(--color-primary);
}

.pagination .page-numbers:not(.dots):not(:last-child) {
    margin-right: 10px;
}

/*===== // =====*/

/*===== 28. FAQ =====*/

.faq-list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: flex-start;
    -webkit-align-items: flex-start;
    -ms-flex-align: flex-start;
    align-items: flex-start;
}

.faq-icon {
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    font-size: 60px;
    height: 60px;
    margin-right: 15px;
    line-height: 1;
    position: relative;
    z-index: 0;
    color: var(--color-primary);
}

.faq-content {
    display: inline-block;
    text-align: left;
    color: inherit;
}

.faq-content h5 {
    margin-bottom: 10px;
}

.faq-content p {
    margin: 0;
    color: #777777;
}

/*===== // =====*/

/*===== 29. Contact Page =====*/

.contact-info-wrapper {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -moz-flex;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info-wrapper li {
    flex-basis: 100%;
    position: relative;
    list-style: none;
}

.contact-info-wrapper li:not(:last-child) {
    margin-bottom: 50px;
}

.contact-info-wrapper .widget {
    border-left: 2px solid var(--color-primary);
    box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.1);
}

.contact-info-wrapper .contact-icon {
    font-size: 42px;
    height: 42px;
    margin-right: 14px;
}

.contact-info-wrapper .contact-info span.text {
    font-size: 18px;
    font-weight: 600;
}

.contact-info-wrapper .contact-info span.title {
    color: #777777;
    margin-top: 2px;
}

.send-your-enquiry {
    text-align: center;
    padding: 26px 38px;
    background-color: #ffffff;
    box-shadow: 0px 0px 12.61px 0.39px rgba(0, 0, 0, 0.1);
}

.send-your-enquiry h4,
.send-your-enquiry form p:not(:last-child) {
    margin-bottom: 15px;
}

.send-your-enquiry form p:last-child {
    margin-bottom: 0;
}

.send-your-enquiry form .hi-btn {
    margin-top: 10px;
}

.opening-hours {
    padding: 25px 35px;
    color: #ffffff;
    background: url(../images/bg/contact-bg.jpg) center center scroll rgba(0, 0, 0, .8);
    background-blend-mode: multiply;
    background-size: cover;
    box-shadow: 0px 0px 12.61px 0.39px rgba(0, 0, 0, 0.1);
}

.opening-heading {
    text-align: center;
}

.opening-heading h4 {
    margin-bottom: 12px;
}

.opening-hours .hi-grid-dl {
    padding: 0 10px;
}

.opening-hours .hi-grid-dl dd {
    text-align: right;
}

.map-section {
    padding: 350px 0 100px;
}

#map {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    z-index: -1;
}

/*===== // =====*/

/*===== 30. 404 Page =====*/

.hi-text-404 {
    text-align: center;
}

.hi-text-404 h1 {
    font-size: 515px;
    line-height: 0.8;
}

.hi-text-404 h1,
.hi-text-404 img {
    display: inline-flex;
    max-width: 916px;
}

.hi-text-404 h2 {
    margin: 60px 0 22px;
}

/*===== // =====*/

/*===== 31. Coming Soon =====*/

.coming-soon {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 50px 0 40px;
    color: #ffffff;
    background: url(../images/bg/comingSoon-bg.jpg) center center scroll rgba(0, 0, 0, .8);
    background-blend-mode: multiply;
    text-align: center;
    z-index: 0;
}

.coming-soon .widget-social-widget ul {
    justify-content: center;
}

.hi-soon-text {
    max-width: 500px;
    margin: 0 auto;
    margin-bottom: 35px;
    display: block;
}

.hi-logo-soon {
    margin-bottom: 16px;
}

.hi-soon-text p {
    margin-top: 10px;
    margin-bottom: 0;
}

.fact-wrapper {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-pack: center;
    justify-content: center;
}

.fact-soon .fun-box {
    flex: 1 1 0%;
    margin-right: 35px;
    padding-right: 35px;
    position: relative;
    z-index: 0
}

.fact-soon .fun-box:not(:last-child):after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 0;
    height: 100px;
    display: inline-block;
    margin: auto;
    border: 0px solid rgba(255, 255, 255, 0.40);
    border-right-width: 1px;
    z-index: -1;
}

.fact-soon .fun-box:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: 0;
}

.count-fact {
    padding: 35px;
    text-align: center;
    background-color: rgba(214, 21, 35, 0.25);
    position: relative;
    z-index: 0;
}

.count-fact h1 {
    font-size: 70px;
    line-height: 0.8;
}

.count-fact h4 {
    margin-top: 15px;
}

.soon-widget,
.subscribe-form-soon {
    max-width: 462px;
    margin: 0 auto;
    margin-top: 40px;
    display: block;
}

.subscribe-form-soon .hi-search-field {
    background-color: #323232;
    border-color: #323232;
}

.soon-widget .widget-social-widget li a {
    color: var(--color-secondary);
    background-color: #ffffff;
}

.soon-widget .widget-social-widget li a:hover,
.soon-widget .widget-social-widget li a:focus {
    color: var(--color-primary);
}

/*===== // =====*/

body {
    background-color: #ffffff;
}

/* --/-- */

.hi-btn-wrapper .hi-btn:not(:last-child) {
    margin-right: 22px;
}

button[type=submit],
button,
input[type="button"],
input[type="reset"],
input[type="submit"],
.hi-btn {
    font-weight: 500;
    padding: 0 20px;
    line-height: 2.6;
    letter-spacing: .3px;
    text-transform: initial;
    border-width: 1px;
    border-style: solid;
    border-radius: 0;
    display: inline-block;
    vertical-align: middle;
    white-space: nowrap;
    position: relative;
    z-index: 0;
}

.hi-btn:not(.hi-search-submit) {
    --duration: .5s;
    --move-hover: -4px;
    --shadow: 0 2px 8px -1px rgb(0 0 0 / 32%);
    --shadow-hover: 0 4px 20px -2px rgb(0 0 0 / 32%);
    letter-spacing: .5px;
    box-shadow: var(--shadow);
    -webkit-transform: translateY(var(--y));
    transform: translateY(var(--y));
    -webkit-transition: box-shadow var(--duration) ease, -webkit-transform var(--duration) ease;
    transition: box-shadow var(--duration) ease, -webkit-transform var(--duration) ease;
    transition: transform var(--duration) ease, box-shadow var(--duration) ease;
    transition: transform var(--duration) ease, box-shadow var(--duration) ease, -webkit-transform var(--duration) ease;
    -webkit-tap-highlight-color: transparent;
    -webkit-appearance: none;
    transition: all .5s;
}

.hi-btn div {
    display: -webkit-box;
    display: flex;
}

.hi-btn div span {
    display: block;
    white-space: pre-wrap;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    font-style: normal;
}

.hi-btn div span:nth-child(1) {
    --d: 0.05s;
}

.hi-btn div span:nth-child(2) {
    --d: 0.1s;
}

.hi-btn div span:nth-child(3) {
    --d: 0.15s;
}

.hi-btn div span:nth-child(4) {
    --d: 0.2s;
}

.hi-btn div span:nth-child(5) {
    --d: 0.25s;
}

.hi-btn div span:nth-child(6) {
    --d: 0.3s;
}

.hi-btn div span:nth-child(7) {
    --d: 0.35s;
}

.hi-btn div span:nth-child(8) {
    --d: 0.4s;
}

.hi-btn div span:nth-child(9) {
    --d: 0.45s;
}

.hi-btn div span:nth-child(10) {
    --d: 0.5s;
}

.hi-btn div span:nth-child(11) {
    --d: 0.55s;
}

.hi-btn:not(.hi-search-submit):hover,
.hi-btn:not(.hi-search-submit):focus {
    --y: var(--move-hover);
    --shadow: var(--shadow-hover);
    --move: -4px;
    --shadow-active: 0 3px 1px rgba(0, 0, 0, .2);
    transition: all .5s;
}

.hi-btn:not(.hi-search-submit):hover span,
.hi-btn:not(.hi-search-submit):focus span {
    -webkit-animation: move var(--duration) linear var(--d);
    animation: move var(--duration) linear var(--d);
    transition: all .5s;
}

@-webkit-keyframes move {
    40% {
        -webkit-transform: translateY(var(--move));
        transform: translateY(var(--move));
        text-shadow: var(--shadow-active);
    }
}

@keyframes move {
    40% {
        -webkit-transform: translateY(var(--move));
        transform: translateY(var(--move));
        text-shadow: var(--shadow-active);
    }
}

button[type=submit],
button,
input[type="button"],
input[type="reset"],
input[type="submit"],
.hi-btn-primary {
    color: #ffffff;
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    transition: all .5s;

}

.hi-btn-primary:hover,
.hi-btn-primary:focus {
    color: #ffffff;
    background-color: var(--color-primary);
    border-color: var(--color-primary);
}

.hi-btn-secondary {
    color: #ffffff;
    background-color: var(--color-secondary);
    border-color: var(--color-secondary);
}

.hi-btn-border:hover,
.hi-btn-border:focus,
.hi-btn-secondary:hover,
.hi-btn-secondary:focus {
    color: #ffffff;
    background-color: var(--color-secondary);
    border-color: var(--color-secondary);
}

.hi-btn-border-white {
    color: #ffffff;
    background: none;
    border-color: #ffffff;
}

.hi-btn-white:hover,
.hi-btn-white:focus,
.hi-btn-border-white:hover,
.hi-btn-border-white:focus {
    color: var(--color-primary);
    background-color: #ffffff;
    border-color: #ffffff;
}

.hi-btn-white {
    color: var(--color-primary);
    background-color: #ffffff;
    border-color: #ffffff;
}

.hi-btn-text-icon {
    border-color: transparent;
}

.hi-btn-text-icon i {
    margin-right: 2px;
}

.hi-btn-icon {}

/* bt-effect-1 (bt-up) */

.hi-btn-effect-1:hover,
.hi-btn-effect-1:focus {
    -webkit-transform: translateY(-3px);
    -ms-transform: translateY(-3px);
    transform: translateY(-3px);
}

.hi-btn-effect-2:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    background-color: var(--color-secondary);
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: 50% 100%;
    transform-origin: 50% 100%;
}

.hi-btn-primary.hi-btn-effect-2:hover:before,
.hi-btn-primary.hi-btn-effect-2:focus:before {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
}

.hi-btn-primary.hi-btn-effect-2:hover,
.hi-btn-primary.hi-btn-effect-2:focus {
    border-color: var(--color-secondary);
}

/* --/-- */