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

:root {
	--font-default: "Montserrat", sans-serif, Arial;
	--color-default: #fff;
	--color-semi-branco: #fafafa;
	--color-preto: #000;
	--color-azul: #026ec3;
	--color-laranja: #ea7333;
	--color-cinza: #7f7f7f;
	--color-light-grey: #6f6f6f;
	scroll-behavior: smooth;
}

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

/* General */
body {
	font-family: var(--font-default);
	overflow: hidden;
}

a {
	text-decoration: none;
}

a:hover {
	text-decoration: none;
}

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

.colunas2 {
    padding: 1rem;
    width: 49%;
    display: inline-block;
    vertical-align: top;
	color: #fff;
}

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

.btn-default:hover,
.btn-default:focus:hover {
	color: var(--color-semi-branco);
	background: var(--color-laranja);
	border-color: var(--color-azul);
}

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

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

#header.header-scrolled {
	background-color: var(--color-semi-branco);
	box-shadow: 0px 1px 4px #8b8b8b9e;
}

/* 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 2.5px;
}

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

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

.navbar .button {
	padding: 10px 15px;
	background-color: var(--color-laranja);
	border-radius: 32px;
	font-weight: 600;
	color: var(--color-default);
}
.navbar.scrolled a.button {
	color: var(--color-default);
}
.navbar a.button:hover,
.navbar.scrolled a.button:hover {
	font-weight: 700;
   color: var(--color-default);
}

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

.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(--font-default);
	font-size: 16px;
	font-weight: 400;
	color: var(--color-azul);
	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-default);
	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-laranja);
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover > a {
	color: var(--color-laranja);
}

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

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

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

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

.navbar.page a,
.navbar.page a:focus {
	color: var(--color-preto);
}

.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;
	background: var(--color-default);
	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-preto);
}

.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-preto);
}

.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;
}

.navbar.scrolled .menu-area-aluno a {
	color: var(--color-default);
}

.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-preto);
	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-azul);
}

.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 {
	padding: 60px 0;
	background-color: var(--color-semi-branco);
}

/* Hero */
section#hero {
	padding: 0;
	overflow: hidden;
   margin-top: 74px;
}
/*section#hero.homepage {
    margin-top: 206px;
}*/

#hero .principal {
	padding: 0;
}

#hero .swiper-container {
	position: relative;
	background: transparent;
	/*height: calc(100vh - 103px);
	margin-top: 103px;*/
}

#hero .swiper-slide {
	width: 100%;
	aspect-ratio: 16/9;
	/*min-height: 100%;
	background-size: cover;
	background-position: center bottom; */
}

#hero .swiper-slide img {
	width: 100%;
	height: 100%;
	
	object-fit: cover;
	object-position: center;
}

#hero .texto {
	padding: 0 14.5%;
	height: 100%;
	display: flex;
	align-items: center;
	color: var(--color-default);
}

#hero h1 {
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 400;
}

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
	background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0OCIgaGVpZ2h0PSI0OCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiBzdHJva2U9IiMwMjZlYzMiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIiBjbGFzcz0ibHVjaWRlIGx1Y2lkZS1jaGV2cm9uLXJpZ2h0Ij48cGF0aCBkPSJtOSAxOCA2LTYtNi02Ii8+PC9zdmc+");
	background-size: 50px;
}

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
	background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0OCIgaGVpZ2h0PSI0OCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiBzdHJva2U9IiMwMjZlYzMiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIiBjbGFzcz0ibHVjaWRlIGx1Y2lkZS1jaGV2cm9uLWxlZnQiPjxwYXRoIGQ9Im0xNSAxOC02LTYgNi02Ii8+PC9zdmc+");
	background-size: 50px;
}

/*
   * Homepage - Após Heros
*/
/* Sobre/Quem Somos */
#quem-somos {
	background-position: center top;
	background-size: cover;
	background-repeat: no-repeat;
   padding: 0;
   overflow: hidden;
}

#quem-somos img.bg {
	width: 100%;
	height: auto;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	z-index: 0;
}
#quem-somos .bg-conteudo img {
	width: 100%;
}

#quem-somos .main {
    background-color: var(--color-azul);
}

#quem-somos .bg-wrapper {
	width: 100%;
	position: relative;
	transform: translateX(-50%);
	left: 50%;
	z-index: 0;
	
	display: none;
}
#quem-somos .bg-wrapper img {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;

	width: 100%;
}

