/* Fonts */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

:root {
	--font-default: "Montserrat", sans-serif, Arial;
	--color-default: #fff;
	--color-blue: #1348d6;
	--color-blue-dark: #090970;
	--color-green: #017f01;
	--color-black: #242424;
	--color-grey: #6f6f6f;
	scroll-behavior: smooth;
}

html {
	scroll-behavior: smooth;
	scroll-padding: var(--scroll-padding, 103px);
}

/* General */
body {
	font-family: var(--font-default);
	color: var(--color-red);
}

a {
	color: var(--color-default);
	text-decoration: none;
}

a:hover {
	color: var(--color-secondary);
	text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--font-default);
}

/* Buttons */
.btn-default,
.btn-default:focus {
	padding: 12px 50px;
	color: var(--color-primary);
	background: transparent;
	border: 1px solid transparent;
	font-family: var(--font-default);
	font-size: 16px;
	font-weight: 400;
	border-radius: 27px;
	transition: 0.3s;
}

.btn-default:hover,
.btn-default:focus:hover {
	color: var(--color-default);
	background: var(--color-secondary);
	border-color: var(--color-secondary);
}

/* Sections */
section {
	padding: 60px 0;
	background-color: var(--color-default);
}

/* Header */
#header {
	background-color: var(--color-default);
	transition: all 0.5s;
	z-index: 997;
	height: 103px;
}

#header .logo img {
	max-height: 80px;
	width: auto;
}

#header.header-scrolled {
	background: var(--color-default);
	box-shadow: 0px 1.5px 4px rgba(100, 100, 100, 0.15);
}

/* Navbar */
.navbar .social {
	margin-left: 30px;
}

.navbar .social .styled-icons ul {
	padding: 0;
	margin: 0;
	transform: translate(-50%, -50%);
	display: flex;
}

.navbar .social .styled-icons li {
	list-style: none;
	margin: 0 5px;
}

.navbar .social .styled-icons li a {
	position: relative;
	display: block;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background-color: var(--color-orange);
	text-align: center;
	transition: 0.6s;
}

.navbar .social .styled-icons li .fa {
	font-size: 15px;
	line-height: 30px;
	transition: 0.3s;
	color: var(--color-orange);
}

.navbar .social .styled-icons li a:hover,
.navbar .social .styled-icons li .fa:hover {
	color: var(--color-orange);
}

.navbar {
	padding: 0;
}

.navbar ul {
	margin: 0;
	padding: 0;
	display: flex;
	list-style: none;
	align-items: center;
}

.navbar li {
	position: relative;
}

.navbar > ul > li {
	white-space: nowrap;
	padding: 0 0 0 28px;
}

.navbar a,
.navbar a:focus {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 20px;
	font-family: var(--color-black);
	font-size: 16px;
	font-weight: 530;
	color: var(--color-black);
	white-space: nowrap;
	transition: 0.3s;
	position: relative;
	text-transform: uppercase;
}

.navbar > ul > li > a:before {
	content: "";
	position: absolute;
	width: 17px;
	height: 4px;
	bottom: -6px;
	left: 50%;
	transform: translateX(-50%);
	background-color: var(--color-gold);
	visibility: hidden;
	width: 0px;
	transition: all 0.3s ease-in-out 0s;
}

.navbar a:hover:before,
.navbar li:hover > a:before,
.navbar .active:before,
.navbar .current-menu-item a:before,
.navbar.page .current-menu-item a:before {
	visibility: visible;
	width: 17px;
}

