/*
Theme name: NZN Mackenzie V2
Theme URI:
Author: NZN
Description: Tema desenvolvido para o blog da Mackenzie
Version: 3.7
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------

	0. 	Setup
	2. 	Header
	3. 	Carousel principal
	4.  Carousel categorias
				a. Vestibular
				b. Profissoes
				c. Mercado e Carreira
				d. Ultimas materias
	5.  Quizz
	6. 	Sidebar mobile
	7.  Footer
	8.  Single post
	9.  Pagination
	10. Search
	11. Media Queries
    12. Rd
	13. Social Medias
    14. Rich content
    15. Bootstrap custom
    16. Breadcrumb
	21. Banners Anúncios
----------------------------------------------------------------------------- */

/* -------------------------------------------------------------------------- */

/*	0. Setup
/* -------------------------------------------------------------------------- */

@import url("https://fonts.googleapis.com/css2?family=Inter&display=swap");

*,
*:after,
*:before {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	text-decoration: none;
}

body,
html {
	border: none;
	margin: 0;
	padding: 0;
	font-family: "Roboto";
	font-size: 100%;
	scroll-behavior: smooth;
}

a {
	text-decoration: none !important;
}

blockquote::before,
blockquote::after {
	content: "";
}

h1,
h2,
h3,
h4,
h5,
h6,
a,
input,
button {
	font-family: "Roboto";
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
	margin: 0;
	padding: 0;
}

h1,
h2,
h3 {
	color: #333;
}

:root {
	--cor-primaria: #cc141d;
	--cor-vestibular: #e5007e;
	--cor-profissoes: #008ed3;
	--cor-mercado: #2fb113;
	--cor-materias: #404040;
}

html {
	background-color: #fff;
	font-size: 16px;
	overflow-x: hidden;
	overflow-y: scroll;
	text-rendering: optimizeSpeed;
}

body {
	color: #4a4a4a !important;
	font-size: 1em;
	font-weight: 400;
	line-height: 1.5;
}

/* width */
::-webkit-scrollbar {
	width: 5px;
}

/* Track */
::-webkit-scrollbar-track {
	background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
	background: var(--cor-primaria);
}

strong {
	color: #363636;
	font-weight: 700;
}

figcaption {
	color: #000;
	display: block;
	font-size: 14px;
	font-weight: 300;
	opacity: 0.4;
	padding: 5px 10px;
	text-align: center;
}

textarea:focus,
input:focus {
	outline: none;
}

/* -------------------------------------------------------------------------- */

/*	2.	Header
/* -------------------------------------------------------------------------- */

header.header {
	z-index: 8;
	margin-bottom: 30px;
	background-color: var(--cor-primaria);
	position: sticky;
	top: 0;
	left: 0;
}

.navbar {
	display: flex !important;
	justify-content: space-between !important;
	align-items: center !important;
	height: 80px !important;
	column-gap: 40px !important;
	padding: 0 !important;
	flex-wrap: nowrap !important;
}

.navbar__logo {
	display: flex;
	align-items: center;
	column-gap: 30px;
}

.navbar__logo span{
	color: white;
	font-weight: bold;
}

@media (max-width: 768px) {
  .navbar__logo span{
		display: none;
	}
}

.navbar__menu-icon {
	display: none;
	cursor: pointer;
}

.navbar__menu {
	display: flex;
	align-items: center;
	justify-content: space-between;
	column-gap: 30px;
	height: 100%;
	margin: 0 !important;
}

.navbar__menu li {
	height: 100%;
	list-style: none;
	display: flex;
	align-items: center;
	position: relative;
	cursor: pointer;
}

.navbar__menu li a {
	color: #fff;
	text-decoration: none;
	font: normal normal 400 15px/24px Roboto;
}

.navbar__menu li:last-child a {
	padding: 10px 20px;
	border-radius: 8px;
	border: none;
	cursor: pointer;
	background-color: #b6161e;
	color: #fff !important;
	font: normal normal 400 .95rem/1.5rem Roboto;
	box-shadow: 0px 1px 20px rgb(252 56 56 / 40%);
}

