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

:root {
	--font-default: "Montserrat", sans-serif, Arial;
	--color-white: #fff;
	--color-black: #000;
	--color-gold: #c4a057;
	--color-gold-dark: #7f5822;
	--color-yellow: #ffbb50;
	--color-grey: #4b4b4b;
	--color-grey-light: #f6f6f6;

	scroll-behavior: smooth;
}

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

/* General */
body {
	font-family: var(--font-default);
	color: var(--color-grey);
}
a {
	color: var(--color-gold);
	text-decoration: none;
}
a:hover {
	color: var(--color-gold-dark);
	text-decoration: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--font-default);
}

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

/* Buttons */
.btn,
.btn:focus {
	/* min-width: clamp(135px, 13.5vw, 260px); */
	padding: 0 35px;
	height: 50px;
	font-family: var(--font-default);
	font-size: clamp(1rem, 1.375vw, 1.5rem);
	font-weight: 700;
	border: 0;
	border-radius: 13px;
	transition: all 0.567s ease;
	display: flex;
	align-items: center;
	justify-content: center;
}
.btn-gold,
.btn-gold:focus {
	color: var(--color-white);
	background: linear-gradient(91.11deg, #d9cea7 -32.22%, #845d1b 108.66%);
}
.btn-gold:hover,
.btn-gold:focus:hover {
	color: var(--color-gold);
	background: var(--color-white);
}

.btn-gold-dark,
.btn-gold-dark:focus {
	color: var(--color-white);
	background: var(--color-gold-dark);
}
.btn-gold-dark:hover,
.btn-gold-dark:focus:hover {
	color: var(--color-gold-dark);
	background: var(--color-white);
	outline: 2px solid var(--color-gold-dark);
}

.row {
	row-gap: clamp(1rem, 1.5vw, 1.5rem);
}

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

/* Header */
#header {
	background-color: var(--color-white);
	transition: all 0.5s;
	z-index: 997;
	height: 90px;
	gap: 8px;
	box-shadow: 0px 4px 4px 0px #00000040;
}
#header .logo img {
	width: auto;
	max-height: 65px;
}
#header .button {
	min-width: clamp(135px, 13.5vw, 260px);
	max-width: 250px;
	height: 42px;

	font-family: var(--font-default);
	font-size: clamp(0.875rem, 1.2vw, 1.25rem);
	font-weight: 700;
  color: var(--color-white);

  background-color: var(--color-gold-dark);
	border: 2px solid var(--color-gold-dark);
	border-radius: 13px;
	transition: all 0.567s ease;

	display: flex;
	align-items: center;
	justify-content: center;
}
#header .button:hover {
	background-color: transparent;
	color: var(--color-gold-dark);
}
#header > .container {
  justify-content: space-between;
}

/* Navbar */
.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 > ul > li > a:before {
	content: "";
	position: absolute;
	width: 17px;
	height: 4px;
	bottom: -6px;
	left: 50%;
	transform: translateX(-50%);
	background-color: var(--color-blue);
	border-radius: 2px;
	visibility: visible;
	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-grey);
}
.navbar a,
.navbar a:focus {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 20px;
	font-family: var(--font-default);
	font-size: 1rem;
	font-weight: 400;
	color: var(--color-grey);
	white-space: nowrap;
	transition: 0.3s;
	position: relative;
	text-transform: uppercase;
}
.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover > a {
	color: var(--color-blue);
}
.navbar > ul > li > a.button:before {
	visibility: hidden;
}
.navbar.scrolled a,
.navbar.scolled a:focus {
	color: var(--color-grey);
}
.navbar.scrolled a:hover,
.navbar.scolled a:hover:focus {
	color: var(--color-blue);
}
.navbar.scolled > ul > li > a:before {
	content: "";
	position: absolute;
	width: 17px;
	height: 4px;
	bottom: -6px;
	left: 50%;
	transform: translateX(-50%);
	background-color: var(--color-blue);
	visibility: visible;
	width: 0px;
	transition: all 0.3s ease-in-out 0s;
}
.navbar.page a,
.navbar.page a:focus {
	color: var(--color-gold);
}
.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-white);
	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-green);
}
.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-grey);
}
.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-demi-grey--color-grey);
}
.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: var(--color-gold);
	font-size: 28px;
	cursor: pointer;
	line-height: 0;
	transition: 0.5s;
	
  position: absolute;
  left: 9.5%;
}
.mobile-nav-hide {
	color: var(--color-demi-grey--color-grey);
	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-gold);
}
.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;
}

