/* General --------------------------------- */
*{
	margin:0; 
	padding:0; 
	outline:none;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	transition: 0.3s;
}

*:before, *:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	transition: 0.3s;
}

li{list-style: none;}
a{text-decoration: none;}
html{ scroll-behavior: smooth; }


/* Placeholder */
::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  font-size:12px;
}
::-moz-placeholder { /* Firefox 19+ */
  font-size:12px;
}
:-ms-input-placeholder { /* IE 10+ */
  font-size:12px;
}
:-moz-placeholder { /* Firefox 18- */
  font-size:12px;
}

.container{
	width: 1170px;
	margin: 0 auto;
}

:root{
	--defaultColor: #d5a946;
	--defaultText: #929290;
}

@font-face {
    font-family: 'latoregular';
    src: url('../fonts/lato/lato-regular_0-webfont.woff2') format('woff2'),
    	 url('../fonts/lato/Lato-Regular_0.ttf') format('truetype'),
         url('../fonts/lato/lato-regular_0-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'latoblack';
    src: url('../fonts/lato/lato-black-webfont.woff2') format('woff2'),
    	 url('../fonts/lato/Lato-Black.ttf') format('truetype'),
         url('../fonts/lato/lato-black-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'latobold';
    src: url('../fonts/lato/lato-bold-webfont.woff2') format('woff2'),
    	 url('../fonts/lato/Lato-Bold.ttf') format('truetype'),
         url('../fonts/lato/lato-bold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'swingkingregular';
    src: url('../fonts/swingking/swingking-webfont.woff2') format('woff2'),
    	 url('../fonts/swingking/swingKing.otf') format('opentype'),
         url('../fonts/swingking/swingking-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

body{
	font: 20px latoregular;
	color: var(--defaultText);
	background: #fff;
}

section{position: relative;}

.marker{
	display: block;
	position: absolute;
	left: 0px;
	width: 20px;
	height: 20px;
	top: -90px;
}

section.content::before,
#aboutUs .infos::before,
#localization .infos::before{
	content: "";
	display: block;
	width: 40px;
	height: 140px;
	background: #f5f5f5;
}

section.content .sectionTitle,
#aboutUs .sectionTitle,
#localization .sectionTitle{
	color: var(--defaultColor);
    font: 36px latoblack;
    text-transform: uppercase;
    margin: 5px 0px 20px 0px;
}

section.content .sectionTitle::before,
#aboutUs .sectionTitle::before,
#localization .sectionTitle::before{
	content: "";
    background: var(--defaultColor);
    height: 7px;
    width: 40px;
    display: block;
    margin-bottom: 12px;
}

.textContent{
	display: block;
    line-height: 24px;
    margin-bottom: 30px;
    width: 510px;
}

.btWhats {
    background: #0cc042;
    display: flex;
    border-radius: 50%;
    width: 70px;
    justify-content: center;
    align-items: center;
    height: 70px;
    position: fixed;
    font-size: 52px;
    color: #fff;
    bottom: 50px;
    z-index: 999;
    right: 7%;
    transition: 0.3s;
    animation: animate 3s linear infinite;
}

.btWhats .icon{
	fill: #fff;
	width: 58%;
}

.btWhats .content{display: flex;}

.btWhats .content .text{
	font-size: 20px;
    text-align: left;
    padding-left: 12px;
    padding-top: 9px;
}


@keyframes animate{
	
	0%{
		box-shadow: 0 0 0 0 rgba(12,192,66,.7); 
	}
	
	40%{
		box-shadow: 0 0 0 10px rgba(12,192,66,0); 
	}
	
	80%{
		box-shadow: 0 0 0 10px rgba(12,192,66,0); 
	}
	
	100%{
		box-shadow: 0 0 0 0 rgba(12,192,66,0); 
	}
}

.close{
	display: none;
    position: fixed;
    top: 3%;
    right: 6%;
    font-size: 32px;
    width: 40px;
}
.close .icon{ fill:var(--defaultColor); }

.mobileBar{
	display: none;
	background: rgb(0 0 0 / 100%);
    width: 100%;
    position: fixed;
    z-index: 10;
    align-items: center;
    padding: 17px 17px 17px 22px;
    color: #fff;
    font-size: 28px;
    top: 0;
    border-bottom: solid 1px #000;
    height: 66px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, .4);
}

.mobileBar .logo{
	width: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.mobileBar .menuIcon{
	width: 25px;
    height: 25px;
    cursor: pointer;
}
.mobileBar .menuIcon .icon{ width: 100% !important; }
.mobileBar .menuIcon .icon rect{fill: #e5b15d;}

/* end: General --------------------------------- */

/* Menu ------------------------------------ */
.header,
.header *{transition: 0.3s;}

.header{
	position: fixed;
	width: 100%;
	height: 130px;
	display: flex;
	align-items: center;
	z-index: 20;
	background-image: linear-gradient(to bottom, rgba(0, 0, 0, .9), rgba(0, 0, 0, .7), rgba(0, 0, 0, .7), rgba(0, 0, 0, .5),rgba(0, 0, 0, .0));
	
}

.header .navMenu{
	position: absolute;
    right: 3%;
}

.header .navMenu ul{display: flex;}
.header .navMenu ul li{padding-right: 22px;}
.header .navMenu ul li:last-of-type{padding-right: 0px;}

.header .navMenu ul li a{
	font-size: 18px;
	color: #fff;
	text-transform: uppercase;
	transition: 0.3s;
	display: block;
}

.header .navMenu ul li a:hover{color: var(--defaultColor);}

.header.fixedMenu{
	background: rgb(0 0 0 / 85);
	box-shadow: 3px 3px 8px rgb(0 0 0 / 30%);
	height: 90px;
}

.header .linkLogo{
	display: block;
	width: 185px;
	margin-left: 30px;
	padding-top: 9px;
}

.header .linkLogo img{width: 100%;}
.header.fixedMenu .linkLogo{width: 126px;}

.linkMLogo{
	display: block;
	margin: 0 auto;
}
/* end: Menu ------------------------------------ */


/* Slider --------------------------------- */
.slider{
	border-bottom: solid 4px var(--defaultColor);
	position: relative;
}

.slider .owl-stage-outer,
.slider .no-js .owl-carousel,
.slider .owl-carousel.owl-loaded{ height:101%; }

.slider .owl-theme .owl-nav{ display: none; }

.slider .shadow{
	background: url("../img/shadow.png") no-repeat;
	display: none;
	position: absolute;
	top:0;
	left: 0;
	width: 100%;
	height: 100%;
}

.slider img{
	width: 100%;
	display: block;
}

.slider img.mobileSlider{display: none;}

.slider .sliderText {
    display: block;
    position: absolute;
    left: 0;
    bottom: 15%;
    background: rgb(0 0 0 / 70%);
    width: 50%;
    padding: 2% 2% 2% 10%;
    font-size: 3.3vw;
    color: var(--defaultColor);
}



.slider.first{
	background: #000;
    height: 700px;
}

.slider.first .owl-stage-outer .owl-stage,
.slider.first .owl-stage-outer .owl-stage .owl-item,
.slider.first .owl-stage-outer .owl-stage .owl-item .item{ height: 100%; }

.slider.first .item .container{
    height: 100%;
    display: flex;
    align-items: center;
}

.slider.first .item .container .content{
	display: flex;
	align-items: center;
	justify-content: space-between;
    width: 100%;
}

.slider.first .item .container .content img{ width: 570px; }
.slider.first .item .container .content .text{
	font: 32px latoblack;
    color: #fff;
    width: 420px;
    text-align: center;
}

.slider.first .item .container .content .text .btn{
	display: block;
    margin: 16px 0 0 0;
    background: #edbf12;
    padding: 16px;
    text-align: center;
    font-size: 36px;
    color: #000;
}
.slider.first .item .container .content .text .btn:hover{ background: #d8ad0c; }

/* end:Slider --------------------------------- */


/* Services --------------------------------- */
#services .allServices{}

#services .allServices{
	display: flex;
    flex-wrap: wrap;
    padding-top: 30px;
    row-gap: 48px;
    column-gap: 2.2%;
}

#services .allServices .service{
	background: #f2f2f2;
    width: 272px;
    height: 290px;
    position: relative;
    padding: 12px;
}

#services .allServices .service .image{
	display: block;
	width: 100%;
}

#services .allServices .service .name{
	display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    width: 202px;
    height: 66px;
    position: absolute;
    z-index: 9;
    bottom: -20px;
    font: 24px swingkingregular;
    color: var(--defaultColor);
    left: 50%;
    margin-left: -101px;
    box-shadow: 0px 0px 6px rgba(0, 0, 0, .1);
}

