
// FONT--------------------------------------------------------------------------------------------------------------------------------

@import url('https://fonts.googleapis.com/css?family=Open+Sans:300,400,700|Roboto:300,400,500,900|Work+Sans:300,400,700|Teko:400,600&display=swap');

$rest: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol" !default;;
$os: Open Sans, $rest;
$rob: Roboto, $rest;
$ws: Work Sans, $rest;
$tss: Teko, $rest;


// VARIABLES---------------------------------------------------------------------------------------------------------------------------

$transition: 	0.5s;

// COLOR-------------------------------------------------------------------------------------------------------------------------------

$teal: 			#16282c;
$teal-light:	#41888e;
$yellow:		#efd86a;
$grey:			#414c4f;
$white:			#ffffff;

// BOOTSTRAP OVERRIDES----------------------------------------------------------------------------------------------------------------

body{
	font-family: $os;
}

.text-yellow {
	color: $yellow !important;
}

a{
	transition: $transition;
	color: $teal;
}

a:hover{
	text-decoration: none;
	color: $teal !important;
	transition: $transition !important;
}

h1,h2,h3,h4,h5{
	font-family: $ws;
	color: $teal;
}

h1.display-4{
	color: $teal;
}

.bg-dark-gradient {
	background: rgba(76,76,76,1);
	background: -moz-linear-gradient(-45deg, rgba(76,76,76,1) 0%, rgba(89,89,89,1) 12%, rgba(102,102,102,1) 25%, rgba(71,71,71,1) 39%, rgba(44,44,44,1) 50%, rgba(0,0,0,1) 51%, rgba(17,17,17,1) 60%, rgba(43,43,43,1) 76%, rgba(28,28,28,1) 91%, rgba(19,19,19,1) 100%);
	background: -webkit-gradient(left top, right bottom, color-stop(0%, rgba(76,76,76,1)), color-stop(12%, rgba(89,89,89,1)), color-stop(25%, rgba(102,102,102,1)), color-stop(39%, rgba(71,71,71,1)), color-stop(50%, rgba(44,44,44,1)), color-stop(51%, rgba(0,0,0,1)), color-stop(60%, rgba(17,17,17,1)), color-stop(76%, rgba(43,43,43,1)), color-stop(91%, rgba(28,28,28,1)), color-stop(100%, rgba(19,19,19,1)));
	background: -webkit-linear-gradient(-45deg, rgba(76,76,76,1) 0%, rgba(89,89,89,1) 12%, rgba(102,102,102,1) 25%, rgba(71,71,71,1) 39%, rgba(44,44,44,1) 50%, rgba(0,0,0,1) 51%, rgba(17,17,17,1) 60%, rgba(43,43,43,1) 76%, rgba(28,28,28,1) 91%, rgba(19,19,19,1) 100%);
	background: -o-linear-gradient(-45deg, rgba(76,76,76,1) 0%, rgba(89,89,89,1) 12%, rgba(102,102,102,1) 25%, rgba(71,71,71,1) 39%, rgba(44,44,44,1) 50%, rgba(0,0,0,1) 51%, rgba(17,17,17,1) 60%, rgba(43,43,43,1) 76%, rgba(28,28,28,1) 91%, rgba(19,19,19,1) 100%);
	background: -ms-linear-gradient(-45deg, rgba(76,76,76,1) 0%, rgba(89,89,89,1) 12%, rgba(102,102,102,1) 25%, rgba(71,71,71,1) 39%, rgba(44,44,44,1) 50%, rgba(0,0,0,1) 51%, rgba(17,17,17,1) 60%, rgba(43,43,43,1) 76%, rgba(28,28,28,1) 91%, rgba(19,19,19,1) 100%);
	background: linear-gradient(135deg, rgba(76,76,76,1) 0%, rgba(89,89,89,1) 12%, rgba(102,102,102,1) 25%, rgba(71,71,71,1) 39%, rgba(44,44,44,1) 50%, rgba(0,0,0,1) 51%, rgba(17,17,17,1) 60%, rgba(43,43,43,1) 76%, rgba(28,28,28,1) 91%, rgba(19,19,19,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#4c4c4c', endColorstr='#131313', GradientType=1 );
}


.btn{
	font-family: $os;
	font-size: 13pt;
	border-radius: 10px;
	border: none;
}

.btn-primary{
	background-color: lighten($teal, 10%);
}

.btn-primary:hover{
	color: $white !important;
}

.btn:hover{
	background-color: $teal;
}

.clearfix{
	clear: both !important;
}

li{
	font-family: $os;
	font-size: 14pt;
	margin-top: 10px;
	margin-bottom: 10px;
	color: $grey;

}

.p-lg{
	font-family: $os;
	color: $grey;
	font-size: 20pt;
	line-height: 34pt;
	font-weight: 300;
}

p{
	font-family: $os;
	color: $grey;
	font-size: 14pt;
	line-height: 24pt;
	font-weight: 400;
	color: $grey;
}


.navbar-dark{
	background: $white !important;

	.navbar-toggler{
		color: $teal-light;
		border: solid 1px $teal-light;
	}

}

img.circle{
	border-radius: 50%;
}

.form-control{
	border: none;
	border-bottom: solid 1px $grey;
	border-radius: 0;
	padding: 0;
	background-color: transparent !important;
}

.shadow {
	box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.35) !important
}

// HEADER

header{
	height: 215px;
	position: relative;
	background-color: $teal;

	@media (max-width: 575.98px) {
		position: static;
		height: 260px;
	}
	@media (min-width: 576px) and (max-width: 767.98px) {
		height: 300px;
	}
	@media (min-width: 768px) and (max-width: 991.98px) {
		height: 300px;
	}

	.topbar{
		background-color: #60625f;
		padding: 25px 0;
		position: relative;
		top: 50px;

		@media (max-width: 575.98px) {
			padding: 25px 0px 0px 0px;
			top: 35px;
		}
		@media (min-width: 768px) and (max-width: 991.98px) {
			margin-top: 0;
		}
		@media (min-width: 992px) and (max-width: 1919.98px) {
			height: 250px;
			padding-bottom: 0;
		}

		.m-xs-0{
			margin: 0 !important;
		}

		.logo{
			@media (max-width: 575.98px) {
				text-align: center;
			}
			a{
				img{
					@media (max-width: 575.98px) {
						width: 90%;
					}
				}
			}
		}

		

		.phone{
			margin-top: 10px;

			// Extra small devices (portrait phones, less than 576px)
			@media (max-width: 575.98px) {
				margin-top: 20px;
			}

			img{
				margin-right: 20px;
				margin-bottom: 5px;
				@media (max-width: 575.98px) {
					margin-right: 10px;
				}
			}
			a{
				font-family: $os;
				font-size: 16pt;
				color: $white;

				// Extra small devices (portrait phones, less than 576px)
				@media (max-width: 575.98px) {
					font-size: 12pt;
				}
			}

			a:hover{
				color: $teal !important;
			}
		}

		.map{
			// Extra small devices (portrait phones, less than 576px)
			@media (max-width: 575.98px) {
				bottom: 10px;
				right: 10px;
				position: absolute;
			}
			@media (min-width: 576px) and (max-width: 767.98px) {
				bottom: 10px !important;
				right: 10px;
				position: absolute;
			}
			@media (min-width: 768px) and (max-width: 1199.98px) {
				bottom: 10px !important;
				right: 10px;
				position: absolute;
			}
		}


		.navbar{
			margin-bottom: -100px !important;
			padding: 0;
			margin-top: 20px;
			z-index: 10000000000;
			
			@media (max-width: 575.98px) {
				margin-bottom: 0 !important;
				padding: 10px;
				margin-top: 12px;
			}
			@media (min-width: 576px) and (max-width: 767.98px) {
				margin-bottom: 0 !important;
				padding: 10px;
			}
			@media (min-width: 768px) and (max-width: 991.98px) {
				margin-bottom: 0 !important;
				padding: 10px;
			}
			@media (min-width: 992px) and (max-width: 1199.98px) {
				margin-top: 20px;
			}
			@media (min-width: 1200px) and (max-width: 1919.98px) {
				margin-bottom: -151px !important;
			}

			.navbar-nav{
				@media (max-width: 575.98px) {
					margin-top: 20px;
				}
				@media (min-width: 576px) and (max-width: 767.98px) {
					margin-top: 20px;
				}
				@media (min-width: 768px) and (max-width: 991.98px) {
					margin-top: 20px;
				}

				.nav-item{
					margin: 0;
					margin-left: 0;
				}

				.active{
					color: lighten($teal, 45%) !important;
				}

				.nav-link{
					color: lighten($teal, 10%);
					font-family: $rob;
					font-size: 16pt;
					font-weight: 400;
					padding-left: 28pt;
					padding-right: 28pt;
					line-height: 50pt;
					margin: 0;

					@media (max-width: 991.98px) {
						text-align: left;
						line-height: 30pt;
					}
					@media (min-width: 992px) and (max-width: 1199.98px) {
						font-size: 14pt;
						padding-left: 28px;
						padding-right: 28px;
						line-height: 40pt;
					}
					@media (min-width: 1200px) and (max-width: 1919.98px) {
						line-height: 50pt;
					}
				}
				
				.custom-border {
				  position: relative;
				}
				
				.custom-border:after {
				  content: " ";
				  position: absolute;
				  border-right: 2px #27474e solid;
				  top: 35%;
				  right: 0;
				  height: 30%;
				  margin-top: auto;
				  margin-bottom: auto;
				  
				  @media (max-width: 991.98px) {
					display: none;
				  }
				}
			}
		}
	}
}


// CAROUSEL

.carousel{
	.carousel-indicators{
		margin-bottom: 0.25rem;	
		
		li{
			border: 0;
			height: 15px;
			width: 15px;
			margin-left: 5px;
			margin-right: 5px;
			border-radius: 100px;
			background: none;
			border: solid 3px $white;
			
			@media (max-width: 575.98px) {
				height: 8px;
				width: 8px;	
				border: solid 2px $white;	
			}
			@media (min-width: 576px) and (max-width: 767.98px) {
				height: 10px;
				width: 10px;
			}
		}
		.active{
			background: rgba($yellow, 1.0);
		}
	}

	.carousel-caption{
		left: 10%;
		bottom: 100px;

		@media (max-width: 575.98px) {
			bottom: 10px;
			left: 20px;
		}
		@media (min-width: 576px) and (max-width: 767.98px) {
			bottom: 30px;
			left: 50px;
		}
		@media (min-width: 768px) and (max-width: 991.98px) {
			bottom: 50px;
			left: 50px;
		}
		@media (min-width: 992px) and (max-width: 1199.98px) {
			left: 5%;
		}

		h1{
			font-size: 36pt;
			font-weight: 300;
			text-shadow: 0px 3px 5px rgba(#000, 0.5);
			color: $white;
			font-family: $rob;
			text-align: left;

			@media (max-width: 575.98px) {
				font-size: 16pt;
			}
			@media (min-width: 576px) and (max-width: 767.98px) {
				font-size: 20pt;
			}
			@media (min-width: 768px) and (max-width: 991.98px) {
				font-size: 24pt;
			}
			@media (min-width: 992px) and (max-width: 1199.98px) {
				font-size: 30pt;
			}
		}

		strong{
			font-weight: 600;
		}

	}
}


// FEATURES

.features{
	padding: 50px 0;
	
	.bg-features-title{
		background-color: rgba(#5e748b, 0.8);
	}
	@media (max-width: 575.98px) {
		padding: 30px 15px;
	}
	@media (min-width: 768px) and (max-width: 991.98px) {
		padding: 30px;
	}
	
	h1 {
		font-family: $tss;
		color: $teal-light;
	}

	a{
		transition: $transition;

		 h3{
		 	font-size: 14pt;
		 	color: $white;
		 	background-color: rgba(#5e748b, 0.8);
		 	width: 100%;
		 	transition: $transition;
		 	line-height: 60pt;
		 	text-align: center;
		 	font-family: $rob;
		 	font-weight: 500;
		 	letter-spacing: 2pt;
		 	position: absolute;
		 	z-index: 100000000;
		 	display: block;
		 	bottom: -10px;
			  @media (min-width: 768px) and (max-width: 991.98px) {
				  font-size: 12pt;
				  line-height: 40pt;
			  }
			  @media (min-width: 992px) and (max-width: 1199.98px) {
				  font-size: 16pt;
			  }
		 }

		 p{
		 	font-size: 16pt;
		 	font-weight: 400;

		 	@media (min-width: 992px) and (max-width: 1199.98px) {
		 		font-size: 14pt;
		 		line-height: 24pt;
		 	}
		 }

		 img{
		 	transition: $transition;
		 	transform: scale(1.0,1.0);
		 }
	}

	a:hover{
		transition: $transition;
		
		h3{
			color: $yellow !important;
			background-color: rgba($teal, 1);
			transition: $transition;
		}
	}
}



// CONTENT

.content{
	background-color: $teal-light;
	padding: 70px 0;

	@media (max-width: 575.98px) {
		padding: 40px 15px;
	}

	h1,h2,h3,h4,h5, a{
		color: $yellow;
	}

	a:hover{
		color: $white !important;
	}

	h1{
		letter-spacing: -0.5pt;
		font-size: 30pt;
		line-height: 36pt;
		color: $yellow;
		  @media (max-width: 575.98px) {
			  font-size: 24pt;
			  line-height: 32pt;
		  }
		  @media (min-width: 992px) and (max-width: 1199.98px) {
			  font-size: 35pt;
			  line-height: 42pt;
		  }
		  @media (min-width: 1200px) and (max-width: 1919.98px) {
			  font-size: 30pt;
			  line-height: 36pt;
		  }
	}

	h2{
		font-size: 24pt;
	}

	h3{
		font-size: 18pt;
	}

	p, li{
		font-size: 13pt;
		font-family: $ws;
		line-height: 1.6;		
		color: $white;
		font-weight: 300;
	}
	
	p {
		margin-bottom: 1.3rem;	
	}
	
	li {
		margin-top: 3px;
		margin-bottom: 3px;
	}

	.small{
		font-weight: 400 !important;
		font-size: 12pt !important;
		letter-spacing: 0;
	}

	.p-md{
		font-size: 16pt;
		line-height: 26pt;
		font-weight: 400;
	}

	aside{
		font-family: $rob;
		.title{
			font-size: 16pt;
			color: $yellow;
		}

		address{
			font-size: 13pt;
			font-weight: 300;
			color: $white;
		}

		.logobox{
			border-radius: 10px;
			background-color: $white;
			padding: 30px 30px 10px;
			text-align: center;

			@media (max-width: 991.98px) {
				margin-bottom: 30px;
			}
			@media (min-width: 992px) and (max-width: 1199.98px) {
				margin-bottom: 50px;
			}
		}
	}
}

// SPECIALITY

.speciality{
	position: relative;
	h5{
		color: $white;
		font-size: 26pt;
		font-weight: 300 !important;
		text-shadow: 0px 2px 4px rgba(#000, 0.6);
		position: absolute;
		bottom: 10px;
		right: 50px;
		
		@media (max-width: 575.98px) {
			left: 50px;
			font-size: 16pt;
		}

		@media (min-width: 576px) and (max-width: 767.98px) {
			font-size: 16pt;
		}
		@media (min-width: 768px) and (max-width: 1199.98px) {
			font-size: 22pt;
		}
		
	}

	h5.l-0{
		left: 50px;
	}
	
	a:link {
	  -webkit-transition: all .5s ease;
	  -moz-transition: all .5s ease;
	  transition: all .5s ease;
	}
	
	a:hover {
		h5 {
			font-size: 30pt;
			-webkit-transition: all .5s ease;
			-moz-transition: all .5s ease;
			transition: all .5s ease;
			
			@media (max-width: 767.98px) {
				font-size: 20pt;
			}
			@media (min-width: 768px) and (max-width: 1199.98px) {
				font-size: 26pt;
			}
		}
	}
}


// INSIDE CONTENT STYLES

.inside{
	padding: 70px 0;
	@media (max-width: 575.98px) {
		padding-left: 15px;
		padding-right: 15px;
	}

	h1,h2,h4,h5{
		font-family: $ws;
		color: $teal-light;
		font-weight: 700;
	}

	li{
		font-family: $ws;
	}

	h1{
		font-size: 30pt !important;
		line-height: 1.2;
		margin-bottom: 20px;
		letter-spacing: -0.5pt;
	}

	h2{
		font-size: 24pt !important;
		line-height: 1.2;
	}

	h3{
		font-size: 20pt !important;
		line-height: 24pt;
		font-weight: 500;
		color: $teal-light;
	}
	
	p.lead {
		font-size: 16pt;
	}
	
	p, li{
		font-size: 13pt;
		font-family: $ws;
		line-height: 1.6;		
		font-weight: 300;
	}
	
	p {
		margin-bottom: 1.3rem;	
	}
	
	li {
		margin-top: 3px;
		margin-bottom: 3px;
	}

	address{
		font-family: $ws;
		font-size: 15pt;
		line-height: 25pt;
		font-weight: 200;
	}

	address{
		strong, i{
			font-weight: 600 !important;
			font-size: 14pt;
		}
	}

	.bg-divider{
		background-color: lighten($teal-light, 50%);
		padding: 40px 0 50px 0;
		margin-top: 40px;
	}
	
	.rounded-corners-2 {
		border-top-right-radius: 60px;
		border-bottom-left-radius: 60px;
	}

	a{
		color: $teal-light;
	}
	
	.gallery{
		padding: 2px;
		img{
			@media (max-width: 575.98px) {width: 42%;}
			@media (min-width: 576px) and (max-width: 767.98px) {width: 45%;}
			@media (min-width: 768px) and (max-width: 991.98px) {width: 206px;}
			@media (min-width: 1200px) {width: 253px;}
		}
	}

	form{
		label{
			font-family: $ws;
		}
	}

}


// FOOTER

footer{
	background-color: $teal;
	padding-top: 90px;
	padding-bottom: 80px;
	color: $white;

	@media (max-width: 575.98px) {
		padding: 50px 0;
	}

	h2{
		color: $white;
		margin-bottom: 30px;
	}

	address{
		line-height: 24pt;
	}

	a{
		color: $white;
	}
	a:hover{
		color: rgba($white, 0.5) !important;
	}

	.copyright{
		margin-top: 50px;
		font-size: 10pt;
		text-align: center;
	}

	nav{
		border-top: solid 1px $white;
		border-bottom: solid 1px $white;
		display: inline-block;
		padding: 0 10px;

		@media (max-width: 575.98px) {
			padding: 0;
		}
		@media (min-width: 768px) and (max-width: 1199.98px) {
			width: 100%;
		}

		ul{
			padding-left: 0;
			margin-left: 0;
			list-style-type: none;
			li{
				display: block;
				float: left;
				
				a{
					display: block;
					font-family: $os;
					font-size: 11.5pt !important;
					float: left;
					padding-top: 5px;
					padding-bottom: 5px;
					color: $white;
					padding-left: 45px;
					font-weight: 300;
					
					@media (max-width: 767.98px) {
						padding-left: 9px;
						padding-right: 9px;
					}
					@media (min-width: 768px) and (max-width: 991.98px) {
						padding-left: 25px;
						padding-right: 25px;
					}
					@media (min-width: 992px) and (max-width: 1199.98px) {
						padding-left: 18px;
						padding-right: 18px;
					}
				}

				a:hover{
					color: rgba($yellow, 1) !important;
				}
			}

			li:first-child{
				@media (min-width: 576px) {
					a{
						padding-left: 0;
					}
				}
			}
		}
	}
}