body, html {
	background-color: #fff;
	color: #2a363d;
	font-family: 'Montserrat', sans-serif;
	font-size: 14px;
	font-weight: 400;
	margin:0px;
	height: 100%;
	padding:0px;
	position: relative;
}
body {
	overflow-x: hidden;
}

article, aside, details, figcaption, figure, footer, header, hgroup, nav, section, img { display:block }
table { border:none; border-collapse:collapse }
a {
	cursor:pointer;
	text-decoration:none;
	outline:none;
}
p, form, input, ul, ol, h1, h2, h3, h4, h5, h6, figure, hr, span, blockquote, fieldset {
	margin:0px;
	padding:0px;
}
ul li { list-style-type:none; list-style-position:outside }
ol li { list-style-position: inside }
img { border:0px; display:inline-block }
input, textarea, select {
	border-radius:0px;
	color:#2a363d;
	font-family: 'Montserrat', sans-serif;
	font-size: 14px;
	font-weight: 400;
	border:none;
	resize:none;
}
* {
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	box-sizing:border-box;
}

strong { font-weight: 600 }
.generalWrap {
	margin:auto;
	max-width:1280px;
	position:relative;
	width: inherit;
}
.generalWrap.v2 {
	max-width: 1000px;
	left: -150px;
}
.generalWrap.pad { padding: 0 110px }

@media only screen and (max-width:1368px) {
	.generalWrap.v2 { left: -50px }
}
@media only screen and (max-width:1366px) {
	.generalWrap.pad { padding: 0 60px }
}

.grid {
	display: grid;
	grid-template-rows: auto;
	/* gap: 24px; */
}

h1 {
	font-size: 34px;
	font-weight: 400;
	/* padding-top: 40px; */
	text-align: center;
}
header {
	background-color: rgba(255,255,255,0.95);
	border-radius: 0 0 6px 0;
	box-shadow: 0 0 20px rgba(50,50,50,0.2);
	height: calc(76vh - 75.2px);
	min-width: 138px;
	position: fixed;
	top: calc(12vh + 75.2px);
	transition: all .4s linear;
	z-index: 1000;
}

#logo {
	background-color: #00a54f;
	background-color: rgba(0,165,79,0.95);
	border-radius: 0 6px 0 0;
	left: 0;
	padding: 14px 14px;
	position: absolute;
	top: -75.2px;
}
#logo svg {
	width: 144px;
}
#logo svg path { fill: #fff }

a#btnMenu {
	display: none;
	position: absolute;
    left: 192px;
    padding: 10px 12px 10px 20px;
    background-color: rgb(0, 165, 79);
    color: rgb(255, 255, 255);
	border-radius: 0px 12px 12px 0px;
	font-size: 1.5em;
	top: -63px;
	transition: all .5s linear;
}

a#btnMenu.close {left: -193px;}
a#btnMenu.open {left:161px}

header.show {left: 0;}
header.hide {left: -245px;}
@media only screen and (max-width:1368px) {
	header { height: calc(84vh - 65px); top: calc(8vh + 65px) }
}


@media only screen and (max-width:980px){
	header {
		left: -22%;
		left: -201px;
	}
	a#btnMenu {
		display: block;
	}
}
@media only screen and (max-width:750px){
	#logo {top:-66.2px;}
	#logo svg {width: 114px;}
	a#btnMenu.open {left:142px}
}

@media only screen and (max-width:495px){
	header {
		height: calc(84vh - 97px);
		top: calc(8vh + -4px);
	}
	#logo {
		padding: 5px 5px;
		top: -52.2px;
	}
	#logo svg {width: 128px;}
	a#btnMenu.open{left: 137px !important;}
	#btnMenu {
		left:191px  !important;
		top:-47px  !important;
	}
}

/* -----------nav-----------*/
nav {
	display: grid;
	height: 100%;
	grid-template-rows: repeat(8,1fr);
	position: relative;
}
nav div {
	border-bottom: 1px solid #e2e2e2;
	color: #2a363d;
	display: grid;
	font-size: .9em;
	font-weight: 600;
	min-width: 172px;
	padding: 0 22px;
	text-align: center;
	align-items: center;
	position: relative;
}
nav div a { color: #2a363d;}
nav a.current svg,
nav a:hover svg,
nav a.current,
nav a:hover { 
	color: #a26128;
	fill: #a26128;
}
nav div:last-of-type { border-bottom: none }
nav a i, nav a svg {
	color: #00a54f;
	display: block !important;
	font-size: 1.9em;
	margin-bottom: 5px;
	position: relative;
}
nav a svg { 
	fill: #00a54f;
	margin: 0 auto;
	margin-bottom: 5px;
}
nav a.current svg,
nav a:hover svg,
nav a.current i,
nav a:hover i { 
	color: #a26128 
}

nav div ul.subMenu {
	display: none;
	background-color: #fff;
	position: absolute;
	left: 100%;
	top: 0;
	text-align: left;
	border: 1px solid #e0e0e0;
	border-radius: 0px 10px 10px 0px;
	min-width: 195px;
	min-height: 54px;	
	/* min-height: calc(76vh - 75.2px);	 */
}
nav div:hover ul.subMenu {display: block;}

nav div ul.subMenu li {
	padding: 20px 12px 15px 12px;
	position: relative;
}
nav div ul.subMenu li:last-child {
	padding-bottom: 15px;
}
nav div .subMenu li:first-of-type:before {
	content: "";
	position: absolute;
	height: 56px;
	width: 2px;
	background-color: #fff;
	left: -1px;
	top: 0;
}

nav div ul.subMenu li:after {
	content: "";
	position: absolute;
	left: 12px;
	bottom: -2px;
	width: 88%;
	height: 1px;
	background-color: #e0e0e0;
}

nav div ul.subMenu li:last-of-type:after {
	content: none;
}
nav div .subMenu li a { color:#0da958;}
nav div .subMenu li:hover  { 
	padding-left: 15px;
}
nav div .subMenu li:hover a { color:#a26128;}


@media only screen and (max-width:1368px) {
	nav a { font-size: .86em }
	nav a i { font-size: 1.7em }
}

@media only screen and (max-width:750px) {
	nav div {
		min-width: 142px;
		padding: 0 10px;
	}
}

@media only screen and (max-width:495px){
	nav div {
		min-width: 96px;
		padding: 0px;
	}
	nav div a {
		width:136px ;
		padding: 0px 8px;
	}
}

/* -----------mainSlider-----------*/
#mainSlider {
	height: 100vh;
	overflow: hidden;
	position: relative;
}
#mainSlider .item {
	height: 100vh;
	position: relative;
}

#mainSlider video {
	position: relative;
	object-fit: cover;
	height: 100%;
	width: 100%;
}
#mainSlider figure {
	background-size: cover;
	background-position: center center;
	height: 100%;
	left: 0;
	position: relative;
	top: 0;
	width: 100%;
}
#mainSlider .overlay {
	background-color: rgba(40,40,40,0.2);
	display: grid;
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: 100;
	align-items: center;
}
#mainSlider .overlay div {
	display: table;
	margin-left: auto;
	padding: 0 100px 0 28px;
	position: relative;
}
#mainSlider .overlay div:before {
	background-color: #edcb45;
	content: "";
	height: calc(100% - 19px);
	left: -16px;
	position: absolute;
	top: 19px;
	width: 6px;
}
#mainSlider .overlay p {
	color: #00a54f;
	color: #fff;
	font-size: 5.1em;
	font-weight: 700;
	letter-spacing: -1px;
	text-shadow: 0 2px 20px rgba(0,0,0,.4);
	text-transform: uppercase;
}
#mainSlider .overlay p.small {
	font-size: 1.6em;
	font-weight: 500;
	margin-top: 2px;
	text-transform: initial;
}
#mainSlider .overlay a {
	background-color: rgba(40,40,40,0.2);
	border: 2px solid #fff;
	border-radius: 40px;
	color: #fff;
	display: table;
	font-weight: 700;
	margin-top: 26px;
	padding: 10px 24px;
	text-transform: uppercase;
}
#mainSlider .overlay a:hover {
	background-color: rgba(32, 32, 32, 0.281);
}
@media only screen and (max-width:1368px) {
	#mainSlider .overlay div { padding: 0 80px 0 28px }
	#mainSlider .overlay p { font-size: 4.3em }
	#mainSlider .overlay p.small { font-size: 1.4em }
}

@media only screen and (max-width:1095px){
	#mainSlider .overlay div {margin-left: 25%;}
	#mainSlider .overlay p { font-size: 3.3em }
}
@media only screen and (max-width: 945px){
	#mainSlider .overlay div {margin-left: 25%;}
	#mainSlider .overlay p { font-size: 2.3em }
}

/* Slider */
.slick-slider
{
    position: relative;

    display: block;
    box-sizing: border-box;

    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;

    display: block;
    overflow: hidden;

    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track
{
    position: relative;
    top: 0;
    left: 0;
    display: block;
}
.slick-track:before,
.slick-track:after
{
    display: table;

    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;

    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide img
{
    display: block;
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;

    height: auto;

    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}



/* -----------info-----------*/
#info {
	align-items: center;
	background-color: #00a54f;
	background-image: url(../img/contact.jpg);
	background-attachment: fixed;
	background-repeat: no-repeat;
	color: #fff;
	display: grid;
	grid-template-columns: repeat(3,auto);
	justify-content: center;
	padding: 80px;
	padding-left: 245px;
	text-shadow: 0 2px 10px rgba(0,0,0,.2);
}
#info > div {
	border-right: 1px solid #c3844c;
	padding: 0 54px;
}
#info > div:last-child { border-right: none; padding-right: 30px }
#info h5 {
	color: #f1c298;
	font-size: .96em;
	font-weight: 600;
	margin-bottom: 6px;
	text-transform: uppercase;
}
#info p {
	font-weight: 500;
	padding: 7px 0;
}
#info i {
	margin-right: 9px;
	color: #fff;
}
#info .social {
	display: block;
	font-size: 1.4em;
	margin-right: 6px;
	padding: 4px 0;
}

#info .social:hover i {
	color: #c8c8c8;
}

@media only screen and (max-width:980px){
	#info {
		padding: 56px 33px;
	}
}
@media only screen and (max-width:805px){
	#info {
		grid-template-columns: repeat(2,auto);
	}
	#info > div:nth-child(2) {border: none;}
	#info > div:last-child {
		grid-column: span 2;
		text-align: center;
		margin-top: 25px;
	}
	#info .social {display: unset;}
}

