/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Utility
# Cards
# Common
# Form
# Navigation
# Animations
# Mobile Nav
# Search Popup
# Page Header
# Google Map
# Client Carousel
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Common
--------------------------------------------------------------*/



@import url('https://fonts.googleapis.com/css2?family=Albert+Sans:ital,wght@0,100..900;1,100..900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Parkinsans:wght@300..800&display=swap');




/*== Default Css ==*/
:root {
    --thm-font: "Albert Sans", sans-serif;
    --thm-font-2: "Parkinsans", sans-serif;
    --thm-font-3: "Parkinsans", sans-serif;
    --thm-primary-color: #65B141;
    --thm-primary-color-rgb: 101, 177, 65;
    --thm-body-font-color: #2d4a2d;
    --thm-body-font-color-2: #6b9e5a;
    --thm-body-font-color-3: #5a8f4a;
    --thm-body-font-size: 17px;
    --thm-body-line-height: 28px;
    --thm-body-font-weight: 400;
    --thm-heading-font-color: #012d16;
    --thm-white: #ffffff;
    --thm-black: #012d16;
    --thm-black-bg: #018D43;
    --thm-black-bg-rgb: 1, 141, 67;
    --thm-gray-bg: #f1f8e9;
    --thm-gray-bg-rgb: 241, 248, 233;
    --thm-gray-bg-2: #f0f8ec;
    --thm-gray-bg-2-rgb: 240, 248, 236;
    --thm-gray-bg-3: #e8f5e9;
    --thm-gray-bg-3-rgb: 232, 245, 233;
    --thm-border-color: #018D43;
    --thm-border-color-1: #a8d898;
    --thm-border-color-2: #c5e8b0;
    --thm-border-radius: 10px;
}


body {
    font-family: var(--thm-font);
    color: var(--thm-body-font-color);
    font-size: var(--thm-body-font-size);
    line-height: var(--thm-body-line-height);
    font-weight: var(--thm-body-font-weight);
}

.body-bg-1 {
    background-color: #ffffff;
}


.body-bg-2 {
    background-color: #ffffff;
}



p {
    font-family: var(--thm-font);
    color: var(--thm-body-font-color);
    font-size: var(--thm-body-font-size);
    line-height: var(--thm-body-line-height);
    font-weight: var(--thm-body-font-weight);
    margin: 0;
}

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

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


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

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

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

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

section {
    position: relative;
    display: block;
    z-index: 1;
}



body.locked {
    overflow: hidden;
}

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

::-webkit-input-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-heading-font-color);
    font-family: var(--thm-font-2);
    font-weight: 700;
    margin: 0;
}



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

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

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

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

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

.fancybox-slide .fancybox-image-wrap {
    border-radius: 10px;
    overflow: hidden;
}



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

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

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

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

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

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

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

ol,
li {
    margin: 0;
    padding: 0;
}

img {
    max-width: 100%;
    height: auto;
    transition-delay: 0.1s;
    transition-timing-function: ease-in-out;
    transition-duration: 0.7s;
    transition-property: all;
}

/* Form validation styles */
input:focus,
textarea:focus,
select:focus {
    border-color: #43c3ea;
    outline: none;
}

#contact-form input[type="text"].error {
    border-color: red;
}

#contact-form input[type="email"].error {
    border-color: red;
}

#contact-form select.error {
    border-color: red;
}

#contact-form textarea.error {
    border-color: red;
}

#contact-form label.error {
    display: none !important;
}













.rating-box-style1 {
    position: relative;
    display: block;
}

.rating-box-style1 ul {
    position: relative;
    display: flex;
}

.rating-box-style1 ul li {
    position: relative;
    display: block;
    line-height: 0;
}

.rating-box-style1 ul li+li {
    padding-left: 5px;
}

.rating-box-style1 ul li span {
    position: relative;
    display: inline-block;
    color: var(--thm-primary-color);
    font-size: 16px;
    cursor: pointer;
}


/** Thm Social Link **/
.thm-social-link {
    position: relative;
    display: block;
    padding-top: 30px;
}

.thm-social-link ul {
    position: relative;
    display: block;
}

.thm-social-link ul li {
    position: relative;
    float: left;
    margin-right: 10px;
}

.thm-social-link ul li:last-child {
    margin-right: 0;
}

.thm-social-link ul li a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    width: 50px;
    overflow: hidden;
    background-color: var(--thm-black-bg);
    border-radius: 10px;
    color: var(--thm-white);
    font-size: 18px;
    text-align: center;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    z-index: 1;
}

.thm-social-link ul li a:before {
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0px;
    right: 0px;
    background-color: rgba(var(--thm-primary-color-rgb), 1);
    border-radius: 10px;
    content: "";
    opacity: 0;
    transform: scale(0.5);
    transform-style: preserve-3d;
    transition: all 0.4s cubic-bezier(0.62, 0.21, 0.45, 1.52);
    z-index: -1;
}

.thm-social-link ul li:hover a:before {
    opacity: 1;
    transform: scale(1);
}

.thm-social-link ul li:hover a {
    color: var(--thm-black);
}



/** xs sidebar **/
.xs-sidebar-group .xs-overlay {
    position: fixed;
    top: 0;
    left: 0%;
    bottom: 0;
    right: 0;
    opacity: 0;
    visibility: hidden;
    cursor: url(../images/icon/cross-out.png), pointer;
    z-index: 99999999;

    transition: -webkit-transform 0.4s ease;
    transition: transform 0.4s ease;
    transition: transform 0.4s ease, -webkit-transform 0.4s ease;
    transform-origin: left right;
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0);
}

.xs-sidebar-group.isActive .xs-overlay {
    opacity: 0.95;
    visibility: visible;
    right: 100%;
    background: var(--thm-black);
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    transform-origin: left center;
}


.xs-sidebar-widget {
    position: fixed;
    top: 0;
    right: -100%;
    bottom: 0;
    max-width: 460px;
    width: 100%;
    background-color: #ffffff;
    overflow: hidden;
    overflow-y: auto;

    transition-timing-function: ease-out;
    transition: 0.5s;

    visibility: hidden;
    opacity: 1;
    z-index: 999999999;
}

.xs-sidebar-group.isActive .xs-sidebar-widget {
    opacity: 1;
    visibility: visible;
    right: 0;
    transition-timing-function: ease-in;
    transition: 0.5s;
}

.sidebar-widget-container {
    position: relative;
    top: 150px;
    opacity: 0;
    visibility: hidden;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transition: all 300ms ease 100ms;
}

.xs-sidebar-group.isActive .sidebar-widget-container {
    top: 0px;
    opacity: 1;
    visibility: visible;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transition: all 900ms ease 500ms;
}

.xs-overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    opacity: 0.8;
    z-index: 0;
    background-color: #000000;
}

.sidebar-textwidget {
    padding: 50px 45px;
}

.xs-sidebar-group .widget-heading {
    position: absolute;
    top: 0;
    right: 0;
    padding: 25px;
}

.xs-sidebar-group .widget-heading a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--thm-black);
    border-radius: 50%;
    color: var(--thm-black);
    font-size: 20px;
    font-weight: 400;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.xs-sidebar-group .widget-heading a:hover {
    color: var(--thm-primary-color);
    border-color: var(--thm-primary-color);
}

.xs-sidebar-group .content-inner .logo {
    position: relative;
    display: block;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 30px;
}

.xs-sidebar-group .content-inner .logo a {
    position: relative;
    display: inline-block;
}

.xs-sidebar-group .content-inner h3 {
    color: var(--thm-black);
    font-size: 34px;
    line-height: 44px;
    font-weight: 700;
    text-transform: capitalize;
    font-family: var(--thm-font);
    margin-bottom: 22px;
}

.xs-sidebar-group .content-inner h3 span {
    color: var(--thm-base);
    font-size: 25px;
    font-weight: 900;
}

.xs-sidebar-group .content-inner .content-box {
    position: relative;
    display: block;
    padding-top: 33px;
    padding-bottom: 47px;
}

.xs-sidebar-group .content-inner .content-box .inner-text {
    position: relative;
    display: block;
}

.xs-sidebar-group .content-inner .content-box p {
    margin: 0;
}

.xs-sidebar-group .content-inner .sidebar-contact-info {
    position: relative;
    display: block;
}

.xs-sidebar-group .content-inner .sidebar-contact-info h3 {
    color: var(--thm-black);
    font-size: 25px;
    line-height: 30px;
    font-weight: 700;
    margin: 0 0 27px;
}

.sidebar-contact-info ul {
    position: relative;
    display: block;
}

.sidebar-contact-info ul li {
    position: relative;
    display: block;
    margin-bottom: 23px;
}

.sidebar-contact-info ul li:last-child {
    margin-bottom: 0;
}

.sidebar-contact-info ul li .inner {
    position: relative;
    display: block;
    padding-left: 0;
}



/***
.sidebar-contact-info ul li .inner .icon {
    position: absolute;
    top: 0px;
    left: 0;
}
.sidebar-contact-info ul li .inner .icon span {
    position: relative;
    display: block;
    color: var(--thm-base);
    font-size: 27px;
    line-height: 27px;
    font-weight: 500;
}
.sidebar-contact-info ul li .inner .icon span.map-marker {
    color: var(--thm-base);
    position: relative;
    top: 8px;
    font-size: 32px;
}
**/


.sidebar-contact-info ul li .inner .text {
    position: relative;
    display: block;
}

.sidebar-contact-info ul li .inner .text p {
    color: var(--thm-black);
    line-height: 24px;
}

.sidebar-contact-info ul li .inner .text p a {
    color: var(--thm-black);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.sidebar-contact-info ul li .inner .text p a:hover {
    color: var(--thm-primary-color);
    text-shadow: -0.45px -0.45px 0 var(--thm-base), 0.45px 0.45px var(--thm-primary-color);
}

.xs-sidebar-group .content-inner .side-content-newsletter-box {
    position: relative;
    display: block;
    padding-top: 49px;
}

.xs-sidebar-group .content-inner .side-content-newsletter-box h3 {
    color: var(--thm-black);
    font-size: 25px;
    line-height: 30px;
    font-weight: 700;
    margin: 0 0 24px;
}

.side-content-newsletter-box .form-group input[type="email"] {
    position: relative;
    display: block;
    width: 100%;
    height: 60px;
    color: #a3afa6;
    font-size: 18px;
    font-weight: 400;
    background-color: transparent;
    border: 1px solid var(--thm-border-color);
    padding-left: 30px;
    padding-right: 20px;
    border-radius: 10px;
    font-family: var(--thm-font);
}

.side-content-newsletter-box .form-group .btn-one {
    color: var(--thm-black);
    font-family: var(--thm-font-2);
    font-weight: 600;
    border-radius: 30px;
    margin-top: 20px;
}

.side-content-newsletter-box .form-group .btn-one:hover {
    color: var(--thm-white);
}

.side-content-newsletter-box .form-group .btn-one::before {
    background: var(--thm-black-bg);
}

.side-content-newsletter-box .form-group .btn-one::after {
    background: var(--thm-primary-color);
}

.side-content-newsletter-box .form-group .btn-one i {
    position: relative;
    top: 1px;
    margin-left: 10px;
    font-size: 10px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}






/*== Review Css ======*/
.review-box {
    position: relative;
    display: block;
    overflow: hidden;
    line-height: 15px;
}

.review-box ul {
    display: block;
    overflow: hidden;
}

.review-box ul li {
    display: inline-block;
    float: left;
    margin-right: 5px;
    cursor: pointer;
}

.review-box ul li:last-child {
    margin-right: 0px;
}

.review-box ul li i {
    color: #fbaf02;
    font-size: 15px;
}




/*== Section Title Css ======*/
.sec-title {
    position: relative;
    display: block;
    margin-top: 0px;
    padding-bottom: 48px;
}

.sec-title.withtext {
    padding-bottom: 52px;
}

.sec-title .sub-title {
    position: relative;
    display: inline-flex;
    align-items: center;
    border-radius: 5px;
    background-color: var(--thm-black-bg);
    padding: 5px 15px 5px;
    margin-bottom: 17px;
}

.sec-title .sub-title .icon {
    position: relative;
    display: inline-block;
    color: var(--thm-primary-color);
    font-size: 20px;
    line-height: 0;
}

.sec-title .sub-title h4 {
    color: var(--thm-primary-color);
    font-size: 16px;
    line-height: 26px;
    font-family: var(--thm-font-3);
    font-weight: 400;
    text-transform: capitalize;
    margin-left: 8px;
    z-index: 1;
}

.sec-title h2 {
    color: var(--thm-black);
    font-size: 45px;
    line-height: 1.2em;
    font-weight: 700;
}

.sec-title.white h2 {
    color: var(--thm-white);
}

.sec-title .text {
    position: relative;
    display: block;
    padding-top: 10px;
}


/*== Section Title Two Css ======*/

.sec-title-two {
    position: relative;
    display: block;
    margin-top: 0px;
    padding-bottom: 32px;
}

.sec-title-two .sub-title {
    position: relative;
    display: inline-flex;
    align-items: center;
    margin-bottom: 20px;
}

.sec-title-two .sub-title .icon {
    position: relative;
    display: inline-block;
    color: var(--thm-primary-color);
    font-size: 20px;
    line-height: 0;
}

.sec-title-two .sub-title h4 {
    color: var(--thm-black-bg);
    font-size: 18px;
    line-height: 26px;
    font-family: var(--thm-font);
    font-weight: 700;
    text-transform: capitalize;
    margin-left: 8px;
    z-index: 1;
}

.sec-title-two h2 {
    color: var(--thm-black);
    font-size: 40px;
    line-height: 1.2em;
    font-weight: 700;
}

.sec-title-two.white h2 {
    color: var(--thm-white);
}






/*== Btn One Css ======*/
.btn-box {
    position: relative;
    display: block;
}

.btn-one {
    position: relative;
    display: inline-flex;
    align-items: center;
    overflow: hidden;
    background-color: transparent;
    border-radius: 0px;
    text-transform: capitalize;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
    z-index: 2;
}

.btn-one .txt {
    position: relative;
    display: inline-flex;
    align-items: center;
    border-radius: 25px;
    background-color: transparent;
    padding: 5px 25px 5px;
    color: var(--thm-black);
    font-size: 16px;
    line-height: 40px;
    font-family: var(--thm-font-2);
    font-weight: 600;
    overflow: hidden;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
    z-index: 2;
}

.btn-one:hover .txt {
    color: var(--thm-white);
}

.btn-one .txt:after {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0px;
    right: 0px;
    transform: scaleX(1);
    transition-duration: 800ms;
    background-color: var(--thm-primary-color);
    z-index: -2;
}

.btn-one:hover .txt:after {
    transform: scaleX(0);
    transition-duration: 1500ms;
}

.btn-one .txt:before {
    position: absolute;
    top: 0px;
    left: -5px;
    bottom: 0;
    right: 100%;
    content: "";
    background: var(--thm-black);
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    border-radius: 0%;
    transition-duration: 800ms;
    z-index: -1;
}

.btn-one:hover .txt:before {
    right: 0px;
    left: 0;
    -webkit-transform: translateX(0);
    transform: translateX(0);
}

.btn-one i {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    overflow: hidden;
    border-radius: 50%;
    background-color: var(--thm-primary-color);
    color: var(--thm-black);
    font-size: 26px;
    font-weight: 400;
    top: 0px;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
    z-index: 2;
}

.btn-one:hover i {
    color: var(--thm-white);
}

.btn-one i::after {
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0;
    right: 100%;
    content: "";
    background: var(--thm-black);
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    border-radius: 0%;
    transition-duration: 800ms;
    z-index: -1;
}

.btn-one:hover i::after {
    right: 0px;
    left: 0;
    -webkit-transform: translateX(0);
    transform: translateX(0);
}







/*== Btn Two Css ======*/
.btn-two {
    position: relative;
    display: inline-flex;
    align-items: center;
    color: var(--thm-base);
    font-size: 15px;
    line-height: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-family: var(--thm-font-3);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.btn-two span {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    color: var(--thm-black);
    font-size: 18px;
    margin-left: 10px;
    transition: border-color 0.5s ease;
    transition: all 0.5s ease;
    z-index: 1;
}

.btn-two:hover span {
    color: #ffffff;
}

.btn-two span:after {
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0px;
    right: 0px;
    background: var(--thm-base);
    border-radius: 50%;
    content: "";
    opacity: 0;
    transform: scale(0.5);
    transform-style: preserve-3d;
    z-index: -1;
    transition: background-color 0.5s ease;
    transition: all 0.5s ease;
}

.btn-two:hover span:after {
    opacity: 1.0;
    transform: scale(1.0);
}

.btn-two:hover {
    color: var(--thm-base);
    letter-spacing: normal;
}


/*== Section Btn Css ======*/
.section-btn {
    position: relative;
    display: block;
    text-align: center;
    line-height: 0;
    margin-top: 40px;
    z-index: 1;
}

.section-btn::before {
    content: "";
    position: absolute;
    top: 21px;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background-color: var(--thm-border-color);
    z-index: -1;
}

.section-btn-inner {
    position: relative;
    display: inline-block;
    overflow: hidden;
    border-radius: 21px;
    background-color: transparent;
    border: 1px solid var(--thm-border-color);
    padding: 7px 25px 7px;
    z-index: 1;
}

.section-btn-inner p {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.section-btn-inner-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--thm-white);
    background-repeat: repeat;
    z-index: -1;
}

.section-btn-inner p a {
    position: relative;
    display: inline-flex;
    align-items: center;
    color: var(--thm-black);
    font-size: 14px;
    line-height: 26px;
    font-weight: 700;
    font-family: var(--thm-font-2);
    text-transform: uppercase;
    margin-left: 8px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.section-btn-inner p a i {
    font-size: 14px;
    margin-right: 6px;
}

.section-btn-inner p a:hover {
    color: var(--thm-primary-color);
}




/*== Owl Dot Style One Css ======*/
.owl-carousel.owl-dot-style1 .owl-dots {
    position: relative;
    text-align: center;
    line-height: 0;
    margin-top: 60px !important;
    display: block;
}

.owl-carousel.owl-dot-style1 .owl-dots .owl-dot {
    position: relative;
    display: inline-block;
    width: 6px;
    height: 6px;
    background-color: rgba(var(--thm-primary-color-rgb), 0.3);
    border: 0px solid;
    margin: 0px 6px;
    padding: 0px;
    border-radius: 50%;
    transition: all 100ms linear;
    transition-delay: 0.1s;
}

.owl-carousel.owl-dot-style1 .owl-dots .owl-dot.active {}

.owl-carousel.owl-dot-style1 .owl-dots .owl-dot::before {
    content: "";
    position: absolute;
    top: -2px;
    left: -2px;
    bottom: -2px;
    right: -2px;
    border-radius: 50%;
    background-color: var(--thm-primary-color);
    transition: background-color 0.5s ease;
    transition: all 0.5s ease;
    transform-origin: left right;
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0);
}

.owl-carousel.owl-dot-style1 .owl-dots .owl-dot.active::before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    transform-origin: left right;
}

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



/*== Owl Dot Style Two Css ======*/
.owl-carousel.owl-dot-style2 .owl-dots {
    position: relative;
    text-align: center;
    line-height: 0;
    margin-top: 30px !important;
    display: block;
}

.owl-carousel.owl-dot-style2 .owl-dots .owl-dot {
    position: relative;
    display: inline-block;
    width: 16px;
    height: 16px;
    background-color: transparent;
    border: 5px solid #ffffff;
    margin: 0px 5px;
    padding: 0px;
    border-radius: 50%;
    transition: all 100ms linear;
    transition-delay: 0.1s;
}

.owl-carousel.owl-dot-style2 .owl-dots .owl-dot:before {
    content: "";
    position: absolute;
    top: -5px;
    left: -5px;
    bottom: -5px;
    right: -5px;
    border: 1px solid var(--thm-base);
    border-radius: 50%;
    transform: scale(0);
    transition: all 500ms ease;
}

.owl-carousel.owl-dot-style2 .owl-dots .owl-dot.active {
    border: 5px solid #1a1c23;
    background-color: var(--thm-base);
}

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

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






/*== Owl Nav Style One Css ======*/
.owl-nav-style-one.owl-theme .owl-stage-outer {
    position: relative;
    display: block;
    padding-top: 0px;
    padding-bottom: 0px;
}

.owl-nav-style-one.owl-theme .owl-nav {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    width: 140px;
    margin: 0;
    z-index: 10;
}

.owl-nav-style-one.owl-theme .owl-nav [class*="owl-"] {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 60px;
    overflow: hidden;
    background-color: transparent;
    border: 1px solid #dbdee7;
    border-radius: 5px;
    margin: 0 5px;
    padding: 0;
    transition: all 100ms ease 1s;
    z-index: 1;
}

.owl-nav-style-one.owl-theme .owl-nav [class*="owl-"]:hover {
    border: 1px solid var(--thm-primary-color);
    clip-path: polygon(100% 0, 100% 70%, 80% 100%, 0 100%, 0 0);
}

.owl-nav-style-one.owl-theme .owl-nav [class*="owl-"]::before {
    content: "";
    position: absolute;
    top: -1px;
    left: -1px;
    bottom: -1px;
    right: -1px;
    border-radius: 5px;
    background-color: var(--thm-primary-color);
    clip-path: polygon(100% 0, 100% 70%, 80% 100%, 0 100%, 0 0);
    border-radius: 0%;
    opacity: 0;
    -webkit-transform: perspective(400px) rotateX(0deg) scale(0);
    -ms-transform: perspective(400px) rotateX(0deg) scale(0);
    transform: perspective(400px) rotateX(0deg) scale(0);
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
    transition: -webkit-transform 0.4s ease;
    transition: transform 0.4s ease;
    transition: transform 0.4s ease, -webkit-transform 0.4s ease;
    z-index: -1;
}

.owl-nav-style-one.owl-theme .owl-nav [class*="owl-"]:hover::before {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateX(0deg) scale(1.0);
    -ms-transform: perspective(400px) rotateX(0deg) scale(1.0);
    transform: perspective(400px) rotateX(0deg) scale(1.0);
}

