/* SITE DEFAULTS */

/* FONTS */

/* titillium-web-700 - latin-ext_latin */
@font-face {
	font-family: "Titillium Web";
	font-style: normal;
	font-weight: 700;
	font-display: swap;
	src: local(""), url("../fonts/titillium-web-v15-latin-ext_latin-700.woff2") format("woff2"),
		url("../fonts/titillium-web-v15-latin-ext_latin-700.woff") format("woff");
}

/* noto-sans-regular - latin-ext_latin */
@font-face {
	font-family: "Noto Sans";
	font-style: normal;
	font-weight: 400;
	font-display: swap;
	src: local(""), url("../fonts/noto-sans-v27-latin-ext_latin-regular.woff2") format("woff2"),
		url("../fonts/noto-sans-v27-latin-ext_latin-regular.woff") format("woff");
}
/* noto-sans-italic - latin-ext_latin */
@font-face {
	font-family: "Noto Sans";
	font-style: italic;
	font-weight: 400;
	font-display: swap;
	src: local(""), url("../fonts/noto-sans-v27-latin-ext_latin-italic.woff2") format("woff2"),
		url("../fonts/noto-sans-v27-latin-ext_latin-italic.woff") format("woff");
}
/* noto-sans-600 - latin-ext_latin */
@font-face {
	font-family: "Noto Sans";
	font-style: normal;
	font-weight: 600;
	font-display: swap;
	src: local(""), url("../fonts/noto-sans-v27-latin-ext_latin-600.woff2") format("woff2"),
		url("../fonts/noto-sans-v27-latin-ext_latin-600.woff") format("woff");
}
/* noto-sans-600italic - latin-ext_latin */
@font-face {
	font-family: "Noto Sans";
	font-style: italic;
	font-weight: 600;
	font-display: swap;
	src: local(""), url("../fonts/noto-sans-v27-latin-ext_latin-600italic.woff2") format("woff2"),
		url("../fonts/noto-sans-v27-latin-ext_latin-600italic.woff") format("woff");
}
/* END FONTS */

body {
	background-color: var(--white);
	word-break: break-word;
	overflow-x: hidden;
	color: var(--default-font-color);
	font-family: var(--default-font);
	font-size: var(--default-font-size);
	line-height: 1.4;
	font-weight: var(--default-font-weight);
}

:is(h1, h2, h3, h4, h5, h6)
{
  scroll-margin-top: 130px;
}

:is(h1, h2, h3, h4, h5, h6),
.editor-styles-wrapper .is-root-container :is(h1, h2, h3, h4, h5, h6) {
	font-family: var(--title-font);
	font-weight: var(--title-font-weight);
	color: var(--default-title-color);
}

h1,
.editor-styles-wrapper .is-root-container h1 {
	font-size: var(--h1-font-size);
	margin-top: var(--default-title-margin-top);
	margin-bottom: var(--default-title-margin-bottom);
}
h2,
.editor-styles-wrapper .is-root-container h2 {
	font-size: var(--h2-font-size);
	margin-top: var(--default-title-margin-top);
	margin-bottom: var(--default-title-margin-bottom);
}
h3,
.editor-styles-wrapper .is-root-container h3 {
	font-size: var(--h3-font-size);
	margin-top: var(--default-title-margin-top);
	margin-bottom: var(--default-title-margin-bottom);
}
h4,
.editor-styles-wrapper .is-root-container h4 {
	font-size: var(--h4-font-size);
	margin-top: var(--default-title-margin-top);
	margin-bottom: var(--default-title-margin-bottom);
}
h5,
.editor-styles-wrapper .is-root-container h5 {
	font-size: var(--h5-font-size);
	margin-top: var(--default-title-margin-top);
	margin-bottom: var(--default-title-margin-bottom);
}
h6,
.editor-styles-wrapper .is-root-container h6 {
	font-size: var(--h6-font-size);
	margin-top: var(--default-title-margin-top);
	margin-bottom: var(--default-title-margin-bottom);
}

a,
.editor-styles-wrapper .is-root-container a {
	color: var(--water-blue);
}