.navbar__menu .sub-menu {
	position: absolute;
	top: 95%;
	left: 0px;
	width: 266px;
	padding: 0px;
	display: none;
	border-top: 4px solid rgb(134, 19, 19);
	background: #fff;
	-webkit-box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
	-moz-box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
	box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.navbar__menu .sub-menu li {
	padding: 20px;
	border-bottom: 1px solid #ebe9e9;
}

.navbar__menu .sub-menu li:hover {
	background-color: #e4dede65;
}

.navbar__menu .sub-menu li:last-child {
	border-bottom: none;
}

.navbar__menu .sub-menu li:last-child a {
	color: #fff;
	text-decoration: none;
	font: normal normal 400 16px/24px Roboto;
	background: none !important;
	box-shadow: none !important;
	color: var(--cor-materias) !important;
	padding: 0 !important;
}

.navbar__menu .sub-menu li a {
	color: var(--cor-materias);
}

.navbar .search {
	position: relative;
}

.navbar .search__results {
	width: 500px;
	height: 0px;
	position: absolute;
	background-color: #fff;
	top: 50px;
	left: 0;
	box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
	border-radius: 0px 0px 10px 10px;
	overflow: auto;
	transition: all 0.8s ease;
}

.navbar .search__results.search__results--active {
	height: 500px;
	transition: all 0.8s ease;
}

.search__results-item {
	padding: 30px;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	column-gap: 50px;
	border-bottom: 1px solid #ecf0f1;
	color: var(--cor-materias);
}

.search__results-item:hover {
	color: var(--cor-primaria);
}

.search__results-item div {
	overflow: hidden;
	display: block;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

.search__results-item img {
	width: 120px;
	border-radius: 5px;
}

.search__results .not_found {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	margin-top: 50px;
}

.search__results .not_found img {
	width: 200px;
}

.navbar .search input {
	height: 40px;
	padding: 20px 40px 20px 20px;
	background: #b6161e;
	border: 1px solid #f1afb2;
	box-sizing: border-box;
	border-radius: 4px;
	color: #fff;
	width: 200px;
}

.navbar .search span.search__icon {
	position: absolute;
	right: 10px;
	top: 8px;
}

.nav-item--site {
	color: #fff !important;
	transition: all 0.3s ease-in-out !important;
	font-family: "Open Sans", sans-serif;
	font-weight: 600;
	font-size: 15px;
}

.nav-link {
	color: #fff !important;
	padding: 24px !important;
	transition: all 0.3s ease-in-out !important;
	font: normal medium Roboto !important;
	height: 72px;
}

.navbar--mk {
	background-color: var(--cor-primaria) !important;
	-webkit-transition: all 0.5s ease;
	-moz-transition: position 10s;
	-ms-transition: position 10s;
	-o-transition: position 10s;
	transition: all 0.5s ease;
}

.nav-item i {
	color: #fff;
	cursor: pointer;
}

.sticky {
	position: fixed;
	width: 100%;
	top: 0;
	animation: smoothScroll 1s forwards;
}

.menu__icon {
	display: none !important;
}

@keyframes smoothScroll {
	0% {
		transform: translateY(-40px);
	}
	100% {
		transform: translateY(0px);
	}
}

/* -------------------------------------------------------------------------- */

/*	3. Carousel principal
/* -------------------------------------------------------------------------- */

.carousel-principal {
	width: 100%;
	position: relative;
	max-width: 100%;
	margin: auto;
	background: #fff;
	box-shadow: 0px 14px 80px rgba(34, 35, 58, 0.2);
	padding: 25px;
	border-radius: 25px;
	height: 400px;
	transition: all 0.2s;
}

@media screen and (max-width: 992px) {
	.carousel-principal {
		max-width: 680px;
		height: 400px;
	}
}

@media screen and (max-width: 768px) {
	.carousel-principal {
		min-height: auto;
		height: auto;
		margin: 20% auto 3%;
	}
}

@media screen and (max-height: 500px) and (min-width: 992px) {
	.carousel-principal {
		height: 350px;
	}
}

.carousel-principal__item {
	display: flex;
	align-items: center;
}

@media screen and (max-width: 768px) {
	.carousel-principal__item {
		flex-direction: column;
	}
}

.carousel-principal__item.swiper-slide-active .carousel-principal__img img {
	opacity: 1;
	transition-delay: 0.3s;
}

.carousel-principal__item.swiper-slide-active .carousel-principal__content > * {
	opacity: 1;
	transform: none;
}

.carousel-principal__item.swiper-slide-active
	.carousel-principal__content
	> *:nth-child(1) {
	transition-delay: 0.3s;
}

.carousel-principal__item.swiper-slide-active
	.carousel-principal__content
	> *:nth-child(2) {
	transition-delay: 0.4s;
}

.carousel-principal__item.swiper-slide-active
	.carousel-principal__content
	> *:nth-child(3) {
	transition-delay: 0.5s;
}

.carousel-principal__item.swiper-slide-active
	.carousel-principal__content
	> *:nth-child(4) {
	transition-delay: 0.6s;
}

.carousel-principal__item.swiper-slide-active
	.carousel-principal__content
	> *:nth-child(5) {
	transition-delay: 0.7s;
}

.carousel-principal__item.swiper-slide-active
	.carousel-principal__content
	> *:nth-child(6) {
	transition-delay: 0.8s;
}

.carousel-principal__item.swiper-slide-active
	.carousel-principal__content
	> *:nth-child(7) {
	transition-delay: 0.9s;
}

.carousel-principal__item.swiper-slide-active
	.carousel-principal__content
	> *:nth-child(8) {
	transition-delay: 1s;
}

.carousel-principal__item.swiper-slide-active
	.carousel-principal__content
	> *:nth-child(9) {
	transition-delay: 1.1s;
}

.carousel-principal__item.swiper-slide-active
	.carousel-principal__content
	> *:nth-child(10) {
	transition-delay: 1.2s;
}

.carousel-principal__item.swiper-slide-active
	.carousel-principal__content
	> *:nth-child(11) {
	transition-delay: 1.3s;
}

.carousel-principal__item.swiper-slide-active
	.carousel-principal__content
	> *:nth-child(12) {
	transition-delay: 1.4s;
}

.carousel-principal__item.swiper-slide-active
	.carousel-principal__content
	> *:nth-child(13) {
	transition-delay: 1.5s;
}

.carousel-principal__item.swiper-slide-active
	.carousel-principal__content
	> *:nth-child(14) {
	transition-delay: 1.6s;
}

.carousel-principal__item.swiper-slide-active
	.carousel-principal__content
	> *:nth-child(15) {
	transition-delay: 1.7s;
}

.carousel-principal__img {
	width: 500px;
	flex-shrink: 0;
	height: 300px;
	background-image: linear-gradient(147deg, #fe8a39 0%, #fd3838 74%);
	border-radius: 20px;
	transform: translateX(-60px);
	overflow: hidden;
	display: block;
}

.carousel-principal__img:after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 20px;
	opacity: 0.8;
}

.carousel-principal__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	opacity: 0;
	border-radius: 20px;
	transition: all 0.3s;
}

.carousel-principal__img:hover img {
	transform: scale(1.25) !important;
}

@media screen and (max-width: 768px) {
	.carousel-principal__img {
		transform: translateY(-50%);
		width: 100%;
	}
}

@media screen and (max-width: 576px) {
	.carousel-principal__img {
		width: 100%;
		height: 200px;
	}
}

@media screen and (max-height: 500px) and (min-width: 992px) {
	.carousel-principal__img {
		height: 270px;
	}
}

.carousel-principal__content {
	padding-right: 6%;
}

@media screen and (max-width: 768px) {
	.carousel-principal__content {
		margin-top: -20%;
		text-align: center;
		padding: 0 30px;
	}
}

@media screen and (max-width: 576px) {
	.carousel-principal__content {
		padding: 0;
		text-align: left !important;
	}
	.carousel-principal__text {
		display: none;
	}
}

.carousel-principal__content > * {
	opacity: 0;
	transform: translateY(25px);
	transition: all 0.4s;
}

.carousel-principal__code {
	color: #ababab;
	margin-bottom: 15px;
	display: block;
	font-weight: 500;
	font-size: 0.9em;
}

.carousel-principal__title {
	font-weight: 700;
	font-size: 1.5em;
	margin-bottom: 20px;
}

.carousel-principal__title a {
	color: var(--cor-materias);
	font-family: Roboto, Open\Sans, "sans serif" !important;
	font-size: 1.3em !important;
	line-height: 1.2 !important;
}

.carousel-principal__title a:hover {
	color: var(--cor-primaria);
}

.carousel-principal__text {
	color: #4e4a67;
	margin-bottom: 30px;
	line-height: 1.5em;
}

.carousel-principal__button {
	display: inline-flex;
	padding: 15px 35px;
	background-color: var(--cor-primaria);
	border-radius: 50px;
	color: #fff;
	box-shadow: 0px 1px 20px rgba(252, 56, 56, 0.4);
	text-decoration: none;
	justify-content: center;
	text-align: center;
	font-family: "Open Sans", sans-serif;
	font-weight: 700;
}

.carousel-principal__button:hover {
	color: #fff !important;
}

@media screen and (max-width: 576px) {
	.carousel-principal__button {
		width: 100%;
		display: none;
	}
	.carousel-principal__title a {
		font-size: 1em !important;
	}
}

.carousel-principal .swiper-container-horizontal > .swiper-pagination-bullets,
.carousel-principal .swiper-pagination-custom,
.carousel-principal .swiper-pagination-fraction {
	bottom: 10px;
	left: 0;
	width: 100%;
}

.swiper-container {
	position: unset !important;
}

.carousel-principal__pagination {
	position: absolute;
	z-index: 1;
	right: 20px;
	width: 11px !important;
	text-align: center;
	left: auto !important;
	top: 50%;
	bottom: auto !important;
	transform: translateY(-50%);
}

@media screen and (max-width: 768px) {
	.carousel-principal__pagination {
		transform: translateX(-50%);
		left: 50% !important;
		top: 28%;
		width: 100% !important;
		display: flex;
		justify-content: center;
		align-items: center;
	}
}

.carousel-principal__pagination.swiper-pagination-bullets
	.swiper-pagination-bullet {
	margin: 8px 0;
}

@media screen and (max-width: 768px) {
	.carousel-principal__pagination.swiper-pagination-bullets
		.swiper-pagination-bullet {
		margin: 0 5px;
	}
}

.carousel-principal__pagination .swiper-pagination-bullet {
	background: #062744;
	opacity: 0.2;
	transition: all 0.3s;
}

@media screen and (max-width: 578px) {
	.carousel-principal__pagination .swiper-pagination-bullet {
		opacity: 1;
		background: #fff;
	}
}

.carousel-principal__pagination .swiper-pagination-bullet-active {
	opacity: 1;
	background: var(--cor-primaria);
	box-shadow: 0px 0px 20px rgba(252, 56, 56, 0.3);
}

/* -------------------------------------------------------------------------- */

/*	4. Carousel categorias
/* -------------------------------------------------------------------------- */

.card__category {
	border-left: 3px solid red;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
	transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
	padding: 5%;
	text-align: center;
}

.card__category h3 {
	color: #333;
	font-size: 20px;
	font-weight: 700;
	line-height: 1.3;
	padding-bottom: 8px;
	text-transform: uppercase;
}

.carousel__info {
	padding-top: 20px !important;
}

.carousel__info--label {
	font-weight: 500;
	font-size: 13px;
	color: #ababab;
}

.carousel__info--icon {
	margin-right: 5px;
}

.carousel__info--icon img {
	width: 13px !important;
	height: 13px !important;
}

.swiper-button-prev {
	position: absolute;
	top: 0 !important;
	width: 50px !important;
	height: 50px !important;
	margin-top: 115px !important;
	margin-left: -2% !important;
	z-index: 1 !important;
	cursor: pointer;
	background-size: 50px 50px !important;
	background-position: center !important;
	background-repeat: no-repeat !important;
	background-image: url("https://blog.mackenzie.br/wp-content/uploads/2021/02/arrow-nav-left.svg") !important;
}

.swiper-button-next {
	position: absolute;
	top: 0 !important;
	width: 50px !important;
	height: 50px !important;
	margin-top: 115px !important;
	margin-right: -2% !important;
	z-index: 1 !important;
	cursor: pointer;
	background-size: 50px 50px !important;
	background-position: center !important;
	background-repeat: no-repeat !important;
	background-image: url("https://blog.mackenzie.br/wp-content/uploads/2021/02/arrow-nav-right.svg") !important;
}

.swiper-button-prev.main,
.swiper-button-next.main {
	margin-top: 170px !important;
}

.swiper-button-prev.main {
	margin-left: -75px !important;
}

.swiper-button-next.main {
	margin-right: -40px !important;
}

@media screen and (max-width: 768px) {
	.swiper-button-prev.main,
	.swiper-button-next.main {
		margin-top: 0px !important;
	}

	.swiper-button-prev.main {
		margin-left: -15px !important;
	}
	.swiper-button-next.main {
		margin-right: -15px !important;
	}
}

.carousel__title {
	color: #404040;
	font-size: 18px;
	font-weight: 700;
	letter-spacing: 0.12em;
	line-height: normal;
	padding: 0 25px;
	position: relative;
	text-transform: uppercase;
	margin-bottom: 24px;
}

/* Bottom left text */

.carousel__card--category--left {
	display: flex;
	position: absolute;
	bottom: 0;
	color: #fff;
	align-items: center;
	background-color: #fff;
	border-radius: 0px;
	font-size: 0.75rem;
	height: 2em;
	-ms-flex-pack: center;
	justify-content: center;
	line-height: 1.5;
	padding-left: 0.75em;
	padding-right: 0.75em;
	white-space: nowrap;
}

.carousel__category--mundo-mackenzie {
	background-color: var(--cor-primaria);
}

.carousel__categoy--materias {
	background-color: var(--cor-materias);
}

.carousel__categoy--vestibular {
	background-color: var(--cor-vestibular);
}

.carousel__categoy--profissoes {
	background-color: var(--cor-profissoes);
}

.carousel__categoy--mercado {
	background-color: var(--cor-mercado);
}

.carousel__card--title {
	color: #333;
	font-size: 24px;
	font-weight: 700;
	line-height: 1.3;
	padding-bottom: 8px;
	font-family: Roboto, Open\Sans, "sans serif" !important;
}

.carousel__card--title:hover {
	color: var(--cor-primaria);
}

.carousel__card--thumb {
	position: relative;
	display: block;
	overflow: hidden;
	transition: all 0.3s ease-in-out;
	text-decoration: underline;
}

.carousel__card img {
	width: 100%;
	height: 190px;
	object-fit: cover;
	transition: all 0.3s ease-in-out;
}

.carousel__card img:hover {
	-webkit-transform: scale(1.25);
}

.carousel__title::before {
	content: "";
	display: block;
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 3px;
}

/* a. Vestibular */

.carousel__title--vestibular {
	color: #e5007e;
}

.carousel__title--vestibular::before {
	background: #e5007e;
}

/* b. Profissoes */

.carousel__title--profissoes {
	color: #008ed3;
}

.carousel__title--profissoes::before {
	background: #008ed3;
}

/* c. Mercado */

.carousel__title--mercado {
	color: #2fb113;
}

.carousel__title--mercado::before {
	background: #2fb113;
}

/* d. Ultimas materias */

.carousel__title--materias {
	color: #404040;
}

.carousel__title--materias::before {
	background: #404040;
}

.carousel__title--mundo-mackenzie {
	color: var(--cor-primaria);
}

.carousel__title--mundo-mackenzie::before {
	background: var(--cor-primaria);
}

/* -------------------------------------------------------------------------- */

/*	5.	Quizz
/* -------------------------------------------------------------------------- */

.wpvqgr-intro {
	font-size: 20px;
	font-weight: 300;
	line-height: 1.8;
	margin: 0 0 2em;
	font-family: "Roboto", sans-serif;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	color: #4a4a4a !important;
}

.wpvqgr-intro h1 {
	font-family: inherit !important;
	text-align: center !important;
}

.wpvqgr-wrapper h1 {
	margin-bottom: 50px !important;
}

.wpvqgr-wrapper code {
	background-color: #fff !important;
	color: #333 !important;
}

.wpvqgr-wrapper button {
	font-family: "Roboto,Arial,sans-serif" !important;
	font-size: 1.3rem !important;
	cursor: pointer !important;
	padding: 15px 35px !important;
	border-radius: 50px !important;
	color: #fff !important;
	text-decoration: none !important;
	font-weight: 700 !important;
	width: 50% !important;
	margin-top: 50px !important;
}

.wpvqgr-wrapper button.wpvqgr-button {
	font-weight: bold !important;
	font-family: inherit !important;
}

div.wpvqgr-answer:hover {
	background: #ecf0f1 !important;
	border-color: #babfc0 !important;
	transition: background 350ms ease-out !important;
}

.wpvqgr-wrapper {
	max-width: 100% !important;
}

.wpvqgr-quiz-name {
	display: none !important;
}

/* -------------------------------------------------------------------------- */

/*	6.	Sidebar mobile
/* -------------------------------------------------------------------------- */

.sidebar {
	height: 100%;
	width: 80%;
	position: fixed;
	top: 0;
	left: 0;
	background-color: #b6161e;
	padding-top: 60px;
	transform: translate3d(0%, 0px, 0px);
	transition: all 0.5s ease 0s;
	-webkit-transform: translate3d(0%, 0px, 0px);
	-webkit-transition: all 0.5s ease 0s;
	box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.sidebar[mode="retracted"] {
	-webkit-transform: translate3d(-100%, 0px, 0px);
	transform: translate3d(-100%, 0px, 0px);
	visibility: visible;
	transition: all 0.5s ease 0s;
	-webkit-transition: all 0.5s ease 0s;
}

/* -------------------------------------------------------------------------- */

/*	7.	Footer
/* -------------------------------------------------------------------------- */

footer {
	position: absolute;
	background-color: var(--cor-primaria);
	display: block;
	width: 100%;
	text-align: center;
	/*padding: 40px 1.5rem !important;*/
}

.footer__nav {
	/*margin-bottom: 32px;*/
	/*padding-bottom: 32px;*/
	border-bottom: 1px solid hsla(0, 0%, 100%, 0.2);
}

.footer__links {
	border-bottom: 1px solid hsla(0, 0%, 100%, 0.2);
	padding: 50px;
}

@media only screen and (max-width: 600px) {
	.footer__links {
		display: none !important;
	}
}

.footer__links h3 {
	font-size: 1rem;
	color: white;
	font-weight: 600;
	text-align: center;
}

.footer__links hr {
	color: white !important;
	background-color: hsla(0, 0%, 100%, 0.2);
	width: 50%;
}

.footer__links ul {
	padding: 0;
}

.footer__links ul li {
	list-style: none;
	text-align: center;
	padding: 5px 0px;
}

.footer__links ul li a {
	color: #fff;
	font-size: 1rem;
}

.footer__nav ul {
	justify-content: space-between;
}

@media only screen and (max-width: 600px) {
	.footer__nav ul {
		padding: 0;
	}
}

.footer__nav ul li {
	display: inline-block;
	font-size: 15px;
	font-weight: 600;
	line-height: normal;
	list-style: none;
	margin: 0 32px 0 0;
	padding: 0;
	font-family: "Open Sans", sans-serif;
}

@media only screen and (max-width: 600px) {
	.footer__nav ul li {
		margin: 0 2px 0 0;
	}
}

.footer__nav ul li a {
	color: #fff;
	text-decoration: none !important;
}

.footer__social li a {
	font-size: 2rem;
}

.footer__copyright{
	margin-top: 15px;
	margin-bottom: 15px;
}

.footer__copyright span {
	font-weight: 500;
	color: #fff;
	font-size: 15px;
	line-height: normal;
}

.footer__copyright a {
	color: #fff;
	font-family: inherit;
}

.footer__copyright a:hover {
	color: #fff !important;
}

.dropdown-menu {
	top: 98% !important;
}

/* -------------------------------------------------------------------------- */

/*	8.	Single post
/* -------------------------------------------------------------------------- */

.single-post__banner {
	background-size: cover !important;
	background-repeat: no-repeat !important;
	height: 400px;
	z-index: 1;
	position: relative;
}

.hidden-mobile {
	font-size: 14px;
    line-height:1.2rem;
}

@media (max-width: 768px) {
  .hidden-mobile {
		display:none;
	}
}

@media (min-width: 768px) {
  .hidden-desk {
		display:none !important;
	}
}

.sigle-post__banner__title {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: white;
	text-align: center;
}

.single-post__banner__title h1 {
	text-transform: uppercase;
	margin: 0;
	font-size: 3rem;
	white-space: nowrap;
}

.single-post__content {
	margin: 0 auto;
	padding-right:20px;
	max-width: 740px;
	width: 100%;
	text-align: center;
	padding-top: 1rem;
}

.single-post__content p, .single-post__content li {
	font: normal normal normal 16px/28px Roboto;
	letter-spacing: 0px;
	color: #404040;
	opacity: 1;
	margin-top: 1.5rem;
	text-align: left;
}

.single-post__content li{
   	margin: 0 0 1em;
}

.single-post__content h2 {
	font: normal normal bold 28px/24px Roboto;
	letter-spacing: 0px;
	color: #404040;
	opacity: 1;
	margin: 1em 0;
	position: relative;
	text-align: left;
	line-height: 2rem;
}

.single-post__content a {
	font: normal normal normal 16px/18px Roboto;
	letter-spacing: 0px;
	color: #cc151d !important;
	opacity: 1;
	text-decoration: underline !important;
}

.single-post__content a strong {
	color: #cc151d !important;
}

.single-post__content img {
	height: auto;
	max-width: 100%;
	text-align: center;
}

.single-post__content a:hover {
	color: var(--cor-primaria) !important;
	text-decoration: none !important;
}

.single-post__content ul{
	margin-left: 40px;
}

/* -------------------------------------------------------------------------- */

/*	9. Pagination
/* -------------------------------------------------------------------------- */

.pagination {
	align-items: center;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: center;
	justify-content: center;
	margin: 0;
	padding: 40px 0 3rem 0;
	text-align: center !important;
}

.pagination li {
	font-size: 18px;
	list-style: none;
	margin: 0 5px;
	padding: 0;
}

.pagination li a {
	color: #333;
	display: block;
	padding: 5px;
}

.pagination li a.current {
	color: #cc141d;
	font-weight: 700;
}

.pagination li.disabled {
	opacity: 0.3;
}

.pagination li.active a {
	background: #cc141d;
	color: #fff !important;
	padding: 5px 15px;
}

/* -------------------------------------------------------------------------- */

/*	10.	Search
/* -------------------------------------------------------------------------- */

.search__modal {
	position: fixed;
	background-color: rgba(247, 242, 242, 0.952);
	top: 0;
	left: 0;
	bottom: 0;
	width: 100%;
	z-index: 99999 !important;
}

.search__close {
	color: #333;
	margin-top: 5%;
	float: right;
	margin-right: 5%;
	font-size: 2rem;
	cursor: pointer;
}

.disable {
	display: none;
}

.enable {
	display: initial;
}

.search__modal form {
	margin-top: 20%;
}

.search__modal input {
	display: block;
	outline: none;
	border: none;
	box-shadow: none;
	background: none;
	border-bottom: 4px solid #333;
	width: 70%;
	margin: auto;
	font-size: 2.5em;
	line-height: 1.3em;
	color: #333;
}

::placeholder {
	color: #333;
	opacity: 0.5;
}

.search__modal label[for="modal-search-field"] {
	display: block;
	width: 70%;
	margin: auto;
	text-align: right;
	color: #333;
	margin-top: 10px;
	font-weight: bold;
	font-size: 0.9em;
	letter-spacing: 1px;
	opacity: 0.5;
}

/* -------------------------------------------------------------------------- */

/*	11.	Media queries
/* -------------------------------------------------------------------------- */

@media screen and (min-width: 1500px) {
	.container--mk {
		max-width: 1344px;
	}
}

@media screen and (min-width: 1408px) {
	.container--mk {
		max-width: 1152px;
	}
}

@media screen and (min-width: 1408px) {
	.container--mk {
		max-width: 1344px;
	}
}

@media screen and (min-width: 1216px) {
	.container {
		max-width: 1152px;
	}
}

@media screen and (min-width: 1024px) {
	.container {
		max-width: 960px;
	}
}

@media screen and (max-width: 1024px) {
	.navbar__menu--desktop {
		display: none;
	}
	.navbar {
		justify-content: space-between !important;
		column-gap: 0px !important;
	}
	.navbar .search__results {
		position: fixed;
		left: 0px;
		top: 80px;
		width: 100%;
	}
	.navbar .search__results.search__results--active {
		height: 50vh;
	}
	.navbar__menu-icon {
		display: block;
	}
}

/* -------------------------------------------------------------------------- */

/*	12.	Rd
/* -------------------------------------------------------------------------- */

.rd-section {
	box-shadow: 0px 3px 31px 1px rgba(0, 0, 0, 0.3) !important;
	padding: 40px !important;
	border-radius: 10px !important;
	text-align: left;
}

.bricks-form__field {
	margin-bottom: 30px !important;
}

.success-message {
	background-color: rgba(70, 201, 58, 0.04);
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 20px !important;
	margin-top: 20px !important;
}

.success-message__icon {
	max-width: 30px;
	flex-grow: 1;
	margin-right: 15px !important;
}

.success-message__content {
	color: #3dc480;
	transition: all 200ms ease;
	font-size: 1.3rem !important;
}

@media only screen and (max-width: 420px) {
	.rd-section {
		padding: 10px !important;
	}
}

/* -------------------------------------------------------------------------- */

/*	13.	Social
/* -------------------------------------------------------------------------- */

.social-overlap {
	position: relative;
	width: 100%;
}

.justify-content-center {
	-ms-flex-pack: center !important;
	justify-content: center !important;
}

.justify-content-center {
	-webkit-box-pack: center !important;
	-ms-flex-pack: center !important;
	justify-content: center !important;
}

.social-bar {
	display: flex;
	border-radius: 10px;
	background: #fff;
	box-shadow: 0 0 60px rgba(93, 70, 232, 0.15);
	border: 1px solid#ebe9e9;
}

.iconpad {
	padding: 12px 0;
	width: 100%;
}

.mb-3,
.my-3 {
	margin-bottom: 1rem !important;
}

.process-section .slider-nav-item {
	position: relative;
	flex-grow: 0;
	flex-shrink: 0;
	border-radius: 50%;
	text-align: center;
	background: #fff;
	cursor: pointer;
	transition: all 0.4s ease;
}

.social-icons a {
	border-radius: 50px;
	color: var(--cor-materias);
	display: inline-block;
	line-height: 52px;
	height: 50px;
	width: 50px;
	box-shadow: 0 5px 25px rgba(93, 70, 232, 0.15);
	margin: 15px 15px;
	font-size: 22px;
}

.social-icons a:hover {
	color: var(--cor-primaria);
}

.slider-nav-item:before {
	position: absolute;
	content: "";
	height: calc(100% + 16px);
	width: calc(100% + 16px);
	top: -8px;
	left: -8px;
	border-radius: 50%;
	border: 1px solid rgba(132, 132, 164, 0.35);
	animation: 1.5s linear 0s normal none infinite focuse;
}

.slider-nav {
	display: flex;
}

.process-section .slider-nav-item {
	position: relative;
	flex-grow: 0;
	flex-shrink: 0;
	border-radius: 50%;
	text-align: center;
	background: #fff;
	cursor: pointer;
	transition: all 0.4s ease;
}

.slider-nav-item:before {
	position: absolute;
	content: "";
	height: calc(100% + 16px);
	width: calc(100% + 16px);
	top: -8px;
	left: -8px;
	border-radius: 50%;
	border: 1px solid rgba(132, 132, 164, 0.35);
	animation: 2s linear 0s normal none infinite focuse;
}

@keyframes focuse {
	0% {
		transform: scale(0.8);
		opacity: 1;
	}
	75% {
		transform: scale(1.2);
		opacity: 0;
	}
	100% {
		transform: scale(1.2);
		opacity: 0;
	}
}

@keyframes slide {
	from {
		background-position: 0 0;
	}
	to {
		background-position: 40px 0;
	}
}

.shadow-img1 {
	background-image: url("../img/shadow.png");
	background-repeat: no-repeat;
	background-position: bottom;
}

.shadow-img2 {
	background-position: bottom;
	background-image: url("../img/shadow2.png");
	background-size: 100%;
	background-repeat: no-repeat;
}

@keyframes jello-horizontal {
	0% {
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1);
	}
	30% {
		-webkit-transform: scale3d(1.25, 0.75, 1);
		transform: scale3d(1.25, 0.75, 1);
	}
	40% {
		-webkit-transform: scale3d(0.75, 1.25, 1);
		transform: scale3d(0.75, 1.25, 1);
	}
	50% {
		-webkit-transform: scale3d(1.15, 0.85, 1);
		transform: scale3d(1.15, 0.85, 1);
	}
	65% {
		-webkit-transform: scale3d(0.95, 1.05, 1);
		transform: scale3d(0.95, 1.05, 1);
	}
	75% {
		-webkit-transform: scale3d(1.05, 0.95, 1);
		transform: scale3d(1.05, 0.95, 1);
	}
	100% {
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1);
	}
}

