/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Utility
# Cards
# Common
# Form
# Navigations
# Animations
# Mobile Nav
# Search Popup
# Page Header
# Google Map
# Client Carousel
# Inner Pages
# Timeline
# Our Clients
# Global
--------------------------------------------------------------*/


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

:root {
    --thm-font: "DM Sans", sans-serif;
    --thm-font-2: "Averia Sans Libre", cursive;
    --thm-font-3: "Shadows Into Light", cursive;
    --thm-base: #f1cf69;
    --thm-base-rgb: 241, 207, 105;
    --thm-primary: #334b35;
    --thm-primary-rgb: 51, 75, 53;
    --thm-secondary: #6d8c54;
    --thm-secondary-rgb: 109, 140, 84;
    --thm-tertiary: #232365;
    --thm-tertiary-rgb: 35, 35, 101;
    --thm-color-1: #434c44;
    /*#687469*/
    --thm-color-1-rgb: 104, 116, 105;
    --thm-color-slcm-green: #8ebe74;
}

.row {
    --bs-gutter-x: 30px;
}

.gutter-y-30 {
    --bs-gutter-y: 30px;
}

body {
    font-family: var(--thm-font);
    color: var(--thm-color-1);
    font-size: 18px;
    line-height: 34px;
    font-weight: 400;
}

body.locked {
    overflow: hidden;
}

a {
    color: var(--thm-black);
}

a,
a:hover,
a:focus,
a:visited {
    text-decoration: none;
}

::-webkit-input-placeholder {
    color: inherit;
    opacity: 1;
}

::-moz-placeholder {
    color: inherit;
    opacity: 1;
}

:-ms-input-placeholder {
    color: inherit;
    opacity: 1;
}

::-ms-input-placeholder {
    color: inherit;
    opacity: 1;
}

::placeholder {
    color: inherit;
    opacity: 1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--thm-primary);
    font-weight: 700;
    font-family: var(--thm-font-2);
    margin: 0;
}

p {
    margin: 0;
}

.noSelect {
    -ms-user-select: none;
    user-select: none;
    -o-user-select: none;
    -moz-user-select: none;
    -khtml-user-select: none;
    -webkit-user-select: none;
}

ul,
li {
    list-style: none;
    margin: 0;
    padding: 0;
}

dl,
ol,
ul {
    margin-top: 0;
    margin-bottom: 0;
}

::-webkit-input-placeholder {
    color: inherit;
    opacity: 1;
}

::-moz-placeholder {
    color: inherit;
    opacity: 1;
}

:-ms-input-placeholder {
    color: inherit;
    opacity: 1;
}

::-ms-input-placeholder {
    color: inherit;
    opacity: 1;
}

::placeholder {
    color: inherit;
    opacity: 1;
}

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

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

button {
    cursor: pointer;
    border: none;
    background: transparent;
    padding: 0;
}

.container {
    padding-left: 15px;
    padding-right: 15px;
}

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

.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 {
    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 {
    border: 0;
    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 rgba(255, 255, 255, 0.2);
}

.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);
    transition: all 0.4s ease;
}

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

::-webkit-input-placeholder {
    color: inherit;
    opacity: 1;
}

::-moz-placeholder {
    color: inherit;
    opacity: 1;
}

:-ms-input-placeholder {
    color: inherit;
    opacity: 1;
}

::-ms-input-placeholder {
    color: inherit;
    opacity: 1;
}

::placeholder {
    color: inherit;
    opacity: 1;
}

.section-separator {
    border-color: var(--thm-border);
    border-width: 1px;
    margin-top: 0;
    margin-bottom: 0;
}


/***
=============================================
    Thm Btn
=============================================
***/

.thm-btn {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    -webkit-appearance: none;
    border: none;
    outline: none !important;
    background-color: var(--thm-base);
    color: var(--thm-primary);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 15px 50px 15px;
    border-radius: 10px;
    letter-spacing: 0.1em;
    transition: all 0.3s linear;
    overflow: hidden;
    z-index: 1;
}

.thm-btn:hover {
    color: #ffffff;
}

.thm-btn::before {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 10px;
    height: 100%;
    background: rgba(var(--thm-primary-rgb), 0.15);
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    content: "";
    transform: scale(1);
    transition: 700ms ease;
    z-index: -1;
}

.thm-btn:hover:before {
    width: 100%;
    opacity: 1;
    transform: scale(1.5);
    border-radius: 0;
    background: var(--thm-primary);
}


/***
=============================================
    Section Title
=============================================
***/

.sec-title {
    position: relative;
    display: block;
    margin-top: -7px;
    margin-bottom: 50px;
}

.sec-title .icon {
    position: relative;
    display: block;
    margin-bottom: 2px;
}

.sec-title__tagline {
    position: relative;
    display: inline-block;
    color: var(--thm-color-1);
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.sec-title__title {
    font-size: 35px;
    line-height: 1em;
    font-weight: 700;
    text-transform: none;
    letter-spacing: -0.04em;
    color: var(--thm-tertiary);
}

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

.bootstrap-select .dropdown-item.active,
.bootstrap-select .dropdown-item:active {
    background-color: var(--thm-base);
}

.preloader {
    position: fixed;
    background-color: #fff;
    background-position: center center;
    background-repeat: no-repeat;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999999999999999;
    display: flex;
    justify-content: 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;
}


/***
=============================================
    Dot Style




    .owl-carousel.owl-dot-type1 .owl-dots .owl-dot.active::before{
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0px;
    right: 0px;
    background: var(--thm-base);
    border-radius: 50%;
    content: "";

}
=============================================
***/

.owl-carousel.owl-dot-type1 .owl-stage-outer {
    position: relative;
    display: block;
    padding-top: 0px;
    padding-bottom: 0px;
    transition: all 100ms linear;
    transition-delay: 0.1s;
}

.owl-carousel.owl-dot-type1 .owl-dots {
    position: relative;
    display: block;
    text-align: center;
    line-height: 12px;
    margin-top: 5px !important;
    transition: all 100ms linear;
    transition-delay: 0.1s;
}

.owl-carousel.owl-dot-type1 .owl-dots .owl-dot {
    position: relative;
    display: inline-block;
    width: 9px;
    height: 9px;
    background: #adb7ae;
    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::before {
    position: absolute;
    top: -2px;
    left: -2px;
    bottom: -2px;
    right: -2px;
    background: var(--thm-primary);
    content: "";
    transform: scale(0);
    border-radius: 50%;
}

.owl-carousel.owl-dot-type1 .owl-dots .owl-dot.active::before {
    transform: scale(1);
}

.owl-carousel.owl-dot-type1 .owl-dots .owl-dot span {
    display: none;
}


/***
=============================================
    Scroll To Top
=============================================
***/

.scroll-to-top {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 70px;
    background: var(--thm-base);
    position: fixed;
    bottom: -1px;
    /*91px*/
    right: 20px;
    z-index: 99;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    text-align: center;
    transition: all 0.4s ease;
    display: none;
    transition: all 0.4s ease;
    overflow: hidden;
}

.scroll-to-top::before {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 10px;
    background: rgba(var(--thm-primary-rgb), 0.15);
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    content: "";
    transform: scale(1);
    transition: 700ms ease;
    z-index: -1;
    background: #f1cf69c2;
}

.scroll-to-top:hover:before {
    height: 100%;
    opacity: 1;
    transform: scale(1.5);
    border-radius: 0;
    background: var(--thm-primary);
}

.scroll-to-top i {
    position: relative;
    display: inline-block;
    color: var(--thm-primary);
    font-size: 18px;
    line-height: 70px;
    transform: rotate(-90deg);
}

.scroll-to-top:hover {
    background-color: var(--thm-primary);
}

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


/***
=============================================
    Main Header One
=============================================
***/

.main-header {
    position: relative;
    display: block;
}

.main-header--one {
    position: relative;
    left: 0px;
    top: 0px;
    width: 100%;
    z-index: 999;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}

.main-header-one__bottom {
    position: relative;
    display: block;
    background: transparent;
}

.main-header-one__bottom-inner {
    position: relative;
    display: block;
    z-index: 10;
}

.main-header-one__bottom-inner .main-menu {
    position: relative;
    display: block;
}

.main-menu {
    position: relative;
    z-index: 91;
}

.main-menu__inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-direction: row;
    flex-wrap: wrap;
}

.main-menu__inner .left {
    display: flex;
    align-items: center;
}

.main-menu .main-menu__list,
.main-menu .main-menu__list ul,
.stricky-header .main-menu__list,
.stricky-header .main-menu__list ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
    align-items: center;
    display: none;
}

.main-menu .main-menu__list>li,
.stricky-header .main-menu__list>li {
    position: relative;
}

.main-menu .main-menu__list>li+li,
.stricky-header .main-menu__list>li+li {
    margin-left: 35px;
}

.logo-w {
    padding-top: 0.3em;
    width: auto;
    display: block;
    height: 105px;
}

.logo-mob {
    display: none;
}

.main-menu .main-menu__list>li>a,
.stricky-header .main-menu__list>li>a {
    position: relative;
    display: inline-block;
    color: var(--thm-color-1);
    font-size: 16px;
    font-weight: 500;
    text-transform: none;
    transition: all 500ms ease;
    font-family: var(--thm-font);
    padding-top: 1.4em;
    padding-bottom: 1em;
    z-index: 1;
}

.main-menu .main-menu__list>li>a::before {
    content: "";
    position: absolute;
    bottom: 1em;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--thm-base);
    transition: transform 500ms ease;
    transform: scale(0, 1);
    transform-origin: left center;
    z-index: -1;
    display: none;
}

.stricky-header .main-menu__list>li>a::before {
    content: "";
    position: absolute;
    bottom: 35px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--thm-base);
    transition: transform 500ms ease;
    transform: scale(0, 1);
    transform-origin: left center;
    z-index: -1;
}

.main-menu .main-menu__list>li.current>a,
.main-menu .main-menu__list>li:hover>a,
.stricky-header .main-menu__list>li.current>a,
.stricky-header .main-menu__list>li:hover>a {
    transform: scale(1, 1);
    transform-origin: right center;
}

.main-menu .main-menu__list>li.current>a,
.main-menu .main-menu__list>li:hover>a,
.stricky-header .main-menu__list>li.current>a,
.stricky-header .main-menu__list>li:hover>a {
    color: var(--thm-primary);
}

.main-menu .main-menu__list>li.dropdown a,
.stricky-header .main-menu__list>li.dropdown a {
    padding-right: 0px;
}

.main-menu .main-menu__list>li.current>a::before,
.main-menu .main-menu__list>li:hover>a::before,
.stricky-header .main-menu__list>li.current>a::before,
.stricky-header .main-menu__list>li:hover>a::before {
    transform: scale(1, 1);
    transform-origin: right center;
}

.main-menu .main-menu__list li ul,
.stricky-header .main-menu__list li ul {
    position: absolute;
    top: 88px;
    /*98*/
    left: 0;
    min-width: 260px;
    background-color: #fff;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    opacity: 0;
    visibility: hidden;
    transition: 500ms ease;
    z-index: 99;
    box-shadow: 0px 0px 65px 0px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.stricky-header .main-menu__list li ul {
    top: 101px;
}

.main-header-two__bottom .main-menu .main-menu__list li ul {
    margin-top: 13px;
}

.stricky-header .main-menu__list li ul {
    margin-top: 0px;
}

.main-menu .main-menu__list li:hover>ul,
.stricky-header .main-menu__list li:hover>ul {
    opacity: 1;
    visibility: visible;
}

.main-menu .main-menu__list li ul li,
.stricky-header .main-menu__list li ul li {
    flex: 1 1 100%;
    width: 100%;
    position: relative;
}

.main-menu .main-menu__list li ul li+li,
.stricky-header .main-menu__list li ul li+li {
    border-top: 1px solid #f7f7f7;
}

.main-menu .main-menu__list li ul li a,
.stricky-header .main-menu__list li ul li a {
    position: relative;
    display: block;
    color: var(--thm-color-1);
    font-size: 16px;
    line-height: 28px;
    font-weight: 500;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
    transition: 500ms;
    font-family: var(--thm-font);
}

.main-menu .main-menu__list li ul li:last-child>a,
.stricky-header .main-menu__list li ul li:last-child>a {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.main-menu .main-menu__list li ul li:hover>a,
.stricky-header .main-menu__list li ul li:hover>a {
    background-color: var(--thm-base);
    color: var(--thm-primary);
}

.main-menu .main-menu__list li ul li>ul,
.stricky-header .main-menu__list li ul li>ul {
    top: 0;
    left: 100%;
}

.main-menu .main-menu__list li ul li>ul.right-align,
.stricky-header .main-menu__list li ul li>ul.right-align {
    top: 0;
    left: auto;
    right: 100%;
}

.main-menu .main-menu__list li ul li>ul ul,
.stricky-header .main-menu__list li ul li>ul ul {
    display: none;
}

.main-header-one__bottom .right {
    position: relative;
    display: block;
}

.main-menu__right {
    position: relative;
    display: flex;
    align-items: center;
}

.main-menu__right-login-register {
    position: relative;
    display: block;
    margin-right: 26px;
}

.main-menu__right-login-register ul {
    position: relative;
    display: block;
    overflow: hidden;
}

.main-menu__right-login-register ul li {
    position: relative;
    display: inline-block;
    float: left;
    margin-left: 11px;
    padding-right: 12px;
}

.main-menu__right-login-register ul li::before {
    position: absolute;
    top: 10px;
    bottom: 10px;
    right: 0;
    background: #e2e4eb;
    width: 1px;
    transform: rotate(20deg);
    content: "";
}

.main-menu__right-login-register ul li:first-child {
    margin-left: 0;
}

.main-menu__right-login-register ul li:last-child {
    padding-right: 0;
}

.main-menu__right-login-register ul li:last-child:before {
    display: none;
}

.main-menu__right-login-register ul li a {
    color: var(--thm-gray);
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.main-menu__right-login-register ul li a:hover {
    color: var(--thm-base);
}

.main-menu__right-cart-search {
    position: relative;
    display: flex;
    align-items: center;
    padding-left: 30px;
}

.main-menu__right-cart-search::before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    width: 1px;
    content: "";
}

.main-menu__right-cart-box {
    position: relative;
    display: block;
}

.main-menu__right-cart-box a {
    color: var(--thm-black);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.main-menu__right-cart-box a:hover {
    color: var(--thm-base);
}

.main-menu__right-cart-box a span::before {
    font-size: 25px;
    line-height: 35px;
}

.main-menu__right-search-box {
    position: relative;
    display: block;
    margin-left: 29px;
}

.main-menu__right-search-box .thm-btn {
    font-size: 12px;
    padding: 5px 30px 2px;
}

.main-menu,
.stricky-header {
    /* after third level no menu */
}

.stricky-header {
    position: fixed;
    z-index: 991;
    top: 0;
    left: 0;
    background-color: #fff;
    width: 100%;
    visibility: hidden;
    transform: translateY(-120%);
    transition: transform 500ms ease, visibility 500ms ease;
    box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
}

.stricky-header.main-menu {
    padding: 0 0px;
}

.stricky-header.stricky-fixed {
    transform: translateY(0);
    visibility: visible;
}

.stricky-header .main-menu__inner {
    box-shadow: none;
    padding-right: 0;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
}

.mobile-nav__buttons {
    display: flex;
    margin-left: auto;
    margin-right: 10px;
}

.stricky-header .main-menu__list>li {}

@media (min-width: 1200px) {
    .main-menu .main-menu__list,
    .main-menu .main-menu__list ul,
    .stricky-header .main-menu__list,
    .stricky-header .main-menu__list ul {
        display: flex;
    }
}

@media (max-width: 1199px) {
    .stricky-header {
        display: none !important;
    }
}

@media (min-width: 1200px) {
    .mobile-nav__buttons {
        display: none;
    }
}

@media (min-width: 1200px) {
    .main-menu .mobile-nav__toggler {
        display: none;
    }
}

.mobile-nav__buttons a {
    font-size: 20px;
    color: var(--thm-black);
    cursor: pointer;
}

.mobile-nav__buttons a+a {
    margin-left: 10px;
}

.mobile-nav__buttons a:hover {
    color: var(--thm-base);
}

.main-menu .mobile-nav__toggler {
    font-size: 30px;
    color: var(--thm-base);
    cursor: pointer;
    transition: 500ms;
    margin-right: 0px;
}

.main-menu .mobile-nav__toggler:hover {
    color: var(--thm-black);
}


/***
=============================================
    Mobile Nav
=============================================
***/

.mobile-nav__wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    opacity: 0;
    transform: translateX(-50%);
    transform-origin: right center;
    transition: transform 500ms ease-in, opacity 500ms linear, visibility 500ms ease-in;
    z-index: 999;
    visibility: hidden;
}

.mobile-nav__wrapper .container {
    padding-left: 0;
    padding-right: 0;
}

.mobile-nav__wrapper.expanded {
    opacity: 1;
    transform: translateX(0%);
    visibility: visible;
}

.mobile-nav__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #000000;
    opacity: 0.5;
    cursor: pointer;
}

.mobile-nav__content {
    width: 300px;
    background: var(--thm-primary);
    z-index: 10;
    position: relative;
    height: 100%;
    overflow-y: auto;
    padding-top: 30px;
    padding-bottom: 30px;
    padding-left: 15px;
    padding-right: 15px;
}

.mobile-nav__content .thm-btn {
    padding: 8px 0;
    width: 100%;
    text-align: center;
}

.mobile-nav__content .logo-box {
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
}

.mobile-nav__content .logo-box a img {
    filter: brightness(0) invert(1);
}

.mobile-nav__close {
    position: absolute;
    top: 20px;
    right: 15px;
    font-size: 18px;
    color: #fff;
    cursor: pointer;
}

.mobile-nav__content .main-menu__list,
.mobile-nav__content .main-menu__list ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.mobile-nav__content .main-menu__list ul {
    display: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav__content .main-menu__list li:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav__content .main-menu__list li ul {
    padding-left: 10px;
}

.mobile-nav__content .main-menu__list li a {
    display: flex;
    justify-content: space-between;
    line-height: 20px;
    color: #ffffff;
    font-size: 14px;
    font-family: var(--thm-font);
    font-weight: 400;
    height: 46px;
    align-items: center;
    transition: 500ms;
}

.mobile-nav__content .main-menu__list li a.expanded {
    color: var(--thm-base);
}

.mobile-nav__content .main-menu__list li a:hover {
    color: var(--thm-base);
}

.mobile-nav__content .main-menu__list li a button {
    width: 28px;
    height: 28px;
    background-color: var(--thm-base);
    border: none;
    outline: none;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transform: rotate(-90deg);
    border-radius: 0px;
    transition: transform 500ms ease;
}

.mobile-nav__content .main-menu__list li a button.expanded {
    transform: rotate(0deg);
    background-color: #fff;
    color: var(--thm-black);
}

.mobile-nav__content .main-menu__list li.cart-btn span {
    position: relative;
    top: auto;
    right: auto;
    transform: translate(0, 0);
}

.mobile-nav__content .main-menu__list li.cart-btn i {
    font-size: 16px;
}

.mobile-nav__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
    margin-bottom: 30px;
}

.mobile-nav__top .main-menu__login a {
    color: var(--thm-text-dark);
}

.mobile-nav__container {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav__social {
    display: flex;
    align-items: center;
}

.mobile-nav__social a {
    font-size: 16px;
    color: var(--thm-base);
    transition: 500ms;
}

.mobile-nav__social a+a {
    margin-left: 30px;
}

.mobile-nav__social a:hover {
    color: #ffffff;
}

.mobile-nav__contact {
    margin-bottom: 0;
    margin-top: 20px;
    margin-bottom: 20px;
}

.mobile-nav__contact li {
    color: var(--thm-text-dark);
    font-size: 14px;
    font-weight: 400;
    position: relative;
    display: flex;
    align-items: center;
    letter-spacing: 0.07em;
}

.mobile-nav__contact li+li {
    margin-top: 15px;
}

.mobile-nav__contact li a {
    color: #ffffff;
    transition: 500ms;
}

.mobile-nav__contact li a:hover {
    color: var(--thm-base);
}

.mobile-nav__contact li>i {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--thm-base);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 16px;
    margin-right: 10px;
    color: #fff;
}

.mobile-nav__container .main-logo,
.mobile-nav__container .topbar__buttons,
.mobile-nav__container .main-menu__language,
.mobile-nav__container .main-menu__login {
    display: none;
}


/***
=============================================
    Search Popup
=============================================
***/

.search-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
    padding-left: 20px;
    padding-right: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateY(-110%);
    transition: transform 500ms ease, opacity 500ms ease;
}

.search-popup.active {
    transform: translateY(0%);
}

.search-popup__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--thm-primary);
    opacity: 0.9;
    cursor: pointer;
}

.search-popup__content {
    width: 100%;
    max-width: 560px;
}

.search-popup__content form {
    display: flex;
    flex-wrap: wrap;
    position: relative;
    background-color: #fff;
    border-radius: 0px;
    overflow: hidden;
}

.search-popup__content form input[type="search"],
.search-popup__content form input[type="text"] {
    width: 100%;
    background-color: #fff;
    font-size: 16px;
    border: none;
    outline: none;
    height: 66px;
    padding-left: 30px;
    padding-right: 90px;
}