.search-menu {
	background-color: #f1f1f1;
	padding: 5px 0;
}
#header .social .styled-icons {
	padding: 0;
	margin: 0;
	display: flex;
}
#header .social .styled-icons li {
	list-style: none;
	margin: 0 5px;
}
#header .social .styled-icons li a {
	position: relative;
	display: block;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	border: 1px solid var(--color-gold);
	background-color: transparent;
	text-align: center;
	transition: 0.6s;
	padding: 0;
}
#header .social .styled-icons li .fa {
	font-size: 16px;
	line-height: 27px;
	transition: 0.3s;
	color: var(--color-gold);
}
#header .social .styled-icons li a:hover {
	background-color: var(--color-gold-dark);
}
#header .social .styled-icons li a:hover .fa {
	color: var(--color-white);
}

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

/* Hero */
section#hero {
	padding: 0;
	margin-top: 90px;
}
#hero .banner {
	min-height: 679px;
	height: 90vh;
	color: var(--color-white);
	position: relative;
}

#hero .banner .img-banner {
	position: relative;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
}
#hero .banner .img-banner img {
	position: absolute;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

#hero .banner .text-banner {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	z-index: 9;
}
#hero .text-banner h1 {
	font-size: clamp(2rem, 2.5vw, 2.5rem);
	font-weight: 800;
}
#hero .text-banner p {
	font-size: clamp(1.125rem, 1.375vw, 1.5rem);
}
#hero .text-banner img {
	width: 100%;
	height: auto;
}
#hero .girassol {
	position: absolute;
	left: 0;
	bottom: -12.5%;
  z-index: 9;

	& img {
		max-width: 390px;
		width: clamp(265px, 22vw, 390px);
		height: auto;
	}
}

/* Diferenciais */
#difereciais .section-title h2 {
	font-weight: 700;
	font-size: clamp(2rem, 2.5vw, 3rem);
	margin: 0;
}
#difereciais .box {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	background-color: var(--color-grey-light);
	padding: clamp(0.75rem, 1.6vw, 1.75rem) clamp(1rem, 1.85vw, 2rem);
}
#difereciais .box .icon {
	width: 158px;
	height: 158px;
}
#difereciais img {
	width: 100%;
	height: auto;
}
#difereciais .box .content {
	flex: 1;
}
#difereciais .box .content .title h3 {
	font-size: clamp(1.125rem, 2vw, 2rem);
	font-weight: 700;
}
#difereciais .box .content p {
	font-weight: 500;
	font-size: clamp(0.875rem, 1.1vw, 1.25rem);
	margin: 0;
}

#agrupado img {
	width: 100%;
	aspect-ratio: 4/3;
	object-fit: cover;
	object-position: center;
}

