* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

.container {
    width: 100%;
}

html{
    scroll-behavior: smooth;
}









/******************* header ***********************/
header {
    height: 100px;
}

.logo a {
    font-family: 'Monomaniac One', sans-serif;
    font-size: 33px;
    padding-top: 7px;
    text-decoration: none;
    color: black;
}

/********* menu **********/
nav {
    left: 0;
    top: 0px;
    width: 100%;
    height: 100px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    min-height: 8vh;
    background-color: white;
    justify-content: space-between;
    backdrop-filter: blur(5px);
    box-shadow: #ffc709 0px 2px 8px 0px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.036);
    position: fixed;
    z-index: 4;
    padding: 0 20px;

}

.nav-right {
    display: flex;
    width: 40%;
    justify-content: space-around;
}

.nav-right a {
    text-decoration: none;
    color: rgb(0, 0, 0);
    padding-bottom: 5px;
    font-size: 2em;
    letter-spacing: 2px;
    font-family: Raleway, sans-serif;
    font-weight: 700;
    transition: all 0.1s linear;
    font-size: 20px;
}

.nav-right a:hover {
    color: #ffc709;
    border-bottom: 1px solid #ffc709;
}

.nav-right li {
    list-style: none;
}

.burger-menu {
    width: 40px;
    display: none;
    transition: all 0.3s;
    cursor: pointer;
    height: 40px;
    padding-top: 11px;
}

.burger-menu .bar {
    transition: all 0.3s;
    height: 2px;
    width: 100%;
    display: block;
    background-color: rgb(4, 4, 4);
}

.burger-menu .bar:nth-of-type(2) {
    margin: 8px 0;
}

.burger-menu--closed {
    transition-delay: 0.1s;
}

.burger-menu--closed .bar {
    float: right;
}

.burger-menu--closed .bar:nth-of-type(2) {
    width: 75%;
    transition-property: margin, height, width;
    transition-delay: 0.3s, 0.3s, 0s;
}

.burger-menu--closed .bar:nth-of-type(3) {
    width: 50%;
}

.burger-menu--closed:hover .bar:nth-of-type(2) {
    width: 100%;
}

.burger-menu--closed:hover .bar:nth-of-type(3) {
    width: 100%;
}

.burger-menu--opened {
    padding-top: 25px;
}

.burger-menu--opened .bar:nth-of-type(1) {
    transform: rotate(45deg);
    transition-delay: 0.3s;
    height: 2px;
}

.burger-menu--opened .bar:nth-of-type(2) {
    opacity: 0;
    height: 0;
    margin: -3px;
}

.burger-menu--opened .bar:nth-of-type(3) {
    transform: rotate(-45deg);
    transition-delay: 0.3s;
    height: 2px;

}

@media (max-width:700px) {

    body {
        overflow-x: hidden;
    }

    .nav-right {
        position: absolute;
        z-index: 2;
        right: 0;
        height: 90vh;
        top: 10vh;
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
        background-color: white;
        align-items: center;
        width: 100%;
        transform: translateX(100%);
        transition: transform .5s ease-in;
    }

    .nav-right li {
        opacity: 0;
    }

    .burger-menu {
        display: block;
        cursor: pointer;
    }
}

.nav-right a {
    font-size: 14px;
}

.nav-active {
    transform: translateX(0%);
}

@keyframes navRightFade {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0px);
    }
}

@media screen and (min-width:700px) {
    .nav-right {
        width: 60%;
    }
}

@media screen and (min-width:1024px) {
    .nav-right {
        width: 40%;
    }
}

/******* end menu *****/
/******* main home ****/
.mainHome {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 90vh;
    background-color: #436243;
}

.HomePhoto {
    width: 100%;
    max-height: 53vh;
    display: flex;
    justify-content: space-around;
    padding-top: 109px;
}

.HomePhoto img {
    width: 50%;
}

.HomeText {
    text-align: center;
    width: 100%;
    height: 36vh;
}

