:root {
    font-size: 14px;
}

html,
body {
	background: white;
	font-family: var(--font-family-1);
	font-weight: 300;
	letter-spacing: 0;
	padding: 0;
	margin: 0;
	color: var(--black);
	overflow-x: hidden;
}
html.lock,
body.lock {
	overflow: hidden;
}

/* body {
	margin-top: 94px;
} */
body.bg-lightgrey {
	background-color: #f8f8f8;
}


@media(min-width: 768px) {
	:root {
		font-size: 16px;
    }
    /* body {
        margin-top: 73px;
    } */
}

@media(min-width: 992px) {

	/* body {
		margin-top: 83px;
	} */
}

img {
	-webkit-user-drag: none;
	-khtml-user-drag: none;
	-moz-user-drag: none;
	-o-user-drag: none;
	user-drag: none;
	pointer-events: none;
}


.plus{
    width: 50px;
    height: 50px;
    position: relative;
    display: flex;
	margin-top: 29px;
	transition: var(--transition);
}

.plus:hover{
	transform: rotate(90deg);
}

.plus:after{
    content:"";
    background: var(--bluegreen);
    width: 100%;
    height: 2px;
	position: absolute;
	top: calc(50% - 2px)
}

.plus:before{
    content:"";
    background: var(--bluegreen);
    height: 100%;
    width: 2px;
	position: absolute;
	left: calc(50% - 2px)
}

@media(min-width:768px){
	.plus{
		width: 62px;
		height: 62px;
		margin-top: 39px;
	}
}


a, a:hover, a:focus,
button, button:hover, button:focus {
	transition: all ease-in-out .2s;
	-moz-transition: all ease-in-out .2s;
	-webkit-transition: all ease-in-out .2s;
	text-decoration: none;
	cursor: pointer;
	color: currentColor;
	outline: none;
	box-shadow: none;
}
*:focus {
	outline: none;
	box-shadow: none;
}
*::placeholder, *::-webkit-placeholder {
	color: currentColor;
}
*:-ms-input-placeholder {
	color: currentColor;
}


.container,
.container-fluid {
	position: relative;
	width: 100%;
	padding: 0 20px;
}


@media(min-width: 768px) {
	.container.container-sm {
		max-width: 990px; /* 850 + 40 padding */
	}
}

@media(min-width: 1200px) {
	.container.container-full {
		max-width: 1320px; /* Layouts' fullscreen */
	}
	.container {
		max-width: 1064px; /* 1024 + 40 padding */
	}
}


/*************************************/
/********** BUTTONS / LINKS **********/
/*************************************/

.button,
.button:hover,
.button:focus {
	font-family: var(--font-family-1);
	display: inline-block;
    padding: 20px 30px;
	font-size: 12px;
	font-weight: 600;
    color: var(--white);
	letter-spacing: .75px;
	line-height: 1;
	text-transform: uppercase;
    position: relative;
    border: none;
}
.button::before {
	content: "";
	position: absolute;
	top: -2px;bottom: -2px;
	left: -2px;right: -2px;
    background-color: var(--bluegreen);
	border: none;
    transition: var(--transition);
    -webkit-transition: var(--transition);
    will-change: transform;
    pointer-events: none;
}
.button:hover::before {
	transform: scale(1.05);
}
.button[disabled] {
	opacity: 0.5;
	pointer-events: none;
}

.button.button-sm,
.button.button-sm:hover,
.button.button-sm:focus {
	padding: 12px 25px;
}

.button.button-white {
	color: var(--bluegreen)
}

.button.button-fill::before {
	background-color: var(--primary);
}

.button.button-white::before{
    background-color: white;
}

.button > span {
	position: relative;
	z-index: 1;
	font-size: inherit !important;
	color: inherit !important;
	font-style: inherit !important;
	will-change: opacity;
}


@media(min-width: 992px) {
    .button,
	.button:hover,
	.button:focus {
		padding: 22px 40px;
        font-size: 15px;
	}

	.button.button-sm,
	.button.button-sm:hover,
	.button.button-sm:focus {
		font-size: 12px;
	}
}


.link,
.link:hover,
.link:focus {
	display: inline-block;
	position: relative;
	font-family: var(--font-family-1);
	font-size: 11px;
	font-weight: 500;
	letter-spacing: normal;
	padding-right: 20px;
	color: #1e99b8;
	text-transform: uppercase;
}
.link.link-reverse {
	padding-right: 0;
	padding-left: 30px;
}
.link::after {
	content: "";
	width: 7px;
  	height: 15px;
	position: absolute;
	top: 0;bottom: 0;
	right: 0;
	margin: auto;
	background-color: #1e99b8;
    -webkit-mask-image: url(/assets/img/arrow-lang.svg);
    mask-image: url(/assets/img/arrow-lang.svg);
    -webkit-mask-position: center;
    -webkit-mask-repeat: no-repeat;
}
.link.link-reverse::after {
	right: auto;
	left: 0;
	transform: rotate(180deg);
}
.link:hover::after {
	background-position: 16px;
}

h3{
	font-family: var(--font-family-2);
	font-size: 20px;
	font-weight: 500;
	line-height: 1.08;
	letter-spacing: 0.2px;
	color: var(--bluegreen);
	text-transform: uppercase;
}

h3:after{
	content:"";
	width: 73px;
	height: 3px;
	background: var(--bluegreen);
	display: block;
	margin: 15px 0 28px;
}
@media(min-width:768px){
	h3{
		font-size: 26px;
		line-height: 1.2;
		letter-spacing: 0.26px;
	}

	h3:after{
		width: 127px;
		margin: 20px 0 34px;
	}
}


.button.d-sm-block{
	width: 100%;
	text-align: center;
	padding: 15px 30px;
	position: relative;
	top: 0;
	z-index: 99;
}

.button.d-sm-block + header{top: 50px;}
.button.d-sm-block + header.move{top: 0px;}

@media(min-width:768px){
	.button.d-sm-block{
		position: absolute;
	}
}

header{
	padding: 22px 20px;
	z-index: 5;
	position: fixed;
	width: 100%;
	background: var(--white);
	transition: var(--transition);
}

header.move{
	position: fixed;
	top: 0;
	width: 100%;
}

header .upper,
header .upper .right{
	display: flex;
	align-items: center;
}

header .upper{
	justify-content: space-between;
}

header .logo{
	display: flex;
	align-items: center;
	font-family: var(--font-family-1);
	font-size: 15px;
	font-weight: normal;
	line-height: 1.73;
	letter-spacing: 0.75px;
	color: #919191;
	text-transform: uppercase;
}
header .logo img{
	width: 66px;
  	height: 66px;
	margin-right: 16px;
	position: absolute;
	top: 5px;
}

header .logo img + div{
	display: none;
	margin-left: 123px;
}

header .phone{
	display: none;
	font-family: var(--font-family-1);
	font-size: 15px;
	font-weight: 500;
	line-height: 1;
	letter-spacing: 0.75px;
	text-align: right;
	transition: var(--transition);
}

header .upper > div .phone + .search-form-desktop{
	margin-left: 24px;
}

header .phone a{
	font-size: 15px;
	font-weight: 500;
	line-height: 1.73;
	color: var(--bluegreen);
}

header .phone a:hover{
	color: var(--grey);
}

header .phone > small{
	display: block;
	font-size: 8px;
	color: #807e7e;
}

header .button,
header .button:hover{
	font-size: 12px;
	font-weight: normal;
	letter-spacing: 0.6px;
	margin-left: 28px;
}

header .button{
	display: none;
	margin-right: 28px;
}

@media(min-width:768px) and (max-width: 768px){
	header{
		padding: 35px 80px;
		top: 0;
		position: fixed
	}

	.button > span {
		font-size: 10px!important;
	}

	.button.d-sm-block + header{top: 0;padding: 22px 80px;}
	header .logo{
		display: flex;
		align-items: center;
		font-family: var(--font-family-1);
		font-size: 15px;
		font-weight: normal;
		line-height: 1.73;
		letter-spacing: 0.75px;
		color: #919191;
		text-transform: uppercase;
	}
	header .logo img{
		width: 107px;
		height: 107px;
		margin-right: 16px;
		position: absolute;
		top: 5px;
	}

	/* header .logo img + div,
	header .phone,
	header .button{
		display: block;
	} */
	header .phone,
	header .button{
		display: block;
		transition: var(--transition);
	}

	.button.d-sm-block + header {
		top: 0;
		padding: 22px 20px;
		transition: var(--transition);
	}

}

header .phone.hide{
	display: none;
	transition: var(--transition);
}

@media(min-width:769px){
	header .logo img + div,
	header .phone,
	header .button{
		display: block;
	}

	.button.d-sm-block + header {
		top: 0;
		padding: 22px 80px;
	}
}

@media(max-width: 1024px) {

	header + section:first-of-type {
		margin-top: 100px;
	}

	.button.d-sm-block + header {
		padding: 22px 20px;
	}

	header .logo img + div {
		transition: max-width 1s ease;
		white-space: nowrap;
		max-width: 50px;
	}
}

@media(min-width: 1025px) {
	.button.d-sm-block + header {
		top: 0;
		padding: 22px 80px;
	}

}

/* header .search{
	position: relative;
	width: 16px;
	height: 16px;
}

header .search::before{
	content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 16px;
    height: 16px;
    background: url(/assets/img/lupe.svg) 0%/contain no-repeat;
}

header .search input{
	pointer-events: none;
	border: 0;
	background: none;
	position: absolute;
	top: 0;
	right: 0;
	width: 0;
	opacity: 0;
}

header .search.on input {
    pointer-events: all;
    opacity: 1;
    outline: 0;
	width: 200px;
    margin-top: 9px;
} */



