@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    --body-font: "Outfit", sans-serif;
    --heading-font: "Outfit", sans-serif;
    --white: #FFFFFF;
    --black: #000000;
    --p-color: #6A726F;
    --primary-color-1: #5C7B60;
    --primary-color-2: #5C7B60;
    --primary-color-3: #FBC763;
    --primary-color-4: #F35120;
    --text-heading-color: #062A26;
    --color-1: #062A26;
    --color-2: #EDF4F2;
    --color-3: #14133B;
    --color-4: #E6EEFF;
    --color-5: #201f42;
    --color-6: #F5F8FF;
    --color-7: #182928;
    --color-8: #EEF3F3;
    --color-9: #203635;
    --border-color-1: #23423F;
    --border-color-2: #E9E9E8;
    --border-color-3: rgba(19, 19, 19, 0.1);
    --border-color-4: rgba(19, 19, 19, 0.06);
    --box-shadow-1: 0 25px 70px rgba(0, 0, 0, 0.08);
    --box-shadow-2: 0 10px 70px rgba(0, 0, 0, 0.1);
}

body {
    font-family: var(--body-font), serif;
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
}

img {
    max-width: 100%;
    height: auto;
    transition: 0.4s;
}

a {
    outline: none;
    color: inherit;
    text-decoration: none;
}

a,
button,
i {
    text-decoration: none;
    color: inherit;
}

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

.section-padding {
    padding: 80px 0;
}

@media (max-width: 991px) {
    .section-padding {
        padding: 80px 0;
    }
}

@media (max-width: 575px) {
    .section-padding {
        padding: 30px 0;
    }
}

.display-none {
    display: none;
}

.display-block {
    display: block;
}

.filter img {
    filter: grayscale(100%);
}

.img__full {
    width: 100%;
}

/* Form CSS */
button,
input[type=button],
input[type=reset],
input[type=submit] {
    border: 1px solid var(--border-color-2);
    border-color: transparent;
    background: var(--primary-color-1);
    color: var(--white);
    padding: 17px 40px;
}

button:hover,
input[type=button]:hover,
input[type=reset]:hover,
input[type=submit]:hover {
    border-color: transparent;
}

button:active,
button:focus,
input[type=button]:active,
input[type=button]:focus,
input[type=reset]:active,
input[type=reset]:focus,
input[type=submit]:active,
input[type=submit]:focus {
    border-color: transparent;
}

input[type=text],
input[type=email],
input[type=url],
input[type=password],
input[type=search],
input[type=number],
input[type=tel],
input[type=range],
input[type=date],
input[type=month],
input[type=week],
input[type=time],
input[type=datetime],
input[type=datetime-local],
input[type=color],
textarea {
    border-radius: 5px;
    width: 100%;
    height: 60px;
    border: 1px solid var(--color-4);
    padding: 0 15px;
    background: var(--white);
}

input[type=text]:focus,
input[type=email]:focus,
input[type=url]:focus,
input[type=password]:focus,
input[type=search]:focus,
input[type=number]:focus,
input[type=tel]:focus,
input[type=range]:focus,
input[type=date]:focus,
input[type=month]:focus,
input[type=week]:focus,
input[type=time]:focus,
input[type=datetime]:focus,
input[type=datetime-local]:focus,
input[type=color]:focus,
textarea:focus {
    color: var(--text-heading-color);
    outline: none;
    box-shadow: none;
    border-color: var(--primary-color-1);
}

select {
    border: 1px solid var(--border-color-2);
}

textarea {
    width: 100%;
    height: 150px;
    padding-top: 15px;
}

button,
button:hover,
button:focus {
    box-shadow: none;
    border: none;
    outline: none;
}

/* Social */
.social {
    display: flex;
    align-items: center;
    gap: 15px;
}

.social a i {
    font-size: 15px;
    color: var(--white);
    transition: 0.4s;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.social a i:hover {
    border-color: var(--primary-color-1);
    background-color: var(--primary-color-1);
}

.mfp-close {
    background: var(--black) !important;
    width: 50px !important;
    height: 50px !important;
    text-align: center !important;
    line-height: 50px;
    padding: 0 !important;
    border-radius: 50%;
    margin-top: 15px;
    margin-right: -15px;
    outline: 2px solid var(--black) !important;
    border: 2px solid rgba(255, 255, 255, 0.3019607843) !important;
    opacity: 0.8;
}

/* Hedging CSS */
h1 {
    font-size: 64px;
    line-height: 1.18;
    padding: 0;
    margin: 0;
    color: var(--text-heading-color);
    font-family: var(--heading-font), serif;
    font-weight: 600;
}

h2 {
    font-size: 48px;
    line-height: 1.25;
    padding: 0;
    margin: 0;
    color: var(--text-heading-color);
    font-family: var(--heading-font), serif;
    font-weight: 600;
}

h3 {
    font-size: 32px;
    line-height: 1.25;
    padding: 0;
    margin: 0;
    color: var(--text-heading-color);
    font-family: var(--heading-font), serif;
    font-weight: 600;
}

h4 {
    font-size: 28px;
    line-height: 1.63;
    padding: 0;
    margin: 0;
    color: var(--text-heading-color);
    font-family: var(--heading-font), serif;
    font-weight: 600;
}

h5 {
    font-size: 24px;
    line-height: 1.5;
    padding: 0;
    margin: 0;
    color: var(--text-heading-color);
    font-family: var(--heading-font), serif;
    font-weight: 500;
}

h6 {
    font-size: 20px;
    line-height: 1.5;
    padding: 0;
    margin: 0;
    color: var(--text-heading-color);
    font-family: var(--heading-font), serif;
    font-weight: 500;
}

p {
    font-size: 16px;
    line-height: 1.75;
    padding: 0;
    margin: 0;
    color: var(--p-color);
}

.t-left {
    text-align: left;
}

.t-center {
    text-align: center;
}

.t-right {
    text-align: right;
}

@media (max-width: 1399px) {
    h2 {
        font-size: 45px;
        line-height: 55px;
    }
}

@media (max-width: 767px) {
    h2 {
        font-size: 38px;
        line-height: 50px;
    }
}

@media (max-width: 420px) {
    h2 {
        font-size: 28px;
        line-height: 41px;
    }

    h3 {
        font-size: 28px;
        line-height: 38px;
    }
}

@media (max-width: 359px) {
    h2 {
        font-size: 27px;
        line-height: 37px;
    }

    h3 {
        font-size: 24px;
        line-height: 34px;
    }

    h4 {
        font-size: 21px;
        line-height: 31px;
    }

    h5 {
        font-size: 20px;
        line-height: 30px;
    }

    h6 {
        font-size: 18px;
        line-height: 28px;
    }
}

p {
    text-transform: none;
}

span {
    display: inline-block;
}

/* Button And Title Styles CSS */

.btn-one,
.btn-two,
.btn-three,
.btn-four {
    background-color: var(--primary-color-1);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    font-size: 14px;
    line-height: 26px;
    padding: 17px 30px;
    text-align: center;
    font-weight: 500;
    z-index: 3;
    position: relative;
    transition: 0.4s;
    text-transform: none;
    overflow: hidden;
    border-radius: 50px;
}

.btn-one i,
.btn-two i,
.btn-three i,
.btn-four i {
    position: relative;
    top: 0;
    /* margin-left: 10px; */
    font-size: 16px;
    transition: 0.2s;
}

.btn-one::before,
.btn-two::before,
.btn-three::before,
.btn-four::before {
    content: "";
    width: 100%;
    height: 100%;
    background-color: #ffffff15;
    position: absolute;
    top: 0;
    z-index: -1;
    transition: ease-out 0.3s;
    border-radius: 50px;
    left: -100%;
}

.btn-one:hover,
.btn-two:hover,
.btn-three:hover,
.btn-four:hover {
    color: var(--white);
}

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

.btn-two:hover i,
.btn-three:hover i,
.btn-four:hover i {
    color: var(--color-7);
}

.btn-one:hover::before,
.btn-two:hover::before,
.btn-three:hover::before,
.btn-four:hover::before {
    left: 0;
}

.btn-two {
    background: var(--primary-color-2);
}

.btn-two::before {
    background-color: var(--color-3);
}

.btn-three {
    background: #FBC763;
    color: var(--color-7);
    font-weight: 500;
}

.btn-three::before {
    background-color: #ffffff15;
}

.btn-three:hover {
    border-color: var(--color-3);
    color: var(--color-7);
}

.btn-four {
    background: var(--primary-color-4);
    font-weight: 500;
}

.btn-four::before {
    background-color: var(--color-3);
}

.btn-four:hover {
    border-color: var(--color-3);
}

.simple-btn-1,
.simple-btn-2,
.simple-btn-3 {
    color: var(--primary-color-1);
    display: inline-block;
    font-size: 16px;
    line-height: 26px;
    font-weight: 700;
    font-family: var(--heading-font), serif;
    transition: 0.4s;
    text-transform: uppercase;
}

.simple-btn-1 i,
.simple-btn-2 i,
.simple-btn-3 i {
    position: relative;
    top: 0;
    margin-left: 15px;
    font-size: 13px;
}

.simple-btn-2 {
    color: var(--text-heading-color);
}

.simple-btn-2:hover {
    color: var(--primary-color-1);
}

.simple-btn-3 {
    color: var(--white);
}

.simple-btn-3:hover {
    color: var(--primary-color-1);
}

/* Progress Bar Animation */
@keyframes animateStripe {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(35px, 0);
    }
}

/* Scroll Top CSS */
.scroll-up {
    cursor: pointer;
    display: block;
    border-radius: 50px;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    position: fixed;
    right: 20px;
    bottom: 30px;
    height: 50px;
    width: 50px;
    transition: all 200ms linear;
}

.scroll-up::after {
    position: absolute;
    font-family: "Font Awesome 5 Pro", serif;
    content: "\f325";
    text-align: center;
    line-height: 50px;
    color: var(--primary-color-1);
    left: 0;
    top: 0;
    font-size: 18px;
    height: 50px;
    width: 50px;
    cursor: pointer;
    display: block;
    z-index: 1;
    transition: all 200ms linear;
}

.scroll-up.active-scroll {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-up svg path {
    fill: #FBC763;
}

.scroll-up svg.scroll-circle path {
    box-sizing: border-box;
    transition: all 200ms linear;
}

.swiper-slide {
    height: auto;
}

.style-two::after {
    color: var(--primary-color-2);
}

.style-two svg.scroll-circle path {
    stroke: var(--primary-color-2);
}

.style-three::after {
    color: #24291F;
}

.style-three svg.scroll-circle path {
    stroke: var(--primary-color-3);
}

.style-four::after {
    color: var(--primary-color-4);
}

.style-four svg.scroll-circle path {
    stroke: var(--primary-color-4);
}

/* Preloader CSS */
.loader {
    z-index: 9999999;
    position: fixed;
    width: 100%;
    height: 100%;
    background: var(--color-1);
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader-container, .loader-container:before, .loader-container:after {
    border-radius: 50%;
    width: 2.5em;
    height: 2.5em;
    animation-fill-mode: both;
    animation: bblFadInOut 1.8s infinite ease-in-out;
}

.loader-container {
    color: var(--primary-color-1);
    font-size: 7px;
    position: relative;
    text-indent: -9999em;
    transform: translateZ(0);
    animation-delay: -0.16s;
}

.loader-container:before,
.loader-container:after {
    content: "";
    position: absolute;
    top: 0;
}

.loader-container:before {
    left: -4.5em;
    animation-delay: -0.32s;
}

.loader-container:after {
    left: 4.5em;
}

@keyframes bblFadInOut {
    0%, 80%, 100% {
        box-shadow: 0 2.5em 0 -1.3em;
    }
    40% {
        box-shadow: 0 2.5em 0 0;
    }
}

/* Animation CSS */
.video {
    position: relative;
    text-align: center;
    display: inline-block;
    z-index: 4;
}

.video a {
    position: relative;
    color: var(--primary-color-2);
    font-size: 20px;
    z-index: 1;
    background: var(--white);
    width: 90px;
    height: 90px;
    line-height: 90px;
    border-radius: 50%;
    display: block;
}

.video-pulse::after, .video-pulse::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    border: 1px solid var(--white);
    opacity: 0.3;
    left: 0;
    top: 0;
    border-radius: 50%;
    animation-duration: 2.5s;
    animation-timing-function: linear;
    animation-name: video-animation;
    animation-iteration-count: infinite;
}

.video-pulse::before {
    animation-delay: 1s;
}

@keyframes video-animation {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.5);
    }
    100% {
        opacity: 0;
        transform: scale(2);
    }
}