.HomeText h1 {
    font-family: Raleway, sans-serif;
    font-size: 48px;
    padding-top: 80px;
    font-weight: 700;
    color: white;
}

.texthome {
    color: #ffc709;
    letter-spacing: 3px;
    font-size: 18px;
    font-family: 'Shadows Into Light', cursive;
    padding-top: 5px;
}

/******** footer ******/
footer {
    display: flex;
    justify-content: space-evenly;
    padding: 50px 0;
}

.social {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    padding-top: 10px;
    text-align: center;
    box-shadow: 5px 10px 10px silver;
    transition: all 0.5s;
    cursor: pointer;
    color: black;
}

.social i {
    width: 100%;
    height: 100%;
    font-size: 38px;
    color: #436243;
}

.social:hover {
    transform: scale(1.2);
    box-shadow: 5px 10px 30px silver;
}

.fa-brand {
    transition: all 0.5;
}

.fa-facebook-f:hover {
    color: blue;
}

.social:nth-child(2):hover {
    color: white;
    background-color: black;
}

.fa-tiktok:hover {
    color: white;
}

.fa-instagram:hover {
    color: rgb(255, 63, 121);
}

.fa-youtube:hover {
    color: red;
}

/******** end footer ******/
/************** end Home *************/

/************* products *************/
.products {
    font-family: Raleway, sans-serif;
    padding: 100px 15px;
    background-color: aliceblue;
}

.ProductsTitle h4 {
    font-size: 80px;
    font-weight: 200;
    color: #436243;
    text-align: center;
    padding-right: 70%;
}

.ProductsTitle h1 {
    font-size: 75px;
    text-align: center;
    color: #ffc709;
}

