body {
    background-color: #0a0a0a;
    font-family: "Inter", sans-serif;
    font-weight: 100;
    font-size: 15px;
    letter-spacing: 2px;
    color: #fff;
}

/* HEADER */
.header-section {
    background: #121212;
    padding-top: 200px;
    position: relative;
    background-size: cover;
    background-position: center;
    text-align: center;
    border-bottom: 1px solid #555555;
}

.city-btn {
    border-radius: 30px;
    background: #fff;
    border: 1px solid #dcdcdc;
    font-weight: 600;
    color: #555;
}

.city-btn:hover {
    border-color: #2D8F4E;
    color: #2D8F4E;
}

.city-btn.active {
    background: #2D8F4E;
    color: #fff;
    border-color: #2D8F4E;
}

/* CARD CLIMA */
.weather-card {
    background: linear-gradient(135deg, #1B6B3A, #145A32);
    border-radius: 25px;
    color: #fff;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.temperature {
    font-size: 5rem;
    font-weight: 900;
}

.weather-icon {
    width: 48px;
    height: 48px;
}

.location-text {
    opacity: 0.75;
    font-weight: 500;
}

/* BOXES */
.weather-box {
    background: rgba(255,255,255,0.12);
    padding: 15px;
    border-radius: 20px;
}

.weather-box i {
    width: 22px;
    height: 22px;
    margin-bottom: 5px;
}

.agr-tip {
    background: #E9F7EE;
    border-left: 5px solid #2D8F4E;
    border-radius: 15px;
}

.forecast-card {
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid #e6e6e6;
    transition: 0.3s;
}

.forecast-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

.forecast-card i {
    width: 30px;
    height: 30px;
    margin-top: 8px;
}

.text-dark-green {
    color: #1B3A20;
}

.icon-light {
    width: 18px;
    height: 18px;
}

/* FOOTER BASE */
.footer-section {
    background: #000000;
    position: relative;
}

/* LOGO */
.footer-logo {
    height: 50px;
    filter: brightness(0) invert(1);
}

/* TEXT */
.footer-text {
    color: rgba(255,255,255,0.45);
    max-width: 420px;
    line-height: 1.7;
    font-weight: 300;
}

.footer-cnpj {
    color: rgba(255,255,255,0.3);
    font-size: 14px;
    font-weight: 500;
}

/* TITLES */
.footer-title {
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    margin-bottom: 25px;
    font-weight: 700;
}

/* LINKS */
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-links a, .footer-location {
    color: rgba(255,255,255,0.5);
    fill: rgba(255,255,255,0.5);
    text-decoration: none;
    font-weight: 300;
    font-size: 15px;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links a:hover {
    color: #cf761d;
}

.footer-location i {
    margin-top: 2px;
}

/* BOTTOM */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
}

/* SOCIAL */
.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgb(255 255 255);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.5);
    font-size: 16px;
    transition: 0.3s;
    text-decoration: none;
}

.footer-social a:hover {
    background: rgba(255,255,255,0.12);
    color: #fff;
}

.footer-social a.whatsapp:hover {
    background: rgba(37, 211, 102, 0.2);
    color: #cf761d;
}

/* RESPONSIVO */
@media (max-width: 768px) {
    .footer-text {
        max-width: 100%;
    }
}

/* HERO BASE */
.hero-section {
    min-height: 100vh;
    overflow: hidden;
    color: #fff;
}

/* Background Image */
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-size: cover;
    background-position: center;
}

/* Gradient Overlay */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgb(0 0 0 / 90%), rgb(0 0 0 / 70%), rgb(0 0 0 / 60%));
    z-index: 1;
}

/* Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 50px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #cf761d;
    font-weight: 600;
    margin-bottom: 40px;
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: #cf761d;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        opacity: 0.3;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0.3;
    }
}

/* Title */
.hero-title {
    font-size: clamp(2.5rem, 6vw, 3rem);
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 25px;
}

