/* carousel-control-next owl-next */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box; 
}

:root {
	--bs-border-radius: 0.8375rem;
	--bs-emphasis-color-rgb: 0, 0, 0;

	/* STAP orange */
	--bs-primary: rgb(227, 82, 38);
	/* STAP blue */
	--fc-blue: rgb(38, 80, 107);


}

::selection {
	color: #e35226;
	background-color: #343434;

}

.fc-orange {
	color: #e35226;
}

.bg-gray {
	background-color: #696969;
}

.bg-orange {
	background-color: #e35226;
}

.bg-blue {
	background-color: #002A46;
}

/* -------spinner--------- */
.spinner_wrapper {
	background-color: black;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 9999;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: all 0.2s;
}

.spinner-border {
	height: 80px;
	width: 80px;
}

.space {
	margin-top: 120px;
}

.space-application {
	margin-top: 120px;
	height: 800px;
}

#main_body {
	margin: 0 0 0 0;
	padding: 0 0 0 0;
}

/* -------navbar--------- */

nav {
	/* background-color: #ced4da00; ffffffdc*/
	background-color: #f0f0f0e4;
	box-shadow: 0px 1px 10px rgb(126, 126, 126);
}

.navbar {
	--bs-navbar-color: #212529;
	transition: all 0.5s;
}

.navbar_scrolled {
	background-color: #ffffffef;
}

.nav-link {
	--bs-navbar-nav-link-padding-x: 0.6rem;
	padding-right: var(--bs-navbar-nav-link-padding-x);
	padding-left: var(--bs-navbar-nav-link-padding-x);
}


.nav-link:hover {
	text-decoration: overline 3px solid #e35226;
	outline: 0;
	color: rgba(var(--bs-emphasis-color-rgb), 0.6);
}



.navbar-toggler:focus {
	text-decoration: none;
	outline: 0;
	box-shadow: 0px 0px 3px 2px #7d7d7d8c;
}


.dropdown-menu {
	--bs-dropdown-link-active-color: #e35226;
	--bs-dropdown-link-active-bg: #efefefdc;
	--bs-dropdown-bg: #ffffffdc;
	--bs-dropdown-link-hover-bg: #ffffffdc;
	border-bottom: 3px solid #696969;
}

.dropdown-item:active {
	color: #212529;
	font-weight: 600;

}

.dropdown-item:hover,
.dropdown-item:focus {
	text-decoration: overline 3px solid #e35226;
	outline: 0;
	color: var(--bs-nav-link-hover-color);
	/* color: var(--bs-dropdown-link-hover-color);
  background-color: var(--bs-dropdown-link-hover-bg); */
}




/* ----------------------header------------------------ */

#header {
	margin-bottom: 86px; 
	/* this is high of navbar */
}


/* ----------------------carusel------------------------ */

.carousel-item {
	position: relative;
	z-index: 3;
	transition: transform 0.5s ease-in-out;
	transform: scale(1.1);
}

.carousel-item.active {
	z-index: 0;
	transform: scale(1);
}


.c-item {
	height: 550px;
}

.c-img {
	height: 100%;
	object-fit: cover;
	filter: brightness(0.99) blur(0px);
}

.key-word {
	letter-spacing: 0.4em;
}

/* 
@keyframes loadProgress {
  from {
      width: 0%;
  }
  to {
      width: 100%;
  }
} */

.progress {
	/* animation: loadProgress 6s ease-out; */
	/* border-radius: 0.01rem; */
	/* font-size:3px; */
	/* height: 0.25rem; */
	--bs-progress-height: 0.2rem;
	--bs-progress-bar-bg: var(--fc-blue);
}

/* .progress-bar { */
/* animation: loadProgress 3s linear; */
/* animation-fill-mode:  forwards; */
/* } */

#carousel {
	overflow: hidden;
}