@media only screen and (max-width:650px){
	#info > div {
		/* border-right: unset;
		border-bottom: 1px solid #c3844c; */
		padding: 20px;
	}
}

@media only screen and (max-width:495px){
	#info {padding: 56px 20px;}
}

@media only screen and (max-width:445px){
	#info > div {
		border-right: unset;
		border-bottom: 1px solid #c3844c;
	}
	#info > div:last-child {
		grid-column: unset;
		margin: 0;
		border: unset;
	}
	#info {
		grid-template-columns: 100%;
		text-align: center;
		gap: 15px 0px;
	}
}
/* -----------footer-----------*/
footer {
	background-color: #38433d;
	background-image: url(../img/footer.jpg);
	display: grid;
	grid-template-columns: repeat(4,1fr);
	gap: 14px 0px;
	padding: 80px;
	padding-left: 245px;
	position: relative;
}
footer > div { text-align: center }
footer h5 {
	color: #fff;
	font-size: 1.3em;
	font-weight: 400;
	letter-spacing: -.5px;
	margin-bottom: 18px;
}
footer h5.v2 {
	margin-top: 32px;
}
footer h5 span {
	border-bottom: 2px solid #a26128;
	font-weight: 500;
	padding-bottom: 4px;
	line-height: 1.8;
}
footer a {
	color: #fff;
	display: block;
	font-size: 1em;
	padding: 5px 0;
}
footer a:hover {
text-decoration: underline;
}
@media only screen and (max-width:980px){
	footer {
	grid-template-columns: repeat(3,1fr);
	padding: 80px 33px;
	}
}

@media only screen and (max-width:720px){
	footer {grid-template-columns: repeat(2,1fr);}
}

@media only screen and (max-width: 480px){
	footer{padding: 35px 22px;}
}

@media only screen and (max-width: 495px){
	footer{
		grid-template-columns: 1fr;
	}
}

/* -----------section-----------*/
section {
	position: relative;
}
section.v2:after {
	background-image: url(../img/lines.jpg);
	background-size: cover;
	bottom: -120px;
	content: "";
	height: 400px;
	position: absolute;
	width: 100%;
	z-index: -1;
}
@media only screen and (max-width:1368px) {
	section.v2:after { height: 280px }
}


/* -----------promosbox-----------*/
.promoTitle {
	font-size: 3.5em;
	font-weight: 500;
	padding: 140px 72px 30px 210px;
	text-align: center;
}
.promoTitle p {
	letter-spacing: -1px;
	position: relative;
}
.promoTitle p:before {
	background-color: #00a54f;
	content: "";
	height: 6px;
	left: 50%;
	position: absolute;
	top: -20px;
	transform: translateX(-50%);
	width: 130px;
}

@media only screen and (max-width:950px){
	.promoTitle {
		font-size: 2em;
		padding: 40px 10px 30px 10px;
	}
}

.promos {
	display: grid;
	grid-template-columns: repeat(3,30%);
	gap: 20px;
	justify-content: center;
	padding: 0 72px 0 245px;
	height: 400px;
	margin: 0 auto;
}
.promosbox {
    /* display: grid; */
    margin: 0 auto;
    /* grid-template-columns: repeat(3, 1fr); */
    /* gap: 20px; */
    width: 100%;
}
.promosbox a figure {
    padding-bottom: 380px;
    background-position: center;
    background-size: cover;
    outline: 1px solid#fff;
    outline-offset: -15px;
	max-width: 507px;
	transition: all .4s ease;
}
.promosbox a:hover figure {
    outline-offset: -5px;
}
.promosbox a:hover div {
	padding: 12px 24px 24px 24px;
}
.promosbox a div {
	background-color: #fff;
	border-radius: 0 6px 0 0;
	bottom: 0;
	padding: 12px 24px 16px 24px;
	position: absolute;
	max-width: 70%;
	transition: all .4s ease;
} 
.promosbox a div h4 {
	display: table;
	letter-spacing: -.5px;
	font-weight: 600;
	font-size: 1.5em;
	color: #2a363d;
}
.promosbox div p {
	color: #e2782b;
	font-size: 1.2em;
	font-weight: 600;
	margin-top: 4px;
	text-transform: uppercase;
}

.promos .btnBox {
	grid-column: span 3;
	margin-top: 45px;
}

@media only screen and (max-width:1368px) {
	.promosbox figure { padding-bottom: 94% }
	.promosbox div h4 { font-size: 1.3em }
}

@media only screen and (max-width:1265px){
	.promos {
		grid-template-columns: repeat(3,35%);
		gap: 14px;
		padding: 0 53px 0 12px;
		height: 258px;
		margin-left: 25%;
	}
	.promosbox a figure {padding-bottom: 86%;}
	.promosbox a div h4 {font-size: .95em;}
	.promosbox a div p {font-size: .92em;}
}

@media only screen and (max-width:1000px){
	.promos {
		grid-template-columns: repeat(2,50%);
		height: 580px;
	}
	.promosbox a div {
		padding: 12px 10px 6px 10px;
		max-width: 100%;
		position: relative;
	}
	.promosbox a:hover div {padding:12px 10px 6px 10px ;}
	.promosbox a figure {padding-bottom: 74%;}
	.promos .btnBox {grid-column: 1 / span 2;}
}

@media only screen and (max-width:980px){
	.promos {
		grid-template-columns: 50% 50%;
		height: auto;
		padding: 0px 20px;
		margin: 0 auto;
	}
	/* .promos .btnBox {
		grid-column: unset;
	} */
}

/* -----------benefits-----------*/
.benefits {
	background-color: #00a54f;
	background-attachment: fixed;
	background-repeat: no-repeat;
	background-size: cover;
	color: #fff;
	padding: 164px 72px 140px 245px;
	text-align: center;
}
.benefits h2 {
	font-size: 3.5em;
	font-weight: 500;
	letter-spacing: -1px;
	position: relative;
	text-shadow: 0 2px 20px rgba(0,0,0,.4);
}
.benefits h2:before {
	background-color: #edcb45;
	content: "";
	height: 6px;
	left: 50%;
	position: absolute;
	top: -20px;
	transform: translateX(-50%);
	width: 130px;
}
.benefits > p {
	font-size: 1.5em;
	margin-bottom: 40px;
	text-transform: uppercase;
	text-shadow: 0 2px 20px rgba(0,0,0,.4);
}
.benBox {
	display: grid;
	grid-template-columns: repeat(5,auto);
	grid-gap: 44px;
	justify-content: center;
}
.benBox a {
	border-right: 1px solid #1ac96e;
	font-weight: 600;
	padding-right: 44px;
	text-transform: uppercase;
	text-shadow: 0 2px 20px rgba(0,0,0,.2);
}
.benBox a:last-of-type {
	border-right: none;
	padding-right: 0;
}
.benBox i {
	color: #fff;
	font-size: 4em;
	margin-bottom: 14px;
}
.benBox p {
	font-size: 1.1em;
	color: #fff;
}