/* Sobre */
#sobre .agrupado img {
	width: 100%;
	height: auto;
}
#sobre .main {
	padding-top: 80px;
}
#sobre .text h2 {
	font-weight: 700;
	font-size: clamp(2rem, 2.5vw, 3rem);
}
#sobre .text p {
	font-weight: 500;
	font-size: clamp(1rem, 1.1vw, 1.25rem);
}
#sobre .wrapper {
	width: 100%;
  aspect-ratio: 1/1;

	position: relative;
}
#sobre .wrapper img {
	width: 100%;
	height: 100%;

  object-fit: cover;
  object-position: center;

  border-radius: 50%;
}
#sobre .wrapper img.girassois {
	position: absolute;
	bottom: -5%;
	right: 0;

  width: 55%;
  height: auto;
  border-radius: 0;
}
#sobre .frase {
  position: relative;

  margin-top: 120px;
  padding: 22px 100px;

  background-color: var(--color-yellow);
  border-radius: 19px;

  max-width: 870px;
  font-weight: 300;
  font-size: clamp(1.5rem, 2vw, 2rem);
  text-align: center;
}
#sobre .frase h4 {
  font-weight: 700;
  font-size: 2rem;
}
#sobre .frase img.aspas_i,
#sobre .frase img.aspas_e {
  position: absolute;

  width: 120px;
  height: auto;
}
#sobre .frase img.aspas_i {
  transform: translateY(-33.5%);

  top: 0;
  left: -30px;
}
#sobre .frase img.aspas_e {
  transform: rotate(180deg) translateY(-50%);

  right: -20px;
  bottom: 50%;
}

/* Salas */
#salas {
	position: relative;
}
#salas .container {
	position: relative;
	z-index: 1;
}
#salas .box .icon {
  position: relative;
  display: flex;
  justify-content: end;
	margin-bottom: 35px;
}
#salas .box .icon img {
	width: 95%;
	height: auto;

  position: relative;
  z-index: 3;
}
#salas .box .icon::after {
  content: "";
  position: absolute;

  background-color: var(--color-yellow);
  border-radius: 19px;

  left: 0;
  top: -5%;
	width: 95%;
	height: 100%;
  z-index: 1;
}
#salas .box .content {
	display: flex;
	flex-direction: column;
	gap: 1.125rem;
	text-align: left;
  padding-left: 5%;
}
#salas .box .content .title h4 {
	font-weight: 700;
	font-size: clamp(1.5rem, 2vw, 2rem);
}


/* Horarios */
#horarios {
	padding: 40px;
}
#horarios img {
	width: 100%;
	height: auto;
}

/* Venha Conhecer */
#venha-conhecer {
	background-color: var(--color-blue);
	overflow: hidden;
}
#venha-conhecer .content h5 {
	font-weight: 700;
	font-size: clamp(2rem, 2.5vw, 3rem);
	margin: 0;
}
#venha-conhecer .content p {
	font-weight: 500;
	font-size: clamp(1rem, 1.2vw, 1.5rem);
	text-align: center;
}
#venha-conhecer .wrapper {
  width: 100%;
  aspect-ratio: 16/9;
}
#venha-conhecer .wrapper iframe {
  width: 100%;
  height: 100%;
}
#venha-conhecer img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
#venha-conhecer .adress {
	font-size: clamp(0.825rem, 1.2vw, 1.25rem);
	text-align: left;

  & p {
    margin: 0;
    font-weight: 700;
  }
}
#venha-conhecer .adress i {
	font-size: clamp(3.5rem, 4vw, 5rem);
	color: var(--color-gold);
}
#venha-conhecer .adress h6 {
	font-weight: 700;
	margin: 0;
}

/*
    * Footer
*/
footer {
	background: var(--color-grey-light);
	text-align: center;
	padding: 20px 0 25px;
}
footer .logo img {
	width: 100%;
	height: auto;
}
footer .titulo h5 {
	font-weight: 300;
	font-size: clamp(2rem, 2.5vw, 3rem);
}
footer .btn {
	border-color: var(--color-white);
}
footer .social {
	margin-bottom: 35px;
	display: flex;
	justify-content: center;
}
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 .social .styled-icons li a {
	position: relative;
	display: block;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background-color: transparent;
	border: 2px solid var(--color-gold);
	text-align: center;
	transition: 0.6s;
}
footer .social .styled-icons li .fa {
	font-size: 25px;
	line-height: 50px;
	transition: 0.3s;
	color: var(--color-gold);
}
footer .social .styled-icons li a:hover {
	color: var(--color-white);
	background-color: var(--color-gold);
	border: 2px solid var(--color-gold); /* Change border color on hover */
}
footer .social .styled-icons li a:hover .fa {
	color: var(--color-white);
}
footer .btn {
	min-width: clamp(230px, 16.5vw, 260px);
}
footer a.btn-default,
footer a.btn-default:focus {
	color: var(--color-white);
	background: transparent;
	border-color: var(--color-white);
	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-green);
	background: var(--color-white);
	border-color: var(--color-green);
}
footer .adress {
	font-size: clamp(1rem, 1.2vw, 1.25rem);
	text-align: left;
}
footer .adress i {
	font-size: clamp(3.5rem, 4.4vw, 6rem);
	color: var(--color-grey);
}
footer .adress h6 {
	font-weight: 700;
	margin: 0;
}

