#header.fixed {
	position: fixed;
//	background: #fff;
	box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.03);
	z-index: 99;
	}

#header.fixed:before {
	width: 100%;
	height: 100%;
	position: absolute;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(20px);
	content: "";
	top: 0; left: 0;
	}

#header.fixed .header-holder {
	top: 32px;
	}

#header.fixed #logo {
	background: url(../img/sonoinspec-logo.svg);
	} 

#header.fixed #menu li a {
	color: #000;
	}

#header.fixed #menu li a.contact {
	color: #fff;
	box-shadow: 0 20px 40px rgba(114, 196, 72, 0.25);
	}

.download {
	width: 400px;
	min-height: 400px;
	position: relative;
	background: #e3f3da;
	border-radius: 32px;
	display: inline-block;
	}

.download.long {
	min-height: 580px;
	text-align: center;
	}

.download:before {
	width: 70px;
	height: 70px;
	position: absolute;
	background: #72c448 url(../img/download.svg);
	border-radius: 99px;
	box-shadow: 0 20px 40px rgba(114, 196, 72, 0.45);
	content: "";
	display: block;
	margin-left: -35px;
	top: -35px; left: 50%;
	}

.d-holder {
	box-sizing: border-box;
	padding: 50px 40px;
	}

.download h3 {
	font-size: 30px;
	letter-spacing: -2px;
	margin-bottom: 20px;
	}

.download p {
	font-size: 18px;
	line-height: 160%;
	}

.input {
	background: #fff;
	border-radius: 14px;
	box-shadow: 0px 20px 30px rgba(0, 0, 0, 0.02);
	display: inline-block;
	margin-top: 36px;

	transition: background .4s ease;
	}

.input.wrong {
	background: #ff9696;
	}

.download.long .input {
	width: 100%;
	}

.input input {
	width: 156px;
	background: none;
	font-family: "Averta Std";
	font-size: 17px;
	letter-spacing: -0.3px;
	box-sizing: border-box;
	float: left;
	padding: 20px;

	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;

	transition: width .5s ease, color .4s ease;
	}

.input.wrong input {
	color: #9b312e;
	}

.download.long .input input {
	width: 265px;
	}

.input input::placeholder {
	color: #b4b4b4;
	}

.input input::-ms-input-placeholder {
	color: #b4b4b4;
	}

.input input:-ms-input-placeholder {
	color: #b4b4b4;
	}

.download-button {
	width: 48px;
	height: 48px;
	background-color: #72c448;
	background-image: url(../img/arrow-right.svg);
	background-position: 0;
	border-radius: 15px;
	box-shadow: 0 20px 40px rgba(114, 196, 72, 0.45);
	cursor: pointer;
	float: left;
	margin-top: 6.5px;
	margin-right: 7px;

	transition: background-color .4s ease, background-position .4s ease;
	}

.download-button:hover {
	background-color: #308d00;
	background-position: 4px 0;
	}

.input.wrong .download-button {
	background-color: #c3302f;
	}

.download .notification {
	font-size: 19px;
	color: #408b1a;
	letter-spacing: -0.3px;
	display: none;
	margin-top: 20px;
	margin-bottom: -15px;
	}

.download .notification.show {
	display: block;
	}

.download .person {
	width: 121px;
	height: 112px;
	position: absolute;
	background: #72c448;
	border-radius: 32px 0 32px 0;
	bottom: 0; right: 0;
	}

.download.long .person {
	width: 171px;
	height: 140px;
	}

.person .founder {
	width: 121px;
	height: 136px;
	position: absolute;
	background: url(../img/fred-gabriels.png);
	background-size: cover;
	border-radius: 0 0 32px 0;
	bottom: 0; right: 0;
	}

.download.long .person .founder {
	width: 171px;
	height: 193px;
	}

.block.gray {
	background: #fafafa;
	}

.mid {
	font-size: 48px;
	letter-spacing: -3px;
	text-align: center;
	}

