﻿:root {
    font-size: 62.5%;

    --color-green-light: #8FCFAD;
    --color-green: #086D60;
    --color-grey: #555555;

    --size-xs: 1rem;
    --size-sm: 2rem;
    --size-md: 4rem;
    --size-lg: 6rem;

    --popover-size: 480px;
}
html {
    box-sizing: content-box;
    scroll-behavior: smooth;
    /*scroll-snap-type: y proximity;*/
    scroll-padding-top: 80px;
    height: 100vh;
    /*overflow-y: scroll;*/
}
/*html section,
html footer {
    scroll-snap-align: start;
}*/
body {
    font-family: 'Noto Sans', sans-serif;
    font-size: 1.6rem;
    color: #FFF;
}
html.overflow-hidden {
    overflow: hidden;
    pointer-events: none;
}
h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
}
h1, h2, h3, h4, h5, h6, p {
    margin: 1rem 0;
}
h1 {
    font-size: 7rem;
}
h2 {
    font-size: 3.8rem;
}
h3 {
    font-size: 2.5rem;
}
b {
    color: var(--color-green-light);
}
figcaption {
    font-size: 1.2rem;
    margin: var(--size-sm) 0;
}
/*===
    UTILITIES + SHARED
===*/
.pt-md {
    padding-top: var(--size-md);
}
.pb-md {
    padding-bottom: var(--size-md);
}
.py-md {
    padding: var(--size-lg) 0;
}
.pt-lg {
    padding-top: var(--size-lg);
}
.py-lg {
    padding-top: 80px;
    padding-bottom: 80px;
}
.text-center {
    text-align: center;
}
.visible-dk {
    display: block;
}
.visible-mb {
    display: none;
}
.btn {
    border: 2px solid transparent;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    padding: 10px 20px;
    transition: all .25s;
}
.btn.btn-white {
    background-color: #FFF;
    border-color: #FFF;
    color: var(--color-green);
}
.btn.btn-white:hover,
.btn.btn-white:focus {
    background-color: var(--color-green);
    color: #FFF;
}
.btn.btn-green {
    background-color: var(--color-green);
    border-color: var(--color-green);
    color: #FFF;
}
.btn.btn-green:hover,
.btn.btn-green:focus {
    background-color: #FFF;
    color: var(--color-green);
}

.close-minimal {
    display: inline-block;
    background-color: transparent;
    border: 0; outline: 0;
    aspect-ratio: 1 / 1;
    cursor: pointer;
}
.close-minimal span {
    background-color: #000;
    height: 2px;
    width: 18px;
    position: relative;
    display: block;
    transition: all .25s;
}
.close-minimal span:nth-child(1) {
    transform: rotate(45deg);
}
.close-minimal span:nth-child(2) {
    top: 0;
    transform: rotate(-45deg);
}