.hero-gradient {
    background: linear-gradient(90deg, #cf761d, #cf761d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Text */
.hero-text {
    color: rgba(255,255,255,0.65);
    font-size: 1.2rem;
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 40px;
}

/* Buttons */
.btn-whatsapp-hero {
    border: 1px solid #cf761d;
    color: #cf761d !important;
     font-weight: bold;
    min-height: 40px;
    padding: 0 30px;
    border-radius: 0;
    box-shadow: 2px 8px 15px rgb(177 130 47 / 26%);
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    fill: #cf761d !important;
}

.btn-whatsapp-hero:hover {
    background: #cf761d;
    transform: translateY(-3px);
    color: #000000 !important;
    fill: #000 !important;
}

.btn-outline-hero {
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff;
    fill: #fff;
    min-height: 40px;
    padding: 0 30px;
    backdrop-filter: blur(5px);
    display: inline-flex;
    align-items: center;
    transition: 0.3s;
    border-radius: 0;
}

.btn-outline-hero:hover {
    background: rgba(255,255,255,0.1);
    color: #fff;
}

/* Bottom Stats */
.hero-stats {
    position: relative;
    bottom: 0;
    width: 100%;
    background: #000000;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 50px 0;
    z-index: 2;
}

.stat-item h4 {
    font-weight: 900;
    margin-bottom: 3px;
    color: #cf761d;
    font-size: 40px;
}

.stat-item p {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    margin: 0;
}

/* RESPONSIVO */
@media (max-width: 768px) {
    .hero-section {
        text-align: center;
        height: 830px;
    }

    .hero-text {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }
}

/* SECTION */
.products-section {
    padding-top: 120px;
    padding-bottom: 120px;
}

/* BADGE */
.products-badge {
    color: #cf761d;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

/* TITLE */
.products-title {
    font-size: clamp(1rem, 2vw, 2rem);
    font-weight: 900;
    line-height: 1.2;
    color: #111;
}

/* LINK */
.products-link {
    color: #2D8F4E;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
    white-space: nowrap;
}

.products-link:hover {
    gap: 12px;
}

/* CARD */
.product-card {
    display: block;
    background: #FAFAF9;
    overflow: hidden;
    border: 1px solid #eee;
    transition: 0.35s;
    text-decoration: none;
    color: inherit;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(45, 143, 78, 0.08);
}

/* IMAGE */
.product-image {
    position: relative;
    height: 370px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.product-card:hover img {
    transform: scale(1.07);
}

.product-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgb(0 0 0 / 94%), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 10px;
}

.product-category {
    position: relative;
    font-size: 12px;
    color: rgba(255,255,255,0.85);
    display: flex;
    border-radius: 10px;
    bottom: 0;
    width: 100%;
    align-items: flex-start;
    padding: 15px;
    flex-direction: column;
}

/* BODY */
.product-body {
    padding: 20px;
    min-height: 190px;
}

.product-body h3 {
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 6px;
    color: #111;
}

.product-body p {
    font-size: 14px;
    color: #777;
    font-weight: 300;
    margin-bottom: 20px;
    line-height: 1.5;
}

/* MORE */
.product-more {
    color: #cf761d;
    fill: #cf761d;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: 0.3s;
    padding: 8px 8px;
    border-radius: 100px;
}

.product-card:hover .product-more {
    gap: 10px;
}

/* SECTION */
.timeline-section {
    background: #FAFAF9;
    padding-top: 120px;
    padding-bottom: 120px;
}

/* BADGE */
.timeline-badge {
    color: #cf761d;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 15px;
}

/* TITLE */
.timeline-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    line-height: 1.2;
    color: #111;
}

/* LINK */
.timeline-link {
    color: #2D8F4E;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
    white-space: nowrap;
}

.timeline-link:hover {
    gap: 12px;
}

/* LINE */
.timeline-wrapper {
    position: relative;
}

.timeline-line {
    position: absolute;
    top: 55px;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, rgba(45,143,78,0.3), rgba(212,160,23,0.3), rgba(45,143,78,0.1) );
}

/* ITEM */
.timeline-item {
    position: relative;
    padding-top: 10px;
    transition: 0.3s;
}

.timeline-dot {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 2px solid #2D8F4E;
    background: #fff;
    margin: 0 auto 12px auto;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.timeline-dot::after {
    content: "";
    width: 10px;
    height: 10px;
    background: transparent;
    border-radius: 50%;
}

/* YEAR */
.timeline-year {
    font-size: 20px;
    font-weight: 900;
    color: #cf761d;
    display: block;
    margin-bottom: 5px;
}

/* TEXT */
.timeline-text {
    font-size: 13px;
    color: #777;
    font-weight: 300;
    line-height: 1.4;
    margin: 0;
    padding: 0 10px;
}

/* HOVER EFFECT */
.timeline-item:hover .timeline-dot {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(45,143,78,0.15);
}

/* RESPONSIVO */
@media (max-width: 768px) {
    .timeline-line {
        display: none;
    }
}

/* SECTION */
.distribution-section {
    padding: 60px 0;
    background: #251f18;
    color: white;
}

/* TEXTURA */
.dot-pattern {
    position: absolute;
    inset: 0;
    background: #000000c4;
    background-size: 30px 30px;
}

/* GLOWS */
.glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
}

.glow-gold {
    width: 400px;
    height: 400px;
    top: 0;
    right: 0;
    background: rgb(225 222 214 / 15%);
}

.glow-green {
    width: 250px;
    height: 250px;
    bottom: 0;
    left: 0;
    background: rgba(58, 175, 92, 0.2);
}

/* BADGE */
.distribution-badge {
    color: #cf761d;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 15px;
}

/* TITLE */
.distribution-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    margin-bottom: 20px;
}

