:root {

    /* Color Theme Swatches in Hex */
    --aconcagua-color-1: #0E2F59;
    --aconcagua-color-2: #2d91dd;
    --aconcagua-color-3: rgb(28, 116, 185);
    --aconcagua-color-4: #3C4E2B;
    --aconcagua-color-5: #97c36b;
    --aconcagua-color-6: #AEE07B;
    --aconcagua-color-7: #4E3025;
    --aconcagua-color-8: #b3715a;
    --aconcagua-color-9: #D9C2A7;
    --aconcagua-color-10: #404040;
    --aconcagua-color-11: #F1F3F2;

    --color-1: #16a9ff;
    --color-2: #111c3d;
    --color-3: hsla(39, 93%, 95%, 1);

    /* theme color variations
     */
    --color-1-lightest: #8dd2fa;
    --color-1-lighter: #68c0f3;
    --color-1-light: #40b9ff;
    --color-1-dark: #00cd67;
    --color-1-darker: #c2edc4;
    --color-1-darkest: hsla(35, 87%, 10%, 1);

    --color-2-lightest: hsla(127, 8%, 55%, 1);
    --color-2-lighter: hsla(127, 8%, 42%, 1);
    --color-2-light: hsla(127, 8%, 32%, 1);
    --color-2-dark: hsla(127, 8%, 14%, 1);
    --color-2-darker: hsla(127, 8%, 2%, 1);

    --color-3-light: hsla(39, 93%, 100%, 1);
    --color-3-dark: hsla(39, 93%, 85%, 1);
    --color-3-darker: hsla(39, 93%, 75%, 1);

    /* feedback colors
     * color-error(#ffd1d2), color-success(#c8e675), 
     * color-info(#d7ecfb), color-notice(#fff099)
     */
    --color-error: hsla(359, 100%, 91%, 1);
    --color-success: hsla(76, 69%, 68%, 1);
    --color-info: hsla(205, 82%, 91%, 1);
    --color-notice: hsla(51, 100%, 80%, 1);
    --color-error-content: hsla(359, 50%, 50%, 1);
    --color-success-content: hsla(76, 29%, 28%, 1);
    --color-info-content: hsla(205, 32%, 31%, 1);
    --color-notice-content: hsla(51, 30%, 30%, 1);

    /* shades 
     * generated using 
     * Tint & Shade Generator 
     * (https                     ://maketintsandshades.com/)
     */
    --color-black: #000000;
    --color-gray-19: #121212;
    --color-gray-18: #242525;
    --color-gray-17: #363737;
    --color-gray-16: #484949;
    --color-gray-15: #5b5c5c;
    --color-gray-14: #6d6e6e;
    --color-gray-13: #7f8080;
    --color-gray-12: #919292;
    --color-gray-11: #a3a5a5;
    --color-gray-10: #b5b7b7;
    --color-gray-9: #bcbebe;
    --color-gray-8: #c4c5c5;
    --color-gray-7: #cbcdcd;
    --color-gray-6: #d3d4d4;
    --color-gray-5: #dadbdb;
    --color-gray-4: #e1e2e2;
    --color-gray-3: #e9e9e9;
    --color-gray-2: #f0f1f1;
    --color-gray-1: #f8f8f8;
    --color-white: #ffffff;

    /* text
     */
    --color-text: var(--color-gray-18);
    --color-text-dark: #181818;
    --color-text-light: var(--color-gray-14);
    --color-placeholder: var(--color-gray-12);

    /* link
     */
    --color-link: var(--aconcagua-color-3);
    --color-link-hover: var(--aconcagua-color-6);
    --color-link-active: var(--color-white);

    /* buttons
     */
    --color-btn: var(--aconcagua-color-4);
    --color-btn-text: var(--color-text);
    --color-btn-hover: var(--aconcagua-color-9);
    --color-btn-hover-text: var(--color-text);
    --color-btn-primary: var(--aconcagua-color-5);
    --color-btn-primary-text: var(--color-2-dark);
    --color-btn-primary-hover: var(--aconcagua-color-5);
    --color-btn-primary-hover-text: var(--color-2-dark);
    --color-btn-stroke: var(--color-text-dark);
    --color-btn-stroke-text: var(--color-text-dark);
    --color-btn-stroke-hover: var(--color-text-dark);
    --color-btn-stroke-hover-text: var(--color-white);

    /* preloader
     */
    --color-preloader-bg: var(--color-2-dark);
    --color-loader: var(--color-white);
    --color-loader-light: var(--color-2-light);

    /* others
     */
    --color-body: white;
    --color-border: rgba(0, 0, 0, .1);
    --border-radius: 5px;
}