/* Custom Animation */
.animate-y-axis {
    animation-name: y-axis;
    animation-duration: 11s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

@keyframes y-axis {
    0% {
        transform: translateY(-30px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(-30px);
    }
}

.animate-y-axis-slider {
    animation-name: y-axis-slider;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

@keyframes y-axis-slider {
    0% {
        transform: translateY(-40px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(-40px);
    }
}

/* Animation x-axis */
.animate-x-axis {
    animation-name: x-axis;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

@keyframes x-axis {
    0% {
        transform: translateX(-20px);
    }
    50% {
        transform: translateX(-10px);
    }
    100% {
        transform: translateX(-20px);
    }
}

/* Animation Rotate */
.animate-rotate {
    animation-name: rotate;
    animation-duration: 24s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Animate zoom-in-out-rotate */
.animate-zoom-in-out-rotate {
    animation-name: zoomInOut-rotate;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}

@keyframes zoomInOut-rotate {
    0% {
        transform: rotate(0deg) scale(0.7);
    }
    50% {
        transform: rotate(180deg) scale(1);
    }
    100% {
        transform: rotate(360deg) scale(0.7);
    }
}

/* Animate zoom-in-out */
.animate-zoom-in-out {
    animation-name: zoomInOut;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}

@keyframes zoomInOut {
    0% {
        transform: scale(0.9);
    }
    50% {
        transform: scale(1);
    }
    100% {
        transform: scale(0.9);
    }
}

.halfRotationAnimation {
    animation: halfRotationAnimation 5s infinite ease-in-out;
}

@keyframes halfRotationAnimation {
    0% {
        transform: rotate(-10deg);
    }
    50% {
        transform: rotate(-15deg);
    }
    100% {
        transform: rotate(-10deg);
    }
}

.swiper-button-prev::after {
    display: none;
}

.swiper-button-next::after {
    display: none;
}

.blob-animation {
    animation: blob-animation 15s linear infinite;
}

@keyframes blob-animation {
    0%, 100% {
        border-radius: 40% 60% 70% 30%/40% 40% 60% 50%;
    }
    34% {
        border-radius: 70% 30% 50% 50%/30% 30% 70% 70%;
    }
    67% {
        border-radius: 100% 60% 60% 100%/100% 100% 60% 60%;
    }
}

@media (min-width: 1024px) {
    .slide_box {
        margin-right: -420px;
    }
}

/* Space And Container CSS */
.custom__container {
    max-width: 1520px;
    margin: 0 auto;
    padding: 0 12px;
}

.auto__container {
    max-width: 1720px;
    margin: 0 auto;
    padding: 0 12px;
}

.mt-0 {
    margin-top: 0;
}

.mb-0 {
    margin-bottom: 0;
}

.ml-0 {
    margin-left: 0;
}

.mr-0 {
    margin-right: 0;
}

.pt-0 {
    padding-top: 0;
}

.pb-0 {
    padding-bottom: 0;
}

.pl-0 {
    padding-left: 0;
}

.pr-0 {
    padding-right: 0;
}

.mt-5 {
    margin-top: 5px;
}

.mb-5 {
    margin-bottom: 5px;
}

.ml-5 {
    margin-left: 5px;
}

.mr-5 {
    margin-right: 5px;
}

.pt-5 {
    padding-top: 5px;
}

.pb-5 {
    padding-bottom: 5px;
}

.pl-5 {
    padding-left: 5px;
}

.pr-5 {
    padding-right: 5px;
}

.mt-10 {
    margin-top: 10px;
}

.mb-10 {
    margin-bottom: 10px;
}

.ml-10 {
    margin-left: 10px;
}

.mr-10 {
    margin-right: 10px;
}

.pt-10 {
    padding-top: 10px;
}

.pb-10 {
    padding-bottom: 10px;
}

.pl-10 {
    padding-left: 10px;
}

.pr-10 {
    padding-right: 10px;
}

.mt-15 {
    margin-top: 15px;
}

.mb-15 {
    margin-bottom: 15px;
}

.ml-15 {
    margin-left: 15px;
}

.mr-15 {
    margin-right: 15px;
}

.pt-15 {
    padding-top: 15px;
}

.pb-15 {
    padding-bottom: 15px;
}

.pl-15 {
    padding-left: 15px;
}

.pr-15 {
    padding-right: 15px;
}

.mt-20 {
    margin-top: 20px;
}

.mb-20 {
    margin-bottom: 20px;
}

.ml-20 {
    margin-left: 20px;
}

.mr-20 {
    margin-right: 20px;
}

.pt-20 {
    padding-top: 20px;
}

.pb-20 {
    padding-bottom: 20px;
}

.pl-20 {
    padding-left: 20px;
}

.pr-20 {
    padding-right: 20px;
}

.mt-25 {
    margin-top: 25px;
}

.mb-25 {
    margin-bottom: 25px;
}

.ml-25 {
    margin-left: 25px;
}

.mr-25 {
    margin-right: 25px;
}

.pt-25 {
    padding-top: 25px;
}

.pb-25 {
    padding-bottom: 25px;
}

.pl-25 {
    padding-left: 25px;
}

.pr-25 {
    padding-right: 25px;
}

.mt-30 {
    margin-top: 30px;
}

.mb-30 {
    margin-bottom: 30px;
}

.ml-30 {
    margin-left: 30px;
}

.mr-30 {
    margin-right: 30px;
}

.pt-30 {
    padding-top: 30px;
}

.pb-30 {
    padding-bottom: 30px;
}

.pl-30 {
    padding-left: 30px;
}

.pr-30 {
    padding-right: 30px;
}

.mt-35 {
    margin-top: 35px;
}

.mb-35 {
    margin-bottom: 35px;
}

.ml-35 {
    margin-left: 35px;
}

.mr-35 {
    margin-right: 35px;
}

.pt-35 {
    padding-top: 35px;
}

.pb-35 {
    padding-bottom: 35px;
}

.pl-35 {
    padding-left: 35px;
}

.pr-35 {
    padding-right: 35px;
}

.mt-40 {
    margin-top: 40px;
}

.mb-40 {
    margin-bottom: 40px;
}

.ml-40 {
    margin-left: 40px;
}

.mr-40 {
    margin-right: 40px;
}

.pt-40 {
    padding-top: 40px;
}

.pb-40 {
    padding-bottom: 40px;
}

.pl-40 {
    padding-left: 40px;
}

.pr-40 {
    padding-right: 40px;
}

.mt-45 {
    margin-top: 45px;
}

.mb-45 {
    margin-bottom: 45px;
}

.ml-45 {
    margin-left: 45px;
}

.mr-45 {
    margin-right: 45px;
}

.pt-45 {
    padding-top: 45px;
}

.pb-45 {
    padding-bottom: 45px;
}

.pl-45 {
    padding-left: 45px;
}

.pr-45 {
    padding-right: 45px;
}

.mt-50 {
    margin-top: 50px;
}

.mb-50 {
    margin-bottom: 50px;
}

.ml-50 {
    margin-left: 50px;
}

.mr-50 {
    margin-right: 50px;
}

.pt-50 {
    padding-top: 50px;
}

.pb-50 {
    padding-bottom: 50px;
}

.pl-50 {
    padding-left: 50px;
}

.pr-50 {
    padding-right: 50px;
}

.mt-55 {
    margin-top: 55px;
}

.mb-55 {
    margin-bottom: 55px;
}

.ml-55 {
    margin-left: 55px;
}

.mr-55 {
    margin-right: 55px;
}

.pt-55 {
    padding-top: 55px;
}

.pb-55 {
    padding-bottom: 55px;
}

.pl-55 {
    padding-left: 55px;
}

.pr-55 {
    padding-right: 55px;
}

.mt-60 {
    margin-top: 60px;
}

.mb-60 {
    margin-bottom: 60px;
}

.ml-60 {
    margin-left: 60px;
}

.mr-60 {
    margin-right: 60px;
}

.pt-60 {
    padding-top: 60px;
}

.pb-60 {
    padding-bottom: 60px;
}

.pl-60 {
    padding-left: 60px;
}

.pr-60 {
    padding-right: 60px;
}

.mt-65 {
    margin-top: 65px;
}

.mb-65 {
    margin-bottom: 65px;
}

.ml-65 {
    margin-left: 65px;
}

.mr-65 {
    margin-right: 65px;
}

.pt-65 {
    padding-top: 65px;
}

.pb-65 {
    padding-bottom: 65px;
}

.pl-65 {
    padding-left: 65px;
}

.pr-65 {
    padding-right: 65px;
}

.mt-70 {
    margin-top: 70px;
}

.mb-70 {
    margin-bottom: 70px;
}

.ml-70 {
    margin-left: 70px;
}

.mr-70 {
    margin-right: 70px;
}

.pt-70 {
    padding-top: 70px;
}

.pb-70 {
    padding-bottom: 70px;
}

.pl-70 {
    padding-left: 70px;
}

.pr-70 {
    padding-right: 70px;
}

.mt-75 {
    margin-top: 75px;
}

.mb-75 {
    margin-bottom: 75px;
}

.ml-75 {
    margin-left: 75px;
}

.mr-75 {
    margin-right: 75px;
}

.pt-75 {
    padding-top: 75px;
}

.pb-75 {
    padding-bottom: 75px;
}

.pl-75 {
    padding-left: 75px;
}

.pr-75 {
    padding-right: 75px;
}

.mt-80 {
    margin-top: 80px;
}

.mb-80 {
    margin-bottom: 80px;
}

.ml-80 {
    margin-left: 80px;
}

.mr-80 {
    margin-right: 80px;
}

.pt-80 {
    padding-top: 80px;
}

.pb-80 {
    padding-bottom: 80px;
}

.pl-80 {
    padding-left: 80px;
}

.pr-80 {
    padding-right: 80px;
}

.mt-85 {
    margin-top: 85px;
}

.mb-85 {
    margin-bottom: 85px;
}

.ml-85 {
    margin-left: 85px;
}

.mr-85 {
    margin-right: 85px;
}

.pt-85 {
    padding-top: 85px;
}

.pb-85 {
    padding-bottom: 85px;
}

.pl-85 {
    padding-left: 85px;
}

.pr-85 {
    padding-right: 85px;
}

.mt-90 {
    margin-top: 90px;
}

.mb-90 {
    margin-bottom: 90px;
}

.ml-90 {
    margin-left: 90px;
}

.mr-90 {
    margin-right: 90px;
}

.pt-90 {
    padding-top: 90px;
}

.pb-90 {
    padding-bottom: 90px;
}

.pl-90 {
    padding-left: 90px;
}

.pr-90 {
    padding-right: 90px;
}

.mt-95 {
    margin-top: 95px;
}

.mb-95 {
    margin-bottom: 95px;
}

.ml-95 {
    margin-left: 95px;
}

.mr-95 {
    margin-right: 95px;
}

.pt-95 {
    padding-top: 95px;
}

.pb-95 {
    padding-bottom: 95px;
}

.pl-95 {
    padding-left: 95px;
}

.pr-95 {
    padding-right: 95px;
}

.mt-100 {
    margin-top: 100px;
}

.mb-100 {
    margin-bottom: 100px;
}

.ml-100 {
    margin-left: 100px;
}

.mr-100 {
    margin-right: 100px;
}

.pt-100 {
    padding-top: 100px;
}

.pb-100 {
    padding-bottom: 100px;
}

.pl-100 {
    padding-left: 100px;
}

.pr-100 {
    padding-right: 100px;
}

.mt-105 {
    margin-top: 105px;
}

.mb-105 {
    margin-bottom: 105px;
}

.ml-105 {
    margin-left: 105px;
}

.mr-105 {
    margin-right: 105px;
}

.pt-105 {
    padding-top: 105px;
}

.pb-105 {
    padding-bottom: 105px;
}

.pl-105 {
    padding-left: 105px;
}

.pr-105 {
    padding-right: 105px;
}

.mt-110 {
    margin-top: 110px;
}

.mb-110 {
    margin-bottom: 110px;
}

.ml-110 {
    margin-left: 110px;
}

.mr-110 {
    margin-right: 110px;
}

.pt-110 {
    padding-top: 110px;
}

.pb-110 {
    padding-bottom: 110px;
}

.pl-110 {
    padding-left: 110px;
}

.pr-110 {
    padding-right: 110px;
}

.mt-115 {
    margin-top: 115px;
}

.mb-115 {
    margin-bottom: 115px;
}

.ml-115 {
    margin-left: 115px;
}

.mr-115 {
    margin-right: 115px;
}

.pt-115 {
    padding-top: 115px;
}

.pb-115 {
    padding-bottom: 115px;
}

.pl-115 {
    padding-left: 115px;
}

.pr-115 {
    padding-right: 115px;
}

.mt-120 {
    margin-top: 120px;
}

.mb-120 {
    margin-bottom: 120px;
}

.ml-120 {
    margin-left: 120px;
}

.mr-120 {
    margin-right: 120px;
}

.pt-120 {
    padding-top: 120px;
}

.pb-120 {
    padding-bottom: 120px;
}

.pl-120 {
    padding-left: 120px;
}

.pr-120 {
    padding-right: 120px;
}

.display-n {
    display: none !important;
}

@media (max-width: 1199px) {
    .xl-pb-0 {
        padding-bottom: 0;
    }

    .xl-pl-0 {
        padding-left: 0;
    }

    .xl-pr-0 {
        padding-right: 0;
    }

    .xl-mb-0 {
        margin-bottom: 0;
    }

    .xl-ml-0 {
        margin-left: 0;
    }

    .xl-mr-0 {
        margin-right: 0;
    }

    .xl-pb-5 {
        padding-bottom: 5px;
    }

    .xl-pl-5 {
        padding-left: 5px;
    }

    .xl-pr-5 {
        padding-right: 5px;
    }

    .xl-mb-5 {
        margin-bottom: 5px;
    }

    .xl-ml-5 {
        margin-left: 5px;
    }

    .xl-mr-5 {
        margin-right: 5px;
    }

    .xl-pb-10 {
        padding-bottom: 10px;
    }

    .xl-pl-10 {
        padding-left: 10px;
    }

    .xl-pr-10 {
        padding-right: 10px;
    }

    .xl-mb-10 {
        margin-bottom: 10px;
    }

    .xl-ml-10 {
        margin-left: 10px;
    }

    .xl-mr-10 {
        margin-right: 10px;
    }

    .xl-pb-15 {
        padding-bottom: 15px;
    }

    .xl-pl-15 {
        padding-left: 15px;
    }

    .xl-pr-15 {
        padding-right: 15px;
    }

    .xl-mb-15 {
        margin-bottom: 15px;
    }

    .xl-ml-15 {
        margin-left: 15px;
    }

    .xl-mr-15 {
        margin-right: 15px;
    }

    .xl-pb-20 {
        padding-bottom: 20px;
    }

    .xl-pl-20 {
        padding-left: 20px;
    }

    .xl-pr-20 {
        padding-right: 20px;
    }

    .xl-mb-20 {
        margin-bottom: 20px;
    }

    .xl-ml-20 {
        margin-left: 20px;
    }

    .xl-mr-20 {
        margin-right: 20px;
    }

    .xl-pb-25 {
        padding-bottom: 25px;
    }

    .xl-pl-25 {
        padding-left: 25px;
    }

    .xl-pr-25 {
        padding-right: 25px;
    }

    .xl-mb-25 {
        margin-bottom: 25px;
    }

    .xl-ml-25 {
        margin-left: 25px;
    }

    .xl-mr-25 {
        margin-right: 25px;
    }

    .xl-pb-30 {
        padding-bottom: 30px;
    }

    .xl-pl-30 {
        padding-left: 30px;
    }

    .xl-pr-30 {
        padding-right: 30px;
    }

    .xl-mb-30 {
        margin-bottom: 30px;
    }

    .xl-ml-30 {
        margin-left: 30px;
    }

    .xl-mr-30 {
        margin-right: 30px;
    }

    .xl-pb-35 {
        padding-bottom: 35px;
    }

    .xl-pl-35 {
        padding-left: 35px;
    }

    .xl-pr-35 {
        padding-right: 35px;
    }

    .xl-mb-35 {
        margin-bottom: 35px;
    }

    .xl-ml-35 {
        margin-left: 35px;
    }

    .xl-mr-35 {
        margin-right: 35px;
    }

    .xl-pb-40 {
        padding-bottom: 40px;
    }

    .xl-pl-40 {
        padding-left: 40px;
    }

    .xl-pr-40 {
        padding-right: 40px;
    }

    .xl-mb-40 {
        margin-bottom: 40px;
    }

    .xl-ml-40 {
        margin-left: 40px;
    }

    .xl-mr-40 {
        margin-right: 40px;
    }

    .xl-pb-45 {
        padding-bottom: 45px;
    }

    .xl-pl-45 {
        padding-left: 45px;
    }

    .xl-pr-45 {
        padding-right: 45px;
    }

    .xl-mb-45 {
        margin-bottom: 45px;
    }

    .xl-ml-45 {
        margin-left: 45px;
    }

    .xl-mr-45 {
        margin-right: 45px;
    }

    .xl-pb-50 {
        padding-bottom: 50px;
    }

    .xl-pl-50 {
        padding-left: 50px;
    }

    .xl-pr-50 {
        padding-right: 50px;
    }

    .xl-mb-50 {
        margin-bottom: 50px;
    }

    .xl-ml-50 {
        margin-left: 50px;
    }

    .xl-mr-50 {
        margin-right: 50px;
    }

    .xl-pb-55 {
        padding-bottom: 55px;
    }

    .xl-pl-55 {
        padding-left: 55px;
    }

    .xl-pr-55 {
        padding-right: 55px;
    }

    .xl-mb-55 {
        margin-bottom: 55px;
    }

    .xl-ml-55 {
        margin-left: 55px;
    }

    .xl-mr-55 {
        margin-right: 55px;
    }

    .xl-pb-60 {
        padding-bottom: 60px;
    }

    .xl-pl-60 {
        padding-left: 60px;
    }

    .xl-pr-60 {
        padding-right: 60px;
    }

    .xl-mb-60 {
        margin-bottom: 60px;
    }

    .xl-ml-60 {
        margin-left: 60px;
    }

    .xl-mr-60 {
        margin-right: 60px;
    }

    .xl-pb-65 {
        padding-bottom: 65px;
    }

    .xl-pl-65 {
        padding-left: 65px;
    }

    .xl-pr-65 {
        padding-right: 65px;
    }

    .xl-mb-65 {
        margin-bottom: 65px;
    }

    .xl-ml-65 {
        margin-left: 65px;
    }

    .xl-mr-65 {
        margin-right: 65px;
    }

    .xl-pb-70 {
        padding-bottom: 70px;
    }

    .xl-pl-70 {
        padding-left: 70px;
    }

    .xl-pr-70 {
        padding-right: 70px;
    }

    .xl-mb-70 {
        margin-bottom: 70px;
    }

    .xl-ml-70 {
        margin-left: 70px;
    }

    .xl-mr-70 {
        margin-right: 70px;
    }

    .xl-pb-75 {
        padding-bottom: 75px;
    }

    .xl-pl-75 {
        padding-left: 75px;
    }

    .xl-pr-75 {
        padding-right: 75px;
    }

    .xl-mb-75 {
        margin-bottom: 75px;
    }

    .xl-ml-75 {
        margin-left: 75px;
    }

    .xl-mr-75 {
        margin-right: 75px;
    }

    .xl-pb-80 {
        padding-bottom: 80px;
    }

    .xl-pl-80 {
        padding-left: 80px;
    }

    .xl-pr-80 {
        padding-right: 80px;
    }

    .xl-mb-80 {
        margin-bottom: 80px;
    }

    .xl-ml-80 {
        margin-left: 80px;
    }

    .xl-mr-80 {
        margin-right: 80px;
    }

    .xl-pb-85 {
        padding-bottom: 85px;
    }

    .xl-pl-85 {
        padding-left: 85px;
    }

    .xl-pr-85 {
        padding-right: 85px;
    }

    .xl-mb-85 {
        margin-bottom: 85px;
    }

    .xl-ml-85 {
        margin-left: 85px;
    }

    .xl-mr-85 {
        margin-right: 85px;
    }

    .xl-pb-90 {
        padding-bottom: 90px;
    }

    .xl-pl-90 {
        padding-left: 90px;
    }

    .xl-pr-90 {
        padding-right: 90px;
    }

    .xl-mb-90 {
        margin-bottom: 90px;
    }

    .xl-ml-90 {
        margin-left: 90px;
    }

    .xl-mr-90 {
        margin-right: 90px;
    }

    .xl-pb-95 {
        padding-bottom: 95px;
    }

    .xl-pl-95 {
        padding-left: 95px;
    }

    .xl-pr-95 {
        padding-right: 95px;
    }

    .xl-mb-95 {
        margin-bottom: 95px;
    }

    .xl-ml-95 {
        margin-left: 95px;
    }

    .xl-mr-95 {
        margin-right: 95px;
    }

    .xl-t-left {
        text-align: left;
    }

    .xl-t-center {
        text-align: center;
    }

    .xl-t-right {
        text-align: right;
    }

    .xl-display-n {
        display: none !important;
    }

    .xl-display-b {
        display: block !important;
    }
}

@media (max-width: 991px) {
    .lg-mb-0 {
        margin-bottom: 0;
    }

    .lg-mt-0 {
        margin-top: 0;
    }

    .lg-ml-0 {
        margin-left: 0;
    }

    .lg-pt-0 {
        padding-top: 0;
    }

    .lg-pb-0 {
        padding-bottom: 0;
    }

    .lg-pl-0 {
        padding-left: 0;
    }

    .lg-pr-0 {
        padding-right: 0;
    }

    .lg-mb-5 {
        margin-bottom: 5px;
    }

    .lg-mt-5 {
        margin-top: 5px;
    }

    .lg-ml-5 {
        margin-left: 5px;
    }

    .lg-pt-5 {
        padding-top: 5px;
    }

    .lg-pb-5 {
        padding-bottom: 5px;
    }

    .lg-pl-5 {
        padding-left: 5px;
    }

    .lg-pr-5 {
        padding-right: 5px;
    }

    .lg-mb-10 {
        margin-bottom: 10px;
    }

    .lg-mt-10 {
        margin-top: 10px;
    }

    .lg-ml-10 {
        margin-left: 10px;
    }

    .lg-pt-10 {
        padding-top: 10px;
    }

    .lg-pb-10 {
        padding-bottom: 10px;
    }

    .lg-pl-10 {
        padding-left: 10px;
    }

    .lg-pr-10 {
        padding-right: 10px;
    }

    .lg-mb-15 {
        margin-bottom: 15px;
    }

    .lg-mt-15 {
        margin-top: 15px;
    }

    .lg-ml-15 {
        margin-left: 15px;
    }

    .lg-pt-15 {
        padding-top: 15px;
    }

    .lg-pb-15 {
        padding-bottom: 15px;
    }

    .lg-pl-15 {
        padding-left: 15px;
    }

    .lg-pr-15 {
        padding-right: 15px;
    }

    .lg-mb-20 {
        margin-bottom: 20px;
    }

    .lg-mt-20 {
        margin-top: 20px;
    }

    .lg-ml-20 {
        margin-left: 20px;
    }

    .lg-pt-20 {
        padding-top: 20px;
    }

    .lg-pb-20 {
        padding-bottom: 20px;
    }

    .lg-pl-20 {
        padding-left: 20px;
    }

    .lg-pr-20 {
        padding-right: 20px;
    }

    .lg-mb-25 {
        margin-bottom: 25px;
    }

    .lg-mt-25 {
        margin-top: 25px;
    }

    .lg-ml-25 {
        margin-left: 25px;
    }

    .lg-pt-25 {
        padding-top: 25px;
    }

    .lg-pb-25 {
        padding-bottom: 25px;
    }

    .lg-pl-25 {
        padding-left: 25px;
    }

    .lg-pr-25 {
        padding-right: 25px;
    }

    .lg-mb-30 {
        margin-bottom: 30px;
    }

    .lg-mt-30 {
        margin-top: 30px;
    }

    .lg-ml-30 {
        margin-left: 30px;
    }

    .lg-pt-30 {
        padding-top: 30px;
    }

    .lg-pb-30 {
        padding-bottom: 30px;
    }

    .lg-pl-30 {
        padding-left: 30px;
    }

    .lg-pr-30 {
        padding-right: 30px;
    }

    .lg-mb-35 {
        margin-bottom: 35px;
    }

    .lg-mt-35 {
        margin-top: 35px;
    }

    .lg-ml-35 {
        margin-left: 35px;
    }

    .lg-pt-35 {
        padding-top: 35px;
    }

    .lg-pb-35 {
        padding-bottom: 35px;
    }

    .lg-pl-35 {
        padding-left: 35px;
    }

    .lg-pr-35 {
        padding-right: 35px;
    }

    .lg-mb-40 {
        margin-bottom: 40px;
    }

    .lg-mt-40 {
        margin-top: 40px;
    }

    .lg-ml-40 {
        margin-left: 40px;
    }

    .lg-pt-40 {
        padding-top: 40px;
    }

    .lg-pb-40 {
        padding-bottom: 40px;
    }

    .lg-pl-40 {
        padding-left: 40px;
    }

    .lg-pr-40 {
        padding-right: 40px;
    }

    .lg-mb-45 {
        margin-bottom: 45px;
    }

    .lg-mt-45 {
        margin-top: 45px;
    }

    .lg-ml-45 {
        margin-left: 45px;
    }

    .lg-pt-45 {
        padding-top: 45px;
    }

    .lg-pb-45 {
        padding-bottom: 45px;
    }

    .lg-pl-45 {
        padding-left: 45px;
    }

    .lg-pr-45 {
        padding-right: 45px;
    }

    .lg-mb-50 {
        margin-bottom: 50px;
    }

    .lg-mt-50 {
        margin-top: 50px;
    }

    .lg-ml-50 {
        margin-left: 50px;
    }

    .lg-pt-50 {
        padding-top: 50px;
    }

    .lg-pb-50 {
        padding-bottom: 50px;
    }

    .lg-pl-50 {
        padding-left: 50px;
    }

    .lg-pr-50 {
        padding-right: 50px;
    }

    .lg-mb-55 {
        margin-bottom: 55px;
    }

    .lg-mt-55 {
        margin-top: 55px;
    }

    .lg-ml-55 {
        margin-left: 55px;
    }

    .lg-pt-55 {
        padding-top: 55px;
    }

    .lg-pb-55 {
        padding-bottom: 55px;
    }

    .lg-pl-55 {
        padding-left: 55px;
    }

    .lg-pr-55 {
        padding-right: 55px;
    }

    .lg-mb-60 {
        margin-bottom: 60px;
    }

    .lg-mt-60 {
        margin-top: 60px;
    }

    .lg-ml-60 {
        margin-left: 60px;
    }

    .lg-pt-60 {
        padding-top: 60px;
    }

    .lg-pb-60 {
        padding-bottom: 60px;
    }

    .lg-pl-60 {
        padding-left: 60px;
    }

    .lg-pr-60 {
        padding-right: 60px;
    }

    .lg-mb-65 {
        margin-bottom: 65px;
    }

    .lg-mt-65 {
        margin-top: 65px;
    }

    .lg-ml-65 {
        margin-left: 65px;
    }

    .lg-pt-65 {
        padding-top: 65px;
    }

    .lg-pb-65 {
        padding-bottom: 65px;
    }

    .lg-pl-65 {
        padding-left: 65px;
    }

    .lg-pr-65 {
        padding-right: 65px;
    }

    .lg-mb-70 {
        margin-bottom: 70px;
    }

    .lg-mt-70 {
        margin-top: 70px;
    }

    .lg-ml-70 {
        margin-left: 70px;
    }

    .lg-pt-70 {
        padding-top: 70px;
    }

    .lg-pb-70 {
        padding-bottom: 70px;
    }

    .lg-pl-70 {
        padding-left: 70px;
    }

    .lg-pr-70 {
        padding-right: 70px;
    }

    .lg-t-left {
        text-align: left;
    }

    .lg-t-center {
        text-align: center;
    }

    .lg-t-right {
        text-align: right;
    }

    .lg-display-n {
        display: none !important;
    }

    .lg-display-b {
        display: block !important;
    }
}

@media (max-width: 767px) {
    .md-mb-0 {
        margin-bottom: 0;
    }

    .md-mt-0 {
        margin-top: 0;
    }

    .md-pt-0 {
        padding-top: 0;
    }

    .md-pb-0 {
        padding-bottom: 0;
    }

    .md-pl-0 {
        padding-left: 0;
    }

    .md-pr-0 {
        padding-right: 0;
    }

    .md-mb-5 {
        margin-bottom: 5px;
    }

    .md-mt-5 {
        margin-top: 5px;
    }

    .md-pt-5 {
        padding-top: 5px;
    }

    .md-pb-5 {
        padding-bottom: 5px;
    }

    .md-pl-5 {
        padding-left: 5px;
    }

    .md-pr-5 {
        padding-right: 5px;
    }

    .md-mb-10 {
        margin-bottom: 10px;
    }

    .md-mt-10 {
        margin-top: 10px;
    }

    .md-pt-10 {
        padding-top: 10px;
    }

    .md-pb-10 {
        padding-bottom: 10px;
    }

    .md-pl-10 {
        padding-left: 10px;
    }

    .md-pr-10 {
        padding-right: 10px;
    }

    .md-mb-15 {
        margin-bottom: 15px;
    }

    .md-mt-15 {
        margin-top: 15px;
    }

    .md-pt-15 {
        padding-top: 15px;
    }

    .md-pb-15 {
        padding-bottom: 15px;
    }

    .md-pl-15 {
        padding-left: 15px;
    }

    .md-pr-15 {
        padding-right: 15px;
    }

    .md-mb-20 {
        margin-bottom: 20px;
    }

    .md-mt-20 {
        margin-top: 20px;
    }

    .md-pt-20 {
        padding-top: 20px;
    }

    .md-pb-20 {
        padding-bottom: 20px;
    }

    .md-pl-20 {
        padding-left: 20px;
    }

    .md-pr-20 {
        padding-right: 20px;
    }

    .md-mb-25 {
        margin-bottom: 25px;
    }

    .md-mt-25 {
        margin-top: 25px;
    }

    .md-pt-25 {
        padding-top: 25px;
    }

    .md-pb-25 {
        padding-bottom: 25px;
    }

    .md-pl-25 {
        padding-left: 25px;
    }

    .md-pr-25 {
        padding-right: 25px;
    }

    .md-mb-30 {
        margin-bottom: 30px;
    }

    .md-mt-30 {
        margin-top: 30px;
    }

    .md-pt-30 {
        padding-top: 30px;
    }

    .md-pb-30 {
        padding-bottom: 30px;
    }

    .md-pl-30 {
        padding-left: 30px;
    }

    .md-pr-30 {
        padding-right: 30px;
    }

    .md-mb-35 {
        margin-bottom: 35px;
    }

    .md-mt-35 {
        margin-top: 35px;
    }

    .md-pt-35 {
        padding-top: 35px;
    }

    .md-pb-35 {
        padding-bottom: 35px;
    }

    .md-pl-35 {
        padding-left: 35px;
    }

    .md-pr-35 {
        padding-right: 35px;
    }

    .md-mb-40 {
        margin-bottom: 40px;
    }

    .md-mt-40 {
        margin-top: 40px;
    }

    .md-pt-40 {
        padding-top: 40px;
    }

    .md-pb-40 {
        padding-bottom: 40px;
    }

    .md-pl-40 {
        padding-left: 40px;
    }

    .md-pr-40 {
        padding-right: 40px;
    }

    .md-mb-45 {
        margin-bottom: 45px;
    }

    .md-mt-45 {
        margin-top: 45px;
    }

    .md-pt-45 {
        padding-top: 45px;
    }

    .md-pb-45 {
        padding-bottom: 45px;
    }

    .md-pl-45 {
        padding-left: 45px;
    }

    .md-pr-45 {
        padding-right: 45px;
    }

    .md-t-left {
        text-align: left;
    }

    .md-t-center {
        text-align: center;
    }

    .md-t-right {
        text-align: right;
    }

    .md-display-n {
        display: none !important;
    }

    .md-display-b {
        display: block !important;
    }
}

@media (max-width: 575px) {
    .sm-mb-0 {
        margin-bottom: 0;
    }

    .sm-mt-0 {
        margin-top: 0;
    }

    .sm-ml-0 {
        margin-left: 0;
    }

    .sm-pt-0 {
        padding-top: 0;
    }

    .sm-pb-0 {
        padding-bottom: 0;
    }

    .sm-pl-0 {
        padding-left: 0;
    }

    .sm-pr-0 {
        padding-right: 0;
    }

    .sm-mb-5 {
        margin-bottom: 5px;
    }

    .sm-mt-5 {
        margin-top: 5px;
    }

    .sm-ml-5 {
        margin-left: 5px;
    }

    .sm-pt-5 {
        padding-top: 5px;
    }

    .sm-pb-5 {
        padding-bottom: 5px;
    }

    .sm-pl-5 {
        padding-left: 5px;
    }

    .sm-pr-5 {
        padding-right: 5px;
    }

    .sm-mb-10 {
        margin-bottom: 10px;
    }

    .sm-mt-10 {
        margin-top: 10px;
    }

    .sm-ml-10 {
        margin-left: 10px;
    }

    .sm-pt-10 {
        padding-top: 10px;
    }

    .sm-pb-10 {
        padding-bottom: 10px;
    }

    .sm-pl-10 {
        padding-left: 10px;
    }

    .sm-pr-10 {
        padding-right: 10px;
    }

    .sm-mb-15 {
        margin-bottom: 15px;
    }

    .sm-mt-15 {
        margin-top: 15px;
    }

    .sm-ml-15 {
        margin-left: 15px;
    }

    .sm-pt-15 {
        padding-top: 15px;
    }

    .sm-pb-15 {
        padding-bottom: 15px;
    }

    .sm-pl-15 {
        padding-left: 15px;
    }

    .sm-pr-15 {
        padding-right: 15px;
    }

    .sm-mb-20 {
        margin-bottom: 20px;
    }

    .sm-mt-20 {
        margin-top: 20px;
    }

    .sm-ml-20 {
        margin-left: 20px;
    }

    .sm-pt-20 {
        padding-top: 20px;
    }

    .sm-pb-20 {
        padding-bottom: 20px;
    }

    .sm-pl-20 {
        padding-left: 20px;
    }

    .sm-pr-20 {
        padding-right: 20px;
    }

    .sm-mb-25 {
        margin-bottom: 25px;
    }

    .sm-mt-25 {
        margin-top: 25px;
    }

    .sm-ml-25 {
        margin-left: 25px;
    }

    .sm-pt-25 {
        padding-top: 25px;
    }

    .sm-pb-25 {
        padding-bottom: 25px;
    }

    .sm-pl-25 {
        padding-left: 25px;
    }

    .sm-pr-25 {
        padding-right: 25px;
    }

    .sm-mb-30 {
        margin-bottom: 30px;
    }

    .sm-mt-30 {
        margin-top: 30px;
    }

    .sm-ml-30 {
        margin-left: 30px;
    }

    .sm-pt-30 {
        padding-top: 30px;
    }

    .sm-pb-30 {
        padding-bottom: 30px;
    }

    .sm-pl-30 {
        padding-left: 30px;
    }

    .sm-pr-30 {
        padding-right: 30px;
    }

    .sm-mb-35 {
        margin-bottom: 35px;
    }

    .sm-mt-35 {
        margin-top: 35px;
    }

    .sm-ml-35 {
        margin-left: 35px;
    }

    .sm-pt-35 {
        padding-top: 35px;
    }

    .sm-pb-35 {
        padding-bottom: 35px;
    }

    .sm-pl-35 {
        padding-left: 35px;
    }

    .sm-pr-35 {
        padding-right: 35px;
    }

    .sm-mb-40 {
        margin-bottom: 40px;
    }

    .sm-mt-40 {
        margin-top: 40px;
    }

    .sm-ml-40 {
        margin-left: 40px;
    }

    .sm-pt-40 {
        padding-top: 40px;
    }

    .sm-pb-40 {
        padding-bottom: 40px;
    }

    .sm-pl-40 {
        padding-left: 40px;
    }

    .sm-pr-40 {
        padding-right: 40px;
    }

    .sm-mb-45 {
        margin-bottom: 45px;
    }

    .sm-mt-45 {
        margin-top: 45px;
    }

    .sm-ml-45 {
        margin-left: 45px;
    }

    .sm-pt-45 {
        padding-top: 45px;
    }

    .sm-pb-45 {
        padding-bottom: 45px;
    }

    .sm-pl-45 {
        padding-left: 45px;
    }

    .sm-pr-45 {
        padding-right: 45px;
    }

    .sm-mb-50 {
        margin-bottom: 50px;
    }

    .sm-mt-50 {
        margin-top: 50px;
    }

    .sm-ml-50 {
        margin-left: 50px;
    }

    .sm-pt-50 {
        padding-top: 50px;
    }

    .sm-pb-50 {
        padding-bottom: 50px;
    }

    .sm-pl-50 {
        padding-left: 50px;
    }

    .sm-pr-50 {
        padding-right: 50px;
    }

    .sm-mb-55 {
        margin-bottom: 55px;
    }

    .sm-mt-55 {
        margin-top: 55px;
    }

    .sm-ml-55 {
        margin-left: 55px;
    }

    .sm-pt-55 {
        padding-top: 55px;
    }

    .sm-pb-55 {
        padding-bottom: 55px;
    }

    .sm-pl-55 {
        padding-left: 55px;
    }

    .sm-pr-55 {
        padding-right: 55px;
    }

    .sm-t-left {
        text-align: left;
    }

    .sm-t-center {
        text-align: center;
    }

    .sm-t-right {
        text-align: right;
    }

    .sm-display-n {
        display: none !important;
    }

    .sm-display-b {
        display: block !important;
    }
}

/* Menu Bar Sticky CSS */
.header__sticky {
    position: relative;
    transition: all 0.3s ease;
}

.header__sticky-sticky-menu {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: var(--white);
    box-shadow: var(--box-shadow-1) !important;
    display: block;
}

/* menubar quando sticky */
.header__sticky-sticky-menu .header__area-menubar {
    padding: 0;
    box-shadow: none !important;
}

/* Menu Bar CSS */
.header__area {
    padding: 0 30px;
    position: absolute;
    left: 0;
    right: 0;
    z-index: 999;
    /* Header Two Style */
    /* Header Three Style */
    /* Header Four Style */
}

.header__area-menubar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 0 25px;
    background-color: var(--white);
    border-radius: 0 0 5px 5px;
}

.header__area-menubar-left-logo a {
    display: inline-block;
}

.header__area-menubar-left-logo a img {
    max-width: 255px;
    position: relative;
    z-index: 9999;
}

.header__area-menubar-center-menu ul {
    padding: 0;
    margin: 0;
}

.header__area-menubar-center-menu ul li {
    display: inline-block;
    position: relative;
    list-style: none;
}

.header__area-menubar-center-menu ul li:hover > a {
    color: var(--primary-color-1);
}

.header__area-menubar-center-menu ul li:hover > a i {
    transform: rotate(-180deg);
}

.header__area-menubar-center-menu ul li a {
    color: #24291F;
    display: block;
    font-size: 14px;
    line-height: 26px;
    transition: all 0.4s ease-out 0s;
    padding: 32px 17px;
    font-weight: 600;
}

.header__area-menubar-center-menu ul li:hover > .sub-menu {
    transform: scale(1, 1);
    opacity: 1;
    visibility: visible;
}

.header__area-menubar-center-menu ul li .sub-menu {
    position: absolute;
    background: var(--white);
    min-width: 240px;
    transition: all 0.3s ease-out 0s;
    top: 100%;
    opacity: 0;
    box-shadow: var(--box-shadow-1);
    visibility: hidden;
    z-index: 99;
    text-align: left;
    transform: scale(1, 0);
    transform-origin: 0 0;
    border-top: 2px solid var(--primary-color-1);
}

.header__area-menubar-center-menu ul li .sub-menu li {
    display: block;
    margin: 0;
    border-bottom: 1px solid var(--border-color-2);
    position: relative;
}

.header__area-menubar-center-menu ul li .sub-menu li:hover {
    color: #FBC763 !important;
}

.header__area-menubar-center-menu ul li .sub-menu li::after {
    position: absolute;
    content: "";
    background: var(--primary-color-1);
    width: 2px;
    transition: 0.4s;
    height: 100%;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
}

.header__area-menubar-center-menu ul li .sub-menu li a {
    color: var(--text-heading-color) !important;
    padding: 12px 20px;
    transition: all 0.4s ease-out 0s;
    font-size: 14px;
    text-transform: capitalize;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header__area-menubar-center-menu ul li .sub-menu li .sub-menu {
    left: 100%;
    top: -2px;
}

.header__area-menubar-center-menu ul li .sub-menu li:hover > a {
    color: var(--primary-color-1) !important;
    padding-left: 25px;
}

.header__area-menubar-center-menu ul li .sub-menu li:hover::after {
    opacity: 1;
}

.header__area-menubar-center-menu ul li .sub-menu li:last-child {
    border: none;
}

.header__area-menubar-center-menu ul li ul .sub-menu li .sub-menu {
    color: var(--text-heading-color);
    cursor: pointer;
}

.header__area-menubar-center-menu ul li.menu-item-has-children > a {
    display: flex;
    align-items: end;
}

.header__area-menubar-center-menu ul li.menu-item-has-children > a i {
    font-size: 15px;
    margin-left: 5px;
    font-weight: 600;
    margin-bottom: 5px;
    transition: 0.4s;
}

.header__area-menubar-right {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header__area-menubar-right-box {
    display: flex;
    align-items: center;
}

.header__area-menubar-right-box-search-icon i {
    cursor: pointer;
    position: relative;
    z-index: 9;
    color: var(--text-heading-color);
    font-size: 20px;
    border-right: 1px solid var(--border-color-2);
    padding: 5px 25px 5px 0;
    font-weight: 700;
    display: block;
    line-height: 0;
}

.header__area-menubar-right-box-search-box {
    position: fixed;
    bottom: 0;
    width: 100%;
    left: 0;
    right: 0;
    height: 0;
    background: rgba(0, 0, 0, 0.6588235294);
    z-index: 9999;
    transition: all 0.5s ease-out;
    overflow: hidden;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}

.header__area-menubar-right-box-search-box form {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 55%;
    transition: all 0.5s ease-out;
}

.header__area-menubar-right-box-search-box input {
    background: var(--white);
    color: var(--text-heading-color);
    border: 0;
}

.header__area-menubar-right-box-search-box button {
    position: absolute;
    right: 0;
    top: 0;
    background-color: transparent;
    font-size: 22px;
    color: var(--primary-color-1);
    padding: 0;
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
}

.header__area-menubar-right-box-search-box.active {
    height: 100%;
    top: 0;
}

.header__area-menubar-right-box-search-box.active.header__area-menubar-right-box-search-box form {
    transform: translate(-50%, -50%) scale(1);
}

.header__area-menubar-right-box-search-box-icon {
    position: absolute;
    right: 50px;
    top: 50px;
    font-size: 22px;
    color: var(--white);
    cursor: pointer;
    transform: rotate(0deg);
}

.header__area-menubar-right-box-search-box-icon:hover {
    animation: rotate 0.4s ease 0s;
}

.header__area-menubar-right-box-search-box-icon i {
    cursor: pointer;
    position: relative;
    z-index: 9;
}

.header__area-menubar-right-box-search-box-icon i::before {
    display: block;
}

.header__area-menubar-right-box-sidebar-popup-icon {
    cursor: pointer;
    text-align: right;
    text-align: -webkit-right;
    text-align: -moz-right;
    margin-left: 25px;
}

.header__area-menubar-right-box-sidebar-popup-icon i {
    font-size: 25px;
    display: block;
    line-height: 0;
}

.header__area-menubar-right-box-btn {
    margin-left: 30px;
}

.header__area-menubar-right-sidebar-popup {
    position: fixed;
    width: 460px;
    height: 100%;
    right: 0;
    overflow: auto;
    transform: translateX(100%);
    top: 0;
    background: var(--color-1);
    opacity: 0;
    visibility: hidden;
    z-index: 999999;
    transition: 0.5s;
    padding: 100px 40px;
    scrollbar-width: none;
}

.header__area-menubar-right-sidebar-popup::-webkit-scrollbar {
    display: none;
}

.header__area-menubar-right-sidebar-popup.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0%);
    right: 0;
}

.header__area-menubar-right-sidebar-popup .sidebar-close-btn {
    position: absolute;
    top: 40px;
    right: 40px;
    transform: rotate(0);
    background: var(--primary-color-1);
    border-radius: 50%;
}

.header__area-menubar-right-sidebar-popup .sidebar-close-btn i::before {
    background: var(--primary-color-1);
    width: 40px;
    color: var(--white);
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    cursor: pointer;
    display: block;
}

.header__area-menubar-right-sidebar-popup .sidebar-close-btn:hover {
    animation: rotate 0.4s ease 0s;
}

.header__area-menubar-right-sidebar-popup-logo {
    margin-bottom: 30px;
}

.header__area-menubar-right-sidebar-popup-logo a {
    display: inline-block;
}

.header__area-menubar-right-sidebar-popup-logo a img {
    max-width: 150px;
    position: relative;
    z-index: 999;
}

.header__area-menubar-right-sidebar-popup p {
    color: var(--color-4);
}

.header__area-menubar-right-sidebar-popup-contact {
    margin: 40px 0;
    padding: 40px 0;
    border-top: 1px solid var(--border-color-1);
    border-bottom: 1px solid var(--border-color-1);
}

.header__area-menubar-right-sidebar-popup-contact-item {
    display: flex;
    margin-bottom: 25px;
    gap: 25px;
}

.header__area-menubar-right-sidebar-popup-contact-item-icon {
    margin-top: 8px;
    width: 30px;
}

.header__area-menubar-right-sidebar-popup-contact-item-icon i {
    color: var(--primary-color-1);
    font-size: 30px;
}

.header__area-menubar-right-sidebar-popup-contact-item-content span {
    color: var(--color-4);
    display: inline-block;
    margin-bottom: 5px;
}

.header__area-menubar-right-sidebar-popup-contact-item-content h6 {
    max-width: 240px;
    font-size: 18px;
    line-height: 28px;
}

.header__area-menubar-right-sidebar-popup-contact-item-content h6 a {
    transition: all 0.4s ease-out;
    color: var(--white);
}

.header__area-menubar-right-sidebar-popup-contact-item-content h6 a:hover {
    color: var(--primary-color-1);
}

.header__area-menubar-right-sidebar-popup-contact-item:last-child {
    margin: 0;
}

.header__area-menubar-right-sidebar-popup-contact h4 {
    color: var(--white);
}

.header__area-menubar-right-sidebar-popup-social ul {
    padding: 0;
    margin: 0;
}

.header__area-menubar-right-sidebar-popup-social ul li {
    list-style: none;
    display: inline-block;
    margin-right: 10px;
}

.header__area-menubar-right-sidebar-popup-social ul li:last-child {
    margin: 0;
}

.header__area-menubar-right-sidebar-popup-social ul li a i {
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    border-radius: 50%;
    color: var(--color-1);
    transition: all 0.4s ease-out;
    background: var(--primary-color-1);
    border: 1px solid var(--border-color-1);
}

.header__area-menubar-right-sidebar-popup-social ul li a i:hover {
    color: var(--white);
    background: var(--primary-color-1);
}

.header__area-menubar-right-sidebar-popup.home-three {
    background-color: var(--color-9);
}

.header__area-menubar-right-sidebar-popup.home-three .sidebar-close-btn i::before {
    background: var(--primary-color-3);
    color: var(--black);
}

.header__area-menubar-right-sidebar-popup.home-three .header__area-menubar-right-sidebar-popup-contact-item-icon i {
    color: var(--primary-color-3);
}

.header__area-menubar-right-sidebar-popup.home-three .header__area-menubar-right-sidebar-popup-social ul li a i {
    background: var(--primary-color-3);
    border-color: var(--primary-color-3);
}

.header__area-menubar-right-sidebar-popup.home-three .header__area-menubar-right-sidebar-popup-social ul li a i:hover {
    background-color: transparent;
}

.header__area-menubar-right-sidebar-popup.home-three .header__area-menubar-right-sidebar-popup-contact-item-content h6 a:hover {
    color: var(--primary-color-3);
}

.header__area-menubar-right-sidebar-popup.home-four {
    background-color: #0D0C24;
}

.header__area-menubar-right-sidebar-popup.home-four .sidebar-close-btn i::before {
    background: var(--primary-color-4);
}

.header__area-menubar-right-sidebar-popup.home-four .header__area-menubar-right-sidebar-popup-contact-item-icon i {
    color: var(--primary-color-4);
}

.header__area-menubar-right-sidebar-popup.home-four .header__area-menubar-right-sidebar-popup-social ul li a i {
    background: var(--primary-color-4);
    border-color: var(--primary-color-4);
    color: var(--white);
}

.header__area-menubar-right-sidebar-popup.home-four .header__area-menubar-right-sidebar-popup-social ul li a i:hover {
    background-color: transparent;
}

.header__area-menubar-right-sidebar-popup.home-four .header__area-menubar-right-sidebar-popup-contact-item-content h6 a:hover {
    color: var(--primary-color-4);
}

.header__area-menubar-right .responsive-menu_popup-icon {
    display: none;
    font-size: 20px;
}

.header__area.two .custom__container {
    max-width: 1780px;
}

.header__area.two.header__sticky-sticky-menu {
    background: var(--color-5);
}

.header__area.two .header__area-menubar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 10px 0;
    background: none;
    border-radius: 0;
}

.header__area.two .header__area-menubar-left {
    display: flex;
    align-items: center;
    -moz-column-gap: 100px;
    column-gap: 100px;
}

.header__area.two .header__area-menubar-center-menu ul li a {
    color: var(--white);
}

.header__area.two .header__area-menubar.header__sticky-sticky-menu {
    background: var(--color-3);
}

.header__area.two .header__area-menubar-center-menu ul li .sub-menu {
    border-color: var(--primary-color-2);
}

.header__area.two .header__area-menubar-center-menu ul li .sub-menu li:hover > a {
    color: var(--primary-color-2) !important;
}

.header__area.two .header__area-menubar-center-menu ul li .sub-menu li::after {
    background: var(--primary-color-2);
}

.header__area.two .responsive-menu_popup-icon {
    display: none !important;
    color: var(--white);
    margin-right: 20px;
}

.header__area.two .responsive__menu {
    background-color: var(--color-3);
}

.header__area.two .responsive__menu_wrap i {
    background-color: var(--primary-color-2);
    color: var(--white);
}

.header__area.two .responsive__menu .responsive-sidebar-menu-list__item.has-dropdown .responsive-sidebar-menu-list__link::before {
    background-color: var(--primary-color-2);
    color: var(--white);
}

.header__area.three {
    position: relative;
    background-color: #fff;

}

.header__area.three .header__area-menubar {
    padding: 0;
    background-color: transparent;
    border-radius: 0;
}

.header__area.three .need-help {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-left: 25px;
}

.header__area.three .need-help span {
    color: var(--p-color);
    text-transform: none;
    display: block;
    font-size: 14px;
}

.header__area.three .need-help a {
    font-size: 20px;
    font-family: var(--heading-font), serif;
    font-weight: 600;
    transition: 0.4s;
}

.header__area.three .need-help a:hover {
    color: var(--primary-color-3);
}

.header__area.three .need-help i {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 25px;
    color: var(--primary-color-3);
    background-color: var(--color-1);
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.header__area.three .header__area-menubar-right-box-search-icon i {
    border-right: 0;
    padding: 0;
}

.header__area.three .header__area-menubar-right-box-sidebar-popup-icon i {
    border-right: 1px solid var(--border-color-2);
    padding: 5px 25px 5px 0;
}

.header__area.three .header__area-menubar-center-menu ul li:hover > a {
    color: var(--primary-color-3);
}

.header__area.three .header__area-menubar-center-menu ul li .sub-menu {
    border-color: var(--primary-color-3);
}

.header__area.three .header__area-menubar-center-menu ul li .sub-menu li:hover > a {
    color: var(--primary-color-3) !important;
}

.header__area.three .header__area-menubar-center-menu ul li .sub-menu li::after {
    background: var(--primary-color-3);
}

.header__area.three .responsive__menu {
    background-color: #122418;
}

.header__area.three .responsive__menu_wrap i {
    background-color: #5C7B60;
    color: var(--white);
}

.header__area.three .responsive__menu .responsive-sidebar-menu-list__item.has-dropdown .responsive-sidebar-menu-list__link::before {
    background-color: var(--primary-color-3);
    color: var(--white);
}

.header__area.four .header__area-menubar {
    border-radius: 20px;
    box-shadow: 0 10px 50px 0 rgba(0, 0, 0, 0.05);
    padding: 5px 30px;
}

.header__area.four .header__area-menubar-center-menu ul li:hover > a {
    color: var(--primary-color-4);
}

.header__area.four .header__area-menubar-center-menu ul li .sub-menu {
    border-color: var(--primary-color-4);
}

.header__area.four .header__area-menubar-center-menu ul li .sub-menu li:hover > a {
    color: var(--primary-color-4) !important;
}

.header__area.four .header__area-menubar-center-menu ul li .sub-menu li::after {
    background: var(--primary-color-4);
}

.header__area.four .responsive__menu {
    background-color: #0D0C24;
}

.header__area.four .responsive__menu_wrap i {
    background-color: var(--primary-color-4);
    color: var(--white);
}

.header__area.four .responsive__menu .responsive-sidebar-menu-list__item.has-dropdown .responsive-sidebar-menu-list__link::before {
    background-color: var(--primary-color-4);
    color: var(--white);
}

/* Responsive Sidebar menu */
.responsive__menu {
    width: 320px;
    height: 100%;
    position: fixed;
    left: -320px;
    top: 0;
    margin-left: 0;
    background-color: var(--color-1);
    transition: 0.3s all;
    z-index: 99999;
    padding: 30px 30px;
    overflow: auto;
}

.responsive__menu.show {
    left: 0;
    top: 0;
}

.responsive__menu_wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.responsive__menu_wrap .logo-wrapper {
    width: 200px;
}

.responsive__menu_wrap i {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-color-1);
    line-height: 40px;
    text-align: center;
    font-weight: 400;
    font-size: 22px;
    cursor: pointer;
}

.responsive__menu .responsive-sidebar-submenu-list__item {
    list-style: none;
    padding: 10px 0;
    border-top: 1px solid var(--border-color-1);
}

.responsive__menu .responsive-sidebar-submenu-list__item:first-child {
    margin-top: 10px;
}

.responsive__menu .responsive-sidebar-submenu-list__item:last-child {
    padding-bottom: 0;
}

.responsive__menu .responsive-sidebar-menu-list {
    margin: 0;
    padding: 0;
}

.responsive__menu .responsive-sidebar-menu-list__link {
    font-size: 16px;
    height: 100%;
    display: block;
}

.responsive__menu .responsive-sidebar-menu-list__item {
    color: var(--white);
    list-style: none;
    padding: 16px 0;
    border-bottom: 1px solid #ffffff26;
    opacity: 0.8;
    position: relative;
    cursor: pointer;
}

.responsive__menu .responsive-sidebar-menu-list__item .responsive-sidebar-menu-list__item {
    border-bottom: 0;
    border-top: 1px solid var(--border-color-1);
}

.responsive__menu .responsive-sidebar-menu-list__item .responsive-sidebar-menu-list__item:first-child {
    margin-top: 20px;
}

.responsive__menu .responsive-sidebar-menu-list__item .responsive-sidebar-menu-list__item:last-child {
    padding-bottom: 0;
}

.responsive__menu .responsive-sidebar-menu-list__item.has-dropdown .responsive-sidebar-menu-list__link::before {
    content: "+";
    position: absolute;
    right: 0;
    top: 15px;
    font-size: 23px;
    font-weight: 300;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: var(--primary-color-1);
    text-align: center;
    color: var(--black);
}

.responsive__menu .responsive-sidebar-menu-list__item.has-dropdown.active > .responsive-sidebar-menu-list__link::before {
    content: "-";
}

@media (max-width: 375px) {
    .responsive__menu {
        width: 280px;
    }
}

@media (max-width: 575px) {
    .responsive__menu {
        left: -100%;
        width: 100%;
    }
}

@media (max-width: 991px) {
    .responsive__menu {
        display: block;
    }
}

@media (max-width: 991px) {
    .header__area-menubar {
        padding: 15px 25px;
    }

    .header__area-menubar-center {
        display: none;
    }

    .responsive-menu_popup-icon {
        display: block !important;
    }
}

@media (max-width: 920px) {
    .header__area.two .responsive-menu_popup-icon {
        display: block !important;
    }

    .header__area.two .header__area-menubar-center-menu {
        display: none;
    }
}

@media (max-width: 430px) {
    .header__area-menubar-right-box .btn-two {
        display: none;
    }
}

@media (max-width: 1199px) {
    .header__area.three .need-help {
        display: none;
    }

    .header__area.three .header__area-menubar-right-box-sidebar-popup-icon i {
        border-right: 0;
        padding-right: 0;
    }
}

@media (max-width: 359px) {
    .top__bar-wrapper {
        padding: 13px 0;
    }
}

@media (max-width: 1500px) {
    .header__area.two .header__area-menubar-right-box-social {
        display: none;
    }
}

@media (max-width: 1255px) {
    .header__area.two .header__area-menubar-right-box-help {
        display: none;
    }
}

@media (max-width: 1050px) {
    .header__area.two .header__area-menubar-center-menu ul li a {
        font-size: 17px;
        padding: 38px 7px;
    }
}

@media (max-width: 991px) {
    .header__area.two .btn-two {
        background-color: var(--color-1);
    }
}

@media (max-width: 1399px) {
    .header__area.three .header__area-menubar-right-box-btn {
        display: block;
    }
}

@media (max-width: 1199px) {
    .header__area.three .header__area-menubar-right-box-btn {
        display: none;
    }
}

@media (max-width: 992px) {
    .header__area.three .header__area-menubar-right-box-sidebar-popup-icon i {
        display: none;
    }

    .header__area.three .need-help {
        display: none;
    }

    .header__area.four .header__area-menubar {
        padding: 15px 30px;
    }
}

@media (max-width: 770px) {
    .header__area.three {
        padding: 25px 0;
    }
}

@media (max-width: 770px) {
    .header__area.three .header__sticky-sticky-menu {
        padding: 20px 0;
    }
}

/* Menu Sidebar CSS */
.sidebar-overlay {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    transition: all 0.4s ease-out;
    opacity: 0;
    visibility: hidden;
    z-index: 99999;
    background: rgba(24, 24, 24, 0.6);
}

.sidebar-overlay.show {
    visibility: visible;
    opacity: 1;
}

@media (max-width: 1399px) {
    .header__area-menubar-right-box-btn {
        display: none;
    }

    .header__area-menubar-center-menu ul li a {
        font-size: 14px;
        padding: 38px 14px;
    }
}

@media (max-width: 991px) {
    .header__area-menubar-right .responsive-menu .mean-bar {
        right: 0;
        position: absolute;
        top: 10px;
        background: transparent;
        padding: 0;
        z-index: 99;
    }

    .header__area-menubar-right .responsive-menu .mean-bar span {
        background: #000;
    }

    .header__area-menubar-right-box-sidebar {
        display: none;
    }

    .header__area-menubar-right-box-search-icon i {
        border: 0;
        padding: 0;
    }

    .header__area-menubar-right-box-search .search {
        margin-right: 25px;
        margin-top: 6px;
        z-index: 9999;
        position: relative;
    }
}

@media (max-width: 575px) {
    .header__area {
        padding: 10px 0;
    }
}

@media (max-width: 359px) {
    .header__area-menubar-right-box-search .search {
        display: none;
    }
}

/* Banner Three CSS */
.banner__three-single-slide {
    padding: 100px 0;
    background-repeat: no-repeat;
    background-position: center center;
    position: relative;
    overflow: hidden;
    background-size: cover;
    padding-bottom: 150px;
}

.banner__three-single-slide::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #122418;
    z-index: 1;
    opacity: 0.85;
}

.banner__three-content {
    z-index: 3;
    position: relative;
}

.banner__three-content .subtitle-three {
    background-color: #fbc6633b;
    margin-bottom: 18px;
    color: #FBC763;
}

.banner__three-content h2 {
    font-size: 76px;
    color: var(--white);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 15px;
    text-transform: none;
}

.banner__three-content p {
    color: var(--white);
    text-transform: none;
    width: 92%;
    margin-bottom: 30px;
    font-size: 18px;
}

.banner__three-content .btn-two:hover {
    color: var(--white);
}

.banner__three-content .btn-two:hover i {
    color: var(--white);
}

.banner__three .banner__three-shape img {
    position: absolute;
    z-index: 5;
}

.banner__three .banner__three-shape .shape-1 {
    bottom: 0;
    left: 0;
}

.banner__three .banner__three-shape .shape-2 {
    bottom: 0;
    right: 0;
}

.banner__three .slider-arrow {
    position: absolute;
    right: 16%;
    top: 34%;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.banner__three .slider-arrow i {
    position: relative;
    width: 50px;
    height: 50px;
    line-height: 60px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1411764706);
    color: var(--white);
    font-size: 16px;
    right: 0;
    left: 0;
    border: 1px solid transparent;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    transition: 0.4s;
}

.banner__three .slider-arrow i:hover {
    border-color: rgba(255, 255, 255, 0.1411764706);
    background-color: transparent;
}

@media (max-width: 1399px) {
    .banner__three-content h2 {
        font-size: 71px;
    }
}

@media (max-width: 991px) {
    .banner__three {
        padding: 0;
    }

    .banner__three-content h2 {
        font-size: 68px;
    }

    .banner__three-content p {
        width: auto;
    }
}

@media (max-width: 770px) {
    .header__area.three {
        padding: 25px 0;
    }

    .banner__three-single-slide {
        padding: 60px 0;
    }

    .banner__three .slider-arrow {
        top: 74%;
    }
}

@media (max-width: 767px) {
    .banner__three-content h2 {
        font-size: 50px;
    }

    .banner__three .slider-arrow {
        top: 74%;
    }

    .banner__three .banner__three-shape .shape-1 {
        display: none;
    }

    .banner__three .banner__three-shape .shape-2 {
        display: none;
    }
}

@media (max-width: 480px) {
    .banner__three .slider-arrow {
        display: none;
    }
}

@media (max-width: 359px) {
    .banner__three-content h2 {
        font-size: 43px;
    }
}

/* Breadcrumb CSS */
.breadcrumb__area {
    padding: 250px 0 115px;
    text-align: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}

.breadcrumb__area::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(302deg, #14133B 0%, #00C486 100%);
    opacity: 0.7;
}

.breadcrumb__area-content {
    position: relative;
    z-index: 4;
}

.breadcrumb__area-content h2 {
    color: var(--white);
    font-size: 57px;
    line-height: 1.15;
}

.breadcrumb__area-content span {
    color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    margin-top: 10px;
}

.breadcrumb__area-content span a {
    display: flex;
    align-items: center;
    gap: 8px;
}

.breadcrumb__area-content span a i {
    font-size: 20px;
}

.breadcrumb__area-content span i {
    font-size: 14px;
}

@media (max-width: 569px) {
    .breadcrumb__area {
        padding: 255px 0 75px;
    }

    .breadcrumb__area-content h2 {
        font-size: 35px;
    }

    .breadcrumb__area-content span {
        margin-top: 5px;
    }
}

/*==========================================================================
Services Three Style
==========================================================================*/
.services__three {
    background-color: #f2f2f2;
}

.services__three .subtitle-three {
    background-color: transparent;
}

.services__three .single-service {
    padding: 24px;
    border-radius: 10px;
    background-color: var(--white);
}

.services__three .single-service__image {
    border-radius: 10px;
    overflow: hidden;
    height: 265px;
    width: 100%;
}

.services__three .single-service__image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    transition: 1s;
}

.services__three .single-service__content {
    position: relative;
    padding: 20px 18px;
    background-color: var(--white);
}

.services__three .single-service__content h5 {
    margin-bottom: 10px;
    font-weight: 600;
}

.services__three .single-service__content p {
    margin-bottom: 20px;
    color: var(--color-1);
    font-size: 15px;
    text-align: justify;
}

.services__three .single-service__icon {
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    font-size: 32px;
    background-color: var(--color-1);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    bottom: 107%;
    transform: translateY(50%);
    right: 26px;
    outline: 4px solid transparent;
    transition: 0.4s;
}

.services__three .single-service__icon img {
    width: 40px;
}

.services__three .single-service .btn-three {
    padding: 0 10px 0 0;
    background-color: transparent;
}

.services__three .single-service .btn-three i {
    font-size: 10px;
}

.services__three .single-service .btn-three:hover {
    color: var(--primary-color-3);
}

.services__three .single-service .btn-three:hover i {
    color: var(--primary-color-3);
}

.subtitle-six {
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    display: inline-block;
    padding: 13px 25px;
    line-height: 1;
    background-color: rgba(255, 255, 255, 0.089);
    letter-spacing: 1px;
    margin-bottom: 10px;
}

/* Altura fixa para os cards no desktop */
@media (min-width: 992px) {
    .services__three .single-service {
        height: 500px; /* ajuste conforme necessário */
        display: flex;
        flex-direction: column;
    }
}

/* No mobile, altura automática */
@media (max-width: 991px) {
    .services__three .single-service {
        height: auto;
        padding: 17px;
    }
}

/* Services Five Style */
.service__five {
    margin-top: -120px;
    z-index: 4;
    position: relative;
}

.service__five-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: 1px solid var(--border-color-4);
    padding: 20px 15px;
    gap: 10px;
    border-radius: 10px;
    border-bottom: 7px solid #122418;
    background-color: var(--white);
}

.service__five-card .icon {
    width: 70px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background-color: #122418;
    color: #fff;
    font-size: 30px;
    margin-bottom: 0;
}

.service__five-card .icon img {
    width: 40px;
}

.service__five-card .content {
    width: 100%;
}

.service__five-card .content h5 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}