.social-bar a:hover i {
	-webkit-animation: jello-horizontal 0.9s both;
	animation: jello-horizontal 0.9s both;
}

@media only screen and (max-width: 300px) {
	.process-scetion .slider-nav-item {
		height: 30px;
		width: 30px;
		margin: 15px 10px;
		line-height: 28px;
	}
}

/* -------------------------------------------------------------------------- */

/*	14.	Rich content
/* -------------------------------------------------------------------------- */

.icon__container {
	width: 60px;
	height: 60px;
	background-color: #cc151d;
	border-radius: 100px;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	position: fixed;
	top: 0;
	right: 0;
	z-index: 9999;
	margin: 53vh 21vw;
}

.richcontent__container .icon__container i {
	color: #fff;
	font-size: 1.6rem;
}

.richcontent__container .banner__container {
	width: 273px;
	height: 320px;
	background: #747474 0% 0% no-repeat padding-box;
	border-radius: 8px;
	opacity: 1;
	position: fixed;
	top: 0;
	right: 0;
	z-index: 1;
	margin: 35vh 16vw;
	background-size: cover;
	cursor: pointer;
	opacity: 0;
	transition: opacity 1s;
}

@media only screen and (max-width: 600px) {
	.richcontent__container {
		display: none;
	}
}

/* -------------------------------------------------------------------------- */