.owl-nav-style-one.owl-theme .owl-nav [class*="owl-"] span {
    position: relative;
    display: block;
    color: var(--thm-black);
    font-size: 20px;
    font-weight: 500;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.owl-nav-style-one.owl-theme .owl-nav .owl-prev {
    transform: rotate(0deg);
}

.owl-nav-style-one.owl-theme .owl-nav .owl-next {
    transform: rotate(0deg);
}

.owl-nav-style-one.owl-theme .owl-nav [class*="owl-"] span {
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.owl-nav-style-one.owl-theme .owl-nav [class*="owl-"]:hover span {
    color: var(--thm-white);
}


/*== Scrool To Top Css ======*/
.scroll-to-top {
    position: fixed;
    right: 50px;
    bottom: 50px;
    transform: rotate(0deg);
    z-index: 99999999999;
}

.scroll-to-top.scroll-to-top1 {
    right: 40px;
    bottom: 65px;
}

.scroll-to-top .visible {
    visibility: visible !important;
    opacity: 1 !important;
}

.scroll-to-top .scroll-top-inner {
    opacity: 0;
    visibility: hidden;
}

.scroll-to-top .scroll-top-inner {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
    -o-transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
    transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}

.scroll-to-top .scroll-bar {
    width: 50px;
    height: 4px;
    margin-right: 10px;
    position: relative;
    display: none;
}

.scroll-to-top .scroll-bar:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: var(--thm-primary-color);
    opacity: 1;
}

.scroll-to-top .scroll-bar .bar-inner {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    background-color: var(--thm-secondary-color);
}

.scroll-to-top .scroll-bar-text {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid var(--thm-primary-color);
    color: var(--thm-primary-color);
    font-size: 20px;
    cursor: pointer;
    transition: all 500ms ease;
}

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

.scroll-to-top.bg2 .scroll-bar-text {
    background: #0a3e56;
}


.scroll-to-top--style2 {
    position: relative;
    top: 0px;
    right: 0;
    bottom: 0;
    transform: rotate(0deg);
}

.scroll-to-top--style2 .scroll-bar {
    display: none;
}

.scroll-to-top--style2 .scroll-bar-text {
    color: var(--thm-black);
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
    cursor: pointer;
    font-family: var(--thm-font-2);
    transition: all 500ms ease;
    width: auto;
    height: auto;
    background: transparent;
}

.scroll-to-top--style2 .scroll-bar-text p {
    color: var(--thm-black);
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
    font-family: var(--thm-font-2);
}

.scroll-to-top--style2 .scroll-bar-text:hover p {
    color: var(--thm-primary-color);
}

.scroll-to-top--style2 .scroll-bar-text span {
    position: relative;
    top: 0;
    display: inline-block;
    padding-left: 10px;
    color: var(--thm-primary-color);
    font-size: 16px;
}




/*== Styled Pagination Css ======*/
.styled-pagination {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: auto;
}

.styled-pagination::before {
    display: none;
}

.styled-pagination.pdtop60 {
    padding-top: 60px;
}

.styled-pagination.pdtop30 {
    padding-top: 20px;
}

.styled-pagination li {
    position: relative;
    display: block;
    float: left;
}

.styled-pagination li+li {
    margin-left: 10px;
}

.styled-pagination li a {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid var(--thm-border-color-1);
    color: var(--thm-black);
    font-size: 16px;
    line-height: 26px;
    font-weight: 600;
    font-family: var(--thm-font-2);
    text-align: center;
    text-transform: uppercase;
    transition: all 500ms ease;
    z-index: 1;
}

.styled-pagination li a span:before {
    position: relative;
    top: 0px;
    color: var(--thm-black);
    font-size: 21px;
    transition: all 500ms ease;
}

.styled-pagination li:hover a span:before {
    color: var(--thm-white);
}


.styled-pagination li:hover a span::before,
.styled-pagination li.active a span::before {
    color: var(--thm-white);
    border-color: transparent;
}

.styled-pagination li.prev {
    transform: rotate(180deg);
}

.styled-pagination li.prev a span:before {
    position: relative;
    display: inline-block;
}

.styled-pagination li.next a span:before {
    position: relative;
    display: inline-block;
}

.styled-pagination li:hover a,
.styled-pagination li.active a {
    color: var(--thm-white);
    border-color: transparent;
    background: var(--thm-black-bg);
}

.styled-pagination li.prev a,
.styled-pagination li.next a {
    width: 56px;
    height: 56px;
}

.styled-pagination li.next a {
    overflow: hidden;
    transform: rotate(0deg);
}






/*== checked Css Css ======*/
.checked-box1 {
    position: relative;
    display: block;
    min-height: 26px;
}

.checked-box1 input[type="checkbox"] {
    display: none;
}

.checked-box1 label {
    position: relative;
    display: inline-block;
    padding-left: 25px;
    color: var(--thm-body-font-color);
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;
    cursor: pointer;
    font-family: var(--thm-font);
}

.checked-box1 input[type="checkbox"]+label span {
    position: absolute;
    display: block;
    top: 5px;
    left: 0;
    width: 14px;
    height: 14px;
    vertical-align: middle;
    background-color: transparent;
    border: 1px solid #e3e4ea;
    cursor: pointer;
    border-radius: 4px;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.checked-box1 label span:before {
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0;
    right: 0;
    content: "";
    width: 8px;
    height: 8px;
    background: var(--thm-primary-color);
    border-radius: 50%;
    margin: 2px auto 0px;
    transform: scale(0);
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.checked-box1 input[type="checkbox"]:checked+label span {
    border-color: #e3e4ea;
}

.checked-box1 input[type="checkbox"]:checked+label span:before {
    transform: scale(1.0);
}



/*== checked Css Css ======*/
.checked-box2 {
    position: relative;
    display: block;
    min-height: 28px;
}

.checked-box2 input[type="checkbox"] {
    display: none;
}

.checked-box2 label {
    position: relative;
    display: inline-block;
    padding-left: 25px;
    color: var(--thm-body-font-color);
    font-size: 17px;
    line-height: 28px;
    font-weight: 400;
    cursor: pointer;
    font-family: var(--thm-font);
}

.checked-box2 input[type="checkbox"]+label span {
    position: absolute;
    top: 6px;
    left: 0;
    width: 15px;
    height: 15px;
    vertical-align: middle;
    background-color: transparent;
    border: 1px solid var(--thm-border-color);
    cursor: pointer;
    border-radius: 5px;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.checked-box2 label span:before {
    content: "";
    position: absolute;
    top: 3px;
    left: 3px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: var(--thm-primary-color);
    transform: scale(0);
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.checked-box2 input[type="checkbox"]:checked+label span {
    border-color: var(--thm-primary-color);
}

.checked-box2 input[type="checkbox"]:checked+label span:before {
    transform: scale(1.0);
}



/*== Star Rating Style1 Css ======*/
.star-rating-style1 {
    position: relative;
    display: inline-flex;
    justify-content: flex-start;
    direction: rtl;
}

.star-rating-style1 input[type="radio"] {
    display: none;
}

.star-rating-style1 label {
    position: relative;
    display: inline-block;
    cursor: pointer;
    color: var(--thm-primary-color);
    font-size: 24px;
    padding: 0 1px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.star-rating-style1 input[type="radio"]:checked~label {
    color: var(--thm-white);
}

.star-rating-style1 label:hover,
.star-rating-style1 label:hover~label {
    color: var(--thm-white);
}



/*== Accordion Box Style 1 Css ======*/
.accordion-box-style1 {
    position: relative;
    display: block;
}

.accordion-box-style1 .accordion {
    position: relative;
    display: block;
    margin-bottom: 20px;
}

.accordion-box-style1 .accordion:last-child {
    margin-bottom: 0;
}

.accordion-box-style1 .accordion .accord-btn {
    position: relative;
    display: flex;
    align-items: center;
    flex-direction: row;
    cursor: pointer;
    background-color: transparent;
    border: 1px solid var(--thm-border-color);
    padding-top: 0px;
    padding-left: 0px;
    padding-bottom: 0px;
    padding-right: 30px;
    border-radius: 0px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    z-index: 3;
}

.accordion-box-style1 .accordion .accord-btn.active {
    -webkit-transition: all 0.9s linear;
    -o-transition: all 0.9s linear;
    transition: all 0.9s linear;
}

.accordion-box-style1 .accordion .accord-btn.active {
    border-left: 1px solid var(--thm-primary-color);
}

.accordion-box-style1 .accordion .accord-btn .left {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 58px;
    background-color: transparent;
    border-right: 1px solid var(--thm-border-color);
    z-index: 1;
}

.accordion-box-style1 .accordion .accord-btn.active .left {
    border-color: var(--thm-primary-color);
}

.accordion-box-style1 .accordion .accord-btn.active .left::before {
    content: "";
    position: absolute;
    top: -1px;
    left: 0px;
    bottom: 0;
    right: 0;
    width: 100px;
    height: 60px;
    background-color: var(--thm-primary-color);
    z-index: -1;
}

.accordion-box-style1 .accordion .accord-btn .left h4 {
    color: var(--thm-primary-color);
    font-size: 18px;
    line-height: 28px;
}

.accordion-box-style1 .accordion .accord-btn.active .left h4 {
    color: var(--thm-white);
}

.accordion-box-style1 .accordion .accord-btn h3 {
    color: var(--thm-body-font-color);
    font-size: 20px;
    line-height: 30px;
    font-weight: 600;
    padding-left: 20px;
}

.accordion-box-style1 .accordion .accord-btn.active h3 {
    color: var(--thm-black);
}

.accordion-box-style1 .accordion .accord-btn::after {
    font-family: 'icomoon' !important;
    position: absolute;
    content: "\e90e";
    top: 50%;
    right: 25px;
    color: var(--thm-black);
    font-size: 18px;
    transform: translateY(-50%);
    transition: all 500ms ease 0s;
}

.accordion-box-style1 .accordion .accord-btn.active:after {
    color: var(--thm-primary-color);
    content: "\e901";
}

.accordion-box-style1 .accordion .accord-content {
    position: relative;
    background-color: transparent;
    box-shadow: none;
    border: 1px solid var(--thm-border-color);
    border-top: none;
    padding: 34px 30px 38px;
    display: none;
    z-index: 2;
}

.accordion-box-style1 .accordion .accord-content.collapsed {
    display: block;
}

.accordion-box-style1 .accordion .accord-content p {
    margin: 0;
}




/*== Accordion Box Css ======*/
.accordion-box {
    position: relative;
    display: block;
}

.accordion-box li+li {
    margin-top: 20px;
}

.accordion-box .block {
    position: relative;
    display: block;
    overflow: hidden;
    transition-delay: .1s;
    transition-timing-function: ease-in-out;
    transition-duration: .3s;
    transition-property: all;
}

.accordion-box .block .acc-content.current {
    display: block;
}

.accordion-box .block .acc-btn {
    position: relative;
    display: block;
    cursor: pointer;
    background: #F9F9F9;
    border: none;
    padding: 21px 30px 21px;
    transition: all 500ms ease;
}

.accordion-box .block .acc-btn.active {
    background: #F9F9F9;
}

.accordion-box .block .acc-btn h3 {
    color: var(--thm-black);
    font-size: 24px;
    line-height: 28px;
    font-family: var(--thm-font-2);
    font-weight: 700;
    transition: all 500ms ease;
}

.accordion-box .block .acc-btn.active h3 {
    color: var(--thm-primary-color);
}

.accordion-box .block .acc-btn::before {
    font-family: 'icomoon' !important;
    position: absolute;
    content: "\e935";
    top: 50%;
    right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: transparent;
    color: var(--thm-black);
    font-size: 14px;
    font-weight: 700;
    transform: translateY(-50%);
    transition: all 500ms ease 0s;
}

.accordion-box .block .acc-btn.active::before {
    content: "\e936";
    color: var(--thm-white);
    background-color: var(--thm-primary-color);
}

.accordion-box .block .acc-content {
    position: relative;
    display: none;
    border: none;
    background-color: #F9F9F9;
    padding: 4px 30px 43px;
    padding-right: 70px;
}

.accordion-box .block .acc-content p {
    margin: 0;
}






/*== Search Popup Css ======*/
.search-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 300px;
    padding-left: 20px;
    padding-right: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(-10%);
    transform: translateY(-10%);
    z-index: 9999;
}

.search-popup.active {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.search-popup__overlay {
    position: absolute;
    top: 0%;
    left: 0%;
    right: 0%;
    height: 300px;
    background-color: var(--thm-primary-color);
    opacity: 1.0;
    cursor: pointer;
}

.search-popup__close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 60px;
    height: 60px;
    background-color: var(--thm-black);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--thm-white);
    font-size: 24px;
}



.search-popup__content {
    width: 100%;
    max-width: 560px;
    background-color: #000000;
    padding: 10px;
    z-index: 10;
}

.search-popup__content form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    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"] {
    position: relative;
    display: block;
    width: 100%;
    height: 70px;
    background-color: #fff;
    color: var(--thm-black);
    font-size: 16px;
    border: none;
    outline: none;
    padding-left: 30px;
    padding-right: 80px;
}

.search-popup__content .thm-btn {
    position: absolute;
    top: 0;
    right: 0px;
    padding: 0;
    width: 60px;
    height: 70px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    border-radius: 0;
    background-color: var(--thm-black);
    border: 0;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
    color: #ffffff;
    font-size: 22px;
    font-weight: 400;
    transition: background-color 0.5s ease;
    transition: all 0.5s ease;
}

.search-popup__content .thm-btn i {
    background-color: transparent;
    margin-left: 0;
}

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

/* Preloader */
.handle-preloader {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    display: -ms-flexbox;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    -webkit-justify-content: center;
    z-index: 9999999;
}

.handle-preloader .animation-preloader {
    position: absolute;
    z-index: 100;
}

.handle-preloader .animation-preloader .spinner {
    height: 150px;
    width: 150px;
    border-radius: 50%;
    margin: 0 auto 45px auto;
    animation: spinner 1s infinite linear;
}

.handle-preloader .animation-preloader .txt-loading {
    text-align: center;
    user-select: none;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading {
    position: relative;
    display: inline-block;
    font-family: var(--thm-font-3);
    font-weight: 700;
    letter-spacing: 15px;
    font-size: 70px;
    line-height: 70px;
    text-transform: uppercase;
    color: transparent;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: rgba(255, 255, 255, 0.3);
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:before {
    animation: letters-loading 4s infinite;
    content: attr(data-text-preloader);
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(2):before {
    animation-delay: 0.1s;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(3):before {
    animation-delay: 0.2s;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(4):before {
    animation-delay: 0.3s;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(5):before {
    animation-delay: 0.4s;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(6):before {
    animation-delay: 0.5s;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(7):before {
    animation-delay: 0.6s;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(8):before {
    animation-delay: 0.7s;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(9):before {
    animation-delay: 0.8s;
}

.handle-preloader .loader-section {
    background-color: #ffffff;
    height: 100%;
    position: fixed;
    top: 0;
    width: calc(50% + 1px);
}

.preloader .loaded .animation-preloader {
    opacity: 0;
    transition: 0.3s ease-out;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:before {
    color: #ffffff;
}

.handle-preloader .animation-preloader .spinner {
    border: 3px solid #ffffff;
    border-top-color: rgba(255, 255, 255, 0.7);
}

/* AnimaciĆĀ³n del preloader */
@keyframes spinner {
    to {
        transform: rotateZ(360deg);
    }
}

@keyframes letters-loading {

    0%,
    75%,
    100% {
        opacity: 0;
        transform: rotateY(-90deg);
    }

    25%,
    50% {
        opacity: 1;
        transform: rotateY(0deg);
    }
}

.loader-wrap .layer-one {
    position: absolute;
    left: 0%;
    top: 0;
    width: 33.3333%;
    height: 100%;
    overflow: hidden;
}

.loader-wrap .layer-two {
    position: absolute;
    left: 33.3333%;
    top: 0;
    width: 33.3333%;
    height: 100%;
    overflow: hidden;
}

.loader-wrap .layer-three {
    position: absolute;
    left: 66.6666%;
    top: 0;
    width: 33.3333%;
    height: 100%;
    overflow: hidden;
}

.loader-wrap .layer .overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: var(--thm-black);
}

@media screen and (max-width: 767px) {
    .handle-preloader .animation-preloader .spinner {
        height: 8em;
        width: 8em;
    }
}

@media screen and (max-width: 500px) {
    .handle-preloader .animation-preloader .spinner {
        height: 7em;
        width: 7em;
    }

    .handle-preloader .animation-preloader .txt-loading .letters-loading {
        font-size: 40px;
        letter-spacing: 10px;
    }
}




@-webkit-keyframes pulse10 {
    0% {
        -webkit-box-shadow: 0 0 0 0 #ee212b;
        box-shadow: 0 0 0 0 #ee212b;
    }

    40% {
        -webkit-box-shadow: 0 0 0 50px rgba(255, 194, 17, 0);
        box-shadow: 0 0 0 50px rgba(255, 194, 17, 0);
    }

    70% {
        -webkit-box-shadow: 0 0 0 50px rgba(255, 194, 17, 0);
        box-shadow: 0 0 0 50px rgba(255, 194, 17, 0);
    }

    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(255, 194, 17, 0);
        box-shadow: 0 0 0 0 rgba(255, 194, 17, 0);
    }
}

@keyframes pulse10 {
    0% {
        -webkit-box-shadow: 0 0 0 0 #ee212b;
        box-shadow: 0 0 0 0 #ee212b;
    }

    40% {
        -webkit-box-shadow: 0 0 0 50px rgba(255, 194, 17, 0);
        box-shadow: 0 0 0 50px rgba(255, 194, 17, 0);
    }

    70% {
        -webkit-box-shadow: 0 0 0 50px rgba(255, 194, 17, 0);
        box-shadow: 0 0 0 50px rgba(255, 194, 17, 0);
    }

    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(255, 194, 17, 0);
        box-shadow: 0 0 0 0 rgba(255, 194, 17, 0);
    }
}



.section-top-shape {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background-size: 100% 100%;
    z-index: 2;
}

.section-bottom-shape {
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    height: 5px;
    background-size: 100% 100%;
    z-index: 2;
}
































/*================================
    What We Do Style1 Css
================================*/
.what-we-do-style1 {
    margin-top: -95px;
    z-index: 15;
}

.single-what-we-do-style1 {
    position: relative;
    display: block;
    overflow: hidden;
    background-color: var(--thm-white);
    border: 1px solid var(--thm-border-color);
    border-radius: var(--thm-border-radius);
    margin-bottom: 40px;
}

.single-what-we-do-style1__title {
    position: relative;
    display: block;
    border-bottom: 1px solid var(--thm-border-color);
    padding: 9px 9px 9px;
}

.single-what-we-do-style1__title-inner {
    position: relative;
    display: block;
    overflow: hidden;
    text-align: center;
    background-color: var(--thm-gray-bg-2);
    border: 1px solid var(--thm-border-color);
    border-top-left-radius: var(--thm-border-radius);
    border-top-right-radius: var(--thm-border-radius);
    padding: 20.5px 0px 20.5px;
    z-index: 1;
}

.single-what-we-do-style1__title-pattern {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-repeat: repeat;
    z-index: -1;
}

.single-what-we-do-style1__title-inner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    opacity: 0;
    background-color: var(--thm-primary-color);
    transition: opacity 0.5s ease, transform 0.5s ease, visibility 0.5s ease;
    transform-origin: left top;
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0);
    z-index: -1;
}

.single-what-we-do-style1:hover .single-what-we-do-style1__title-inner::before {
    opacity: 1;
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    transform-origin: bottom center;
}

.single-what-we-do-style1__title-inner h3 {
    font-size: 22px;
    line-height: 32px;
    font-weight: 600;
}

.single-what-we-do-style1__title-inner h3 a {
    color: var(--thm-black);
    transition: all 300ms linear;
    transition-delay: 0.2s;
}

.single-what-we-do-style1__title-inner h3 a:hover {
    color: var(--thm-white);
}

.single-what-we-do-style1__content {
    position: relative;
    display: block;
    overflow: hidden;
    padding: 50px 30px 37px;
    z-index: 1;
}

.single-what-we-do-style1__content-pattren {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-repeat: repeat;
}

.single-what-we-do-style1__conten-bg {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    opacity: 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: scroll;
    transition: opacity 0.7s ease, transform 0.7s ease, visibility 0.7s ease;
    transform-origin: bottom right;
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
    z-index: -1;
}

.single-what-we-do-style1__conten-bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: #4E342E;
    background: linear-gradient(0deg, rgba(78, 52, 46, 1) 0%, rgba(78, 52, 46, 0.75) 45%, rgba(78, 52, 46, 0) 100%);
}

.single-what-we-do-style1:hover .single-what-we-do-style1__conten-bg {
    opacity: 1;
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    transform-origin: left center;
}

.single-what-we-do-style1__content-btn2 {
    position: absolute;
    top: auto;
    left: 0;
    bottom: 50px;
    right: 0;
    opacity: 0;
    text-align: center;
    transform: translateY(150%);
    -webkit-transition: all 0.7s ease;
    -o-transition: all 0.7s ease;
    transition: all 0.7s ease;
}

.single-what-we-do-style1__content-btn2 .btn-one .txt:before {
    background: var(--thm-black-bg);
}

.single-what-we-do-style1__content-btn2 .btn-one i::after {
    background: var(--thm-black-bg);
}

.single-what-we-do-style1:hover .single-what-we-do-style1__content-btn2 {
    opacity: 1;
    transform: translateY(0%);
}

.single-what-we-do-style1__content-inner {
    position: relative;
    display: block;
    text-align: center;
    opacity: 1;
    transform: translateY(0);
    -webkit-transition: all 0.7s ease;
    -o-transition: all 0.7s ease;
    transition: all 0.7s ease;
}

.single-what-we-do-style1:hover .single-what-we-do-style1__content-inner {
    opacity: 0;
    transform: translateY(100%);
}

.what-we-do-style1__content-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: transparent;
    margin: 0px auto 0px;
    z-index: 1;
}

.what-we-do-style1__content-icon-bg {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-position: center center;
    z-index: -1;
}

.what-we-do-style1__content-icon i {
    color: var(--thm-black-bg);
    font-size: 50px;
    line-height: 50px;
}

.what-we-do-style1__content-text {
    position: relative;
    display: block;
    margin-top: 27px;
}

.what-we-do-style1__content-text p {
    margin: 0;
}

.what-we-do-style1__content-btn {
    position: relative;
    display: block;
    margin-top: 20px;
}

.what-we-do-style1__content-btn a {
    position: relative;
    display: inline-flex;
    align-items: center;
    color: var(--thm-black);
    font-size: 16px;
    line-height: 28px;
    font-family: var(--thm-font-2);
    font-weight: 600;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}


.what-we-do-style1__content-btn a i {
    color: var(--thm-primary-color);
    font-size: 21px;
    margin-right: 8px;
}



/*** 
=================================================
    Products Style1      
=================================================
***/
.products-style1 {
    padding: 120px 0px 0px;
    z-index: 10;
}

.products-style1::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    height: 273px;
    background-color: var(--thm-gray-bg-2);
}

.single-products-style1 {
    position: relative;
    display: block;
    margin-bottom: 40px;
}

.single-products-style1__img {
    position: relative;
    display: block;
    padding-bottom: 35px;
}

.single-products-style1__img-inner {
    position: relative;
    display: block;
    overflow: hidden;
    border-top-left-radius: var(--thm-border-radius);
    border-top-right-radius: var(--thm-border-radius);
}

.single-products-style1__img-inner::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--thm-black-bg);
    opacity: 0;
    z-index: 1;
    transition: opacity 0.5s ease;
    transition: all 0.5s ease;
}

.single-products-style1:hover .single-products-style1__img-inner::before {
    opacity: .8;
}

.single-products-style1__img-inner img {
    width: 100%;
    transform: scale(1.0);
    transition: all 1500ms ease;
}

.single-products-style1:hover .single-products-style1__img-inner img {
    transform: scale(1.05) rotate(0deg);
}

.single-products-style1__img-overlay {
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: var(--thm-black-bg);
    padding: 19px 123px 19px;
    padding-right: 0;
    z-index: 5;
}

.single-products-style1__img-overlay-icon {
    position: absolute;
    top: 50%;
    left: 10px;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: var(--thm-black-bg);
    transform: translateY(-50%);
}

.single-products-style1__img-overlay-icon i {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 82px;
    height: 82px;
    border-radius: 50%;
    background-color: transparent;
    border: 2px dotted var(--thm-primary-color);
    transition: background-color 0.5s ease;
    transition: all 0.5s ease;

}

.single-products-style1:hover .single-products-style1__img-overlay-icon i {
    border-color: var(--thm-primary-color);
    background-color: var(--thm-primary-color);
}

.single-products-style1__img-overlay-icon i::before {
    color: var(--thm-primary-color);
    font-size: 42px;
    line-height: 42px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-products-style1:hover .single-products-style1__img-overlay-icon i::before {
    color: var(--thm-black-bg);
}

.single-products-style1__img-overlay-title {
    position: relative;
    display: block;
    z-index: 1;
}

.single-products-style1__img-overlay-title h3 {
    font-size: 22px;
    line-height: 32px;
    font-weight: 600;
}

.single-products-style1__img-overlay-title h3 a {
    color: var(--thm-white);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-products-style1__img-overlay-title h3 a:hover {
    color: var(--thm-primary-color);
}

.single-products-style1__img-overlay-count {
    position: absolute;
    top: -50%;
    right: 0px;
    bottom: 0;
    transform: translateY(44%);
}

.single-products-style1__img-overlay-count h2 {
    color: #684b45;
    font-size: 60px;
    line-height: 1.0em;
    font-family: var(--thm-font-3);
    font-weight: 400;
}

.single-products-style1__content {
    position: relative;
    display: block;
    background-color: var(--thm-white);
    border-bottom-left-radius: var(--thm-border-radius);
    border-bottom-right-radius: var(--thm-border-radius);
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.12);
    padding: 37px 30px 27px;
}

.single-products-style1__content-text {
    position: relative;
    display: block;
}

.single-products-style1__content-text p {
    margin: 0;
}

.single-products-style1__content-btn {
    position: relative;
    display: block;
    margin-top: 14px;
}

.single-products-style1__content-btn a {
    position: relative;
    display: inline-flex;
    align-items: center;
    color: var(--thm-black);
    font-size: 16px;
    line-height: 28px;
    font-family: var(--thm-font-2);
    font-weight: 600;
    padding-left: 30px;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.single-products-style1:hover .single-products-style1__content-btn a {
    color: var(--thm-primary-color);
    padding-left: 0;
}

.single-products-style1__content-btn a i.one {
    position: absolute;
    top: 50%;
    transform: translateY(-50%) translateX(0px);
    left: 0;
    opacity: 1;
    color: var(--thm-primary-color);
    font-size: 21px;
    line-height: 21px;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.single-products-style1:hover .single-products-style1__content-btn a i.one {
    opacity: 0;
    transform: translateY(-50%) translateX(30px);
}

.single-products-style1__content-btn a i.two {
    position: relative;
    color: var(--thm-primary-color);
    font-size: 21px;
    line-height: 21px;
    margin-left: 8px;
    opacity: 0;
    transform: translateX(-30px);
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.single-products-style1:hover .single-products-style1__content-btn a i.two {
    opacity: 1;
    transform: translateX(0px);
}



/*** 
=================================================
    Products Style1--style2      
=================================================
***/
.products-style1--style2::before {
    display: none;
}

.products-style1--style2__bg {
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    height: 255px;
    background-color: var(--thm-gray-bg-2);
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-position: bottom center;
    z-index: -1;
}

.products-style1--style2 .single-products-style1 {
    margin-bottom: 30px;
}




/*** 
=================================================
    Products Style2      
=================================================
***/
.products-style2 {
    padding: 120px 0px 120px;
}

.products-style2__top {
    position: relative;
    display: block;
    margin-bottom: 40px;
}

.products-style2__top-content {
    position: relative;
    display: block;
    padding-right: 20px;
}

.products-style2__top-content .sec-title.withtext {
    padding-bottom: 32px;
}

.products-style2__top-content .sec-title .text {
    padding-top: 30px;
}

.single-products-style2 {
    position: relative;
    display: block;
    padding-bottom: 27px;
}

.single-products-style2__inner {
    position: relative;
    display: block;
    text-align: center;
    background-color: var(--thm-gray-bg-2);
    border-radius: var(--thm-border-radius);
    padding: 33px 0px 70px;
    transition: background-color 0.5s ease;
    transition: all 0.5s ease;
}

.single-products-style2:hover .single-products-style2__inner {
    background-color: var(--thm-white);
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.12);
}

.single-products-style2__content {
    position: relative;
    display: block;
    margin-bottom: 22px;
}

.single-products-style2__content h3 {
    font-size: 22px;
    line-height: 32px;
    font-weight: 600;
    margin-bottom: 8px;
}

.single-products-style2__content h3 a {
    color: var(--thm-black);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-products-style2__content h3 a:hover {
    color: var(--thm-primary-color);
}

.single-products-style2__content p {
    margin: 0;
}

.single-products-style2__img {
    position: relative;
    display: block;
}

.single-products-style2__img img {
    width: auto;
}

.single-products-style2__btn {
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    text-align: center;
}

.single-products-style2__btn a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    margin: 0px auto 0px;
    background-color: var(--thm-white);
    border: 2px dotted var(--thm-primary-color);
    transition: background-color 0.5s ease;
    transition: all 0.5s ease;
    z-index: 1;
}

.single-products-style2:hover .single-products-style2__btn a {
    border-color: var(--thm-primary-color);
    background-color: var(--thm-primary-color);
}

.single-products-style2__btn a i {
    color: var(--thm-primary-color);
    font-size: 21px;
    line-height: 21px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-products-style2:hover .single-products-style2__btn a i {
    color: var(--thm-black);
}

.products-style2__banner {
    position: relative;
    display: block;
    overflow: hidden;
    background-color: var(--thm-black-bg);
    border-radius: var(--thm-border-radius);
    padding: 42px 40px 51px;
}

.products-style2__banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    opacity: .08;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-position: top left;
}

.products-style2__banner-content {
    position: relative;
    display: block;
}

.products-style2__banner-content h2 {
    color: var(--thm-white);
    font-size: 36px;
    line-height: 1.3em;
    margin-bottom: 10px;
}

.products-style2__banner-content p {
    color: var(--thm-body-font-color-2);
}

#products-style2__banner-form {
    position: relative;
    display: block;
    margin-top: 27px;
}

#products-style2__banner-form .form-group {
    position: relative;
    display: block;
    background-color: var(--thm-white);
    border-radius: 30px;
}

#products-style2__banner-form .form-group .row {
    --bs-gutter-x: 0px;
}

#products-style2__banner-form .nice-select {
    position: relative;
    display: block;
    background-color: transparent;
    border-radius: 0;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border: none;
    width: 100%;
    height: 60px;
    color: var(--thm-body-font-color);
    font-size: 17px;
    line-height: 60px;
    font-family: var(--thm-font);
    font-weight: 400;
    outline: none;
    padding: 0px 40px 0px;
    padding-right: 30px;
    transition: all 0.2s ease-in-out;
}

#products-style2__banner-form .nice-select.wide1 {
    padding-left: 25px;
    width: 220px;
    color: var(--thm-black);
    background-color: var(--thm-gray-bg);
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
}

#products-style2__banner-form .nice-select::after {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    content: "\e98e" !important;
    font-family: 'icomoon' !important;
    color: var(--thm-body-font-color-2);
    font-size: 12px;
    top: 0;
    right: 21px;
    bottom: 0;
    margin: 0px;
    font-weight: 400;
    border: none !important;
    transform: rotate(0deg) !important;
    -webkit-transform-origin: 0% 0%;
    -ms-transform-origin: 0% 0%;
    transform-origin: 0% 0%;
    height: 100%;
    width: 20px;
}

#products-style2__banner-form .nice-select .list {
    background-color: var(--thm-white);
    border-radius: 10px;
    box-shadow: 0 0 10px rgb(0 0 0 / 10%);
    padding: 0px 0 0px;
    margin-top: 10px;
    -webkit-transform-origin: 100% 0;
    -ms-transform-origin: 100% 0;
    transform-origin: 100% 0;
    -webkit-transform: scale(1.0) translateY(30px);
    -ms-transform: scale(1.0) translateY(30px);
    transform: scale(1.0) translateY(30px);
    -webkit-transition: all 0.4s linear;
    -o-transition: all 0.4s linear;
    transition: all 0.4s linear;
    height: 0;
    width: 100%;
    right: 0 !important;
    left: auto !important;
}