/* Responsividade */
@media (max-width: 359px) {
    .service__five-card {
        padding: 20px;
    }

    .service__five-card .icon {
        width: 60px;
        height: 60px;
        font-size: 26px;
    }
}

/* Horizontal Scroll Animation */
.horizontal-scroll {
    padding: 21px 0;
    background: var(--primary-color-1);
    margin-bottom: -1px;
}

.horizontal-scroll.style-two {
    background: var(--primary-color-4);
}

.horizontal-scroll.style-two .horizontal-scroll-icon {
    color: #f9a890;
}

.horizontal-scroll-active {
    padding: 0;
}

.horizontal-scroll-icon {
    margin: 0 45px;
    font-size: 28px;
    color: #037756;
}

.horizontal-scroll-single-item {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    list-style: none;
}

.horizontal-scroll-single-item h3 {
    font-size: 30px;
    color: var(--white);
    font-weight: 400;
}

.request-quote__area form label {
    font-size: 18px;
}

.request-quote__area form input::-moz-placeholder {
    font-size: 18px;
    margin-bottom: 10px;
}

.request-quote__area form input::placeholder {
    font-size: 18px;
    margin-bottom: 10px;
}

.request-quote__area-inputs {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    row-gap: 30px;
}

.request-quote__area-input-field {
    width: 49%;
}

