
*,
*::after,
*::before {
	box-sizing: border-box;
}




/* Page Loader */
.js .loading::before,
.js .loading::after {
	content: '';
	position: fixed;
	z-index: 1000;
}

.js .loading::before {
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--bs-primary);
}

.js .loading::after {
	top: 50%;
	left: 50%;
	width: 60px;
	height: 60px;
	margin: -30px 0 0 -30px;
	border-radius: 50%;
	opacity: 0.4;
	background: var(--color-link);
	animation: loaderAnim 0.7s linear infinite alternate forwards;

}

@keyframes loaderAnim {
	to {
		opacity: 1;
		transform: scale3d(0.5,0.5,1);
	}
}

/*PRELOADER*/


.container-loader{
	position: absolute;
	z-index: 2;
	width: 100%;
	height: 100vh;
	margin: 0 auto;
	display: flex;
	justify-content:center;
	align-items: center;
	background-color: var(--bs-primary);
	animation: slide-out-container 4s cubic-bezier(0.97, 0.01, 0.36, 0.99) 2.8s;
	animation-fill-mode: forwards;
}

.text-wrapper{
	color: white;
	position: absolute;
}

.text{
	font-family: 'Hey August', sans-serif;
	font-weight: lighter;
	font-size: 4rem;
}

.text-1, 
.text-3, 
.text-4, 
.text-8, 
.text-9, 
.text-11{
	color: rgba(0,0,0,0);
	-webkit-text-stroke: 1px white;
}

@keyframes blink{
	0%{ 
		opacity: 0;
	}
	1%{ 
		opacity: 100%;
	}
	99%{ 
		opacity: 100%;
	}
	100%{ 
		opacity: 0;
	}
}

.text-1{
	animation: blink 0.8s linear 0.9s, blink 0.8s linear 2s;
	opacity: 0;
}

.text-2{
	animation: blink 0.8s linear 0.8s, blink 0.8s linear 2.1s;
	opacity: 0;
}

.text-3{
	animation: blink 0.8s linear 0.7s, blink 0.8s linear 2.2s;
	opacity: 0;
}

.text-4{
	animation: blink 0.8s linear 0.6s, blink 0.8s linear 2.3s;
	opacity: 0
}

.text-5{
	animation: blink 0.8s linear 0.5s, blink 0.8s linear 2.4s;
	opacity: 0
}

.text-6{
	animation: blink 0.8s linear 0.4s, blink 0.8s linear 2.5s, slide-out 1s linear 2.9s;
	opacity: 0;
}

.text-7{
	animation: blink 0.8s linear 0.5s, blink 0.8s linear 2.4s;
	opacity: 0;
}

.text-8{
	animation: blink 0.8s linear 0.6s, blink 0.8s linear 2.3s;
	opacity: 0
}

.text-9{
	animation: blink 0.8s linear 0.7s, blink 0.8s linear 2.2s;
	opacity: 0;
}

.text-10{
	animation: blink 0.8s linear 0.8s, blink 0.8s linear 2.1s;
	opacity: 0;
}

.text-11{
	animation: blink 0.8s linear 0.9s, blink 0.8s linear 2s;
	opacity: 0;
}

@keyframes slide-out {
	0%{
		opacity: 0;
	}
	1%{
		opacity: 100%;
	}
	19%{
		opacity: 100%;
	}
	20%{
		opacity: 0;
	}
	39%{
		opacity: 0;
	}
	40%{
		opacity: 100%;
	}
	59%{
		opacity: 100%;
	}
	60%{
		opacity: 0;
	}
	79%{
		opacity: 0;
	}
	80%{
		opacity: 100%;
	}
	100%{
		opacity: 100%;
	}
}

@keyframes slide-out-container {
	0%{
		height:100vh;
	}
	40%{
		height:100vh;
	}
	100%{
		height:0%;
	}
}

/*END PRELOADER*/

.social_media{
  margin-top:1rem;

}

.social {
  color: var(--bs-primary);
  font-size: 1.5rem;
  margin: 0 10px;
}

.footer{
  padding: 20px 0;
  background-color: var(--bs-primary); 
  color: #fff;
}

.info a{
  color: #fff;
}

/* LOGO ROTATE  */

.content {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;	
}

.carousel {
	position: relative;
  
}
.carousel-item img {
  max-height: 80vh;
	object-fit: cover;
  border-radius: 1rem 1rem 0 0;
}

.thumbs {
	background: var(--bs-primary);
	padding: 1rem 50px;
  border-radius: 0 0 1rem 1rem;
}
.thumbs img:hover {
	opacity: 100%;
}

.thumbs img {
  width: 100%;
  max-height: 100%;
	opacity: 80%;
	border: 3px solid transparent;
	cursor: pointer;
  border-radius: .6rem
}

@media screen and (max-width: 768px) {
  .thumbs img {
    max-height: 7vw;
  }
}


.carousel-control-prev,
.carousel-control-next {
	width: 50px;
}