@media only screen and (max-width:1040px){
	.benefits h2 {font-size: 2em;}
	.benBox {grid-template-columns: repeat(3,auto);}
	.benBox a:nth-child(3){border: none;}
}
@media only screen and (max-width:980px){
	.benefits {padding: 100px 33px;}
	.benBox {
		grid-template-columns: repeat(5,1fr);
		grid-gap: 36px 0px;
	}
	.benBox a {padding-right: 0px;}
	.benBox i{font-size: 2em;}
	.benBox a:nth-child(3){border-right:  1px solid #1ac96e;}
	/* .benBox a:nth-child(2), */
	.benBox a:nth-child(5){border: none;}
}

@media only screen and (max-width:820px){
	.benBox {grid-template-columns: repeat(4,1fr);}
	.benBox a:nth-child(4){border: none;}
}

@media only screen and (max-width:695px){
	.benBox {grid-template-columns: repeat(3,1fr);}
	.benBox a:nth-child(4){border-right:  1px solid #1ac96e;}
	.benBox a:nth-child(3),
	.benBox a:nth-child(5){border: none;}
}

@media only screen and (max-width:495px){
	.benefits {padding: 70px 22px;}
	.benBox {grid-template-columns: repeat(2,1fr);}
	.benBox a { padding: 0px 10px}
	.benBox a:nth-child(3){border-right:  1px solid #1ac96e;}
	.benBox a:nth-child(2),
	.benBox a:nth-child(4){border: none;}
}
/* -----------newsletter-----------*/
.newsletter {
	display: grid;
	padding: 130px 72px 130px 245px;
}
.newsletter h2 {
	color: #fff;
	font-size: 3.5em;
	font-weight: 500;
	letter-spacing: -1px;
	line-height: 1em;
	margin-bottom: 34px;
	text-shadow: 0 2px 20px rgba(0,0,0,.4);
}
.newsletter > div {
	margin: auto;
	text-align: center;
}
.newsletter input[type="text"]{
	background-color: rgba(20,20,20,0.2);
	border-radius: 24px 0 0 24px;
	border:1px solid #fff;
	border-right: none;
	color: #fff;
	padding: 12px 14px;
	width: 350px;
}
.newsletter input[type="submit"]{
	background-color: #00a54f;
	border-radius: 0 24px 24px 0;
	color: #fff;
	font-weight: 600;
	min-height: 44px;
	padding: 10px 22px;
	text-transform: uppercase;
}

.newsletter input[type="submit"]:hover {
	background-color: #0cb85f;
}

@media only screen and (max-width:980px){
	.newsletter {padding: 130px 33px;}
	.newsletter h2 { font-size: 2.5em;}
	.newsletter input[type="text"] {
		width: 70%;
	}
	.newsletter input[type="submit"]{padding: 10px 12px;}
}

@media only screen and (max-width:528px){
	.newsletter input[type="text"] {
		width: 100%;
		border-right: 1px solid #fff;
		border-radius: 24px;
		margin-bottom: 10px;
	}

	.newsletter input[type="submit"]{
		padding: 10px 12px;
		border-radius: 24px;
		width: 100%;
		margin-top: 10px;
	}
	.newsletter h2 {font-size: 2em;}
}

/* -----------boxKnow-----------*/
.know {
	background-attachment: fixed;
	background-size: cover;
	margin-top: 120px;
	padding: 180px 72px 180px 245px;
}
.know.v2 {
	margin-top: 0px;
	padding-top: 71px;
}
.know h2 {
	color: #fff;
	font-size: 3.5em;
	font-weight: 500;
	letter-spacing: -1px;
	margin-bottom: 38px;
	position: relative;
	text-align: center;
	text-shadow: 0 2px 20px rgba(0,0,0,.4);
}
.know h2:before {
	background-color: #00a54f;
	content: "";
	height: 6px;
	left: 50%;
	position: absolute;
	top: -20px;
	transform: translateX(-50%);
	width: 130px;
}
.boxKnow, .boxKnow2 {
	display: grid;
	grid-template-columns: repeat(4,1fr);
	grid-gap: 10px;
}
.boxKnow2 {margin-left: 124px;}

.boxKnow a , .boxKnow2 a {
	background-color: #eee;
	background-size: cover;
	background-position: center center;
	display: grid;
	height: 350px;
	justify-content: center;
	transition: all 2s ease;
}

.boxKnow2 a {
	height: 220px;
	outline: 1px solid #fff;
	outline-offset: -10px;
}

.boxKnow a:nth-child(2),
.boxKnow a:nth-child(8) {
	grid-column: span 2;
}
.boxKnow p, .boxKnow2 p{
	color: #fff;
	font-weight: 600;
	font-size: 2em;
	letter-spacing: -1px;
	margin: auto;
	padding: 0 40px;
	position: relative;
	text-align: center;
	text-shadow: 0 2px 20px rgba(0,0,0,.4), 0 0 60px rgba(0,0,0,.8);
}

.boxKnow a p:before {
	content: "";
	background-color: #fff;
	bottom: 0;
	left: 0;
	height: 1px;
	position: absolute;
	transition: all .4s ease;
	text-align: center;
	width:0%;
}

.boxKnow a:hover p:before {
	width: 100%;
}

@media only screen and (max-width:1368px) {
	.boxKnow a { height: 280px }
	.boxKnow p { font-size: 1.9em }
	#region h2.title{margin-left: 124px;}
	.boxKnow2 {
		margin-left: 193px;
		margin-right: 31px;
		grid-template-columns: repeat(2,1fr);
	}
}

@media only screen and (max-width:1230px){
	.boxKnow a {height: 170px;}
	.boxKnow p, .boxKnow2 p {
		font-size: 1.2em;
		padding: 0px 10px;
	}
}

@media only screen and (max-width:980px){
	.know {padding: 170px 34px;}
	.boxKnow {grid-template-columns: repeat(3,1fr);}
	.boxKnow a {height: 150px;}
	#region > .generalWrap {padding-top: 14px;}
	#region h2.title {margin-left: 6px}
	.boxKnow2 { margin: 0 20px; gap:30px; }
}

@media only screen and (max-width:675px){
	.know h2{ font-size: 2em;}
	.boxKnow {grid-template-columns: repeat(2,1fr);}
	/* #region h2.title { margin-left: 0;} */
	.boxKnow a:nth-child(2) { grid-column: unset;}
	.boxKnow a:nth-child(3),
	.boxKnow a:nth-child(6) {
		grid-column: span 2;
	}
	.boxKnow2 a {height: 166px;}
}

@media only screen and (max-width:495px){
	.know {padding: 140px 28px }
	.boxKnow2 {
		gap: 10px;
		grid-template-columns: 100%;
	}
}

/* -----------news-----------*/
.news {
	margin: 0 auto;
	max-width: 1360px;
	padding: 120px 72px 100px 245px;
}
.news h2 {
	font-size: 3.5em;
	font-weight: 500;
	letter-spacing: -1px;
	margin-bottom: 20px;
	position: relative;
	text-align: center;
}
.news h2:before {
	background-color: #00a54f;
	content: "";
	height: 6px;
	left: 50%;
	position: absolute;
	top: -20px;
	transform: translateX(-50%);
	width: 130px;
}

@media only screen and (max-width:1065px){
	.news {
		padding: 120px 33px 100px 188px;
	}
}
@media only screen and (max-width:980px){
	.news {
		padding: 120px 33px ;
	}
	.boxnews p {
		font-size: 1em;
	}
	.news h2 {
		font-size: 2em;
	}
}


.boxnews {
	margin-bottom: 45px;
	/* display: grid;
	grid-template-columns: repeat(3,1fr);
	grid-gap: 20px; */
}
.boxnews a {
	padding: 0px 20px;
}

.btnBox {
	text-align: center;
}
.btnBox a.btnVer {
	text-align: center;
	color: #0daa58;
	padding: 8px 15px;
	border: 1px solid #0daa58;
	transition: all .3s ease;
}

a.btnVer:hover {
color: #fff;
background-color: #0daa58;
}

.boxnews figure {
	background-size: cover;
	background-position: center;
	padding-bottom: 76%;
	outline: 1px solid #fff;
	outline-offset: -14px;
	transition: all .4s ease;
}

.boxnews a:hover figure {
	outline-offset: -5px;
	opacity: .8;
}

.boxnews p {
	font-size: 1.24em;
	font-weight: 600;
	letter-spacing: -.5px;
	line-height: 1.4em;
	margin-top: 14px;
	color: #2a363d;
}
.boxnews a span {
	color: #9aa49f;
	display: block;
	font-size: .85em;
	font-weight: 400;
	margin-top: 2px;
}

div.date {
	position: relative;
	/* padding-left: 50px; */
	/* margin-bottom: 30px; */
	/* border-bottom: 1px solid #e0e0e0; */
	display: inline-block;
	padding-bottom: 10px;
	
	top: -53px;
}

div.date span {
	/* font-size: 2.8em; */
	display: inline-block;
	/* position: absolute; */
	left: 0;
	top: 0px;
	padding: 0;
	/* line-height: 31px; */
	/* color: #848484; */
}

div.date p {
	display: inline;
}

#emergencyPhone {
	background-color: #00a54f;
	border-radius: 6px 6px 0 0;
	bottom: 0;
	color: #fff;
	font-size: 1em;
	font-weight: 600;
	letter-spacing: -1px;
	padding: 12px 20px;
	position: fixed;
	right: 34px;
	text-transform: uppercase;
	z-index: 1000;
}
#emergencyPhone i {
    margin-right: 8px;
}

@media only screen and (max-width:650px){
	div.date {top: -13px;}
}


/* -----------events-----------*/
.events {
	margin: 0 auto;
	padding: 120px 72px 100px 245px;
}
.events h2 {
	font-size: 3.5em;
	font-weight: 500;
	letter-spacing: -1px;
	margin-bottom: 20px;
	position: relative;
	text-align: center;
}
.events h2:before {
	background-color: #00a54f;
	content: "";
	height: 6px;
	left: 50%;
	position: absolute;
	top: -20px;
	transform: translateX(-50%);
	width: 130px;
}
.evBox {
	display: grid;
	grid-template-columns: repeat(2,1fr);
	grid-gap: 40px 80px;
	margin-top: 40px;
	position: relative;
	margin-bottom: 30px;
}
.evBox a {
	border-top: 4px solid #ededed;
	display: grid;
	grid-template-columns: 200px auto;
	grid-gap: 24px;
	padding: 36px 0 0 60px;
	position: relative;
}
.evBox .number {
	border-bottom: 2px solid #e2782b;
	color: #e2782b;
	font-size: 2.1em;
	font-weight: 600;
	left: 0;
	padding: 0 0 7px 0;
	position: absolute;
	text-align: center;
	top: 36px;
}
.evBox .number span {
	font-size: .44em;
	font-weight: 600;
	display: block;
}
.evBox figure {
	background-color: #dedede;
	background-size: cover;
	background-position: center center;
	height: 150px;
	width: 200px;
}
.evBox .title {
	font-size: 1.3em;
	font-weight: 600;
	letter-spacing: -.5px;
	color: #2a363d;
}
.evBox .detail {
	line-height: 1.7em;
	margin-top: 10px;
	color: #2a363d;
}

.events a.btnVer {
	border-color: #e2782b;
	color: #e2782b;
}
.events a.btnVer:hover {
	background-color: #e2782b;
	color: #fff;
}

@media only screen and (max-width:1368px) {
	.events {padding: 120px 33px 100px 205px;}
	.evBox { grid-gap: 40px 40px }
	.evBox a { grid-template-columns: 140px auto }
	.evBox figure { height: 110px; width: 140px }
}

@media only screen and (max-width:1295px){
	.evBox a {
		grid-template-columns: 100%;
	}
	.evBox figure {
		height: 283px;
		width: 100%;
	}
}

@media only screen and (max-width:980px){
	.events {padding: 100px 33px;}
	.evBox figure {height: 220px;}	
}
 @media only screen and (max-width:675px){
	.events {padding: 120px 33px}
	.evBox {
		display: grid;
		grid-template-columns: 100%;
	}
	.evBox a {
		grid-template-columns: 32% 1fr;
	}
	.evBox figure {
		height: 143px;
	}
}


@media only screen and (max-width:480px){
	.events { padding: 66px 14px;}
	.evBox figure {
		height: 85px;
	}
}


/* -----------links-----------*/
.wrapLink {
	background-attachment: fixed;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
}
.wrapLink:before {
	background-color: #e0e0e0;
	content: "";
	height: 6px;
	left: 50%;
	margin-left: 84px;
	position: absolute;
	top: -3px;
	transform: translateX(-50%);
	width: 200px;
}
.links {
	display: grid;
	grid-template-columns: repeat(2,1fr);
	grid-gap: 40px;
	margin: 0 auto;
	max-width: 1500px;
	padding: 80px 72px 120px 245px;
}
.links a {
	padding: 40px;
	position: relative;
	transition: all .3s ease;
}
.links a:before {
	background-color: #fff;
	border-bottom: 6px solid #e2782b;
	box-shadow: 0 0 25px rgba(80,80,80,0.05);
	bottom: 0;
	content: "";
	height: 240px;
	left: 0;
	position: absolute;
	width: 100%;
}
.links a:nth-child(2):before {
	border-color: #27a8eb;
}
.links a figure {
	background-color: #eee;
	background-size: cover;
	background-position: center center;
	height: 360px;
	position: relative;
	width: 100%;

	outline: 1px solid #fff;
	outline-offset: -14px;
	transition: all .3s ease;
	z-index: 100;
}

.links a:hover figure {
	outline-offset: -8px;
}

.links a p {
	color: #e2782b;
	font-size: 2.6em;
	font-weight: 600;
	letter-spacing: -.7px;
	position: relative;
	margin-top: 34px;
	text-align: center;
	transition: all .3s ease;
	z-index: 100;
}
.links a:nth-child(2) p {
	color: #27a8eb;
}

.links a:hover p {
	margin-top: 24px;
}

@media only screen and (max-width: 1225px){
	.links {
		padding: 11px 35px 102px 196px;
		grid-gap: 18px;
	}
	.links a figure {height: 245px;}
	.links a p {font-size: 2em;}
}

@media only screen and (max-width:980px){
	.links {padding: 100px 33px;}
	.links a {padding: 20px;}
	.links a p {font-size: 1.6em;}
}
@media only screen and (max-width:820px){
	.links a figure {height: 254px;}
}
@media only screen and (max-width:728px){
	.links a figure {height: 200px;}
}
@media only screen and (max-width:690px){
	.links a figure {height: 199px;}
}
@media only screen and (max-width: 575px){
	.links a figure {height: 152px;}
}
@media only screen and (max-width: 480px){
	.links {grid-template-columns: 100%;}
	.links a figure {height: 255px;}
}


/*----------------- txtBox ----------------*/
.txtBox {
	color: #fff;
	/* display: grid; */
	box-shadow: 0 0 32px rgba(69,73,78,0.16);
	height: calc(100% - 44px);
	min-height: 380px;
	padding: 32px;
	position: relative;
	text-align: justify;
	word-break: break-word;
}

.txtBox h1,.txtBox blockquote > h1,#contentTruncate > h1 {
	position: relative;
	padding-bottom: 25px;
	font-size: 2.5em;
	font-weight: 500;
}
.txtBox h1:before,.txtBox blockquote > h1:before,#contentTruncate > h1:before {
	position: absolute;
	content: "";
	height: 4px;
	width: 118px;
	background-color: #03a04e;
	left: 50%;
	transform: translateX(-50%);
	bottom: 15px;
}