.block.icon:before {
	width: 60px;
	height: 60px;
	position: absolute;
	background-color: #72c448;
	border-radius: 99px;
	box-shadow: 0 20px 40px rgba(114, 196, 72, 0.45);
	content: "";
	display: block;
	margin-left: -30px;
	top: -30px; left: 50%;
	}

.block.icon.benefits:before {
	background-image: url(../img/expert.svg);
	}

.block.icon.partners:before {
	background-image: url(../img/partners.svg);
	}

.block.icon.earth:before {
	width: 80px;
	height: 80px;
	position: relative;
	background-image: url(../img/earth.svg);
	margin-left: -40px;
	}

.benefits {
	display: flex;
	justify-content: center;
	}

.benefit {
	width: 33%;
	height: 360px;
	position: relative;
	background: #e3f3da url(../img/benefit.svg);
	background-size: 80%;
	background-position: center top;
	background-repeat: no-repeat;
	border-radius: 18px;
	box-sizing: border-box;
	padding: 40px 0;
	margin: 50px 20px;
	}

.benefit .p-holder {
	width: 100%;
	height: 98px;
	background: #fff;
	position: absolute;
	font-size: 18px;
	line-height: 160%;
	text-align: center;
	border-radius: 0 0 18px 18px;
	box-sizing: border-box;
	padding: 20px;
	left: 0; bottom: 0;
	}

.benefit p {
	position: relative;
	margin: 0 auto;
	top: 50%;

	transform: translateY(-50%);
	}

.media {
	position: relative;
	}

.media.full {
	width: 100%;
	display: inline-block;
	margin-top: 80px;
	}

.image {
	width: 400px;
	height: 600px;
	background: #eee;
	overflow: hidden;
	}

.image img {
	width: 100%;
	transition: margin-top 0.1s ease;
	}

.holder.vid {
	display: block;
	}

.video.slide {
	width: 400px;
	height: 600px;
	background: #eee;
	overflow: hidden;
	}
/*
.video {
	width: 1200px;
	height: 675px;
	}

.video {
	width: 1400px;
	height: 787px;
	}*/

.video {
	width: 1200px;
	height: 500px;
	position: relative;
	background: #eee;
	overflow: hidden;
	}

.video video {
	position: relative;
	width: 1200px;
	height: 600;
	}

.video.slide video {
	width: 100%;
	}

.companies {
	width: 900px;
	position: relative;
	margin: 40px auto;
	}

.company {
	width: 180px;
	height: 180px;
	position: relative;
	background: #fff;
	border-radius: 24px;
	box-shadow: 0px 20px 30px rgba(0, 0, 0, 0.01);
	box-sizing: border-box;
	float: left;
	padding: 40px 0;
	margin: 40px 60px;
	}

.company img {
	max-width: 64%;
	position: relative;
	display: block;
	margin: 0 auto;
	top: 50%;

	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	}

.targets {
	list-style: none;
	margin: 80px 0 0 30px;
	}

.target {
	margin-bottom: 40px;
	}

.target .icon {
	width: 40px;
	height: 40px;
	position: absolute;
	background: #eee;
	}

.icon.optimise-rbi-information {
	background: url(../img/optimise-rbi-information.svg);
	}

.icon.improve-rbi {
	background: url(../img/improve-rbi.svg);
	}

.icon.alternative-inspections {
	background: url(../img/alternative-inspections.svg);
	}

.target p {
	margin-left: 70px;
	}

.button {
	background: #72c448;
	font-size: 20px;
	font-weight: 600;
	color: #fff;
	letter-spacing: -0.8px;
	border-radius: 99px;
	box-shadow: 0 20px 40px rgba(114, 196, 72, 0.25);
	display: inline-block;
	padding: 20px 34px;
	margin-top: 40px;

	transition: background .4s ease;
	}

.button:hover {
	background: #308d00;
	}

.button.second {
	position: relative;
	background: #fff;
	color: #72c448;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.07);
	z-index: 1;
	margin-left: 20px;
	}

