@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');
* {
	font-family: "Inter", sans-serif;
	font-style: normal;
	word-wrap: break-word;
}
@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}
:target {
  scroll-margin-top: .8em;
}
body {
	margin: 0;
	padding: 0;
	background: #000;
}
a {
	color: unset;
	text-decoration: none;
}
.nav-top {
	display: flex;
	padding: 15px;	
	justify-content: space-around;
	align-items: center;
	gap:15px;
}
.nav-list {
	color: white;
}
.nav-list ul li {
	list-style-type: none;
	display: inline-block;
	padding: 5px;
}
.top-imgs {
	position: relative;
	width: 100%;
	height: calc(100vh - 130px);
	overflow: hidden;
	z-index: 1;
}
.top-imgs  img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	-moz-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    display: none;
    z-index: 1;
/*	transition: transform 3s;	*/
		
}
.top-imgs-absolute {
    position: absolute;
    width: 100%;
    top: 50%;
    left: 50%;
    color: #d43434;
    font-weight: 800;
    text-align: center;
    font-size: 4em;
    text-shadow: 2px 2px 5px #000;
    transform: translate(-50%, -50%);
}
.active {
	animation: fade-in 5s;
	animation-fill-mode: forwards;
  	display: block;
  	z-index: -1;
}
.nav-flex {
	display: flex;
	gap: 15px;
	padding: 20px;
	justify-content: space-around;
	margin-top: -40px;
	z-index: 1000000000000000000000000000000000000000000000000;
}
.nav-flex div {
	padding: 15px;
	background-color: #d43434;
	border-bottom: 10px solid white;
	text-align: center;
	height: 70px;
	text-transform: uppercase;
	width: calc(20% - 45px);
	z-index: 1000000000000000000000000000000000000000000000000;
	font-size: 0.9em;
	font-weight: 700;
	color: white;
}
.button-zap {
	display: inline-flex;
	padding: 15px;
	border-radius: 5px;
	background-color: #5bb95b;
	color: white;
	font-weight: 600;
	text-transform: uppercase;
	font-size: 0.9em;
	/*-webkit-animation: button-zap 0.8s linear infinite both;
	        animation: button-zap 0.8s linear infinite both;*/
	
	-webkit-animation: blinker 1s linear infinite;
					animation: blinker 1s linear infinite;
}
.button-zap svg{
	vertical-align: middle;
/*	margin-top: -3px;*/
	margin-right: 5px;
}
.nav-details {
	margin-top: 250px;
	padding: 20px;
	position: relative;
}
.nav-details-img img {
	width: 100%;
}
.nav-details-data {
	width: 40%;
	padding: 20px;
	background-color: #d43434;
	position: absolute;
	top: -200px;
	left: 50%;
	transform: translate(-20%);
}
.nav-details-data-title {
	font-size: 2.5em;
	font-weight: 800;
	color: white;
}
.nav-details-data-subtitle {
	margin-top: 30px;
	margin-bottom: 20px;
	color: white;
	font-size: 1.2em;
}
.lineminus {
	display: inline-block;
	width: 30px;
	height: 2px;
	background-color: white;
}
.line {
	display: inline-block;
	width: 90px;
	height: 2px;
	background-color: white;
	margin-bottom: 20px;
}
.nav-details-data-txt {
	color: white;
}
.nav-txt {
	text-align: center;
	padding: 30px;
	color: white;
	font-size: 1.5em;
	font-weight: bold;
}
.nav-background {
	margin: 20px;
	padding-top: 50px;
	padding-bottom: 50px;
	background-color: #d43434;
	text-align: center;
}
.nav-background-span {
	display: inline-block;
	padding: 20px;
	background-color: #000;
	color: white;
	text-transform: uppercase;
	font-weight: 600;
}
.nav-service-title {
	text-align: center;
	font-size: 2.5em;
	font-weight: bold;
	color: white;
	margin-top: 30px;
}
.nav-service-flex {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 30px;
	gap: 30px;
}
.nav-service-flex-item {
	color: white;
}
.nav-service-flex-item-title {
	font-weight: 700;
	margin-bottom: 20px;
}
.nav-age {
	padding-top: 50px;
	padding-bottom: 50px;
	text-align: center;
	font-size: 2em;
	color: white;
	font-weight: 600;
}
.nav-background-title {
	font-size: 2.5em;
	font-weight: 700;
	color: white;
	text-align: center;
}
.nav-background-flex {
	display: flex;
	flex-wrap: wrap;
	margin-top: 50px;
	justify-content: center;
}
.nav-background-flex img {
	width: 33.33%;
	transition: transform 0.5s;
}
.nav-background-flex img:hover {	
	transform: scale(0.9);
}
.contact-flex {
	display: flex;
	gap: 20px;
	padding: 20px;
}
.contact-flex-left, .contact-flex-right {
	width: calc(50% - 20px);
	text-align: left;
	color: white;
}
.contact-flex-title {
	font-size: 2em;
	font-weight: 700;	
}
.contact-flex-left input {
	padding: 15px;
	width: calc(100% - 32px);
	border-radius: 5px;
	border: 1px solid #000;
}
.contact-flex-left textarea {
	padding: 15px;
	width: calc(100% - 32px);
	height: 150px;
	border-radius: 5px;
	border: 1px solid #000;
}
.contact-flex-left button {
	padding: 15px;
	background-color: #000;
	color: white;
	border-radius: 5px;
	display: inline-block;
	margin-top: 25px;
}
.margin-top {
	margin-top: 50px;
}
.margin-bottom {
	margin-bottom: 25px;
}
.items {
	margin-bottom: 10px;
}
.float-button {
	position: fixed;
	left: 30px;
	bottom: 30px;
	border-radius: 50%;
	background-color: #5bb95b;
	color: white;
	padding: 8px 11px 8px 11px;
	z-index: 11000000000000000000000000;
}
.pos-sucess {
	margin-top: 15px;
	display: none;
}
@keyframes fade-in {
  from { transform: scale(1); }
  to   { transform: scale(1.3); }
}
@media (max-width: 800px) {
  .nav-list {
    display: none;
  }
  .top-imgs-absolute {
  	font-size: 3em;
  }
  .nav-flex {
		flex-wrap: wrap;
	}
  .nav-flex div {
		width: calc(100% - 45px);
	}
	.nav-details {
		margin-top: unset;
		padding: unset;
		background-image: url('../img/img13.jpeg');
		background-size: cover;
		padding: 20px;
	}
	.nav-details-img img {
		display: none;
	}
	.nav-details-data {
		width: calc(100% - 40px);
		position: unset;
		top: unset;
		left: unset;
		transform: unset;
	}
	.nav-service-flex {
		flex-wrap: wrap;
	}
	.nav-service-flex-item {
		width: 100%;
	}
	.contact-flex {
		flex-wrap: wrap;
	}
	.contact-flex-left, .contact-flex-right {
		width: calc(100% - 20px);
	}
}
@media (max-width: 500px) {
	.nav-top {
		flex-wrap: wrap;
	}
	.nav-top-right {
		width: 100%;
		text-align: center;
		margin: 25px;
	}
	.button-zap svg{
		width: 32px;
		height: 32px;
	}
	.nav-background-flex {
		flex-wrap: wrap;
	}
	.nav-background-flex img {
		width: 100%;
	}
	.top-imgs {
/*		height: calc(100vh - 130px);*/
		height: unset;

	}
	.top-imgs  img {
		height: unset;
		object-fit: contain;
	/*	transition: transform 3s;	*/
			
	}
	.top-imgs-absolute {
/*		display: none;*/
		font-size: 1.8em;
		word-wrap: break-word;
	}
	.nav-details-data-title {
			font-size: 1.8em;
			word-wrap: break-word;
	}
}
@media (min-width: 1200px) {
	.top-imgs-absolute {
    font-size: 5em;
	}
}
@keyframes blinker {
  50% {
    opacity: 0;
  }
}
@-webkit-keyframes blinker {
	50% {
    opacity: 0;
  }
}
@-webkit-keyframes button-zap {
  0% {
    -webkit-transform: translate(0);
            transform: translate(0);
            background-color: #6acd55;
  }
  20% {
    -webkit-transform: translate(-2px, 2px);
            transform: translate(-2px, 2px);
            background-color: #87d296;
  }
  40% {
    -webkit-transform: translate(-2px, -2px);
            transform: translate(-2px, -2px);
            background-color: #268011;
  }
  60% {
    -webkit-transform: translate(2px, 2px);
            transform: translate(2px, 2px);
            background-color: #59aa74;
  }
  80% {
    -webkit-transform: translate(2px, -2px);
            transform: translate(2px, -2px);
            background-color: #315126;
  }
  100% {
    -webkit-transform: translate(0);
            transform: translate(0);
            background-color: #5bb95b;
  }
}
@keyframes button-zap {
  0% {
    -webkit-transform: translate(0);
            transform: translate(0);
            background-color: #6acd55;
  }
  20% {
    -webkit-transform: translate(-2px, 2px);
            transform: translate(-2px, 2px);
            background-color: #87d296;
  }
  40% {
    -webkit-transform: translate(-2px, -2px);
            transform: translate(-2px, -2px);
            background-color: #268011;
  }
  60% {
    -webkit-transform: translate(2px, 2px);
            transform: translate(2px, 2px);
            background-color: #59aa74;
  }
  80% {
    -webkit-transform: translate(2px, -2px);
            transform: translate(2px, -2px);
            background-color: #315126;
  }
  100% {
    -webkit-transform: translate(0);
            transform: translate(0);
            background-color: #5bb95b;
  }
}