/*	16.	Contact form 7
/* -------------------------------------------------------------------------- */

.navbar-expand-lg .navbar-nav .dropdown-menu {
	min-width: 100% !important;
}

.dropdown-menu {
	padding: 0rem 0 !important;
	margin: 0rem 0 !important;
	border-radius: 0 !important;
	border-top: 4px solid #9d0007 !important;
	margin-top: -3px !important;
}

.dropdown-item {
	padding: 0.75rem 1.5rem !important;
	color: #5f5f5f !important;
	font: normal normal normal 16px/21px Roboto !important;
}

.dropdown-item:active {
	background-color: #fff !important;
}

/* -------------------------------------------------------------------------- */

/*	16.	Breadcrumb
/* -------------------------------------------------------------------------- */

.single-post__breadcrumb ul {
	margin: 0 !important;
	padding-left: 0 !important;
	margin-bottom: 30px !important;
}

.single-post__breadcrumb ul li {
	list-style-type: none;
	display: inline-block;
	margin-right: 6px;
}

.single-post__breadcrumb ul li a {
	text-decoration: underline !important;
	font: normal normal medium Roboto !important;
	font-size: 12px !important;
	letter-spacing: 0px !important;
	color: #cc151d !important;
	opacity: 1;
}

.breadcrumb__icon {
	font-size: 0.6rem;
	color: #777777;
}