.navbar .current-menu-item a,
.navbar.page .current-menu-item a {
	color: var(--color-blue);
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover > a {
	color: var(--color-amarelo);
	font-weight: 700;
}

.navbar > ul > li > a.button:before {
	visibility: hidden;
}

.navbar.scrolled a,
.navbar.scolled a:focus {
	color: var(--color-black);
}

.navbar.scrolled a:hover,
.navbar.scolled a:hover:focus {
	color: var(--color-amarelo);
}

.navbar.scolled > ul > li > a:before {
	content: "";
	position: absolute;
	width: 17px;
	height: 4px;
	bottom: -6px;
	left: 50%;
	transform: translateX(-50%);
	background-color: var(--color-primary);
	visibility: hidden;
	width: 0px;
	transition: all 0.3s ease-in-out 0s;
}

.navbar .dropdown ul {
	display: block;
	position: absolute;
	left: 28px;
	top: calc(100% + 30px);
	margin: 0;
	padding: 10px 0;
	z-index: 99;
	opacity: 0;
	visibility: hidden;
	box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
	transition: 0.3s;
	border-radius: 4px;
}

.navbar .dropdown ul li {
	min-width: 200px;
}

.navbar .dropdown ul a {
	padding: 10px 20px;
	font-size: 15px;
	text-transform: none;
	font-weight: 600;
	color: var(--color-default);
}

.navbar .dropdown ul a i {
	font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover > a {
	color: var(--color-primary);
}

.navbar .dropdown:hover > ul {
	opacity: 1;
	top: 100%;
	visibility: visible;
}

.navbar .dropdown .dropdown ul {
	top: 0;
	left: calc(100% - 30px);
	visibility: hidden;
}

.navbar .dropdown .dropdown:hover > ul {
	opacity: 1;
	top: 0;
	left: 100%;
	visibility: visible;
}

.navbar.navbar-mobile > ul > li > a:before,
.navbar.navbar-mobile .current-menu-item a:before,
.navbar.navbar-mobile .current-menu-item a:before {
	visibility: hidden;
	height: 0;
	width: 0;
	background-color: transparent;
}

.navbar.navbar-mobile > ul > li > a:focus,
.navbar.navbar-mobile > ul > li > a:hover,
.navbar.navbar-mobile > ul > li > a:hover:focus {
	color: var(--color-primary);
}

.navbar.navbar-mobile .button,
.navbar.navbar-mobile .button:focus {
	margin: 10px 20px;
}

.navbar .menu-item-has-children ul {
	display: block;
	position: absolute;
	left: 28px;
	top: calc(100% + 30px);
	margin: 0;
	padding: 10px 0;
	z-index: 99;
	opacity: 0;
	visibility: hidden;
	background: transparent;
	box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
	transition: 0.3s;
	border-radius: 1px;
}

.navbar .menu-item-has-children:hover > ul {
	opacity: 1;
	top: 100%;
	visibility: visible;
}

.mobile-nav-show {
	color: rgba(255, 255, 255, 0.6);
	font-size: 28px;
	cursor: pointer;
	line-height: 0;
	transition: 0.5s;
	margin-right: 10px;
}

.mobile-nav-hide {
	color: var(--color-primary);
	font-size: 32px;
	cursor: pointer;
	line-height: 0;
	transition: 0.5s;
	position: fixed;
	right: 20px;
	top: 20px;
	z-index: 9999;
}

.mobile-nav-active {
	overflow: hidden;
}

i.mobile-nav-toggle.mobile-nav-show.fa.fa-bars,
i.mobile-nav-toggle.mobile-nav-hide.fa.fa-times {
	color: var(--color-orange);
}

.mobile-nav-active .navbar {
	right: 0;
}

.mobile-nav-active .navbar:before {
	content: "";
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.6);
	z-index: 9996;
}

/* Section */
.section-title {
	text-align: center;
	padding-bottom: 30px;
}

/* Hero */
section#hero {
	padding: 0;
	margin-top: 102.5px;
}

#hero .col-md-12 {
	padding: 0;
}

#hero .banner {
	width: 100%;
	min-height: 89vh;
	background-color: var(--color-default);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	position: relative;
	color: var(--color-black);
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 0 10.5%;
}

/* #hero .banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
} */
#hero .swiper-slide::before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	opacity: 0.7;
}

#hero .banner p {
	font-size: 16px;
	font-weight: 400;
	line-height: normal;
	position: relative;
	z-index: 1;
}

#hero .conteudo-banner {
	display: flex;
	max-height: 85vh;
	max-width: 100%;
}

#hero .conteudo-banner .image {
	width: 50%;
}

#hero .conteudo-banner .image img {
	height: 100%;
	width: auto;
}

#hero .conteudo-banner .text {
	width: 50%;
	display: grid;
	justify-items: center;
	align-content: center;
}

#hero .box-cta {
	padding: 0.75rem;
	max-width: 78%;
	display: flex;
	flex-direction: column;
	align-items: center;
}

#hero .box-cta .faixa {
	width: 100%;
	background-color: var(--color-default);
	padding: 2px 10px;
	border-radius: 108px;
}

#hero .box-cta .faixa p {
	color: var(--color-grey);
	font-size: clamp(1.125rem, 2vw, 2rem);
	text-align: center;
	overflow-wrap: break-word;
	padding: 0;
	margin: 0;
}

#hero .box-cta .faixa p strong {
	color: var(--color-black);
	font-weight: 700;
}

#hero .box-cta h1 {
	font-size: clamp(1.25rem, 3vw, 2.5rem);
	color: var(--color-default);
	font-weight: 800;
	text-align: center;
	margin-bottom: 8px;
}

#hero .box-cta h2 strong {
	font-weight: 800;
}

#hero .box-cta h3 {
	color: var(--color-default);
	font-size: 22px;
	padding: 5px 0;
	text-align: center;
}

#hero .box-cta h3 strong {
	font-weight: 800;
}

#hero .box-cta p {
	font-size: 18px;
	color: var(--color-default);
	text-align: center;
	margin-top: 10px;
}

#hero .box-cta .btn-default,
#hero .box .btn-default:focus {
	font-size: clamp(1.285rem, 2vw, 1.875rem);
	padding: 4px 12px;
	color: var(--color-default);
	background-color: var(--color-green);
	font-weight: 700;
}