#services .allServices .service1,
#services .allServices .service2{
	position: absolute;
    top: 226px;
    right: 6px;
}

#services .allServices .service1{ right: 303px; }
/* end: Services --------------------------------- */


/* About Us -------------------------- */
.aboutUs{margin-top: 100px;}

.parallax{
	width: 100%;
	height: 100%;
	background-attachment: fixed;
	background-size: cover;
	background-position: 50% 0;
	position: relative;
}

.div3{background-image: url(../img/bgSomos.jpg);}

#aboutUs{
	display: flex;
    justify-content: space-between;
}


#aboutUs .aboutImg{
	display: block;
    border: solid 10px #212121;
    margin-top: 127px;
    width: 530px;
    margin-bottom: 100px;
}
#aboutUs .aboutImg2{display: none;}

#aboutUs .infos{width: 570px;}

#aboutUs .infos::before {
	margin-left: auto;
	background: rgba(255,255,255,.1);
}

#aboutUs .sectionTitle,
#aboutUs .textContent{
	text-align: right;
	width: 100%;
}

#aboutUs .sectionTitle::before{margin-left: auto;}

#aboutUs .gallery{
	width: 440px;
    margin: 150px 0;
}

#aboutUs .gallery .bigImage{ border: 10px solid #212121; }

#aboutUs .gallery .bigImage img{
	display: block;
	width: 100%;
}

