/*
	Theme Name: BusinessEnglishSupport
	Theme URL: http://www.businessenglish.com.br
	Author: Kezily Correa
	Author URL: http://inovalize.com.br
	Description: Desenvolvido por Inovalize.
	Version: 1.0
*/

@font-face {
     font-family: 'Ostrich Medium';
     src: url(assets/fonts/ostrich-sans/OstrichSans-Medium.otf), url(assets/fonts/ostrich-sans/OstrichSans-Medium.ttf);
}

@font-face {
     font-family: 'Ostrich Light';
     src: url(assets/fonts/ostrich-sans/OstrichSans-Light.otf), url(assets/fonts/ostrich-sans/OstrichSans-Light.ttf);
}

/* GERAL */

* {
	border: none;
	margin: 0;
	padding: 0;
}

body {
	background: #FFF;
	color: #252525;
	font: 400 15px 'Ostrich Medium', Arial,verdana,sans-serif;
}

form {
	max-width: 700px;
	margin: 0 auto;
	text-align: left;
}

form label {
	font-size: 16px;
	font-weight: 300;
}

input, textarea {
	width: 100%;
	padding: 7px 10px;
	border: 1px solid #c0c0c0;
	background: transparent;
	outline: none;
	border-radius: 3px;
}

textarea {
	max-height: 140px;
}

input[type='submit'] {
	max-width: 150px;
	padding: 15px;
	border: none;
	margin: 0;
	background: #2e968f;
	color: #fff;
	font-weight: 900;
	cursor: pointer;
}

a {
	text-decoration: none;
	color: #019690;
	border: none;
}

a:hover {
	text-decoration: none;
	color: #017771;
}

a, img, :hover {
	-webkit-transition: all 300ms linear;
	-moz-transition: all 300ms linear;
	-ms-transition: all 300ms linear;
	-o-transition: all 300ms linear;
	transition: all 300ms linear;
}

img, iframe {
	vertical-align: bottom;
}

h1, h2 {
	margin: 0;
}

div,section,article {
	position: relative;
}

.bottom_margin40 {
  margin-bottom: 40px;
}

.flexGrid {
  display:-webkit-flex;
  display:-webkit-box;
  display:-moz-flex;
  display:-moz-box;
  display:-ms-flexbox;
  display:flex;
  flex-wrap: wrap;
  flex-direction:row;
}

.clear {
	clear: both;
}

/* 2. HEADER */

#header {
	width: 100%;
	position: relative;
}

/* 2.1. HEADER - MENU */

#main-nav {
	width: 100%;
	padding: 15px 0;
	margin: 0;
	background: #fff;
	border: none;
	clear: both;
	position: relative;
	z-index: 99999;
	border-bottom: 5px solid #019690;
}
#header a.logo {
	height: auto;
}

#header a.logo img {
		width: 100%;
		max-width: 174px;
}

#main-nav .navbar-nav > li {
	float: none;
	display: inline-block;
}

#main-nav .navbar-nav > li > a {
	color: #019690;
	padding: 42px 5px;
  font-size: 2em;
}

.navbar-nav > li > a:hover,
.navbar-nav > .active > a,
.navbar-nav > .active > a:hover,
.navbar-nav > .active > a:focus,
.navbar-nav > .open > a,
.navbar-nav > .open > a:hover,
.navbar-nav > .open > a:focus {
	background: #2e968f !important;
	color: #fff !important;
}

.navbar-nav > .active.menu-item-home > a,
.navbar-nav > .active.menu-item-home > a:hover,
.navbar-nav > .active.menu-item-home > a:focus {
	background: transparent !important;
	color: #2e968f !important;
}

#header nav .navbar-toggle {
	border: none;
	margin: 40px 10px 0;
	z-index: 9;
}

#header nav .navbar-toggle:hover,
#header nav .navbar-toggle:focus {
	background: transparent;
}

.side-collapse {
	background: transparent;
}

.dropdown-menu {
	border: 1px solid #f5f5f5;
}

.dropdown-menu > li > a {
	padding: 5px 15px;
}

.dropdown-menu > li > a:hover {
	background: #fff;
}

/*
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
	-webkit-animation-duration: 1000ms;
	animation-duration: 1000ms;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
}

.owl-carousel .owl-animated-in {
	z-index: 0;
}

.owl-carousel .owl-animated-out {
	z-index: 1;
}

.owl-carousel .fadeOut {
	-webkit-animation-name: fadeOut;
	animation-name: fadeOut;
}

@-webkit-keyframes fadeOut {
	0% {
		opacity: 1;
	}

	100% {
		opacity: 0;
	}
}

@keyframes fadeOut {
	0% {
		opacity: 1;
	}

	100% {
		opacity: 0;
	}
}

/*
 * 	Owl Carousel - Auto Height Plugin
 */