#hero .box-cta i {
	font-size: clamp(1.475rem, 3.2vw, 1.875rem);
}

/* Hero Pages */
section#hero-page {
	padding: 0;
	margin-top: 70px;
}

#hero-page .col-md-12 {
	padding: 0;
}

#hero-page .swiper-slide {
	width: 100%;
	min-height: 400px;
	background-color: var(--color-primary);
	background-size: cover;
	background-position: center;
	position: relative;
	padding: 120px 0 60px 0;
	color: var(--color-secondary);
}

#hero-page .swiper-slide::before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(30, 44, 76, 0.5);
	mix-blend-mode: multiply;
	z-index: 0;
}

#hero-page .swiper-slide h2 {
	padding: 0;
	font-size: 44px;
	font-weight: 700;
	color: var(--color-primary);
	z-index: 1;
}

#hero-page .swiper-slide p {
	font-size: 16px;
	font-weight: 400;
	color: var(--color-primary);
	z-index: 1;
}

#hero-page iframe {
	width: 100%;
}

/*
    * Homepage
*/

/* Quem Somos */
#sobre {
	/* background-color: #dbdbdb; */
	padding: 0;
}

#sobre h2 {
	color: var(--color-black);
	font-size: 22px;
	font-weight: 300;
	text-align: center;
	font-style: italic;
}

#sobre h2 strong {
	font-weight: 700;
}

#sobre .bg-sobre {
	padding-bottom: 45px;
}

#sobre .skills {
	background-color: var(--color-default);
	display: flex;
	align-items: center;
	justify-content: center;
	max-width: 900px;
	height: 180px;
	border-radius: 32px;
	margin-block: -2.25rem 1rem;
	padding: 0 20px;
	box-shadow: 0 0 12px 8px rgba(60, 60, 60, 0.175);

	position: relative;
	z-index: 99;
}

#sobre .skill {
	display: flex;
	align-items: center;
	width: 33%;
}

#sobre .skill .icon {
	width: 150px;
	display: flex;
	justify-content: center;
}

#sobre .skill .icon img {
	height: 100%;
	width: auto;
}

#sobre .skill .frase {
	margin-left: 10px;
}

#sobre .skill .frase p {
	margin: 1;
	padding: 1;
	color: var(--color-blue);
	font-weight: 30px;
}

#sobre .video,
#sobre .text-sobre {
	padding-top: 70px;
}

#sobre .video .videoIframe {
	width: 100%;
	height: 400px;
	border-radius: 27px;
}

#sobre .text-sobre {
	padding-right: 12%;
	color: var(--color-black);
}

#sobre .text-sobre h3 {
	font-size: 60px;
	font-weight: 600;
}

#sobre .text-sobre h3 strong {
	color: var(--color-blue);
}

#sobre .text-sobre p {
	font-size: 20px;
	color: var(--color-grey);
}

#sobre .text-sobre a.btn-default {
	color: var(--color-default);
	background-color: var(--color-amarelo);
}

#sobre .text-sobre a.btn-default:hover {
	color: var(--color-default);
}

#sobre .text-bottom {
	padding: 30px 0;
	text-align: center;
	color: var(--color-default);
}

#sobre .text-bottom h5 {
	font-size: 62px;
	font-weight: 300;
	color: var(--color-blue-dark);
}

#sobre .text-bottom h5 strong {
	font-weight: 700;

	&.blue {
		color: var(--color-blue);
	}
}
#sobre .text-bottom {
	background-color: var(--color-default);
	text-align: center;
	padding: 30px 0px;
}
/* Equipe */
#equipe {
	padding: 100px 0;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

#equipe .foto {
	max-width: 100%;
	margin-bottom: 10px;
	padding: 0 5px;
}

#equipe .foto img {
	width: 100%;
	height: 300px;
	border-radius: 27px;
	object-fit: cover;
}

#equipe .equipe-texto {
	display: grid;
	align-content: center;
	color: var(--color-black);
}

#equipe .equipe-texto p {
	font-size: 38px;
	color: var(--color-red);
}

#equipe .equipe-texto strong {
	font-weight: 800;
}

#equipe .equipe-texto strong.company {
	font-weight: 700;
}

#equipe .btn-default {
	color: var(--color-default);
	background-color: var(--color-black);
	border: 1px solid var(--color-light-green);
}

#equipe .btn-default.btn-2 {
	background-color: var(--color-blue);
	border: 1px solid var(--color-blue);
	margin-left: 10px;
	font-weight: 800;
}

#equipe .fat-maika-item-inner {
	border-radius: 30px;
}

/* Slim-Cta */
#slim-cta {
	display: flex;
	align-items: center;
	background-position: left;
	background-size: cover;
	background-repeat: no-repeat;
	padding: 0;
	min-height: 650px;
}