#products-style2__banner-form .nice-select.open .list {
    opacity: 1;
    pointer-events: auto;
    -webkit-transform: scale(1) translateY(0);
    -ms-transform: scale(1) translateY(0);
    transform: scale(1) translateY(0);
    height: auto;
}

#products-style2__banner-form .nice-select .option {
    color: var(--thm-black);
    padding-left: 20px;
    padding-right: 20px;
    font-size: 15px;
    line-height: 40px;
    min-height: 40px;
    transition: background-color 0.5s ease;
    transition: all 0.5s ease;
}

#products-style2__banner-form .nice-select .option+.option {
    border-top: 1px solid rgba(0, 0, 0, 0.10);
}

#products-style2__banner-form .nice-select .option:hover,
#products-style2__banner-form .nice-select .option.focus,
#products-style2__banner-form .nice-select .option.selected.focus {
    color: var(--thm-black) !important;
    background-color: var(--thm-primary-color);
}

#products-style2__banner-form .btn-box {
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 20px;
    line-height: 0;
}

#products-style2__banner-form .btn-box .btn-one i {
    width: 54px;
    height: 54px;
}

#products-style2__banner-form .btn-box .btn-one .txt {
    line-height: 44px;
}

#products-style2__banner-form .btn-box .right {
    position: relative;
    display: flex;
    align-items: center;
    margin-left: 20px;
    flex: 1;
}

#products-style2__banner-form .btn-box .right .icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background-color: transparent;
    border: 1px solid rgb(255, 255, 255, .3);
}

#products-style2__banner-form .btn-box .right .icon i {
    color: var(--thm-primary-color);
    font-size: 24px;
    line-height: 24px;
}

#products-style2__banner-form .btn-box .right .text {
    position: relative;
    display: block;
    margin-left: 16px;
    flex: 1;
}

#products-style2__banner-form .btn-box .right .text p {
    color: var(--thm-body-font-color-2);
}

#products-style2__banner-form .btn-box .right .text a {
    position: relative;
    display: inline-flex;
    align-items: center;
    color: var(--thm-white);
    font-family: var(--thm-font-2);
    font-size: 16px;
    line-height: 26px;
    font-weight: 500;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

#products-style2__banner-form .btn-box .right .text a i {
    font-size: 12px;
    line-height: 12px;
    margin-left: 9px;
}

#products-style2__banner-form .btn-box .right .text a:hover {
    color: var(--thm-primary-color);
}


/*** 
=================================================
    Activities Style1     
=================================================
***/
.activities-style1 {
    background-color: var(--thm-gray-bg-2);
    padding: 80px 0px 120px;
}

.activities-style1__shape {
    position: absolute;
    left: 0;
    bottom: 0;
    opacity: .08;
    mix-blend-mode: luminosity;
}

.activities-style1__shape img {
    width: auto;
}

.activities-style1__left {
    position: relative;
    display: block;
    padding-left: 100px;
    margin-right: 10px;
}

.activities-style1__left-img {
    position: relative;
    display: block;
    overflow: hidden;
    padding-right: 100px;
    margin-right: 20px;
}

.activities-style1__left-img-inner {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: var(--thm-border-radius);
}

.activities-style1__left-img-inner img {
    width: auto;
}

.activities-style1__left-img-shape {
    position: absolute;
    top: 70px;
    left: 0;
}

.activities-style1__left-img-shape img {
    width: auto;
}

.activities-style1__left-big-title {
    position: absolute;
    top: 50%;
    left: -7px;
    transform: translateY(-50%);
}

.activities-style1__left-big-title h2 {
    color: var(--thm-primary-color);
    font-size: 85px;
    line-height: 1.0em;
    font-family: var(--thm-font-2);
    font-weight: 700;
    text-transform: uppercase;
    writing-mode: vertical-rl;
    transform: translateY(0%) rotate(180deg);
}

.activities-style1__left-border {
    position: absolute;
    top: 90px;
    right: 0;
    width: 355px;
    height: 355px;
    border-radius: 50%;
    background-color: transparent;
    border: 2px dotted var(--thm-primary-color);
}

.activities-style1__left-fact {
    position: absolute;
    right: 20px;
    bottom: 60px;
    width: 205px;
    height: 205px;
    overflow: hidden;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
}

.activities-style1__left-fact-bg {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-size: auto;
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-position: center center;
}

.activities-style1__left-fact-inner {
    position: relative;
    display: block;
    text-align: center;
}

.activities-style1__left-fact-title {
    position: relative;
    display: block;
    margin-bottom: 2px;
}

.activities-style1__left-fact-title h4 {
    font-size: 18px;
    line-height: 28px;
    font-weight: 600;
}

.activities-style1__left-fact-shape {
    position: relative;
    display: block;
}

.activities-style1__left-fact-shape img {
    width: auto;
}

.activities-style1__left-fact-count {
    position: relative;
    display: inline-flex;
    align-items: center;
    margin-top: 8px;
}

.activities-style1__left-fact-count h2 {
    color: var(--thm-black-bg);
    font-size: 36px;
    line-height: 1.0em;
    font-family: var(--thm-font-3);
    font-weight: 400;
}

.activities-style1__left-fact-count .percent {
    position: relative;
    color: var(--thm-black-bg);
    font-size: 36px;
    line-height: 1.0em;
    font-family: var(--thm-font-3);
    font-weight: 400;
}

.activities-style1__content {
    position: relative;
    display: block;
}

.activities-style1__content-inner {
    position: relative;
    display: block;
}

.single-activities-style1 {
    position: relative;
    display: block;
    overflow: hidden;
    text-align: center;
    background-color: var(--thm-gray-bg-3);
    border-radius: var(--thm-border-radius);
    padding: 33px 0px 40px;
}

.single-activities-style1__content {
    position: relative;
    display: block;
}

.single-activities-style1__content h3 {
    font-size: 22px;
    line-height: 32px;
    font-weight: 600;
    margin-bottom: 13px;
}

.single-activities-style1__content h3 a {
    color: var(--thm-black);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-activities-style1__content h3 a:hover {
    color: var(--thm-primary-color);
}

.single-activities-style1__content p {
    margin: 0;
}

.single-activities-style1__content a.btn-box {
    position: relative;
    display: inline-flex;
    align-items: center;
    color: var(--thm-black);
    font-size: 16px;
    line-height: 28px;
    font-family: var(--thm-font-2);
    font-weight: 600;
    margin-top: 20px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-activities-style1__content a.btn-box i {
    color: var(--thm-primary-color);
    font-size: 21px;
    line-height: 21px;
    margin-right: 8px;
}

.single-activities-style1__content a.btn-box:hover {
    color: var(--thm-primary-color);
}

.single-activities-style1__icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background-color: var(--thm-black-bg);
    margin: 31px auto 0px;
}

.single-activities-style1__icon-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 82px;
    height: 82px;
    border-radius: 50%;
    background-color: transparent;
    border: 2px dotted var(--thm-primary-color);
}

.single-activities-style1__icon-inner i {
    color: var(--thm-primary-color);
    font-size: 40px;
    line-height: 40px;
}

.single-activities-style1__shape {
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    opacity: .3;
    height: 175px;
    mix-blend-mode: multiply;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-position: bottom center;
}

/*** 
=================================================
    Activities Style2     
=================================================
***/
.activities-style1--style2 {
    position: relative;
    display: block;
    padding: 120px 0px 120px;
    overflow: hidden;
    z-index: 1;
}











/*** 
=================================================
    Project Style1      
=================================================
***/
.project-style1 {
    padding: 120px 0px 111px;
}

.single-project-style1 {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

.single-project-style1__img {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: var(--thm-border-radius);
}

.single-project-style1__img::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--thm-black-bg);
    opacity: 0;
    z-index: 1;
    transition: opacity 0.5s ease;
    transition: all 0.5s ease;
}

.single-project-style1:hover .single-project-style1__img::before {
    opacity: .9;
}

.single-project-style1__img img {
    width: 100%;
    transform: scale(1.0);
    transition: all 1500ms ease;
}

.single-project-style1:hover .single-project-style1__img img {
    transform: scale(1.05) rotate(0deg);
}

.single-project-style1__img-category {
    position: absolute;
    top: 23px;
    left: 30px;
    z-index: 5;
}

.single-project-style1__img-category span {
    color: var(--thm-primary-color);
    font-size: 16px;
    line-height: 25px;
    font-family: var(--thm-font-3);
    font-weight: 400;
}

.single-project-style1__img-title {
    position: absolute;
    left: 30px;
    bottom: 21px;
    opacity: 1;
    transform: translateY(0%);
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
    z-index: 5;
}

.single-project-style1:hover .single-project-style1__img-title {
    opacity: 0;
    transform: translateY(120%);
}

.single-project-style1__img-title h3 {
    font-size: 26px;
    line-height: 35px;
    font-weight: 600;
}

.single-project-style1__img-title h3 a {
    color: var(--thm-white);
}

.single-project-style1__img-title-overlay {
    position: absolute;
    left: 30px;
    bottom: 22px;
    opacity: 0;
    transform: translateY(120%);
    -webkit-transition: all 0.7s ease;
    -o-transition: all 0.7s ease;
    transition: all 0.7s ease;
    z-index: 5;
}

.single-project-style1:hover .single-project-style1__img-title-overlay {
    opacity: 1;
    transform: translateY(0%);
}

.single-project-style1__img-title-overlay h3 {
    font-size: 26px;
    line-height: 35px;
    font-weight: 600;
    margin-bottom: 8px;
}

.single-project-style1__img-title-overlay h3 a {
    color: var(--thm-white);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-project-style1__img-title-overlay h3 a:hover {
    color: var(--thm-primary-color);
}

.single-project-style1__img-title-overlay p {
    color: var(--thm-body-font-color-2);
}

.single-project-style1__img-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(.5);
    -webkit-transition: all 0.7s ease;
    -o-transition: all 0.7s ease;
    transition: all 0.7s ease;
    z-index: 3;
}

.single-project-style1:hover .single-project-style1__img-icon {
    opacity: 1;
    transform: scale(1);
}

.single-project-style1__img-icon a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background-color: var(--thm-primary-color);
    transition: background-color 0.5s ease;
    transition: all 0.5s ease;
}

.single-project-style1__img-icon a:hover {
    background-color: var(--thm-white);
}

.single-project-style1__img-icon a i {
    color: var(--thm-black);
    font-size: 21px;
    line-height: 21px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-project-style1__img-icon a:hover i {
    color: var(--thm-primary-color);
}

.project-style1__btn {
    position: relative;
    display: block;
    line-height: 0;
    margin-top: 23px;
}

.project-style1__btn a {
    position: relative;
    display: inline-flex;
    align-items: center;
    color: var(--thm-black);
    font-size: 16px;
    line-height: 28px;
    font-family: var(--thm-font-2);
    font-weight: 600;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.project-style1__btn a:hover {
    color: var(--thm-primary-color);
}

.project-style1__btn a i {
    color: var(--thm-primary-color);
    font-size: 21px;
    line-height: 21px;
    margin-right: 10px;
}




/*** 
=================================================
    Project Style2      
=================================================
***/
.project-style2 {
    padding: 120px 0px 120px;
}

.project-style2__top {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding-bottom: 48px;
}

.project-style2__top .sec-title {
    padding-bottom: 0;
}

.project-style2__top-btn {
    position: relative;
    display: block;
    line-height: 0;
    top: -3px;
}

.project-style2__top-btn a {
    position: relative;
    display: inline-flex;
    align-items: center;
    color: var(--thm-black);
    font-size: 16px;
    line-height: 28px;
    font-family: var(--thm-font-2);
    font-weight: 600;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.project-style2__top-btn a i {
    color: var(--thm-primary-color);
    font-size: 21px;
    line-height: 0;
    margin-right: 9px;
}

.project-style2__top-btn a:hover {
    color: var(--thm-primary-color);
}

.project-style2 .auto-container {
    max-width: 110%;
    padding: 0px 0;
    margin-left: -25px;
    margin-right: -25px;
}

.single-project-style2 {
    position: relative;
    display: block;
}

.single-project-style2__img {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: var(--thm-border-radius);
}

.single-project-style2__img::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--thm-black-bg);
    opacity: 0;
    z-index: 1;
    transition: opacity 0.5s ease;
    transition: all 0.5s ease;
}

.single-project-style2:hover .single-project-style2__img::before {
    opacity: .9;
}

.single-project-style2__img img {
    width: 100%;
    transform: scale(1.0);
    transition: all 1500ms ease;
}

.single-project-style2:hover .single-project-style2__img img {
    transform: scale(1.05) rotate(0deg);
}

.single-project-style2__img-category {
    position: absolute;
    top: 22px;
    left: 30px;
    opacity: 0;
    transform: translateY(-20px);
    transition: all 500ms ease;
    z-index: 5;
}

.single-project-style2:hover .single-project-style2__img-category {
    opacity: 1;
    transform: translateY(0px);
}

.single-project-style2__img-category span {
    color: var(--thm-primary-color);
    font-size: 16px;
    line-height: 26px;
    font-family: var(--thm-font-3);
    font-weight: 400;
}

.single-project-style2__img-content {
    position: absolute;
    left: 30px;
    bottom: 21px;
    right: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    opacity: 0;
    transform: translateY(50px);
    transition: all 500ms ease;
    z-index: 5;
}

.single-project-style2:hover .single-project-style2__img-content {
    opacity: 1;
    transform: translateY(0px);
}

.single-project-style2__img-content-left {
    position: relative;
    display: block;
}

.single-project-style2__img-content-left h3 {
    font-size: 22px;
    line-height: 32px;
    font-weight: 600;
}

.single-project-style2__img-content-left h3 a {
    color: var(--thm-white);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-project-style2__img-content-left h3 a:hover {
    color: var(--thm-primary-color);
}

.single-project-style2__img-content-right {
    position: relative;
    display: block;
}

.single-project-style2__img-content-right a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background-color: var(--thm-white);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-project-style2__img-content-right a i {
    color: var(--thm-black);
    font-size: 21px;
    line-height: 21px;
}

.single-project-style2__img-content-right a:hover {
    background-color: var(--thm-primary-color);
}


.project-style2-carousel.owl-nav-style-one.owl-theme .owl-stage-outer {
    position: relative;
    display: block;
}

.project-style2-carousel.owl-theme .owl-nav {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 55px;
    width: 205px;
    margin: 60px auto 0px;
    z-index: 10;
}

.project-style2-carousel.owl-theme .owl-nav [class*="owl-"] {
    position: relative;
    display: inline-block;
    width: 55px;
    height: 55px;
    overflow: hidden;
    background-color: transparent;
    border: 1px solid #dbdee7;
    border-radius: 50%;
    margin: 0 0px;
    padding: 0;
    transition: all 700ms ease 3s;
    z-index: 1;
}

.project-style2-carousel.owl-theme .owl-nav [class*="owl-"]:hover {
    border: 1px solid var(--thm-black);
}

.project-style2-carousel.owl-theme .owl-nav [class*="owl-"]::before {
    content: "";
    position: absolute;
    top: -1px;
    left: -1px;
    bottom: -1px;
    right: -1px;
    border-radius: 50%;
    background-color: var(--thm-black);
    clip-path: polygon(100% 0, 100% 70%, 80% 100%, 0 100%, 0 0);
    opacity: 0;
    -webkit-transform: perspective(400px) rotateX(0deg) scale(0);
    -ms-transform: perspective(400px) rotateX(0deg) scale(0);
    transform: perspective(400px) rotateX(0deg) scale(0);
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
    transition: -webkit-transform 0.4s ease;
    transition: transform 0.4s ease;
    transition: transform 0.4s ease, -webkit-transform 0.4s ease;
    z-index: -1;
}

.project-style2-carousel.owl-theme .owl-nav [class*="owl-"]:hover::before {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateX(0deg) scale(1.0);
    -ms-transform: perspective(400px) rotateX(0deg) scale(1.0);
    transform: perspective(400px) rotateX(0deg) scale(1.0);
}

.project-style2-carousel.owl-theme .owl-nav [class*="owl-"] span {
    position: relative;
    display: block;
    color: var(--thm-black);
    font-size: 24px;
    font-weight: 500;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.project-style2-carousel.owl-theme .owl-nav [class*="owl-"] span {
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.project-style2-carousel.owl-theme .owl-nav [class*="owl-"]:hover span {
    color: var(--thm-white);
}

.project-style2-carousel .owl-dots {
    position: absolute;
    left: 0;
    bottom: -15px;
    right: 22px;
    counter-reset: slides-num;
    width: 80px;
    height: 55px;
    display: block !important;
    margin: 0 auto;
}

.project-style2-carousel .owl-dots::after {
    position: absolute;
    right: 0px;
    top: 0px;
    content: "0"counter(slides-num);
    display: inline-block;
    color: var(--thm-primary-color);
    font-size: 18px;
    font-weight: 400;
    font-family: var(--thm-font-3);
}

.project-style2-carousel .owl-dots:before {
    position: absolute;
    content: '';
    right: 28px;
    top: 4px;
    width: 2px;
    height: 15px;
    background: var(--thm-primary-color);
    transform: rotate(10deg);
}

.project-style2-carousel .owl-dots button span {
    display: none !important;
}

.project-style2-carousel .owl-dots button {
    position: absolute;
    top: 0px;
    right: 45px;
    counter-increment: slides-num;
    color: var(--thm-black);
    font-size: 18px;
    font-weight: 400;
    font-family: var(--thm-font-3);
}

.project-style2-carousel .owl-dots button.active:before {
    position: absolute;
    content: counter(slides-num);
}

.project-style2-carousel .owl-dots button.active:after {
    position: absolute;
    content: '0';
    top: 0px;
    right: 0px;
}


/*** 
===============================
        Faq Style1    
===============================
***/
.faq-style1 {
    background-color: var(--thm-gray-bg);
    padding: 120px 0px 120px;
}

.faq-style1__contact {
    position: relative;
    display: block;
    padding-right: 100px;
    padding-bottom: 50px;
}

.faq-style1__contact-inner {
    position: relative;
    display: block;
    background-color: var(--thm-white);
    border-radius: var(--thm-border-radius);
    padding: 50px 50px 46px;
}

.faq-style1__contact-list {
    position: relative;
    display: block;
    z-index: 5;
}

.faq-style1__contact-list>ul {
    position: relative;
    display: block;
}

.faq-style1__contact-list>ul>li {
    position: relative;
    display: flex;
    align-items: center;
    background-color: var(--thm-black-bg);
    border-radius: var(--thm-border-radius);
    padding: 15px 0px 15px;
}

.faq-style1__contact-list>ul>li+li {
    margin-top: 20px;
}

.faq-style1__contact-list>ul>li .icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background-color: var(--thm-primary-color);
    border-top-right-radius: 35px;
    border-bottom-right-radius: 35px;
}

.faq-style1__contact-list>ul>li .icon i {
    color: var(--thm-black-bg);
    font-size: 25px;
    line-height: 25px;
}

.faq-style1__contact-list>ul>li .text {
    position: relative;
    display: block;
    padding-left: 20px;
    flex: 1;
}

.faq-style1__contact-list>ul>li .text h4 {
    position: relative;
    display: inline-block;
    color: var(--thm-white);
    font-size: 16px;
    line-height: 28px;
    font-weight: 500;
}

.faq-style1__contact-list>ul>li .text h4::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 5px;
    right: 0;
    width: 100%;
    height: 1px;
    background-color: var(--thm-white);
}

.faq-style1__contact-list>ul>li .text p {
    color: var(--thm-body-font-color-2);
}

.faq-style1__contact-list>ul>li .text p a {
    color: var(--thm-body-font-color-2);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.faq-style1__contact-list>ul>li .text p a:hover {
    color: var(--thm-primary-color);
}

.faq-style1__contact-social {
    position: relative;
    display: block;
    margin-top: 23px;
}

.faq-style1__contact-social h4 {
    font-size: 16px;
    line-height: 28px;
    font-weight: 500;
}

.faq-style1__contact-social>ul {
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 11px;
}

.faq-style1__contact-social>ul>li {
    position: relative;
    display: block;
}

.faq-style1__contact-social>ul>li+li {
    margin-left: 10px;
}

.faq-style1__contact-social>ul>li>a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--thm-gray-bg);
    color: var(--thm-black-bg);
    font-size: 18px;
    line-height: 0;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.faq-style1__contact-social ul>li>a:hover {
    color: var(--thm-black-bg);
    background-color: var(--thm-primary-color);
}

.faq-style1__contact-img {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.faq-style1__contact-img img {
    width: auto;
}

.faq-style1__content-inner {
    position: relative;
    display: block;
}

.faq-style1__content-inner .accordion-box .block .acc-btn {
    background: #e9e4d0;
    padding: 21px 30px 21px;
    padding-right: 90px;
    border-radius: var(--thm-border-radius);
}

.faq-style1__content-inner .accordion-box .block .acc-btn.active {
    background: var(--thm-black-bg);
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.faq-style1__content-inner .accordion-box .block .acc-btn h3 {
    font-size: 18px;
    line-height: 28px;
    font-weight: 600;
}

.faq-style1__content-inner .accordion-box .block .acc-btn::before {
    content: "\e97b";
    right: 0px;
    width: 84px;
    height: 84px;
    color: var(--thm-black-bg);
    font-size: 24px;
}

.faq-style1__content-inner .accordion-box .block .acc-btn.active::before {
    content: "\e97a";
    color: var(--thm-primary-color);
    background-color: transparent;
}

.faq-style1__content-inner .accordion-box .block .acc-content {
    background-color: #e9e4d0;
    border-bottom-left-radius: var(--thm-border-radius);
    border-bottom-right-radius: var(--thm-border-radius);
    padding: 22px 30px 22px;
    padding-right: 80px;
}

.faq-style1__content-inner .accordion-box .block .acc-content p {
    margin: 0;
}

.faq-style1__btn {
    position: relative;
    display: block;
    line-height: 0;
    margin-top: 10px;
}

.faq-style1__btn a {
    position: relative;
    display: inline-flex;
    align-items: center;
    color: var(--thm-black);
    font-size: 16px;
    line-height: 28px;
    font-family: var(--thm-font-2);
    font-weight: 600;
    margin-top: 20px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.faq-style1__btn a i {
    color: var(--thm-primary-color);
    font-size: 21px;
    line-height: 21px;
    margin-right: 8px;
}

.faq-style1__btn a:hover {
    color: var(--thm-primary-color);
}


/*** 
===================================
   Faq Page    
===================================
***/
.faq-page {
    padding: 120px 0px 120px;
}

.faq-page__left-content {
    position: relative;
    display: block;
    padding-right: 55px;
}

.faq-page__left-content .sec-title-two h2 {
    font-size: 45px;
}

.faq-page__left-content .sec-title-two {
    padding-bottom: 22px;
}

.faq-page__left-content-text {
    position: relative;
    display: block;
    padding-right: 40px;
}

.faq-page__left-content-contact-info {
    position: relative;
    display: block;
    max-width: 360px;
    width: 100%;
    margin-top: 39px;
}

.faq-page__left-content-contact-info li {
    position: relative;
    display: block;
    border-bottom: 1px dashed rgb(133, 133, 133, .35);
    padding-bottom: 20px;
    margin-bottom: 19px;
    padding-left: 55px;
}

.faq-page__left-content-contact-info li:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.faq-page__left-content-contact-info-icon {
    position: absolute;
    top: 10px;
    left: 0;
    color: #E74C3C;
    font-size: 35px;
    line-height: 0;
}

.faq-page__left-content-contact-info-icon.color {
    color: #53D58A;
}

.faq-page__left-content-contact-info-text {
    position: relative;
    display: block;
}

.faq-page__left-content-contact-info-text h6 {
    font-size: 17px;
    line-height: 28px;
    font-weight: 600;
}

.faq-page__left-content-contact-info-text a {
    color: var(--thm-body-font-color);
    font-size: 17px;
    line-height: 28px;
    font-family: var(--thm-font);
    font-weight: 500;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.faq-page__left-content-contact-info-text a:hover {
    color: var(--thm-primary-color);
}
































/*** 
===================================
 Why Choose Style1   
===================================
***/
.why-choose-style1 {
    position: relative;
    display: block;
    background: var(--thm-white);
    padding: 120px 0px 78px;
    z-index: 1;
}

.why-choose-style1__single-wrap {
    position: relative;
    display: block;
}

.why-choose-style1__single {
    position: relative;
    display: block;
    margin-bottom: 38px;
}

.why-choose-style1__single-shape1 {
    position: absolute;
    top: 30px;
    right: -30px;
}

.why-choose-style1__single-shape2 {
    position: absolute;
    right: -30px;
    bottom: 33px;
}

.why-choose-style1__single-shape3 {
    position: absolute;
    top: 30px;
    left: -30px;
}

.why-choose-style1__single-shape4 {
    position: absolute;
    left: -30px;
    bottom: 33px;
}

.why-choose-style1__single-shape1 img,
.why-choose-style1__single-shape2 img,
.why-choose-style1__single-shape3 img,
.why-choose-style1__single-shape4 img {
    width: auto;
}

.why-choose-style1__single-content {
    position: relative;
    display: block;
}

.why-choose-style1__single-content h2 {
    color: var(--thm-border-color-1);
    font-size: 60px;
    line-height: 1em;
    font-weight: 400;
    margin-bottom: 8px;
    font-family: var(--thm-font-3);
}

.why-choose-style1__single-content h3 {
    font-size: 22px;
    line-height: 32px;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 13px;
}

.why-choose-style1__single-content h3 a {
    color: var(--thm-black);
}

.why-choose-style1__single-content h3 a:hover {
    color: var(--thm-primary-color);
}

.why-choose-style1__single-content p {
    margin: 0;
}

.why-choose-style1__single-icon {
    position: relative;
    display: block;
    font-size: 60px;
    line-height: 60px;
    margin-top: 19px;
}

.why-choose-style1__single-icon .icon-organic .path1:before,
.why-choose-style1__single-icon .icon-pesticide .path1:before,
.why-choose-style1__single-icon .icon-barn .path1:before,
.why-choose-style1__single-icon .icon-scarecrow .path1:before {
    color: var(--thm-primary-color);
}

.why-choose-style1__single-icon .icon-organic .path2:before,
.why-choose-style1__single-icon .icon-organic .path3:before,
.why-choose-style1__single-icon .icon-pesticide .path2:before,
.why-choose-style1__single-icon .icon-pesticide .path3:before,
.why-choose-style1__single-icon .icon-barn .path2:before,
.why-choose-style1__single-icon .icon-scarecrow .path2:before {
    color: var(--thm-black-bg);
}

.why-choose-style1__img {
    position: relative;
    display: block;
    margin-left: -30px;
    margin-right: -30px;
}

.why-choose-style1__img-round {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 430px;
    height: 430px;
    border-radius: 50%;
    background-color: var(--thm-gray-bg);
}

.why-choose-style1__img-inner {
    position: relative;
    display: block;
    text-align: center;
    margin-top: 25px;
    z-index: 1;
}

.why-choose-style1__img-inner img {
    width: auto;
}


/*** 
===================================
 Why Choose Style2   
===================================
***/
.why-choose-style2 {
    padding: 120px 0 0px;
}

.why-choose-style2__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 863px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    z-index: -1;
}

.why-choose-style2__bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--thm-black-bg);
    opacity: 0.90;
}

.why-choose-style2 .sec-title .sub-title {
    background-color: var(--thm-primary-color);
}

.why-choose-style2 .sec-title .sub-title .icon {
    color: var(--thm-black-bg);
}

.why-choose-style2 .sec-title .sub-title h4 {
    color: var(--thm-black-bg);
}

.why-choose-style2 .sec-title .text p {
    color: var(--thm-body-font-color-2);
}

.why-choose-style2 .row {
    --bs-gutter-x: 25px;
}

.single-why-choose-style2 {
    position: relative;
    display: block;
    padding: 45px 30px 36px;
    text-align: center;
    margin-bottom: 30px;
    z-index: 1;
}

.single-why-choose-style2__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
    z-index: -1;
}

.single-why-choose-style2__content {
    position: relative;
    display: block;
}

.single-why-choose-style2__icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 70px;
    width: 70px;
    border-radius: 50%;
    margin: 0 auto 0;
    z-index: 1;
}

.single-why-choose-style2__icon i {
    position: relative;
    display: inline-block;
    font-size: 30px;
    color: var(--thm-primary-color);
    transition: all 300ms linear;
    transition-delay: 0.1s;
}

.single-why-choose-style2:hover .single-why-choose-style2__icon i {
    transform: scale(1.05) rotateY(180deg);
}

.single-why-choose-style2__icon-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    z-index: -1;
}

