:root {
	--font-default: "Sora", sans-serif, Arial;

	--color-white: #fff;
	--color-black: #000;
	--color-blue: #5f97c8;
	--color-blue-light: #23b3e8;
	--color-red: #c23d3d;
	--color-demi-black: #2d2d2d;
	--color-grey: #ebebeb;

	--text-heading-lg: 700 clamp(2rem, 3.75vw, 4rem) var(--font-default);
	--text-heading: 700 clamp(1.875rem, 2.85vw, 3rem) var(--font-default);
	--text-heading-sm: 700 clamp(1.5rem, 1.9vw, 2rem) var(--font-default);

	--text-body-xxl: 400 clamp(1.875rem, 2.85vw, 3rem) var(--font-default);
	--text-body-lg: 400 clamp(1rem, 1.5vw, 1.5rem) var(--font-default);
	--text-body: 400 clamp(0.875rem, 1.2vw, 1.125rem) var(--font-default);
	--text-body-sm: 400 clamp(0.75rem, 1vw, 1rem) var(--font-default);

	scroll-behavior: smooth;
}

html {
	scroll-behavior: smooth;
	scroll-padding: 80px;
}

/* General */
body {
	font: var(--text-body);
	color: var(--color-white);
}
a {
	color: var(--color-white);
	text-decoration: none;
}
a:hover {
	color: var(--color-black);
	text-decoration: none;
}
h1,
h2 {
	font: var(--text-heading-lg);
	margin: 0;
}

h3,
h4,
h5,
h6 {
	font: var(--text-heading-sm);
	margin: 0;
}
strong {
	font-weight: 700;
}
p {
	margin: 0;
}
li {
	font: var(--text-body-lg);
}

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

/* Buttons */
.btn,
.btn:focus {
	padding: 0 35px;
	height: 50px;
	font-family: var(--font-default);
	font-size: clamp(0.875rem, 1.2vw, 1rem);
	font-weight: 700;
	border: 0;
	border-radius: 100px;
	transition: 0.567s;

	display: flex;
	align-items: center;
	justify-content: center;
}
.btn-default,
.btn-default:focus {
	color: var(--color-white);
	background: var(--color-red);
}
.btn-default:hover,
.btn-default:focus:hover {
	color: var(--color-white);
	background: var(--color-blue-light);
}
.btn-secondary,
.btn-secondary:focus {
	color: var(--color-white);
	background: transparent;
	border-color: var(--color-white);
}
.btn-secondary:hover,
.btn-secondary:focus:hover {
	color: var(--color-black);
	background: var(--color-white);
	border-color: var(--color-white);
}

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

/* Header */
#header {
	background-color: var(--color-white);
	transition: transform 0.5s ease, height 0.3s linear;
	z-index: 997;
	height: 90px;
	gap: 8px;
	box-shadow: 0px 4px 4px 0px #00000040;
}
#header .logo img {
	width: auto;
	height: 80px;
}
#header .main {
	gap: clamp(100px, 12vw, 130px);
	justify-content: space-between;
	align-items: center;
}
#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-purple);
	background-color: transparent;
	text-align: center;
	transition: 0.6s;
	padding: 0;
}
#header .social .styled-icons li i {
	font-size: 16px;
	line-height: 27px;
	transition: 0.3s;
	color: var(--color-black);
}
#header .social .styled-icons li a:hover {
	background-color: var(--color-red);
}
#header .social .styled-icons li a:hover i {
	color: var(--color-white);
}

/* Navbar */
.navbar {
	padding: 0;
}
.navbar ul {
	margin: 0;
	padding: 0;
	display: flex;
	column-gap: clamp(3rem, 5.5vw, 7.5rem);
	list-style: none;
	align-items: center;
}
.navbar li {
	position: relative;
}
.navbar > ul > li {
	white-space: nowrap;
}
.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-red);
} */
.navbar a,
.navbar a:focus {
	font: var(--text-body);
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0;
	color: var(--color-blue);
	white-space: nowrap;
	transition: 0.3s;
	position: relative;
}
.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover > a {
	color: var(--color-red);
}
.navbar > ul > li > a.button:before {
	visibility: hidden;
}
.navbar.scrolled a,
.navbar.scolled a:focus {
	color: var(--color-blue);
}
.navbar.scrolled a:hover,
.navbar.scolled a:hover:focus {
	color: var(--color-red);
}
.navbar.scolled > ul > li > a:before {
	content: "";
	position: absolute;
	width: 17px;
	height: 4px;
	bottom: -6px;
	left: 50%;
	transform: translateX(-50%);
	background-color: var(--color-red);
	visibility: visible;
	width: 0px;
	transition: all 0.3s ease-in-out 0s;
}
.navbar.page a,
.navbar.page a:focus {
	color: var(--color-red);
}
.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-beige);
	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-red);
}
.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-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 {
	position: absolute;
	right: 15px;
	font-size: 28px;
	cursor: pointer;
	line-height: 0;
	transition: 0.5s;
	margin-left: 10px;
}
.mobile-nav-hide {
	color: var(--color-red);
	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 {
	color: var(--color-blue);

	&.mobile-nav-show {
		color: var(--color-blue);
	}
}
.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;
}
.mobile-nav-active #navbar_dir.navbar:before {
	background: transparent;
}