#quem-somos .conteudo .logo {
	display: flex;
	justify-content: center;
	padding: 40px 0 10px;
	margin-bottom: 15px;
}

#quem-somos .conteudo .logo svg {
	width: clamp(15%, 17.5vw, 30%);
	height: auto;
}

#quem-somos .conteudo .texto {
	position: relative;
	padding: 0 clamp(1.7vw, 1.5vw, 2.75vw) 35px;
}
#quem-somos .conteudo .texto p {
	color: var(--color-default);
	font-size: clamp(1.125rem, 1.25vw, 1.25rem);
	text-align: center;
}

#quem-somos .icone {
	display: flex;
	justify-content: center;
	margin-top: 40px;
}

#quem-somos .icone img {
	width: clamp(15%, 5vw, 30%);
}
.qs-ponta {
    padding: 0;
    margin: 0;
}
.qs-ponta img {
    width: 102%;
    height: auto;
    margin-top: -1px;
    transform: translateX(-50%);
    position: relative;
    left: 50%;
}

/* Diferenciais */
#diferenciais {
	padding: 90px 0;
	background-color: var(--color-default);
}

#diferenciais img.img {
	width: 100%;
	height: auto;
}

#diferenciais h2 {
	color: var(--color-laranja);
	font-size: clamp(2.75rem, 4vw, 4rem);
	font-weight: 700;
}

#diferenciais .box-diferenciais {
	margin-top: 5rem;
}

#diferenciais .box {
	gap: 3rem;
}

#diferenciais .box-img {
	display: flex;
	justify-content: center;
}

#diferenciais .box-text p {
	font-weight: 700;
	color: var(--color-azul);
	font-size: clamp(1rem, 3vw, 2rem);
	margin: 0;
}

/* Planos */
#planos {
	background-color: var(--color-azul);
}

#planos h3 {
	color: var(--color-default);
	font-size: clamp(2.85rem, 4vw, 4rem);
	font-weight: 700;
	padding-bottom: 50px;
}

#planos .box {
	background-color: var(--color-semi-branco);
	border-radius: 32px;
	padding: 30px 0;

	display: flex;
	flex-direction: column;
}

#planos .box .box-title {
	min-height: 130px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 0 5%;
}

#planos .box .box-title span {
	color: var(--color-azul);
	text-transform: uppercase;
	text-align: center;
	font-size: 1rem;
	font-weight: 600;
}

#planos .box .box-title strong {
	color: var(--color-laranja);
	font-size: clamp(1.65rem, 2vw, 2rem);
}

#planos .box .box-text {
	color: var(--color-cinza);
	margin: 5px 0 20px;
	padding: 0 3.5%;
}

#planos .box .box-btn {
	margin-top: auto;
}

#planos .box .box-btn a.btn-default {
	font-size: 1rem;
}

/* Fale conosco */
#fale-conosco .title {
	padding: 60px 0;
}

#fale-conosco .title h4 {
	color: var(--color-laranja);
	font-size: clamp(2.85rem, 4vw, 4rem);
	font-weight: 700;
}

#fale-conosco span {
	color: var(--color-laranja);
	font-size: clamp(1.25rem, 1.5vw, 1.5rem);
}

/* FAQ */
#faq {
	background-color: var(--color-default);
}

#faq h5 {
	font-size: clamp(2.85rem, 4vw, 4rem);
	font-weight: 700;
	color: var(--color-light-grey);
}

#faq .faq-item {
	margin-bottom: 10px;
}

#faq .faq-question {
	width: 100%;
	background-color: var(--color-default);
	border: 1px solid #ccc;
	border-radius: 5px 5px 0 0;
	padding: 10px;
	text-align: left;
	cursor: pointer;
	font-size: 16px;
	font-weight: bold;
	box-shadow: 0px 2px 2.5px 0px rgba(0, 0, 0, 0.1);
}

#faq .faq-answer {
	display: none; /* Esconder a resposta inicialmente */
	padding: 10px;
	background-color: var(--color-semi-branco);
	border-left: 2px solid var(--color-azul);
}

#faq .faq-answer p {
	margin: 0;
}

/* Revendedor */
#revendedores {
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	
	min-height: clamp(35vh, 50vw, 55vh);
}
#revendedores h6 {
	font-size: clamp(2.85rem, 4vw, 4rem);
	color: var(--color-default);
	font-weight: 700;
}
#revendedores .chamada p {
	font-size: clamp(1.25rem, 1.5vw, 1.75rem);
	color: var(--color-default);
}
#revendedores #freeHtmlMapStateInfo0 p {
	font-size: 1.25rem;
	color: var(--color-azul);
	font-weight: 700;
}
#revendedor {
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}