.ProductsContainer {
    padding-top: 100px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.Product {
    width: 48%;
    text-align: center;
    border-radius: 6px;
    cursor: pointer;
    margin-bottom: 25px;
    position: relative;
    transition: all 0.5s;
    background-color: black;
}

.Product img {
    background-size: contain;
    width: 100%;
    height: 100%;
    border-radius: 6px;
}

.ProductText {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    padding-top: 50%;
    opacity: 0;
    border-radius: 6px;
    transition: all 0.5s;
    letter-spacing: 1px;
}

.glas {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    border-radius: 6px;
    transition: all 0.5s;
    background-color: #436243;
}

.prijs {
    font-size: 30px;
}

.text {
    font-size: 25px;
}

.ProductText p {
    font-size: 14px;
}

.Product:hover .ProductText {
    opacity: 1;
    color: #ffc709;
}

.Product:hover .glas {
    opacity: 0.5;
}

/************** end products ***********/


/**************   about *************/
.about {
    font-family: Raleway, sans-serif;
    padding: 100px 15px;
    letter-spacing: 1px;
    background-color: #436243;
}
.AboutTitle{
    width: 100%;
}
.AboutTitle h1 {
    font-size: 75px;
    text-align: center;
    color: #ffc709;
}

.AboutTitle h4 {
    font-size: 41px;
    font-weight: 200;
    color: #436243;
    text-align: center;
}

.AboutMain {
    padding-bottom: 100px;
    border-bottom: 2px #ffc709 solid;
}

.AboutPhoto {
    width: 100%;
    display: flex;
    justify-content: space-around;
    padding: 100px 0px 100px;
}

.AboutPhoto img {
    width: 100%;
    border: 2px #ffc709 solid;
    box-shadow: 0px 0px 15px silver, 0px 0px 15px silver;
}

.titletext {
    color: #e0ff7f;
    font-size: 22px;
    font-weight: 600;
}

.AboutText p {
    padding: 50px 0;
    font-size: 16px;
    color: white;
}

.AboutText a {
    padding: 15px 27px;
    background-color: #ffc709;
    border-radius: 6px;
    color: black;
    text-decoration: none;
}

.skills {
    padding: 100px 15px 0;
}

.SkillsTitle {
    font-size: 75px;
    text-align: center;
    color: #ffc709;
    padding-bottom: 100px;
}

.SkillsAssorted {
    width: 100%;
    display: flex;
    justify-content: space-around;
    padding: 100px 0px 50px;
}

.SkillsAssorted img {
    width: 100%;
    border: 2px #ffc709 solid;
    box-shadow: 0px 0px 15px silver, 0px 0px 15px silver;
}

.SkillsAssortedone {
    width: 100%;
    display: flex;
    justify-content: space-around;
    padding: 50px 0px 100px;
}

.SkillsAssortedone img {
    width: 100%;
    border: 2px #ffc709 solid;
    box-shadow: 0px 0px 15px silver, 0px 0px 15px silver;
}

/************** end about **********/

/************** teams ************/
.teams {
    font-family: Raleway, sans-serif;
    padding: 100px 15px;
    letter-spacing: 1px;
    width: 80%;
    margin: 0 auto;
}

.TaybaSweetsPhoto {
    width: 100%;
}

.TaybaSweetsPhoto img {
    min-width: 301px;
    width: 100%;
}

.TaybaSweetsText,
.TaybaHomeText {
    text-align: center;
    padding: 50px 0 150px;
}

.TaybaTradingText {
    padding-top: 50px;
    text-align: center;
}

.TaybaHomePhoto {
    width: 100%;

}
.TaybaHomePhoto img {
    width: 100%;
    min-width: 301px;
}

.TaybaTradingPhoto {
    width: 100%;
}

.TaybaTradingPhoto img {
    width: 100%;
    min-width: 301px;
}

.teams h1 {
    font-size: 50px;
    color: #ffc709;
}

.teams p {
    padding-top: 20px;
    font-size: 16px;
}

/************** end teams ***********/


/************* contact **************/
.contactUs {
    font-family: Raleway, sans-serif;
    padding: 100px 15px;
    letter-spacing: 1px;
    text-align: center;
}

.contactUs h1 {
    font-size: 75px;
    color: #ffc709;
}

.contactGroup {
    width: 100%;
    padding: 50px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.contact {
    width: 100%;
    max-width: 618px;
    display: flex;
    font-weight: 400;
    padding: 10px 0;
    justify-content: center;
}

.contactText {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    width: 70%;
}

.contactphoto {
    height: 50px;
    width: 50px;
    border-radius: 50%;
    background-color: #436243;
    color: #ffc709;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    text-align: center;
}

form {
    max-width: 375px;
    display: flex;
    flex-direction: column;
    color: #ffc709;
    justify-content: center;
    margin: 72px auto 0;
}

.farm1 {
    padding: 0 30px;
}

.maps {
    max-width: 375px;
    display: flex;
    flex-direction: column;
    text-align: center;
    border: 2px solid #ffc709;
    margin: 0 auto;
}

iframe {
    width: 100%;
    height: 90%;
}

input,
textarea {
    background-color: aliceblue;
    margin: 4px;
    padding: 10px;
    color: #436243;
    border: 2px solid #ffc709;
    margin-top: 0;
}

.submit-button {
    color: #436243;
    padding: 10px 20px;
}

@media(min-width:700px) {
    .farm {
        display: flex;
        width: 100%;
        justify-content: space-evenly;
    }

    .farm1 {
        display: flex;
        justify-content: space-around;
    }

    .maps {
        width: 40%;
        max-width: 375px;
        height: auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
        margin: 0;
    }

    form {
        width: 40%;
        max-width: 375px;
        padding-right: 0;
        margin: 0;
    }
}

/*************** end contact ***********/
@media(min-width:700px) {
    .ProductsTitle h4 {
        padding-left: 20px;
    }

    .Product {
        width: 30%;
    }

    footer {
        justify-content: center;
        gap: 40px;
    }

    .AboutPhoto {
        width: 80%;
        margin: 0 auto;
    }

    .SkillsAssorted {
        width: 90%;
        margin: 0 auto;
    }

    .SkillsAssortedone {
        width: 90%;
        margin: 0 auto;
    }

    .TaybaSweetsPhoto {
        width: 50%;
        margin: 0 auto;
    }

    .TaybaHomePhoto {
        width: 80%;
        margin: 0 auto;
    }

    .TaybaTradingPhoto {
        width: 80%;
        margin: 0 auto;
    }
}

@media(min-width:1000px) {
    .mainHome {
        display: flex;
        flex-direction: row-reverse;
    }

    .HomePhoto {
        width: 50%;
        max-height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        margin: 0 auto;
        padding-top: 0px;
    }
    .HomePhoto img {
        margin: 0 auto;
        height: 100%;
    }
    .HomeText {
        width: 50%;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    .HomeText h1{
        font-size: 100px;
    }
    .texthome{
        font-size: 32px;
    }
    .ProductsContainer {
        width: 80%;
        margin: 0 auto;
    }
    .Product {
        width: 21%;
    }
    .ProductsTitle h4 {
        color: #436243;
        text-align: center;
        padding-right: 0;
    }
    .AboutMain{
        display: flex;
        flex-wrap: wrap;
    }
    .AboutPhoto {
        width: 50%;
        margin: 0;
    }
    .AboutPhoto img{
        width: 66%;
    }
    .AboutText {
        width: 50%;
        padding: 0 100px 0 30px;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 103px;
    }
    .skills{
        display: flex;
        flex-wrap: wrap;
    }
    .SkillsTitle{
        width: 100%;
    }
    .AboutText {
        width: 50%;
        padding: 0 100px 0 30px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        margin-top: 100px;
    }
    .SkillsPhoto{
        width: 50%;
        margin: 0;
    }
    .SkillsAssorted , .SkillsAssortedone {
        width: 100%;
    }
    .TaybaSweets{
        display: flex;
        flex-wrap: wrap;
        justify-content: space-around;
        padding: 100px 0;
    }
    .TaybaSweetsPhoto {
        width: 50%;
        margin: 0;
        display: flex;
        justify-content: center;
    }
    .TaybaSweetsPhoto img{
        width: 50%;
    }
    .TaybaSweetsText {
        text-align: left;
        padding: 0; 
        width: 50%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding-left: 160px;
    }
    .TaybaSweetsText p{
        font-size: 22px;
    }
    .TaybaSweetsText h1{
            font-size: 52px;
    }
    .TaybaHome{
        display: flex;
        flex-wrap: wrap;
        justify-content: space-around;
        padding: 100px 0;
    }
    .TaybaHomePhoto {
        width: 50%;
        margin: 0;
        display: flex;
        justify-content: center;
    }
    .TaybaHomePhoto img{
        width: 50%;
    }
    .TaybaHomeText {
        text-align: left;
        padding: 0; 
        width: 50%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        flex-direction: column;
        padding-left: 160px;
    }
    .TaybaHomeText p{
        font-size: 22px;
    }
    .TaybaHomeText h1{
            font-size: 52px;
    }
    .TaybaTrading{
        display: flex;
        flex-wrap: wrap;
        justify-content: space-around;
        padding: 100px 0;
    }
    .TaybaTradingPhoto {
        width: 50%;
        margin: 0;
        display: flex;
        justify-content: center;
    }
    .TaybaTradingPhoto img{
        width: 50%;
    }
    .TaybaTradingText {
        text-align: left;
        padding: 0; 
        width: 50%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        flex-direction: column;
        padding-left: 160px;
    }
    .TaybaTradingText p{
        font-size: 22px;
    }
    .TaybaTradingText h1{
            font-size: 52px;
    }
    .contactGroup {
        width: 770px;
        padding: 50px 0;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-around;
        margin: 0 auto;
    }
    .contact {
    width: 50%;
    max-width: auto;
    display: flex;
    font-weight: 400;
    padding: 10px 0;
    justify-content: center;
}
    .farm1 {
        display: flex;
        justify-content: center;
        gap: 50px;
    }
}