header .upper > div .search-form-desktop{
	display: none;
}

@media(min-width: 768px) {
	header .upper > div .search-form-desktop{
		margin: 0;
		position: relative;
		display: flex;
		align-items: center;
		height: 100%;
		width: 16px;
		transition: var(--transition);
	}
	header .upper > div .search-form-desktop a{
		position: absolute;
		right: 0;
	}
	header .upper > div .search-form-desktop .search-icon::after {
		content: '';
		display: block;
		background: url(/assets/img/lupe.svg) no-repeat center center;
		width: 16px;
		height: 16px;
		transition: var(--transition);
		opacity: 1;
	}

	header .upper > div .search-form-desktop a:hover .search-icon::after {
		width: 16px;
		height: 16px;
	}

	header .search-form-desktop input {
		position: absolute;
		height: 30px;
		width: 0;
		background: transparent;
		border: none;
		transition: var(--transition);
		opacity: 0;
		color: var(--black);
		font-size: 13px;
		font-weight: 300;
		border-bottom: 1px solid var(--bluegreen);
	}

	header .search-form-desktop.open input {
		width: 240px;
		opacity: 1;
	}
	header .upper > div .search-form-desktop.open{
	width: 240px;
	}

	header .search-form a::after {
		height: 70px;
	}
}

@media(min-width: 1024px) {
	header .upper.transparent > div .lupe::after {
        content: normal;
    }

	header .logo img {
		width: 107px;
		height: 107px;
		margin-right: 16px;
		position: absolute;
		top: 5px;
	}

    header .upper.transparent > div .search-form-desktop .search-icon::after {
        content: '';
        display: block;
        background: url('/assets/img/search.svg') no-repeat center center;
        width: 20px;
        height: 20px;
        transition: var(--transition-long);
        opacity: 1;
    }


    header .upper.transparent > div .lupe:hover::after {
        content: normal;
    }

    header .upper.transparent > div .search-form-desktop a:hover .search-icon::after {
        opacity: 0.7;
        transform: scale(0.9);
        transition: var(--transition-long);
        background: url('/assets/img/search.svg') no-repeat center center;
    }

}





header .lang {
	margin-left: auto;
	padding-right: 18px;
	position: relative;
	height: 100%;
	margin-left: 20px;
}

header .lang > div {
	position: relative;
	height: 100%;
	display: flex;
	align-items: center;
	pointer-events: all;
}

header .lang > div p,
header .lang ul li {
	font-family: var(--font-family-1);
	font-size: 11px;
	font-weight: normal;
	line-height: normal;
	letter-spacing: 2.09px;
	text-align: left;
	color: #000;
	margin-bottom: 0;
	transition: var(--transition);
	text-transform: uppercase;
}

header .lang > div p {
	pointer-events: none;
}

header .lang ul {
	margin: 0;
	list-style: none;
	overflow: hidden;
	position: absolute;
	top: 100%;
	transition: var(--transition);
	z-index: 2;
	background: var(--bluegreen);
	padding: 10px 15px 10px 10px;
	left: -10px;
	opacity: 0;
	margin-top: 5px;
}


header .lang:hover ul{
	opacity: 1;
}

header .lang.open ul {
	background-color: #000;
}

header .lang ul li a {
	display: block;
	color: white;
	transition: var(--transition);
}

header .lang span {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 0;
	transition: var(--transition);
	cursor: pointer;
	padding: 5px;
	display: inline-block;
	z-index: 1;
}

header .lang span::before {
	content: "";
	background-color: var(--black);
    -webkit-mask-image: url(/assets/img/arrow-lang.svg);
    mask-image: url(/assets/img/arrow-lang.svg);
    -webkit-mask-position: center;
    -webkit-mask-repeat: no-repeat;
    height: 7px;
  	width: 4px;
	display: block;
	transform: rotate(90deg);
}

header .upper > div > a.menu-toggle,
header .upper > div > span.menu-toggle {
    flex: 0;
    position: relative;
    padding: 0;
    padding-left: 31px;
    background-color: transparent;
    font-size: 0;
	color: #b5b5b5;
	margin-left: 30px;
    transition: var(--transition);
    z-index: 2;
	pointer-events: all;
}
header .upper > div > a.menu-toggle span,
header .upper > div > span.menu-toggle span {
    position: absolute;
    top: 0;bottom: 0;
    right: 0;
    margin: auto;
    width: 29px;
    height: 3px;
	border-radius: 3px;
    background-color: #000;
	transition: var(--transition);
    -webkit-transition: var(--transition);
    z-index: 3;
}
header .upper > div > a.menu-toggle span:first-child,
header .upper > div > span.menu-toggle span:first-child {
    transform: translateY(-4px);
}

header .upper > div > a.menu-toggle span:last-child,
header .upper > div > span.menu-toggle span:last-child {
    transform: translateY(6px);
	width: 20px;
}

header .upper > div > a.menu-toggle:hover span:last-child,
header .upper > div > span.menu-toggle:hover span:last-child {
	width: 29px;
}

header.open > div:not(.menu) a.menu-toggle span:first-child,
header.open > div:not(.menu) span.menu-toggle span:first-child {
	transform: rotate(45deg);
}
header.open > div:not(.menu) a.menu-toggle span:last-child,
header.open > div:not(.menu) span.menu-toggle span:last-child {
	transform: rotate(-45deg);
	width: 29px;
}

header .menu {
    position: fixed;
    height: 100vh;
    width: 570px;
    max-width: 100%;
    padding: 40px 25px 0;
    padding-top: 60px;
    background-color: white;
    top: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    transform: translateX(570px);
    transition: var(--transition);
    -webkit-transition: var(--transition);
    overflow: auto;
    z-index: 1;
}

header.open .menu {
	transform: translateX(0);
}

header.open::before {
    opacity: .75;
    pointer-events: auto;
}
header::before {
    content: "";
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--black);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    -webkit-transition: var(--transition);
	z-index: 1;
}

header + section:first-of-type{
	margin-top: 66px;
}


@media(min-width:768px){
	header .menu {
		padding: 0;
	}

	header + section:first-of-type{
		margin-top: 100px;
	}
}

@media (min-width: 1200px) {
	header .upper{
		justify-content: space-between;
	}

	header .lang {
		margin-left: 26px;
	}

	header .lang.open ul {
		background-color: rgba(0, 0, 0, 0.3);
	}

	header .lang ul li:hover {
		color: rgba(255, 255, 255, 0.5);
	}

	header.open .lang > div p,
	header.open .lang ul li {
		color: #000;
	}

	header.open .lang ul {
		top: 60%;
	}

	header.open .lang.open ul {
		background-color: rgba(0, 0, 0, 0.3);
	}

	header.open .lang.open ul li {
		color: #fff;
	}

	header.open .lang span::before {
		border-color: #000 var(--transparent) var(--transparent) var(--transparent);
	}

	header .upper > div > span.menu-toggle {
		height: 30px;
		cursor: pointer;
	}

	header .menu {
		margin-top: 0;
		flex-direction: row;
	}
}



/********** MENU **********/

header .menu ul {
	padding: 0;
	margin: 0;
	list-style: none;
	margin: -10px 0;
}
header .menu > ul {
	margin-top: 60px;
	flex: 1;
	max-height: calc(100% - 88px);
	overflow: auto;
	padding-right: 0px;
}
header .menu ul li {
    font-size: 0;
    padding: 5px 30px 6px 0;
	position: relative;
}

header .menu ul li.sub span{
	width: 18px;
  	height: 18px;
	display: flex;
	position: absolute;
	right: 0;
	top: 10px;
}

header .menu ul li.sub span:before{
	content:"";
	width: 18px;
	height: 3px;
	background: var(--black);
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	transition: var(--transition);
}



header .menu ul ul li.sub span{
	/* width: 11px;
  	height: 11px;
	top: 11px; */
}

header .menu ul ul li.sub span:before{
	width: 11px;
	height: 3px;
	top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
}

header .menu ul li.sub:not(.opened) span:after{
	content:"";
	height: 18px;
	width: 3px;
	background: var(--black);
	position: absolute;
	left: 50%;
	top: 0;
	transform: translateX(-50%);
	transition: var(--transition);
}

header .menu ul ul li.sub:not(.opened) span:after{
	height: 11px;
	width: 3px;
	top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
}

header .menu ul li.sub > h4 {
	padding-right: 25px;
    position: relative;
    transition: var(--transition)
}


header .menu ul li.sub ul {
	margin: 0;
	overflow: hidden;
	max-height: none;
    transition: var(--transition);
	margin-left: 20px;
}
header .menu ul li.sub ul li {
	padding:4px 0;
}
header .menu ul li.sub ul li:first-of-type {
    margin-top: 12px;
}

header .menu ul li a {
	font-family: var(--font-family-2);
	font-size: 18px;
	font-weight: 500;
	letter-spacing: normal;
	color: var(--black);
	margin: 0;
	display: inline-block;
}


header .menu ul li.sub ul li a {
	font-family: var(--font-family-2);
	font-size: 15px;
	font-weight: 300;
	letter-spacing: normal;
}

header .menu > ul > li.active > a,
header .menu ul li.sub ul li.active > a,
header .menu ul li.sub > h4 a,
header .menu ul li.sub.opened a,
header .menu ul li.active > h4 a,
header .menu ul li > a:hover,
header .menu ul li.sub.opened ul a {
    color: var(--bluegreen);
}