.button.second:hover {
	background: #fcfcfc;
	}

.circle {
	width: 450px;
	height: 450px;
	position: relative;
	background: #fff;
	border-radius: 999px;
	box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.04);
	z-index: 2;
	}

.circle:before {
	width: 60px;
	height: 60px;
	position: absolute;
	background: #72c448 url(../img/revenue.svg);
	border-radius: 99px;
	box-shadow: 0 20px 40px rgba(114, 196, 72, 0.45);
	content: "";
	top: 60px; left: 20px;
	}

.circle-holder {
	position: relative;
	text-align: center;
	margin: 0 auto;
	top: 50%;

	transform: translateY(-50%);
	}

.circle p {
	font-size: 52px;
	font-weight: 600;
	letter-spacing: -3px;
	margin-bottom: 12px;
	}

.circle span {
	font-size: 20px;
	color: #8e8e8e;
	letter-spacing: -0.5px;
	}

.circle-bg {
	width: 850px;
	height: 850px;
	position: absolute;
	background: #fafafa;
	border-radius: 999px;
	overflow: hidden;
	z-index: 1;
	right: -600px;
	top: 50%;

	transform: translateY(-50%);
	}

.circle-bg:after {
	width: 100%;
	height: 100%;
	position: absolute;
	background: rgba(2, 44, 0, 0.7);
	content: "";
	top: 0; left: 0;
	}

.circle-line {
	width: 850px;
	height: 850px;
	position: absolute;
	border: 1px solid #fafafa;
	border-radius: 999px;
	overflow: hidden;
	right: -450px;
	top: 50%;

	transform: translateY(-50%);
	}

.plant {
	width: 400px;
	position: relative;
	border-bottom: 1px solid #eee;
	}

.temperature {
	width: 240px;
	height: 240px;
	position: absolute;
	background: #fff;
	border-radius: 999px;
	box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.06);
	z-index: 1;
	top: -80px;
	left: -80px;
	}

.temperature p {
	font-size: 52px;
	font-weight: 600;
	letter-spacing: -3px;
	margin-bottom: 12px;
	}

.temperature span {
	font-size: 20px;
	color: #8e8e8e;
	letter-spacing: -0.5px;
	}

.plants {
	width: 317px;
	height: 440px;
	position: relative;
	background: url(../img/plant.svg);
	margin: 0 auto;
	}

#flames {
	width: 400px;
	height: 440px;
	position: absolute;
	top: 0;
	}

.flame {
	width: 24px;
	height: 24px;
	position: absolute;
	background: url(../img/flame.png);
	background-size: cover;
	filter: drop-shadow(0px 8px 10px rgba(254, 82, 55, 0.2));
	}

.flame.one {
	animation: one 3s infinite;
	}

.flame.two {
	animation: two 4s infinite;
	}

.flame.three {
	width: 18px;
	height: 18px;
	animation: three 5s infinite;
	}

.flame.four {
	animation: four 3.5s infinite;
	}

.flame.five {
	width: 18px;
	height: 18px;
	animation: five 5s infinite;
	}

@keyframes one {
	0% {
		top: 0; left: 20%;
		transform: rotate(-4deg);
		}
	25% {
		top: -2%; left: 19%;
		}
	50% {
		top: -4%; left: 20%;
		transform: rotate(-8deg);
		}
	25% {
		top: -2%; left: 21%;
		}
	100% {
		top: 0; left: 20%;
		transform: rotate(-4deg);
		}
	}

@keyframes two {
	0% {
		top: -6%; left: 60%;
		transform: rotate(4deg);
		}
	50% {
		top: -8%; left: 64%;
		transform: rotate(-2deg);
		}
	100% {
		top: -6%; left: 60%;
		transform: rotate(4deg);
		}
	}

@keyframes three {
	0% {
		bottom: 6%; left: -10%;
		transform: rotate(4deg);
		}
	50% {
		bottom: 8%; left: -3%;
		transform: rotate(-2deg);
		}
	100% {
		bottom: 6%; left: -10%;
		transform: rotate(4deg);
		}
	}