/*
    * Outras Paginas
*/

#search {
	background-color: var(--color-demi-grey--color-grey);
	margin-top: 10em;
	margin-bottom: 3em;
}
#search h2 {
	color: var(--color-grey);
	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-grey);
	background-color: transparent;
	border: 1px solid var(--color-grey);
	-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-grey);
}
#search .list-group-item.active p {
	color: var(--color-grey);
	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-demi-grey--color-grey);
	background-color: var(--color-grey);
	border: 1px solid var(--color-grey);
}
#search-input {
	align-items: center;
	background: var(--color-white);
	border: 1px solid #f1f1f1;
	border-radius: 0.5rem;
	display: flex;
	justify-content: space-between;
	gap: 10px;
	padding: 3px 8px;
	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-grey);
}
#search-input input {
	flex: 1;
	color: var(--color-grey);
	border-color: transparent;
	font-size: 0.9rem;
}
#search-input input::-moz-placeholder {
	color: var(--color-demi-grey--color-grey);
}
#search-input input:-ms-input-placeholder {
	color: var(--color-demi-grey--color-grey);
}
#search-input input::placeholder {
	color: var(--color-grey);
}
#search-input input:focus {
	color: var(--color-demi-grey--color-grey);
	border-color: transparent;
	-webkit-box-shadow: 0 0 3px transparent;
	-moz-box-shadow: 0 0 3px transparent;
	box-shadow: 0 0 3px transparent;
	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-demi-grey--color-grey);
	background-color: var(--color-grey);
	border: solid 1px var(--color-grey);
	border-radius: 10px;
}
.pagination-item a:hover {
	color: var(--color-grey);
	background-color: transparent;
	border: solid 1px var(--color-demi-grey--color-grey);
}
.pagination-item span.current {
	padding: 11px 16px 11px 16px;
	display: inline-block;
	transition: 0.2s all;
	color: var(--color-grey);
	background-color: var(--color-grey);
	border: solid 1px var(--color-grey);
	border-radius: 10px;
}

/* Form */
.form-control {
	background-color: var(--color-white);
	color: var(--color-grey);
	height: 55px;
	font-family: var(--font-default);
	font-weight: 400;
	border-radius: 10px;
}
.form-group {
	margin-bottom: 1rem;
}
.form-group input::-moz-placeholder {
	color: var(--color-white);
}
.form-group input:-ms-input-placeholder {
	color: var(--color-white);
}
.form-group input::placeholder {
	color: var(--color-demi-grey--color-grey);
	padding: 0 10px;
}
.form-group textarea::placeholder {
	color: var(--color-demi-grey--color-grey);
	padding: 0 10px;
}
select {
	color: var(--color-grey) !important;
	background-color: var(--color-white);
}
option:not(:first-of-type) {
	color: var(--color-grey);
}
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-grey);
	background-color: var(--color-white);
	border-color: var(--color-demi-grey--color-grey);
	-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-demi-grey--color-grey);
	padding-top: 9px;
}

/* Contact Form 7 */
.wpcf7-not-valid-tip {
	font-weight: 700 !important;
	color: var(--color-red);
}
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
	border-color: var(--color-red);
}
.wpcf7 form .wpcf7-response-output {
	color: var(--color-white);
}

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