html, body {
	font-family: 'Catamaran', Arial, Helvetica, sans-serif;
	font-style: normal;
	font-weight: normal;
	font-size: 18px;
	line-height: 1.5em;
	/* background: var(--white); */
	/* color: var(--black); */
}

body {
	padding-top: 44px;
}
header.page-header {
    padding-top: 50px;
}
 
.center {
	text-align: center;
}

.right {
	text-align: right;
}

.text-red {
	color: var(--red) !important;
}

.row.justify-content-center {
	justify-content: center !important;
}

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

input, select, textarea {
	border: .5px solid var(--input-border);
	padding: 8px 16px;
	margin: 0 0 15px 0;
	border-radius: 8px;
	font-size: 14px;
	line-height: 1.5em;
	color: var(--input-text-color);
}

form input:not([type=submit]), form select, form textarea {
    width: 100%;
}

input[type=submit] {
	height: 40px;
    line-height: 40px;
    min-width: 40px;
    border: 0;
    border-radius: 8px;
	font-size: 16px;
	font-weight: 800;
	text-decoration: none;
	text-align: center;
	margin-bottom: 15px;
	display: inline-block;
	padding: 0 15px;
	min-width: 220px;
	background: var(--red);
	color: var(--white);
	cursor: pointer;
}

input[type=submit]:hover {
	background: var(--btn-hover);
}

form label {
	color: var(--label);
	font-size: 13px;
	line-height: 1.8em;
}

a {
	color: var(--red);
}

a, a:hover {
	text-decoration: none;
}

b, strong {
	font-weight: 700;
}

hr {
	border-style: solid;
	border-width: 1px 0 0 0;
	border-color: var(--hr-color);
	margin: 30px 0;
}

p {
	margin-bottom: 1.5em;
}

.text-white {
	color: var(--white) !important;
}

.btn	 {
	height: 40px;
    line-height: 40px;
    min-width: 40px;
    border: 0;
    border-radius: 8px;
	font-size: 16px;
	font-weight: 800;
	text-decoration: none;
	text-align: center;
	margin-bottom: 15px;
	display: inline-block;
}

.btn:not(.btn-text) {
	padding: 0 15px;
	min-width: 220px;
}

.btn.primary {
	background: var(--red);
	color: var(--white);
}

.btn.outline-primary {
	border: 1px solid var(--red);
	background: var(--white);
	color: var(--red);
}

.btn.btn-text {
	color: var(--red);
	background: transparent;
}

.btn.btn-block {
	display: block;
}

.btn.primary:hover {
	background: var(--btn-hover);
}

body > header {
	background: var(--white);
	position: fixed;
	top: 0;
	z-index: 20;
	width: 100%;
}

body > header .logo-link,
footer .link-logo {
    max-width: 80%;
    width: 100%;
    display: block;
}

.title {
	font-size: 35px;
	line-height: 1.2em;
	color: var(--black);
}

h1, h2, h3, h4, h5, h6 {
	font-weight: 700;
	line-height: 1.2em;
	color: var(--black);
}

h1 {
	font-size: 42px;
}

h2 {
	font-size: 38px;
}

h3 {
	font-size: 32px;
}

h4 {
	font-size: 28px;
}

h5 {
	font-size: 20px;
}

h6 {
	font-size: 18px;
}

* + h1, * + h2, * + h3, * + h4, * + h5, * + h6 {
	margin-top: 40px;
}

ul {
	list-style: disc;
    padding-left: 20px;
	margin-bottom: 20px;
}

ul li::marker {
    font-size: 11px;
    line-height: 17px;
}

.logo-link {
	display: block;
	line-height: 0;
}

body > header .row {
	height: 80px;
	align-content: center;
}

.home > .content-section.our-size {
	background: var(--red) !important;
	color: var(--white);
}

.home > .content-section.products h2 {
	margin-bottom: 16px;
}

.our-size .highlight span {
	display: block;
}

.our-size .highlight span:nth-child(1) {
	font-size: 16px;
}

.our-size .highlight span:nth-child(2) {
	font-size: 36px;
}

.our-size .highlight span:nth-child(3) {
	font-size: 12px;
}

.wp-block-merit-accordion-content,
.wp-block-merit-accordion {
    margin: 20px 0;
    padding: 20px 0;
	border-bottom: 1px solid var(--border-light-gray);
	position: relative;
}

.wp-block-merit-accordion-content .accordion-header,
.wp-block-merit-accordion .accordion-header {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: nowrap;
}

.wp-block-merit-accordion-content .accordion-header .title,
.wp-block-merit-accordion .accordion-header .title {
    flex-grow: 1;
}

.wp-block-merit-accordion-content .accordion-header .arrow,
.wp-block-merit-accordion .accordion-header .arrow {
    flex-grow: 0;
	padding: 0 0 0 20px;
}

.wp-block-merit-accordion-content .accordion-header .arrow .bx,
.wp-block-merit-accordion .accordion-header .arrow .bx {
	transition: all .3s linear;
}

.wp-block-merit-accordion-content.opened .accordion-header .arrow .bx,
.wp-block-merit-accordion.opened .accordion-header .arrow .bx {
	transform: rotate(180deg);
	transition: all .2s linear;
}

.wp-block-merit-accordion-content.accordion .content,
.wp-block-merit-accordion.accordion .content {
	display: block;
    height: 0px;
    overflow: hidden;
    transition: all .3s linear;
}

.wp-block-merit-accordion-content.accordion .content .inner-content,
.wp-block-merit-accordion.accordion .content p {
    padding: 25px 0px;
}
.wp-block-buttons {
	align-items: center;
}