@keyframes four {
	0% {
		bottom: 6%; right: -5%;
		transform: rotate(-10deg);
		}
	50% {
		bottom: 8%; right: 0%;
		transform: rotate(0deg);
		}
	100% {
		bottom: 6%; right: -5%;
		transform: rotate(-10deg);
		}
	}

@keyframes five {
	0% {
		top: 36%; left: 60%;
		transform: rotate(-10deg);
		}
	50% {
		top: 38%; left: 68%;
		transform: rotate(0deg);
		}
	100% {
		top: 36%; left: 60%;
		transform: rotate(-10deg);
		}
	}

.cat {
	width: 80px;
	height: 80px;
	position: absolute;
	background: #fff;
	color: #72c448;
	border-radius: 24px;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.07);
	}

.cat.tofd {
	left: -60px;
	bottom: 100px;
	}

.cat.paut {
	right: -60px;
	top: 80px;
	}

.cat p {
	position: relative;
	font-weight: 600;
	font-size: 16px;
	letter-spacing: 1px;
	text-align: center;
	top: 50%;

	transform: translateY(-50%);
	}

.text-holder p:nth-of-type(2) {
	margin-top: 40px;
	}

.percentages {
	display: flex;
	justify-content: center;
	}

.percentage {
	width: 33%;
	position: relative;
	background: #fff;
	text-align: center;
	border-radius: 18px;
	border: 1px solid #72c448;
	box-shadow: 0px 20px 30px rgba(0, 0, 0, 0.03);
	box-sizing: border-box;
	padding: 45px 0;
	margin: 50px 70px;
	}

.percentage p {
	font-size: 48px;
	font-weight: 600;
	letter-spacing: -2px;
	color: #72c448;
	margin-bottom: 20px;
	}

.percentage span {
	width: 90%;
	position: relative;
	font-size: 18px;
	letter-spacing: -0.6px;
	color: #646464;
	line-height: 160%;
	display: table;
	margin: 0 auto;
	}

#contact-form {
	width: 440px;
	min-height: 500px;
	background: #72c448;
	background-image: linear-gradient(to bottom right, #79cc4e, #72c448);
	border-radius: 24px;
	box-shadow: 0 20px 40px rgba(114, 196, 72, 0.25);
	box-sizing: border-box;
	padding: 38px;
	}

.contact-holder {
	margin-bottom: 24px;
	}

.contact-holder span {
	font-size: 20px;
	font-weight: 600;
	color: #fff;
	letter-spacing: -0.8px;
	display: block;
	margin-bottom: 10px;
	}

.contact-holder input, .contact-holder textarea {
	background: #aff28e;
	font-family: "Averta Std";
	font-size: 18px;
	color: #2c5517;
	letter-spacing: -0.4px;
	box-sizing: border-box;
	border-radius: 8px;
	padding: 12px 14px;

	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	}

.contact-holder textarea {
	width: 100%;
	min-height: 200px;
	resize: vertical;
	}

#submit {
	background: #fff;
	font-family: "Averta Std";
	font-weight: 600;
	font-size: 18px;
	letter-spacing: -0.7px;
	color: #72c448;
	border-radius: 99px;
	box-shadow: 0px 20px 30px rgba(0, 0, 0, 0.07);
	cursor: pointer;
	padding: 22px 24px;

	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;

	transition: background .4s ease;
	}

#submit:hover {
	background: #fafafa;
	}

#notification {
	font-size: 19px;
	color: red;
	letter-spacing: -0.3px;
	display: block;
	margin-top: 25px;
	}

#notification.success {
	color: #fff;
	}

#faq {
	width: 700px;
	position: relative;
	margin: 60px auto 0 auto;
	}

.question {
	width: 100%;
	position: relative;
	background: #fff;
	border-radius: 14px;
	box-shadow: 0px 20px 30px rgba(0, 0, 0, 0.03);
	box-sizing: border-box;
	cursor: pointer;
	padding: 26px;
	margin-bottom: 34px;
	}

