/* ------------------------------------------------------------------------------
 	Author: WebThemez
/* ------------------------------------------------------------------------------
	Typography
-------------------------------------------------------------------------------*/

/* Default Color #EEB34B */

@import url(http://fonts.googleapis.com/css?family=Open%20Sans:300,400,500,600,700);
p {
  font-size: 14px;
  line-height: 22.4px;
}
h1 {
  font-size: 65px;
  color: #2d3033;
}
h2 {
  font-size: 40px;
  color: #2d3033;
  font-weight: 600;
}
h3 {
  font-size: 28px;
}
h4 {
  font-size: 18px;
  color: #2d3033;
  font-weight: 400;
}
h5 {
  font-size: 14px;
  color: #2d3033;
  text-transform: uppercase;
  font-weight: 700;
}
.btn {
  background-color: transparent;
  color: #070709;
  font-size: 14px;
  font-weight: 600;
  border: 0;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  border-radius: 5px;
  display: inline-block;
  text-transform: uppercase;
  border: 1px solid #8c8c8c;
  padding: 10px 15px;
}
.btn:hover,
.btn:focus {
  background-color: #eeb34b;
  color: #fff;
  border-color: #72a536;
}
.btn-large {
  padding: 15px 40px;
}
#map-overlay {
  height: 400px;
  margin-top: -405px;
  background-color: rgba(35, 35, 35, 0.81);
  padding: 40px;
  color: #fff;
}
/* ------------------------------------------------------------------------------
	Global Styles
-------------------------------------------------------------------------------*/
a {
  color: #eeb34b82;
}
a:hover,
a:focus {
  text-decoration: none;
  -moz-transition: background-color, color, 0.3s;
  -o-transition: background-color, color, 0.3s;
  -webkit-transition: background-color, color, 0.3s;
  transition: background-color, color, 0.3s;
}
body {
  font-family: "Open Sans", Arial, sans-serif;
  font-weight: 400;
  color: #6c7279;
}
ul,
ol {
  margin: 0;
  padding: 0;
}
ul li {
  list-style: none;
}
.section {
  padding: 48px 0;
}
.no-padding {
  padding: 0;
}
.no-gutter [class*="col-"] {
  padding-right: 0;
  padding-left: 0;
}
.space {
  margin-top: 60px;
}
/* ------------------------------------------------------------------------------
	Header
-------------------------------------------------------------------------------*/
#header {
  position: fixed;
  width: 100%;
  z-index: 999;
  /* background: rgba(0, 0, 0, 0.18); */
}
#header .header-content {
  margin: 0 auto;
  /* max-width: 1170px; */
  padding-top: 40px;
  padding-bottom: 40px;
  /* width: 100%; */
  -moz-transition: padding 0.3s;
  -o-transition: padding 0.3s;
  -webkit-transition: padding 0.3s;
  transition: padding 0.3s;
}
#header .logo {
  float: left;
  font-size: 28px;
  font-weight: bolder;
  color: #eeb34b;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-top: -10px;
}
#header.fixed {
  background-color: #070709;
}
#header.fixed a {
  /* color: #000; */
}
#header.fixed .header-content {
  border-bottom: 0;
  padding-top: 25px;
  padding-bottom: 25px;
}
#header.fixed .navigation {
  margin-top: 8px;
  transition: margin 1s;
}
#header.fixed .nav-toggle {
  top: 18px;
  color: #000;
}
.navigation.open {
  opacity: 0.9;
  visibility: visible;
  -moz-transition: opacity 0.5s;
  -o-transition: opacity 0.5s;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
}
.navigation {
  float: right;
}
.navigation li {
  display: inline-block;
}
.navigation a {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  margin-left: 40px;
  text-transform: uppercase;
}
.navigation a:hover,
.navigation a.active {
  color: #eeb34b !important;
}
.nav-toggle {
  display: none;
  height: 44px;
  overflow: hidden;
  position: fixed;
  right: 5%;
  text-indent: 100%;
  top: 32px;
  white-space: nowrap;
  width: 44px;
  z-index: 99999;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  background: transparent;
}
.nav-toggle:before,
.nav-toggle:after {
  border-radius: 50%;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -moz-backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-transition-property: -moz-transform;
  -o-transition-property: -o-transform;
  -webkit-transition-property: -webkit-transform;
  transition-property: transform;
}
.nav-toggle:before {
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -webkit-transform: scale(1);
  transform: scale(1);
  -moz-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  color: #f05da3;
}
.nav-toggle:after {
  background-color: transparent;
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -webkit-transform: scale(0);
  transform: scale(0);
  -moz-transition-duration: 0s;
  -o-transition-duration: 0s;
  -webkit-transition-duration: 0s;
  transition-duration: 0s;
  color: #f05da3;
}
.nav-toggle span {
  bottom: auto;
  display: inline-block;
  height: 3px;
  left: 50%;
  position: absolute;
  right: auto;
  top: 50%;
  width: 18px;
  z-index: 10;
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}
.nav-toggle span:before,
.nav-toggle span:after {
  background-color: #fff;
  content: "";
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -moz-backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-transition: -moz-transform 0.3s;
  -o-transition: -o-transform 0.3s;
  -webkit-transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
}
.nav-toggle span:before {
  -moz-transform: translateY(-6px) rotate(0deg);
  -ms-transform: translateY(-6px) rotate(0deg);
  -webkit-transform: translateY(-6px) rotate(0deg);
  transform: translateY(-6px) rotate(0deg);
}
.nav-toggle span:after {
  -moz-transform: translateY(6px) rotate(0deg);
  -ms-transform: translateY(6px) rotate(0deg);
  -webkit-transform: translateY(6px) rotate(0deg);
  transform: translateY(6px) rotate(0deg);
}
.nav-toggle.close-nav:before {
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -webkit-transform: scale(0);
  transform: scale(0);
}
.nav-toggle.close-nav:after {
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -webkit-transform: scale(1);
  transform: scale(1);
}
.nav-toggle.close-nav span {
  background-color: rgba(255, 255, 255, 0);
}
.nav-toggle.close-nav span:before,
.nav-toggle.close-nav span:after {
  background-color: #fff;
}
.nav-toggle.close-nav span:before {
  -moz-transform: translateY(0) rotate(45deg);
  -ms-transform: translateY(0) rotate(45deg);
  -webkit-transform: translateY(0) rotate(45deg);
  transform: translateY(0) rotate(45deg);
}
.nav-toggle.close-nav span:after {
  -moz-transform: translateY(0) rotate(-45deg);
  -ms-transform: translateY(0) rotate(-45deg);
  -webkit-transform: translateY(0) rotate(-45deg);
  transform: translateY(0) rotate(-45deg);
}
/* ------------------------------------------------------------------------------
	Banner
-------------------------------------------------------------------------------*/
.slider-banner h3 {
  color: #fff;
  font-size: 40px;
  font-weight: bolder;
  text-transform: uppercase;
}
.slider-banner p {
  color: #fff;
  font-size: 18px;
  /* font-weight: bold; */
  text-transform: capitalize;
}

