/*navigation bar styles*/
.navbar-brand{
    margin-right: 2rem;
}
.nav-link{
    margin-right: 3rem;
}

/*index.html page content styles*/

/*landing content styles*/

.main-content{
    padding-top: 20px;
    padding-bottom: 15px;
    margin-top: 0px;
}

.our-story{
    background-image: url("/resources/images/landing-image1.PNG");
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 20px;
    margin-right: 20px;
    margin-left: 20px;
    border-radius: 5px;
}

.latest-news{
    padding-top: 20px;
    margin-right: 25px;
    margin-left: 25px;
    border-radius: 5px;
    padding-bottom: 15px;
    background-color: #b0e0e6;
}



/*footer styles*/

.footer{
    position: bottom;
    height: 5rem;
    width: 100%;
    padding-top: 10px;
    overflow: visible;
}
 .footer .socials.flex{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
 } 
.footer .socials{
    justify-content: space-between;
    justify-items: center;
    padding: 10px;
}
  
.socials .facebook-icon img{
    height: 50px;
    width: 50px;
}
  
.socials .facebook-icon img:hover{
    transform: translateY(-15px);
}

.socials .instagram-icon img{
    height: 50px;
    width: 50px;
}
  
.socials .instagram-icon img:hover{
    transform: translateY(-15px);
}

.socials .twitter-icon img{
    height: 50px;
    width: 50px;
}

.socials .twitter-icon img:hover{
    transform: translateY(-15px);
}

/*utilities*/
.grid-1{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.flex{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

/*media screens*/
@Media(max-width:320px) {
    .img-fluid{
        height:14rem;
        width: 94%;
        padding-left: 0.1%;
    }
}