.question p {
	width: 87%;
	font-size: 20px;
	letter-spacing: -0.4px;
	line-height: 160%;
	color: #72c448;
	}

.question .arrow {
	width: 60px;
	height: 60px;
	position: absolute;
	background: url(../img/arrow.svg);
	margin-top: -30px;
	top: 50%; right: 20px;

	transition: transform .3s ease;
	}

.question.open .arrow {
	transform: rotate(-180deg);
	}

p.answer {
	width: 100%;
	height: 0;
	font-size: 19px;
	color: #000;
	line-height: 160%;
	box-sizing: border-box;
	opacity: 0;
	padding: 0 26px;
	margin: 0;

	transition: opacity .3s ease, margin .3s ease;
	}

p.answer.show {
	height: 100%;
	opacity: 1;
	margin: 40px 0;
	}

#footer {
	padding: 100px 0;
	}

.footer-holder {
	width: 1400px;
	position: relative;
	display: table;
	margin: 0 auto;
	}

#footer-logo {
	width: 207px;
	height: 50px;
	position: relative;
	background: url(../img/sonoinspec-logo.svg);
	display: inline-block;
	margin-bottom: 40px;
	}

.left-block {
	float: left;
	margin-right: 50px;
	}

.left-block p {
	font-size: 19px;
	letter-spacing: -0.3px;
	color: #b1b1b1;
	display: block;
	}

.socials {
	margin-top: 30px;
	}

.social {
	width: 36px;
	height: 36px;
	position: relative;
	background: #444;
	border-radius: 99px;
	display: inline-block;
	float: left;
	overflow: hidden;
	margin-right: 18px;
	}

.social:after {
	width: 100%;
	height: 100%;
	position: absolute;
	background: url(../img/linkedin-icon.svg);
	background-size: cover;
	content: "";
	top: 0; left: 0;

	transition: background-position .3s ease;
	}

.social:hover:after {
	background-position: 0 -2px;
	}

.social:before {
	width: 150%;
	height: 150%;
	position: absolute;
	background: #0e76a8;
	border-radius: 999px;
	content: "";
	margin-left: -25%;
	top: 100%; left: 0;

	transition: top .35s ease;
	}

.social:hover:before {
	top: 0;
	}

.column {
	display: inline-block;
	vertical-align: top;
	margin: 0 60px;
	}

.column:nth-of-type(3) {
	width: 300px;
	float: right;
	}

.column h3 {
	position: relative;
	font-size: 22px;
	letter-spacing: -0.4px;
	margin-bottom: 48px;
	}

.column h3:before, .column h3:after, .service h3:before, .service h3:after {
	width: 20px;
	height: 4px;
	position: absolute;
	background: #72c448;
	border-radius: 9px;
	content: "";
	bottom: -24px; left: 0;
	}

.column h3:after, .service h3:after {
	width: 4px;
	left: 24px;
	}

.service h3:before, .service h3:after {
	bottom: -14px;
	}

.column li {
	list-style: none;
	margin-bottom: 38px;
	}

.column li, .column li a {
	font-size: 18px;
	color: #838383;

	transition: color .4s ease;
	}

.column li a {
	display: inline-block;
	}

.column li a:after {
	width: 0;
	height: 1px;
	background: #222;
	content: "";
	display: block;

	transition: width .4s ease;
	}

.column li a:hover {
	color: #222;
	}

.column li a:hover:after {
	width: 100%;
	}

.development p {
	font-size: 15px;
	letter-spacing: -0.3px;
	color: #717171;
	}

.development p a {
	font-weight: 600;
	color: #717171;
	display: inline-block;
	}

.development p a:after {
	width: 0;
	height: 1px;
	background: #222;
	content: "";
	display: block;

	transition: width .4s ease;
	}

.development p a:hover:after {
	width: 100%;
	}

/* HOME */