.banner {
  position: relative;
  width: 100%;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.5) !important;
  transition-property: background-color;
  transition-duration: 500ms;
  /* height: 750px; */
}
.banner-text {
  padding-top: 45%;
}
.banner-text h1 {
  color: #000000;
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
}
.banner-text p {
  color: #000;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  margin-top: 30px;
  margin-bottom: 80px;
}
/* ==========================================================================
	$intro
========================================================================== */
.intro {
  background-color: #eeb34b;
  /* color: #000; */
}
.btn4 {
  margin-top: 12%;

  border-color: #000;

  color: #000;
}
.intro h3 {
  color: #010207;
  margin-top: 0;
  padding-bottom: 5px;
  text-transform: capitalize;
}
.intro p {
  color: #020107;
  font-weight: 400;
}
/* -----------------------------------------------------------------------------
Common Styles
------------------------------------------------------------------------------- */
.section-header {
  text-align: center;
  padding-bottom: 60px;
}
.section-header h2 {
  position: relative;

  margin-bottom: 28px;
}
/* h2:before {
    content: '';
    width: 78px;
    height: 4px;
    background: #EEB34B;
    position: absolute;
    bottom: -12px;
    left: 0;
    right: 0;
    text-align: center;
    margin: 0 auto;
} */
.section-header p {
}