.request-quote__area-input-field label {
    margin-bottom: 10px;
}

.request-quote__area-service-input {
    display: flex;
    flex-wrap: wrap;
    -moz-column-gap: 20px;
    column-gap: 20px;
    row-gap: 20px;
    margin: 30px 0;
}

.request-quote__area-service-input span {
    width: 100%;
    font-size: 18px;
    margin-bottom: 10px;
}

@media (max-width: 575px) {
    .request-quote__area-input-field {
        width: 100%;
    }
}

/* Sidebar CSS */
.page-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-item-single {
    background-color: var(--color-2);
    padding: 30px 35px;
    border-radius: 10px;
    border: 1px solid var(--border-color-4);
    margin-bottom: 32px;
}

.sidebar-item-single:last-child {
    margin-bottom: 0;
}

.sidebar-item-single-title {
    margin-bottom: 28px;
    border-bottom: 1px solid var(--border-color-3);
    padding-bottom: 13px;
    position: relative;
}

.sidebar-item-single-title::before {
    content: "";
    width: 70px;
    height: 1px;
    background-color: var(--primary-color-1);
    position: absolute;
    bottom: -1px;
}

.sidebar-item-single.sidebar-search form {
    display: flex;
    justify-self: center;
    align-items: center;
    gap: 10px;
}