.single-why-choose-style2__title {
    position: relative;
    display: block;
    margin-top: 25px;
    margin-bottom: 20px;
}

.single-why-choose-style2__title h3 {
    font-size: 22px;
    font-weight: 600;
    line-height: 1.2em;
    margin-bottom: 15px;
}

.single-why-choose-style2__title h3 a:hover {
    color: var(--thm-primary-color);
}

.single-why-choose-style2__btn {
    position: relative;
    display: block;
}

.single-why-choose-style2__btn a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 600;
    font-family: var(--thm-font-2);
}

.single-why-choose-style2__btn a i {
    color: var(--thm-primary-color);
    font-size: 24px;
    padding-right: 8px;
}

.single-why-choose-style2__btn a:hover {
    color: var(--thm-primary-color);
}



/*** 
===================================
 Farmed Style1   
===================================
***/
.farmed-style1 {
    padding: 90px 0 90px;
}

.farmed-style1__left {
    position: relative;
    display: block;
    margin-right: 20px;
}

.farmed-style1__left .sec-title.withtext {
    padding-bottom: 32px;
}

.farmed-style1__left .sec-title .text {
    padding-top: 30px;
}

.farmed-style1__img {
    position: relative;
    display: block;
}

.farmed-style1__img img {
    width: 100%;
    border-radius: 10px;
}

.farmed-style1__points-box {
    position: relative;
    display: block;
    margin-top: 38px;
}

.farmed-style1__points {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.farmed-style1__points li {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
}

.farmed-style1__points li .icon {
    position: relative;
    display: flex;
    align-items: center;
    transition: all 600ms linear;
    transition-delay: 0.1s;
}

.farmed-style1__points li .icon span {
    position: relative;
    display: inline-block;
    font-size: 40px;
}

.farmed-style1__points li:hover .icon {
    transform: scale(1.05) rotateY(360deg);
}

.farmed-style1__points li .icon .icon-cross .path1:before,
.farmed-style1__points li .icon .icon-cross .path2:before,
.farmed-style1__points li .icon .icon-cross .path3:before,
.farmed-style1__points li .icon .icon-cross .path4:before,
.farmed-style1__points li .icon .icon-cross .path5:before,
.farmed-style1__points li .icon .icon-cross .path6:before {
    color: var(--thm-primary-color);
}

.farmed-style1__points li .icon .icon-check-mark .path6:before,
.farmed-style1__points li .icon .icon-check-mark .path7:before,
.farmed-style1__points li .icon .icon-cross .path7:before,
.farmed-style1__points li .icon .icon-cross .path8:before {
    color: var(--thm-black);
}

.farmed-style1__points li .text {
    position: relative;
    display: block;
    flex: 1;
}

.farmed-style1__points li .text h4 {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5em;
}

.farmed-style1__right {
    position: relative;
    display: block;
}

.farmed-style1__single {
    position: relative;
    display: block;
    border: 1px solid var(--thm-border-color-1);
    border-radius: var(--thm-border-radius);
    padding: 30px 25px 18px;
    overflow: hidden;
    margin-bottom: 30px;
    transition: all 700ms ease;
    z-index: 1;
}

.farmed-style1__single:hover {
    transform: translateY(-10px);
    border: 1px solid var(--thm-gray-bg-2);
}

.farmed-style1__single::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0px;
    right: 0px;
    border-radius: var(--thm-border-radius);
    opacity: 0;
    background-color: var(--thm-gray-bg-2);
    transform: perspective(400px) scaleX(0);
    transform-origin: center;
    transition: all 700ms ease;
    z-index: -1;
}

.farmed-style1__single:hover:before {
    opacity: 1;
    transform: perspective(400px) scaleX(1.0);
}

.farmed-style1__icon {
    position: relative;
    display: block;
    margin-bottom: 25px;
}

.farmed-style1__icon img {
    width: auto;
    transition: all 300ms linear;
    transition-delay: 0.1s;
}

.farmed-style1__single:hover .farmed-style1__icon img {
    transform: scale(1.05) rotateY(180deg);
    transition-delay: 300ms;
}

.farmed-style1__title {
    font-size: 22px;
    font-weight: 600;
    line-height: 1em;
}

.farmed-style1__title a:hover {
    color: var(--thm-primary-color);
}

.farmed-style1__text {
    margin-top: 14px;
    margin-bottom: 17px;
}

.farmed-style1__arrow {
    position: relative;
    display: block;
}

.farmed-style1__arrow a {
    position: relative;
    display: inline-block;
    font-size: 24px;
    color: var(--thm-primary-color);
}













/*** 
===================================
 Do Dont Style1 Style1   
===================================
***/
.do-dont-style1 {
    padding: 120px 0px 120px;
}

.do-dont-style1__bg {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-position: center center;
}

.do-dont-style1__bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: rgb(78, 52, 46);
    background: linear-gradient(90deg, rgba(78, 52, 46, 0.9752275910364145) 0%, rgba(78, 52, 46, 0.8491771708683473) 50%, rgba(78, 52, 46, 0) 80%);
}

.do-dont-style1__content {
    position: relative;
    display: block;
}

.do-dont-style1__content .sec-title.withtext {
    padding-bottom: 32px;
}

.do-dont-style1__content .sec-title .sub-title {
    background-color: var(--thm-primary-color);
}

.do-dont-style1__content .sec-title .sub-title .icon {
    color: var(--thm-black);
}

.do-dont-style1__content .sec-title .sub-title h4 {
    color: var(--thm-black);
}

.do-dont-style1__content .sec-title .text p {
    color: var(--thm-white);
}

.do-dont-style1__right {
    position: relative;
    display: block;
    padding: 57.5px 0px 57.5px;
    margin-right: -5px;
}

.do-dont-style1__right-bg {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-size: auto;
    background-repeat: no-repeat;
    background-attachment: scroll;
}

.do-dont-style1__right-text {
    position: absolute;
    top: auto;
    left: 48%;
    height: 280px;
    text-align: center;
    transform: translateY(-50%) translateX(-50%);
    writing-mode: vertical-rl;
    transform: translateY(0%) rotate(180deg);
    background-color: var(--thm-gray-bg);
    border-radius: 15px;
    padding: 0px 0px 0px;
    z-index: 1;
}

.do-dont-style1__right-text span {
    color: var(--thm-black);
    font-size: 16px;
    line-height: 30px;
    font-family: var(--thm-font-3);
    font-weight: 400;
}

.do-dont-style1__right-inner {
    position: relative;
    display: block;
    padding: 0px 30px 0px;
}

.do-dont-style1__right-inner .row {
    --bs-gutter-x: 0px;
}

.do-dont-style1__right-inner li {
    padding-bottom: 32px;
    border-bottom: 1px solid var(--thm-border-color-1);
}

.do-dont-style1__right-inner li.two {
    padding-bottom: 0px;
    border-bottom: none;
    padding-top: 40px;
}

.do-dont-style1__right-inner li::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    bottom: 8px;
    width: 1px;
    background-color: var(--thm-border-color-1);
}

.do-dont-style1__right-single {
    position: relative;
    display: block;
    text-align: center;
}

.do-dont-style1__right-single-icon {
    position: relative;
    display: inline-block;
    font-size: 40px;
    line-height: 0;
    transition: all 300ms linear;
    transition-delay: 0.1s;
}

.do-dont-style1__right-single:hover .do-dont-style1__right-single-icon {
    transform: scale(1.05) rotateY(180deg);
}

.do-dont-style1__right-single-icon .icon-check-mark .path1:before,
.do-dont-style1__right-single-icon .icon-check-mark .path2:before,
.do-dont-style1__right-single-icon .icon-check-mark .path3:before,
.do-dont-style1__right-single-icon .icon-check-mark .path4:before,
.do-dont-style1__right-single-icon .icon-check-mark .path5:before,
.do-dont-style1__right-single-icon .icon-cross .path1:before,
.do-dont-style1__right-single-icon .icon-cross .path2:before,
.do-dont-style1__right-single-icon .icon-cross .path3:before,
.do-dont-style1__right-single-icon .icon-cross .path4:before,
.do-dont-style1__right-single-icon .icon-cross .path5:before,
.do-dont-style1__right-single-icon .icon-cross .path6:before {
    color: var(--thm-primary-color);
}

.do-dont-style1__right-single-icon .icon-check-mark .path6:before,
.do-dont-style1__right-single-icon .icon-check-mark .path7:before,
.do-dont-style1__right-single-icon .icon-cross .path7:before,
.do-dont-style1__right-single-icon .icon-cross .path8:before {
    color: var(--thm-black);
}

.do-dont-style1__right-single-title {
    position: relative;
    display: block;
    margin-top: 0;
}

.do-dont-style1__right-single-title h4 {
    font-size: 16px;
    line-height: 26px;
    font-weight: 600;
}

.do-dont-style1__right-single-title h4 a {
    color: var(--thm-black);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.do-dont-style1__right-single-title h4 a:hover {
    color: var(--thm-primary-color);
}


/*
================================
  Authorised Person Style1 Css
================================
*/
.authorised-person-style1 {
    padding: 80px 0px 0px;
}

.authorised-person-style1__inner {
    position: relative;
    display: block;
    padding-bottom: 217px;
}

.authorised-person-style1__big-title {
    position: absolute;
    left: 0;
    bottom: -9px;
    right: -1000px;
}

.authorised-person-style1__big-title-shape {
    position: absolute;
    top: -114px;
    left: 6px;
    z-index: 74;
}

.authorised-person-style1__big-title-shape img {
    width: auto;
}

.authorised-person-style1__img {
    position: absolute;
    top: 0;
    left: 20%;
    z-index: 5;
}

.authorised-person-style1__big-title h1 {
    position: relative;
    display: block;
    font-size: 170px;
    line-height: 140px;
    font-weight: 700;
    text-transform: uppercase;
    background-color: var(--thm-white);
    mix-blend-mode: lighten;
    font-family: var(--thm-font-2);
    z-index: 1;
}

.authorised-person-style1__big-title h1::before {
    content: "";
    position: absolute;
    left: -9999999px;
    bottom: 9px;
    right: -999999px;
    height: 60px;
    background-color: var(--thm-gray-bg);
    z-index: -1;
}

.authorised-person-style1__big-title__bg {
    position: absolute;
    top: 0px;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: #000;
    background-position: 5px 490px;
}

.authorised-person-style1__left {
    position: relative;
    display: block;
    margin-left: 20px;
    padding-left: 80px;
    padding-right: 67px;
    padding-bottom: 30px;
    max-width: 317px;
}

.authorised-person-style1__left-inner {
    position: relative;
    display: block;
}

.authorised-person-style1__left-top {
    position: relative;
    display: block;
    text-align: center;
    background-color: var(--thm-gray-bg-2);
    border-top-left-radius: var(--thm-border-radius);
    border-top-right-radius: var(--thm-border-radius);
    padding: 19px 25px 17px;
}

.authorised-person-style1__left-title {
    position: relative;
    display: block;
}

.authorised-person-style1__left-title h4 {
    font-size: 18px;
    line-height: 28px;
    font-weight: 600;
}

.authorised-person-style1__left-rating {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 7px;
}

.authorised-person-style1__left-rating li {
    position: relative;
    display: block;
    line-height: 0;
}

.authorised-person-style1__left-rating li+li {
    margin-left: 5px;
}

.authorised-person-style1__left-rating li i {
    color: #51b155;
    font-size: 20px;
    line-height: 20px;
}

.authorised-person-style1__left-text {
    position: relative;
    display: block;
    margin-top: 7px;
}

.authorised-person-style1__left-text p {
    margin: 0;
}

.authorised-person-style1__left-bottom {
    position: relative;
    display: block;
    text-align: center;
    background-color: var(--thm-black-bg);
    border-bottom-left-radius: var(--thm-border-radius);
    border-bottom-right-radius: var(--thm-border-radius);
    padding: 11px 25px 11px;
}

.authorised-person-style1__left-bottom h4 {
    color: var(--thm-primary-color);
    font-size: 18px;
    line-height: 28px;
    font-weight: 600;
}

.authorised-person-style1__left-shape1 {
    position: absolute;
    top: 35px;
    left: 0;
}

.authorised-person-style1__left-shape1 img {
    width: auto;
}

.authorised-person-style1__left-shape2 {
    position: absolute;
    bottom: 0;
    right: 0;
}

.authorised-person-style1__left-shape2 img {
    width: auto;
}

.authorised-person-style1__right {
    position: absolute;
    max-width: 625px;
    width: 100%;
    top: 0px;
    right: 0;
    padding-top: 60px;
    padding-left: 155px;
}

.authorised-person-style1__right-inner {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: var(--thm-border-radius);
    background-color: var(--thm-primary-color);
    padding: 34px 40px 32px;
}

.authorised-person-style1__right-text {
    position: relative;
    display: block;
}

.authorised-person-style1__right-text p {
    color: var(--thm-black);
    font-size: 18px;
    line-height: 30px;
    font-family: var(--thm-font-3);
}

.authorised-person-style1__right-bottom {
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 18px;
}

.authorised-person-style1__right-signature {
    position: relative;
    display: block;
}

.authorised-person-style1__right-signature img {
    width: auto;
}

.authorised-person-style1__right-title {
    position: relative;
    display: block;
    margin-left: 20px;
}

.authorised-person-style1__right-title h4 {
    font-size: 18px;
    line-height: 27px;
    font-weight: 600;
}

.authorised-person-style1__right-title p {
    color: var(--thm-black);
}

.authorised-person-style1__right-icon {
    position: absolute;
    right: 0;
    bottom: 0;
}

.authorised-person-style1__right-icon img {
    width: auto;
}

.authorised-person-style1__right-shape {
    position: absolute;
    top: -35px;
    left: 0;
}


/*** 
===============================
       Pricing Style1    
===============================
***/
.pricing-style1 {
    padding: 120px 0px 120px;
}

.pricing-page-one {
    padding: 120px 0px 70px;
}

.pricing-page-one .single-pricing-style1 {
    margin-bottom: 50px;
}




.single-pricing-style1 {
    position: relative;
    display: block;
    padding-top: 60px;
}

.single-pricing-style1__icon {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background-color: transparent;
    margin: 0px auto 0px;
    z-index: 5;
}

.single-pricing-style1__icon-bg1 {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    opacity: 1;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-position: center center;
    transition: background-color 0.5s ease;
    transition: all 0.5s ease;
    z-index: -2;
}

.single-pricing-style1:hover .single-pricing-style1__icon-bg1 {
    opacity: 0;
}

.single-pricing-style1__icon-bg2 {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    opacity: 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-position: center center;
    transition: background-color 0.5s ease;
    transition: all 0.5s ease;
    z-index: -1;
}

.single-pricing-style1:hover .single-pricing-style1__icon-bg2 {
    opacity: 1;
}

.single-pricing-style1__icon i {
    color: var(--thm-primary-color);
    font-size: 45px;
    line-height: 45px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-pricing-style1:hover .single-pricing-style1__icon i {
    color: var(--thm-black-bg);
}

.single-pricing-style1__content {
    position: relative;
    display: block;
    text-align: center;
    overflow: hidden;
    background-color: var(--thm-white);
    border-radius: var(--thm-border-radius);
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.12);
    padding: 90px 30px 50px;
    z-index: 1;
}

.single-pricing-style1__content::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0px;
    right: 0px;
    opacity: 0;
    background-color: var(--thm-black-bg);
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.06);
    transform: perspective(400px) scaleX(0);
    transform-origin: center;
    transition: all 700ms ease;
    z-index: -1;
}

.single-pricing-style1:hover .single-pricing-style1__content::before {
    opacity: 1;
    transform: perspective(400px) scaleX(1.0);
}

.single-pricing-style1__content-top {
    position: relative;
    display: block;
    margin-bottom: 24px;
}