.title-likedeslike {
	color: #707070 !important;
	font-size: 28px !important;
	line-height: 86px !important;
	font-weight: 300 !important;
	padding: 0 !important;
	margin: 50px 0 0 !important;
	display: block;
	text-align: left;
	border-top: 1px solid #ddd;
}

.button-container-likes-dislike {
	margin: 0 0 0 -10px !important;
}

/* -------------------------------------------------------------------------- */

/*	18.	contact form + newsletter
/* -------------------------------------------------------------------------- */

.newsletter {
	background: linear-gradient(
			283.08deg,
			#cc141d -22.05%,
			rgba(204, 20, 29, 0) 71.25%
		),
		#efb82a;
	margin-top: 40px;
	width: 100%;
}

.newsletter--fixed {
	position: fixed;
	display: flex;
	align-items: center;
	bottom: 0;
	left: 0;
	height: 80px;
	width: 100%;
	z-index: 2000;
	background: linear-gradient(
			90deg,
			#efb82a 10.6%,
			rgba(239, 184, 42, 0) 77.09%
		),
		#e5077e;
	margin-top: 0;
}

.newsletter--hided {
	transition: all 4s ease 0.1s;
	opacity: 0;
	bottom: -100%;
}

.newsletter__banner {
	position: absolute;
	background-repeat: no-repeat;
	background-size: cover;
	left: 0;
	width: 400px;
	height: 300px;
	background-image: url("https://blog.mackenzie.br/wp-content/uploads/2021/11/img_newsletter.webp");
}

