/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Common
# Topbar
# Main Menu
# Footer
# Search Popup
# Sidemenu
# Banner
# Blog
	## Blog Details
	## Comments
# Page Header
# Contact
	## Contact Info
# Sidebar
# Mailchimp
# Brand
# Team
# Call To Action
# Gallery
# Error 404
# Video
# Testimonials
# FAQ
# Tour
	## Tour Sidebar
# Destinations
# Features
# Funfact
# Tour Search
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Common
--------------------------------------------------------------*/

/*font-family: 'Barlow', sans-serif;
font-family: 'Amatic SC', cursive;*/

:root {
    --thm-font: "Barlow", sans-serif;
    /*--heading-font: "Amatic SC", cursive;*/
    --thm-base: #eddd5e;
    --thm-base-rgb: 237, 221, 94;
    --thm-primary: #5b8c51;
    --thm-primary-rgb: 91, 140, 81;
    --thm-black: #f17a1b;
    --thm-black-rgb: 64, 74, 61;
    --thm-gray: #eceeef;
}

body {
    font-family: var(--thm-font);
    color: #878986;
    font-size: 16px;
    line-height: 34px;
    font-weight: 500;
}
button:focus {
    outline: none;
}
a:active,
a:hover,
a:focus,
a:visited {
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    text-transform: uppercase;
   /* font-family: var(--heading-font);*/
}

.page-wrapper {
    position: relative;
    margin: 0 auto;
    width: 100%;
    min-width: 300px;
    overflow: hidden;
}

@media (min-width: 1200px) {
    .container {
        max-width: 1200px;
    }
}

.auto-container {
    position: static;
    max-width: 1200px;
    padding: 0px 15px;
    margin: 0 auto;
}

.block-title {
    margin-bottom: 20px;
   /* margin-top: 15px;*/
}

.block-title p {
    margin: 0;
    text-transform: uppercase;
    color: var(--thm-primary);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.2em;
    line-height: 24px;
}

.block-title h3 {
    margin: 0;
    color: var(--thm-black);
    font-size: 45px;
    font-weight: 700;
    font-family: var(--heading-font);
    line-height: 1em;
}

@media (max-width: 425px) {
    .block-title h3 {
        font-size: 40px;
        line-height: 1.2;
    }
}

.block-title .leaf {
    padding-top: 5px;
    display:none;
}

.thm-btn {
    display: inline-block;
    vertical-align: middle;
    border: none;
    outline: none;
    background-color: var(--thm-base);
    font-size: 14px;
    color: var(--thm-black);
    font-weight: 600;
    padding: 15px 50px;
    border-radius: 5px;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.thm-btn:hover {
    background-color: var(--thm-primary);
    color: #ffffff;
}

.owl-carousel.owl-dot-type1 .owl-stage-outer {
    position: relative;
    display: block;
    padding-top: 0px;
    padding-bottom: 0px;
}
.owl-carousel.owl-dot-type1 .owl-dots {
    position: relative;
    display: block;
    text-align: center;
    line-height: 12px;
    margin: 0 !important;
}
.owl-carousel.owl-dot-type1 .owl-dots .owl-dot {
    position: relative;
    display: inline-block;
    width: 12px;
    height: 12px;
    background: #ffffff;
    border: 1px solid #2e343a;
    margin: 0px 5px;
    padding: 0px;
    border-radius: 50%;
    transition: all 100ms linear;
    transition-delay: 0.1s;
}
.owl-carousel.owl-dot-type1 .owl-dots .owl-dot span {
    display: none;
}
.owl-carousel.owl-dot-type1 .owl-dots .owl-dot.active {
    border-color: #2e343a;
    background: #2e343a;
}

.bootstrap-select .btn-light:not(:disabled):not(.disabled).active,
.bootstrap-select .btn-light:not(:disabled):not(.disabled):active,
.bootstrap-select .show > .btn-light.dropdown-toggle {
    background-color: transparent !important;
    box-shadow: none !important;
    outline: none !important;
}

.bootstrap-select > .dropdown-toggle {
    box-shadow: none !important;
}

.bootstrap-select .dropdown-toggle:focus,
.bootstrap-select > select.mobile-device:focus + .dropdown-toggle {
    outline: none !important;
}

.bootstrap-select .dropdown-menu {
    padding-top: 0;
    padding-bottom: 0;
    margin-top: 0;
    z-index: 991;
    border-radius: 0;
}

.bootstrap-select .dropdown-menu > li + li > a {
    border-top: 1px solid var(--thm-gray);
}

.bootstrap-select .dropdown-menu > li.selected > a {
    background: var(--thm-primary);
    color: #fff;
}

.bootstrap-select .dropdown-menu > li > a {
    font-size: 16px;
    font-weight: 500;
    padding: 4px 20px;
    color: #ffffff;
    background: var(--thm-black);
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.bootstrap-select .dropdown-menu > li > a:hover {
    background: var(--thm-primary);
    color: #fff;
    cursor: pointer;
}

/* datepicker */

.datepicker.dropdown-menu {
    min-width: 17rem;
}

.datepicker table {
    width: 100%;
}

.post-pagination {
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    flex-wrap: wrap;
}

.post-pagination a {
    border-radius: 50%;
    background-color: var(--thm-gray);
    color: #9ca3a9;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    padding: 0;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    width: 57px;
    height: 57px;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.post-pagination a:hover {
    background-color: var(--thm-primary);
    color: #fff;
}

.post-pagination a.active {
    background-color: var(--thm-base);
    color: #fff;
    cursor: auto;
}

.post-pagination a + a {
    margin-left: 15px;
}

/* owl dots style */

.thm__owl-carousel .owl-dots {
    margin-top: 20px;
}

.thm__owl-carousel .owl-dots .owl-dot {
    outline: none;
}

.thm__owl-carousel .owl-dots .owl-dot span {
    margin: 0 2.5px;
    padding: 0;
    width: 14px;
    height: 14px;
    background-color: var(--thm-gray);
    border-radius: 50%;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.thm__owl-carousel .owl-dots .owl-dot:hover span,
.thm__owl-carousel .owl-dots .owl-dot.active span {
    background-color: var(--thm-primary);
}

.thm__owl-carousel.light-dots .owl-dots .owl-dot span {
    background-color: #fff;
}

.thm__owl-carousel.light-dots .owl-dots .owl-dot:hover span,
.thm__owl-carousel.light-dots .owl-dots .owl-dot.active span {
    background-color: var(--thm-primary);
}

.preloader {
    position: fixed;
    background-color: #fff;
    background-position: center center;
    background-repeat: no-repeat;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999999991;
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    text-align: center;
}

.preloader__image {
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: flipInY;
    animation-name: flipInY;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

.scroll-to-top {
    display: inline-block;
    width: 45px;
    height: 45px;
    background: var(--thm-primary);
    position: fixed;
    bottom: 70px;
    right: 40px;
    z-index: 99;
    text-align: center;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    display: none;
    border-radius: 50%;
    transition: all 0.4s ease;
}

.scroll-to-top i {
    color: #ffffff;
    font-size: 18px;
    line-height: 45px;
}

.scroll-to-top:hover {
    background-color: #ebd954;
}

.scroll-to-top:hover i {
    color: #fff;
}

.thm-base-bg {
    background-color: var(--thm-primary);
}

.thm-base-bg-2 {
    background-color: var(--thm-base);
}

.thm-gray-bg {
    background-color: var(--thm-gray);
}

/* home 5 */

.home-5__content-wrap {
    background-color: var(--thm-black);
    position: relative;
}

.home-5__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.home-5__bg-inner {
    height: 100% !important;
}

.home-5__social {
    position: absolute;
    top: 50%;
    left: 120px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    z-index: 100;
}
.home-5__social a {
    color: #fff;
    font-size: 22px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}
.home-5__social a:hover {
    color: var(--thm-primary);
}
.home-5__social a + a {
    margin-top: 15px;
}

.home-5__floated-text {
    font-size: 400px;
    font-weight: 200;
    color: #ffffff;
    letter-spacing: 0.2em;
    position: absolute;
    top: 50%;
    left: 50%;
    text-transform: uppercase;
    -webkit-transform: translateY(-50%) translateX(-50%);
    transform: translateY(-50%) translateX(-50%);
    z-index: 10;
    text-align: center;
    opacity: 0.05;
}

/* home 7 */

.home-7-content-wrap {
    position: relative;
}

.home-7-content__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: -37px;
    background-position: top;
    background-repeat: no-repeat;
    background-position: bottom center;
    opacity: 0.07;
    background-color: #004c85;
    background-blend-mode: multiply;
    z-index: 10;
}

.home-7-content-wrap .container {
    position: relative;
    z-index: 11;
}

/* Cursor Style */
.cursor {
    position: absolute;
    background-color: #fff;
    width: 6px;
    height: 6px;
    border-radius: 100%;
    z-index: 1;
    -webkit-transition: 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity,
        0.3s cubic-bezier(0.75, -1.27, 0.3, 2.33) -webkit-transform;
    transition: 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity,
        0.3s cubic-bezier(0.75, -1.27, 0.3, 2.33) -webkit-transform;
    transition: 0.3s cubic-bezier(0.75, -1.27, 0.3, 2.33) transform,
        0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity;
    transition: 0.3s cubic-bezier(0.75, -1.27, 0.3, 2.33) transform,
        0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity,
        0.3s cubic-bezier(0.75, -1.27, 0.3, 2.33) -webkit-transform;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    pointer-events: none;
    z-index: 10000;
    -webkit-transform: scale(1);
    transform: scale(1);
    visibility: hidden;
}

.cursor {
    visibility: visible;
}

.cursor.active {
    opacity: 0.5;
    -webkit-transform: scale(0);
    transform: scale(0);
}

.cursor.hovered {
    opacity: 0.08;
}

.cursor-follower {
    position: absolute;
    background-color: RGBA(255, 255, 255, 0.3);
    width: 50px;
    height: 50px;
    border-radius: 100%;
    z-index: 1;
    -webkit-transition: 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity,
        0.6s cubic-bezier(0.75, -1.27, 0.3, 2.33) -webkit-transform;
    transition: 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity,
        0.6s cubic-bezier(0.75, -1.27, 0.3, 2.33) -webkit-transform;
    transition: 0.6s cubic-bezier(0.75, -1.27, 0.3, 2.33) transform,
        0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity;
    transition: 0.6s cubic-bezier(0.75, -1.27, 0.3, 2.33) transform,
        0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity,
        0.6s cubic-bezier(0.75, -1.27, 0.3, 2.33) -webkit-transform;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    pointer-events: none;
    z-index: 10000;
    visibility: hidden;
}

.cursor-follower {
    visibility: visible;
}

.cursor-follower.active {
    opacity: 0.7;
    -webkit-transform: scale(1);
    transform: scale(1);
}

.cursor-follower.hovered {
    opacity: 0.08;
}

.cursor-follower.close-cursor:before {
    position: absolute;
    content: "";
    height: 25px;
    width: 2px;
    background: #fff;
    left: 48%;
    top: 12px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    display: inline-block;
}

.cursor-follower.close-cursor:after {
    position: absolute;
    content: "";
    height: 25px;
    width: 2px;
    background: #fff;
    right: 48%;
    top: 12px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

/*--------------------------------------------------------------
# Topbar
--------------------------------------------------------------*/
.site-header__header-one-wrap {
    position: relative;
    display: block;
}
.topbar-one {
    position: relative;
    background-color: #ffffff;
}
.topbar-one .topbar_bg {
    position: absolute;
    left: 0;
    bottom: -16px;
    right: 0;
    height: 16px;
    z-index: 1;
}
.topbar-one .container {
    min-height: 126px;
    position: relative;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    justify-content: space-between;
}
.topbar-one__left {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
}
.topbar-one__left a {
    color: #878986;
    font-size: 18px;
    font-weight: 500;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}
.topbar-one__left a span {
    position: relative;
    top: 1px;
    display: inline-block;
    padding-right: 10px;
    color: var(--thm-primary);
    font-size: 18px;
}
.topbar-one__left a:hover {
    color: var(--thm-base);
}
.topbar-one__left a + a {
    margin-left: 30px;
}

.topbar-one__middle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
}
.topbar-one__middle a {
    display: inline-block;
}

.topbar-one__right {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
}
.topbar-one__social {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
}
.topbar-one__social a + a {
    margin-left: 10px;
}
.topbar-one__social a {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    text-align: center;
    width: 45px;
    height: 45px;
    background-color: #f5f0e9;
    color: #878986;
    font-size: 14px;
    border-radius: 50%;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}
.topbar-one__social a:hover {
    background-color: var(--thm-primary);
    color: #fff;
}
.topbar-one__social.home-four a {
    opacity: 0.3;
}
.topbar-one__social.home-four a:hover {
    opacity: 1;
    color: #878986;
    background-color: #f5f0e9;
}

/*--------------------------------------------------------------
# Main Menu
--------------------------------------------------------------*/
.main-nav__header-one {
    position: relative;
    background: #f5f0e9;
}
.main-nav__header-one .container {
    position: relative;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
}

.main-nav__left {
    width: 100%;
    max-width: 45px;
    display: block;
    margin-right: 100px;
    padding: 32px 0 15px;
}
.main-nav__search {
    position: relative;
    color: var(--thm-black);
    font-size: 25px;
    transition: all 500ms ease;
}
.main-nav__search:hover {
    color: var(--thm-base);
}
.main-nav__left .side-menu__toggler {
    position: relative;
    display: inline-block;
    margin-left: 30px;
    font-size: 20px;
    color: var(--thm-black);
}

.main_nav__left_four .side-menu__toggler {
    color: #fff;
}

.main-nav__main-navigation .main-nav__navigation-box {
    margin: 0;
    padding: 0;
    list-style: none;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
}
.main-nav__main-navigation .main-nav__navigation-box,
.main-nav__main-navigation .main-nav__navigation-box ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.main-nav__main-navigation .main-nav__navigation-box > li + li {
    margin-left: 30px;
}
.main-nav__main-navigation .main-nav__navigation-box > li {
    position: relative;
    padding: 30px 0px 15px;
}
.main-nav__main-navigation .main-nav__navigation-box > li > a {
    position: relative;
    display: inline-block;
    padding: 0px 14px;
    border-radius: 5px;
    color: #878986;
    font-size: 16px;
    line-height: 40px;
    font-weight: 500;
    text-transform: capitalize;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    z-index: 1;
}
.main-nav__main-navigation .main-nav__navigation-box > li > a:before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    border-radius: 7px;
    background: var(--thm-base);
    content: "";
    transform: scaleX(0.5);
    opacity: 0;
    transition: all 500ms ease;
    z-index: -1;
}
.main-nav__main-navigation .main-nav__navigation-box > li:hover > a,
.main-nav__main-navigation .main-nav__navigation-box > li.current > a,
.main-nav__main-navigation
    .main-nav__navigation-box
    > li.current-menu-item
    > a {
    color: var(--thm-black);
}
.main-nav__main-navigation .main-nav__navigation-box > li:hover > a:before,
.main-nav__main-navigation .main-nav__navigation-box > li.current > a:before,
.main-nav__main-navigation
    .main-nav__navigation-box
    > li.current-menu-item
    > a:before {
    opacity: 1;
    transform: scaleX(1);
}

/* Dropdown menu */
.main-nav__main-navigation .dropdown-btn {
    display: none;
}
.main-nav__main-navigation .main-nav__navigation-box > li ul {
    position: absolute;
    width: 230px;
    background-color: #fff;
    border-top: 0px solid #f7f6f6;
    box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05),
        -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
    -webkit-transform-origin: top;
    transform-origin: top;
    visibility: hidden;
    opacity: 0;
    z-index: 991;
    -webkit-transition: opacity 500ms ease, visibility 500ms ease,
        -webkit-transform 500ms ease;
    transition: opacity 500ms ease, visibility 500ms ease,
        -webkit-transform 500ms ease;
    transition: transform 500ms ease, opacity 500ms ease, visibility 500ms ease;
    transition: transform 500ms ease, opacity 500ms ease, visibility 500ms ease,
        -webkit-transform 500ms ease;
}
.main-nav__main-navigation .main-nav__navigation-box > li ul > li {
    position: relative;
}
.main-nav__main-navigation .main-nav__navigation-box > li ul > li + li {
    border-top: 1px solid #f7f6f6;
}
.main-nav__main-navigation .main-nav__navigation-box > li ul > li > a {
    display: block;
    color: var(--thm-black);
    font-size: 14px;
    word-break: break-all;
    padding-top: 9.5px;
    padding-bottom: 9.5px;
    padding-left: 20px;
    padding-right: 20px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}
.main-nav__main-navigation .main-nav__navigation-box > li ul > li:hover > a {
    background-color: var(--thm-base);
}

/* Second level menu */
.main-nav__main-navigation .main-nav__navigation-box > li > ul {
    top: 100%;
    left: 0;
    -webkit-transform: translateY(30px);
    transform: translateY(30px);

    visibility: hidden;
    opacity: 0;
}
.main-nav__main-navigation .main-nav__navigation-box > li:hover > ul {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    visibility: visible;
    opacity: 1;
}

/* Third level menu */
.main-nav__main-navigation .main-nav__navigation-box > li > ul > li > ul {
    top: 0;
    left: 100%;
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
    visibility: hidden;
    opacity: 0;
}
.main-nav__main-navigation .main-nav__navigation-box > li > ul > li:hover > ul {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
    visibility: visible;
    opacity: 1;
}

/* After Third level menu */
.main-nav__main-navigation
    .main-nav__navigation-box
    > li
    > ul
    > li
    > ul
    > li
    ul {
    display: none;
}

.main-nav__right {
    margin-left: auto;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
}
.main-nav__right .icon_cart_box {
    position: relative;
    display: block;
    padding: 32px 0 15px;
}
.main-nav__right .icon_cart_box a {
    color: var(--thm-black);
    font-size: 25px;
}

/* stricky Menu Css */
.stricked-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
    background-color: #ffffff;
    box-shadow: 0px 6px 13px 0px rgba(0, 0, 0, 0.06);
    opacity: 0;
    -webkit-transform: translateY(-110%);
    transform: translateY(-110%);
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.stricked-menu.stricky-fixed {
    opacity: 1;
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
}
.stricked-menu.stricky-fixed
    .main-nav__main-navigation
    .main-nav__navigation-box
    > li {
    position: relative;
    padding: 25px 0px 25px;
}
.stricked-menu.stricky-fixed .main-nav__left {
    padding: 29px 0 23px;
}
.stricked-menu.stricky-fixed .main-nav__right .icon_cart_box {
    padding: 29px 0 23px;
    top: 0;
}

/*--------------------------------------------------------------
# Site Header Header Two Wrap
--------------------------------------------------------------*/
.site_header__header_two_wrap {
    position: relative;
}
.topbar-two {
    position: relative;
    display: block;
}
.topbar_two_content {
    position: relative;
}
.logo-box-two {
    position: relative;
    display: block;
    width: 200px;
    z-index: 10;
    padding: 29.5px 0;
}
.logo-box-two:before {
    position: absolute;
    top: 0;
    left: -50000px;
    bottom: 0;
    right: 0;
    content: "";
    z-index: -1;
}
.logo-box-two a {
    position: relative;
    display: inline-block;
}

.header_address_two {
    position: relative;
    display: block;
    padding: 40px 0;
}
.header_address_two ul {
    margin: 0;
}
.header_address_two ul li {
    position: relative;
    display: block;
    float: left;
    border-right: 1px solid #f5f0e9;
    padding-left: 36px;
    padding-right: 30px;
    margin-right: 26px;
}
.header_address_two ul li:first-child {
    margin-left: 37px;
}
.header_address_two ul li:last-child {
    margin-right: 0;
    border-right: none;
    padding-right: 0;
}
.header_address_two ul li .address_icon {
    position: absolute;
    top: 2px;
    left: 0;
    color: var(--thm-primary);
    font-size: 20px;
}
.header_address_two ul li .address_title {
    position: relative;
}
.header_address_two ul li .address_title h6 {
    color: var(--thm-black);
    font-size: 14px;
    line-height: 20px;
    font-weight: 600;
    margin: 0 0 5px;
    font-family: var(--thm-font);
}
.header_address_two ul li .address_title p {
    color: #878986;
    font-size: 14px;
    line-height: 20px;
    margin: 5px 0 0;
}
.header_address_two ul li .address_title p a {
    color: #878986;
}

.header_btn_two {
    position: relative;
    display: block;
    padding: 32.5px 0;
}
.header_btn_two a.thm-btn {
    padding: 13px 40.5px;
    font-size: 16px;
}

.main-nav__header_two {
    position: relative;
    display: block;
    background: var(--thm-black);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.main-nav__main-navigation.two .main-nav__navigation-box > li {
    padding: 15px 0px 15px;
}
.main-nav__main-navigation.two .main-nav__navigation-box > li > a {
    color: #000000;
    font-weight: 600;
}
.main-nav__main-navigation.two .main-nav__navigation-box > li:hover > a,
.main-nav__main-navigation.two .main-nav__navigation-box > li.current > a,
.main-nav__main-navigation.two
    .main-nav__navigation-box
    > li.current-menu-item
    > a {
    color: var(--thm-black);
}

.main_nav_right_two {
    position: relative;
    display: block;
}
.main_nav_right_two .icon_search_box {
    position: relative;
    float: left;
    line-height: 0;
    padding: 20px 0;
    margin-right: 40px;
}
.main_nav_right_two .icon_search_box a {
    color: #ffffff;
    line-height: 30px;
}
.main_nav_right_two .icon_cart_box {
    position: relative;
    float: right;
    line-height: 0;
    padding: 20px 0;
}
.main_nav_right_two .icon_cart_box a {
    color: #ffffff;
    font-size: 25px;
    line-height: 30px;
}

.main-nav__header_two .stricked-menu {
    background-color: var(--thm-black);
    box-shadow: none;
}
.stricked-menu .main_nav_right_two .icon_search_box {
    padding: 30px 0;
}
.stricked-menu .main_nav_right_two .icon_cart_box {
    padding: 30px 0;
}

/*--------------------------------------------------------------
# Site Header Header three Wrap
--------------------------------------------------------------*/
.site_header__header_three_wrap {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    z-index: 999;
    transition: all 500ms ease;
}

.topbar-three {
    position: relative;
    display: block;
}
.topbar-three:before {
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.15);
    content: "";
    z-index: 10;
}

.topbar-three .container-box {
    position: relative;
}

.topbar_three_content {
    position: relative;
}
.logo-box-three {
    position: relative;
    display: block;
    max-width: 345px;
    width: 100%;
    text-align: center;
    background: var(--thm-black);
    border-right: 1px solid rgba(255, 255, 255, 0.15);
    padding: 30px 0;
}
.logo-box-three a {
    position: relative;
    display: inline-block;
}

.topbar_three_nav_box {
    position: relative;
    display: block;
    max-width: 1140px;
    width: 100%;
}
.main_nav_header_three_content {
    position: relative;
    display: block;
    padding-left: 30px;
}

.main-nav__main-navigation.three .main-nav__navigation-box > li {
    position: relative;
    padding: 43px 0px 43px;
}
.main-nav__main-navigation.three .main-nav__navigation-box > li + li {
    margin-left: 35px;
}
.main-nav__main-navigation.three .main-nav__navigation-box > li > a {
    color: #ffffff;
}
.main-nav__main-navigation.three .main-nav__navigation-box > li:hover > a,
.main-nav__main-navigation.three .main-nav__navigation-box > li.current > a,
.main-nav__main-navigation.three
    .main-nav__navigation-box
    > li.current-menu-item
    > a {
    color: var(--thm-black);
}

.main_nav_right_three {
    position: relative;
    display: block;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
    padding-right: 60px;
}
.stricked-menu .main_nav_right_three {
    padding-right: 0;
    border-right: 0;
}
.main_nav_right_three .icon_search_box {
    position: relative;
    float: left;
    line-height: 0;
    padding: 48px 0;
    margin-right: 40px;
}
.main_nav_right_three .icon_search_box a {
    color: #ffffff;
    line-height: 30px;
}
.main_nav_right_three .icon_cart_box {
    position: relative;
    float: right;
    line-height: 0;
    padding: 48px 0;
}
.main_nav_right_three .icon_cart_box a {
    color: #ffffff;
    font-size: 25px;
    line-height: 30px;
}

.topbar_three_right_box {
    position: relative;
    display: block;
    float: right;
    width: 20%;
}
.topbar_three_right_box .topbar-one__social {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding: 40px 0 41px;
}

.topbar_three_nav_box .stricked-menu {
    background-color: var(--thm-black);
}
.stricked-menu .main_nav_header_three_content {
    padding-left: 0px;
}

.stricked-menu .main_nav_right_three .icon_search_box {
    padding: 30px 0;
}
.stricked-menu .main_nav_right_three .icon_cart_box {
    padding: 30px 0;
}

/*--------------------------------------------------------------
# Site Header Header Four Wrap
--------------------------------------------------------------*/
.site_header__header_four_wrap {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    z-index: 999;
    transition: all 500ms ease;
}

.topbar_four {
    background-color: transparent;
}
.topbar_four .topbar-one__left a {
    color: #ffffff;
}
.topbar_four .topbar-one__left a span {
    color: var(--thm-base);
}

.main-nav__header-four .container {
    position: relative;
}
.main-nav__header-four .container:before {
    position: absolute;
    top: 0;
    left: 15px;
    right: 15px;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.2);
    content: "";
}
.main-nav__header-four .container:after {
    position: absolute;
    bottom: 0;
    left: 15px;
    right: 15px;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.2);
    content: "";
}