.sidebar-item-single.sidebar-search form button {
    border-radius: 5px;
}

.sidebar-item-single.sidebar-recent-blog .recent-blog-single {
    background-color: var(--white);
    padding: 20px 20px;
    border-radius: 10px;
    border: 1px solid var(--border-color-2);
    margin-bottom: 23px;
}

.sidebar-item-single.sidebar-recent-blog .recent-blog-single:last-child {
    margin-bottom: 0;
}

.sidebar-item-single.sidebar-recent-blog .recent-blog-single .blog__one-single-blog-content-top span {
    font-size: 16px !important;
}

.sidebar-item-single.sidebar-recent-blog .recent-blog-single a {
    font-size: 20px;
    font-weight: 500;
    font-family: var(--heading-font), serif;
    opacity: 0.75;
    transition: 0.3s;
}

.sidebar-item-single.sidebar-recent-blog .recent-blog-single a:hover {
    opacity: 1;
    color: var(--primary-color-1);
}

.sidebar-item-single.sidebar-blog-tags .tags {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.sidebar-item-single.sidebar-blog-tags .tags a {
    background-color: var(--white);
    padding: 5px 18px;
    border-radius: 4px;
    border: 1px solid var(--border-color-3);
    transition: 0.4s;
}

.sidebar-item-single.sidebar-blog-tags .tags a:hover {
    background-color: var(--primary-color-1);
    border-color: var(--primary-color-1);
    color: var(--white);
}

.sidebar-item-single.sidebar-contact {
    background-color: var(--primary-color-1);
    border-color: var(--primary-color-1);
    border-radius: 20px;
    padding: 45px 51px;
    text-align: center;
}

.sidebar-item-single.sidebar-contact h3 {
    font-size: 40px;
    color: var(--white);
    margin-bottom: 15px;
}

.sidebar-item-single.sidebar-contact p {
    color: var(--white);
    margin-bottom: 15px;
}

.sidebar-item-single.sidebar-contact .call-icon {
    width: 85px;
    height: 85px;
    line-height: 85px;
    display: block;
    background-color: rgba(255, 255, 255, 0.2117647059);
    border-radius: 50%;
    color: transparent;
    -webkit-text-stroke: 3px var(--white);
    font-size: 33px;
    margin: auto auto 33px;
}

.sidebar-item-single.sidebar-contact a {
    font-size: 28px;
    color: var(--white);
    font-family: var(--heading-font), serif;
    font-weight: 500;
}

.sidebar-item-single.sidebar-project-info .project-info-single {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    margin-bottom: 18px;
    padding: 14px 20px;
    border-radius: 50px;
    border: 1px solid var(--border-color-2);
}

.sidebar-item-single.sidebar-project-info .social {
    margin-top: 25px;
}

.sidebar-item-single.sidebar-project-info .social a i {
    width: 48px;
    height: 48px;
    color: var(--black);
    border-color: var(--border-color-4);
    font-size: 16px;
}

.sidebar-item-single.sidebar-project-info .social a i:hover {
    color: var(--white);
}

.sidebar-item-single.sidebar-download .download-single {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--white);
    margin-bottom: 25px;
    padding: 14px 20px;
    border-radius: 50px;
    border: 1px solid var(--border-color-2);
}