#aboutUs .gallery .bigImage .img{ display: none; }
#aboutUs .gallery .bigImage .img.img1{ display: block; }

#aboutUs .gallery .thumbs{
	background: rgba(33, 33, 33, .4);
    padding: 10px;
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}

#aboutUs .gallery .thumbs img{
	display: block;
    width: calc((100% / 6) - 6px);
    border: 4px solid #212121;
    cursor: pointer;
}

#aboutUs .gallery .thumbs img:hover,
#aboutUs .gallery .thumbs img.active{ border-color: var(--defaultColor); }
/* end: About Us -------------------------- */


/* Testimonials --------------------------------- */
#testemonials{ margin-bottom:100px; }
#sliderTestemonials{padding: 0px 40px}
#sliderTestemonials .owl-dots{display: none;}

#sliderTestemonials .owl-item{
	border: solid 9px #f2f2f2;
	transition: 0.3s;
}

#sliderTestemonials .owl-item:hover{border-color: var(--defaultColor);}

#sliderTestemonials .owl-item .item .link{ color: var(--defaultText); }
#sliderTestemonials .owl-item .item img{width: 100%;}

#sliderTestemonials .owl-item .item .name{
	color: #797979;
    font: 16px latobold;
    margin: 16px 0px 27px;
    text-transform: uppercase;
    display: block;
    text-align: center;
}

#sliderTestemonials .owl-item .item .price{
	color: #797979;
    font: 28px latobold;
    margin: 16px 0px 10px;
    text-transform: uppercase;
    display: block;
    text-align: center;
}

#sliderTestemonials .owl-item .item .image{
	position: relative;
	overflow: hidden;
	display: block;
}

#sliderTestemonials .owl-item .item .image .cut{
	display: block;
    position: absolute;
    background: #fff;
    bottom: -1px;
    clip-path: polygon(50% 100%, 100% 88%, 100% 100%, 0 100%, 0 86%);
    height: 260px;
    left: -3px;
    z-index: 2;
    width: 101%;	
}
    
#sliderTestemonials .owl-item .item .text{
	padding: 7px 20px 40px 20px;
    /*background: url(../img/quote.png) no-repeat 13px 0;*/
    font-size: 16px;
    line-height: 20px;
    height: 160px;
    display: block;
}

#sliderTestemonials .owl-theme .owl-nav {
    margin-top: 0;
    position: relative;
}

#sliderTestemonials .owl-nav .owl-prev,
#sliderTestemonials .owl-nav .owl-next{
	position: absolute;
	left: -10px;
	top: 44%;
	font-size: 40px;
	background: none;
	transition: 0.3s;
}

