/*!
Theme Name: Labpixel
Theme URI: https://labpixel.com.br/
Author: Labpixel
Author URI: https://labpixel.com.br/
Description: Tema Labpixel
Version: 1.0.0

Documentações e tecnologias utilizadas:

Bootstrap - Padronização de CSS
https://getbootstrap.com/docs/4.5/components/alerts/

Bootstrap Menu - Referência para criação de menus
https://bootstrap-menu.com/

Bootsnipp - Snippets de interfaces prontas
https://bootsnipp.com/

Bootswatch - Skins para bootstrap
https://bootswatch.com/

Elementor - Controls customizados
https://developers.elementor.com/elementor-controls/
https://developers.elementor.com/creating-a-new-control/
https://developers.elementor.com/add-custom-functionality/

Google AMP
https://amp.dev/documentation/components/?format=websites

Vue.js - Interfaces avançadas
https://br.vuejs.org/v2/guide/

Fontawesome 4.7 e 5
https://fontawesome.com/v4.7.0/icons/
https://fontawesome.com/icons?d=gallery

*/
/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: hidden; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.8); /* Black w/ opacity */
  z-index: 9999;
}

/* Modal Content/Box */
.modal-content-slider {
  margin: 5% auto; /* 15% from the top and centered */
  padding: 20px;
  border: none !important;
  width: 50%; /* Could be more or less, depending on screen size */  
 font-family: 'MontSerrat';
 background: transparent !important;
}


/* The Close Button */
.modal-content-slider .closeModal{
  color: #e30613;
  float: right;
  font-size: 28px;
  font-weight: bold;
  height: 10px;
    position: relative;
    bottom: 20px;
}

.modal-content-slider .closeModal:hover,
.modal-content-slider .closeModal:focus {
  color: #e30613;
  text-decoration: none;
  cursor: pointer;
}
.slider-container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.slider {
  width: 100%;
  /* max-width: 600px; */
  /* height: 400px; */
  /* margin: 20px; */
  text-align: center;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

.slides {
  display: flex;
  overflow: hidden;
  position: relative;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
}

.slide:nth-of-type(even) {
  background-color: rgb(250, 246, 212);
}

.slide {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  width: 100%;
  scroll-snap-align: center;
  margin-right: 0px;
  box-sizing: border-box;
  background: white;
  transform-origin: center center;
  transform: scale(1);
}

.slide__text {
  font-size: 40px;
  font-weight: bold;
  font-family: sans-serif;
}

.slide a {
  background: none;
  border: none;
}

a.slide__prev,
.slider::before {
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
  left: 5%;
}

a.slide__next,
.slider::after {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  right: 5%;
}

.slider::before,
.slider::after,
.slide__prev,
.slide__next {
  position: absolute;
  top: 48%;
  width: 35px;
  height: 35px;
  border: solid black;
  border-width: 0 4px 4px 0;
  padding: 3px;
  box-sizing: border-box;
}

/* .slider::before, */
/* .slider::after { */
  /* content: ""; */
  /* z-index: 1; */
  /* background: none; */
  /* pointer-events: none; */
/* } */

.slider__nav {
  box-sizing: border-box;
  position: absolute;
  bottom: 5%;
  left: 50%;
  width: 200px;
  margin-left: -100px;
  text-align: center;
}

.slider__navlink {
  display: inline-block;
  height: 15px;
  width: 15px;
  border-radius: 50%;
  background-color: black;
  margin: 0 10px 0 10px;
}








.read-article{
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 999;
  color: #000;
  background: white;
  padding: 10px 20px;
  border-radius: 10px;
  font-family: arial;
  text-decoration: none;
  box-shadow: rgb(50 50 93 / 25%) 0 0 100px -20px, rgb(0 0 0 / 30%) 0 0 60px -15px;
}
.read-article:hover{
    background: #d5d5d5;
    box-shadow: rgb(50 50 93 / 25%) 0 0 100px -20px, rgb(0 0 0 / 30%) 0 0 60px 0px;
}
iframe[sandbox] .read-article{
  display: none;
}


iframe{	width: 100%;	height: 500px;}
@media screen and (max-width: 1400px) {	.modal-content-slider{		    margin: 3% auto;	}}@media screen and (max-width: 1600px) {	.modal-content-slider{		width: calc(100% - 300px);	}}

@media screen and (max-width: 767px) {	iframe{		width: 100%;		height: 560px;	}
	.modal-content-slider{
		margin: 10% 3.5%;
		width: 90%;
	}
	.container-slider{
	  align-items: flex-start;		
	}
}
.container-slider{
    height: 500px;
    overflow: hidden;
    border: 10px solid #ffffff;
    border-radius: 8px;
    box-shadow: 10px 25px 30px rgba(0,0,0,0.3);
	
 display: flex;
  align-items: center;
  justify-content: center;
	
}
.wrapper-slider{
    width: 100%;
    display: flex;
    animation: slide 16s infinite;
}
@keyframes slide{
    0%{
        transform: translateX(0);
    }
    25%{
        transform: translateX(0);
    }
    30%{
        transform: translateX(-100%);
    }
    50%{
        transform: translateX(-100%);
    }
    55%{
        transform: translateX(-200%);
    }
    75%{
        transform: translateX(-200%);
    }
    80%{
        transform: translateX(-300%);
    }
    100%{
        transform: translateX(-300%);
		transform: translateX(0);
    }
}
.container-slider img{
    width: 100%;
}

#wpcf7-f11023-p10960-o1{
    padding-left: 30px;
}