.owl-height {
	-webkit-transition: height 500ms ease-in-out;
	-moz-transition: height 500ms ease-in-out;
	-ms-transition: height 500ms ease-in-out;
	-o-transition: height 500ms ease-in-out;
	transition: height 500ms ease-in-out;
}

/*
 *  Core Owl Carousel CSS File
 */
.owl-carousel {
	display: none;
	width: 100%;
	-webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
	position: relative;
	z-index: 1;
}

.owl-carousel .owl-stage {
	position: relative;
	-ms-touch-action: pan-Y;
}

.owl-carousel .owl-stage:after {
	content: ".";
	display: block;
	clear: both;
	visibility: hidden;
	line-height: 0;
	height: 0;
}

.owl-carousel .owl-stage-outer {
	position: relative;
	overflow: hidden;
    /* fix for flashing background */
	-webkit-transform: translate3d(0px, 0px, 0px);
}

.owl-carousel .owl-item {
	position: relative;
	min-height: 1px;
	float: left;
	-webkit-backface-visibility: hidden;
	-webkit-tap-highlight-color: transparent;
	-webkit-touch-callout: none;
}

.owl-carousel .owl-item img {
	display: block;
	width: 100%;
	-webkit-transform-style: preserve-3d;
}

.owl-controls {
	width: 100%;
	position: absolute;
	-webkit-transform: translate(-50%, -50%);
	-khtml-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	top: 45%;
	left: 50%;
	z-index: 10;
}

.owl-carousel .owl-nav.disabled, .owl-carousel .owl-dots.disabled {
	display: none;
}

.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next {
	width: 50px;
	height: 70px;
	cursor: pointer;
}

.owl-carousel .owl-nav .owl-prev {
	position: absolute;
	left: 10px;
	background: url(images/left-arrow.png) center no-repeat;
	background-size: 50px;
}

.owl-carousel .owl-nav .owl-next {
	position: absolute;
	right: 10px;
	background: url(images/right-arrow.png) center no-repeat;
	background-size: 50px;
}

.owl-carousel.owl-loaded {
	display: block;
}

.owl-carousel.owl-loading {
	opacity: 0;
	display: block;
}

.owl-carousel.owl-hidden {
	opacity: 0;
}

.owl-carousel.owl-refresh .owl-item {
	display: none;
}

.owl-carousel.owl-drag .owl-item {
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.owl-carousel.owl-grab {
	cursor: move;
	cursor: -webkit-grab;
	cursor: -o-grab;
	cursor: -ms-grab;
	cursor: grab;
}

.owl-carousel.owl-rtl {
	direction: rtl;
}

.owl-carousel.owl-rtl .owl-item {
	float: right;
}

/* No Js */
.no-js .owl-carousel {
	display: block;
}

/*
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item .owl-lazy {
	opacity: 0;
	-webkit-transition: opacity 400ms ease;
	-moz-transition: opacity 400ms ease;
	-ms-transition: opacity 400ms ease;
	-o-transition: opacity 400ms ease;
	transition: opacity 400ms ease;
}

.owl-carousel .owl-item img {
	transform-style: preserve-3d;
}

/* 5 Columns */

.col-xs-15,
.col-sm-15,
.col-md-15,
.col-lg-15 {
    position: relative;
    min-height: 1px;
    padding-right: 10px;
    padding-left: 10px;
}

.col-xs-15 {
    width: 20%;
    float: left;
}
@media (min-width: 768px) {
    .col-sm-15 {
        width: 20%;
        float: left;
    }
}
@media (min-width: 992px) {
    .col-md-15 {
        width: 20%;
        float: left;
    }
}
@media (min-width: 1200px) {
    .col-lg-15 {
        width: 20%;
        float: left;
    }
}

/* SECTIONS */

section#index-item1,
section#index-item2,
section#index-item3 {
	clear: both;
}

section#index-item2 {
  padding: 50px 0 10px;
}

.page section#index-item2 {
	min-height: 450px;
}

section#index-item3 {
  padding: 25px 0;
  border-top: 5px solid #019690;
}

section#index-item3 .container {
	max-width: 1000px;
}

.slide .bgSlide {
  height: 200px;
  background-size: cover !important;
}

.clients h1 {
  padding: 10px 0;
  font-size: 1.2em;
  text-align: center;
}

.client-slide {
	padding: 0 35px;
}

.client-slide img {
	filter: grayscale(100%);
}

.client-slide .owl-controls {
	top: 35%;
}

.client-slide.owl-carousel .owl-nav .owl-prev,
.client-slide.owl-carousel .owl-nav .owl-next {
	width: 20px;
	height: 25px;
	background-size: 15px;
}

.feat-item {
  margin-bottom: 50px;
}
.feat-item img {
  max-width: 110px;
  margin-bottom: 20px;
}
.feat-item h1,
.feat-item h2 {
    margin-bottom: 10px;
    letter-spacing: 2px;
    font-size: 1.5em;
}

.page-id-40 .feat-item h2 {
	color: #2e968f;
	font-weight: 600;
}