strong,
.editor-styles-wrapper .is-root-container strong {
	font-weight: var(--strong-font-weight);
}

input[type="submit"] {
	cursor: pointer;
}

figure,
img {
	max-width: 100%;
}

/* auxiliary classes */
/* .alignnone {
	margin: 0.5em 1em 1em 0;
} */
.alignleft {
	float: left;
    margin: 0.5em 1em 0.5em 0;
}
.aligncenter {
	margin-left: auto;
	margin-right: auto;
	display: block;
}
.alignright {
    float: right;
    margin: 0.5em 0 0.5em 1em;
}

.default-margin-top {
	margin-top: var(--default-margin-top-bottom);
}
.default-margin-bottom {
	margin-bottom: var(--default-margin-top-bottom);
}

.white-bg {
	background-color: var(--white);
}
.grey-bg {
	background-color: var(--light-grey);
}
.black-bg {
	background-color: var(--black);
}
.light-navy-bg {
	background-color: var(--light-navy);
}
.white-grey-bg {
	background-color: var(--white);
	background-image: linear-gradient(var(--white) 50%, var(--light-grey) 50%);
}
.grey-white-bg {
	background-color: var(--light-grey);
	background-image: linear-gradient(var(--light-grey) 50%, var(--white) 50%);
}
.transparent-bg {
	background-color: transparent;
	background-image: none;
}

.img-ratio-wrapper {
	padding-top: calc(26 / 35 * 100%);
	height: 0;
	overflow: hidden;
	position: relative; /* ou qualquer outra que não static */
	margin: 0;
}

.img-ratio-wrapper img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.video-ratio-wrapper {
	width: 100%;
}
/* .video-ratio-wrapper {
	padding-top: calc(9 / 16 * 100%);
	width: 100%;
	height: 0;
	overflow: hidden;
	position: relative; 
	margin: 0;
}
*/
.video-ratio-wrapper iframe {
	/* position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 1; */
  aspect-ratio: 16/9;
  width: 100%;
  height: auto;
} 

.section-title,
.sub-section-title {
	font-size: 28px;
	text-align: center;
	line-height: 1;
	margin-top: 0;
	margin-bottom: 30px;
}
.section-title .description {
	display: block;
	color: var(--water-blue);
	font-size: 12px;
	font-weight: var(--strong-font-weight);
	text-transform: uppercase;
	width: 100%;
	margin-bottom: 10px;
}
.section-title .title {
	color: var(--white);
	margin-top: 0;
}
.sub-section-title {
	font-size: 26px;
	margin-top: var(--default-margin-top-bottom);
	margin-bottom: 15px;
}

/* Other CSS */

.esun-content {
	max-width: var(--site-width);
	margin-left: auto;
	margin-right: auto;
	padding-left: 15px;
	padding-right: 15px;
}

.mv-button-wrapper {
	padding-left: 15px;
	padding-right: 15px;
}
.mv-button {
	display: flex;
	justify-content: center;
	align-items: center;
	max-width: 350px;
	width: 100%;
	min-height: 55px;
	margin-left: auto;
	margin-right: auto;
	padding: 5px 15px;
	background-color: var(--water-blue);
	border: none;
	border-radius: 5px;
	box-shadow: var(--default-box-shadow);
	color: var(--white);
	font-size: var(--small-font-size);
	font-weight: var(--strong-font-weight);
	text-align: center;
	text-decoration: none;
	text-transform: u;
}

