/* Main Stylesheet */
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');

html {
	scroll-behavior:smooth;
}

html,
body {
    margin: 0;
    height: 100%;
    color: #666;
    font-family: 'Roboto', sans-serif;
    /* background-color: #f0f0f0; */
}

/* Nav */
.navbar {
	transition: max-height .5s;
}

.navScroll.navbar {
	max-height: 95px;
}
.navbar-brand p {
	font-size: 42px;
	transition: font-size .5s;
}

.navScroll .navbar-brand p {
	font-size: 35px;
}

.navbar-brand img {
	max-width: 80px;
	transition: max-width .5s;
}

.navScroll .navbar-brand img {
	max-width: 65px;
}

.navbar-light {
	background-color: #fff;
}

.navbar-light .navbar-nav .active>.nav-link, .navbar-light .navbar-nav .nav-link.active, .navbar-light .navbar-nav .nav-link.show, .navbar-light .navbar-nav .show>.nav-link {
	border-bottom: 4px solid #f7e801;
}

.navbar-expand-lg .navbar-nav .nav-link {
	transition: padding .5s;
}

.navScroll.navbar-expand-lg .navbar-nav .nav-link {
	padding: .25rem 1rem;
}
/* Nav End */

/* General */
h1 {
	font-size: 2rem;
    margin-bottom: 1rem;
}

h1 span {
	display: none;
}

h1, h2 {
	text-transform: uppercase;
}

p a:link,
p a:active,
p a:hover,
p a:visited {
    color: #666;
}

.fa-ul {
	margin-left: 1.60em;
}

section {
    padding: 35px 0;
}

.bg-light-grey {
    background-color: #f3f3f3;
}
/* General End */

/* Services */
.services .col-md-4 {
    margin-bottom: 25px;
}

.services .col-md-4 img {
	position: relative;
	transition: transform .2s;
}

.services .col-md-4 img:hover {
	transform: scale(1.03);
}

.services .col-md-4 p {
    bottom: 0;
    text-align: center;
    padding: 10px 0;
    background-color: #f7e801;
    width: 100%;
    margin-bottom: 0;
    font-weight: 500;
}
/* Services End */

.map {
	max-height: 350px;
}

/* Form */
.form-control,
.btn {
    border-radius: 0;
}

.btn-primary {
    background-color: #f7e801;
    color: #666;
    border: none;
}

.btn-primary:hover {
    background-color: #f7e801;
    color: #666;
    border: none;
    transform: scale(1.1);
    transition: all 0.2s ease-in-out;
}
/* Form End */

#about, #services, #contact-us {
	visibility: hidden;
	position: relative;
	top: -100px;
}

/* Footer */
footer {
    color: #fff;
    background-color: #666;
    padding: 25px 0;
}

.fa-circle {
    color: #f7e801;
}

.fa-inverse {
    color: #666;
}
/* Footer End */

/* Media Queries */
@media(max-width: 992px) {
	.contact-nav {
		display: none;
	}

	.navbar-nav {
		text-align: center;
	}

	.navbar-brand p {
		display: none;
	}

	h1 span {
		display: inline-block;
	}
}

@media (max-width: 1382px) {
	.navbar-header {
		float: none;
	}

	.navbar-left,
	.navbar-right {
		float: none !important;
	}

	.navbar-toggler {
		display: block !important;
	}

	.navbar-collapse {
		border-top: 1px solid transparent;
		box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
	}

	.navbar-fixed-top {
		top: 0;
		border-width: 0 0 1px;
	}

	.navbar-collapse.collapse {
		display: none !important;
	}

	.navbar-nav {
		float: none !important;
		margin-top: 7.5px;
		display: flex;
		flex-direction: column !important;
		align-items: flex-end;
	}

	.navbar-nav > li {
		float: none;
	}

	.navbar-nav > li > a {
		padding-top: 8px;
		padding-bottom: 8px;
	}

	.collapse.show {
		display: block !important;
		margin: 0;
	}

	.navbar-brand p {
		font-size: 30px;
		transition: font-size .5s;
	}

	.navScroll .navbar-brand p {
		font-size: 25px;
	}
}

@media(min-width: 460px) {
	.contact-nav-small {
		flex-direction: row !important;
		display: flex !important;
		align-items: flex-end !important;
	}

	.phone-contact {
		display: none;
	}
}

@media(max-width: 460px) {
	.nav-item.divider, .contact-nav-small {
		display: none !important;
	}
}
/* Media Queries End */