#slim-cta p {
	font-size: 50px;
	font-weight: 300;
	color: var(--color-black);
}

#slim-cta strong {
	font-weight: 700;
	color: var(--color-blue);
}

/* Slim-Cta 2 */
#slim-cta-2 {
	display: flex;
	align-items: center;
	background-position: center top;
	background-size: cover;
	background-repeat: no-repeat;
	color: var(--color-default);
	padding: 150px 0;
}

#slim-cta-2 .text {
	align-self: center;
}

#slim-cta-2 h5 {
	font-size: 22px;
	font-weight: 300;
	color: var(--color-yellorange);
}

#slim-cta-2 h3 {
	font-size: 38px;
	font-weight: 300;
}

#slim-cta-2 h3 strong {
	font-weight: 700;
	font-size: 48px;
	color: var(--color-default);
}

#slim-cta-2 h4 {
	font-size: 48px;
	font-weight: 700;
	color: var(--color-default);
}

#slim-cta-2 p {
	font-size: 16px;
	font-weight: 300;
}

#slim-cta-2 strong {
	font-weight: 700;
	color: var(--color-yellorange);
}

#slim-cta-2 .image img {
	width: 100%;
}

/* Casos Clinicos */
#casos-clinicos {
	color: var(--color-blue);
}

#casos-clinicos h4 {
	font-weight: 700;
	font-size: 48px;
	text-align: center;
}

#casos-clinicos h4 strong {
	color: var(--color-red);
}

#casos-clinicos h5 {
	font-size: 26px;
	text-align: center;
	color: var(--color-black);
	font-weight: 700;
	padding: 0 15px;

	border-radius: 10px;

	transition: background 0.35s ease;
}

#casos-clinicos .section-title p {
	font-size: 20px;
	text-align: center;
	padding: 0;
	color: var(--color-black);
}

#casos-clinicos .underline {
	padding: 0;
}

#casos-clinicos .underline .box {
	height: 100%;
	border-bottom: 8px solid var(--color-grey);
	cursor: pointer;
	display: grid;
	align-items: center;
}

#casos-clinicos .underline .box:hover {
	border-color: var(--color-black);

	& h5 {
		background: var(--color-blue);
		color: var(--color-default);
	}
}

#casos-clinicos .underline .box.active {
	border-color: var(--color-black);

	& h5 {
		background: var(--color-blue);
		color: var(--color-default);
	}
}

#casos-clinicos strong {
	font-weight: 700;
}

#casos-clinicos .block {
	margin-top: 35px;
}

#casos-clinicos .block img {
	width: 100%;
	margin-left: 30px;
}

#casos-clinicos .content-casos .content {
	display: grid;
	padding-left: 100px;
}

#casos-clinicos .content-casos .content h6 {
	text-align: left;
	font-size: 42px;
	font-weight: 700;
}

#casos-clinicos .content-casos .content p {
	text-align: left;
	font-size: 20px;
	color: var(--color-black);
}

#casos-clinicos .content-casos .btn-default {
	color: var(--color-default);
	background-color: var(--color-blue);
	padding: 15px 20px;
	font-weight: 700;
}

/* Oque Dizem */
#oque-dizem {
	background-color: var(--color-default);
}

#oque-dizem h4 {
	color: var(--color-grey);
	text-align: center;
	font-weight: 600;
	font-size: 46px;
}

#oque-dizem .title {
	margin-bottom: 60px;
}

#oque-dizem .swiper-container {
	padding: 50px 0;
}

#oque-dizem .box {
	border: 2px solid var(--color-blue);
	border-radius: 27px;
	display: grid;
	justify-content: center;
	padding: 30px 0;
}

#oque-dizem .box-icon {
	width: 50px;
	height: 50px;
	margin-top: -62px;
}

#oque-dizem .box-icon img {
	width: auto;
	height: 100%;
}

#oque-dizem .box-video iframe {
	border-radius: 20px;
	width: 400px;
	height: 260px;
}

/* Blog */
#blog {
	background: #fcf7f0;
}

#blog .section-title h2 {
	font-size: 55px;
	font-weight: 400;
	color: var(--color-secondary);
	text-align: center;
	margin-top: 50px;
	margin-bottom: 25px;
	text-transform: none;
}

#blog .btn-default,
#blog .btn-default:focus {
	color: var(--color-secondary);
	background: transparent;
	border-color: var(--color-secondary);
}

#blog .btn-default:hover,
#blog .btn-default:focus:hover {
	color: var(--color-primary);
	background: var(--color-secondary);
	border-color: var(--color-secondary);
}

/*
    * Outras Paginas
*/

/*
    * Blog
*/
#blog-page {
	background-color: var(--color-primary);
	margin-top: 10em;
}

#blog-page h2 {
	color: var(--color-secondary);
	font-size: 55px;
	font-family: var(--font-default);
	font-weight: 700;
	padding-bottom: 0.5em;
}

