body, html { 
		 padding: 0; 
		 margin: 0; 
		 box-sizing: border-box;
		 background-color: #222831;
		 font-family: sans-serif; 
		}


	
		/****** REUSABLE ******/
		/****** ZNOVUPOUŽITELNÉ ******/
		/****** ROW = NA STŘED ******/



		/*** RAKETA ***/

#scrollTopBtn:hover svg {
  transform: translateY(-3px);
  transition: transform 0.3s ease;
}

#scrollTopBtn:hover {
  box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}





				
.row{
	width: 1140px;
	margin: 0px auto;
}

.heading-main h2 {
	text-align: center;
	color: #00FFF5;
	margin-top: 90px;
	margin-bottom: 40px;
	font-size: 25px;
}
		 /*** podtržení za ... ***/
.heading-main h2:after {
	content: "";
	display: block;
	width: 600px;
	border-bottom: 3px solid #B7A3E3;
	margin: 8px auto;
}


.heading-main h3 {
	text-align: center;
	color: #00FFF5;
	margin-top: 24px;
	margin-bottom: 40px;
	font-size: 25px;
}


.our-services h3 {
	text-align: center;
	color: #00FFF5;
	margin-top: 20px;
	font-size: 25px;
}

.our-workflow h3 {
	text-align: center;
	color: #00FFF5;
	margin-top: 20px;
	font-size: 25px;
}



		/****** SERVICES TEXT X IMAGE ******/

		.service-box {
	position: relative;
	width: 100%;
	margin: 0 auto;
}

.service-box img {
	width: 100%;
	border-radius: 15px;
	box-shadow: 2px 2px 4px #00ADB5;
	display: block;
	transition: opacity 0.4s ease;
}

.service-text {
	position: absolute;
	top: 0;
	left: 31px;
	width: 80%;
	height: 94%;
	border-radius: 15px;

	display: flex;
	justify-content: center;
	align-items: center;

	background-color: #00ADB5;
	color: white;
	font-size: 15px;
	font-weight: bold;

	opacity: 0;
	transition: opacity 1.0s ease;
	text-align: justify;
	padding: 10px;
}

/* Hover efekt */
.service-box:hover img {
	opacity: 0;
}

.service-box:hover .service-text {
	opacity: 1;
}


			/****** HOWWORKING TEXT X IMAGE ******/
		.service-box-w {
	position: relative;
	width: 100%;
	margin: 0 auto;
}

.service-box-w img {
	width: 100%;
	border-radius: 15px;
	box-shadow: 2px 2px 4px #00ADB5;
	display: block;
	transition: opacity 0.4s ease;
}

.service-text-w {
	position: absolute;
	top: 0;
	left: 33px;
	width: 88%;
	height: 95%;
	border-radius: 15px;

	display: flex;
	justify-content: center;
	align-items: center;

	background-color: #00ADB5;
	color: white;
	font-size: 15px;
	font-weight: bold;

	opacity: 0;
	transition: opacity 1.0s ease;
	text-align: justify;
	padding: 10px;
}

/* Hover efekt */
.service-box-w:hover img {
	opacity: 0;
}

.service-box-w:hover .service-text-w {
	opacity: 1;
}



		/****** HEADER ******/

header .pozadi {
	background-image: url("../Images/aurabackground.png");;
	background-size: cover; /*"vycentrování"*/
	/*height: 100vh; /* velikost zobrazení 100%*/
	background-attachment: fixed; /* zafixuje obrázek */
	background-repeat: no-repeat;
	background-position: center; /* Volitelné: vycentrování */
    height: 750px; /* Nutné u prázdného prvku, aby byl vidět */

}

		/****** LOGO ******/

#logo img {
	width: 230px;
	position: absolute;
	top: -6%;
	left: -2%;
}





		/****** NAVIGACE ******/
.nav-bar  {
	max-width: 100%;
}
nav ul {
	float: right;
	margin-top: 100px;
}

nav ul li {
	display: inline-block;
	margin-left: 20px;
}

nav ul li a:link,
nav ul li a:visited {
	color: #FBEF76;
	font-size: 25px;
	text-decoration: none;
	border-bottom: 3px solid transparent;
}

nav ul li a:hover,
nav ul li a:active {
	border-bottom: 3px solid #3E0703;
	transition: border-bottom 0.5s;
}


		/****** Nadpis barva ******/

.header-text h1 {
	color: #00FFF5;
	font-size: 25px;
	text-transform: uppercase; /*** velká písmena ***/
	letter-spacing: 1.5px; /*** mezera mezi písmeny ***/
	word-spacing: 3.5px; /*** mezera mezi slovy ***/

}

		/****** text-header ******/

.header-text h1{
	position: absolute;
	top: 78%;
	left: 33%;
	transform: translate(-50%, -50%);

}


.header-text h2 {
	color: #00FFF5;
	font-size: 14px;
	text-transform: uppercase; /*** velká písmena ***/
	letter-spacing: 1.5px; /*** mezera mezi písmeny ***/
	word-spacing: 3.5px; /*** mezera mezi slovy ***/

}
.header-text h2{
	position: absolute;
	top: 43%;
	left: 23%;
	transform: translate(-50%, -50%);

}


		/****** tlačítka ******/
.btn {
	position: absolute;
	top: 84%;
	left: 8%;
	display: inline-block; /*** má marginy i paddingy po všech stranách, má výšku i šířku, nechá elementy vedle sebe ***/
	color: black;
	text-decoration: none;
	font-size: 20px;
	border: 1px solid #00FFF5;
	border-radius: 10px;
	padding: 5px 10px; /*** vnitřní okraje ***/
	margin-top: 7px; /*** vnější okraje ***/
	letter-spacing: 2px;
}

		/****** Samostatná tlačítka ******/

		/*** Tlačítko 1 ***/