.card {
	width: 400px;
	height: 400px;
	position: absolute;
	background: #fff;
	border-radius: 14px;
	box-shadow: 0px 20px 30px rgba(0, 0, 0, 0.03);
	top: -350px; right: 0;
	}

.card:before {
	width: 60px;
	height: 60px;
	position: absolute;
	background: #72c448 url(../img/expert.svg);
	border-radius: 99px;
	box-shadow: 0 20px 40px rgba(114, 196, 72, 0.45);
	content: "";
	display: block;
	margin-left: -30px;
	top: -30px; left: 50%;
	}

.card-holder {
	width: 80%;
	position: relative;
	text-align: center;
	margin: 60px auto;
	}

.card p {
	font-size: 82px;
	font-weight: 600;
	letter-spacing: -3px;
	margin-bottom: 12px;
	}

.card span {
	font-size: 22px;
	color: #222;
	letter-spacing: -0.5px;
	line-height: 160%;
	}

#experiences {
	width: 400px;
	background: #fff;
	border-radius: 14px;
	box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.05);
	box-sizing: border-box;
	padding: 40px 40px 24px 40px;
	}

#experiences .logo {
	width: 240px;
	height: 58px;
	position: relative;
	background: url(../img/sonoinspec-logo.svg);
	margin: 40px auto;
	}

.stars {
	position: relative;
	display: table;
	margin: 0 auto 20px auto;
	}

.star {
	width: 19px;
	height: 18px;
	background: url(../img/star-review.svg);
	display: inline-block;
	margin: 0 6px;
	}

#experiences p {
	font-size: 18px;
	line-height: 160%;
	color: #656565;
	text-align: center;
	margin-bottom: 30px;
	}

#experiences p a {
	font-weight: 600;
	color: #656565;

	transition: color .4s ease;
	}

#experiences p a:hover {
	color: #222;
	}

.technology-catalogue-logo {
	width: 89px;
	height: 55px;
	position: relative;
	background: url(../img/technology-catalogue-logo.svg);
	display: table;
	margin: 0 auto;
	}

#experiences.center {
	position: relative;
	top: -100px;
	}

.services {
	width: 100%;
	display: table;
	}

.service {
	width: 42%;
	position: relative;
	background: #fff;
	border-radius: 8px;
	box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.05);
	box-sizing: border-box;
	display: inline-block;
	float: left;
	margin: 50px 20px;
	}

.service-holder {
	padding: 20px 40px 40px 40px;
	}

.service .icon {
	width: 70px;
	height: 70px;
	background: #72c448;
	border-radius: 99px;
	box-shadow: 0 20px 40px rgba(114, 196, 72, 0.45);
	margin-bottom: 20px;
	}

.service:nth-child(even) {
	float: right;
	}

.service h3 {
	position: relative;
	font-size: 26px;
	letter-spacing: -0.7px;
	margin-bottom: 32px;
	}

.service p {
	font-size: 18px;
	letter-spacing: -0.3px;
	line-height: 170%;
	}

.service img {
	width: 100%;
	border-radius: 14px 14px 0 0;
	}

/* ABOUT US */

.list {
	width: 100%;
	counter-reset: nums;
	display: inline-block;
	margin-top: 60px;
	}

.list li {
	font-size: 18px;
	line-height: 160%;
	list-style: none;
	margin-bottom: 20px;
	}

.list li {
	width: 470px;
	height: 115px;
	position: relative;
	background: #fff;
	border-radius: 12px;
	border: 1px solid #72c448;
	box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.05);
	box-sizing: border-box;
	counter-increment: nums;
	overflow: hidden;
	display: inline-block;
	float: left;
	padding: 0 60px;
	margin-bottom: 40px;
	}

.list li:before {
	position: absolute;
	font-size: 60px;
	color: #f4f4f4;
	content: counter(nums);
	vertical-align: top;
	right: 10px; bottom: 4px;
	}

.list li:nth-child(odd) {
	margin-right: 60px;
	}

