/*=============
Table-Of-Content
===============
Google-Fonts
Variables-Setup
Reset-CSS
Helper-Class
Slider-Control
Wave-Effect
Button-Class
Nav_area-Style
Nav_logo-Style
Shop-Mini-Cart
ScrollUp-Button
Header-Info
Header-Area
ToolTip-Area
Gallery-Area
Feature_Area
Videa_Area
New_Feature_Area
Produt-Area
Client-Area
Testimonial-Area
Blog_Area
Footer_Area
Preloader_CSS
===============*/
/*===== Google-Fonts =====*/
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Roboto:wght@400;500;700&display=swap');

/*===== Variables-Setup =====*/
:root {
    --primary-color: 215, 35, 35;
    --primary-dark-color: 188, 27, 27;
    --white-color: 255, 255, 255;
    --body-color: 126, 130, 133;
    --heading-color: 34, 45, 53;
    --dark-color: 34, 45, 53;
    --gray-color: 164, 167, 169;

    --primary-bg: 215, 35, 35;
    --primary-dark-bg: 188, 27, 27;
    --body-bg: 255, 255, 255;
    --dark-bg: 34, 45, 53;
    --black-bg: 28, 37, 44;
    --white-bg: 255, 255, 255;
    --gray-bg: 243, 243, 243;

    --body-font-family: 'Roboto', sans-serif;
    --heading-font-family: 'Bebas Neue', cursive;

    --body-font-size: 15px;
    --h1-font-size: 90px;
    --h2-font-size: 65px;
    --h3-font-size: 50px;
    --h4-font-size: 30px;
    --h5-font-size: 24px;
    --h6-font-size: 22px;

    --body-line-height: 25px;
    --h1-line-height: 100px;
    --h2-line-height: 75px;
    --h3-line-height: 60px;
    --h4-line-height: 40px;
    --h5-line-height: 34px;
    --h6-line-height: 32px;

    --font-weight-regular: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;

    --normal-transition: 0.5s;

    --section-padding: 120px;

    --navbar-height: 100px;
}

@media screen and (max-width: 1024px) {
    :root {
        --navbar-height: 70px;

        --body-font-size: 14px;
        --h1-font-size: 60px;
        --h2-font-size: 50px;
        --h3-font-size: 33px;
        --h4-font-size: 26px;
        --h5-font-size: 20px;
        --h6-font-size: 14px;

        --body-line-height: 24px;
        --h1-line-height: 70px;
        --h2-line-height: 60px;
        --h3-line-height: 43px;
        --h4-line-height: 36px;
        --h5-line-height: 30px;
        --h6-line-height: 24px;

        --section-padding: 80px;
    }
}

@media screen and (max-width: 768px) {
    :root {
        --h1-font-size: 50px;
        --h2-font-size: 40px;
        --h3-font-size: 28px;
        --h4-font-size: 22px;
        --h5-font-size: 20px;
        --h6-font-size: 14px;

        --h1-line-height: 60px;
        --h2-line-height: 50px;
        --h3-line-height: 38px;
        --h4-line-height: 32px;
        --h5-line-height: 30px;
        --h6-line-height: 24px;
    }
}

/*====== Reset-CSS ======*/
body {
    font-family: var(--body-font-family);
    font-size: var(--body-font-size);
    font-weight: var(--font-weight-regular);
    line-height: var(--body-line-height);
    color: rgba(var(--body-color), 1);
    background-color: rgba(var(--body-bg), 1);
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

hr {
    border-color: rgba(var(--gray-bg), 1);
}

a {
    outline: none;
    text-decoration: none;
    -webkit-transition: var(--normal-transition);
    transition: var(--normal-transition);
    color: rgba(var(--heading-color), 1);
}

a:hover {
    color: rgba(var(--primary-color), 1);
}

a:hover,
a:focus {
    outline: none;
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 400;
    margin: 0 0 15px;
    line-height: var(--heading-line-height);
    font-family: var(--heading-font-family);
    color: rgba(var(--heading-color), 1);
    letter-spacing: -0.01em;
    text-transform: uppercase;
}

.h1,
h1 {
    font-size: var(--h1-font-size);
    line-height: var(--h1-line-height);
}

.h2,
h2 {
    font-size: var(--h2-font-size);
    line-height: var(--h2-line-height);
}

.h3,
h3 {
    font-size: var(--h3-font-size);
    line-height: var(--h3-line-height);
}

.h3_alt {
    font-size: calc(var(--h3-font-size) - 6px);
    line-height: calc(var(--h3-line-height) - 6px);
}

.h4,
h4 {
    font-size: var(--h4-font-size);
    line-height: var(--h4-line-height);
}

.h5,
h5 {
    font-size: var(--h5-font-size);
    font-weight: 400;
    line-height: var(--h5-line-height);
}

.h6,
h6 {
    font-size: var(--h6-font-size);
    line-height: var(--h6-line-height);
    margin-bottom: 10px;
}

/*====== Helper-Class ======*/
.full-wrapper {
    overflow: hidden;
    position: relative;
    z-index: 1;
    width: 100%;
    min-height: 100%;
    background-color: rgba(var(--body-bg), 1);
}

.single_image {
    overflow: hidden;
    display: inline-block;
    line-height: 0;
    margin: 0;
    border-radius: 5px;
}

.flex_content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.dark_bg {
    --body-color: 164, 167, 169;
    --heading-color: var(--body-bg);

    background-color: rgba(var(--dark-bg), 1);
}

.gray_bg {
    background-color: rgba(var(--gray-bg), 1);
}

.line_height-reset {
    line-height: 0;
}

.section_padding {
    padding-top: var(--section-padding);
    padding-bottom: var(--section-padding);
}

.section_padding-top {
    padding-top: var(--section-padding);
}

.section_padding-bottom {
    padding-bottom: var(--section-padding);
}

.section_padding-top {
    padding-top: var(--section-padding);
}

.section_relative {
    position: relative;
    z-index: 1;
}

.section_heading {
    margin-bottom: 70px;
}

.section_heading .desc {
    font-size: calc(var(--body-font-size) + 3px);
    line-height: calc(var(--body-line-height) + 3px);
}

.section_heading .desc span {
    font-weight: 500;
}

.desc p {
    margin-bottom: 24px;
}

.desc p:last-child {
    margin-bottom: 0;
}

.text_dark {
    color: rgba(var(--heading-color), 1);
}

.text_divider {
    position: relative;
    text-align: center;
    text-transform: uppercase;
    font-size: calc(var(--body-font-size) + 3px);
    line-height: calc(var(--body-line-height) + 3px);
    font-weight: 500;
    z-index: 1;
}

.text_divider:after {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 1px;
    background-color: rgba(var(--gray-bg), 1);
    z-index: -1;
}

.text_divider span {
    background-color: rgba(var(--body-bg), 1);
    padding: 0 40px;
}

.grid_space {
    margin-bottom: -30px;
}

.grid_space > div {
    margin-bottom: 30px;
}

@media screen and (min-width: 992px) {
    .container {
        max-width: 1200px;
        width: calc(100% - 60px);
    }

    .container.large-width {
        max-width: 1860px;
        width: calc(100% - 60px);
    }
}

.nav_height {
    height: var(--navbar-height);
    width: 100%;
}

.overflow_hidden {
    overflow: hidden;
}

/*====== Slider-Control ======*/
.slider_arrows {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.slider_arrows .slider_arrow {
    width: 60px;
    height: 60px;
    margin: 10px;
    border: none;
    border-radius: 100px;
    outline: none;
    background: rgba(var(--primary-bg), 1);
    color: rgba(var(--heading-color), 1);
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.slider_arrows .slider_arrow:hover {
    background: rgba(var(--primary-dark-bg), 1);
}

.swiper-pagination {
    position: static;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    margin: 10px;
    position: relative;
    background-color: rgba(var(--body-color), 1);
    opacity: 1;
}

.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: rgba(var(--heading-color), 1);
}

.swiper-pagination .swiper-pagination-bullet svg {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 22px;
    height: 22px;
}

.testimonial_slider .swiper-pagination svg circle {
    fill: none;
    stroke: rgba(var(--heading-color), 1);
    stroke-width: 1;
    stroke-linecap: round;
    stroke-dasharray: 125;
    stroke-dashoffset: 125;
}

.swiper-pagination-bullet-active svg circle {
    -webkit-animation: slide-progress 3s linear forwards;
    animation: slide-progress 3s linear forwards;
}

@-webkit-keyframes slide-progress {
    0% {
        stroke-dashoffset: 125;
    }

    100% {
        stroke-dashoffset: 63;
    }
}

@keyframes slide-progress {
    0% {
        stroke-dashoffset: 125;
    }

    100% {
        stroke-dashoffset: 63;
    }
}

/*====== Wave-Effect ======*/
.waves-block {
    position: absolute;
    width: var(--section-padding);
    height: var(--section-padding);
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: -1;
}

.waves-block .waves {
    position: absolute;
    width: 100%;
    height: 100%;
    background: none;
    border: 1px solid;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    border-radius: 320px;
    background-clip: padding-box;
    -webkit-animation: waves 3s ease-in-out infinite;
    animation: waves 3s ease-in-out infinite;
}

.waves-block .wave-1 {
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
}

.waves-block .wave-2 {
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
}

.waves-block .wave-3 {
    -webkit-animation-delay: 2s;
    animation-delay: 2s;
}

@-webkit-keyframes waves {
    0% {
        -webkit-transform: scale(0.2, 0.2);
        transform: scale(0.2, 0.2);
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    }

    50% {
        opacity: 0.9;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
    }

    100% {
        -webkit-transform: scale(0.9, 0.9);
        transform: scale(0.9, 0.9);
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    }
}

@keyframes waves {
    0% {
        -webkit-transform: scale(0.2, 0.2);
        transform: scale(0.2, 0.2);
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    }

    50% {
        opacity: 0.9;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
    }

    100% {
        -webkit-transform: scale(0.9, 0.9);
        transform: scale(0.9, 0.9);
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    }
}

/*====== Button-Class ======*/
.primary_button {
    display: inline-block;
    font-size: calc(var(--body-font-size) - 1px);
    font-weight: 700;
    background-color: rgba(var(--primary-bg), 1);
    color: rgba(var(--white-color), 1);
    border: none;
    position: relative;
    z-index: 1;
    overflow: hidden;
    text-align: center;
    text-transform: uppercase;
    outline: none;
    letter-spacing: 0.02em;
    padding: 15px 38px;
    border-radius: 5px;
}

.primary_button.outline {
    background: none;
    border: 1px solid rgba(var(--gray-bg), 1);
    color: rgba(var(--heading-color), 1);
}

.primary_button:hover {
    color: rgba(var(--white-color), 1);
    background-color: rgba(var(--primary-dark-bg), 1);
}

.primary_button.dark {
    color: rgba(var(--white-color), 1);
    background-color: rgba(var(--dark-bg), 1);
}

.primary_button.dark:hover {
    background-color: rgba(var(--primary-bg), 1);
    color: rgba(var(--white-color), 1);
}

.primary_button.small_size {
    padding: 8px 22px;
    font-size: calc(var(--body-font-size) - 4px);
    border-radius: 3px;
}

.primary_button:focus {
    outline: none;
}

/*====== Nav_area-Style ======*/
.nav_area {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    width: 100%;
    z-index: 4;
    -webkit-transition: var(--normal-transition);
    transition: var(--normal-transition);
    white-space: nowrap;
    margin: 0 auto;
    padding: 0px;
    border-bottom: 1px solid rgba(var(--gray-bg), 1);
    background-color: rgba(var(--body-bg), 1);
}

.nav_area.affix {
    position: fixed !important;
    z-index: 5;
}

.nav_row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    min-height: var(--navbar-height);
}

.nav_area .nav_right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-right: -15px;
}