.highlight-gradient {
    background: linear-gradient(to right, #cf761d, #cf761d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* SUBTITLE */
.distribution-subtitle {
    color: rgba(255,255,255,0.6);
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
}

/* MAP */
.mapa-img {
    max-width: 500px;
    transition: 0.4s;
}

.map-hint {
    font-size: 12px;
    color: rgba(255,255,255,0.4);
    margin-top: 15px;
}

/* STATE CARD */
.state-card {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(6px);
    padding: 20px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 15px;
    transition: 0.3s;
    fill: #fff;
}

.state-card:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-4px);
}

/* BADGE UF */
.state-badge {
    width: 50px;
    height: 50px;
    background: rgb(135 29 50);
    border: 1px solid rgb(171 5 38);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    color: #ffffff;
    flex-shrink: 0;
}

/* CHECK */
.check-icon {
    color: #cf761d;
    font-size: 14px;
}

/* TEXT */
.state-card p {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    margin: 4px 0 0 0;
}

/* EXTRA BOX */
.extra-box {
    background: rgba(232, 184, 48, 0.08);
    border: 1px solid rgba(232, 184, 48, 0.2);
    padding: 20px;
    border-radius: 20px;
}

.extra-title {
    color: #cf761d;
    font-weight: 600;
    font-size: 14px;
}

.extra-text {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    margin-top: 5px;
}

.pagination-area {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.page-numbers {
    background: #cf761d;
    color: #fff;
    padding: 5px 10px;
    text-decoration: none;
    margin: 3px;
}

.navbar .logo {
    filter: brightness(0) invert(1);
}

.navbar a {
    color: #fff;
    fill: #fff;
}

.navbar a:hover {
    color: #cf761d;
    fill: #cf761d;
}

.navbar-scrolled a {
    color: #000;
}

.navbar-scrolled {
    background: #fff;
}

.navbar-scrolled .logo {
    filter: unset;
}

.mapa svg {
    width: 100%;
    height: fit-content;
}

.infoClima {
    background: rgba(58,175,92,0.2);
    border: 1px solid rgba(58,175,92,0.4);
    border-radius: 14px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#temperatura {
    font-size: 90px;
}

@media screen and (max-width: 991px) {
    .navbar-toggler {
        border:0;
    }

    .navbar-toggler-icon {
        filter: invert(1);
    }

    #navbarContent {
        background: #fff;
        padding: 20px;
        border-radius: 8px;
        margin-top: 10px;
        box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    }

    #navbarContent .nav-link {
        color: #000 !important;
    }
}

.titulo {
    color: #2e7d32;
    font-weight: bold;
}

.card-agro {
    border-top: 5px solid #43a047;
}