/* Reusable blocks */
.post-block-column {
	display: grid;
	grid-template-columns: 1fr;
	column-gap: 30px;
	row-gap: 30px;
	margin-bottom: var(--default-margin-top-bottom);
}
.post-block {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
.post-block .content {
	position: relative;
	display: block;
	flex-grow: 1;
	max-width: 350px;
	text-decoration: none;
	color: var(--default-font-color);
	box-shadow: var(--default-box-shadow);
	background-color: var(--white);
	border-radius: 5px;
}
.post-block .content .category {
	color: var(--water-blue);
	font-size: 12px;
	font-weight: var(--strong-font-weight);
	text-transform: uppercase;
	padding: 15px 15px 10px 15px;
}
.post-block .content .img-ratio-wrapper {
	border-radius: 5px 5px 0 0;
}
.post-block .content .title {
	display: flex;
	justify-content: left;
	align-items: center;
	min-height: auto;
	margin: 0;
	padding: 0 15px 15px 15px;
	font-size: 22px;
	text-align: left;
}

.post-list-column {
	display: grid;
}
.post-list-column .mv-button-wrapper {
	padding-left: 0;
	padding-right: 0;
	display: flex;
	align-items: flex-end;
}
.post-list-item .content {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	max-width: 350px;
	min-height: 94px; /* 64 da imagem + 30 de padding */
	margin: auto;
	padding: 15px 0 15px 100px;
	text-decoration: none;
}
.white-bg .post-list-item .content,
.grey-bg .post-list-item .content {
	border-bottom: 1px solid var(--border-color-bg-grey);
}
.light-navy-bg .post-list-item .content {
	border-bottom: 1px solid var(--border-color-bg-navy);
}
.post-list-item:last-of-type .content {
	border-bottom: none;
}
.post-list-item .content img {
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	width: 85px;
	height: 64px;
	border-radius: 3px;
	object-fit: cover;
}
.post-list-item .content .category {
	flex-basis: 100%;
	color: var(--water-blue);
	font-size: 10px;
	font-weight: var(--strong-font-weight);
	text-transform: uppercase;
}
.post-list-item .content .title {
	flex-basis: 100%;
	margin: 0;
	font-size: 18px;
	line-height: 1.2;
}

.post-blocks-with-list {
	display: grid;
	grid-template-columns: 1;
	column-gap: 30px;
	row-gap: 30px;
}
.post-blocks-with-list .post-block .content .img-ratio-wrapper {
	padding-top: calc(210 / 330 * 100%);
}
.post-blocks-with-list .post-list-column .content .img-ratio-wrapper {
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}
.post-blocks-with-list .post-list-column .mv-button {
	margin-top: 15px;
}

/* Specific areas */
.search-form-wrapper {
	position: relative;
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	height: var(--search-form-wrapper-height);
	padding-top: 0;
	padding-bottom: 50px;
	background-color: var(--light-grey);
}
.search-form-wrapper .site-name {
	color: var(--white);
	text-align: center;
  text-transform: uppercase;
	margin-top: 0;
	margin-bottom: 30px;
}
.search-form-wrapper .search-bg {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: bottom;
}
.search-form {

	width: 100%;
	line-height: 1;
	margin: 0;
	z-index: 1;
	padding-left: 15px;
	padding-right: 15px;
}
.search-title {
  
	font-family: var(--title-font);
	color: var(--white);
	display: none;
	/* display: block; */
	text-align: center;
	margin-top: 0;
	margin-bottom: 28px;
}
.search-fields {
  max-width: 600px;
	position: relative;
	display: grid;
	grid-template-columns: 1fr 55px;
	box-shadow: var(--default-box-shadow);
  margin-right: auto;
  margin-left: auto;
}
.search-field {
	position: relative;
	display: inline-block;
	width: 100%;
	height: 55px;
	border: none;
	padding: 10px 30px;
	outline: none;
	border-top-left-radius: 4px;
	border-bottom-left-radius: 4px;
}
.search-field:hover,
.search-field:focus,
.search-field:focus-visible {
	background-color: var(--light-grey);
}
.search-submit {
	width: 55px;
	height: 55px;
	background-color: var(--water-blue);
	border: none;
	border-top-right-radius: 4px;
	border-bottom-right-radius: 4px;
	border: none;
	cursor: pointer;
}
.search-submit:hover {
	background-color: var(--water-blue-hover);
}
.search-button {
	width: 25px;
	height: 25px;
}
/* .search-field::placeholder {
	opacity: 0;
} */

.social-networks {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	column-gap: 30px;
}
.social-networks a {
	text-decoration: none;
	display: inline-block;
}
.icon-instagram {
	width: 40px;
	height: 40px;
}
.icon-youtube {
	width: 56px;
	height: 40px;
}
.icon-facebook {
	width: 21px;
	height: 40px;
}
.icon-whatsapp {
	width: 45px;
	height: 45px;
}
.icon-telegram {
	width: 45px;
	height: 38px;
}
.icon-tiktok {
	width: 27px;
	height: 32px;
}

.plan-trip-wrapper {
	padding-bottom: 30px;
}
.plan-trip-wrapper .cta {
	box-shadow: none;
}
.plan-trip-wrapper .cta.plan-trip .plan-trip-title {
	color: var(--light-navy);
}
.plan-trip-wrapper .cta.plan-trip .plan-trip-item:hover .box {
	box-shadow: 0 0 0 8px #0000001a;
}
.plan-trip-wrapper .cta.plan-trip .plan-trip-item .item-title {
	color: var(--light-navy);
}
.plan-trip-title {
	margin-top: 0;
	margin-bottom: 28px;
	text-align: center;
}

.plan-trip-items {
	max-width: 800px;
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-evenly;
	align-items: center;
	margin-left: auto;
	margin-right: auto;
	column-gap: 10px;
	row-gap: 30px;
}
.plan-trip-item {
	width: 100px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	text-decoration: none;
}
.plan-trip-item .box {
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: var(--water-blue);
	border-radius: 100%;
	box-shadow: var(--default-box-shadow);
}
.plan-trip-item .box .icon {
	width: 80px;
	height: 80px;
	padding: 18px;
}
.plan-trip-item:hover .box {
	box-shadow: 0 0 0 8px #0000001a;
}
.plan-trip-item:hover .box .icon {
	padding: 15px;
}
.plan-trip-item .item-title {
	flex-shrink: 0;
	flex: 1 0 80px;
	margin: 20px 0 0 0;
	color: var(--light-navy);
	font-size: 14px;
	font-weight: var(--strong-font-weight);
	text-align: center;
}

.newsletter {
	/* border-top: 1px solid var(--water-blue-hover); */
	padding-top: 30px;
	text-align: left;
}
.newsletter-header {
	display: flex;
	justify-content: left;
	align-items: center;
	column-gap: 15px;
	margin-bottom: 20px;
}

.newsletter-header .title {
	margin-top: 0;
	margin-bottom: 10px;
	font-size: 20px;
	line-height: 1;
}
.newsletter-header .newsletter-cta {
	font-size: var(--smaller-font-size);
	line-height: 1;
}
.newsletter input[type="email"] {
	width: 100%;
	height: 40px;
	background: none;
	color: var(--white);
	border: none;
	border-bottom: 1px solid var(--water-blue);
	margin-bottom: 30px;
	font-size: var(--smaller-font-size);
	outline: none;
}
.newsletter .response {
	margin-bottom: 10px;
}
.newsletter input::placeholder {
	color: var(--white);
}
.newsletter input[type="submit"] {
	width: 100%;
	height: 40px;
	background-color: var(--water-blue);
	color: var(--white);
	font-size: var(--smaller-font-size);
	font-weight: var(--strong-font-weight);
	line-height: 40px;
	text-align: center;
	border: none;
	border-radius: 5px;
}

.cta-wrapper {
	padding-top: var(--default-text-margin);
	padding-bottom: var(--default-text-margin);
}
.cta {
	position: relative;
	/* background-color: var(--light-navy); */
	box-shadow: var(--default-box-shadow);
	
	color: var(--white);
	max-width: 425px;
	
	padding: 30px;
	display: grid;
	grid-template-columns: 1fr;
	column-gap: 40px;
	row-gap: 20px;
	overflow: hidden;
}
.cta .type,
.cta .content {
	position: relative;
	display: flex;
	flex-flow: column;
	justify-content: space-evenly;
	align-items: center;
}
.cta .type .icon {
	width: 60px;
	height: auto;
}
.cta .title {
	color: var(--white);
	font-size: 34px;
	margin: 0 0 20px 0;
	max-width: 300px;
	text-align: center;
}
.cta .text {
	font-size: 16px;
	margin: 0;
	line-height: 1.75;
	text-align: center;
}
.cta .mv-buttons {
	position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 20px;
}
.cta .mv-button {
	min-height: 80px;
	text-align: left;
	margin: 5px 0;
	padding: 15px;
	font-size: 14px;
	text-align: center;
}
.cta .mv-button .icon {
	margin-right: 20px;
	display: none;
}
.cta.newsletter .mv-buttons {
	grid-template-columns: 1fr;
}
.cta.newsletter .icon {
	height: 41px;
}
.cta.newsletter .mc4wp-response {
	font-size: var(--smaller-font-size);
}
.cta.newsletter .newsletter-form-wrapper {
	width: 100%;
}
.cta.groups .icon-groups {
	height: 35px;
}
.cta.travel-more .icon {
	width: 80px;
	height: 80px;
}
.cta.travel-more .title {
	margin-bottom: 0;
}
.cta.travel-more .mv-buttons {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	row-gap: 20px;
}
.cta.travel-more .mv-button {
	min-height: 55px;
}
.cta.apps .icon-apps {
	width: 60px;
	height: 59px;
}
.cta.apps .mv-buttons .icon {
	width: 100%;
	height: auto;
	aspect-ratio: 228/68;
}
.cta.plan-trip {
	display: block;
}
.cta.plan-trip::before {
	display: none;
}
.cta.plan-trip .plan-trip-title {
	color: var(--white);
}
.cta.plan-trip .plan-trip-item:hover .box {
	box-shadow: 0 0 0 8px var(--water-blue-hover);
}
.cta.plan-trip .plan-trip-item .item-title {
	color: white;
}

.recent-posts-wrapper {
	padding-top: var(--default-margin-top-bottom);
	padding-bottom: var(--default-margin-top-bottom);
}

.news-wrapper {
	padding-top: var(--default-margin-top-bottom);
	padding-bottom: var(--default-margin-top-bottom);
}

.sponsored-wrapper {
	padding-top: 20px;
	padding-bottom: 20px;
}
.sponsored-wrapper .section-title,
.sponsored-wrapper .sub-section-title,
.sponsored-wrapper .post-list-column .content .title {
	color: var(--white);
}

.webstories-wrapper
{
  padding-top: var(--default-margin-top-bottom);
	padding-bottom: var(--default-margin-top-bottom);
}

.featured-destinations-wrapper {
	padding-top: var(--default-margin-top-bottom);
	padding-bottom: var(--default-margin-top-bottom);
}
.featured-destination-list {
	display: grid;
	grid-template-columns: 1fr;
	column-gap: 30px;
	row-gap: 30px;
	justify-content: center;
	margin-bottom: var(--default-margin-top-bottom);
}
.featured-destination-list .post-block .content .title {
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 90px;
	margin: 0;
	padding: 0 15px;
	font-size: 22px;
	text-align: center;
}

.video-wrapper {
	padding-top: var(--default-margin-top-bottom);
	padding-bottom: var(--default-margin-top-bottom);
}
.video-wrapper .post-blocks-with-list {
	row-gap: 0;
}
.video-wrapper .post-blocks-with-list .post-block-column {
	grid-template-columns: 1fr;
	margin-bottom: 0;
}
.video-wrapper .post-blocks-with-list .post-block-column .post-block {
	max-width: 350px;
	justify-self: center;
}
.video-wrapper .post-blocks-with-list .post-block-column .content {
	box-shadow: none;
	background-color: none;
	border-radius: none;
}
.video-wrapper .post-blocks-with-list .post-block-column .content .title {
	font-size: var(--h4-font-size);
}

.magazines-wrapper {
	padding-top: var(--default-margin-top-bottom);
	padding-bottom: var(--default-margin-top-bottom);
}
.magazines {
	display: grid;
	grid-template-columns: 1fr;
	column-gap: 30px;
	row-gap: 30px;
	justify-content: center;
	padding-top: 15px;
	padding-bottom: 15px;
}
.magazine {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
.magazine .content {
	display: block;
	flex-grow: 1;
	text-decoration: none;
	max-width: 350px;
}
.magazine .title {
	font-size: 26px;
	line-height: 1;
	text-align: center;
	margin-top: 0;
	margin-bottom: 15px;
}
.magazine .subtitle {
	color: var(--default-font-color);
	font-size: var(--small-font-size);
	line-height: 1;
	text-align: center;
	margin-top: 0;
	margin-bottom: 20px;
}
.light-navy-bg .magazine .title,
.light-navy-bg .magazine .subtitle,
.black-bg .magazine .title,
.black-bg .magazine .subtitle {
	color: var(--white);
}
.magazine .img-ratio-wrapper {
	margin: 0 0 30px 0;
	padding-top: calc(500 / 350 * 100%);
	border-radius: 5px;
}

@media only screen and (min-width: 1025px) {
	.section-title {
		text-align: left;
		font-size: 34px;
	}
	.sub-section-title {
		margin-top: 0;
		text-align: left;
	}

	.search-form-wrapper {
		padding-bottom: 100px;
	}
	.search-form-wrapper .site-name {
		margin-bottom: 50px;
	}
	.search-form-container .search-title {
		display: block;
		margin-bottom: 40px;
	}
	.search-fields {
		grid-template-columns: 1fr 55px;
	}
	.search-field {
		height: 55px;
	}
	/* .search-field::placeholder {
		opacity: 0;
	} */
	.search-submit {
		width: 55px;
		height: 55px;
	}
	.search-button {
		width: 25px;
		height: 25px;
	}

	.plan-trip-title {
		margin-bottom: 40px;
	}

	.post-block-column {
		grid-template-columns: repeat(3, 1fr);
	}

	.post-blocks-with-list {
		grid-template-columns: 1fr 350px;
	}
	.post-blocks-with-list .post-block-column {
		grid-template-columns: repeat(2, 1fr);
		margin-bottom: 0;
	}

	.featured-destination-list {
		grid-template-columns: repeat(3, 1fr);
	}

	.video-wrapper .post-blocks-with-list .post-block-column .post-block {
		max-width: none;
		width: 100%;
	}
	.video-wrapper .post-blocks-with-list .post-block-column .content {
		max-width: none;
	}

	.cta {
		grid-template-columns: 300px 1fr 300px;
		max-width: var(--site-width);
		height: 300px;
		border-radius: 5px;
	}
	.cta::before {
		content: "";
		position: absolute;
		width: 400px;
		height: 400px;
		background-color: var(--cta-detail-blue);
		opacity: 0.3;
		border-radius: 20px;
		top: 50%;
		left: -150px;
		transform: translateY(-50%) rotate(45deg);
	}
	.cta .type,
	.cta .content,
	.cta .mv-buttons {
		align-items: flex-start;
	}
	.cta .type .icon {
		width: 200px;
	}
	.cta .title {
		margin: 0;
		text-align: left;
	}
	.cta .text {
		font-size: 18px;
		line-height: 1.4;
		text-align: left;
	}
	.cta .mv-buttons {
		display: flex;
		flex-flow: column;
		justify-content: space-evenly;
		align-items: center;
	}
	.cta .mv-button {
		padding: 5px 20px;
		font-size: 16px;
		text-align: left;
	}
	.cta .mv-button .icon {
		display: block;
	}
	.cta.travel-more {
		grid-template-columns: 300px 1fr 350px;
	}
	.cta.travel-more .icon-travel-more {
		height: 200px;
	}
	.cta.apps .type .icon {
		width: 125px;
		height: 123px;
		margin-left: 40px;
		margin-bottom: 20px;
	}
	.cta.apps .text {
		max-width: 350px;
	}
	.cta.apps .mv-buttons .icon {
		width: 228px;
		height: auto;
	}
	.cta.newsletter {
		grid-template-columns: 300px 1fr 1fr;
	}
	.cta.newsletter .icon-newsletter {
		width: 125px;
		height: 87px;
		margin-left: 50px;
	}
	.cta.newsletter .content {
		justify-content: center;
	}
	.cta.newsletter .title {
		margin-bottom: 30px;
	}
	.cta.groups .icon-groups {
		height: 116px;
	}

	.magazines {
		grid-template-columns: repeat(3, 1fr);
	}
	.magazine figure {
		margin: 0 0 40px 0;
	}
}
