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

:root {
    --nav-size: 116px;
    --montserrat: "Montserrat", sans-serif;
    --color-blue: #0075FF;
    --color-green: #34C759;
    --color-soft-green: rgb(212, 244, 224);
    --color-light-green: #06FA43;
    --color-dark-blue: #003061;
    --color-orange: #FCBE48;
    --color-light-white: #EAEEFF;
}

* {
    font-family: var(--montserrat);

}

a {
    text-decoration: none;
    color: #000;
}

.f-14 {
    font-size: 15px;
}

.f-3r {
    font-size: 3rem;
}

.f-12 {
    font-size: 12px;
}

.fw-9 {
    font-weight: 900;
}

.fw-5 {
    font-weight: 500;
}

.fw-3 {
    font-weight: 300;
}

.text-justify {
    text-align: justify;
}

.text-orange {
    color: var(--color-orange);
}

.text-blue {
    color: var(--color-blue);
}

.text-green {
    color: var(--color-green);
}

.text-gray {
    color: gray;
}

.text-dark-blue {
    color: var(--color-dark-blue) !important;
}

.bg-blue {
    background-color: var(--color-blue);
}

.bg-dark-blue {
    background-color: var(--color-dark-blue);
}

.bg-light-white {
    background-color: var(--color-light-white);
}

.default-min-height {
    min-height: calc(100vh - var(--nav-size));
}

.min-height-100 {
    min-height: 100vh;
}

.seeds-container {
    /* padding: 2rem 7rem 1rem 7rem; */
    padding: 2rem 3rem 1rem 3rem;
}

.seeds-navbar {
    background-color: #FFF;
}

.seeds-navbar img.navbar-brand {
    /* height: 50px; */
}

.seeds-navbar .navbar-collapse {
    justify-content: end;
}

.upper {
    text-transform: uppercase;
}

.seeds-navbar .btn {
    border-radius: 50px;
    border: 1px solid #34C759;
    background-color: rgb(234, 249, 239);
    padding: .5rem 1rem;
    color: #34C759;
    text-transform: uppercase;
    font-size: .875rem;
}

.seeds-navbar .switch-language {
    color: gray;
    font-weight: 500;
}

.seeds-navbar .switch-language.active {
    font-weight: 900;
}

.seeds-navbar .phone-number {
    color: gray;
    font-size: .875rem;
}

.seeds-navbar .navbar-nav li a {
    color: gray;
    font-size: .875rem;
    font-weight: 500;
}

.seeds-navbar .navbar-nav li a.active {
    color: var(--color-blue) !important;
}

.seeds-hero {
    background-image: url('../images/bg-1.png');
    background-size: cover;
    position: relative;
}

.seeds-hero .content {
    min-height: calc(100vh - var(--nav-size));
    position: relative;
    padding-top: 2rem;
    padding-bottom: 3rem;
    padding: 2rem 1rem 1rem 3rem;
}

.seeds-hero .first,
.seeds-hero .first i {
    font-weight: 500;
    font-size: 1.063rem;
}

.seeds-text-hero {
    position: absolute;
    bottom: 0;
    margin-bottom: 3rem;
}

.seeds-hero .seeds-text-hero h3,
.seeds-hero .seeds-text-hero p {
    color: #FFF;
}

.seeds-hero .seeds-text-hero h3 {
    font-weight: 900;
    font-size: 56px;
    margin-bottom: 1.5rem;
}

.seeds-hero .seeds-text-hero p {
    font-size: 1rem;
    font-weight: 500;
    text-align: justify;
    margin-bottom: 1.5rem;
}

.seeds-hero .seeds-text-hero a {
    border-radius: 50px;
    border: 1px solid var(--color-green);
    padding: .7rem 1.2rem;
    background-color: transparent;
    color: #FFF;
    font-size: 1rem;
}

.about-our-history .seeds-container,
.seeds-01 .col-right {
    display: flex;
    flex-direction: column;
    justify-content: space-between;

}

.seeds-01 .col-right h3.title {
    font-size: 48px;
    font-weight: 900;
    color: #FFF
}

.seeds-01 .col-right p.sub {
    font-size: 1rem;
    font-weight: 500;
    color: #FFF;
    text-align: justify;
}

.seeds-01 .col-right a,
.btn-outline {
    border-radius: 50px;
    color: #FFF;
    padding: .7rem 1.2rem;
}

.seeds-01 .col-left img {
    width: 581px;
    height: 350px;
    object-fit: cover;
    object-position: center center;
}

.seeds-01 .btn {
    width: fit-content;
}