#sliderTestemonials .owl-nav .owl-prev:hover,
#sliderTestemonials .owl-nav .owl-next:hover{ opacity: .7; }

#sliderTestemonials .owl-nav .owl-prev .icon,
#sliderTestemonials .owl-nav .owl-next .icon{
	fill: #797979;
	width: 30px;
}

#sliderTestemonials .owl-nav .owl-next .icon{ transform: rotate(180deg); }

#sliderTestemonials .owl-nav .owl-next{
	left: auto;
	right: -10px;
}

#sliderTestemonials .owl-item .item .price{
	color: #797979;
    font: 28px latobold;
    margin: 16px 0px 10px;
    text-transform: uppercase;
    display: block;
    text-align: center;
}
/* end: Testimonials --------------------------------- */


/* Newsletter --------------------------------- */
.newsletter{
	background: var(--defaultColor);
	height:275px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.newsletter form{
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.newsletter form h2{
	color: #fff;
    text-transform: uppercase;
    border-left: 5px solid #fff;
    padding: 3px 0 0 20px;
    font: 22px latobold;
    width: 320px;
}

.newsletter form .inputEmail{
	width: calc(100% - 490px);
    height: 44px;
    padding: 0 0 0 10px;
    background: rgba(255, 255, 255, .2);
    border: 1px solid rgba(255, 255, 255, .4);
    color: #fff;
    font-size: 17px;
}

.newsletter form .btn{
	border-radius: 30px;
	background: #fff;
	border: 0;
	padding: 10px;
	font-size: 15px;
	width: 90px;
	height: 44px;
	cursor: pointer;
}
.newsletter form .btn:hover{ background: #ebebeb; }

/* Chrome/Opera/Safari */
.newsletter form .inputEmail::-webkit-input-placeholder{ font-size:16px; color: #fff; }

/* Firefox 19+ */
.newsletter form .inputEmail::-moz-placeholder{ font-size:16px; color: #fff; }

/* IE 10+ */
.newsletter form .inputEmail:-ms-input-placeholder{ font-size:16px; color: #fff; }

/* Firefox 18- */
.newsletter form .inputEmail:-moz-placeholder{ font-size:16px; color: #fff; }
/* end: Newsletter --------------------------------- */


/* Contacts --------------------------------- */
#contact{ background: #000; }
#contact.content::before{ margin-left: auto; background: rgba(255, 255, 255, .2); }
#contact .sectionTitle{ text-align: right; }
#contact.content .sectionTitle::before{  margin-left: auto; }

.contacts{
	margin-top: 2px;
	background: #000; 
}

.contacts .details{
	margin-left: auto;
    padding: 80px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.contacts .details .link{
	display: flex;
    align-items: center;
    color: #d5a946;
    font-size: 24px;
    margin-bottom: 6px;
    justify-content: right;
}

.contacts .details .link .icon{
	width: 30px;
    fill: #d5a946;
    margin-right: 5px;
}

.contacts .details .link.address .text{ line-height: 40px; }
.contacts .details a.link.phone{ display: none; }
/* end: Contacts --------------------------------- */


/* Footer --------------------------------- */
footer{
	color: #d5a946;
    padding: 25px 0px;
    font-size: 15px;
    background: #000;
}

footer > .container{ display:flex; justify-content: space-between; }
footer > .container > a{ color: var(--defaultColor); }
footer > .container > a:hover{ text-decoration: underline; }

/* Events Page --------------------------------- */
.eventContent{
	display: flex;
	justify-content: space-between;
	margin-bottom: 40px;
}

.eventContent .eventImage{ width: 450px; }

.eventContent .eventImage img{
	width: 100%;
	border: 1px solid var(--defaultColor);
	padding: 6px;
}

.eventContent .eventDescription{ 
	width: calc(100% - 500px);
	position: relative;
	padding-bottom: 58px;
}

.eventContent .eventDescription .backButton{ 
	display: flex;
    background: #000;
    color: #fff;
    align-items: center;
    padding: 12px;
    width: 150px;
    height: 48px;
    justify-content: center;
    position: absolute;
    right: 0;
    bottom: 0;
}

.eventContent .eventDescription .backButton .icon{
	fill: #fff;
    width: 16px;
    margin: -2px 4px 0 0;
}
/* end: Events Page --------------------------------- */


/* RESPONSIVE -------------------------------------------- */
@media only screen and (max-width: 1920px){}
@media only screen and (max-width: 1680px){}

@media only screen and (max-width: 1600px){}

@media only screen and (max-width: 1440px){}
@media only screen and (max-width: 1366px){}


@media only screen and (max-width: 1280px){
	.container{width: 970px;}
	.header .navMenu ul li a{font-size: 15px;}

	.slider.first .item .container .content img{ width: 480px; }
	.slider.first .item .container .content .text{ width: 336px; font-size: 26px; }

	#services .textContent{ width: 480px; font-size: 18px; }
	#services .allServices{ padding-top: 28px; }
	#services .allServices .service{ width: 222px; height: 236px; }
	#services .allServices .service1,#services .allServices .service2{top: 280px;}
	#services .allServices .service1{ right: 260px; }
	#services .allServices .service2{ right: 17px; }
	#services .allServices .service .name{ width: 176px; margin-left: -88px; }

	#sliderTestemonials .owl-item .item .text{ padding: 7px 20px 40px 20px; }
	#sliderTestemonials .owl-item .item .image .cut{ width: 102%; }

	#aboutUs .infos{ width: 500px; }

	#contact{
		background-position: 0 bottom;
    	background-size: 360px;
	}
}

@media only screen and (max-width: 1200px){}
@media only screen and (max-width: 1080px){}
@media only screen and (max-width: 1050px){}
@media only screen and (max-width: 1024px){}

@media only screen and (max-width: 1023px){
	.container{width: 730px;}
	section.content::before, 
	#aboutUs .infos::before{ height: 90px; }

	.slider.first{ height: 480px; }
	.slider.first .item .container .content img{ width: 380px; }
	.slider.first .item .container .content .text{ width: 328px; }
	.slider.first .item .container{ padding-top: 48px; }

	#services .textContent{ width: 100%; }
	#services .allServices{ padding-top: 0; row-gap: 6px; }
	#services .allServices .service1, 
	#services .allServices .service2{ position: relative; top: auto; right: auto; }
	#services .allServices .service{ margin-bottom: 46px;  width: calc((100% / 3) - 16px); }

	#aboutUs{ flex-direction: column-reverse; padding-bottom: 30px; }
	#aboutUs .gallery{ width: 100%; margin: 20px auto; }
	.aboutUs{ margin-top: 20px; }
	#aboutUs .infos{ width: 100%; }
	
	.newsletter form{ display: block; margin: 0 auto; width: 440px; }
	.newsletter form h2{ margin: 0 auto; padding: 0; border: 0; }
	.newsletter form .inputEmail{ width: 100%; height: 40px; margin: 10px 0; }
	.newsletter form .btn{ width: 100%; border-radius: 6px; }

	.contacts .details{
		display: block;
   		margin: 0 auto;
   		width: 410px;
   		padding: 20px 0;
   	}
   	.contacts .details .logo{ width:100%; margin-bottom: 30px; }

	.contacts .details .link{
		font-size: 28px;
		margin-bottom: 15px;
    	justify-content: center;
	}

	.contacts .details .link .icon{ width: 30px; }
	#contact{ background-size: 260px; }

	footer .container{ text-align: center; }

	.eventContent .eventImage{ width: 370px; }
	.eventContent .eventDescription{ width: calc(100% - 390px); }
}
	

@media only screen and (max-width: 966px){}
@media only screen and (max-width: 960px){}
@media only screen and (max-width: 950px){}
@media only screen and (max-width: 900px){}
@media only screen and (max-width: 854px){}
@media only screen and (max-width: 853px){}
@media only screen and (max-width: 800px){}



/* Mobile */
@media only screen and (max-width: 768px){

	/* Geral ----------------- */
	.container{width:90%;}
	.close{display: block;}

	.mobileBar{
		display: flex;
	}

	body{padding-top: 62px;}

	.slider img,
	.slider .linkLogo,
	.slider .shadow{display: none;}

	.slider img.mobileSlider{display: block;}

	.slider.first{ height: 408px; }
	.slider.first .item .container{
		padding-top: 0;
		display: block;
	}
	.slider.first .item .container .content{ display: block; }
	.slider.first .item .container .content img{
        width: 260px;
        margin: 0 auto;
    }

    .slider.first .item .container .content .text{
        width: 278px;
        margin: 0 auto;
        font-size: 20px;
    }

    .slider.first .item .container .content .text .btn{
	    padding: 10px;
	    font-size: 30px;
	}

	.slider.first .owl-stage-outer,
	.slider.first .no-js .owl-carousel,
	.slider.first .owl-carousel.owl-loaded{ height: 102%; }


	/* Menu --------------- */
	.header,
	.header.fixedMenu{
		transition: 0.0s;
		visibility: hidden;
		opacity: 0;
		background: rgb(0 0 0 / 96%);
		position: fixed;
		top: 0px;
		left: 0px;
		width: 100%;
		height: 100%;
		display: block;
		padding-top: 30%;
		z-index: 20;
	}

	.header.fixedMenu.active,
	.header.active{
		visibility: visible;
		opacity: 1;
	}

	.header .navMenu {
	    position: absolute;
	    right: auto;
	    width: 350px;
	    left: 50%;
	    margin-left: -175px;
	}

	.header .navMenu ul {
	    display: block;
	    text-align: center;
	}

	.header .navMenu ul li{
		padding: 0px;
		margin-bottom: 23px;
	}

	.header .navMenu ul li a {
	    font-size: 18px;
	}

	#services .allServices{ row-gap: 0; justify-content: space-between; }
	#services .allServices .service{ width: calc((100% / 2) - 16px); height: auto; }
	
	#contact{ background-size: 240px; }
	.contacts .details{ width: 370px; padding: 20px 0; }
	.contacts .details .link{ font-size: 22px; }
	.contacts .details .link.address .text{ line-height: 28px; }

	.slider .sliderText{
		bottom: 35%;
	    width: 40%;
	    font-size: 3.6vw;
	}

	
	footer{
		text-align: center;
		margin-bottom: 0 !important;
		padding: 12px 0px;
	}

	.eventContent{ display: block; }
	.eventContent .eventImage{ width: 450px; margin: 0 auto 20px; }
	.eventContent .eventDescription{ width: 100%; padding-bottom: 0; }
	
	.eventContent .eventDescription .backButton{
		margin: 25px auto 0;
		position: relative;
	}

	footer > .container{ flex-wrap:wrap;justify-content: center; }
	footer > .container > a{
		display: block;
		text-align: center;
		width: 100%;
		padding-top: 5px;
	}
}


@media only screen and (max-width: 753px){}



@media only screen and (max-width: 736px){}
@media only screen and (max-width: 720px){}

@media only screen and (max-width: 667px){
	#sliderTestemonials .owl-item .item .text{ font-size: 18px; }
}

@media only screen and (max-width: 640px){}


@media only screen and (max-width: 604px){}

@media only screen and (max-width: 600px){
	#contact{ background:none; }
}

@media only screen and (max-width: 568px){}

@media only screen and (max-width: 540px){
	#services .allServices .service{ width: 100%; }

	#aboutUs .gallery .thumbs{ flex-wrap: wrap; }
	#aboutUs .gallery .thumbs img{ width: calc((100% / 3) - 6px); }

	.slider .sliderText{
		bottom: 35%;
        width: 43%;
        font-size: 4.2vw;
        line-height: 25px;
    }
}

@media only screen and (max-width: 533px){
	.eventContent .eventImage{ width: 100%; }
}

@media only screen and (max-width: 480px){
	.newsletter form{width: 90%;}

    .slider .sliderText {
	    width: 48%;
	    font-size: 4.9vw;
	}
}

@media only screen and (max-width: 424px){}

@media only screen and (max-width: 414px){
	#sliderTestemonials .owl-item .item .text{ font-size: 16px; }
	.contacts .details{ width: 100%; }
}

@media only screen and (max-width: 400px){}
@media only screen and (max-width: 384px){}

@media only screen and (max-width: 375px){
	#sliderTestemonials .owl-item .item .text{ font-size: 15px; }
}

@media only screen and (max-width: 360px){}
@media only screen and (max-width: 320px){}