.main-nav__header-four {
    background: transparent;
}
.main_nav__left_four {
    padding: 0;
}
.main_nav__left_four .main-nav__search {
    color: #ffffff;
}

.main-nav__main-navigation.four .main-nav__navigation-box > li {
    padding: 17.5px 0;
}
.main-nav__main-navigation.four .main-nav__navigation-box > li + li {
    margin-left: 35px;
}
.main-nav__main-navigation.four .main-nav__navigation-box > li > a {
    color: #ffffff;
}
.main-nav__main-navigation.four .main-nav__navigation-box > li:hover > a,
.main-nav__main-navigation.four .main-nav__navigation-box > li.current > a,
.main-nav__main-navigation.four
    .main-nav__navigation-box
    > li.current-menu-item
    > a {
    color: var(--thm-black);
}

.main-nav__right.four .icon_cart_box {
    padding: 0;
}
.main-nav__right.four .icon_cart_box a {
    color: #ffffff;
}

.stricked-menu
    .main-nav__main-navigation.four
    .main-nav__navigation-box
    > li
    > a {
    color: var(--thm-black);
}
.stricked-menu .main_nav__left_four .main-nav__search {
    color: var(--thm-black);
}
.stricked-menu .main-nav__right.four .icon_cart_box a {
    color: var(--thm-black);
}

/*--------------------------------------------------------------
# Site Header Header Five Wrap
--------------------------------------------------------------*/
.site_header__header_five_wrap {
    position: relative;
    left: 0px;
    top: 0px;
    width: 100%;
    z-index: 999;
    transition: all 500ms ease;
}
.topbar-five {
    position: relative;
    display: block;
    background: transparent;
}
.topbar-five:before {
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    height: 1px;
    background-color: #f5f6f5;
    content: "";
    z-index: 10;
}

.logo-box-five {
    background: transparent;
    border-right: 1px solid #f5f6f5;
}

.main-nav__main-navigation.five .main-nav__navigation-box > li {
    position: relative;
    padding: 43px 0px 43px;
}
.main-nav__main-navigation.five .main-nav__navigation-box > li + li {
    margin-left: 35px;
}
.main-nav__main-navigation.five .main-nav__navigation-box > li > a {
    color: #878986;
}
.main-nav__main-navigation.five .main-nav__navigation-box > li:hover > a,
.main-nav__main-navigation.five .main-nav__navigation-box > li.current > a,
.main-nav__main-navigation.five
    .main-nav__navigation-box
    > li.current-menu-item
    > a {
    color: var(--thm-black);
}

.main_nav_right_three.five {
    position: relative;
    display: block;
}

.main_nav_right_three.five .icon_search_box a {
    color: var(--thm-black);
}

.main_nav_right_three.five .icon_cart_box a {
    color: var(--thm-black);
}
.topbar_three_right_box.five {
    border-left: 1px solid rgba(64, 74, 61, 0.05);
}
.topbar_three_right_box.five .topbar-one__social a {
    opacity: 1;
}
.topbar_three_right_box.five .topbar-one__social a:hover {
    background-color: var(--thm-primary);
    color: #fff;
}
.stricked-menu
    .main-nav__main-navigation.five
    .main-nav__navigation-box
    > li
    > a {
    color: #ffffff;
}
.stricked-menu
    .main-nav__main-navigation.five
    .main-nav__navigation-box
    > li:hover
    > a,
.stricked-menu
    .main-nav__main-navigation.five
    .main-nav__navigation-box
    > li.current
    > a,