.wp-block-buttons .wp-block-button__link {
    border-radius: 8px;
    background: var(--red);
	font-size: 16px;
    font-weight: 800;
}

.wp-block-buttons .wp-block-button.is-style-outline .wp-block-button__link {
    border-color: var(--red);
    color: var(--red);
}

.wp-block-pullquote {
	padding: 30px 0;
    text-align: left;
}

.wp-block-pullquote p {
	font-size: 25px;
	font-weight: 700;
	line-height: 1.5em;
}

.wp-block-pullquote:not(.has-white-color) p {
	color: var(--red);
}

.post-content-wrapper ol,
.post-the-content ol {
	list-style: none;
}

.post-content-wrapper ol li,
.post-the-content ol li {
	counter-increment: marker;
	margin-bottom: 40px;
}

.post-content-wrapper ol li::before,
.post-the-content ol li::before {
	content: counter(marker) ".";
	display: inline-block;
	font-size: 40px;
	font-weight: 700;
	color: var(--red);
	line-height: 1.65em;
	padding-bottom: 8px;
	width: 100%;
}

.post-content-wrapper ol li,
.post-the-content ol li {
	break-inside: avoid-column;
}

.profile-card {
    padding: 60px 0;
}

.profile-card  h3 {
	font-weight: 700;
}

.profile-card .card-image-wrapper {
	text-align: center;
	display: block;
	width: 100%;
	line-height: 0;
	margin-bottom: -30px;
}

.profile-card .profile-body {
	background: var(--background-gray);
	font-size: 18px;
	padding: 60px 25px 30px 25px;
}

.menu-footer ul {
	list-style: none;
}

.news ul.article-list {
	padding: 40px 0;
    list-style: none;
    position: relative;
}

.news ul.article-list:before {
    content: ' ';
    width: 4px;
    background: var(--news-timeline-bg);
    height: 100%;
    position: absolute;
    left: 30px;
	top: 0;
	bottom: 0;
}

.news ul.article-list li.article {
    padding: 20px 0 20px 75px;
    position: relative;
}

.news ul.article-list li.article:first-child {
	padding-top: 0;
}

.news ul.article-list li.article:last-child {
	padding-bottom: 0;
}

.news ul.article-list li.article:before {
    position: absolute;
    width: 30px;
    height: 30px;
    background: var(--news-marker-bg);
    content: ' ';
    border-radius: 30px;
    left: 17px;
    top: calc(50% - 15px);
}

.news ul.article-list li.article img + h3 {
	margin-top: 16px;
}

.news ul.article-list li.article h3 {
	margin-bottom: 16px;
	font-size: 22px;
}

.news ul.article-list li.article .date {
	font-size: 16px;
	line-height: 1.6em;
	color: var(--news-date-color);
	font-weight: 700;
}

ul.products {
	margin: 0 0 0 0;
	padding: 0 0 0 0;
	list-style: none;
}

ul.products .product a {
	display: flex;
	flex-direction: row;
	align-items: center;
	text-decoration: none;
	padding: 10px 0;
}

ul.products .icon {
	width: 60px;
	height: 60px;
	min-width: 50px;
	display: inline-block;
	background: var(--red);
	color: var(--white);
	text-align: center;
	font-weight: 100;
}

ul.products .icon > i {
	line-height: 50px;
	font-size: 38px;
}

ul.products .title {
	font-size: 18px;
	line-height: 2.25em;
	padding-left: 10px;
}

.contacts .contact-forms {
	display: flex;
	flex-wrap: nowrap;
	padding: 0 0 0 0;
}

.contacts .contact-form .title {
	font-size: 16px;
	font-weight: 700;
	color: var(--contact-title-color)
}

.contacts .contact-form .subtitle,
.contacts .contact-form .subtitle a {
	font-size: 14px;
	color: var(--contact-subtitle-color);
}

.contacts .contact-form a:hover,
.contacts .contact-form a:hover .subtitle {
	color: var(--red);
	text-decoration: none;
}

.contacts .contact-form .icon > * {
	font-size: 80px;
	color: var(--red);
}

.contacts .contact-form .subtitle:before {
	content: ' ';
    display: block;
    width: 100%;
	transition: all linear .3s;
}

.contacts .contact-form .hidden.subtitle {
	opacity: 0;
}

.contacts .contact-form .subtitle {
	opacity: 1;
	transition: all linear .5s;
}

.contacts .contact-form .hidden.subtitle:before {
	height: 1.6em;
}

.contacts .contact-form .subtitle:before {
	height: 0em;
}

.videos ul.videos {
	padding: 0;
	list-style: none;
}

.videos ul.videos li {
	padding: 10px;
	box-sizing: border-box;
	resize: none;
	overflow: auto;
}

.videos ul.videos li a {
	width: 100%;
	padding-bottom: 56.25%;
	background-repeat: no-repeat;
	background-size: 100%;
	display: block;
}

.videos ul.videos li:nth-child(1) a {
	background-image: url(../img/conheca-o-seguro.jpeg);
}

.videos ul.videos li:nth-child(2) a {
	background-image: url(../img/como-contratar.jpeg);
}

.videos ul.videos li:nth-child(3) a {
	background-image: url(../img/como-aumentar-capital.jpeg);
}

.videos ul.videos li:nth-child(4) a {
	background-image: url(../img/vantagens.jpeg);
}

footer {
	position: relative;
	background-color: var(--footer-bg-color);
	margin-top: 60px;
	padding: 180px 0 40px;
}

footer .get-offer {
	margin-bottom: 0;
}

.page-content + footer {
	margin-top: 0;
}

.post-content-wrapper,
.post-the-content {
	padding-top: 40px;
	padding-bottom: 30px;
}