/* ------------------------------------------------------------------------------
	 Serives
-------------------------------------------------------------------------------*/
.service-section {
  padding-top: 100px;
}
.services {
  margin-bottom: 50px;
}
.services-content {
  /* padding: 30px 20px 20px 90px; */
  padding: 40px;
  background: #ffffff;
  border: 1px solid #d2d2d2;
  text-align: left;
  position: relative;
  height: 230px;
}
.services-content:before {
  content: "";
  /* background: #9e015e; */
  padding: 2px;
  width: 100%;
  top: -6px;
  right: -6px;
  position: absolute;
  z-index: -1;
  bottom: 4px;
  -ms-transform: rotate(3deg); /* IE 9 */
  -webkit-transform: rotate(3deg); /* Safari */
  transform: rotate(3deg);
}
.services .icon {
  color: #eeb34b;
  font-size: 52px;
  /* padding-left: 15px; */
  float: left;
  /* background: #9e015e; */
  width: 92px;
  position: absolute;
  top: 38%;
  bottom: 0;
  left: 12px;
  /* border-top: 1px solid #03a9f4; */
  z-index: 9;
  font-weight: 400;
}
/* ------------------------------------------------------------------------------
	 gallery
-------------------------------------------------------------------------------*/
.work {
  -moz-box-shadow: 0 0 0 1px #fff;
  /* -webkit-box-shadow: 0 0 0 1px #fff; */
  /* box-shadow: 0 0 0 1px #fff; */
  overflow: hidden;
  position: relative;
  background: #000;
}
.work img {
  width: 100%;
  height: 100%;
  opacity: 0.6;
}
.work .overlay {
  background: rgba(56, 56, 56, 0.58);
  height: 100%;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  width: 100%;
  -moz-transition: opacity, 0.3s;
  -o-transition: opacity, 0.3s;
  -webkit-transition: opacity, 0.3s;
  transition: opacity, 0.3s;
}
.work .overlay-caption {
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.work h5,
.work p,
.work img {
  -moz-transition: all, 0.5s;
  -o-transition: all, 0.5s;
  -webkit-transition: all, 0.5s;
  transition: all, 0.5s;
}
.work h5,
.work p {
  color: #fff;
  margin: 0;
  opacity: 0;
}
.work span {
  font-size: 26px;
  color: #fff;
  border: 1px solid #ffffff;
  padding: 24px;
  text-align: center;
  border-radius: 50%;
}
.work h5 {
  margin-bottom: 5px;
  -moz-transform: translate3d(0, -200%, 0);
  -ms-transform: translate3d(0, -200%, 0);
  -webkit-transform: translate3d(0, -200%, 0);
  transform: translate3d(0, -200%, 0);
}
.work p {
  -moz-transform: translate3d(0, 200%, 0);
  -ms-transform: translate3d(0, 200%, 0);
  -webkit-transform: translate3d(0, 200%, 0);
  transform: translate3d(0, 200%, 0);
}
.work-box:hover img {
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}
.work-box:hover .overlay {
  opacity: 1;
}
.work-box:hover .overlay h5,
.work-box:hover .overlay p {
  opacity: 1;
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.services-content h5 {
  margin-bottom: 20px;
}
.video-section {
  padding: 55px 0 55px;
  margin-top: 70px;
  background-color: #000000ab;
  background-image: url(/assets/images/backgrounds/learning.jpg);
  background-blend-mode: overlay;
  background-size: cover;
  background-position: center;
}
.video-section h3,
.video-section p,
.video .title {
  color: #f0f0f0;
}
.video-section .title {
  font-size: 30pt;
}
address {
  line-height: 1.42857143;
  color: #969696 !important;
  line-height: 24px;
}
.gallery {
  margin-bottom: 0px;
  padding-bottom: 0px;
}
/* ---------------------------------------------------------------------------
About
------------------------------------------------------------------------------*/
/*	CONTENT BLOCK 3-10
/*----------------------------------------------------*/

.content-3-10 {
  padding: 0px;
  position: relative;
}

.content-3-10 .image-container {
  position: absolute;
  height: 300px;
  padding: 0px;
  top: 0px;
}

.content-3-10 .image-container .background-image-holder {
  background: url("/assets/images/portfolio/founder.jpg") no-repeat center
    center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  height: 100%;
}

.content-3-10 .content {
  margin-top: 300px;
  padding: 40px;
}

.content-3-10 h3 {
  margin-bottom: 32px;
  color: #bdbdbd;
}

.content-3-10 p {
  margin-bottom: 20px;
  color: #cecece;
}

/*	CONTENT BLOCK 3-10 MEDIA QUERIES
/*----------------------------------------------------*/

/* Small Devices, Tablets */
@media only screen and (min-width: 768px) {
  .content-3-10 .image-container {
    height: 100%;
  }

  .content-3-10 .content {
    margin-top: 0px;
    padding: 80px 15px 80px 80px;
    background-color: #272727;
    background-image: url(/assets/favicon.png);
    background-repeat: no-repeat;
    background-position: center;
    background-blend-mode: exclusion;
  }
}

/* Medium Devices, Desktops */
@media only screen and (min-width: 992px) {
}

/* Large Devices, Wide Screens */
@media only screen and (min-width: 1200px) {
}
/* pricingtable5 */
#pricing5 {
  padding: 40px 0;
}

#pricing5 .table {
  margin-top: 15px;
  width: 100%;
  padding: 30px 10px;
  border: 2px solid #d6d6d6;
}