.light-1 {
    color: var(--aconcagua-color-3);
}

.light-2 {
    color: var(--aconcagua-color-10);
}

.bg-primary-light {
    background-color: #e2f1fd;
}

.bg-primary-gradient {
    background: linear-gradient(120deg, rgb(28, 116, 185) 0%, rgb(28, 116, 185) -7%, rgb(151, 195, 107) 175%);
}

/*** Spinner Start ***/
/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

/*** Spinner End ***/

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    transition: 0.5s;
    z-index: 99;
}

/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-xl-square {
    width: 66px;
    height: 66px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square,
.btn-xl-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.btn.btn-primary {
    color: var(--color-white);
    /* background: var(--color-btn-primary); */
    background: linear-gradient(90deg, rgb(28, 116, 185) 0%, rgb(28, 116, 185) 50%, rgb(151, 195, 107) 90%);
    background-size: 300% 300%;
    animation: gradient 10s ease infinite;
    border: none;
}

.btn.btn-primary:hover {
    /* Keep the animated gradient on hover for smooth transition */
    background: linear-gradient(90deg, rgb(28, 116, 185) 0%, rgb(28, 116, 185) 50%, rgb(151, 195, 107) 90%);
    background-size: 300% 300%;
    animation: gradient 10s ease infinite;
    border: none;
    filter: brightness(1.2);
}

.btn.btn-secondary {
    color: var(--color-white) !important;
    background: var(--aconcagua-color-3);
    border: none;
}

.btn.btn-secondary:hover {
    color: var(--color-white);
    background: var(--aconcagua-color-2);
}

/*** Topbar Start ***/

/*** Navbar ***/
.navbar-light .navbar-nav .nav-link {
    position: relative;
    margin-right: 25px;
    padding: 35px 0;
    color: var(--bs-white);
    font-size: 17px;
    font-weight: 400;
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--aconcagua-color-1);
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--aconcagua-color-3);
}

.navbar-light .navbar-brand img {
    max-height: 60px;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-brand img {
    max-height: 45px;
}

/* Always show dropdown items in mobile menu */
@media (max-width: 991.98px) {
    .navbar .nav-item .dropdown-menu {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: static !important;
        transform: none !important;
        box-shadow: none;
        border: none;
        min-width: 100%;
    }

    .dropdown-item {
        padding: 10px 20px;
        color: var(--aconcagua-color-1);
        background: transparent;
        transition: background 0.3s, color 0.3s;
        border-radius: 6px;
    }

    .sticky-top.navbar-light {
        position: relative;
        background: var(--bs-white);
    }

    .navbar.navbar-expand-lg .navbar-toggler {
        padding: 10px 20px;
        border: 1px solid var(--aconcagua-color-3);
        color: var(--aconcagua-color-3);
    }

    .navbar-light .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid rgba(0, 0, 0, .08);
    }

    .navbar-light .navbar-nav .nav-link,
    .sticky-top.navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
        margin-left: 0;
        color: var(--aconcagua-color-1);
    }

    .navbar-light .navbar-brand img {
        max-height: 45px;
    }
}