.stricked-menu
    .main-nav__main-navigation.five
    .main-nav__navigation-box
    > li.current-menu-item
    > a {
    color: var(--thm-black);
}
.stricked-menu .main_nav_right_three.five .icon_search_box a {
    color: #ffffff;
}
.stricked-menu .main_nav_right_three.five .icon_cart_box a {
    color: #ffffff;
}

@media (min-width: 1200px) {
    .main-nav__left .side-menu__toggler {
        display: none;
    }
    .main-nav__main-navigation {
        display: -moz-flex;
        display: -ms-flex;
        display: -o-flex;
        display: -webkit-box;
        display: flex;
        -webkit-box-align: center;
        align-items: center;
    }

    .mobile_menu_icon_two .side-menu__toggler {
        display: none;
    }

    .mobile_menu_icon_three .side-menu__toggler {
        display: none;
    }
}

@media (max-width: 1199px) {
    .main-nav__logo-box {
        padding: 20px 0;
        display: -webkit-box;
        display: flex;
        -webkit-box-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        justify-content: space-between;
    }
    .main-nav__main-navigation {
        display: none;
    }
}

/*--------------------------------------------------------------
# Search Popup
--------------------------------------------------------------*/

.search-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1000;
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0);
    -webkit-transform-origin: bottom center;
    transform-origin: bottom center;
    -webkit-transition: -webkit-transform 0.7s ease;
    transition: -webkit-transform 0.7s ease;
    transition: transform 0.7s ease;
    transition: transform 0.7s ease, -webkit-transform 0.7s ease;
}

.search-popup.active {
    -webkit-transform-origin: top center;
    transform-origin: top center;
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
}

.search-popup__overlay {
    width: 100%;
    height: 100%;
    background-color: #000;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    opacity: 0.7;
    cursor: none;
}

.search-popup__inner {
    position: absolute;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
}

.search-popup__form {
    position: relative;
    z-index: 9991;
    width: 100%;
    padding: 15px;
    max-width: 600px;
    position: relative;
}

.search-popup__form input {
    background-color: transparent;
    border: none;
    outline: none;
    width: 100%;
    height: 60px;
    color: var(--thm-black);
    font-size: 18px;
    background-color: white;
    padding-left: 30px;
}

.search-popup__form input::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: var(--thm-black);
}

.search-popup__form input::-moz-placeholder {
    /* Firefox 19+ */
    color: var(--thm-black);
}

.search-popup__form input:-ms-input-placeholder {
    /* IE 10+ */
    color: var(--thm-black);
}

.search-popup__form input:-moz-placeholder {
    /* Firefox 18- */
    color: var(--thm-black);
}

.search-popup__form button[type="submit"] {
    border: none;
    outline: none;
    width: 60px;
    height: 60px;
    color: #fff;
    background-color: var(--thm-base);
    cursor: pointer;
    position: absolute;
    top: 50%;
    right: 15px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.search-popup__form button[type="submit"]:hover {
    background-color: var(--thm-black);
    color: var(--thm-base);
}

/*--------------------------------------------------------------
# Sidemenu
--------------------------------------------------------------*/

.side-menu__block {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1000;
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transform-origin: left center;
    transform-origin: left center;
    -webkit-transition: -webkit-transform 0.7s ease;
    transition: -webkit-transform 0.7s ease;
    transition: transform 0.7s ease;
    transition: transform 0.7s ease, -webkit-transform 0.7s ease;
}

.side-menu__block.active {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
}

.side-menu__block-overlay {
    width: 100%;
    height: 100%;
    background-color: var(--thm-black);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    opacity: 0.7;
}

.side-menu__block-overlay .cursor-follower {
    background-color: rgba(var(--thm-black-rgb), 0.3);
}

.side-menu__block-inner {
    position: relative;
    max-width: 532px;
    width: 100%;
    margin-right: auto;
    height: 100vh;
    background-color: var(--thm-gray);
    z-index: 999999;
    overflow-y: auto;
    padding: 40px 0;
    padding-top: 20px;
    position: relative;
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    align-content: space-between;
}

@media (max-width: 575px) {
    .side-menu__block-inner {
        max-width: 480px;
    }
}

@media (max-width: 480px) {
    .side-menu__block-inner {
        max-width: 400px;
    }
}

@media (max-width: 375px) {
    .side-menu__block-inner {
        max-width: 300px;
    }
}

.side-menu__block-inner .mCustomScrollBox {
    width: 100%;
}

.side-menu__top {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    justify-content: space-between;
    padding-left: 100px;
    padding-right: 40px;
}

.mobile-nav__container {
    padding-left: 100px;
    padding-right: 100px;
    padding-top: 50px;
}
.mobile-nav__container ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.mobile-nav__container li.dropdown ul {
    display: none;
    padding-left: 0.5em;
}

.mobile-nav__container li.dropdown {
    position: relative;
}

.mobile-nav__container li.dropdown .dropdown-btn {
    border: none;
    outline: none;
    background-color: transparent;
    color: #9ca3a9;
    font-size: 14px;
    padding-left: 10px;
    padding-right: 10px;
    width: auto;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    -webkit-transition: transfrom 500ms ease;
    transition: transfrom 500ms ease;
}

.mobile-nav__container li.dropdown .dropdown-btn.open {
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
}

.mobile-nav__container li + li {
    margin-top: 10px;
}

.mobile-nav__container li a {
    text-transform: uppercase;
    color: #9ca3a9;
    font-size: 18px;
    font-weight: 500;
    display: block;
    font-family: var(--thm-font);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    position: relative;
}

.mobile-nav__container li a:hover {
    color: var(--thm-primary);
}

.mobile-nav__container li.current-menu-item > a,
.mobile-nav__container li.current > a {
    color: var(--thm-primary);
}

.side-menu__social {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    margin-top: 40px;
    margin-bottom: 40px;
}

.side-menu__social a {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    text-align: center;
    width: 57px;
    height: 57px;
    background-color: #fff;
    color: #9ca3a9;
    font-size: 16px;
    border-radius: 50%;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.side-menu__social a + a {
    margin-left: 10px;
}

.side-menu__social a:hover {
    background-color: var(--thm-primary);
    color: #ffffff;
}

.side-menu__content {
    padding-left: 100px;
    padding-right: 100px;
}

.side-menu__content p {
    margin: 0;
    font-size: 18px;
    line-height: 30px;
    font-weight: 500;
    color: #9ca3a9;
    letter-spacing: 0.02em;
}
.side-menu__content p + p {
    margin-top: 30px;
}
.side-menu__content p a {
    color: var(--thm-primary);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}
.side-menu__content p a:hover {
    color: #000000;
}

.side-menu__sep {
    width: calc(100% - 200px);
    margin-left: auto;
    margin-right: auto;
    height: 1px;
    background-color: #fff;
    margin-top: 70px;
    margin-bottom: 70px;
}

.side-menu__text p {
    font-size: 18px;
    line-height: 30px;
    font-weight: 500;
    color: #9ca3a9;
    margin: 0;
    margin-bottom: 25px;
}

.side-menu__text a {
    font-size: 20px;
    color: var(--thm-secondary);
    line-height: 30px;
    font-weight: 500;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.side-menu__text a:hover {
    color: var(--thm-primary);
}

.side-menu__block__copy {
    text-transform: uppercase;
    font-size: 16px;
    color: #9ca3a9;
    font-weight: 400;
    letter-spacing: 0.2em;
}

@media (max-width: 575px) {
    .side-menu__top,
    .side-menu__content,
    .mobile-nav__container {
        padding-left: 50px;
        padding-right: 50px;
    }

    .side-menu__sep {
        margin-top: 40px;
        margin-bottom: 40px;
        width: calc(100% - 100px);
    }
}

@media (max-width: 480px) {
    .side-menu__top,
    .side-menu__content,
    .mobile-nav__container {
        padding-left: 25px;
        padding-right: 25px;
    }

    .side-menu__sep {
        width: calc(100% - 50px);
    }

    .side-menu__social {
        margin-top: 40px;
    }

    .side-menu__social a {
        width: 45px;
        height: 45px;
    }
}

/***
====================================================================
	Banner Section
====================================================================
***/
.banner-section {
    position: relative;
    z-index: 1;
}
.banner-carousel {
    position: relative;
    z-index: 1;
}
.banner-carousel .slide-item {
    position: relative;
    display: block;
    background-color: #111111;
    color: #ffffff;
    overflow: hidden;
}
.banner-carousel .slide-item:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #232a21;
    opacity: 0.4;
    z-index: 1;
}
.banner-carousel .slide-item .image-layer {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 1;
    z-index: 0;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}
.banner-carousel .active .slide-item .image-layer {
    -webkit-transform: scale(1.15);
    -ms-transform: scale(1.15);
    transform: scale(1.15);
    -webkit-transition: all 7000ms linear;
    -moz-transition: all 7000ms linear;
    -ms-transition: all 7000ms linear;
    -o-transition: all 7000ms linear;
    transition: all 7000ms linear;
}

.banner-carousel .content-box {
    position: relative;
    z-index: 11;
}
.banner-carousel .content-box .content {
    position: relative;
    padding: 152px 0px 160px;
}

.banner-carousel .content-box .inner {
    position: relative;
    display: block;
    max-width: 800px;
}
.banner-carousel .content-box .sub-title {
    position: relative;
    display: inline-block;
    font-size: 16px;
    line-height: 26px;
    color: #ffffff;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 0px;
    opacity: 0;
    -webkit-transform: translateY(80px);
    -moz-transform: translateY(80px);
    -ms-transform: translateY(80px);
    -o-transform: translateY(80px);
    transform: translateY(80px);
}
.banner-carousel .content-box .sub-title:before {
    position: absolute;
    left: -5px;
    bottom: -21px;
    right: 0;
    height: 23px;
    width: 365px;
    background: url(../images/icon/line1.png);
    background-repeat: no-repeat;
    content: "";
}

.banner-carousel .active .content-box .sub-title {
    opacity: 1;
    -webkit-transform: translate(0);
    -moz-transform: translate(0);
    -ms-transform: translate(0);
    -o-transform: translate(0);
    transform: translate(0);
    -webkit-transition: all 700ms ease;
    -moz-transition: all 700ms ease;
    -ms-transition: all 700ms ease;
    -o-transition: all 700ms ease;
    transition: all 700ms ease;
    -webkit-transition-delay: 800ms;
    -moz-transition-delay: 800ms;
    -ms-transition-delay: 800ms;
    -o-transition-delay: 800ms;
    transition-delay: 800ms;
}

.banner-carousel .content-box h1 {
    position: relative;
    display: block;
    margin: 19px 0 43px;
    font-size: 150px;
    line-height: 149px;
    color: #ffffff;
    font-weight: 700;
    opacity: 0;
    text-transform: uppercase;
    letter-spacing: 0;
    -webkit-transform: translateY(80px);
    -moz-transform: translateY(80px);
    -ms-transform: translateY(80px);
    -o-transform: translateY(80px);
    transform: translateY(80px);
}
.banner-carousel .active .content-box h1 {
    opacity: 1;
    -webkit-transform: translate(0);
    -moz-transform: translate(0);
    -ms-transform: translate(0);
    -o-transform: translate(0);
    transform: translate(0);
    -webkit-transition: all 700ms ease;
    -moz-transition: all 700ms ease;
    -ms-transition: all 700ms ease;
    -o-transition: all 700ms ease;
    transition: all 1000ms ease;
    -webkit-transition-delay: 1300ms;
    -moz-transition-delay: 1300ms;
    -ms-transition-delay: 1300ms;
    -o-transition-delay: 1300ms;
    transition-delay: 1300ms;
}
.banner-carousel .content-box .link-box {
    position: relative;
    display: block;
    opacity: 0;
    -webkit-transform: translateY(50px);
    -moz-transform: translateY(50px);
    -ms-transform: translateY(50px);
    -o-transform: translateY(50px);
    transform: translateY(50px);
}
.banner-carousel .active .content-box .link-box {
    opacity: 1;
    -webkit-transform: translate(0);
    -moz-transform: translate(0);
    -ms-transform: translate(0);
    -o-transform: translate(0);
    transform: translate(0);
    -webkit-transition: all 700ms ease;
    -moz-transition: all 700ms ease;
    -ms-transition: all 700ms ease;
    -o-transition: all 700ms ease;
    transition: all 700ms ease;
    -webkit-transition-delay: 1800ms;
    -moz-transition-delay: 1800ms;
    -ms-transition-delay: 1800ms;
    -o-transition-delay: 1800ms;
    transition-delay: 1800ms;
}

.banner-carousel .owl-nav {
    position: absolute;
    bottom: 0;
    width: 350px;
    height: 90px;
    text-align: right;
    right: 0;
    margin: 0;
}
.banner-carousel .owl-nav .owl-next,
.banner-carousel .owl-nav .owl-prev {
    position: relative;
    display: block;
    float: left;
    width: 175px;
    height: 90px;
    background: #ffffff !important;
    padding: 0;
    margin: 0;
    font-size: 12px;
    line-height: 90px;
    text-align: center;
    opacity: 1;
    border-radius: 0%;
    outline: none;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    letter-spacing: 0.2em;
}
.banner-carousel .owl-nav .owl-next {
    background: var(--thm-black) !important;
    border-radius: 0 !important;
}

.banner-carousel .owl-nav .owl-next span,
.banner-carousel .owl-nav .owl-prev span {
    vertical-align: middle;
}
.banner-carousel .owl-nav .owl-next p,
.banner-carousel .owl-nav .owl-prev p {
    position: relative;
    display: inline-block;
    color: #ffffff;
    font-size: 12px;
    line-height: 20px;
    font-weight: 600;
    text-transform: uppercase;
    margin: 0;
}
.banner-carousel .owl-nav .owl-next p {
    display: inline-block;
    padding-right: 10px;
}

.banner-carousel .owl-nav .owl-prev span {
    color: var(--thm-black);
}
.banner-carousel .owl-nav .owl-prev p {
    color: var(--thm-black);
    padding-left: 10px;
}

.banner-carousel .owl-nav .owl-next:hover,
.banner-carousel .owl-nav .owl-prev:hover {
    opacity: 1;
}

.banner-section .owl-dots {
    position: absolute;
    bottom: 50%;
    left: 50%;
    text-align: center;
    transform: translateY(50%) translateX(-50%);
    width: 100%;
    max-width: 1170px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    flex-direction: column;
}

.banner-section .owl-theme .owl-dots .owl-dot {
    position: relative;
    display: block;
    vertical-align: top;
    margin: 4px 0px;
    outline: none;
}
.banner-section .owl-theme .owl-dots .owl-dot span {
    position: relative;
    display: block;
    width: 16px;
    height: 16px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    background: none;
}
.banner-section .owl-theme .owl-dots .owl-dot.active span {
    background: var(--thm-base);
}

/*--------------------------------------------------------------
# Banner Two
--------------------------------------------------------------*/

.banner-carousel-two {
    position: relative;
    z-index: 1;
}
.banner-carousel-two .slide-item {
    position: relative;
    display: block;
    background-color: #111111;
    color: #ffffff;
    overflow: hidden;
}
.banner-carousel-two .slide-item:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
   background-color: rgb(35 42 33 / 43%);
    z-index: 1;
    display:none;
}
.banner-carousel-two .slide-item .image-layer {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 1;
    z-index: 0;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}
.banner-carousel-two .active .slide-item .image-layer {
/*
    -webkit-transform: scale(1.15);
    -ms-transform: scale(1.15);
    transform: scale(1.15);
    -webkit-transition: all 7000ms linear;
    -moz-transition: all 7000ms linear;
    -ms-transition: all 7000ms linear;
    -o-transition: all 7000ms linear;
    transition: all 7000ms linear;
    */
}

.banner-carousel-two .content-box {
    position: relative;
    z-index: 11;
}
.banner-carousel-two .content-box .content {
    position: relative;
    padding: 293px 0px 150px;
}

.banner-carousel-two .content-box .inner {
    position: relative;
    display: block;
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}
.banner-carousel-two .content-box .sub-title {
    position: relative;
    display: inline-block;
    font-size: 24px;
    line-height: 26px;
    color: #ffffff;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin: 0 0 13px;
    padding: 12px 40px;
    background: rgb(64,74,61,0.5);
    opacity: 0;
    -webkit-transform: translateY(80px);
    -moz-transform: translateY(80px);
    -ms-transform: translateY(80px);
    -o-transform: translateY(80px);
    transform: translateY(80px);
}
.banner-carousel-two .active .content-box .sub-title {
    opacity: 1;
    -webkit-transform: translate(0);
    -moz-transform: translate(0);
    -ms-transform: translate(0);
    -o-transform: translate(0);
    transform: translate(0);
    -webkit-transition: all 700ms ease;
    -moz-transition: all 700ms ease;
    -ms-transition: all 700ms ease;
    -o-transition: all 700ms ease;
    transition: all 700ms ease;
    -webkit-transition-delay: 800ms;
    -moz-transition-delay: 800ms;
    -ms-transition-delay: 800ms;
    -o-transition-delay: 800ms;
    transition-delay: 800ms;
}
.banner-carousel-two .content-box .big_text {
    position: relative;
    display: block;
    margin-bottom: 40px;
}

.banner-carousel-two .content-box .big_text h2 {
    position: relative;
    display: inline-block;
    margin: 0;
    font-size: 40px;
    line-height: 100px;
    color: #ffffff;
    font-weight: 700;
    opacity: 0;
    text-transform: uppercase;
    letter-spacing: 0;
    -webkit-transform: translateY(80px);
    -moz-transform: translateY(80px);
    -ms-transform: translateY(80px);
    -o-transform: translateY(80px);
    transform: translateY(80px);
}
.banner-carousel-two .content-box .big_text h2:before {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    width: 100%;
    height: 10px;
    content: "";
}
.banner-carousel-two .active .content-box .big_text h2 {
    opacity: 1;
    -webkit-transform: translate(0);
    -moz-transform: translate(0);
    -ms-transform: translate(0);
    -o-transform: translate(0);
    transform: translate(0);
    -webkit-transition: all 700ms ease;
    -moz-transition: all 700ms ease;
    -ms-transition: all 700ms ease;
    -o-transition: all 700ms ease;
    transition: all 1000ms ease;
    -webkit-transition-delay: 1300ms;
    -moz-transition-delay: 1300ms;
    -ms-transition-delay: 1300ms;
    -o-transition-delay: 1300ms;
    transition-delay: 1300ms;
}
.banner-carousel-two .content-box .link-box {
    position: relative;
    display: block;
    opacity: 0;
    -webkit-transform: translateY(50px);
    -moz-transform: translateY(50px);
    -ms-transform: translateY(50px);
    -o-transform: translateY(50px);
    transform: translateY(50px);
}
.banner-carousel-two .active .content-box .link-box {
    opacity: 1;
    -webkit-transform: translate(0);
    -moz-transform: translate(0);
    -ms-transform: translate(0);
    -o-transform: translate(0);
    transform: translate(0);
    -webkit-transition: all 700ms ease;
    -moz-transition: all 700ms ease;
    -ms-transition: all 700ms ease;
    -o-transition: all 700ms ease;
    transition: all 700ms ease;
    -webkit-transition-delay: 1800ms;
    -moz-transition-delay: 1800ms;
    -ms-transition-delay: 1800ms;
    -o-transition-delay: 1800ms;
    transition-delay: 1800ms;
}
.banner-section.banner-two .owl-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 100%;
}
.banner-section.banner-two .owl-theme .owl-prev span,
.banner-section.banner-two .owl-theme .owl-next span {
    display: block;
}