.single-pricing-style1__content-top h2 {
    color: var(--thm-primary-color);
    font-size: 48px;
    line-height: 1.0em;
    font-family: var(--thm-font-3);
    font-weight: 400;
    margin-bottom: 9px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-pricing-style1__content-top h3 {
    font-size: 26px;
    line-height: 35px;
    font-weight: 600;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-pricing-style1:hover .single-pricing-style1__content-top h3 {
    color: var(--thm-white);
}

.single-pricing-style1__content-list {
    position: relative;
    display: block;
}

.single-pricing-style1__content-list li {
    position: relative;
    display: block;
    border-bottom: 1px dashed #d3ceb9;
    padding-bottom: 17px;
    margin-bottom: 18px;
    transition: border-color 0.5s ease;
    transition: all 0.5s ease;
}

.single-pricing-style1:hover .single-pricing-style1__content-list li {
    border-color: #846761;
}

.single-pricing-style1__content-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.single-pricing-style1__content-list li .top {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.single-pricing-style1__content-list li .top h4 {
    font-size: 17px;
    line-height: 27px;
    font-weight: 400;
    font-family: var(--thm-font-3);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-pricing-style1:hover .single-pricing-style1__content-list li .top h4 {
    color: var(--thm-white);
}

.single-pricing-style1__content-list li .top i {
    color: #2ecc71;
    font-size: 14px;
    line-height: 10px;
    margin-left: 10px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-pricing-style1__content-list li.two .top i {
    color: #e74c3c;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-pricing-style1__content-list li p {
    margin: 0;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-pricing-style1:hover .single-pricing-style1__content-list li p {
    color: var(--thm-body-font-color-2);
}

.single-pricing-style1__content-list li.two p {
    color: var(--thm-body-font-color-2);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-pricing-style1:hover .single-pricing-style1__content-list li.two p {
    color: #7f655f;
}

.single-pricing-style1__content-btn {
    position: relative;
    display: block;
    line-height: 0;
    margin-top: 32px;
}

.single-pricing-style1__content-btn .btn-one i {
    background-color: var(--thm-black-bg);
    color: var(--thm-white);
    width: 54px;
    height: 54px;
}

.single-pricing-style1:hover .single-pricing-style1__content-btn .btn-one i {
    color: var(--thm-black);
    background-color: var(--thm-white);
}

.single-pricing-style1__content-btn .btn-one i::after {
    background-color: var(--thm-white);
}

.single-pricing-style1__content-btn .btn-one .txt {
    color: var(--thm-white);
    line-height: 44px;
    border-radius: 27px;
    z-index: 3;
}

.single-pricing-style1:hover .single-pricing-style1__content-btn .btn-one .txt {
    color: var(--thm-black);
}

.single-pricing-style1__content-btn .btn-one .txt:after {
    background-color: var(--thm-black-bg);
}

.single-pricing-style1__content-btn .btn-one:hover .txt::before {
    background-color: var(--thm-white);
}

.single-pricing-style1:hover .single-pricing-style1__content-btn .btn-one .txt:after {
    background-color: var(--thm-white);
}



.pricing-style1__instyle2 {
    padding: 100px 0px 120px;
}








/*** 
===============================
      Features Style1    
===============================
***/
.features-style1 {
    background-color: var(--thm-black-bg);
    padding: 200px 0px 112px;
}

.features-style1__bg {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-position: center center;
}

.features-style1__bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: rgb(78, 52, 46);
    background: linear-gradient(0deg, rgba(78, 52, 46, 1) 0%, rgba(78, 52, 46, 0) 80%);
}

.features-style1__round {
    position: absolute;
    left: 0;
    bottom: 45px;
    right: 0;
    width: 670px;
    height: 670px;
    border-radius: 50%;
    background-color: transparent;
    border: 70px solid rgb(var(--thm-primary-color-rgb), .9);
    margin: 0px auto 0px;
}

.features-style1__img {
    position: absolute;
    left: 29px;
    bottom: 0;
    right: 0;
    text-align: center;
}

.features-style1__img img {
    width: auto;
}

.features-style1__content-one {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.features-style1__inner {
    position: relative;
    display: flex;
    align-items: center;
    z-index: 5;
}

.features-style1__list {
    position: relative;
    display: block;
}

.features-style1__list.two {
    margin-left: 20px;
}

.features-style1__list.three {
    margin-right: 20px;
}

.features-style1__list li {
    position: relative;
    display: block;
}

.features-style1__list li+li {
    margin-top: 30px;
}

.single-features-style1 {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    width: 170px;
    height: 170px;
    background-color: var(--thm-white);
    border-radius: var(--thm-border-radius);
    transition: background-color 0.7s ease;
    transition: all 0.7s ease;
}

.single-features-style1:hover {
    background-color: var(--thm-black-bg);
}

.single-features-style1__inner {
    position: relative;
    display: block;
}

.single-features-style1__content {
    position: relative;
    display: block;
    text-align: center;
    opacity: 1;
    transform: translateY(0px);
    -webkit-transition: all 0.7s ease;
    -o-transition: all 0.7s ease;
    transition: all 0.7s ease;
}

.single-features-style1:hover .single-features-style1__content {
    opacity: 0;
    transform: translateY(170px);
}

.single-features-style1__content-icon {
    position: relative;
    display: inline-block;
    font-size: 40px;
    line-height: 0;
}

.single-features-style1__content-icon .icon-check-mark .path1:before,
.single-features-style1__content-icon .icon-check-mark .path2:before,
.single-features-style1__content-icon .icon-check-mark .path3:before,
.single-features-style1__content-icon .icon-check-mark .path4:before,
.single-features-style1__content-icon .icon-check-mark .path5:before,
.single-features-style1__content-icon .icon-check-mark .path6:before,
.single-features-style1__content-icon .icon-check-mark .path7:before {
    color: var(--thm-primary-color);
}

.single-features-style1__content-icon .icon-check-mark .path6:before,
.single-features-style1__content-icon .icon-check-mark .path7:before {
    color: var(--thm-black-bg);
}

.single-features-style1__content-title {
    position: relative;
    display: block;
    margin-top: 8px;
}

.single-features-style1__content-title h4 {
    font-size: 16px;
    line-height: 26px;
    font-weight: 600;
}

.single-features-style1__content-title h4 a {
    color: var(--thm-black);
}

.single-features-style1__content-overlay {
    position: absolute;
    top: 20%;
    left: 0;
    right: 0;
    opacity: 0;
    transform: translateY(-50%);
    text-align: center;
    -webkit-transition: all 0.7s ease;
    -o-transition: all 0.7s ease;
    transition: all 0.7s ease;
}

.single-features-style1__content-overlay p {
    color: var(--thm-body-font-color-2);
}

.single-features-style1:hover .single-features-style1__content-overlay {
    opacity: 1;
    transform: translateY(0);
}

.features-style1__content-two {
    position: relative;
    display: block;
    padding-bottom: 153px;
}

.features-style1__content-two-inner {
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    text-align: center;
}

.features-style1__content-two-round {
    position: relative;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background-color: var(--thm-primary-color);
    margin: 0px auto 0px;
    z-index: 11;
}

.features-style1__content-two-round-text {
    position: absolute;
    top: 23px;
    left: 41px;
    bottom: 0;
    right: 0;
    width: 100px;
    height: 100px !important;
    color: var(--thm-black);
    font-size: 14px;
    font-weight: 700;
    line-height: 36px;
    text-transform: uppercase;
    font-family: var(--thm-font-2);
    word-spacing: 0px;
    letter-spacing: -0.1em;
    transform: rotate(100deg);
}

.features-style1__content-two-video {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.features-style1__content-two-video .video-popup {
    position: relative;
    display: inline-block;
    color: var(--thm-black);
    font-size: 24px;
    line-height: 0;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.features-style1__content-two-video .video-popup:hover {
    color: var(--thm-white);
}

.features-style1__content-two-title {
    position: relative;
    display: block;
    margin-top: 35px;
}

.features-style1__content-two-title h2 {
    color: var(--thm-white);
    font-size: 45px;
    line-height: 1.2em;
}

.features-style1__content-two-btn {
    position: relative;
    display: block;
    margin-top: 20px;
    line-height: 0;
}

.features-style1__content-two-btn a {
    position: relative;
    display: inline-flex;
    align-items: center;
    color: var(--thm-white);
    font-size: 16px;
    line-height: 28px;
    font-family: var(--thm-font-2);
    font-weight: 600;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.features-style1__content-two-btn a:hover {
    color: var(--thm-primary-color);
}

.features-style1__content-two-btn a i {
    color: var(--thm-primary-color);
    font-size: 21px;
    line-height: 21px;
    margin-right: 10px;
}


/*** 
===============================
     Production Progress    
===============================
***/
.production-progress {
    padding: 120px 0px 120px;
}

.production-progress__bg {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-position: center center;
}

.production-progress__big-title {
    position: absolute;
    bottom: 120px;
    right: -15px;
    color: var(--thm-primary-color);
    font-size: 60px;
    line-height: 60px;
    font-weight: 400;
    font-family: var(--thm-font-3);
    transform: rotate(-35deg);
}

.production-progress__inner {
    position: relative;
    display: block;
    padding-left: 540px;
}

.production-progress__round-box {
    position: relative;
    display: block;
    width: 370px;
    height: 370px;
    border-radius: 50%;
    z-index: 1;
}

.production-progress__round-box-bg {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    z-index: -1;
}

.production-progress__round-box .inner-title {
    position: absolute;
    top: 50%;
    left: 0;
    width: 190px;
    height: 190px;
    background-color: var(--thm-black-bg);
    border-radius: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.production-progress__round-box .inner-title h3 {
    color: var(--thm-white);
    font-size: 18px;
    line-height: 28px;
    font-weight: 600;
}

.production-progress__content {
    position: absolute;
    top: 70px;
    left: 230px;
    right: -290px;
}

.production-progress__content ul {
    position: relative;
    display: block;
}

.production-progress__content ul li {
    position: relative;
    display: flex;
    align-items: center;
}

.production-progress__content ul li:nth-child(1) {
    margin-left: 30px;
}

.production-progress__content ul li:nth-child(2) {
    margin-top: 60px;
}

.production-progress__content ul li:nth-child(3) {
    margin-top: 60px;
    margin-left: 90px;
}

.production-progress__content ul li .left {
    position: relative;
    display: block;
    width: 170px;
    z-index: 2;
}

.production-progress__content ul li .left::before {
    content: "";
    position: absolute;
    left: 0;
    height: 1px;
    right: 0;
    background-color: var(--thm-black-bg);
    top: 17px;
    z-index: -1;
}

.production-progress__content ul li .left::after {
    content: "";
    position: absolute;
    top: 7px;
    right: 0;
    width: 1px;
    height: 21px;
    background-color: var(--thm-black-bg);
    z-index: -1;
}

.production-progress__content ul li .left .odometer-counting {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background-color: var(--thm-primary-color);
    border-radius: 50%;
}

.production-progress__content ul li .left .odometer-counting h2 {
    color: var(--thm-black);
    font-size: 12px;
    font-weight: 500;
    font-family: var(--thm-font-2);
}

.production-progress__content ul li .left .odometer-counting span {
    color: var(--thm-black);
    font-size: 12px;
    font-weight: 500;
    font-family: var(--thm-font-2);
}


.production-progress__content ul li .right {
    position: relative;
    display: block;
    padding-left: 15px;
}

.production-progress__content ul li .right h5 {
    color: var(--thm-black);
    font-size: 17px;
    font-weight: 500;
}



/*** 
=============================================
     Farmed for You Css      
=============================================
***/
.farmed-for-you {
    padding: 120px 0px 120px;
}

.farmed-for-you .container {
    max-width: 1800px;
}

.single-farmed-for-you {
    position: relative;
    display: block;
    overflow: hidden;
    background-color: transparent;
    border-radius: var(--thm-border-radius);
    border: 1px solid var(--thm-border-color-1);
    padding: 30px 25px 25px;
    transition: border-color 0.5s ease;
    transition: all 0.5s ease;
}

.single-farmed-for-you:hover {
    border-color: var(--thm-gray-bg-2);
}


.single-farmed-for-you::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0px;
    right: 0px;
    opacity: 0;
    background-color: var(--thm-gray-bg-2);
    transform: perspective(400px) scaleX(0);
    transform-origin: center;
    transition: all 700ms ease;
    z-index: -1;
}

.single-farmed-for-you:hover::before {
    opacity: 1;
    transform: perspective(400px) scaleX(1.0);
}

.single-farmed-for-you__content {
    position: relative;
    display: block;
}

.single-farmed-for-you__content-icon {
    position: relative;
    display: inline-block;
    line-height: 0;
    transition: all 300ms linear;
    transition-delay: 0.1s;
}

.single-farmed-for-you:hover .single-farmed-for-you__content-icon {
    transform: scale(1.05) rotateY(180deg);
}

.single-farmed-for-you__content-icon img {
    width: auto;
}

.single-farmed-for-you__content-text {
    position: relative;
    display: block;
    padding-top: 11px;
}

.single-farmed-for-you__content-text h3 {
    font-size: 22px;
    line-height: 30px;
    font-weight: 600;
    margin-bottom: 9px;
}

.single-farmed-for-you__content-text h3 a {
    color: var(--thm-black);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-farmed-for-you__content-text h3 a:hover {
    color: var(--thm-primary-color);
}

.single-farmed-for-you__content-text p {
    margin: 0;
}

.single-farmed-for-you__content-btn {
    position: relative;
    display: block;
    line-height: 0;
    margin-top: 17px;
}

.single-farmed-for-you__content-btn a.btn-one1 {
    position: relative;
    display: block;
    color: var(--thm-black);
    line-height: 0;
    font-size: 21px;
    opacity: 1;
    transform: translateX(0px);
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.single-farmed-for-you:hover .single-farmed-for-you__content-btn a.btn-one1 {
    opacity: 0;
    transform: translateX(30px);
}

.single-farmed-for-you__content-btn a.btn-one2 {
    position: absolute;
    display: inline-flex;
    align-items: center;
    left: 0;
    bottom: 0;
    opacity: 0;
    color: var(--thm-primary-color);
    font-size: 16px;
    line-height: 20px;
    font-family: var(--thm-font-2);
    font-weight: 600;
    transform: translateX(21px);
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.single-farmed-for-you__content-btn a.btn-one2 i {
    font-size: 21px;
    margin-left: 8px;
}

.single-farmed-for-you:hover .single-farmed-for-you__content-btn a.btn-one2 {
    opacity: 1;
    transform: translateX(0px);
}


.farmed-for-you-carousel.owl-nav-style-one.owl-theme .owl-stage-outer {
    position: relative;
    display: block;
}

.farmed-for-you-carousel.owl-theme .owl-nav {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 55px;
    width: 205px;
    margin: 60px auto 0px;
    z-index: 10;
}

.farmed-for-you-carousel.owl-theme .owl-nav [class*="owl-"] {
    position: relative;
    display: inline-block;
    width: 55px;
    height: 55px;
    overflow: hidden;
    background-color: transparent;
    border: 1px solid #dbdee7;
    border-radius: 50%;
    margin: 0 0px;
    padding: 0;
    transition: all 700ms ease 3s;
    z-index: 1;
}

.farmed-for-you-carousel.owl-theme .owl-nav [class*="owl-"]:hover {
    border: 1px solid var(--thm-black);
}

.farmed-for-you-carousel.owl-theme .owl-nav [class*="owl-"]::before {
    content: "";
    position: absolute;
    top: -1px;
    left: -1px;
    bottom: -1px;
    right: -1px;
    border-radius: 50%;
    background-color: var(--thm-black);
    clip-path: polygon(100% 0, 100% 70%, 80% 100%, 0 100%, 0 0);
    opacity: 0;
    -webkit-transform: perspective(400px) rotateX(0deg) scale(0);
    -ms-transform: perspective(400px) rotateX(0deg) scale(0);
    transform: perspective(400px) rotateX(0deg) scale(0);
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
    transition: -webkit-transform 0.4s ease;
    transition: transform 0.4s ease;
    transition: transform 0.4s ease, -webkit-transform 0.4s ease;
    z-index: -1;
}

.farmed-for-you-carousel.owl-theme .owl-nav [class*="owl-"]:hover::before {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateX(0deg) scale(1.0);
    -ms-transform: perspective(400px) rotateX(0deg) scale(1.0);
    transform: perspective(400px) rotateX(0deg) scale(1.0);
}

.farmed-for-you-carousel.owl-theme .owl-nav [class*="owl-"] span {
    position: relative;
    display: block;
    color: var(--thm-black);
    font-size: 24px;
    font-weight: 500;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.farmed-for-you-carousel.owl-theme .owl-nav [class*="owl-"] span {
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.farmed-for-you-carousel.owl-theme .owl-nav [class*="owl-"]:hover span {
    color: var(--thm-white);
}

.farmed-for-you-carousel .owl-dots {
    position: absolute;
    left: 0;
    bottom: -15px;
    right: 22px;
    counter-reset: slides-num;
    width: 80px;
    height: 55px;
    display: block !important;
    margin: 0 auto;
}

.farmed-for-you-carousel .owl-dots::after {
    position: absolute;
    right: 0px;
    top: 0px;
    content: "0"counter(slides-num);
    display: inline-block;
    color: var(--thm-primary-color);
    font-size: 18px;
    font-weight: 400;
    font-family: var(--thm-font-3);
}

.farmed-for-you-carousel .owl-dots:before {
    position: absolute;
    content: '';
    right: 28px;
    top: 4px;
    width: 2px;
    height: 15px;
    background: var(--thm-primary-color);
    transform: rotate(10deg);
}

.farmed-for-you-carousel .owl-dots button span {
    display: none !important;
}

.farmed-for-you-carousel .owl-dots button {
    position: absolute;
    top: 0px;
    right: 45px;
    counter-increment: slides-num;
    color: var(--thm-black);
    font-size: 18px;
    font-weight: 400;
    font-family: var(--thm-font-3);
}

.farmed-for-you-carousel .owl-dots button.active:before {
    position: absolute;
    content: counter(slides-num);
}

.farmed-for-you-carousel .owl-dots button.active:after {
    position: absolute;
    content: '0';
    top: 0px;
    right: 0px;
}



/*** 
=============================================
     Farmed for You Css      
=============================================
***/
.products-style3 {
    padding: 120px 0px 120px;
}

.products-style3 .auto-container {
    max-width: 100%;
    padding: 0;
    margin-right: -30px;
}

.single-products-style3 {
    position: relative;
    display: block;
    max-width: 370px;
    width: 100%;
}

.single-products-style3__inner {
    position: relative;
    display: block;
    padding-bottom: 40px;
}

.single-service-style3__content {
    position: relative;
    display: block;
    overflow: hidden;
    text-align: center;
    background-color: var(--thm-gray-bg);
    border-radius: var(--thm-border-radius);
    padding: 45px 20px 0px;
    transition: background-color 0.5s ease;
    transition: all 0.5s ease;
}

.single-products-style3:hover .single-service-style3__content {
    background-color: #e9e4d0;
}

.single-service-style3__content-pattern {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-repeat: repeat;
}

.single-service-style3__content-count {
    position: relative;
    display: inline-block;
    color: var(--thm-primary-color);
    font-size: 60px;
    line-height: 1.0em;
    font-family: var(--thm-font-3);
    font-weight: 400;
    padding-left: 13px;
    padding-right: 8px;
    padding-bottom: 8px;
}

.single-service-style3__content-count::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0px;
    right: 0;
    height: 4px;
    border-radius: 2px;
    background-color: var(--thm-primary-color);
}

.single-service-style3__content-title {
    position: relative;
    display: block;
    margin-top: 26px;
}

.single-service-style3__content-title h3 {
    font-size: 22px;
    line-height: 30px;
    font-weight: 600;
    margin-bottom: 11px;
}

.single-service-style3__content-title h3 a {
    color: var(--thm-black);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-service-style3__content-title h3 a:hover {
    color: var(--thm-primary-color);
}

.single-service-style3__content-title img {
    width: auto;
}

.single-service-style3__content-text {
    position: relative;
    display: block;
    margin-top: 20px;
}

.single-service-style3__content-text p {
    margin: 0;
}

.single-service-style3__content-icon {
    position: relative;
    display: inline-block;
    font-size: 60px;
    line-height: 0;
    margin-top: 32px;
    opacity: 1;
    transform: translateY(0px);
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.single-products-style3:hover .single-service-style3__content-icon {
    opacity: 0;
    transform: translateY(60px);
}

.single-service-style3__content-icon .icon-beet .path1:before,
.single-service-style3__content-icon .icon-seeds .path1:before,
.single-service-style3__content-icon .icon-chicken .path1:before,
.single-service-style3__content-icon .icon-feeding .path1:before,
.single-service-style3__content-icon .icon-egg .path1:before {
    color: var(--thm-primary-color);
}

.single-service-style3__content-icon .icon-beet .path2:before,
.single-service-style3__content-icon .icon-beet .path3:before,
.single-service-style3__content-icon .icon-seeds .path2:before,
.single-service-style3__content-icon .icon-seeds .path3:before,
.single-service-style3__content-icon .icon-seeds .path4:before,
.single-service-style3__content-icon .icon-chicken .path2:before,
.single-service-style3__content-icon .icon-chicken .path3:before,
.single-service-style3__content-icon .icon-feeding .path2:before,
.single-service-style3__content-icon .icon-feeding .path3:before,
.single-service-style3__content-icon .icon-egg .path2:before,
.single-service-style3__content-icon .icon-egg .path3:before {
    color: var(--thm-black-bg);
}

.single-service-style3__content-round {
    position: absolute;
    left: 0;
    bottom: 0px;
    right: 0;
    margin: 0px auto 0px;
    width: 270px;
    height: 150px;
    overflow: hidden;
    border-radius: 50%;
    background-color: var(--thm-gray-bg);
    transition: background-color 0.5s ease;
    transition: all 0.5s ease;
    z-index: 0;
}

.single-products-style3:hover .single-service-style3__content-round {
    background-color: #e9e4d0;
}

.single-service-style3__content-round-pattern {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-repeat: repeat;
}

.single-service-style3__content-btn {
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    opacity: 0;
    transform: translateY(60px);
    text-align: center;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.single-products-style3:hover .single-service-style3__content-btn {
    opacity: 1;
    transform: translateY(0px);
}

.single-service-style3__content-btn a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--thm-primary-color);
    color: var(--thm-black-bg);
    font-size: 21px;
    line-height: 0;
    margin: 0 auto;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-service-style3__content-btn a:hover {
    color: var(--thm-primary-color);
    background-color: var(--thm-black-bg);
}


.products-style3-carousel.owl-carousel .owl-item img {
    width: auto;
    display: inline-block;
}

.products-style3-carousel.owl-nav-style-one.owl-theme .owl-nav {
    position: absolute;
    height: 54px;
    left: auto;
    bottom: auto;
    top: -114px;
    right: 375px;
}

.products-style3-carousel.owl-nav-style-one.owl-theme .owl-nav [class*="owl-"] {
    width: 54px;
    height: 54px;
    border: 1px solid var(--thm-border-color-1);
    border-radius: 50%;
    margin: 0 7.5px;
}

.products-style3-carousel.owl-nav-style-one.owl-theme .owl-nav [class*="owl-"]::before {
    clip-path: none;
    border-radius: 50%;
}

.products-style3-carousel.owl-nav-style-one.owl-theme .owl-nav [class*="owl-"] span {
    color: var(--thm-black);
    font-size: 21px;
}


/*** 
=============================================
        Processing Style1 Css      
=============================================
***/
.processing-style1 {
    position: relative;
    margin-top: -130px;
    z-index: 10;
}

.processing-style1 .container {
    max-width: 1300px;
}

.processing-style1__inner {
    position: relative;
    display: block;
    overflow: hidden;
    background-color: var(--thm-black-bg);
    border-radius: var(--thm-border-radius);
    padding: 0px 50px 0px;
}

.processing-style1__inner ul li {
    position: relative;
}

.processing-style1__inner ul li:nth-child(1)::before,
.processing-style1__inner ul li:nth-child(4)::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0px;
    right: 0;
    bottom: 0;
    width: 1px;
    height: 50px;
    background-color: #664a44;
    margin: 0px auto 0px;
}

.processing-style1__inner ul li:nth-child(2)::before,
.processing-style1__inner ul li:nth-child(3)::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0px;
    right: 0;
    bottom: 0;
    width: 1px;
    height: 100px;
    background-color: #664a44;
    margin: 0px auto 0px;
}

.processing-style1__inner ul li:nth-child(2),
.processing-style1__inner ul li:nth-child(3) {
    padding-top: 50px;
}

.single-processing-style1 {
    position: relative;
    display: block;
    text-align: center;
    padding: 50px 0px 42px;
}

.single-processing-style1__icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: transparent;
    margin: 0px auto 0px;
    z-index: 5;
}

.single-processing-style1__icon-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-position: center center;
}

.single-processing-style1__icon i {
    position: relative;
    display: block;
    color: var(--thm-black-bg);
    font-size: 30px;
    line-height: 30px;
}

.single-processing-style1__content {
    position: relative;
    display: block;
    padding-top: 25px;
}

.single-processing-style1__content h3 {
    font-size: 22px;
    line-height: 32px;
    font-weight: 600;
    margin-bottom: 13px;
}

.single-processing-style1__content h3 a {
    color: var(--thm-white);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-processing-style1__content h3 a:hover {
    color: var(--thm-primary-color);
}

.single-processing-style1__content p {
    color: var(--thm-body-font-color-2);
}

.single-processing-style1__btn {
    position: relative;
    display: block;
    overflow: hidden;
    line-height: 0;
    margin-top: 19px;
}

.single-processing-style1__btn a.one {
    position: relative;
    display: inline-flex;
    align-items: center;
    opacity: 1;
    transform: translateY(0px);
    color: var(--thm-white);
    font-size: 16px;
    line-height: 28px;
    font-family: var(--thm-font-2);
    font-weight: 600;
    -webkit-transition: all 0.6s ease;
    -o-transition: all 0.6s ease;
    transition: all 0.6s ease;
}

.single-processing-style1:hover .single-processing-style1__btn a.one {
    opacity: 0;
    transform: translateY(50px);
}

.single-processing-style1__btn a.one i {
    color: var(--thm-primary-color);
    font-size: 21px;
    line-height: 21px;
    margin-right: 10px;
}

.single-processing-style1__btn a.two {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(50px);
    color: var(--thm-primary-color);
    font-size: 16px;
    line-height: 28px;
    font-family: var(--thm-font-2);
    font-weight: 600;
    -webkit-transition: all 0.6s ease;
    -o-transition: all 0.6s ease;
    transition: all 0.6s ease;
}

.single-processing-style1__btn a.two i {
    color: var(--thm-primary-color);
    font-size: 21px;
    line-height: 21px;
    margin-left: 8px;
}

.single-processing-style1:hover .single-processing-style1__btn a.two {
    opacity: 1;
    transform: translateY(0px);
}




/*** 
=============================================
   Banner Style1 Css
=============================================
***/
.banner-style1 {
    padding: 50px 0px 120px;
}

.banner-style1__bg {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-position: center center;
    z-index: -1;
}

.banner-style1__content {
    position: relative;
    display: block;
    z-index: 15;
}

.banner-style1__shape1 {
    position: absolute;
    top: -58px;
    left: -160px;
}

.banner-style1__shape2 {
    position: absolute;
    top: 3px;
    left: 200px;
}

.banner-style1__shape3 {
    position: absolute;
    left: 0px;
    bottom: 38px;
}

.banner-style1__shape4 {
    position: absolute;
    top: -60px;
    right: -127px;
}

.banner-style1__shape5 {
    position: absolute;
    right: 0;
    bottom: 38px;
}

.banner-style1__shape1 img,
.banner-style1__shape2 img,
.banner-style1__shape3 img,
.banner-style1__shape4 img,
.banner-style1__shape5 img {
    width: auto;
}

.banner-style1__content-inner {
    position: relative;
    display: block;
    overflow: hidden;
    padding: 100px 0px 100px;
    z-index: 15;
}

.banner-style1__curved-top {
    position: absolute;
    top: -7px;
    left: 0;
    right: 0;
    width: 380px;
    height: 100px !important;
    margin: 0 auto;
    color: var(--thm-black);
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    font-family: var(--thm-font-2);
    word-spacing: 1px;
    letter-spacing: 0.04em;
    transform: rotate(0deg);
}

.banner-style1__curved-bottom {
    position: absolute;
    left: 0;
    bottom: -80px;
    right: 0;
    width: 380px;
    height: 100px !important;
    margin: 0 auto;
    color: var(--thm-black);
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    font-family: var(--thm-font-2);
    word-spacing: 1px;
    letter-spacing: 0.08em;
    transform: rotate(0deg);
}

.banner-style1__sub-title {
    position: relative;
    display: block;
    text-align: center;
}

.banner-style1__sub-title h5 {
    color: var(--thm-black);
    font-size: 14px;
    line-height: 20px;
    font-weight: 600;
    text-transform: uppercase;
}

.banner-style1__big-title {
    position: relative;
    display: block;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 12px;
}

.banner-style1__big-title h2 {
    color: var(--thm-black);
    font-size: 120px;
    line-height: 1.0em;
    font-weight: 800;
    text-transform: capitalize;
}

.banner-style1__title {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-style1__title h3 {
    color: var(--thm-primary-color);
    font-size: 30px;
    line-height: 40px;
    font-weight: 400;
    font-family: var(--thm-font-3);
}

.banner-style1__btn {
    position: relative;
    display: flex;
    justify-content: center;
    line-height: 0;
    padding-top: 31px;
}

.banner-style1__btn .btn-one i {
    width: 54px;
    height: 54px;
}

.banner-style1__btn .btn-one .txt {
    border-radius: 27px;
    line-height: 44px;
}




/*** 
=============================================
    Mission Statement Style1 Css      
=============================================
***/
.mission-statement-style1 {
    padding: 125px 0px 50px;
    z-index: 2;
}

.mission-statement-style1__inner {
    position: relative;
    display: block;
    padding: 0px 60px 0px;
}

.mission-statement-style1__content {
    position: relative;
    display: block;
    padding-bottom: 62px;
}

.mission-statement-style1__content h2 {
    font-size: 45px;
    line-height: 1.0em;
    margin-bottom: 25px;
}

.mission-statement-style1__content p {
    margin: 0;
}

.single-mission-statement-style1 {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

.single-mission-statement-style1__img {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 20px;
}

.single-mission-statement-style1__img img {
    width: 100%;
    transform: scale(1.0);
    transition: all 1500ms ease;
}

.single-mission-statement-style1:hover .single-mission-statement-style1__img img {
    transform: scale(1.05) rotate(0deg);
}



/*** 
=============================================
    Company History Css      
=============================================
***/
.company-history {
    position: relative;
    display: block;
    padding: 0 0 120px;
}

.company-history__bg {
    position: absolute;
    top: -220px;
    left: 0;
    bottom: 0;
    right: 0;
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
    z-index: -1;
}

.company-history .container {
    max-width: 1398px;
}

.company-history__content {
    position: relative;
    display: block;
    z-index: 1;
}

.company-history__content::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    bottom: 0;
    width: 1px;
    background-color: #decfaa;
    z-index: -1;
}

.company-history__content ul {
    position: relative;
    display: block;
    padding-top: 110px;
    padding-bottom: 110px;
    z-index: 1;
}

.company-history__content ul::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: -1px;
    width: 17px;
    height: 17px;
    background-color: var(--thm-black-bg);
    border-radius: 50%;
    margin: 0 auto;
}


.company-history__content ul::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    right: -1px;
    width: 17px;
    height: 17px;
    background-color: var(--thm-black-bg);
    border-radius: 50%;
    margin: 0 auto;
}

.company-history__content ul li {
    position: relative;
    display: block;
}

.company-history__content ul li+li {
    margin-top: 30px;
}

.company-history__content ul li:nth-child(2) .single-company-history-box .row {
    flex-direction: row-reverse;
}


.company-history__content ul li:nth-child(4) .single-company-history-box .row {
    flex-direction: row-reverse;
}


.single-company-history-box {
    position: relative;
    display: flex;
    align-items: center;
}

.single-company-history-box .row {
    --bs-gutter-x: 0px;
    align-items: center;
}

.single-company-history-box .img-box {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 10px;
}

.single-company-history-box .img-box::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--thm-black-bg);
    opacity: 0;
    z-index: 1;
    transition: opacity 0.5s ease;
    transition: all 0.5s ease;
}

.single-company-history-box:hover .img-box::before {
    opacity: .9;
}


.single-company-history-box .img-box img {
    width: 100%;
}


.single-company-history-box .date-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 85px;
    height: 85px;
    background-color: var(--thm-black);
    border-radius: 50%;
    margin: 0 auto;
    transition: background-color 0.5s ease;
    transition: all 0.5s ease;
}

.single-company-history-box:hover .date-box {
    background-color: var(--thm-primary-color);
}

.single-company-history-box .date-box h2 {
    color: var(--thm-white);
    font-size: 20px;
    font-weight: 400;
    font-family: var(--thm-font-3);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-company-history-box:hover .date-box h2 {
    color: var(--thm-black);
}

.single-company-history-box .text-box {
    position: relative;
    display: block;
}

.single-company-history-box .text-box h3 {
    font-size: 30px;
    margin: 0 0 13px;
}

.single-company-history-box .text-box p {
    color: #69594C;
}











/*** 
=============================================
    Smiling Fields Css      
=============================================
***/
.smiling-fields {
    padding: 120px 0px 120px;
}

.smiling-fields__bg {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-position: center center;
}

.smiling-fields__bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: #F4CA4E;
    background: linear-gradient(90deg, rgba(244, 202, 78, 1) 40%, rgba(255, 255, 255, 0) 70%);
}

.smiling-fields__content {
    position: relative;
    display: block;
    max-width: 490px;
    width: 100%;
}

.smiling-fields__content .sec-title-two {
    padding-bottom: 22px;
}

.smiling-fields__content .sec-title-two h2 {
    color: var(--thm-black-bg);
}

.smiling-fields__content-text {
    position: relative;
    display: block;
}

.smiling-fields__content-text p {
    margin: 0;
}

.smiling-fields__content-btn {
    position: relative;
    display: block;
    line-height: 0;
    padding-top: 37px;
}

.smiling-fields__content-btn .btn-one i {
    width: 50px;
    height: 50px;
    background-color: var(--thm-black-bg);
    color: var(--thm-primary-color);
}

.smiling-fields__content-btn .btn-one:hover i {
    color: var(--thm-white);
}

.smiling-fields__content-btn .btn-one .txt {
    border-radius: 27px;
    color: var(--thm-primary-color);
    line-height: 44px;
}

.smiling-fields__content-btn .btn-one:hover .txt {
    color: var(--thm-white);
}

.smiling-fields__content-btn .btn-one .txt:after {
    background-color: var(--thm-black-bg);
}





/*** 
=============================================
    Project Page One Css      
=============================================
***/
.project-page-one {
    padding: 120px 0px 120px;
}

.project-page-one__top {
    position: relative;
    display: block;
    padding-bottom: 65px;
}

.project-page-one__top .sec-title {
    padding-bottom: 20px;
}

.project-menu-box {
    position: relative;
    display: block;
    overflow: hidden;
    text-align: center;
    margin-bottom: 0px;
}

.project-filter {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.project-filter li {
    position: relative;
    display: flex;
    float: left;
}

.project-filter li+li {
    margin-left: 25px;
}

.project-filter li .filter-text {
    position: relative;
    display: block;
    color: var(--thm-body-font-color);
    font-size: 17px;
    line-height: 28px;
    font-weight: 600;
    font-family: var(--thm-font);
    text-transform: capitalize;
    cursor: pointer;
    padding-bottom: 2px;
    transition: all .4s ease;
    z-index: 1;
}

.project-filter li .filter-text::before {
    content: "";
    position: absolute;
    left: 0px;
    bottom: 0;
    right: 0px;
    height: 2px;
    width: 0%;
    background-color: var(--thm-primary-color);
    transition: all 500ms ease;
    z-index: -1;
}

.project-filter li:hover .filter-text:before,
.project-filter li.active .filter-text:before {
    width: 100%;
}

.project-filter li:hover .filter-text,
.project-filter li.active .filter-text {
    color: var(--thm-primary-color);
}

.project-filter li .count {
    display: none;
}

.project-page-one .single-project-style2 {
    margin-bottom: 43px;
}

.project-page-one__load-more-btn {
    position: relative;
    display: block;
    text-align: center;
    line-height: 0;
    padding-top: 10px;
}





.single-project-page-one {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

.single-project-page-one__img {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 20px;
}

.single-project-page-one__img::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    height: 210px;
    background: #000;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.79) 51%, rgba(0, 0, 0, 0.75) 75%);
    z-index: 1;
}

.single-project-page-one__img img {
    width: 100%;
    transform: scale(1.0);
    transition: all 1500ms ease;
}

.single-project-page-one:hover .single-project-page-one__img img {
    transform: scale(1.05) rotate(0deg);
}

.single-project-page-one__img-icon {
    position: absolute;
    top: 30%;
    right: 0px;
    left: 0;
    margin: 0px auto 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(-20px);
    -webkit-transition: all 0.7s ease;
    -o-transition: all 0.7s ease;
    transition: all 0.7s ease;
    z-index: 5;
}

.single-project-page-one:hover .single-project-page-one__img-icon {
    opacity: 1;
    transform: translateY(0);
}

.single-project-page-one__img-icon a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background-color: var(--thm-primary-color);
    transition: background-color 0.5s ease;
    transition: all 0.5s ease;
}

.single-project-page-one__img-icon a:hover {
    background-color: var(--thm-white);
}

.single-project-page-one__img-icon a i {
    color: var(--thm-black);
    font-size: 27px;
    line-height: 21px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-project-page-one__img-icon a:hover i {
    color: var(--thm-primary-color);
}

.single-project-page-one__img-content {
    position: absolute;
    left: 30px;
    bottom: 32px;
    right: 0;
    max-width: 305px;
    width: 100%;
    z-index: 5;
}

.single-project-page-one__img-content h3 {
    font-size: 24px;
    line-height: 34px;
    margin-bottom: 5px;
}

.single-project-page-one__img-content h3 a {
    color: var(--thm-primary-color);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-project-page-one__img-content h3 a:hover {
    color: var(--thm-white);
}

.single-project-page-one__img-content p {
    color: var(--thm-gray-bg);
}

.single-project-page-one__img-btn {
    position: absolute;
    right: 20px;
    bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background-color: var(--thm-white);
    z-index: 5;
}

.single-project-page-one__img-btn a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: var(--thm-primary-color);
    color: var(--thm-black-bg);
    font-size: 21px;
    line-height: 0;
    transition: background-color 0.5s ease;
    transition: all 0.5s ease;
}

.single-project-page-one__img-btn a:hover {
    color: var(--thm-white);
    background-color: var(--thm-black);
}


.project-page-one__btn {
    position: relative;
    display: block;
    text-align: center;
    line-height: 0;
    padding-top: 20px;
}

.project-page-one__btn .btn-one i {
    width: 50px;
    height: 50px;
}

.project-page-one__btn .btn-one .txt {
    border-radius: 27px;
    line-height: 44px;
}



/*** 
=============================================
    Project Page Two Css      
=============================================
***/
.project-page-two {
    padding: 120px 0px 120px;
}

.project-page-two__top {
    position: relative;
    display: block;
    padding-bottom: 65px;
}

.project-page-two__top .sec-title {
    padding-bottom: 20px;
}

.single-project-page-two {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

.single-project-page-two__img {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 20px;
}

.single-project-page-two__img::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    height: 170px;
    background: #000;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.79) 51%, rgba(0, 0, 0, 0.75) 75%);
    z-index: 1;
}

.single-project-page-two__img img {
    width: 100%;
    transform: scale(1.0);
    transition: all 1500ms ease;
}

.single-project-page-two:hover .single-project-page-two__img img {
    transform: scale(1.05) rotate(0deg);
}

.single-project-page-two__img-title {
    position: absolute;
    left: 0px;
    bottom: 0px;
    opacity: 1;
    transform: translateY(0%);
    padding: 0px 30px 31px;
    padding-right: 0;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
    z-index: 5;
}

.single-project-page-two:hover .single-project-page-two__img-title {
    opacity: 0;
    transform: translateY(120%);
}

.single-project-page-two__img-title h3 {
    font-size: 24px;
    line-height: 34px;
}

.single-project-page-two__img-title h3 a {
    color: var(--thm-primary-color);
}

.single-project-page-two__img-title-overlay {
    position: absolute;
    left: 0px;
    bottom: 0px;
    opacity: 0;
    max-width: 295px;
    width: 100%;
    transform: translateY(120%);
    margin: 0px 30px 32px;
    margin-right: 0;
    -webkit-transition: all 0.7s ease;
    -o-transition: all 0.7s ease;
    transition: all 0.7s ease;
    z-index: 5;
}

.single-project-page-two:hover .single-project-page-two__img-title-overlay {
    opacity: 1;
    transform: translateY(0%);
}

.single-project-page-two__img-title-overlay h3 {
    font-size: 24px;
    line-height: 34px;
    margin-bottom: 3px;
}

.single-project-page-two__img-title-overlay h3 a {
    color: var(--thm-primary-color);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-project-page-two__img-title-overlay h3 a:hover {
    color: var(--thm-white);
}

.single-project-page-two__img-title-overlay p {
    color: var(--thm-gray-bg);
}

.single-project-page-two__img-icon {
    position: absolute;
    right: -9px;
    bottom: -9px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background-color: var(--thm-white);
    z-index: 5;
}

.single-project-page-two__img-icon a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background-color: var(--thm-black-bg);
    color: var(--thm-primary-color);
    font-size: 21px;
    line-height: 0;
}

.single-project-page-two:hover .single-project-page-two__img-icon a {
    color: var(--thm-black-bg);
    background-color: var(--thm-primary-color);
}

.single-project-page-two__img-shape1 {
    position: absolute;
    right: 0;
    bottom: -2px;
    z-index: 1;
}

.single-project-page-two__img-shape2 {
    position: absolute;
    right: 1px;
    bottom: 0px;
    z-index: 1;
}

.project-page-two__btn {
    position: relative;
    display: block;
    text-align: center;
    line-height: 0;
    padding-top: 20px;
}

.project-page-two__btn .btn-one i {
    width: 50px;
    height: 50px;
}

.project-page-two__btn .btn-one .txt {
    border-radius: 27px;
    line-height: 44px;
}



/*** 
=============================================
    Project Page Three Css      
=============================================
***/
.project-page-three {
    padding: 120px 0px 120px;
}

.project-page-three__top {
    position: relative;
    display: block;
    padding-bottom: 65px;
}

.project-page-three__top .sec-title {
    padding-bottom: 20px;
}

.single-project-page-three {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

.single-project-page-three__img {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 20px;
}

.single-project-page-three__img::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    height: 170px;
    background: #000;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.79) 51%, rgba(0, 0, 0, 0.75) 75%);
    z-index: 1;
}

.single-project-page-three__img.one::before {
    height: 250px;
}

.single-project-page-three__img img {
    width: 100%;
    transform: scale(1.0);
    transition: all 1500ms ease;
}

.single-project-page-three:hover .single-project-page-three__img img {
    transform: scale(1.05) rotate(0deg);
}

.single-project-page-three__img-title {
    position: absolute;
    left: 0px;
    bottom: 0px;
    opacity: 1;
    transform: translateY(0%);
    padding: 0px 30px 31px;
    padding-right: 0;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
    z-index: 5;
}

.single-project-page-three:hover .single-project-page-three__img-title {
    opacity: 0;
    transform: translateY(120%);
}

.single-project-page-three__img-title h3 {
    font-size: 24px;
    line-height: 34px;
}

.single-project-page-three__img-title h3 a {
    color: var(--thm-primary-color);
}

.single-project-page-three__img-title-overlay {
    position: absolute;
    left: 0px;
    bottom: 0px;
    opacity: 0;
    max-width: 295px;
    width: 100%;
    transform: translateY(120%);
    margin: 0px 30px 32px;
    margin-right: 0;
    -webkit-transition: all 0.7s ease;
    -o-transition: all 0.7s ease;
    transition: all 0.7s ease;
    z-index: 5;
}

.single-project-page-three__img-title-overlay.two {
    max-width: 485px;
}

.single-project-page-three:hover .single-project-page-three__img-title-overlay {
    opacity: 1;
    transform: translateY(0%);
}

.single-project-page-three__img-title-overlay h3 {
    font-size: 24px;
    line-height: 34px;
    margin-bottom: 3px;
}

.single-project-page-three__img-title-overlay h3 a {
    color: var(--thm-primary-color);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-project-page-three__img-title-overlay h3 a:hover {
    color: var(--thm-white);
}

.single-project-page-three__img-title-overlay p {
    color: var(--thm-gray-bg);
}

.single-project-page-three__img-icon {
    position: absolute;
    right: -9px;
    bottom: -9px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background-color: var(--thm-white);
    z-index: 5;
}

.single-project-page-three__img-icon a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background-color: var(--thm-black-bg);
    color: var(--thm-primary-color);
    font-size: 21px;
    line-height: 0;
}

.single-project-page-three:hover .single-project-page-three__img-icon a {
    color: var(--thm-black-bg);
    background-color: var(--thm-primary-color);
}

.single-project-page-three__img-shape1 {
    position: absolute;
    right: 0;
    bottom: -2px;
    z-index: 1;
}

.single-project-page-three__img-shape2 {
    position: absolute;
    right: 1px;
    bottom: 0px;
    z-index: 1;
}

.project-page-three__btn {
    position: relative;
    display: block;
    text-align: center;
    line-height: 0;
    padding-top: 40px;
}

.project-page-three__btn .btn-one i {
    width: 50px;
    height: 50px;
}

.project-page-three__btn .btn-one .txt {
    border-radius: 27px;
    line-height: 44px;
}



/*** 
=============================================
    Project Page Four Css      
=============================================
***/
.project-page-four {
    padding: 120px 0px 120px;
}

.project-page-four .container {
    max-width: 1830px;
}


.project-page-four__top {
    position: relative;
    display: block;
    padding-bottom: 65px;
}

.project-page-four__top .sec-title {
    padding-bottom: 20px;
}


.single-project-page-four {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

.single-project-page-four__img {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 20px;
}

.single-project-page-four__img::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    height: 170px;
    background: #000;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.79) 51%, rgba(0, 0, 0, 0.75) 75%);
    z-index: 1;
}

.single-project-page-four__img.one::before {
    height: 250px;
}

.single-project-page-four__img img {
    width: 100%;
    transform: scale(1.0);
    transition: all 1500ms ease;
}

.single-project-page-four:hover .single-project-page-four__img img {
    transform: scale(1.05) rotate(0deg);
}

.single-project-page-four__img-title {
    position: absolute;
    left: 0px;
    bottom: 0px;
    opacity: 1;
    transform: translateY(0%);
    padding: 0px 30px 31px;
    padding-right: 0;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
    z-index: 5;
}

.single-project-page-four:hover .single-project-page-four__img-title {
    opacity: 0;
    transform: translateY(120%);
}

.single-project-page-four__img-title h3 {
    font-size: 24px;
    line-height: 34px;
}

.single-project-page-four__img-title h3 a {
    color: var(--thm-primary-color);
}

.single-project-page-four__img-title-overlay {
    position: absolute;
    left: 0px;
    bottom: 0px;
    opacity: 0;
    max-width: 295px;
    width: 100%;
    transform: translateY(120%);
    margin: 0px 30px 17px;
    margin-right: 0;
    -webkit-transition: all 0.7s ease;
    -o-transition: all 0.7s ease;
    transition: all 0.7s ease;
    z-index: 5;
}

.single-project-page-four:hover .single-project-page-four__img-title-overlay {
    opacity: 1;
    transform: translateY(0%);
}

.single-project-page-four__img-title-overlay h3 {
    font-size: 24px;
    line-height: 34px;
    margin-bottom: 3px;
}

.single-project-page-four__img-title-overlay h3 a {
    color: var(--thm-primary-color);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-project-page-four__img-title-overlay h3 a:hover {
    color: var(--thm-white);
}

.single-project-page-four__img-title-overlay p {
    color: var(--thm-gray-bg);
}

.single-project-page-four__img-icon {
    position: absolute;
    right: -9px;
    bottom: -9px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background-color: var(--thm-white);
    z-index: 5;
}

.single-project-page-four__img-icon a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background-color: var(--thm-black-bg);
    color: var(--thm-primary-color);
    font-size: 21px;
    line-height: 0;
}

.single-project-page-four:hover .single-project-page-four__img-icon a {
    color: var(--thm-black-bg);
    background-color: var(--thm-primary-color);
}

.single-project-page-four__img-shape1 {
    position: absolute;
    right: 0;
    bottom: -2px;
    z-index: 1;
}

.single-project-page-four__img-shape2 {
    position: absolute;
    right: 1px;
    bottom: 0px;
    z-index: 1;
}

.project-page-four__btn {
    position: relative;
    display: block;
    text-align: center;
    line-height: 0;
    padding-top: 40px;
}

.project-page-four__btn .btn-one i {
    width: 50px;
    height: 50px;
}

.project-page-four__btn .btn-one .txt {
    border-radius: 27px;
    line-height: 44px;
}



/*** 
=============================================
      Project Details Style1 Css      
=============================================
***/
.project-details-style1 {
    padding: 120px 0px 112px;
}

.project-details-style1__img {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 20px;
}

.project-details-style1__img img {
    width: 100%;
}

.project-details-style1__info {
    position: relative;
    display: block;
}

.project-details-style1__info-list {
    position: relative;
    display: block;
    background-color: var(--thm-gray-bg);
    border-radius: 20px;
    padding: 32px 33px 32px;
}

.project-details-style1__info-list li {
    position: relative;
    display: flex;
    align-items: start;
}

.project-details-style1__info-list li+li {
    margin-top: 14px;
}

.project-details-style1__info-list li span {
    color: var(--thm-black-bg);
    font-size: 17px;
    line-height: 28px;
    font-family: var(--thm-font);
    font-weight: 600;
}

.project-details-style1__info-list li p {
    margin-left: 10px;
}

.project-details-style1__info-list li p a {
    color: var(--thm-body-font-color);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.project-details-style1__info-list li p a:hover {
    color: var(--thm-black-bg);
}

.project-details-style1__social {
    position: relative;
    display: block;
    padding-top: 53px;
}

.project-details-style1__social-title {
    position: relative;
    display: block;
}

.project-details-style1__social-title h6 {
    color: var(--thm-black-bg);
    font-size: 17px;
    line-height: 28px;
    font-weight: 600;
}

.project-details-style1__social ul {
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 12px;
}

.project-details-style1__social ul li {
    position: relative;
    display: block;
}

.project-details-style1__social ul li+li {
    margin-left: 10px;
}

.project-details-style1__social ul li a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    background-color: transparent;
    border: 1px solid var(--thm-border-color-1);
    color: var(--thm-black-bg);
    font-size: 18px;
    line-height: 0;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
    z-index: 1;
}

.project-details-style1__social ul li a:hover {
    color: var(--thm-white);
    border-color: transparent;
}

.project-details-style1__social ul li a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    opacity: 0;
    transform: scale(0);
    border-radius: 50%;
    background-color: var(--thm-black-bg);
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
    z-index: -1;
}

.project-details-style1__social ul li a:hover::before {
    opacity: 1;
    transform: scale(1);
}

.project-details-style1__content {
    position: relative;
    display: block;
    padding: 64px 0px 0px;
}

.project-details-style1__content-title {
    position: relative;
    display: block;
    padding-bottom: 35px;
}

.project-details-style1__content-title h2 {
    font-size: 45px;
    line-height: 1.0em;
}

.project-details-style1__content-text {
    position: relative;
    display: block;
}

.project-details-style1__content-text p {
    margin: 0;
}

.project-details-style1__content-text p+p {
    margin-top: 19px;
}


/*** 
=============================================
      Project Details Style2 Css      
=============================================
***/
.project-details-style2 {
    background-color: var(--thm-gray-bg-2);
    padding: 120px 0px 120px;
}

.project-details-style2 .row {
    align-items: center;
}

.project-details-style2__content {
    position: relative;
    display: block;
}

.project-details-style2__content-title {
    position: relative;
    display: block;
}

.project-details-style2__content-title h2 {
    font-size: 45px;
    line-height: 1.0em;
    font-weight: 600;
}

.project-details-style2__content-text {
    position: relative;
    display: block;
    padding-top: 25px;
}

.project-details-style2__content-text p {
    margin: 0;
}

.project-details-style2__content-list {
    position: relative;
    display: block;
    margin-top: 36px;
}

.project-details-style2__content-list li {
    position: relative;
    display: block;
    padding-left: 30px;
}

.project-details-style2__content-list li+li {
    margin-top: 26px;
}

.project-details-style2__content-list li .box {
    position: absolute;
    top: 9px;
    left: 0px;
    width: 10px;
    height: 10px;
    background-color: var(--thm-black-bg);
    border-radius: 50%;
}

.project-details-style2__content-list li .text {
    position: relative;
    display: block;
}

.project-details-style2__content-list li .text h3 {
    font-size: 20px;
    line-height: 26px;
    font-family: var(--thm-font);
    font-weight: 600;
    margin-bottom: 6px;
}

.project-details-style2__content-list li .text p {
    margin: 0;
}

.project-details-style2__img {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 20px;
}

.project-details-style2__img img {
    width: 100%;
}


/*** 
=============================================
      Project Details Style3 Css      
=============================================
***/
.project-details-style3 {
    padding: 114px 0px 112px;
}

.project-details-style3__content {
    position: relative;
    display: block;
}

.project-details-style3__content-title {
    position: relative;
    display: block;
    padding-bottom: 35px;
}

.project-details-style3__content-title h2 {
    font-size: 45px;
    line-height: 1.0em;
}

.project-details-style3__content-text {
    position: relative;
    display: block;
}

.project-details-style3__content-text p {
    margin: 0;
}

.project-details-style3__content-text p+p {
    margin-top: 24px;
}

.project-details-style3__content-list {
    position: relative;
    display: block;
    margin-top: 34px;
}

.project-details-style3__content-list li {
    position: relative;
    display: block;
    padding-left: 30px;
}

.project-details-style3__content-list li+li {
    margin-top: 4px;
}

.project-details-style3__content-list li .dot {
    position: absolute;
    top: 10px;
    left: 0;
    bottom: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--thm-black-bg);
}

.project-details-style3__content-list li .text {
    position: relative;
    display: block;
}

.project-details-style3__content-list li .text p {
    margin: 0;
}


/*** 
=============================================
    Error Page Css      
=============================================
***/
.error-page {
    position: relative;
    display: block;
    padding: 335px 0 70px;
}

.error-page__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    z-index: -1;
}

.error-page__bg:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, .45);
}

.error-page__inner-content {
    position: relative;
    display: block;
}

.error-page__inner-content-top {
    position: relative;
    display: block;
    text-align: center;
}

.error-page__img {
    position: relative;
    display: block;
}

.error-page__img img {
    width: auto;
}

.error-page__title {
    font-size: 64px;
    color: var(--thm-primary-color);
    font-family: var(--thm-font-3);
    line-height: 1.3em;
    margin-top: 35px;
    margin-bottom: 8px;
}

.error-page__text {
    color: #F5F1E0;
}

.error-page__menu-and-button {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 152px;
}

.error-page__menu-and-button .breadcrumb-menu {
    position: relative;
    bottom: 0;
}

.error-page__button {
    position: relative;
    display: block;
}




/*** 
=============================================
    Coming Soon Page Style1      
=============================================
***/
.coming-soon-page {
    position: relative;
    display: block;
    overflow: hidden;
    z-index: 10;
}

.coming-soon-page__bg {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-position: center center;
}

.coming-soon-page__bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: #4F332F;
    background: linear-gradient(180deg, rgba(79, 51, 47, 0.95) 16%, rgba(79, 51, 47, 0.91) 39%, rgba(79, 51, 47, 0.85) 68%, rgba(79, 51, 47, 0.75) 100%);
}


.coming-soon-page__content {
    position: relative;
    display: block;
    height: 100%;
}

.coming-soon-page__content-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 100%;
}

.coming-soon-page__logo {
    position: relative;
    display: block;
}

.coming-soon-page__logo a {
    position: relative;
    display: inline-block;
}

.coming-soon-page__logo a img {
    width: auto;
}

.coming-soon-page__big-title {
    position: relative;
    display: block;
    padding-top: 72px;
}

.coming-soon-page__big-title h2 {
    color: var(--thm-primary-color);
    font-size: 90px;
    line-height: 1.0em;
    font-family: var(--thm-font-3);
    font-weight: 400;
}

.coming-soon-page__sub-title {
    position: relative;
    display: block;
    padding-top: 36px;
}

.coming-soon-page__sub-title h3 {
    color: var(--thm-white);
    font-size: 55px;
    line-height: 1.2em;
}

.coming-soon-page__text {
    position: relative;
    display: block;
    padding-top: 24px;
}

.coming-soon-page__text p {
    color: var(--thm-gray-bg);
}

.timer-box {
    position: relative;
    display: flex;
    align-items: center;
    margin: 34px 0 0px;
    z-index: 2;
}

.timer-box .countdown-timer li {
    position: relative;
    display: flex;
    align-items: center;
    float: left;
}

.timer-box .countdown-timer li::before {
    content: "";
    position: absolute;
    top: 27px;
    left: -30px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: #f6f1de;
}

.timer-box .countdown-timer li::after {
    content: "";
    position: absolute;
    bottom: 62px;
    left: -30px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: #f6f1de;
}

.timer-box .countdown-timer li:first-child::before,
.timer-box .countdown-timer li:first-child::after {
    display: none;
}

.timer-box .countdown-timer li+li {
    margin-left: 55px;
}

.timer-box .countdown-timer li span.days,
.timer-box .countdown-timer li span.hours,
.timer-box .countdown-timer li span.minutes,
.timer-box .countdown-timer li span.seconds {
    position: relative;
    display: block;
    color: var(--thm-primary-color);
    font-size: 64px;
    line-height: 1.0em;
    font-weight: 700;
    font-family: var(--thm-font-2);
    margin-bottom: 9px;
}

.timer-box .countdown-timer li span.timeRef {
    position: relative;
    color: var(--thm-gray-bg);
    font-size: 24px;
    line-height: 28px;
    font-family: var(--thm-font);
    font-weight: 700;
    text-transform: capitalize;
    text-align: center;
}

.coming-soon-page__bottom {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    max-width: 1200px;
    width: 100%;
    margin: 50px auto 0;
    padding: 0 15px;
}

.coming-soon-page__menu {
    position: relative;
    display: block;
    top: 3px;
}

.coming-soon-page__menu ul {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.coming-soon-page__menu ul li {
    position: relative;
    display: block;
    font-size: 16px;
    line-height: 26px;
    font-family: var(--thm-font-2);
    font-weight: 400;
}

.coming-soon-page__menu ul li+li {
    margin-left: 10px;
}

.coming-soon-page__menu ul li a {
    color: var(--thm-white);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.coming-soon-page__menu ul li a:hover,
.coming-soon-page__menu ul li.active {
    color: var(--thm-primary-color);
}

.coming-soon-page__menu ul li.icon {
    transform: rotate(-90deg);
    line-height: 0;
}

.coming-soon-page__menu ul li i {
    color: var(--thm-primary-color);
    font-size: 16px;
    margin-top: 0px;
}

.subscribe-box-style1 {
    position: relative;
    display: block;
}

.subscribe-box-style1 .inner-title {
    position: relative;
    display: block;
    padding-bottom: 12px;
}

.subscribe-box-style1 .inner-title h3 {
    color: var(--thm-gray-bg);
    font-size: 16px;
    line-height: 26px;
    font-family: var(--thm-font);
    font-weight: 500;
}

.subscribe-box-style1 form {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

.subscribe-box-style1 form .input-box {
    position: relative;
    display: block;
}

.subscribe-box-style1 form .input-box .icon {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 20px;
    color: var(--thm-primary-color);
    font-size: 20px;
    line-height: 0;
    z-index: 1;
}

.subscribe-box-style1 form input[type="email"] {
    position: relative;
    display: block;
    max-width: 235px;
    width: 100%;
    height: 54px;
    border-radius: 27px;
    background: var(--thm-gray-bg);
    border: none !important;
    color: var(--thm-body-font-color);
    font-size: 17px;
    font-family: var(--thm-font);
    font-weight: 400;
    padding: 0px 50px 0px;
    padding-right: 20px;
    transition: all 500ms ease 0s;
}

.subscribe-box-style1 form input::-webkit-input-placeholder,
.subscribe-box-style1 form input:-moz-placeholder,
.subscribe-box-style1 form input::-moz-placeholder,
.subscribe-box-style1 form input:-ms-input-placeholder {
    color: var(--thm-body-font-color-2);
}

.subscribe-box-style1 form .btn-box {
    position: relative;
    display: block;
    margin-left: 10px;
    line-height: 0;
}

.subscribe-box-style1 form .btn-box .btn-one i {
    width: 54px;
    height: 54px;
}

.subscribe-box-style1 form .btn-box .btn-one .txt {
    border-radius: 27px;
    line-height: 44px;
}


/*** 
=============================================
   Agriculture Skills Css
=============================================
***/
.agriculture-skills {
    padding: 120px 0 120px;
    z-index: 2;
}

.agriculture-skills .section-bottom-shape {
    height: 180px;
    z-index: -1;
}


.agriculture-skills__shape-1 {
    position: absolute;
    top: 100px;
    left: 0;
    z-index: -1;
}

.agriculture-skills__shape-1 img {
    width: auto;
}

.agriculture-skills__title-box {
    position: relative;
    display: block;
    text-align: center;
    margin-bottom: 55px;
    z-index: 1;
}

.agriculture-skills__title-box-bg {
    position: absolute;
    top: 0px;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: #000;
    background-position: 5px 490px;
}

.agriculture-skills__title {
    position: relative;
    display: block;
    font-size: 140px;
    line-height: 140px;
    font-weight: 400;
    text-transform: capitalize;
    background-color: var(--thm-white);
    mix-blend-mode: lighten;
    font-family: var(--thm-font-3);
    z-index: 1;
}

.agriculture-skills__left {
    position: relative;
    display: block;
}

.agriculture-skills__img {
    position: relative;
    display: block;
    border-radius: 50%;
}

.agriculture-skills__img img {
    width: 100%;
    border-radius: 50%;
    filter: drop-shadow(8px 1px 30px rgba(0, 0, 0, 0.25));
}

.agriculture-skills__right {
    position: relative;
    display: block;
    margin-top: 50px;
}

.progress-levels {
    position: relative;
    display: block;
    padding-top: 2px;
}

.progress-box {
    position: relative;
    display: block;
    margin-top: 26px;
}

.progress-box .top {
    position: relative;
    display: block;
    padding-bottom: 12px;
}

.progress-box .top h4 {
    position: relative;
    color: var(--thm-black);
    font-size: 17px;
    line-height: 20px;
    font-weight: 600;
    text-transform: capitalize;
}


.progress-box .skill-percent {
    position: absolute;
    top: -36px;
    right: -15px;
}

.progress-box .count-text {
    position: relative;
    color: var(--thm-black);
    font-size: 17px;
    line-height: 20px;
    font-weight: 600;
    display: inline-block;
    float: none;
    font-family: var(--thm-font-2);
}

.progress-box .percent {
    position: relative;
    color: var(--thm-black);
    font-size: 17px;
    line-height: 20px;
    font-weight: 600;
    display: inline-block;
    float: none;
    margin-left: -3px;
    font-family: var(--thm-font-2);
}



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

.progress-box .bar .bar-innner {
    position: relative;
    width: 100%;
    height: 10px;
    background-color: #ECECEC;
    border-radius: 5px;
}

.progress-box .bar .bar-fill {
    position: absolute;
    top: 0%;
    left: 0px;
    bottom: 0%;
    width: 0px;
    height: 10px;
    border-radius: 5px;
    transition: all 2000ms ease 300ms;
    background: linear-gradient(90deg, #53D58A 57.05%, rgba(83, 213, 138, 0) 82.76%), #ECECEC;
}


/*** 
=============================================
   Project Style3 Css
=============================================
***/
.project-style3 {
    position: relative;
    padding-top: 120px;
    z-index: 3;
}

.project-style3__top {
    position: relative;
    display: block;
    margin-bottom: 61px;
}

.project-style3__top-left {
    position: relative;
    display: block;
}

.project-style3__top-right {
    position: relative;
    display: block;
}

.project-style3__top-text-1 {
    margin-bottom: 28px;
}

.project-style3__bottom {
    position: relative;
    display: block;
}

.project-style3__bottom .container {
    max-width: 1680px;
}

.project-style3__single {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

.project-style3__img {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 20px;
    z-index: 1;
}

.project-style3__img::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--thm-black-bg);
    opacity: 0;
    z-index: 1;
    transition: opacity 0.5s ease;
    transition: all 0.5s ease;
}

.project-style3__single:hover .project-style3__img::before {
    opacity: .56;
}

.project-style3__img img {
    width: 100%;
    border-radius: 20px;
    transform: scale(1.0);
    transition: all 1500ms ease;
}

.project-style3__single:hover .project-style3__img img {
    transform: scale(1.05) rotate(0deg);
}

.project-style3__img-overlay-icon {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
}

.project-style3__img-overlay-icon a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background-color: var(--thm-white);
    color: var(--thm-black-bg);
    font-size: 20px;
    line-height: 0;
    opacity: 0;
    transform: translateY(30px);
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.project-style3__img-overlay-icon a:hover {
    color: var(--thm-black);
    background-color: var(--thm-primary-color);
}

.project-style3__single:hover .project-style3__img-overlay-icon a {
    opacity: 1;
    transform: translateY(0px);
}



/*** 
=============================================
   Mission Vission style1 Css
=============================================
***/
.mission-vission-style1 {
    padding-top: 40px;
    padding-bottom: 90px;
}

.mission-vission-style1__bg {
    position: absolute;
    top: -190px;
    left: 0;
    right: 0;
    bottom: 0;
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom center;
    z-index: -1;
}

.mission-vission-style1__bg::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #FFBE00;
    opacity: 0.93;
}

.mission-vission-style1__single {
    position: relative;
    display: block;
    background-color: #52320A;
    border-radius: 20px;
    text-align: center;
    padding: 90px 40px 90px;
    z-index: 1;
    margin-bottom: 30px;
}

.mission-vission-style1__single::before {
    content: "";
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border: 1px dashed rgba(255, 255, 255, .25);
    border-radius: 15px;
    z-index: -1;
}

.mission-vission-style1__title {
    font-size: 24px;
    color: var(--thm-primary-color);
    font-weight: 600;
    line-height: 1em;
    margin-bottom: 20px;
}

.mission-vission-style1__text {
    color: var(--thm-white);
    font-weight: 500;
}


/*** 
=============================================
    History Style1 Css
=============================================
***/
.history-style1 {
    padding: 120px 0px 0px;
}

.history-style1.margin-b-120 {
    margin-bottom: 120px;
}

.history-style1__shape {
    position: absolute;
    top: 100px;
    left: 0;
}

.history-style1__shape2 {
    position: absolute;
    right: 0;
    bottom: 0;
}

.history-style1 .container {
    max-width: 1320px;
}

.history-style1 .row {
    align-items: center;
}

.history-style1__content {
    position: relative;
    display: block;
    padding-left: 60px;
    padding-right: 25px;
    z-index: 10;
}

.history-style1__content .sec-title-two {
    padding-bottom: 24px;
}

.history-style1__content-text {
    position: relative;
    display: block;
}

.history-style1__content-text p {
    margin: 0;
}

.history-style1__content-btn {
    position: relative;
    display: block;
    line-height: 0;
    margin-top: 37px;
}

.history-style1__content-btn .btn-one i {
    width: 54px;
    height: 54px;
}

.history-style1__content-btn .btn-one .txt {
    border-radius: 27px;
    line-height: 44px;
}

.history-style1__img {
    position: relative;
    display: block;
    margin-left: -60px;
    padding-left: 56px;
    margin-right: -25px;
    padding-bottom: 46px;
    padding-top: 55px;
}

.history-style1__img-inner {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 20px;
}

.history-style1__img-inner img {
    width: 100%;
    transform: scale(1.0);
    transition: all 1500ms ease;
}

.history-style1__img-inner:hover img {
    transform: scale(1.05) rotate(0deg);
}

.history-style1__img-experience {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: transparent;
    z-index: 5;
}

.history-style1__img-experience-bg {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-position: center center;
}

.history-style1__img-experience-inner {
    position: relative;
    display: block;
    text-align: center;
}

.history-style1__img-experience-title {
    position: relative;
    display: block;
    line-height: 0;
}

.history-style1__img-experience-title h2 {
    color: var(--thm-black);
    font-size: 20px;
    line-height: 10px;
}

.history-style1__img-experience-text {
    position: relative;
    display: block;
    line-height: 0;
    margin-top: 4px;
}

.history-style1__img-experience-text p {
    color: var(--thm-black);
    font-size: 10px;
    line-height: 10px;
}

.history-style1__img-acres {
    position: absolute;
    left: 0;
    bottom: 0px;
    right: 0px;
    max-width: 290px;
    margin: 0px auto 0px;
    padding-top: 35px;
    z-index: 5;
}

.history-style1__img-acres-shape {
    position: absolute;
    top: 0;
    right: 0;
}

.history-style1__img-acres-shape img {
    width: auto;
}

.history-style1__img-acres-content {
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: var(--thm-primary-color);
    border-radius: var(--thm-border-radius);
    padding: 25px 25px 25px;
    padding-right: 38px;
}

.history-style1__img-acres-fact {
    position: relative;
    display: block;
}

.history-style1__img-acres-fact h2 {
    color: var(--thm-black-bg);
    font-size: 36px;
    line-height: 1.0em;
    font-family: var(--thm-font-3);
    font-weight: 400;
}

.history-style1__img-acres-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--thm-black-bg);
    margin-left: 20px;
    z-index: 1;
}

.history-style1__img-acres-icon::before {
    content: "";
    position: absolute;
    top: -100px;
    left: 50%;
    bottom: -100px;
    width: 1px;
    background-color: var(--thm-black-bg);
}

.history-style1__img-acres-icon i {
    color: var(--thm-primary-color);
    font-size: 24px;
    z-index: 5;
}

.history-style1__img-acres-title {
    position: relative;
    display: block;
    margin-left: 15px;
    flex: 1;
}

.history-style1__img-acres-title h4 {
    color: var(--thm-black-bg);
    font-size: 18px;
    line-height: 26px;
    font-size: 600;
}




















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

.cursor::before {
    content: "";
    position: absolute;
    top: -7px;
    left: -7px;
    bottom: -7px;
    right: -7px;
    border: 1px solid var(--thm-primary-color);
    border-radius: 50%;
}

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

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

.cursor.hovered {
    opacity: 1;
}

.cursor-follower {
    position: fixed;
    background-color: var(--thm-primary-color);
    opacity: 0.30;
    width: 33px;
    height: 33px;
    border-radius: 100%;
    z-index: 1;
    -webkit-transition: 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity, 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) background, 0.6s cubic-bezier(0.75, -1.27, 0.3, 2.33) -webkit-transform;
    transition: 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity, 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) background, 0.6s cubic-bezier(0.75, -1.27, 0.3, 2.33) -webkit-transform;
    transition: 0.6s cubic-bezier(0.75, -1.27, 0.3, 2.33) transform, 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity, 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) background;
    transition: 0.6s cubic-bezier(0.75, -1.27, 0.3, 2.33) transform, 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity, 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) background, 0.6s cubic-bezier(0.75, -1.27, 0.3, 2.33) -webkit-transform;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    pointer-events: none;
    z-index: 10000;
    -webkit-transform: translate(2px, 2px);
    transform: translate(2px, 2px);
    display: none;
}