#pricing5 .long-table {
  margin-top: 0;
  padding: 40px 10px 50px 10px;
}

#pricing5 h3 {
  margin: 0;
  font-size: 18px;
  text-transform: uppercase;
  text-align: center;
  color: #eeb34b;
  font-weight: 600;
}

#pricing5 h2 {
  /* margin: 0; */
  /* font-size: 36px; */
  /* font-weight: bold; */
  /* text-transform: uppercase; */
  text-align: center;
  /* color: #282828; */
  /* margin: 20px 0 15px 0; */
  position: relative;
  margin-bottom: 20px;
}

#pricing5 p {
  /* margin: 0; */
  /* font-size: 12px; */
  text-align: center;
  /* color: #898989; */
  /* font-weight: 300; */
  /* margin: 15px 0 35px 0; */
}

#pricing5 ul.table-content {
  list-style: none;
  text-align: center;
  margin: 35px 0;
  padding: 0;
  font-size: 13px;
  font-weight: 400;
  color: #898989;
  line-height: 35px;
}
ul.table-content .fa {
  color: #eeb34b;
  font-size: 16px;
  margin-right: 5px;
}
/* ------------------------------------------------------------------------------
	 package
-------------------------------------------------------------------------------*/
.packageList {
  margin-bottom: 50px;
}
h5 {
  font-size: 1.286em;
  font-weight: 600;
  margin: 0.3em 0;
  text-transform: capitalize;
}
ul.list-default {
  list-style-type: none;
  padding: 0;
}
ul.list-default li {
  padding: 0.5em 0 0.5em 2em;
  position: relative;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.package {
  border: 1px solid rgba(0, 0, 0, 0.1) !important;
  position: relative;
  border-style: none none solid none !important;
  padding: 1em 0 0.5em;
}
.package:hover {
  background-color: #fbfbfb;
}
.package:hover h5 {
  color: #ff67ab;
}
.package:hover .price {
  background-color: #ff348f;
}
.package ul.list-default li {
  border: none !important;
  padding: 4px 0;
}
.package ul.list-default li:before {
  top: 0.3em !important;
}
.price {
  top: 0;
  right: 0;
  bottom: 0;
  left: auto;
  position: absolute;
  background-color: #ff67ab;
  font-size: 1.35em;
  font-weight: 500;
  color: #fff;
  padding: 0.5em;
  margin: -1px -1px -1px 0;
}
.package .price {
  top: 1em;
  right: 1em;
  bottom: auto;
  font-size: 1.5em;
  padding: 0.7em;
}
.package .price small {
  font-size: 0.7em;
  margin-right: 3px;
}
/* ------------------------------------------------------------------------------
	 Teams
-------------------------------------------------------------------------------*/
.person {
  max-width: 270px;
  text-align: center;
  cursor: pointer;
}
.person img {
  width: 150px;
  height: 150px;
  margin: auto;
  border-radius: 200px;
}
.person-content {
  margin-top: 20px;
}
.person h4 {
  font-weight: 400;
}
.person:hover a {
  color: white;
  background-color: #b7860c;
  transition: color 2s;
  transition: background-color 2s;
  transition: margin-top 1s;
  padding: 10px 30px;
  margin-top: 20px;
}
.person a:hover {
  background-color: #d7a72e;
  transition: background-color 1s;
}
.person a {
  font-weight: 500;
  display: inline-block;
  background-color: transparent;
  color: transparent;
  transition: color 0.5s;
  transition: background-color 0.5s;
  transition: margin-top 0.5s;
}
.person h5 {
  color: #939393;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 20px;
}
.social-icons,
.footer .footer-share {
  margin-top: 20px;
}
.social-icons li,
.footer .footer-share li {
  display: inline-block;
  float: none;
}
.social-icons a,
.footer .footer-share a {
  /* border: 1px solid #EEB34B; */
  color: #eeb34b;
  display: block;
  font-size: 22px;
  height: 32px;
  line-height: 32px;
  margin-right: 5px;
  text-align: center;
  width: 32px;
  border-radius: 10px;
}
/* .social-icons a:hover {
	background-color: #EEB34B;
	border-color: #EEB34B;
	color: #fff;
} */
/* ------------------------------------------------------------------------------
	 Testimonials
-------------------------------------------------------------------------------*/
.testimonials {
  /* background-color: #EEB34B; */
  background-color: rgba(0, 0, 0, 0.5);
  background-image: url(/assets/images/raindrops.jpg);
  background-blend-mode: overlay;
  position: relative;
  text-align: center;
}
.testimonials blockquote {
  border: 0;
  margin: 0;
  padding: 100px 15%;
}
.testimonials h1 {
  color: white;
  font-size: 13pt;
  font-weight: 400;
  line-height: 28px;
}
.testimonials p {
  color: white;
  display: block;
  font-size: 13pt;
  font-style: normal;
  letter-spacing: 2px;
  font-weight: 700;
  margin-top: 30px;
  text-transform: uppercase;
}
.flex-control-nav {
  margin-top: 2%;
  bottom: none !important;
  position: relative !important;
  right: 0;
  text-align: center;
  width: 100% !important;
  z-index: 100;
}

/* ------------------------------------------------------------------------------
	Buttons
-------------------------------------------------------------------------------*/
.btn-container {
  text-align: center;
}

a.btn {
  margin: 0;
}

/* ------------------------------------------------------------------------------
	Contact form
-------------------------------------------------------------------------------*/
.conForm {
  text-align: center;
}
.conForm h5 {
  font-size: 30px;
}
.conForm p {
  text-align: center;
  margin: 7%;
}
.conForm input {
  color: #797979;
  padding: 15px 30px;
  border: none;
  margin-right: 3%;
  margin-bottom: 30px;
  outline: none;
  font-style: normal;
  border: #c1c1c1 1px solid;
  font-size: 15px;
}
.conForm input.noMarr {
  margin-right: 0px;
}
.conForm textarea {
  color: #797979;
  padding: 15px 30px;
  margin-bottom: 18px;
  outline: none;
  height: 150px;
  font-style: normal;
  resize: none;
  font-size: 15px;
  border: none;
  border: #c1c1c1 1px solid;
}
.conForm .submitBnt,
.btn {
  background: #eeb34b;
  color: #070709;
  margin-top: 30px;
  padding: 18px 60px 18px 60px;
  font-size: 13px;
  font-weight: 600;
  /* letter-spacing: 5px; */
  border: 0;
  border-radius: 10px;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  display: inline-block;
  text-transform: uppercase;
}
.conForm .submitBnt:hover,
.btn:hover {
  background: #282828;
  color: #ffffff;
}
#success_page {
  color: #00bdbd;
  font-weight: 500;
}
.error_message {
  color: #ff675f;
  padding-bottom: 15px;
  font-weight: 500;
}
#success_page h3 {
  font-size: 17px;
  color: #5ed07b;
  font-weight: 700;
}