.btn-outline-warning {
    color: #ffc107;
}


.presentation .col-right .btn-outline-green:hover {
    color: #FFF;
}

.btn-outline-dark-blue {
    border: 1px solid var(--color-dark-blue);
    color: #003061;
}

.btn-dark-blue {
    border: 1px solid var(--color-dark-blue);
    background-color: var(--color-dark-blue);
    color: #FFF;
}

.btn-blue {
    border: 1px solid var(--color-blue);
    background-color: var(--color-blue);
    color: #FFF;
}

.btn-green {
    border: 1px solid var(--color-green);
    background-color: var(--color-green);
    color: #FFF;
}

.btn-dark-blue:hover {
    color: var(--color-dark-blue);
    background-color: #FFF;
}

.btn-blue:hover {
    background-color: #0365d4;
    border: 1px solid #0365d4;
    color: #FFF;
}

.btn-green:hover {
    background-color: #269f44;
    border: 1px solid #269f44;
    color: #FFF;
}

.seeds-01 .col-right a,
.btn-outline-green {
    border: 1px solid var(--color-green);
}

.btn-outline-dark-blue:hover {
    background-color: var(--color-dark-blue);
    color: #FFF !important;
}

.btn-outline-green:hover {
    background-color: var(--color-green);
    color: #FFF;
}



section .subtitle {
    font-size: 1rem;
    margin: 0;
}

.services .subtitle {
    color: var(--color-blue);
}

section .title {
    font-size: 3rem;
    font-weight: 900;
}

.services {
    color: var(--color-dark-blue);
}

.services .col-left,
.services .col-right {
    height: 474px;
    position: relative;
}

.services .col-left .content,
.services .col-right .content {
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%;
}

.services .col-left .content {
    background-image: url('../images/saude-01.png');
}

.services .col-right .content {
    background-image: url('../images/agricultura-01.png');
}

.services .col-left .info,
.services .col-right .info {
    position: absolute;
    padding: 1rem 5rem 1rem 1.5rem;
    bottom: 0;
    margin-bottom: 1rem;
}

.services .col-left .title,
.services .col-right .title {
    color: #FFF;
    font-size: 3rem;
    font-weight: 900;
}

.services .col-left .sub,
.services .col-right .sub {
    color: #FFF;
    font-weight: 500;
    font-size: .875rem;
    text-align: justify;
}

.about-us .subtitle {
    color: var(--color-orange);
}

.about-us .title {
    color: #FFF
}

.about-us img {
    width: 100%;
}

.about-us .row .title,
.about-us .row .sub {
    color: #FFF !important;
}

.about-us .row .title {
    font-size: 2.5rem;
    font-weight: 900;
}

.about-us .row .sub {
    font-size: .875rem;
    font-weight: 500;
    text-align: justify;
}

.institutional {
    background-color: #F3F5FC;
}

.institutional .subtitle {
    color: var(--color-orange);
}

.institutional .title {
    color: var(--color-dark-blue);
}

.institutional .sub {
    padding: 1rem 4rem;
}

.our-clients .card-testimonial {
    border: .5px solid var(--color-light-white);
    border-radius: 15px;
    padding: 1.5rem;
    width: 80%;
    min-height: 244px;
}

.our-clients .card-testimonial .client {
    /* display: flex; */
}

.our-clients .card-testimonial .avatar {
    width: 60px;
    height: 60px;
    margin-right: .5rem;
}

.our-clients hr {
    background-color: gray;
}

.our-clients p.testimonial {
    color: gray;
    font-size: .875rem;
}

.our-clients .card-testimonial .info .name {
    font-size: .875rem;
    color: #000
}

.news .card-news,
.our-partners .card-partners {
    border-radius: 15px;
    border: .5px solid var(--color-light-white);
}

.news .card-image {
    position: relative;
}

.our-partners .card-image {
    margin: 1rem 1.5rem;
}

.news .card-image img {
    border-radius: 15px 15px 0 0;
}

.news .card-image p {
    position: absolute;
    top: 0;
    margin: 1rem 1.5rem;
    z-index: 2;
    color: #FFF;
    font-weight: 600;
}

.news .btn-outline-dark-blue {
    color: var(--color-dark-blue);
}

.news .card-content,
.our-partners .card-content {
    padding: 1rem 1.5rem;
}

.news .card-content p,
.our-partners .card-content p {
    text-align: justify;
    color: gray;
    font-size: .875rem;
}


.seeds-footer {
    background-color: var(--color-dark-blue);
    padding: 2rem 3rem 1rem 3rem;
}

.seeds-footer .sub {
    font-size: 1rem;
    font-weight: 500;
}