.cursor-follower.active {
    opacity: 0.10;
    -webkit-transform: scale(1.03);
    transform: scale(1.03);
}

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

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

/* Cursor End */






#ui-datepicker-div.ui-widget-content {
    background: var(--thm-white) none repeat scroll 0 0;
    border: 1px solid var(--thm-border-color);
    color: var(--thm-black);
    font-family: var(--thm-font-2);
    font-size: 14px;
    border-radius: 0px;
    width: 270px;
    padding: 5px;
    z-index: 999 !important;
}

#ui-datepicker-div.ui-datepicker .ui-datepicker-header {
    background: var(--thm-black) none repeat scroll 0 0;
    border: 2px solid var(--thm-primary-color);
    border-radius: 0;
    color: var(--thm-white);
    font-weight: 700;
    padding: 5px 0;
    position: relative;
}

.ui-datepicker td a {
    color: #000000 !important;
    text-align: center;
    background-image: none !important;
    background: #f5f5f5 !important;
    border: 1px solid #f9f9f9 !important;
}

.ui-state-highlight,
.ui-widget-content .ui-state-highlight,
.ui-widget-header .ui-state-highlight {
    border: 1px solid #333333 !important;
    background: #333333 !important;
    color: #ffffff !important;
}

.ui-datepicker .ui-datepicker-prev {
    left: 5px;
}