footer::before {
	display: block;
	content: ' ';
	height: 160px;
	background-image: url(../img/footer-mobile.svg);
	background-size: 100%;
	background-repeat: no-repeat;
	background-position: top left;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
}

.background-gray {
    background: var(--card-bg-gray);
    padding: 15px 0;
}

nav.menu-footer {
	color: var(--white);
}

nav.menu-footer > ul ul {
	margin-bottom: 30px;
}

nav.menu-footer > ul > li:last-child ul {
	margin-bottom: 0;
}

nav.menu-footer a + .row {
	margin-top: 15px;
}

nav.menu-footer a {
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5em;
	padding: 0 0 0 0;
	text-decoration: none;
	color: var(--white);
}

nav.menu-footer > ul > li > a,
nav.social-menu .title {
	font-size: 18px;
	font-weight: 700;
	line-height: 1.8em;
	color: var(--white);
}

.social-menu ul {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: flex-start;
	align-items: center;
	list-style: none;
	padding: 0 0 0 0;
}

.social-menu ul li a {
	color: var(--white);
	font-size: 30px;
	line-height: 2em;
	padding: 0 15px 0 0;
	margin: 0 15px 0 0;
}

.social-menu ul li:last-child a {
	margin: 0 0 0 0;
}

.rights {
	color: var(--white);
	font-size: 14px;
	text-align: center;
}

form.search-form {
	position: relative;
}

form.search-form input[type=text] {
	margin-bottom: 0;
	width: 100%;
}

form.search-form button[type=submit] {
	background: transparent;
	border: 0;
	line-height: 1.5em;
	font-size: 20px;
	position: absolute;
	right: 5px;
	top: calc(50% - 14px);
}

article.page .content,
article.post .content {
    padding: 20px;
	line-height: 1.3em;
	font-size: 14px;
	background: var(--post-content-background);
    margin-bottom: 40px;
}

article.page .content h4,
article.post .content h4 {
    font-size: 18px;
	padding-bottom: 10px;
}

article.page .thumbnail,
article.post .thumbnail {
    box-sizing: border-box;
    overflow: hidden;
    max-width: 100%;
    height: 220px;
}

article.page .thumbnail .image,
article.post .thumbnail .image {
    width: 100%;
    padding-bottom: 56.25%;
    background-repeat: no-repeat;
    background-size: 100%;
    background-color: var(--light-gray);
}

.nav-links {
    display: flex;
    align-content: center;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
}

.nav-links .page-numbers {
	height: 40px;
    line-height: 40px;
    min-width: 40px;
    border: 0;
    border-radius: 8px;
	font-size: 16px;
	font-weight: 800;
	text-decoration: none;
	text-align: center;
	margin-bottom: 15px;
	display: inline-block;
	background: var(--red);
	color: var(--white);
	margin: 0 5px;
	padding: 0 10px;
}

.nav-links .page-numbers:hover,
.nav-links .page-numbers.current {
	background: var(--btn-hover);
}

.post-template-default .post-content > header.post-header {
	position: relative;
	overflow: hidden;
}

.post-template-default .post-content > header.post-header img.blured-image {
    min-width: 100%;
    min-height: 100%;
    position: absolute;
    z-index: 0;
    filter: blur(10px);
    -webkit-filter: blur(20px);
}

.post-template-default .post-content > header.post-header > .container-fluid,
.post-template-default .post-content > header.post-header > .container-fluid > .row {
    min-height: 50vh;
}

.post-template-default .post-content > header.post-header > .container-fluid {
    background-repeat: no-repeat;
    z-index: 1;
    position: relative;
    background-size: cover;
    background-position: center center;
}

.post-template-default .post-content > header.post-header > .container-fluid:after {
	content: '';
	background: rgba(0, 0, 0, .2);
	height: 100%;
	width: 100%;
	position: absolute;
	z-index: 0;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}

.post-template-default .post-content > header.post-header > .container-fluid > .row {
	z-index: 1;
	position: relative;
}

.post-template-default header.post-header .category,
.post-template-default header.post-header .title,
.post-template-default header.post-header .author {
	color: var(--white);
	text-shadow: 0 0 3px rgb(0 0 0 / 40%);
}

.post-template-default header.post-header .category {
	line-height: 1.6em;
	font-size: 18px;
}

.post-template-default header.post-header .title {
	line-height: 1.2em;
	font-size: 40px;
    padding: 0 0 0 0;
    margin: 16px 0;
}

.post-template-default header.post-header .author {
	font-size: 16px;
}

ul.float-icons {
    position: fixed;
    bottom: 90px;
    right: 64px;
    list-style: none;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-wrap: nowrap;
	z-index: 10;
}

ul.float-icons li {
    padding: 0 0 0 10px;
}

ul.float-icons li a {
    height: 48px;
    width: 48px;
    text-align: center;
    display: block;
    font-size: 30px;
    color: var(--white);
    border-radius: 48px;
    line-height: 56px;
}

ul.float-icons li.accessibility a {
	background: var(--accessibility);
}

ul.float-icons li.whatsapp a {
	background: var(--success);
}

@-webkit-keyframes fadeIn {
	0% {
		opacity: 0;
		z-index: 1;
	}
	100% {
		opacity: 1;
		z-index: 2;
	}
}

@keyframes fadeIn {
	0% {
		opacity: 0;
		z-index: 1;
	}
	100% {
		opacity: 1;
		z-index: 2;
	}
}

@-webkit-keyframes fadeOut {
	0% {
		opacity: 1;
		z-index: 2;
	}
	100% {
		opacity: 0;
		z-index: 1;
	}
}

@keyframes fadeOut {
	0% {
		opacity: 1;
		z-index: 2;
	}
	100% {
		opacity: 0;
		z-index: 1;
	}
}