.txtBox h2, .txtBox blockquote > h2, #contentTruncate > h2 {
	border-bottom: 2px solid #01bb5b;
	color: #fff;
	display: table;
	font-size: 1.8em;
	font-weight: 500;
	margin-bottom: 12px;
	margin-top: 38px;
	padding-bottom: 8px;
	position: relative;
}
.txtBox h2:first-of-type { margin-top: 0 }
.txtBox > p + h2:first-of-type { margin-top: 38px }
.txtBox h3, .txtBox blockquote > h3, #contentTruncate > h3 {
	font-size: 1.3em;
	line-height: 1.3em;
	margin-bottom: 4px;
	text-align: left;
}
.txtBox h4, .txtBox blockquote > h4, #contentTruncate > h4 {
	border-bottom: 1px solid #4a5266;
	display: table;
	font-size: 1.1em;
	margin-bottom: 8px;
	padding-bottom: 4px;
	text-align: left;
}
.txtBox > p, .txtBox blockquote > p, #contentTruncate > p, .txtBox table p, .txtBox > .information > p {
	font-size: 1.1em;
	line-height: 1.3em;
	margin-bottom: 24px;
}
.txtBox > p:last-of-type { margin-bottom: 0 }
.txtBox > p:last-of-type + .img100 { margin-top: 22px }
.txtBox > p:last-of-type + h2,
.txtBox > p:last-of-type + h3,
.txtBox > p:last-of-type + h4,
.txtBox > p:last-of-type + ul,
.txtBox > p:last-of-type + .embedContainer { margin-top: 22px !important }
.txtBox > h2 + h3,
.txtBox > h2 + h4,
.txtBox > h3 + h4 { margin-top: 22px }
.txtBox blockquote + h2 { border-top: none; margin-top: 20px }
.txtBox h2 + .embedContainer { margin-top: 16px }
.txtBox > p:last-of-type + h2 { margin-top: 28px }

.txtBox > ul, .txtBox blockquote > ul, #contentTruncate > ul, .txtBox table ul,
.txtBox > ol, .txtBox blockquote > ol, #contentTruncate > ol, .txtBox table ol { margin: 18px 0 12px 0 }
.txtBox > ol, .txtBox blockquote > ol, #contentTruncate ol {
	counter-reset: myCounter;
}
.txtBox > ul:first-child, .txtBox table ul:first-child { margin: 0 }
.txtBox > ul:first-child + p { margin-top: 12px }
.txtBox blockquote > ul:first-child { margin: 0 0 12px 0 }
.txtBox > ul > li, .txtBox blockquote > ul > li, #contentTruncate > ul > li, .txtBox table ul li,
.txtBox > ol > li, .txtBox blockquote > ol > li, #contentTruncate > ol > li, .txtBox table ol li {
	line-height: 1.5em;
	padding: 0 0 12px 30px;
	position: relative;
}
.txtBox > ol > li, .txtBox blockquote > ol > li, #contentTruncate > ol > li, .txtBox table ol li {
	counter-increment: myCounter;
	list-style: none;
	padding: 0 0 12px 42px;
}
.txtBox > ul > li:before, .txtBox blockquote > ul > li:before, #contentTruncate > ul > li:before, .txtBox table ul li:before {
	background-color: #00a54f;
	content: "";
	height: 2px;
	left: 12px;
	position: absolute;
	top: 11px;
	width: 8px;
}
.txtBox > ol > li:before, .txtBox blockquote > ol > li:before, #contentTruncate > ol > li:before, .txtBox table ol li:before {
	content: counter(myCounter)".";
	font-weight: 500;
	left: 12px;
	position: absolute;
	text-align: right;
	top: 0px;
	width: 22px;
}

#contentTruncate {
	display: none;
	margin-top: 22px;
}
.txtBox h5 {
	cursor: pointer;
	font-size: 1em;
	font-weight: 500;
	padding-top: 10px;
	position: relative;
	text-align: center;
}
.txtBox h5 a {
	border-bottom: 1px solid transparent;
	color: #48ae28;
	display: inline-block;
	padding-bottom: 1px;
	transition:all 0.3s ease;
}
.txtBox h5 a:hover { text-decoration: none }
.txtBox h5:hover a { border-color: #48ae28 }
.txtBox h5 i { margin-right: 6px }
.txtBox h5.open a { color: #a5a5a5 }
.txtBox h5:hover.open a { border-color: #a5a5a5 }
.txtBox h5:before {
	background-image: url(../img/degradation.png);
	background-position: bottom;
	background-repeat: repeat-x;
	content: "";
	cursor: pointer;
	height: 90px;
	left: -2px;
	position: absolute;
	top: -91px;
	width: 101%;
}
.txtBox h5.open:before { display: none }

.txtBox h6 {
	border-top: 1px solid #ddd;
	cursor: pointer;
	font-size: 1.18em;
	font-weight: 500;
	line-height: 1.36em;
	padding: 16px 26px 16px 0;
	position: relative;
	text-align: left;
	transition:all 0.3s ease;
}
.txtBox a {
	color: #2a363d;
	transition:all 0.3s ease;
}
.txtBox h6:hover a {
	color: #0170c0;
	text-decoration: none;
}
.txtBox h6:first-of-type { margin-top: 22px }
.txtBox h2 + h6 { margin-top: 22px }
.txtBox h6:before {
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	content: "\f107";
	color: #0170c0;
	font-size: 1.1em;
	position: absolute;
	right: 0;
	top: 17px;
}
.txtBox h6.symbol:before { content: "\f106" }
.txtBox h6.symbol { color:#00aeef }
.txtBox blockquote { display: none }

.txtBox img {
	border-bottom: 7px solid #4a5266;
	display: block;
	width: 100%;
}
.txtBox .img100 { margin-bottom: 24px }
.txtBox .imgLeft, .txtBox .imgRight { width: 48% }
.txtBox .imgLeft {
	float: left;
	margin: 6px 24px 24px 0;
}
.txtBox .imgRight {
	float: right;
	margin: 6px 0 24px 24px;
}
.txtBox a.zoomImage {
	display: block;
	position: relative;
}
.txtBox a.zoomImage:before {
	background-color: rgba(28,30,44,0);
	content: "";
	height: 100%;
	left: 0;
	position: absolute;
	top:0;
	transition:all 0.3s ease;
	width: 100%;
}
.txtBox a:hover.zoomImage:before { background-color: rgba(28,30,44,0.3) }

.txtBox table {
	margin: 15px 0 22px 0;
	width: 100% !important;
}
/* .txtBox table:last-of-type { margin-bottom: 0 } */
.txtBox table:last-of-type + p,
.txtBox table:last-of-type + h3,
.txtBox table:last-of-type + h4 { margin-top: 22px }
.txtBox table th {
	background-color: #00a54f;
	border-bottom: 1px solid #00a54f;
	border-top: 1px solid #00a54f;
	color: #fff;
	font-size: .9em;
	font-weight: 600;
	padding: 6px 12px;
	white-space: nowrap;
}
.txtBox table td {
	border-bottom: 1px solid #fff;
	border-top: 1px solid #fff;
	font-size: .9em;
	font-variant-numeric: tabular-nums;
	padding: 8px 12px;
	/* text-align: left; */
	vertical-align: top;
	/* white-space: nowrap; */
}

.txtBox .tools {
	/* position: absolute; */
	top: 0;
	text-align: end;
	margin-bottom: 35px;
}

.txtBox .tools a {
	color: #fff;
	padding: 4px;
	position: relative;
	border: 1px solid #fff;
}
.txtBox .tools.v2 a {
	color: #454545;
	border-color: #454545;
}

.txtBox .tools.v2 a:hover {
	color: #00a54f;
	border-color: #00a54f;
}

.txtBox .tools a:nth-child(1),
.txtBox .tools a:nth-child(2),
.txtBox .tools.v2 a:nth-child(1),
.txtBox .tools.v2 a:nth-child(2) {
	padding-right: 6px;
}

.txtBox .tools a > i:nth-child(2),
.txtBox .tools.v2 a > i:nth-child(2) {
	font-size: 0.5em;
	position: absolute;
	right: 2px;
}

.txtBox .tools.v2 a > i:nth-child(2) {
	right: 3px;
	top: 6px;
}
.clearFix {
	content: "";
	clear: both;
	display: table;
}


.docBox {
	position: relative;
	margin: 20px 0px;
	display: grid;
	grid-template-columns: repeat(2, auto);
	gap: 10px;
}
.docBox a {
	background-color: #fff;
	color: #454545;
	padding: 8px 25px 8px 12px;
	border: 1px solid #e0e0e0;
	position: relative;
	margin-right: 10px;
}
.docBox a:hover {
	border-color: #e8bd11;
}

.docBox a svg {
	width: 19px;
    height: 19px;
    position: absolute;
    top: 8px;
	fill:#8a8a8a;
	right: 7px;
}

.docBox a i {
	color: #8a8a8a;
	position: absolute;
	top: 8px;
	right: 8px;
	font-size: 1.2em;
}

.docBox a:hover svg {
	fill: #e8bd11;
}
.docBox a:hover i {
	color: #e8bd11;
}

@media only screen and (max-width:750px){
	.docBox { grid-template-columns: 100%;}
}

@media only screen and (max-width:980px){
	.txtBox h1, .txtBox blockquote > h1, #contentTruncate > h1{font-size: 2em;}
}

/* -------------INTERNAS----------- */
/* internas destinos */

#region {
	background-size: cover;
	background-position: center;
	/* width: 100%; */
	min-height: 100vh;
	padding-bottom: 47px;
	background-attachment: fixed;
	padding-top: 74px;
}
/* .container.columns2 { */
.container2 {
	grid-template-columns: 88% 1fr;
	max-width: 75%;
	margin-left: 180px;
	gap: 18px;
}

.slide2 {position: relative;}
.slide2 a {
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	padding-bottom: 170px;
	margin-bottom: 20px;
	color: #fff;
	position: relative;
}

.slide2 a > p {
	position: absolute;
	font-size: 1.3em;
	font-weight: 600;
	left: 15px;
	width: 90%;
	bottom: 33%;
}

.slide2 .slick-slide {
	width: 100% !important;
}

.pArrow, .nArrow{
	position: absolute;
	left: 114px;
	left: 50%;
	transform: translateX(-50%);
	font-size: 2em;
}

#region h2.title {
	font-size: 2em;
	text-align: center;
	color: #fff;
	text-transform: uppercase;
	font-weight: 500;
	margin-bottom: 10px;
}

@media only screen and (max-width:1422px){
	.container2 {
		grid-template-columns: 73% 1fr;
	}
}

@media only screen and (max-width:1326px){
	.slide2 .slick-slide {
		width: 100% !important;
	}
}

@media only screen and (max-width:980px){
	/* .container.columns2 { */
	.container2 {
		max-width: 86%;
		margin: 0 auto;
		grid-template-columns: 100%;
		justify-items: center;
	}
	.container2 .txtBox {
		padding: 0 ;
		width: 100%;
	}
	.slide2 {display: none;}
}

@media only screen and (max-width:685px){
	.container2 {
		max-width: 90%;
	}
}

/* SliderGeneral detail */
.slideGeneral {
	width: 100%;
	margin-bottom: 30px;
	position: relative;
}

.slideGeneral  a figure{
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
	padding-bottom: 490px;
}

.slideGeneral a {
	display: block;
	max-height: 490px;
	position: relative;
	overflow: hidden;
}

.slideGeneral a img {
	height: auto;
	width: 100%;	
}

.slideGeneral a.prev, .slideGeneral a.next {
	position: absolute;
	color: #fff;
	bottom: 0;
	z-index: 100;
	font-size: 1.6em;
	padding: 10px;
	background-color:#00000040;
	width: 50%;
}

.slideGeneral a.prev {
	text-align: right;
}

.slideGeneral a.next {
	text-align: left;
	left: 50%;
    border-left: 1px solid #fff9;
}

.slideGeneral  {
	display: block;
}

.slideGeneral  iframe {
	width: 100%;
    height: 490px;
}
@media only screen and (max-width: 980px){
	.slideGeneral a { max-height: 360px;}
}

@media only screen and (max-width: 750px){
	.slideGeneral a {max-height: 355px;}
	.slideGeneral  a figure{padding-bottom: 355px;}
}

@media only screen and (max-width:598px){
	.slideGeneral a {max-height: 277px;}
	.slideGeneral  a figure{padding-bottom: 277px;}
}

@media  only screen and (max-width:480px){}
/*---------------------- paginador ----------------------*/
.paginatorPage {
	margin-top: 25px;
	text-align: center;
	top: 0;
	position: relative;
	z-index: 1000;
}

.paginatorPage span  {
	background-color: #00000073;
	margin: 5px;
	padding: 3px;
	border: 2px solid #ffcb00;
	border-radius: 50px;
}
.paginatorPage span:nth-child(1) {
	padding: 3px 4px 3px 4px;
}

.paginatorPage span:hover, .paginatorPage span:hover a  {
	background-color: #ffcb00;
	color: #fff;
}
.paginatorPage span a {
	color: #ffcb00;
	padding: 3px 5px;
}

.paginatorPage .active {
	background-color: #5c5c5c;
}

.paginatorPage .active a {
	color: #fff;
}


#list {
	position: relative;
	background-size: cover;
	background-position: center top;
	padding:71px  20px 48px 12% ;
}
#list:before {
	background-color:#626060bf;
	background-color:	#828282bf;
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
}