.moeda-nome {
    font-size: 22px;
    font-weight: bold;
}

.moeda-nome i {
    color: #2e7d32;
}

.valor {
    font-weight: bold;
}

.cotacao-atual {
    font-size: 18px;
    color: #1b5e20;
    font-weight: bold;
}

.data-info {
    font-size: 13px;
    color: #777;
}

.header-section:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    /* background: #ffffff; */
    top: 0;
    left: 0;
    mix-blend-mode: multiply;
}

.mapa path {
    fill: #fff !important;
    cursor: pointer;
}

.mapa path:hover {
    fill: #dfdfdf !important;
}

path.atuacao {
    fill: #cf761d !important;
}

path.atuacao:hover {
    fill: #000 !important;
}

.btn-secondary, .btn-success {
    fill: #fff;
}

#navbarContent a {
    margin-right: 15px;
}

.line {
    display: block;
    width: 50px;
    background: #cf761d;
    height: 1px;
    margin-right: 10px;
}

.colorTexto {
    background: linear-gradient(90deg, #cf761d, #cf761d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.liner {
    margin-right: 0;
    margin-left: 10px;
}

.contatob {
    height: 550px;
    display: flex;
    align-items: center;
    border-bottom: 2px solid #cf761d;
}

.contatob:before {
    content: "";
    background: #413932;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    mix-blend-mode: multiply;
}

.filter {
    width: 100%;
    border: 1px solid #ffffff38;
    padding: 120px 0;
}

@media (max-width: 576px) {
    .filter {
        border: none;
    }
}

.nuvem {
    width: 100%;
    height: 100px;
    /* ajuste conforme precisar */
    background: radial-gradient(circle at 20% 0%, rgba(255,255,255,0.25), transparent 60%), radial-gradient(circle at 80% 0%, rgba(255,255,255,0.2), transparent 60%), radial-gradient(circle at 50% 10%, rgba(255,255,255,0.3), transparent 70%), linear-gradient(to bottom, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.2) 40%, rgba(255,255,255,0.6) 75%, rgba(255,255,255,1) 100% );
    filter: blur(9px);
    position: absolute;
    margin-top: -100px;
    z-index: 1;
}

.servico-card {
    text-decoration: none;
    transition: .35s;
}

.servico-card:hover {
    transform: translateY(-8px);
    background: rgba(255,255,255,.07);
}

.servico-icon {
    width: 55px;
    height: 55px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 20px;
    padding: 13px;
    border: 1px solid #cf761d;
}

.servico-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #000;
}

.servico-card p {
    color: rgba(255,255,255,.5);
    font-size: 14px;
    margin-bottom: 18px;
}

.servico-link {
    color: #cf761d;
    font-size: 14px;
}

.servico-card:hover .servico-link i {
    transform: translateX(5px);
    transition: .3s;
}

.servico-icon img {
    width: 100%;
    filter: brightness(0) saturate(101%) invert(52%) sepia(65%) saturate(1410%) hue-rotate(13deg);
}

.header-section h1 {
    font-size: 35px;
    z-index: 2;
    position: relative;
}

.product-cardp .product-overlay {
    position: relative;
    background: #f7f7f7;
     }

.product-cardp {
    text-decoration: none;
    }

.product-cardp .product-image {
    height: auto;
    border: 1px solid #cf761d;
    border-radius: 5px;
}

.product-cardp .product-category {
    color: #000;
    text-align: justify;
}

.product-cardp .product-more {
    border: 1px solid;
    width: 100%;
    border-radius: 2px;
    display: flex;
    justify-content: center;
}

.product-cardp .product-more:hover {
    background: #cf761d;
    color: #fff;
    fill: #fff;
}

.hero-slider {
    position: relative;
    overflow: hidden;
}

.slides {
    display: flex;
    transition: transform 0.5s ease;
}

.slide {
    min-width: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
}

.slide.active {
    opacity: 1;
    position: relative;
}

.slider-dots {
    text-align: center;
    margin-top: 20px;
}

.dot {
    height: 10px;
    width: 10px;
    margin: 0 5px;
    background: #ccc;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
}