.slider-content {
	position: relative;
}

.slider-content .slider {
    width: 100%;
    padding-bottom: 39.5%;
}

.slider .slide {
	position: absolute;
	line-height: 0;
	top: 0;
	-webkit-animation-name: fadeOut;
	-webkit-animation-duration: 1.5s;
	animation-name: fadeOut;
	animation-duration: 1.5s;
	opacity: 0;
	z-index: 0;
    height: 100%;
    width: 100%;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.slider .slide.active {
	opacity: 1;
	-webkit-animation-name: fadeIn;
	-webkit-animation-duration: 1.5s;
	animation-name: fadeIn;
	animation-duration: 1.5s;
	z-index: 1;
}

.slider .slide .container,
.slider .slide .container .row {
    min-height: 100%;
    height: 100%;
}

.slide.slide-blue .container {
    background: url();
}

.slider .slide .container {
    color: var(--white);
    line-height: 1.6em;
    text-align: left;
	position: relative;
}

.slider .slide .container .row .content > * {
	color: var(--white) !important;
}

.slider .slide .wp-block-buttons .wp-block-button__link {
	background: var(--white);
	color: var(--input-text-color);
	padding: 10px 24px;
	font-size: 16px;
	line-height: 26px;
	margin-top: 16px;
}

.slider .slide img {
	line-height: 0;
}

.slider-content .dots {
    position: absolute;
    bottom: 30px;
    left: 0;
    width: 100%;
    z-index: 3;
}

.slider-triangle {
	position: absolute;
    right: 0;
    bottom: 0;
    border-style: solid;
    border-width: 0 0 140px 140px;
}

.slider-triangle.blue {
	border-color: transparent transparent rgba(52, 71, 104, .7) transparent;
}

.slider-triangle.red {
	border-color: transparent transparent rgba(171, 19, 52, .6) transparent;
}

.menu-item-has-children::after {
    content: ' ';
    position: absolute;
    background-image: url(../img/arrow.png);
    background-repeat: no-repeat;
    right: -7px;
    width: 12px;
    height: 8px;
    top: 50%;
    transform: translate(-50%, -50%);
}

.vbody {
	align-items: center;
	display: flex;
	justify-content: center;
}

@keyframes scroll {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(calc(-200px * 4));
	}
}

.clients-slider {
	height: 100px;
	width: 100%;
	margin-top: 30px;
}

.clients-slide img {
	filter: grayscale(100%);
	transition: 0.2s ease;
}

.clients-slide img:hover {
	filter: none;
}


.clients {
	list-style: none;
}

.clients .client {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px 20px;
	height: 90px;
	margin: 0 0 20px 0;
}

.clients .client img {
	max-width: 150px;
	max-height: 100%;
	height: auto;
}

.client-list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
	align-items: center;
    justify-content: center;
	height: 90px;
}

.client-list li {
    text-align: center;
	display: flex;
    align-items: center;
	justify-content: center;
	padding: 0 25px;
}

.client-list li img {
	max-width: 100%;
	height: auto;
	max-height: 100%;
}

.why-us .content p {
	margin-top: 16px;
	margin-bottom: 30px;
}

.letter-list {
    display: flex;
    justify-content: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
}

.letter-list .letter {
    color: var(--wordlist-color);
	font-size: 13px;
    line-height: 30px;
    width: 30px;
    text-align: center;
	order: 1;
}

.letter-list .letter.active {
	color: var(--wordlist-header-active-letter);
    background: var(--wordlist-background);
}

.letter-list .word-list {
    color: var(--wordlist-color);
	order: 2;
    padding: 20px 15px;
    background: var(--wordlist-background);
	width: 100%;
	list-style: none;
	display: none;
    columns: 1;
    flex-direction: column;
    align-items: flex-start;
}

.letter-list .word-list.active {
    display: flex;
}

.paragraph-box {
	padding: 15px 20px;
	border: 1px solid var(--red);
}

.wp-block-buttons.full-width-buttons {
    flex-direction: column;
}

#search-column {
	position: relative;
}

#search-column .menu-wrapper {
    position: absolute;
    top: -5px;
    right: 0;
    overflow: hidden;
    width: 0;
    transition: all linear .3s;
}

#search-column.opened .menu-wrapper {
    width: 300px;
    transition: all linear .3s;
}

#search-column .search-form input[type=text] {
    padding: 8px 24px 8px 16px;
}

#search-column .search-form button[type=submit] {
    right: 0px;
}

#search-column .search-form a.search-close {
    border: 0;
    position: absolute;
    right: 0px;
    line-height: 1.5em;
    font-size: 25px;
    top: calc(50% - 15px);
    right: 3px;
    text-decoration: none;
    color: var(--gray);
}

@media all and (max-width: 576px) {
	footer .link-logo {
		max-width: 100%;
		text-align: center;
	}

	footer .btn.get-offer {
		display: block;
	}
}

@media all and (max-width: 768px) {
	body.admin-bar > header {
		top: 46px;
	}

	.page-content > .content-section:nth-child(odd),
	.home > .content-section:nth-child(even) {
		background: var(--background-gray);
	}
	.scroller {
		overflow-x: scroll;
		max-width: 100%;
		padding-bottom: 30px;
	}

	.scroller::-webkit-scrollbar {
		height: 6px;
	}

	.scroller::-webkit-scrollbar-track {
		background: var(--border-light-gray);
	}

	.scroller::-webkit-scrollbar-thumb {
		background: var(--red);
	}

	.scroller::-webkit-scrollbar-thumb:hover {
		background: var(--red);
	}

	.client-list {
		list-style: none;
		padding: 0 0 0 0;
		margin: 0 0 0 0;
		display: flex;
		flex-direction: column;
		flex-wrap: wrap;
		height: 180px;
	}

	.client-list > div {
		filter: saturate(1);
	}

	.clients-slider {
		height: auto;
	}
}