@media screen and (min-width: 1024px) {
    .nav_area.affix {
        --navbar-height: 100px;
    }

    .nav_area .nav_right {
        margin-right: -30px;

    }
}

/*====== Nav_logo-Style ======*/
.nav_area .nav_logo .nav_logo-text {
    margin-bottom: 0;
}

.nav_area .nav_logo .nav_logo-text a {
    min-width: 100px;
    display: block;
    font-size: 40px;
    overflow: hidden;
    position: relative;
    color: rgba(var(--heading-color), 1);
}

.nav_area .nav_logo {
    border-right: 1px solid rgba(var(--gray-bg), 1);
    height: var(--navbar-height);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 200px;
    margin-left: -45px;
}

@media screen and (max-width: 992px) {
    .nav_area .nav_logo {
        border-right: none;
        width: auto;
        margin-left: 0;
    }
}

/*====== Menu-Style ======*/
.nav_area .nav_menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav_area .nav_menu ul li {
    position: relative;
}

.nav_area .nav_menu ul li a {
    padding: 0px 20px;
    position: relative;
    font-weight: 500;
    font-family: var(--heading-font-family);
    font-size: var(--body-font-size);
    color: rgba(var(--heading-color), 1);
    letter-spacing: 0.1em;
    text-transform: capitalize;
    background: none;
    text-transform: uppercase;
    display: block;
}

.nav_area .nav_menu ul li.current-menu-item > a,
.nav_area .nav_menu ul li.active > a,
.nav_area .nav_menu ul li:hover > a {
    color: rgba(var(--primary-color), 1) !important;
}

.nav_area .nav_menu .nav > li {
    position: relative;
    padding: 0;
}

.nav_area .nav_menu .nav > li > a {
    min-height: var(--navbar-height);
    line-height: var(--navbar-height);
    padding: 0 22px;
    position: relative;
}

@media screen and (max-width: 1170px) {
    .nav_area .nav_menu .nav > li > a {
        padding: 0 16px;
    }
}


.nav_area .nav_menu .nav > li > a:before {
    content: "";
    position: absolute;
    right: 0;
    bottom: -1px;
    width: 0%;
    height: 5px;
    display: block;
    background-color: rgba(var(--primary-color), 1);
    -webkit-transition: 0.5s;
    transition: 0.5s;
    border-radius: 10px 10px 0 0;
}

.nav_area .nav_menu .nav > li.current-menu-item > a:before,
.nav_area .nav_menu .nav > li.active > a:before,
.nav_area .nav_menu .nav > li:hover > a:before {
    width: 100%;
    right: auto;
    left: 0;
}

/*====== Sub_menu-Style ======*/
.nav_area .nav_menu ul.nav li {
    position: relative;
}

.nav_area .nav_menu ul.nav li .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    border: 1px solid rgba(var(--gray-bg), 1);
    background-color: rgba(var(--body-bg), 1);
    min-width: 250px;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: var(--normal-transition);
    transition: var(--normal-transition);
    padding-top: 15px;
    padding-bottom: 15px;
    z-index: 5;
}

.nav_area .nav_menu ul.nav li .sub-menu .sub-menu {
    left: 100%;
    top: 0;
}

.nav_area .nav_menu ul.nav li .sub-menu li {
    display: block;
    padding-left: 13px;
    padding-right: 13px;
}

.nav_area .nav_menu ul.nav li .sub-menu li:hover > .sub-menu {
    top: -16px;
}

.nav_area .nav_menu ul.nav li .sub-menu li a {
    padding: 6px 10px;
    display: block;
}

.nav_area .nav_menu ul.nav li:hover > .sub-menu {
    visibility: visible;
    opacity: 1;
}

/*====== nav_menu-plus-CSS ======*/
.nav_menu ul li i.plus {
    width: 10px;
    height: 10px;
    line-height: 10px;
    display: inline-block;
    -webkit-transition: var(--normal-transition);
    transition: var(--normal-transition);
    position: relative;
    margin-left: 5px;
}

.nav_menu ul li i.plus:before,
.nav_menu ul li i.plus:after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 10px;
    height: 1px;
    display: block;
    background-color: rgba(var(--body-color), 1);
    -webkit-transition: var(--normal-transition);
    transition: var(--normal-transition);
}

.nav_menu ul li i.plus:before {
    -webkit-transform: translate(-50%, -50%) rotate(90deg);
    transform: translate(-50%, -50%) rotate(90deg);
}

.nav_menu ul li > a.toggle > i.plus:before {
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
    transform: translate(-50%, -50%) rotate(0deg);
}

@media screen and (min-width: 992px) {
    .nav_menu ul li:hover > a > i.plus:before {
        -webkit-transform: translate(-50%, -50%) rotate(0deg);
        transform: translate(-50%, -50%) rotate(0deg);
    }
}

.nav_menu ul li.active > a > i.plus:before,
.nav_menu ul li.active > a > i.plus:after,
.nav_menu ul li.current-menu-item > a > i.plus:before,
.nav_menu ul li.current-menu-item > a > i.plus:after,
.nav_menu ul li:hover > a > i.plus:before,
.nav_menu ul li:hover > a > i.plus:after {
    background-color: rgba(var(--heading-color), 1) !important;
}

/*====== Nav_Tools ======*/
.nav_area .nav_close {
    position: absolute;
    top: 13px;
    right: 20px;
    cursor: pointer;
    color: rgba(var(--heading-color), 1);
    display: none;
}

.nav_right .nav_action {
    width: var(--navbar-height);
    height: var(--navbar-height);
    border: none;
    font-size: var(--h5-font-size);
    border-left: 1px solid rgba(var(--gray-bg), 1);
    color: rgba(var(--heading-color), 1);
    background: none;
    cursor: pointer;
    outline: none;
    position: relative;
    z-index: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.nav_right .nav_action:after {
    content: "";
    position: absolute;
    left: 0;
    top: calc(100% - 2px);
    height: 3px;
    width: 100%;
    background-color: rgba(var(--body-bg), 1);
    z-index: 6;
    opacity: 0;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.nav_right .nav_action i {
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

/*====== Shop-Mini-Cart ======*/
.nav_search_form {
    width: 500px;
    position: absolute;
    right: -1px;
    top: 80%;
    background-color: rgba(var(--body-bg), 1);
    padding: 35px;
    border: 1px solid rgba(var(--gray-bg), 1);
    cursor: default;
    text-align: left;
    z-index: 5;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    border-radius: 0 0 5px 5px;
}

#nav_search_action i {
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

#nav_search_action:hover .nav_search_form {
    opacity: 1;
    visibility: visible;
    top: 100%;
}

#nav_search_action:hover:after {
    opacity: 1;
}

.nav_search_form .search_input {
    border: none;
    width: 100%;
    background: none;
}

.nav_search_form .search_button {
    position: absolute;
    right: 35px;
    border: none;
    background: none;
    top: calc(50% - 18px);
    background-color: rgba(var(--body-bg), 1);
    padding: 5px;
}

@media screen and (max-width: 992px) {
    .nav_search_form {
        width: 330px;
        padding: 25px;
    }

    .nav_search_form .search_button {
        right: 25px;
    }
}

@media screen and (max-width: 768px) {
    .nav_search_form {
        width: 280px;
        padding: 18px;
        right: -70px;
    }

    .nav_search_form .search_input {
        font-size: 14px;
    }
}

/*====== Shop-Mini-Cart ======*/
.nav_right .nav_action .shop_count {
    position: absolute;
    left: 52%;
    bottom: 50%;
    height: 15px;
    line-height: 15px;
    border-radius: 15px;
    text-align: center;
    background-color: rgba(var(--primary-bg), 1);
    font-size: 8px;
    padding: 0 5px;
    color: rgba(var(--white-color), 1);
}

.nav_shop_cart {
    width: 360px;
    position: absolute;
    right: -1px;
    top: 80%;
    background-color: rgba(var(--body-bg), 1);
    padding: 30px;
    border: 1px solid rgba(var(--gray-bg), 1);
    cursor: default;
    text-align: left;
    z-index: 5;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    border-radius: 0 0 5px 5px;
}

@media screen and (max-width: 992px) {
    .nav_shop_cart {
        width: 320px;
    }
}

#nav_cart_action:hover:after {
    opacity: 1;
}

#nav_cart_action:hover .nav_shop_cart {
    opacity: 1;
    visibility: visible;
    top: 100%;
}

.nav_shop_cart .prod_lists {
    position: relative;
    list-style: none;
    margin: 0;
    padding: 0;
    max-height: 200px;
    overflow: auto;
}

.nav_shop_cart .prod_lists li {
    position: relative;
    text-align: left;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 20px;
}

