*{
    margin: 0;
    padding: 0;
    font-family: figtree;
    font-weight: bold;
}

body{
    background-image: linear-gradient(#181818, rgb(44, 44, 44));
}



/* -------------------------------------------------------- Banner -------------------------------------------------------- */
.banner{
    min-height: 65vh;
    width: 100%;
    overflow: hidden;
    background-position: center;
    background-size: cover;
    background-image: linear-gradient(rgba(0, 80, 16, 0.74), rgb(10, 87, 0)),url(../images/omniproducts/OmniProductsBanner.webp);
    font-family: proxima-nova;
    font-weight: 900;
    font-style: normal;
}

.text-box{
    width: 75%;
    color: #ffffff;
    position: absolute;
    top: 37.5%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    overflow: hidden;
    text-shadow: 1px 0 black;
    color: black;
    text-align: right;
}

.text-box h1{
    font-size: 90px;
    font-family: proxima-nova;
    font-weight: 900;
    font-style: bold;
    line-height: 70px;
}

.text-box h3{
    font-size: 45px;
    font-family: proxima-nova;
    font-weight: 900;
    line-height: 50px;

}

.text-box p{
    z-index: -1;
    margin: 10px 0 10px;
    font-size: 22px;
    color: #ffffff;
}

.hero-btn{
    display: inline-block;
    text-decoration: none;
    color: #ffffff;
    border: 1px solid #ffffff;
    border-radius: 10px;
    padding: 12px 34px;
    font-size: 25px;
    background: rgba(255, 255, 255, 0.35);
    position: relative;
    cursor: pointer;
}

.hero-btn:hover{
    border: 1px solid rgba(25, 140, 3, 0.4);
    border-radius: 10px;
    background-image: linear-gradient(#181818, rgb(44, 44, 44));
    transition: 1s;
}



/* -------------------------------------------------------- Content -------------------------------------------------------- */
.content .row{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 10px;
    margin-bottom: 10px;

}

.content{
    width: 100%;
    margin: auto;
    text-align: center;
    padding-top: 50px;
    color: #c73232;
}

.content p{
    color: #e7e7e7;
}

.content h1{
    font-size: 55px;
}

.content p{
    font-size: 22px;
}

.content-col{
    flex-basis: 32%;
    border-radius: 10px;
    margin-right: 10px;
    margin-left: 10px;
    margin-bottom: 10px;
    position: relative;
    overflow: hidden;
}

.content-col img{
    width: 100%;
    display: block;
}

.layer{
    background: transparent;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: 0.5s;
}

.layer:hover{
    background: linear-gradient(rgba(25, 140, 3, 0.5), rgba(46, 192, 30, 0.5));
}

.layer h3{
    width: 100px;
    font-weight: 500;
    color: #e7e7e7;
    font-size: 32px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
    opacity: 0;
    transition: 0.5s;
}

.layer:hover h3{
    bottom: 49%;
    opacity: 1;
}

/* -------------------------------------------------------- Content2 -------------------------------------------------------- */
.content2 .column{
    position: relative;
    top: 15%;
    left: 5%;
    width: 80%;
    margin-left: 1%;
    margin-right: 1%;
    margin-top: 5%;
    margin-bottom: 1%;
    text-align: center;
    color: #c73232;
    height: 100%;
    font-size: 35px;
}

.content2 .description{
    text-align: justify;
    font-weight: normal;
    color: #ffffff;
}