#list h1 {
	font-size: 3.5em;
	font-weight: 500;
	letter-spacing: -1px;
	margin-bottom: 50px;
	position: relative;
	text-align: center;
	color: #fff;
}

#list h1:before {
	background-color: #edcb45;
	content: "";
	height: 6px;
	left: 50%;
	position: absolute;
	top: -20px;
	transform: translateX(-50%);
	width: 130px;
}

@media only screen and (max-width:1368px){
	#list {
		padding-left: 17%;
	} 

}

@media only screen and (max-width: 980px){
	#list {
		padding-left: 20px;
	} 
	#list h1 {font-size: 2.5em;}
}

h1.orange:before, #list.blog h1.orange:before { 
	background-color: #e2782b;
}

#list h1.blue:before {
	background-color: #27a8eb;
}

.newsList {
	grid-template-columns: repeat(3, 1fr);
	margin-bottom: 45px;
	gap: 24px;
}

.newsList a {
	background-position: center;
	background-size: cover;
	padding-bottom: 285px;
	position: relative;
	overflow: hidden;
	transition: all .4s ease;
	-webkit-box-shadow: 2px 2px 25px -12px rgba(0,0,0,0.75);
	-moz-box-shadow: 2px 2px 25px -12px rgba(0,0,0,0.75);
	box-shadow: 2px 2px 25px -12px rgba(0,0,0,0.75);
}

.newsList a:before {
	/* content: ""; */
	position: absolute;
	height: 290px;
	background-color:rgba(0, 0, 0, 0.31);
	width: 100%;
	transition: all .4s ease;
}

.newsList a > p.date {
	background-color: #424242bf;
	padding: 15px;
	position: absolute;
	font-weight: 600;
	/* color: #fff; */
	color: #ffcb00;
	font-size: 2.4em;
	text-align: center;
	transition: all .4s ease;
	-webkit-box-shadow: 2px 2px 25px -12px rgba(0,0,0,0.75);
	-moz-box-shadow: 2px 2px 25px -12px rgba(0,0,0,0.75);
	box-shadow: 2px 2px 25px -12px rgba(0,0,0,0.75);
}

.newsList a > p.date > span {
	font-size: 0.5em;
	display: block;
}

.newsList a > .info {
	/* background-color: #a6a6a673; */
	background-color: #424242bf;
	position: absolute;
	bottom: 0;
	padding: 8px 23px ;
	color: #fff;
	transition: all .4s ease;
	-webkit-box-shadow: 2px 2px 25px -12px rgba(0,0,0,0.75);
	-moz-box-shadow: 2px 2px 25px -12px rgba(0,0,0,0.75);
	box-shadow: 2px 2px 25px -12px rgba(0,0,0,0.75);
	width: 100%;
}

.newsList a > .info h3 {
	/* color: #fff; */
	color: #ffcb00;
	padding-bottom: 10px;
}

@media only screen and (max-width:1368px){
	.newsList {grid-template-columns: repeat(2, 1fr);}
}

@media only screen and (max-width:600px){
	.newsList {grid-template-columns: 100%;}
}

#detail { 
	padding-top: 52px;
	background-repeat: no-repeat;
	background-size: cover;
	padding-bottom: 20px;
	background-attachment: fixed;
}
#detail .txtBox {
	color: #454545;
	padding: 32px 55px 32px 55px;
}

#detail .txtBox h2 {
	color: #454545;
}

#detail .container {
	max-width: 65%;
	margin: 0px auto 0 319px;
	background-color: #fff;
}

@media only screen and (max-width:1235px){
	#detail .container {
		max-width: 79%;
		margin: 0px auto 0 205px;
	}
	#detail .txtBox {padding: 32px;}
}

@media only screen and (max-width:975px){
	.txtBox .imgLeft, .txtBox .imgRight {width: 35%;}
	#detail .container {
		max-width: 88%;
		margin: 0 auto;
	}
	#detail .txtBox {padding: 18px;}
}

@media only screen and (max-width:495px){
	#detail {
		padding-top: 45px;
	}
	#detail .container {
		max-width: 95%;
	}
}

.actsList {
	grid-template-columns: repeat(2, 1fr);
	margin-bottom: 20px;
	gap: 20px;
}


.actsList a {
	/* border-top: 4px solid#ededed; */
    display: grid;
    grid-template-columns: 200px auto;
    gap: 0;
	padding: 0px;
	position: relative;
	background-color:#fff;
}

.actsList a div {
	padding: 15px 20px 10px 63px;
	position: relative;
	color: #2a363d;
}

.actsList a div:before {
	content: "";
	position: absolute;
	left: 49px;
	top: 19px;
	height: 73%;
	width: 1px;
	background-color: #c2c2c273;
}

.actsList a .number {
	background-color: #ffffffba;
	/* border-bottom: 2px solid#e2782b; */
	color:#e2782b;
	font-size: 2.1em;
	font-weight: 600;
	left: 7px;
	padding: 0 0 7px 0;
	position: absolute;
	text-align: center;
	top: 20px;
}

.actsList a .number span {
    font-size: .44em;
    font-weight: 600;
	display: block;
}

.actsList a figure {
	background-color:#dedede;
	background-size: cover;
	background-position: center center;
	height: auto;
    width: 100%;
}

.actsList a .detail {
    line-height: 1.7em;
	margin-top: 6px;
}

@media only screen and (max-width:1298px){
	.actsList a {grid-template-columns: 100%;}
	.actsList a figure {height: 250px;}
}

@media only screen and (max-width: 640px){
	.actsList a figure {
		height: 162px;
	}
}

@media only screen and (max-width:540px){
	.actsList {grid-template-columns: 100%;}
	.actsList a {
		grid-template-columns: 35% 1fr;
	}
	.actsList a figure {
		height: auto;
	}
}