#blog-page hr {
	display: inline-block;
	width: 100%;
	border-top: 1px solid var(--color-secondary);
}

#blog-page .col-md-4 {
	padding-right: 0;
	padding-left: 0;
}

.blog .card {
	overflow: hidden;
	background: var(--color-primary);
	border-radius: 20px;
	position: relative;
	margin: 1rem;
	transition: 250ms all ease-in-out;
	cursor: pointer;
	min-height: 500px;
}

#blog-single .card {
	overflow: hidden;
	background: var(--color-primary);
	border-radius: 0.5rem;
	position: relative;
	margin: 1rem;
	transition: 250ms all ease-in-out;
	cursor: pointer;
	min-height: 450px;
}

.blog .card:hover {
	transform: scale(1.05);
}

.blog .banner-img {
	position: absolute;
	object-fit: cover;
	height: 14rem;
	width: 100%;
}

.blog .category {
	position: absolute;
	font-size: 16px;
	font-family: var(--font-default);
	font-weight: 700;
	color: var(--color-primary);
	background: var(--color-secondary);
	margin: 15px 10px 10px 10px;
	text-transform: uppercase;
	display: inline-block;
	letter-spacing: 0.1em;
	height: auto;
	line-height: 10px;
	padding: 7px 20px 7px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	z-index: 1;
}

.blog .card-body {
	padding: 15rem 1rem 1rem 1rem;
}

.blog .title {
	color: var(--color-secondary);
	font-size: 18px;
	font-family: var(--font-default);
	font-weight: 700;
	line-height: 1.3;
	margin: 0;
}

.blog p.description {
	color: #979797;
	font-size: 16px;
	font-family: var(--font-default);
	font-weight: 400;
}

.blog .post-content {
	display: flex;
	align-items: center;
}

.blog .thumbnail {
	width: 60px;
	height: 60px;
	object-fit: cover;
	border-radius: 50%;
}

.blog .info {
	margin-left: 1rem;
}

.blog .author-name {
	font-size: 16px;
	font-family: var(--font-default);
	font-weight: 400;
	margin: 0;
	padding: 0;
}

.blog .date {
	color: #a0aec0;
	font-size: 14px;
	font-family: var(--font-default);
	font-weight: 400;
}

.blog .read-time {
	color: #a0aec0;
	font-size: 14px;
	font-family: var(--font-default);
	font-weight: 400;
}

#blog-single {
	background-color: var(--color-primary);
	padding-top: 10em;
}

.post-single {
	margin: 0px;
	height: auto;
	width: 100%;
}

.post-single blockquote > p {
	position: relative;
	margin-bottom: 30px;
	padding: 0 50px 0px 50px;
	text-align: center;
	border-left: 0px solid var(--color-semi-black);
	float: left;
	width: 100%;
	font-size: 26px;
}

.post-single blockquote:before {
	font-family: var(--font-default);
	float: left;
	line-height: 0.51;
	content: "\201c";
	position: absolute;
	z-index: 0;
	margin: 0;
	left: 50%;
	transform: translateX(-50%) translateY(9px) rotate(1deg);
	color: var(--color-secondary);
	opacity: 0.13;
	font-size: 170px;
}

.post-single p {
	color: var(--color-semi-black);
	font-size: 16px;
	font-family: var(--font-default);
	font-weight: 400;
}

.post-single ul li,
.post-single ol li {
	color: var(--color-semi-black);
	font-size: 16px;
	font-family: var(--font-default);
	font-weight: 400;
}

.post-single h1,
.post-single h2,
.post-single h3,
.post-single h4,
.post-single h5,
.post-single h6 {
	font-family: var(--font-default);
	font-weight: 400;
}

.post-single .single-header {
	position: absolute;
	width: auto;
	bottom: 30px;
	left: 30px;
	right: 30px;
	z-index: 3;
	text-align: left;
}

.post-single .single-header .single-category {
	font-size: 16px;
	font-family: var(--font-default);
	font-weight: 600;
	color: var(--color-primary);
	background: var(--color-secondary);
	margin: 10px 10px 10px 0px;
	text-transform: uppercase;
	display: inline-block;
	letter-spacing: 0.1em;
	height: auto;
	line-height: 10px;
	padding: 7px 20px 7px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}

.post-single .single-header .single-title {
	color: var(--color-primary);
	font-size: 40px;
	font-family: var(--font-default);
	font-weight: 700;
	padding: 0 0 10px 0;
}

.post-single .post-container {
	float: left;
	width: 100%;
	height: 550px;
	position: relative;
	background: var(--color-primary);
	margin-bottom: 20px;
	-webkit-border-radius: 12px;
	-moz-border-radius: 12px;
	border-radius: 12px;
}

.post-single .thumbnail {
	width: 100%;
	height: 100%;
	position: absolute;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	background-position: center center;
	opacity: 1;
	z-index: 1;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
}