@media (min-width: 992px) {
    .navbar .dropdown-toggle::after {
        border: none;
        content: "\f107";
        font-family: "Font Awesome 5 Free";
        font-weight: 600;
        vertical-align: middle;
        margin-left: 8px;
        color: var(--aconcagua-color-3);
    }

    .dropdown .dropdown-menu {
        background: var(--aconcagua-color-11);
        border-radius: 10px;
        border: 1px solid var(--aconcagua-color-9);
        box-shadow: 0 4px 24px rgba(14, 47, 89, 0.08);
        padding: 0.5rem 0;
        min-width: 200px;
        transition: 0.3s;
    }

    .dropdown .dropdown-menu a {
        color: var(--aconcagua-color-1);
        padding: 10px 20px;
        font-size: 16px;
        font-weight: 500;
        background: transparent;
        transition: background 0.3s, color 0.3s;
        border-radius: 6px;
    }

    .dropdown .dropdown-menu a:hover,
    .dropdown .dropdown-menu a:focus {
        background: linear-gradient(90deg, rgb(28, 116, 185) 0%, rgb(151, 195, 107) 175%);
        color: var(--bs-white);
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        background: var(--aconcagua-color-11);
        transition: .5s;
        opacity: 1;
        display: block;
    }

    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        border-radius: 10px;
        transition: .5s;
        opacity: 0;
    }

    .navbar-light {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        border-top: 0;
        border-right: 0;
        border-bottom: 1px solid;
        border-left: 0;
        z-index: 999;
    }

    .sticky-top.navbar-light {
        position: fixed;
        background: rgba(256, 256, 256, 0.88);
        backdrop-filter: blur(3px);
        border: none;
        box-shadow: 0px 0px 13px #00000054;
    }

    .navbar-light .navbar-nav .nav-item::before {
        position: absolute;
        content: "";
        width: 0;
        height: 2px;
        bottom: -1px;
        left: 50%;
        background: var(--aconcagua-color-3);
        transition: .5s;
    }

    .sticky-top.navbar-light .navbar-nav .nav-item::before {
        bottom: 0;
    }

    .navbar-light .navbar-nav .nav-item::after {
        content: "";
        position: absolute;
        bottom: 1px;
        left: 50%;
        transform: translateX(-50%);
        border: 10px solid;
        border-color: transparent transparent var(--aconcagua-color-3) transparent;
        opacity: 0;
        transition: 0.5s;
    }

    .navbar-light .navbar-nav .nav-item:hover::after,
    .navbar-light .navbar-nav .nav-item.active::after {
        bottom: 1px;
        opacity: 1;
    }

    .navbar-light .navbar-nav .nav-item:hover::before,
    .navbar-light .navbar-nav .nav-item.active::before {
        width: calc(100% - 2px);
        left: 1px;
    }

    .navbar-light .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }
}

/*** Carousel Hero Header Start ***/
.carousel-header {
    position: relative;
    overflow: hidden;
}

.carousel-indicators {
    display: none;
}

.carousel .carousel-control-prev,
.carousel .carousel-control-next {
    width: 0;
}

.carousel .carousel-control-prev .carousel-control-prev-icon,
.carousel .carousel-control-next .carousel-control-next-icon {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    padding: 25px 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--aconcagua-color-3);
    transition: 0.5s;
}

.carousel .carousel-control-prev .carousel-control-prev-icon {
    left: 0;
    border-left: 0;
    border-top-left-radius: 0;
    border-top-right-radius: 50px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 50px;

}

.carousel .carousel-control-next .carousel-control-next-icon {
    right: 0;
    border-right: 0;
    border-top-left-radius: 50px;
    border-top-right-radius: 0;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 0;
}

.carousel .carousel-control-prev .carousel-control-prev-icon:hover,
.carousel .carousel-control-next .carousel-control-next-icon:hover {
    background: var(--aconcagua-color-1);
}

.carousel .carousel-inner .carousel-item {
    position: relative;
}

.carousel .carousel-inner .carousel-item .carousel-caption-1 {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    padding-top: 100px;
    display: flex;
    align-items: center;
    justify-content: end;
    background: linear-gradient(rgba(14, 49, 88, 0.2), rgba(14, 49, 88, 0.0));
    background-size: cover;
}

.carousel-caption-1-content {
    text-align: end;
    padding-right: 100px;
}

.carousel-caption-1-content .carousel-caption-1-content-btn {
    display: flex;
    justify-content: end;
}

.carousel .carousel-inner .carousel-item .carousel-caption-2 {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    padding-top: 100px;
    display: flex;
    align-items: center;
    text-align: center;
    background: linear-gradient(rgba(14, 49, 88, 0.7), rgba(14, 49, 88, 0.3));
    background-size: cover;
}

.carousel-caption-2-content {
    text-align: start;
    padding-left: 100px;
}

.carousel-caption-2-content .carousel-caption-2-content-btn {
    display: flex;
    justify-content: start;
}