@media only screen and (max-width: 420px){
	.actsList a {
		grid-template-columns: 100%;
	}
	.actsList a figure {
		height: 200px;
	}
}

/* detalle evento */
.dateAct {
	grid-template-columns:repeat(3, auto);
	padding: 21px 45px 32px 45px;
	justify-content: center;
	gap: 58px;
}

.dateAct div {position: relative;}
.dateAct > div:nth-child(1):before,
/* .dateAct > div:nth-child(3):before, */
.dateAct > div:nth-child(2):before {
	content:"";
	position: absolute;
	right: -29px;
	top: 0;
	width: 2px;
	height: 100%;
	background-color: #dbdada;
}

.dateAct div p.info{
	color: #777;
	font-weight: 600;
	padding-bottom: 15px;
	text-align: center;
}

.dateAct div.data {
	color: #e2782b;
	position: relative;
	padding-left: 52px;
}
.dateAct > div:nth-child(3) div.data {
	padding-left: 0px;
}
.dateAct div.data p {
	display: block;
	font-size: 1em;
	text-align: left;
}
.dateAct div.data span {
	position: absolute;
	left: 0;
	font-size: 2.8em;
	top: -4px;
}

@media only screen and (max-width:640px){
	.dateAct {
		padding:21px 0px 32px 0px;
		gap:25px;
	}
	.dateAct > div:nth-child(1):before,
	.dateAct > div:nth-child(2):before {right: -13px;}
}


@media only screen and (max-width: 450px){
	.dateAct {
		grid-template-columns: 100%;
		justify-items: center;
	}
	.dateAct > div:nth-child(1):before,
	.dateAct > div:nth-child(2):before {
		height: 1px;
		width: 100%;
		top: unset;
		bottom: -15px;
		left: 0;
	}
}

.icons {
	grid-template-columns: repeat(4, 23%);
	gap: 10px;
}

.icons a {
	padding: 20px 18px;
	text-align: center;
	border: 1px solid #80828b;
}
.icons a i {
	font-size: 1.5em;
	margin-bottom: 6px;
	color: #01bb5b;
	/* color: #3b488c; */
}

.icons a p {
	font-size: 1.1em;
}

@media only screen and (max-width:750px){
	.icons { grid-template-columns: repeat(2, 45%);}
}


.blog .txtBox {
	background-color: #fff;
}

.blog .comments div {
	padding: 10px 0px;
	border-bottom: 1px solid #e6e6e6;
}

.blog .comments div p {
	padding-bottom: 8px;
	color: #919191;
	font-size: .8em;
}
.blog .comments div p span {
	font-weight: 600;
	color: #2a363d;
	font-size: 1.2em;
	padding-right: 5px;
}
.blog .comments div p.txt {
	font-size: 1em;

}

.blogList {
	grid-template-columns: repeat(3, 1fr);
	gap: 40px;
}

.blogList a {
	background-color: #fff;
	position: relative;
	color: #2a363d;
}

.blogList a figure {
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	padding-bottom: 45%;
}

.blogList a div {
	padding: 14px;
	position: relative;
	border-top: 3px solid #e2782b;
}

.blogList a p.date {
	position: absolute;
	left: 0;
	color: #e2782b;
	background-color: rgba(255, 255, 255, 0.733);
	top: -41px;
	padding: 10px ;
	font-weight: 600;
}
.blogList a h3 {
	padding-bottom: 10px;
}

@media only screen and (max-width:1368px){
	.blogList {gap: 18px;}
}

@media only screen and (max-width:890px){
	.blogList {grid-template-columns: repeat(2, 1fr);}
}

@media only screen and (max-width:560px){
	.blogList {grid-template-columns: 100%;}
}
.boxComment {
	padding: 15px 0px;
}

.formComment label,
.boxComment h3  {
	padding-bottom: 10px;
	display: block;
}

.formComment input, .formComment textarea {
	border: 1px solid #dbdbdb;
	display: block;
	padding: 7px 15px;
	margin-top: 6px;
	width: 100%;
	box-sizing: border-box;
	transition: all .3s ease;
}
.formComment label.mandatory input, .formComment label.mandatory textarea {
	-webkit-box-shadow: 0px 0px 5px 0px rgba(227,9,9,1);
	-moz-box-shadow: 0px 0px 5px 0px rgba(227,9,9,1);
	box-shadow: 0px 0px 5px 0px rgba(227,9,9,1);
}

#detail.blog .txtBox {
	padding-bottom: 90px;
}

.msjError {
	/* display: none; */
	padding: 8px 0px;
	color: #da4747;
}
.msjSuccess{
	/* display: none; */
	padding: 8px 0px;
	color: #49B164;
}
label.mandatory p {
	position: relative;
	display: inline-block;
}

label.mandatory p:before {
	content: "*";
	color: #da4747;
	position: absolute;
	font-size: 1.2em;
	right: -11px;
	top: 4px;
}


.btnForm {
	display: inline-block;
	width: unset !important;
	color:#fff;
	background-color:#00a54f;
	border-color:#00a54f;
	font-weight: 500;
	margin-top: 10px;
	padding: 7px 10px;
	text-transform: uppercase;
	transition: all .3s ease;
}

.btnForm:hover {
	background-color:#0fc265;
}

@media only screen and (max-width:590px){
	.btnForm {width: 100% !important;}
}

/* Contacto View*/

#contact.view{
	position: relative;
	background-color: #eaeaea;
}

#contact .bgMap iframe {
	width: 100%;
	height: 376px;
	position: relative;
	top: -20px;
}

.boxContact {
	grid-template-columns: 60% auto;
	gap: 0;
	max-width: 58%;
	margin: 0 auto;
	position: relative;
	top: -149px;
	background-color: #fff;
	-webkit-box-shadow: 2px 2px 25px -10px rgba(0,0,0,0.75);
	-moz-box-shadow: 2px 2px 25px -10px rgba(0,0,0,0.75);
	box-shadow: 2px 2px 25px -10px rgba(0,0,0,0.75);
}

.boxContact > div {
	padding: 32px;
}

.boxContact div:nth-child(2) {
	background-color: #00a54f;
	color: #fff;
}

.boxContact .formContact {
	margin-top: 20px ;
}


/* formContact FORM GENERAL*/

.formContact label p,
.formAfiliate label p {
	position: relative;
	color: #777777;
	padding-bottom: 8px;
	text-align: left;
}

.formContact label input,
.formContact label textarea,
.formAfiliate label input,
.formAfiliate label textarea,
.formAfiliate label select {
	border: 1px solid #8f8f8f;
	padding: 6px 10px;
	width: 100%;
	box-sizing: border-box;
	margin-bottom: 10px;
}

.boxInfo div {
	padding: 20px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.781);
}

.boxInfo div:last-child {
	border: unset;
}

.boxInfo div p {
	position: relative;
	line-height: 2;
	padding-left: 17px;
}

.boxInfo div p i {
	position: absolute;
	left: -2px;
	top: 6px;
}

.boxInfo div a {
	margin-right: 10px;
}
.boxInfo div a i {
	font-size: 1.8em;
	transition: all .4s ease;
	color: #fff;
}

.boxInfo div a:hover i {
	color: #0eff3f;
}

@media only screen and (max-width:1368px){
	.boxContact {max-width:73%}
}

@media only screen and (max-width: 980px){
	.boxContact {
		max-width: 92%;
		top: 0;
	}
}
@media only screen and (max-width:695px){
	.boxContact {
		grid-template-columns: 100%;
	}	
}


/* Promociones  */
.promosList {
	grid-template-columns: repeat(3, 30%);
	gap: 50px;
	justify-content: center;
	margin: 0 auto;
	width: 100%;
}
.promosList a {
	position: relative;

}

.promosList a figure {
	padding-bottom: 380px;
	padding-bottom: 90%;
	background-position: center;
	background-size: cover;
	outline: 1px solid #fff;
	outline-offset: -15px;
	max-width: 507px;
	transition: all .4s ease;
}