.post-single .thumbnail:after {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		to bottom,
		rgba(0, 0, 0, 0) 0%,
		rgba(0, 0, 0, 0.7) 100%
	);
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
}

.post-single .single-body {
	text-align: left;
	margin-top: 15px;
}

.post-single .single-body .post-author {
	padding-left: 0px;
}

.post-single .single-body .post-author span {
	color: var(--color-primary);
	padding-left: 10px;
	font-size: 13px;
	font-family: var(--font-default);
	font-weight: 400;
}

.post-single .single-body span i {
	padding-left: 5px;
	padding-right: 3px;
}

.post-single .single-body span.post-date,
.post-single .single-body span.post-time-read {
	color: var(--color-primary);
	font-size: 13px;
	font-family: var(--font-default);
	font-weight: 400;
}

.post-single .single-header .single-category,
.post-single .single-header .single-title,
.post-single .single-body {
	text-align: left;
}

.single-body > span:after {
	display: none;
}

#blog-single .share h5 {
	color: var(--color-semi-black);
	margin-top: 20px;
	margin-right: 10px;
	font-family: var(--font-default);
	font-weight: 400;
}

#blog-single .share .styled-icons li {
	display: inline-block;
	margin-bottom: 0;
	margin-top: 0;
}

#blog-single .share .styled-icons a {
	color: var(--color-secondary);
	font-size: 18px;
	height: 30px;
	line-height: 30px;
	margin: 0;
	width: 30px;
	margin-top: 1em;
	margin-right: 0em;
	float: left;
	text-align: center;
	-webkit-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

#blog-single .share .styled-icons a:hover {
	color: var(--color-secondary);
}

#blog-single .share .styled-icons.icon-circled a {
	border-radius: 50%;
}

#blog-single .post-tags span {
	background-color: var(--color-secondary);
	color: var(--color-primary);
	font-size: 12px;
	padding: 5px 10px;
	text-transform: uppercase;
	-webkit-transition: 0.3s ease;
	-moz-transition: 0.3s ease;
	-ms-transition: 0.3s ease;
	-o-transition: 0.3s ease;
	transition: 0.3s ease;
	display: inline-block;
	margin-top: 5px;
}

#blog-single .post-tags a:hover {
	color: #1a2870;
	background-color: transparent;
	border: 1px solid #1a2870;
}

#blog-single .blog-posts-nav {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-gap: 50px;
	align-items: center;
	max-width: 1200px;
	margin: 50px 0;
}

#blog-single .blog-posts-nav a {
	display: grid;
	grid-gap: 20px;
	align-items: center;
	font-family: var(--font-default);
	font-weight: 400;
}

#blog-single .blog-posts-nav h4 {
	color: var(--color-secondary);
	font-family: var(--font-default);
	font-weight: 400;
}

#blog-single .blog-posts-nav strong {
	color: var(--color-semi-black);
	font-weight: 700;
}

#blog-single .blog-posts-nav a svg {
	display: inline-block;
	margin: 0;
	vertical-align: middle;
}

#blog-single .blog-posts-nav > div:nth-child(1) a {
	text-align: left;
}

#blog-single .blog-posts-nav > div:nth-child(2) a {
	text-align: right;
}

#blog-single h2.related-posts {
	color: var(--color-secondary);
	font-size: 24px;
	font-family: var(--font-default);
	font-weight: 400;
}

#search {
	background-color: var(--color-primary);
	margin-top: 10em;
	margin-bottom: 3em;
}

#search h2 {
	color: var(--color-secondary);
	font-size: 55px;
	text-align: left;
	line-height: 1.3;
	padding-bottom: 1em;
	text-align: center;
}

#search .col-md-10 {
	margin: 0 auto;
}

#search .list-group {
	margin-bottom: 20px;
}

#search .list-group-item.active {
	z-index: 2;
	color: var(--color-secondary);
	background-color: transparent;
	border: 1px solid var(--color-secondary);
	-webkit-transition: all 0.4s ease 0s;
	-o-transition: all 0.4s ease 0s;
	transition: all 0.4s ease 0s;
}

#search .list-group-item.active h4 {
	color: var(--color-secondary);
}

#search .list-group-item.active p {
	color: var(--color-secondary);
	margin: 0;
}

#search .list-group-item.active:hover h4 {
	color: #fff;
}

#search .list-group-item.active:hover p {
	color: #fff;
}

#search .list-group-item.active:hover {
	z-index: 2;
	color: var(--color-primary);
	background-color: var(--color-secondary);
	border: 1px solid var(--color-secondary);
}

#search-input {
	align-items: center;
	background: var(--color-secondary);
	border: 1px solid var(--color-secondary);
	border-radius: 0.5rem;
	display: flex;
	justify-content: space-between;
	margin: 0.5em 0;
	padding: 0.7em 0.5em 0.7em 1em;
	transition: all 0.5s;
	width: 350px;
	float: right;
}