header .menu ul li.sub.opened ul a{
	color: var(--black);
}
header .menu ul ul li.active > h5 a,
header .menu ul ul li > h5 a:hover {
	color: var(--black);
}

@supports(mix-blend-mode: multiply) {
    header .menu ul li.sub > h4::after {
        filter: brightness(0%);
    }

    header .menu ul li.sub.open > h4::after,
    header .menu ul li.active > h4,
    header .menu ul li > h4:hover::after {
        filter: brightness(100%);
    }
}


header .menu > ul > li.sub.active > span:before,
header .menu > ul > li.sub.active > span:after,
header .menu ul li.sub ul li.active > span:before,
header .menu ul li.sub ul li.active > span:after,
header .menu .sub.opened > span:before,
header .menu ul li.sub a:hover + span:before,
header .menu ul li.sub a:hover + span:after{
	background: var(--bluegreen);
}

header .menu .sub.open > a,
header .menu li > a:hover {
	color: var(--bluegreen);
}

@media(min-width:768px){
	header .menu > ul {
		margin-top: 30px;
		padding-right: 18px;
	}
	header .menu ul li {
		padding: 7px 0;
	}
	header .menu ul li a {
		font-size: 26px;
		-webkit-font-smoothing: antialiased;
  		-moz-osx-font-smoothing: grayscale;
	}
	header .menu ul li.sub ul li {
		padding:8px 0;
	}
	header .menu ul li.sub ul li a {
		font-size: 21.5px;
	}

	header .menu ul li.sub span{
		width: 18px;
		height: 18px;
		top: 32px;
		cursor: pointer;
	}

	header .menu ul ul li.sub span{
		top: 15px;
	}
}

/********** SOCIAL AND LANGUAGE **********/

header .menu > div:last-of-type {
	justify-self: flex-end;
	margin-top: auto;
	padding-top: 40px;
}

header .menu > div:last-of-type span {
	font-size: .875rem;
	font-weight: 500;
	color: var(--black);
}
header .menu > div:last-of-type span a.active, header .menu > div:last-of-type span a:hover {
	color: var(--primary);
}

header .menu > div:last-of-type .social {
	float: right;
	font-size: 0;
}
header .menu > div:last-of-type .social a {
	font-size: 0;
	padding: 0 15px;
}
header .menu > div:last-of-type .social a i {
	font-size: 1.375rem;
	color: var(--black);
	transition: var(--transition);
    -webkit-transition: var(--transition);
}
header .menu > div:last-of-type .social a:hover i {
	color: var(--primary);
}


@media(min-width: 768px) {
    header .menu {
		padding: 50px 66px 50px 60px;
		/* padding: 50px 30px 50px 50px; */
        display: flex;
    }
    header .menu .form {
		margin-right: 75px;
    }

    header .menu > ul {
		margin-top: 70px;
    }
    header .menu ul li {
		/* padding: 10px 0; */
		padding: 20px 0px 0 0;
    }
    header .menu ul li.sub ul li:first-of-type {
		margin-top: 18px;
	}

	header .menu > ul > li > a{
		margin-right: 30px;
	}
}
header .menu ul li.sub ul {
	/* max-height: 0; */
	display: none;
}
header .menu ul li.sub ul.opened {
	display: block;
  }
header .menu ul li.sub.active ul,
header .menu ul li.sub.opened ul {
	max-height: none;
}
@media(min-width: 992px) {
    header .menu ul li.sub > h4 a {
        color: inherit;
    }
	header .menu ul li.sub.open > h4 a {
		color: var(--primary);
    }

    header .menu ul li.sub > h4::after {
        transform: none;
    }
    header .menu ul li.sub.open > h4::after,
    header .menu ul li.sub.active > h4::after {
        transform: rotate(180deg);
    }
}

footer{
	background: var(--lightgrey2-bg);
	padding: 40px 0 35px;
}

footer hr{
	border: none;
	width: 100%;
	height: 1px;
	background: #c2c2c2;
	display: block;
	opacity: .18;
	margin: 0;
	margin-bottom: 40px;
}

footer > .container:first-of-type{
	padding-bottom: 40px;
}

footer > .container:first-of-type .row{
	justify-content: space-between;
}

footer > .container{
	text-align: center;
}

footer h4{
	font-family: var(--font-family-2);
	font-size: 14px;
	font-weight: 500;
	line-height: 1.63;
	letter-spacing: 0.7px;
	color: var(--bluegreen);
	text-transform: uppercase;
	margin-bottom: 15px;
}

footer h4 > small{
	display: block;
	font-size: 14px;
  	letter-spacing: 0.7px;
}

footer p{
	font-size: 12px !important;
	letter-spacing: 0.7px;
}

footer p strong{
	font-weight: 500;
}


footer p a:hover{
	color: var(--bluegreen);
}

footer > .container .row > div{
	margin-bottom: 25px;
}

footer > .container .row > div.social-networks{
	text-align: center;
	margin-bottom: 0;
}

footer .social-networks ul{
	padding: 0;
}

footer .social-networks i{
	color: var(--bluegreen);
	font-size: 27px;
	transition: var(--transition);
}

footer .social-networks a{
	margin-left: 7px;
	margin-right: 7px;
}

footer .social-networks a:hover i{
	color: var(--grey);
}

footer .credito p{
	font-size: 10px !important;
	line-height: 2.6;
	letter-spacing: 0.5px;
	text-transform: uppercase;
}

footer .credito .col-md-6:last-of-type{
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

footer .credito .col-md-6:last-of-type img{
	width: 126px;
  	height: 73px;
}
footer .credito .col-md-6:last-of-type p{
	text-align: center;
	font-size: 12px;
	line-height: 1.25;
  	letter-spacing: 0.6px;
	text-transform: none;
	margin-top: 15px;
}

footer > .container.credito .row > div:first-of-type,
footer .credito .col-md-6:last-of-type p{
	order: 2;
}

footer .credito .col-md-6:last-of-type{
	flex-direction: column;
}

footer .credito a:hover{
	color:var(--bluegreen)
}

@media(min-width: 768px) {
	footer{
		background: var(--lightgrey2-bg);
		padding: 90px 0 55px;
	}
	footer > .container{
		text-align: left;
	}
	footer h4{
		font-size: 16px;
		line-height: 1.63;
		letter-spacing: 0.8px;
	}
	footer p{
		font-size: 14px;
		letter-spacing: 0.7px;
	}

	footer > .container .row > div{
		margin-bottom: 0px;
	}

	footer .social-networks{
		text-align: right;
	}

	
	footer .social-networks a{
		margin-left: 14px;
		margin-right: 0;
	}


	footer > .container.credito .row > div:first-of-type,
	footer .credito .col-md-6:last-of-type p{
		order:inherit
	}

	footer .credito .col-md-6:last-of-type{
		flex-direction: row;
	}

	footer .credito .col-md-6:last-of-type p{
		text-align: center;
		font-size: 12px;
		line-height: 1.25;
		letter-spacing: 0.6px;
		max-width: 179px;
		margin-right: 30px;
		margin-top: 0px;
		margin-bottom: 0;
	}
}

.form-l{
	background: var(--bluegreen);
	height: 100vh;
	width: 355px;
	padding: 35px;
	display: flex;
	align-items: center;
	position: fixed;
	top: 0;
	right: 0;
	transition: var(--transition);
	transform: translateX(370px);
	z-index: 9999;
}

.form-l .close {
    position: absolute;
    top: 25px;
    right: 22px;
    width: 34px;
    height: 34px;
}

.form-l .close::before, .form-l .close::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: -6px;
    margin: auto;
    width: 45px;
    height: 2px;
    background-color: #44a7b7;
    border-radius: 1px;
    transform: rotate(45deg);
}

.form-l .close::after {
    transform: rotate(-45deg);
}

.form-l > div{
	width: 100%;
}

.form-l h2{
	font-family: var(--font-family-2);
	font-size: 25.5px;
	font-weight: 300;
	line-height: normal;
	letter-spacing: -0.64px;
	text-align: left;
	color: var(--white);
	text-transform: uppercase;
}
.form-l h2 + p{
	font-family: var(--font-family-1);
	font-size: 12px;
	font-weight: 300;
	letter-spacing: normal;
	text-align: left;
	color: var(--white);
}

.form-l h2 + p strong{
	font-weight: 500;
}

.form-l .form{
	width: 100%;
	margin-top: 47px;
}

.form-l .form input,
.form-l .form textarea{
	background-color: #44a7b7;
	border: none;
	padding: 22px 20px;
	width: 100%;
	font-family: var(--font-family-2);
	font-size: 10px;
	font-weight: normal;
	letter-spacing: normal;
	color: var(--white);
	text-transform: uppercase;
	margin-bottom: 20px;
}

.form-l .form .checkbox-wrapper{
	display: flex;
	align-items: flex-start;
}

.form-l .form input.not-filled,
.form-l .form textarea.not-filled {
    border: 1px solid var(--warning);
	margin-bottom: 0px;
}

.form-l .form input.not-filled + p,
.form-l .form textarea.not-filled + p{
	margin-bottom: 15px;
}

.form-l .form .warning {
    font-size: 12px;
    font-weight: 400;
    color: white;
    height: 20px;
    margin: 0;
    margin-top: 7px;
    line-height: 20px;
    padding-left: 28px;
    position: relative;
}
.form-l .form .warning::before {
    content: "!";
    position: absolute;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: white;
    border-radius: 100%;
    font-size: 17px;
    font-weight: 500;
    color: var(--warning);
    text-align: center;
}