@media all and (max-width: 992px) {
	h1, h2, h3, h4, h5, h6 {
		line-height: 1.2em;
		color: var(--black);
		margin-bottom: .8em;
	}

	h1, h2, h5, h6 {
		font-weight: 700;
	}

	h3, h4 {
		font-weight: 400;
	}

	h1 {
		font-size: 35px;
	}

	h2 {
		font-size: 30px;
	}

	h3 {
		font-size: 25px;
	}

	h4 {
		font-size: 22px;
	}

	h5 {
		font-size: 20px;
	}

	h6 {
		font-size: 18px;
	}

	body > header {
		box-shadow: 0px 16px 24px 0px rgba(0, 0, 0, .04);
	}

	html body > #wpadminbar {
		position: fixed;
		top: 0;
	}

	.opened-menu {
		overflow: hidden;
	}

	.opened-menu .btn .bx-menu,
	.btn .bx-x {
		display: none;
	}

	.opened-menu .btn .bx-x {
		display: block;
	}

	.icons .btn,
	.icons .btn .bx {
		font-size: 26px;
		line-height: 26px;
		margin: 0 0 0 0;
		padding: 0 0 0 0;
		min-width: inherit;
		width: 45px;
	}

	.site-header .menus {
		display: none;
	}

	.content-section {
		width: 100%;
	}

	header:not(.page-content-header) + .content-section,
	.product-content > header,
	.page-content > header {
		padding-top: 15px;
	}

	.page-content > .content-section,
	.home > .content-section {
		padding-top: 40px;
		padding-bottom: 40px;
		background: var(--background-white);
	}

	ul.products .product {
		border-bottom: 1px solid var(--border-light-gray);
	}

	ul.products .product:last-child {
		border: 0;
	}

	.product-content header.page-header,
	.page-content header.page-header {
		background-color: var(--white);
		color: var(--black);
		padding-bottom: 40px;
		background-image: url(../img/header.svg);
		background-repeat: no-repeat;
    	background-position: bottom right;
	}

	.product-content > header h1,
	.page-content > header h1 {
		color: var(--black);
	}

	.page-content-header > .container-fluid {
		padding: 0 0 0 0;
	}

	.mobile-menu {
		top: -200%;
		transition: .5s all linear;
		background: var(--menu-background);
		position: fixed;
		left: 0;
		right: 0;
		height: 100%;
		display: block;
		z-index: 19;
		transition: .3s all linear;
	}

	.opened-menu .mobile-menu {
		transition: .3s all linear;
	}

	.opened-menu .mobile-menu {
		top: 80px;
	}

	body.admin-bar.opened-menu .mobile-menu {
		top: 125px;
	}

	.mobile-menu .container-fluid {
		height: 100%;
		display: flex;
		flex-direction: column;
	}

	.mobile-menu .container-fluid > header {
		padding: 40px 0;
		flex-grow: 0;
	}

	.mobile-menu .container-fluid > #menu-wrapper {
		flex-grow: 1;
	}

	.mobile-menu ul {
		padding: 0 0 0 0;
		margin: 0 0 0 0;
		list-style: none;
	}

	.mobile-menu li a {
		line-height: 1.6em;
		font-size: 16px;
		color: var(--menu-link-color);
		padding: 0 0 0 0;
	}

	.mobile-menu li a:hover {
		font-weight: 700;
	}

	.mobile-menu #menu-wrapper {
		position: relative;
		overflow: hidden;
	}

	@keyframes menu_transition {
		0% {
			transition: none;
		}

		.5% {
			transition: linear all .3s;
			left: 100%;
		}

		99.6% {
			left: 0;
			transition: linear all .3s;
		}

		100% {
			transition: none;
		}
	}

	.mobile-menu #menu-wrapper .menu {
		width: 100%;
		height: 100%;
		position: absolute;
    	overflow-y: scroll;
		background: var(--menu-background);
		left: 100%;
	}

	.mobile-menu #menu-wrapper.any .menu:first-child,
	.mobile-menu #menu-wrapper .menu.active {
		animation: menu_transition .4s;
		left: 0%;
	}

	.mobile-menu #menu-wrapper .menu .menu-item {
		width: 100%;
		padding: 15px 0;
		border-bottom: 1px solid var(--menu-item-border);
	}

	.content-section.contacts ul.row {
		padding-left: 0;
	}

	.contacts .contact-forms .contact-form {
		min-width: 140px;
		margin: 0 10px;
		padding: 0 0 0 0;
	}

	ul.float-icons {
		bottom: 29px;
		right: 25px;
	}

	ul.float-icons li.accessibility {
		display: none;
	}

	.slider-content {
		overflow: hidden;
		border-radius: 8px;
	}

	.slider-content .slider .slide .content {
		display: none;
	}

	.slider-content .dots {
		bottom: 15px;
		left: 15px;
	}

	.slider-content .dots .dot {
		height: 10px;
		width: 10px;
		border-radius: 10px;
		border: 1px solid var(--white);
		background-color: transparent;
		margin: 0 8px 0 0;
		display: inline-block;
	}

	.slider-content .dots .dot.active {
		border: 1px solid var(--red);
		background-color: var(--white);
	}

	.merit-pullquote.has-background,
	.merit-pullquote.has-background .wp-block-pullquote {
		background: transparent !important;
	}

	.merit-pullquote .has-text-color,
	.wp-block-pullquote.mobile-quote-black blockquote p {
		color: var(--black);
	}

	.wp-block-pullquote.is-style-solid-color blockquote {
		max-width: 100%;
	}

	.letter-list .letter {
		width: 100%;
		background: var(--wordlist-background);
		text-align: left;
		padding: 0 15px;
	}

	.letter-list .word-list {
		order: 1;
		margin: 0 0 0 0;
		padding: 5px 15px 20px 15px;
	}
}

