/*--Link for the goudy font--*/
    @font-face{
        font-family: 'goudyold';
        src: url(media/goudy-old-style/goudy-old-style.ttf) format("truetype");
    }
/*--CSS Reset - All browsers will show the same margins/attributes--*/
    *{
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }
/*--Body Specs--*/
    body{
        font-family: 'goudyold';
        line-height: 1.5;
    }

/*--Header--*/
    .header{
        min-height: 100vh;
        background-image: url(../Images/hero-2.jpg);
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        background-color: #f8ede5;
        margin-top: auto;
    }
    .hero{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: absolute;
        background-attachment: fixed;
        width: 100%;
        height: 100%;
    }
    .hero .title{
        color:#0B9446;
        font-size: 50px;
        font-family: 'goudyold';
    }
    .hero-button{
        display: inline-block;
        text-decoration: none;
        text-transform: uppercase;
        padding: 13px 20px;
        border-radius: 200px;
        font-weight: bold;
        background: #0B9446;
        color: white;
        cursor: pointer;
        border: 2px solid #0B9446;
        margin-top: 10px;
        font-family: 'goudyold';
    }
    .hero-button:hover{
        background: white;
        color: #0B9446;
        border:none;
    }
    .pulsate{
        animation:pulsate 3s ease-in-out;
        animation-iteration-count: infinite;
        opacity: .3;
        color: white;
    }
    @-webkit-keyframes pulsate{
        0%{
            opacity:.3;
        }
        50%{
            opacity: 1;
        }
        100%{
            opacity: .3;
        }
    }
/*--Top navbar for all pages--*/
    #nav{
        list-style-type:none;
        margin: 0 -18px;
        margin-top: 15px;
        padding: 0;
        height: 60px;
        background-color:#111;
        text-align:center;
        font-family:'goudyold',serif;
        font-size: 18px;
    }
    #nav li{
        display:inline-block;
        text-align:center;
        height:60px;
        line-height:60px;
    }
    #nav li a{
        display:inline-block;
        padding:0px 25px;
        color:#fff;
        text-decoration:none;
    }
    #nav li a:hover{
        text-align:center;
        background-color:#0B9446;
        text-decoration:none;
    }
/*--Horizontal Logo Specs--*/
    .img-logo{
        width:600px;
        text-align: center;
        display: block;
        position: relative;
        top: 50%;
        left: 50%;
        transform: translate(-50%, 0%);
    }
/*--Footer--*/
    footer {
        text-align: center;
        padding: 3px;
        background-color: black;
        color: white;
        font-family: 'klinic slab';
    }
