*{
    margin: 0;
    padding: 0;
}

body{
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 300;
    color: #242424;
}
a{
    text-decoration: none;
    color: #242424;
    font-weight: 400;
}
a:hover{
    color: #ad2628;
}
#banner{
    background: url('../img/banner.jpg') no-repeat;
    background-size: cover;
    width: 100%;
    height: 100vh;
    align-items: center;
    display: flex;
}
#banner h1{
    font-size: 4rem;
    font-weight: 400;
    color: #ad2628;
}
#about{
    width: 100%;
    min-height: 100vh;
    align-items: center;
    display: flex;
    background: url('../img/about-bg.jpg');
    padding: 6rem 0;
}
#about h2{
    color: #fff;
    font-weight: 300;
    margin-bottom: 2rem;
}
#about p{
    color: #fff;
    font-weight: 300;
    margin-bottom: 2rem;
}
#about p:last-child{
    margin-bottom: 0;
}
#services, #contact{
    padding: 6rem 0;
}
h2 span{
    color: #ad2628;
}
h3{
    font-size: 1.125rem;
    font-weight: 300;
}
h4{
    font-size: 1.125rem; 
    font-weight: 600;
    color: #ad2628;
}
h5{
    font-size: 1rem;
    font-weight: 600;
}
p{
    font-size: 0.875rem;
}
footer{
    padding: 3rem 0;
    background: #f0f0f0;
}
.icon{
    width: 64px;
    height: 64px;
    background: #ad2628;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex: 0 0 auto;
}
#gallery{
    padding: 6rem 0;
    background: #f0f0f0;
}
.whatsapp {
	position: fixed;
	bottom: 30px;
	right: 15px;
	background: green;
	color: #fff;
	border-radius: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	box-shadow: 0 5px 15px -3px rgba(0, 128, 0, 0.29);
    transition: all ease .6s;
}
.whatsapp i{
    font-size: 1.25rem;
}
.whatsapp:hover i, .whatsapp:visited i, .whatsapp:focus i, .whatsapp:active i{
    transition: all ease .6s;
    bottom: 24px;
    color: #fff;
}
.whatsapp:hover{
    transition: all ease .6s;
    bottom: 24px;
}
header{
    position: fixed;
    left: 0;
    top: 0;
    background: #fff;
    width: 100%;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.13);
    z-index: 9999;
}
.header-note p{
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0;
}
.header-note p span{
    color: #ad2628;
}
header .navbar-brand{
    width: 128px;
    height: 128px;
    transition: all ease .6s;
}

header.scrolled .navbar-brand{
    width: 64px;
    height: 64px;
    transition: all ease .6s;
}
.btn-primary{
    background-color: #ad2628;
    color: #fff;
    border-color: #ad2628;
    border-radius: 50px;
}
.btn-primary:hover{
    background-color: #fff;
    color: #ad2628;
    border-color: #ad2628;
}
.nav-link{
    color: #242424;
}
.nav-link:hover, .nav-link:active, .nav-link:focus{
    color: #ad2628;
}
.menu-click {
	border: 1px solid #dfdfdf;
	border-radius: 5rem;
	width: 3rem;
	height: 3rem;
	display: flex;
	align-items: center;
	justify-content: center;
}
.menulist.menu-open{
	display: block;
	position: fixed;
	left: 0;
	top: 64px;
	background: #f0f0f0;
	width: 100%;
	height: calc(100% - 64px);
	padding: 2rem;
}
.map-btn{
    display: block;
    position: relative;
}
.map-btn:hover::after{
    opacity: 1;
}
.map-btn::after {
	position: absolute;
	content: 'View Larger Map';
	left: 0;
	top: 0;
	background: #ad2628de;
	width: 100%;
	height: 100%;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1rem;
    opacity: 0;
}
.map-large{
    display: block;
}
.map-mobile{
    display: none;
}
@media(max-width:1200px){
    #banner h1 {
        font-size: 3rem;
    }
}
@media(max-width:991px){
    header .navbar-brand {
        width: 64px;
        height: 64px;
        transition: all ease .6s;
    }
}
@media (max-width:767px) {
    #banner h1 {
        font-size: 2rem;
    }
    .icon {
        width: 40px;
        height: 40px;
    }
    #gallery, #contact, #about, #services, #banner{
        padding: 3rem 0;
    }
    td{
        display: block;
    }
    .tagline{
        font-size: .775rem;
    }
    .map-large{
        display: none;
    }
    .map-mobile{
        display: block;
    }
}
@media (max-width:575px) {
    .navbar-toggler .btn-primary{display: none;}
    .tagline {
        font-size: .65rem;
    }
}