/* ------------------------------------------------------------------------------
	 Footer
-------------------------------------------------------------------------------*/
.footer {
  text-align: left;
  background: #282828;
  line-height: 22px;
  padding-right: 40px;
  padding-left: 40px;
}

.footer .copyright-section {
  padding: 20px 0px 30px;
}
.footer-top {
  background-color: #181818;
  padding-top: 50px;
}
.footer-bottom {
  background-color: #313454;
  padding: 20px 0;
}
.footer .footer-col {
  margin-bottom: 80px;
}
.footer h5 {
  color: #fff;
}
.footer h5 {
  margin-bottom: 20px;
}
footer.footer h2 {
  margin-top: 40px !important;
  font-size: 24px;
  padding-bottom: 15px;
  color: #eeb34b;
}
.footer p {
  color: rgba(255, 255, 255, 0.25);
}
.footer a {
  color: #648939;
}
.footer a:hover {
  color: #eeb34b;
}
.footer .footer-share {
  margin-top: 0;
}
.footer .footer-share li {
  display: inline-block;
  float: none;
}
.footer .footer-share a {
  border: none;
  font-size: 21px;
  color: rgba(255, 255, 255, 0.25);
}
.footer .fa-heart {
  color: #e84545;
  font-size: 11px;
  margin: 0 2px;
}

#bar {
  display: none;
}
