@font-face {
  font-family: 'Conv_Androgyne_TB';
  src: url('fonts/Androgyne_TB.eot');
  src: local('☺'), url('fonts/Androgyne_TB.woff') format('woff'), url('fonts/Androgyne_TB.ttf') format('truetype'), url('fonts/Androgyne_TB.svg') format('svg');
  font-weight: normal;
  font-style: normal;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #fff;
  font-family: 'Open Sans', sans-serif;
  line-height: 1.6;
  color: #595959;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

img {
  border: 0;
  max-width: 100%;
  height: auto;
}

button {
  border: 0;
}

img {
  display: inline-block;
  vertical-align: middle;
}

/* clearfix */

._clearfix:before,
._clearfix:after {
  content: " ";
  display: table;
}

._clearfix:after {
  clear: both;
}

/* float */

._left {
  float: left;
}

._right {
  float: right;
}

._center {
  text-align: center;
}

._justify {
  text-align: justify;
}

/* container */

.container {
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  max-width: 1340px;
}

/* header */

.header {
  position: relative;
  height: 170px;
  background-color: #0f75a5;
  background-image: url('../img/header-bg.jpg');
  background-position: top right;
  background-repeat: no-repeat;
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.header::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 65%;
  height: 5px;
  border-radius: 0 0 0 15px;
  background-color: #4cb753;
  content: '';
}

.header-logo {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  padding-top: 20px;
  padding-right: 90px;
  width: 32%;
  height: 227px;
  background-image: url('../img/header-logo-bg.png');
  background-repeat: no-repeat;
  background-position: right;
  text-align: right;
}

.header-logo-link {
  display: inline-block;
}

.header-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

@media only screen and (max-width: 1010px) {
  .header {
    height: auto;
    padding-top: 10px;
    padding-bottom: 10px;
    background: #fff;
  }

  .header-wrap {
    display: none;
  }

  .header-logo {
    position: relative;
    padding-top: 0;
    padding-right: 0;
    right: 0;
    width: 100%;
    height: auto;
    background: transparent;
    text-align: center;
  }

  .header-logo-link img {
    width: 140px;
  }
}

/* header-social */

.header-social {
  margin-top: 30px;
  margin-bottom: 30px;
}

.header-social-link {
  display: inline-block;
  position: relative;
  padding-right: 34px;
  font-size: 13px;
  color: #fff;
}

.header-social-link::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 24px;
  height: 24px;
  background-image: url('../img/icon-fb-small.png');
  content: '';
}

/* nav */

.nav ul {
  list-style: none;
}

.nav ul li {
	position: relative;
	display: inline-block;
  vertical-align: middle;
  border-radius: 3px;
}

.nav ul li._divider {
	width: 1px;
	height: 56px;
	border: 0;
}

.nav ul li._divider::before {
	position: absolute;
	top: calc(50% - 13px / 2);
	left: 0;
	width: 1px;
	height: 13px;
	background-color: #0c63ae;
	content: '';
}

.nav ul li:hover._divider {
  background-color: transparent;
}

.nav ul li a {
	cursor: pointer;
	display: block;
	padding-left: 26px;
	padding-right: 26px;
  line-height: 56px;
  font-family: 'Montserrat', sans-serif;
	font-size: 17px;
	font-weight: 400;
	color: #fff;
	text-transform: uppercase;
}

@media screen and (max-width: 1340px) {
	.nav ul li a {
		padding-left: 12px;
		padding-right: 12px;
	}
}

.nav ul li a span {
	position: relative;
	padding-right: 18px;
}

.nav ul li a span::before {
	position: absolute;
	top: calc(50% - 4px / 2);
	right: 0;
	width: 0;
	height: 0;
	border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid #fff;
	content: '';
}

.nav ul li._active,
.nav ul li:hover {
  background-color: #4cb753;
}

.nav ul li ul {
  padding: 0;
  position: absolute;
  top: 56px;
  left: 0;
  z-index: 2;
  width: 100%;
  display: none;
  opacity: 0;
  visibility: hidden;
  -webkit-transiton: opacity 0.2s;
  -moz-transition: opacity 0.2s;
  -transition: opacity 0.2s;
}

.nav ul li ul._last {
	right: 0;
	left: auto;
}

.nav ul li ul li {
	display: block;
	border: 0;
}

.nav ul li ul li a { 
  display: block;
  line-height: 1.6;
  padding: 14px 20px;
  background-color: #0963aa;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
}

.nav ul li ul li:first-child a {
	border-radius: 3px 3px 0 0;
}