.banner-section.banner-two .owl-theme .owl-next span.right-arrow {
    position: relative;
    transform: rotate(180deg);
}
.banner-section.banner-two .owl-theme .owl-nav .owl-prev {
    position: absolute;
    left: 30px;
    top: 0;
    background: #74736c;
    height: 60px;
    width: 60px;
    border-radius: 50%;
    border: none;
    text-align: center;
    color: #3a3d32;
    font-size: 22px;
    line-height: 60px;
    font-weight: 700;
    opacity: 1;
    margin: 0;
    padding: 0;
    margin-top: -30px;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}
.banner-section.banner-two .owl-theme .owl-nav .owl-prev:hover {
    background: #ffffff;
}
.banner-section.banner-two .owl-theme .owl-nav .owl-prev:focus {
    outline: none;
}
.banner-section.banner-two .owl-theme .owl-nav .owl-next {
    position: absolute;
    right: 30px;
    top: 0;
    background: #74736c;
    height: 60px;
    width: 60px;
    border-radius: 50%;
    border: none;
    text-align: center;
    color: #3a3d32;
    font-size: 22px;
    line-height: 60px;
    font-weight: 700;
    opacity: 1;
    margin: 0;
    padding: 0;
    margin-top: -30px;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}
.banner-section.banner-two .owl-theme .owl-nav .owl-next:hover {
    background: #ffffff;
}
.banner-section.banner-two .owl-theme .owl-nav .owl-next:focus {
    outline: none;
}

/*--------------------------------------------------------------
# Banner Three
--------------------------------------------------------------*/

.banner-carousel-two {
    position: relative;
    z-index: 1;
}
.banner-carousel-three .slide-item {
    position: relative;
    display: block;
    background-color: #111111;
    color: #ffffff;
    overflow: hidden;
}
.banner-carousel-three .slide-item:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 1;
}
.banner-carousel-three .slide-item .image-layer {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 1;
    z-index: 0;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}
.banner-carousel-three .active .slide-item .image-layer {
    -webkit-transform: scale(1.15);
    -ms-transform: scale(1.15);
    transform: scale(1.15);
    -webkit-transition: all 7000ms linear;
    -moz-transition: all 7000ms linear;
    -ms-transition: all 7000ms linear;
    -o-transition: all 7000ms linear;
    transition: all 7000ms linear;
}

.banner-carousel-three .content-box {
    position: relative;
    z-index: 11;
}
.banner-carousel-three .content-box .content {
    position: relative;
    padding: 282px 0px 170px;
}

.banner-carousel-three .content-box .inner {
    position: relative;
    display: block;
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

.banner-carousel-three .content-box .big_text {
    position: relative;
    display: block;
    margin-bottom: 40px;
}
.banner-carousel-three .content-box .big_text h2 {
    position: relative;
    display: inline-block;
    margin: 0;
    font-size: 120px;
    line-height: 110px;
    color: #ffffff;
    font-weight: 600;
    opacity: 0;
    text-transform: uppercase;
    letter-spacing: 0;
    -webkit-transform: translateY(80px);
    -moz-transform: translateY(80px);
    -ms-transform: translateY(80px);
    -o-transform: translateY(80px);
    transform: translateY(80px);
    font-family: var(--thm-font);
}
.banner-carousel-three .content-box .big_text h2:before {
    position: absolute;
    left: 0;
    bottom: -57px;
    right: 0;
    content: "";
    background: url(../images/main-slider/slider-3-leafs.png);
    height: 24px;
    width: 167px;
    margin: 0 auto;
}
.banner-carousel-three .active .content-box .big_text h2 {
    opacity: 1;
    -webkit-transform: translate(0);
    -moz-transform: translate(0);
    -ms-transform: translate(0);
    -o-transform: translate(0);
    transform: translate(0);
    -webkit-transition: all 700ms ease;
    -moz-transition: all 700ms ease;
    -ms-transition: all 700ms ease;
    -o-transition: all 700ms ease;
    transition: all 1000ms ease;
    -webkit-transition-delay: 1300ms;
    -moz-transition-delay: 1300ms;
    -ms-transition-delay: 1300ms;
    -o-transition-delay: 1300ms;
    transition-delay: 1300ms;
}
.banner-carousel-three .content-box .sub-title {
    position: relative;
    display: inline-block;
    font-size: 20px;
    line-height: 30px;
    color: #ffffff;
    font-weight: 500;
    margin: 41px 0 48px;
    opacity: 0;
    -webkit-transform: translateY(80px);
    -moz-transform: translateY(80px);
    -ms-transform: translateY(80px);
    -o-transform: translateY(80px);
    transform: translateY(80px);
}
.banner-carousel-three .active .content-box .sub-title {
    opacity: 1;
    -webkit-transform: translate(0);
    -moz-transform: translate(0);
    -ms-transform: translate(0);
    -o-transform: translate(0);
    transform: translate(0);
    -webkit-transition: all 700ms ease;
    -moz-transition: all 700ms ease;
    -ms-transition: all 700ms ease;
    -o-transition: all 700ms ease;
    transition: all 700ms ease;
    -webkit-transition-delay: 800ms;
    -moz-transition-delay: 800ms;
    -ms-transition-delay: 800ms;
    -o-transition-delay: 800ms;
    transition-delay: 800ms;
}
.banner-carousel-three .content-box .link-box {
    position: relative;
    display: block;
    opacity: 0;
    -webkit-transform: translateY(50px);
    -moz-transform: translateY(50px);
    -ms-transform: translateY(50px);
    -o-transform: translateY(50px);
    transform: translateY(50px);
}
.banner-carousel-three .active .content-box .link-box {
    opacity: 1;
    -webkit-transform: translate(0);
    -moz-transform: translate(0);
    -ms-transform: translate(0);
    -o-transform: translate(0);
    transform: translate(0);
    -webkit-transition: all 700ms ease;
    -moz-transition: all 700ms ease;
    -ms-transition: all 700ms ease;
    -o-transition: all 700ms ease;
    transition: all 700ms ease;
    -webkit-transition-delay: 1800ms;
    -moz-transition-delay: 1800ms;
    -ms-transition-delay: 1800ms;
    -o-transition-delay: 1800ms;
    transition-delay: 1800ms;
}

.banner-carousel-three .owl-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 100%;
}
.banner-section.banner-three .owl-theme .owl-prev span,
.banner-section.banner-three .owl-theme .owl-next span {
    display: block;
}

.banner-section.banner-three .owl-theme .owl-next span.right-arrow {
    position: relative;
    transform: rotate(180deg);
}
.banner-section.banner-three .owl-theme .owl-nav .owl-prev {
    position: absolute;
    left: 30px;
    top: 0;
    background: #fff;
    opacity: 0.3;
    height: 60px;
    width: 60px;
    border-radius: 50%;
    border: none;
    text-align: center;
    color: #404a3d;
    font-size: 22px;
    line-height: 60px;
    font-weight: 700;
    margin: 0;
    padding: 0;
    margin-top: -30px;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}
.banner-section.banner-three .owl-theme .owl-nav .owl-prev:hover {
    background: #ffffff;
}
.banner-section.banner-three .owl-theme .owl-nav .owl-prev:focus {
    outline: none;
}
.banner-section.banner-three .owl-theme .owl-nav .owl-next {
    position: absolute;
    right: 30px;
    top: 0;
    background: #ffff;
    opacity: 0.3;
    height: 60px;
    width: 60px;
    border-radius: 50%;
    border: none;
    text-align: center;
    color: #404a3d;
    font-size: 22px;
    line-height: 60px;
    font-weight: 700;
    margin: 0;
    padding: 0;
    margin-top: -30px;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}
.banner-section.banner-three .owl-theme .owl-nav .owl-next:hover {
    background: #ffffff;
}
.banner-section.banner-three .owl-theme .owl-nav .owl-next:focus {
    outline: none;
}

.banner-section.banner-three .owl-theme .owl-nav .owl-prev:hover,
.banner-section.banner-three .owl-theme .owl-nav .owl-next:hover {
    opacity: 1;
}

/*--------------------------------------------------------------
# About One
--------------------------------------------------------------*/
.about_one {
    position: relative;
    display: block;
    padding: 120px 0 120px;
}
.about1_img {
    position: relative;
}
.about1_shape_1 {
    position: absolute;
    left: -215px;
    top: 70px;
    height: 430px;
    width: 430px;
    background: #f5f0e9;
    border-radius: 50%;
    z-index: -1;
}
.about1_img > img {
    border-radius: 5px;
}
.about1_icon-box {
    position: absolute;
    top: 50%;
    left: -60px;
    transform: translateY(-57.5px);
}
.about1_icon-box .circle {
    height: 115px;
    width: 115px;
    background: var(--thm-base);
    border-radius: 50%;
    position: absolute;
    text-align: center;
}
.about1_icon-box .circle:before {
    content: "";
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    border-radius: 50%;
    border: 1px dashed #fff;
}
.about1_icon-box .circle span {
    color: var(--thm-black);
    font-size: 61px;
    line-height: 115px;
}
.about-img-2 {
    position: absolute;
}
.about_img_2 {
    position: absolute;
    left: 170px;
    bottom: -112px;
}
.about_img_2 img {
    width: 100%;
    border-radius: 5px;
}
.about_one .block-title {
    margin-bottom: 42px;
}

.about_content .text p {
    margin: 0;
}
.about1_icon_wrap {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    margin-bottom: 39px;
    margin-top: 40px;
}

.about1_icon_single {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
}
.about1_icon_single + .about1_icon_single {
    margin-left: 18px;
}
.about1_icon_single .about1_icon {
    height: 60px;
    width: 60px;
    margin-right: 16px;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    justify-content: center;
}
.about1_icon_single .about1_icon span {
    color: #5f8f55;
    font-size: 61px;
}
.about1_icon_single p {
    color: var(--thm-black);
    font-size: 20px;
    font-weight: 600;
    margin: 0;
}

