﻿/***
    PAGE: HOMEPAGE
***/
.why {
    background-image: url(https://assets.syngentaebiz.com/images/media/biodiversity-stewardship-background-1.png);
    background-position: top;
    background-size: cover;
}
.why .video-container {
    margin: 80px 0 0 0;
}


.operation-pollinator {
    position: relative;
    display: grid;
    align-items: center;
}
.operation-pollinator .bg-video-container,
.operation-pollinator .container {
    grid-row: 1 / -1;
    grid-column: 1 / -1;
}
.operation-pollinator .bg-video-container {
    height: 100%;
    box-sizing: content-box;
}
.operation-pollinator .bg-video-container::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, .5);
}
.operation-pollinator video {
    position: absolute;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
    top: 0;
}
.operation-pollinator .toggleVideo {
    position: absolute;
    z-index: 2;
    bottom: 40px;
    right: 20px;
    background-color: transparent;
    border: none;
}
.operation-pollinator .toggleVideo img {
    pointer-events: none;
}

.operation-pollinator .col-xs-12 {
    position: relative;
    z-index: 2;
}

.stewardship-biodiversity .row + .row {
    margin-top: 80px;
}

.best-practices {
    background-image: url("https://assets.syngentaebiz.com/images/media/biodiversity-stewardship-background-2.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
}
.best-practices .row:nth-of-type(2) {
    margin: 50px 0;
    display: flex;
    justify-content: center;
}

@media only screen and (max-width: 992px) {
    .operation-pollinator {
        grid-template-rows: repeat(2, 1fr);
        padding: 0;
    }
    .operation-pollinator .bg-video-container {
        position: relative;
        grid-row: 1 / 2;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .operation-pollinator .bg-video-container h2 {
        position: relative;
        z-index: 3;
    }
    .operation-pollinator .container {
        grid-row: 2/3;
        padding: 30px 15px;
    }
    .operation-pollinator .container * {
        color: #000;
    }
    .operation-pollinator .container a {
        display: block!important;
    }

    .best-practices {
        background-image: url("https://assets.syngentaebiz.com/images/media/biodiversity-stewardship-background-2-mobile.png");
    }
    .best-practices img {
        width: 180px;
    }
    .best-practices .row:nth-of-type(2) {
        display: block;
        margin: 20px 0;
    }
    .best-practices .row:nth-of-type(2) .col-xs-12 + .col-xs-12 {
        margin: 20px 0;
    }
}

/***
    PAGE: BEES
***/
.importance {
    background-image: linear-gradient(90deg, rgba(0,0,0,.25), rgba(0,0,0,.25)), url("https://assets.syngentaebiz.com/images/media/bees-background-2.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}


.value-vs-rate .disclaimer {
    font-size: 1.2rem;
    font-style: italic;
    color: #7F7F7F;
}

@keyframes anim-gradient-10 {
    0% {
        background-image: conic-gradient(var(--color-orange) 0%, var(--color-yellow) 0%);
    }
    25% {
        background-image: conic-gradient(var(--color-orange) 2.5%, var(--color-yellow) 2.5%);
    }
    50% {
        background-image: conic-gradient(var(--color-orange) 5%, var(--color-yellow) 5%);
    }
    75% {
        background-image: conic-gradient(var(--color-orange) 10%, var(--color-yellow) 10%);
    }
    100% {
        background-image: conic-gradient(var(--color-orange) 10%, var(--color-yellow) 10%);
    }
}
@keyframes anim-gradient-100 {
    0% {
        background-image: conic-gradient(var(--color-orange) 0%, var(--color-yellow) 0%);
    }
    10% {
        background-image: conic-gradient(var(--color-orange) 10%, var(--color-yellow) 10%);
    }
    20% {
        background-image: conic-gradient(var(--color-orange) 20%, var(--color-yellow) 20%);
    }
    30% {
        background-image: conic-gradient(var(--color-orange) 30%, var(--color-yellow) 30%);
    }
    40% {
        background-image: conic-gradient(var(--color-orange) 40%, var(--color-yellow) 40%);
    }
    50% {
        background-image: conic-gradient(var(--color-orange) 50%, var(--color-yellow) 50%);
    }
    60% {
        background-image: conic-gradient(var(--color-orange) 60%, var(--color-yellow) 60%);
    }
    70% {
        background-image: conic-gradient(var(--color-orange) 70%, var(--color-yellow) 70%);
    }
    80% {
        background-image: conic-gradient(var(--color-orange) 80%, var(--color-yellow) 80%);
    }
    90% {
        background-image: conic-gradient(var(--color-orange) 90%, var(--color-yellow) 90%);
    }
    91% {
        background-image: conic-gradient(var(--color-orange) 100%, var(--color-yellow) 100%);
    }
    100% {
        background-image: conic-gradient(var(--color-orange) 100%, var(--color-yellow) 100%);
    }
}

.crop__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    column-gap: 20px;
    row-gap: 40px;
    margin: 30px 0 0 0;
}
.crop-card {
    text-align: center;
}
.crop-card[data-crop="soybean"] figure,
.crop-card[data-crop="apple"] figure,
.crop-card[data-crop="peach"] figure {
    background-image: conic-gradient(var(--color-orange) 10%, var(--color-yellow) 10%);
    background-color: var(--color-yellow);

    animation: anim-gradient-10 2s linear infinite alternate-reverse;
}
.crop-card[data-crop="almond"] figure,
.crop-card[data-crop="peanut"] figure,
.crop-card[data-crop="blueberry"] figure {
    animation: anim-gradient-100 2s linear infinite alternate-reverse;
}
.crop-card figure {
    background-color: var(--color-orange);
    border-radius: 50%;
    aspect-ratio: 1 / 1;
    width: 200px;
    margin: 0 auto 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.crop-card h3 {
    margin-bottom: 10px;
}
.crop-card p {
    margin: 0;
}
.crop-card p+p {
    margin-top: 5px;
}
.grid-desc {
    grid-column: 3 / 5;
}
.grid-desc p {
    margin: 15px 0 0;
}
.pollinated-crops__buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin: 30px 0 15px 0;
}
.button-pollinated-crops.js-active {
    background-color: #EB8200;
    color: #FFF;
}
.button-pollinated-crops {
    border: 1px solid #000;
    border-radius: 30px;
    padding: 5px 24px;
    background-color: #E6E6E6;
    font-weight: 600;
    color: #000;
    transition: all .25s;
}
.button-pollinated-crops:hover,
.button-pollinated-crops:focus-visible {
    background-color: #55565a;
    color: #FFF;
}
.pollinated-crops__cards-wrap {
    padding: 20px 0 40px;
}
.pc__card {
    width: 221px;
    height: 360px;
    flex-shrink: 0;
    padding: 0;
    display: grid;
    border-radius: 10px;
    border: 1px solid #E6E6E6;
    overflow: hidden;
    position: relative;
}
.pc__card * {
    pointer-events: none;
}
.pc__card > * {
    grid-row: 1/-1;
    grid-column: 1/-1;
}
.pc__card-background {
    width: 100%;
    height: 100%;
    grid-row: 1 / -1;
    grid-column: 1 / -1;
}
.pc__card-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.pc__card-pollinators {
    justify-self: flex-end;
    padding: 10px 10px 0 0;
    display: flex;
    gap: 10px;
}
.pc__card-pollinators img {
    width: 30px;
}
.pc__card-details {
    align-self: flex-end;
    background-color: #FFF;
    text-align: left;
    color: #000;
    padding: 10px;
    height: 66px;
    transition: all 1s;
}
.pc__card-details * {
    margin: 0;
}
.pc__card-details-top {
    margin: 0 0 5px 0;
}
.pc__card-details-top h3 {
    font-size: 2rem;
    font-weight: 600;
    color: #000;
}
.pc__card-details-top span {
    display: inline-block;
    font-size: 1.6rem;
}
.pc__card-details-top .pc__toggle {
    float: right;
    color: var(--color-green);
    display: flex;
    align-items: center;
    gap: 5px;
}
.pc__card-details-top .pc__toggle span {
    text-decoration: underline;
}
.pc__card-details-top .pc__toggle i.enter {
    border: solid var(--color-green);
    border-width: 0px 3px 3px 0;
    display: inline-block;
    width: 8px;
    height: 8px;
    transform: rotate(45deg) translate(0, -50%);
}
.pc__card-details-top .pc__toggle i.exit {
    display: flex;
    align-items: center;
    font-size: 2.5rem;
    font-weight: 900;
}
.pc__card-details-bottom p {
    font-size: 1.4rem;
    line-height: 1.2;
}
.card__details-pollinator {
    display: flex;
    align-items: center;
    gap: 10px;
}
.card__details-pollinator img {
    width: 30px;
}
.card__details-pollinator+.card__details-pollinator {
    margin-top: 10px;
}
.pc__card.js-active .pc__card-details {
    height: max-content;
}
.pollinated-crops__scroll {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0;
    color: #55565A;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}

.protect-bees h3 {
    margin: 15px 0 0 0;
}
.protect-bees a.btn {
    margin: 15px 0 0 0 !important;
}
.protect-bees a:not(.btn,.btn-w-svg) {
    color: #000;
    transition: all .25s;
}
.protect-bees a:not(.btn,.btn-w-svg):hover,
.protect-bees a:not(.btn,.btn-w-svg):focus-visible {
    text-decoration: transparent;
}

.collaboration {
    background-image: url("https://assets.syngentaebiz.com/images/media/bees-background-1.png");
    background-size: cover;
    background-repeat: no-repeat;
}

@media only screen and (max-width: 992px) {
    .crop__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .crop-card[data-crop="soybean"] {
        grid-row: 1 / 2;
        grid-column: 1 / 2;
    }
    .crop-card[data-crop="almond"] {
        grid-row: 1 / 2;
        grid-column: 2 / 3;
    }
    .crop-card[data-crop="apple"] {
        grid-row: 2 / 3;
        grid-column: 1 / 2;
    }
    .crop-card[data-crop="peanut"] {
        grid-row: 2 / 3;
        grid-column: 2 / 3;
    }
    .crop-card[data-crop="peach"] {
        grid-row: 3 / 4;
        grid-column: 1 / 2;
    }
    .crop-card[data-crop="blueberry"] {
        grid-row: 3 / 4;
        grid-column: 2 / 3;
    }
    .grid-desc {
        grid-row: 4 / 5;
        grid-column: 1 / -1;
    }

    .pollinated-crops__buttons {
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    .protect-bees .col-md-4 + .col-md-4 {
        margin: 60px 0 0 0;
    }
}

@media only screen and (max-width: 768px) {
    .crop-card figure {
        width: 100%;
    }
    .crop-card figure img {
        width: 50%;
    }

    .collaboration {
        background-image: url("https://assets.syngentaebiz.com/images/media/bees-background-1-mobile.png");
        background-position: right;
    }
}


/***
    PAGE: OPERATION POLLINATOR
***/
.agriculture .row + .row {
    margin-top: 80px;
}
.supporting-materials {
    padding: 0 0 30px 0;
}
.supporting-materials .container {
    border-top: 2px solid #000;
    border-bottom: 2px solid #000;
    padding-top: 40px;
    padding-bottom: 40px;
}
.supporting-materials a.btn-w-svg:active,
.supporting-materials a.btn-w-svg:link,
.supporting-materials a.btn-w-svg:visited {
    background-color: transparent;
    font-weight: 400;
    border: none;
    color: #000;
    width: 100%;
    gap: 10px;
}
.supporting-materials a svg {
    fill: #000;
}
.supporting-materials a:active:hover,
.supporting-materials a:active:focus-visible,
.supporting-materials a:link:hover,
.supporting-materials a:link:focus-visible,
.supporting-materials a:visited:hover,
.supporting-materials a:visited:focus-visible{
    text-decoration: underline;
    color: var(--color-green);
}

.in-golf {
    background-image: linear-gradient(90deg, rgba(0,0,0,.6), rgba(0,0,0,.6)), url("https://assets.syngentaebiz.com/images/media/operation-pollinator-background-1.jpg");
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    padding: 100px 0;
}
.in-golf h2 {
    text-align: center;
    margin: 0 0 20px 0;
}

.contact-us {
    background-image: url("https://assets.syngentaebiz.com/images/media/operation-pollinator-background-2.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.form {
    display: grid;
    grid-template-columns: .8fr 1fr;
    column-gap: 40px;
    grid-template-rows: .25fr .5fr;
}
.form .form__desc {
    grid-row: 1 / 2;
    grid-column: 1 / 2;
    margin-bottom: 20px;
}
.form .form__imagery {
    grid-row: 1 / -1;
    grid-column: 2 / 3;
}
.form .form__inputs {
    grid-row: 2 / 3;
    grid-column: 1 / 2;
}
.form .form-group+.form-group {
    margin: 24px 0 0 0;
}
.form label {
    display: block;
    font-weight: 600;
}
.form input {
    width: 100%;
    border: 1px solid #000;
    height: 44px;
    padding: 10px;
    color: #000;
    box-sizing: border-box;
}
.form .form-group.error input {
    background-color: #fbfb89;
    border-color: #ff5252;
}
.form .form-group.error .error__message {
    font-size: 1.4rem;
    margin: 5px 0 0;
}

@media only screen and (max-width: 991px) {
    .what-is-it {
        padding-bottom: 40px;
    }
    .operation-pollinator-video {
        padding-bottom: 0;
    }

    .agriculture .row + .row {
        margin-top: 30px;
    }

    .supporting-materials .container {
        margin: 0 15px;
    }
    .supporting-materials a.btn-w-svg:active,
    .supporting-materials a.btn-w-svg:link,
    .supporting-materials a.btn-w-svg:visited {
        display: flex;
        justify-content: flex-start;
        text-align: left;
        padding: 0;
        margin: 10px 0;
    }

    .in-golf {
        padding: 40px 0;
    }
    .in-golf h2 {
        text-align: left;
    }

    .contact-us {
        background-image: url("https://assets.syngentaebiz.com/images/media/operation-pollinator-background-2-mobile.png");
    }
    .form {
        grid-template-columns: 1fr;
    }
    .form .form__desc {
        grid-row: 1 / 2;
        grid-column: 1 / -1;
        margin-bottom: 0;
    }
    .form .form__imagery {
        grid-row: 2 / 3;
        grid-column: 1 / 2;
        margin: 20px 0 40px;
    }
    .form .form__inputs {
        grid-row: 3 / 4;
        grid-column: 1 / 2;
    }
}

/***
    PAGE: POLLINATOR STEWARDSHIP
***/

.responsive-iframe {
border: 0;
position: absolute;
top: 0;
left: 0;
bottom: 0;
right: 0;
width: 100%;
height: 86%;
margin-left: auto;
margin-right: auto;
scrolling: no;

}

.iframe {
  visibility: hidden
}

.youtube-container .youtube-videos {
    justify-content: space-between;
}
.youtube-container .youtube-video-cont {
    padding: 0;
}
.youtube-video-inner {
    width: 80%;
    height: 80%;
}
.youtube-video-frame {
    padding: 10px 30px;
}
.youtube-video-frame #player {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
}

.interconnectedness {
    background-image: linear-gradient(90deg, rgba(0,0,0,.5), rgba(0,0,0,.5)), url("https://assets.syngentaebiz.com/images/media/pollinator-stewardship-background-1.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 100px 0;
    display: none;
}
.interconnectedness h2 {
    font-weight: 400;
    line-height: 1.75;
}

.guidelines .row + .row {
    margin-top: 80px;
}

.monarch .row + .row {
    margin-top: 80px;
}

#collaborations {
    padding-top: 20px;
}
.protection .row + .row {
    margin-top: 80px;
}

@media only screen and (max-width: 768px) {
    .protection {
        padding-bottom: 0 !important;
    }

    .interconnectedness h2 {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .youtube-video-inner {
        width: 100%;
    }

    .interconnectedness {
        padding: 40px 0 280px;
    }

    .guidelines .row + .row {
        margin-top: 30px;
    }
    .monarch .row + .row {
       margin-top: 30px;
   }

    #collaborations .col-xs-12:not(:last-of-type) {
        margin: 0 0 60px 0;
    }
}