@media all and (min-width: 767px) {
	body.admin-bar > header {
		top: 32px;
	}

	ul.products .product {
		border-bottom: 0;
	}

	ul.products .product a {
		flex-direction: column;
		align-items: flex-start;
	}

	.products-block ul.products .product a {
		flex-direction: row;
	}

	ul.products .title {
		padding: 10px 15px 0 0;
		line-height: 1.3em;
		width: 100%;
	}

	.products-block ul.products .product .title {
		padding-top: 0;
		font-size: 25px;
	}

	.contacts .contact-forms {
		flex-wrap: wrap;
		padding: inherit;
	}

	.contacts .contact-forms .contact-form a {
		filter: saturate(0) opacity(.7);
		transition: all linear .3s;
		background: var(--card-bg-gray);
	}

	.contacts .contact-forms .contact-form:hover a {
		filter: saturate(1) opacity(1);
		transition: all linear .3s;
		background: var(--card-bg-white);
	}

	footer .rights {
		text-align: right;
	}

	footer {
		padding-top: 40px;
		margin-top: 100px;
	}

	footer .container {
		z-index: 1;
		position: relative;
	}

	footer::before {
		background-image: url(../img/footer-desktop.svg);
		background-size: auto 100%;
		height: calc(100% + 60px);
		margin-top: -60px;
		z-index: 0;
		background-position: top right;
		z-index: 0;
		width: calc(calc(100vw - 765px) / 2);
	}
}

