*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    transition: all 500ms ease-in-out;
}

.nav{
    display: flex;
    flex-direction: row;
    height: 120px;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    position: relative;
    width: 100%;
}

.nav .img-container{
    justify-content: flex-start !important;
}

nav{
    position: fixed;
    width: 100%;
    /* background-color: rgba(255, 255, 255, 0.1); */
    z-index: 100;
}

.list-container ul{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.list-active{
    color: #A2C543 !important;
}

.list-container ul li{
    list-style-type: none;
}

.list-container ul li a{
    color: #FFFFFF;
    text-decoration: none;
    font-family: 'Ubuntu', sans-serif;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 14px;
}

.list-container ul li a:hover{
    color: #A2C543;
}

.list-container ul li:not(:last-child){
    padding-right: 45px;
}

.home{
    background: url('./assets/blog-banner.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.home .content{
    position: relative;
    top: 50%;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}

.home .content h1{
    font-family: 'Ubuntu', sans-serif;
    font-weight: 500;
    font-size: 32px;
    color: #A2C543;
    text-transform: uppercase;
}

.home .content .span{
    font-family: 'Ubuntu', sans-serif;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
}

.home .content .span span:first-child{
    color: #FFFFFF;
    padding-right: 10px;
}

.home .content .span span:not(:first-child){
    color: #A2C543;
}

.products{
    margin-top: 150px;
    padding: 0 220px;
}

body{
    background-color: #F9F9F9;
}

.products .product-head{
    display: flex;
    flex-direction: row;
    align-items: center;
    text-transform: uppercase;
    font-family: 'Ubuntu', sans-serif;
    font-weight: 500;
    font-size: 24px;
    margin-bottom: 55px;
}

.product-head h3 span{
    color: #004586;
}

.products .product-head i{
    padding-right: 10px;
}

.products .product-list-one .product{
    background-color: #FFFFFF;
    width: 30%;
    margin-top: 45px;
}

.product .img-container img{
    width: 98%;
}

.product .img-container{
    padding-left: 10px;
    position: relative;
}

.products .product-list-one .product .text-container{
    padding: 40px;
    font-family: 'Ubuntu', sans-serif;
    font-weight: 500;
    font-size: 17px;
    line-height: 30px;
}

.products .product-list-one .product .text-container:hover{
    color: #A2C543;
    cursor: pointer;
}

.product-list-one{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
}

.head-two{
    margin-top: 55px;
}

footer{
    background-color: #232323;
    color: #FFFFFF;
    height: 78px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Lora', serif;
    font-weight: 400;
    font-size: 14px;
    color: #B4B4B4;
    margin-top: 150px;
}

.navTransparent{
    background-color: rgba(225, 225, 225, 0.1);
}

.navColored{
    background-color: #232323;
}

.menu{
    position: absolute;
    top: 120px;
    background-color: #232323;
    width: 100%;
    z-index: 100;
    left: 0;
    display: none;
    flex-direction: column;
}

.menu li{
    padding-bottom: 30px;
    padding-left: 20px;
}

.menu li a{
    color: #FFFFFF;
    text-decoration: none;
    font-family: 'Ubuntu', sans-serif;
    text-transform: uppercase;
}

.menu li a:hover{
    color: #A2C543;
}

.ham{
    width: 30px;
    height: 5px;
    border-radius: 24px;
    background-color: #FFFFFF;
}

.ham-menu{
    flex-direction: column;
    justify-content: center;
    display: none;
    align-items: center;
}

.ham:not(:last-child){
    margin-bottom: 5px;
}

.top-clicked{
    rotate: 45deg;
    transform: translateY(10px) translateX(5px);
}

.mid-clicked{
    display: none;
}

.bottom-clicked{
    rotate: 135deg;
    translate: -7px;
}

.menu-clicked{
    display: flex;
}

.menu li:first-child{
    padding-top: 20px;
}

.product:hover{
    cursor: pointer;
}

.product .img-container a{
    background-color: rgba(180, 180, 180, 0.6);
    /* opacity: 0.6; */
    display: none;
    position: absolute;
    width: 94%;
    height: 100%;
    justify-content: center;
    align-items: center;
    transition: all 300ms ease;
}

.product .img-container a i{
    font-size: 18px;
    color: #000000;
    background-color: #FFFFFF;
    padding: 24px;
    position: absolute;
    border-radius: 50%;
    animation: fade-in 1000ms ease;
    transition: all 1000ms ease;
}

@keyframes fade-in {
    from{
        top: 0px;
    }
    to{
        top: 100px;
    }
}

.product .img-container:hover a{
    display: flex;
    transition: all 500ms ease;
}

@media (max-width: 768px) {
    .list-container{
        display: none;
    }

    nav{
        background-color: #232323;
    }

    .nav{
        background-color: #232323;
    }
    
    .img-container img{
        width: 80%;
    }
    
    .ham-menu{
        display: flex;
    }
    
    .home .content{
        flex-direction: column;
        align-items: center;
    }

    .products{
        padding: 0px !important;
    }
    
    .product{
        width: 100% !important;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .product .img-container{
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
    }

    .product-head{
        padding-left: 20px;
    }

    .nav .img-container img{
        position: relative;
        left: -30px;
    }
}