#revendedor h6 {
	font-size: clamp(2.85rem, 4vw, 4rem);
	color: var(--color-default);
}

/* Form */
.form-control {
	background-color: var(--color-default);
	color: var(--color-cinza);
	height: 55px;
	font-family: var(--font-default);
	font-weight: 400;
	border-radius: 10px;
	box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.1);
}

.form-group {
	margin-bottom: 1rem;
}

.form-group input::-moz-placeholder {
	color: var(--color-default);
}

.form-group input:-ms-input-placeholder {
	color: var(--color-default);
}

.form-group input::placeholder {
	color: var(--color-cinza);
	padding: 0 10px;
}

.form-group textarea::placeholder {
	color: var(--color-cinza);
	padding: 0 10px;
}

select {
	color: var(--color-preto) !important;
	background-color: var(--color-default);
}

option:not(:first-of-type) {
	color: var(--color-preto);
}

select option:first-child {
	display: none;
}

select.form-control {
	-webkit-appearance: menulist !important;
	-moz-appearance: menulist !important;
	-ms-appearance: menulist !important;
	-o-appearance: menulist !important;
	appearance: menulist !important;
}

textarea.form-control {
	min-height: calc(10.5em + 0.75rem + 2px);
}

.form-control:focus,
form input[type="text"]:focus,
form input[type="email"]:focus,
form input[type="number"]:focus,
form input[type="url"]:focus,
form input[type="search"]:focus,
form input[type="tel"]:focus,
form input[type="password"]:focus,
form input[type="date"]:focus,
form input[type="color"]:focus,
form select:focus,
form textarea:focus {
	color: var(--color-light-grey);
	background-color: var(--color-default);
	border-color: transparent;
	-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;
}

label.form-control {
	color: var(--color-preto);
	padding-top: 9px;
}

/* Contact Form 7 */
.wpcf7-not-valid-tip {
	font-weight: 500 !important;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
	border-color: var(--color-laranja);
	border-radius: 10px;
	border-width: 1px;
	box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.1);
}

.wpcf7-not-valid-tip {
	color: var(--color-laranja);
	padding-left: 20px;
	font-size: 0.8rem;
}

.wpcf7 form .wpcf7-response-output {
	color: var(--color-laranja);
}
.wpcf7 form.sent .wpcf7-response-output {
	border-radius: 10px;
	padding: 8px 20px;
	text-align: center;
	font-size: 1.25rem;
	font-weight: 700;
}

.wpcf7-spinner {
	display: none;
}

/*
    * Footer
*/
footer {
	background: var(--color-semi-branco);
	padding: 30px 30px 60px;
	text-align: center;
}

footer p {
	text-align: left;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	margin-bottom: 0;
}

footer .contato a {
	gap: 15px;
	justify-content: center;
}

footer .social {
	display: flex;
	justify-content: center;
	margin: 35px 0;
}

footer .social .styled-icons ul {
	padding: 0;
	margin: 0;
}

footer .social ul.styled-icons {
	display: flex;
	margin: 0;
	padding: 0;
}

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

footer .address {
	color: var(--color-light-grey);
}
footer .address p {
	text-align: center;
	font-size: clamp(1rem, 1.25vw, 1.125rem);
}

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

footer .social .styled-icons li .fa {
	font-size: 25px;
	line-height: 50px;
	transition: 0.3s;
	color: var(--color-azul);
}

footer .social .styled-icons li a:hover {
	background-color: transparent;
	border: 1px solid var(--color-laranja);
	/* Change border color on hover */
}

footer .social .styled-icons li a:hover .fa {
	color: var(--color-laranja);
}

footer button.btn-default {
	margin-top: 15px;
	padding: 12px 30px;
}

footer #VerEmail {
	font-size: clamp(0.75rem, 1vw, 1rem);
}

footer a.btn-default,
footer a.btn-default:focus {
	color: var(--color-laranja);
	background: transparent;
	border-color: var(--color-laranja);
	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-azul);
	background-color: transparent;
	border-color: var(--color-azul);
}

/* Voltar ao topo */
.back-to-top {
	visibility: hidden;
	background-color: var(--color-laranja);
	color: var(--color-preto);
	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-preto);
	opacity: 1;
}

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

/*
  * Botao Flutuante Whatsapp
*/
#wa_button {
	bottom: 20px;
	right: 0;
	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;
	}
}