@media (max-width: 992px) {
    .carousel .carousel-inner .carousel-item {
        height: 700px;
        margin-top: -100px;
    }

    .carousel .carousel-inner .carousel-item img {
        height: 700px;
        object-fit: cover;
    }


    .carousel .carousel-inner .carousel-item .carousel-caption-1 {
        max-width: 100% !important;
        justify-content: center;
    }

    .carousel-caption-1-content {
        padding: 0 20px !important;
        text-align: center !important;
    }

    .carousel-caption-1-content .carousel-caption-1-content-btn {
        justify-content: center;
    }


    .carousel .carousel-inner .carousel-item .carousel-caption-2 {
        max-width: 100% !important;
        justify-content: center;
    }

    .carousel-caption-2-content {
        padding: 0 20px !important;
        text-align: center !important;
    }

    .carousel-caption-2-content .carousel-caption-2-content-btn {
        justify-content: center;
    }



    .carousel .carousel-control-prev .carousel-control-prev-icon,
    .carousel .carousel-control-next .carousel-control-next-icon {
        display: none;
    }
}

.modal .modal-header {
    height: 100px;
}

#searchModal .modal-content {
    background: rgba(255, 255, 255, .6);
}

/*** Carousel Hero Header End ***/

/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(14, 49, 88, 0.9), rgba(14, 49, 88, 0.6)), url(../img/theme/breadcrumbs_hands.jpg);
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 120px 0 60px 0;
    transition: 0.5s;
}

.bg-breadcrumb .breadcrumb {
    position: relative;
}

.bg-breadcrumb .breadcrumb .breadcrumb-item a {
    color: var(--bs-white);
}

@media (max-width: 992px) {
    .bg-breadcrumb {
        padding: 60px 0 60px 0;
    }
}

/*** Single Page Hero Header End ***/


/*** Features Start ***/
.feature .feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: var(--bs-white);
    border-radius: 10px;
    transition: 0.5s;
}

.feature .feature-item:hover {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

.feature .feature-item .feature-icon {
    width: 100px;
    height: 100px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--aconcagua-color-5);
}

/* .feature .feature-item .feature-icon:hover {
    background: var(--aconcagua-color-5);
    .feature .feature-item .feature-icon {
        background: var(--aconcagua-color-5);
    }
} */

.feature .feature-item .feature-icon i {
    transition: 0.5s;
}

/* .feature .feature-item:hover .feature-icon i {
    background: var(--aconcagua-color-5);
} */

.feature .feature-item a.btn {
    transition: 0.5s;
}

.feature .feature-item:hover a.btn:hover {
    color: var(--aconcagua-color-1) !important;
}

/*** Features End ***/

/*** About Start ***/
.about .about-img {
    position: relative;
    padding-bottom: 30px;
    margin-top: 30px;
    margin-left: 30px;
}

.about .about-img::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 10px;
    top: -30px;
    right: 0;
    border-radius: 10px;
    background: var(--aconcagua-color-3);

}

.about .about-img::after {
    content: "";
    position: absolute;
    width: 10px;
    height: 100%;
    left: -30px;
    bottom: 30px;
    border-radius: 10px;
    background: var(--aconcagua-color-3);
}

.about .about-img .about-exp {
    position: absolute;
    top: 0;
    left: 0;
    padding: 25px;
    font-size: 30px;
    font-weight: bold;
    background: var(--aconcagua-color-3);
    color: var(--bs-white);
    border: 1px solid var(--aconcagua-color-3);
    margin-top: -30px;
    margin-left: -30px;
    border-radius: 10px;
}

/*** About End ***/

/*** Service Start ***/
.service-item {
    position: relative;
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

.service-item::after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    left: 0;
    bottom: 0;
    border-radius: 10px;
    background: var(--aconcagua-color-3);
    transition: 0.5s;
    z-index: 1;
}

.service-item:hover::after {
    width: 100%;
    height: 100%;
}

.service-item:hover .service-content,
.service-item:hover .service-btn {
    position: relative;
    z-index: 2;
}

.service-item .service-content a,
.service-item .service-content p {
    transition: 0.5s;
}

.service-item:hover .service-content a:hover {
    color: var(--bs-white);
}

.service-item:hover .service-content p,
.service-item:hover .service-content a {
    color: var(--bs-white);
}

.service-item .service-btn {
    width: 80px;
    height: 80px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--aconcagua-color-3);
    transition: 0.5s;
}