#wpcf7-f11023-p10960-o1 input, textarea{
    border: none;
    width: 100%;
    padding: 15px;
    background: #f7f7f7;
}

#wpcf7-f11023-p10960-o1 input, textarea::placeholder{
   font-weight: bold;
}

#wpcf7-f11023-p10960-o1 label{
    width: 100%;
    border: 3px solid #fff;

}

#wpcf7-f11023-p10960-o1 [type=submit]{
    background: #163b76;
    text-transform: uppercase;
    width: 100%;
    color: #fff;
    padding:  15px;
    font-weight: bold;
}

#wpcf7-f11111-p10724-o1{
    padding-left: 30px;
}

#wpcf7-f11111-p10724-o1 input, textarea{
    border: none;
    width: 100%;
    padding: 15px;
    background: #f7f7f7;
}

#wpcf7-f11111-p10724-o1 input, textarea::placeholder{
   font-weight: bold;
}

#wpcf7-f11111-p10724-o1 label{
    width: 25%;
}

#wpcf7-f11111-p10724-o1 [type=submit]{
    background: #163b76;
    text-transform: uppercase;
    width: 24%;
    color: #fff;
    padding:  15px;
    font-weight: bold;
}

.dot-top-interna{
	position:absolute;
}

.dot-center-interna{
	position:absolute;
	top: 50%;
	right: 0;
}

.dot-bottom-interna{
	position:absolute;			
	right: 0;
}
.pagination-candonga a {
	background: #fff;
	color: #163b76;
	height: 30px;
	text-align: center;
	padding: 5px;
	border: 1px solid #163b76;
}

.pagination-candonga span {
	background: #163b76;
	color: #fff;
	height: 30px;
	text-align: center;
	padding: 5px;
}

.aceitar_cookies{display: none;}

.aceitar_cookies_container{
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;

	width: 100%;
	background: #323239;
	padding: 13px 30px;

	-webkit-box-shadow: 0 24px 81px rgba(0,0,0,.4),0 9px 32px rgba(0,0,0,.2)!important;
	box-shadow: 0 24px 81px rgba(0,0,0,.4),0 9px 32px rgba(0,0,0,.2)!important;

	position: fixed;
	bottom:0;
	z-index: 9999999;
}

.aceitar_cookies p{
	width: calc(100% - 320px);
	color: #fff; font-size: 14px;margin: 0 !important;font-weight: 400;
	line-height: 16px;
}

.bt_container{
	width: 290px;
	text-align: right;
}

.bt_container a{
	display: inline-block;
	padding: 7px 15px;
	color: #fff !important;
	text-decoration: none !important;
	background:#58b79a;
	border-radius: 6px !important;
	font-size: 14px;
	font-weight: bold;
}

#slider-depoimento .btn-left{
	
}

@media screen and (max-width: 900px) {
	.dot-top-interna, .dot-center-interna, .dot-bottom-interna{
		display:none;
	}

	.aceitar_cookies_container{flex-wrap: wrap;}

	.aceitar_cookies p{width: 100%;margin-bottom: 15px !important;text-align: center;}

	 .bt_container{
		width: 100%;
		text-align: center;
	}
}

 @media screen and (max-width: 767px) {
	#wpcf7-f11111-p10724-o1 {
		padding-left: 0;
	}
	
	#wpcf7-f11023-p10960-o1{
		padding-left: 0px;
	}
	
	#wpcf7-f11111-p10724-o1 label, #wpcf7-f11111-p10724-o1 [type=submit]{
		width: 100%;
	}
}

 @media screen and (max-width: 300px) {
	 .bt_container a{
		width: 100%;
		display: block;
		margin-bottom: 5px;
	}	
}