/*

Landing Zero theme - A free landing page theme from BootstrapZero
http://www.bootstrapzero.com

*/

@import url(https://fonts.googleapis.com/css?family=Questrial);
@import url(https://fonts.googleapis.com/css?family=Dancing + Script:700);

html,
body {
  width: 100%;
  height: 100%;
  font-family: "Questrial", "Helvetica Neue", Arial, sans-serif;
}

body {
  
  background-color: #fff;
  color: #061b44;
  webkit-tap-highlight-color: #222;
}

hr {
  max-width: 80px;
  border-width: 3px;
  opacity: 0.09;
  margin-top: 15px;
  margin-bottom: 15px;
}

hr.light {
  border-color: #fff;
}

a {
  color: #e0b522;
  -webkit-transition: all 0.35s;
  -moz-transition: all 0.35s;
  transition: all 0.35s;
}

a:hover,
a:focus {
  color: #e0b522;
  outline: 0;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  /**font-family: "Questrial", "Helvetica Neue", Arial, sans-serif;*/
  
}
.feature h3{
	color:#091f4c;
}
p {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.wide-space {
  letter-spacing: 1.6px;
}

.icon-md {
  font-size: 30px;
  line-height: 18px;
   color: #091f4c;
}

.icon-lg {
  font-size: 50px;
  line-height: 18px;
  color:#091f4c;
}

.bg-primary {
  background-color: #ccd4ec;
}

.bg-dark {
  color: #eee;
  background-color: #000000;
}

.opensans {
  /**font-family: "Open Sans", sans-serif;*/
  font-weight: 700;
  text-transform: none;
}

.text-faded {
  color: #000;
}

.text-dark {
  color: #111;
}

.text-primary {
  color: #040c32;
  
}

.modal-content {
  background-color: #000000;
}

aside {
  padding: 50px 0;
}

footer {
  padding: 15px;
}

.no-padding {
  padding: 0;
}
/* #Navigation
	================================================== */

	.start-header {
		opacity: 1;
		transform: translateY(0);
		padding: 10px 0;
		box-shadow: 0 10px 30px 0 rgba(138, 155, 165, 0.15);
		-webkit-transition : all 0.3s ease-out;
		transition : all 0.3s ease-out;
	}
	.start-header.scroll-on {
		box-shadow: 0 5px 10px 0 rgba(138, 155, 165, 0.15);
		padding: 5px 0;
		-webkit-transition : all 0.3s ease-out;
		transition : all 0.3s ease-out;
	}
	.start-header.scroll-on .navbar-brand img{
		height: 28px;
		-webkit-transition : all 0.3s ease-out;
		transition : all 0.3s ease-out;
	}
	.navigation-wrap{
		position: fixed;
		width: 100%;
		top: 0;
		left: 0;
		z-index: 1000;
		-webkit-transition : all 0.3s ease-out;
		transition : all 0.3s ease-out;
		background: linear-gradient(90deg, rgba(153,102,61,255) 0%, rgba(88,47,17,255) 100%);
	}
	.navbar{
		padding: 0;
	}
	.navbar-brand img{
		height: 52px;
		width: auto;
		display: block;
		-webkit-transition : all 0.3s ease-out;
		transition : all 0.3s ease-out;
	}
	.navbar-toggler {
		float: right;
		border: none;
		padding-right: 0;
	}
	.navbar-toggler:active,
	.navbar-toggler:focus {
		outline: none;
	}
	.navbar-light .navbar-toggler-icon {
		width: 24px;
		height: 17px;
		background-image: none;
		position: relative;
		border-bottom: 1px solid #000;
		transition: all 300ms linear;
	}
	.navbar-light .navbar-toggler-icon:after, 
	.navbar-light .navbar-toggler-icon:before{
		width: 24px;
		position: absolute;
		height: 1px;
		background-color: #000;
		top: 0;
		left: 0;
		content: '';
		z-index: 2;
		transition: all 300ms linear;
	}
	.navbar-light .navbar-toggler-icon:after{
		top: 8px;
	}
	.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
		transform: rotate(45deg);
	}
	.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
		transform: translateY(8px) rotate(-45deg);
	}
	.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
		border-color: transparent;
	}
	.nav-link{
		color: #FFF !important;
		font-weight: 500;
		/**font-family : AvenirLight;*/
		transition: all 200ms linear;
	}
	.nav-item:hover .nav-link{
		color:  #9E9E9E !important;
	}
	.nav-item.active .nav-link{
		color: #777 !important;
	}
	.nav-link {
		position: relative;
		padding: 5px 0 !important;
		display: inline-block;
	}
	.nav-item:after{
		position: absolute;
		bottom: -5px;
		left: 0;
		width: 100%;
		height: 2px;
		content: '';
		background-color: #582f11;
		opacity: 0;
		transition: all 200ms linear;
	}
	.nav-item:hover:after{
		bottom: 0;
		opacity: 1;
	}
	.nav-item.active:hover:after{
		opacity: 0;
	}
	.nav-item{
		position: relative;
		transition: all 200ms linear;
	}
	
	
	.nav-item .dropdown-menu {
		transform: translate3d(0, 10px, 0);
		visibility: hidden;
		opacity: 0;
		max-height: 0;
		display: block;
		padding: 0;
		margin: 0;
		transition: all 200ms linear;
	}
	.nav-item.show .dropdown-menu {
		opacity: 1;
		visibility: visible;
		max-height: 999px;
		transform: translate3d(0, 0px, 0);
	}
	.dropdown-menu {
		padding: 10px!important;
		margin: 0;
		font-size: 13px;
		letter-spacing: 1px;
		color: #212121;
		background-color: #fcfaff;
		border: none;
		border-radius: 3px;
		box-shadow: 0 5px 10px 0 rgba(138, 155, 165, 0.15);
		transition: all 200ms linear;
	}
	.dropdown-toggle::after {
		display: none;
	}

	.dropdown-item {
		padding: 3px 15px;
		color: #212121;
		border-radius: 2px;
		transition: all 200ms linear;
	}
	.dropdown-item:hover, 
	.dropdown-item:focus {
		color: #fff;
		background-color: rgba(129,103,169,.6);
	}

	



	/* #Media
	================================================== */

	@media (max-width: 767px) { 
		h1{
			font-size: 38px;
		}
		.nav-item:after{
			display: none;
		}
		.nav-item::before {
			position: absolute;
			display: block;
			top: 15px;
			left: 0;
			width: 11px;
			height: 1px;
			content: "";
			border: none;
			background-color: #000;
			vertical-align: 0;
		}
		.dropdown-toggle::after {
			position: absolute;
			display: block;
			top: 10px;
			left: -23px;
			width: 1px;
			height: 11px;
			content: "";
			border: none;
			background-color: #000;
			vertical-align: 0;
			transition: all 200ms linear;
		}
		.dropdown-toggle[aria-expanded="true"]::after{
			transform: rotate(90deg);
			opacity: 0;
		}
		.dropdown-menu {
			padding: 0 !important;
			background: radial-gradient(circle, rgba(63,94,251,1) 0%, rgba(252,70,107,1) 100%);
			box-shadow: none;
			transition: all 200ms linear;
		}
		.dropdown-toggle[aria-expanded="true"] + .dropdown-menu {
			margin-top: 10px !important;
			margin-bottom: 20px !important;
		}
		body.dark .nav-item::before {
			background-color: #fff;
		}
		body.dark .dropdown-toggle::after {
			background-color: #fff;
		}
		body.dark .dropdown-menu {
			background-color: transparent;
			box-shadow: none;
		}
	}

