body{
    font-family: 15px/1.5 'Roboto', Arial, Helvetica,sans-serif;
    padding:0;
    margin:0;
    background-color:#F4F4F4;
    overflow-x: hidden;
    
}

html {
    scrollbar-width: none;
}

/* LANDING */
.center {
    position: absolute;
    top: 5%;
    left: 40%;
    
}

/* NAV BAR */
.navi-bar {
    background-color: #077B8A;
}

.selected {
    color: #D6ED17 !important;
}

.nav-txt {
    color: white;
}

#btn-back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none;
}

/* vertical line seperator */
.vertical {
    border-right: 1.5px solid #D6ED17;
}

.horizontal {
    border-top: 1.5px solid #D6ED17;
    width: 100%;
}

/* FOOTER */
.footer {
    background-color: #6F6F6F;
    width: 100%;
}

.footer-txt {
    font-size: small;
}

/* LANDING PAGE */
.landing {
    background-image: url('/static/info/media/veg-2-landing-option.jpg');
    background-size: cover;
    background-position: center;
    min-height: 100vh;
}

/* CONTENT */
.txt-tag {
    color: #12A4D9;
}

.home-img {
    width: 95%;
    height: 90%;
}

.about-img {
    width: 490px;
    height: 488px;
}

.vert {
    border-right: 1.5px solid #D6ED17;
}

.txt-heading {
    color: #077B8A;
}

.txt-link {
    color: #077B8A;
}

.txt-link:hover {
    color: #D6ED17;
}

.btn-link {
    color: #077B8A;
    border: 1px solid  #077B8A;
    text-decoration: none;
}

.btn-link:hover {
    background-color: #077B8A;
    color: #FFFFFF;
}

.btn-home {
    color: #3C7A6B;
    border: 1px solid #3C7A6B;
    text-decoration: none;
}

.btn-home:hover {
    background-color: #3C7A6B;
    color: #FFFFFF;
}

.defi-txt-heading {
    color: #3C7A6B;
}

.defi-aquaponics {
    color: #78822B;
}

.bracket {
    background-image: linear-gradient(#12A4D9, #12A4D9),
      linear-gradient(#12A4D9, #12A4D9),
      linear-gradient(#12A4D9, #12A4D9),
      linear-gradient(#12A4D9, #12A4D9);
    
    background-repeat: no-repeat;
    background-size: 20px 2px;
    background-position: top left, top right, bottom left, bottom right;
  
    border: solid #12A4D9;
    text-align: justify;
    border-width: 0 2px;
    display: inline-block;
    vertical-align: top;
    padding: 5px 15px;
    margin: 20px;
  }

.card-bg {
    background-color: #D9D9D9;
}

.aquaponics-process {
    background-image: url('/static/info/media/aquaponics-process.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    
}

.gallery {
    border-radius: 5px;
}

.clickable:hover {
    cursor: pointer;
}

.wide {
    width: 50%;
}

#aqua-process-mobile {
    display: none;
}

#aqua-process-pc {
    display: block;
}

.sm-text-cust {
    font-size: small;
}


/* MEDIA QUERIES */
@media only screen and (max-width: 760px) {

    .vert {
        border-bottom: 1.5px solid #D6ED17; 
        border-right: none; 
    }

    .aquaponics-process {
        background-image: url('/static/info/media/aquaponics-process.png');
        background-position: center;
        background-repeat: no-repeat;
        background-size: 100% 90%;
    }

    .wide {
        width: 100%;
    }

    .btn-home {
        color: #FFFFFF;
        background-color: #3C7A6B;
        border: 1px solid #3C7A6B;
        text-decoration: none;
    }

    #aqua-process-mobile {
        display: block;
    }
    
    #aqua-process-pc {
        display: none;
    }
}