.search-popup__content .thm-btn2 {
    padding: 0;
    width: 68px;
    height: 68px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: absolute;
    top: 0;
    right: -1px;
    border-radius: 0;
    background-color: var(--thm-base);
    border: none;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.search-popup__content .thm-btn2::before {
    display: none;
}

.search-popup__content .thm-btn2:hover {
    background-color: var(--thm-black);
    color: #ffffff;
}

.search-popup__content .thm-btn2 i::before {
    margin: 0;
    color: #ffffff;
}


/***
=============================================
    Main Header One
=============================================
***/

.main-header--one {
    position: relative;
    display: block;
}

.main-header--one__wrapper {
    position: relative;
    display: block;
}

.main-header--one__top {
    position: relative;
    display: block;
    background: #f6f4ec;
}

.main-header--one__top .auto-container {
    position: static;
    max-width: 1755px;
    width: 100%;
    padding: 0px 50px;
    margin: 0 auto;
}

.main-header--one__top-left {
    position: relative;
    display: flex;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    float: left;
}

.main-header--one__top-left .text {
    position: relative;
    display: block;
}

.main-header--one__top-left .text p {
    color: #6e7673;
    font-size: 12px;
    line-height: 22px;
    font-weight: 500;
}

.main-header--one__top-left .social-link {
    position: relative;
    display: block;
    background: #eceae0;
    padding: 5px 40px 4px;
    margin-left: 40px;
}

.main-header--one__top-left .social-link ul {
    position: relative;
    display: block;
    overflow: hidden;
}

.main-header--one__top-left .social-link ul li {
    position: relative;
    display: inline-block;
    float: left;
    margin-left: 25px;
}

.main-header--one__top-left .social-link ul li:first-child {
    margin-left: 0;
}

.main-header--one__top-left .social-link ul li a {
    position: relative;
    display: inline-block;
    color: #6e7673;
    font-size: 15px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.main-header--one__top-left .social-link ul li a:hover {
    color: var(--thm-base);
}

.main-header--one__top-left .social-link ul li a i::before {}

.main-header--one__top-right {
    position: relative;
    display: block;
    float: right;
    padding-top: 5px;
}

.main-header--one__top-right ul {
    position: relative;
    display: flex;
    align-items: center;
}

.main-header--one__top-right ul li {
    position: relative;
    display: flex;
    align-items: center;
}

.main-header--one__top-right ul li+li {
    margin-left: 30px;
}

.main-header--one__top-right ul li .icon {
    position: relative;
    display: block;
}

.main-header--one__top-right ul li .icon i::before {
    position: relative;
    display: inline-block;
    font-size: 15px;
    color: var(--thm-secondary);
}

.main-header--one__top-right ul li .text {
    position: relative;
    display: block;
    padding-left: 10px;
}

.main-header--one__top-right ul li .text p {
    font-size: 12px;
    line-height: 22px;
    font-weight: 500;
}

.main-header--one__top-right ul li .text p a {
    color: #6e7673;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.main-header--one__top-right ul li .text p a:hover {
    color: var(--thm-base);
}

.main-header--one__top-right ul li .text p {
    color: #6e7673;
    font-size: 12px;
    line-height: 22px;
    font-weight: 500;
}

.main-header--one__bottom {
    position: relative;
    display: block;
}

.main-header--one__bottom .auto-container {
    position: static;
    max-width: 1755px;
    width: 100%;
    padding: 0px 50px;
    margin: 0 auto;
}

.main-header--one__bottom-inner {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.main-header--one__bottom .main-menu--1 {
    position: relative;
    display: block;
}

.main-header--one__bottom-left {
    position: relative;
    display: block;
    float: left;
}

.main-header--one__bottom-middel {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
}

.main-header--one__bottom-right {
    position: relative;
    display: flex;
    align-items: center;
}

.main-header--one__bottom-right .search-cart {
    position: relative;
    display: block;
    padding-right: 40px;
}

.main-header--one__bottom-right .search-cart a {
    position: relative;
    display: inline-block;
    color: var(--thm-primary);
    font-size: 25px;
    font-weight: 700;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.main-header--one__bottom-right .search-cart a:hover {
    color: var(--thm-base);
}

.main-header--one__bottom-right .search-cart a+a {
    padding-left: 25px;
}

.main-header--one__bottom-right .search-cart a span::before {}

.main-header--one__bottom-right .contact-box {
    position: relative;
    display: flex;
    align-items: center;
    padding-left: 40px;
    line-height: 0;
}

.main-header--one__bottom-right .contact-box::before {
    position: absolute;
    top: 9px;
    left: 0;
    bottom: 9px;
    width: 1px;
    background: #eceae0;
    content: "";
}

.main-header--one__bottom-right .contact-box .icon {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--thm-secondary);
    text-align: center;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.main-header--one__bottom-right .contact-box .icon:hover {
    background-color: var(--thm-base);
}

.main-header--one__bottom-right .contact-box .icon span::before {
    position: relative;
    display: inline-block;
    color: #ffffff;
    font-size: 25px;
    line-height: 50px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.main-header--one__bottom-right .contact-box .icon:hover span::before {
    color: var(--thm-primary);
}

.main-header--one__bottom-right .contact-box .text {
    position: relative;
    display: block;
    padding-left: 20px;
}

.main-header--one__bottom-right .contact-box .text p {
    color: var(--thm-color-1);
    font-size: 13px;
    line-height: 22px;
}

.main-header--one__bottom-right .contact-box .text a {
    color: var(--thm-primary);
    font-size: 18px;
    line-height: 22px;
    font-weight: 700;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.main-header--one__bottom-right .contact-box .text a:hover {
    color: var(--thm-base);
}


/***
=============================================
    Main Header Two
=============================================
***/

.main-header--one--two {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    z-index: 999;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.main-header--one--two .main-header--one__bottom-middel {
    position: relative;
    display: inline-block;
    top: auto;
    left: auto;
    transform: translateY(0%) translateX(0%);
    z-index: 1;
    padding-right: 120px;
}

.main-header--one--two .main-header--one__bottom-middel::before {
    position: absolute;
    top: -31px;
    right: 0;
    bottom: -29px;
    width: 1px;
    background: rgba(255, 0255, 255, 0.1);
    content: "";
    z-index: -1;
}

.main-header--one--two .main-header--one__bottom-left {
    padding-left: 116px;
}

.main-header--one--two .main-menu .main-menu__list>li>a {
    color: #ffffff;
}

.main-header--one--two .main-header--one__bottom-right .contact-box::before {
    position: absolute;
    top: -31px;
    left: 0;
    bottom: 0px;
    width: 1px;
    height: 110px;
    background: rgba(255, 255, 255, 0.1);
    content: "";
}

.main-header--one--two .main-header--one__bottom-right .search-cart a {
    color: #ffffff;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.main-header--one--two .main-header--one__bottom-right .search-cart a:hover {
    color: var(--thm-base);
}

.main-header--one--two .main-header--one__bottom-right .contact-box .icon {
    background-color: var(--thm-base);
}

.main-header--one--two .main-header--one__bottom-right .contact-box .icon:hover {
    background-color: var(--thm-primary);
}

.main-header--one--two .main-header--one__bottom-right .contact-box .icon span::before {
    color: var(--thm-primary);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.main-header--one--two .main-header--one__bottom-right .contact-box .icon:hover span::before {
    color: #ffffff;
}

.main-header--one--two .main-header--one__bottom-right .contact-box .text p {
    color: #ffffff;
}

.main-header--one--two .main-header--one__bottom-right .contact-box .text a {
    color: #ffffff;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.main-header--one--two .main-header--one__bottom-right .contact-box .text a:hover {
    color: var(--thm-base);
}

.main-header--one--two .main-header--one__bottom-right .search-cart {
    padding-right: 120px;
}

.main-header--one--two .main-header--one__bottom-right .contact-box {
    padding-left: 120px;
}


/***
=============================================
    Slider One
=============================================
***/

.main-slider-one {
    position: relative;
    display: block;
}

.main-slider .swiper-slide {
    position: relative;
}

.main-slider-one .swiper-container {
    /* height: 59vh; */
    height: calc(100vh - (149px + 92px));
}

.main-slider .image-layer {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center bottom;
    transform: scale(1);
    transition: transform 7000ms ease;
    z-index: 1;
}

.main-slider .swiper-slide-active .image-layer {
    transform: scale(1.3);
}

.main-slider .image-layer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(var(--thm-primary-rgb), 0.65);
    content: "";
    z-index: 2;
}

.main-slider .container {
    position: relative;
    padding-top: 2em;
    z-index: 2;
}

.main-slider-inner {
    position: relative;
    display: block;
}

.main-slider__content {
    position: relative;
    display: block;
}

.main-slider-tagline {
    position: relative;
    display: inline-block;
    color: #ffffff;
    font-size: 16px;
    line-height: 26px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0;
    transition: all 1000ms ease;
    transform: translateY(80px);
}

.main-slider-one .swiper-slide-active .main-slider-tagline {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 1000ms;
}

.main-slider-tagline::before {
    position: absolute;
    left: 0;
    bottom: -3px;
    right: 0;
    width: 0px;
    background: #ffffff;
    height: 1px;
    content: "";
    transition: all 1500ms ease;
}

.main-slider-one .swiper-slide-active .main-slider-tagline::before {
    width: 100%;
    transition-delay: 1200ms;
}

.main-slider__title {
    color: #ffffff;
    font-size: 100px;
    line-height: 1em;
    font-family: var(--thm-font-3);
    margin-top: 22px;
    margin-bottom: 34px;
    opacity: 0;
    transition: all 1500ms ease;
    transform: translateY(80px);
}

.main-slider__title span {
    position: relative;
    display: inline-block;
}

.main-slider__title span.leaf {
    position: absolute;
    top: -50px;
    right: 22px;
}

.main-slider-one .swiper-slide-active .main-slider__title {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 1200ms;
}

.main-slider__text {
    color: #ffffff;
    font-size: 18px;
    line-height: 36px;
    font-weight: 500;
    opacity: 0;
    transition: all 1500ms ease;
    transform: translateY(80px);
}

.main-slider-one .swiper-slide-active .main-slider__text {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 1600ms;
}

.main-slider__button-box {
    position: relative;
    display: inline-block;
    margin-top: 38px;
    opacity: 0;
    transition: all 2000ms ease;
    transform: translateY(80px);
}

.main-slider__button-box .arrow-icon {
    position: absolute;
    top: -50px;
    right: -175px;
}

.main-slider-one .swiper-slide-active .main-slider__button-box {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 2000ms;
}

.main-slider__nav {
    position: absolute;
    display: block;
    align-items: flex-start;
    bottom: 50px;
    right: 0;
    width: 150px;
    z-index: 100;
}

.main-slider__nav .swiper-button-next,
.main-slider__nav .swiper-button-prev {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    z-index: 100;
    width: 50px;
    height: 50px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 15px;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.4);
    margin: 10px 0px;
    text-align: center;
    transition: all 500ms ease;
    border-radius: 50%;
}

.main-slider__nav .swiper-button-next:hover,
.main-slider__nav .swiper-button-prev:hover {
    color: #ffffff;
    background: transparent;
    border: 2px solid #ffffff;
}

.main-slider__nav .swiper-button-next::after,
.main-slider__nav .swiper-button-prev::after {
    display: none;
}

.main-slider__nav .swiper-button-prev {
    margin-bottom: 0px;
}

.main-slider__nav .swiper-button-prev .icon-left-arrow {
    position: relative;
}

.main-slider__nav .swiper-button-prev {
    position: relative;
    transform: rotate(180deg);
}

#main-slider-pagination {
    position: absolute;
    left: 55px;
    bottom: 60px;
    width: 26px;
    z-index: 10;
}

#main-slider-pagination .swiper-pagination-bullet {
    position: relative;
    display: block;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #ffffff;
    opacity: 0.4;
}

#main-slider-pagination .swiper-pagination-bullet+.swiper-pagination-bullet {
    margin-top: 10px;
}

#main-slider-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    position: relative;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: #ffffff;
    left: -2px;
    opacity: 1;
}


/***
=============================================
    Slider Two
=============================================
***/

.main-slider-one--two {
    position: relative;
    display: block;
}

.main-slider.main-slider-one--two .container {
    padding-top: 321px;
    padding-bottom: 255px;
}

.main-slider-one--two .main-slider__title {
    font-family: var(--thm-font-2);
}

.main-slider-one--two .main-slider__title span {
    color: var(--thm-base);
    font-family: var(--thm-font-3);
}

.main-slider-one--two .main-slider__button-box {
    margin-top: 2px;
}


/***
=============================================
    Page Header
=============================================
***/

.page-header {
    position: relative;
    display: block;
    background-attachment: scroll;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 120px 0px 120px;
    z-index: 1;
    overflow: hidden;
}

.page-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: rgba(var(--thm-primary-rgb), 0.7);
    z-index: -1;
}

.page-header__inner {
    position: relative;
    display: block;
}

.page-header__inner .thm-breadcrumb {
    position: relative;
    display: inline-block;
    margin-bottom: 11px;
    overflow: hidden;
}

.page-header__inner .thm-breadcrumb::before {
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    height: 1px;
    background: #ffffff;
    content: "";
}

.page-header__inner .thm-breadcrumb li {
    position: relative;
    display: inline-block;
    color: #ffffff;
    font-size: 14px;
    line-height: 24px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-family: var(--thm-font);
}

.page-header__inner .thm-breadcrumb li+li {
    padding-left: 30px;
}

.page-header__inner .thm-breadcrumb li+li::before {
    content: "/";
    position: absolute;
    left: 12px;
}

.page-header__inner .thm-breadcrumb li a {
    color: #ffffff;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.page-header__inner .thm-breadcrumb li a:hover {
    color: var(--thm-base);
}

.page-header__inner h2 {
    color: #ffffff;
    font-size: 40px;
    line-height: 1em;
    letter-spacing: -0.04em;
}

.industry_first {
    color: #fe6920;
    font-weight: 600;
    text-transform: uppercase;
    display: block;
}


/***
=============================================
    Highlights
=============================================
***/

.highlights_section .highlights_wrapper {
    background-color: rgb(245 245 245);
    display: flex;
    padding: 12px 120px;
    justify-content: center;
    align-items: center;
}

.highlights_section .highlights_wrapper .single_achieve_wrapper {
    display: flex;
    align-items: center;
}

.highlights_section .highlights_wrapper .single_achieve_wrapper .achieve_icons {
    margin-right: 20px;
}

.highlights_section .highlights_wrapper .single_achieve_wrapper img {
    width: 40px;
    height: 40px;
}

.highlights_section .highlights_wrapper .single_achieve_wrapper .description_wrapper {
    height: fit-content;
    margin: 10px 0;
}

.highlights_section .highlights_wrapper .single_achieve_wrapper .description_wrapper p {
    font-size: 0.8em;
    color: #000000;
    line-height: 24px;
}

.highlights_section .highlights_wrapper .single_achieve_wrapper .description_wrapper p:first-child {
    font-size: 17px;
    font-weight: 600;
}


/***
=============================================
    About One
=============================================
***/

.about-one {
    position: relative;
    display: block;
    background: #ffffff;
    padding: 120px 0px 120px;
    z-index: 1;
}

.about-one__bg {
    position: absolute;
    bottom: 25px;
    right: 0;
    z-index: -1;
}

.about-one__left {
    position: relative;
    display: block;
    max-width: 600px;
    width: 100%;
}

.about-one__left-img {
    position: relative;
    display: block;
}

.about-one__left-img::before {
    position: absolute;
    left: -30px;
    bottom: 0;
    width: 30px;
    height: 330px;
    background: var(--thm-base);
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    content: "";
}

.about-one__left-img-inner {
    position: relative;
    display: block;
    overflow: hidden;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

.about-one__left-img-inner::before {
    position: absolute;
    top: 0;
    left: -100%;
    display: block;
    content: "";
    width: 50%;
    height: 100%;
    background: linear-gradient( to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
    transform: skewX(-25deg);
    z-index: 2;
}

.about-one__left:hover .about-one__left-img-inner::before {
    -webkit-animation: shine 1.3s;
    animation: shine 1.3s;
}

.about-one__left-img-inner img {
    width: 100%;
}

.about-one__left-overlay {
    position: absolute;
    display: flex;
    align-items: center;
    background: var(--thm-secondary);
    border-radius: 10px;
    padding: 40px 60px 40px;
    bottom: -50px;
    left: 0;
    right: 0;
    margin-left: 40px;
    margin-right: 40px;
    z-index: 5;
}

.about-one__left-overlay .icon {
    position: relative;
    display: block;
    padding-right: 30px;
}

.about-one__left-overlay .icon span::before {
    color: var(--thm-base);
    font-size: 60px;
}

.about-one__left-overlay .title {
    position: relative;
    display: block;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    padding-left: 30px;
}

.about-one__left-overlay .title h2 {
    position: relative;
    display: block;
}

.about-one__left-overlay .title h2 span {
    color: #ffffff;
    font-size: 54px;
    line-height: 1em;
    font-weight: 500;
    letter-spacing: 0.07em;
    font-family: var(--thm-font-3);
}

.about-one__left-overlay .title p {
    color: #ffffff;
    font-size: 16px;
    line-height: 30px;
    font-weight: 500;
}

.about-one__content {
    position: relative;
    display: block;
    max-width: 485px;
    width: 100%;
    margin-left: 70px;
}

.about-one__content-title {
    color: #6d8c54;
    font-size: 24px;
    line-height: 26px;
    font-weight: 700;
}

.about-one__content-text {
    position: relative;
    display: block;
    margin-top: 39px;
}

.about-one__content-list {
    position: relative;
    display: block;
    margin-top: 38px;
}

.about-one__content-list li .content {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 6px;
}

.about-one__content-list li:last-child {
    margin-bottom: 0;
}

.about-one__content-list li .icon {
    position: relative;
    display: block;
}

.about-one__content-list li .icon i::before {
    color: var(--thm-base);
    font-size: 15px;
}

.about-one__content-list li .text {
    position: relative;
    display: block;
    padding-left: 20px;
}

.about-one__content-list li .text p {
    color: var(--thm-primary);
    font-weight: 500;
}

.about-one__content-video-box {
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 48px;
}

.about-one__content-video-box-img {
    position: relative;
    display: block;
    border-radius: 10px;
    overflow: hidden;
    max-width: 160px;
    width: 100%;
    z-index: 1;
}

.about-one__content-video-box-img::before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: rgba(var(--thm-primary-rgb), 0.5);
    content: "";
}

.about-one__content-video-box-img img {
    width: 100%;
}

.about-one__content-video-box-img .icon {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-one__content-video-box-img .icon a {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--thm-base);
    text-align: center;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.about-one__content-video-box-img .icon a:hover {
    background: var(--thm-primary);
}

.about-one__content-video-box-img .icon a::before,
.about-one__content-video-box-img .icon a::after {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: transparent;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-animation-delay: 0.9s;
    animation-delay: 0.9s;
    content: "";
    position: absolute;
    box-shadow: 0 0 0 0 rgb(255 255 255 / 60%);
    -webkit-animation: ripple 3s infinite;
    animation: ripple 3s infinite;
    transition: all 0.4s ease;
}

.about-one__content-video-box-img .icon a::after {
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
}

.about-one__content-video-box-img .icon a span::before {
    color: var(--thm-primary);
    font-size: 10px;
    line-height: 40px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.about-one__content-video-box-img .icon a:hover span::before {
    color: #ffffff;
}

.about-one__content-video-box-title {
    position: relative;
    display: block;
    padding-left: 30px;
}

.about-one__content-video-box-title p {
    font-size: 14px;
    line-height: 24px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.about-one__content-video-box-title h3 {
    font-size: 20px;
    line-height: 30px;
    letter-spacing: -0.02em;
}


/***
=============================================
    Features One
=============================================
***/

.features-one {
    position: relative;
    display: block;
    background: #ffffff;
    padding: 0px 0px 90px;
}

.features-one__single {
    position: relative;
    display: block;
    margin-bottom: 30px;
    z-index: 1;
}

.features-one__single-bg {
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    background-attachment: scroll;
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 310px;
    opacity: 0.15;
    z-index: -1;
}

.features-one__single.style2 {
    position: relative;
    display: block;
    background: var(--thm-base);
    border-radius: 10px;
    padding: 40px 0px 40px;
}

.features-one__single.style2 .features-one__single-img {
    position: relative;
    display: block;
    width: 195px;
    border-radius: 50%;
    margin: 0 auto;
}

.features-one__single.style2 .features-one__single-title {
    position: relative;
    display: block;
    background: transparent;
    padding: 27px 0px 27px;
}

.features-one__single.style2 .features-one__single-title h3 {
    font-size: 46px;
    line-height: 1.2em;
    font-weight: 400;
    font-family: var(--thm-font-3);
}

.features-one__single.style2 .features-one__single-title h3 a:hover {
    color: var(--thm-color-1);
}

.features-one__single.style2 .button {
    position: relative;
    display: block;
}

.features-one__single.style2 .button .thm-btn {
    background: var(--thm-primary);
    color: #ffffff;
    padding: 8px 40px 8px;
}

.features-one__single.style2 .button .thm-btn::before {
    background: rgba(255, 0255, 255, 0.15);
}

.features-one__single-img {
    position: relative;
    display: block;
    border-radius: 10px;
    overflow: hidden;
}

.features-one__single-img::before {
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    content: "";
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    opacity: 0;
    z-index: 1;
}

.features-one__single:hover .features-one__single-img::before {
    -webkit-animation: circle 0.75s;
    animation: circle 0.75s;
}

.features-one__single-img img {
    width: 100%;
    transform: scale(1);
    transition: all 0.7s ease 0s;
}

.features-one__single:hover .features-one__single-img img {
    transform: scale(1.1);
}

.features-one__single-title {
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    background: #ffffff;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    padding: 35px 0px 10px;
    margin-left: 20px;
    margin-right: 20px;
    z-index: 5;
}

.features-one__single-title h3 {
    font-size: 24px;
    line-height: 27px;
}

.features-one__single-title h3 a {
    color: var(--thm-primary);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.features-one__single-title h3 a:hover {
    color: var(--thm-base);
}

.features-one--services {
    position: relative;
    display: block;
    padding: 120px 0px 120px;
}


/***
=============================================
    Vedio One
=============================================
***/

.video-one {
    position: relative;
    display: block;
    padding: 100px 0px 100px;
    background-attachment: scroll;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 1;
}

.video-one::before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: rgba(var(--thm-primary-rgb), 0.6);
    z-index: -1;
    content: "";
}

.video-one-border {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    border-right: 1px solid rgba(255, 0255, 255, 0.1);
    width: 14.29%;
    z-index: -1;
}

.video-one-border-two {
    left: 14.29%;
}

.video-one-border-three {
    left: 28.59%;
}

.video-one-border-four {
    left: 42.88%;
}

.video-one-border-five {
    left: 57.17%;
}

.video-one-border-six {
    left: 71.46%;
}

.video-one__wrpper {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.video-one__left {
    position: relative;
    display: block;
}

.video-one__title {
    color: #ffffff;
    font-size: 42px;
    line-height: 1.2em;
    letter-spacing: -0.04em;
}

.video-one__btn {
    position: relative;
    display: block;
    margin-top: 61px;
}

.video-one__right {
    position: relative;
    display: block;
    width: 245px;
}

.video-one__right .icon {
    position: relative;
    display: inline-block;
}

.video-one__right .icon a {
    position: relative;
    display: inline-block;
    width: 100px;
    height: 100px;
    line-height: 100px;
    color: #ffffff;
    font-size: 25px;
    text-align: center;
    border-radius: 50%;
    border: 2px solid #ffffff;
    background: transparent;
    z-index: 1;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.video-one__right .icon a:hover {
    color: var(--thm-base);
}

.video-one__right .icon .border-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1px solid #ffffff;
    animation: squares 2.9s linear 0s infinite;
    -webkit-animation: squares 2.9s linear 0s infinite;
    -ms-animation: squares 2.9s linear 0s infinite;
    -o-animation: squares 2.9s linear 0s infinite;
    -webkit-animation-play-state: running;
    animation-play-state: running;
    opacity: 0;
    border-radius: 50%;
}

.video-one__right .icon .border-animation.border-2 {
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
}

.video-one__right .icon .border-animation.border-3 {
    -webkit-animation-delay: 2s;
    animation-delay: 2s;
}

.video-one__right .title {
    position: relative;
    display: block;
    padding-left: 55px;
    margin-top: 7px;
}

.video-one__right .title h2 {
    color: var(--thm-base);
    font-size: 30px;
    line-height: 40px;
    font-weight: 400;
    font-family: var(--thm-font-3);
}


/***
=============================================
    Services One
=============================================
***/

.services-one {
    position: relative;
    display: block;
    background: #ffffff;
    padding: 80px 0px 80px;
    overflow: hidden;
    z-index: 1;
}

.services-one .sec-title {
    margin-bottom: 54px;
}

.services-one__bg {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 508px;
    background: #f6f4ec;
    z-index: -1;
}

.services-one__single {
    position: relative;
    display: block;
    margin-bottom: 30px;
    box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    overflow: hidden;
}

.services-one__single-img {
    position: relative;
    display: block;
    padding-bottom: 55px;
    background: #ffffff;
    z-index: 1;
}

.services-one__single-img::before {
    position: absolute;
    bottom: 50px;
    left: 0;
    right: 0;
    width: 100%;
    height: 5px;
    background: var(--thm-base);
    transform: scaleX(0);
    transition: all 500ms ease;
    content: "";
    z-index: 1;
}

.services-one__single:hover .services-one__single-img::before {
    transform: scaleX(1);
}

.services-one__single-img-inner {
    position: relative;
    display: block;
    overflow: hidden;
    z-index: 1;
}

.services-one__single-img-inner::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    background-color: rgba(var(--thm-primary-rgb), 0.5);
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    transform: scaleX(0);
    transition: all 500ms ease;
    z-index: 1;
}

.services-one__single:hover .services-one__single-img-inner::before {
    transform: scaleX(1);
}

.services-one__single-img-inner img {
    width: 100%;
    transition: all 500ms ease;
    transform: scale(1);
}

.services-one__single:hover .services-one__single-img-inner img {
    transform: scale(1.05);
}

.services-one__single-img-icon {
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    margin: 0 auto;
    width: 110px;
    height: 110px;
    line-height: 110px;
    background: #ffffff;
    color: var(--thm-base);
    font-size: 60px;
    border-radius: 50%;
    text-align: center;
    box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
    z-index: 5;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.services-one__single:hover .services-one__single-img-icon {
    color: var(--thm-primary);
}

.services-one__single-img-icon::before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    content: "";
    border-radius: 50%;
    z-index: -1;
    transform: scale(0);
    transform-origin: center;
    transform-style: preserve-3d;
    transition: all 0.5s cubic-bezier(0.62, 0.21, 0.45, 1.52);
    background: var(--thm-base);
}

.services-one__single:hover .services-one__single-img-icon::before {
    transform: scaleX(1);
}

.services-one__single-content {
    position: relative;
    display: block;
    padding: 13px 40px 40px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    z-index: 1;
}

.services-one__single-content h3 {
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 15px;
}

.services-one__single-content h3 a {
    color: var(--thm-primary);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.services-one__single-content h3 a:hover {
    color: var(--thm-base);
}

.services-one__single-content p {
    font-size: 16px;
    line-height: 30px;
}

.services-one__single-content .read-more-btn {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--thm-base);
    margin-top: 15px;
    z-index: 1;
}

.services-one__single-content .read-more-btn::before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    content: "";
    border-radius: 50%;
    z-index: -1;
    transform: scale(0);
    transform-origin: center;
    transform-style: preserve-3d;
    transition: all 0.4s cubic-bezier(0.62, 0.21, 0.45, 1.52);
    background: var(--thm-secondary);
    z-index: -1;
}

.services-one__single-content .read-more-btn:hover:before {
    transform: scaleX(1);
}

.services-one__single-content .read-more-btn span::before {
    position: relative;
    display: inline-block;
    color: var(--thm-primary);
    font-size: 20px;
    line-height: 50px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.services-one__single-content .read-more-btn:hover span::before {
    color: #ffffff;
}


/***
=============================================
    Projects One
=============================================
***/

.projects-one {
    position: relative;
    display: block;
    background: #ffffff;
    padding: 0px 0px 80px;
}

.projects-one .auto-container {
    max-width: 1720px;
    width: 100%;
}

.projects-one .sec-title {
    margin-bottom: 54px;
}

.projects-one__single {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

.projects-one__single-img {
    position: relative;
    display: block;
    border-radius: 10px;
    overflow: hidden;
}

.projects-one__single-img img {
    width: 100%;
}

.projects-one__single-img::before {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    content: "";
    background-color: rgba(var(--thm-primary-rgb), 0.99);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    transform: scaleY(0);
    opacity: 0;
    z-index: 1;
}

.projects-one__single:hover .projects-one__single-img::before {
    opacity: 0.7;
    transform: scaleY(1);
}

.projects-one__single-img .overlay-content {
    position: absolute;
    left: 20px;
    bottom: 0;
    right: 20px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    transform: scaleY(0);
    z-index: 1;
}

.projects-one.digitised .projects-one__single-img .overlay-content {
    position: absolute;
    left: 0px;
    bottom: 0;
    right: 0px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    transform: scaleY(1);
    z-index: 1;
    /*     opacity: .90; */
}

.projects-one.digitised .overlay-content .h3 ul li {
    font-size: 15px;
    line-height: 22px;
    color: #fff;
    list-style: circle;
    font-family: var(--thm-font);
}

.projects-one.digitised1 .projects-one__single-img .overlay-content {
    position: absolute;
    left: 0px;
    bottom: 0;
    right: 0px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    transform: scaleY(1);
    z-index: 1;
    opacity: 0.9;
}

.projects-one.digitised1 .projects-one__single-img .overlay-content p {
    background: var(--thm-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.projects-one.digitised1 .projects-one__single-img .overlay-content p a:hover {
    color: white;
}

.projects-one.digitised1 .overlay-content .h3 ul li {
    font-size: 14px;
    line-height: 22px;
    color: #fff;
    list-style: circle;
}

.projects-one__single:hover .projects-one__single-img .overlay-content {
    transform: scaleY(1);
}

.projects-one__single-img .overlay-content p {
    position: relative;
    display: inline-block;
    color: var(--thm-tertiary);
    font-size: 13px;
    line-height: 22px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    background: var(--thm-base);
    padding: 5px 20px 5px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    width: 100%;
    border-radius: 0;
}

.projects-one__single-img .overlay-content .h3 {
    position: relative;
    display: block;
    font-size: 24px;
    line-height: 34px;
    font-weight: 400;
    background: rgba(109, 140, 84, 0.85);
    border-top-right-radius: 10px;
    padding: 0 !important;
    height: 0 !important;
    margin-bottom: 0;
}

.digitised .projects-one__single:hover .h3 {
    height: auto !important;
    padding: 25px 40px 27px !important;
}

.projects-one__single-img .overlay-content .h3 a {
    color: #ffffff;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.projects-one__single-img .overlay-content .h3 a:hover {
    color: var(--thm-base);
}

.projects-one__carousel.owl-carousel .owl-dots.disabled,
.projects-one__carousel.owl-carousel .owl-nav.disabled {
    display: none;
}


/***
=============================================
    Testimonials One
=============================================
***/

.testimonials-one {
    position: relative;
    display: block;
    padding: 80px 0px 80px;
    background-attachment: scroll;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: 1;
}

.testimonials-one::before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: #f6f4ec;
    opacity: 0.93;
    content: "";
    z-index: -1;
}

.testimonials-one__left {
    position: relative;
    display: block;
    z-index: 5;
}

.testimonials-one__left .sec-title {
    margin-bottom: 0;
}

.testimonials-one__right {
    position: relative;
    display: block;
}

.testimonials-one__single {
    position: relative;
    display: block;
    background: #ffffff;
    padding: 39px 50px 50px;
    box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
    border-radius: 10px;
}

.testimonials-one__single-text {}

.testimonials-one__single-client-info {
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 19px;
}

.testimonials-one__single-client-info-img {
    position: relative;
    display: block;
}

.testimonials-one__single-client-info-img-inner {
    position: relative;
    display: block;
    border-radius: 50%;
    overflow: hidden;
}

.testimonials-one__single-client-info-img img {}

.testimonials-one__single-client-info-img .icon {
    position: absolute;
    top: 25px;
    right: -13px;
    width: 30px;
    height: 30px;
    line-height: 26px;
    border-radius: 50%;
    background: var(--thm-base);
    text-align: center;
}

.testimonials-one__single-client-info-img .icon span::before {
    position: relative;
    display: inline-block;
    color: var(--thm-primary);
    font-size: 10px;
    transform: rotate(180deg);
}

.testimonials-one__single-client-info-title {
    position: relative;
    display: block;
    padding-left: 38px;
}

.testimonials-one__single-client-info-title h4 {
    color: var(--thm-secondary);
    font-size: 18px;
    line-height: 26px;
    font-family: var(--thm-font);
}

.testimonials-one__single-client-info-title p {
    font-size: 16px;
    line-height: 26px;
}

.testimonials-one__carousel.owl-theme .owl-nav {
    margin-top: 10px;
    position: absolute;
    left: auto;
    top: auto;
    left: -404px;
    /* top: 251px; */
    bottom: -55px;
}

.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev {
    padding: 0 !important;
    font: inherit;
    width: 50px;
    height: 50px;
    line-height: 50px;
    background: transparent;
    border-radius: 50%;
    border: 2px solid #c4c7bc;
    color: #c4c7bc;
    font-size: 15px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.owl-carousel .owl-nav button.owl-next span,
.owl-carousel .owl-nav button.owl-prev span {
    font-weight: 600;
}

.owl-carousel .owl-nav button.owl-prev .left {
    position: relative;
    display: inline-block;
    transform: rotate(180deg);
}

.owl-carousel .owl-nav button.owl-next:hover,
.owl-carousel .owl-nav button.owl-prev:hover {
    border: 2px solid var(--thm-primary);
    color: var(--thm-primary);
    background: transparent;
}

.testimonials-one__carousel.owl-theme .owl-stage-outer {
    overflow: visible;
}

.testimonials-one__carousel .owl-stage-outer .owl-item {
    opacity: 0;
    transform: scale(0);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.testimonials-one__carousel .owl-stage-outer .owl-item.active {
    opacity: 1;
    transform: scale(1);
    transition: all 100ms linear;
}


/***
=============================================
    Providing Quality One
=============================================
***/

.providing-quality-one {
    position: relative;
    display: block;
    background: var(--thm-secondary);
    z-index: 1;
}

.providing-quality-one__bg {
    position: absolute;
    bottom: -225px;
    right: 0;
    opacity: 0.07;
    z-index: -1;
}

.providing-quality-one__logo {
    position: absolute;
    top: 215px;
    left: 0;
    right: 0;
    text-align: center;
    -webkit-animation: sunMove 10s linear infinite;
    animation: sunMove 10s linear infinite;
    z-index: 1;
}

.providing-quality-one .container-fullwidth {
    position: relative;
    display: block;
}

.providing-quality-one__img {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 50%;
    background-attachment: scroll;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: left top;
}

.providing-quality-one__img img {
    width: 100%;
}

.providing-quality-one__content-box {
    position: relative;
    display: block;
    max-width: 620px;
    padding-top: 120px;
    padding-bottom: 120px;
    padding-left: 120px;
    height: 100%;
}

.providing-quality-one__content-box .sec-title {
    margin-bottom: 44px;
}

.providing-quality-one__content-box .sec-title__tagline {
    color: #dbe6d2;
}

.providing-quality-one__content-box .sec-title__title {
    color: #ffffff;
}

.providing-quality-one__content-box-list {
    position: relative;
    display: block;
    overflow: hidden;
}

.providing-quality-one__content-box-list-item {
    position: relative;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgb(255, 255, 255, 0.2);
    margin-top: 51px;
    padding-bottom: 49px;
}

.providing-quality-one__content-box-list-item:first-child {
    margin-top: 0;
}

.providing-quality-one__content-box-list-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.providing-quality-one__content-box-list-item .icon {
    position: relative;
    display: block;
    color: var(--thm-base);
    font-size: 60px;
    transition-delay: 0.1s;
    transition: all 500ms ease;
}

.providing-quality-one__content-box-list-item:hover .icon {
    transform: rotateY(180deg);
    transition-delay: 0.1s;
}

.providing-quality-one__content-box-list-item .text {
    position: relative;
    display: block;
    padding-left: 40px;
}

.providing-quality-one__content-box-list-item .text h3 {
    color: #ffffff;
    font-size: 24px;
    line-height: 34px;
    letter-spacing: -0.02em;
    margin-bottom: 11px;
}

.providing-quality-one__content-box-list-item .text p {
    color: #dbe6d2;
}


/***
=============================================
    Blog One
=============================================
***/

.blog-one {
    position: relative;
    display: block;
    background: #ffffff;
    padding: 120px 0px 90px;
    overflow: hidden;
    z-index: 1;
}

.blog-one__bg {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 557px;
    background: #f6f4ec;
    z-index: -1;
}

.blog-one .sec-title {
    margin-bottom: 53px;
}

.blog-one__single {
    position: relative;
    display: block;
    margin-bottom: 30px;

    border-radius: 10px;
}

.mediaOnly{
    border: 1px solid rgb(238, 238, 238);
}

.blog-one__single-img {
    position: relative;
    display: block;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    overflow: hidden;
    z-index: 1;
}

.blog-one__single-img img {
    width: 100%;
    transform: scale(1);
    transition-delay: 0.1s;
    transition-timing-function: ease-in-out;
    transition-duration: 0.7s;
}

.blog-one__single:hover .blog-one__single-img img {
    transform: scale(1.2) rotate(1deg);
}

.blog-one__single-img::before {
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: rgba(var(--thm-primary-rgb), 0.5);
    transition-delay: 0.1s;
    transition-timing-function: ease-in-out;
    transition-duration: 0.5s;
    transition-property: all;
    opacity: 1;
    transform-origin: top;
    transform-style: preserve-3d;
    transform: scaleY(0);
    z-index: 1;
}

.blog-one__single:hover .blog-one__single-img::before {
    transform: scaleY(1);
}

.blog-one__single-img .date-box {
    position: absolute;
    left: 40px;
    bottom: 0;
    background: var(--thm-base);
    padding: 3px 20px 3px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    line-height: 0;
    z-index: 5;
}

.blog-one__single-img .date-box span {
    color: var(--thm-primary);
    font-size: 12px;
    line-height: 22px;
    font-weight: 700;
}

.blog-one__single-img .overlay-icon {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 3;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    transition: 0.9s;
    transform: perspective(400px) scaleY(0);
    transform-origin: bottom;
}

.blog-one__single:hover .blog-one__single-img .overlay-icon {
    transform: perspective(400px) scaleY(1);
}

.blog-one__single .blog-one__single-img .overlay-icon a {
    position: relative;
    display: inline-block;
}

.blog-one__single .blog-one__single-img .overlay-icon span {
    color: #ffffff;
    font-size: 30px;
    line-height: 30px;
}

.blog-one__single-content {
    position: relative;
    display: block;
    background: #ffffff;
    box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
    padding: 20px 40px 32px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.blog-one__single-content:hover {
    box-shadow: 0px 10px 60px 0px rgb(0, 0, 0, 0.1);
}

.blog-one__single-content .meta-info {
    position: relative;
    display: block;
    margin-bottom: 12px;
}

.blog-one__single-content .meta-info li {
    position: relative;
    display: inline-block;
    padding-left: 5px;
}

.blog-one__single-content .meta-info li:first-child {
    padding-left: 0;
}

.blog-one__single-content .meta-info li a {
    color: var(--thm-color-1);
    font-size: 14px;
    line-height: 24px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.blog-one__single-content .meta-info li a:hover {
    color: var(--thm-base);
}

.blog-one__single-content .meta-info li a i::before {
    position: relative;
    display: inline-block;
    color: var(--thm-secondary);
    font-size: 15px;
    padding-right: 5px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.blog-one__single-content .meta-info li a:hover i::before {
    color: var(--thm-base);
}

.blog-one__single-content h2 {
    font-size: 24px;
    line-height: 34px;
    font-family: var(--thm-font);
}

.blog-one__single-content h2 a {
    color: var(--thm-primary);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.blog-one__single-content h2 a:hover {
    color: var(--thm-base);
}

.blog-one--news .news-sidebar__btn {
    margin-top: 10px;
}


/***
=============================================
    Company Logos One
=============================================
***/

.company-logos-one {
    position: relative;
    display: block;
    padding: 80px 0px 80px;
    border-top: 1px solid #eceae0;
}

.company-logos-one .swiper-slide {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.company-logos-one .swiper-slide img {
    -webkit-transition: 500ms;
    transition: 500ms;
    opacity: 1;
    max-width: 100%;
    /* cursor: pointer; */
}

.company-logos-one .swiper-slide img:hover {
    opacity: 1;
}


/***
=============================================
    Company Logos One
=============================================
***/

.cta-one {
    position: relative;
    display: block;
    padding: 80px 0px 80px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: scroll;
    z-index: 1;
}

.cta-one::before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: rgba(var(--thm-base-rgb), 0.93);
    z-index: -1;
    content: "";
}

.cta-one__wrapper {
    position: relative;
    display: flex;
    align-items: center;
    /* justify-content: space-between; */
    justify-content: center;
}

.cta-one__left {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-one__left-icon {
    position: relative;
    display: inline-block;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: var(--thm-primary);
    text-align: center;
}

.cta-one__left-icon span::before {
    position: relative;
    display: inline-block;
    color: var(--thm-base);
    font-size: 60px;
    line-height: 110px;
}

.cta-one__left-title {
    position: relative;
    display: block;
    padding-left: 50px;
}

.cta-one__left-title h2 {
    font-size: 40px;
    line-height: 56px;
    font-family: var(--thm-font-3);
}

.cta-one__right {
    position: relative;
    display: block;
}

.cta-one__right-btn {
    position: relative;
    display: block;
}

.cta-one__right-btn .thm-btn {
    color: var(--thm-base);
    background: var(--thm-primary);
}

.cta-one__right-btn .thm-btn::before {
    background: rgba(var(--thm-base-rgb), 0.15);
}

.cta-one__right-btn .thm-btn:hover::before {
    background: #ffffff;
}

.cta-one__right-btn .thm-btn:hover {
    color: var(--thm-black);
}

.cta-two {
    padding-top: 80px;
    padding-bottom: 80px;
    position: relative;
}

.cta-two__shape::before {
    content: '';
    position: absolute;
    bottom: -22px;
    right: -15px;
    width: 171px;
    height: 171px;
    border-radius: 10px;
    background-color: #f6f4ec;
    z-index: 1;
}

.cta-two__shape::after {
    content: '';
    width: 41px;
    height: 41px;
    background-color: var(--agriox-base, #f1cf69);
    border-radius: 10px;
    position: absolute;
    right: 135px;
    bottom: -41px;
    z-index: 2;
}

.cta-two__inner {
    background-color: var(--agriox-primary, #334b35);
    border-radius: 10px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    padding-left: 50px;
}

.cta-two__inner::before {
    content: '';
    width: 24px;
    height: 100%;
    background-color: var(--agriox-base, #f1cf69);
    position: absolute;
    top: 0;
    left: 0;
}

@media (min-width: 992px) {
    .cta-two__title {
        padding-left: 45px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
    .cta-two__right {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
    .cta-two__list {
        margin: 0;
    }
}

.cta-two__title {
    margin: 0;
    color: #fff;
    font-size: 30px;
}

.cta-two__list {
    margin-top: 30px;
    margin-bottom: 20px;
}

.cta-two__right img {
    border-radius: 10px;
}

.cta-two__list li {
    position: relative;
    font-size: 16px;
    font-weight: 500;
    color: #b3c5b5;
    padding-left: 25px;
}

.cta-two__list li>i {
    font-size: 16px;
    position: absolute;
    top: 10px;
    left: 0;
    color: var(--agriox-base, #f1cf69);
}

.cta-two__list li>a:hover {
    color: #fff;
}


/***
=============================================
    Footer One
=============================================
***/

.footer-one {
    position: relative;
    display: block;
    z-index: 1;
}

.footer-one__top {
    position: relative;
    display: block;
    background: var(--thm-primary);
    padding: 50px 0px 50px;
}

.footer-one__top-wrapper {
    position: relative;
    display: block;
    z-index: 1;
}

.footer-one__bg {
    position: absolute;
    left: -25px;
    bottom: -110px;
    opacity: 0.02;
    z-index: -1;
}

.footer-widget__about {
    position: relative;
    display: block;
    margin-top: -15px;
}

.footer-widget__about-logo {
    position: relative;
    display: inline-block;
    margin-bottom: 5px;
}

.footer-widget__about-logo a {
    position: relative;
    display: inline-block;
}

.footer-widget__about-logo a img {
    filter: brightness(0) invert(1);
    width: 135px;
}

.footer-widget__about-text {
    position: relative;
    display: block;
    color: #b3c5b5;
    font-size: 16px;
    padding-bottom: 28px;
}

.footer-widget__about-contact-box {
    position: relative;
    display: block;
    border-top: 1px solid #465c48;
    padding-top: 29px;
}

.footer-widget__about-contact-box .phone {
    font-size: 15px;
    line-height: 36px;
    font-weight: 500;
}

.footer-widget__about-contact-box .phone a {
    color: #b3c5b5;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.footer-widget__about-contact-box .phone a:hover {
    color: var(--thm-base);
}

.footer-widget__about-contact-box .phone a i::before {
    position: relative;
    display: inline-block;
    color: var(--thm-base);
    font-size: 15px;
    padding-right: 10px;
}

.footer-widget__about-contact-box p {
    font-size: 15px;
    line-height: 36px;
    font-weight: 500;
}

.footer-widget__about-contact-box p a {
    color: #b3c5b5;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.footer-widget__about-contact-box p a:hover {
    color: var(--thm-base);
}

.footer-widget__about-contact-box p a i::before {
    position: relative;
    display: inline-block;
    color: var(--thm-base);
    font-size: 15px;
    padding-right: 10px;
}

.footer-widget__about-contact-box .text {
    color: #ffffff;
    font-size: 15px;
    line-height: 36px;
    font-weight: 500;
}

.footer-widget__about-contact-box .text i::before {
    position: relative;
    display: inline-block;
    color: var(--thm-base);
    font-size: 15px;
    padding-right: 10px;
}

.footer-widget__news {
    position: relative;
    display: block;
    margin-right: -50px;
}

.footer-widget__title {
    position: relative;
    display: block;
    color: #ffffff;
    font-size: 24px;
    line-height: 34px;
    letter-spacing: -0.02em;
    margin-bottom: 34px;
}

.footer-widget__iso-logo {
    filter: brightness(0) invert(1);
    height: 101px;
    margin-bottom: 15px;
}

.footer-widget__news-list {
    position: relative;
    display: block;
}

.footer-widget__news-list-item {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 38px;
}

.footer-widget__news-list-item:last-child {
    margin-bottom: 0;
}

.footer-widget__news-list-item-img {
    position: relative;
    display: block;
}

.footer-widget__news-list-item-img img {}

.footer-widget__news-list-item-title {
    position: relative;
    display: block;
    padding-left: 20px;
}

.footer-widget__news-list-item-title p {
    color: var(--thm-base);
    font-size: 14px;
    line-height: 24px;
    font-weight: 700;
    margin-bottom: 11px;
}

.footer-widget__news-list-item-title h5 {
    font-size: 16px;
    line-height: 26px;
    font-weight: 700;
    font-family: var(--thm-font);
}

.footer-widget__news-list-item-title h5 a {
    color: #ffffff;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.footer-widget__news-list-item-title h5 a:hover {
    color: var(--thm-base);
}

.footer-widget__explore {
    position: relative;
    display: block;
    margin-left: 50px;
}

.footer-widget__explore-list {
    position: relative;
    display: block;
    margin-top: -4px;
}

.footer-widget__explore-list-item {
    position: relative;
    display: block;
    margin-bottom: 10px;
}

.footer-widget__explore-list-item:last-child {
    margin-bottom: 0;
}

.footer-widget__explore-list-item a {
    position: relative;
    display: inline-block;
    color: #b3c5b5;
    font-size: 16px;
    line-height: 23px;
    font-weight: 400;
    font-family: var(--thm-font);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.footer-widget__explore-list-item a:hover {
    color: #ffffff;
}

.footer-widget__explore-list-item a::before {
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background: var(--thm-base);
    content: "";
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.footer-widget__explore-list-item:hover a::before {
    width: 100%;
}

.footer-widget__newletter {
    position: relative;
    display: block;
    margin-left: 45px;
}

.footer-widget__newletter-text {
    color: #b3c5b5;
    font-size: 16px;
    line-height: 34px;
    margin-top: -4px;
}

.subscribe-form {
    position: relative;
    display: block;
    width: 100%;
    margin-top: 33px;
}

.subscribe-form input[type="email"] {
    position: relative;
    display: block;
    width: 100%;
    height: 70px;
    padding: 0 40px;
    padding-right: 80px;
    background: #ffffff;
    border: none;
    color: var(--thm-color-1);
    font-size: 14px;
    font-weight: 400;
    font-style: normal;
    border-radius: 40px;
    transition: all 500ms ease;
    font-family: var(--thm-font);
    outline: none;
}

.subscribe-form input::-webkit-input-placeholder {
    color: var(--thm-color-1);
}

.subscribe-form input:-moz-placeholder {
    color: var(--thm-color-1);
}

.subscribe-form input::-moz-placeholder {
    color: var(--thm-color-1);
}

.subscribe-form input:-ms-input-placeholder {
    color: var(--thm-color-1);
}

.subscribe-form button {
    position: absolute;
    top: 10px;
    right: 10px;
    bottom: 10px;
    width: 50px;
    height: 50px;
    color: #ffffff;
    font-size: 12px;
    line-height: 50px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 50%;
    background: var(--thm-primary);
    transition: all 300ms ease 100ms;
    font-family: var(--thm-font);
}

.subscribe-form input[type="email"]:focus {
    color: var(--thm-color-1);
}

.subscribe-form input[type="email"]:focus+button,
.subscribe-form button:hover {
    color: #333029;
    background: var(--thm-base);
}

.footer-one__bottom {
    position: relative;
    display: block;
    background: var(--thm-secondary);
    padding: 22px 0px 20px;
}

.footer-one__bottom-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 9;
}

.footer-one__bottom-text {
    position: relative;
    display: block;
}

.footer-one__bottom-text p {
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
}

.footer-one__bottom-text p a {
    color: #ffffff;
    font-size: 16px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.footer-one__bottom-text p a:hover {
    color: var(--thm-base);
}

.footer-one__bottom-social-links {
    position: relative;
    display: block;
    overflow: hidden;
}

.footer-one__bottom-social-links ul {
    position: relative;
    display: block;
}

.footer-one__bottom-social-links ul li {
    position: relative;
    display: inline-block;
    float: left;
    margin-left: 30px;
}

.footer-one__bottom-social-links ul li:first-child {
    margin-right: 0;
}

.footer-one__bottom-social-links ul li a {
    position: relative;
    display: inline-block;
    color: #ffffff;
    font-size: 15px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.footer-one__bottom-social-links ul li a:hover {
    color: var(--thm-base);
}

.footer-one__bottom-social-links ul li a i {}


/***
=============================================
    Features One
=============================================
***/

.features-two {
    position: relative;
    display: block;
    padding: 80px 0px 80px;
    background-position: center center;
    background-attachment: scroll;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 1;
    counter-reset: count;
}

.features-two::before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: #8ebe74;
    z-index: -1;
    content: "";
}

.ourinvestor h2.sec-title__title {
    color: #fff;
}

.ourinvestor .features-two__call-box-inner .title p,
.ourinvestor .features-two__call-box-inner .title h2 {
    color: #fff;
}

.features-two__single {
    position: relative;
    display: block;
    background: #ffffff;
    padding: 40px 40px 30px;
    box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    border-radius: 10px;
    overflow: hidden;
    z-index: 1;
}

.features-two__single::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: var(--thm-primary);
    border-radius: 10px;
    transform: perspective(400px) scaleX(0);
    transform-origin: center;
    transition: all 500ms linear;
    transition-delay: 0.1s;
    z-index: -1;
}

.features-two__single:hover:before {
    opacity: 1;
    transform: perspective(400px) scaleX(1);
    transition: all 300ms linear;
    transition-delay: 0.1s;
}

.features-two__single::after {
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    background: rgba(255, 0255, 255, 0.1);
    width: 100%;
    height: 10px;
    border-top-left-radius: 10px;
    border-bottom-right-radius: 10px;
    transform: perspective(400px) scaleX(0);
    transform-origin: center;
    transition: all 500ms linear;
    transition-delay: 0.1s;
    z-index: -1;
    content: "";
}

.features-two__single:hover::after {
    opacity: 1;
    transform: perspective(400px) scaleX(1);
    transition: all 300ms linear;
    transition-delay: 0.1s;
}

.features-two__single-top {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 22px;
}

.features-two__single-top .icon {
    position: relative;
    display: inline-block;
    color: var(--thm-base);
    font-size: 65px;
    transition-delay: 0.3s;
    transition: all 500ms ease;
}

.features-two__single-top .icon span::before {}

.features-two__single:hover .features-two__single-top .icon {
    transform: rotateY(180deg);
    transition-delay: 0.3s;
}

.features-two__single-top .count-box {
    position: relative;
    display: block;
    color: #eceae0;
    font-size: 50px;
    line-height: 1.1em;
    font-weight: 400;
    font-family: var(--thm-font-3);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.features-two__single:hover .features-two__single-top .count-box {
    color: rgba(236, 234, 224, 0.2);
}

.features-two__single-top .count-box::before {
    counter-increment: count;
    content: "0" counter(count);
}

.features-two__single-title {
    position: relative;
    display: block;
}

.features-two__single-title h3 {
    font-size: 20px;
    line-height: 30px;
    font-family: var(--thm-font);
    margin-bottom: 3px;
}

.features-two__single-title h3 a {
    color: var(--thm-primary);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.features-two__single-title h3 a:hover {
    color: var(--thm-base);
}

.features-two__single:hover .features-two__single-title h3 a {
    color: #ffffff;
}

.features-two__single-title p {
    font-size: 16px;
    line-height: 30px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    margin-right: -5px;
}

.features-two__single:hover .features-two__single-title p {
    color: #b3c5b5;
}

.features-two__call-box {
    position: relative;
    display: block;
    margin-top: 20px;
}

.features-two__call-box-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.features-two__call-box-inner .img-box {
    position: relative;
    display: block;
    max-width: 75px;
    width: 100%;
}

.features-two__call-box-inner .img-box .icon {
    position: absolute;
    top: 12px;
    bottom: 0;
    right: -25px;
    width: 50px;
    height: 50px;
    background: #ffffff;
    border-radius: 50%;
    color: var(--thm-primary);
    font-size: 25px;
    line-height: 50px;
    text-align: center;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    z-index: 1;
}

.features-two__call-box-inner .img-box:hover .icon {
    background-color: var(--thm-primary);
    color: #ffffff;
}

.features-two__call-box-inner .img-box .inner {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 10px;
}

.features-two__call-box-inner .title {
    position: relative;
    display: block;
    line-height: 0;
    padding-left: 45px;
}

.features-two__call-box-inner .title p {
    color: var(--thm-primary);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 10px;
}

.features-two__call-box-inner .title h2 {
    font-size: 30px;
    line-height: 40px;
    font-weight: 700;
    font-family: var(--thm-font-3);
}


/***
=============================================
    About Two
=============================================
***/

.about-two {
    position: relative;
    display: block;
    background: #ffffff;
    padding: 120px 0px 106px;
    overflow: hidden;
    border-bottom: 1px solid #eceae0;
    z-index: 1;
}

.about-two__bg {
    position: absolute;
    bottom: -245px;
    right: 0;
    z-index: -1;
}

.about-two__img-box {
    position: relative;
    display: block;
    max-width: 500px;
    width: 100%;
    z-index: 1;
}

.about-two__img-box::before {
    position: absolute;
    top: -120px;
    left: -10000px;
    bottom: 100px;
    right: 100px;
    background: #f6f4ec;
    z-index: -1;
    content: "";
}

.about-two__img-box-img1 {
    position: relative;
    display: block;
    float: right;
}

.about-two__img-box-img1-inner {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 10px;
}

.about-two__img-box-img1-inner img {}

.about-two__img-box-img2 {
    position: absolute;
    left: -140px;
    bottom: 0;
}

.about-two__img-box-img2 .logo {
    position: absolute;
    top: -65px;
    right: -60px;
    z-index: 2;
    -webkit-animation: sunMove 10s linear infinite;
    animation: sunMove 10s linear infinite;
}

.about-two__img-box-img2-inner {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 10px;
}

.about-two__img-box-img2-inner img {}

.about-two__content-box {
    position: relative;
    display: block;
}

.about-two__content-box .sec-title {
    margin-bottom: 39px;
}

.about-two__content-box-text {}

.about-two__content-box-list {
    position: relative;
    display: block;
    margin-top: 24px;
}

.about-two__content-box-list-single {
    position: relative;
    display: block;
}

.about-two__content-box-list-single ul {
    position: relative;
    display: block;
}

.about-two__content-box-list-single ul li {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 6px;
}

.about-two__content-box-list-single ul li:last-child {
    margin-bottom: 0;
}

.about-two__content-box-list-single ul li .icon {
    position: relative;
    display: inline-block;
    padding-right: 15px;
}

.about-two__content-box-list-single ul li .icon i::before {
    position: relative;
    display: inline-block;
    color: var(--thm-base);
    font-size: 15px;
}

.about-two__content-box-list-single ul li .text {
    position: relative;
    display: block;
}

.about-two__content-box-list-single ul li .text p {
    color: var(--thm-primary);
}

.about-two__progress {
    position: relative;
    display: block;
    width: 100%;
    margin-top: 22px;
}

.about-two__progress-single {}

.about-two__progress-title {
    font-size: 16px;
    font-weight: 500;
    line-height: 40px;
    text-transform: capitalize;
    margin-bottom: 0px;
    font-family: var(--thm-font);
}

.about-two__progress .bar {
    position: relative;
    width: 100%;
    height: 13px;
    background: #f6f4ec;
    border-radius: 10px;
    margin-bottom: 6px;
}

.about-two__progress .bar-inner {
    position: relative;
    display: block;
    width: 0px;
    height: 13px;
    background: var(--thm-secondary);
    border-radius: 10px;
    -webkit-transition: all 1500ms ease;
    -ms-transition: all 1500ms ease;
    -o-transition: all 1500ms ease;
    -moz-transition: all 1500ms ease;
    transition: all 1500ms ease;
}

.about-two__progress .count-text {
    position: absolute;
    top: -32px;
    right: 0px;
    color: var(--thm-color-1);
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;
    text-align: center;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    transition: all 500ms ease;
    opacity: 1;
}

.about-two__author {
    position: relative;
    display: block;
    margin-top: 35px;
}

.about-two__author h2 {
    color: var(--thm-primary);
    font-size: 30px;
    line-height: 40px;
    font-weight: 500;
    font-family: var(--thm-font-3);
}

.about-two__author h2 span {
    color: var(--thm-color-1);
    font-size: 14px;
    font-weight: 400;
    font-family: var(--thm-font);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}


/***
=============================================
    Faq Two
=============================================
***/

.faq-one {
    position: relative;
    display: block;
    background-position: center center;
    background-attachment: scroll;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 120px 0px 110px;
    z-index: 1;
}

.faq-one::before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: rgba(246, 244, 236, 0.93);
    content: "";
    z-index: -1;
}

.faq-one__content {
    position: relative;
    display: block;
}

.faq-one__content .sec-title {
    margin-bottom: 43px;
}

.faq-one__inner-content {
    position: relative;
    display: block;
}

.faq-one__inner-content-left {
    position: relative;
    display: block;
}

.faq-one__inner-content-left .title {
    position: relative;
    display: block;
    margin-bottom: 34px;
}

.faq-one__inner-content-left .title h4 {
    color: var(--thm-secondary);
    font-size: 20px;
    line-height: 34px;
    font-family: var(--thm-font);
}

.faq-one__inner-content-left p {}

.faq-one__inner-content-list {
    position: relative;
    display: block;
}

.faq-one__inner-content-list ul {
    position: relative;
    display: block;
}

.faq-one__inner-content-list ul li {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 6px;
}

.faq-one__inner-content-list ul li:last-child {
    margin-bottom: 0;
}

.faq-one__inner-content-list ul li .icon {
    position: relative;
    display: inline-block;
}

.faq-one__inner-content-list ul li .icon i::before {
    color: var(--thm-base);
    font-size: 15px;
}

.faq-one__inner-content-list ul li .text {
    position: relative;
    display: inline-block;
    padding-left: 15px;
}

.faq-one__inner-content-list ul li .text p {
    color: var(--thm-primary);
    font-weight: 500;
}

.faq-one__btn {
    position: relative;
    display: block;
    margin-top: 49px;
}

.faq-one__accordions {
    position: relative;
    display: block;
    margin-left: 30px;
    z-index: 1;
}

.faq-one__accordions .accrodion {
    position: relative;
    display: block;
    background: #ffffff;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 10px;
    border: 1px solid transparent;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.faq-one__accordions .accrodion:nth-child(even) {
    background: #f6f4ec;
}

.faq-one__accordions .accrodion.active,
.faq-one__accordions .accrodion {
    border: 1px solid #eceae0;
    box-shadow: 0px 20px 20px 0px rgba(0, 0, 0, 0.03);
}


/* .faq-one__accordions--services-details.faq-one__accordions .accrodion .accrodion-title {
    background: #f6f4ec;
} */

.faq-one__accordions .accrodion::before {
    position: absolute;
    top: 0;
    right: 0px;
    bottom: 0;
    width: 10px;
    height: 0%;
    background: var(--thm-base);
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    content: "";
    z-index: 1;
    transition: all 500ms linear;
    transition-delay: 0.2s;
}

.faq-one__accordions .accrodion:nth-child(even):before {
    background: var(--thm-tertiary);
}

.faq-one__accordions .accrodion.active::before {
    height: 100%;
}

.faq-one__accordions .accrodion .accrodion-title {
    position: relative;
    display: block;
    cursor: pointer;
    background: #ffffff;
    padding: 26px 0px 26px;
    padding-left: 35px;
    padding-right: 35px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.faq-one__accordions .accrodion.active .accrodion-title {
    background: #ffffff;
}

.faq-one__accordions .accrodion .accrodion-title h4 {
    position: relative;
    color: var(--thm-primary);
    font-size: 20px;
    line-height: 30px;
    font-weight: 700;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    letter-spacing: -0.02em;
}

.faq-one__accordions .accrodion.active .accrodion-title h4 {
    color: var(--thm-primary);
}

.faq-one__accordions .accrodion .accrodion-title h4::before {
    content: "\e938";
    font-family: "icomoon" !important;
    font-weight: 900;
    font-size: 20px;
    color: var(--thm-base);
    position: absolute;
    top: 50%;
    right: 0;
    text-align: center;
    transform: translateY(-50%);
    transition: all 500ms ease;
}

.faq-one__accordions .accrodion.active .accrodion-title h4::before {
    content: "\e937";
    font-family: "icomoon" !important;
    color: var(--thm-primary);
}

.faq-one__accordions .accrodion .accrodion-content {
    position: relative;
    display: block;
    padding: 0px 35px 27px;
}

.faq-one__accordions .accrodion .accrodion-content .inner {
    position: relative;
    display: block;
}

.faq-one__accordions .accrodion .accrodion-content .inner p {
    font-size: 16px;
}

.faq-one__accordions.faq-one__accordions--services-details {
    margin-left: 0;
}

.faq-one__accordions--services-details.faq-one__accordions .accrodion.active .accrodion-title {
    background: inherit;
}

.faq-one--faq {
    position: relative;
    display: block;
    background: #f6f4ec;
}

.faq-one--faq .faq-one__accordions {
    margin-left: 0;
}


/***
=============================================
    Projects Two
=============================================
***/

.projects-one--two {
    position: relative;
    display: block;
    padding: 120px 0px 120px;
}

.projects-two__carousel.owl-carousel .owl-dots.disabled,
.projects-two__carousel.owl-carousel .owl-nav.disabled {
    display: none;
}

.projects-one--two--projects {
    position: relative;
    display: block;
    padding: 120px 0px 120px;
}

.projects-one--two--projects__wrapper {
    position: relative;
    display: block;
}

.projects-one--two--projects__btn {
    position: relative;
    display: block;
    margin-top: 10px;
}


/***
=============================================
    Story One
=============================================
***/

.story-one {
    position: relative;
    display: block;
    padding: 0px 0px 120px;
    z-index: 1;
}

.story-one__bg {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: -1;
    opacity: 0.05;
}

.story-one .auto-container {
    max-width: 1720px;
    width: 100%;
}

.story-one .row {
    margin-left: -0px;
    margin-right: -0px;
}

.story-one .row [class*="col-"] {
    padding-left: 0px;
    padding-right: 0px;
}

.story-one__img {
    position: relative;
    display: block;
    background-position: center center;
    background-attachment: scroll;
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 685px;
    z-index: 1;
}

.story-one__img::before {
    position: absolute;
    top: 120px;
    bottom: 120px;
    right: 0;
    width: 30px;
    background: var(--thm-base);
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    content: "";
    z-index: -1;
}

.story-one__counters {
    position: relative;
    display: block;
    background: #f6f4ec;
    padding: 120px 120px 121px;
    overflow: hidden;
    z-index: 1;
}

.story-one__counters .sec-title {
    margin-top: 0;
    margin-bottom: 43px;
}

.story-one__counters-text {}

.story-one__counters-box {
    position: relative;
    display: block;
    margin-top: 36px;
}

.story-one__counters-box ul {
    position: relative;
    display: block;
}

.story-one__counters-box-single {
    position: relative;
    display: inline-block;
    background: #ffffff;
    padding: 35px 0px 32px;
    width: 190px;
    float: left;
    border-radius: 10px;
    margin-right: 15px;
    z-index: 1;
}

.story-one__counters-box-single:last-child {
    margin-right: 0;
}

.story-one__counters-box-single::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: var(--thm-secondary);
    border-radius: 10px;
    transform: perspective(400px) scaleX(0);
    transform-origin: center;
    transition: all 500ms linear;
    transition-delay: 0.1s;
    z-index: -1;
}

.story-one__counters-box-single:hover:before {
    opacity: 1;
    transform: perspective(400px) scaleX(1);
    transition: all 300ms linear;
    transition-delay: 0.1s;
}

.story-one__counters-box-single h3 {
    color: var(--thm-primary);
    font-size: 50px;
    line-height: 1em;
    font-weight: 400;
    font-family: var(--thm-font-3);
    letter-spacing: 0.1em;
    transition: all 500ms linear;
    transition-delay: 0.1s;
}

.story-one__counters-box-single:hover h3 {
    color: var(--thm-base);
}

.story-one__counters-box-single-text {
    color: var(--thm-color-1);
    font-size: 16px;
    line-height: 26px;
    margin-top: 3px;
    transition: all 500ms linear;
    transition-delay: 0.1s;
}

.story-one__counters-box-single:hover .story-one__counters-box-single-text {
    color: #dbe6d2;
}

.odometer.odometer-auto-theme,
.odometer.odometer-theme-default {
    font-family: var(--thm-font-3);
    line-height: 1em;
}


/***
=============================================
    Meet Farmers One
=============================================
***/

.meet-farmers-one {
    position: relative;
    display: block;
    background: #ffffff;
    padding: 0px 0px 87px;
    margin-left: 100px;
    margin-right: 100px;
    margin-bottom: -120px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    z-index: 2;
}

.meet-farmers-one .sec-title {
    margin-bottom: 53px;
}

.meet-farmers-one__single {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

.meet-farmers-one__single-img {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 10px;
}

.meet-farmers-one__single-img::before {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    content: "";
    background-color: rgba(var(--thm-primary-rgb), 0.5);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    transform: scaleY(0);
    opacity: 0;
    z-index: 1;
}

.meet-farmers-one__single:hover .meet-farmers-one__single-img::before {
    opacity: 1;
    transform: scaleY(1);
}

.meet-farmers-one__single-img img {
    width: 100%;
}

.meet-farmers-one__single-img .social-link {
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    background: #ffffff;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    padding: 9px 0px 8px;
    margin-left: 20px;
    margin-right: 20px;
    text-align: center;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    transform: scaleY(0);
    z-index: 5;
}

.meet-farmers-one__single:hover .meet-farmers-one__single-img .social-link {
    transform: scaleY(1);
}

.meet-farmers-one__single-img .social-link ul {
    position: relative;
    display: block;
}

.meet-farmers-one__single-img .social-link ul li {
    position: relative;
    display: inline-block;
    margin-right: 15px;
}

.meet-farmers-one__single-img .social-link ul li:last-child {
    margin-right: 0;
}

.meet-farmers-one__single-img .social-link ul li a {
    position: relative;
    display: inline-block;
    color: var(--thm-secondary);
    font-size: 15px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.meet-farmers-one__single-img .social-link ul li a:hover {
    color: var(--thm-base);
}

.meet-farmers-one__single-img .social-link ul li a i::before {}

.meet-farmers-one__single-title {
    position: relative;
    display: block;
    padding-top: 15px;
}

.meet-farmers-one__single-title p {
    font-size: 12px;
    line-height: 18px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.meet-farmers-one__single-title h2 {
    font-size: 24px;
    line-height: 26px;
    letter-spacing: -0.02em;
}

.meet-farmers-one__single-title h2 a {
    color: var(--thm-primary);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.meet-farmers-one__single-title h2 a:hover {
    color: var(--thm-base);
}

.meet-farmers-one--about {
    position: relative;
    display: block;
    padding: 120px 0px 86px;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 0;
}


/***
=============================================
    Video Two
=============================================
***/

.video-one--two {
    position: relative;
    display: block;
    padding: 254px 0px 150px;
}


/***
=============================================
    Blog Two
=============================================
***/

.blog-two {
    position: relative;
    display: block;
    background: #ffffff;
    padding: 120px 0px 80px;
    z-index: 1;
}

.blog-two::before {
    position: absolute;
    top: 0;
    left: 50%;
    bottom: 0;
    right: -99999px;
    background: #f5f3eb;
    content: "";
    z-index: -1;
}

.blog-two__left {
    position: relative;
    display: block;
    z-index: 10;
}

.blog-two__left .sec-title {
    margin-bottom: 43px;
}

.blog-two__right {
    position: relative;
    display: block;
    width: 1180px;
}

.blog-two__carousel.owl-theme .owl-stage-outer {
    overflow: visible;
}

.blog-two__carousel .owl-stage-outer .owl-item {
    opacity: 0;
    transition: all 500ms linear;
    transition-delay: 0.1s;
}

.blog-two__carousel .owl-stage-outer .owl-item.active {
    opacity: 1;
    transition: all 200ms linear;
}

.owl-carousel .owl-dots.disabled,
.owl-carousel .owl-nav.disabled {
    display: block;
}

.blog-two__carousel.owl-theme .owl-nav {
    margin-top: 10px;
    position: absolute;
    left: auto;
    top: auto;
    left: -404px;
    top: 376px;
    display: none;
}

.blog-two__carousel__custom-nav {
    display: flex;
    align-items: center;
    z-index: 10;
    margin-top: 49px;
}

.blog-two__carousel__custom-nav .left-btn {
    margin-right: 10px;
}

.blog-two__carousel__custom-nav .left-btn,
.blog-two__carousel__custom-nav .right-btn,
.blog-two__carousel.owl-theme .owl-nav .owl-next,
.blog-two__carousel.owl-theme .owl-nav .owl-prev {
    height: 52px;
    width: 52px;
    background: #ffffff;
    border-radius: 50%;
    color: rgba(var(--thm-primary-rgb), 0.5);
    border: 2px solid rgba(var(--thm-primary-rgb), 0.3);
    font-size: 15px;
    text-align: center;
    font-weight: 600;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    line-height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.blog-two__carousel__custom-nav .left-btn,
.blog-two__carousel__custom-nav .right-btn {}

.blog-two__carousel__custom-nav .left-btn {
    transform: rotate(180deg);
}

.blog-two__carousel__custom-nav .left-btn span,
.blog-two__carousel__custom-nav .right-btn span,
.blog-two__carousel.owl-theme .owl-nav .owl-next span,
.blog-two__carousel.owl-theme .owl-nav .owl-prev span {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.blog-two__carousel__custom-nav .left-btn:hover,
.blog-two__carousel__custom-nav .right-btn:hover,
.blog-two__carousel.owl-theme .owl-nav .owl-next:hover,
.blog-two__carousel.owl-theme .owl-nav .owl-prev:hover {
    color: rgba(var(--thm-primary-rgb), 1);
    border-color: rgba(var(--thm-primary-rgb), 1);
}

.blog-two__left {
    margin-bottom: 0px;
    padding-top: 0px;
    padding-bottom: 0px;
    max-width: 370px;
    position: relative;
    z-index: 20;
    background-color: #fff;
}


/***
=============================================
    About Three
=============================================
***/

.about-three {
    position: relative;
    display: block;
    background: #ffffff;
    padding: 80px 0px 80px;
}

.about-three__content-box {
    position: relative;
    display: block;
    width: 100%;
}

.about-three__content-box .sec-title {
    margin-bottom: 46px;
}

.about-three__content-box-inner {
    position: relative;
    display: block;
}

.about-three__content-box-inner h2 {
    color: var(--thm-secondary);
    font-size: 22px;
    line-height: 34px;
    font-family: var(--thm-font);
    margin-bottom: 35px;
}

.about-three__content-box-inner p {}

.about-three__products-list {
    position: relative;
    display: block;
    margin-top: 38px;
}

.about-three__products-list ul {
    position: relative;
    display: flex;
    align-items: center;
}

.about-three__products-list ul li {
    position: relative;
    display: inline-block;
    padding-right: 44px;
    margin-left: 45px;
    border-right: 1px solid #eceae0;
}

.about-three__products-list ul li:last-child {
    padding-right: 0;
    border-right: none;
}

.about-three__products-list ul li:first-child {
    margin-left: 0;
}

.about-three__products-list ul li .icon {
    position: relative;
    display: inline-block;
    color: var(--thm-base);
    font-size: 60px;
    margin-bottom: 17px;
    transition-delay: 0.1s;
    transition: all 500ms ease;
}

.about-three__products-list ul li:hover .icon {
    transform: rotateY(180deg);
    transition-delay: 0.1s;
}

.about-three__products-list ul li h3 {
    font-size: 20px;
    line-height: 34px;
    letter-spacing: -0.02em;
    margin-bottom: 9px;
}

.about-three__products-list ul li h3 a {
    color: var(--thm-primary);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.about-three__products-list ul li h3 a:hover {
    color: var(--thm-base);
}

.about-three__products-list ul li p {
    font-size: 16px;
}

.about-three__content-box-btn {
    position: relative;
    display: block;
    margin-top: 41px;
}

.about-three__img-box {
    position: relative;
    display: block;
    max-width: 570px;
    width: 100%;
}

.about-three__img-box-img {
    position: relative;
    display: block;
    z-index: 1;
}

.about-three__img-box-img::before {
    position: absolute;
    top: 350px;
    right: -30px;
    bottom: 0;
    width: 30px;
    background: var(--thm-base);
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    content: "";
    z-index: 5;
}

.about-three__img-box-img-inner {
    position: relative;
    display: block;
    overflow: hidden;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    border-bottom-left-radius: 10px;
}

.about-three__img-box-img-inner::before {
    position: absolute;
    top: 0;
    left: -100%;
    display: block;
    content: "";
    width: 50%;
    height: 100%;
    background: linear-gradient( to right, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0.3) 100%);
    transform: skewX(25deg);
    z-index: 2;
}

.about-three__img-box-img:hover .about-three__img-box-img-inner::before {
    -webkit-animation: shine 1.5s;
    animation: shine 1.5s;
}


/***
=============================================
    Services Details
=============================================
***/

.services-details {
    position: relative;
    display: block;
    background: #ffffff;
    padding: 120px 0px 110px;
}

.services-details__sidebar {
    position: relative;
    display: block;
    max-width: 365px;
    width: 100%;
}

.services-details__sidebar-single {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

.services-details__sidebar-single-services {
    position: relative;
    display: block;
    background: #f6f4ec;
    border-radius: 10px;
    padding: 45px 30px 15px;
}

.services-details__sidebar-single-services .title {
    position: relative;
    display: block;
    margin-bottom: 12px;
    padding-left: 20px;
}

.services-details__sidebar-single-services .title h3 {
    color: var(--thm-primary);
    font-size: 20px;
    line-height: 30px;
    letter-spacing: -0.02em;
}

.services-details__sidebar-single-services ul {
    position: relative;
    display: block;
    margin-top: 10px;
}

.services-details__sidebar-single-services ul li {
    position: relative;
    display: block;
    margin-bottom: 5px;
    margin-top: -10px;
}

.services-details__sidebar-single-services ul li:last-child {
    margin-bottom: 0;
}

.services-details__sidebar-single-services ul li a {
    position: relative;
    display: block;
    color: var(--thm-color-1);
    font-size: 18px;
    line-height: 28px;
    font-weight: 500;
    font-family: var(--thm-font);
    padding: 22px 20px 22px;
    border-radius: 10px;
    background: transparent;
    transition: all 300ms linear;
    transition-delay: 0.1s;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.services-details__sidebar-single-services ul li a:hover {
    color: var(--thm-primary);
}

.services-details__sidebar-single-services ul li a::before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    content: "";
    z-index: -1;
    opacity: 1;
    transform: perspective(400px) rotateX(90deg);
    transform-origin: bottom;
    transition: all 300ms linear;
    transition-delay: 0.1s;
    background: #ffffff;
    box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
    border-radius: 10px;
}

.services-details__sidebar-single-services ul li a:hover::before,
.services-details__sidebar-single-services ul li.current a::before,
.downloads .services-details__sidebar-single-services ul li a.active::before {
    opacity: 1;
    transform: perspective(400px) rotateX(0deg);
    transition: all 300ms linear;
    transition-delay: 0.1s;
}

.services-details__sidebar-single-services ul li.current:first-child {
    margin-top: 20px;
}

.services-details__sidebar-single-services ul li.current:last-child {
    margin-bottom: 35px;
}

.services-details__sidebar-single-services ul li a i {
    font-size: 16px;
}

.services-details__sidebar-single-services ul li a:hover i,
.services-details__sidebar-single-services ul li.current a i {
    color: var(--thm-base);
}

.services-details__sidebar-single-contact-box {
    position: relative;
    display: block;
    background-attachment: scroll;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 10px;
    padding: 50px 0px 44px;
    z-index: 1;
}

.services-details__sidebar-single-contact-box::before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: rgba(var(--thm-secondary-rgb), 0.93);
    border-radius: 10px;
    content: "";
    z-index: -1;
}

.services-details__sidebar-single-contact-box .icon {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 60px;
    text-align: center;
    transition: all 500ms ease;
    border-radius: 50%;
    background: var(--thm-base);
}

.services-details__sidebar-single-contact-box .icon:hover {
    background-color: var(--thm-primary);
}

.services-details__sidebar-single-contact-box .icon span::before {
    position: relative;
    display: inline-block;
    color: var(--thm-primary);
    font-size: 30px;
    line-height: 60px;
    transition: all 500ms ease;
}

.services-details__sidebar-single-contact-box .icon:hover span::before {
    color: #fff;
}

.services-details__sidebar-single-contact-box .title {
    position: relative;
    display: block;
    margin-top: 20px;
    margin-bottom: 42px;
}

.services-details__sidebar-single-contact-box .title h2 {
    color: #ffffff;
    font-size: 36px;
    line-height: 46px;
    font-weight: 500;
    font-family: var(--thm-font-3);
}

.services-details__sidebar-single-contact-box .phone {
    font-size: 24px;
    line-height: 34px;
    font-weight: 700;
}

.services-details__sidebar-single-contact-box .phone a {
    color: #ffffff;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.services-details__sidebar-single-contact-box .phone a:hover {
    color: var(--thm-base);
}

.services-details__sidebar-single-contact-box p {
    color: #ffffff;
    font-size: 14px;
    line-height: 22px;
}

.services-details__sidebar-single-btn {
    position: relative;
    display: block;
}

.services-details__sidebar-single-btn .thm-btn {
    font-size: 16px;
    padding: 13px 50px 28px;
}

.services-details__sidebar-single-btn .thm-btn span::before {
    position: relative;
    display: inline-block;
    top: 13px;
    color: var(--thm-primary);
    font-size: 40px;
    padding-right: 25px;
    -webkit-transition: all 600ms ease;
    transition: all 600ms ease;
    font-weight: 500;
}

.services-details__sidebar-single-btn .thm-btn:hover span::before {
    color: #ffffff;
}

.services-details__content {
    position: relative;
    display: block;
}

.services-details__content-img {
    position: relative;
    display: block;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 30px;
}

.services-details__content-img img {
    width: 100%;
}

.services-details__content-icon {
    position: relative;
    display: block;
    color: var(--thm-primary);
    font-size: 60px;
    margin-bottom: 11px;
}

.services-details__content-title {
    color: var(--thm-primary);
    font-size: 40px;
    line-height: 1em;
    margin-bottom: 23px;
}

.services-details__content-text1 {
    position: relative;
    display: block;
    margin-bottom: 33px;
}

.services-details__content-text1 p {}

.services-details__content-text2 {
    position: relative;
    display: block;
}

.services-details__content-text2 p {}

.services-details__content-text3 {
    position: relative;
    display: flex;
    align-items: flex-start;
    margin-top: 30px;
    /*54px*/
    margin-bottom: 30px;
    justify-content: space-between;

}

.services-details__content-text3 .img-box {
    position: relative;
    display: block;
    border-radius: 10px;
    overflow: hidden;
}

.services-details__content-text3 .img-box img {}

.services-details__content-text3 .text-box {
    position: relative;
    display: block;
    padding-left: 0;
    /*30px*/
}

.services-details__content-text3 .text-box ul {
    position: relative;
    display: block;
}

.services-details__content-text3 .text-box ul li {
    position: relative;
    display: flex;
    align-items: flex-start;
    margin-bottom: 9px;
}

.services-details__content-text3 .text-box ul li:last-child {
    margin-bottom: 0;
}

.services-details__content-text3 .text-box ul li .icon {
    position: relative;
    display: inline-block;
    color: var(--thm-base);
    font-size: 23px;
    padding-right: 20px;
}

.faq-one__accordions .accrodion:nth-child(even) .services-details__content-text3 .text-box ul li .icon {
    color: var(--thm-tertiary);
}

.services-details__content-text3 .text-box ul li .icon i::before {}

.services-details__content-text3 .text-box ul li .text {
    position: relative;
    display: block;
}

.services-details__content-text3 .text-box ul li .text p {
    color: var(--thm-primary);
    font-weight: 500;
}


/***
=============================================
    Faq Contact box
=============================================
***/

.faq-contact-box {
    position: relative;
    display: block;
    padding: 120px 0px 120px;
    background: #ffffff;
}

.faq-contact-box .sec-title {
    margin-bottom: 54px;
}

.faq-contact-box__wrapper {
    position: relative;
    display: block;
    max-width: 770px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

.comment-form__input-box input[type="text"],
.comment-form__input-box input[type="email"],
.comment-form__input-box select {
    height: 70px;
    width: 100%;
    border: none;
    background: #f6f4ec;
    padding: 0 30px;
    margin-bottom: 20px;
    border-radius: 10px;
    outline: none;
    font-size: 14px;
    color: #727d73;
    font-weight: 400;
    font-family: var(--thm-font);
}

.comment-form__input-box textarea {
    font-size: 14px;
    color: #727d73;
    height: 190px;
    width: 100%;
    background: #f6f4ec;
    padding: 18px 30px 30px;
    border: none;
    border-radius: 10px;
    outline: none;
    margin-bottom: 10px;
    font-weight: 400;
}


/***
=============================================
    Error Page
=============================================
***/

.error-page {
    position: relative;
    display: block;
    padding: 120px 0px 120px;
    background: #ffffff;
}

.error-page__wrapper {
    position: relative;
    display: block;
}

.error-page__big-title {
    position: relative;
    display: block;
    margin-bottom: 50px;
}

.error-page__big-title h2 {
    color: var(--thm-secondary);
    font-size: 400px;
    line-height: 0.8em;
    font-family: var(--thm-font-3);
    font-weight: 500;
    text-shadow: 10px 15px 1px #f5f7f3;
}

.error-page__content {
    position: relative;
    display: block;
}

.error-page__content h2 {
    font-size: 36px;
    line-height: 46px;
    font-weight: 500;
    font-family: var(--thm-font);
    margin-bottom: 10px;
}

.error-page__content p {
    font-size: 20px;
}

.error-page__search {
    position: relative;
    display: block;
    margin-top: 55px;
}

.error-page__search form.search-form {
    position: relative;
    display: block;
    max-width: 530px;
    width: 100%;
    margin: 0 auto;
}

.error-page__search .search-form input[type="text"] {
    position: relative;
    display: block;
    width: 100%;
    height: 70px;
    background-color: #f6f4ec;
    border: 0px solid #f6f4ec;
    color: var(--thm-color-1);
    font-size: 16px;
    font-weight: 500;
    padding-left: 50px;
    padding-right: 80px;
    border-radius: 10px;
    transition: all 500ms ease 0s;
}

.error-page__search .search-form button {
    position: absolute;
    top: 10px;
    right: 35px;
    width: 50px;
    height: 50px;
    font-size: 15px;
    line-height: 50px;
    background: transparent;
    display: block;
    text-align: center;
    border: 0px solid #f6f4ec;
    transition: all 500ms ease 0s;
    padding: 0;
    outline: none;
    border: none;
}

.error-page__search .search-form button i {
    color: var(--thm-primary);
    font-size: 20px;
    line-height: 50px;
    font-weight: 700;
}

.error-page__search .search-form input[type="text"]:focus {
    outline: none;
    border: none;
}

.error-page__search .search-form input::-webkit-input-placeholder {
    color: var(--thm-color-1);
}

.error-page__search .search-form input:-moz-placeholder {
    color: var(--thm-color-1);
}

.error-page__search .search-form input::-moz-placeholder {
    color: var(--thm-color-1);
}

.error-page__search .search-form input:-ms-input-placeholder {
    color: var(--thm-color-1);
}

.error-page__btn {
    position: relative;
    display: block;
    margin-top: 20px;
}


/***
=============================================
    Contact Page
=============================================
***/

.contact-page {
    position: relative;
    display: block;
    background: #ffffff;
    padding: 120px 0px 120px;
}

.contact-page__left {
    position: relative;
    display: block;
    /* max-width: 300px; */
    width: 100%;
}

.contact-page__left .sec-title {
    margin-bottom: 42px;
}

.contact-page__left-text {}

.contact-page__social-link {
    position: relative;
    display: block;
    margin-top: 29px;
}

.contact-page__social-link ul {
    position: relative;
    display: block;
}

.contact-page__social-link ul li {
    position: relative;
    display: inline-block;
    margin-right: 5px;
}

.contact-page__social-link ul li:last-child {
    margin-right: 0;
}

.contact-page__social-link ul li a {
    position: relative;
    display: inline-block;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    text-align: center;
    background: #f6f4ec;
    color: var(--thm-color-1);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.contact-page__social-link ul li a:hover {
    color: var(--thm-primary);
    background: var(--thm-base);
}

.contact-page__social-link ul li a i::before {
    position: relative;
    display: inline-block;
    font-size: 15px;
    line-height: 45px;
}


/***
=============================================
    Contact Page Contact Info
=============================================
***/

.contact-page__contact-info {
    position: relative;
    display: block;
    background: #ffffff;
}

.contact-page__contact-info .auto-container {
    max-width: 1440px;
    width: 100%;
}

.contact-page__contact-info-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background: #ffffff;
    padding: 60px 115px 60px;
    box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    margin-bottom: -60px;
    z-index: 2;
}

.contact-page__contact-info-title {
    position: relative;
    display: block;
    padding-right: 55px;
}

.contact-page__contact-info-title h2 {
    font-size: 30px;
    line-height: 40px;
    letter-spacing: -0.04em;
}

.contact-page__contact-info-list {
    position: relative;
    display: block;
}

.contact-page__contact-info-list ul {
    position: relative;
    display: flex;
    align-items: center;
}

.contact-page__contact-info-list ul li {
    position: relative;
    display: flex;
    align-items: center;
    border-right: 1px solid #eceae0;
    margin-left: 40px;
    padding-right: 40px;
}

.contact-page__contact-info-list ul li:first-child {
    margin-left: 0;
}

.contact-page__contact-info-list ul li:last-child {
    border-right: none;
    padding-right: 0;
}

.contact-page__contact-info-list ul li .icon {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    text-align: center;
    background: var(--thm-secondary);
    color: #ffffff;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.contact-page__contact-info-list ul li:hover .icon {
    background-color: var(--thm-base);
    color: var(--thm-black);
}

.contact-page__contact-info-list ul li .icon span::before {
    position: relative;
    display: inline-block;
    font-size: 20px;
    line-height: 50px;
}

.contact-page__contact-info-list ul li .icon.phone span::before {
    font-size: 25px;
}

.contact-page__contact-info-list ul li .title {
    position: relative;
    display: block;
    line-height: 0;
    padding-left: 20px;
}

.contact-page__contact-info-list ul li .title span {
    color: var(--thm-color-1);
    font-size: 13px;
    line-height: 22px;
}

.contact-page__contact-info-list ul li .title p {
    color: var(--thm-primary);
    font-size: 18px;
    line-height: 22px;
    font-weight: 700;
}

.contact-page__contact-info-list ul li .title p a {
    color: var(--thm-primary);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.contact-page__contact-info-list ul li .title p a:hover {
    color: var(--thm-base);
}


/***
=============================================
    Google Map
=============================================
***/

.contact-page-google-map {
    position: relative;
    display: block;
    z-index: 1;
}

.contact-page-google-map__one {
    position: relative;
    display: block;
    border: none;
    height: 560px;
    width: 100%;
}


/***
=============================================
    Blog One News
=============================================
***/

.blog-one__bg {
    display: none;
}


/***
=============================================
    News Sidebar
=============================================
***/

.news-sidebar {
    position: relative;
    display: block;
    background: #ffffff;
    padding: 120px 0px 120px;
}

.news-sidebar__left {
    position: relative;
    display: block;
}

.news-sidebar__left .blog-one__single {
    margin-bottom: 24px;
}

.news-sidebar__left .blog-one__single-img {
    border-radius: 10px;
}

.news-sidebar__left .blog-one__single-content {
    box-shadow: none;
    padding: 20px 0px 0px;
}

.news-sidebar__left .blog-one__single-content h2 {
    font-size: 26px;
}

.news-sidebar__left .blog-one__single-content p {
    margin-top: 20px;
}

.news-sidebar__left .blog-one__single-content .read-more {
    position: relative;
    display: inline-block;
    color: var(--thm-primary);
    font-size: 12px;
    line-height: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-family: var(--thm-font);
    margin-top: 4px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.news-sidebar__left .blog-one__single-content .read-more:hover {
    color: var(--thm-base);
}

.news-sidebar__left .blog-one__single-content .read-more::before {
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 2px;
    background: var(--thm-primary);
    content: "";
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.news-sidebar__left .blog-one__single-content .read-more:hover:before {
    background: var(--thm-base);
}

.news-sidebar__left .blog-one__single.style2 {
    position: relative;
    display: block;
}

.news-sidebar__left .blog-one__single.style2 .blog-one__single-img::before {
    display: none;
}

.news-sidebar__left .blog-one__single.style2:hover .blog-one__single-img img {
    transform: scale(1) rotate(0deg);
}

.news-sidebar__left .blog-one__single.style2 .blog-one__single-img .icon {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.news-sidebar__left .blog-one__single.style2 .blog-one__single-img .icon a {
    position: relative;
    display: inline-block;
    width: 105px;
    width: 105px;
    line-height: 105px;
    border-radius: 50%;
    text-align: center;
    background: var(--thm-base);
    font-size: 25px;
    color: var(--thm-primary);
    transition: all 300ms linear;
    transition-delay: 0.1s;
}

.news-sidebar__left .blog-one__single.style2 .blog-one__single-img .icon a:hover {
    color: #ffffff;
    background: var(--thm-primary);
}

.news-sidebar__blockquote {
    position: relative;
    display: block;
    background: #f6f4ec;
    border-radius: 10px;
    padding: 56px 60px 49px;
}

.news-sidebar__blockquote blockquote {
    position: relative;
    display: block;
    margin: 0;
}

.news-sidebar__blockquote .icon {
    position: relative;
    display: inline-block;
}

.news-sidebar__blockquote p {
    margin-top: 18px;
}

.news-sidebar__agriculture-matters {
    position: relative;
    display: block;
    border-radius: 10px;
    background: #f6f4ec;
    padding: 60px 60px 51px;
    margin-top: 30px;
}

.news-sidebar__agriculture-matters .icon {
    position: relative;
    display: inline-block;
}

.news-sidebar__agriculture-matters h2 {
    font-size: 26px;
    line-height: 36px;
    font-family: var(--thm-font);
    margin-top: 20px;
}

.news-sidebar__agriculture-matters h2 a {
    color: var(--thm-primary);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.news-sidebar__agriculture-matters h2 a:hover {
    color: var(--thm-base);
}

.news-sidebar__btn {
    position: relative;
    display: block;
    margin-top: 30px;
}


/***
=============================================
Sidebar
=============================================
***/

.sidebar {
    position: relative;
    display: block;
}

.sidebar__single {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

.sidebar__single .title {
    position: relative;
    display: block;
    margin-bottom: 22px;
}

.sidebar__single .title h2 {
    font-size: 20px;
    line-height: 30px;
    letter-spacing: -0.02em;
}

.sidebar__search {
    position: relative;
    display: block;
}

.sidebar__search-form {
    position: relative;
}

.sidebar__search-form input[type="search"] {
    display: block;
    border: none;
    outline: none;
    background-color: var(--thm-base);
    color: var(--thm-primary);
    font-size: 16px;
    line-height: 26px;
    font-weight: 500;
    padding-left: 50px;
    height: 70px;
    border-radius: 10px;
    width: 100%;
    padding-right: 80px;
}

.sidebar__search-form ::-webkit-input-placeholder {
    color: var(--thm-primary);
    opacity: 1;
}

.sidebar__search-form ::-moz-placeholder {
    color: var(--thm-primary);
    opacity: 1;
}

.sidebar__search-form :-ms-input-placeholder {
    color: var(--thm-primary);
    opacity: 1;
}

.sidebar__search-form ::-ms-input-placeholder {
    color: var(--thm-primary);
    opacity: 1;
}

.sidebar__search-form ::placeholder {
    color: var(--thm-primary);
    opacity: 1;
}

.sidebar__search-form :-ms-input-placeholder {
    color: var(--thm-primary);
}

.sidebar__search-form ::-ms-input-placeholder {
    color: var(--thm-primary);
}

.sidebar__search-form button[type="submit"] {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 20px;
    color: var(--thm-primary);
    font-size: 22px;
    width: 80px;
    outline: none;
    border: none;
    padding: 0;
    background-color: transparent;
}

.sidebar__search-form button span::before {
    position: relative;
    display: inline-block;
    line-height: 70px;
    font-weight: 700;
}

.sidebar__latest-posts {
    position: relative;
    display: block;
    background: #f6f4ec;
    border-radius: 10px;
    padding: 41px 50px 23px;
}

.sidebar__latest-posts-list {
    position: relative;
    display: block;
}

.sidebar__latest-posts-list-item {
    position: relative;
    display: flex;
    align-items: flex-start;
    margin-bottom: 8px;
}

.sidebar__latest-posts-list-item:last-child {
    margin-bottom: 0;
}

.sidebar__latest-posts-list-item .img-box {
    position: relative;
    display: block;
    border-radius: 10px;
    overflow: hidden;
}

.sidebar__latest-posts-list-item .img-box img {
    width: 60px;
    height: 66px;
    overflow: hidden;
    object-fit: cover;
}

.sidebar__latest-posts-list-item .title {
    position: relative;
    display: block;
    line-height: 0;
    padding-left: 20px;
}

.sidebar__latest-posts-list-item .title p {
    font-size: 14px;
    margin-bottom: 5px;
}

.sidebar__latest-posts-list-item .title p i::before {
    position: relative;
    display: inline-block;
    color: var(--thm-secondary);
    font-size: 12px;
    padding-right: 5px;
}

.sidebar__latest-posts-list-item .title h4 {
    font-size: 18px;
    line-height: 26px;
}

.sidebar__latest-posts-list-item .title h4 a {
    color: var(--thm-primary);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.sidebar__latest-posts-list-item .title h4 a:hover {
    color: var(--thm-base);
}

.sidebar__categories {
    position: relative;
    display: block;
    background: #f6f4ec;
    border-radius: 10px;
    padding: 42px 30px 35px;
}

.sidebar__categories .title {
    position: relative;
    display: block;
    margin-bottom: 7px;
    padding-left: 20px;
}

.sidebar__categories-list {
    position: relative;
    display: block;
}

.sidebar__categories-list li {
    position: relative;
    display: block;
    margin-bottom: 5px;
}

.sidebar__categories-list li:last-child {
    margin-bottom: 0;
}

.sidebar__categories-list li a {
    position: relative;
    display: block;
    color: var(--thm-color-1);
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    font-family: var(--thm-font);
    padding: 7px 20px 7px;
    border-radius: 10px;
    background: transparent;
    transition: all 100ms linear;
    transition-delay: 0.1s;
    z-index: 1;
}

.sidebar__categories-list li a:hover,
.sidebar__categories-list li a.active {
    color: var(--thm-primary);
    font-weight: 700;
}

.sidebar__categories-list li a::before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    content: "";
    z-index: -1;
    opacity: 1;
    transform: perspective(400px) rotateX(90deg);
    transform-origin: bottom;
    transition: all 300ms linear;
    transition-delay: 0.1s;
    background: #ffffff;
    box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
    border-radius: 0;
}

.sidebar__categories-list li a:hover::before,
.sidebar__categories-list li a.active::before {
    opacity: 1;
    transform: perspective(400px) rotateX(0deg);
    transition: all 300ms linear;
    transition-delay: 0.1s;
}

.sidebar__categories-list li a span::before {
    position: relative;
    display: inline-block;
    color: var(--thm-color-1);
    font-size: 10px;
    line-height: 26px;
    float: right;
    font-weight: 700;
    transition: all 300ms linear;
    transition-delay: 0.1s;
}

.sidebar__categories-list li a:hover span::before {
    color: var(--thm-base);
}

.sidebar__categories-list li a.active span::before {
    color: var(--thm-base);
}

.sidebar__tag {
    position: relative;
    display: block;
    background: #f6f4ec;
    border-radius: 10px;
    padding: 42px 50px 40px;
}

.sidebar__tag-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin-left: -5px;
    margin-right: -5px;
}

.sidebar__tag-list li {
    position: relative;
    display: inline-block;
    float: left;
    margin: 0px 4px 10px;
}

.sidebar__tag-list li a {
    position: relative;
    display: inline-block;
    color: var(--thm-color-1);
    font-size: 12px;
    line-height: 22px;
    font-weight: 700;
    font-family: var(--thm-font);
    text-transform: uppercase;
    border-radius: 10px;
    background: #ffffff;
    padding: 8px 20px 8px;
    letter-spacing: 0.1em;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.sidebar__tag-list li a:hover {
    color: var(--thm-primary);
    background: var(--thm-base);
}

.sidebar__recent-comments {
    position: relative;
    display: block;
    background: #f6f4ec;
    border-radius: 10px;
    padding: 42px 50px 47px;
}

.sidebar__recent-comments .title {
    margin-bottom: 18px;
}

.sidebar__recent-comments-list {
    position: relative;
    display: block;
}

.sidebar__recent-comments-list-item {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 23px;
}

.sidebar__recent-comments-list-item:last-child {
    margin-bottom: 0;
}

.sidebar__recent-comments-list-item .icon {
    position: relative;
    display: inline-block;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    text-align: center;
    background: var(--thm-primary);
    color: #ffffff;
    font-size: 15px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.sidebar__recent-comments-list-item .icon:hover {
    color: var(--thm-primary);
    background: var(--thm-base);
}

.sidebar__recent-comments-list-item .icon span::before {
    position: relative;
    display: inline-block;
    line-height: 45px;
}

.sidebar__recent-comments-list-item .text {
    position: relative;
    display: block;
    padding-left: 18px;
}

.sidebar__recent-comments-list-item .text p {
    font-size: 16px;
    line-height: 26px;
}

.sidebar__recent-comments-list-item .text p span {
    color: var(--thm-primary);
}


/***
=============================================
    News Details
=============================================
***/

.news-details {
    position: relative;
    display: block;
    padding: 120px 0px 120px;
}

.news-details__left {
    position: relative;
    display: block;
}

.news-details__left .blog-one__single-img::before {
    display: none;
}

.news-details__left .blog-one__single .blog-one__single-img {
    border-radius: 10px;
}

.news-details__left .blog-one__single:hover .blog-one__single-img img {
    transform: scale(1) rotate(0deg);
}

.news-details__left .blog-one__single-content {
    box-shadow: none;
    padding: 20px 0px 3px;
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
}

.news-details__left .blog-one__single-content h2 {
    font-size: 26px;
    margin-bottom: 20px;
}

.news-details__left-text1 {
    position: relative;
    display: block;
    margin-bottom: 33px;
}

.news-details__left-text2 {
    position: relative;
    display: block;
    margin-bottom: 53px;
}

.tag-social-link {
    position: relative;
    display: block;
    border-top: 1px solid #eceae0;
    padding-top: 30px;
}

.tag-social-link__tag {
    position: relative;
    display: flex;
    align-items: center;
}

.tag-social-link__tag .title {
    position: relative;
    display: block;
}

.tag-social-link__tag .title h4 {
    font-size: 18px;
    line-height: 28px;
}

.tag-social-link__tag-list {
    position: relative;
    display: block;
    margin-left: 20px;
}

.tag-social-link__tag-list ul {
    position: relative;
    display: block;
}

.tag-social-link__tag-list ul li {
    position: relative;
    display: inline-block;
    float: left;
    margin-right: 10px;
}

.tag-social-link__tag-list ul li:last-child {
    margin-right: 0;
}

.tag-social-link__tag-list ul li a {
    position: relative;
    display: inline-block;
    color: var(--thm-color-1);
    font-size: 12px;
    line-height: 22px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    background: #f6f4ec;
    padding: 8px 20px 8px;
    border-radius: 10px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.tag-social-link__tag-list ul li a:hover {
    color: var(--thm-primary);
    background: var(--thm-base);
}

.tag-social-link {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.tag-social-link__social-links {
    position: relative;
    display: block;
    overflow: hidden;
}

.tag-social-link__social-links ul {
    position: relative;
    display: block;
}

.tag-social-link__social-links ul li {
    position: relative;
    display: inline-block;
    float: left;
    margin-right: 30px;
}

.tag-social-link__social-links ul li:last-child {
    margin-right: 0;
}

.tag-social-link__social-links ul li a {
    position: relative;
    display: inline-block;
    color: var(--thm-color-1);
    font-size: 20px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.tag-social-link__social-links ul li a:hover {
    color: var(--thm-base);
}

.tag-social-link__social-links ul li a i::before {}

.news-details__pagenation {
    position: relative;
    display: block;
    margin-top: 30px;
}

.news-details__pagenation-single {
    position: relative;
    display: block;
    background: #f6f4ec;
    padding: 52px 55px 52px;
    border-radius: 10px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.news-details__pagenation-single.active {
    background: var(--thm-secondary);
}

.news-details__pagenation-single.active h2 a {
    color: #ffffff;
}

.news-details__pagenation-single:hover {
    background: var(--thm-secondary);
}

.news-details__pagenation-single h2 {
    font-size: 20px;
    line-height: 34px;
    font-family: var(--thm-font);
}

.news-details__pagenation-single h2 a {
    color: var(--thm-primary);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.news-details__pagenation-single:hover h2 a {
    color: #ffffff;
}


/***
=============================================
    Comments
=============================================
***/

.comment-one {
    position: relative;
    display: block;
    margin-top: 50px;
}

.comment-one__title,
.comment-form__title {
    margin: 0;
    color: var(--thm-primary);
    font-size: 30px;
    line-height: 40px;
    font-weight: 700;
    margin-bottom: 51px;
    letter-spacing: -0.02em;
}

.comment-form__title {
    margin-top: -10px;
}

.comment-one__single {
    position: relative;
    display: block;
    border-bottom: 1px solid #eceae0;
    padding-bottom: 72px;
    margin-bottom: 60px;
}

.comment-one__image {
    position: absolute;
    top: 0;
    left: 0;
}

.comment-one__content {
    position: relative;
    display: block;
    margin-left: 200px;
}

.comment-one__content p {
    font-size: 16px;
    margin: 0;
}

.comment-one__content-top {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.comment-one__content-text {
    position: relative;
    display: block;
    margin-bottom: 24px;
}

.comment-one__content-text h3 {
    color: var(--thm-primary);
    font-size: 24px;
    margin: 0;
}

.comment-one__content-btn {
    position: relative;
    display: block;
}

.comment-one__content-btn .thm-btn {
    font-size: 12px;
    font-weight: 700;
    padding: 2px 20px 2px;
    letter-spacing: 0.1;
    font-family: var(--thm-font);
}

.comment-one__image img {
    border-radius: 50%;
}


/***
=============================================
    Projects Details
=============================================
***/

.projects-details {
    position: relative;
    display: block;
    padding: 120px 0px 120px;
    background: #ffffff;
}

.projects-details__wrapper {
    position: relative;
    display: block;
}

.projects-details__img {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 10px;
}

.projects-details__information {
    position: relative;
    display: block;
    background: #f6f4ec;
    padding: 53px 0px 52px;
    border-radius: 10px;
    margin-top: 30px;
    padding-left: 80px;
    padding-right: 80px;
}

.projects-details__information ul {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.projects-details__information ul li {
    position: relative;
    display: block;
}

.projects-details__information ul li h5 {
    font-size: 16px;
    line-height: 26px;
    font-weight: 500;
    font-family: var(--thm-font);
}

.projects-details__information ul li p {
    font-size: 16px;
    line-height: 26px;
    font-weight: 500;
}

.projects-details__information ul li p a {
    color: var(--thm-color-1);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.projects-details__information ul li p a:hover {
    color: var(--thm-base);
}

.projects-details__text-box1 {
    position: relative;
    display: block;
    margin-top: 45px;
}

.projects-details__text-box1 h2 {
    font-size: 50px;
    line-height: 60px;
    letter-spacing: -0.04em;
}

.projects-details__text-box1 .text1 {
    margin-bottom: 33px;
    margin-top: 37px;
}

.projects-details__text-box2 {
    position: relative;
    display: block;
    margin-top: 42px;
}

.projects-details__text-box2 h2 {
    font-size: 40px;
    line-height: 50px;
    letter-spacing: -0.04em;
    margin-bottom: 39px;
}

.projects-details__text-box2 .text1 {}

.projects-details__text-box2-list {
    position: relative;
    display: block;
    margin-top: 37px;
}

.projects-details__text-box2-list ul {
    position: relative;
    display: block;
}

.projects-details__text-box2-list ul li {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 9px;
}

.projects-details__text-box2-list ul li:last-child {
    margin-bottom: 0;
}

.projects-details__text-box2-list ul li .icon {
    position: relative;
    display: block;
}

.projects-details__text-box2-list ul li .icon i::before {
    position: relative;
    display: inline-block;
    top: 3px;
    color: var(--thm-base);
    font-size: 23px;
}

.projects-details__text-box2-list ul li .text {
    position: relative;
    display: block;
    padding-left: 20px;
}

.projects-details__text-box2-list ul li .text p {
    color: var(--thm-primary);
    font-size: 20px;
    font-weight: 500;
}

.projects-details__text-box2 .text2 {
    margin-top: 33px;
}

.projects-details__pagination {
    position: relative;
    display: block;
    border-top: 1px solid #eceae0;
    border-bottom: 1px solid #eceae0;
    padding-top: 29px;
    padding-bottom: 29px;
    margin-top: 109px;
}

.projects-details__pagination ul {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.projects-details__pagination ul li {
    position: relative;
    display: block;
}

.projects-details__pagination ul li .previous {
    position: relative;
    display: block;
}

.projects-details__pagination ul li .previous p {
    color: var(--thm-primary);
    font-weight: 700;
}

.projects-details__pagination ul li .previous p a {
    color: var(--thm-primary);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.projects-details__pagination ul li .previous p a:hover {
    color: var(--thm-base);
}

.projects-details__pagination ul li .previous p a span::before {
    position: relative;
    display: inline-block;
    color: var(--thm-primary);
    font-size: 15px;
    line-height: 34px;
    padding-left: 20px;
    font-weight: 700;
    transform: rotate(180deg);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.projects-details__pagination ul li .previous p a:hover span::before {
    color: var(--thm-base);
}

.projects-details__pagination ul li .next {
    position: relative;
    display: block;
}

.projects-details__pagination ul li .next p {
    color: var(--thm-primary);
    font-weight: 700;
}

.projects-details__pagination ul li .next p a {
    color: var(--thm-primary);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.projects-details__pagination ul li .next p a:hover {
    color: var(--thm-base);
}

.projects-details__pagination ul li .next p a span::before {
    position: relative;
    display: inline-block;
    color: var(--thm-primary);
    font-size: 15px;
    line-height: 34px;
    padding-left: 20px;
    font-weight: 700;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.projects-details__pagination ul li .next p a:hover span::before {
    color: var(--thm-base);
}


/***
=============================================
    Tiny Scrollbar
=============================================
***/

#scrollbar1 {
    width: 270px;
    margin: 0;
}

#scrollbar1 .viewport {
    position: relative;
    width: 270px;
    height: 530px;
    overflow: hidden;
}

#scrollbar1 .overview {
    list-style: none;
    position: absolute;
    left: 15px;
    top: 0;
    padding: 0;
    margin: 0;
    max-width: 500px;
    width: 100%;
    height: 100%;
}

#scrollbar1 .scrollbar {
    position: absolute;
    top: 0;
    right: 0px;
    background: #e7e7e7;
    width: 4px;
}

#scrollbar1 .track {
    background: transparent;
    height: 100%;
    width: 4px;
    position: relative;
    padding: 0;
}

#scrollbar1 .thumb {
    background: #fa401b;
    background-image: none;
    height: 20px;
    width: 4px;
    cursor: pointer;
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0px;
    opacity: 1;
    z-index: 3;
}

#scrollbar1 .thumb .end {
    background: #353742 no-repeat 50% 0;
    overflow: hidden;
    height: 0px;
    width: 4px;
}

#scrollbar1 .disable {
    display: none;
}

.stricky-one-logo {
    position: relative;
}

.stricky-header.main-menu .stricky-one-logo {
    display: block;
}

.stricky-header .main-menu__list>li>a {
    padding-top: 33px;
    padding-bottom: 33px;
}

.features-two__singlewa {
    position: relative;
    display: block;
    background: #ffffff;
    padding: 21px 14px 20px;
    box-shadow: 0px 20px 20px 0px rgb(0 0 0 / 3%);
    margin-bottom: 30px;
    border-radius: 10px;
    overflow: hidden;
    z-index: 1;
}

.features-two__singlewa:hover {
    box-shadow: 0px 10px 60px 0px rgb(0 0 0 / 5%);
}

.features-two__singlewa .features-two__single-title h3 {
    font-size: 18px;
}

h2.main-slider__title {
    font-size: 46px;
    line-height: 1.4em;
}

.ttt {
    font-family: var(--thm-font) !important;
    font-size: 30px !important;
}

.aboutItem {
    width: 100%;
}

.aboutItems {
    display: flex;
    flex-wrap: wrap;
}

.aboutItems>div {
    flex: 50%;
    /* or - flex: 0 50% - or - flex-basis: 50% - */
    margin-bottom: 10px;
}

.contactItems>div {
    flex:  calc((100%/5) - 20px);
    margin:0 10px;
    background-color: white;
    border:1px solid #ddd;
    padding:15px;
    margin-bottom: 20px;
    box-shadow: 0px 20px 20px 0px rgb(0 0 0 / 3%);
    transition: all .5s;
}
.contactItems>div:hover {
    box-shadow: 0px 10px 10px 0px rgb(0 0 0 / 20%);
    transform: scale(1.05);
}
.contactItems>div:hover i {
    color:#f1cf69;
    font-size:16px;
}
.aboutItem .icons {
    text-align: center;
    padding: 25px;
}

.aboutItem p {
    padding: 0px 20px !important;
}

.contactItems p{
    padding:0 !important;
}
.about-three__content-box-inner:after {
    content: "";
    border: solid 1px #2079003d;
    height: 98%;
    position: absolute;
    bottom: 0px;
    right: -15px;
    top: 0;
    margin: auto;
}


/*about style2*/

.about-three.style2 .about-three__content-box-inner:after {
    display: none;
}

.about-three.style2 .about-three__products-list {
    padding-top: 50px;
}

.about-three.style2 .aboutItems>div {
    flex: auto;
    border: 1px solid #f1f1f1;
    /* box-shadow: 0px 20px 20px 0px rgb(0 0 0 / 3%); */
    padding: 20px;
    width: calc((100%/2) - 20px);
    margin: 10px;
}

.about-three.style2 .aboutItem:hover {
    box-shadow: 0px 20px 20px 0px rgb(0 0 0 / 3%);
}

.about-three.style2 .aboutItem .icons {
    padding: 0 0 20px 0;
}

.about-three.style2 .aboutItem p {
    padding: 0px 10px !important;
    text-align: center;
    line-height: 28px;
}

.clogo {
    border: solid 1px #ccc;
    padding: 10px;
    min-height: 120px;
}

nav.main-menu.main-menu--1 {
    width: 90%;
}

h4.video-one__title4 {
    font-size: 30px;
    color: #fff;
    margin-top: 30px;
    font-family: var(--thm-font) !important;
}

@media only screen and (min-width: 768px) {
    .margin-offset {
        margin-left: 12.6666666%;
    }
}


/*--------------------------------------------------------------
# Inner Pages
--------------------------------------------------------------*/

.innerPage_section {
    padding: 80px 0;
}


/*banner*/

.innerPage_header .page-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row-reverse;
}

.innerPage_header .page-header__inner .thm-breadcrumb {
    margin-bottom: 0;
}


/*marquee*/

.marquee.mar marquee ul {
    display: flex;
    margin-top: 25px;
}

.marquee.mar marquee ul li {
    font-size: 17px;
    line-height: 1;
}

.marquee.mar marquee ul li+li {
    padding-left: 15px;
    margin-left: 15px;
    border-left: 2px solid var(--thm-tertiary);
}


/*our values*/

.our_values.about-three .about-three__content-box-inner h2 {
    margin-bottom: 15px;
    margin-top: 35px;
}

.width-100 {
    width: auto;
}


/*--------------------------------------------------------------
# Timeline
--------------------------------------------------------------*/

.timeline_area {
    position: relative;
    z-index: 1;
}

.single-timeline-area {
    position: relative;
    z-index: 1;
    padding-left: 180px;
}

@media only screen and (max-width: 575px) {
    .single-timeline-area {
        padding-left: 100px;
    }
}

.single-timeline-area .timeline-date {
    position: absolute;
    width: 180px;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -ms-grid-row-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    padding-right: 60px;
}

@media only screen and (max-width: 575px) {
    .single-timeline-area .timeline-date {
        width: 100px;
    }
}

.single-timeline-area .timeline-date::after {
    position: absolute;
    width: 3px;
    height: 100%;
    content: "";
    background-color: #ebebeb;
    top: 0;
    right: 30px;
    z-index: 1;
}

.single-timeline-area .timeline-date::before {
    position: absolute;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background-color: #f1c40f;
    content: "";
    top: 50%;
    right: 26px;
    z-index: 5;
    margin-top: -5.5px;
}

.single-timeline-area .timeline-date p {
    margin-bottom: 0;
    color: #020710;
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 500;
}

.single-timeline-area .single-timeline-content {
    position: relative;
    z-index: 1;
    padding: 30px 30px 25px;
    border-radius: 6px;
    margin-bottom: 15px;
    margin-top: 15px;
    -webkit-box-shadow: 0 0.25rem 1rem 0 rgba(47, 91, 234, 0.125);
    box-shadow: 0 0.25rem 1rem 0 rgba(47, 91, 234, 0.125);
    border: 1px solid #ebebeb;
}

.single-timeline-content .services-details__content-text3 {
    margin: 0;
}

.single-timeline-content .services-details__content-text3 .text-box {
    padding: 0;
}

@media only screen and (max-width: 575px) {
    .single-timeline-area .single-timeline-content {
        padding: 20px;
    }
}

.single-timeline-area .single-timeline-content .timeline-icon {
    -webkit-transition-duration: 500ms;
    transition-duration: 500ms;
    width: 30px;
    height: 30px;
    background-color: #f1c40f;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 30px;
    flex: 0 0 30px;
    text-align: center;
    max-width: 30px;
    border-radius: 50%;
    margin-right: 15px;
}

.single-timeline-area .single-timeline-content .timeline-icon i {
    color: #ffffff;
    line-height: 30px;
}

.single-timeline-area .single-timeline-content .timeline-text h6 {
    -webkit-transition-duration: 500ms;
    transition-duration: 500ms;
}

.single-timeline-area .single-timeline-content .timeline-text p {
    font-size: 13px;
    margin-bottom: 0;
}

.single-timeline-area .single-timeline-content:hover .timeline-icon,
.single-timeline-area .single-timeline-content:focus .timeline-icon {
    background-color: var(--thm-tertiary);
}

.single-timeline-area .single-timeline-content:hover .timeline-text h6,
.single-timeline-area .single-timeline-content:focus .timeline-text h6 {
    color: var(--thm-tertiary);
}


/*bod*/

.directors-info {
    display: flex;
    flex-wrap: wrap;
}

.directors-info .meet-farmers-one__single-img {
    width: 250px;
}

.directors-info .meet-farmers-one__single-img img {
    height: 100%;
    object-fit: cover;
}

.directors-info .descrition {
    width: calc(100% - 250px);
    padding: 30px;
    border: 1px solid #dfdddd;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.directors-info .meet-farmers-one__single-title {
    padding-top: 0;
    padding-bottom: 15px;
}

.directors-info.right_align {
    flex-direction: row-reverse;
}

.directors-info.left_align .descrition,
.directors-info.right_align .meet-farmers-one__single-img {
    border-radius: 0 10px 10px 0;
}

.directors-info.right_align .descrition,
.directors-info.left_align .meet-farmers-one__single-img {
    border-radius: 10px 0 0 10px;
}


/*team style 2*/

.team_style2 .directors-info {
    display: flex;
    flex-wrap: wrap;
    padding: 30px;
    border: 1px solid #dfdddd;
    border-radius: 10px;
    justify-content: space-between;
}

.team_style2 .directors-info .meet-farmers-one__single-img {
    width: 208px;
    height: 220px; transform: scaleX(-1) !important;
}

.team_style2 .meet-farmers-one__single-img::before {
    border-radius: 10px;
}

.team_style2 .directors-info .meet-farmers-one__single-img img {
    height: 100%;
    object-fit: cover;
    border-radius: 10px;transform: scaleX(-1) !important;
}

.team_style2 .directors-info .descrition {
    width: calc(100% - (208px + 30px));
    padding: 0;
    border: 0;
    border-radius: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    max-height: 220px;
    overflow: hidden;
    position: relative;
}

.full-content.team_style2 .directors-info .descrition {
    max-height: 100%;
}

.directors-info .readmore-button {
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 100%;
    z-index: 2;
    background-color: #fff;
    text-align: right;
}

.directors-info .readmore-button button {
    font-size: 12px;
    padding: 2px 20px !important;
}

.directors-info .readmore-overlay {
    background: linear-gradient(rgba(2, 0, 36, 0) 0%, rgb(255, 255, 255) 100%);
    position: absolute;
    bottom: 10px;
    left: 0px;
    width: 100%;
    height: 100px;
    z-index: 1;
}

.team-modal .meet-farmers-one__single {
    margin: 0;
}

.grp_companies .faq-one__accordions .accrodion.active .accrodion-title h4::before,
.our_values .about-three__img-box-img::before {
    display: none;
}

.our_values .about-three__img-box {
    height: 100%;
    display: flex;
    align-items: center;
}

.providing-quality-one__logo.custom_rotate {
    z-index: 2;
}

@media (min-width: 576px) {
    .team-modal .modal-dialog {
        max-width: 80%;
    }
}


/*--------------------------------------------------------------
# Our Clients
--------------------------------------------------------------*/

.our_clients .news-details__pagenation-single {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    border: 1px solid #dfdddd;
    margin-bottom: 30px;
    text-align: center;
    cursor: default;
}

.our_clients .news-details__pagenation-single:hover {
    box-shadow: 1px 1px 1px var(--thm-secondary);
    transform: scale(1.1);
    cursor: pointer;
    cursor: default;
}

.our_clients .news-details__pagenation-single img {
    height: 62px;
    /* width: 100%; */
    /* object-fit: cover; */
}


/*tech_innovation*/

.techs.innerPage_section {
    padding: 20px 0 0 !important;
}

.tech_innovation .about-three__content-box-inner p+p {
    margin-top: 15px;
}


/*techs*/

.techs .features-one__single.style2 .features-one__single-img {
    width: 195px;
    background: #fff;
    padding: 0px 20px;
    height: 195px;
}

.techs .features-one__single.style2 .features-one__single-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}


/*csr*/

.csr .services-details__content {
    margin-top: 40px;
}

.csr .accrodion-content .inner p+p {
    margin-top: 15px;
}

.csr .services-details__content-text3 {
    margin-top: 10px;
    margin-bottom: 20px;
}

.csr img {
    border-radius: 10px;
}

.csr .services-details__content-text3 .text-box {
    padding-left: 0;
}

.float_right {
    float: right;
    width: 240px;
    height: 180px;
}

.csr .faq-one__accordions .accrodion .accrodion-content .inner p {
    font-size: 18px;
}

.csr .services-details__content-text3 .text-box ul li .text p {
    color: var(--thm-primary);
    font-weight: 400;
}

.achievements .gallery-outer {
    display: flex;
    /* justify-content: space-between; */
    flex-wrap: wrap;
}

.achievements .gallery-outer a.example-image-link {
    width: 24%;
    border: 1px solid #dfdddd;
    border-radius: 10px;
    background: #fff;
    /* padding: 20px; */
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    /* transition: all ease 2.5s; */
    transform: scale(1);
    transition: all .2s ease-in-out;
    overflow: hidden;
    margin: 0 5px 15px;
}

.achievements .gallery-outer a.example-image-link::before {
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    content: '';
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, .2);
    border-radius: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    opacity: 0;
    z-index: 1;
}

.achievements .gallery-outer a.example-image-link:hover::before {
    animation: circle .75s;
}

.achievements .gallery-outer a.example-image-link img.example-image {
    width: 100%;
    object-fit: scale-down;
    border-radius: 10px;
}

.about-three__img-box {
    height: 100%;
    display: flex;
    align-items: center;
}

.about-three__img-box-img::before {
    display: none;
}


/*font styling*/

body {
    font-size: 16px;
    line-height: 32px;
}

.sec-title__title {
    font-size: 30px;
}

.about-three__content-box-inner h2 {
    font-size: 22px;
}

.services-one__single-content h3 {
    font-size: 22px;
}

.video-one__title {
    font-size: 30px;
}

.features-two__call-box-inner .title h2 {
    font-size: 30px;
}

.cta-one__left-title h2 {
    font-size: 30px;
}

.footer-widget__about-text {
    font-size: 16px;
}

.footer-widget__about-contact-box .phone {
    font-size: 16px;
    line-height: 32px;
}

.footer-widget__explore-list-item a {
    font-size: 16px;
}

.features-one__single.style2 .features-one__single-title h3 {
    font-size: 30px;
}

.commodity .services-details__content {
    margin-top: 50px;
}

.no_close .faq-one__accordions .accrodion .accrodion-title h4::before {
    display: none;
}


/*risk_management*/

.risk_management .about-one__content {
    /* max-width: 100%;
    margin-left: 20px; */
}

.risk_management .faq-one__inner-content-list ul li {
    align-items: flex-start;
    margin-bottom: 15px;
}


/*market_research*/

.market_research .story-one__img::before {
    display: none;
}

.market_research .story-one__counters {
    height: 100%;
}

@media only screen and (min-width: 1200px) and (max-width: 1730px) {
    .market_research .story-one__counters {
        padding: 48px;
    }
}


/*our investor*/

.ourinvestor_page .features-two__single-top .count-box::before {
    display: none;
}


/*table*/

.stock_ex_table tr th,
.stock_ex_table tr td {
    text-align: center;
    font-weight: 500;
    padding: 10px;
}

.stock_ex_table tr th {
    background-color: var(--thm-primary);
    color: #fff;
}

.stock_ex_table tr:nth-child(odd) td {
    background-color: #f1f1f1;
}

.stock_ex_table tr td a {
    background-color: var(--thm-base);
    padding: 5px 10px;
    border-radius: 6px;
    color: var(--thm-primary);
    font-size: 13px;
    transition: all 0.3s linear;
}

.stock_ex_table tr td a:hover {
    background-color: var(--thm-primary);
    color: #fff;
}


/*contact page*/

.contact-page__contact-info-wrapper.address_main {
    padding: 60px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

.contact-page__contact-info-wrapper.address_list {
    display: flex;
    flex-wrap: wrap;
}

.contact-page__contact-info-wrapper.address {
    width: calc((100%/3) - 20px);
    padding-right: 85px;
    margin-top: 30px;
}

.contact-page__contact-info-wrapper.address h5 {
    margin-bottom: 15px;
}

.contact-page__contact-info-wrapper.address_main.style2 {
    padding: 0;
    background: transparent;
    box-shadow: none;
}

.contact-page__contact-info-wrapper.address_main.style2 .contact-page__contact-info-title {
    margin-bottom: 15px;
}

.contact-page__contact-info-wrapper.address_main.style2 .address_list {
    display: flex;;
}

.contact-page__contact-info-wrapper.address_main.style2 .address {
    background: #ffffff;
    padding: 20px;
    box-shadow: 0px 10px 60px 0px rgb(0 0 0 / 5%);
    border-radius: 10px;
    width: calc((100%/5) - 15px);
    margin-right: 15px;
    transition:all .1s;
}

.contact-page__contact-info-wrapper.address_main.style2 .address:hover{
    transform: scale(1.05);
}


.contact-page__contact-info-wrapper.address_main.style2 .address:hover i{
   color:#f1cf69;
   font-size:20px;
}

.contact-page__contact-info-wrapper.address_main.style2 .address h5 {
    margin-bottom: 10px;
}

/*company-overview*/

.company-overview {
    background: #f1f1f1;
}

.company-overview .about-three__content-box {
    background: #fff;
    border: 1px solid #f1f1f1;
    padding: 35px 25px;
    z-index: 2;
    border-radius: 10px;
}

.company-overview .about-three__content-box-inner:after {
    display: none;
}

.overview-highlights .sec-title {
    margin-bottom: 30px;
}

.overview-highlights .services-details__content-text3 {
    margin-top: 0;
}

.overview-highlights .services-details__content-text3 .text-box ul {
    display: flex;
    flex-wrap: wrap;
}

.overview-highlights .services-details__content-text3 .text-box ul li {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 9px;
    flex-direction: column;
    justify-content: center;
    width: calc((100%/3) - 40px);
    margin: 20px;
    padding: 40px 30px;
    border: 1px solid #f1f1f1;
    border-radius: 10px;
}

.overview-highlights .services-details__content-text3 .text-box ul li .img {
    /* border-radius: 50%;
    width: 130px;
    height: 130px; */
    background: #f4f8fb;
    border-radius: 50%;
    width: 170px;
    height: 170px;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.overview-highlights .services-details__content-text3 .text-box ul li .img img {
    /* border-radius: 50%; */
    width: 130px;
    /* height: 130px;
    object-fit: cover; */
}

.overview-highlights .services-details__content-text3 .text-box ul li .text {
    position: relative;
    display: block;
    text-align: center;
    margin-top: 30px;
}

.overview-highlights .services-details__content-text3 .text-box ul li .text p {
    font-weight: 400;
    line-height: 28px;
}

.overview-highlights .services-details__content-text3 .text-box ul li:hover:before {
    height: 100%;
    top: 0;
}

.overview-highlights .services-details__content-text3 .text-box ul li:before {
    position: absolute;
    content: '';
    background-color: var(--thm-primary);
    width: 100%;
    height: 0%;
    left: 0;
    bottom: 0;
    right: 0;
    transition: all .5s ease;
    border-radius: 10px;
}

.overview-highlights .services-details__content-text3 .text-box ul li:hover .text p {
    color: #fff;
}


/*about-counter*/

.about-counter .story-one__counters-box {
    margin-top: 0;
}

.about-counter .story-one__counters-box ul {
    display: flex;
    justify-content: space-between;
}

.about-counter .story-one__counters-box-single {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 35px;
}

.story-one__counters-box-single:hover .img img {
    filter: brightness(1) invert(1);
}

.about-counter.story-one {
    padding: 0;
}

.about-counter .story-one__counters {
    background: #f1f1f1;
}

.about-counter .story-one__counters-box-single .img img {
    width: 50px;
    height: 50px;
}

.about-counter .story-one__counters-box-single .content {
    flex-grow: 1;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    padding-left: 25px;
}

.about-counter .odometer.odometer-auto-theme,
.odometer.odometer-theme-default {
    line-height: 0.8em;
}

.faq-one__accordions .theme-blue.accrodion::before {
    background: var(--thm-tertiary);
}

.theme-blue .services-details__content-text3 .text-box ul li .icon {
    color: var(--thm-tertiary);
}

.faq-one__accordions .theme-green.accrodion::before {
    background: #215222;
}

.theme-green .services-details__content-text3 .text-box ul li .icon {
    color: #215222;
}


/*digitised-enterprise*/

.digitised-enterprise {
    display: flex;
    flex-wrap: wrap;
}

.digitised-enterprise .projects-one__single-img {
    min-height: 450px;
}

.projects-one.digitised .digitised-enterprise .projects-one__single-img .overlay-content {
    height: 180px;
}

.digitised-enterprise .projects-one__single {
    width: calc((100%/3) - 20px);
    margin: 10px;
}

.digitised-enterprise .projects-one__single:hover .projects-one__single-img::before {
    display: none;
}

.digitised-enterprise .projects-one__single .projects-one__single-img .overlay-content {
    transform: scaleY(1);
}

.digitised .digitised-enterprise .projects-one__single .h3 {
    height: 100% !important;
    padding: 20px 25px 20px 35px !important;
    background: rgba(109, 140, 84, 1);
}

.projects-one.digitised .digitised-enterprise .projects-one__single:hover .h3 {
    height: 100% !important;
}

.digitised .digitised-enterprise .projects-one__single:hover .h3 {
    height: auto !important;
    padding: 20px 25px 20px 35px !important;
}


/*what we offer*/

.faq-one__dark {
    background-color: var(--agriox-secondary, #6d8c54);
    position: relative;
}

.faq-one__dark::before {
    content: '';
    background-image: url(../images/backgrounds/faq-one-bg.png);
    opacity: .07;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: var(--agriox-secondary, #6d8c54);
    background-blend-mode: luminosity;
    background-attachment: fixed;
}

.faq-one__dark .sec-title .icon img {
    filter: brightness(0) invert(1);
}

.faq-one__dark .sec-title__tagline {
    color: #dbe6d2;
}

.faq-one__dark .sec-title__title {
    color: #ffffff;
}

.we_offer .features-three__image__caption {
    background: #f1cf69;
    padding: 40px;
    text-align: center;
    border-radius: 10px;
    height: 100%;
    transition: all ease 0.5s;
    border: 1px solid #f1cf69;
}

.we_offer .features-three__image__caption:hover {
    background-color: var(--thm-secondary);
    color: #fff;
}

.we_offer .features-three__image__caption i {
    font-size: 50px;
    margin-bottom: 30px;
    margin-top: 20px;
}

.we_offer .features-three__image__caption h3 {
    color: var(--agriox-primary, #334b35);
    font-size: 24px;
    line-height: 34px;
    font-weight: normal;
    font-family: var(--agriox-font-3, "Shadows Into Light", cursive);
    margin-top: 6px;
    margin: 20px 0 10px 0;
}

.we_offer .features-three__image__caption:hover h3 {
    color: #fff !important;
}

.app_section .about-two__img-box-img1 {
    left: -100px;
}

.app_section .about-two__img-box::before {
    display: none;
}

.digitised-enterprise .blog-one__single {
    height: calc(100% - 30px);
    display: flex;
    flex-direction: column;
}

.digitised-enterprise .blog-one__single-content {
    padding: 0px 20px 20px;
    z-index: 2;
    height: calc(100% - 408px);
}

.digitised-enterprise .blog-one__single-content h4 {
    font-size: 14px;
    background: var(--thm-base);
    top: -12px;
    position: relative;
    padding: 10px 20px;
    border-radius: 10px;
}

.digitised-enterprise .about-one__content-list {
    margin-top: 10px;
}

.digitised-enterprise .about-one__content-list li {
    align-items: flex-start;
    line-height: 25px;
    margin-top: 10px;
    font-size: 14px;
}


/*awards & certifications*/

.awards-certification .left_section .awards_name-outer {
    display: flex;
    align-items: center;
}

.awards-certification .left_section .awards_name-outer+.awards_name-outer {
    margin-top: 15px;
}

.awards-certification .left_section .awards_name-outer .img {
    height: 70px;
    padding: 10px 0;
    width: 100px;
    text-align: center;
}

.awards-certification .left_section .awards_name-outer .img img {
    /* width: 100%; */
    object-fit: cover;
    height: 100%;
}

.awards-certification .left_section .awards_name-outer .award_name {
    flex-grow: 1;
    background-color: #f6f4ec;
    border-radius: 10px;
    margin-left: 0px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    line-height: 18px;
    padding: 20px 10px;
    text-align: center;
    width: calc(100% - 10px);
    font-size: 14px;
}

.awards-certification .left_section .awards_name-outer .award_name em {
    font-size: 14px;
    margin-top: 2px;
}

.all_awards .aboutItem {
    flex: auto;
    width: calc((100% / 5) - 10px);
    border: 1px solid #ececec;
    margin: 0 5px 10px 5px;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
}

.all_awards .year {
    background: #273172;
    color: #fff;
    text-align: center;
    font-size: 13px;
    border-radius: 6px 6px 0 0;
    width: 101%;
}

.all_awards .aboutItem p {
    padding: 10px 10px 0 10px !important;
    text-align: center;
    font-size: 15px;
    line-height: 23px;
}

.all_awards .aboutItem p.heading {
    color: var(--thm-tertiary);
    font-weight: 500;
}

.all_awards .aboutItem p.desc {
    padding-top: 0px !important;
    font-size: 14px;
    flex-grow: 1;
}

.all_awards .aboutItem .icons {
    text-align: center;
    padding: 10px 5px;
}

.all_awards .aboutItem .icons img {
    width: auto;
    height: 40px;
    max-width: 100px;
    object-fit: contain;
}

.awards-certification .about-three__content-box.left_section {
    height: 100%;
}

.awards-certification .about-three__content-box-inner {
    display: flex;
    height: 100%;
    flex-direction: column;
    justify-content: space-around;
}

.download-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.download-btn i {
    margin-top: 13px;
}

.download-btn-outer+.download-btn-outer {
    margin-top: 15px;
}

.downloads .services-details__sidebar-single-services {
    padding: 40px 30px;
}


/*shape styling*/

.cta-two__shape.shape2::before {
    bottom: 50px;
}

.cta-two__shape.shape2::after {
    bottom: 30px;
}


/*downloads*/

.downloads .services-details__sidebar-single-services ul li+li {
    margin-top: 10px;
}

.downloads .services-details__sidebar-single-services ul li a {
    overflow: hidden;
}

.downloads .services-details__sidebar-single-services ul li a.active {
    background-color: #fff;
}

.downloads .services-details__sidebar-single-services ul li a.active i {
    color: var(--thm-base);
}

.downloads .services-details__sidebar-single-services ul li a::before {
    transform: scale(1);
    transform-origin: left;
    width: 0px;
}

.downloads .services-details__sidebar-single-services ul li a:hover::before {
    transform: scale(1.5);
    width: 100%;
}


/*location page*/

.location-page-header {
    padding: 50px 0;
    text-align: center;
}

.location-page-header::before {
    background-color: #f5f5f5;
}

.location-page-header form {
    padding: 0 80px;
}

.location-page-header .heading {
    color: #5f8645;
}

.location-page-header .select-location {
    display: flex;
    /* justify-content: space-between; */
    margin-top: 20px;
    align-items: center;
    margin-bottom: 10px;
}

.location-page-header .form-check-inline {
    display: flex;
    align-items: center;
    min-width: 250px;
}

.location-page-header .form-check .form-check-input {
    float: none;
    margin: 0 20px 0 0;
    width: 1.2em;
    height: 1.2em;
}

.location-page-header .form-check .form-check-input:checked {
    background-color: var(--thm-tertiary);
    border-color: var(--thm-tertiary);
}

.location-page-header .location-search {
    height: 50px;
}

.location-page-header .location-search input {
    border-radius: 10px 0 0 10px;
    padding-left: 25px;
    height: 100%;
}

.location-page-header .location-search input.form-control:focus {
    border-color: var(--thm-base);
    outline: 0;
    box-shadow: none;
}

.location-page-header .location-search button {
    border-radius: 0 10px 10px 0;
    background: var(--thm-base);
    min-width: 150px;
    text-transform: uppercase;
    color: #000;
    font-weight: 600;
    color: var(--thm-primary);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0 50px 0;
    border-radius: 10px;
    border-color: var(--thm-base);
    height: 100%;
}

.warehouse_list_main .warehouse {
    border: 1px solid var(--thm-primary);
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.warehouse_list_main .warehouse.margin-bootom-0 {
    margin-bottom: 0;
}

.warehouse_list_main .warehouse .warehouse-name {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.warehouse_list_main .warehouse .content {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-top: 10px;
}

.warehouse_list_main .warehouse .content .contact-info i {
    margin-right: 20px;
    top: 10px;
    position: relative;
}

.warehouse_list_main .warehouse .content .contact-info>div {
    display: flex;
    align-items: flex-start;
}

.warehouse_list_main .warehouse .content a {
    color: #5f8645;
}

.warehouse_list_main .warehouse .content .button a {
    width: 140px;
    display: flex;
    border: 1px solid #000;
    border-radius: 50px;
    padding: 6px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.warehouse_list_main .warehouse .content .button a:hover {
    background-color: var(--thm-primary);
    color: #fff;
}

.pagination-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
}

.pagination-main .page-link {
    color: var(--thm-primary);
    text-transform: uppercase;
    font-size: 14px;
    padding: 0.1rem 0.75rem;
}

.pagination-main .page-item.active .page-link,
.pagination-main .page-item:hover:not(.disabled) .page-link {
    background-color: var(--thm-primary);
    border-color: var(--thm-primary);
    color: #fff;
}

.pagination-main .page-item:first-child .page-link {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    margin-right: 20px;
}

.pagination-main .page-item+.page-item .page-link {
    margin-left: 5px;
}

.pagination-main .page-item:last-child .page-link {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    margin-left: 20px;
}

.main-menu .main-menu__list li:hover:last-child>ul,
.stricky-header .main-menu__list li:hover:last-child>ul {
    right: 0;
    left: auto;
}

.comment-form__input-box label.error {
    position: relative;
    top: -20px;
    color: red;
}

.video-frame {
    text-align: center;
}

.video-frame iframe {
    margin: 0 auto;
    background: rgba(255,255,255,0.5);
    padding: 10px;
    border-radius: 8px;
}

.app-pro-img {
    height:486px;
    object-fit:contain;
    object-position: top;
}


.overlap-section {
    margin-left: -50px;
}

.bg-white {
    background-color: #fff;
}

.title_desc {
    line-height: 23px;
    margin-top: 8px;
}

.globalClass_2fd7 .label_4dd9._bottom_df1a {
    right: 95px !important;
}

.scroll-to-top {
    right: 5px;
    height: 60px;
    bottom: 50px;
    border-radius: 50px;
    right: 30px;

}


/*sitemap*/
.treeview .btn-default {
    border-color: #e3e5ef;
}
.treeview .btn-default:hover {
    background-color: #f7faea;
    color: #bada55;
}
.treeview ul {
    list-style: none;
    padding-left: 32px;
}
.treeview ul li {
    padding: 50px 0px 0px 35px;
    position: relative;
}
.treeview ul li:before {
    content: "";
    position: absolute;
    top: -26px;
    left: -31px;
    border-left: 2px dashed #a2a5b5;
    width: 1px;
    height: 100%;
}
.treeview ul li:after {
    content: "";
    position: absolute;
    border-top: 2px dashed #a2a5b5;
    top: 70px;
    left: -30px;
    width: 65px;
}
.treeview ul li:last-child:before {
    top: -22px;
    height: 90px;
}
.treeview > ul > li:after, .treeview > ul > li:last-child:before {
    content: unset;
}
.treeview > ul > li:before {
    top: 90px;
    left: 36px;
}
.treeview > ul > li:not(:last-child) > ul > li:before {
    content: unset;
}
.treeview > ul > li > .treeview__level:before {
    height: 60px;
    width: 60px;
    top: -9.5px;
    background-color: var(--thm-tertiary);
    border: 7.5px solid #b7b7c6;
    font-size: 22px;
}
.treeview > ul > li > ul {
    padding-left: 34px;
}
.treeview__level {
    padding: 7px;
    padding-left: 42.5px;
    display: inline-block;
    border-radius: 5px;
    font-weight: 700;
    border: 1px solid #e3e5ef;
    position: relative;
    z-index: 1;
    padding-right: 30px;
}
.treeview__level:before {
    content: attr(data-level);
    position: absolute;
    left: -27.5px;
    top: -6.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 55px;
    width: 55px;
    border-radius: 50%;
    border: 7.5px solid rgb(181 198 183);
    background-color: var(--thm-primary);
    color: #fff;
    font-size: 20px;
}

.treeview__level[data-level="C"]:before {
    border: 7.5px solid rgb(255 239 192);
    background-color: var(--thm-base);
}

.treeview__level-btns {
    margin-left: 15px;
    display: inline-block;
    position: relative;
}
.treeview__level .level-same, .treeview__level .level-sub {
    position: absolute;
    display: none;
    transition: opacity 250ms cubic-bezier(0.7, 0, 0.3, 1);
}
.treeview__level .level-same.in, .treeview__level .level-sub.in {
    display: block;
}
.treeview__level .level-same.in .btn-default, .treeview__level .level-sub.in .btn-default {
    background-color: #faeaea;
    color: #da5555;
}
.treeview__level .level-same {
    top: 0;
    left: 45px;
}
.treeview__level .level-sub {
    top: 42px;
    left: 0px;
}
.treeview__level .level-remove {
    display: none;
}
.treeview__level.selected {
    background-color: #f9f9fb;
    box-shadow: 0px 3px 15px 0px rgba(0, 0, 0, 0.10);
}
.treeview__level.selected .level-remove {
    display: inline-block;
}
.treeview__level.selected .level-add {
    display: none;
}
.treeview__level.selected .level-same, .treeview__level.selected .level-sub {
    display: none;
}
.treeview .level-title {
    cursor: pointer;
    user-select: none;
}
.treeview .level-title:hover {
    text-decoration: underline;
}
.treeview--mapview ul {
    justify-content: center;
    display: flex;
}
.treeview--mapview ul li:before {
    content: unset;
}
.treeview--mapview ul li:after {
    content: unset;
}

/*--------------------------------------------------------------
# Global
--------------------------------------------------------------*/
.thm-btn.btn-sm {
    margin-top: 14px;
    font-size: 10px;
    padding: 2px 25px 2px;
}

.bg-grey {
    background: #f1f1f1;
}

.text-white {
    color: #fff;
}

.lb-data .lb-number {
    color: #fff !important;
}

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

.font-50 {
    font-size: 50px;
}


/*padding*/

.pt-0 {
    padding-top: 0;
}

.pl-30 {
    padding-left: 30px;
}


/*margin*/
.left-0 {
    left: 0px !important;
}

.mb-0 {
    margin-bottom: 0px;
}


.mt-20 {
    margin-top: 20px;
}

.mt-50 {
    margin-top: 50px;
}

.ml-20 {
    margin-left: 20px;
}

.ml-5 {
    margin-left: 5px;
}

.mb-10 {
    margin-bottom: 10px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mr-20 {
    margin-right: 20px;
}


/*color*/

.text-white {
    color: #fff;
}

.bg-grey {
    background-color: #f1f1f1;
}

.list_align-start ul li {
    align-items: flex-start;
}


/*chngs*/
.projects-one__single:hover .projects-one__single-img::before {
    opacity: 0;
}
.sidebar__latest-posts {
    padding: 25px 30px 25px;
}
.sidebar__tag, .sidebar__categories {
    padding: 25px 30px;
}
.sidebar__latest-posts-list-item {
    border-top: 1px solid #ccc;
    padding-top: 15px;
    /* padding-bottom: 5px; */
}
.sidebar__single .title {
    margin-bottom: 12px;
}
.sidebar__latest-posts-list-item .title h4 {
    font-size: 16px;
    line-height: 20px;
}
.sidebar__categories-list li {
    border-top: 1px solid #ccc;
    margin-bottom: 0;
}
.year_title {
    font-weight: normal;
    text-align: right;
    border-bottom: 1px solid #ccc;
}
.year_title:target {
    background:#f6f4ec;
    color:black;
    font-weight: bold;
}

.blog-one__single-img .date-box {
    left: 25px;
}
.blog-one__single-img .date-box span {
    font-size: 11px;
}
.blog-one__single-content {
    padding: 20px 25px;
}
.blog-one__single-content h5 {
    font-size: 16px;
    font-weight:400;
}
.blog-one__single-content h4 {
    font-size: 20px;
    font-weight:400;
}
.main-menu .main-menu__list li:last-child ul, .stricky-header .main-menu__list li:last-child ul {
    left: auto;
    right: 0;
}


.nivo-lightbox-overlay.nivo-lightbox-theme-default .nivo-lightbox-close {
    width: 30px;
    height: 30px;
}

.disclaimerList ul {
    margin-top:20px;
    list-style-type: disc;
    padding-left: 20px;

}

.disclaimerList ul li{
    list-style-type: disc;
}

/*vacancies*/
.thm-btn.btn_small {
    font-size: 12px;
    padding: 2px 20px !important;
}

.file_input {
    height: 70px;
    width: 100%;
    border: none;
    background: #f6f4ec;
    padding: 0 30px;
    margin-bottom: 20px;
    border-radius: 10px;
    outline: none;
    font-size: 14px;
    color: #727d73;
    font-weight: 400;
    text-transform: capitalize;
    font-family: var(--thm-font);
    display: flex;
    /* align-items: center; */
    /* line-height: 63px; */
    border: 0;
    box-shadow: none;
    justify-content: space-between;
    padding-top: 17px;
}

.language_switcher .thm-btn.active {
    color: #ffffff;
}

.language_switcher .thm-btn.active:before, .language_switcher .thm-btn:hover:before {
    width: 100%;
    opacity: 1;
    transform: scale(1.5);
    border-radius: 0;
    background: var(--thm-tertiary);
    background: linear-gradient(95deg, rgb(6, 129, 29) 20%, rgb(79, 203, 12) 80%);
}

.about-one__content-list.custom_list li {
    display: flex;
}

.about-one__content-list.custom_list li .icon {
    display: inline-block;
}

.about-one__content-list.custom_list li .text {
    display: inline-block;
    padding-left: 10px;
}

.text-news-home{
  font-style: italic;
  color:#056a0e;
}

/*blue theme*/
.features-two::before, .footer-one__bottom {
    background: #0070C0;
}
.footer-one__top {
    background: #002060;
}

.main-header--one__top-left .text p, .main-header--one__top-right ul li .text p, .main-header--one__top-right ul li .icon i::before,
.main-menu .main-menu__list>li>a, .stricky-header .main-menu__list>li>a,
.main-menu .main-menu__list>li.current>a,
.main-header--one__top-right ul li .text p a {
    color: #002060;
}

.main-header--one__top-left .social-link ul li a.twitter_bg {
    color: #1DA1F2;
}

.main-header--one__top-left .social-link ul li a.linkedin_bg {
    color: #0e76a8;
}

.main-header--one__top-left .social-link ul li a.insta_bg {
    background: linear-gradient(
        45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
}

.main-header--one__top-left .social-link ul li a.fb_bg {
    color:	#4267B2;
}

.main-header--one__top-left .social-link ul li a.youTube_bg {
    color: 	#FF0000;
}


/* Firefox old*/
@-moz-keyframes blink {
    0% {
        opacity:1;
    }
    50% {
        opacity:0;
    }
    100% {
        opacity:1;
    }
}

@-webkit-keyframes blink {
    0% {
        opacity:1;
    }
    50% {
        opacity:0;
    }
    100% {
        opacity:1;
    }
}
/* IE */
@-ms-keyframes blink {
    0% {
        opacity:1;
    }
    50% {
        opacity:0;
    }
    100% {
        opacity:1;
    }
}
/* Opera and prob css3 final iteration */
@keyframes blink {
    0% {
        opacity:1;
    }
    50% {
        opacity:0;
    }
    100% {
        opacity:1;
    }
}
.blink-image {
    -moz-animation: blink normal 2s infinite ease-in-out; /* Firefox */
    -webkit-animation: blink normal 2s infinite ease-in-out; /* Webkit */
    -ms-animation: blink normal 2s infinite ease-in-out; /* IE */
    animation: blink normal 2s infinite ease-in-out; /* Opera and prob css3 final iteration */
}


.form-validation1{
    margin-left: 40px;
    padding-top: 2px;
    display: inline-block;
    display: none;
    color:rgb(10, 87, 0);
}