.nav ul li ul li:last-child a {
	border-radius: 0 0 3px 3px;
}

.nav ul li ul li a:hover {
	background-color: #0f4974;
}

.nav ul li:hover ul {
  display: block;
  opacity: 1;
  visibility: visible;
}

/* slider */

.slider {
  background-color: #57ae78;
}

/* content */

.content {
  padding-top: 48px;
  padding-bottom: 48px;
  background-color: #fff;
}

@media only screen and (max-width: 970px) {
  .content {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}

.content-bg-grey {
  background-color: #d7d7d7;
}

/* footer */

.footer {
  background-color: #1c658c;
  background-image: url('../img/footer-bg.jpg');
  background-repeat: no-repeat;
  background-position: top center;
  color: #fff;
}

.footer-info-wrap {
  position: relative;
  padding-top: 58px;
  padding-bottom: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-info-wrap::before {
  position: absolute;
  top: -6px;
  left: 120px;
  right: 120px;
  border-bottom: 6px solid #4cb753;
  content: '';
}

@media only screen and (max-width: 970px) {
  .footer-info-wrap::before {
    left: 20px;
    right: 20px;
  }
}

.footer-info-title {
  margin-bottom: 6px;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
}

.footer-info-text {
  font-size: 13px;
}

.footer-info-text a {
  font-style: italic;
  color: #fff;
}

.footer-info-text a:hover {
  text-decoration: underline;
}

.footer-phone {
  margin-top: 12px;
  position: relative;
  display: inline-block;
  vertical-align: middle;
  padding-left: 36px;
  margin-right: 40px;
  font-size: 13px;
  font-weight: 700;
}

.footer-phone::before {
  position: absolute;
  top: -2px;
  left: 0;
  width: 27px;
  height: 27px;
  background-image: url('../img/icons-phone.png');
  content: '';
}

.footer-phone.FP-2::before {
  background-position: -27px 0;
}

@media only screen and (max-width: 1060px) {
  .footer-logo {
    display: none;
  }
}

@media only screen and (max-width: 900px) {
  .footer {
    background-size: cover;
  }

  .footer-info-wrap {
    padding-top: 20px;
    padding-bottom: 20px;
    flex-direction: column;
    text-align: center;
  }

  .footer-phone {
    padding-left: 0;
    margin-right: 10px;
    margin-left: 10px;
  }

  .footer-phone::before {
    display: none;
  }

  .footer-info-column {
    margin-bottom: 20px;
  }
}

/* copyright */

.copyright {
  padding-top: 20px;
  padding-bottom: 20px;
  background-color: rgba(38,88,124,0.5);
}

.copyright-wrap {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
}

@media only screen and (max-width: 900px) {
  .copyright-wrap {
    flex-direction: column;
    text-align: center;
  }
}

.copyright-wrap a {
  color: #fff;
}

.copyright-wrap a:hover {
  text-decoration: underline;
}

/* header-page */

.header-page {
  background-color: #133953;
}

.header-page-line {
  position: relative;
  height: 135px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-page-line::before {
  position: absolute;
  top: 50%;
  left: 20px;
  right: 20px;
  border-bottom: 1px solid #1e5b83;
  content: '';
}

.header-page-title {
  position: relative;
  padding-left: 28px;
  padding-right: 28px;
  background-color: #133953;
  font-family: 'Conv_Androgyne_TB', sans-serif;
  font-size: 55px;
  color: #fff;
}

@media only screen and (max-width: 970px) {
  .header-page-line {
    height: 70px;
  }

  .header-page-title {
    font-size: 25px;
  }
}

/* column */

.column {
  display: flex;
}

.column-left {
  width: 50%;
  padding-right: 25px;
}

.column-right {
  width: 50%;
  padding-left: 25px;
}

@media only screen and (max-width: 970px) {
  .column {
    flex-direction: column;
  }

  .column-left,
  .column-right {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
}

/* text */

.text p {
  font-size: 17px;
  margin-bottom: 20px;
}

@media only screen and (max-width: 970px) {
  .text p {
    font-size: 14px;
  }
}

/* about */

.about {
  display: flex;
  margin-right: -20px;
}

.about-item {
  padding: 20px;
  width: 33.33%;
  margin-right: 20px;
  border-radius: 5px;
  border: 1px solid #d6d6d6;
  text-align: center;
}

.about-item i {
  display: inline-block;
  width: 63px;
  height: 63px;
  border-radius: 50%;
  background-color: #0865af;
  background-image: url('../img/icons-about.png');
}

.about-item i.about-icon-1 {
  background-position: 0 0;
}

.about-item i.about-icon-2 {
  background-position: -63px 0;
}

.about-item i.about-icon-3 {
  background-position: -126px 0;
}

.about-item h2 {
  margin-top: 8px;
  margin-bottom: 8px;
  font-size: 18px;
  font-weight: 700;
  color: #0665ad;
  text-transform: uppercase;
}

.about-item p {
  font-size: 14px;
}

@media only screen and (max-width: 970px) {
  .about {
    flex-direction: column;
    margin-right: 0;
  }

  .about-item {
    width: 100%;
    padding: 16px;
    margin-right: 0;
    margin-bottom: 20px;
  }
}

/* page-text */

.page-text {
  font-size: 17px;
  margin-bottom: 40px;
}

@media only screen and (max-width: 970px) {
  .page-text {
    margin-bottom: 20px;
    font-size: 14px;
  }
}

/* clientes */

.clientes {
  display: flex;
  flex-wrap: wrap;
  margin-right: -20px;
}

.clientes-item {
  width: 20%;
  padding-right: 20px;
  margin-bottom: 20px;
}

@media only screen and (max-width: 1060px) {
  .clientes-item {
    width: 25%;
  }
}

@media only screen and (max-width: 860px) {
  .clientes-item {
    width: 33.33%;
  }
}

.clientes-link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 180px;
  padding: 20px;
  border-radius: 10px;
  background-color: #fff;
  border: 1px solid #a4a4a4;
}

@media only screen and (max-width: 590px) {
  .clientes {
    margin-right: -5px;
  }

  .clientes-item {
    width: 50%;
    padding-right: 5px;
    margin-bottom: 5px;
  }

  .clientes-link {
    min-height: auto;
  }
}

.clientes-link img {
  -webkit-filter: grayscale(1);
  filter: grayscale(1);
}

.clientes-link,
.clientes-link img {
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.clientes-link:hover {
  border-color: #0865af;
}

.clientes-link:hover img {
  -webkit-filter: grayscale(0);
  filter: grayscale(0);
}

/* contato */

.contato {
  display: flex;
}

.contato-left {
  width: 60%;
  padding-right: 42px;
}

.contato-right {
  width: 40%;
}

@media only screen and (max-width: 1010px) {
  .contato {
    flex-direction: column;
  }
  
  .contato-left,
  .contato-right {
    width: 100%;
  }
  
  .contato-left {
    padding-right: 0;
    margin-bottom: 20px;
  }
}

/* form */

.form input,
.form select,
.form textarea {
  outline: 0;
  width: 100%;
  padding: 18px 20px;
  margin-bottom: 12px;
  border-radius: 5px;
  background-color: #f0f0f0;
  border: 1px solid #d6d6d6;
  font-family: 'Open Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #797979;
}

.form select {
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url('../img/select-arrow.png');
  background-repeat: no-repeat;
  background-position: right center;
}

.form textarea {
  height: 250px;
  resize: vertical;
}

.form-left {
  float: left;
  width: 50%;
  padding-right: 6px;
}

.form-right {
  float: right;
  width: 50%;
  padding-left: 6px;
}

@media only screen and (max-width: 680px) {
  .form-left,
  .form-right {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
}

/* button */

.button {
  border: 0;
  outline: 0;
  cursor: pointer;
  padding: 20px 70px;
  border-radius: 5px;
  background-color: #0865af;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
}

.button:hover {
  background-color: #065697;
}

@media only screen and (max-width: 680px) {
  .button {
    width: 100%;
  }
}

/* contato-info */

.contato-info {
  display: flex;
  align-items: center;
  padding: 18px;
  margin-bottom: 20px;
  border-radius: 10px;
  background-color: #f0f0f0;
  color: #595956;
}

.contato-info-icon {
  margin-right: 22px;
  display: inline-block;
  width: 63px;
  height: 63px;
  border-radius: 50%;
  background-color: #0865af;
  background-image: url('../img/icons-contato.png');
}

.contato-info-icon.contato-info-icon-fb {
  background-position: -63px 0;
}

@media only screen and (max-width: 520px) {
  .contato-info {
    flex-direction: column;
    text-align: center;
  }

  .contato-info-icon {
    margin-right: 0;
  }
}

.contato-info h3 {
  margin-bottom: 8px;
  font-size: 16px;
  font-weight: 700;
  color: #0665ac;
  text-transform: uppercase;
}

.contato-info h4 {
  margin-top: 8px;
  font-size: 14px;
  font-weight: 700;
  color: #444;
}

.contato-info p {
  font-size: 15px;
}

.contato-info a {
  color: #595959;
}

/* produtos-box */

.produtos-box {
  display: flex;
  margin-bottom: 40px;
}

.produtos-box-text {
  padding-right: 36px;
  text-align: justify;
}

.produtos-box-select select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  outline: 0;
  width: 400px;
  padding: 18px 22px;
  border-radius: 10px;
  border: 1px solid #d6d6d6;
  background-color: #f0f0f0;
  background-image: url('../img/select-arrow.png');
  background-repeat: no-repeat;
  background-position: right center;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #797979;
  text-transform: uppercase;
}

@media only screen and (max-width: 890px) {
  .produtos-box {
    flex-direction: column;
  }

  .produtos-box-text {
    padding-right: 0;
    margin-bottom: 20px;
    font-size: 14px;
  }

  .produtos-box-select select {
    width: 100%;
  }
}

/* column-index */

.column-index {
  display: flex;
}

.column-index h1 {
  margin-bottom: 16px;
  line-height: 1.2;
  font-size: 25px;
  font-weight: 600;
  color: #1d5980;
  text-transform: uppercase;
}

.column-index h1 span {
  display: block;
  font-size: 20px;
  font-weight: 300;
  color: #2c2c2c;
}

.column-index p {
  font-size: 14px;
}

.column-button {
  margin-top: 20px;
  display: inline-block;
  padding: 10px 38px;
  border-radius: 3px;
  background-color: #0865af;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
}

.column-button:hover {
  background-color: #065697;
}

.column-index-sobre {
  width: 47%;
}

.column-index-produtos {
  width: 53%;
  margin-left: 30px;
}

.column-index-sobre,
.column-index-produtos {
  display: flex;
  padding: 30px;
  border-radius: 10px;
  background-color: #fff;
  border: 1px solid #d6d6d6;
}

.column-index-left {
  width: 41%;
}

.column-index-left img {
  width: 100%;
}

.column-index-right {
  width: 59%;
  padding-left: 30px;
}

@media only screen and (max-width: 1130px) {
  .column-index {
    flex-direction: column;
  }

  .column-index-sobre,
  .column-index-produtos {
    width: 100%;
  }

  .column-index-produtos {
    margin-left: 0;
    margin-top: 20px;
  }
}

@media only screen and (max-width: 730px) {
  .column-index-sobre,
  .column-index-produtos {
    padding: 20px;
    flex-direction: column;
  }

  .column-index-left,
  .column-index-right {
    width: 100%;
    padding-left: 0;
  }

  .column-index-left {
    margin-bottom: 20px;
  }

  .column-button {
    width: 100%;
    padding-left: 10px;
    padding-right: 10px;
    text-align: center;
  }
}

/* image-radius */

.image-radius {
  border-radius: 5px;
}

/* title */

.title {
  margin-bottom: 30px;
  font-size: 25px;
  font-weight: 300;
  color: #1f262c;
  text-transform: uppercase;
}

.title-black {
  color: #1f262c;
}

.title-blue {
  color: #1f5d81;
}

.title-center {
  text-align: center;
}

@media only screen and (max-width: 970px) {
  .title {
    font-size: 20px;
  }
}

/* swiper-pagination-default */

.swiper-pagination-default {
  position: relative;
  margin-top: 20px;
}

.swiper-container-horizontal > .swiper-pagination-default {
  bottom: 0;
}

.swiper-pagination-default .swiper-pagination-bullet {
  width: 15px;
  height: 15px;
  border: 1px solid #a3a3a3;
  background: transparent;
  opacity: 1;
}

.swiper-pagination-default .swiper-pagination-bullet-active,
.swiper-pagination-main .swiper-pagination-bullet-active {
  background: #0865af;
  border-color: #0865af !important;
}

.swiper-pagination-main {
  position: absolute;
}

.swiper-container-horizontal > .swiper-pagination-main {
  bottom: 20px;
}

.swiper-pagination-main .swiper-pagination-bullet {
  border-color: #fff;
}

@media only screen and (max-width: 680px) {
  .swiper-pagination-main {
    display: none !important;
  }
}

/* swiper-slide-produtos */

.swiper-slide-produtos img,
.swiper-slide-detalhes img {
  width: 100%;
}

.swiper-slide-detalhes a {
  display: block;
}

.alert {
  border-radius: 10px;
  padding: 20px 30px;
  text-align: center;
  background: #0865af;
  color: #fff;
}