.search-menu {
	background-color: #f1f1f1;
	padding: 5px 0;
}

/* Section */
section {
	min-height: clamp(600px, 55vw, 800px);
	height: clamp(60vh, 70vw, 80vh);
	position: relative;
}

.container {
	position: relative;
	z-index: 3;
}

.swiper-pagination-bullet-active {
	background: var(--color-red);
}

.bg {
	position: absolute;
	width: 100%;
	height: 100%;
}
.bg img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	z-index: -1;
}

.to_right {
	margin-left: auto;
}
.to_left {
	margin-right: auto;
}
.section-title {
	text-align: center;
	margin-bottom: 4rem;
}
.mb_only {
	display: none;
}
.rectangle {
	width: 118px;
	height: 10px;
	background: var(--color-red);
}
.rectangle-lg {
	width: 170px;
	height: 10px;
	background: linear-gradient(
		to right,
		var(--color-blue) 70%,
		var(--color-red) 70%
	);
}

/* Hero */
section#hero {
	padding: 0;
	overflow: hidden;
	height: clamp(50vh, 60vw, 100vh);
	min-height: unset;
}
#hero .banner {
	height: clamp(50vh, 60vw, 100vh);
}

#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;
	inset: 0;

	display: flex;
	align-items: center;
	z-index: 9;

	& .text {
		/* margin-bottom: clamp(3rem, 5vw, 6rem); */

		& .btn {
			margin-top: clamp(2.5rem, 4.5vw, 5rem);
		}
	}
}

.line {
	width: 2.125rem;
	height: 5px;
	border-radius: 100px;
	background-color: var(--color-red);
}

/* Quem Somos */
#quem-somos {
	color: var(--color-white);
	height: unset;

	& .bg {
		& img {
			width: 100%;
			object-position: center;
		}
	}

	& .container,
	.row {
		height: 100%;
		padding-block: 4rem;
	}

	& img {
		width: 100%;
	}
}

#brasil {
	background-color: var(--color-white);
	color: var(--color-black);

	& .content {
		& h2 {
			color: var(--color-blue);
		}
	}

	& svg {
		max-width: 100%;
		height: auto;
	}
}

#servicos {
	height: unset;
	min-height: unset;

	padding-block: clamp(4rem, 6vw, 6rem);

	color: var(--color-blue);

	& .box {
		position: relative;

		width: 100px;
		height: 440px;

		overflow: hidden;

		background-color: var(--color-blue);
		color: var(--color-white);

		border-radius: 10px;

		padding: 1rem 1.75rem;

		& .box-bg {
			position: absolute;
			z-index: 0;

			width: 100%;
			height: 100%;

			& img {
				width: 100%;
				height: 100%;

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

		& .box-content {
			width: 80px;
			height: 400px;

			position: relative;
			z-index: 9;

			& h3 {
				font-size: clamp(1.25rem, 1.5vw, 1.5rem);

				position: absolute;
				z-index: 9;
				bottom: 0;
				left: 20px;

				transition: all 0.35s linear;

				transform: rotate(-90deg) translateY(50%);
				transform-origin: left bottom;

				width: 400px;
			}

			& p {
				display: none;
			}
		}

		&.active {
			flex: 1;

			align-items: end;

			& .box-content {
				width: unset;
				height: unset;

				& h3 {
					position: unset;
					transform: rotate(0) translateY(0);

					width: unset;
				}

				& p {
					display: block;
				}
			}
		}
	}

	& .services {
		overflow: hidden;

		display: flex;
		gap: 1rem;
	}
}

#clientes {
	height: unset;
	min-height: unset;

	padding-block: clamp(4rem, 6vw, 6rem);

	color: var(--color-blue);

	& .cliente {
		width: 100%;
		aspect-ratio: 1/1;

		display: flex;
		align-items: center;
		justify-content: center;

		& img {
			width: 100%;
			height: 100%;

			object-fit: contain;
			object-position: center;

			&.Bayer,
			&.WEG {
				width: 80%;
				height: 80%;
			}
		}
	}
}

#contato {
	background-color: var(--color-black);
	height: unset;
	min-height: unset;

	padding-block: clamp(2.5rem, 3.2vw, 3.5rem);

	& h2 {
		font: var(--text-heading);
	}

	& .section-title {
		margin-bottom: clamp(1.875rem, 3vw, 3.25rem);
	}

	& .row {
		row-gap: clamp(0.75rem, 1.3vw, 1.5rem);
	}

	& .btn {
		color: var(--color-white);
		border: 2px solid var(--color-white);

		&:hover {
			color: var(--color-black);
			background-color: var(--color-white);
		}
	}
}