.seeds-footer .title {
    font-size: 3rem;
    font-weight: 900;
}

.seeds-footer hr {
    background-color: #FFF;
}

.social-media img {
    width: 30px;
}

.seeds-footer .copyright {
    font-size: .65rem;
    color: gray;
    text-align: justify;
}

.seeds-footer .address p {
    font-size: .75rem;
    color: gray;
    text-align: justify;
    margin-bottom: .5rem;
}

.seeds-footer ul {
    list-style: none;
}

.seeds-footer ul li a,
.p-links,
.seeds-footer ul li a,
.p-links a {
    color: gray;
    font-size: .75rem;
}

.p-links {
    bottom: 0;
    border-bottom: 1px solid gray;
    padding-bottom: .75rem;
    margin-bottom: 0;
}


/* About us */
header.about-us {
    background-image: url('../images/about-01.jpeg');
}

header.services {
    background-image: url('../images/services-01.jpeg');
}

header.archives {
    background-image: url('../images/archivesbg.jpeg');
}

header.midia {
    background-image: url('../images/contact-01.jpeg');
}

header.investors {
    background-image: url('../images/investors.jpeg');
}

header.service-detail {
    background-image: url('../images/images-agriculture/img-07.jpeg ');
}

header.contact {
    background-image: url('../images/contact-01.jpeg');
}

header.careers {
    background-image: url('../images/careers-01.jpeg');
}

header.projects {
    background-image: url('../images/projects-01.png');
}

header.projects-one {
    background-image: url('../images/project-one.png');
    min-height: 350px;
}

header.projects-two {
    background-image: url('../images/projects-06.jpeg');
}

header.projects-three {
    background-image: url('../images/projects-07(copiar).jpeg');
}

header.team {
    background-image: url('../images/team-01.jpeg');
}

header.sustainability {
    background-image: url('../images/sustainability-01.jpeg');
}

header.team,
header.careers,
header.contact,
header.services,
header.archives,
header.midia,
header.investors,
header.sustainability,
header.service-detail,
header.about-us,
header.projects,
header.projects-one,
header.projects-two,
header.projects-three {
    background-position: center center;
    background-size: cover;

    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
}

header.services h3,
header.service-detail h3,
header.about-us h3,
header.projects-one h3,
header.projects-two h3,
header.projects-three h3 {
    color: var(--color-blue);
    font-size: 3rem;
    font-weight: 900;
}

header.archives h3,
header.midia h3,
header.projects-one h3,
header.projects-two h3,
header.projects-three h3 {
    color: var(--color-dark-blue);
    font-size: 3rem;
    font-weight: 900;
}

header.service-detail p.sub,
header.services p.sub,
header.archives p.sub,
header.investors p.sub,
header.midia p.sub,
header.about-us p.sub {
    color: #FFF;
}

section.about-us img,
section.about-vision img {
    width: 90%;
}

section.about-us .col-right p.title,
section.about-us .col-right .sub,
section.about-vision .col-left p.title,
section.about-vision .sub {
    color: var(--color-dark-blue) !important;
    margin: 0;
}

section.about-us .col-right .text,
section.about-vision .col-left .text {
    font-size: .875rem;
    text-align: justify;
    color: gray;
}



section.about-us .col-right .btn-outline-green:hover {
    color: #FFF;
}

.about-our-history p {
    margin: 0;
    font-size: .75rem;
}

.about-our-history2 .img {
    display: flex;
    justify-content: center;
}

.about-our-history2 img {
    width: 90%;
}

.about-our-history2 p.text {
    color: gray;
    text-align: justify;
    font-size: .875rem;
}

.executive-team {
    background-color: #F3F5FC;
}

.executive-team .card-executive-team {
    border-radius: 10px;
}


.executive-team .card-executive-team img {
    border-radius: 10px 10px 0 0;
    width: 100%;
}


.executive-team .card-executive-team .info {
    display: flex;
    padding: 1rem 2rem;
    border-radius: 10px;
    background-color: #FFF;
    justify-content: space-between;
    align-items: end;
}


.executive-team .card-executive-team .info .name {
    padding: 0;
    text-align: left;
    display: block;
    color: #000;
    font-size: 1.3rem;
    margin: 0;
}


.executive-team .card-executive-team .info .sub {
    font-size: .875rem;
    color: gray;
    margin: 0;
}

.exec-sub {
    margin-bottom: 3rem;
}

.exec-sub p {
    font-size: .875rem;
}

.exec-sub a,
.presentation .col-right .btn-outline-green,
section.about-us .col-right .btn-outline-green {
    color: var(--color-green);
}

