.static {
    position: static;
}

.cover {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slides-wrap .owl-carousel .owl-slide {
    position: relative;
    position: relative;
    min-height: 700px;
}

.slides-wrap .owl-carousel .owl-slide::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: rgba(0, 0, 0, 0.35);
    z-index: 1;
    display: none;
}

.slides-wrap .owl-carousel .owl-slide .container {
    position: relative;
    z-index: 99;
}

.slides-wrap .owl-carousel .owl-slide-animated {
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 2s;
    transition: all 2s;
}

.slides-wrap .owl-carousel img {
    opacity: 0.7;
}

.slides-wrap .owl-carousel .owl-slide-animated.is-transitioned {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
    visibility: visible;
    -webkit-transition: all 2s;
    transition: all 2s;
}

.slides-wrap .owl-carousel .owl-slide-title.is-transitioned {
    -webkit-transition-delay: 0.2s;
    transition-delay: 0.2s;
}

.slides-wrap .owl-carousel .owl-slide-subtitle.is-transitioned {
    -webkit-transition-delay: 0.35s;
    transition-delay: 0.35s;
}

.slides-wrap .owl-carousel .owl-slide-cta.is-transitioned {
    -webkit-transition-delay: 0.5s;
    transition-delay: 0.5s;
}

.slides-wrap .owl-carousel .owl-dots,
.slides-wrap .owl-carousel .owl-nav {
    position: absolute;
}

.slides-wrap .owl-carousel .owl-dots .owl-dot,
.slides-wrap .owl-carousel .owl-nav [class*="owl-"]:focus {
    outline: none;
}

.slides-wrap .owl-carousel .owl-dots .owl-dot span {
    background: transparent;
    -webkit-transition: all 2s ease;
    transition: all 2s ease;
}

.slides-wrap .owl-carousel .owl-dots .owl-dot:hover span,
.slides-wrap .owl-carousel .owl-dots .owl-dot.active span {
    background: var(--main-black-color);
}

.slides-wrap .owl-carousel .owl-nav {
    right: 100px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    margin: 0;
}

.slides-wrap .owl-carousel .owl-nav svg {
    color: #FFF;
    -webkit-transition: all 400ms ease-in-out;
    -moz-transition: all 400ms ease-in-out;
    -o-transition: all 400ms ease-in-out;
    -ms-transition: all 400ms ease-in-out;
    transition: all 400ms ease-in-out;
}

.slides-wrap .owl-carousel .owl-nav button:hover svg {
    opacity: 1;
}

.slides-wrap .owl-carousel .owl-nav [class*="owl-"]:hover {
    background: transparent;
}

.slider-link,
.slider-link:hover {
    color: #FFF;
    text-transform: capitalize;
    display: inline-flex;
    align-items: center;
    font-family: 'Montserrat', serif;
    background: #ff6733;
    padding: 9px 14px;
    font-size: 20px;
}

.slider-link:hover,
.slider-link:hover i {
    color: #477763;
}

.slider-link i {
    color: #fff;
    font-size: 50px;
    padding-left: 13px;
}

@media (max-width: 1200px) {
    .slides-wrap .owl-carousel .owl-slide {
        min-height: 590px;
    }
}

@media (min-width: 992px) and (max-width: 1199.99px) {
    .slides-wrap .owl-carousel .owl-nav {
        right: 30px;
    }
    .owl-slide-text {
        padding-left: 30px;
    }
}

@media (min-width: 768px) and (max-width: 991.99px) {
    .slides-wrap .owl-carousel .owl-nav {
        right: 30px;
    }
    .owl-slide-text {
        padding-left: 30px;
    }
}

@media (max-width: 767px) {
    .slides-wrap .owl-carousel .owl-nav {
        right: 40px;
        top: auto;
        -webkit-transform: inherit;
        transform: inherit;
        margin: 0;
        bottom: 70px;
        width: auto;
    }
    .slides-wrap .owl-slide-text h1 {
        font-size: 3.5rem;
    }
}

@media screen and (max-width: 575px) {
    .slides-wrap .owl-carousel .owl-slide {
        min-height: 450px;
    }
    .slides-wrap .owl-slide-text h1 {
        font-size: 2.5rem;
    }
    .slides-wrap .owl-slide-text h3 {
        font-size: 1.2rem;
    }
    .slider-link {
        display: block;
        margin-top: 15px;
    }
    .slides-wrap .owl-carousel .owl-nav {
        right: 10px;
        text-align: right;
        width: auto;
    }
    .slides-wrap .owl-carousel .owl-nav svg {
        width: 24px;
        height: 24px;
    }
}