#carousel .owl-prev,
#carousel .owl-next {
	position: absolute;
	top: 50%;
	/* background-color: #a7a7a7; */
    background-color: #545454;
	color: #fff;
	font-size: 35px;
	display: inline-block;
	margin-top: -35px;
	height: 70px;
	width: 70px;
	line-height: 70px;
	text-align: center;
	border-radius: 100px;
	z-index: 5;
	/* -webkit-transition: background-color 400ms;
  transition: background-color 400ms; */
}

#carousel .owl-prev {
	text-indent: 24px;
}

#carousel .owl-next {
	text-indent: -24px;
}

#carousel .owl-prev:hover,
#carousel .owl-next:hover {
	background-color: var(--bs-primary);
}

.carousel-control-prev {
	left: -35px;
}

.carousel-control-next {
	right: -35px;
}


.carousel-control-prev:hover,
/* .carousel-control-prev:focus, */
.carousel-control-next:hover {
/* .carousel-control-next:focus { */
	color: #fff;
	text-decoration: none;
	outline: 0;
	opacity: 1;
}



.carousel-caption {
	position: absolute;
	/* right: 0%; */
	top: 30%;
	left: 16%;
	/* padding-top: 1.25rem;
	padding-bottom: 1.25rem; */
	color: #fff;
	text-align: left;
	text-shadow: #000000 1px 1px 20px;
}






/* ------------------------ default button ----------------------- */

.btn-primary {
	--bs-btn-color: #fff;
	--bs-btn-bg: #949494;
	--bs-btn-border-color: #696969;
	--bs-btn-hover-color: #ffffff;
	--bs-btn-hover-bg: #949494;
	--bs-btn-hover-border-color: #ced4da;
	--bs-btn-focus-shadow-rgb: 105, 105, 105;
	--bs-btn-active-color: #fff;
	--bs-btn-active-bg: #3d3a3a;
	--bs-btn-active-border-color: #3d3a3a;
	--bs-btn-active-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.0125);
	--bs-btn-disabled-color: #fff;
	--bs-btn-disabled-bg: #696969;
	--bs-btn-disabled-border-color: #696969;
	border-bottom: 3px solid #949494;
	border-top: 0;
	border-right: 0;
	border-left: 0;

}

.btn-primary:hover {
	border-bottom: 3px solid #e35226;
	/* text-shadow: #cecece 1px 0px 3px; */
	/* font-weight: 400; */
	border-top: 0;
	border-right: 0;
	border-left: 0;
}



/* -------   Go To Top   ------- */

.back_to_top {
	display: block;
	width: 45px;
	height: 45px;
	background-color: #a7a7a700;
	text-align: center;
	line-height: 30px;
	position: fixed;
	bottom: 20px;
	right: 20px;
	z-index: 1000;
	transition: background-color 0.5s ease;
}

.back_to_top:hover {
	background-color: #e35226;
}

.back_to_top:active {
	--bs-btn-active-color: #dc0000;
	--bs-btn-active-bg: #ffffff00;
	--bs-btn-active-border-color: #ffffff00;
}

.back_to_top_scrolled {
	background-color: #a7a7a78d;
}

.bi-box-arrow-up {
	fill: #ffffffc9;
	width: 25px;
	height: 25px;
}

.bi-box-arrow-up:hover {
	fill: rgb(255, 255, 255);
}

/*------------------- line-with-circle separoator between title and subtitle------------------- */

.line-with-circle {
	position: relative;
	margin: 1rem auto;
	width: 150px;
	height: 1px;
	background-color: rgba(142, 142, 142, 0.367);
}

.line-with-circle::after {
	content: '';
	position: absolute;
	left: 50%;
	top: -7.5px;
	width: 15px;
	height: 15px;
	background-color: var(--bs-primary);
	border-radius: 50%;
	transform: translateX(-50%);
}

.line-with-circle::before {
	content: '';
	position: absolute;
	left: 50%;
	top: -15px;
	width: 30px;
	height: 30px;
	background-color: rgb(255, 255, 255);
	border-radius: 50%;
	transform: translateX(-50%);
}