.service-item .service-btn,
.service-item .service-btn i {
    transition: 0.5s;
}

.service-item:hover .service-btn {
    background: var(--bs-white);
}

.service-item:hover .service-btn,
.service-item:hover .service-btn i {
    transform: scale(110%);
    color: var(--aconcagua-color-3) !important;
}

/*** Service End ***/


/*** Counter Start ***/
.counter {
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(14, 49, 88, 0.9), rgba(14, 49, 88, 0.7)), url(../img/theme/avocados_leaves_banner.jpg);
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
}

.counter .counter-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.counter .counter-item .counter-item-icon {
    width: 100px;
    height: 100px;
    border-radius: 50px;
    background: var(--aconcagua-color-3);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/*** Counter End ***/


/*** Products Start ***/
.product .product-item {
    border: 1px solid rgba(196, 211, 211, 0.9);
    border-radius: 10px;
}

/*** Products End ***/

/*** Blog Start ***/
.blog .blog-item {
    border-radius: 10px;
    background: var(--aconcagua-color-11);
    transition: 0.5s;
}

.blog .blog-item:hover {
    box-shadow: 0 0 45px rgba(0, 0, 0, 0.2);
}

.blog .blog-item .blog-img {
    position: relative;
    overflow: hidden;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.blog .blog-item .blog-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    transition: 0.5s;
    z-index: 1;
}

.blog .blog-item .blog-img img {
    transition: 0.5s;
}

.blog .blog-item:hover .blog-img img {
    transform: scale(1.1);
}

.blog .blog-item:hover .blog-img::after {
    background: rgba(0, 209, 249, 0.2);
}

.blog .blog-item .blog-date {
    position: absolute;
    top: 25px;
    left: 25px;
    border-radius: 10px;
    background: var(--aconcagua-color-3);
    color: var(--bs-white);
    z-index: 2;
}

.blog .blog-item .blog-content a {
    transition: 0.5s;
}

.blog .blog-item:hover .blog-content a:hover {
    color: var(--aconcagua-color-3) !important;
}

/*** Blog End ***/

/*** Team Start ***/
.team .team-item {
    position: relative;
    overflow: hidden;
    background: var(--bs-white);
    border: 1px solid var(--aconcagua-color-1);
    border-radius: 10px;
}

.team .team-item .team-inner {
    transition: 0.5s;
}

.team .team-item:hover .team-inner {
    box-shadow: 0 0 45px rgba(0, 0, 0, 0.2);
}

.team .team-item .team-inner .team-img {
    position: relative;
    z-index: 2;
}

.team .team-item .team-inner .team-img::after {
    content: "";
    width: 100%;
    height: 0;
    position: absolute;
    top: 0;
    left: 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    /* background: rgba(0, 209, 249, 0.2); */
    transition: 0.5s;
    z-index: 3;
}

.team .team-item:hover .team-inner .team-img::after {
    height: 100%;
}

.team .team-item .team-inner .team-img .team-share {
    position: absolute;
    left: 10px;
    bottom: 10px;
    transition: 0.5s;
    z-index: 2;
    color: var(--aconcagua-color-1);
}

.team .team-item:hover .team-inner .team-img .team-share {
    opacity: 0;
}

.team .team-item .team-inner .team-img .team-icon {
    position: absolute;
    bottom: 0;
    left: -100%;
    border-bottom-left-radius: 0 !important;
    border-top-left-radius: 0 !important;
    display: inline-flex;
    background: var(--aconcagua-color-3);
    transition: 0.5s;
    z-index: 4;
}

.team .team-item:hover .team-inner .team-img .team-icon {
    left: -25px;
}

/*** Team End ***/


/*** testimonial Start ***/
.testimonial .owl-nav .owl-prev {
    position: absolute;
    top: -58px;
    right: 0;
    background: var(--aconcagua-color-3);
    color: var(--bs-white);
    padding: 5px 30px;
    border-radius: 30px;
    transition: 0.5s;
}

.testimonial .owl-nav .owl-prev:hover {
    background: var(--aconcagua-color-1);
    color: var(--bs-white);
}

.testimonial .owl-nav .owl-next {
    position: absolute;
    top: -58px;
    right: 88px;
    background: var(--aconcagua-color-3);
    color: var(--bs-white);
    padding: 5px 30px;
    border-radius: 30px;
    transition: 0.5s;
}

.testimonial .owl-nav .owl-next:hover {
    background: var(--aconcagua-color-1);
    color: var(--bs-white);
}

.testimonial-carousel .owl-dots {
    display: flex;
    justify-content: center;
    margin-left: 20px;
    margin-top: 20px;
}

.testimonial-carousel .owl-dots .owl-dot {
    width: 20px;
    height: 20px;
    border-radius: 20px;
    margin-right: 15px;
    border: 1px solid var(--aconcagua-color-1);
    background: var(--aconcagua-color-3);
    transition: 0.5s;
}

.testimonial-carousel .owl-dots .owl-dot.active {
    width: 20px;
    height: 20px;
    border-radius: 20px;
    border: 1px solid var(--aconcagua-color-3);
    background: var(--aconcagua-color-1) !important;
    transition: 0.5s;
}

.testimonial-carousel .owl-dots .owl-dot span {
    position: relative;
    margin-top: 50%;
    margin-left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.testimonial-carousel .owl-dots .owl-dot span::after {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 8px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--bs-white);
}

@media (max-width: 992px) {
    .owl-carousel.testimonial-carousel {
        padding-top: 30px;
    }

    .testimonial .owl-nav .owl-prev,
    .testimonial .owl-nav .owl-next {
        top: -30px;
    }
}

/*** testimonial End ***/

/*** Footer Start ***/
.footer {
    background: var(--aconcagua-color-1);
}

.footer .footer-item a {
    line-height: 35px;
    color: var(--color-white);
    transition: 0.5s;
}

.footer .footer-item a:hover {
    letter-spacing: 0.5px;
    color: var(--color-white);
}

.footer .footer-item .footer-btn a,
.footer .footer-item .footer-btn a i {
    transition: 0.5s;
}

.footer .footer-item .footer-btn a:hover {
    background: var(--bs-white);
}

.footer .footer-item .footer-btn a:hover i {
    color: var(--aconcagua-color-3) !important;
}

/*** Footer End ***/

/*** copyright Start ***/
.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: var(--aconcagua-color-1);
}