.divider {
    display: block;
    position: relative;
    border: 1px dashed #FFF;
    background-color: #000;
    z-index: 3;
}
.divider::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 74px;
    height: 52px;
    background-image: image-set( url('./img/divider-soybean.avif') type("image/avif"), url('./img/divider-soybean.png') type("image/png") );
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
    transform: translate(-50%, -50%);
}
main {
    position: relative;
}
section:not(.has-animation),
section.has-animation * {
    position: relative;
    z-index: 2;
}
.animation-container {
    position: absolute;
    overflow: hidden;
    z-index: 1;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    order: 1;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;

}
.animation-container .bokeh {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: scroll;
    width: 100%;
    height: 100%;
    grid-row: 1/-1;
    grid-column: 1/-1;
}
.animation-container .bokeh--small {
    background-image: image-set( url('./img/background-bokeh-small.avif') type("image/avif"), url('./img/background-bokeh-small.png') type("image/png") );
}
.animation-container .bokeh--big {
    background-image: image-set( url('./img/background-bokeh-big.avif') type("image/avif"), url('./img/background-bokeh-big.png') type("image/png") );
}
p.video-description {
    display: none;
}
/*===
    BOOTSTRAP OVERRIDES
===*/
.popover {
  width: var(--popover-size);
  max-width: 100%;
  background-color: transparent;
}
.popover .popover-arrow {
  display: none;
}
.popover-header {
  margin-bottom: 0;
}
.popover-header:empty {
  display: none;
}
.modal {
    padding: 0!important;
}
.modal-dialog.modal-dialog-scrollable.modal-dialog-centered,
.modal-content {
    height: 100%;
}
.modal-dialog {
    max-width: 100%;
    margin: 0;
}
.modal-content {
    background-color: var(--color-green);
    background-image: image-set( url('./img/hexagons-modal-form.avif') type("image/avif"), url('./img/hexagons-modal-form.png') type("image/png") );
    background-size: 100%;
    border-radius: 0;
}
.modal-content.is-sip {
    background-image: image-set( url('./img/modal-texture.avif') type("image/avif"), url('./img/modal-texture.png') type("image/png") );
}
.modal-content.is-sip .modal-body {
    justify-content: center;
}
.modal-header {
    border: 0;
}
.modal-header .btn-close {
    filter: invert(1);
    opacity: 1;
}
.modal-body {
    display: flex;
    flex-direction: column;
}
.modal-body .btn-form {
    margin-top: 30px;
}
.section-protection .carousel-control-next, 
.section-protection .carousel-control-prev {
    position: relative;
    z-index: 3;
    opacity: 1;
    transition: all .25s;
}
.carousel-control-prev-icon {
    width: 0;
    height: 0;
    border-top: 40px solid transparent;
    border-bottom: 40px solid transparent;
    border-right: 20px solid #98cca7;
}
.carousel-control-next-icon {
    width: 0;
    height: 0;
    border-top: 40px solid transparent;
    border-bottom: 40px solid transparent;
    border-left: 20px solid #98cca7;
}
.carousel-control-prev-icon:hover,
.carousel-control-prev-icon:focus,
.carousel-control-next-icon:hover,
.carousel-control-next-icon:focus {
    opacity: .75;
}
.section-protection .carousel-indicators {
    position: relative;
    z-index: 3;
    margin-top: 20px;
}
.carousel-indicators [data-bs-target] {
    width: 15px;
    height: 15px;
    border-radius: 100%;
    margin-left: 10px;
    margin-right: 10px;
}
.carousel-indicators .active {
    background-color: #98cca7;
}
/*===
    HEADER / NAVIGATION
===*/
header {
    border-top: 5px solid var(--color-green-light);
    background-color: #FFF;
    box-shadow: 1px 1px 5px rgba(0,0,0,.25);
    position: sticky;
    top: 0;
    z-index: 99999;
    height: 100px;
}
header.microsite .container {
    display: flex;
    align-items: center;
    height: 100%;
    background-color: #FFF;
}
.mobile-nav-toggle {
    display: none;
}
header nav {
    align-self: flex-end;
    margin-right: auto;
    display: flex;
    gap: 30px;
}
header nav a {
    text-decoration: none;
    text-align: center;
    font-weight: 600;
    font-size: 2rem;
    padding: 43px 0 30px 0;
    color: var(--color-grey);
    transition: all .25s;
    position: relative;
}
header nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    opacity: 1;
    transform: scale(0);
    transform-origin: center;
    background-color: var(--color-green-light);
    transition: all .25s;
}
header nav a:hover::after,
header nav a:focus::after,
header nav a.active::after {
    transform: scale(1);
}

