@import url('https://fonts.googleapis.com/css?family=Nunito+Sans:300,400,700|Playfair+Display');

.btn:focus,
.form-control:focus,
*:focus {
	border-radius: 3px;
	border-color: rgba(207, 24, 24, 0.4);
	box-shadow: 0 0 0 2px rgba(207, 24, 24, 0.35);
}

body {
	background-color: #f4f4f4;
	background: radial-gradient(circle, #f4f4f4 50%, transparent 90%);
	font-family: 'Nunito Sans', sans-serif;
	font-style: normal;
	font-weight: 300;
	overflow-x: hidden;
}

html,
body {
	width: 100%;
	height: 100%;
	min-width: 300px;
	scroll-behavior: smooth;
}

/*---------------------------------------
  Typorgraphy
-----------------------------------------*/

h1,
h2,
h3,
h4,
h5,
h6 {
	font-style: normal;
	font-weight: 300;
	letter-spacing: 0px;
}

h1 {
	color: #3d3d3f;
	font-family: 'Playfair Display', serif;
	font-size: 40px;
	line-height: normal;
}

h2 {
	color: #575757;
	font-size: 35px;
	line-height: normal;
}

h3 {
	color: #cf1818;
	font-size: 16px;
	font-weight: bold;
	line-height: 32px;
	letter-spacing: 6px;
	text-transform: uppercase;
}

h4 {
	color: #797979;
	font-size: 20px;
	font-weight: 400;
}

p {
	color: #878787;
	font-size: 16px;
	font-weight: 300;
	line-height: 25px;
	letter-spacing: 0.2px;
}

strong,
span {
	color: #878787;
	font-weight: normal;
}

/*---------------------------------------
  Buttons
-----------------------------------------*/

.arrow-btn i {
	background: #000000;
	border-radius: 50%;
	color: #ffffff;
	font-size: 20px;
	width: 50px;
	height: 50px;
	line-height: 50px;
	text-align: center;
	margin-top: 32px;
	-webkit-transition: 0.5s;
	transition: 0.5s;
}

.arrow-btn i:hover {
	background: #cf1818;
}

.btn-big {
	border: 2px solid hsla(0, 79%, 75%, 1);
	border-radius: 5px;
	font-size: larger;
	padding: 1rem;
}

.btn-big:hover {
	background-color: hsla(0, 79%, 80%, 0.35);
}

.btn-big:active {
	background-color: hsla(0, 79%, 70%, 0.35);
}

/*---------------------------------------
  General
-----------------------------------------*/

html {
	-webkit-font-smoothing: antialiased;
}

a {
	color: #575757;
	-webkit-transition: 0.5s;
	transition: 0.5s;
	text-decoration: none !important;
}

a:hover,
a:active,
a:focus {
	color: #000000;
	outline: none;
}

* {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

*:before,
*:after {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.parallax-section {
	background-attachment: fixed !important;
	background-size: cover !important;
}

.parallax-section:nth-child(odd) {
	background-color: white;
}

footer,
.parallax-section {
	padding: 7rem 0;
}

/*---------------------------------------
  Pre loader section
-----------------------------------------*/

.preloader {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 99999;
	display: flex;
	flex-flow: row nowrap;
	justify-content: center;
	align-items: center;
	background: none repeat scroll 0 0 #ffffff;
}

.spinner {
	border: 1px solid transparent;
	border-radius: 5px;
	position: relative;
}

.spinner:before {
	content: '';
	box-sizing: border-box;
	position: absolute;
	top: 50%;
	left: 50%;
	width: 65px;
	height: 65px;
	margin-top: -10px;
	margin-left: -10px;
	border-radius: 50%;
	border: 1px solid #000000;
	border-top-color: #f9f9f9;
	animation: spinner 0.9s linear infinite;
}

@-webkit-@keyframes spinner {
	to {
		transform: rotate(360deg);
	}
}

@keyframes spinner {
	to {
		transform: rotate(360deg);
	}
}

/*---------------------------------------
  NAV section
-----------------------------------------*/

nav.container {
	text-align: right;
}

nav a.btn:last-of-type {
    padding-right: 0;
}

.parallax-section h2,
.parallax-section h3 {
	text-align: center;
}

/*---------------------------------------
  Home section
-----------------------------------------*/

.parallax-section.home {
	min-height: calc(100vh - 54px);
	display: flex;
	align-items: center;
	top: 54px;
	position: relative;
	padding: 0;
}

#home {
	background: url('../images/home-bg.jpg') 50% 0 repeat-y fixed;
	background-size: cover;
	background-position: center center;
	border-radius: 5px;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	min-height: 75vh;
	text-align: center;
	position: relative;
}

.home-wrapper {
	background: rgba(250, 250, 250, 0.8);
	padding: 32px 12px;
	margin: 2rem;
}

/*---------------------------------------
  M&V section
-----------------------------------------*/

section#mission-statement {
	padding: 10rem 0;
}

/*---------------------------------------
  Locations section
-----------------------------------------*/

#locations .col-md-4 img {
	border-radius: 5px;
	margin-bottom: 28px;
}