/*** copyright end ***/

.bold {
    font-weight: 700;
}

.green {
    margin-top: 0px;
    color: var(--aconcagua-color-5);
}

.blue {
    color: var(--aconcagua-color-3);
}

.bg-gradient-blue {
    background: linear-gradient(318deg, #1c74b9 0%, rgb(28 116 185) 50%, #97c36b 90%);
    background-size: 300% 200%;
    /* animation: gradient 20s ease infinite; */
}

.bg-gradient-green {
    background: linear-gradient(318deg, #1c74b9 0%, rgb(28 116 185) 50%, #97c36b 175%);
    background-size: 300% 200%;
    /* animation: gradient 30s ease infinite; */
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}


/*** Partners ***/
.partner-item {
    position: relative;
    overflow: hidden;
    align-items: stretch;
    flex-wrap: wrap;
    height: auto;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}

.partner-item img {
    transition: .5s;
    max-height: 10rem;
}

.partner-item img:hover {
    transform: scale(1.05);
    border-radius: 0%;
}

.partner-text {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: -50px;
    opacity: 0;
    transition: .5s;
}

.partner-item:hover .partner-text {
    bottom: 0;
    opacity: 1;
}

.partner-logo {
    height: 10em;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px;
    padding-top: 10px;
}

.gradient-box {
    background: #fff;
    background-clip: padding-box;
    border: solid 7px transparent;
    border-radius: 0.7em;
}

.gradient-box:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    margin: -5px;
    border-radius: inherit;
    background: linear-gradient(150deg, var(--aconcagua-color-2), var(--aconcagua-color-5));
}

.resource-item {
    position: relative;
    overflow: hidden;
    align-items: stretch;
    flex-wrap: wrap;
    height: auto;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}

.resource-text {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: -50px;
    opacity: 0;
    transition: .5s;
}

.resource-link:hover {
    text-decoration: underline;
}

.resource-image {
    width: 100%;
    height: auto;
    padding-right: 10px;
    margin: 10px;
}

.news-item {
    position: relative;
    overflow: hidden;
    align-items: stretch;
    flex-wrap: wrap;
    height: auto;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}

.news-text {
    padding: 0px 20px 25px 20px;
}

.news-link:hover {
    text-decoration: underline;
}




.timeline {

    ul {
        --col-gap: 2rem;
        --row-gap: 2rem;
        --line-w: 0.25rem;
        display: grid;
        grid-template-columns: var(--line-w) 1fr;
        grid-auto-columns: max-content;
        column-gap: var(--col-gap);
        list-style: none;
        width: min(60rem, 90%);
        margin-inline: auto;
    }

    /* line */
    ul::before {
        content: "";
        grid-column: 1;
        grid-row: 1 / span 20;
        background: rgb(225, 225, 225);
        border-radius: calc(var(--line-w) / 2);
    }

    /* columns*/

    /* row gaps */
    ul li:not(:last-child) {
        margin-bottom: var(--row-gap);
    }

    /* card */
    ul li {
        grid-column: 2;
        --inlineP: 1.5rem;
        margin-inline: var(--inlineP);
        grid-row: span 2;
        display: grid;
        grid-template-rows: min-content min-content min-content;
    }

    /* date */
    ul li .date {
        --dateH: 3rem;
        height: var(--dateH);
        margin-inline: calc(var(--inlineP) * -1);

        text-align: center;
        background: var(--accent-color);

        color: white;
        font-size: 1.25rem;
        font-weight: 700;

        display: grid;
        place-content: center;
        position: relative;
    }

    .icon::after {
        display: inline-block;
        text-rendering: auto;
        -webkit-font-smoothing: antialiased;
    }

    /* circle */
    ul li .date::after {
        content: "";
        position: absolute;
        width: 2.5rem;
        aspect-ratio: 1;
        background: var(--bgColor);
        border: 0.3rem solid var(--aconcagua-color-2);
        border-radius: 50%;
        top: 50%;

        transform: translate(50%, -50%);
        right: calc(100% + var(--col-gap) + var(--line-w) / 2);
    }

    ul li .completed::after {
        font: var(--fa-font-regular);
        content: '\f00c';
        display: inline-block;
        padding-top: 10px;
        background: var(--accent-color);
        border: none;
    }

    /* title descr */
    ul li .title,
    ul li .descr {
        background: var(--bgColor);
        position: relative;
        padding-inline: 1.5rem;
    }

    ul li .title {
        overflow: hidden;
        padding-block-start: 1.5rem;
        padding-block-end: 1rem;
        font-weight: 500;
    }

    ul li .descr {
        padding-block-end: 1.5rem;
        font-weight: 300;
    }

    @media (min-width: 768px) {
        ul {
            grid-template-columns: 1fr var(--line-w) 1fr;
        }

        ul::before {
            grid-column: 2;
        }

        ul li:nth-child(odd) {
            grid-column: 1;
        }

        ul li:nth-child(even) {
            grid-column: 3;
        }

        /* start second card */
        ul li:nth-child(2) {
            grid-row: 2/4;
        }

        /* ul li:nth-child(odd) .date::before {
            clip-path: polygon(0 0, 100% 0, 100% 100%);
            left: 0;
        } */

        ul li:nth-child(odd) .date::after {
            transform: translate(-50%, -50%);
            left: calc(100% + var(--col-gap) + var(--line-w) / 2);
        }

        /* ul li:nth-child(odd) .date {
            border-radius: 0 calc(var(--dateH) / 2) calc(var(--dateH) / 2) 0;
        } */
    }
}


.cookie-banner {
    margin-right: 20px;
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: var(--aconcagua-color-3);
    color: #fff;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    display: none;
    z-index: 1000;
}

@media (max-width: 991px) {
    .cookie-banner button {
        display: block;
    }
}

.cookie-banner p {
    margin: 0;
    padding-right: 10px;
    display: inline;
}

.cookie-banner a {
    color: var(--primary);
    text-decoration: underline;
}

.cookie-button {
    background-color: var(--aconcagua-color-1);
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
    font-size: 14px;
}

.cookie-button:hover {
    background-color: var(--aconcagua-color-5);
}

.bottom-gradient {
    height: 15px;
    background: linear-gradient(150deg, var(--aconcagua-color-2), var(--aconcagua-color-5));
    margin-top: 0px;
}

.hide-mobile {
    @media (max-width: 767px) {
        display: none;
    }
}

.hide-desktop {
    @media (min-width: 768px) {
        display: none;
    }
}



/*** Testimonial ***/
.testimonial-img {
    position: relative;
    min-height: 400px;
}

/* .testimonial-img::after {
    position: absolute;
    content: "\f10d";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 200px;
    color: #EEEEEE;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
} */

.testimonial-img img {
    position: absolute;
    width: 100px;
    height: 100px;
    /* border-radius: 100px; */
}

.testimonial-img img:nth-child(1) {
    top: 0;
    left: 50%;
}

.testimonial-img img:nth-child(2) {
    bottom: 0;
    left: 30%;
}

.testimonial-img img:nth-child(3) {
    bottom: 0;
    right: 30%;
}

.testimonial-img img:nth-child(4) {
    bottom: 50%;
    left: 50;
}

.testimonial-img img:nth-child(5) {
    bottom: 50%;
    right: 50%;
}

.testimonial-img img .animated.pulse {
    animation-duration: 2s;
}


.icon-box-item .icon-box-icon {
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(120deg, rgb(28, 116, 185) 0%, rgb(28, 116, 185) -7%, rgb(151, 195, 107) 175%);
    background-size: 100% 100%;
}

.icon-box-item {
    position: relative;
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

.icon-white {
    color: white;
}

.icon-large {
    font-size: 7rem;
}

.icon-xlarge {
    font-size: 10rem;
}

.icon-primary {
    color: var(--aconcagua-color-2);
}

.icon-medium {
    font-size: 3rem;
    padding: 1rem;
}

.bg-farmers {
    background: #ffc824;
}

.bg-farmers-gradient {
    background: linear-gradient(318deg, var(--aconcagua-color-2) -22%, rgb(151 195 107) 26%, rgb(255 200 36) 74%);
}

.bg-supply_chain {
    background: var(--aconcagua-color-1);
}

.bg-supply_chain-gradient {
    background: linear-gradient(318deg, var(--aconcagua-color-2) -65%, rgb(151 195 107) -40%, var(--aconcagua-color-1) 72%);
}

.bg-environment {
    background: rgb(151, 195, 107);
}

.bg-environment-gradient {
    background: linear-gradient(318deg, var(--aconcagua-color-2) -22%, rgb(151 195 107) 51%, rgb(151, 195, 107) 98%);
}

.chevron-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: auto;
}

.chevron {
    position: relative;
    background: linear-gradient(120deg, rgb(28, 116, 185) 0%, rgb(28, 116, 185) -7%, rgb(151, 195, 107) 167%);
    color: white;
    padding: 60px 30px 40px 30px;
    width: 100%;
    text-align: center;
    /* Chevron shape clipped at both top and bottom, top indent flipped upside-down */
    clip-path: polygon(0 0,
            /* left top */
            50% 20%,
            /* top center indent (downwards) */
            100% 0,
            /* right top */
            100% 80%,
            /* right bottom indent */
            50% 100%,
            /* bottom center point */
            0 80%
            /* left bottom indent */
        );
}

.chevron::after {
    display: none;
    /* Remove the old arrow, not needed for downward chevron */
}

.chevron:not(:last-child) {
    margin-bottom: -30px;
    /* Overlap the chevrons for a connected look */
}

.stakheholder-item {
    margin-right: 2rem;
}

.stakheholder-icon {
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(120deg, rgb(28, 116, 185) 0%, rgb(28, 116, 185) -7%, rgb(151, 195, 107) 175%);
    background-size: 100% 100%;
}

#banner-container {
    height: 130px;
    position: relative;
    overflow: hidden;
    background-color: #f4f4f4;
    padding: 10px 0;
}

.photobanner {
    position: absolute;
    top: 15px;
    left: 0px;
    overflow: hidden;
    white-space: nowrap;
    animation: bannermove 25s linear infinite;
}

.photobanner img {
    margin: 0 3em;
    max-width: 250px;
    max-height: 100px;
}

@keyframes bannermove {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(-50%, 0);
    }
}

.badge {
    width: 110px; 
    height: 110px; 
    border: 7px solid;
    background-color: white;
}

.farmers {
   border-color: #ffc824;;
}

.suppliers {
   border-color: var(--aconcagua-color-1);
}

.environment {
   border-color: #97c36b;
}