.line-with-circle-dark-bg {
	position: relative;
	margin: 1rem auto;
	width: 150px;
	height: 1px;
	background-color: rgb(255, 255, 255);
}

.line-with-circle-dark-bg::after {
	content: '';
	position: absolute;
	left: 50%;
	top: -7.5px;
	width: 15px;
	height: 15px;
	background-color: var(--bs-primary);
	border-radius: 50%;
	transform: translateX(-50%);
}

.line-with-circle-dark-bg::before {
	content: '';
	position: absolute;
	left: 50%;
	top: -15px;
	width: 30px;
	height: 30px;
	background-color: rgb(255, 255, 255);
	border-radius: 50%;
	transform: translateX(-50%);
}



/* -------------------------- Features ----------------------------------- */

li::before {
	list-style-type: "🤯";
	padding-inline-start: 1ch;
	background: lightgray;
	border-radius: 1ch;
	margin-inline-end: 1ch;
}

.fixed-size-svg {
	width: 70px;
	height: 70px;
	margin-right: 20px;
	flex-shrink: 0;
	/* Spriječava smanjenje */
	flex-grow: 0;
	/* Spriječava povećanje */
}



.features_elem:hover #inner_circle,
.features_elem:hover #side_circle,
.features_elem:hover #element path,
.features_elem:hover #element #elem_1,
.features_elem:hover #element #elem_2,
.features_elem:hover #element #elem_3,
.features_elem:hover #element #elem_4,
.features_elem:hover #element #heart,
.features_elem:hover #element #heart_lines {
	transition: fill 0.4s ease, stroke 0.5s ease;
}



/* --------   All Features --------- */
.features_elem:hover #inner_circle {
	fill: #e35226;
}

.features_elem:hover #side_circle {
	fill: #727070;
	stroke: #727070;
}


.features_elem:hover #element path {
	fill: #fff;
	stroke: #fff;
}



/* --------   Temperatur Features --------- */
.features_elem:hover #element #elem_1 {
	/* fill: #fff; */
	stroke: #fff;
}

.features_elem:hover #element #elem_2 {
	/* fill: #fff; */
	stroke: #fff;
}

.features_elem:hover #element #elem_3 {
	fill: #fff;
	/* stroke: #fff; */

}

.features_elem:hover #element #elem_4 {
	fill: #fff;
	stroke: #fff;
}



/* --------   Heart Rate Features --------- */

.features_elem:hover #element #heart {
	fill: #fff;
	stroke: #fff;
}

.features_elem:hover #element #heart_lines {
	stroke: #E35226;
	stroke-width: 3;

}




/* ----------------------- Transport --------------------------------------- */


#transport h2>span {
	color: var(--bs-primary);
}


.image-text {
	position: relative;
	width: 100%;
	height: 350px;
	background-size: cover;
	background-attachment: fixed;
	background-position: center;
}

.text-over-image {
	position: absolute;
	top: 30%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
}


.text-over-image h2,
.text-over-image p {
	font-weight: 600;
	margin: 0;
	color: rgba(227, 82, 38, 1);
}

/* .text-over-image .second_img {
	width: 150%; 
	height: auto;
  }
   */

.second_img {
	position: absolute;
	top: -300%;
	left: -75%;
	width: 250%;
	height: auto;
	z-index: -1;
}



/* ----------- Cards in transport ------------------------------------ */

#transport .card {
	transition: 0.5s;
	box-shadow: -2rem 0px 5rem -2.6rem #484848ac;
	border: #ffffff 1px solid;
	border-radius: 16px;

}

/* 
.card:first-child:hover {
	transform: translateX(-1rem) rotate(3deg);
	transition-delay: 0.2s; 
}

.card:not(:first-child):hover{
	margin-left: -30px;
	transform: translateX(-1rem) rotate(3deg);
	transition-delay: 0.2s; 
} */