.logos {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin: 25px 0;
    height: 50px;
}
.logos .logo-saltro,
.logos .logo-syngenta {
    width: 100px;
}
.logos .logo-spacer {
    display: block;
    height: 30px;
    border-left: 2px solid var(--color-green-light);
    margin: 0 30px;
}
/*===
    SECTION: SPLASH MODAL
===*/
.splash-modal {
    background-color: #000;
    position: absolute;
    top: 0; left: 0;
    right: 0; bottom: 0;
    z-index: 200;
    margin: 50px;
    border: 1px solid #FFF;
    display: flex;
    flex-direction: column;
    transition: all .25s;
}
.splash-modal.hidden {
    pointer-events: none;
    opacity: 0.5;
    display: none!important;
}
.splash-modal .close-splash {
    flex-shrink: 1;
    flex-grow: 0;
    flex-basis: 30px;
    align-self: flex-end;
}
.splash-modal .close-splash span {
    background-color: #FFF;
}
.close-splash span:nth-child(2) {
    top: -2px;
}
.splash-modal .container {
    display: flex;
    align-items: center;
    height: calc(100% - 30px);
}
.splash-modal .splash-text h1 {
    margin: 0;
}
.splash-modal .splash-text p {
    font-size: 4.4rem;
    font-weight: 600;
    margin: var(--size-sm) 0;
}
.splash-modal .splash-imagery {
    background-image: url(./img/splash-screen-soybean-desktop.png);
    background-size: contain;
    background-position: bottom;
    background-repeat: no-repeat;
    background-origin: content-box;
    width: 75%; /*50%*/
    height: 100%;
}
.lottie-hexagon {
    position: absolute;
    top: 0;
    width: 30%;
    height: 100%;
}
.lottie-hexagon-left {
    left: -200px;
}
.lottie-hexagon-right {
    right: -160px;
}
/*===
    SECTION: MAP
===*/
.section-map {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #000;
    min-height: 645px;
}
.map-introduction,
.legend,
.map-cta-form {
    position: absolute;
    z-index: 101;
}
.map-introduction {
    top: 0;
    width: 100%;
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.75) 50%, rgba(255, 255, 255, 0) 95%);
    text-align: center;
    padding: var(--size-sm) 0 var(--size-md);
    pointer-events: none;
}
.map-introduction.compact {
    padding: var(--size-xs);
    background-image: none;
}
.map-introduction.compact h2,
.map-introduction.compact p {
    display: none;
}
p.map-introduction-description {
    font-size: 1.3rem;
}
.map-legend-toggle {
    display: none;
}
.legend.hidden {
    height: 0;
    padding: 0;
    visibility: hidden;
    pointer-events: none;
}
.legend {
    display: flex;
    align-items: center;
    justify-content: center;
    right: 15px;
    width: 250px;
}
.map-legend {
    background-color: rgba(255, 255, 255, .9);
    box-shadow: 0 5px 5px #00000029;
    color: #000;
    padding: 10px;
}
.map-legend-title {
    text-align: center;
    font-size: 2.2rem;
}
.close-legend {
    display: none;
}
.zipBtn {
    display: flex;
    align-items: center;
    border: 1px solid #000;
    background-color: #FFF;
    margin-top: 10px;
    padding: 5px;
}
.zipBtn input {
    width: 100%;
    border: 0;
    outline: 0;
    background-color: transparent;
}
.map-legend img[alt="search button"] {
    width: 20px;
    filter: invert(1);
}
.map-legend-list {
    padding: 0;
    margin: 0;
    list-style: none;
    font-size: 1.4rem;
}
.map-legend-list img {
    width: 40px;
}
.map-legend-list li.d-none {
    display: none;
}
.map-legend-list li:not(:last-of-type) {
    border-bottom: 1px solid #BEBEBE;
    padding: 8px 0;
}
.map-legend-list li:last-of-type {
    padding-bottom: 0;
    display: flex;
    gap: 10px;
    padding: 10px 0 0 0;
}
.map-legend-list li:last-of-type p {
    margin: 0;
}
.filter_year-container {
    display: flex;
    align-items: center;
    gap: 10px;
}
.filter_year {
    width: 100%;
}
.filter_year p {
    margin: 0 0 5px 0;
}
.filter_year > div {
    border: 1px solid #BEBEBE;
    border-radius: 30px;
    padding: 5px;
    display: flex;
    gap: 10px;
}
.filter_year button {
    font-family: inherit;
    font-size: 11px;
    background-color: #FFF;
    border: 2px solid #FFF;
    border-radius: 20px;
    padding: 5px;
    width: 100%;
    cursor: pointer;
}
.filter_year button.active {
    background-color: #086D60;
    border-color: #086D60;
    color: #fff;
}
.map-cta-form.hidden {
    opacity: 0;
    width: 0;
}
.map-cta-form {
    bottom: 30px;
    transition: all .25s;
}
.map-cta-form a {
    border: 0;
    outline: 0;
    padding: 10px 15px;
    font-weight: 600;
    text-decoration: none;
    background-color: #FFF;
    color: #000;
    display: inline-block;
    position: relative;
}
.map-cta-form a span.close {
    content: '\2715';
    position: absolute;
    top: 0;
    left: 0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    box-shadow: 1px 1px 10px rgba(0,0,0,.5);
    font-size: 13px;
    background: #FFF;
    display: grid;
    place-items: center;
    transform: translate(-15px, -15px);
}
.map-cta-form a span.arrow {
    display: inline-block;
    border-top: 3px solid var(--color-green);
    border-right: 3px solid var(--color-green);
    transform: rotate(45deg);
    width: 10px;
    height: 10px;
}
.map-cta-form a span.close:hover,
.map-cta-form a span.close:focus {
    transform: translate(-15px, -15px) scale(1.05);
}
.map-cta-form a:hover span.arrow,
.map-cta-form a:focus span.arrow {
    margin-left: 5px;
}