.form-l .form input[type='checkbox'] {
	display: none;
}
.form-l .form input[type='checkbox'] + label {
	height: 23px;
	width: 23px;
	background-color: #44a7b7;
	cursor: pointer;
	position: relative;
	transition: var(--transition);
	margin-top: -4px;
}
.form-l .form input[type='checkbox'].not-filled + label {
	border: 1px solid var(--warning);
}
.form-l .form input[type='checkbox'] + label::before {
	content: "";
	font-size: 14px;
    position: absolute;
	top: 1px;
    left: 5px;
    color: var(--white);
    background-color: var(--white);
    -webkit-mask-image: url(/assets/img/check-white.svg);
    mask-image: url(/assets/img/check-white.svg);
    -webkit-mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: 100%;
    transition: var(--transition);
    height: 19px;
    width: 13px;
	opacity: 0;

}
.form-l .form input[type='checkbox']:checked + label::before {
	opacity: 1;
}
.form-l .form input[type='checkbox'] + label + label {
	font-family: var(--font-family-1);
	font-size: 10px;
	font-weight: 500;
	line-height: 1.8;
	letter-spacing: 0.25px;
	text-align: left;
	color: var(--white);
	margin-left: 10px;
}

.form-l .form input[type='checkbox'] + label + label a{
	border-bottom: 1px dotted currentColor;
}

.form-l .form input[type='checkbox'] + label + label a:hover{
	border-bottom: 1px dotted transparent;
}

.form .btnsend{
	margin-top: 40px;
}
.form-l .form .button{
	padding: 22px;
	width: 100%;
	text-align: center;
}

.stick-l{
	display: none;
}

@media(min-width: 768px) {
	.stick-l{
		display: block;
		background-color: var(--bluegreen);
		padding: 20px 18px 20px 15px;
		font-family: var(--font-family-2);
		font-size: 14px;
		font-weight: 500;
		line-height: normal;
		letter-spacing: normal;
		text-align: left;
		color: var(--white);
		position: fixed;
		text-transform: uppercase;
		right: 0;
		top: 25%;
		transform: rotate(180deg);
		writing-mode: vertical-lr;
		cursor: pointer;
		transition: var(--transition);
		z-index: 99;
	}
}

.lock .stick-l{
	z-index: 1;
}

.stick-l::after{
	content: "";
	background-color: var(--white);
    -webkit-mask-image: url(/assets/img/arrow-slide.svg);
    mask-image: url(/assets/img/arrow-slide.svg);
    -webkit-mask-position: center;
    -webkit-mask-repeat: no-repeat;
    width: 8px;
  	height: 15px;
	pointer-events: none;
	display: inline-block;
	margin-top: 10px;
	transform: rotate(180deg);
}

.stick-l:hover{
	padding: 20px 18px 20px 20px;
}

.stick-l:hover + .form-l{
	transform: translateX(350px);
}

.form-l.active{
	transform: translateX(0);
}

.consulta-online{
	margin-bottom: 150px;
}

.consulta-online > .container{
	margin-top: 100px;
}

.consulta-online .inputsRadio input{
	display: none;
}

.consulta-online label{
	margin-bottom: 0;
}

.consulta-online .options-sex label{
	width: 100%;
	height: 150px;
	border: 1.5px solid #d7d7d7;
	display: flex;
	align-items: center;
	justify-content: center;
	pointer-events: all;
	cursor: pointer;
	position: relative;
}

.consulta-online .options-sex input + label:before,
.consulta-online .options-img input + label:before{
	content:"";
	border:1.5px solid transparent;
	transform: scaleX(1.03) scaleY(1.06);
    width: 100%;
    height: 100%;
    position: absolute;
	transition: var(--transition);
}

.consulta-online .options-sex input:checked + label:before,
.consulta-online .options-img input:checked + label:before{
	border:1.5px solid var(--bluegreen);
}

.consulta-online .options-sex label > img{
	width: 70px;
  	height: auto;
	pointer-events: none;
}

.consulta-online .options-sex > div:last-of-type label > img{
	width: 85px;
  	height: auto;
	pointer-events: none;
}

.consulta-online .options-sex label + p,
.consulta-online .options-img label + p{
	font-family: var(--font-family-2);
	font-size: 12px;
	font-weight: 500;
	line-height: 1.5;
	letter-spacing: normal;
	color: #000;
	text-align: center;
	text-transform: uppercase;
	margin-top: 20px;
}



.consulta-online .title{
	font-family: var(--font-family-2);
	font-size: 20px;
	font-weight: 500;
	line-height: 1.27;
	letter-spacing: 0.22px;
	text-align: left;
	color: var(--bluegreen);
}

.consulta-online .title:after {
	content:"";
	width: 73px;
	height: 3px;
	background: var(--bluegreen);
	display: block;
	margin: 15px 0 28px;
}

.consulta-online .options-img{
	display: flex;
	flex-wrap: wrap;
	margin: 0 -10px;
}

.consulta-online .types .options-img label{
	border: solid 1.5px #d7d7d7;
}

.consulta-online .options-img label{
	cursor: pointer;
	position: relative;
}

.consulta-online .options-img input.not-filled + label:before{
	border:1px solid var(--warning);
	transform: scaleX(1.09) scaleY(1.08);
}

.consulta-online .options-img input:checked + label:before{
	border:2px solid var(--bluegreen);
	transform: scaleX(1.09) scaleY(1.08);
}



.consulta-online .options input.not-filled + label{
	border:2px solid var(--warning);
}

.consulta-online .options-img > div{
	padding: 10px;
	flex: 0 0 50%;
}

.consulta-online .options .inputsRadio{
	display: flex;
	flex-wrap: wrap;
	margin: 0 -12px;
}

.consulta-online .options .inputsRadio > div{
	border: 1.5px solid #d7d7d7;
	display: flex;
	align-items: center;
	padding: 12px 13px;
	margin: 0 12px 19px;
}

.consulta-online .container > div{
	margin-bottom: 40px;
}

@media(min-width:768px){
	.consulta-online .title{
		font-size: 22px;
		line-height: 1.27;
		letter-spacing: 0.22px;
	}

	.consulta-online .title:after {
		content: "";
		width: 127px;
		height: 3px;
		background: var(--bluegreen);
		display: block;
		margin: 20px 0 34px;
	}
}

@media(min-width:992px){
	.consulta-online .options .inputsRadio > div{
		width: calc(50% - 24px);
	}
	.consulta-online .container > div{
		margin-bottom: 80px;
	}

	.consulta-online .container > div:last-of-type{
		margin-bottom: 30px;
	}
}


.consulta-online .options label + label {
	font-family: var(--font-family-1);
	font-size: 11px;
	font-weight: normal;
	letter-spacing: 0.6px;
	color: #000;
	text-transform: uppercase;
	pointer-events: all;
	cursor: pointer;
	transition: var(--transition);
}

.consulta-online .options input + label{
	width: 22px;
	height: 22px;
	border: 2px solid var(--bluegreen);
	border-radius: 50%;
	margin-right: 12px;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}

.consulta-online .options input + label:before{
	content:"";
	width: 12px;
	height: 12px;
	background: var(--bluegreen);
	border-radius: 50%;
	display: block;
	opacity: 0;
	transition: var(--transition);
}

@media(min-width:768px){
	.consulta-online .options-sex label{
		height: 230px;
	}
	.consulta-online .options-sex label > img{
		width: 91px;
		height: 72px;
	}

	.consulta-online .options-sex > div:last-of-type label > img{
		width: 96px;
		height: 105px;
	}
	.consulta-online .options-img{
		margin: 0 -30px;
	}
	.consulta-online .options-img > div {
		padding: 15px 30px;
		flex: inherit;
	}

	.consulta-online .options .inputsRadio > div{
		padding: 15px 23px;
		margin: 0 12px 19px;
	}

	.consulta-online .options label + label{
		font-size: 12px;
		letter-spacing: 0.6px;
	}

	.consulta-online .options input + label{
		font-size: 12px;
		width: 21px;
		height: 21px;
		border: 2px solid var(--bluegreen);
		border-radius: 50%;
		margin-right: 17px;
	}
	.consulta-online .options input + label:before{
		width: 11px;
		height: 11px;
	}
}

.consulta-online .options input:checked + label:before{
	opacity: 1;
}

.consulta-online .options input.not-filled:checked + label{
	border: 2px solid var(--bluegreen);
}

.consulta-online .options input + label:hover + label,
.consulta-online .options input + label + label:hover{
	color: var(--bluegreen);
}

.consulta-online .aceito{
	font-family: var(--font-family-1);
	font-size: 12px;
	font-weight: normal;
	letter-spacing: 0.6px;
	text-align: left;
	color: #000;
}

.consulta-online .aceito a{
	font-weight: 500;
}

.options.option-m,
.types.option-m{
	display: none;
}
.options.option-m.open,
.types.option-m.open{
	display: block;
}


.content .banner {
    padding: 25px 0 20px;
    position: relative;
    z-index: 1;
}

.content .banner .container{
	text-align: center;
	color:white;
	font-family: var(--font-family-2);
}



.content .banner ul {
    padding: 0;
    margin-bottom: 15px;
    list-style: none;
    font-size: 0;
}

.content .banner ul li {
    display: inline-block;
	font-size: 12px;
	font-weight: 300;
	line-height: 2;
	letter-spacing: -0.3px;
	color: var(--white);
}

.content .banner ul li::after{
	content: "/";
	font-size: 12px;
	font-weight: 300;
	line-height: 2;
	letter-spacing: -0.3px;
	color: var(--white);
	margin: 0 4px;
}

.content .banner.withoutbanner{
	background-color: #f7f6f6;
}

