html, body {
    height: 100%;
}

.main {
    box-sizing: border-box;
    min-height: 100%;
}

.welcome {
    position: absolute;    
    height: 20em;
    width: 800px;
    background-color: white;    
    border-radius: .5em;
}

.top {
    padding-top: 5rem;
}

.bottom {
    width: 100%;
    position: absolute;
    bottom: 0px;
}

footer p {
    margin: 0;
    font-size: .7em;
}

footer .divider {
    height: 100%;
    width: 1px;
    background-color: rgb(255, 255, 255);
}

#intro {
    background: url(../img/home.jpg), linear-gradient(rgba(0,0,0,0.7),rgba(0,0,0,0.7));
    background-blend-mode: overlay;
    height: 100vh;   
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-position: center;
    padding-bottom: 1.2rem;
    display: flex;    
    flex-direction: column;
    justify-content: center;
    align-items: center;      
}

@media screen and (min-width: 768px) {

    .landing {
        margin-bottom: 10rem;
    }

    .landing > .head {        
        /* margin-left: 1rem;
        margin-right: 1rem; */
        font-size: 4.5rem;
    }

    .mission > .heading {
        font-size: 2.5rem;
    }

    .mission > .text {
      font-size: 1.5rem;
    }
  }

  @media screen and (max-width: 768px) {

    .landing {
        margin-bottom: 7rem;
    }

    .landing > .head {
        /* margin-bottom: 3rem!important; */
        margin-left: 1rem;
        margin-right: 1rem;
        font-size: 2.5rem;
    }

    .mission > .heading {
        font-size: 1.5rem;
    }

    .mission > .text {
      font-size: 1rem;
    }
  }

.text-white.text-yellow {
    color: yellow;
}

.contact {
    background: url(../img/phones.jpg) center center / cover no-repeat, linear-gradient(rgba(0,0,0,0.6),rgba(0,0,0,0.6));
    background-blend-mode: overlay;
}

.event {
    min-height: 50%;
    background: url(../img/events_16_9.jpg) center center / cover no-repeat, linear-gradient(rgba(0,0,0,0.6),rgba(0,0,0,0.6));    
    background-blend-mode: overlay;
}

#our-services {
    margin-top: 1000px;
}

.bg-custom {
    background-color: rgba(107, 186, 181, 0.6);
    transition: background 1s;
}

.navbar.scrolled {
    background-color: rgba(0, 0, 0, 1) !important;
    transition: background 1s;
}

.navbar-dark .navbar-nav .nav-link {
    color: rgba(255,255,255, 1);
}

.navbar-dark .navbar-nav .nav-link:hover {
    color: rgba(164,137,80,1);
}