.nav_shop_cart .prod_lists li:last-child {
    margin-bottom: 0;
}

.nav_shop_cart .prod_lists li .pic {
    width: 80px;
    min-width: 80px;
    height: 80px;
    line-height: 80px;
    background-color: rgba(var(--gray-bg), 1);
    margin-right: 20px;
    border-radius: 5px;
    overflow: hidden;
}

.nav_shop_cart .prod_lists li .con {
    padding-right: 20px
}

.nav_shop_cart .prod_lists li .title {
    margin-bottom: 0;
    font-size: var(--h6-font-size);
}

.nav_shop_cart .prod_lists li .title a {
    color: rgba(var(--heading-color), 1);
}

.nav_shop_cart .prod_lists li .title a:hover {
    color: rgba(var(--primary-color), 1);
}

.nav_shop_cart .prod_lists li .price {
    margin: 0;
    font-size: var(--body-font-size);
    line-height: var(--body-line-height);
}

.nav_shop_cart .prod_lists li .item_close {
    margin-left: auto;
    margin-right: 20px;
    color: rgba(var(--heading-color), 1);
    margin-bottom: auto;
    margin-top: 13px;
}

.nav_shop_cart .prod_lists li .item_close:hover {
    color: rgba(var(--primary-color), 1);
}

.nav_shop_cart .car_action {
    margin: -7px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.nav_shop_cart .car_action > * {
    margin: 7px;
}

/*====== nav_transparent-Menu ======*/
.nav_area.nav_transparent {
    position: fixed;
    top: 0;
    left: 0;
}

.nav_area.nav_transparent:not(.affix) .nav_toggle {
    color: rgba(var(--white-color), 1);
}


@media screen and (min-width: 992px) {
    .nav_area.nav_transparent:not(.affix) .nav_menu ul.nav > li > a {
        color: rgba(var(--white-color), 1);
    }

    .nav_area.nav_transparent:not(.affix) .nav_menu ul.nav > li:hover > a {
        color: rgba(var(--primary-color), 1);
    }

    .nav_area.nav_transparent:not(.affix) .nav_menu ul.nav > li > a i.plus:after,
    .nav_area.nav_transparent:not(.affix) .nav_menu ul.nav > li > a i.plus:before {
        background-color: rgba(var(--white-bg), 1);
    }

    .nav_area.nav_transparent:not(.affix) .nav_menu ul.nav > li:hover > a i.plus:after,
    .nav_area.nav_transparent:not(.affix) .nav_menu ul.nav > li:hover > a i.plus:before {
        background-color: rgba(var(--primary-bg), 1);
    }

    .nav_area.nav_transparent:not(.affix) .nav_search-toggle {
        color: rgba(var(--white-color), 1);
    }
}

/*========= ScrollUp-Button =========*/
.progress-wrap {
    position: fixed;
    right: 20px;
    bottom: 15px;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    border-radius: 50px;
    -webkit-box-shadow: inset 0 0 0 2px rgba(var(--heading-color), 0.2);
    box-shadow: inset 0 0 0 2px rgba(var(--heading-color), 0.2);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(15px);
    transform: translateY(15px);
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}

.progress-wrap.active-progress {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

.progress-wrap svg path {
    fill: none;
}

.progress-wrap svg.progress-circle path {
    stroke: rgba(var(--primary-bg), 1);
    stroke-width: 4;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}

.progress-wrap .icon {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    color: rgba(var(--primary-color), 1);
}

@media screen and (max-width: 992px) {
    .progress-wrap {
        right: 5px;
        bottom: 5px;
    }
}

/*======  Header-Info =======*/
.header_info-area {
    background-color: rgba(var(--dark-bg), 1);
}

.up_inline_list {
    list-style: none;
    margin: 0;
    padding: 0;
    text-transform: uppercase;
    font-weight: 500;
    font-size: calc(var(--body-font-size) - 4px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: -7px;
    padding: 12px 0;
}

.up_inline_list li {
    margin: 7px;
}

.up_inline_list li a {
    color: rgba(var(--gray-color), 1)
}

.up_inline_list li:hover > a {
    color: rgba(var(--white-color), 1)
}

.language_select {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-transform: uppercase;
    font-weight: 500;
    font-size: calc(var(--body-font-size) - 4px);
    color: rgba(var(--white-color), 1);
    cursor: pointer;
}

.language_select .icon {
    margin-right: 10px
}

/*====== Header-Area =======*/
.home_area {
    position: relative;
    z-index: 1;
}

.header_content .desc {
    font-size: calc(var(--body-font-size) + 3px);
    line-height: calc(var(--body-line-height) + 3px);
}

.header_image {
    min-width: 40vw;
    position: relative;
}

.header_logo_text {
    font-size: 14vw;
    text-transform: uppercase;
    font-family: var(--heading-font-family);
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: -1;
    letter-spacing: 0.1em;
    color: rgba(var(--heading-color), 0.1);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    min-width: 100%;
}

@media screen and (max-width: 767px) {
    .header_logo_text {
        font-size: 30vw;
    }
}

.header_logo_text span {
    display: inline-block;
}

.header_play {
    width: 150px;
    height: 150px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: rgba(var(--primary-bg), 1);
    color: rgba(var(--white-color), 1);
    font-size: calc(var(--body-font-size) + 4px);
    position: absolute;
    right: 15px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 2;
    -webkit-box-shadow: 0 0 15px 0 rgba(var(--heading-color), 0.1);
    box-shadow: 0 0 15px 0 rgba(var(--heading-color), 0.1);
    border-radius: 5px;
}

@media screen and (max-width: 767px) {
    .header_play {
        width: 80px;
        height: 80px;
    }
}

.header_play:hover {
    color: rgba(var(--primary-color), 1);
    background-color: rgba(var(--white-bg), 1);
}

/*====== ToolTip-Area =======*/
.tool_tip .waves-block .waves {
    border-color: rgba(var(--primary-color), 0.2);
    cursor: pointer;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.tool_tip:hover .waves-block .waves {
    border-color: rgba(var(--primary-color), 1);
}

.tool_tip {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 30px;
    background-color: rgba(var(--primary-bg), 1);
    border-radius: 100px;
    line-height: 30px;
    text-align: center;
    z-index: 1;
}

.tool_tip .content {
    width: 250px;
    background-color: rgba(var(--dark-bg), 1);
    padding: 20px;
    border-radius: 10px;
    position: absolute;
    left: 50%;
    bottom: calc(100% + 10px);
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    -webkit-box-shadow: 0 0 15px 0 rgba(var(--gray-bg), 1);
    box-shadow: 0 0 15px 0 rgba(var(--gray-bg), 1);
    font-size: calc(var(--body-font-size) - 1px);
    line-height: calc(var(--body-line-height) - 1px);
    -webkit-transition: 0.5s;
    transition: 0.5s;
    opacity: 0;
    visibility: hidden;
    color: rgba(var(--white-color), 1);
}

.tool_tip:hover .content {
    bottom: calc(100% + 20px);
    opacity: 1;
    visibility: visible;
}

.tool_tip .content:before {
    content: "";
    position: absolute;
    left: 50%;
    top: 100%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-right: 15px solid transparent;
    border-left: 15px solid transparent;
    border-top: 15px solid rgba(var(--dark-bg), 1);
}

.tool_tip .icon {
    color: rgba(var(--white-color), 1);
    cursor: pointer;
}

.tool_tip.tip_1 {
    bottom: 65%;
    left: 10%;
}

.tool_tip.tip_2 {
    bottom: 33%;
    left: 36%;
}

.tool_tip.tip_3 {
    left: 69%;
    bottom: 30%;
}

.tool_tip.tip_4 {
    left: 83%;
    bottom: 78%;
}

@media screen and (max-width: 768px) {
    .tool_tip {
        width: 20px;
        height: 20px;
        line-height: 20px;
        font-size: 12px;
    }
}

/*======  Gallery-Area =======*/
.gallery_thumb {
    margin: 0 -5px;
}

.gallery_thumb .gallery_item {
    width: 120px;
    height: 120px;
    line-height: 120px;
    text-align: center;
    background-color: rgba(var(--black-bg), 1);
    cursor: pointer;
    border: 1px solid transparent;
    overflow: hidden;
    border-radius: 5px;
}

.gallery_item.swiper-slide-thumb-active {
    border-color: rgba(var(--primary-color), 1);
}

.text_slider_arrows .slider_arrow {
    border: none;
    background: none;
    text-transform: uppercase;
    font-weight: 500;
    color: rgba(var(--body-color), 1);
    font-size: calc(var(--body-font-size) - 2px);
    -webkit-transition: 0.5s;
    transition: 0.5s;
    outline: none;
}

.text_slider_arrows .slider_arrow:hover {
    color: rgba(var(--heading-color), 1);
}

@media screen and (max-width: 768px) {
    .gallery_thumb .gallery_item {
        height: 100px;
        line-height: 100px;
    }
}

/*====== Feature_Area ======*/
.feature_boxes {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    border-bottom: 1px solid rgba(var(--gray-bg), 1);
    padding-bottom: 45px;
}

.feature_boxes .feature_box {
    width: calc(33.33% - 10px);
    border: 1px solid rgba(var(--gray-bg), 1);
    padding: 40px;
    text-align: center;
    position: relative;
    border-radius: 5px;
}

.feature_boxes .feature_box .icon {
    margin-bottom: 25px;
}

.feature_boxes .feature_box .sup_title {
    text-transform: uppercase;
    font-size: calc(var(--body-font-size) - 2px);
}

.feature_boxes .feature_box .title {
    margin: 0;
}

.feature_boxes .feature_box:after {
    content: "";
    position: absolute;
    left: calc(50% - 5px);
    bottom: -52px;
    width: 10px;
    height: 10px;
    border-radius: 100px;
    background-color: rgba(var(--gray-bg), 1);
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.feature_boxes .feature_box:hover:after {
    background-color: rgba(var(--primary-bg), 1);
}

@media screen and (max-width: 575px) {
    .feature_boxes {
        margin-top: -30px;
    }

    .feature_boxes .feature_box {
        width: 100%;
        margin-top: 30px;
    }
}

/*====== Videa_Area ======*/
.video_area {
    position: relative;
    z-index: 1;
}

.video_area .video_play {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 80px;
    height: 80px;
    background-color: rgba(var(--white-bg), 1);
    text-align: center;
    line-height: 80px;
    border-radius: 100px;
    color: rgba(var(--primary-color), 1);
    padding-left: 3px;
    z-index: 2;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.video_area .video_play:hover {
    background-color: rgba(var(--primary-bg), 1);
    color: rgba(var(--white-color), 1);
}

.video_area .video_image {
    position: relative;
    z-index: -2;
    overflow: hidden;
    border-radius: 5px;
}

.video_area .waves-block {
    width: 200px;
    height: 200px;
}

.video_area .waves-block .waves {
    background-color: rgba(var(--white-bg), 0.2);
    border: none;
}

@media screen and (max-width: 768px) {
    .video_area .video_play {
        width: 50px;
        height: 50px;
        line-height: 50px;
        font-size: 12px;
    }
}

/*===== New_Feature_Area =====*/
.feature_area {
    padding-top: calc(var(--section-padding) * 2);
    padding-bottom: var(--section-padding);
    margin-top: calc(0px - var(--section-padding));
}

.feature_box-2 {
    background-color: rgba(var(--black-bg), 1);
    padding: 30px 115px 30px 50px;
    position: relative;
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
    -webkit-transition: 0.5s;
    transition: 0.5s;
    -webkit-box-shadow: 0 0 0 0 rgba(var(--primary-bg), 1);
    box-shadow: 0 0 0 0 rgba(var(--primary-bg), 1);
    z-index: 1;
    border-radius: 5px;
}

.feature_box-2:hover {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
    -webkit-box-shadow: 0 5px 0 0 rgba(var(--primary-bg), 1);
    box-shadow: 0 5px 0 0 rgba(var(--primary-bg), 1);
}

.feature_box-2 .number {
    position: absolute;
    left: -11px;
    top: 35px;
    width: 24px;
    height: 24px;
    background-color: rgba(var(--primary-bg), 1);
    border-radius: 100px;
    text-align: center;
    line-height: 24px;
    font-size: calc(var(--body-font-size) - 4px);
    color: rgba(var(--white-color), 1);
}

.feature_box-2 .icon {
    position: absolute;
    right: 30px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 100px;
    z-index: -1;
}

@media screen and (max-width: 768px) {
    .feature_box-2 {
        padding: 30px 30px 30px 35px;
    }
}

/*===== Produt-Area ======*/
.product_box {
    border: 1px solid rgba(var(--gray-bg), 1);
    text-align: center;
    position: relative;
    background-color: rgba(var(--gray-bg), 1);
    overflow: hidden;
    border-radius: 5px;
}

.product_box .thumb {
    overflow: hidden;
    padding: 30px 30px 150px 30px;
    min-height: 350px;
}

.product_box .thumb img {
    -webkit-transition: 0.5s;
    transition: 0.5s;
    -webkit-transform: scale(1);
    transform: scale(1);
}

.product_box:hover .thumb img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.product_box .content {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 30px;
    background: rgb(var(--gray-bg));
    background: -webkit-gradient(linear, left bottom, left top, color-stop(48%, rgba(var(--gray-bg), 1)), color-stop(65%, rgba(var(--gray-bg), 0.75)), color-stop(87%, rgba(var(--gray-bg), 0.25)), to(rgba(var(--body-bg), 0)));
    background: linear-gradient(0deg, rgba(var(--gray-bg), 1) 48%, rgba(var(--gray-bg), 0.75) 65%, rgba(var(--gray-bg), 0.25) 87%, rgba(var(--body-bg), 0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="rgba(var(--gray-bg), 1)", endColorstr="rgba(var(--gray-bg), 1)", GradientType=1);
}

.product_box .content .title {
    margin-bottom: 0;
    font-size: calc(var(--h5-font-size) - 2px);
    line-height: calc(var(--h5-line-height) - 2px);
}

.product_box .content .price {
    color: rgba(var(--body-color), 1);
    margin-bottom: 5px;
}

.rating {
    font-size: calc(var(--body-font-size) - 1px);
    color: rgba(var(--primary-color), 1);
}

.product_box .content .actions {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    padding: 35px 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    background: rgb(var(--gray-bg));
    background: -webkit-gradient(linear, left bottom, left top, color-stop(48%, rgba(var(--gray-bg), 1)), color-stop(65%, rgba(var(--gray-bg), 0.75)), color-stop(87%, rgba(var(--gray-bg), 0.25)), to(rgba(var(--body-bg), 0)));
    background: linear-gradient(0deg, rgba(var(--gray-bg), 1) 48%, rgba(var(--gray-bg), 0.75) 65%, rgba(var(--gray-bg), 0.25) 87%, rgba(var(--body-bg), 0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="rgba(var(--gray-bg), 1)", endColorstr="rgba(var(--gray-bg), 1)", GradientType=1);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.product_box:hover .content .actions {
    opacity: 1;
    visibility: visible;
}

.product_box .content .actions a {
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background-color: rgba(var(--white-bg), 1);
    margin: 5px;
    font-size: calc(var(--body-font-size) - 2px);
    -webkit-transform: translateY(50%);
    transform: translateY(50%);
    border-radius: 5px;
}

.product_box:hover .content .actions a {
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
}

.product_box .content .actions a:hover {
    background-color: rgba(var(--primary-bg), 1);
    color: rgba(var(--white-color), 1);
}

/*===== Client-Area ======*/
.client_slider .swiper-slide {
    -webkit-filter: grayscale(1);
    filter: grayscale(1);
    -webkit-transition: 0.5s;
    transition: 0.5s;
    text-align: center;
}

.client_slider .swiper-slide:hover {
    -webkit-filter: grayscale(0);
    filter: grayscale(0);
}

.client_slider .swiper-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

/*===== Testimonial-Area ======*/
.testimonial_area {
    position: relative;
    z-index: 1;
}

.testimonial_area .video-container {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.testimonial_area .video-container video {
    width: 100vw;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

@media screen and (max-width: 1200px) {
    .testimonial_area .video-container video {
        width: 130vh;
    }
}

@media screen and (max-width: 768px) {
    .testimonial_area .video-container video {
        width: auto;
        height: 150vh;
    }
}

.testimonial_slider {
    --body-color: 164, 167, 169;
    --heading-color: var(--body-bg);
    position: relative;
    padding: 0 60px 60px 60px;
    text-align: center;
    border-bottom: 5px solid rgba(var(--primary-bg), 1);
    border-radius: 0 0 5px 5px ;
}

.testimonial_slider:after {
    content: "\f10d";
    font-family: 'Font Awesome 5 Pro';
    font-weight: 900;
    position: absolute;
    left: 50%;
    top: 52%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    font-size: calc(var(--h1-font-size) * 3.2);
    color: rgba(var(--black-bg), 1);
}


.testimonial_slider:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: calc(100% - 45px);
    background-color: rgba(var(--dark-bg), 1);
    border-radius: 5px 5px 0 0;
}

.testimonail_box .thumb {
    width: 90px;
    height: 90px;
    border-radius: 100px;
    overflow: hidden;
    display: inline-block;
    border: 3px solid rgba(var(--heading-color), 1);
    background: rgba(var(--heading-color), 1);
    margin-bottom: 60px;
}

.testimonail_box .quote {
    color: rgba(var(--primary-color), 1);
    font-size: var(--h5-font-size);
    margin-bottom: 40px;
}

.testimonail_box .client_say {
    color: rgba(var(--heading-color), 1);
    margin-bottom: 30px;
    max-width: 680px;
    display: inline-block;
}

.testimonail_box .client_say:before {
    content: '“ ';
}

.testimonail_box .client_say:after {
    content: ' ”';
}

.testimonail_box .name {
    text-transform: uppercase;
    font-size: calc(var(--body-font-size) - 2px);
    font-weight: 700;
    color: #A4A7A9;
}

.testimonial_slider .swiper-pagination {
    margin-top: 60px;
}

@media screen and (max-width: 768px) {
    .testimonial_slider {
        padding: 0 40px 40px 40px
    }

    .testimonail_box .thumb {
        margin-bottom: 25px;
    }

    .testimonail_box .client_say {
        margin-bottom: 15px;
    }

    .testimonail_box .quote {
        margin-bottom: 20px
    }

    .testimonial_slider .swiper-pagination {
        margin-top: 30px;
    }
}

/*===== Blog_Area =====*/
.post_ad_area {
    padding-bottom: calc(var(--section-padding) / 2 + 2px);
}

.blog_area_title {
    margin-bottom: 30px;
}

.blog_area_title hr {
    margin-bottom: 0;
}

.blog_box.large {
    position: relative;
    border-radius: 5px;
    overflow: hidden;
}

.blog_box .thumb {
    margin-bottom: 30px;
    border-radius: 5px;
    overflow: hidden;
}

.blog_box .content .tags {
    margin: -10px -10px 0px -10px;
}

.blog_box .content .tags a {
    display: inline-block;
    margin: 10px;
    padding: 3px 20px;
}

.blog_box .desc {
    margin-bottom: 24px;
}

.thumb img {
    width: 100%;
}


@media screen and (min-width: 767px) {
    .blog_box.large .content {
        position: absolute;
        bottom: -2px;
        left: -2px;
        background-color: rgba(var(--body-bg), 1);
        width: 600px;
        max-width: 100%;
        padding: 40px 40px 2px 2px;
        border-radius: 0 5px 0 0;
    }

    .blog_box.large .thumb {
        margin-bottom: 0;
    }
}

.widget.widget-ads {
    background-color: rgba(var(--gray-bg), 1);
    height: 100%;
    padding: 60px 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
    border-radius: 5px;
}

.widget.widget-ads .thumb {
    margin-bottom: 30px;
}

.widget.widget-ads .title {
    margin-bottom: 40px;
    font-size: calc(var(--h3-font-size) - 10px);
    line-height: calc(var(--h3-line-height) - 10px);
}

@media screen and (max-width: 767px) {
    .widget.widget-ads .title {
        margin-bottom: 20px;
    }
}


/*===== Footer_Area =====*/
.footer_area {
    background-color: rgba(var(--dark-bg), 1);
}

.footer_top {
    padding: calc(var(--section-padding) - 20px) 0;
}

.footer_top .section_heading .title {
    font-size: calc(var(--h2-font-size) - 10px);
    line-height: calc(var(--h2-line-height) - 10px);
}

.subscribe_form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: rgba(var(--black-bg), 1);
    position: relative;
    border-radius: 5px;
}

.subscribe_form input[type="email"] {
    border: none;
    background: none;
    outline: none;
    width: 70%;
    height: 70px;
    color: rgba(var(--white-color), 1);
    padding-left: 60px;
    border-radius: 5px 0 0 5px;
}

.subscribe_form .icon {
    position: absolute;
    left: 30px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.subscribe_form button {
    border: none;
    background-color: rgba(var(--primary-bg), 1);
    color: rgba(var(--white-color), 1);
    height: 70px;
    width: 30%;
    margin-left: auto;
    font-size: calc(var(--body-font-size) - 2px);
    text-transform: uppercase;
    font-weight: 700;
    outline: none;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    border-radius: 0 5px 5px 0;
}

.subscribe_form button:hover {
    background-color: rgba(var(--primary-dark-bg), 1)
}

.subscribe_form label[for="mc-email"] {
    position: absolute;
    left: 30px;
    top: 80%;
}

@media screen and (max-width: 767px) {
    .subscribe_form {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        padding-top: 30px;
    }

    .subscribe_form button {
        padding: 0 30px;
        width: 100%;
        height: 50px;
    }

    .subscribe_form .icon {
        left: 50%;
        top: 15px;
        -webkit-transform: translate(-50%, 0);
        transform: translate(-50%, 0);
    }

    .subscribe_form input[type="email"] {
        padding: 15px;
        text-align: center;
    }
}

/*===== Footer_Widget =====*/
.footer_widget {
    margin-bottom: 80px;
}

.footer_widget .desc {
    font-size: calc(var(--body-font-size) - 1px);
    line-height: calc(var(--body-line-height) - 1px);
    margin-bottom: 30px;
}

.social_links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: -5px;
}

.social_links a {
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background-color: rgba(var(--black-bg), 1);
    margin: 5px;
    color: rgba(var(--body-color), 1);
    border-radius: 5px;
}

.social_links a:hover {
    background-color: rgba(var(--primary-bg), 1);
    color: rgba(var(--white-color), 1);
}

.contact_info {
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: calc(var(--body-font-size) - 1px);
}

.contact_info li {
    margin-bottom: 15px;
}

.contact_info li strong {
    color: rgba(var(--heading-color), 1);
    font-weight: 400;
    text-transform: uppercase;
    font-family: var(--heading-font-family);
}

.contact_info li:last-child {
    margin-bottom: 0;
}

.nav_links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav_links li {
    margin-bottom: 5px;
}

.nav_links li:last-child {
    margin-bottom: 0;
}

.nav_links li a {
    font-family: var(--heading-font-family);
    font-weight: 400;
    color: rgba(var(--body-color), 1);
}

.nav_links li a:hover {
    color: rgba(var(--heading-color), 1);
    text-decoration: underline;
}

.widget_gallery {
    list-style: none;
    margin: -7px;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.widget_gallery li {
    padding: 7px;
    width: 33.33%;
}

.widget_gallery li img {
    border-radius: 5px;
}

.footer_copyright {
    padding: 60px 0;
    text-align: center;
    border-top: 1px solid rgba(var(--heading-color), 0.05);
}

.footer_copyright strong {
    color: rgba(var(--heading-color), 1);
}

@media screen and (max-width: 767px) {
    .footer_widget {
        margin-bottom: 40px;
    }
}

/*===== Preloader_CSS ======*/
.preloader {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: default;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 9000;
}

.preloader .animation-preloader {
    z-index: 1000;
}

.preloader .animation-preloader .spinner {
    -webkit-animation: spinner 1s infinite linear;
    animation: spinner 1s infinite linear;
    border-radius: 50%;
    border: 4px solid rgba(var(--heading-color), 0.1);
    border-top-color: rgba(var(--primary-bg), 1);
    height: 150px;
    margin: 0 auto 3.5em auto;
    width: 150px;
}

.preloader .animation-preloader .txt-loading {
    font-family: var(--heading-font-family);
    font-weight: 700;
    font-size: var(--h1-font-size);
    line-height: var(--h1-line-height);
    text-align: center;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.preloader .animation-preloader .txt-loading .letters-loading {
    color: rgba(var(--body-color), 0.1);
    position: relative;
    display: inline-block;
}

.preloader .animation-preloader .txt-loading .letters-loading:before {
    -webkit-animation: letters-loading 4s infinite;
    animation: letters-loading 4s infinite;
    color: rgba(var(--heading-color), 1);
    content: attr(data-text-preloader);
    left: 0;
    opacity: 0;
    font-family: var(--heading-font-family);
    font-weight: 700;
    font-size: var(--h1-font-size);
    line-height: var(--h1-line-height);
    position: absolute;
    top: -3px;
    -webkit-transform: rotateY(-90deg);
    transform: rotateY(-90deg);
}

.preloader .animation-preloader .txt-loading .letters-loading:nth-child(2):before {
    -webkit-animation-delay: 0.2s;
    animation-delay: 0.2s;
}

.preloader .animation-preloader .txt-loading .letters-loading:nth-child(3):before {
    -webkit-animation-delay: 0.4s;
    animation-delay: 0.4s;
}

.preloader .animation-preloader .txt-loading .letters-loading:nth-child(4):before {
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
}

.preloader .animation-preloader .txt-loading .letters-loading:nth-child(5):before {
    -webkit-animation-delay: 0.8s;
    animation-delay: 0.8s;
}

.preloader .animation-preloader .txt-loading .letters-loading:nth-child(6):before {
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
}

.preloader .animation-preloader .txt-loading .letters-loading:nth-child(7):before {
    -webkit-animation-delay: 1.2s;
    animation-delay: 1.2s;
}

.preloader .animation-preloader .txt-loading .letters-loading:nth-child(8):before {
    -webkit-animation-delay: 1.4s;
    animation-delay: 1.4s;
}

.preloader p {
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 8px;
    color: rgba(var(--heading-color), 1);
}

.preloader .loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    font-size: 0;
    z-index: 1;
    pointer-events: none;
}

.preloader .loader .row {
    height: 100%;
}

.preloader .loader .loader-section {
    padding: 0px;
}

.preloader .loader .loader-section .bg {
    background-color: rgba(var(--body-bg), 1);
    height: 100%;
    left: 0;
    width: 100%;
    -webkit-transition: all 800ms cubic-bezier(0.77, 0, 0.175, 1);
    transition: all 800ms cubic-bezier(0.77, 0, 0.175, 1);
}

.preloader.loaded .animation-preloader {
    opacity: 0;
    -webkit-transition: 0.3s ease-out;
    transition: 0.3s ease-out;
}

.preloader.loaded .loader-section .bg {
    width: 0;
    -webkit-transition: 0.7s 0.3s allcubic-bezier(0.1, 0.1, 0.1, 1);
    transition: 0.7s 0.3s allcubic-bezier(0.1, 0.1, 0.1, 1);
}

@-webkit-keyframes spinner {
    to {
        -webkit-transform: rotateZ(360deg);
        transform: rotateZ(360deg);
    }
}

@keyframes spinner {
    to {
        -webkit-transform: rotateZ(360deg);
        transform: rotateZ(360deg);
    }
}

@-webkit-keyframes letters-loading {

    0%,
    75%,
    100% {
        opacity: 0;
        -webkit-transform: rotateY(-90deg);
        transform: rotateY(-90deg);
    }

    25%,
    50% {
        opacity: 1;
        -webkit-transform: rotateY(0deg);
        transform: rotateY(0deg);
    }
}

@keyframes letters-loading {

    0%,
    75%,
    100% {
        opacity: 0;
        -webkit-transform: rotateY(-90deg);
        transform: rotateY(-90deg);
    }

    25%,
    50% {
        opacity: 1;
        -webkit-transform: rotateY(0deg);
        transform: rotateY(0deg);
    }
}

@media screen and (max-width: 767px) {
    .preloader .animation-preloader .spinner {
        height: 8em;
        width: 8em;
    }
}

@media screen and (max-width: 500px) {
    .preloader .animation-preloader .spinner {
        height: 7em;
        width: 7em;
    }
}

/*===== Counter_Box =====*/
.counter_box {
    width: 100%;
    position: relative;
    background-color: rgba(var(--dark-bg), 1);
    text-align: center;
    height: 170px;
    z-index: 1;
    color: rgba(var(--white-color), 1);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.counter_box.box_1 {
    background-color: rgba(var(--primary-bg), 1);
}

.counter_box .svg_element {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 60%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: -1;
    color: rgba(var(--white-color), 0.1);
}

.counter_box .number {
    font-family: var(--heading-font-family);
    font-size: calc(var(--h4-font-size) + 5px);
    line-height: calc(var(--h4-line-height) + 5px);
}

.counter_box .title {
    font-size: calc(var(--body-font-size) - 4px);
    text-transform: uppercase;
    font-weight: 700;
}

/*==== Team_Box =====*/
.team_box {
    text-align: center;
    position: relative;
    z-index: 1;
}

.team_box .thumb {
    margin-bottom: 30px;
    border-radius: 5px;
    overflow: hidden;
}

.team_box .name {
    margin-bottom: 0;
}

.team_box .team_hover {
    position: absolute;
    left: 0;
    bottom: -60px;
    right: 0;
    background-color: rgba(var(--body-bg), 1);
    z-index: 2;
    width: calc(100% - 30px);
    margin: auto;
    padding: 30px;
    opacity: 0;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    border-radius: 5px;
}

.team_box .team_hover .social {
    margin: 5px -10px -10px -10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.team_box .team_hover .social a {
    margin: 10px;
    font-size: calc(var(--body-font-size) - 2px);
    color: rgba(var(--body-color), 1);
}

.team_box .team_hover .social a:hover {
    color: rgba(var(--primary-color), 1);
}

.team_box:hover .team_hover {
    bottom: 0;
    opacity: 1;
}

/*===== Story-Box =====*/
.story_timeline {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.story_timeline .story_box {
    width: 100%;
    position: relative;
    margin-bottom: 30px;
    border-radius: 5px;
}

.story_timeline .story_box .thumb {
    overflow: hidden;
    border-radius: 5px 5px 0 0;
}


.story_timeline .story_box:last-child {
    margin-bottom: 0;
}

.story_timeline .story_box .num {
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 40px;
    font-weight: 500;
    font-size: calc(var(--body-font-size) - 4px);
    background-color: rgba(var(--dark-bg), 1);
    text-align: center;
    line-height: 40px;
    color: rgba(var(--white-color), 1);
}

.story_timeline .story_box .content {
    background-color: rgba(var(--body-bg), 1);
    position: relative;
    padding: 40px 30px 30px 30px;
    border-radius: 0 0 5px 5px;
}

.story_timeline .story_box .content .tags {
    position: absolute;
    left: 0;
    top: -15px;
    padding: 0 30px;
}

.story_timeline .story_box .content .tags a {
    padding: 3px 20px;
}

.story_timeline .story_box .content .title {
    font-size: var(--h4-font-size);
    line-height: var(--h4-line-height);
}

@media screen and (min-width: 992px) {
    .story_timeline:after {
        content: "";
        position: absolute;
        left: 50%;
        top: 0;
        width: 1px;
        height: 100%;
        background-color: rgba(var(--dark-bg), 1);
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }

    .story_timeline .story_box {
        width: 50%;
        padding-right: 125px;
        margin-bottom: 0px;
    }

    .story_timeline .story_box:nth-child(n+2) {
        margin-top: -40px;
    }

    .story_timeline .story_box:nth-child(odd) {
        margin-left: auto;
        padding-left: 125px;
        padding-right: 0;
    }

    .story_timeline .story_box:nth-child(even) .num {
        left: auto;
        right: 0;
        border-radius: 5px 0 0 5px;
    }
    
    .story_timeline .story_box:nth-child(odd) .num {
        border-radius: 0 5px 5px 0;
    }

}

/*==== Site_Header ====*/
.site_header {
    --body-color: 164, 167, 169;
    --heading-color: var(--body-bg);
    padding: var(--section-padding) 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    text-align: center;
    position: relative;
    z-index: 1;
}

.site_header:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(var(--dark-bg), 0.8);
    z-index: -1;
}

.site_header .page_title {
    margin-bottom: 0;
}

/*===== ScrollToBottom =====*/
#scrollToBottom {
    position: absolute;
    left: 15px;
    bottom: -30px;
    width: 80px;
    height: 130px;
    text-align: center;
    line-height: 130px;
    display: block;
    background-color: rgba(var(--primary-bg), 1);
    color: rgba(var(--white-color), 1);
    font-size: var(--h4-font-size);
    z-index: 2;
    border-radius: 5px;
}

@media screen and (max-width: 1024px) {
    #scrollToBottom {
        width: 60px;
        height: 100px;
        line-height: 100px;
    }
}

#scrollToBottom:hover {
    background-color: rgba(var(--body-bg), 1);
    color: rgba(var(--primary-color), 1);
    -webkit-box-shadow: 0 0 15px 0 rgba(var(--heading-color), 0.1);
    box-shadow: 0 0 15px 0 rgba(var(--heading-color), 0.1);
}

/*==== Service_box =====*/
.service_box {
    text-align: center;
    border: 1px solid rgba(var(--gray-bg), 1);
    padding: 40px;
    position: relative;
    overflow: hidden;
    -webkit-box-shadow: 0px 0px 0px rgba(234, 234, 234, 0.25);
    box-shadow: 0px 0px 0px rgba(234, 234, 234, 0.25);
    -webkit-transition: 0.3s;
    transition: 0.3s;
    border-radius: 5px;
}

.service_box:hover {
    -webkit-box-shadow: 0px 4px 9px rgba(234, 234, 234, 0.25);
    box-shadow: 0px 4px 9px rgba(234, 234, 234, 0.25);
}

.service_box::before {
    content: "";
    position: absolute;
    left: 0;
    top: -6px;
    width: 100%;
    height: 5px;
    background-color: rgba(var(--primary-bg), 1);
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.service_box:hover::before {
    top: 0;
}

.service_box .icon {
    margin-bottom: 40px;
    min-height: 60px;
}

.icon_button {
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    border: 1px solid rgba(var(--gray-bg), 1);
    margin-top: 30px;
    border-radius: 5px;
}

.icon_button:hover {
    color: rgba(var(--white-color), 1);
    border-color: rgba(var(--primary-color), 1);
    background-color: rgba(var(--primary-color), 1);
}

/*===== Price_Box =====*/
.price_box {
    background-color: rgba(var(--body-bg), 1);
    padding: 60px 50px;
    position: relative;
    border-radius: 5px;
    overflow: hidden;
}

.price_box .title_price {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    font-size: calc(var(--h3-font-size) - 10px);
    line-height: calc(var(--h3-line-height) - 10px);
    margin-bottom: 20px;
}

.price_box .title_price .price {
    color: rgba(var(--primary-color), 1);
    margin-left: auto;
}

.price_box .title_price .price small {
    font-size: 50%;
}

.price_box .sub_title {
    margin-bottom: 30px;
    font-size: calc(var(--h6-font-size) - 5px);
    line-height: calc(var(--h6-line-height) - 15px);
    letter-spacing: 0.1em;
}

.price_box .desc {
    margin-bottom: 30px;
}

.dot-list {
    color: rgba(var(--heading-color), 1);
    font-weight: 500;
    margin: 0;
    padding: 0;
}

.dot-list li {
    padding-left: 5px;
    margin-left: 15px;
}

.price_box .primary_button {
    margin-top: 40px;
}

/*==== Single_Detials ====*/

/*===== Sidebar_Widget_Page ======*/
.widget-alt {
    margin-bottom: 30px;
    padding: 40px 35px;
    border: 1px solid rgba(var(--gray-bg), 1);
    border-radius: 5px;
}

.widget-alt .widget-search {
    padding: 0;
    border: none;
}

.widget-alt .widget:last-child {
    margin-bottom: 0;
}

.widget-alt .widget-title {
    margin-bottom: 30px;
}

.info_list {
    list-style: none;
    margin: -12px 0;
    padding: 0;
}

.info_list li {
    margin: 12px 0;
}

.info_list li strong {
    font-weight: 500;
    color: rgba(var(--heading-color), 1);
}


.widget_social {
    margin: -12px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    line-height: 0.8em;
}

.widget_social a {
    margin: 12px;
    color: rgba(var(--primary-color), 1);
}

.widget_social a i.fa-linkedin {
    color: #0072AC;
}

.widget_social a i.fa-pinterest-square {
    color: #DA0021;
}

.widget_social a i.fa-facebook-square {
    color: #0072AC;
}


.widget_social a i.fa-twitter-square {
    color: #3AC4FF;
}

.get_tuch_form .input_control {
    width: 100%;
    padding: 0 0 15px;
    outline: none;
    color: rgba(var(--heading-color), 1);
    position: relative;
    z-index: 1;
    margin-bottom: 30px;
    border: none;
    border-bottom: 1px solid rgba(var(--gray-bg), 1);
    background: none;
}

.get_tuch_form .input_control:focus {
    border-color: rgba(var(--primary-color), 1);
}

.has-error .input_control {
    border-color: red;
    color: red;
}

.has-error .help-block {
    color: red;
}

textarea.input_control {
    height: 140px;
}

.input_control::-webkit-input-placeholder {
    color: rgba(var(--body-color), 1);
}

.input_control:-ms-input-placeholder {
    color: rgba(var(--body-color), 1);
}

.input_control::-moz-placeholder {
    color: rgba(var(--body-color), 1);
}

.input_control::-ms-input-placeholder {
    color: rgba(var(--body-color), 1);
}

.input_control::-webkit-input-placeholder {
    color: rgba(var(--body-color), 1);
}

.input_control:-ms-input-placeholder {
    color: rgba(var(--body-color), 1);
}

.input_control::placeholder {
    color: rgba(var(--body-color), 1);
}

/*===== Product_List =====*/
.product_top_bar {
    border: 1px solid rgba(var(--gray-bg), 1);
    padding: 15px 30px;
    margin-bottom: 30px;
    border-radius: 5px;
}

.product_top_bar .product_sort {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: -6px;
}

.product_top_bar .product_sort > * {
    margin: 6px;
}

/*===== Navigation_List =====*/
.nav-links .page-numbers {
    width: 50px;
    height: 50px;
    margin: 4px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: rgba(var(--gray-bg), 1);
    color: rgba(var(--body-color), 1);
    font-size: 14px;
    font-weight: 700;
    border-radius: 5px;
}

.nav-links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: -4px;
    padding-top: 60px;
    width: 100%;
}

.nav-links .page-numbers:hover {
    background-color: rgba(var(--primary-bg), 1);
    color: rgba(var(--white-color), 1);
}

/*===== Single_Product =====*/
.product_slider {
    width: calc(100% - 130px);
    margin-left: 0;
}

.product_slider .gallery_item {
    height: 500px;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: rgba(var(--gray-bg), 1);
    padding: 30px;
    border-radius: 5px;
    overflow: hidden;
}

.product_gallery {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.product_thumb_slider {
    width: 100px;
    height: 500px;
    margin-right: 0;
}

.product_thumb_slider .gallery_item {
    background-color: rgba(var(--gray-bg), 1);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 10px;
    border: 1px solid rgba(var(--white-color), 1);
    overflow: hidden;
    border-radius: 5px;
}

.product_thumb_slider .gallery_item.swiper-slide-thumb-active {
    border: 1px solid rgba(var(--primary-color), 1);
}

.product_info {
    padding-left: 30px;
}

.product_rating .star_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    list-style: none;
    margin: -2px;
    padding: 0 15px 0 0;
    font-size: calc(var(--body-font-size) - 1px);
    color: rgba(var(--primary-color), 1);
}

.product_rating {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.product_rating .star_list li {
    margin: 2px;
}

.product_rating .rating_label {
    font-size: calc(var(--body-font-size) - 1px);
    font-weight: 500;
    color: rgba(var(--heading-color), 1);
}

.product_info .product_desc {
    margin-bottom: 30px;
}

.product_info .product_price {
    margin-bottom: 30px;
}

.product_info .product_price del {
    color: rgba(var(--body-color), 1);
    font-size: 50%;
}

.color_select {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: -3px;
    padding-bottom: 30px;
}

.color_select label {
    margin: 3px;
    cursor: pointer;
}

.color_select label input {
    display: none;
}

.color_select label span {
    width: 37px;
    height: 29px;
    display: block;
    position: relative;
    border-radius: 2px;
}

.color_select label span:before {
    content: "";
    position: absolute;
    width: calc(100% - 6px);
    height: calc(100% - 6px);
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    border: 1px solid rgba(var(--white-color), 1);
    opacity: 0;
}

.color_select label input:checked ~ span:before {
    opacity: 1;
}

.product_quantity {
    padding: 15px 30px;
    max-width: 215px;
    margin-bottom: 30px;
    border: 1px solid rgba(var(--gray-bg), 1);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: rgba(var(--heading-color), 1);
    border-radius: 5px;
}

.product_quantity .label {
    font-size: calc(var(--body-font-size) - 1px);
    text-transform: uppercase;
    color: rgba(var(--heading-color), 1);
    font-weight: 700;
    margin-right: 30px;
}

.product_quantity button {
    border: none;
    background: none;
    color: rgba(var(--heading-color), 1);
    outline: none;
}

.product_quantity button:hover {
    color: rgba(var(--primary-color), 1);
}

.product_quantity input[type="number"] {
    border: none;
    background: none;
    text-align: center;
    font-weight: 700;
    color: rgba(var(--heading-color), 1);
    font-size: calc(var(--body-font-size) - 1px);
}

/* Chrome, Safari, Edge, Opera */
.product_quantity input::-webkit-outer-spin-button,
.product_quantity input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
.product_quantity input[type=number] {
    -moz-appearance: textfield;
}

.tab-content > .active {
    opacity: 1;
}

.product_tabs {
    margin-top: 90px;
}

.product_tabs .nav-tabs {
    margin: -15px;
    border: none;
    padding-bottom: 40px;
}

.product_tabs .nav-tabs li {
    padding: 15px;
}

.product_tabs .nav-tabs li a {
    display: block;
    padding: 8px 24px;
    background-color: rgba(var(--gray-bg), 1);
    text-transform: uppercase;
    font-weight: 700;
    font-size: calc(var(--body-font-size) - 1px);
    border-radius: 5px;
}

.product_tabs .nav-tabs li.active a {
    background-color: rgba(var(--primary-color), 1);
    color: rgba(var(--white-color), 1);
}

@media screen and (max-width: 768px) {
    .product_thumb_slider {
        height: 350px;
    }

    .product_slider .gallery_item {
        height: 350px;
    }

    .product_info {
        padding-left: 0;
    }

    .product_slider {
        width: calc(100% - 120px);
    }
}

/*===== Accordion_Area =====*/
.accordion-list .accoridon-item {
    padding: 30px 0;
    background-color: rgba(var(--body-bg), 1);
    width: 100%;
    border-bottom: 1px solid rgba(var(--gray-bg), 1);
}

.accordion-list .accoridon-item:last-child {
    margin-bottom: 0px;
    border-bottom: none;
    padding-bottom: 0;
}

.accordion-list .accoridon-item:first-child {
    padding-top: 0;
}

.accordion-list .accoridon-item .title {
    cursor: pointer;
    margin-bottom: 0px;
    position: relative;
    padding-right: 30px;
}

.accordion-list .accoridon-item .title h5 {
    margin-bottom: 0px;
}

.accordion-list .accoridon-item .title .label {
    font-weight: 500;
    font-size: calc(var(--body-font-size) - 3px);
    text-transform: uppercase;
}

.accordion-list .accoridon-item .title .arrow {
    position: absolute;
    right: 0;
    top: 0;
    font-size: var(--h5-font-size);
    color: rgba(var(--heading-color), 1);
    -webkit-transition: 0.3s;
    transition: 0.3s;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg)
}

.accordion-list .accoridon-item .title.active .arrow {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
}

.accordion-list .accoridon-item .desc {
    padding-top: 15px;
    display: none;
    font-size: calc(var(--body-font-size) + 3px);
    line-height: calc(var(--body-line-height) + 3px);
}

/*===== Post_List_Item =====*/
.post_box {
    margin-bottom: 50px;
}

.post_box:last-child {
    margin-bottom: 0;
}

.post_box .thumb {
    overflow: hidden;
    border-radius: 5px;
}

.post_box .title {
    font-size: calc(var(--h4-font-size) + 5px);
    line-height: calc(var(--h4-line-height) + 5px);
}

.post_box .content {
    position: relative;
    padding-top: 40px;
}


.post_box .content .read_more {
    position: absolute;
    width: 70px;
    height: 70px;
    right: 40px;
    top: 0;
    background: rgba(var(--body-bg), 1);
    -webkit-box-shadow: 0px 10px 10px rgba(219, 219, 219, 0.25);
    box-shadow: 0px 10px 10px rgba(219, 219, 219, 0.25);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: rgba(var(--heading-color), 1);
    border-radius: 100px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.post_box .content .read_more:hover {
    background-color: rgba(var(--primary-bg), 1);
    color: rgba(var(--white-color), 1);
}

.post_box .content .author {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 20px;
}

.post_box .content .author .pic {
    margin-right: 15px;
    width: 50px;
    height: 50px;
    border-radius: 50px;
    overflow: hidden;
}

.post_box .content .author strong {
    font-weight: 500;
    color: rgba(var(--heading-color), 1);
    margin-right: 5px;
}

.post_box .content .title a {
    color: rgba(var(--heading-color), 1);
}

.post_box .content .title a:hover {
    text-decoration: underline;
    color: rgba(var(--primary-color), 1);
}

.posts_details-area .description > p:first-of-type::first-letter {
    color: rgba(var(--primary-color), 1);
    float: left;
    font-size: 80px;
    line-height: 60px;
    font-weight: 700;
    margin-right: 10px;
    line-height: 1;
}

.desc .thumb,
.posts_details-area .description .thumb {
    overflow: hidden;
    border-radius: 5px;
}

.post_box .content .desc {
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(var(--gray-bg), 1);
}

.meta_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    list-style: none;
    margin: 0 -15px;
    padding: 0;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.post_box .meta_list {
    padding-top: 20px;
}

.meta_list li {
    padding: 0 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: calc(var(--body-font-size) - 1px);
    text-transform: uppercase;
    font-weight: 500;
}

.meta_list li i,
.meta_list li a {
    color: rgba(var(--heading-color), 1);
}

.meta_list li a:hover {
    color: rgba(var(--primary-color), 1);
}

.meta_list li.author a {
    margin-left: 5px;
}

.meta_list li .icon {
    margin-right: 5px;
}

.posts_list-area .meta_list li:last-child {
    margin-left: auto;
}

@media screen and (max-width: 768px) {
    .post_box .content .read_more {
        width: 50px;
        height: 50px;
        right: 20px;
    }
}

/*===== Post_Widget =====*/
.widget {
    margin-bottom: 50px;
}

.widget:last-child {
    margin-bottom: 0px;
}

.widget .widget-title {
    border-bottom: 1px solid rgba(var(--gray-bg), 1);
    padding-bottom: 12px;
    position: relative;
    margin-bottom: 30px;
}

.widget .widget-title:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 4px;
    width: 60px;
    background-color: rgba(var(--primary-bg), 1);
}


.widget ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.widget:not(.widget_populer_post) ul li {
    display: block;
    padding: 10px 0;
}

.widget:not(.widget_populer_post) ul ul {
    margin-left: 30px;
}

.widget:not(.widget_populer_post) ul li:first-child {
    padding-top: 0px;
}

.widget:not(.widget_populer_post) ul li:last-child {
    padding-bottom: 0px;
}

.widget:not(.widget_populer_post) ul li a {
    font-weight: var(--font-weight-medium);
    color: rgba(var(--heading-color), 1);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    color: rgba(var(--body-color), 1);
    font-weight: 400;
    border-radius: 3px;
}


.widget:not(.widget_populer_post) ul li:hover a {
    color: rgba(var(--primary-color), 1);
    font-weight: 500;
}

.widget.widget_categories ul li a:after {
    font-family: "Font Awesome 5 Pro" !important;
    content: "\f178";
    margin-right: 5px;
    display: inline-block;
    position: relative;
    margin-left: auto;
}

.widget-appointment_form .input_control {
    background-color: rgba(var(--body-bg), 1);
    margin-bottom: 20px;
}

.popular_posts {
    list-style: none;
    margin: 0;
    padding: 0;
}

.popular_posts li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 30px;
}

.popular_posts li:last-child {
    margin-bottom: 0px;
}

.popular_posts li .post-pic {
    width: 90px;
    min-width: 90px;
    margin-right: 20px;
    overflow: hidden;
    border-radius: 5px;
}

.popular_posts li .title {
    font-family: var(--body-font-family);
    font-weight: 500;
    font-size: var(--body-font-size);
    line-height: var(--body-line-height);
}

.popular_posts li .title a {
    color: rgba(var(--heading-color), 1);
}

.popular_posts li .title a:hover {
    text-decoration: underline;
}

.popular_posts li .title {
    margin-bottom: 6px;
}

.popular_posts li .post-meta-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: rgba(var(--body-color), 1);
    font-family: var(--body-font-family);
    font-size: calc(var(--body-font-size) - 1px);
}

.popular_posts li .post-meta-item .icon {
    line-height: 1em;
    margin-right: 10px;
}

.popular_posts li .post-meta-item .value {
    text-transform: uppercase;
    font-weight: 500;
}

.tagcloud {
    margin: -5px;
}

.tagcloud a {
    background-color: rgba(var(--gray-bg), 1);
    color: rgba(var(--body-color), 1);
    font-family: var(--body-font-family);
    font-size: calc(var(--body-font-size) - 2px);
    font-weight: 500;
    text-transform: uppercase;
    padding: 6px 20px;
    margin: 5px;
    border-radius: 3px;
}

.tagcloud {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: -5px;
}

.tagcloud a:hover {
    background-color: rgba(var(--primary-bg), 1);
    color: rgba(var(--white-color), 1);
}

.widget.recent-comment ul li a {
    display: block;
    font-weight: 500;
    color: rgba(var(--heading-color), 1);
    margin-bottom: 8px;
}

.widget.recent-comment ul li a:before {
    content: "\f4b6";
    font-family: "Font Awesome 5 Pro" !important;
    font-weight: 700;
    margin-right: 10px;
    color: rgba(var(--primary-color), 1);
}

blockquote {
    padding: 30px 5vw;
    border-radius: 10px;
    background-color: rgba(var(--gray-bg), 1);
    font-size: 20px;
    position: relative;
    margin: 30px 0;
    text-align: center;
}

blockquote:before {
    font-family: "Font Awesome 5 Pro" !important;
    content: "\f10d";
    font-weight: 900;
    position: absolute;
    left: 50%;
    top: 55%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    font-size: 100px;
    line-height: 50px;
    color: rgba(var(--primary-color), 0.1);
}

blockquote *:last-child {
    margin-bottom: 0;
}

/*===== Sidebar-Widget =====*/
.sidebar .widget {
    border: 1px solid rgba(var(--gray-bg), 1);
    padding: 32px 25px;
    margin-bottom: 30px;
    border-radius: 5px;
}

form.search-form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border: 1px solid rgba(var(--gray-bg), 1);
    position: relative;
    border-radius: 5px;
    overflow: hidden;
}

form.search-form .input_control {
    border: none;
    background: none;
    width: calc(100% - 46px);
    padding: 15px;
    outline: none;
}

form.search-form button {
    border: none;
    background: none;
    outline: none;
    width: 45px;
    height: 45px;
    text-align: center;
    line-height: 50px;
}

.widget-category ul {
    list-style: none;
    margin: 0 0 -15px 0;
    padding: 0;
}

.widget-category ul li {
    display: block;
}

.widget-category ul li a {
    border: 1px solid rgba(var(--gray-bg), 1);
    color: rgba(var(--body-color), 1);
    padding: 10px 15px;
    height: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
}

.widget-category ul li:hover > a {
    border: 1px solid rgba(var(--primary-color), 1);
    color: rgba(var(--primary-color), 1);
}

.widget-category ul li .coun {
    margin-left: auto;
}

.widget-top-product ul {
    list-style: none;
}

.widget-top-product ul li {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.widget-top-product ul li .thumb {
    width: 80px;
    height: 80px;
    line-height: 60px;
    text-align: center;
    padding: 10px;
    margin-right: 15px;
    background-color: rgba(var(--gray-bg), 1);
    position: relative;
    border-radius: 5px;
    overflow: hidden;
}

.widget-top-product ul li .thumb .num {
    width: 24px;
    height: 24px;
    text-align: center;
    line-height: 24px;
    font-size: 12px;
    font-weight: 500;
    display: block;
    background: rgba(var(--body-bg), 1);
    color: rgba(var(--heading-color), 1);
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 0 0 3px 0;
}

.widget-top-product ul li .price {
    font-size: calc(var(--body-font-size) - 3px);
    line-height: calc(var(--body-line-height) - 8px);
    margin-bottom: 4px;
    font-weight: 500;
    color: rgba(var(--primary-color), 1);
}

.widget-top-product ul li .price del {
    color: rgba(var(--body-color), 1);
}

.widget-top-product ul li .title {
    font-weight: 500;
    font-size: calc(var(--body-font-size) - 3px);
    line-height: calc(var(--body-line-height) - 8px);
    display: block;
    color: rgba(var(--heading-color), 1);
    margin-bottom: 4px;
}

.widget-top-product ul li .title:hover {
    color: rgba(var(--primary-color), 1);
}

.widget-top-product ul li .rating {
    font-size: calc(var(--body-font-size) - 3px);
    line-height: calc(var(--body-line-height) - 8px);
}

.tagcloud {
    margin: -5px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.tagcloud a {
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 500;
    background-color: rgba(var(--gray-bg), 1);
    padding: 5px 15px;
    margin: 5px;
    color: rgba(var(--body-color), 1);
}

.tagcloud a:hover {
    color: rgba(var(--white-color), 1);
    background-color: rgba(var(--primary-bg), 1);
}

/*===========  Comment_List ===========*/
.comment_list-area {
    margin-top: 60px;
    margin-bottom: 50px;
}

.comment_list-area .comment_list-title {
    margin-bottom: 40px;
}

.comments_list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.comments_list ul,
.comments_list ol {
    list-style: none;
    margin: 0;
    padding: 0;
}

.comments_list li {
    padding-left: 110px;
    position: relative;
}

.comment_body {
    margin-bottom: 40px;
}

.comment_body .comment_author img {
    position: absolute;
    left: 0;
    width: 80px;
    height: 80px;
    border-radius: 100px;
}

.comment_body .comment_author .fn a {
    font-size: calc(var(--body-font-size) + 3px);
    color: rgba(var(--heading-color), 1);
    display: inline-block;
    font-weight: 500;
}

.comment_body .comment_date a {
    font-family: var(--body-font-family);
    color: rgba(var(--body-color), 1);
    font-size: calc(var(--body-font-size) - 2px);
    text-transform: uppercase;
    font-weight: 500;
}

.comment_body .comment_author .fn a:hover,
.comment_body a:hover {
    color: rgba(var(--primary-color), 1);
}

.comment_body .comment_footer {
    margin-bottom: 10px;
}

.comment_body .comment_desc {
    margin-bottom: 10px;
}

.comment_body .comment-reply-link {
    font-size: 20px;
    -webkit-transform: rotateY(-180deg);
    transform: rotateY(-180deg);
}

.comment_body .comment-reply-link {
    color: rgba(var(--heading-color), 1);
    position: absolute;
    right: 5%;
    top: 0;
    display: inline-block;
}

.contact_form .input_control,
.comment_form .input_control {
    margin-bottom: 30px;
    width: 100%;
    padding: 16px 28px;
    min-height: 70px;
    background-color: rgba(var(--gray-bg), 1);
    border: 1px solid rgba(var(--gray-bg), 1);
    border-radius: 5px;
}

.contact_form .input_control:focus,
.comment_form .input_control:focus {
    border-color: rgba(var(--primary-color), 1);
}

.comment_respond {
    padding-top: 40px;
    border-top: 1px solid rgba(var(--gray-bg), 1);
}

.comment_respond .comment_respond-title {
    margin-bottom: 30px;
}


@media screen and (max-width: 992px) {
    .comments_list li {
        padding-left: 0px;
    }

    .comment_body .comment_author img {
        position: static;
        margin-bottom: 15px;
        display: block;
    }

    .comments_list .children {
        margin-left: 30px;
    }

    .comment_body {
        margin-bottom: 30px;
        padding-bottom: 20px;
    }

    .sidebar_area {
        margin-top: 60px;
    }
}

.post_related-tag,
.post_share-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.post_related-tag .title,
.post_share-menu .title {
    margin-bottom: 0;
    margin-right: 20px;
    font-weight: 500;
    font-size: calc(var(--body-font-size) + 4px);
}

.single-navigation {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.single-navigation a.prev-nav,
.single-navigation a.next-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    min-width: calc(50% - 15%);
}

.single-navigation .label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 0;
}

.single-navigation .label .svg_element {
    width: 16px;
    height: 16px;
}

.single-navigation a.next-nav .label span.icon {
    margin-left: 5px;
}

.single-navigation a.prev-nav .label span.icon {
    margin-right: 5px;
}

.single-navigation .post_info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 20px;
    font-weight: 500;
    font-size: calc(var(--body-font-size) + 1px);
    color: rgba(var(--heading-color), 1);
}

.single-navigation a:hover .post_info {
    color: rgba(var(--primary-color), 1);
}

.single-navigation .post_info .pic {
    display: inline-block;
    min-width: 100px;
    overflow: hidden;
    margin-right: 24px;
    border-radius: 5px;
}

.single-navigation a.next-nav {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}

.single-navigation a.next-nav .post_info {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    text-align: right;
    padding-left: 50px;
}

.single-navigation a.next-nav .post_info .pic {
    margin-right: 0;
    margin-left: 24px;
}

.single-navigation a.prev-nav .post_info {
    padding-right: 50px;
}


@media screen and (max-width: 768px) {
    .single-navigation .post_info .pic {
        display: none;
    }

    .post_related-tag,
    .post_share-menu {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }

    .post_related-tag {
        margin-bottom: 30px;
    }

    .post_related-tag .title,
    .post_share-menu .title {
        margin-bottom: 15px;
    }

    .meta_list {
        margin: 0 -10px;
    }

    .meta_list li {
        padding: 0 10px;
    }

    .meta_list li:last-child {
        margin-left: 0;
    }
}

@media screen and (max-width: 575px) {
    .single-navigation .post_info {
        display: none;
    }
}

/*===== Contact_Page =====*/
.map_area {
    line-height: 0;
    -webkit-filter: grayscale(1);
    filter: grayscale(1);
}

.map_area #google_map {
    height: 700px;
    width: 100%;
}

.contact_form {
    background: #FFFFFF;
    -webkit-box-shadow: 1px -1px 20px 10px rgba(110, 125, 134, 0.03);
    box-shadow: 1px -1px 20px 10px rgba(110, 125, 134, 0.03);
    padding: 70px 60px;
    position: relative;
    margin-bottom: -160px;
    z-index: 2;
    border-radius: 5px;
}

.contact_info_box {
    padding: 50px 40px;
    text-align: center;
    border: 1px solid rgba(var(--gray-bg), 1);
    background-color: #ffffff;
    -webkit-box-shadow: 0px 0px 0px 0px rgba(110, 125, 134, 0.03);
    box-shadow: 0px 0px 0px 0px rgba(110, 125, 134, 0.03);
    -webkit-transition: 0.3s;
    transition: 0.3s;
    border-radius: 5px;
}


.contact_info_box:hover {
    -webkit-box-shadow: 1px -1px 20px 10px rgba(110, 125, 134, 0.03);
    box-shadow: 1px -1px 20px 10px rgba(110, 125, 134, 0.03);
}

.contact_info_box .icon {
    margin-bottom: 25px;
    height: 60px;
}

.contact_info_box .title {
    margin-bottom: 10px;
}

@media screen and (max-width: 768px) {
    .contact_form {
        padding: 50px 20px;
        margin: 0 15px -100px;
    }
}