:root {
    background-color: #006400;
    
}

/*Extra Large screens - Extra large desktops*/
.header{
    margin: auto;
    padding: auto;
}

.heeder-large-screen{
    display: flex !important;
    justify-content: space-evenly !important;
    color:white;
    font-size: 18px !important;
}

#nav{
    background-color: #228B22;
}

#nav a{
    font-size: 13px !important;
    color: white;
}


#name {
    text-transform: uppercase;
    font-size: 35px;
    color: white;
    text-align: center;
    font-weight: 800;
    transition: 0.5s;
}

.blink {
    font-size:large;
    animation: blinker 2s linear;
    color: white;
    font-family: sans-serif;
}
@keyframes blinker {
    50% {
        opacity: 0;
    }
}


.hero-text{
    width:70% !important;
    margin: auto !important;
    display: flex;
    flex-wrap: wrap;    
}

.hero-text p{
    color:white;
    width: 50%;
}

.hero-title{
     /* padding-top:80px; */
     font-weight: 800;
    text-transform: uppercase;
    font-size: 50px;
    color:white;
    text-align: center;
}

.social{
    width:100%;
}

.icons{
    font-size: 20px;
    letter-spacing: 5px;
}

main{
    width:80% !important;
    margin: auto !important;
}

.title{
    color:white;
    font-weight: 600;
    font-size: 40px;;
    margin:50px 0px;
    text-align: center;
    text-transform: uppercase;    
}

h3{
    color:white;
    text-align: center;
}

.farm{
    display: flex;
    
    flex-wrap: wrap;
    align-items: center;
    /* background-color:	rgba(0, 0, 47,0.3); */
    justify-content: space-evenly;
}

#farm-list{
    margin: 35px;
    height: 350px;
    width:300px;
    display: flex;
    overflow: hidden;
    border-top: none;
    flex-direction: column;
    align-items: center;
    border:1px solid gray;
    background: rgba(225, 75, 255, 0.1);
    box-shadow: 0 8px 40px 0 rgba(45, 57, 231, 0.37);
    backdrop-filter:inherit ;
    -webkit-backdrop-filter:brightness(4px);
    border-radius: 10px;
    border: 1px solid rgba( 255, 255, 255, 0.18 );
}

#farm-list:hover{
    transform: scale(1.05);
}

/* Our store*/
.store{
    margin-top: 50px;
}
.farm-store{
    margin-top: 20px !important;
display: flex;
justify-content: space-evenly;
flex-wrap: wrap;
}
.farm-image{
    width:300px;
    height: 250px;
    
}
.farm-image img{
    width:100%;
    height: 100%;
    object-fit: cover;
}
.farm-store-list{
    width:300px;
    height: 300px;
     margin: 20px;
    overflow: hidden;
    border-top: none;
    background: rgb(18, 59, 18, 0.25);
    -webkit-box-shadow: 0 8px 40px 0 rgba(108, 117, 235, 0.37);
    box-shadow: 0 8px 40px 0 rgba(93, 102, 228, 0.37);
    backdrop-filter: blur( 4px );
    -webkit-backdrop-filter: blur( 4px );
    border-bottom: 1px solid blueviolet;
    color:white;
}

/*promo part*/
.store-text-description{
    padding-left:20px;
    display: flex;
    flex-direction: column;
    } 
    h4{
        color:white;
        font-weight: 700;
    }

    .event-hero{
        display: flex;
        flex-wrap: wrap;
        background: rgba(255, 75, 255, 0.1);
        justify-content: space-evenly;
        align-items: center;
        padding:50px;
        margin-top: 50px;
        border:1px solid black;
        border-radius: 10px;
    }

    .event-text{
        width:50%;
        color: rgb(32, 32, 31);
    }

    .event-title{
        font-size: 40px;
        text-transform:capitalize;
        font-weight: 600;
        color: white;
    }

    .event-image{
        width:400px;
        height: 500px;
    }
    .event-image img{
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
    .event-text p{
        color: white;
    }

    .event-input{
        text-align: initial;
    }
    
    .contact{
        display: flex;
        flex-wrap: wrap;
        justify-content: space-evenly;
    }
    .contact-list{
        margin-top: 15px !important;
        color: white;
    }
    h5{
        color:white;
    }
    span{
        padding-right: 10px;
    }
    .contact-list p {
        margin: auto;
        padding: auto;
    }
    .email-contact{
        width:80%;
        color: gray;
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
    } 
    /*General CSS and CSS reset*/
    html {
      scroll-behavior: smooth;
    }
    
    * {
      margin: 0;
      padding: 0;
    }