.feat-item p {
    max-width: 95%;
    margin: 0 auto;
    font-size: 1.3em;
    line-height: 1.2;
    color: #737373;
    letter-spacing: 1px;
}

.home .feat-item p {
    font-size: 1.3em;
}

.page-id-25 .feat-item p  {
	max-width: 250px;
}

/* CONTATO */

ul.contact-infos {
  margin: 20px 0 40px;
}

ul.contact-infos li {
  margin: 0 0 10px;
  display: block;
}

/* SINGLE */

.entry {
  max-width: 1000px;
  margin: 0 auto;
  background: #fff;
  color: #3D3D3D;
  font: 1em/1.2 'Open Sans';
  word-wrap: break-word;
  clear: both;
  overflow: hidden;
}

.page-servicos {
  max-width: 1000px;
  margin: 0 auto;
}

.entry p,
.entry h2,
.entry h3 {
	margin: 0 0 18px;
}

.entry h1.title {
	margin: 0 0 50px;
	color: #3d3d3d;
	font-size: 1.7em;
	font-weight: 300;
	text-transform: uppercase;
}

.entry img {
	max-width: 100%;
	height: auto;
}

.entry iframe {
	width: 100%;
	min-height:390px;
	margin-bottom: 30px;
}

blockquote {
	padding: 0;
	margin: 30px 0;
	background: #FFFFFF;
	font-style: italic;
	font-size: inherit;
	border: none;
}

blockquote p:last-child {
	margin: 0;
}

/* DEFAULT IMAGES AND CAPTIONS */

.alignnone {
	margin: 5px 20px 20px 0;
}

.aligncenter,
div.aligncenter {
	display: block;
	margin: 5px auto 10px auto;
}

.alignright {
	float: right;
	margin: 5px 0 10px 20px;
}

.alignleft {
	float: left;
	margin: 5px 20px 10px 0;
}

a img.alignright {
	float: right;
	margin: 5px 0 20px 10px;
}

a img.alignnone {
	margin: 5px 20px 10px 0;
}

a img.alignleft {
	float: left;
	margin: 5px 20px 10px 0;
}

a img.aligncenter {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.wp-caption {
	max-width: 100%;
	text-align: center;
}

.wp-caption.alignnone {
	margin: 5px 20px 10px 0;
}

.wp-caption.alignleft {
	margin: 5px 20px 10px 0;
}

.wp-caption.alignright {
	margin: 5px 0 10px 20px;
}

.wp-caption img {
	border: 0 none;
	height: auto;
	margin: 0;
	max-width: 98.5%;
	padding: 0;
	width: auto;
}

.wp-caption p.wp-caption-text {
	padding: 5px;
	font-size: 11px;
	line-height: 17px;
	margin: 0;
}

/* FOOTER */

#footer {
	width: 100%;
	bottom: 0;
	position: relative;
	z-index: 9;
}

#footer .copyright {
	padding: 25px 5px;
	background: #fff;
	border-top: 1px solid #2e968f;
	line-height: 1;
  font: 11px 'Open Sans';
	letter-spacing: 1px;
}

/* MEDIA QUERIES */

@media (max-width: 767px) {
	#main-nav .navbar-nav {
		margin: 0;
	}

	#main-nav .navbar-nav > li {
		width: 100%;
		display: block;
		text-align: left;
	}

	#main-nav .navbar-nav > li a,
	#main-nav .navbar-nav > .active > a {
		padding: 15px;
		color: #fff;
	}

	.side-collapse-container {
		width: 100%;
		position: relative;
		left: 0;
		transition: left .4s;
	}

	.side-collapse {
		top: 0;
		bottom: 0;
		left: 0;
		width: 240px;
		background: #3c3c3c;
		position: fixed;
		overflow: hidden;
		transition: all .3s ease;
		z-index: 9;
	}

	.side-collapse.in {
		left: -240px;
		transition: all .3s ease;
	}

  .owl-carousel .owl-nav .owl-next,
  .owl-carousel .owl-nav .owl-prev {
    width: 30px;
    height: 45px;
    background-size: 30px;
  }
}

@media screen and (min-width: 768px) {
	#main-nav .navbar-nav > li.sociais {
		padding-left: 20px;
		border-left: 1px solid #2e968f;
	}

  .slide .bgSlide {
    height: 300px;
  }

  .clients {
    border-right: 1px solid #009A92;
  }
}

@media screen and (min-width: 992px) {
	body {
		font-size: 19px;
	}

	#main-nav .navbar-nav > li > a {
    	padding: 42px 10px;
      font-size: 1.5em;
  }

  .slide .bgSlide {
    height: 500px;
  }

   ul.contact-infos {
    padding-left: 40px;
  }
}

@media screen and (min-width: 1200px) {
	#main-nav .navbar-nav > li > a {
      font-size: 1.5em;
      padding: 22px 22px;
  }
}