/*===
 CUSTOM RADIO/CHECKBOX INPUT
===*/
.custom__input {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    cursor: pointer;
}
.custom__input input[type="checkbox"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: #BABABA;
    margin: 0;
    width: 60px;
    height: 30px;
    border: 1px solid #BABABA;
    border-radius: 20px;
    transition: all 0.25s;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    transition: all .25s;
    cursor: pointer;
}
.custom__input input[type="checkbox"]::after {
    content: "";
    width: 25px;
    height: 25px;
    border-radius: 50%;
    margin-left: 2px;
    background-color: #FFF;
    transition: all .25s;
}
.custom__input input[type="checkbox"]:checked {
    justify-content: flex-end;
    border-color: var(--color-green);
    background-color: var(--color-green);
}
.custom__input input[type="checkbox"]:checked::after {
    margin-right: 2px;
}
.custom__input input[type="checkbox"]:focus,
.custom__input input[type="checkbox"]:hover {
    outline: 0;
}
.custom__label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.custom__label,
.custom__input-input {
    pointer-events: none;
}
/*===
    SECTION: ROI
===*/
.section-roi {
    background-color: #000;
    background-image: image-set( url('./img/hexagons-roi.avif') type("image/avif"), url('./img/hexagons-roi.png') type("image/png") );
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: top;
}
.section-roi h2 {
    font-size: 4.4rem;
}
.section-roi h2 span.subhead {
    font-size: 3rem;
}
.section-roi video {
    aspect-ratio: 16 / 9;
    width: 100%;
}
.section-roi video ~ p.credit {
    font-size: 1.2rem;
}
/*===
    SECTION: STRESS
===*/
.section-less-stress {
    background-color: #000;
}
.section-less-stress a:link,
.section-less-stress a:active,
.section-less-stress a:visited {
    font-size: 1.2rem;
    color: #FFF;
}
.section-less-stress p.source {
    margin: 0;
    word-wrap: break-word;
}
.section-less-stress .soil {
    background-image: image-set( url('./img/background-soil.avif') type("image/avif"), url('./img/background-soil.png') type("image/png") );
    background-position: top;
    background-size: cover;
    background-repeat: no-repeat;
    padding-bottom: 115px;
    position: relative;
    z-index: 2;
}
.section-less-stress .soil h2 {
    font-size: 3rem;
}
.section-less-stress .soil .overflow-visible {
    padding-top: 100px;
}
.overflow-visible {
    overflow: visible;
}
.growing-soybean {
    display: flex;
    align-items: center;
}
.growing-soybean h2 {
    flex-shrink: 0;
    flex-grow: 1;
    flex-basis: 80%;
}
.growing-soybean video {
    flex-shrink: 0;
    aspect-ratio: 1/1;
    width: 44%;
    transform: translate(-35%, 21%);
    position: relative;
    z-index: 1;
}
.mobile-swap .col-xs-12:first-of-type {
    padding-top: 45px;
}
.mobile-swap h2 + p + p {
    margin-top: 30px;
}
.early-season {
    display: grid;
    grid-template-columns: 100%;
    grid-template-rows: 30% 1fr;
}
.early-season .lottie-percentage,
.early-season figure {
    grid-row: 1/-1;
    grid-column: 1/-1;
}
.early-season-img p {
    text-align: center;
    font-weight: 600;
    padding: 10px 20px;
    margin: 0;
}
.early-season-img img {
    width: 100%;
}
.early-season-img-2 {
    margin-top: 25px;
}
.early-season-img-1 p {
    background-color: #006d60;
}
.early-season-img-2 p {
    background-color: #919091;
}
.early-season .lottie-percentage {
    width: 40%;
    height: 40%;
    order: 2;
    z-index: 3;
    justify-self: flex-end;
    transform: translate(30px, -30px);
}
.early-season figure {
    order: 1;
    padding-top: 60px;
    padding-right: 60px;
}
.see-the-impact {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 60px 0 0 0;
}
.see-the-impact .sip-card {
    flex-basis: 35%;
}
.see-the-impact .sip-card.sip-card--1 {
    align-self: flex-start;
}
.see-the-impact .sip-card.sip-card--2 {
    align-self: flex-end;
    transform: translateY(-85%);
}
.interactive-image {
    flex-basis: 30%;
    display: grid;
    grid-auto-columns: 1fr;
    grid-template-rows: 200px .85fr 200px;
}
.interactive-image .interactive-plant {
    margin: 0 auto;
    grid-row: 1/-1;
    grid-column: 1/-1;
    order: 1;
}
.interactive-image .interactive-dot[data-bs-toggle="modal"] {
    display: none;
}
.interactive-image .interactive-wrapper {
    width: 300px;
    height: 200px;
    order: 2;
    display: flex;
    align-items: flex-end;
}
.interactive-image .interactive-wrapper--1 {
    grid-row: 1/2;
    grid-column: 1/-1;
    justify-self: flex-end;
    transform: translate(30%, -3%);
}
.interactive-image .interactive-wrapper--2 {
    grid-row: 3/4;
    grid-column: 1/-1;
    transform: translate(-13%, -52%);
    flex-direction: row-reverse;
}
.interactive-image .interactive-wrapper--2 img {
    transform: scaleX(-1);
}
.interactive-image .interactive-dot {
    background-image: image-set( url('./img/sip-hexagon-single.avif') type("image/avif"), url('./img/sip-hexagon-single.png') type("image/png") );
    background-size: contain;
    background-repeat: no-repeat;
    background-color: transparent;
    padding: 0;
    border: 0;
    outline: 0;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48%;
    line-height: 1.3;
    font-weight: 600;
}
.interactive-image .interactive-dot span {
    display: block;
}
.interactive-image .interactive-dot--1 {
    transform: translate(-12%, 15%);
}
.interactive-image .interactive-dot--1 span {
    transform: translate(0%, -8%);
}
.interactive-image .interactive-dot--2 {
    transform: translate(13%, 15%);
}
.interactive-image .interactive-dot--2 span {
    transform: translate(0%, -6%);
}

