@font-face 
{
    font-family: archivo;
    src: url('../fonts/Archivo_Expanded-Bold.ttf')  format('truetype')
}
html {
    font-size:17px ;
}
header
{
   background-color: #FFF;
}
h2, h3, p, li, a
{
    font-family: archivo,sans-serif;
}
.navbar-nav li a
{
    padding: 1rem 2.5rem!important;
}
.popover-link-container a
{
    color:#193934
}
.navbar-nav li:not(:last-child) a
{
    color:#000
}
.navbar-nav li:not(:last-child) a:hover
{
    color:#193934
}
.order-online-btn
{
    border: 1px solid#FFF;
    background-color: #193934;
    color:#FFF;
    transition: all 0.4s;
}
.order-online-btn:hover
{
    border: 1px solid#193934;
    background-color: #FFF;
    color:#193934;
}
#main-banner
{
    background: url('../images/main-background.png');
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 43vw;
}
.main-title
{
    font-family: archivo,sans-serif;
    font-size: 3rem;
    color: #193934;
}
section#about-us,section#menu, section#contact-us
{
    margin-top: 7rem;
}
section#about-us p
{
    font-size: 1.1rem;
}

/*About us*/
.about-us-img
{
    background: url(../images/about-us.jpeg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    min-height: 500px;
}
.about-us-title-1
{
    color:#193934;
    font-size: 1rem;
    font-weight: 600;
} 
.about-us-title-2
{
    position: relative;
    display: inline-block;
    font-size: 2.5rem;
    font-weight: 600;
} 
.about-us-title-2::after
{
    display: block;
    content: '';
    background-image: url('../images/about-us-divider.png');
    background-repeat: no-repeat;
    width: 100%;
    height: 25px;
    background-size: 100%;
    margin: 0.8rem auto;
}   
/*End About us*/

/*Menu*/
.menu-title-1
{
    color:#193934;
    font-size: 1rem;
    font-weight: 600;
}
.menu-title-2
{
    color:#000;
    font-size: 2rem;
    font-weight: 600;
}
section#menu a
{
    color:#193934;
    font-weight: 600;
}
section#subscribe
{
    margin-top: 7rem;
    background-color: #193934;
    height: 400px;
}
.menu-images
{   
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.menu-images::before
{
    display: block;
    content: '';
    height: 100%;
    width: 100%;
    background-color: rgba(0,0,0,0.2);
    position: absolute;
}

.menu-images::after
{
    display: block;
    content: '';
    height: 96%;
    width: 97%;
    border: 2px solid #FFF;
    position: absolute;
}

/*End Menu*/

/*Contact us*/
.contact-us-title-1
{
    color:#193934;
    font-size: 1rem;
    font-weight: 600;
} 
.contact-us-title-2
{
    position: relative;
    display: inline-block;
    font-size: 2rem;
    font-weight: 600;
} 
#contact-form .error, .contact-form-error
{
    color: red;
}
.contact-form-success
{
    margin-top: 30px;
    color: #193934;
}
#contact-form input[type="text"],#contact-form input[type="email"]
,#contact-form input[type="phone"],#contact-form textarea
{
    border: none;
    border-bottom: 2px solid #000;
    width: 100%;
    margin-top: 2rem;
    padding: 0.5rem 0;
    outline: 0;
}

#send_contact_form
{
    margin-top: 2rem;
    border: 1px solid #FFF;
    background-color: #193934;
    color: #FFF;
    padding: 1rem 2.5rem;
    font-weight: 600;
    transition: all 0.4s;
}
#send_contact_form:hover
{
    color: #193934;
    border:1px solid #193934;
    background-color: #FFF;
}
.map iframe
{
    width: 100%;
    height: 100%;
}
/*End Contact us*/

/*Footer*/
footer
{
    background-color: #193934;
    margin-top: 7rem;
}
footer hr
{
    border: none;
    height: 2px;
    color:#FFF;
    opacity: 1;
    background-color: #FFF;
    margin-top: 4rem!important;
    margin-bottom: 3em!important;
}
footer p
{
    color:#FFF
}
footer>.container-fluid
{
    padding-top: 5rem;
    padding-bottom: 1rem;
}
/*End Footer*/

#return-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: rgb(0, 0, 0);
    background: rgba(0, 0, 0, 0.7);
    width: 35px;
    height: 35px;
    display: block;
    text-decoration: none;
    -webkit-border-radius: 35px;
    -moz-border-radius: 35px;
    border-radius: 35px;
    display: none;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    z-index: 2;
}
#return-to-top i {
    color: #fff;
    margin: 0;
    position: relative;
    left: 8.5px;
    top: 4px;
    font-size: 19px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
#return-to-top:hover {
    background: rgba(0, 0, 0, 0.9);
}
#return-to-top:hover i {
    color: #fff;
    top: 0;
}

@media only screen and (max-width: 1200px)
{
    .main-title
    {
        font-size: 2.5rem;
    }   
    .nav-item a
    {
        font-size: 0.8rem;
    }
}
@media only screen and (max-width: 992px)
{
    html 
    {
        font-size:13px ;
    }
    section#about-us, section#menu, section#subscribe, section#contact-us,footer
    {
        margin-top: 3rem;
    }    
}
@media only screen and (max-width: 768px)
{    
    .about-us-img
    {
        min-height: 300px;
    }
    .navbar-brand img
    {
        max-width: 60px;
    }
    section#about-us img 
    {
      width: 100%;
    }
    .map
    {
       height: 250px;
    }
    .main-title
    {
        font-size: 2rem;
    }   
}
@media only screen and (max-width: 575px)
{
    .main-title
    {
        font-size: 1.2rem;
    }   
}