#search-input button,
#search-input input {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background: rgba(0, 0, 0, 0);
	border: none;
	outline: none;
	color: inherit;
	font: inherit;
}

#search-input button {
	cursor: pointer;
	padding: 0 0.25em;
}

#search-input button i {
	color: var(--color-primary);
}

#search-input input {
	flex: 1;
	color: var(--color-primary);
	border-color: var(--color-primary);
}

#search-input input::-moz-placeholder {
	color: var(--color-primary);
}

#search-input input:-ms-input-placeholder {
	color: var(--color-primary);
}

#search-input input::placeholder {
	color: var(--color-primary);
}

#search-input input:focus {
	color: var(--color-primary);
	border-color: var(--color-primary);
	-webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
	-moz-box-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
	box-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
	outline: none;
}

.pagination {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
}

.pagination-item {
	margin-right: 18px;
}

.pagination-item a {
	padding: 11px 16px 11px 16px;
	display: inline-block;
	transition: 0.2s all;
	color: var(--color-primary);
	background-color: var(--color-secondary);
	border: solid 1px var(--color-secondary);
	border-radius: 10px;
}

.pagination-item a:hover {
	color: var(--color-secondary);
	background-color: transparent;
	border: solid 1px var(--color-semi-black);
}

.pagination-item span.current {
	padding: 11px 16px 11px 16px;
	display: inline-block;
	transition: 0.2s all;
	color: var(--color-secondary);
	background-color: var(--color-secondary);
	border: solid 1px var(--color-secondary);
	border-radius: 10px;
}

/*
    * Footer
*/
footer {
	background: var(--color-default);
	color: var(--color-default);
	padding: 0;
}

footer .logo {
	display: flex;
}

footer .logo img {
	width: 75%;
}

footer .bg {
	padding: 100px 0;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: left;
}

footer .infos {
	padding-left: 20px;
	display: grid;
}

footer .infos .ct-icon {
	width: 45px;
	display: grid;
	justify-items: center;
}

footer .infos i {
	margin-left: 0;
}

footer .infos .ct-content {
	margin-left: 3px;
}

footer .infos h4 {
	font-weight: 700;
	font-size: 42px;
	margin-left: 15px;
}

footer .infos h4 strong {
	color: var(--color-default);
}

footer .infos i {
	color: var(--color-default);
	margin-left: 10px;
	font-size: 34px;
}

footer .infos a {
	font-size: 22px;
	margin-bottom: 20px;
	text-decoration: none;
	color: var(--color-default);
	display: flex;
}

footer a:hover {
	transition: 0.6s;
	color: var(--color-red);
}

footer .cadastro {
	background-color: var(--color-default);
	color: var(--color-primary);
	text-align: center;
	border-radius: 20px;
	max-width: 730px;
}

footer .cadastro h5 {
	font-size: 32px;
	font-weight: 600;
}

footer .cadastro .mini-text p {
	border-bottom: 1px solid var(--color-primary);
	border-top: 1px solid var(--color-primary);
	font-size: 18px;
}

footer .faixa {
	background-color: var(--color-grey);
	display: grid;
	justify-content: center;
	margin: 20px 0;
}

footer .faixa img {
	margin: 0;
}

footer .foot {
	padding: 15px 0;
	text-align: center;
}

footer .foot p {
	margin: 0;
	padding: 0;
	color: var(--color-black);
}

footer a.btn-default,
footer a.btn-default:focus {
	color: var(--color-primary);
	background: transparent;
	border-color: var(--color-secondary);
	font-weight: 400;
	cursor: pointer;
	border-radius: 27px;
	margin: 0 5px;
}

footer a.btn-default:hover,
footer a.btn-default:focus:hover {
	color: var(--color-default);
	background: var(--color-primary);
	border-color: var(--color-semi-black);
}

footer .form-group input::placeholder {
	color: var(--color-tertiary);
}

/* Voltar ao topo */
.back-to-top {
	visibility: hidden;
	background-color: var(--color-secondary);
	color: var(--color-primary);
	width: 72px;
	height: 72px;
	text-align: center;
	line-height: 72px;
	position: fixed;
	bottom: 110px;
	right: 15px;
	z-index: 90;
	cursor: pointer;
	opacity: 0;
	border-radius: 3px;
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
	transition: all 0.4s;
}

.back-to-top .fa {
	font-size: 22px;
	vertical-align: middle;
}

.back-to-top:hover {
	background-color: var(--color-default);
	color: var(--color-primary);
	opacity: 1;
}

.back-to-top.show {
	visibility: visible;
	opacity: 1;
}

/*
  * Botao Flutuante Whatsapp
*/
#wa_button {
	bottom: 0px;
	right: -35px;
	position: fixed;
	z-index: 999;
}

.img-circle {
	background-color: #25d366;
	box-sizing: content-box;
	-webkit-box-sizing: content-box;
}