.presentation .col-left,
.presentation .col-right {
    position: relative;
    padding: 2rem;
}

.presentation .col-left .info {
    position: absolute;
    bottom: 0;
    padding: 2rem;
    margin-bottom: 2rem;
}

.presentation .col-left .info .title-01 {
    font-size: 2.5rem;
}

.presentation .col-left .info .title-01,
.presentation .col-left .info .title-02 {
    color: #FFF;
    margin: 0;
    font-weight: 900;
}

.presentation .col-left .info .title-02 {
    font-size: 1.75rem;
}

.presentation .col-left .bg-image {
    width: 100%;
    height: 100%;
}

.presentation .col-right .text {
    font-size: .875rem;
    color: gray;
    text-align: left;
    margin-left: 1px;
}

/* Services */
.services-01 .col-left {
    position: relative;
    /* padding:  0 2rem 1rem 2rem; */
}

.services-01 .col-left img {
    width: 100%;
    min-height: 300px;
    height: 100%;
}

.services-01 .col-left .content {
    position: absolute;
    bottom: 0;
    margin: 3rem 2rem;
    padding: 1rem;
}

.services-01 .col-right p.sub {
    color: gray;
    font-size: 1rem;
    text-align: justify;
    line-height: 30px;
}

.services-counter .counter-div p.number {
    font-size: 2.5rem;
    font-weight: 700;
}

/* Contact */
header.contact h3,
header.careers h3,
header.projects h3,
header.projects-one h3,
header.projects-two h3,
header.projects-three h3 {
    font-size: 3rem;
    font-weight: 900;
}

.form-box {
    background-color: #F3F5FC;
    padding: 3rem;
    border-radius: 15px;
}

.form-box label {
    font-weight: 600;
}

.form-box input,
.form-box textarea {
    border: 5px;
    border: .3px solid #F3F5FC;
    padding: .5rem 1rem;
}

.form-box input::placeholder,
.form-box textarea::placeholder {
    font-size: .875rem;
}

/* Service detail */
header.service-detail h3 {
    color: var(--color-green);
}

.service-detail .features-images .main img {
    width: 100%;
    height: 350px;
}

.service-detail .features-images .images {
    overflow-x: auto;
    white-space: nowrap;
}

.service-detail .features-images .images img {
    width: 185px;
    display: inline-block;
    vertical-align: middle;
}

.service-detail .col-left h3 {
    font-weight: 700;
}

.service-detail .text-gray,
.service-detail ul li {
    font-size: .875rem;
    color: gray;
    text-align: justify;
}

.review {
    background-image: url('../images/service-detail-03.png');
    background-position: center center;
    background-size: cover;
    height: 500px;
    padding: 4rem;
}

.faqs .col-right .accordion .accordion-item {
    border: unset;
}

.faqs .col-right .accordion .accordion-item button {
    border: unset;
    background-color: #FFF;
    color: var(--color-dark-blue);
    font-weight: 600;
}

.faqs .col-right .accordion-button::after {
    background-image: url('../images/icons/plus-circle.png');
}