.list li p {
	position: relative;
	z-index: 1;
	top: 50%;

	transform: translateY(-50%);
	}

.list li .check {
	width: 40px;
	height: 100%;
	position: absolute;
	background: #72c448 url(../img/check.svg);
	box-shadow: 0 20px 40px rgba(114, 196, 72, 0.15);
	left: 0;
	}

.checks {
	list-style: none;
	display: inline-block;
	margin-top: 30px;
	}

.checks li {
	width: 100%;
	display: inline-block;
	float: left;
	margin-bottom: 30px;
	}

.checks li .check {
	width: 30px;
	height: 30px;
	position: relative;
	background: #72c448 url(../img/check.svg);
	background-size: cover;
	background-position: center;
	border-radius: 99px;
	box-shadow: 0 20px 40px rgba(114, 196, 72, 0.15);
	float: left;
	margin-right: 20px;
	}

.checks li p {
	font-size: 20px;
	display: table;
	}

p.center {
	width: 600px;
	position: relative;
	font-size: 20px;
	color: #888;
	letter-spacing: -0.4px;
	line-height: 160%;
	text-align: center;
	margin: 12px auto 0 auto;
	}

.world {
	width: 100%;
	height: 580px;
	position: relative;
	background: url(../img/world.svg);
	}

.world:before {
	width: 100%;
	height: 240px;
	position: absolute;
	background-image: linear-gradient(rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));;
	content: "";
	top: 0; left: 0;
	}

.description {
	width: 600px;
	font-size: 19px;
	color: #666;
	line-height: 180%;
	margin-bottom: 30px;
	}

.values {
	counter-reset: nums;
	margin-top: 120px;
	}

.value {
	width: 40%;
	position: relative;
	float: left;
	counter-increment: nums;
	margin-bottom: 120px;
	}

.value:before {
	position: absolute;
	background: #72c448;
	font-size: 20px;
	color: #fff;
	border-radius: 99px;
	content: counter(nums);
	padding: 18px 26px;
	}

.value:before {
	background: none;
	font-size: 88px;
	font-weight: 600;
	color: #f8f7f7;
	z-index: -1;
	top: 40px; left: -60px;
	}

.value:nth-child(even) {
	float: right;
	}

.value h3 {
	font-size: 34px;
	letter-spacing: -2px;
	}

.value h3:after {
	width: 24px;
	height: 3px;
	background: #72c448;
	content: "";
	display: block;
	margin: 20px 0;
	}

.value p {
	font-size: 18px;
	color: #5d6567;
	line-height: 180%;
	}

#call {
	position: fixed;
	z-index: 999;
	bottom: 0px;
	right: 0px;
	}

#call .bubble {
	width: 260px;
	position: absolute;
	background: #fff;
	font-size: 18px;
	letter-spacing: -0.2px;
	border: 1px solid #eee;
	box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.05);
	border-radius: 14px;
	box-sizing: border-box;
	cursor: default;
	opacity: 0;
	display: none;
	padding: 12px;
	right: 140px; bottom: 0;

	transition: opacity .6s ease, bottom .3s ease;
	}

#call .bubble.visible, #popup.visible {
	display: block;
	}

#call .bubble.show-1 {
	opacity: 1;
	bottom: 50px;
	}

#call .bubble.show-2 {
	opacity: 1;
	bottom: 35px;
	}

#call .bubble.show {
	opacity: 1;
	bottom: 40px;
	}

#call .bubble.fadeOut {
	opacity: 0;
	bottom: -20px;

	transition: opacity .3s ease, bottom .6s ease;
	}

#bubble-close {
	width: 20px;
	height: 20px;
	position: absolute;
	background: rgba(0, 0, 0, 0.8);
	border-radius: 99px;
	border: 1px solid #fff;
	opacity: 0;
	cursor: pointer;
	top: -10px;
	left: -10px;

	transition: opacity .4s ease;
	}

.bubble:hover #bubble-close {
	opacity: 1;
	}