.newsletter__wrapper {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	padding: 30px 0px;
	column-gap: 100px;
	flex-wrap: wrap;
}

.newsletter--fixed .newsletter__wrapper {
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: relative;
	padding: 0;
	height: 100%;
	column-gap: 0px;
}

.newsletter--fixed .newsletter__wrapper h2 {
	color: #fff;
	font: normal normal 800 24px/29px Inter;
	max-width: 200px;
	margin-bottom: 0 !important;
}

.newsletter__item h2,
.newsletter__item p {
	color: #fff;
	font-family: Inter;
	font-size: 30px;
	line-height: 36px;
}

.newsletter__item h2 {
	font-weight: 800;
}

.newsletter__form p {
	width: 350px;
	display: flex;
	flex-direction: column;
	column-gap: 10px !important;
	align-items: flex-start;
    margin-bottom: 0;
}
.newsletter__form br {
	display: block;
	content: "";
	margin-top: 12px;
}

.newsletter__form-inline {
	display: flex;
}

.newsletter__form-inline .newsletter__form p {
	flex-direction: row;
	width: auto;
	align-items: center;
	justify-content: center;
}

.newsletter__form .wpcf7-form-control-wrap input {
	height: 42px;
	background: #ffffff28;
	border-radius: 10px;
	font: normal normal 400 18px/22px Inter !important;
	color: #fff;
	margin: 0px !important;
}

