*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.king{
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.background-video{
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: -1;
}

@media (min-aspect-ratio:16/9) {
    .background-video{
        width: 100%;
        height: auto;
    }
}

@media (max-aspect-ratio:16/9) {
    .background-video{
        width: auto;
        height: 100%;
    }
}

.header-content{
   text-align: center;
}

.header-content p{
    padding: 15px 30px;
    font-size: 20px;
    text-align: center;
}

.header-content h1{
    padding: 15px;
    font-size: 90px;
    text-align: center;
    cursor: pointer;
    font-weight: 600;
    transition: 1s;
}
.header-content h1:hover{
    -webkit-text-stroke: 2px rgb(106, 174, 4);
    transition: 1s;
    color: transparent;
}

nav .collapse a{
    position: relative;
}

nav .collapse a::after{
    content: "";
    position: absolute;
    width: 0%;
    left: 0;
    bottom: 6px;
    height: 3px;
    background-color: rgb(106, 174, 4);
    transition: 1s;
}

nav .collapse a:hover::after{
    width: 100%;
    transition: 1s;
}

.products{
    background-color: rgb(205, 205, 205);
}

#banner1{
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 100vh;
    width: 100vw;
    background-image: url(banner44_1_1.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    position: relative;
}

@media (max-width: 425px) {
    #banner1{
        height: auto;
        width: 100vw;
    }
    .bannerContent h1, p{
        font-size: 10px;
        padding: auto;
    }
}

@media (max-width: 320px) {
    #banner1{
        height: auto;
        width: 100vw;
    }
    #banner1 .bannerContent .text{
        display: none;
    }
}

.footer{
    background-image: url(carrot-410670_1280-e1535073548523_960x.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    filter: brightness(70%);
}