.promosList  a div {
	background-color: #fff;
	border-radius: 0 6px 0 0;
	bottom: 0;
	padding: 12px 24px 16px 24px;
	position: absolute;
	max-width: 70%;
	transition: all .4s ease;
}
.promosList div h4 {color: #2a363d}
.promosList div p {
    color: #e2782b;
	font-weight: 600;
	margin-top: 4px;
	text-transform: uppercase;
}

@media only screen and (max-width: 1326px){
	.promosList a div {
		padding: 10px 11px 10px 11px;
		width: 100%;
		max-width: none;
	}
}

@media only screen and (max-width:980px){
	.promosList {
		gap: 24px;
	}
}

@media only screen and (max-width:800px){
.promosList { grid-template-columns: repeat(2, 45%); }
.promosList a div { width: 70%;}
}

@media only screen and (max-width:495px){
	.promosList a div {
		position: relative;
		bottom: unset;
		width: 100%;
		border-radius: 0;
	}
}
/* Afiliados */
.affiliateList {
	grid-template-columns: repeat(3, 31%);
	gap: 42px;
	justify-content: center;
}

.affiliateList > div > figure {
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	background-color: #fff;
	border: 18px solid #fff;
	padding-bottom: 53%;
}

.affiliateList > div > .info {
	background-color: #fff;
	padding: 10px 23px;
}

.affiliateList > div > .info a, 
.affiliateList > div > .info p {
	color: #454545;
	line-height: 2;
	position: relative;
	padding-left: 20px;
	word-break: break-word;
	display: block;
}
.affiliateList > div > .info h3,
.affiliateList > div > .info i {
	color: #a26128;
}

.affiliateList > div > .info i {
	position: absolute;
	left: 0;
	top:7px;
}

@media only screen and (max-width:980px){
	.affiliateList{
		grid-template-columns: repeat(3, 32%);
		gap:15px;
	}
}

@media only screen and (max-width: 680px){
	.affiliateList{grid-template-columns: repeat(2,50%);}
}

.filter {
	display: grid;
	grid-template-columns: repeat(4,1fr);
	gap: 36px;
	width: 80%;
	margin: 0 auto 20px auto;
}

.filter select, .filter input {
	padding: 8px 12px;
	appearance: none;
	-webkit-appearance: none;
	width: 100%;
}

.filter select {
	padding-right: 24px;
}

.filter .lblSelect {
	position: relative;
}

.filter .lblSelect:before {
	content: url(../img/down-chevron.svg);
	position: absolute;
	width: 12px;
	height: 17px;
	right: 8px;
	top: 11px;
}

.filter input[type="button"] {
	background-color: #00a54f;
	color: #fff;
	padding: 8px 24px;
	text-transform: uppercase;
	font-weight: 500;
}

@media only screen and (max-width:1368px){
	.filter {
		width: 100%;
	}
}
@media only screen and (max-width:980px){
	.filter {gap:15px}
}

@media only screen and (max-width: 680px){
	.filter { grid-template-columns: repeat(2,1fr);}
}

/* formulario de afiliacion */
.formAfiliate fieldset {
	border-color: #abcbd98c;
	padding: 30px 35px;
	margin-bottom: 35px;
}

.formAfiliate legend {
	padding: 0px 15px;
	font-size: 1.3em;
	text-align: left;
}

.formAfiliate fieldset p.titleOpt {
	font-weight: 600;
	margin-bottom: 9px;
}

.formAfiliate fieldset .optBox {
	padding: 15px 0; 
}

.formAfiliate fieldset > label {
	margin-bottom: 15px;
}
.formAfiliate fieldset .optBox label {
	display: block;
	position: relative;
	padding-left: 20px;
	margin-right: 20px;
}
.formAfiliate fieldset .optBox label > p {
	display: inline-block;
	text-align: left;
}

.formAfiliate fieldset .optBox  input[type="radio"],
.formAfiliate fieldset .optBox  input[type="checkbox"] {
	background-color: #fff;
	border: 1px solid #c3c3c3;
	cursor: pointer;
	height: 14px;
	margin-right: 8px;
	position: absolute;
	left: -1px;
	padding: 6px;
	top: 1px;
	width: 14px;
	-webkit-appearance: none;
	-moz-appearance: none;
}
.formAfiliate fieldset .optBox input[type="radio"] {
	border-radius: 50%;
}

input[type="radio"]:checked,
input[type="checkbox"]:checked {
    background-color: #00a54f !important;
	border: 3px solid #fff;
	box-shadow: 0 0 1px 1px #00a54f;
}

.formAfiliate .col4 {
	grid-template-columns: repeat(4, 1fr);
	gap: 10px;
}
.formAfiliate .col3 {
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
}

.formAfiliate .col2 {
	grid-template-columns: repeat(2, 1fr);
	gap: 15px;
}

.formAfiliate .col2mid {
	grid-template-columns: 55% 1fr;
	gap: 10px;
}

.formAfiliate .colspan {
	columns: span 2;
}

.formAfiliate p.info {
	padding: 20px 0px;
	margin-bottom: 10px;
}
/* .formAfiliate .boxInfo {

} */

.formAfiliate .btns {
	margin-top: 20px;
}
.formAfiliate .btns .btnSend,
.formAfiliate .btns .btnCancel {
	padding: 8px 15px;
	color: #fff;
	display: inline-block;
	font-size: 1.3em;
	text-transform: uppercase;
	margin-right: 20px;
}
.formAfiliate .btns .btnSend {background-color: #03a04e;}
.formAfiliate .btns .btnCancel {background-color: #424242;}

@media only screen and (max-width:859px){
	.formAfiliate .col3 {
		grid-template-columns: repeat(2, 1fr);
		gap: 10px;
	}
	.formAfiliate .col2mid {grid-template-columns: 49% 1fr;}
	.formAfiliate .col4 {grid-template-columns: repeat(3, 1fr);}
}

@media only screen and (max-width:715px){
	.formAfiliate .col4 {grid-template-columns: repeat(2, 1fr);}
	.subOpt { grid-column: 2 / span 1;}
	.subOpt > label {padding-left: 0;}
	.formAfiliate fieldset {padding: 30px 15px;}
}
@media only screen and (max-width:490px){
	.formAfiliate .col2, .formAfiliate .col3, .formAfiliate .col2mid {grid-template-columns: 100%;}
	.formAfiliate .btns .btnSend, .formAfiliate .btns .btnCancel { width: 100%;}
}
/* SERVICIOS CONOZCA CR */

.serviceList {
	grid-template-columns: repeat(4, 23%);
	gap: 23px;
	justify-content: center;
	margin: 0 auto;
}
.serviceList a {position: relative;}

.serviceList a figure {
	padding-bottom: 80%;
	background-position: center;
	background-size: cover;
	outline: 1px solid #fff;
	outline-offset: -15px;
	max-width: 507px;
	transition: all .4s ease;

	-webkit-box-shadow: inset 0px -88px 58px -32px rgba(0,0,0,0.75);
	-moz-box-shadow: inset 0px -88px 58px -32px rgba(0,0,0,0.75);
	box-shadow: inset 0px -88px 58px -32px rgba(0,0,0,0.75);
}

.serviceList  a div {
	/* background-color: #fff; */
	border-radius: 0 6px 0 0;
	bottom: 0;
	padding: 12px 24px 16px 24px;
	position: absolute;
	width: 100%;
	transition: all .4s ease;
}

.serviceList div h4 {
	color:#fff;
	font-size: 1.5em;
	font-weight: 500;
	word-wrap: break-word;
}

@media only screen and (max-width: 1368px){
	.serviceList div h4 {
		font-size: 1em;
	}
}

@media only screen and (max-width:1200px){
	.serviceList {grid-template-columns: repeat(3, 30%);}
}
@media only screen and (max-width:680px){
	.serviceList {grid-template-columns: repeat(2, 44%);}
}
@media only screen and (max-width:500px){
	.serviceList {grid-template-columns: repeat(2, 48%);}
}

/* Transportes */
.transportList {
	grid-template-columns: repeat(3, 31%);
	justify-content: center;
	gap: 42px;
	margin: 0 auto;
	width: 100%;
}

.transportList a figure {
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	padding-bottom: 53%;
}

.transportList a .info {
	background-color: #fff;
	padding: 10px 23px;
}

.transportList a .info p {
	color: #454545;
	line-height: 2;
	position: relative;
	padding-left: 20px;
}
.transportList a .info h3,
.transportList a .info i {
	color: #27a8eb;
}

.transportList a .info i {
	position: absolute;
	left: 0;
	top:7px;
}

@media only screen and (max-width: 1368px){
	.transportList {gap: 21px;}
}

@media only screen and (max-width:785px){
	.transportList {
		grid-template-columns: repeat(2, 48%);
	}
} 
@media only screen and (max-width: 520px){
	.transportList {
		grid-template-columns: 98%;
	}
}

/* junta directiva */

.container3 {
	box-shadow: none;
	background-color: #fff;
	margin-left: 12%;
}
.people {
	grid-template-columns: repeat(4, 23%);
	justify-content: center;
	gap: 32px;
	margin-top: 26px;
}
.people .box {
	text-align: left;
}
.people .box img {
	border-bottom: 7px solid rgb(0, 165, 79);
}
.people .box h3 {color: #0daa58;}
.people .box p {font-weight: 400}
.people .box p.name {
	font-size: 1.1em;
	font-weight: 600;
}

@media only screen and (max-width:1368px){
	.container3 {margin-left: 19%;}
	.people {grid-template-columns: repeat(3, 30%);}
}

@media only screen and (max-width:980px){
	.container3 {
		width: 90%;
		margin: 0 auto;
	}
}
@media only screen and (max-width:650px){
	.people {grid-template-columns: repeat(2, 48%);}
}
/* directorio */
#detail .container.v2 {
	width: 55%;
	margin: 0 auto;
	transition: all .4s ease;
}
.directory {
	display: block;
	position: relative;
}
.directory div {
	display: block;
	padding: 15px 10px;
	position: relative;
	border-bottom: 1px solid #e0e0e0;
}

.directory p {
	text-align: left;
}

.directory p span {
	right: 12px;
	position: absolute;
}

@media only screen and (max-width: 980px){
	#detail .container.v2 {
		width: 90%;
		margin: 0 auto;
	}
}


p.btnShow {
	padding: 10px 0px;
	border-top: 1px solid #e0e0e0;
	cursor: pointer;
	position: relative;
}
p.btnShow:before {
	content: "\f078";
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	margin-right: 10px;
	transition: all .3s ease;
	color: #0da958;
}

p.aDown:before {
    content: "\f077";
	transition: all .3s ease;
}

p.btnShow:first-of-type {
	border-top: none;
}
p.box:last-of-type {
	border-bottom: 1px solid #e0e0e0;
}

.box {
	padding: 12px 0px;
}
.box p, .box a {
	padding-bottom: 10px;
}
.box a {
	display: block;
}
.box p i, .box a i {
	color: #0da958;
}

.formContact .captcha, .formComment .captcha {
    background-repeat: no-repeat;
    background-size: contain;
    background-position: right top;
}
.error{
    -webkit-box-shadow: 0px 0px 5px 0px rgba(227,9,9,1);
    -moz-box-shadow: 0px 0px 5px 0px rgba(227,9,9,1);
    box-shadow: 0px 0px 5px 0px rgba(227,9,9,1);
}
.loading img{
    border-bottom: 0px solid #4a5266 !important;
    width: 25px !important;
}

.bannerPub {
	max-width: 54%;
	margin: 0 auto;
	margin-top: 29px;
	/* border: 1px solid #e0e0e0; */
	transition: .3s linear;
}
.bannerPub.v2 {
	max-width: 100%;
}
.bannerPub img {border: none;}

@media only screen and (max-width:980px){
	.bannerPub {max-width: 74%;}
}
@media only screen and (max-width:580px){
	.bannerPub {max-width: 100%;}
}

/* ----------- Magnific -----------*/
.mfp-bg {
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 200000;
	overflow: hidden;
	position: fixed;
	background-color: #45565c;
	opacity: 0.66;
	filter: alpha(opacity=66);
}
.mfp-wrap {
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 200002;
	position: fixed;
	outline: none !important;
	backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
}
.mfp-container {
	text-align: center;
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	padding: 0 8px;
}
.mfp-container:before {
	content: '';
	display: inline-block;
	height: 100%;
	vertical-align: middle;
}
.mfp-align-top .mfp-container:before { display: none; }
.mfp-content {
	position: relative;
	display: inline-block;
	vertical-align: middle;
	margin: 0 auto;
	text-align: left;
	z-index: 1045;
}
.mfp-inline-holder .mfp-content, .mfp-ajax-holder .mfp-content {
	width: 100%;
	cursor: auto;
}
.mfp-ajax-cur { cursor: progress; }
.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
	cursor: -moz-zoom-out;
	cursor: -webkit-zoom-out;
	cursor: zoom-out;
}
.mfp-zoom {
	cursor: pointer;
	cursor: -webkit-zoom-in;
	cursor: -moz-zoom-in;
	cursor: zoom-in;
}
.mfp-auto-cursor .mfp-content { cursor: auto; }
.mfp-close, .mfp-arrow, .mfp-preloader, .mfp-counter {
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
}
.mfp-loading.mfp-figure { display: none; }
.mfp-hide { display: none !important; }
.mfp-preloader {
	color: #CCC;
	position: absolute;
	top: 50%;
	width: auto;
	text-align: center;
	margin-top: -0.8em;
	left: 8px;
	right: 8px;
	z-index: 1044;
}
.mfp-preloader a { color: #CCC; }
.mfp-preloader a:hover { color: #FFF; }
.mfp-s-ready .mfp-preloader { display: none; }
.mfp-s-error .mfp-content { display: none; }
button.mfp-close, button.mfp-arrow {
	background-color: transparent;
	overflow: visible;
	cursor: pointer;
	border: 0;
	-webkit-appearance: none;
	display: block;
	outline: none;
	padding: 0;
	z-index: 1046;
	-webkit-box-shadow: none;
	box-shadow: none;
}
#modalBox2 button.mfp-close {
	background-color: rgba(255,255,255,0.9);
	border-radius: 0 0 0 14px;
}
button::-moz-focus-inner { padding: 0; border: 0 }
.mfp-close {
	cursor: pointer;
	font-size: 13px;
	height: 34px;
	line-height: 33px !important;
	position: absolute;
	right: 0;
	top: 0;
	text-decoration: none;
	text-align: center;
	width: 34px;
}
.mfp-close:hover, .mfp-close:focus { opacity: 1; filter: alpha(opacity=100); }
.mfp-close-btn-in .mfp-close { color: #a8b1b6 }
.mfp-image-holder .mfp-close, .mfp-iframe-holder .mfp-close {
	color: #fff;
	right: -6px;
	text-align: right;
	padding-right: 6px;
	text-shadow: 0 0 10px rgba(0,0,0,0.9);
	width: 100%;
}
.mfp-counter {
	color: #334b98;
	font-size: 12px;
	position: absolute;
	top: 7px;
	right: 10px;
	line-height: 18px;
	white-space: nowrap;
}
.mfp-arrow {
	position: absolute;
	opacity: 0.65;
	filter: alpha(opacity=65);
	margin: 0;
	top: 50%;
	margin-top: -55px;
	padding: 0;
	width: 90px;
	height: 110px;
	-webkit-tap-highlight-color: transparent;
}
.mfp-arrow:active { margin-top: -54px; }
.mfp-arrow:hover, .mfp-arrow:focus { opacity: 1; filter: alpha(opacity=100); }
.mfp-arrow:before, .mfp-arrow:after, .mfp-arrow .mfp-b, .mfp-arrow .mfp-a {
	content: '';
	display: block;
	width: 0;
	height: 0;
	position: absolute;
	left: 0;
	top: 0;
	margin-top: 35px;
	margin-left: 35px;
	border: medium inset transparent;
}
.mfp-arrow:after, .mfp-arrow .mfp-a {
    border-top-width: 13px;
    border-bottom-width: 13px;
    top: 8px;
}
.mfp-arrow:before, .mfp-arrow .mfp-b {
    border-top-width: 21px;
    border-bottom-width: 21px;
    opacity: 0.7;
}
.mfp-arrow-left { left: 0; }
.mfp-arrow-left:after, .mfp-arrow-left .mfp-a { border-right: 17px solid #FFF; margin-left: 31px; }
.mfp-arrow-left:before, .mfp-arrow-left .mfp-b { margin-left: 25px; border-right: 27px solid #3F3F3F; }
.mfp-arrow-right { right: 0; }
.mfp-arrow-right:after, .mfp-arrow-right .mfp-a { border-left: 17px solid #FFF; margin-left: 39px; }
.mfp-arrow-right:before, .mfp-arrow-right .mfp-b { border-left: 27px solid #3F3F3F; }
.mfp-iframe-holder { padding-top: 40px; padding-bottom: 40px; }
.mfp-iframe-holder .mfp-content { line-height: 0; width: 100%; max-width: 900px; }
.mfp-iframe-holder .mfp-close { top: -40px; }
.mfp-iframe-scaler {
	width: 100%;
	height: 0;
	overflow: hidden;
	padding-top: 56.25%;
}
.mfp-iframe-scaler iframe {
	position: absolute;
	display: block;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
	background: #000;
}
/* Main image in popup */
img.mfp-img {
	width: auto;
	max-width: 100%;
	height: auto;
	display: block;
	line-height: 0;
	padding: 40px 0 40px;
	margin: 0 auto;
}
/* The shadow behind the image */
.mfp-figure { line-height: 0; }
.mfp-figure:after {
    content: '';
    position: absolute;
    left: 0;
    top: 40px;
    bottom: 40px;
    display: block;
    right: 0;
    width: auto;
    height: auto;
    z-index: -1;
    box-shadow: 0 0 14px rgba(41, 41, 41, 0.4);
    background: #444;
}
.mfp-figure small {
	color: #BDBDBD;
	display: block;
	font-size: 12px;
	line-height: 14px;
}
.mfp-figure figure { margin: 0; }
.mfp-bottom-bar {
	margin-top: -40px;
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	cursor: auto;
}
.mfp-title {
	background-color: #fff;
	box-shadow: 0 0 14px rgba(41, 41, 41, 0.4);
	color: #303030;
	font-size: 13px;
	font-weight: 400;
	min-height: 34px;
	text-align: left;
	line-height: 18px;
	word-wrap: break-word;
	padding: 8px 36px 10px 14px;
}
.mfp-image-holder .mfp-content { max-width: 100%; }
.mfp-gallery .mfp-image-holder .mfp-figure { cursor: pointer; }

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
	.mfp-img-mobile .mfp-image-holder { padding-left: 0; padding-right: 0; }
	.mfp-img-mobile img.mfp-img { padding: 0; }
	.mfp-img-mobile .mfp-figure:after { top: 0; bottom: 0; }
	.mfp-img-mobile .mfp-figure small { display: inline; margin-left: 5px; }
	.mfp-img-mobile .mfp-bottom-bar { background: rgba(0, 0, 0, 0.6); bottom: 0; margin: 0; top: auto; padding: 3px 5px; position: fixed; }
	.mfp-img-mobile .mfp-bottom-bar:empty { padding: 0; }
	.mfp-img-mobile .mfp-counter { right: 5px; top: 3px; }
	.mfp-img-mobile .mfp-close { top: 0; right: 0; width: 35px; height: 35px; line-height: 35px; background: rgba(0, 0, 0, 0.6); position: fixed; text-align: center; padding: 0; }
}
@media all and (max-width: 900px) {
	.mfp-arrow { -webkit-transform: scale(0.75); transform: scale(0.75); }
	.mfp-arrow-left { -webkit-transform-origin: 0; transform-origin: 0; }
	.mfp-arrow-right { -webkit-transform-origin: 100%; transform-origin: 100%; }
	.mfp-container { padding-left: 6px; padding-right: 6px; }
}

/* ----------- modalBox -----------*/
#modalBox, .inlineBox, #modalC {
	background: #fff;
	box-shadow: 0 0 20px rgba(64, 64, 64, 0.45);
	margin: 26px auto;
	max-width: 500px;
	padding: 24px 28px 26px;
	position: relative;
}
#modalBox.v2, .inlineBox.v2 { max-width: 380px }
#modalBox.v3, .inlineBox.v3 { max-width: 680px }
.inlineBox.v4 {
	background-color: rgba(27,34,38,0.85);
	max-width: 640px;
	padding: 24px;
}
#modalBox h1, .inlineBox h1 {
	color: #0daa58;
	font-size: 1.5em;
	margin-bottom: 10px;
	text-align: center;
}
#modalBox p {
	margin-top: 4px;
}
#modalBox form {
	margin-top:16px
}
#modalBox label {
	/* color: #a6abae; */
	display: block;
	font-size: .9em;
	/* font-weight: 600; */
	margin-bottom: 6px;
}
#modalBox input[type="text"], #modalBox textarea {
	border: 1px solid #c3c3c3;
	color: #2a363d;
	font-size: .9em;
	margin: 0 0 18px 0;
	padding: 12px 10px 8px 10px;
	width:100%;
	transition: all 0.5s ease-in-out;
}
#modalBox input[type="text"]:focus, #modalBox textarea:focus {
	border-color: #4a5266
}
#modalBox .captchaTxt {
	background-position: right 0;
	background-repeat: no-repeat;
	background-size: contain;
}
#modalBox input[type="text"].requiredField, #modalBox textarea.requiredField {
	background-color: #fff4f3;
	border-color: #ffa39a;
}
#modalBox input[type="submit"] {
	background-color: #0daa58;
	border-radius: 4px;
	color: #fff;
	display:block;
	font-weight: 600;
	padding: 8px 30px;
	text-transform: uppercase;
	transition: all 0.2s ease;
	width: 100%;
}
#modalBox input[type="submit"]:hover, #modalBox input[type="submit"]:hover:focus { background-color:rgb(45, 142, 211) }
#modalBox input[type="submit"]:focus { background-color:rgb(62, 155, 221) }
.errors, .success {
	color: #fff;
	display: none;
	font-size: .88em;
	font-weight: 500;
	line-height: 1.4em;
	margin: 18px 0;
	padding: 7px 0;
	text-align: center;
}
.errors { background-color: #eb3e2e }
.success { background-color: #69a242 }
.errors p, .success p { margin: 10px 0 }
.messageTxt {
	color: #898f93;
	font-size: .85em;
	font-style: italic;
	line-height: 1.4em;
	margin-top: 8px;
	text-align: center;
}

#modalC .formComment { margin: 31px 0px 7px 0px; }


@media only screen and (max-width:1366px) {
	.inlineBox.v4 { max-width: 400px }
}
@media only screen and (max-width:580px) {
	#modalBox h1, .inlineBox h1 { font-size: 1.3em }
}

#returnPage { 
	color: #fff;
	padding: 10px 8px;
	display: block;
	text-align: inherit;
	font-size: 1.2em;
	background-color: transparent;
	border: none;
}
#returnPage.v2 {color:#454545}
#returnPage:hover,
#returnPage:focus {
	color: orange;
}

.isJuridic{
    display: none;
}

.isPhysical{
    display: block;
}