@media all and (min-width: 992px) {
	body > header {
		box-shadow: 0px 16px 24px 0px rgba(0, 0, 0, .04);
	}

	.mobile-menu {
		display: none;
	}

	.site-header .icons {
		display: none;
	}

	body > header nav > ul {
		display: flex;
		list-style: none;
		padding: 0;
		margin: 0;
		width: 100%;
		flex-direction: row;
		justify-content: flex-start;
	}

	nav.menu-secondary > ul#menu-secundario {
		justify-content: flex-end;
	}

	nav.menu-secondary > ul#menu-secundario > li.menu-item {
		padding: 0 0 0 15px;
		margin: 0 0 0 15px;
	}

	nav a {
		font-style: normal;
		font-weight: 500;
		font-size: 14px;
		text-decoration: none;
		color: var(--gray);
		padding: 0 10px;
	}

	nav a:hover {
		font-weight: 600;
	}

	header nav ul.menu > li.menu-item {
		position: relative;
		padding: 0 15px 0 0;
		margin: 0 15px 0 0;
	}

	header nav ul.menu > li.menu-item.menu-item-has-children {
		margin: 0 23px 0 0;
	}

	header nav > ul.menu > li.menu-item > a {
		padding: 0 0 0 0;
	}

	nav ul.menu > li.menu-item > .sub-menu {
		display: none;
		position: absolute;
		top: 100%;
		list-style: none;
		padding: 0;
		width: 300px;
		background: var(--white);
		border-radius: 8px;
		box-shadow: 0px 0px 25px 5px rgb(0 0 0 / 4%);
		padding: 15px 20px;
	}

	nav ul.menu > li.menu-item:hover > .sub-menu {
		display: block;
	}

	nav ul.menu > li.menu-item:hover > .sub-menu li {
		margin: 0 0 0 0;
		padding: 5px 0;
		border-bottom: 1px solid var(--menu-item-border);
	}

	nav ul.menu > li.menu-item:hover > .sub-menu li:last-child {
		border-bottom: none;
	}

	nav ul.menu > li.menu-item:hover > .sub-menu li a {
		line-height: 1.6em;
		padding: 0 0 0 0;
		font-size: 14px;
	}

	nav ul.menu > li.menu-item.featured a {
		color: var(--red);
		font-weight: 700;
	}

	.home > .content-section.our-size {
		padding: 70px 0;
		margin: 100px 0;
	}

	.our-size .highlight span:nth-child(2) {
		font-size: 70px;
		line-height: 1em;
	}

	.our-size .highlight span:nth-child(3) {
		font-size: 16px;
	}

	.slider .slide.slide-corner-red:after,
	.slider .slide.slide-corner-blue:after,
	.slider .slide.slide-corner-:after {
		content: ' ';
		bottom: 0;
		right: 0;
		border-top: 7vw solid transparent;
		border-left: 7vw solid transparent;
		border-bottom: 7vw solid var(--slide-corner-red);
		border-right: 7vw solid var(--slide-corner-red);
		height: 0;
		width: 0;
		position: absolute;
		z-index: 3;
	}

	.slider .slide.slide-corner-red:after {
		border-bottom: 7vw solid var(--slide-corner-red);
		border-right: 7vw solid var(--slide-corner-red);
	}

	.slider .slide.slide-corner-blue:after {
		border-bottom: 7vw solid var(--slide-corner-blue);
		border-right: 7vw solid var(--slide-corner-blue);
	}

	.product-content header.page-header .row:last-child > *:last-child:after,
	.page-content header.page-header .row:last-child > *:last-child:after {
		content: ' ';
		height: 4px;
		width: 97px;
		display: block;
		background: var(--red);
		margin-top: 16px;
		display: none;
	}

	.page-content-header {
		background-clip: border-box;
		background-image: url(../../../../uploads/2023/04/top.png)!important;
		background-size: 100%;
		background-repeat: no-repeat;
		background-position: top right;
		position: relative;
		z-index: 1;
		min-height: 400px;
	}

	.page-content-header:before,
	.page-content-header:after {
		position: absolute;
		content: ' ';
		top: 0;
		bottom: 0;
		display: block;
		background-size: cover;
		background-position: center;
	}

	.page-content-header:before {
		background-position: center bottom;
	}

	.page-content-header.left-dark-blue,
	.page-content-header.left-light-blue,
	.page-content-header.left-orange,
	.page-content-header.right-dark-blue,
	.page-content-header.right-light-blue,
	.page-content-header.right-orange {
		background-image: none;
	}

	.page-content-header > * {
		z-index: 2;
		position: relative;
	}

	.page-content-header:before {
		width: 100%;
		left: 0;
		z-index: 0;
	}

	.page-content-header:after {
		width: 30%;
		right: 0;
		z-index: 1;
	}

	.page-content-header.left-dark-blue:before {
		/* background-image: url(../img/page-left-dark-blue.svg); */
	}

	.page-content-header.left-light-blue:before {
		background-image: url(../img/page-left-light-blue.svg);
	}

	.page-content-header.left-orange:before {
		background-image: url(../img/page-left-orange.svg);
	}

	.page-content-header.right-dark-blue:after {
		/* background-image: url(../img/page-right-dark-blue.svg); */
	}

	.page-content-header.right-light-blue:after {
		/* background-image: url(../img/page-right-light-blue.svg); */
	}

	.page-content-header.right-orange:after {
		/* background-image: url(../img/page-right-orange.svg); */
	}

	.page-header,
	.page-header .title {
		color: var(--white);
		text-shadow: 0 0 3px rgb(0 0 0 / 40%);
	}

	.page-header .title .bx {
		font-size: 60px;
	}

	.page-header a {
		color: var(--white);
		font-weight: 700;
	}

	.page-content {
		position: relative;
	}

	.page-content h1,
	.page-content h2,
	.page-content h3,
	.page-content h4,
	.page-content h5,
	.page-content h6 {
		margin-bottom: 1em;
	}

	.page-content:before {
		position: absolute;
		content: ' ';
		width: 100%;
		top: 0;
		height: 150px;
		/* background: #52658d; */
		z-index: 0;
	}

	.post-content-wrapper ol,
	.post-the-content ol {
		column-count: 2;
		margin-bottom: 40px;
	}

	.post-content-wrapper ol li::before,
	.post-the-content ol li::before {
		width: 55px;
		margin-left: -55px;
		float: left;
		line-height: 1em;
	}

	.post-content-wrapper ol li,
	.post-the-content ol li {
		padding-left: 55px;
		break-inside: avoid-column;
	}

	.wp-block-pullquote {
		padding: 0 0 0 0;
	}

	.wp-block-pullquote p {
		font-size: 40px;
		line-height: 1.3em;
		margin-bottom: 20px;
	}

	.wp-block-pullquote:not(.has-white-color) p {
		color: var(--black);
	}

	.wp-block-pullquote .has-white-color p {
		color: var(--white);
	}

	.wp-block-pullquote.center * {
		text-align: center!important;
	}

	.wp-block-pullquote.is-style-solid-color blockquote p {
		margin-bottom: 24px;
	}

	.merit-pullquote.has-background {
		padding: 56px 0;
		margin: 0 0 104px 0;
	}

	.merit-pullquote.has-background .wp-block-pullquote {
		margin: 0 0 0 0;
	}

	.wp-block-merit-profile.profile-card {
		width: 33%;
		display: inline-block;
		vertical-align: top;
		margin: 20px 0;
	}

	.profile-card .card-image-wrapper {
		margin-bottom: 0;
		text-align: left;
	}

	.profile-card .profile-body {
		padding: 30px 25px 30px 0;
		background: none;
	}

	.post-content-wrapper ul,
	.post-the-content ul {
		columns: 2;
		margin-bottom: 30px;
	}

	.post-content-wrapper ul,
	.post-the-content ul {
		break-inside: avoid;
	}

	.contacts .contact-form .subtitle {
		height: 1.6em;
		overflow: hidden;
	}

	.news ul.article-list {
		columns: 1;
		max-width: 800px;
		margin: 0 auto;
	}

	.news ul.article-list:before {
		left: 35%;
		left: calc(35% - 2px);
	}

	.news ul.article-list li.article {
		margin: 40px 0 40px 0;
		padding: 0 0 0 0;
	}

	.news ul.article-list li.article:before {
		left: 34%;
		left: calc(35% - 30px);
		top: 49%;
		top: calc(50% - 30px);
		height: 60px;
		width: 60px;
	}

	.news ul.article-list li.article a {
		display: flex;
		width: 100%;
		flex-direction: row;
		align-items: center;
	}

	.news ul.article-list li.article .image {
		display: inline-block;
		margin-right: 10%;
		width: 25%;
		text-align: right;
	}

	.news ul.article-list li.article .content {
		display: inline-block;
		margin-left: 10%;
		width: 55%;
	}

	.archive.post-type-archive ul.products .product a {
		flex-direction: row;
	}

	.archive.post-type-archive ul.products .title {
		font-size: 18px;
		padding: 0 0 0 0;
	}

	.wp-block-buttons > .wp-block-button.wp-block-button__width-25,
	.wp-block-buttons > .wp-block-button.wp-block-button__width-50,
	.wp-block-buttons > .wp-block-button.wp-block-button__width-75,
	.wp-block-buttons > .wp-block-button.wp-block-button__width-100 {
		flex-basis: 32%;
	}

	.home .home {
		padding-top: 40px;
	}

	.slider .slide .container {
		background-repeat: no-repeat;
		background-position: -100px center;
	}

	.slider .slide.slide-blue .container {
		background-image: url(../img/hero-blue.svg);
	}

	.slider .slide.slide-red .container {
		background-image: url(../img/hero-red.svg);
	}

	.slider .slide .container:before {
		content: ' ';
		position: absolute;
		top: 0;
		bottom: 0;
		right: 100%;
		display: block;
		width: 100vw!important;
	}

	.slider .slide.slide-blue .container:before {
		background: rgba(52, 71, 104, .7);
	}

	.slider .slide.slide-red .container:before {
		background-color: rgba(171, 19, 52, .6);
	}

	.container.slider-content {
		max-width: 100%;
		width: 100%;
		padding: 0 0 0 0;
	}

	.slider-content .dots .dot {
		width: 16px;
		height: 4px;
		border-radius: 0;
		margin: 0 8px 0 0;
		background: rgba(255,255,255, .4);
		transition: all linear .5s;
		display: inline-block;
	}

	.slider-content .dots .dot.active {
		width: 25px;
		background: rgba(255,255,255, 1);
		transition: all linear .5s;
	}

	.column-2 {
		columns: 2;
	}

	.column-3 {
		columns: 3;
	}

	.column-4 {
		columns: 4;
	}

	.post-content-wrapper {
		padding-bottom: 100px;
	}

	.wp-block-merit-accordion-content,
	.wp-block-merit-accordion {
		box-shadow: 0px 0px 20px 0px #00000008;
		padding: 0 0 0 0;
		border-bottom: none;
	}

	.wp-block-merit-accordion-content .accordion-header,
	.wp-block-merit-accordion .accordion-header {
		background-color: var(--accordion-gray);
		padding: 48px 10%;
	}

	.wp-block-merit-accordion-content .accordion-header h2,
	.wp-block-merit-accordion .accordion-header h2 {
		font-size: 30px;
	}

	.wp-block-merit-accordion-content.accordion .content,
	.wp-block-merit-accordion.accordion .content {
		padding: 0 10%;
		background: var(--accordion-white);
	}

	.wp-block-merit-accordion-content .accordion-header .arrow,
	.wp-block-merit-accordion .accordion-header .arrow {
		font-size: 30px;
	}

	.wp-block-merit-accordion-content .accordion-header .arrow .bx:before,
	.wp-block-merit-accordion .accordion-header .arrow .bx:before {
		content: "\ee23";
	}

	.wp-block-merit-accordion-content.opened .accordion-header .arrow .bx:before,
	.wp-block-merit-accordion.opened .accordion-header .arrow .bx:before {
		content: "\edee";
	}

	footer::before {
		width: calc(calc(100vw - 960px) / 2);
	}
}