.circlephone {
	box-sizing: content-box;
	-webkit-box-sizing: content-box;
	border: 2px solid #25d366;
	width: 150px;
	height: 150px;
	bottom: -25px;
	right: 10px;
	position: absolute;
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	border-radius: 100%;
	opacity: 0.5;
	-webkit-animation: circle-anim 2.4s infinite ease-in-out !important;
	-moz-animation: circle-anim 2.4s infinite ease-in-out !important;
	-ms-animation: circle-anim 2.4s infinite ease-in-out !important;
	-o-animation: circle-anim 2.4s infinite ease-in-out !important;
	animation: circle-anim 2.4s infinite ease-in-out !important;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
}

.circle-fill {
	box-sizing: content-box;
	-webkit-box-sizing: content-box;
	background-color: #25d366;
	width: 100px;
	height: 100px;
	bottom: 0px;
	right: 35px;
	position: absolute;
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	border-radius: 100%;
	border: 2px solid transparent;
	-webkit-animation: circle-fill-anim 2.3s infinite ease-in-out;
	-moz-animation: circle-fill-anim 2.3s infinite ease-in-out;
	-ms-animation: circle-fill-anim 2.3s infinite ease-in-out;
	-o-animation: circle-fill-anim 2.3s infinite ease-in-out;
	animation: circle-fill-anim 2.3s infinite ease-in-out;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
}

.img-circle {
	box-sizing: content-box;
	-webkit-box-sizing: content-box;
	width: 72px;
	height: 72px;
	bottom: 14px;
	right: 49px;
	position: absolute;
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	border-radius: 100%;
	border: 2px solid transparent;
	opacity: 0.9;
}

.img-circleblock {
	box-sizing: content-box;
	-webkit-box-sizing: content-box;
	width: 72px;
	height: 72px;
	background-image: url("../assets/images/wp.png");
	background-position: center center;
	background-repeat: no-repeat;
	animation-name: tossing;
	-webkit-animation-name: tossing;
	animation-duration: 1.5s;
	-webkit-animation-duration: 1.5s;
	animation-iteration-count: infinite;
	-webkit-animation-iteration-count: infinite;
}

.img-circle:hover {
	opacity: 1;
}

@keyframes pulse {
	0% {
		transform: scale(0.9);
		opacity: 1;
	}

	50% {
		transform: scale(1);
		opacity: 1;
	}

	100% {
		transform: scale(0.9);
		opacity: 1;
	}
}

@-webkit-keyframes pulse {
	0% {
		-webkit-transform: scale(0.95);
		opacity: 1;
	}

	50% {
		-webkit-transform: scale(1);
		opacity: 1;
	}

	100% {
		-webkit-transform: scale(0.95);
		opacity: 1;
	}
}

@keyframes tossing {
	0% {
		transform: rotate(-8deg);
	}

	50% {
		transform: rotate(8deg);
	}

	100% {
		transform: rotate(-8deg);
	}
}

@-webkit-keyframes tossing {
	0% {
		-webkit-transform: rotate(-8deg);
	}

	50% {
		-webkit-transform: rotate(8deg);
	}

	100% {
		-webkit-transform: rotate(-8deg);
	}
}

@-moz-keyframes circle-fill-anim {
	0% {
		-moz-transform: rotate(0deg) scale(0.7) skew(1deg);
		opacity: 0.2;
	}

	50% {
		-moz-transform: rotate(0deg) -moz-scale(1) skew(1deg);
		opacity: 0.2;
	}

	100% {
		-moz-transform: rotate(0deg) scale(0.7) skew(1deg);
		opacity: 0.2;
	}
}

@-webkit-keyframes circle-fill-anim {
	0% {
		-webkit-transform: rotate(0deg) scale(0.7) skew(1deg);
		opacity: 0.2;
	}

	50% {
		-webkit-transform: rotate(0deg) scale(1) skew(1deg);
		opacity: 0.2;
	}

	100% {
		-webkit-transform: rotate(0deg) scale(0.7) skew(1deg);
		opacity: 0.2;
	}
}

@-o-keyframes circle-fill-anim {
	0% {
		-o-transform: rotate(0deg) scale(0.7) skew(1deg);
		opacity: 0.2;
	}

	50% {
		-o-transform: rotate(0deg) scale(1) skew(1deg);
		opacity: 0.2;
	}

	100% {
		-o-transform: rotate(0deg) scale(0.7) skew(1deg);
		opacity: 0.2;
	}
}

@keyframes circle-fill-anim {
	0% {
		transform: rotate(0deg) scale(0.7) skew(1deg);
		opacity: 0.2;
	}

	50% {
		transform: rotate(0deg) scale(1) skew(1deg);
		opacity: 0.2;
	}

	100% {
		transform: rotate(0deg) scale(0.7) skew(1deg);
		opacity: 0.2;
	}
}