.content .banner.withoutbanner .container,
.content .banner.withoutbanner ul li,
.content .banner.withoutbanner ul li::after{
	color: var(--black);
}
.content .banner ul li:last-of-type::after{
	display: none;
}

.content .banner h1{
	font-size: 32px;
	font-weight: bold;
	line-height: 1.2;
	letter-spacing: -0.9px;
	-webkit-font-smoothing: antialiased;
  	-moz-osx-font-smoothing: grayscale;
}

/* .content .banner{
	margin-bottom: 50px;
} */
@media (min-width: 768px){
	.content .banner h1{
		font-size: 40px;
		line-height: 1.17;
		letter-spacing: -0.9px;
	}

}
@media (min-width: 992px){
	.content .banner {
    padding: 40px 0;
    position: relative;
    z-index: 1;
}
	.content .banner {
		background: none;
		padding: 0;
		min-height: 264px;
		padding: 0;
		display: flex;
    	align-items: center;
	}

	.content .banner ul li {
		font-size: .75rem;
	}

	/* .content .banner{
		margin-bottom: 100px;
	} */
}

.content .banner .img {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    overflow: hidden;
	
}

.content .banner .img::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    mix-blend-mode: multiply;
    background: #acacac;
}
@supports (mix-blend-mode: multiply){
	.content .banner .img img {
		height: 100%;
		width: 100%;
		object-fit: cover;
		position: static;
		transform: none;
	}
}

@media (min-width: 1024px){
	.blog .template > .container-full .filter.form > .row{
		max-width: 1024px;
		margin: 0 auto;
	}
}


.blog .filter-btn-container {
    max-width: 111.5px;
    margin-left: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15.5px;
}

.filter-btn-container a {
    width: 31px;
}

.template .filter-btn-container p {
    font-size: 10px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: 3.8px;
    text-align: left;
    color: #0f0f0f;
    text-transform: uppercase;
    margin: 30px 0;
}

.filter-btn-container a > img {
    width: 100%;
    height: 100%;
}

.blog .content .template .filter-container .filter-close {
    display: block;
    position: absolute;
    top: 30px;
    right: 30px;
}

.blog .content .template .filter-container .filter-close::before {
    content: "";
    pointer-events: all;
    cursor: pointer;
    border: none;
    position: absolute;
    top: 0;
	left: auto;
    bottom: auto;
    right: 0;
    margin: auto;
    background: url(/img/cross.svg) no-repeat;
	background-size: cover;
    width: 20px;
    height: 20px;
    transition: var(--transition);
    z-index: 1;
    transform: rotate(0deg);
	opacity: 1;
}

@media (min-width: 992px){
	.blog .filter-btn-container {
		opacity: 0;
		display: none;
	}
}

.blog .content .template .filter-container {
    background: #f8f8f6;
    padding: 5px 40px;
    margin: 0px 0 60px;
    position: fixed;
    top: 0;
    z-index: 1;
    width: 100vw;
	max-width: 0;
    height: 100vh;
    transform: translateX(100%);
    bottom: 0;
    right: 0;
	display: flex;
    align-items: center;
    justify-content: center;
	transition: var(--transition);
}



.blog .content .template .filter-container.open{
	transform: translateX(0);
	max-width: inherit;
}

.blog .content .template .filter-container .row > div{
	margin-bottom: 15px;
}

.blog .content .template .filter-container .custom-select {
    height: auto;
    padding: 0;
    background: initial;
    background-size: initial;
    border: 0;
    border-radius: 0;
}

.blog .content .template .filter-container .custom-select .placeholder {
    font-family: var(--font-family-1);
	font-size: 12px;
	font-weight: 300;
	line-height: 1.83;
	letter-spacing: normal;
	text-align: left;
	color: #6b6a6a;
    background-color: white;
    border: none;
    padding-left: 16px;
    padding-right: 16px;
    cursor: pointer;
}



.custom-select.has-reset.is-selected .placeholder > div.reset {
    top: 0;
    pointer-events: auto;
}



.blog .content .template .filter-container .custom-select.is-selected .placeholder {
    color: var(--bluegreen);
	font-weight: 500;
	pointer-events: none;
}

.blog .content .template .filter-container .custom-select .placeholder::before {
    right: 13px;
    background-color: var(--bluegreen);
    -webkit-mask-image: url(/assets/img/arrow-lang.svg);
    mask-image: url(/assets/img/arrow-lang.svg);
    -webkit-mask-position: center;
    -webkit-mask-repeat: no-repeat;
    height: 10px;
  	width: 5px;
	display: block;
	transform: rotate(90deg);
    transition: var(--transition);
}

.blog .content .template .filter-container .custom-select.open .placeholder::before {
    transform: rotate(270deg);
    top: 1px;
}

.blog .content .template .filter-container .custom-select.is-selected .placeholder::before {
    opacity: 0;
}

.blog .content .template .filter-container .custom-select .reset::after {
    content: "";
    position: absolute;
    top: -2px;
    bottom: 0;
    right: 13px;
    margin: auto;
    width: 12px;
    height: 12px;
    pointer-events: none;
    opacity: 0;
	background-color: var(--bluegreen);
    -webkit-mask-image: url(/img/cross.svg);
    mask-image: url(/img/cross.svg);
    -webkit-mask-position: center;
    -webkit-mask-repeat: no-repeat;
}

.blog .content .template .filter-container .custom-select.is-selected .reset::after {
    opacity: 1;
	pointer-events: all;
}

.blog .content .template .filter-container .custom-select .options-wrapper {
    border: none;
}

.blog .content .template .filter-container .custom-select .options-wrapper .options div {
	font-family: var(--font-family-1);
    color: #6b6a6a;
    font-size: 12px;
    padding: 2px 20px;
}

.blog .content .template .filter-container input {
    background: #fff;
    width: 100%;
    font-family: var(--font-family-1);
    font-size: 12px;
    font-weight: normal;
    line-height: normal;
    letter-spacing: normal;
    text-align: left;
    color: #404040;
    padding: 18px 20px;
    border: none;
}

.blog .content .template .filter-container input:focus-visible {
    outline: 0
}

.blog .content .template .filter-container a {
    position: absolute;
    height: 49px;
    width: 64px;
    top: 0;
    right: 10px;
    font-size: 0;
    cursor: pointer;
}

.blog .content .template .filter-container a::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 15px;
    height: 15px;
	background-color: var(--bluegreen);
    -webkit-mask-image: url(/assets/img/lupe2.svg);
    mask-image: url(/assets/img/lupe2.svg);
    -webkit-mask-position: center;
    -webkit-mask-repeat: no-repeat;
}



@media(min-width:768px){
	.blog .content .template .filter-container {
		padding: 5px 40px;
		margin: 0px 0 60px;
		padding: 5px 40px;
		margin: 0px 0 60px;
		position: relative;
		top: 0;
		width: auto;
		height: auto;
		transform: none;
		display: block;
		align-items: inherit;
		justify-content: inherit;
		max-width: inherit;
	}
	.blog .content .template .filter-container .row > div{
		margin-bottom: 0;
	}

	.blog .content .template .filter-container a {
		top: 17px;
	}

	.blog .content .template .filter-container .filter-close{
		display: none;
	}
}

.listing-blog .items{
	margin-left: -34px;
	margin-right: -34px;
}

.listing-blog .items > div {
    margin-bottom: 80px;
	padding-right: 34px;
    padding-left: 34px;
}

.listing-blog .details .mid,
.content .banner.withoutbanner h1 + .mid {
    font-family: var(--font-family-1);
    font-size: 12px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.38;
    letter-spacing: normal;
	margin-top: 20px;
	margin-bottom: 10px;
    text-transform: capitalize;
    color: #bab9b9;
	display: flex;
	align-items: center;
}
.content .banner.withoutbanner h1 + .mid{
	justify-content: center;
}

.listing-blog .details .mid a,
.content .banner.withoutbanner h1 + .mid a {
    margin-left: 15px;
    color: var(--bluegreen);
    text-transform: uppercase;
}

.listing-blog .details .mid a:hover,
.content .banner.withoutbanner h1 + .mid a:hover {
    color: var(--black);
}



.listing-blog .items > div:last-child {
    margin-bottom: 0;
}

.listing-blog .blog-thumb {
    display: block;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
}

.listing-blog .blog-thumb img {
    display: block;
    transition: var(--transition);
	width: 100%;
    height: 100%;
}

.listing-blog .blog-thumb:hover img {
    transform: scale(1.03);
}

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

.listing-blog .details .title {
	font-size: 30px;
	font-weight: bold;
	line-height: 1.2;
	letter-spacing: normal;
	color: #1b1b1b;
    transition: var(--transition);
    font-family: var(--font-family-2);
	margin: 0;
}

.content .template .listing-blog .details p {
    font-family: var(--font-family-1);
    font-size: 15px;
    font-weight: normal;
    color: #807e7e;
    margin-top: 12px;
    margin-bottom: 32px;
}

.listing-blog .details .title:hover {
    color: var(--bluegreen);
}

@media (min-width: 992px){
	.content .template .listing.listing-blog {
		margin-bottom: 100px !important;
	}

	.content .template .listing-blog .details p {
		font-size: 16px;
	}
}
.content.article .withoutbanner + .template-module.mt-0 div > img{
	width: 100%;
}
@media (min-width: 1600px){
	.content.article .withoutbanner + .template-module.mt-0 > img,
	.content.article .withoutbanner + .template-module.mt-0 div > img{
		max-height: 540px;
		height: 100%;
		object-fit: cover;
	}
}


.content .article-nav {
    background: #f7f6f6;
    margin-top: 100px;
    padding-top: 45px;
    padding-bottom: 45px;
}