.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
    border-radius: 30%;
    height: 20px;
    position: absolute;
    top: 7px;
    width: 20px;
    transition: all 500ms ease;
    cursor: pointer;
}

.ui-datepicker .ui-datepicker-next {
    right: 5px;
}

.ui-datepicker .ui-datepicker-prev:hover,
.ui-datepicker .ui-datepicker-next:hover {
    top: 7px;
    background: #fff;
    border: none;
}

.ui-datepicker table {
    border-collapse: collapse;
    font-size: 13px;
    margin: 0 0 0.4em;
    width: 100%;
}

.ui-datepicker th {
    border: medium none;
    font-weight: 600;
    padding: 2px 3px;
    text-align: center;
}

.ui-datepicker-calendar .ui-state-default:hover,
.ui-datepicker-calendar .ui-state-default:active {
    background: #43c3ea;
    color: #fff;
    border-color: #43c3ea;
}





/* 
------------------------------
//////////////////////////////
Modifier Css 
//////////////////////////////
-----------------------------
*/
.footer-widget-style4__seasonal-offer-carousel.owl-theme .owl-nav {
    position: absolute;
    top: -90px;
    right: 0;
    gap: 15px;
    justify-content: flex-end;
}

.footer-widget-style4__seasonal-offer-carousel.owl-theme .owl-nav [class*="owl-"] {
    position: relative;
    display: inline-block;
    width: 55px;
    height: 55px;
    overflow: hidden;
    background-color: transparent;
    border: 1px solid #664a44;
    border-radius: 50%;
    margin: 0 0px;
    padding: 0;
    transition: all 700ms ease 3s;
    z-index: 1;
}

.footer-widget-style4__seasonal-offer-carousel.owl-theme .owl-nav [class*="owl-"] span {
    position: relative;
    display: block;
    color: var(--thm-white);
    font-size: 20px;
    font-weight: 500;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}




.shop-style2-carousel.owl-theme .owl-nav {
    position: absolute;
    top: -115px;
    right: 0;
    gap: 15px;
    justify-content: flex-end;
}

.shop-style2-carousel.owl-theme .owl-nav [class*="owl-"] {
    position: relative;
    display: inline-block;
    width: 55px;
    height: 55px;
    overflow: hidden;
    background-color: transparent;
    border: 1px solid var(--thm-border-color-1);
    border-radius: 50%;
    margin: 0 0px;
    padding: 0;
    transition: all 700ms ease 3s;
    z-index: 1;
}

.shop-style2-carousel.owl-theme .owl-nav [class*="owl-"] span {
    position: relative;
    display: block;
    color: var(--thm-black);
    font-size: 20px;
    font-weight: 500;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}







/*--------------------------------------------------
# JRB Grãos — Remove ícone de trigo do menu (::before icomoon \e900)
----------------------------------------------------*/
.main-menu .main-menu__list > li > a::before,
.main-menu .main-menu__list > li.dropdown > a::before,
.stricky-header .main-menu__list > li > a::before,
.stricky-header .main-menu__list > li.dropdown > a::before {
    display: none !important;
}

/*--------------------------------------------------
# JRB Grãos — Overrides de Cor: Footer, Search e Mobile Nav
----------------------------------------------------*/

/* Footer: Últimas Notícias */
.footer-news-list { margin-top: 20px; display: flex; flex-direction: column; gap: 14px; }
.footer-news-item {
    display: flex; align-items: center; gap: 12px;
    text-decoration: none; transition: opacity .2s;
}
.footer-news-item:hover { opacity: .8; }
.footer-news-item img,
.footer-news-noimg {
    width: 58px; height: 58px; min-width: 58px;
    object-fit: cover; border-radius: 4px; display: block;
}
.footer-news-noimg {
    background: rgba(255,255,255,.1);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,.45); font-size: 22px;
}
.footer-news-info { flex: 1; min-width: 0; }
.footer-news-date { font-size: 11px; color: var(--thm-primary-color); display: block; margin-bottom: 3px; }
.footer-news-title {
    margin: 0; font-size: 13px; line-height: 1.4;
    color: rgba(255,255,255,.85); font-weight: 500;
    overflow: hidden;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
}
.footer-news-empty { font-size: 13px; color: rgba(255,255,255,.5); margin: 0; }