header {
  position: relative;
  min-height: auto;
  color: #3b2414;
  width: 100%;
  background-color: #000000;
  background-position: center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  -o-background-size: cover;
}

header .header-content {
  position: relative;
  width: 100%;
  padding: 100px 15px;
  z-index: 2;
}

header .header-content .inner h1 {
  margin-top: 0;
  margin-bottom: 0;
}

header .header-content .inner p {
  margin-bottom: 50px;
  font-size: 16px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
}

#video-background {
  position: absolute;
  right: 0;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: 1;
}

#video-background.collapsing {
  display: none;
}

footer {
  background-color: #fff;
  color:#000;
}

.footer-zone {
  background-color: #d8d4d3;
  
  height: 70px;
      color: grey;
    font-size: 15px;
}

@media (min-width: 768px) {
  .icon-md {
    font-size: 40px;
  }
  .icon-lg {
    font-size: 80px;
  }

  header {
    min-height: 100%;
  }

  header .header-content {
    position: absolute;
    top: 50%;
    padding: 0 50px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }

  header .header-content .inner {
    margin-right: auto;
    margin-left: auto;
    max-width: 1000px;
  }

  header .header-content .inner h1 {
    font-size: 53px;
  }

  header .header-content .inner p {
    margin-right: auto;
    margin-left: auto;
    max-width: 80%;
    font-size: 18px;
  }

  
}