#bubble-close:before, #bubble-close:after {
	width: 10px;
	height: 2px;
	position: absolute;
	background: #fff;
	content: "";
	margin-top: -1px;
	margin-left: -5px;
	top: 50%; left: 50%;

	transform: rotate(45deg);
	}

#bubble-close:after {
	transform: rotate(-45deg);
	}

#call-button {
	width: 80px;
	height: 80px;
	position: absolute;
	background-color: #72c448;
	background-image: url(../img/call.svg);
	border-radius: 99px;
	box-shadow: 0 20px 40px rgba(114, 196, 72, 0.45);
	cursor: pointer;
	bottom: 40px; right: 40px;

	transform: scale(0);
	transition: background-color .4s ease, transform .3s ease;
	}

#call-button.show-1 {
	transform: scale(1.05);
	}

#call-button.show-2 {
	transform: scale(0.95);
	}

#call-button.show {
	transform: scale(1);
	}

#call-button:hover {
	background-color: #308d00;
	}

#popup {
	width: 380px;
	position: relative;
	background: #fff;
	border-radius: 20px;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
	opacity: 0;
	display: none;
	top: -50px; right: 50px;

	transition: top .4s ease, opacity .4s ease;
	}

#popup.show {
	top: -120px;
	opacity: 1;
	}

#popup-header {
	width: 100%;
	height: 56px;
	background: #72c448;
	border-radius: 20px 20px 0 0;
	}

#popup-logo {
	width: 133px;
	height: 32px;
	position: relative;
	background: url(../img/sonoinspec-logo-white.svg);
	margin: 0 auto;
	top: 16px;
	}

#popup-close {
	width: 26px;
	height: 26px;
	position: absolute;
	background: rgba(0, 0, 0, 0.8);
	border-radius: 99px;
	border: 2px solid #72c448;
	opacity: 0;
	cursor: pointer;
	top: -13px;
	right: 30px;

	transition: opacity .3s ease;
	}

#popup:hover #popup-close {
	opacity: 1;
	}

#popup-close:hover {
	background: rgba(0, 0, 0, 1);
	}

#popup-close:before, #popup-close:after {
	width: 14px;
	height: 2px;
	position: absolute;
	background: #fff;
	content: "";
	margin-top: -1px;
	margin-left: -7px;
	top: 50%; left: 50%;

	transform: rotate(45deg);
	}

#popup-close:after {
	transform: rotate(-45deg);
	}

#popup-holder {
	width: 90%;
	position: relative;
	text-align: center;
	margin: 30px auto;
	}

#popup-holder h3 {
	font-size: 24px;
	letter-spacing: -1.4px;
	margin-bottom: 20px;
	}

#qr-code {
	width: 150px;
	height: 150px;
	background: url(../img/qr.svg);
	border: 1px dashed #eee;
	margin: 20px auto;
	}

#popup-holder p {
	font-size: 16px;
	letter-spacing: -0.2px;
	line-height: 160%;
	color: #7c8c92;
	}

#popup-footer {
	width: 100%;
	border-top: 1px solid #eee;
	padding: 26px 0 30px 0;
	margin-top: 20px;
	}

#popup-footer a {
	font-size: 17px;
	color: #72c448;
	display: inline-block;
	}

#popup-footer a:after {
	width: 0;
	height: 1px;
	background: #72c448;
	content: "";
	display: block;

	transition: width .5s ease;
	}

#popup-footer a:hover:after {
	width: 100%;
	}

/* CONTACT */

#cover .holder.align {
	position: absolute;
	margin-left: -600px;
	top: 56%; left: 50%;

	transform: translateY(-50%);
	}

.form.top {
	margin-top: -500px;
	}

.form.top #contact-form {
	width: 480px;
	}

.split {
	width: 50%;
	float: left;
	}

.contact-image {
	width: 100%;
	background: #eee;
	display: inline-block;
	margin-top: 100px;
	}

.contact-image img {
	width: 100%;
	float: left;
	}