section.main-banner::after {
    position: absolute;
    bottom: 0;
    left: 0;
    content: '';
    width: 100%;
    height: 80%;
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, .8) 80%, rgba(0, 0, 0, .8) 100%);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, .8) 80%, rgba(0, 0, 0, .8) 100%);
}

section.main-banner a.scroll {
    padding-top: 60px;
}

section.main-banner a.scroll span {
    position: absolute;
    bottom: 20px;
    left: 50%;
    width: 46px;
    height: 46px;
    margin-left: -23px;
    border: 1px solid #fff;
    border-radius: 100%;
    z-index: 1;
    box-sizing: border-box;
}

section.main-banner a.scroll span::after {
    position: absolute;
    top: 50%;
    left: 50%;
    content: '';
    width: 16px;
    height: 16px;
    margin: -12px 0 0 -8px;
    border-left: 1px solid #fff;
    border-bottom: 1px solid #fff;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    box-sizing: border-box;
}

.no-webp section.our-impact-home {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/AGRA_608.jpg');
    background-size: cover;
}

.webp section.our-impact-home {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/AGRA_608.webp');
    background-size: cover;
}

section.thematic-platforms-home {
    background: #402020;
    color: #fff;
}

.thematic-platform .text p {
    font-size: 15px;
}

.thematic-platform.icon-box-2 {
    background-color: transparent;
    border-radius: 0;
    padding: 1.8rem 1rem;
    box-shadow: none;
    border-bottom: 1px solid #fff;
}

.thematic-platform.icon-box-2 .icon-font {
    font-size: unset;
    margin-right: unset;
    line-height: unset;
    color: #fff;
}

.thematic-platform.icon-box-2 .text>p {
    cursor: pointer;
    margin-top: 10px;
}

.thematic-platform.icon-box-2 .thematic-text {
    display: none;
}

.thematic-platform.icon-box-2 .text>p:hover+div.thematic-text {
    display: block;
}

.no-webp div.affiliates>div:nth-child(1) {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/01-affiliate-500x800.jpg');
    background-size: cover;
}

.no-webp div.affiliates>div:nth-child(2) {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/02-affiliate-500x800.jpg');
    background-size: cover;
}

.no-webp div.affiliates>div:nth-child(3) {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/03-afiliate-500x800.jpg');
    background-size: cover;
}

.no-webp div.affiliates>div:nth-child(4) {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/04-affiliate-500x800.jpg');
    background-size: cover;
}

.webp div.affiliates>div:nth-child(1) {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/01-affiliate-500x800.webp');
    background-size: cover;
}

.webp div.affiliates>div:nth-child(2) {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/02-affiliate-500x800.webp');
    background-size: cover;
}

.webp div.affiliates>div:nth-child(3) {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/03-afiliate-500x800.webp');
    background-size: cover;
}

.webp div.affiliates>div:nth-child(4) {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/04-affiliate-500x800.webp');
    background-size: cover;
}

div.affiliates {
    min-height: 80vh;
}

div.affiliate {
    display: flex;
    height: 100%;
    flex-direction: column;
}

div.affiliate div.content {
    margin-top: auto;
}

div.fake-col-wrapper>div.item {
    margin-bottom: 30px;
}

.affiliate-wrapper {
    min-height: 600px;
}

.newsletter-wrapper {
    background-color: #61a60e;
    padding: 20px 30px;
}

.newsletter-subscribe,
.newsletter-subscribe:hover {
    background-color: #3c674d;
    border: 2px solid #3c674d;
    color: #fff;
    border-radius: 0;
}

.newsletter-link,
.newsletter-link:hover {
    background-color: transparent;
    color: #fff;
    border-radius: 0;
    border: 2px solid #fff;
}

body.home .home-style-second.main-banner {
    height: 100vh;
}

div.call-to-action {
    position: absolute;
    bottom: 30px;
    z-index: 100;
    width: 550px;
    right: 10px;
}

div.call-to-action img.img-fluid {
    height: 100%;
    object-fit: cover;
    object-position: top;
}

div.call-to-action .fa-close {
    cursor: pointer;
}

div.call-to-action h2 {
    position: relative;
}

div.call-to-action h2:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 30%;
    border-top: 1px solid #61a60e;
}