.popover[data-popper-placement="left"] {
    top: 0px !important;
    right: -162px !important;
}
.popover[data-popper-placement="left"] .popover-body {
    flex-direction: row-reverse;
}
.popover[data-popper-placement="right"] {
    left: -163px !important;
    top: 0px !important;
}
.close-popover {
    display: none;
}
.popover-body {
    color: #FFF;
    border: 0;
    outline: 0;
    display: flex;
    align-items: center;
    gap: 20px;
}
.rendering-container {
    flex-basis: 45%;
    flex-shrink: 0;
    display: grid;
    grid-template-columns: 100%;
    grid-template-rows: 100%;
    place-items: center;
}
.rendering-container .hexagon {
    width: 100%; height: 100%;
    aspect-ratio: 1/1;
    background-image: url(./img/hexagon.svg);
    background-size: 100%;
    background-repeat: no-repeat;
    transform: rotate(90deg) translate(0%, 6.65%);
    grid-row: 1/-1;
    grid-column: 1/-1;
    order: 2;
}
.rendering-container .asset-wrapper {
    /*clip-path: polygon(50% 0%, 95% 25%, 95% 75%, 50% 100%, 5% 75%, 5% 25%);*/
    clip-path: polygon(50% 0%, 93% 25%, 93% 75%, 50% 100%, 7% 75%, 7% 25%);
    aspect-ratio: 1 / 1;
    width: 100%; height: 100%;
    overflow: hidden;
    transform: scale(.95);
    grid-row: 1/-1;
    grid-column: 1/-1;
}
.rendering-container .asset-wrapper video,
.rendering-container .asset-wrapper img {
    width: 100%;
    height: 100%;
}

/*===
    SECTION: PROTECTION
===*/
.section-protection {
    background-color: #000;
    background-image: image-set( url('./img/hexagons-protection.avif') type("image/avif"), url('./img/hexagons-protection.png') type("image/png") );
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: 0 5%;
}
.section-protection h2 {
    font-size: 3rem;
}
/*.section-protection .carousel {
    border: 2px solid #2e2e2e;
    background-color: #000;
}*/
.section-protection .carousel-wrap {
    display: flex;
    align-items: center;
}
.section-protection .carousel-legal {
    font-size: 1.2rem;
    margin: var(--size-sm) 0;
}
.carousel .carousel-item h3 {
    font-size: 2.1rem;
    text-align: center;
    margin: 20px 0;
}
.container-flip-card {
    display: flex;
    flex-wrap: wrap;
    gap: var(--size-sm);
    margin: 40px 0 0 0;
}
.flip-card {
    flex-basis: calc((100% / 3) - var(--size-sm));
    text-align: center;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    place-items: center;
    margin: 0 0 20px 0;
    cursor: pointer;
}
.flip-card .front-side,
.flip-card .back-side {
    height: 100%;
    grid-row: 1/-1;
    grid-column: 1/-1;
    padding: 10px 20px;
}
.flip-card .front-side {
    background-image: image-set( url('./img/card-background.avif') type("image/avif"), url('./img/card-background.png') type("image/png") );
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom right;
}
.flip-card:nth-of-type(6) .front-side img {
    background-color: #000;
    width: 320px;
    /*height: 262px;*/
    aspect-ratio: 11 / 9;
}
.flip-card .legal {
    font-size: 1.2rem;
    text-align: left;
}
.flip-card figcaption {
    font-size: 2rem;
    font-weight: 700;
}
.flip-card .flip-more {
    display: block;
    font-size: 1.4rem;
    margin-top: 20px;
}
.flip-card .flip-more span.arrow {
    display: inline-block;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    width: 8px;
    height: 8px;
    transform: rotate(45deg)
}
.flip-card .back-side {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #000;
    opacity: 0;
    transition: all .25s;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.flip-card .back-side p {
    font-size: 1.5rem;
}
.flip-card .back-side .flip-more {
    font-weight: 700;
    display: none;
}
.flip-card .back-side .flip-more span.arrow {
    border-color: #000;
}
.flip-card .back-side.back-side--1 {
    background-image: image-set( url('./img/card-background-back-v1.avif') type("image/avif"), url('./img/card-background-back-v1.png') type("image/png") );
}
.flip-card .back-side.back-side--2 {
    background-image: image-set( url('./img/card-background-back-v2.avif') type("image/avif"), url('./img/card-background-back-v2.png') type("image/png") );
}
.flip-card .back-side.back-side--3 {
    background-image: image-set( url('./img/card-background-back-v3.avif') type("image/avif"), url('./img/card-background-back-v3.png') type("image/png") );
}
.flip-card .back-side.back-side--4 {
    background-image: image-set( url('./img/card-background-back-v4.avif') type("image/avif"), url('./img/card-background-back-v4.png') type("image/png") );
}
.flip-card .back-side.back-side--5 {
    background-image: image-set( url('./img/card-background-back-v5.avif') type("image/avif"), url('./img/card-background-back-v5.png') type("image/png") );
}
.flip-card .back-side.back-side--6 {
    background-image: image-set( url('./img/card-background-back-v6.avif') type("image/avif"), url('./img/card-background-back-v6.png') type("image/png") );
}
.flip-card:hover .front-side figcaption{
    opacity: 0;
}
.flip-card:hover .back-side,
.flip-card:focus .back-side {
    opacity: 1;
}

/*===
    SECTION: FORM
===*/
#basic-form.hidden,
#form-thanks.hidden {
    display: none;
}
.section-form {
    background-color: var(--color-green);
    background-image: image-set( url('./img/hexagons-form.avif') type("image/avif"), url('./img/hexagons-form.png') type("image/png") );
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: top;
}
p.disclaimer {
    font-size: 1.2rem;
    font-style: italic;
}
.section-form button#openFormModal,
.close-form {
    display: none;
}
.section-form .form-wrapper {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(4, min-content);
    gap: 15px;
}
.section-form .form-wrapper .form-group {
    display: flex;
    flex-direction: column;
}
.section-form .form-wrapper .form-group.form-group-firstname {
    grid-row: 1/2;
    grid-column: 1/4;
}
.section-form .form-wrapper .form-group.form-group-lastname {
    grid-row: 1/2;
    grid-column: 4/7;
}
.section-form .form-wrapper .form-group.form-group-email {
    grid-row: 2/3;
    grid-column: 1/3;
}
.section-form .form-wrapper .form-group.form-group-phone {
    grid-row: 2/3;
    grid-column: 3/5;
}
.section-form .form-wrapper .form-group.form-group-title {
    grid-row: 2/3;
    grid-column: 5/7;
}
.section-form .form-wrapper .form-group.form-group-checkbox {
    grid-row: 3/4;
    grid-column: 1/-1;
    display: block;
}
.section-form .form-wrapper .form-group.form-group-button {
    grid-row: 4/5;
    grid-column: 3/5;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
}
input[type="checkbox"] ~ label {
    display: inline-block;
    margin: 0 0 0 10px;
    cursor: pointer;
}
.form-group input:not([type="checkbox"]),
.form-group select {
    width: 100%;
    min-height: 40px;
}
.form-group input,
.form-group select {
    color: #000;
}
button.btn-form {
    width: 100%;
    min-height: 50px;
    background-color: #FFF;
    border: 2px solid #FFF;
    outline: 0;
    font-weight: 700;
    color: var(--color-green);
    transition: all .25s;
}
button.btn-form:hover,
button.btn-form:focus {
    background-color: var(--color-green);
    color: #FFF;
}
.form-group.error input,
.form-group.error select {
    border: 2px solid red;
    background-color: yellow;
}
.form-group.error input[type="checkbox"] ~ label {
    border: 2px solid red;
    background-color: yellow;
    color: #000;
}
.error-message {
    font-size: 1.2rem;
}
.error-message .d-flex {
    display: flex;
    align-items: baseline;
    gap: 5px;
}
#form-thanks {
    display: flex;
    justify-content: space-evenly;
}
#form-thanks b {
    color: #FFF;
}