.sidebar-item-single.sidebar-download .download-single i {
    color: var(--primary-color-1);
}

.sidebar-item-single.sidebar-download .download-single h6 {
    transition: 0.4s;
}

.sidebar-item-single.sidebar-download .download-single h6:hover {
    color: var(--primary-color-1);
}

.sidebar-item-single.sidebar-download .download-single:last-child {
    margin-bottom: 0;
}

.sidebar-item-single.sidebar-solutions .solutions-single {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--white);
    margin-bottom: 25px;
    padding: 17px 20px;
    border-radius: 10px;
    box-shadow: 0 0 70px rgba(0, 0, 0, 0.05);
    transition: 0.4s;
}

.sidebar-item-single.sidebar-solutions .solutions-single h6 {
    font-size: 18px;
    transition: 0.3s;
}

.sidebar-item-single.sidebar-solutions .solutions-single i {
    color: var(--primary-color-1);
    font-size: 13px;
    background: var(--color-2);
    padding: 8px;
    border-radius: 50%;
    transition: 0.3s;
}

.sidebar-item-single.sidebar-solutions .solutions-single:hover {
    background-color: var(--primary-color-1);
}

.sidebar-item-single.sidebar-solutions .solutions-single:hover h6 {
    color: var(--white);
}

.sidebar-item-single.sidebar-solutions .solutions-single:hover i {
    background: rgba(255, 255, 255, 0.1019607843);
    color: var(--white);
}

.sidebar-item-single.sidebar-solutions .solutions-single:last-child {
    margin-bottom: 0;
}