.dot.active {
    background: #000;
}

.about-image-wrapper {
    position: relative;
    max-width: 100%;
}

.about-image {
    width: 100%;
    border-radius: 2px;
    object-fit: cover;
    min-height: 450px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.experience-box {
    position: absolute;
    right: 25px;
    bottom: -22px;
    background: #cf761d;
    color: #fff;
    text-align: center;
    padding: 20px;
    border-radius: 2px;
    width: 200px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.12);
}

.experience-box h2 {
    font-size: 42px;
    font-weight: 700;
    margin: 0;
    color: #ffffff;
    line-height: 1;
}

.experience-box p {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255,255,255,0.9);
}

.feature-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.marca {
    filter: grayscale(1);
    transition: 0.5s;
}

.marca:hover img {
    transform: scale(1.1);
    transition: 0.5s;
}

.marca:hover {
    filter: none;
    transition: 0.5s;
}

.marca img {
    transition: 0.5s;
}

table {
    text-align: center;
}

thead {
    background: #cf761d;
}

.lineTable {
    background: #e7e7e7;
}

.serv {
    color: #fff;
    border-bottom: 1px solid #2d2d2d;
}

h1, h2, h3, h4, h5, h6{
    font-family: "Playfair Display", serif;
    font-weight: 400;
}

.serv li::before {
    color: #cf761d;
    content: "✓ ";
}

.serv ul {padding: 0;list-style: none;margin: 0;}

#formWhatsapp {
    border: 1px solid #3d3d3d;
    border-radius: 5px;
}


.history-section{
    background: #111111;
    color:#fff;
    overflow:hidden;
}

.timeline{
    padding-top:20px;
}

.timeline-line{
    position:absolute;
    top: 60%;
    left:0;
    width:100%;
    height:1px;
    background:rgba(255,255,255,.12);
}

.timeline .col{
}

.timeline-dot{
    width:10px;
    height:10px;
    border:1px solid rgba(255,255,255,.4);
    border-radius:50%;
    background:#050505;
    margin:0 auto 10px;
    position:relative;
    z-index:2;
}

.timeline span{
    font-size:14px;
    color:rgba(255,255,255,.45);
}

.section-mini{
    font-size:12px;
    letter-spacing:4px;
    color:rgba(255,255,255,.45);
}

.section-title{
    line-height:1.1;
    font-weight:500;
    max-width:520px;
}

.section-text{
    color:rgba(255,255,255,.6);
    font-size:18px;
    line-height:1.8;
    max-width:520px;
}

.stats-row h3{
    font-weight:600;
    margin-bottom:10px;
}

.stats-row span{
    color:rgba(255,255,255,.55);
    font-size:15px;
}

.bottom-link{
    border-top:1px solid rgba(255,255,255,.12);
    padding-top:28px;
}

.bottom-link a{
    color:#fff;
    text-decoration:none;
    font-weight:500;
    font-size:18px;
    transition:.3s;
}

.bottom-link a:hover{
    opacity:.7;
}

.arrow{
    margin-left:10px;
}

.experience{
    color:rgba(255,255,255,.45);
    font-size:16px;
}

@media(max-width:991px){

    .bottom-link{
        flex-direction:column;
        align-items:flex-start !important;
        gap:15px;
    }
}

@media(max-width:575px){

    .section-text{
        font-size:16px;
    }

    .stats-row .col-4{
        width:100%;
    }
}


.srv {
    background-size: cover !important;!i;!;
    background-repeat: no-repeat !important;!i;!;
    background-position: center !important;!i;!;
    position: relative;
}

.srv:before {
    content: "";
    background: #111111;
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 0;
    transition: all 0.5s;
}

.srv:hover::before {
    opacity: .90; 
    transition: all 0.5s;
}

.srv:hover .textDesc{
    color: #fff;
    transition: all 0.5s;
}

.srv .row {
    position: relative;
    z-index: 2;
}

.number {
    font-family: "Playfair Display", serif;
    font-size: 50px;
    color: #777777 !important;!i;!;
}

.textDesc {
    color: #111111;
    transition: all 0.5s;
}

.fill-white{
    fill: #fff;
}