/*===
    SECTION: PRODUCTS
===*/
.section-more-resources {
    background-image: image-set( url('./img/background-product-wall.avif') type("image/avif"), url('./img/background-product-wall.png') type("image/png") );
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #000;
}
.section-more-resources h2,
.section-more-resources h3,
.section-more-resources p {
    color: inherit;
}
.section-more-resources p {
    font-size: 1.9rem;
}
.products {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.product-card {
    flex-basis: calc((100%/4) - 20px);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    margin: 10px 0;
}
.product-card-img {
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--size-sm);
}
.product-card-img .logo-bybd {
    width: 153px;
}
/*.product-card img {
    margin: 0 auto;
}*/
.product-card a.btn-green {
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1.2;
    box-shadow: 2px 2px 8px rgba(0,0,0,.5);
    transition: all .25s;
}
/*===
    FOOTER
===*/
footer {
    background-color: var(--color-green);
    font-size: 1.2rem;
    line-height: 1.3;
    padding: 30px 0;
}
footer b {
    color: #FFF;
}
footer .footer-container {
    margin: 30px 0;
}
footer .footer-container:first-of-type {
    margin-top: 0;
}
footer .footer-container:last-of-type {
    margin-bottom: 0;
}
.social-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
}
.social-links p {
   font-size: 1.6rem;
   font-weight: 700;
}
.social-links svg {
    fill: #FFF;
    width: 25px;
    transition: all .25s;
}
.social-links a:hover svg,
.social-links a:focus svg {
    opacity: .75;
    transform: scale(.9);
}
.footer-links {
    font-size: 1.2rem;
    color: #FFF;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    margin: 20px 0 0 0;
}
.footer-links li {
    border-left: 1px solid #FFF;
    padding: 0 10px;
}
.footer-links li:first-of-type {
    padding-left: 0;
    border-left: 0;
}
.footer-links a {
    color: inherit;
    transition: all .25s;
}
.footer-links a:hover,
.footer-links a:focus {
    text-decoration: transparent;
}

/*===
    MEDIA QUERRIES
===*/
@media (min-width: 1280px) {
    .microsite .container {
        width: 1280px;
    }
}

/*@media only screen and (max-width: 1200px) {
    .product-card a.btn-green {
        height: 90px;
    }
}*/