.content .article-nav .row {
    margin: -10px;
    justify-content: space-between;
}

.content .article-nav .row > div {
    padding: 10px;
    line-height: normal;
    text-align: center;
}

@media screen and (max-width: 767px) {
	.content .article-nav .row > div:nth-of-type(1),
	.content .article-nav .row > div:nth-of-type(3){
		width: 50%;
	}
	.content .article-nav .row > div:nth-of-type(2){
		width: 100%;
		order: 1;
	}
	.content .article-nav .row > div:nth-of-type(1) a{
		text-align: left;
	}
}

.content .article-nav .prev .button::after,
.content .article-nav .next .button::after {
    content: "";
    position: absolute;
    display: inline-block;
    background: url(/assets/img/arrow_bg.svg) center no-repeat;
    width: 23px;
  	height: 14px;
    background-size: contain;
    transition: var(--transition);
    -webkit-transition: var(--transition);
    will-change: transform;
    pointer-events: none;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

.content .article-nav .row > div a {
	font-size: 15px;
	font-weight: bold;
	line-height: normal;
	letter-spacing: normal;
	text-align: right;
	color: #222a35;
    overflow: visible;
    font-family: var(--font-family-2);
    text-transform: uppercase;
	padding: 0;
}

.content .article-nav .row > div.prev a,
.content .article-nav .row > div.next a {
    position: relative;
}

.content .article-nav .row > div.prev a {
    padding-left: 40px;
}
.content .article-nav .row > div.next a {
    padding-right: 40px;
}

.content .article-nav .button::before {
    content: initial;
}

.content .article-nav .button::after {
    right: 0px;
}

.content .article-nav .row > div.prev a::after {
    left: 0;
    transform: rotate(180deg);
    right: auto;
}

.content .article-nav .row > div.disabled a {
    opacity: .25;
    pointer-events: none;
}

.related-blog div.title{
	font-family: var(--font-family-2);
	font-size: 32px;
	font-weight: bold;
	line-height: 1.28;
	letter-spacing: -0.9px;
	text-align: center;
	color: #000;
}

.template .related-blog h2{
	margin: 0;
}

.related-blog{
	padding-bottom: 70px;
}

.content .template .related-blog .listing{
	margin-top: 40px;
}

.related-blog .listing {
    width: 100%;
}

.related-blog .blog {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
	padding: 0;
    z-index: 0;
	margin-bottom: 40px;
}

.related-blog .blog:last-of-type {
	margin-bottom: 0;
}

.related-blog .blog .img {
    position: relative;
    overflow: hidden;
    margin: 0;
}

.related-blog .blog img {
    max-width: 100%;
    transition: var(--transition);
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
}
.related-blog .blog .img:hover img{
	transform: scale(1.05);
}


.related-blog .blog .mid{
	display: flex;
	flex-direction: row;
	font-family: var(--font-family-1);
	font-size: 12px;
	font-weight: normal;
	line-height: normal;
	letter-spacing: normal;
	color: #bab9b9;
	margin-top: 20px;
	margin-bottom: 10px;
	text-transform: capitalize;
}

.related-blog .blog .mid a{
	color: var(--bluegreen);
	margin-left: 15px;
	text-transform: uppercase;
}

.related-blog .blog .mid a:hover{
	color: var(--black);
}

.related-blog .blog h4{
	font-family: var(--font-family-2);
	font-size: 22px;
	font-weight: bold;
	line-height: 1.42;
	letter-spacing: normal;
	text-align: left;
	color: #1b1b1b;
	margin: 0;
}

@media screen and (min-width: 768px) {
	.related-blog .blog {
		margin-right: 68px;
		margin-bottom: 0;
	}
	.related-blog div.title{
		font-size: 36px;
	}
	.content .template .related-blog .listing{
		margin-top: 50px;
	}
	.related-blog .blog h4{
		font-size: 30px;
		line-height: 1.92;
	}
	.related-blog .listing {
		display: flex;
		margin: 0;
	}
	.content .article-nav {
		padding-top: 75px;
		padding-bottom: 75px;
	}
}

.related-blog .blog .button{
	margin-top: 20px;
}


@media (min-width: 768px){
	.related-blog .col-md-6 {
		-ms-flex: 0 0 50%;
		flex: 0 0 50%;
		max-width: 605px !important;
	}

	.related-blog h3:after{
		margin: 20px 0 24px;
	}
}


.listing .pagination ul li {
    font-family: var(--font-family-2);
	font-size: 18.5px;
	font-weight: bold;
	letter-spacing: -1.11px;
	text-align: center;
	color: var(--black);
	padding-left: .5em;
	padding-right: .5em;
}

.listing .pagination ul li a:hover,
.listing .pagination ul li a:focus,
.listing .pagination ul li.active a {
    color: var(--bluegreen) !important;
}


.listing .pagination ul li.prev a,
.listing .pagination ul li.next a {
	height: 15px;
	width: 7px;
	background-color: var(--bluegreen);
    -webkit-mask-image: url(/assets/img/arrow-lang.svg);
    mask-image: url(/assets/img/arrow-lang.svg);
    -webkit-mask-position: center;
    -webkit-mask-repeat: no-repeat;
}

.content .banner + .template{
	padding: 50px 0;
}

@media(min-width:1024px){
	
	.content .banner + .template{
		padding: 100px 0;
	}
}

.template h4,
.template h3,
.template h2{
    font-family: var(--font-family-2);
	text-transform: none;
	margin: 0.75em 0;
}

.template h2 {
    font-size: 26px;
    margin-bottom: 15px;
  	font-weight: bold;
  	line-height: 1.33;
  	letter-spacing: -0.75px;
}

.template h3,
.content .template .h3{
    font-size: 20px;
    margin-bottom: 15px;
  	font-weight: bold;
	line-height: 1.36;
	letter-spacing: -0.22px;
	color: var(--bluegreen);
}

.template div:not(.listing) .header .h3{
	color: var(--black);
}

.template div.listing .header .h3{
	color: var(--bluegreen);
	margin: 0;
}

.template h3::after{
	display: none;
}

.template h4 {
	font-size: 18px;
	font-weight: bold;
	line-height: 1.5;
	letter-spacing: -0.2px;
  }

.template,
.template p,
.template ul,
.template ol {
    font-weight: normal;
    font-size: 15px;
    color: #807e7e;
	
}

.template h4,
.template h2,
.template strong,
.template b {
    color: var(--black);
}
.template b,
.template strong {
    font-weight: 600;
}

.template-module li a,
.template-module p a,
.listing .accordion .description p a,
.listing.module20 p a{
    color: var(--bluegreen);
	font-weight: 600;
    border-bottom: 1px double currentColor;
}

.template-module li a:hover,
.template-module p a:hover,
.listing .accordion .description p a:hover,
.listing.module20 p a:hover{
    border-bottom: 1px double transparent;
}

.template ul {
    padding-left: 1px;
}
.template ul li ul {
    margin: 0;
}
.template ul li ul li {
    padding-left: 1.5em;
}
.template ul li ul li::before {
    width: 4px;
    height: 4px;
    position: absolute;
    border:1px var(--bluegreen) solid;
	background: none;
    top: 14px;
    left: 0;
    margin: auto;
    border-radius: 100%;
}
.template ol li {
    counter-increment: item;
}
.template ul li,
.template ol li {
    position: relative;
	padding-bottom: .15em;
}

.template ul li:last-child,
.template ol li:last-child {
	padding-bottom: 0;
}

.template ol {
    list-style: none;
    padding-left: 2em;
}
.template ol li::before {
    content: counter(item) ".";
    display: inline-block;
    width: 2em;
    margin-left: -2em;
    font-weight: 500;
    color: var(--bluegreen);
}
.template ul,
.template ol {
    text-align: left;
    letter-spacing: 0;
}
.template ul li {
    position: relative;
    padding-left: 2em;
    list-style-type: none;
}
.template ul li::before {
    content: '';
    width: 7px;
    height: 7px;
    background: var(--bluegreen);
    position: absolute;
	border-radius: 50%;
    top: 12px;
    left: 0;
    margin: auto;
}


@media screen and (max-width: 768px) {
	.template ul li::before {
		top: 8px;
	}
}


.template small {
    font-size: 12px;
    font-weight: normal;
	color: var(--black);
}
.template small strong {
    font-weight: 600;
}
.template p big {
    display: inline-block;
    font-size: 22px;
    padding: 0;
    position: relative;
}
.content .template p big,
.content .template blockquote p {
    margin-left: 30px;
    padding-left: 36px;
	font-size: 22px;
    font-weight: 500;
	line-height: 1.36;
	letter-spacing: -0.22px;
	color: #000;
}

.template blockquote small{
    font-style: normal;
}

.template p big::before {
    content: "";
    position: absolute;
    top: -6px;
    left: 0;
    width: 6px;
    background-color: #1e99b8;
	height: 41px;
}
.template blockquote {
    position: relative;
}
.template blockquote::before {
    top: 1px;
    content: "";
    position: absolute;
    left: 12px;
    height: 24px;
    width: 29px;
    background: url(/assets/img/quotation-marks.svg) 0%/contain no-repeat;
}

@media(min-width:786px){
    .template p,
    .template ul,
    .template ul li,
    .template ol{
        font-size: 18px;
		line-height: 1.8;
    }

	.template h2 {
		font-size: 30px;
		margin-bottom: 20px;
		line-height: 1.33;
		letter-spacing: -0.75px;
	}
	
	.template h3,
	.content .template .h3{
		font-size: 22px;
		margin-bottom: 20px;
		line-height: 1.36;
		letter-spacing: -0.22px;
	}
	
	.template h4 {
		font-size: 20px;
		line-height: 1.5;
		letter-spacing: -0.2px;
	  }

	.template h4,
	.template h3,
	.template h2{
		margin: 0.95em 0;
	}

	.template small {
		font-size: 14px;
	}

	.content .template p big,
	.content .template blockquote p {
		font-size: 22px;
		line-height: 1.34;
	}

	.template p big::before{
		border-radius: 2px;
		top: -6px;
    	left: 5px;
	}
}

.content .template p,
.content .template ul,
.content .template ol {
    margin: 1em 0 0 0;
}

.listing .accordion .toggle::before, .listing .accordion .toggle::after{
    background-color: #1e99b8;
}
.template .listing h3,
.template .listing .h3{
    font-weight: 600;
}

.listing.download .article.mini-article a.link,
.template-module .listing .file a,
.template-module .listing .item a{
    color: var(--bluegreen);
}

.template-module .cta{
    color:white;
    background: var(--bluegreen);
}

.template-module .cta h3, .template-module .cta .h3{
    color:white;
    font-family: var(--font-family-2);
	font-size: 24px;
	font-weight: bold;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.26;
	letter-spacing: -0.7px;
    -moz-osx-font-smoothing: grayscale;
	  -webkit-font-smoothing: antialiased;
	  margin-bottom: 0;
}

.template-module .cta::before{
    width: 16px;
  	height: 34px;
	background-color: var(--white);
    -webkit-mask-image: url(/assets/img/arrow-cta.svg);
    mask-image: url(/assets/img/arrow-cta.svg);
    -webkit-mask-position: center;
    -webkit-mask-repeat: no-repeat;
}

.listing .file > div {
    min-height: 0 !important;
    padding: 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
}

.template .listing .accordion > div:first-of-type > .h3,
.template .listing .file > div:first-of-type > .h3,
.template .listing .accordion > div:first-of-type > h3,
.template .listing .item > .h3,
.template .listing .file > .h3{
	font-family: var(--font-family-2);
	font-size: 19.5px;
	font-weight: bold;
	line-height: 1.54;
	letter-spacing: -0.2px;
	color: #000;
}

.listing .accordion .toggle{
	height: 34px;
    width: 34px;
}

.listing.listing-button .items {
    margin: -10px;
}
.listing.listing-button .button {
	margin: 10px;
}

.template-module .slider-wrapper.no-bar .slider-arrows > div::before {
	width: 20px;
  	height: 37px;
	background-color: var(--white);
	-webkit-mask-image: url(/assets/img/arrow-slide.svg);
	mask-image: url(/assets/img/arrow-slide.svg);
	-webkit-mask-position: center;
	-webkit-mask-repeat: no-repeat;
}


.listing .file .h3{
	margin: 0;
}


@media(min-width:768px){
	.template-module .cta h3, .template-module .cta .h3{
		font-size: 28px;
		line-height: 1.36;
		letter-spacing: -0.7px;
	}
}

/**************************/
/********** FORM **********/
/**************************/

.form {
	position: relative;
}

@media (min-width: 768px){
	.container-form {
		max-width: 750px;
	}
}

.content .template .form .row {
    margin: -20px;
}
div:not(.blog) .content .template .form .row > div {
    padding: 20px;
    font-size: 0;
}


form .honey-input,
.form .honey-input {
	position: fixed;
	top: -100%;
	left: -100%;
}

.contacts .content .template.bg .form > div {
  padding: 15px 20px;
}

.content .template .form label {
	display: block;
	font-family: var(--font-family-1);
	font-size: 16px;
	font-weight: 300;
    color: var(--black);
	opacity: .5;
    line-height: 1;
    margin: 0;
}

.content .template .form label a {
	color: var(--black);
	font-weight: normal;
	border-bottom: 1px solid transparent;
}
.content .template .form label a:hover,
.content .template .form label a:focus {
	border-bottom: 1px solid transparent;
}

.content .template .form span {
	display: block;
	font-size: 14px;
	color: var(--grey);
	line-height: 1;
}
.content .template .form .lower span {
	font-style: italic;
}

.content .template .form .input-wrapper {
  padding-top: 7px;
  position: relative;
}

.content .template .form .input-wrapper label,
.content .template .form .select-wrapper label {
  position: absolute;
  top: 0;
  transform: translateY(26px);
  line-height: 1;
  pointer-events: none;
  transition: var(--transition);
}

.content .template .form .input-wrapper input:focus + label,
.content .template .form .input-wrapper input[placeholder] + label,
.content .template .form .input-wrapper textarea:focus + label,
.content .template .form .input-wrapper textarea[placeholder] + label,
.content .template .form .input-wrapper.filled label {
    transform: translateX(0);
    font-size: 12px;
}

.content .template .form input,
.content .template .form textarea,
.content .template .form select {
	appearance: none;
	-webkit-appearance: none;
	font-size: 16px;
	font-family: var(--font-family-1);
	font-weight: 300;
	color: var(--black);
	line-height: 1;
	width: 100%;
	padding: 15px 0;
	background-color: transparent;
	border: none;
	border-bottom: 1px solid #d0d1d1;
	resize: none;
	transition: var(--transition);
}
.content .template .form input.not-filled,
.content .template .form textarea.not-filled {
    border-bottom: 1px solid var(--warning);
}
.content .template .form textarea {
	line-height: 1.5;
}
.content .template .form select {
	line-height: 1.2;
}

.content .template .form .warning {
    font-size: 14px;
    font-weight: 400;
    color: var(--warning);
    height: 20px;
    margin: 0;
    margin-top: 10px;
    line-height: 20px;
    padding-left: 35px;
    position: relative;
}
.content .template .form .warning::before {
    content: "!";
    position: absolute;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: var(--warning);
    border-radius: 100%;
    font-size: 17px;
    font-weight: 500;
    color: white;
    text-align: center;
}

.content .template .form .checkbox-wrapper {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}

.content .template .form input[type='checkbox'],
.content .template .form input[type='radio'] {
	display: none;
}
.content .template .form input[type='checkbox'] + label,
.content .template .form input[type='radio'] + label {
	display: inline-block;
	vertical-align: middle;
	height: 23px;
	width: 23px;
	background-color: white;
	cursor: pointer;
	position: relative;
	border: 1px solid #d0d1d1;
	transition: var(--transition);
}
.content .template .form input[type='radio'] + label {
	border-radius: 100%;
}
.content .template .form input[type='checkbox'].not-filled + label,
.content .template .form input[type='radio'].not-filled + label {
	border: 1px solid var(--warning);
}
.content .template .form input[type='checkbox'] + label::before,
.content .template .form input[type='radio'] + label::before {
	content: "";
	position: absolute;
	margin: auto;
	opacity: 0;
	pointer-events: none;
	transition: var(--transition);
}
.content .template .form input[type='checkbox'] + label::before {
  content: "";
  position: absolute;
  top: -3px;
  bottom: 0;
  left: 0;
  right: 0;
  width: 14px;
  height: 7px;
  border-bottom: 2px solid var(--black);
  border-left: 2px solid var(--black);
  margin: auto;
  opacity: 0;
  transform: rotate(-45deg);
  pointer-events: none;
  transition: var(--transition);
}
.content .template .form input[type='radio'] + label::before {
	top: 0;bottom: 0;
	left: 0;right: 0;
	width: 7px;
	height: 7px;
	background-color: var(--black);
	border-radius: 100%;
}
.content .template .form input[type='checkbox']:checked + label::before,
.content .template .form input[type='radio']:checked + label::before {
	opacity: 1;
}

.content .template .form input[type='checkbox'] + label + label,
.content .template .form input[type='radio'] + label + label {
	display: inline-block;
  vertical-align: middle;
  padding-left: 10px;
  color: #7b7b7c;
  font-weight: 300;
  line-height: 1.25;
  cursor: pointer;
  transition: var(--transition);
  font-size: 14px;
  opacity: 1;
}

.content .template .form .lower {
	display: flex;
	flex-wrap: wrap;
  	padding: 15px 15px;
}
.content .template .form .lower span {
	min-width: 100%;
	align-self: flex-end;
}

.content .template.bg .form [submit] {

  margin-top: 30px;
}


@media(min-width: 768px) {
  .contacts .content .template.bg .form > div {
    padding: 15px 40px;
  }
	.content .template .form h4,
	.content .template .form .h4 {
		margin-bottom: 60px;
    }

    .content .template .form .row {
        margin: -15px -30px;
    }
    .content .template .form .row > div {
        padding: 15px 30px;
	}

	.blog .content .template .form .row > div {
        padding: 15px 7px;
	}

  .content .template.bg .form [submit] {
    padding-left: 70px;
    padding-right: 70px;
    margin-top: 30px;
  }
}

@media(min-width: 992px) {
	.content .template .form h4,
	.content .template .form .h4 {
		margin-bottom: 70px;
	}
}



/*************************************/
/********** CONTACT US PAGE **********/
/*************************************/

.content.contact-us {
	padding-bottom: 0;
}
.content.contact-us .template {
	padding-bottom: 50px;
}

.content.contact-us > .template {
	padding-top: 50px;
	background-color: var(--white);
}

.content.contact-us > .template .form {
	max-width: 700px;
	margin-top: 40px;
}
.content.contact-us > .template .form .row {
	margin: -15px -40px;
}
.content.contact-us > .template .form .row > div {
	padding: 15px 40px;
}


@media(min-width: 768px) {
	.content.contact-us > .template {
		padding-top: 90px;
	}
	.content.contact-us .template {
		padding-bottom: 100px;
	}
}

.content.contact-us > .template small{
	font-size: 80%;
}


/********** MAP BANNER **********/


.banner-map .map,
.banner-map > .image {
	min-height: 100%;
}

.banner-map > .image{
	min-height: 100%;
}

.banner-map > .image img {
	position: relative;
	min-width: 100%;
	min-height: 100%;
	top: 50%;
	left: 50%;
	/* IE */
	transform: translate(-50%, -50%);
	width: auto;
	max-width: none;
}


@supports(mix-blend-mode: multiply) {
	.banner-map > .image img {
		width: 100%;
		height: 100%;
		object-fit: cover;
		position: static;
		transform: none;
	}
}


@media(min-width: 1400px) {
	.banner-map .map,
	.banner-map > .image {
		height: 100%;
		min-height: 500px;
		padding-top: 0;
	}
	.banner-map > .map,
	.banner-map > .image {
		min-height: 400px;
	}
}

@media(min-width: 768px) {
	.banner-map > .map {
		padding-top: 28.571%;
	}
}

.sticky-link{
	position: fixed;
	display: flex;
	bottom: 20px;
	right: 20px;
	z-index: 9;
}

.sticky-link:before {
    content: "";
    background: var(--bluegreen);
    border-radius: 100%;
    width: 40px;
    height: 40px;
    transition: var(--transition);
}

.sticky-link > i {
    font-size: 22px;
    border-radius: 100%;
    color: white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}


@media (min-width: 992px){
	.sticky-link {
		bottom: 30px;
		right: 30px;
	}
	.sticky-link:before {
		width: 55px;
		height: 55px;
	}
	.sticky-link > i {
		font-size: 35px;
	}

	.form-l.active + .sticky-link{
		right: 385px;
	}
}

.gallery{
	display: flex;
	flex-wrap: wrap;
}

.gallery .items > div{
	margin-bottom: 50px;
}

.gallery > div:first-of-type a{
	font-family: var(--font-family-2);
	font-size: 16px;
	font-weight: bold;
	line-height: 0.9;
	letter-spacing: normal;
	text-align: left;
	color: black;
	display: block;
	text-transform: uppercase;
	margin-bottom: 20px;
}

.gallery > div:first-of-type a:last-of-type{
	margin-bottom: 40px;
}

.gallery > div:first-of-type a.active,
.gallery > div:first-of-type a:hover{
	color: var(--bluegreen)
}



@media(min-width:992px){
	.gallery > div:first-of-type{
		flex: 1;
	}
	.gallery > div:last-of-type{
		max-width: 860px;
	}
}
.gallery .type-2 > div{
	display: flex;
	flex-wrap: nowrap;
	position: relative;
}

.gallery .type-2 > div img{
	max-width: 50%;
}

.gallery .type-2 > div > div,
.gallery .type-1 > div.imgs > div:last-of-type{
	width: 50px;
	height: 50px;
	position: absolute;
	top:10px;
	right: 10px;
	display: flex;
	align-items: center;
	justify-items: center;
}

.gallery .type-2 > div > div::before,
.gallery .type-1 > div.imgs > div:last-of-type::before{
	content:"";
	background-color: var(--bluegreen);
	width: 100%;
	height: 100%;
	display: block;
	border-radius: 50%;
}

.gallery .type-2 > div > div::after,
.gallery .type-1 > div.imgs > div:last-of-type::after{
	content:"";
	background-image: url(/img/consulta-online/cabelo-h2.svg);
	background-repeat: no-repeat;
	width: 34px;
    height: 27px;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	right: 0;
}

.gallery .type-2 > div > div.m::after,
.gallery .type-1 > div.imgs > div.m:last-of-type::after{
	background-image: url(/img/consulta-online/cabelo-m2.svg);
	width: 32px;
    height: 36px;
}

.content.gallery div:not(.template) p{
	font-size: 12px;
	font-weight: normal;
	line-height: normal;
	letter-spacing: 0.6px;
	text-align: left;
	color: var(--bluegreen);
	text-transform: uppercase;
	
}

.gallery .sidebar.fixed > div{
	position: fixed;
	top: 0;
}

.content .template .gallery p{
	margin-bottom: 10px;
}

.gallery p + .title{
	font-family: var(--font-family-2);
	font-size: 22px;
	font-weight: bold;
	line-height: 1.2;
	letter-spacing: normal;
	text-align: left;
	color: #1b1b1b;
}



.gallery .imgs {
	position: relative;
	border: none;
	height: 79.175vw;
    border: none;
    max-height: 680px;
    max-width: 860px;
    overflow: hidden;
}

@media (min-width: 768px){
	.gallery{
		display: flex;
		align-items: flex-start;
		justify-content: space-between;
		flex-wrap: nowrap;
	}
	.gallery .imgs {
		width: calc(100vw - 430px);
	}
	.gallery .type-1{
		max-width: 860px;
	}

	.gallery > div:first-of-type a{
		font-size: 20px;
		margin-bottom: 40px;
	}

	.content .template .gallery p{
		margin-bottom: 0px;
	}

	.gallery p + .title{
		font-size: 30px;
		line-height: 1.3;
	}

	.gallery .items > div{
		margin-bottom: 90px;
	}

	.gallery .type-2 > div > div,
	.gallery .type-1 > div.imgs > div:last-of-type{
		width: 69px;
		height: 69px;
		top:20px;
		right: 20px;
	}
	.gallery .type-2 > div > div::after,
	.gallery .type-1 > div.imgs > div:last-of-type::after{
		width: 45px;
		height: 36px;
	}
	.gallery .type-2 > div > div.m::after,
	.gallery .type-1 > div.imgs > div.m:last-of-type::after{
		width: 45px;
		height: 52px;
	}
}

@media(min-width:1350px){
	
	.gallery .imgs {
		width: 100vw;
	}
}

.gallery .imgs > img,
.gallery .imgs .after-img > img{
	width: 100%;
	height: 100%;
	object-fit: cover;
    object-position: left;
	pointer-events: none;
}
.gallery .imgs .after-img {
	overflow: hidden;
	height: 100%;
	overflow: visible;
	position: absolute;
	width: 50%; top: 0;left: 0;
}

.gallery .imgs .slider {
	-moz-appearance: none;
	-webkit-appearance: none;
	border: none; 
	background: transparent;
	cursor: col-resize;
	height: 100vw;
	left: 0px;
	right: 0px;
	margin: 0;
	outline: none; 
	padding: 0;
	position: relative;
	top: -100vw;
	width: 100%;
}
.gallery .imgs .slider:hover {
	background: none;
}


.gallery .imgs .slider::-webkit-slider-thumb {
	-webkit-appearance: none;
	appearance: none;
	width: 4px;
	height: 100vw;
	background: white;
	cursor: pointer;
}

.gallery .imgs .slider-button {
	pointer-events: none;
	position: absolute;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background-color: white;
	left: calc(50% - 17px);
	top: calc(50% - 17px);
	display: flex;
	justify-content: center;
	align-items: center;
}
.gallery .imgs .slider-button:after {
	content: "";
	padding: 2px;
	display: inline-block;
	border: solid #5D5D5D;
	border-width: 0 1.5px 1.5px 0;
	transform: rotate(-45deg);
}
.gallery .imgs .slider-button:before {
	content: "";
	padding: 2px;
	display: inline-block;
	border: solid #5D5D5D;
	border-width: 0 1.5px 1.5px 0;
	transform: rotate(135deg);
}




@media (min-width: 768px){
	.gallery .imgs .slider {
		left: 4px;
		right: 4px;
	}
	.gallery .imgs .slider-button {
		width: 58px;
		height: 58px;
		left: calc(50% - 31px);
		top: calc(50% - 18px);
	}
	.gallery .imgs .slider-button:after,
	.gallery .imgs .slider-button:before {
		padding: 3px;
		border-width: 0 2px 2px 0;
	}


}




.template .template-module td{
	font-size: 16px;
  font-weight: normal;
  line-height: 1.88;
  letter-spacing: normal;
  text-align: left;
  color: #000;
  padding-top: 7px;
  padding-bottom: 7px;
}

.template .template-module tr{
	border-bottom:1px solid #e9e8e8;
	
}

.template .listing .button{
	font-weight: 500;
	-webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.listing-blog .blog-thumb,
.template .wrapper{
	position: relative;
}
.tipos .slides > div div:after,
.why .img:after,
.before-after .imgs:after,
.hp-blog .blog .img:after,
.about-us .img:after,
.listing-blog .blog-thumb:after,
.content.article .withoutbanner + .template-module.mt-0:after,
.related-blog .blog .img:after,
.gallery .imgs:after,
.template .wrapper:after,
.hp-banners .img:after{
	content: "";
	position: absolute;
	bottom: 10px;
	right: 10px;
	background: url(/assets/img/imgWater.png) no-repeat;
	background-size: cover;
	width: 70px;
	height: 70px;
	pointer-events: none;
}

@media(min-width:768px){
	.tipos .slides > div div:after,
	.why .img:after,
	.before-after .imgs:after,
	.hp-blog .blog .img:after,
	.about-us .img:after,
	.listing-blog .blog-thumb:after,
	.content.article .withoutbanner + .template-module.mt-0:after,
	.related-blog .blog .img:after,
	.gallery .imgs:after,
	.template .wrapper:after,
	.hp-banners .img:after{
		bottom: 15px;
		right: 15px;
		width: 90px;
		height: 90px;
	}
}

.template .module5.module11 .wrapper:after{
	transform: scale(.8);
}

.content .template .wrap p:first-of-type{
	margin: 0;
}