/*
    * Footer
*/
footer {
	color: var(--color-blue);
	text-align: center;
	padding: 70px 0 75px;
}
footer .logo {
	max-width: 230px;
	height: auto;
}
footer .titulo h5 {
	font-weight: 300;
	font-size: clamp(2rem, 2.5vw, 3rem);
}
footer .btn,
footer .btn:focus {
	border: 2px solid var(--color-blue);
	color: var(--color-blue);
}
footer .btn:hover {
	border-color: var(--color-red);
	background-color: var(--color-red);
	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-blue);
	text-align: center;
	transition: 0.6s;
}
footer .social .styled-icons li i {
	font-size: 25px;
	line-height: 50px;
	transition: 0.3s;
	color: var(--color-blue);
}
footer .social .styled-icons li a:hover {
	color: var(--color-white);
	background-color: var(--color-blue);
	border: 2px solid var(--color-white); /* Change border color on hover */
}
footer .social .styled-icons li a:hover i {
	color: var(--color-white);
}

footer {
	& .infos {
		text-align: left;
		display: grid;
		gap: 1rem;
		justify-content: center;

		& .cod-conduta {
			color: var(--color-blue);
			text-decoration: underline;

			font-weight: 600;

			&:hover {
				color: var(--color-blue-light);
			}
		}
	}

	& .all-ad {
		flex-wrap: wrap;
	}

	& .address {
		width: 20%;
		flex: 1;

		padding: 0 0.5rem 1rem;

		border-right: 1px solid var(--color-blue);

		text-align: left;

		& h3 {
			font: var(--text-body);
			font-weight: 700;
			margin-bottom: 0.75rem;
		}

		& p {
			color: var(--color-black);
		}

		&:nth-last-child(1) {
			border-right: 0;
		}
	}
	
	& .isos {
		& img {
			width: 120px;
			height: auto;
		}
	}
}

/*
    * Outras Paginas
*/
/* Politica de privacidade */
/* Estilos específicos para a seção de política */
#policy {
	height: unset;
	min-height: unset;

	margin-top: 100px;

	background-color: var(--color-grey);
	padding: 2rem;
	border-radius: 8px;
	color: var(--color-demi-black);
}

/* Títulos da política */
#policy h1 {
	font: var(--text-heading);
	margin-bottom: 1rem;
	color: var(--color-black);
}

#policy h2 {
	font: var(--text-heading-sm);
	margin-top: 1.5rem;
	margin-bottom: 0.5rem;
	color: var(--color-black);
}

/* Listas */
#policy ul {
	padding-left: 1.5rem;
	margin-bottom: 1rem;
}

#policy ul li {
	margin-bottom: 0.5rem;
	font: var(--text-body);
}

/* Links dentro da política */
#policy a {
	color: var(--color-blue);
	text-decoration: none;
}

#policy a:hover,
#policy a:focus {
	color: var(--color-blue-light);
	outline: 2px solid var(--color-blue-light);
	outline-offset: 2px;
}

/* Ajustes responsivos */
@media (min-width: 768px) {
	#policy {
		padding: 3rem;
	}
}
/* fim de politica */

/* Vagas */
#vagas {
	margin-top: 103px;
	height: unset;
	min-height: unset;

  
	color: var(--color-blue);
  
	& .vaga {
    border: 2px solid var(--color-blue);
    border-radius: 1rem;

    padding: 1rem;

		& p {
			color: var(--color-black);
		}
	}
}

#search {
	background-color: var(--color-demi-black);
	margin-top: 10em;
	margin-bottom: 3em;
}
#search h2 {
	color: var(--color-black);
	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-black);
	background-color: transparent;
	border: 1px solid var(--color-black);
	-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-black);
}
#search .list-group-item.active p {
	color: var(--color-black);
	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-black);
	background-color: var(--color-black);
	border: 1px solid var(--color-black);
}
#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-black);
}
#search-input input:-ms-input-placeholder {
	color: var(--color-demi-black);
}
#search-input input::placeholder {
	color: var(--color-grey);
}
#search-input input:focus {
	color: var(--color-demi-black);
	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-black);
	background-color: var(--color-black);
	border: solid 1px var(--color-black);
	border-radius: 10px;
}
.pagination-item a:hover {
	color: var(--color-black);
	background-color: transparent;
	border: solid 1px var(--color-demi-black);
}
.pagination-item span.current {
	padding: 11px 16px 11px 16px;
	display: inline-block;
	transition: 0.2s all;
	color: var(--color-black);
	background-color: var(--color-black);
	border: solid 1px var(--color-black);
	border-radius: 10px;
}

/* Form */
.form-control {
	background-color: var(--color-white);
	color: var(--color-black);
	height: 55px;
	font-family: var(--font-default);
	font-weight: 400;
	border-radius: 10px;
}
.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-black);
	padding: 0 10px;
}
.form-group textarea::placeholder {
	color: var(--color-demi-black);
	padding: 0 10px;
}
select {
	color: var(--color-black) !important;
	background-color: var(--color-white);
}
option:not(:first-of-type) {
	color: var(--color-black);
}
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-black);
	background-color: var(--color-white);
	border-color: var(--color-demi-black);
	-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-black);
	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-black);
	color: var(--color-demi-black);
	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 i {
	font-size: 22px;
	vertical-align: middle;
}
.back-to-top:hover {
	background-color: var(--color-white);
	color: var(--color-demi-black);
	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;
	}
}