@media only screen and (max-width: 991px) {
    :root {
        --header-height: 70px;
    }
    .visible-dk {
        display: none;
    }
    .visible-mb {
        display: block;
    }
    h1 {
        font-size: 4.5rem;
    }
    h2 {
        font-size: 2.5rem;
    }
    .splash-modal .container {
        flex-direction: column;
    }
    .splash-modal .splash-text,
    .splash-modal .splash-imagery {
        width: 100%;
    }
    .splash-modal .splash-text {
        padding: 0 0 var(--size-sm) 0;
    }
    .splash-modal .splash-imagery {
        background-image: url(./img/splash-screen-soybean-mobile.png);
    }
    .lottie-hexagon {
        display: none;
    }
    header {
        padding: 0;
        height: var(--header-height);
        overflow: hidden;
    }
    header.microsite.nav-open,
    header.microsite.nav-open .container {
        height: 100%;
    }
    header.microsite .container {
        display: grid;
        grid-template-columns: 30px 1fr;
        grid-template-rows: 70px min-content;
        align-content: center;
        padding: 0;
        height: 70px;
    }
    .mobile-nav-toggle {
        grid-column: 1/2;
        grid-row: 1/2;
        display: block;
        border: 0;
        outline: 0;
        padding: 0;
        margin-left: 15px;
        background-color: transparent;
    }
    .mobile-nav-toggle span,
    .mobile-nav-toggle span:nth-child(2),
    .mobile-nav-toggle span:nth-child(3) {
        height: 5px;
        width: 30px;
        background-color: #666769;
        position: relative;
        display: block;
        transition: all .25s;
    }
    .mobile-nav-toggle span:nth-child(2) {
        margin: 5px 0;
    }
    .mobile-nav-toggle.active span:nth-child(1) {
        background-color: transparent;
    }
    .mobile-nav-toggle.active span:nth-child(2) {
        top: 5px;
        transform: rotate(45deg);
        margin: 0;
    }
    .mobile-nav-toggle.active span:nth-child(3) {
        top: 0;
        transform: rotate(-45deg);
    }
    header nav {
        display: block;
        height: 0;
        opacity: 0;
        pointer-events: none;
    }
    header .mobile-nav-toggle.active ~ nav {
        grid-column: 1/3;
        grid-row: 2/3;
        display: block;
        pointer-events: all;
        height: 100%;
        width: 100%;
        opacity: 1;
    }
    header nav a {
        display: block;
        text-align: left;
        height: 74px;
        padding: 26px 0 21px 15px;
        border-left: 5px solid transparent;
        border-top: 1px solid var(--color-green-light);
    }
    header nav a::after {
        display: none;
    }
    header nav a.active,
    header nav a:hover,
    header nav a:focus {
        border-color: var(--color-green-light);
    }
    header nav a:last-of-type {
        border-bottom: 1px solid var(--color-green-light);
    }
    .logos {
        grid-column: 2/3;
        grid-row: 1/2;
        height: 26px;
        margin: 22px 15px 22px;
    }
    .logos .logo-spacer {
        margin: 0 15px;
    }
    .map-introduction.compact {
        width: auto;
        right: 0;
    }
    .map-introduction.compact .container {
        padding: 0;
        min-width: auto;
    }
    .map-introduction.compact .map-cta-form {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        pointer-events: none;
    }
    .map-cta-form a {
        pointer-events: all;
    }
    .map-introduction .container {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .map-introduction .container .row:last-of-type {
        align-self: flex-end;
    }
    .map-legend-toggle.hidden {
        display: none;
    }
    .map-legend-toggle {
        display: block;
        background: #FFF;
        color: #000;
        font-size: 1.4rem;
        border: 0;
        height: 82px;
        width: 82px;
        align-self: flex-end;
        pointer-events: all;
    }
    .map-legend-toggle img {
        width: 30px;
        display: block;
        margin: 0 auto 5px auto;
    }
    .legend {
        right: 0;
        width: 100%;
        height: 100%;
    }
    .map-legend {
        height: 100%;
        width: 100%;
        transition: height .25s, opacity .5s;
    }
    .map-legend-title {
        display: flex;
        align-items: center;
        justify-content: space-between;
        border-bottom: 1px solid #BEBEBE;
    }
    .close-legend {
        display: block;
    }
    .close-legend.hidden {
        display: none;
    }
    .close-legend span:nth-child(1) {
        top: 2px;
    }
    .filter_year button {
        flex-basis: calc(100% / 2);
        padding: 10px;
        font-size: 14px;
    }
    .pt-lg {
        padding-top: 0;
    }
    .section-roi,
    .section-protection {
        background-image: none;
    }
    .section-form {
        background-image: image-set( url('./img/hexagons-form-mobile.avif') type("image/avif"), url('./img/hexagons-form-mobile.png') type("image/png") );
        background-position: center;
    }
    .growing-soybean {
        flex-direction: column;
    }
    .growing-soybean h2 {
        margin-bottom: 0;
        transform: translateY(105%);
    }
    .growing-soybean video {
        width: 60%;
        transform: translate(0%, 28%);
        align-self: flex-end;
    }
    .section-less-stress .soil .overflow-visible {
        overflow: hidden;
    }
    .see-the-impact {
        flex-direction: column;
        gap: 30px;
        margin-top: 20px;
    }
    .mobile-swap {
        display: flex;
        flex-direction: column;
    }
    .mobile-swap .col-xs-12:first-of-type {
        order: 1;
        padding-top: 0;
    }
    .interactive-image .interactive-dot[data-bs-toggle="popover"] {
        display: none;
    }
    .interactive-image .interactive-dot[data-bs-toggle="modal"] {
        display: block;
        background-image: url('./img/sip-hexagon-single.png');
    }
    .interactive-image .interactive-wrapper {
        flex-direction: column;
        width: 282px;
        height: 335px;
    }
    .interactive-image .interactive-wrapper--1 {
        transform: translate(-23%, 6%);
        z-index: 3;
    }
    .interactive-image .interactive-wrapper--2 {
        flex-direction: column-reverse;
        transform: translate(-27%, -69%);
    }
    .interactive-image .interactive-wrapper--2 img {
        transform: none;
    }
    .interactive-image .interactive-dot {
        width: 50%;
        font-size: 1.4rem;
    }
    .interactive-image .interactive-dot--1 {
        transform: translate(53%, -26%);
    }
    .interactive-image .interactive-dot--2 {
        transform: translate(-51%, 27%);
    }
    .interactive-image .interactive-dot--2 span {
        transform: translate(0%, -12%);
    }
    main {
        position: relative;
    }
    .rendering-container {
        flex-basis: 0;
        width: 65%;
        margin: 0 auto;
    }
    .flip-card {
        flex-basis: 100%;
        min-height: auto;
    }
    .flip-card .front-side,
    .flip-card .back-side {
        width: 100%;
    }
    .flip-card .front-side img {
        margin: 0 auto;
    }
    .flip-card:hover .front-side figcaption {
        opacity: 1;
    }
    .flip-card:hover .back-side,
    .flip-card:focus .back-side {
        opacity: 0;
    }
    .flip-card.js-active .front-side figcaption {
        opacity: 0;
    }
    .flip-card.js-active .back-side {
        opacity: 1;
    }
    .flip-card .back-side .flip-more {
        display: block;
    }
    .section-form p.disclaimer,
    .section-form .form-wrapper {
        display: none;
    }
    .section-form button#openFormModal {
        display: block;
    }
    .product-card {
        flex-basis: calc((100%/2) - 20px);
        min-height: auto;
    }
    .form-group {
        width: 100%;
    }
    .form-group.form-group-checkbox {
        display: grid;
        grid-template-columns: 1.5rem 1fr;
    }
    .form-group.form-group-checkbox .error-message {
        grid-row: 2/3;
        grid-column: 1/-1;
    }
    .form-group label:not([for="consent"]) {
        display: block;
    }
    .form-group input:not([type="checkbox"]),
    .form-group select {
        width: 100%;
    }
    #form-thanks {
        flex-direction: column;
        gap: 20px;
    }
    #form-thanks img {
        width: 40%;
        margin: 0 auto;
    }
    .see-the-impact .sip-card.sip-card--2 {
        transform: translateY(0);
        padding: var(--size-md) 0;
    }
    .footer-links li {
        margin: 5px 0;
    }
}
@media only screen and (max-width: 768px) {
    .microsite .container {
        width: 100%;
        padding: 0 15px;
    }
    .splash-modal {
        margin: 20px;
    }
    .splash-modal .splash-text h1 {
        font-size: 3rem;
    }
    .splash-modal .splash-text p {
        font-size: 2rem;
    }
    .map-cta-form a {
        font-size: 1.4rem;
    }
    .section-map {
        min-height: 530px;
    }
    .carousel .carousel-item h3 {
        font-size: 1.6rem;
    }
    .carousel-control-next-icon {
        width: 0;
        height: 0;
        border-top: 20px solid transparent;
        border-bottom: 20px solid transparent;
        border-left: 10px solid #98cca7;
    }
    .carousel-control-prev-icon {
        width: 0;
        height: 0;
        border-top: 20px solid transparent;
        border-bottom: 20px solid transparent;
        border-right: 10px solid #98cca7;
    }
    .section-form .form-wrapper .form-group-checkbox {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: baseline;
        margin-bottom: 20px;
    }
    .section-form .form-wrapper .form-group-checkbox label {
            flex-basis: calc(100% - 24px);
    }
    .section-more-resources {
        background-image: image-set( url('./img/background-product-wall-mobile.avif') type("image/avif"), url('./img/background-product-wall-mobile.png') type("image/png") );
        background-position: right;
    }
    .social-links {
        column-gap: 30px;
        row-gap: 15px;
        margin: 0 0 10px 0;
    }
    .social-links p {
        flex-basis: 100%;
        margin: 0;
    }
}
@media only screen and (max-width: 600px) {
    .early-season figure {
        padding-top: 30px;
        padding-right: 8px;
    }
    .product-card a.btn-green {
        height: 80px;
        font-size: 1.4rem;
    }
}

@-moz-document url-prefix() {
    @media only screen and (max-width: 991px) {
        /*.rendering-container .hexagon {
         
        }*/
    }
}