.bottom_text p {
    margin: 0;
}
.about1__button-block {
    margin-top: 49px;
}

/*--------------------------------------------------------------
# Service One
--------------------------------------------------------------*/
.service_one {
    position: relative;
    display: block;
    padding: 120px 0 120px;
    background: #f5f0e9;
}
.service_1_single {
    position: relative;
    display: block;
    overflow: hidden;
}
.service_1_single .content {
    padding: 44px 50px 62px;
    background: #ffffff;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}
.service_1_single .content h3 {
    color: var(--thm-black);
    font-size: 30px;
    font-weight: 700;
    padding-bottom: 36px;
    margin: 0;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}
.service_1_single .content p {
    margin: 0;
}
.service_1_img {
    position: relative;
    display: block;
}
.service_1_img img {
    width: 100%;
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: opacity 500ms ease, -webkit-transform 500ms ease;
    transition: opacity 500ms ease, -webkit-transform 500ms ease;
    transition: transform 500ms ease, opacity 500ms ease;
    transition: transform 500ms ease, opacity 500ms ease,
        -webkit-transform 500ms ease;
}
.service_1_img .hover_box {
    position: absolute;
    top: -25px;
    left: -50px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}
.service_1_img .hover_box span {
    color: var(--thm-black);
    font-size: 15px;
    line-height: 50px;
    transform: rotate(180deg);
    position: absolute;
    display: inline-block;
    height: 50px;
    width: 50px;
    background: var(--thm-base);
    border-radius: 50%;
    text-align: center;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}
.service_1_img .hover_box span:hover {
    color: var(--thm-base);
    background: var(--thm-primary);
}

.service_1_single:hover .content h3 {
    color: var(--thm-primary);
}
.service_1_single:hover .service_1_img img {
    opacity: 0.7;
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
}
.service_1_single:hover .hover_box {
    left: 50px;
}

/*--------------------------------------------------------------
# Brand One
--------------------------------------------------------------*/
.brand-one {
    position: relative;
    display: block;
    padding: 125px 0 125px;
    border-bottom: 1px solid #f5f0e9;
}

.single_brand_item img {
    opacity: 0.3;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}
.single_brand_item img:hover {
    opacity: 0.6;
}

/*--------------------------------------------------------------
# Featured One
--------------------------------------------------------------*/
.featured-one {
    position: relative;
    display: block;
    padding: 120px 0 120px;
}
.single_featured_box {
    background: var(--thm-primary);
    display: block;
    padding: 55px 67px 49px;
    border-radius: 5px;
}
.single_featured_box img {
    position: relative;
    top: -5px;
}
.single_featured_box span {
    color: #ffffff;
    font-size: 30px;
    font-weight: 700;
    padding: 0 18px;
    font-family: var(--heading-font);
}

/*--------------------------------------------------------------
# Video
--------------------------------------------------------------*/

.video-one {
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    position: relative;
    padding-top: 135px;
    padding-bottom: 115px;
    background-attachment: fixed;
}

.video-one::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(57, 67, 54, 0.5);
}

.video-one .container {
    position: relative;
}