@media (max-width: 1199px) {
    .blog__details-comment-form form :nth-child(1), .blog__details-comment-form form :nth-child(2) {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .blog__details-comment-form {
        padding: 20px 30px;
    }

    .blog__details-comment-form h4 {
        font-size: 30px;
    }
}

@media (max-width: 380px) {
    .sidebar-item-single {
        padding: 24px 20px;
    }

    .sidebar-item-single.sidebar-search form {
        flex-direction: column;
    }

    .sidebar-item-single.sidebar-contact h3 {
        font-size: 35px;
    }

    .sidebar-item-single.sidebar-contact {
        padding: 38px 30px;
    }
}

/*==========================================================================
Subscribe One CSS
==========================================================================*/
.subscribe__one {
    background-color: var(--primary-color-1);
    padding: 70px 0;
    background-size: cover;
    background-repeat: no-repeat;
}

.subscribe__one h2 {
    color: var(--white);
    margin-bottom: 30px;
    font-weight: 500;
}

.subscribe__one h2 span {
    font-weight: 100;
}

.subscribe__one-form {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 25px;
}

.subscribe__one-form input {
    background-color: transparent;
    width: 453px;
    height: 62px;
    border: 2px solid rgb(51, 208, 158);
    padding: 0 0 0 25px;
    color: var(--text-heading-color);
    border-radius: 50px;
    transition: 0.4s;
}

.subscribe__one-form input:focus {
    border-color: var(--border-color-4);
}

.subscribe__one-form input::-moz-placeholder {
    color: var(--white);
}

.subscribe__one-form input::placeholder {
    color: var(--white);
}

.subscribe__one-form .btn-one {
    background-color: var(--white);
    text-transform: capitalize;
    color: var(--text-heading-color);
}

.subscribe__one-form .btn-one:hover {
    color: var(--white);
}

@media (max-width: 1199px) {
    .subscribe__one-form input {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .subscribe__one-form .email-input {
        margin-bottom: 20px;
    }

    .subscribe__one-form .email-input input {
        max-width: 100%;
    }

    .subscribe__one-content {
        padding: 45px 0 45px 0;
    }
}

@media (max-width: 359px) {
    .subscribe__one-form input {
        height: 70px;
    }
}

/*==========================================================================
Subscribe Two CSS
==========================================================================*/
.subscribe__two {
    margin-bottom: 50px;
    z-index: 5;
    position: relative;
}

.subscribe__two .subscribe__two-wrapper {
    background-color: #143720;
    border-radius: 20px;
    padding: 68px 58px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.subscribe__two h2 {
    color: var(--white);
}

.subscribe__two-right {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.subscribe__two-right .btn-four {
    background-color: #0D0C24;
    color: var(--white);
}

.subscribe__two-right .btn-four:hover {
    color: var(--black);
}

.subscribe__two-right .btn-four:hover i {
    color: var(--black);
}

.subscribe__two-right .btn-four::before {
    background-color: var(--white);
}

.subscribe__two .contact {
    display: flex;
    align-items: center;
    gap: 15px;
    background-color: #F36940;
    color: var(--white);
    border-radius: 100px;
    padding: 10px 25px;
}

.subscribe__two .contact span {
    display: block;
    font-size: 13px;
    line-height: 1;
    text-align: left;
    margin-bottom: 3px;
}

.subscribe__two .contact a {
    display: block;
    font-size: 15px;
    font-family: var(--heading-font), serif;
    font-weight: 600;
}

.subscribe__two .contact i {
    font-size: 30px;
}

@media (max-width: 359px) {
    .subscribe__two .subscribe__two-wrapper {
        padding: 30px 30px;
    }

    .subscribe__two-right {
        gap: 15px;
    }

    .subscribe__two .contact {
        padding: 10px 16px;
    }
}

/* 404 */
.error {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 0;
    background: #eee;
}

.error-page {
    text-align: center;
}

.error-page h1 {
    font-size: 240px;
    line-height: 1;
    font-weight: 600;
    font-family: "Poppins", sans-serif;;
}

.error-page h1 span {
    color: var(--primary-color-1);
}

.error-page h2 {
    margin: 15px 0 20px 0;
}

.error-page p {
    margin-bottom: 35px;
}

/* Responsivo */
@media (max-width: 575px) {
    .error-page h1 {
        font-size: 140px;
        line-height: 150px;
    }
}

/* Top-bar */
.bg-green {
    background-color: #5C7B60;
}

/* Divisores entre itens */
.divider {
    width: 1px;
    height: 20px;
    background-color: rgba(255, 255, 255, 0.5);
    margin: 0 8px;
}

.topbar span {
    font-size: 14px;
}

/* Ícones sociais */
.social-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    background: #ffffff3a;
    border-radius: 50px;
    color: #fff;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-btn:hover {
    color: #FBC763;
}

.topbar .d-flex.align-items-center svg {
    margin-right: 8px;
    display: inline-block;
    vertical-align: middle;
}

.topbar .d-flex.align-items-center span {
    display: inline-flex;
    align-items: center;
}

/* About */
.about-section-five {
    position: relative;
    padding: 90px 0 90px;
}

.about-section-five p {
    font-size: 15px;
    margin-top: 10px;
    text-align: justify;
}

.about-section-five:before {
    position: absolute;
    right: 0;
    top: 90px;
    width: 367px;
    height: 730px;
    /*background-image: url(../images/icons/dots1.png);*/
    content: "";
}

.about-section-five .content-column {
    position: relative;
    z-index: 2;
}

@media (max-width: 992px) {
    .about-section-five .content-column {
        -webkit-box-ordinal-group: 1 !important;
        -ms-flex-order: 0 !important;
        order: 0 !important;
    }
}

.about-section-five .content-column .inner-column {
    position: relative;
    margin-top: 45px;
    margin-left: -70px;
    padding-top: 50px;
    padding-left: 60px;
    padding-bottom: 60px;
    background-color: #fff;
}

@media (max-width: 1200px) {
    .about-section-five .content-column .inner-column {
        padding-top: 0;
        margin-top: 0;
        padding-bottom: 40px;
    }
}

@media (max-width: 992px) {
    .about-section-five .content-column .inner-column {
        padding-left: 0;
        margin-left: 0;
    }
}

.about-section-five .content-column .sec-title {
    margin-bottom: 25px;
}

.about-section-five .content-column .skills {
    margin-bottom: 10px;
}

.about-section-five .image-column {
    position: relative;
}

.about-section-five .image-column .inner-column {
    position: relative;
    margin-right: -80px;
}

@media (max-width: 992px) {
    .about-section-five .image-column .inner-column {
        margin-right: 0;
        margin-top: 30px;
    }
}

.about-section-five .image-column .image-1 {
    position: relative;
    margin-bottom: 0;
}

.about-section-five .image-column .image-1 img {
    width: 100%;
}

.about-section-five .image-column .image-2 {
    position: absolute;
    left: -80px;
    bottom: -20px;
    border: 20px solid #fff;
    margin-bottom: 0;
}

@media (max-width: 1200px) {
    .about-section-five .image-column .image-2 {
        display: none;
    }
}

/* Ajustes para mobile */
@media (max-width: 768px) {
    .about-section-five {
        padding: 40px 0;
    }

    .about-section-five .inner-column {
        padding: 10px;
    }

    .about-section-five .sec-title h2 {
        margin-bottom: 10px;
    }

    .about-section-five .image-column .inner-column {
        margin-top: 0;
    }

    .about-section-five .content-column .inner-column {
        padding-bottom: 30px;
    }
}

.blockquote-style-one {
    position: relative;
    font-size: 14px;
    line-height: 24px;
    color: #5C7B60;
    padding: 13px 25px;
    background-color: #5c7b602a;
    box-shadow: none;
    font-weight: 500;
    margin-bottom: 30px;
}

.blockquote-style-one:before {
    position: absolute;
    left: 0;
    top: 10px;
    bottom: 10px;
    width: 4px;
    z-index: 2;
    background-color: #5C7B60;
    content: "";
}

.sec-title {
    position: relative;
}

.subtitle-three {
    position: relative;
    display: inline-block;
    font-weight: 700;
    color: #5C7B60;
    padding-left: 50px;
    font-size: 18px;
}

.subtitle-three::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 40px;
    height: 1px;
    background: #5C7B60;
    transform: translateY(-50%);
}

.subtitle-three::after {
    content: "";
    position: absolute;
    left: 40px;
    top: 50%;
    width: 1px;
    height: 6px;
    background: #5C7B60;
    transform: translateY(-50%);
}

.process-section {
    position: relative;
    padding: 80px 0 80px;
}

.process-block {
    position: relative;
    margin-bottom: 40px;
}

.process-block:last-child .image-box:before {
    display: none;
}

.process-block .inner-box {
    position: relative;
    text-align: center;
}

.process-block .icon-box {
    position: relative;
    height: 124px;
    width: 124px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    justify-content: center;
    /*display: -webkit-inline-box;*/
    display: -ms-inline-flexbox;
    display: inline-flex;
    margin-bottom: 30px;
    border-radius: 50%;
    border: 1px solid #9c9c9c;
}

.process-block .icon-box .icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 110px;
    width: 110px;
    font-size: 62px;
    border-radius: 50%;
    background: #5C7B60;
}

.process-block .arrow {
    position: absolute;
    right: -46px;
    top: 65px;
}

.process-block .icon-box .count {
    position: absolute;
    bottom: -20px;
    left: 0;
    right: 0;
    margin: 0 auto;
    height: 40px;
    width: 40px;
    background: #FBC763;
    font-size: 14px;
    font-weight: 600;
    color: #122418;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 50%;
    z-index: 2;
    -webkit-transition: all 300ms linear;
    transition: all 300ms linear;
}

.process-block .info-box {
    position: relative;
}

.process-block .info-box .inner {
    position: relative;
    background-color: #fff;
    padding: 10px 20px 15px;
    transition: all 300ms ease;
    overflow: hidden;
}

.process-block .info-box .title {
    position: relative;
    z-index: 2;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.process-block .info-box .text {
    position: relative;
    z-index: 2;
    line-height: 26px;
    font-size: 14px;
}

.arrow-shape {
    position: absolute;
    right: -80px;
    top: 20%;
    transform: translateY(-20%);
}

@media (max-width: 991px) {
    .arrow-shape {
        display: none;
    }
}

/* Ajustes somente para mobile */
@media (max-width: 768px) {
    .process-section.section-padding {
        padding-top: 30px;
        padding-bottom: 30px;
    }
}

.request__area-two {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.request__bg-two {
    background-size: cover;
    background-position: center;
    background-image: url('../img/Group 5125.png');
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.request__content-two {
    background: #122418;
    padding: 60px 60px;
    border-radius: 15px;
}

.request__content-two .title {
    color: #fff;
    margin-bottom: 20px;
    font-size: 36px;
    font-weight: 500;
}

.request__phone {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 0px;
}

.request__phone .icon {
    font-size: 36px;
    line-height: 0;
    color: #FBC763;
}

.request__phone .content span {
    line-height: 1;
    display: block;
    font-size: 14px;
    color: #fff;
    text-align: left;
}

.request__phone .content a {
    color: #fff;
    font-size: 22px;
    font-weight: 600;
    text-align: left;
}

.faq-box h2 {
    font-size: 30px;
    margin-bottom: 30px;
}

.faq-accordion .accordion-item {
    margin-bottom: 20px;
    border: none;
}

.faq-accordion .accordion-header {
    margin-bottom: 0;
}

.faq-accordion .accordion-header button {
    background: #eee;
    border-radius: 10px !important;
    font-weight: 600;
    font-size: 16px;
    border: none;
    box-shadow: none;
    padding: 20px 30px;
}

.faq-accordion .accordion-header button:after {
    content: '\f107';
    font-family: "Font Awesome 6 Pro", serif;
    background: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
    background: #5C7B60;
    color: #fff;
}

.faq-accordion .accordion-body p:last-child {
    margin-bottom: 0;
}

.footer-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
}

.footer__four-widget {
    flex: 1 1 220px;
    min-width: 220px;
}

.footer__four-widget-contact-info-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Main Footer */
.main-footer {
    position: relative;
    background-color: #122418;
    /* Widget Section */
}

.main-footer .bg {
    background-size: auto;
}

@media (max-width: 768px) {
    .main-footer .bg {
        opacity: 0.1;
    }
}

.main-footer .widgets-section {
    position: relative;
    padding: 80px 0 10px;
}

.main-footer .footer-column {
    position: relative;
    margin-bottom: 50px;
}

.main-footer .footer-widget {
    position: relative;
}

.main-footer .widget-title {
    position: relative;
    color: #e5ebea;
    margin-bottom: 18px;
    font-weight: 500;
}

.main-footer .text {
    color: #e5ebea;
}

.main-footer .widget-content {
    position: relative;
}

.main-footer .widget-content .text {
    color: #e5ebea;
}

.user-links {
    position: relative;
}

.user-links li {
    position: relative;
    padding-left: 30px;
    font-size: 15px;
    line-height: 32px;
    color: #e5ebea;
    font-weight: 400;
    margin-bottom: 10px;
}

.user-links li:before {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 14px;
    content: "\f061";
    color: #333F4D;
    font-family: "Font Awesome 6 Pro", serif;
}

.user-links li:last-child {
    margin-bottom: 0;
}

.user-links li a {
    position: relative;
    display: inline-block;
    color: inherit;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

.user-links li a:hover {
    color: #FFFFFF;
}

.user-links li a:before {
    position: absolute;
    left: 0;
    bottom: 3px;
    width: 0;
    height: 1px;
    content: "";
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

.user-links li a:hover:before {
    width: 100%;
}

.user-links.style-two li {
    padding-left: 0;
}

.user-links.style-two li:before {
    display: none;
}

.user-links.style-three li {
    padding-left: 25px;
}

.user-links.style-three li:before {
    content: "\f00c";
}

.user-links.style-four li {
    padding-left: 20px;
}

.user-links.style-four li:before {
    content: "\f105";
}

.user-links.two-column {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.user-links.two-column li {
    width: 50%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
}

/*=== Footer Bottom ===*/
.footer-bottom {
    position: relative;
    z-index: 3;
    border-top: 1px solid #ffffff26;
    padding: 30px 0;
}

.footer-bottom .inner-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

@media (max-width: 992px) {
    .footer-bottom .inner-container {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

.footer-bottom .copyright-text {
    position: relative;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 992px) {
    .footer-bottom .copyright-text {
        -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
        order: 3;
        text-align: center;
        margin-top: 30px;
    }
}

.footer-bottom .copyright-text a {
    color: inherit;
}

.footer-bottom .copyright-text a:hover {
    color: #ffffff;
}

.footer-bottom .footer-nav {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

@media (max-width: 576px) {
    .footer-bottom .footer-nav {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

.footer-bottom .footer-nav li {
    line-height: 32px;
    color: rgba(255, 255, 255, 0.7);
    margin-left: 30px;
}

.footer-bottom .footer-nav li:first-child {
    margin-left: 0;
}

@media (max-width: 576px) {
    .footer-bottom .footer-nav li {
        margin: 0 30px !important;
        text-align: center;
    }
}

.footer-bottom .footer-nav li a {
    color: inherit;
}

@media (max-width: 1200px) {
    .footer-style-one .bg {
        background-image: none;
    }
}

.footer-style-one .about-widget .logo {
    position: relative;
    top: -20px;
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .footer-style-one .about-widget .logo {
        top: 0;
    }
}

.footer-style-one .about-widget .text {
    margin-bottom: 20px;
}

.footer-style-one .links-widget {
    padding-left: 50px;
    margin-bottom: 50px;
}

@media (max-width: 1200px) {
    .footer-style-one .links-widget {
        padding-left: 0;
    }
}

@media (max-width: 576px) {
    .footer-style-two .bg {
        display: none;
    }
}

.footer-style-two .newsletter-widget .widget-title {
    margin-bottom: 45px;
}

.footer-style-two .contact-info-outer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.footer-style-two .contact-info-outer .contact-info-box {
    margin-right: 80px;
    margin-top: 50px;
}

.footer-style-two .contact-info-outer .contact-info-box .widget-title {
    padding-left: 40px;
    margin-bottom: 10px;
}

.footer-style-two .contact-info-outer .contact-info-box .widget-title .icon {
    position: absolute;
    left: 0;
    top: 0;
    height: 30px;
    width: 30px;
    line-height: 30px;
    text-align: center;
    border-radius: 50%;
    font-size: 14px;
}

.footer-style-two .contact-info-outer .contact-info-box .user-links {
    padding-left: 40px;
}

.footer-style-two .contact-info-outer .contact-info-box .user-links li {
    margin-bottom: 5px;
}

.footer-style-two .links-widget {
    padding-left: 80px;
}

@media (max-width: 1200px) {
    .footer-style-two .links-widget {
        padding-left: 0;
    }
}

.footer-style-two .blog-widget .recent-post {
    padding-bottom: 20px;
    border-bottom: 1px solid #333F4D;
    margin-bottom: 20px;
}

.footer-style-two .blog-widget .recent-post:last-child {
    padding-bottom: 0;
    border-bottom: 0;
    margin-bottom: 0;
}

.footer-style-two .footer-bottom {
    border-top: 0;
    padding: 0;
}

.footer-style-two .footer-bottom .inner-container {
    padding: 30px 0;
    border-top: 1px solid #333F4D;
}

.footer-style-three .widgets-section {
    padding-top: 80px;
}

.footer-style-three .about-widget-two {
    position: relative;
    border-radius: 10px;
    padding: 30px 40px 40px;
    text-align: center;
}

.footer-style-three .about-widget-two .logo {
    display: inline-block;
    margin-bottom: 10px;
}

.footer-style-three .about-widget-two .text {
    position: relative;
    margin-bottom: 40px;
}

.footer-style-three .links-widget {
    padding-left: 40px;
}

@media (max-width: 992px) {
    .footer-style-three .links-widget {
        padding-left: 0;
    }
}

.footer-style-three .newsletter-widget {
    padding-right: 30px;
    margin-left: -30px;
}

@media (max-width: 992px) {
    .footer-style-three .newsletter-widget {
        padding-right: 0;
        margin-left: 0;
    }
}

.footer-style-three .footer-bottom {
    border-top: 0;
    padding: 0;
}

.footer-style-three .footer-bottom .inner-container {
    padding: 30px 0;
    border-top: 1px solid #333F4D;
}

.contact-list-three {
    position: relative;
}

.contact-list-three .contact-info {
    position: relative;
    padding-left: 80px;
    min-height: 60px;
    margin-bottom: 20px;
}

.contact-list-three .contact-info span {
    color: #e5ebea;
}

.contact-list-three .contact-info .icon {
    position: absolute;
    left: 0;
    top: 0;
    height: 60px;
    width: 60px;
    line-height: 65px;
    text-align: center;
    font-size: 26px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.05);
    overflow: hidden;
    color: #ffff;
}

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

.social-icon-four {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 20px;
}

.social-icon-four li {
    position: relative;
    margin-right: 10px;
}

.social-icon-four li a {
    position: relative;
    display: block;
    height: 50px;
    width: 50px;
    line-height: 47px;
    border-radius: 50px;
    text-align: center;
    color: #ffffff;
    background-color: #fff;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

/* Ajustes gerais para mobile */
@media (max-width: 768px) {
    /* Espaçamento entre os itens do accordion */
    .accordion-item.mb-40 {
        margin-bottom: 20px !important;
    }

    /* Botão do accordion mais compacto */
    .accordion-button {
        padding: 12px 15px;
        font-size: 14px;
        line-height: 1.4;
    }

    /* Ícone de abrir/fechar menor */
    .accordion-button::after {
        width: 16px;
        height: 16px;
    }

    /* Texto do subtítulo */
    .tp-faq-3-subtitle-2 {
        font-size: 12px;
        margin-right: 8px;
    }

    /* Espaçamento interno do conteúdo da resposta */
    .accordion-body {
        padding: 12px 15px;
        font-size: 14px;
    }

    /* Ajuste do container geral */
    .page-faqs .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .tp-faq-wrapper .accordion-button.tp-faq-btn-2 {
        padding: 10px 20px;
        font-size: 16px;
    }
}

/* Ajustes para mobile */
@media (max-width: 768px) {
    .request__content-two {
        text-align: center;
        padding: 30px 20px;
    }

    .request__content-two .title {
        font-size: 24px;
        line-height: 1.4;
        margin-bottom: 15px;
    }

    .request__phone {
        justify-content: center;
        align-items: center;
        margin-bottom: 20px;
    }

    .request__phone .icon {
        margin-bottom: 8px;
    }
}

.link-whats {
    font-size: 15px;
    font-weight: 700;
    color: #5C7B60;
    text-decoration: underline;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s ease;
}

.link-whats i {
    text-decoration: none !important;
    transition: transform 0.3s ease;
}

/* Efeito no hover */
.link-whats:hover {
    color: #4a644d;
    text-decoration: underline;
}

.cta-btn {
    background-color: #5C7B60;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.cta-btn:hover {
    background-color: #4a644f;
    transform: translateY(-2px);
}

.accordion_bg {
    background: white !important;
}

.accordion {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.accordion .accordion-item {
    padding: 12px 20px;
    --bs-accordion-border-width: 0;
    border-radius: 10px;
    border: 1px solid #d1d2e0;
    background: transparent;
}

.accordion .accordion-item .accordion-body {
    color: #222E48;
    padding: 12px 0 0;
    margin-top: 12px;
}

.accordion .accordion-item .accordion-body p {
    font-size: 15px;
    color: #1c1c1c;
}

.accordion .accordion-item .show .accordion-body {
    position: relative;
}

.accordion .accordion-item .show .accordion-body:before {
    content: "";
    position: absolute;
    border-top: 1px dotted #C1C4CC;
    width: 100%;
    top: 0;
    opacity: 1;
}

.accordion .accordion-button {
    padding: 0;
    position: relative;
    gap: 6px;
    font-size: 15px;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
    color: #122418;
}

.accordion .accordion-button::after {
    content: '\f107';
    font-family: "Font Awesome 6 Pro", serif;
    font-weight: normal;
    font-size: 20px;
    width: 40px;
    min-width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-feature-settings: "liga";
    -webkit-font-smoothing: antialiased;
    --bs-accordion-btn-icon-width: 1.75rem;
    background: #5C7B60;
    color: white;
    opacity: 1;
    transition: all 0.35s ease-in-out;
}

.accordion .accordion-item,
.accordion .accordion-button:not(.collapsed) {
    --bs-accordion-btn-icon-transform: rotate(180deg);
}

.accordion .accordion-button:not(.collapsed)::after {
    content: '\f107';
    font-family: "Font Awesome 6 Pro", serif;
    font-weight: normal;
    background: #143720;
}

.accordion .accordion-button:focus {
    border-color: transparent;
    box-shadow: unset;
}

@media (max-width: 767px) {
    .accordion .accordion-button {
        font-size: 14px;
    }

    .accordion .accordion-button::after {
        width: 30px;
        min-width: 30px;
        height: 30px;
    }
}

.accordion-button:not(.collapsed) {
    color: #122418;
    background-color: #ffff;
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .125);
}

.accordion-button:not(.collapsed) {
    color: #122418;
    background-color: #fff;
    box-shadow: none !important; /* Remove o traçado indesejado */
}

.content-bottom .inner {
    text-align: center;
}

.content-bottom .call-info-box-outer {
    background-color: #fff;
    border: 1px solid #5C7B60;
    padding: 10px 10px 10px 35px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    /*display: -webkit-inline-box;*/
    display: -ms-inline-flexbox;
    display: inline-flex;
}

.content-bottom .call-info-box-outer .call-info-box-text {
    font-size: 17px;
    color: #6A726F;
    margin-right: 15px;
}

.content-bottom .call-info-box-outer .call-info-box-text span {
    color: #5C7B60;
    font-weight: 600;
    margin-left: 42px;
}

.content-bottom .call-info-box .icon {
    -webkit-box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    font-size: 24px;
    height: 55px;
    line-height: 55px;
    width: 55px;
    text-align: center;
    margin-right: 15px;
    margin-left: -46px;
}

.content-bottom .call-info-box .icon {
    background-color: #ffff;
    -webkit-box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    color: #143720;
    font-size: 24px;
    height: 55px;
    line-height: 55px;
    width: 55px;
    text-align: center;
    margin-right: 15px;
    margin-left: -46px;
}

.content-bottom .call-info-box {
    background-color: #143720;
    position: relative;
    padding: 8px 60px 8px 20px;
    display: inline-block;
    margin-left: 31px;
    color: #fff;
    font-weight: 600;
}

.call-info-box-link:hover .call-info-box {
    background: #4d6652;
}

@media (max-width: 992px) {
    .content-bottom .call-info-box-outer {
        border: none;
        display: block;
        padding: 10px;
        background: transparent;
        text-align: center;
    }
}

@media (max-width: 992px) {
    .content-bottom .call-info-box-outer .call-info-box-text {
        margin-bottom: 20px;
        text-align: center;
        margin-right: 0;
    }
}

@media (max-width: 992px) {
    .content-bottom .call-info-box {
        margin-left: 0;
    }
}

@media (max-width: 992px) {
    .content-bottom .call-info-box-outer .call-info-box-text span {
        display: block;
        text-align: center;
        margin-left: 0;
    }
}

/* Ajuste apenas para telas entre 768px e 991px */
@media (min-width: 768px) and (max-width: 991px) {
    .header__area-menubar-center-menu {
        display: none !important;
    }

    .responsive__menu {
        display: block !important;
    }
}

@media (max-width: 991px) {
    .header__area.three {
        padding: 25px 0;
    }

    .content-bottom .inner {
        display: none;
    }
}

/* Para telas entre 768px e 1024px (iPad) */
@media (max-width: 1024px) and (min-width: 768px) {
    .footer-column {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 20px;
    }
}

/* Ajuste para telas de 768x1024px (iPad) */
@media (min-width: 768px) and (max-width: 1024px) {
    .request__content-two {
        max-width: 500px;
        margin: 0 auto;
        padding: 30px;
        text-align: center;
    }

    .request__phone {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .request__phone .content span,
    .request__phone .content a {
        display: block;
        text-align: center;
    }

    .btn-three {
        width: 100%;
        max-width: 250px;
        margin: 15px auto 0;
        display: block;
    }
}

/* Banner - Ajustes para iPad */
@media (min-width: 768px) and (max-width: 1024px) {
    .banner__three-single-slide {
        background-size: cover;
        background-position: center center;
        padding: 80px 20px;
    }

    .banner__three-content {
        max-width: 90%;
        text-align: left;
    }

    .banner__three-content .btn-three {
        margin: 0;
    }
}
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 20px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.3);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: bottom 200ms linear;
}
.whatsapp-float img {
    width: 35px;
    height: 35px;
}
.whatsapp-float:hover {
    transform: scale(1.1);
}
/* Quando scroll-up estiver ativo, o WhatsApp sobe */
.scroll-up.active-scroll ~ .whatsapp-float {
    bottom: 90px;
}
/* Ajustes para telas menores que 768px */
@media (max-width: 768px) {
    /* Diminuir altura das imagens */
    .services__three .single-service__image  {
        height: 180px; 
        object-fit: cover; 
        border-radius: 12px; 
        width: 100%;
    }

    /* Ajustar o ícone para não parecer grande demais */
    .services__three .single-service__icon  {
        display: none;
    }

    /* Garantir que o ícone fique bem posicionado */
    .single-service__icon {
        position: absolute;
        bottom: -22px; 
        left: 50%;
        transform: translateX(-50%);
    }

    /* Ajustar o container do serviço para evitar quebra visual */
    .single-service {
        position: relative;
        padding-bottom: 30px;
    }
    .services__three .single-service__content{
      padding: 10px 9px;
    }
    .subtitle-six{
      padding: 13px 18px;
    }
    .service__five-card .content h5{
      font-size: 18px;
    }
}
.custom-mb {
    margin-bottom: 50px;
}

@media (max-width: 768px) {
    .custom-mb {
        margin-bottom: 20px;
    }
    .main-footer .widgets-section{
          padding: 50px 0 10px
    }
}
@media (min-width: 1025px) and (max-width: 1399px) { 
  /* .topbar {
    display: none !important;
  } */
  .service__five-card .content h5{
    font-size: 16px;
  }
  .service__five-card .content p{
    font-size: 14px;
  }
  .service__five-card{
    padding: 30px 10px;
  }
  .header__area-menubar-left-logo a img{
    max-width: 199px;
  }
  .request__content-two .title{
    font-size: 28px;
  }
  .contact-list-three .contact-info .icon {
    height: 50px;
    width: 50px;
    line-height: 55px;
}
.contact-list-three .contact-info {
    padding-left: 60px;
}
.main-footer .widget-content .text{
  font-size: 14px;
}
}
/* Ajuste da topbar entre 1025px e 1399px */
@media (min-width: 1025px) and (max-width: 1399px) {
    .topbar .container {
        max-width: 100%; 
        padding: 0 20px;
    }
}
.step-card {
  border-radius: 16px;
  border: 1px solid #d8d6d6;
   display: flex;
  flex-direction: column;
  justify-content: center; 
  align-items: center;     
  height: 100%;
  text-align: center;
  background: #fff;
}
.icon-wrap {
  position: relative;
  display: inline-block;
}
.step-card h5 {
  font-size: 18px;
}
.step-card p {
  color: #1c1c1c;
}

.icon-circle {
  width: 90px;
  height: 90px;
  background: #122418; 
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: #fff;
  margin: 0 auto;
  position: relative;
}
.icon-circle img{
 width: 56px;
}
.icon-circle::after {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  border: 1px dashed #122418; 
}

.step-number {
  position: absolute;
  top: 5px;
  left: -15px;
  background: #FBC763; 
  color: #122418;
  font-size: 13px;
  font-weight: 600;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.cta-box {
  background: #5C7B60;
  border-radius: 16px;
  text-align: center;
  justify-content: center;
  align-items: center;
}
.cta-box h4 {
  color: #fff;
  line-height: 1.2;
}
.cta-box p {
  color: #e5ebea;
  margin-bottom: 10px;
}
.cta-box {
  display: flex;
  flex-direction: column;
  justify-content: center; 
  align-items: center;   
  height: 100%;            
}
.fz-42{
  font-size: 42px;
}
.service-card {
  background: #fff;
  border-radius: 16px;
  padding: 30px 25px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  text-align: left;
  position: relative;
  border-top: 5px solid #122418;
}

.service-icon-circle {
  width: 90px;
  height: 90px;
  background: #122418; 
  border-radius: 50%;
  margin: 0 auto 15px auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-icon-circle img{
  width: 50px;
}

.service-title {
  text-align: center;
  font-weight: 600;
  font-size: 20px;
  color: #222;
  margin-bottom: 14px;
}

.divider-full {
  width: 100%;
  height: 1px;
  background: #dddd; 
  margin-bottom: 5px;
}

.service-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.service-list li {
  font-weight: 700;
  color: #1F3130;
  margin-top: 12px;
  align-items: flex-start;
}

.service-desc {
  font-size: 15px;
  color: #555;
  margin: 4px 0 10px 0px;
  line-height: 1.6;
}
@media (max-width: 768px) {
    .fz-42 {
        font-size: 28px;
    }
    .service__five {
    margin-top: -70px;
}
}
.service-card svg{
    vertical-align: text-bottom;
}
/* Apenas para iPads (768px a 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
    .banner__three .slider-arrow {
        display: none;
    }
    .service__five {
    margin-top: -80px;
}
}

:target {
   scroll-margin-top: 100px; 
}

@media (max-width: 768px) {
   :target {
      scroll-margin-top: 120px; 
   }
}
/* Até 1024px de largura: esconder topbar e usar sidebar */
@media (max-width: 1024px) {
  .topbar {
    display: none !important;
  }
}