/* Blog: Botão de Compartilhar no WhatsApp */
.post-share-whatsapp { margin: 24px 0 8px; }
.btn-whatsapp {
    display: inline-flex; align-items: center; gap: 8px;
    background: #25D366; color: #fff; padding: 10px 22px;
    border-radius: 6px; font-weight: 600; font-size: 15px;
    text-decoration: none; transition: background .2s;
}
.btn-whatsapp:hover { background: #128C7E; color: #fff; }
.btn-whatsapp i { font-size: 18px; }

/* Blog: Seção de Comentários */
.blog-comments-section { margin-top: 48px; padding-top: 40px; border-top: 1px solid #e8e8e8; }
.blog-comments-section h3 { font-size: 22px; font-weight: 700; margin-bottom: 28px; color: var(--thm-black); }
.comment-item { display: flex; gap: 16px; margin-bottom: 28px; padding-bottom: 28px; border-bottom: 1px solid #f0f0f0; }
.comment-item:last-child { border-bottom: 0; }
.comment-avatar {
    width: 48px; height: 48px; min-width: 48px; border-radius: 50%;
    background: var(--thm-primary-color); color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 20px; font-weight: 700;
}
.comment-body { flex: 1; }
.comment-meta { display: flex; align-items: baseline; gap: 10px; margin-bottom: 6px; }
.comment-meta strong { font-size: 15px; font-weight: 700; color: var(--thm-black); }
.comment-meta time { font-size: 13px; color: #999; }
.comment-body p { margin: 0; line-height: 1.7; color: #555; }
.comment-form-wrap { margin-top: 40px; }
.comment-form-wrap h3 { font-size: 22px; font-weight: 700; margin-bottom: 24px; color: var(--thm-black); }
.comment-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.comment-form input, .comment-form textarea {
    width: 100%; padding: 12px 16px; border: 1px solid #ddd; border-radius: 4px;
    font-size: 14px; font-family: var(--thm-font); transition: border-color .2s;
}
.comment-form input:focus, .comment-form textarea:focus {
    outline: none; border-color: var(--thm-primary-color);
}
.comment-form textarea { resize: vertical; min-height: 120px; margin-bottom: 16px; }
.comment-success {
    background: #e8f5e9; border: 1px solid var(--thm-primary-color);
    color: #2e7d32; padding: 14px 18px; border-radius: 4px; margin-bottom: 20px;
}

/* Footer: texto branco sobre fundo verde escuro (#018D43) */
.single-footer-widget-about-text p,
.single-footer-widget-about-certification-title p,
.footer-widget-useful-links ul li a,
.footer-widget-blog-post-content .date p,
.copyright-text p,
.footer-menu ul li a {
    color: rgba(255, 255, 255, 0.80);
}

.footer-widget-useful-links ul li a:hover,
.footer-menu ul li a:hover {
    color: #ffffff;
}

.footer-bottom {
    border-top-color: rgba(255, 255, 255, 0.15);
}

/* Search popup: ícone de fechar branco */
.search-popup__close-btn {
    color: #ffffff;
}

/* Mobile nav: textos de contato em branco */
.mobile-nav__contact li,
.mobile-nav__contact li a {
    color: rgba(255, 255, 255, 0.85);
}


/*--------------------------------------------------
# JRB Grãos — Regra geral de cores:
#   Fundo escuro  → texto branco, hover verde claro  (--thm-primary-color #65B141)
#   Fundo claro   → acento verde claro,  hover verde escuro (--thm-black-bg  #018D43)
----------------------------------------------------*/

/* ── Correção global: elementos do template que usavam --thm-black-bg
      como cor de texto em fundos claros → padroniza para verde claro ── */
.sec-title-two .sub-title h4,
.what-we-do-style1__content-icon i,
.activities-style1__left-fact-count h2,
.activities-style1__left-fact-count .percent {
    color: var(--thm-primary-color);
}

/* ── Topbar (fundo escuro): Telefone ── */
.phone-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all 200ms linear;
}
.phone-link .icon i,
.phone-link .text p {
    color: #ffffff;
    font-weight: 700;
    transition: color 200ms linear;
}
/* hover fundo escuro → verde claro */
.phone-link:hover .icon i,
.phone-link:hover .text p {
    color: var(--thm-primary-color);
}
.phone-link .icon {
    line-height: 0;
    margin-right: 10px;
}

/* ── Topbar: alinha padding com o card branco (card tem 35px, topbar tem 20px) ── */
.main-header-style1__content-top {
    padding-left: 35px !important;
    padding-right: 35px !important;
}

/* ── Topbar (fundo escuro): Instagram ── */
.instagram-link {
    display: flex;
    align-items: center;
    gap: 7px;
    text-decoration: none;
}
.instagram-link i,
.instagram-link span {
    color: #ffffff;
    font-weight: 700;
    transition: color 200ms linear;
}
.instagram-link i {
    font-size: 18px;
}
.instagram-link span {
    font-family: var(--thm-font);
}
/* hover fundo escuro → verde claro */
.instagram-link:hover i,
.instagram-link:hover span {
    color: var(--thm-primary-color);
}

/* ── Topbar (fundo escuro): Acesso Intranet ── */
.intranet-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all 200ms linear;
}
.intranet-link .icon-holder i,
.intranet-link .text-box p span,
.intranet-link .btn-box i {
    color: #ffffff;
    font-weight: 700;
    transition: color 200ms linear;
}
/* hover fundo escuro → verde claro */
.intranet-link:hover .icon-holder i,
.intranet-link:hover .text-box p span,
.intranet-link:hover .btn-box i {
    color: var(--thm-primary-color);
}
.intranet-link .icon-holder .fa-laptop {
    font-size: 18px;
}

/*--------------------------------------------------
# JRB Grãos — Menu principal: tamanho moderado (só header fixo, não sticky)
----------------------------------------------------*/

.main-menu.main-menu-style1 .main-menu__list > li > a {
    font-size: 20px;
    line-height: 36px;
}


/*--------------------------------------------------
# JRB Grãos — Nav bar (fundo branco): globo + texto + seta
#   Normal → verde claro | Hover → verde escuro
----------------------------------------------------*/

/* JRB: força exibição do bloco "Presença nacional" em todos os desktops (≥1200px) */
@media only screen and (min-width: 1200px) {
    .header-address-style1 {
        display: flex !important;
    }
}

a.header-address-style1.address-link {
    text-decoration: none;
    cursor: pointer;
    transition: all 200ms linear;
}
a.header-address-style1.address-link .icon i {
    font-size: 38px;
    color: var(--thm-primary-color);
    transition: color 200ms linear;
}
a.header-address-style1.address-link .text h4,
a.header-address-style1.address-link .text h4 b {
    color: var(--thm-primary-color);
    transition: color 200ms linear;
}
a.header-address-style1.address-link .btn-box1 i {
    color: var(--thm-primary-color);
    transition: color 200ms linear;
}
/* hover fundo claro → verde escuro */
a.header-address-style1.address-link:hover .icon i,
a.header-address-style1.address-link:hover .btn-box1 i,
a.header-address-style1.address-link:hover .text h4,
a.header-address-style1.address-link:hover .text h4 b {
    color: var(--thm-black-bg);
}

/* JRB: "+" ao lado do contador 500 */
.about-style1__top-left-inner-fact {
    display: flex;
    align-items: baseline;
}
.counter-plus {
    font-size: 30px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    margin-left: 2px;
}

/* JRB: caixa "5.000+ toneladas" → verde claro (igual botão Saiba Mais) */
.about-style1__top-left-inner-content {
    background-color: var(--thm-primary-color) !important;
}

/* JRB: remove números 01/02/03 de fundo dos cards de soluções */
.single-products-style1__img-overlay-count {
    display: none !important;
}

/*--------------------------------------------------
# JRB — Seção Cotações
----------------------------------------------------*/
.cotacoes-section {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}
.cotacoes-section__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: brightness(0.35);
}
.cotacoes-section .container {
    position: relative;
    z-index: 2;
}

/* Título lateral */
.cotacoes-section__title .sec-title h2 { color: #ffffff; }
.cotacoes-section__title .sec-title .text p { color: rgba(255,255,255,0.75); }
.cotacoes-section__update {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.65);
    font-size: 13px;
    margin-bottom: 24px;
}
.cotacoes-section__update strong { color: var(--thm-primary-color); }
.cotacoes-section__update .fa { color: var(--thm-primary-color); }

/* Tabela */
.cotacoes-table-wrap {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 10px;
    overflow: hidden;
    backdrop-filter: blur(4px);
}
.cotacoes-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
}
.cotacoes-table thead tr {
    background: var(--thm-primary-color);
}
.cotacoes-table thead th {
    color: #ffffff;
    font-weight: 700;
    padding: 14px 18px;
    text-align: left;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.cotacoes-table tbody tr {
    border-bottom: 1px solid rgba(255,255,255,0.08);
    transition: background 200ms;
}
.cotacoes-table tbody tr:last-child { border-bottom: none; }
.cotacoes-table tbody tr:hover { background: rgba(101,177,65,0.12); }
.cotacoes-table tbody td {
    padding: 13px 18px;
    color: rgba(255,255,255,0.85);
}
.ct-produto { font-weight: 600; color: #ffffff !important; }
.ct-dot { font-size: 9px; margin-right: 6px; }
.ct-milho   { color: #f5c518; }
.ct-soja    { color: #7ec850; }
.ct-sorgo   { color: #e8a838; }
.ct-milheto { color: #c8e076; }
.ct-feijao  { color: #c4834a; }
.ct-carioca { color: #d9a96e; }
.ct-preco {
    font-weight: 700;
    color: var(--thm-primary-color) !important;
    font-size: 16px;
}
.ct-var { font-weight: 700; }
.ct-var.up      { color: #7ed957; }
.ct-var.down    { color: #ff6b6b; }
.ct-var.neutral { color: rgba(255,255,255,0.5); }
.cotacoes-aviso {
    padding: 12px 18px;
    font-size: 12px;
    color: rgba(255,255,255,0.45);
    border-top: 1px solid rgba(255,255,255,0.08);
    margin: 0;
}
.cotacoes-aviso a {
    color: var(--thm-primary-color);
    text-decoration: underline;
}

/*--------------------------------------------------
# Banner 3 Camadas — Responsivo
----------------------------------------------------*/

/* ── Contêiner principal ── */
.banner-layered {
    position: relative;
    width: 100%;
    height: 80vh;
    min-height: 480px;
    overflow: hidden;
}

/* Plano de fundo cobre tudo */
.banner-layer-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    z-index: 1;
}

/* Wrapper flexbox: texto à esquerda, brokerman à direita — sem sobreposição */
.banner-content-wrap {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    padding-left: 15%;
    padding-right: 0;
    z-index: 200;
}

/* Texto: coluna esquerda, centralizado verticalmente
   max-width impede que a imagem transborde sua coluna flex */
.banner-layer-text {
    flex: 0 0 auto;
    width: 28vw;
    max-width: 28vw;
    min-width: 0;
    height: auto;
    align-self: center;
    display: block;
    z-index: 3;
}

/* Brokerman: ocupa o restante, centralizado, encostado na base */
.banner-layer-man {
    flex: 1 1 0;
    min-width: 0;
    height: auto;
    max-height: 62%;
    align-self: flex-end;
    display: block;
    object-fit: contain;
    object-position: center bottom;
    z-index: 100;
    padding-right: 5%;
    transform: translateY(0);
}

/* ── Tablet (≤1024px) ── */
@media (max-width: 1024px) {
    .banner-content-wrap { padding-left: 8%; }
    .banner-layer-text   { width: 32vw; max-width: 32vw; }
    .banner-layer-man    { padding-right: 3%; max-height: 78%; }
}

/* ── Mobile (≤768px): empilhado — texto acima, brokerman abaixo ── */
@media (max-width: 768px) {
    .banner-layered { height: 85vh; min-height: 560px; }
    .banner-content-wrap {
        flex-direction: column;
        align-items: center;
        justify-content: flex-end;
        padding: 0;
    }
    .banner-layer-text {
        flex: 0 0 auto;
        width: 80vw;
        max-width: 80vw;
        align-self: center;
        margin-bottom: 40px;
    }
    .banner-layer-man {
        flex: 0 0 auto;
        width: 85%;
        max-width: none;
        max-height: none;
        align-self: center;
        object-position: center bottom;
    }
}

/* ── Mobile pequeno (≤480px) ── */
@media (max-width: 480px) {
    .banner-layered { height: 88vh; min-height: 520px; }
    .banner-layer-text { width: 82vw; max-width: 82vw; margin-bottom: 32px; }
    .banner-layer-man  { width: 92%; }
}

/*--------------------------------------------------
# Responsivo Geral — Mobile Overrides JRB
----------------------------------------------------*/

/* ── Redução de padding em seções no mobile ── */
@media (max-width: 767px) {
    .about-style1 { padding: 60px 0; }
    .activities-style1 { padding: 60px 0; }
    .fact-counter-style1 { padding: 50px 0; }
    .testimonial-style1 { padding: 60px 0; }
    .partner-style1 { padding: 40px 0; }
    .blog-style1 { padding: 60px 0; }

    /* Garante que containers não transbordem */
    .container { padding-left: 20px; padding-right: 20px; }

    /* Cotações: esconde coluna Variação no mobile */
    .ct-col-var, .ct-var { display: none; }
    .cotacoes-table td, .cotacoes-table th { padding: 8px 10px; font-size: 13px; }
    .cotacoes-table-wrap { overflow-x: hidden; }

    /* About: imagem responsiva */
    .about-style1__top-left-img img { width: 100%; height: auto; }

    /* Activities: "OPERAÇÕES" título rotacionado — esconde no mobile */
    .activities-style1__left-big-title { display: none; }

    /* Cotações table: scroll horizontal */
    .cotacoes-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
    .cotacoes-table { min-width: 480px; }

    /* Blog: comentários em coluna única */
    .comment-form .form-row { grid-template-columns: 1fr; }

    /* WhatsApp btn: tamanho menor */
    .btn-whatsapp { font-size: 13px; padding: 8px 16px; }

    /* Footer news list: itens mais compactos */
    .footer-news-item img,
    .footer-news-noimg { width: 48px; height: 48px; min-width: 48px; }
    .footer-news-title { font-size: 12px; }

    /* Topbar: ocultar no mobile (já existe mobile-nav) */
    .stricky-header .main-menu { display: none; }
}

/* ── Escala proporcional para desktop menor ── */
@media only screen and (min-width: 993px) and (max-width: 1319px) {
    html { zoom: 0.80; }
}
@media only screen and (min-width: 1320px) and (max-width: 1449px) {
    html { zoom: 0.87; }
}
@media only screen and (min-width: 1450px) and (max-width: 1599px) {
    html { zoom: 0.92; }
}

/* ── Blog: imagens padronizadas com altura fixa ── */
.single-blog-style1__img {
    height: 220px;
}
.single-blog-style1__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* ── Contato: formulário limpo, fundo branco, centralizado ── */
.contact-form-clean {
    background: #fff;
    border-radius: 12px;
    padding: 60px 40px 60px;
    max-width: 820px;
    margin: 0 auto;
    box-shadow: 0 4px 30px rgba(0,0,0,.07);
}
.contact-form-clean .main-contact-form__shape-bg { display: none; }
.contact-form-clean .sec-title { text-align: center; margin-bottom: 36px; }
.contact-form-clean .contact-form { width: 100%; }
.main-contact-form { background: var(--thm-gray-bg); padding: 80px 0; }

/* ── Tablet: ajustes intermediários ── */
@media (max-width: 991px) {
    /* Blog grid: 2 colunas → sem forçar 1 coluna */
    .blog-style1__single { margin-bottom: 30px; }

    /* About fact box */
    .about-style1__top-left-fact { bottom: 0; right: 0; }

    /* Activities cards */
    .single-activities-style1 { margin-bottom: 20px; }
}

/*--------------------------------------------------
# Blog Post — Estilos completos (blog-details)
--------------------------------------------------*/

/* ── Página ── */
.blog-details-page { padding: 80px 0 100px; }
.blog-details-page-content { position: relative; display: block; margin-top: -8px; }

/* ── Topo: data + autor ── */
.blog-details-page-top { position: relative; display: block; }
.blog-details-page-top .content-box { position: relative; display: block; }
.blog-details-page-top .content-box-top {
    position: relative; display: flex;
    align-items: center; justify-content: space-between;
}
.blog-details-page-top .content-box-top-inner {
    position: relative; display: flex; align-items: center;
}
.blog-details-page-top .content-box-top .date { position: relative; display: block; }
.blog-details-page-top .content-box-top .date h3 {
    color: var(--thm-primary-color); font-size: 28px; line-height: 35px; font-weight: 600;
}
.blog-details-page-top .content-box-top .date p {
    color: var(--thm-primary-color); font-size: 15px; line-height: 25px;
}
.blog-details-page-top .content-box-top .author {
    position: relative; display: flex; align-items: center;
    margin-left: 20px; padding-left: 20px;
    border-left: 1px solid var(--thm-border-color-1); flex: 1;
}
.blog-details-page-top .content-box-top .author .img {
    position: relative; display: block;
    width: 50px; height: 50px; min-width: 50px;
    overflow: hidden; border-radius: 50%;
}
.blog-details-page-top .content-box-top .author .img img {
    width: 100%; height: 100%; object-fit: cover;
}
.blog-details-page-top .content-box-top .author .title {
    position: relative; display: block; padding-left: 15px; flex: 1;
}
.blog-details-page-top .content-box-top .author .title h4 {
    font-size: 16px; line-height: 20px; font-weight: 600;
}
.blog-details-page-top .content-box-top .author .title p {
    font-size: 15px; line-height: 25px;
}

/* ── Título do post ── */
.blog-details-page-top .content-box-title {
    position: relative; display: block;
    padding-top: 19px; padding-bottom: 38px;
}
.blog-details-page-top .content-box-title h2 {
    font-size: 34px; line-height: 1.1em; font-weight: 600; margin-bottom: 4px;
}

/* ── Imagem de capa ── */
.blog-details-page-top .img-box {
    position: relative; display: block;
    overflow: hidden; border-radius: 20px;
}
.blog-details-page-top .img-box img { width: 100%; }
.blog-details-page-top .img-box .category {
    position: absolute; right: 0; bottom: 40px;
    background-color: var(--thm-primary-color);
    border-top-left-radius: 17px; border-bottom-left-radius: 17px;
    padding: 6px 15px 5px; z-index: 5;
}
.blog-details-page-top .img-box .category h6 {
    font-size: 14px; line-height: 24px;
    font-weight: 400; text-transform: uppercase; color: #fff;
}

/* ── Corpo do texto ── */
.blog-details-text1 { position: relative; display: block; margin-top: 48px; }
.blog-details-text1 p { margin: 0; }
.blog-details-text1 p + p { margin-top: 22px; }
.blog-details-text1 h2, .blog-details-text1 h3 { margin-top: 32px; margin-bottom: 10px; }
.blog-details-text1 ul, .blog-details-text1 ol {
    padding-left: 24px; margin: 16px 0;
}
.blog-details-text1 li { margin-bottom: 6px; }

/* ── Tags ── */
.blog-details-tag11 { position: relative; display: block; padding-top: 40px; }
.blog-details-tag11 .title { padding-bottom: 14px; }
.blog-details-tag11 .title h4 { font-size: 14px; line-height: 24px; text-transform: uppercase; }
.blog-details-tag11 ul { display: flex; flex-wrap: wrap; gap: 7px; }
.blog-details-tag11 ul li a {
    display: inline-block; color: var(--thm-black); font-size: 15px;
    background-color: var(--thm-gray-bg); border-radius: 10px;
    padding: 5px 15px 4px; transition: all .2s;
}
.blog-details-tag11 ul li a:hover {
    color: #fff; background-color: var(--thm-primary-color);
}

/* ── Caixa do Autor ── */
.blog-details-author {
    position: relative; display: block; overflow: hidden;
    background-color: var(--thm-white); border-radius: 20px;
    box-shadow: 0 0 30px 0 rgba(0,0,0,.1);
    padding: 33px 40px 32px; margin-top: 50px;
}
.blog-details-author-inner {
    position: relative; display: block; padding-left: 160px; min-height: 130px;
}
.blog-details-author .img-box {
    position: absolute; top: 0; left: 0;
    width: 130px; height: 130px;
    overflow: hidden; border-radius: var(--thm-border-radius);
}
.blog-details-author .img-box img {
    width: 100%; height: 100%; object-fit: cover;
}
.blog-details-author .content-box { position: relative; display: block; }
.blog-details-author .content-box .top {
    position: relative; display: block; padding-bottom: 12px;
}
.blog-details-author .content-box .top h4 {
    color: var(--thm-primary-color); font-size: 13px;
    line-height: 22px; text-transform: uppercase; margin-bottom: 2px;
}
.blog-details-author .content-box .top h3 { font-size: 20px; line-height: 28px; }
.blog-details-author .content-box .text p { margin: 0; line-height: 1.7; }
.blog-details-author .content-box .btn-box { padding-top: 12px; }
.blog-details-author .content-box .btn-box a {
    display: inline-flex; align-items: center; gap: 5px;
    color: var(--thm-black); font-size: 13px; font-weight: 700;
    text-transform: uppercase; transition: color .2s;
}
.blog-details-author .content-box .btn-box a:hover { color: var(--thm-primary-color); }
.blog-details-author .content-box .social-links {
    position: absolute; top: 0; right: 0;
}
.blog-details-author .content-box .social-links ul { display: flex; gap: 10px; }
.blog-details-author .content-box .social-links ul li a {
    display: flex; align-items: center; justify-content: center;
    width: 38px; height: 38px; border-radius: 50%;
    background-color: var(--thm-black-bg); color: #fff;
    font-size: 16px; transition: all .3s;
}
.blog-details-author .content-box .social-links ul li a:hover {
    background-color: var(--thm-primary-color);
}

/* ── Anterior / Próximo ── */
.blog-details-prev-next-option {
    position: relative; display: flex;
    align-items: center; justify-content: space-between;
    margin-top: 50px; gap: 20px;
    border-top: 1px solid var(--thm-border-color-1);
    padding-top: 40px;
}
.blog-details-prev-next-option .single-box { flex: 1; }
.blog-details-prev-next-option .single-box.right { text-align: right; }
.blog-details-prev-next-option .single-box .button-box a {
    display: inline-flex; align-items: center; gap: 5px;
    color: var(--thm-body-font-color); font-size: 13px;
    font-weight: 700; text-transform: uppercase; transition: color .2s;
}
.blog-details-prev-next-option .single-box .button-box a:hover { color: var(--thm-primary-color); }
.blog-details-prev-next-option .single-box h3 { margin-top: 6px; }
.blog-details-prev-next-option .single-box h3 a {
    color: var(--thm-black); font-size: 17px;
    line-height: 26px; font-weight: 600; transition: color .2s;
}
.blog-details-prev-next-option .single-box h3 a:hover { color: var(--thm-primary-color); }

/* ── Back to blog ── */
.back-to-blog-post-btn { margin-top: 40px; }
.back-to-blog-post-btn a {
    display: inline-flex; align-items: center; gap: 8px;
    color: var(--thm-black); font-size: 15px; font-weight: 600;
    transition: color .2s;
}
.back-to-blog-post-btn a:hover { color: var(--thm-primary-color); }

/* ── Responsivo ── */
@media (max-width: 767px) {
    .blog-details-author-inner { padding-left: 0; padding-top: 145px; }
    .blog-details-author .img-box { width: 120px; height: 120px; }
    .blog-details-author .content-box .social-links { position: static; margin-bottom: 12px; }
    .blog-details-prev-next-option { flex-direction: column; }
    .blog-details-prev-next-option .single-box.right { text-align: left; }
    .blog-details-page-top .content-box-title h2 { font-size: 24px; }
}

/*--------------------------------------------------
# Página de Cotações
--------------------------------------------------*/

/* ── Seções base (herdam estilos do template) ── */
.cotacoes-praca-section  { padding: 80px 0; }
.mercados-globais-section { }
.analise-form-section    { }

/* ── Utilitários globais de cotações ── */
.cotacoes-meta-info {
    display: flex; align-items: center; justify-content: flex-end;
    gap: 12px; flex-wrap: wrap; padding-bottom: 16px;
}
.cotacoes-att-badge {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 12px; color: #555; background: rgba(0,0,0,.05);
    padding: 5px 14px; border-radius: 20px; font-family: var(--thm-font);
}
.cotacoes-fonte { font-size: 11px; color: #aaa; font-family: var(--thm-font); margin: 0; }
.cotacoes-refresh-btn {
    display: inline-flex; align-items: center; gap: 7px;
    font-size: 13px; font-weight: 600; font-family: var(--thm-font);
    color: var(--thm-black-bg); background: transparent;
    border: 1.5px solid var(--thm-black-bg);
    border-radius: 6px; padding: 7px 18px; cursor: pointer; transition: all .2s;
}
.cotacoes-refresh-btn:hover { background: var(--thm-black-bg); color: #fff; }
.cotacoes-loader { text-align: center; padding: 40px 0; color: #777; }
.cotacoes-loader p { margin-top: 12px; font-size: 14px; font-family: var(--thm-font); }
.cotacoes-erro {
    display: flex; align-items: center; gap: 8px;
    background: #fff3cd; border: 1px solid #ffc107; color: #856404;
    padding: 14px 18px; border-radius: 8px; font-size: 14px; font-family: var(--thm-font);
}
.cotacoes-empty { text-align: center; padding: 60px 0; color: #aaa; font-family: var(--thm-font); }
.cotacoes-empty i { display: block; margin-bottom: 16px; }

/* ── Grown-with-care: cards de cotação da praça ── */
.cotacao-gwc__icon {
    display: flex !important; align-items: center; justify-content: center;
    width: 70px; height: 70px; border-radius: 50%;
    background: var(--thm-gray-bg);
    color: var(--thm-primary-color); font-size: 28px;
    margin-bottom: 20px;
}
.cotacao-gwc .single-grown-with-care__content h3 {
    font-size: 22px; margin-bottom: 4px;
}
.cotacao-gwc__unidade {
    font-size: 12px; color: #aaa; font-family: var(--thm-font);
    display: block; margin-bottom: 16px;
}
.cotacao-gwc__preco {
    display: flex; align-items: baseline; flex-wrap: wrap; gap: 6px; margin-bottom: 18px;
}
.cotacao-gwc__cifrao { font-size: 14px; color: #888; font-weight: 600; font-family: var(--thm-font); }
.cotacao-gwc__valor  { font-size: 36px; font-weight: 800; color: var(--thm-black); line-height: 1; font-family: var(--thm-font-2); }
.cotacao-gwc__var {
    display: inline-flex; align-items: center; gap: 4px;
    font-size: 13px; font-weight: 700; padding: 4px 10px; border-radius: 8px;
    font-family: var(--thm-font);
}
.cot-up      { color: #16a34a; background: #dcfce7; }
.cot-down    { color: #dc2626; background: #fee2e2; }
.cot-neutral { color: #666;    background: #f1f5f9; }
.cotacao-gwc__btn {
    width: 100%; padding: 10px 0; border-radius: 8px;
    border: 1.5px solid var(--thm-primary-color);
    color: var(--thm-primary-color); font-size: 13px; font-weight: 600;
    font-family: var(--thm-font); background: transparent;
    cursor: pointer; transition: all .2s;
    display: flex; align-items: center; justify-content: center; gap: 7px;
}
.cotacao-gwc__btn:hover { background: var(--thm-primary-color); color: #fff; }

/* ── Pricing: mercados globais (itens dentro do card) ── */
.mkt-lista-pricing { padding: 0; }
.mkt-item-pricing {
    display: flex; align-items: center; justify-content: space-between;
    padding: 10px 0; border-bottom: 1px solid rgba(0,0,0,.07);
    font-family: var(--thm-font);
}
.mkt-item-pricing:last-child { border-bottom: 0; }
.mkt-item-pricing__nome { font-size: 13px; font-weight: 600; color: var(--thm-black); }
.mkt-item-pricing__nums { display: flex; flex-direction: column; align-items: flex-end; gap: 2px; }
.mkt-item-pricing__preco { font-size: 14px; font-weight: 700; color: var(--thm-black); }
.mkt-item-pricing__var { font-size: 12px; font-weight: 700; }
.mkt-up      { color: #16a34a; }
.mkt-down    { color: #dc2626; }
.mkt-neutral { color: #888; }
/* ── Mercados Globais: títulos de categoria ── */
.mkt-categoria-bloco { margin-bottom: 44px; }
.mkt-categoria-titulo {
    display: flex;
    align-items: center;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--thm-primary-color);
    padding-bottom: 12px;
    border-bottom: 2px solid #e8f5e0;
    margin-bottom: 26px;
}
/* Valor do preço ligeiramente menor nos cards de mercado global */
.cotacao-gwc__valor--mkt { font-size: 15px !important; }
/* Sem hover nos cards de mercados globais (novo estilo grown-with-care) */
.mercados-globais-section .single-grown-with-care { cursor: default; }
.mercados-globais-section .single-grown-with-care:hover {
    transform: none !important;
    box-shadow: none !important;
}
.mercados-globais-section .single-pricing-style1__content-top h3 {
    font-size: 16px; font-weight: 700; text-align: left;
    padding-bottom: 12px; border-bottom: 2px solid var(--thm-primary-color);
    margin-bottom: 4px;
}

/* ── FAQ: análise e formulário ── */
.analise-texto-faq p {
    font-size: 15px; line-height: 1.8; color: #444;
    margin-bottom: 12px; font-family: var(--thm-font);
}
.analise-texto-faq p:last-child { margin-bottom: 0; }
.analise-rodape-faq {
    display: flex; align-items: center; justify-content: space-between;
    margin-top: 20px; padding-top: 14px;
    border-top: 1px solid rgba(1,141,67,.2);
    font-size: 12px; color: #888; flex-wrap: wrap; gap: 8px;
    font-family: var(--thm-font);
}
.cotacao-form { font-family: var(--thm-font); }
.cotacao-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.cotacao-form__group { margin-bottom: 14px; }
.cotacao-form__group label {
    display: block; font-size: 13px; font-weight: 600;
    color: var(--thm-black); margin-bottom: 6px; font-family: var(--thm-font);
}
.cotacao-form__group input,
.cotacao-form__group textarea {
    width: 100%; padding: 12px 16px; border: 1.5px solid #e0e0e0;
    border-radius: 8px; font-size: 14px; font-family: var(--thm-font);
    transition: border-color .2s; background: #fafafa; color: var(--thm-black);
}
.cotacao-form__group input:focus,
.cotacao-form__group textarea:focus {
    outline: none; border-color: var(--thm-primary-color); background: #fff;
}
.cotacao-form__group textarea { resize: vertical; min-height: 100px; }
.cotacao-form-sucesso {
    background: #e8f5e9; border: 1px solid var(--thm-primary-color);
    color: #2e7d32; padding: 18px 20px; border-radius: 10px;
    font-size: 15px; font-family: var(--thm-font);
    display: flex; align-items: center; gap: 8px;
}
.cotacao-form-erro {
    background: #fff3cd; border: 1px solid #ffc107; color: #856404;
    padding: 12px 16px; border-radius: 8px; font-size: 14px;
    margin-bottom: 16px; font-family: var(--thm-font);
}

/* ── Período buttons no modal ── */
.historico-periodo-btns { display: flex; gap: 6px; flex-wrap: wrap; }
.periodo-btn { font-family: var(--thm-font); font-size: 13px; }
.periodo-btn.active { background: var(--thm-primary-color) !important; color: #fff !important; border-color: var(--thm-primary-color) !important; }

/* ── Responsivo ── */
@media (max-width: 991px) {
    .cotacoes-meta-info { justify-content: flex-start; }
}
@media (max-width: 767px) {
    .cotacoes-praca-section, .mercados-globais-section,
    .analise-mercado-section, .cotacao-form-section { padding: 60px 0; }
    .cotacao-form-card { padding: 32px 22px; }
    .cotacao-form__row { grid-template-columns: 1fr; }
    .cotacao-card__valor { font-size: 28px; }
    .analise-box { padding: 24px 22px; }
}

/*--------------------------------------------------
# End Css
----------------------------------------------------*/