.video-one p {
    color: var(--thm-base);
    font-size: 18px;
    margin: 0px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.video-one__btn {
    position: relative;
    width: 94px;
    height: 94px;
    background-color: var(--thm-base);
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    text-align: center;
    font-size: 24px;
    color: var(--thm-black);
    margin-left: auto;
    margin-right: auto;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    margin-bottom: 63px;
    border-radius: 5px;
}

.video-one__btn:before {
    content: "";
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    border-radius: 5px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.video-one__btn:hover {
    background-color: var(--thm-primary);
    color: var(--thm-base);
}

.video-one h3 {
    color: #fff;
    margin: 0;
    font-size: 100px;
    margin-top: 14px;
    font-weight: 700;
    line-height: 1;
}

/*--------------------------------------------------------------
# Testimonials One
--------------------------------------------------------------*/
.testimonials-one {
    position: relative;
    display: block;
    background: #f5f0e9;
    padding: 120px 0 0px;
}
.testimonials-one:before {
    position: absolute;
    content: "";
    height: 210px;
    width: 100%;
    left: 0;
    bottom: 0;
    background: #ffffff;
}
.testimonials-one .block-title {
    margin-bottom: 42px;
}
.testimonials_one_left {
    max-width: 500px;
    float: left;
}
.testimonials_one_text {
    padding-bottom: 47px;
}
.testimonials_one_text p {
    margin: 0;
}
.project_counted {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    border-bottom: 1px solid #f5f0e9;
    margin-top: 106px;
    padding-bottom: 50px;
}
.project_counted .icon_box {
    height: 115px;
    width: 115px;
    background: var(--thm-black);
    border-radius: 50%;
    text-align: center;
    margin-right: 36px;
}
.project_counted .icon_box span {
    font-size: 60px;
    color: var(--thm-base);
    line-height: 115px;
}
.project-content h3 {
    color: var(--thm-black);
    font-size: 70px;
    font-weight: 700;
    margin: 0;
}
.project-content p {
    color: var(--thm-primary);
    font-size: 16px;
    margin: 0;
    line-height: 26px;
}
.testimonials_one_content {
    position: relative;
    display: block;
    background: var(--thm-primary);
    border-radius: 5px;
    padding: 67px 80px 80px;
}
.testimonials_one_content:before {
    position: absolute;
    content: "";
    height: 20px;
    right: 20px;
    left: 20px;
    bottom: -20px;
    background: #f8f4ef;
    border-radius: 3px;
}
.testimonials_one_content:after {
    position: absolute;
    content: "";
    height: 20px;
    right: 40px;
    left: 40px;
    bottom: -40px;
    background: #fbf9f6;
    border-radius: 3px;
}
.testimonials_one_single_item {
    position: relative;
    display: block;
}

.testimonials_one_single_item .text {
    position: relative;
    display: block;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 49px;
    margin-bottom: 50px;
}
.testimonials_one_single_item .text:before {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    background-image: url(../images/icon/quote_2.png);
    width: 46px;
    height: 50px;
    opacity: 0.1;
    z-index: -1;
}
.testimonials_one_single_item .text p {
    color: #fff;
    font-size: 30px;
    margin: 0;
    line-height: 45px;
    font-weight: 300;
}
.testimonials_one_single_item .client_thumbnail {
    display: flex;
    -webkit-box-align: center;
    flex-direction: row;
}
.testimonials_one_single_item .client_thumbnail .client_img {
    height: 90px;
    width: 90px;
}
.testimonials_one_single_item .client_thumbnail .client_img img {
    width: 100%;
}
.testimonials_one_single_item .client_thumbnail .client_title {
    padding-left: 20px;
    padding-top: 20px;
}
.testimonials_one_single_item .client_thumbnail .client_title h4 {
    color: #ffffff;
    font-size: 26px;
    font-weight: 700;
    margin: 0;
}
.testimonials_one_single_item .client_thumbnail .client_title p {
    color: #ffffff;
    font-size: 12px;
    line-height: 20px;
    font-weight: 600;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.testimonials_one_carousel.owl-carousel .owl-stage-outer {
    position: relative;
    display: block;
    padding-top: 0px;
    padding-bottom: 0px;
}
.testimonials_one_carousel.owl-carousel .owl-dots {
    position: absolute;
    bottom: 30px;
    right: 0px;
}
.testimonials_one_carousel.owl-carousel .owl-dots .owl-dot {
    position: relative;
    display: inline-block;
    width: 15px;
    height: 15px;
    background: #7ca374;
    border: 1px solid #ffffff;
    margin: 0px 5px;
    padding: 0px;
    border-radius: 50%;
    transition: all 100ms linear;
    transition-delay: 0.1s;
}
.testimonials_one_carousel.owl-carousel .owl-dots .owl-dot span {
    display: none;
}
.testimonials_one_carousel.owl-carousel .owl-dot.active {
    border-color: #ffffff;
    background: #ffffff;
}

/*--------------------------------------------------------------
# Recent Project
--------------------------------------------------------------*/
.recent-project {
    position: relative;
    display: block;
    padding: 120px 0 0px;
    z-index: 10;
}
.recent-project .block-title {
    margin-bottom: 54px;
}
.recent_project_single {
    position: relative;
    display: block;
    overflow: hidden;
}
.project_img_box {
    position: relative;
    display: block;
}
.project_img_box img {
    width: 100%;
    border-radius: 5px;
}
.project_content {
    position: absolute;
    bottom: 40px;
    left: 49px;
}
.project_content h3 {
    color: #ffffff;
    font-size: 50px;
    font-weight: 700;
    margin: 0;
}
.recent_project_single:hover .hover_box {
    bottom: 50px;
}
.recent_project_single .hover_box {
    position: absolute;
    bottom: -50px;
    right: 40px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}
.recent_project_single .hover_box span {
    color: var(--thm-black);
    font-size: 15px;
    line-height: 50px;
    transform: rotate(180deg);
    display: inline-block;
    height: 50px;
    width: 50px;
    background: var(--thm-base);
    border-radius: 50%;
    text-align: center;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}
.recent_project_single .hover_box span:hover {
    color: var(--thm-base);
    background: var(--thm-primary);
}

/*--------------------------------------------------------------
# Benefits
--------------------------------------------------------------*/
.benefits {
    position: relative;
    display: block;
    padding: 240px 0 120px;
    background: var(--thm-black);
    margin-top: -120px;
}
.benefits_bg {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 441px;
    opacity: 0.03;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom center;
}
.benefits .block-title {
    margin-bottom: 54px;
}
.benefits .block-title p {
    color: #c5c9c4;
}
.benefits .block-title h3 {
    letter-spacing: -0.03em;
    color: #ffffff;
}
.benefits_text {
    margin-left: 58px;
}
.benefits_text p {
    margin: 0;
    color: #c5c9c4;
}

.benefits .block-title {
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .benefits .block-title {
        margin-bottom: 40px;
    }
}

.benefits_bottom_part {
    margin-top: 60px;
}

.benefits_single {
    position: relative;
    display: block;
    background: var(--thm-black);
    padding: 35px 40px 34px;
    border: 1px solid #5c655a;
    border-radius: 5px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.benefits_single .icon-box span {
    color: var(--thm-base);
    font-size: 60px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}
.benefits_single h3 {
    color: #ffffff;
    font-size: 26px;
    font-weight: 700;
    margin: 0;
    margin-top: 9px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}
.benefits_single:hover {
    background: var(--thm-base);
    border-color: var(--thm-base);
}
.benefits_single:hover .icon-box span {
    color: var(--thm-black);
}
.benefits_single:hover h3 {
    color: var(--thm-black);
}
.benefits.why_choose_us_benefits {
    padding-top: 120px;
    margin-top: 0;
}
/*--------------------------------------------------------------
# Product One
--------------------------------------------------------------*/
.product-one {
    position: relative;
    display: block;
    padding: 120px 0 0px;
    background: #f5f0e9;
}
.product_img {
    position: relative;
    display: block;
}
.product_img img {
    width: 100%;
}
.experience_box {
    position: absolute;
    left: 30px;
    bottom: -60px;
    height: 172px;
    width: 270px;
    background: var(--thm-base);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
}
.experience_box h2 {
    color: var(--thm-black);
    font-size: 60px;
    text-transform: uppercase;
    margin: 0;
}
.experience_box p {
    letter-spacing: 0.2em;
    color: var(--thm-black);
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 600;
    margin: 0;
    line-height: 26px;
}
.growing_product {
    background: #ffffff;
    position: relative;
    display: block;
    padding: 120px 120px 0px;
    margin-top: 120px;
    margin-left: -149px;
    border-radius: 5px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}
.growing_product:before {
    position: absolute;
    bottom: -120px;
    left: 0;
    right: 0;
    height: 120px;
    content: "";
    background: #ffffff;
    z-index: 1;
}

.growing_product:after {
    position: absolute;
    bottom: -120px;
    left: 0;
    right: 0;
    height: 120px;
    content: "";
    background: #ffffff;
    z-index: -1;
    -webkit-box-shadow: 0px 5px 11px 2px rgba(0, 0, 0, 0.04);
    box-shadow: 0px 5px 11px 2px rgba(0, 0, 0, 0.04);
}

.growing_product .block-title {
    margin-bottom: 33px;
}
.growing_product_text {
    margin-bottom: 10px;
}
.growing_product_text p {
    margin: 0;
}
.progress-levels {
    position: relative;
    display: block;
}
.progress-levels .progress-box {
    position: relative;
    display: block;
    margin-bottom: 8px;
}
.progress-levels .progress-box.last-child {
    margin-bottom: 0;
}

.progress-levels .progress-box .inner {
    position: relative;
    display: block;
}

.progress-levels .progress-box .bar {
    position: relative;
    display: block;
}
.progress-levels .progress-box .bar .bar-innner {
    position: relative;
    width: 100%;
    height: 13px;
    background: #f5f0e9;
    border-radius: 10px;
}
.progress-levels .progress-box .bar .bar-fill {
    position: absolute;
    top: 0%;
    left: 0px;
    bottom: 0%;
    width: 0px;
    height: 13px;
    border-radius: 10px;
    background: var(--thm-primary);
    transition: all 2000ms ease 300ms;
}
.progress-levels .progress-box .bar .bar-innner .skill-percent {
    position: absolute;
    top: -43px;
    right: 0;
    width: 40px;
    height: 25px;
    display: block;
    text-align: center;
    padding: 0;
    z-index: 1;
}
.progress-levels .progress-box .inner .count-text {
    position: relative;
    color: #878986;
    font-size: 18px;
    line-height: 20px;
    font-weight: 600;
    display: inline-block;
    float: none;
}
.progress-levels .progress-box .inner .percent {
    position: relative;
    color: #878986;
    font-size: 18px;
    line-height: 20px;
    font-weight: 600;
    display: inline-block;
    float: none;
    margin-left: -2px;
}

.progress-levels .progress-box .inner .text {
    position: relative;
    color: var(--thm-black);
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: capitalize;
    padding-bottom: 15px;
}

/*--------------------------------------------------------------
# Product One
--------------------------------------------------------------*/
.blog-one {
    position: relative;
    display: block;
    padding: 80px 0 50px;
   
}
.blog_one_single {
    position: relative;
    display: block;
}
.blog_one_image {
    position: relative;
    display: block;
}
.blog_one_image .blog_image {
    position: relative;
    overflow: hidden;
}
.blog_one_image .blog_image img {
    width: 100%;
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: opacity 500ms ease, -webkit-transform 500ms ease;
    transition: opacity 500ms ease, -webkit-transform 500ms ease;
    transition: transform 500ms ease, opacity 500ms ease;
    transition: transform 500ms ease, opacity 500ms ease,
        -webkit-transform 500ms ease;
}
.blog_one_single:hover .blog_image img {
    opacity: 0.7;
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
}
.blog_one_date_box {
    position: absolute;
    top: 0;
    left: 0;
    height: 42px;
    width: 113px;
    background: var(--thm-base);
    text-align: center;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    right: 0;
    margin: 0 auto;
}
.blog_one_date_box p {
    margin: 0;
    color: var(--thm-black);
    font-size: 14px;
    font-weight: 600;
    line-height: 42px;
}
.blog-one__content {
    position: relative;
    text-align: center;
    background: #ffffff;
    padding: 30px 50px 34px;
    margin-left: 10px;
    margin-right: 10px;
    margin-top: -10px;
    border-radius: 5px;
    transition: all 500ms ease;
}

.blog_one_single:hover .blog-one__content {
    -webkit-box-shadow: 0px 4px 12px 2px rgba(0, 0, 0, 0.06);
    box-shadow: 0px 4px 12px 2px rgba(0, 0, 0, 0.06);
}

.blog-one__meta {
    margin: 0;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    justify-content: center;
}

.blog-one__meta li a {
    letter-spacing: 0.2em;
    color: var(--thm-primary);
    font-size: 12px;
    text-transform: uppercase;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}
.blog-one__meta li a:hover {
    color: var(--thm-base);
}
.blog-one__meta li i {
    color: #66945d;
    font-size: 15px;
    margin-right: 10px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}
.blog-one__meta li a:hover i {
    color: var(--thm-base);
}
.blog-one__meta li + li {
    margin-left: 25px;
}
.blog-one__content h3 {
    text-transform: unset;
    color: var(--thm-black);
    font-size: 24px;
    font-weight: 600;
    font-family: var(--thm-font);
    margin: 0;
    line-height: 38px;
}
.blog-one__content a {
    font-size: 24px;
    color: var(--thm-black);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}
.blog-one__content a:hover {
    color: #66945d;
}
.blog_one_text {
    margin-top: 8px;
    margin-bottom: 29px;
}
.blog_one_text p {
    margin: 0;
}

.read_more_btn a {
    color: var(--thm-black);
    font-size: 16px;
}
.read_more_btn i {
    height: 18px;
    width: 18px;
    background: var(--thm-base);
    border-radius: 50%;
    display: inline-block;
    line-height: 18px;
    font-size: 12px;
    margin-right: 10px;
}

/*--------------------------------------------------------------
# Cta One
--------------------------------------------------------------*/
.cta-one {
    position: relative;
    display: block;
    padding: 108px 0 120px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: 1;
}

.cta-one:before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(91, 140, 81, 0.9);
    z-index: -1;
}
.cta_one_content {
    text-align: center;
}
.cta_one_content h1 {
    color: #ffffff;
    font-size: 70px;
    line-height: 78px;
    font-weight: 700;
    margin: 0;
    margin-bottom: 22px;
}
.cta_one_content p {
    color: #ffffff;
    font-size: 20px;
    margin: 0;
}
.cta_one__button-block {
    margin-top: 55px;
}

.cta_one__button-block .cta_one__btn:hover {
    color: #ffffff;
    background: var(--thm-black);
}
/*--------------------------------------------------------------
# Site Footer
--------------------------------------------------------------*/
.site-footer {
    position: relative;
    display: block;
    background: var(--thm-black);
    /*padding: 75px 0 50px;*/
}
.site-footer_farm_image {
    position: absolute;
    bottom: -22%;
    right: -1%;
    opacity: 0.07;
}

.footer-widget__column.margin_left_30 {
    margin-left: 30px;
}

.footer-widget__about {
    padding-right: 70px;
}
.footer-widget__title {
    position: relative;
    display: block;
    margin-bottom: 36px;
}
.footer-widget__title h3 {
    color: #ffffff;
    font-size: 18px;
    margin: 10px;
    font-weight: 700;
    text-transform: uppercase;
}
.footer-widget__title:before {
    position: absolute;
    bottom: -8px;
    left: 0;
    height: 4px;
    width: 20px;
    background: var(--thm-base);
    content: "";
    border-radius: 5px;
}

.footer-widget_about_text p {
    color: #c5c9c4;
    font-size: 16px;
    margin: 0;
}
.footer_input-box {
    position: relative;
    display: block;
    margin-top: 29px;
}
.footer_input-box input {
    height: 70px;
    width: 100%;
    background: #394336;
    border: none;
    padding: 0 30px;
    border-radius: 5px;
}

.footer_input-box input[type="Email"] {
    font-size: 16px;
    color: #c5c9c4;
    height: 70px;
    width: 100%;
    background: #394336;
    border: none;
    padding: 0 30px;
    border-radius: 5px;
}
.footer_input-box .button {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    border-radius: 5px;
    background: #394336;
}
.footer_input-box .button i {
    color: var(--thm-base);
}

.footer_input-box input[type="email"]:focus {
    outline: none;
}
.footer_input-box input[type="email"]::-webkit-input-placeholder {
    color: #c5c9c4;
}
.footer_input-box input[type="email"]:-moz-placeholder {
    color: #c5c9c4;
}
.footer_input-box input[type="email"]::-moz-placeholder {
    color: #c5c9c4;
}
.footer_input-box input[type="email"]:-ms-input-placeholder {
    color: #c5c9c4;
}

.footer-widget__links-list li a {
    position: relative;
    color: #c5c9c4;
    font-size: 16px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}
.footer-widget__links-list li a:hover {
    padding-left: 15px;
    color: var(--thm-primary);
}
.footer-widget__links-list li a::before {
    content: "\f101";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    font-size: 12px;
    color: var(--thm-base);
    opacity: 0;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}
.footer-widget__links-list li a:hover::before {
    opacity: 1;
}
.footer-widget__news {
    position: relative;
    display: block;
    margin: 0;
    padding-top: 2px;
    margin-left: 7px;
}
.footer-widget__news li {
    position: relative;
    display: block;
    padding-left: 7px;
    padding-bottom: 28px;
}
.footer-widget__news_image {
    position: absolute;
    left: 0;
    top: 10px;
    display: block;
    overflow: hidden;
    height: 50px;
    width: 50px;
    border-radius: 5px;
}
.footer-widget__news_image img {
    width: 100%;
    opacity: 1;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}
.footer-widget__news_image img:hover {
    opacity: 0.5;
}

.footer-widget__news_text p {
    margin: 0;
    line-height: 29px;
}
.footer-widget__news_text a {
    color: #c5c9c4;
    font-size: 16px;
    transition: 500ms;
}
.footer-widget__news_text a:hover {
    color: #fff;
}

.footer-widget__news_date_box p {
    font-size: 14px;
    color: var(--thm-base);
    font-weight: 600;
    margin: 0;
}
.footer-widget__contact {
    padding-left: 50px;
}
.footer-widget_contact p {
    color: #c5c9c4;
    font-size: 16px;
    margin: 0;
    margin-bottom: 14px;
}
.footer-widget_contact a {
    color: var(--thm-base);
    font-size: 16px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}
.footer-widget_contact a:hover {
    color: var(--thm-primary);
}
.site-footer__social {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    margin-top: 19px;
}

.site-footer__social a {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    text-align: center;
    width: 45px;
    height: 45px;
    background-color: #fff;
    color: var(--thm-black);
    font-size: 16px;
    border-radius: 50%;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.site-footer__social a + a {
    margin-left: 10px;
}

.site-footer__social a:hover {
    background-color: var(--thm-primary);
    color: #ffffff;
}

.site-footer_bottom {
    position: relative;
    display: block;
    padding: 28px 0 29px;
    background: #394336;
}
.site-footer_bottom .container {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    justify-content: space-between;
}

.site-footer_bottom_copyright p {
    color: #c5c9c4;
    font-size: 16px;
    margin: 0;
}
.site-footer_bottom_copyright a {
    color: #c5c9c4;
    font-size: 16px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}
.site-footer_bottom_copyright a:hover {
    color: var(--thm-base);
}

.site-footer_bottom_menu ul {
    margin: 0;
}
.site-footer_bottom_menu ul li {
    display: inline-block;
    margin-right: 20px;
}
.site-footer_bottom_menu ul li:last-child {
    margin-right: 0;
}
.site-footer_bottom_menu ul li a {
    color: #c5c9c4;
    font-size: 16px;
    display: inline-block;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}
.site-footer_bottom_menu ul li a:hover {
    color: var(--thm-base);
}

.site-footer.site-footer_two {
    background: none;
}
.site-footer_farm_image.site-footer_two_img {
    opacity: 0;
}

.site-footer.site-footer_two .footer-widget__title h3 {
    color: var(--thm-black);
}
.site-footer.site-footer_two .footer-widget_about_text p {
    color: #878986;
}
.site-footer.site-footer_two .footer_input-box input[type="Email"] {
    background: #f5f0e9;
}
.site-footer.site-footer_two .footer_input-box .button {
    background: #f5f0e9;
}
.site-footer.site-footer_two .footer_input-box .button i {
    color: var(--thm-primary);
}
.site-footer.site-footer_two .footer_input-box input[type="email"]:focus {
    outline: none;
}
.site-footer.site-footer_two
    .footer_input-box
    input[type="email"]::-webkit-input-placeholder {
    color: #878986;
}
.site-footer.site-footer_two
    .footer_input-box
    input[type="email"]:-moz-placeholder {
    color: #878986;
}
.site-footer.site-footer_two
    .footer_input-box
    input[type="email"]::-moz-placeholder {
    color: #878986;
}
.site-footer.site-footer_two
    .footer_input-box
    input[type="email"]:-ms-input-placeholder {
    color: #878986;
}

.footer-widget__links-list.type2 li a {
    color: #878986;
}
.site-footer.site-footer_two .footer-widget__news_text a {
    color: #878986;
}
.site-footer.site-footer_two .footer-widget__news_date_box p {
    color: var(--thm-primary);
}
.site-footer.site-footer_two .footer-widget_contact p {
    color: #878986;
}
.site-footer.site-footer_two .footer-widget_contact a {
    color: var(--thm-primary);
}
.site-footer.site-footer_two .footer-widget_contact a:hover {
    color: var(--thm-base);
}
.site-footer.site-footer_two .site-footer__social a {
    background: var(--thm-black);
    color: #ffffff;
}
.site-footer.site-footer_two .site-footer__social a:hover {
    color: #ffffff;
    background: var(--thm-primary);
}
.site-footer_bottom.site-footer-bottom-two {
    background: #f5f0e9;
}
.site-footer_bottom.site-footer-bottom-two .site-footer_bottom_copyright p {
    color: #878986;
}
.site-footer_bottom.site-footer-bottom-two .site-footer_bottom_copyright a {
    color: #878986;
}
.site-footer_bottom.site-footer-bottom-two .site-footer_bottom_menu ul li a {
    color: #878986;
}
.site-footer_bottom.site-footer-bottom-two
    .site-footer_bottom_menu
    ul
    li
    a:hover {
    color: var(--thm-primary);
}
/*--------------------------------------------------------------
# Need All
--------------------------------------------------------------*/
.need_all {
    position: relative;
    display: block;
    padding: 108px 0 120px;
    background: var(--thm-base);
}

.left_content h2 {
    font-size: 50px;
    color: var(--thm-black);
    margin: 0;
    font-weight: 700;
    line-height: 52px;
    margin-bottom: 53px;
}

.need_image img {
    width: 100%;
    border-radius: 5px;
    max-height: 261px;
}

.need_text {
    margin-bottom: 55px;
}
.need_text p {
    color: var(--thm-black);
    font-size: 16px;
    margin: 0;
}
.need_icon_single {
    position: relative;
    display: block;
    background: var(--thm-black);
    padding: 43.5px 22px 34px 40px;
    border-radius: 5px;
}
.need_icon_single .need_icon {
    margin-bottom: 16px;
}
.need_icon_single .need_icon span {
    font-size: 60px;
    color: var(--thm-base);
}
.need_icon_single h3 {
    font-size: 20px;
    text-transform: unset;
    color: #ffffff;
    margin: 0;
    margin-bottom: 9px;
    font-weight: 600;
    font-family: var(--thm-font);
}
.need_icon_single p {
    color: #c5c9c4;
    margin: 0;
}
/*--------------------------------------------------------------
# Service Two
--------------------------------------------------------------*/
.service_two {
    position: relative;
    display: block;
    padding: 120px 0 0;
}
.service_two hr {
    border-color: #f5f0e9;
    border-width: 1px;
    margin: 0;
    margin-top: 113px;
}
.service_two .block-title {
    margin-bottom: 55px;
}
.service_2_top {
    margin: 0;
    text-align: center;
    overflow: hidden;
}
.service_2_top .service_2_single {
    width: 288px;
    margin: 0 auto;
    float: left;
    border-right: 1px solid #f5f0e9;
}
.service_2_top .service_2_single:last-child {
    border-right: none;
}

.service_2_top h3 {
    color: var(--thm-black);
    font-size: 30px;
    margin: 0;
    margin-top: 21px;
    font-weight: 700;
}
.service_2_top h3 a {
    color: inherit;
    transition: all 500ms ease;
}
.service_2_top h3 a:hover {
    color: var(--thm-primary);
}
.service_2_image {
    display: flex;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
    background-color: var(--thm-black);
    border-radius: 50%;
    width: 214px;
}
.service_2_image > img {
    transition: 500ms;
    opacity: 1;
    width: 100%;
}
.service_2_image:hover > img {
    opacity: 0.5;
}
/*--------------------------------------------------------------
# Cta Two
--------------------------------------------------------------*/
.cta_two {
    position: relative;
    display: block;
    padding: 120px 0 115px;
}
.cta_two_icon_wrap {
    display: flex;
    align-items: center;
    -webkit-box-align: center;
}
.cta_two_icon_box {
    padding-right: 28px;
}
.cta_two_icon_box span {
    font-size: 60px;
    color: var(--thm-primary);
}

.cta_two_content h2 {
    color: var(--thm-black);
    font-size: 40px;
    font-weight: 700;
    margin: 0;
    line-height: 43px;
}
.cta_two_text {
    margin-left: 43px;
}
.cta_two_text p {
    margin: 0;
    font-size: 18px;
    line-height: 34px;
}
.cta_two_btn {
    float: right;
}
/*--------------------------------------------------------------
# Producto Two
--------------------------------------------------------------*/
.product-two {
    position: relative;
    display: block;
    padding: 120px 0 0px;
    background: var(--thm-black);
    z-index: 1;
}
.product-two:before {
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    height: 120px;
    background: #ffffff;
    content: "";
    z-index: -1;
}

.product_tow_bg {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 441px;
    opacity: 0.03;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom center;
}
.product-two .block-title {
    margin-bottom: 55px;
}
.product-two .block-title p {
    color: #c5c9c4;
}
.product-two .block-title h3 {
    color: #ffffff;
}
.product_two_thum {
    position: relative;
    display: block;
    overflow: hidden;
}
.product_two_thum img {
    width: 100%;
    border-radius: 5px;
}
.product_two_thum_hover {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--thm-base);
    text-align: center;
    padding: 30px 0;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    opacity: 0;
    transition: 500ms;
    transform: translateY(50%);
}
.product_two_thum:hover .product_two_thum_hover {
    opacity: 1;
    transform: translateY(0);
}
.product_two_thum_hover h2 {
    color: var(--thm-black);
    font-size: 50px;
    margin: 0;
    font-weight: 700;
}
/*--------------------------------------------------------------
# Testimonial Two
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# brand Two
--------------------------------------------------------------*/
.brand-one.brand-two {
    background: var(--thm-primary);
    border-bottom: none;
    padding-bottom: 236px;
}
/*--------------------------------------------------------------
# Get Quote
--------------------------------------------------------------*/
.get_quote {
    position: relative;
    margin-bottom: 20px;
    padding-bottom: 100px;
}
.get_quote .container {
    margin-top: -120px;
}
.get_quote .inner-container {
    border-radius: 5px;
    box-shadow: 0px 20px 20px 0px rgba(0, 0, 0, 0.05);
}

.get_quote_one_form_inner {
    background: #ffffff;
    position: relative;
    display: block;
    padding: 93.5px 100px 100px;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}
.get_quote_one_form_inner h3 {
    color: var(--thm-black);
    font-size: 50px;
    font-weight: 700;
    margin: 0;
    margin-bottom: 35px;
}

.get_quote_one_form_inner .input_box input[type="text"] {
    height: 80px;
    width: 100%;
    border: none;
    background: #f5f0e9;
    padding: 0 40px;
    margin-bottom: 20px;
    border-radius: 5px;
    outline: none;
}
.get_quote_one_form_inner .input_box textarea {
    height: 170px;
    width: 100%;
    background: #f5f0e9;
    padding: 30px 40px 30px;
    border: none;
    border-radius: 5px;
    outline: none;
}
.get_quote__btn {
    background: var(--thm-primary);
    margin-top: 10px;
    color: #ffffff;
}
.get_quote__btn:hover {
    background: var(--thm-base);
    color: var(--thm-primary);
}

.get_quote_right {
    display: flex;
    width: 100%;
    height: 100%;
    text-align: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    justify-content: center;
    align-items: center;
}
.get_quote_right h3 {
    color: var(--thm-black);
    font-size: 44px;
    font-weight: 700;
    margin: 0;
}
/*--------------------------------------------------------------
# Google_map
--------------------------------------------------------------*/
.google_map {
    position: relative;
    display: block;
    background: #f8f8f8;
}
.google_map .map-outer {
    position: relative;
    display: block;
    max-width: 100%;
    width: 100%;
    padding: 0;
    margin: 0 auto;
}
.google_map .map-outer .map-canvas {
    position: relative;
    width: 100%;
    height: 700px;
}
/*--------------------------------------------------------------
# Gallery One
--------------------------------------------------------------*/
.gallery_one {
    position: relative;
    display: block;
    padding: 120px 0 120px;
    border-bottom: 1px solid #f5f0e9;
}
.gallery_one .container-fullwidth {
    position: relative;
    display: block;
    padding: 0 120px;
}

@media (max-width: 1440px) {
    .gallery_one .container-fullwidth {
        padding-left: 60px;
        padding-right: 60px;
    }
}

@media (max-width: 1199px) {
    .gallery_one .container-fullwidth {
        padding-left: 30px;
        padding-right: 30px;
    }
}

@media (max-width: 575px) {
    .gallery_one .container-fullwidth {
        padding-left: 15px;
        padding-right: 15px;
    }
}

.gallery_one_single {
    position: relative;
    display: block;
    max-width: 315px;
}
.gallery_one_image {
    position: relative;
    overflow: hidden;
    border-radius: 5px;
}
.gallery_one_image img {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: opacity 500ms ease, -webkit-transform 500ms ease;
    transition: opacity 500ms ease, -webkit-transform 500ms ease;
    transition: transform 500ms ease, opacity 500ms ease;
    transition: transform 500ms ease, opacity 500ms ease,
        -webkit-transform 500ms ease;
}
.gallery_one_single:hover .gallery_one_image img {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
}
.gallery_one_hover_box {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    bottom: 0;
    z-index: 1;
}
.gallery_one_hover_box:before {
    position: absolute;
    top: 340px;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(91, 140, 81, 0.9);
    content: "";
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    z-index: -1;
}
.gallery_one_single:hover .gallery_one_hover_box:before {
    top: 0;
}
.gallery_one_icon {
    position: absolute;
    top: -420px;
    left: 0;
    right: 0;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    bottom: 0;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}
.gallery_one_single:hover .gallery_one_icon {
    top: 0px;
}
.gallery_one_icon span {
    height: 80px;
    width: 80px;
    background: var(--thm-base);
    display: inline-block;
    line-height: 80px;
    text-align: center;
    border-radius: 50%;
    font-size: 22px;
    color: #656a44;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}
.gallery_one_icon span:hover {
    background: #ffffff;
    color: var(--thm-primary);
}

/*--------------------------------------------------------------
# Welcome One
--------------------------------------------------------------*/
.welcome_one {
    position: relative;
    display: block;
    padding: 60px 0 90px;
    z-index: 1;
}
.welcome_one:before {
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    height: 240px;
    background: #f5f0e9;
    content: "";
    z-index: -1;
}
.growing_box {
    background: var(--thm-primary);
    display: flex;
    justify-content: center;
    align-items: center;
   padding: 10px 0px 0px;
    border-radius: 5px;
    margin-top: -5px;
    display:none;
}
.growing_icon_box {
    margin-right: 19px;
    margin-left: 19px;
}
.growing_icon_box span {
    font-size: 60px;
    color: var(--thm-base);
}

.growing_text p {
    color: #ffffff;
    font-size: 20px;
    margin: 0;
    font-weight: 600;
}
.welcome_text {
    border-bottom: 1px solid #f5f0e9;
    padding-bottom: 49px;
    margin-bottom: -36px;
}
.welcome_text p {
    margin: 0;
    font-size: 18px;
    line-height: 34px;
    color: #878986;
    position: relative;
    top: -10px;
}
.welcome_video_box {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
    border-radius: 5px;
    padding: 93px 0;
    overflow: hidden;
    margin-top: 20px;
    width: 50%;
}
.welcome_video_box:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(64, 74, 61, 0.5);
}
.welcome_video_btn {
    position: relative;
    width: 94px;
    height: 94px;
    background-color: var(--thm-base);
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    text-align: center;
    font-size: 24px;
    color: var(--thm-black);
    margin-left: auto;
    margin-right: auto;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    border-radius: 5px;
}
.welcome_video_btn:before {
    content: "";
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    border-radius: 5px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.welcome_video_btn:hover {
    background-color: var(--thm-primary);
    color: var(--thm-base);
}
/*--------------------------------------------------------------
# Service Three
--------------------------------------------------------------*/
.service_three {
    position: relative;
    display: block;
    z-index: 1;
    /*border-bottom: 1px solid #f5f0e9;
    
    padding: 0 0 74px;
    */
}
.service_three:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 290px;
    background: #f5f0e9;
    content: "";
    z-index: -1;
}
.service_three_single {
    position: relative;
    display: block;
    text-align: center;
    overflow: hidden;
}
.service_three_image {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 5px;
}
.service_three_image img {
    width: auto;
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: opacity 500ms ease, -webkit-transform 500ms ease;
    transition: opacity 500ms ease, -webkit-transform 500ms ease;
    transition: transform 500ms ease, opacity 500ms ease;
    transition: transform 500ms ease, opacity 500ms ease,
        -webkit-transform 500ms ease;
}
.service_three_single:hover .service_three_image img {
    opacity: 0.7;
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
}
.service_three_content {
    position: relative;
    display: block;
    text-align: center;
    padding: 35px 20px 35px;
}
.service_three_content h2 {
    font-size: 18px;
    margin: 0;
    font-weight: 700;
    padding-bottom: 21px;
}
.service_three_content h2 a {
    color: var(--thm-black);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}
.service_three_content a:hover {
    color: var(--thm-primary);
}
.service_three_content p {
    margin: 0;
}
.service_three_read_more {
    padding-top: 22px;
}
.service_three_read_more a {
    color: var(--thm-black);
    font-size: 16px;
    text-align: center;
}
.service_three_read_more i {
    height: 18px;
    width: 18px;
    background: var(--thm-base);
    border-radius: 50%;
    display: inline-block;
    line-height: 18px;
    font-size: 12px;
    margin-right: 10px;
}
/*--------------------------------------------------------------
# Recent Project Three
--------------------------------------------------------------*/
.recent_project_three {
    position: relative;
    display: block;
    /*
    padding: 70px 0 0;
    */
}

.project_three_single {
    position: relative;
    display: block;
    overflow: hidden;
}
.project_three_image {
    position: relative;
    display: block;
}
.project_three_image img {
    width: 100%;
    border-radius: 5px;
}
.project_three_content {
    position: absolute;
    bottom: 50px;
    left: 60px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}
.project_three_single:hover .project_three_content {
    bottom: -100%;
}
.project_three_content h2 {
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    margin: 0;
}
.project_three_hover_box {
    position: absolute;
    bottom: -100%;
    left: 60px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}
.project_three_single:hover .project_three_hover_box {
    bottom: 60px;
}
.project_three_hover_box h2 {
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    margin: 0;
    margin-bottom: 12px;
}
.project_three_hover_box p {
    color: #ffffff;
    font-size: 16px;
    margin: 0;
}
.project_three_btn {
    margin-top: 29px;
}
.project_three_btn_hover {
    padding: 13px 40px;
    font-size: 16px;
}
/*--------------------------------------------------------------
# Work One
--------------------------------------------------------------*/
.work_one {
    position: relative;
    display: block;
    /*
    padding: 80px 0 50px;
    */
}
.work_one_single {
    position: relative;
    display: block;
    text-align: center;
}
.work_one_single:before {
    position: absolute;
    content: "\e914";
    top: 85px;
    right: -45px;
    font-family: "icomoon" !important;
    font-size: 60px;
    color: var(--thm-base);
    display:none !important;
}
.work_one_single.last_box:before {
    display: none;
}
.work_one_icon_box {
    position: relative;
    height: 188px;
    width: 188px;
    border-radius: 50%;
    border: 10px solid #f5f0e9;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    
}
.work_one .block-title p {
    display: none !important;
}
.work_one_icon_box span {
    color: var(--thm-primary);
    font-size: 60px;
}

.work_one_count_box {
    position: absolute;
    height: 58px;
    width: 58px;
    background: var(--thm-primary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 0;
    right: -12px;
    color: #ffffff;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}
.work_one_count_box h5 {
    font-size: 24px;
    font-weight: 700;
    margin: 0;
}
.work_one_count_box:hover {
    color: var(--thm-black);
    background: var(--thm-base);
}

.work_one_content h2 {
    color: var(--thm-black);
    font-size: 16px;
    margin: 0;
    font-weight: 700;
    padding-top: 31px;
    padding-bottom: 29px;
}
.work_one_content p {
    margin: 0;
   text-align:justify;
}
/*--------------------------------------------------------------
# Quote One
--------------------------------------------------------------*/
.quote_one {
    position: relative;
    display: block;
    padding: 105px 0 110px;
    background: var(--thm-primary);
}
.quote_one_bg {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 421px;
    opacity: 0.05;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom center;
}
.quote_one_content {
    text-align: center;
}
.quote_one_content h2 {
    font-size: 70px;
    color: #ffffff;
    font-weight: 700;
    margin: 0;
    margin-bottom: 33px;
    text-transform: uppercase;
}
.quote_one_content p {
    color: var(--thm-base);
    font-size: 18px;
    margin: 0;
    font-weight: 600;
    text-transform: uppercase;
}
/*--------------------------------------------------------------
# Why Choose One
--------------------------------------------------------------*/
.why_choose_one {
    position: relative;
    display: block;
    overflow: hidden;
}
.why_choose_one .block-title {
    margin-bottom: 45px;
}
.why_choose_one_left_content {
    position: relative;
    display: block;
    padding: 120px 0;
}
.why_choose_one_left_content:before {
    position: absolute;
    content: "";
    top: 0px;
    left: -50000px;
    right: -30px;
    bottom: 0px;
    background: #f5f0e9;
    z-index: -1;
}
.why_choose_list {
    margin: 0;
}
.why_choose_list li {
    position: relative;
    display: block;
    padding-left: 68px;
    padding-bottom: 24px;
}
.why_choose_list li:last-child {
    padding-bottom: 0;
}
.why_choose_list li .choose_count {
    position: absolute;
    top: 10px;
    left: 0;
    height: 48px;
    width: 48px;
    background: var(--thm-primary);
    border-radius: 50%;
    text-align: center;
}
.why_choose_list li .choose_count h2 {
    font-size: 24px;
    color: #ffffff;
    font-weight: 700;
    margin: 0;
    line-height: 48px;
}

.why_choose_list li .choose_text p {
    margin: 0;
    color: #878986;
    font-size: 18px;
}
.why_choose_btn {
    margin-top: 55px;
}

.why_choose_image_top {
    position: relative;
    padding-top: 120px;
    width: 100%;
    height: 100%;
}
.why_choose_image {
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center top;
}

.why_choose_image:before {
    height: 530px;
    width: 530px;
    content: "";
    background: #f5f0e9;
    top: 50%;
    right: -265px;
    position: absolute;
    border-radius: 50%;
    transform: translateY(-50%);
    z-index: -1;
}
.why_choose_image:after {
    position: absolute;
    height: 220px;
    width: 220px;
    content: "";
    background: #ffffff;
    border-radius: 50%;
    top: 50%;
    right: -110px;
    transform: translateY(-50%);
    z-index: -1;
}
.why_choose_image img {
    width: 100%;
}
/*--------------------------------------------------------------
# Team One
--------------------------------------------------------------*/
.team_one {
    position: relative;
    display: block;
    padding: 60px 0 50px;
}
.team_one .block-title {
    margin-bottom: 55px;
}
.team_one_single {
    position: relative;
    display: block;
    text-align: center;
    margin-bottom: 30px;
}

.team_one_image img {
    width: 100%;
    border-radius: 5px;
}
.team_one_deatils {
    background: #ffffff;
    padding: 24px 40px 30px;
    margin-top: -20px;
    margin-left: 20px;
    margin-right: 20px;
    position: relative;
    display: block;
    border-radius: 5px;
    transition: all 500ms ease;
}
.team_one_single:hover .team_one_deatils {
    box-shadow: 0px 10px 10px 0px rgba(0, 0, 0, 0.03);
}
.team_one_deatils p {
    color: #878986;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    margin: 0;
    line-height: 20px;
    letter-spacing: 0.2em;
}
.team_one_deatils h2 {
    font-size: 17px;
    font-weight: 700;
    margin: 0;
}
.team_one_deatils a {
    color: #232323;
}
.team_one_social {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    justify-content: center;
    margin-top: 13px;
}
.team_one_social a {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    text-align: center;
    width: 45px;
    height: 45px;
    background-color: #f5f0e9;
    color: #878986;
    font-size: 16px;
    border-radius: 50%;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}
.team_one_social a + a {
    margin-left: 10px;
}
.team_one_social a:hover {
    background-color: var(--thm-primary);
    color: #ffffff;
}
.team_one.about_team_one {
    padding-top: 232px;
}
/*--------------------------------------------------------------
# Brand Three
--------------------------------------------------------------*/
.brand-one.brand-three {
    border-top: 1px solid #f5f0e9;
    border-bottom: none;
}
/*--------------------------------------------------------------
# What Makes
--------------------------------------------------------------*/
.what_makes {
    position: relative;
    display: block;
    padding: 110px 0 120px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
    background-attachment: fixed;
}
.what_makes:before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    content: "";
    background: rgba(64, 74, 61, 0.5);
}
.what_makes_content {
    position: relative;
    display: block;
    text-align: center;
}
.what_makes_content p {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin: 0;
}
.what_makes_content h2 {
    font-size: 100px;
    color: #ffffff;
    font-weight: 700;
    margin: 0;
    line-height: 108px;
    margin-top: 5px;
}
.what_makes_btn {
    margin-top: 45px;
}
/*--------------------------------------------------------------
# Blog Two
--------------------------------------------------------------*/
.blog_two {
    position: relative;
    display: block;
    padding: 120px 0 120px;
}
.blog_two .block-title {
    float: left;
    margin-bottom: 55px;
}
.all_posts_btn {
    float: right;
    margin-top: 37px;
}
.all_posts_btn .thm-btn {
    font-size: 16px;
    padding: 13px 40px;
}
.blog_two_single {
    position: relative;
    display: block;
}
.blog_two_image {
    position: relative;
    display: block;
}
.blog_two_image img {
    width: 100%;
    border-radius: 5px;
}
.blog_two_date_box {
    position: absolute;
    top: 0;
    left: 0;
    height: 42px;
    width: 113px;
    background: var(--thm-base);
    text-align: center;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    right: 0;
    margin: 0 auto;
}
.blog_two_date_box p {
    margin: 0;
    color: var(--thm-black);
    font-size: 14px;
    font-weight: 600;
    line-height: 42px;
}

.blog-two_meta {
    margin: 0;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    padding-top: 30px;
}

.blog-two_meta li + li {
    margin-left: 25px;
}
.blog-two_meta li a {
    letter-spacing: 0.2em;
    color: var(--thm-primary);
    font-size: 12px;
    text-transform: uppercase;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}
.blog-two_meta li i {
    color: #66945d;
    font-size: 15px;
    margin-right: 10px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}
.blog-two_content h3 {
    text-transform: unset;
    color: var(--thm-black);
    font-size: 24px;
    font-weight: 600;
    font-family: var(--thm-font);
    margin: 0;
    line-height: 38px;
    margin-bottom: 18px;
}
.blog-two_content .blog_two_title {
    font-size: 24px;
    color: var(--thm-black);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.blog_two_text p {
    margin: 0;
}
.blog_two_read_more_btn {
    margin-top: 29px;
}
.blog_two_read_more_btn a {
    color: var(--thm-black);
    font-size: 16px;
}
.blog_two_read_more_btn i {
    height: 18px;
    width: 18px;
    background: var(--thm-base);
    border-radius: 50%;
    display: inline-block;
    line-height: 18px;
    font-size: 12px;
    margin-right: 10px;
    text-align: center;
}
.blog_two_right {
    position: relative;
    display: block;
    background: #f5f0e9;
    padding: 50px 60px 50px;
}
.blog_three_single {
    border-bottom: 1px solid #fefefe;
    padding-bottom: 50px;
    margin-bottom: 50px;
}
.blog_three_single.blgo_three_last {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}
.blog-three_meta {
    margin: 0;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
}

.blog-three_meta li + li {
    margin-left: 25px;
}
.blog-three_meta li a {
    letter-spacing: 0.2em;
    color: var(--thm-primary);
    font-size: 12px;
    text-transform: uppercase;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}
.blog-three_meta li i {
    color: #66945d;
    font-size: 15px;
    margin-right: 10px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}
.blog_three_single h3 {
    text-transform: unset;
    color: var(--thm-black);
    font-size: 24px;
    font-weight: 600;
    font-family: var(--thm-font);
    margin: 0;
    line-height: 38px;
}
.blog_three_single h3 a {
    color: var(--thm-black);
}

.blog_three_title {
    font-size: 24px;
    color: var(--thm-black);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}
/*--------------------------------------------------------------
# Cta Three
--------------------------------------------------------------*/
.cta_three {
    position: relative;
    display: block;
    padding: 0 0 120px;
}
.cta_three_content {
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    background: var(--thm-base);
    padding: 60px 60px;
}

.cta_three_text h2 {
    font-size: 50px;
    color: var(--thm-black);
    font-weight: 700;
    margin: 0;
}

.cta_three_btn .thm-btn {
    background: var(--thm-black);
    color: #ffffff;
}
.cta_three_btn .thm-btn:hover {
    background-color: #fff;
    color: var(--thm-black);
}
/*--------------------------------------------------------------
# Details One
--------------------------------------------------------------*/

.details_one_single {
    position: relative;
    background: var(--thm-primary);
    display: flex;
    align-items: center;
    -webkit-box-align: center;
    padding: 47px 40px 40px;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    z-index: 1;
}
.details_one_single:before {
    position: absolute;
    content: "";
    top: -5px;
    left: 0;
    right: 0;
    background: var(--thm-base);
    height: 5px;
    transition: 500ms;
}
.details_one_single:hover:before {
    height: calc(100% + 5px);
}
.details_one_icon {
    margin-right: 20px;
    position: relative;
}
.details_one_icon span {
    color: var(--thm-base);
    font-size: 60px;
    transition: 500ms;
}
.details_one_single:hover .details_one_icon span {
    color: var(--thm-black);
}

.details_one_content h2 {
    color: #ffffff;
    font-size: 30px;
    font-weight: 700;
    margin: 0;
    position: relative;
    transition: 500ms;
}
.details_one_single:hover .details_one_content h2 {
    color: var(--thm-black);
}
.details_one_count_box {
    position: absolute;
    bottom: -50px;
    right: 0;
    opacity: 0.1;
}
.details_one_count_box h3 {
    font-size: 100px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}
/*--------------------------------------------------------------
# Welcome Two
--------------------------------------------------------------*/
.welcome_two {
    position: relative;
    display: block;
    padding: 120px 0 120px;
}
.welcome_two_bg {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 440px;
    background-size: cover;
    background-position: bottom center;
    background-repeat: no-repeat;
}
.welcome_two .block-title {
    margin-bottom: 33px;
}
.welcome_two_text {
    margin-bottom: 48px;
}
.welcome_two_text p {
    margin: 0;
}

.welcome_two_image_left {
    margin-left: 100px;
}
.welcome_two_image_left img {
    width: 100%;
    border-radius: 5px;
}
.welcome_two_image_right {
    margin-right: 100px;
}
.welcome_two_image_right img {
    width: 100%;
    border-radius: 5px;
}
/*--------------------------------------------------------------
# Eco Friendly
--------------------------------------------------------------*/
.eco_friendly {
    position: relative;
    background-attachment: fixed;
    background-size: cover;
    display: block;
    padding: 135px 0 232px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}
.eco_friendly:before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    content: "";
    background: rgba(57, 67, 54, 0.5);
}
.eco_friendly_content {
    position: relative;
    display: block;
    text-align: center;
}
.eco_friendly_icon_box {
    position: relative;
    height: 115px;
    width: 115px;
    background: var(--thm-base);
    border-radius: 50%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 500ms;
}
.eco_friendly_icon_box:hover {
    background-color: var(--thm-black);
    color: #fff;
}
.eco_friendly_icon_box:hover span {
    color: #fff;
}
.eco_friendly_icon_box:before {
    position: absolute;
    content: "";
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    border: 2px dashed #ece9e3;
    border-radius: 50%;
}
.eco_friendly_icon_box span {
    color: var(--thm-black);
    font-size: 60px;
    transition: 500ms;
}
.eco_friendly_title {
    margin-top: 57px;
}
.eco_friendly_title h2 {
    color: #ffffff;
    font-size: 80px;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0;
    line-height: 77px;
}
/*--------------------------------------------------------------
# Service Four
--------------------------------------------------------------*/
.service_four {
    position: relative;
    display: block;
    padding: 0px 0 143px;
    border-bottom: 1px solid #f5f0e9;
}
.service_four.service_page {
    padding: 120px 0 144px;
}
.service_four.service_page .service_four_top:before {
    display: none;
}
.service_four_top {
    position: relative;
    display: block;
}
.service_four_top:before {
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    position: absolute;
    content: "";
    top: -114px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% + 100px);
    height: 120px;
    background: #ffffff;
}
.service_four .block-title {
    margin-bottom: 55px;
}
.service_four_single {
    border-radius: 5px;
    position: relative;
    display: block;
    text-align: center;
    border: 1px solid #f5f0e9;
    padding: 60px 60px 0;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}
.service_four_single:hover {
    box-shadow: 0px 20px 20px 0px rgba(0, 0, 0, 0.05);
}
.service_four_icon {
    height: 135px;
    width: 135px;
    background: #f5f0e9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 0 auto;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}
.service_four_single:hover .service_four_icon {
    background: var(--thm-primary);
}
.service_four_icon span {
    color: var(--thm-primary);
    font-size: 60px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}
.service_four_single:hover .service_four_icon span {
    color: var(--thm-base);
}

.service_four_deatils h3 {
    font-size: 30px;
    font-weight: 700;
    margin: 0;
    padding-top: 31px;
    padding-bottom: 13px;
}
.service_four_deatils .service_four_title {
    color: var(--thm-black);
}
.service_four_deatils p {
    margin: 0;
    margin-bottom: 49px;
}
.service_four_read_more {
    height: 50px;
    width: 50px;
    background: var(--thm-base);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    position: relative;
    margin-bottom: -25px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}
.service_four_read_more:hover {
    background: var(--thm-primary);
}
.service_four_read_more:hover a {
    color: var(--thm-base);
}
.service_four_read_more a {
    color: var(--thm-black);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}
.service_four_read_more span {
    position: relative;
    transform: rotate(180deg);
    display: block;
}
/*--------------------------------------------------------------
# Faq One
--------------------------------------------------------------*/
.faq_one {
    position: relative;
    display: block;
    padding: 120px 0 120px;
}
.faq_one_left {
    position: relative;
    display: block;
    margin-right: 30px;
}
.faq_one .block-title {
    margin-bottom: 55px;
}
.faq_one_image {
    position: relative;
    display: block;
    width: 100%;
    height: 242px;
    background-repeat: no-repeat;
    background-size: cover;
}

.phone_number {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: var(--thm-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}
.phone_number p {
    color: #ffffff;
    margin: 0;
    display: flex;
}
.phone_number a {
    color: var(--thm-base);
    font-size: 26px;
    font-weight: 700;
    margin-left: 10px;
    font-family: var(--heading-font);
}

.faq-one-accrodion .accrodion {
    position: relative;
    display: block;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}
.faq-one-accrodion .accrodion-title {
    position: relative;
    display: block;
    cursor: pointer;
    background: #fff;
    padding: 25px 30px 25px;
    padding-right: 20px;
    border-radius: 5px;
}
.faq-one-accrodion .accrodion-title h4 {
    text-transform: unset;
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    line-height: 30px;
    color: var(--thm-black);
    position: relative;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    font-family: var(--thm-font);
}
.faq-one-accrodion .accrodion + .accrodion {
    margin-top: 10px;
}

.faq-one-accrodion .accrodion.active .accrodion-title {
    background: var(--thm-primary);
}
.faq-one-accrodion .accrodion.active .accrodion-title h4 {
    color: #ffffff;
}
.faq-one-accrodion .accrodion-title h4::before {
    content: "\f067";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 14px;
    color: #ffffff;
    position: absolute;
    top: 50%;
    right: 0;
    height: 45px;
    width: 45px;
    background: var(--thm-primary);
    border-radius: 50%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.faq-one-accrodion .accrodion.active .accrodion-title h4::before {
    content: "\f068";
    color: var(--thm-black);
    height: 45px;
    width: 45px;
    background: var(--thm-base);
    border-radius: 50%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.faq-one-accrodion .accrodion-content {
    position: relative;
    padding: 36px 30px 26px;
    padding-right: 0;
}
.faq-one-accrodion .accrodion-content p {
    margin: 0;
    font-size: 16px;
    color: #878986;
}

/*--------------------------------------------------------------
# Testimonials Three
--------------------------------------------------------------*/

.testimonials-three {
    background-color: #f5f0e9;
    padding-top: 120px;
    padding-bottom: 75px;
}
.testimonials-three .block-title {
    margin-bottom: 55px;
}
.testimonials-three__carousel .owl-stage-outer {
    overflow: visible;
}
.testimonials-three__carousel .owl-item {
    visibility: hidden;
    opacity: 0;
    transition: 500ms;
}
.testimonials-three__carousel .owl-item.active {
    opacity: 1;
    visibility: visible;
}
.testimonials-three__single {
    margin-bottom: 40px;
    text-align: center;
}

.testimonials-three__content {
    border-radius: 5px;
    background-color: #fff;
    position: relative;
    padding-left: 65px;
    padding-right: 65px;
    padding-bottom: 50px;
    padding-top: 60px;
    margin-bottom: 40px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}
.testimonials-three__single:hover .testimonials-three__content {
    box-shadow: 0px 20px 20px 0px rgba(0, 0, 0, 0.05);
}
.testimonials-three__content::after {
    content: "";
    width: 72px;
    height: 20px;
    background-image: url(../images/shapes/testi-arrow-3-1.png);
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: 100%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}
.testimonials-three_icon {
    height: 43px;
 %2
 .logo-box-two img{
     margin-left: -45px;
     }