/*--Intro Paragraph on Home Page--*/
.intro{
    color: white;
    font-size: 23px;
    font-family: 'goudyold';
    line-height: 30px;
    margin: 30px;
    text-align: center;
    width: 100%;;
    border: 5px solid black;
    padding: 5px;
    background-color: black;
    opacity: 0.8;
}
.intro-title{
    color: #0B9446;
    font-size: 40px;
    width: 100%;
    border: 5px solid black;
    padding: 5px;
    margin: 0;
    background-color: black;
    text-align: center;
    opacity: 0.8;
}
/*--Hours Info on Contact Page--*/
.hours-info{
    text-align: center;
    color: white;
    font-size: 17px;
    line-height: 35px;
    width: 100%;
    border: 5px solid black;
    background-color: black;
    opacity: 0.8;
}
/*--Staff Info Cards--*/
h1{
    text-align: center;
    color: #0B9446;
    font-size: 45px;
}
.container{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80%;
    margin: auto;
    position: relative;
}
.our-team{
	display: flex;
	width: 15rem;
	background-color: black;
	text-align: center;
	align-items: center;
	align-content: center;
	flex-direction: column;
	justify-content: center;
	overflow: hidden;
	position: relative;
	margin: 10px 15px;
	padding: 30px 50px;
	opacity: 0.9;
}
.our-team .pic{
    display: inline-block;
    width: 130px;
    height: 130px;
    margin-bottom: 0px;
    z-index: 1;
    position: relative;
}
.our-team .pic::before{
    content: "";
    width: 100%;
    height: 0;
    border-radius: 50%;
    background: #0B9446;
    position: absolute;
    bottom: 135%;
    right: 0;
    left: 0;
    opacity: 0.9;
    transform: scale(3);
    transition: all 0.3s linear 0s;
}
.our-team:hover .pic::before{
    height: 100%;
}
.our-team .pic:after{
    content: "";
    width: 100%;
    height: 0;
    border-radius: 50%;
    background: #0B9446;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}
.our-team .pic img{
    width: 100%;
    height: auto;
    border-radius: 50%;
    transform: scale(1);
    transition: all 0.9s ease 0s;
}
.our-team:hover .pic img{
    box-shadow: 0 0 0 10px #0B9446;
    transform: scale(0.7;)
}
.our-team .team-content{
    margin-bottom: 30px;
}
.our-team .title{
    font-size: 23px;
    font-weight: 700px;
    color: #0B9446;
    letter-spacing: 1px;
    margin-bottom: 5px;
}
.our-team .post{
    display: block;
    font-size: 17px;
    color: white;
}
@media (max-width:720px){
    .container{
        flex-direction: column;
        margin: 2rem;
    }
    .our-team{
        width: 80%;
        margin-top: 30px;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
    }
}
/*--Menu Page Items--*/
    .menu-items{
        text-align: center;
        color: white;
        font-size: 17px;
        line-height: 35px;
        width: 980px;
        border: 5px solid black;
        background-color: black;
        opacity: 0.8;
        margin-top: 0px;
        display: inline-block;
    }
    .menu-head{
        color: #0B9446;
        font-size: 30px;
        padding-top: 10px;
        padding-bottom: 10px;
    }
    .menu-items-app li{
        text-decoration: none;
}
/*--Menu Page Background Image--*/
    .box{
        background-image: url(../Images/menu-background.jpg);
        background-repeat: no-repeat;
        opacity: 0.9;
    }
/*--Contact Page Background Image--*/
    .contact-us{
        background-image: url(../Images/location-background.jpg);
        background-repeat: no-repeat;
        opacity: 0.9;
        background-size: cover
    }
/*--Reservations Page Form--*/
    .reservations{
        color: #0B9446;
        text-align: center;
        font-size: 35px;
        padding-top: 15px;
    }
    .booking{
        text-align: center;
        color: white;
        padding: 20px;
        font-size: 20px;
        width: 100%;
        border: 5px solid black;
        background-color: black;
        opacity: 0.8;
        margin-top: 0px;
    }
    input{
        width: 27%;
        line-height: 21px;
    }
    button{
        width: 20%
    }
/*--Reservations Page Background Image--*/
    .reserve-background{
        background-image: url(../Images/reserve-background.jpg);
        background-repeat: no-repeat;
        opacity: 0.9;
        background-size: cover;
    }
/*--Reservations Page Paragraphs--*/
.cater-head{
    text-align: center;
    color: #0B9446;
    font-size: 35px;
    margin-top: 45px;
    border: 5px solid black;
    background-color: black;
    opacity: 0.8;
    margin-bottom: 0px;
}
.manager-head{
    text-align: center;
    color: #0B9446;
    font-size: 30px;
    border: 5px solid black;
    background-color: black;
    opacity: 0.8;
    margin-top: 45px;
}
.cater-paras{
    text-align: center;
    color: white;
    font-family: 'klinicslab', serif;
    border: 5px solid black;
    background-color: black;
    opacity: 0.8;
    margin-top: 0px;
}
/*--About Page Background Image--*/
    .about-background{
        background-image: url(../Images/about-background3.jpg);
        background-repeat: no-repeat;
        opacity: 0.9;
        background-size: cover;
    }
/*--Slideshow on About Us Page--*/
box-sizing: border-box;}
.mySlides {display: none;}
img {vertical-align: middle;}
.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
  padding: 15px;
  width: 1920px;
  border: 5px solid black;
  background-color: black;
  margin-top: 0px;
}
.active {
  background-color: #717171;
}
.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
}
@-webkit-keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}
@media only screen and (max-width: 300px) {
  .text {font-size: 11px}
}
.img{
    width: 100%;
    height: auto;
}
.box{
    background-color: white;
    background-size: cover;
    background-repeat: no-repeat;
}