@font-face {
    font-family: "PF Bulletin Sans Pro"; 
    src: url(fonts/pfbulletinsanspro-regular.ttf); 
}

@font-face {
    font-family: "PF Din Text Cond Pro"; 
    src: url(fonts/pfdintextcondpro-bold.ttf); 
}

body {
	background: #494c54;
	padding: 25px 35px;
}

img {
	max-width: 100%;
}

#page {
	position: relative;
	padding: 50px 0;
}

.blocks {
	align-items: center;
}

.description {
	max-width: 573px;
}

.description > div:first-child p {
	padding: 10px 0 0 4px;
}

.blocks h2 {
	font-family: "PF Din Text Cond Pro";
	color: #fff;
	font-size: 82px;
	font-weight: 700;
	line-height: 111.64px;
	text-transform: uppercase;
}

.blocks p {
	color: #ffffff;
	font-family: "PF Bulletin Sans Pro";
	font-size: 20px;
	font-weight: 400;
	line-height: 28px;
}

.blocks li {
	color: #f4a2c0;
}

.blocks li a {
	color: #f4a2c0;
	font-family: "PF Bulletin Sans Pro";
	font-size: 17px;
	font-weight: 400;
	line-height: 35px;
	text-decoration: none;
	transition: 0.5s;
}

.blocks li a:hover {
	color: #fff;
}

.blocks ul {
	padding-left: 15px;
}

.info {position: relative;}

.vibro {
	display: block;
	margin-bottom: 90px;
	width: 70px;
	height: 70px;
	line-height: 70px;
	background-color: #41434d;
	border-radius: 50%;
	transition: 0.5s;
}

.vibro:hover {
	background: #fff;
}

.drones img {
	position: absolute;
}

.drones img.dron-1 {
	top: 0;
	left: 44%;
	animation: Orbita 4s linear infinite;
}

.drones img.dron-2 {
	top: 20%;
	right: 5%;
	animation: Orbita 3s linear infinite;
}

.drones img.dron-3 {
	bottom: 0;
	right: 5%;
	animation: Orbita 5s linear infinite;
}

.drones img.dron-4 {
	bottom: 8%;
	right: 45%;
	animation: Orbita 4s linear infinite;
}

.drones img.dron-5 {
	bottom: 0;
	left: 3%;
	animation: Orbita 3s linear infinite;
}

@keyframes Orbita {
  from {
    transform: rotate(-180deg) translateX(10px) rotate(180deg);
  }
  to {
    transform: rotate(180deg) translateX(10px) rotate(-180deg);
  }
}

@media(max-width: 1199px) {
	.blocks h2 {
		font-size: 67px;
	}

	.blocks p {
		font-size: 18px;
	}

	.vibro {
		margin-bottom: 40px;
	}
}

@media(max-width: 991px) {
	.blocks h2 {
		font-size: 75px;
	}
	.drones {
		display: none;
	}

	#page {
		padding: 0 15px;
	}
	.info {
		max-width: 530px;
    	margin: 0 auto;
	}
}

@media(max-width: 620px) {
	.blocks h2 {
		font-size: 50px;
	}

	.vibro {
		width: 50px;
	    height: 50px;
	    line-height: 50px;
	    top: 26px;
	}
	.info {
		max-width: 365px;
	}
}

@media(max-width: 480px) {
	.blocks h2 {
	    font-size: 32px;
	    line-height: 60px;
	}

	.vibro {
		top: 0;
	}

	.blocks p {
 	   font-size: 16px;
	}

	.blocks li a {
		font-size: 16px;
	}
	.info {
	    max-width: 270px;
	}
}




