:root {
    --theme1: #000000;
    --theme2: #ffffff;
    --theme3: #1b440c;
    --theme4: #d1d64a;
    --theme5: #fcfbee;
    --theme6: #002900;
    --theme7: #dddddd;
    --theme8: #98a308;
    --theme9: #728509;
    --theme10: #112d07;
}
body {
    position: relative;
    font-family: 'Poppins', sans-serif;
    font-weight: 400!important;
    font-style: normal;
    font-size: 1rem;
    background: url(https://image.syngentamail.com/lib/fe9b15747661057b75/m/1/942b7d9f-c9d8-4aa4-902f-ceed8481672f.jpg)repeat;
    letter-spacing: .3px;
   
}
a, a:hover {
    text-decoration: none;
}
strong, b {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
}
.wrapper-lg {
    padding-top: 80px;
    padding-bottom: 80px;
}
.wrapper-md {
    padding-top: 40px;
    padding-bottom: 40px;
}

.btn-theme {
    height: 60px;
    padding: 0 3rem;
    font-weight: 800;
    font-size: 1.5rem;
    line-height: 24px;
    text-transform: uppercase;
    color: var(--theme3);
    background: var(--theme4);
    display: inline-flex;
    gap: 6px;
    justify-content: center;
    align-items: center;
    -webkit-transition: all 0.4s ease-out 0s;
    -moz-transition: all 0.4s ease-out 0s;
    -ms-transition: all 0.4s ease-out 0s;
    -o-transition: all 0.4s ease-out 0s;
    transition: all 0.4s ease-out 0s;
    border-radius: 60px;
    text-decoration: none;
    
}
.btn-theme:hover {
    background: var(--theme2);
    color: var(--theme6);
} 
/*--
    - Header CSS 
-----------------------------------------*/
.header {
    background: var(--theme7);
    border-image-source: url(https://image.syngentamail.com/lib/fe9b15747661057b75/m/1/04634bc3-a6c0-4975-9cac-30ed1bd0a445.png);
    border-image-slice: 1; 
    border-image-width: .5rem 0 0 0; 
    border-image-outset: 0; 
    border-top: none;
    border-bottom: none;
    border-left: none;
    border-right: none;
    
}
.header .logo {
    display: flex;
    justify-content: end;
    padding: 1rem;
}
/*--
    - Home CSS 
-----------------------------------------*/
.element1 {
    position: absolute;
    left: 0;
    width: 300px;
    margin-top: 60%;
}
.element2 {
    position: absolute;
    right: 0;
    width: 300px;
    margin-top: 33%;
    
  
}
.banner img {
    width: 100%;
    object-fit: cover;
}
.about {
    background: url(https://image.syngentamail.com/lib/fe9b15747661057b75/m/1/942b7d9f-c9d8-4aa4-902f-ceed8481672f.jpg)repeat;
}
.about .title {
    color: var(--theme2);
    text-transform: uppercase;
    text-align: center;
}
.about .title span {
    color: var(--theme4);
    text-align: center;
}
.about .text {
    color: var(--theme2);
    margin-top: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 400;
}
.about .text span {
    color: var(--theme4);
}
.about .form {
    background: var(--theme8);
    border: 1px solid var(--theme8);
    padding: 2.25rem;
    border-radius: .85rem;
    margin-top: 2rem;
}
.about .form .title ,
.about .form .subtitle {
    color: var(--theme2);
    text-align: center;
    margin-top: 1.25rem;
    margin-bottom: 1.25rem;
    position: relative;
}
.about .form h4.title::before {
    position: absolute;
    width: 45%;
    height: 1px;
    background: var(--theme2);
    bottom: -10px;
    content: "";
    left: 0;
    right: 0;
    margin: auto;
}
.about .form .form-item .text {
    color: var(--theme2);
    margin: 0;
    text-align: center;
    margin: auto;
}
.about .form .form-item {
    margin-top: .65rem;
    margin-bottom: .65rem;
    display: flex;
}
.about .form .form-item-block {
    display: block;
}
.about .form .form-item label {
    color: var(--theme2);
    margin-right: .5rem;
    display: flex;
    align-items: center;
}
.about .form .form-item select {
    border-radius: 2rem;
}
.about .form .form-item-block label {
    margin-bottom: .5rem;
}
.about .form .form-item input {
    background-color: var(--theme9);
    border: 1px solid var(--theme9);
    color: var(--theme2);
    width: 100%;
    border-radius: 2rem;
    padding: .40rem 1rem;
}

.about .form .form-item input::placeholder {
    color: white;
}

.about .form .form-item select {
    background-color: var(--theme9);
    border: 1px solid var(--theme9);
    color: var(--theme2);
    width: 100%;
    border-radius: 2rem;
    padding: .40rem 1rem;
}

.about .form .form-item-block select {
    background-color: var(--theme2);
    border: 1px solid var(--theme2);
    color: var(--theme1);
    width: 100%;
    border-radius: 2rem;
    padding: .40rem 1rem;
}
.about .form .form-item-block input {
    color: var(--theme1);
   
}
.about .form .form-check label {
    color: var(--theme2);
    font-size: .85rem;
}
.about .form .form-check-input:checked {
    background-color: var(--theme3);
    border-color: var(--theme3);
}
.about .form .form-check a {
    color: var(--theme6);
}

.about .form .form-item input[type="submit"] {
    height: 60px;
    padding: 0 2rem;
    font-weight: 800;
    line-height: 24px;
    font-size: 1.5rem;
    text-transform: uppercase;
    color: var(--theme2);
    background: var(--theme3);
    display: inline-flex;
    gap: 6px;
    justify-content: center;
    align-items: center;
    -webkit-transition: all 0.4s ease-out 0s;
    -moz-transition: all 0.4s ease-out 0s;
    -ms-transition: all 0.4s ease-out 0s;
    -o-transition: all 0.4s ease-out 0s;
    transition: all 0.4s ease-out 0s;
    border-radius: 60px;
    text-decoration: none;
    
}
.about .form .form-item input[type="submit"]:hover {
    background: var(--theme2);
    color: var(--theme6);
}
.about--video {
    background: #074801;

}
.about--video .title {
    text-align: center;
    color: var(--theme2);
    text-transform: uppercase;
}
.about--video .title span {
    color: var(--theme4);
}
.about--video .video {
    position: relative;
    padding-bottom: 56.25%; 
    overflow: hidden;
    border-radius: .45rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
}
.about--video .video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: .45rem;
}
.about--wha-is {
    background: var(--theme5);
}
.about--wha-is .title {
    color: var(--theme6);
    text-align: center;
    font-weight: 800;
    border: 1px solid var(--theme6);
    padding: 1rem;
    border-radius: 3rem;
   
}  
.about--wha-is .text {
    color: var(--theme6);
    text-align: center;
    margin-top: 2rem;
}
.about--control {
    background: var(--theme6);
}
.about--control .title {
    color: var(--theme2);
    text-align: center;
    
}

.about--products {
   background: #074801;
   
}
.about--products .title ,
.about--badge .title {
    color: var(--theme2);
    text-align: center;
}

.about--products .title span ,
.about--badge .title span {
    color: var(--theme4);
}
.about--products .image {
    margin-top: .5rem;
    margin-bottom: .5rem;
}
.about--products .item {
    margin: 1rem;
    text-align: center;
    color: var(--theme2);
    padding: 1.25rem;
    border-radius: 1rem;
    position: relative;
    background: rgb(208,215,56);
    background: linear-gradient(180deg, rgba(208,215,56,1) 6%, rgba(66,97,12,1) 53%, #004500 99%);
    height: 300px;
}
.about--products .item ul {
    padding-left: 0;
    list-style: none;
    border-top: 1px solid var(--theme2);
    padding-top: 1rem;
}
.about--products .item ul li {
    text-align: left;
    margin-bottom: .5rem;
    font-size: 1rem;
    margin-top: .5rem;
}
.about--badge  {
    text-align: center;
}
.about--badge .title {
    margin-top: 2rem;
    margin-bottom: 2rem;
}
.about--products .title span {

}

/*--
    - Obrigado Produtor CSS 
-----------------------------------------*/

.obrigado-produtor {
    height: 100vh;
    display: flex;
    align-items: center;
    background: url(https://image.syngentamail.com/lib/fe9b15747661057b75/m/1/942b7d9f-c9d8-4aa4-902f-ceed8481672f.jpg)repeat ;
   
}
.obrigado-produtor-footer {
    background: var(--theme5);
    height: 50px;
    position: absolute;
    z-index: 100;
    left: 0;
    right: 0;
    bottom: 0;
}
.obrigado-produtor .title,
.obrigado-produtor .subtitle {
    color: var(--theme2);
    text-transform: uppercase;
}
.obrigado-produtor .title {
    font-size: 5rem;
    margin: 0;
    color: var(--theme4);
    font-weight: 700;
}
.obrigado-produtor .subtitle {
    font-size: 3rem;
    color: var(--theme4);
    font-weight: 400;
}
.obrigado-produtor .text {
    color: var(--theme2);
    padding: 3rem;
    border: 1px solid var(--theme2);
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}
.element5 {
    position: absolute;
    left: 0;
    width: 280px;
    bottom: 20px;
    z-index: 999;
}
.element6 {
    position: absolute;
    right: 0;
    width: 280px;
    top: 20px;
}
/*--
    - Obrigado Nao Produtor CSS 
-----------------------------------------*/

.obrigado-nao-produtor {
    height: 100vh;
    display: flex;
    align-items: center;
    background: var(--theme5);
    
}

.obrigado-nao-produtor .title,
.obrigado-nao-produtor .subtitle {
    color: var(--theme3);
    font-weight: 700;
    text-transform: uppercase;
}
.obrigado-nao-produtor .title {
    font-size: 5rem;
}
.obrigado-nao-produtor .subtitle {
    font-size: 3rem;
}
.obrigado-nao-produtor .text {
    color: var(--theme3);
    margin-top: 2rem;
    margin-bottom: 2rem;
}
.obrigado-nao-produtor-footer {
    background: url(https://image.syngentamail.com/lib/fe9b15747661057b75/m/1/942b7d9f-c9d8-4aa4-902f-ceed8481672f.jpg)repeat;
    position: absolute;
    z-index: 100;
    left: 0;
    right: 0;
    bottom: 0;
    height: 50px;
}
.image-soja {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    bottom: 1rem;
    width: 350px;
}
.element3 {
    position: absolute;
    left: 0;
    width: 300px;
}
.element4 {
    position: absolute;
    right: 0;
    width: 300px;
    bottom: 100px;
}
/*--
    - Footer CSS 
-----------------------------------------*/

.footer {
    background-color: var(--theme1);
}
.footer .widget .title {
    color: var(--theme2);
    font-size: .85rem;
 
}
.footer .widget .social {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}
.footer .widget .social li {
    display: inline-flex;
    margin-right: .5rem;
}
.footer .widget .social li a {
    background: var(--theme2);
    color: var(--theme2);
    display: block;
    width: 38px;
    height: 38px;
    line-height: 38px;
    text-align: center;
    border-radius: 50%;
    font-size: 1.2rem;
    webkit-transition: all 0.4s ease-out 0s;
    -moz-transition: all 0.4s ease-out 0s;
    -ms-transition: all 0.4s ease-out 0s;
    -o-transition: all 0.4s ease-out 0s;
    transition: all 0.4s ease-out 0s;
}
.footer .widget .social li a:hover {
    background: var(--theme4);
   
}

/*--
    - Perguntas CSS 
-----------------------------------------*/

.perguntas {
    background:url(https://image.syngentamail.com/lib/fe9b15747661057b75/m/1/942b7d9f-c9d8-4aa4-902f-ceed8481672f.jpg)repeat;
    height: 100vh;
    display: flex;
    align-items: center;
}
.perguntas .title {
    color: var(--theme4);
    border: 1px solid var(--theme4);
    padding: 2rem;
}


/*--
    - Responsive CSS 
-----------------------------------------*/
@media only screen and (min-width: 1024px) and (max-width:1380px) {
    .element1 ,
    .element2,
    .element3 ,
    .element4 {
        width: 200px;
    }
    .image-soja {
        width: 250px;
    }
}
@media only screen and (min-width: 0px) and (max-width:1259px) {
    body {
        font-size: .90rem;
    }
    .header .logo {
        justify-content: center;
    }
    .wrapper-lg {
        padding-top: 40px;
        padding-bottom: 40px;
    }
    .btn-theme {
        height: 50px;
        padding: 0 2rem;
        font-size: 1rem;
    }
  
    .about .form {
        padding: 1.5rem;
        margin-top: 1.5rem;
        margin-bottom: 1.5rem;
    }
    .about .form .form-item {
        display: block;
    }
    .about--products .title span:first-child, 
    .about--products .title span {
        left: 0;
    }
    .about--badge .title ,
    .footer .widget .title {
        margin-top: 1rem;
        margin-bottom: 1rem;
    }
    .obrigado-produtor .title,
    .obrigado-nao-produtor .title {
        font-size: 2.5rem;
    }
    .obrigado-produtor .subtitle,
    .obrigado-nao-produtor .subtitle {
        font-size: 1.5rem;
    }
    .image-soja {
        width: 200px;
        bottom: 30px;
    }
    .element1,
    .element2,
    .element3,
    .element4,
    .element5,
    .element6 {
        display: none;
    }

}