/* Careers */
header.careers {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.welcome-message .col-left {
    position: relative;
    max-height: 415px;
}

.welcome-message .col-left img {
    width: 100%;
    height: 100%;
}

.welcome-message .col-left .info {
    position: absolute;
    bottom: 0;
    margin: 1rem 2rem;
}

.welcome-message .col-right .title {
    line-height: 120%;
}

.vacancy .card-vacancy {
    background-color: #000;
    border-radius: 15px;
    padding: 2rem;
    color: #FFF;
}

.vacancy .card-vacancy p.title {
    color: white;
    font-size: 1rem;
}

.vacancy .card-vacancy .detail span {
    border-radius: 50px;
    color: #FFF;
    background-color: #58585B;
    font-size: .6rem;
    padding: .5rem;
    margin-right: .5rem;
    cursor: pointer;
}

.vacancy .card-vacancy .detail.active span,
.vacancy .card-vacancy .detail span:hover {
    background-color: var(--color-blue);
}

.testimonial .col-left .image-box .star img {
    width: 15px;
    height: 15px;
}

.testimonial .col-left .image-box img.avatar {
    width: 50px;
    height: 50px;
    border-radius: 5px;
}

.testimonial .col-left .image-box p.career {
    font-size: .75rem;
}

/* Estilos gerais */
.testimonial .col-right img {
    /* height: 400px; */
    width: 100%;
}

/* Estilos para telas com resolução de 1920x1080 */
@media (min-width: 1920px) {
    .testimonial .col-right img {
        height: 400px;
        width: 100%;
    }
}

/* Estilos para telas com resolução de 1366x768 */
@media (max-width: 1366px) and (min-height: 768px) {
    .testimonial .col-right img {
        height: 431px;
        width: 544px;
    }
}

@media (max-width: 767) {
    .testimonial .col-right img {
        height: unset;
    }
}

.testimonial .compete .col-md-4 {
    padding: 1rem 3rem;
}

.testimonial .compete .count {
    font-size: 2rem;
    color: var(--color-light-white);
    font-weight: 700;
}

/* Executive team */
.executive-testimonial .col-right {
    position: relative;
}

.executive-testimonial .col-right img {
    width: 100%;
    height: 100%;
}

.executive-testimonial .col-right .info {
    position: absolute;
    bottom: 0;
    margin: 1rem 2rem;
}

/* Sustainability */
.sustainability .title,
.sustainability-01 .title {
    color: var(--color-light-green)
}

.card-sustainability {
    border: 1px solid var(--color-light-green);
    padding: 1.5rem;
    cursor: pointer;
}

.card-sustainability:hover {
    background-color: var(--color-green);
}

.card-sustainability:hover .title,
.card-sustainability:hover .sub {
    color: #FFF;
}

.sustainability-01 {
    padding: 4.5rem 0;
}

.sustainability-01 .title {
    font-size: 1rem;
}

.sustainability-02 {
    background-color: var(--color-soft-green);
}

.sustainability-02 .title {
    color: var(--color-green);
}

.sustainability-02 .video img {
    width: 100%;
    height: 100%;
}

.sustainability-03.faqs .title,
.sustainability-03.faqs button.accordion-button.text-green {
    color: var(--color-green) !important;
}

.sustainability-03.faqs .col-right .accordion-button::after {
    background-image: url(../images/icons/plus-circle-green.png);
}

.ceo {
    position: relative;
    background-image: url('../images/ceo-01.jpeg');
    min-height: calc(100vh - var(--nav-size));
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.ceo .seeds-container {
    position: absolute;
    margin-bottom: 2rem;
    bottom: 0;
}

@media (min-width: 1024px) {
    .seeds-navbar {
        height: var(--nav-size);
    }

    .border-lg-left {
        border-right: .8px solid #FFF;
    }
}

@media (max-width: 768px) {

    .about-us .mission .col-left,
    section.about-us .col-left,
    .services-01 .col-left,
    /* .order-md-2 */
    .welcome-message .col-left,
    .about-us .values .col-left {
        order: 2;
    }

    .about-us .mission .col-right,
    section.about-us .col-right,
    .welcome-message .col-right,
    .services-01 .col-right,
    /* .order-md-1 */
    .about-us .values .col-right {
        order: 1;
    }

    .institutional p.sub {
        text-align: justify;
        padding: 0;
    }

    section .title,
    .f-3r,
    .seeds-footer .title {
        font-size: 2rem;
    }

    .timeline-line {
        display: none;
    }

}

@media (max-width: 1024px) {
    .seeds-hero .seeds-text-hero {
        width: 80%;
    }

    .seeds-hero .seeds-text-hero h3 {
        font-size: 1.5rem;
    }

    .seeds-01 .col-right {
        order: 1;
    }

    .seeds-01 .col-left {
        order: 2;
    }

    .seeds-01 .col-right h3.title,
    .services .col-left .title,
    .services .col-right .title {
        font-size: 1.5rem;
    }

    .about-us .row .title {
        font-size: 1.5rem;
    }

    .our-clients .card-testimonial {
        width: 100%;
    }

    section.about-vision img {
        width: 100%;
    }

    .presentation .col-left .info .title-01 {
        font-size: 1.5rem;
    }

    .services-01 .col-left {
        padding: 0;
    }
}

.logos {
    margin-top: 6rem;
    margin-bottom: 4rem;
}

.swiperSub img {
    width: 100%;
    object-fit: cover;
    height: 210px;
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after,
.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
    background-position: center center;
    background-repeat: no-repeat;
    font-family: unset !important;
    color: transparent !important;
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
    background-image: url('../images/icons/arrow-left-white.png');
}

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
    background-image: url('../images/icons/arrow-right-white.png');
}

.project-list li {
    text-align: justify;
    color: #828284;
    line-height: 30px;
}

.ln-30 {
    line-height: 30px;
}

.img-project-one-1 {
    width: 560px;
    height: 545px;
}


@media (max-width: 768px) {
    .img-project-one-1 {
        height: unset;
    }
}