.newsletter__form .wpcf7-form-control-wrap input::placeholder,
.newsletter__form .wpcf7-form-control-wrap input::-webkit-input-placeholder {
	color: #fff;
	opacity: 0.9;
	font-weight: 400;
}

.newsletter__form-inline .newsletter__form .wpcf7-form-control-wrap input {
	max-width: 180px;
}

.newsletter__form-inline
	.newsletter__form
	.wpcf7-form-control-wrap
	input::placeholder {
	color: #fff;
	opacity: 0.9;
	font-weight: 400;
}

.newsletter__form input[type="submit"] {
	color: #cc141d !important;
	border: 2px solid #cc141d !important;
	box-sizing: border-box;
	border-radius: 58px !important;
	text-transform: capitalize !important;
	font: normal normal bold 18px/22px Inter !important;
	max-width: 150px;
	cursor: pointer;
}

.newsletter__form-inline .newsletter__form .wpcfinput .newsletter__form br {
	content: "";
	margin: 0.8em;
	display: block;
	font-size: 24%;
}

.newsletter__close {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	background: rgba(0, 0, 0, 0.2);
	border-radius: 50px;
	cursor: pointer;
	position: absolute;
	right: 18%;
	top: -25px;
	box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

@media screen and (max-width: 1550px) {
	.newsletter__banner {
		opacity: 0.1;
	}
	.newsletter__wrapper {
		justify-content: center;
		text-align: center;
	}
	.newsletter--fixed {
		height: auto;
	}
	.newsletter--fixed .newsletter__wrapper {
		justify-content: center;
		padding: 30px 0px;
		row-gap: 20px;
	}
	.newsletter__close {
		right: 5%;
	}
}

@media screen and (max-width: 1000px) {
	.newsletter__banner {
		display: none;
	}
	.newsletter__item p {
		color: #fff;
		font-size: 18px;
		line-height: 22px;
	}
	.newsletter__item h2 {
		font-size: 24px;
		line-height: 28px;
	}
	.newsletter__form-footer {
		width: 100%;
	}
	.newsletter__form {
		width: 100%;
	}
	.newsletter--fixed .newsletter__form {
		display: none;
	}
	.newsletter--fixed .newsletter__wrapper h2 {
		font: normal normal 500 18px/20px Inter !important;
		margin-bottom: 0px;
		max-width: 100%;
	}
	.newsletter--fixed {
		height: 50px;
	}
	.newsletter__close {
		width: 30px;
		height: 30px;
		top: -15px;
		z-index: 9000 !important;
	}
}

.wpcf7-response-output,
.wpcf7-not-valid-tip,
.wpcf7-spinner {
	display: none !important;
}

.wpcf7-form input {
	background: #ffffff;
	border-radius: 100px;
	padding: 12px 20px;
	max-width: 100%;
	width: 100%;
	border: 0;
}

::-webkit-input-placeholder {
	color: #fff !important;
	opacity: 0.9 !important;
	font-weight: 400 !important;
}

::-moz-placeholder {
	color: #fff !important;
	opacity: 0.9 !important;
	font-weight: 400 !important;
}

::-ms-placeholder {
	color: #fff !important;
	opacity: 0.9 !important;
	font-weight: 400 !important;
}

::placeholder {
	color: #fff !important;
	opacity: 0.9 !important;
	font-weight: 400 !important;
}

@media screen and (max-width: 767px) {
	.wpcf7-form {
		display: block;
	}
	.wpcf7-form input {
		max-width: 100%;
	}
}

/* -------------------------------------------------------------------------- */

/*	19. Alert
/* -------------------------------------------------------------------------- */

.message {
	display: flex;
	align-items: center;
	border-left: 5px solid;
	position: fixed;
	width: 300px;
	height: auto;
	border-radius: 8px;
	padding: 30px;
	background-color: #fff;
	top: 15vh;
	right: -100%;
	box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
	z-index: 5000;
	transition: all 0.8s ease;
	font: normal normal 500 16px/20px Inter !important;
}

@media screen and (max-width: 480px) {
	.message {
		width: 200px;
		padding: 15px;
		font: normal normal 500 14px/20px Inter !important;
	}
}

.message.message--show {
	transition: all 0.8s ease;
	right: 0;
}

.message.message--success {
	border-left: 5px solid #65d25b;
}

.message.message--error {
	border-left: 5px solid #ff6c79;
}

/* -------------------------------------------------------------------------- */

/*	20. Rich content
/* -------------------------------------------------------------------------- */
.rich-material .anchor {
	margin-top: -100px;
	padding-top: 100px;
}

.rich-material .banner {
	margin-top: -30px;
	height: 530px;
	background: url(https://blog.mackenzie.br/wp-content/uploads/2021/12/banner.webp);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	display: flex;
	align-items: center;
}

.rich-material .banner__text {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	height: 425px;
}

.rich-material .banner__text h1,
.rich-material .banner__text h2 {
	color: #fff;
	font-family: Inter;
}

.rich-material .banner__text h1 {
	font-weight: 800;
	font-size: 3.125rem;
	line-height: 3.5rem;
}

.rich-material .banner__text h2 {
	font-weight: 400;
	font-size: 1.5rem;
	line-height: 2rem;
}

.rich-material .banner__text img {
	margin-top: 30px;
}

.rich-material .posts {
	margin-top: 40px;
}

.rich-material .posts h2 {
	color: #cc141d;
	font: normal normal bold 1.5rem/1.8rem Inter;
	margin-bottom: 60px;
}

.rich-material .posts h2::before {
	content: "";
	border-right: 3px solid #000000;
	margin-right: 15px;
}

.rich-material .posts__wrapper {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	flex-wrap: wrap;
	row-gap: 60px;
	column-gap: 60px;
}

.rich-material .posts__card {
	width: 290px;
}

.rich-material .posts__card-thumb {
	position: relative;
	overflow: hidden;
	transition: all 0.3s ease-in-out;
	margin-bottom: 20px;
}

.rich-material .posts__card-thumb img {
	width: 100%;
	height: 150px;
	object-fit: cover;
	transition: all 0.3s ease-in-out;
}

@media screen and (max-width: 920px) {
	:root {
		font-size: 90%;
	}

	.rich-material .banner {
		height: calc(100vh - 80px);
		background: linear-gradient(
			132deg,
			#ffc700,
			#ad262d,
			#cfa12d,
			#cc141d,
			#ffc700
		);
		background-size: 400% 400%;
		animation: Gradient 8s ease infinite;
	}

	/* Animate Background*/
	@keyframes Gradient {
		0% {
			background-position: 0% 50%;
		}
		50% {
			background-position: 100% 50%;
		}
		100% {
			background-position: 0% 50%;
		}
	}

	.rich-material .banner__text {
		height: 100%;
	}

	.rich-material .posts__card {
		width: 100%;
	}

	.rich-material .posts__card-thumb img {
		height: 200px;
	}
}

.rich-material .posts__card-thumb img:hover {
	transform: scale(1.25);
	-webkit-transform: scale(1.25);
}

.rich-material .posts__anchor {
	font: normal normal bold 18px/22px Inter;
	color: #000000;
}

.rich-material button.posts__load {
	width: 100%;
	margin-top: 50px;
	cursor: pointer;
	background-color: #fff;
	color: #cc141d;
	font: normal normal bold 16px/19px Inter;
	border: 1px solid #e3e3e3;
	box-sizing: border-box;
	border-radius: 71px;
	padding: 15px;
}

/* -------------------------------------------------------------------------- */

/*	21. Banners Anúncios
/* -------------------------------------------------------------------------- */
#sup-banner{
	/* display: none !important; */
}
#mob-banner{
	/* display: none !important; */
}
#float-banner {
	display: none !important;
    position: absolute;
    left: 87%;
    width:300px;
    height:600px;
}
#float-banner.fixed{
    position: fixed;
    margin-top: 70px;
    top: 20px !important;
    left: 77% !important;
    z-index: 2;
}
@media screen and (min-width: 1024px) {
	#mob-banner{
		display: none !important;
	}
}

@media screen and (max-width: 1023px){
	#sup-banner{
		display: none !important;
	}
    #float-banner {
		display: none;
    }
    #float-banner.fixed{
		display: none;
    }
}
@media screen and (min-width:1439px){
    #float-banner {
        left: 129%;
    }
    #float-banner.fixed{
        left: 75% !important;
    }
}

/* -------------------------------------------------------------------------- */
/*	18. Not found
/* -------------------------------------------------------------------------- */
.notfound{
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 5rem 0;
}

.notfound img {
	max-width: 400px;
}

.notfound span {
	font-size: 1.5rem;
	color: rgba(56, 53, 53, 0.329);
	margin-top: 1rem;
	font-weight: 600;
}