#transport .card:hover {
	/* margin-left: -130px; */
	/* transform: translateX(-1rem) rotate(3deg); */
	filter: brightness(0.88) blur(0px);
	transform: translateX(-1rem);
	transition-delay: 0.1s;
}


/* ----------- Application ------------------------------------ */



/* Still for SVG rotation */
.svg-container svg {
	transition: transform 0.9s ease;
}


.color-change {
	opacity: 1.0;
	transition: opacity 0.9s ease;
}

/* Hover efekti */
.col-md-4:hover .svg-container svg {
	/* SVG rotation */
	/* transform: rotate(360deg);  */

	/* Flip SVG */
	transform: rotateY(180deg);
	transition-delay: 0.2s;

}


/* ----------- Monitoring ------------------------------------ */


.title-line::after {
	content: '';
	display: block;
	height: 1px;
	background-color: rgba(142, 142, 142, 0.367);
	width: 100%;
	max-width: 100%;
	margin: 0px;
}

.img-shadow {
	box-shadow: 0rem 0px 2rem -0.8rem #333333;
}


.img-shadow-white {
	box-shadow: 0rem 0px 2rem -0.8rem #ffffff;
}




/* ----------- Cards in partners  ------------------------------------ */

#partners .card {
	box-shadow: 0rem 0px 1.5rem -0.8rem #333333;
	border: #fff 1px solid;
	border-radius: 16px;
	width: 19rem;
	height: 32rem;
	margin: 20px;
	transition: 0.3s;
}


#partners .card img {
	/* box-shadow: 0rem 3px 1px 0rem #e35226; */
	border-bottom: 3px solid #e35226;
}


/* #partners .card:hover #icon_web {
	fill: #e35226ae;
} */

#partners .card:hover {
	filter: brightness(0.88) blur(0px);
}


#partners a,
#about a {
	color: inherit;
	text-decoration: none; 
	  /* remove undeline */
}

#partners a:hover,
#partners a:focus {
	color: inherit;
	text-decoration: none;

}


#about .card {
	transition: 0.3s;
}

#about .card:hover {
	filter: brightness(0.88) blur(0px);
}


/* ----------- footer  ------------------------------------ */

#footer {
	/* height: 180px; */
	background-color: #001c2f;
	color: #a2a2a2;
	font-size: small;
}

#footer a{
	color: #a2a2a2;
}

/* ------------------------------- media ----------------------------- */


@media (max-width:990px) {

	/* .card{
		margin-left: 0rem;
	} */

	#transport.card:hover {
		transform: translateY(-0.7rem);
	}

	/* .card:first-child:hover {
		transform: translateY(-0.7rem)
	}
	
	.card:not(:first-child):hover{
		transform: translateX(0rem) ;
		margin-left: 0rem;
	} */
	/* 
	#transport.second_img {
		left: -50%;
		width: 200%;
	} */

	.second_img {
		/* position: absolute; */
		top: -100%;
		left: -50%;
		width: 200%;
		/* height: auto;
		z-index: -1; */
	}

	.image-text {
		/* height: 300px; */
		height: 30vh;
	}

	.carousel-caption {
		left: 10%;
		text-shadow: #000000 1px 1px 15px;
	}
}





/* ------ cookie banner ----- */


#cookieBanner {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	background-color: rgba(51, 51, 51, 0.90);
	/* #2c6c54c5 with 77% opacity */
	color: rgb(227, 227, 227);
	padding: 30px;
	z-index: 1000;
	font-size: 0.9rem;
	font-weight: 300;
}



#cookieBanner p {
	margin-bottom: 0;
}

#cookieBanner .content {
	margin-bottom: 15px;
}

#cookieBanner h3 {
	margin-top: 0;
	margin-bottom: 10px;
	font-size: 1.2rem;
}

.form-check-input:checked {
	background-color: var(--bs-primary);;
	border-color: var(--bs-primary);;
}

.form-check-input:disabled {
	opacity: 0.5;
  }

  #cookieBanner  a{
	color: var(--bs-primary);;
  }