#locations p {
	min-height: 75px;
}

#locations a {
	background: #e8e8e8;
	border-radius: 8px;
	color: #000000;
	padding: 6px 12px;
	display: inline-block;
	margin: 1rem;
}

#locations a:hover {
	background: #000000;
	color: #ffffff;
}

/*---------------------------------------
  Contact section
-----------------------------------------*/

#contact .form-control {
	border: none;
	border-bottom: 1px solid #f0f0f0;
	border-radius: 5px;
	box-shadow: none;
	font-size: 18px;
	margin-top: 10px;
	margin-bottom: 10px;
	-webkit-transition: all ease-in-out 0.4s;
	transition: all ease-in-out 0.4s;
}

#contact input {
	height: 55px;
}

/*---------------------------------------
  Footer section
-----------------------------------------*/

footer {
	background: #000000;
}

footer a {
	color: #aaa;
}

footer a:hover {
	color: #fff;
}

footer .col-md-4 .support-cus:last-child {
	padding-top: 12px;
}

footer .col-md-4 .support-cus p {
	line-height: 20px;
}

footer .dash-line {
	border-top: 1px solid #292929;
	margin-top: 62px;
	padding-bottom: 52px;
	position: relative;
}

/*---------------------------------------
  Social icon
-----------------------------------------*/

.social-icon {
	position: relative;
	padding: 0;
	margin: 0;
	text-align: center;
}

.social-icon li {
	display: inline-block;
	list-style: none;
}

.social-icon li a {
	background: #f9f9f9;
	border-radius: 100%;
	color: #3d3d3f;
	cursor: pointer;
	font-size: 16px;
	text-decoration: none;
	transition: all 0.4s ease-in-out;
	width: 30px;
	height: 30px;
	line-height: 30px;
	text-align: center;
	vertical-align: middle;
	position: relative;
	margin: 0px 6px 10px 6px;
}

.social-icon li a:hover {
	background: #cf1818;
	color: #ffffff;
	transform: scale(1.1);
}
.support-cus {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	justify-content: space-around;
	padding: 2rem;
}

.support-cus a {
	background-color: hsla(0, 0%, 30%, 1);
	color: #eee;
	padding: 2rem;
	margin: 2rem;
	border-radius: 1rem;
	font-size: large;
	text-decoration: none;
}

.support-cus a:hover {
	background-color: hsla(0, 0%, 20%, 1);
}

.support-cus i {
	margin-right: 1rem;
}

/*---------------------------------------
  Mobile Responsive styles
-----------------------------------------*/

@media (max-width: 980px) {
	h1 {
		font-size: 30px;
	}
}

@media (max-width: 768px) {
	h1 {
		font-size: 27px;
	}

	h2 {
		font-size: 25px;
	}

	nav.container {
		padding: 0;
		text-align: center;
	}

	footer .col-md-4 {
		margin-bottom: 35px;
	}

	footer .col-md-6 {
		text-align: center;
	}
}

@media (max-width: 580px) {
	h3 {
		font-size: 14px;
		letter-spacing: 4px;
	}

	nav.container * {
		font-size: small;
	}

	.support-cus {
		padding-left: 0;
		padding-right: 0;
	}

	.support-cus a {
		font-size: inherit;
	}

	footer,
	#contact {
		padding: 2rem 0;
	}
}

@media (max-width: 360px) {
	#home {
		height: 85vh;
	}
}

#guide-2-greatness .dibba {
	text-align: center;
	background-color: white;
	padding: 1.5rem;
	margin: 1.5rem;
	box-shadow: 5px 5px 0 rgba(207, 24, 24, 0.25);
}

.location.dibba {
	background: rgb(244, 244, 244);
	width: 300px;
	text-align: center;
	margin: 2rem;
	padding: 2rem;
	visibility: visible;
	animation-delay: 0.4s;
	animation-name: fadeInUp;
	box-shadow: 5px 5px 0 silver;
}

#careers h3.dibba {
	width: 300px;
	padding: 2rem;
	margin: 2rem;
	align-self: center;
	box-shadow: 5px 5px 0 silver;
}

#careers h3.dibba:hover,
.dibba:hover {
	position: relative;
	top: 3px;
	left: 3px;
	box-shadow: 2px 2px;
	cursor: default;
}

#guide-2-greatness .dibba:hover {
	box-shadow: 2px 2px 0 rgba(207, 24, 24, 0.35);
}