.btn1 {
	background: #00ADB5;
}

.btn1:hover {			 		 /*** pozadí tlačítka při najetí myší ***/
	background: #B7A3E3; 		 /*** pozadí tlačítka při najetí myší ***/
	transition: background 1s;   /*** barevný přechod tlačítka při najetí myší ***/
} 

		/*** Tlačítko 2 ***/

.btn2 {
	background: #00ADB5;
	margin-left: 155px;
}

.btn2:hover {			 		 /*** pozadí tlačítka při najetí myší ***/
	background: #B7A3E3; 		 /*** pozadí tlačítka při najetí myší ***/
	transition: background 1s;   /*** barevný přechod tlačítka při najetí myší ***/
} 

		/*** Tlačítko 3 ***/

.btn3 {
	background: #00ADB5;
	margin-left: 337px;
}

.btn3:hover {			 		 /*** pozadí tlačítka při najetí myší ***/
	background: #B7A3E3; 		 /*** pozadí tlačítka při najetí myší ***/
	transition: background 1s;   /*** barevný přechod tlačítka při najetí myší ***/
} 

		/*** Tlačítko 4 ***/

.btn4 {
	background: #00ADB5;
	margin-left: 425px;
}

.btn4:hover {			 		 /*** pozadí tlačítka při najetí myší ***/
	background: #B7A3E3; 		 /*** pozadí tlačítka při najetí myší ***/
	transition: background 1s;   /*** barevný přechod tlačítka při najetí myší ***/
} 

		/*** Tlačítko 5 ***/

.btn5 {
	background: #00ADB5;
	margin-left: 652px;
}

.btn5:hover {			 		 /*** pozadí tlačítka při najetí myší ***/
	background: #B7A3E3; 		 /*** pozadí tlačítka při najetí myší ***/
	transition: background 1s;   /*** barevný přechod tlačítka při najetí myší ***/
} 






		 /****** About us ******/
.services {
	max-width: 100%;
}

.our-services img {				  	 /*** úprava obr v galery ***/
		width: 80%;
		padding-left: 10px;
		padding-right: 10px;
		transform: translate(10%, 0%);
		border-radius: 15px;
		box-shadow: 2px 2px 4px #00ADB5; /*** stín na ose x,y,rozostření a barva ***/
}

		 /****** HOW WORKING ******/
.how-work {
	max-width: 100%;
}

.our-workflow{
	width: auto;
	max-width: 1140px;
}

.our-workflow img {				  	 /*** úprava obr v galery ***/
		width: 70%;
		padding-left: 64px;
		padding-right: 50px;
		transform: translate(7%, 0%);
		border-radius: 15px;
		box-shadow: 2px 2px 4px #00ADB5; /*** stín na ose x,y,rozostření a barva ***/
		overflow: hidden;
}



/*grid price*/

.price {
	display: contents; 
	margin: -260px auto;
	height: 501px; 
	position: relative;
	float: left;
	padding-left: 50px;
	padding-right: 50px;
		
}

.price p {
	text-align: center;
	font-size: 25px;
	color: whitesmoke;
	/*border-right: 2px solid rgba(137, 214, 255, 0.81);*/
	border-radius: 120px;
	padding: 0px 26px 0px 26px;
}

.webtype {
	color: #00FFF5;
	text-decoration: underline /*overline*/;
	font-size: 33px;
}

.tel{
	padding-right: 10px;
}

			 /****** Contact form ******/

.contact-form {
		width: 500px;
		text-align: center;
	}

.contact-form input {
		width: 80%;
		margin: 5px 0px;
		padding: 7px;
		border: 2px solid #00FFF5;
		background-color: #222831;
		border-radius: 15px;
		box-shadow: 2px 2px 2px #00FFF5;
		color: white;
		outline: none;

}

.contact-form textarea {
		width: 80%;
		padding: 7px;
		background-color: #222831;
		border: 2px solid #00FFF5;
		border-radius: 15px;
		box-shadow: 2px 2px 2px #00FFF5;
		color: white;
		font-family: arial;
		outline: none;

}

.contact-form input[type="text"]:focus, .contact-form input[type="email"]:focus,.contact-form input[type="tel"]:focus, textarea:focus {
	transition: 0.30s;
	width: 450px;
	border: 2px solid #B7A3E3;
	box-shadow: 2px 2px 2px #B7A3E3;
}

input[type="submit"] {
	background-color: #B7A3E3;
	border: 2px solid #B7A3E3;
	box-shadow: 0px 0px 0px #00FFF5;
	color: black;
	font-size: 15px;
}
input[type="submit"]:hover {
	transition: background-color 0.5s, border-color 0.5s;
	background-color: #00FFF5;
	border-color: #00FFF5;
	color: black;

}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 90%;
  background: #00FFF5;
  color: #000;
  padding: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 9999;
}

.cookie-banner a {
  color: #4ea1ff;
  text-decoration: underline;
}

.cookie-buttons button {
  margin-left: 10px;
  padding: 8px 12px;
  cursor: pointer;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
}

.cookie-modal-content {
  background: #fff;
  padding: 20px;
  max-width: 400px;
  width: 100%;
}

.hidden {
  display: none !important;
}




/* Floating end */
.clearfix {zoom: 1 }
.clearfix:after {
	content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
	}