@media all and (min-width: 1024px) {
	footer::before {
		width: calc(calc(100vw - 960px) / 2);
	}
}

@media all and (min-width: 1200px) {
	footer::before {
		width: calc(calc(100vw - 1140px) / 2);
	}
}

@media all and (min-width: 1400px) {
	ol {
		column-count: 3;
	}

	.wp-block-buttons > .wp-block-button.wp-block-button__width-25,
	.wp-block-buttons > .wp-block-button.wp-block-button__width-50,
	.wp-block-buttons > .wp-block-button.wp-block-button__width-75,
	.wp-block-buttons > .wp-block-button.wp-block-button__width-100 {
		flex-basis: 24%;
	}

	.slider-content .slider {
		width: 100%;
		height: 570px;
		padding-bottom: 0;
	}

	.page-content-header {
		/* background-position: bottom right; */
	}

	footer::before {
		width: calc(calc(100vw - 1320px) / 2);
	}
}


@media all and (min-width: 1600px) {
	footer::before {
		background-position: top left;
	}
}



.page-content-header img {
    max-width: 100%;
    float: left;
    width: 80%;
    position: relative;
    /* width: initial; */
}


@media(min-width:1730px){

.page-content-header img {
    float: right;

}




     
}

@media(max-width:991px){
.product-content header.page-header, .page-content header.page-header {
    background: no-repeat;
    margin: 0;
    padding: 0;
    padding-top: 30px;
    /* text-align: center; */
}

.page-content-header img {
    float: none;
}

h1.title {
    margin-bottom: 0;
}

.post-content-wrapper {
    margin-top: 0;
    padding-top: 0;
}
}


header.page-header h1.title:after {    
    content: ' ';
    height: 4px;
    width: 97px;
    display: block;
    background: var(--red);
    margin-top: 16px;
}


@media(max-width:1738px){
	
header.page-header {
    padding-top: 0;
} 	
	
	
.page-content-header {
    background-size: initial;
}	
.page-content-header.right-light-blue.left-dark-blue .col-12.pt-3 {
    margin-top: 0!IMPORTANT;
    PADDING-TOP: 0!IMPORTANT;
}

	
}
 

@media(max-width:1199px){
	
.page-content-header img{
	 
     max-width: 100%;
    float: left;
    width: 100%;
    position: relative;

}
} 
@media(max-width:991px){
.page.page-id-8590 .page-content-header.right-light-blue.left-dark-blue .row.mb-3.mt-3, 
.page-id-3455 .page-content-header.right-light-blue.left-dark-blue .row.mb-3.mt-3,
.postid-12558 .page-content-header .row.mb-3.mt-3,
.page-id-11460 .page-content-header.right-light-blue.left-dark-blue .row.mb-3.mt-3,
.page-id-8927 .page-content-header.right-orange.left-dark-blue .row.mb-3.mt-3{
    display: none!important;
}	
	
}
  	
