* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    font-family: 'Nunito', sans-serif;
}



a{
    cursor: pointer;
}


.header {
    position: fixed;
    height: 60px;
    display: block;
    width: 100%;
    overflow: hidden;
    z-index: 5000;
    background: linear-gradient(rgba(0, 0, 0, 0.2) 60%, rgba(0, 0, 0, 0) 90%);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.header.scrolled{
/*    background-color: rgb(84, 77, 77);*/
    /* background: linear-gradient(rgb(100, 91, 91) 40%, #826767 90%); */
    /* background: linear-gradient(rgb(72, 65, 65) 40%, #383131 90%); */
    background: linear-gradient(#248b2b 60%, #0c7817 90%);
    border-bottom: 1px solid #ffffff33;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.nav__list.active > .header{
/*    background-color: rgb(84, 77, 77);*/
/*    background: linear-gradient(rgb(106, 92, 92) 60%, #504646 90%);*/
    border-bottom: 1px solid rgba(148, 145, 145, 0.2);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.nav {
    height: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    padding: 4px;
}

.nav .nav__list {
    display: flex;
    align-items: center;
    align-self: center;
    justify-content: space-between;
}

.nav .toggles {
    display: flex;
    justify-content: space-between;
    width: fit-content;
    display: none;
}

.toggles img {
    display: flex;
    align-items: center;
    align-self: center;
    justify-content: space-between;
    width: 40px;
    height: 40px;
    padding: 5px;
}

.nav__link {
    display: flex;
    position: relative;
    align-items: center;
    align-self: center;
    margin: 5px;
    font-size: 1.1rem;
    text-transform: uppercase;
    text-decoration: none;
    /* color: rgb(160, 96, 92); */
    color: rgb(150, 184, 172);
    color: rgb(223, 230, 205);
    font-weight: 800;
    white-space: nowrap;
    padding: 5px;
    letter-spacing: 0.07em;
}

.nav__link:hover {
    /* background: radial-gradient(#ffffff66, #aaaaaa55); */
    text-shadow: 0px 0px 7px #000000;
    color: white;
}

.nav__link::after {
    content: '';
    position: absolute;
    background-color: #100c0c67;
    border: 1px solid #2e2929ab;
    left: 50%;
    transform: translate(-50%, 0);
    width: 60%;
    height: 3px;
    bottom: -3px;
    border-radius: 5px;
    opacity: 0;
    transition: 0.5s;
}

.selected.nav__link::after {
    opacity: 1;
}

.logo {
    padding-right: 25px;
}

.logo img {
    height: 70px;
    padding: 10px;
}

.logo .name {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    align-self: center;
}

.min {
    font-size: .75rem;
}

.nav__button img {
    height: 40px;
    width: 40px;
}


body {
	background-color: #333;
	color: #ffffffaa;
}



a{
    cursor: pointer;
}







.section .title{
    padding-bottom: 20px;
    /* border: 1px solid red; */
}

.fade-slideshow {
	margin: 5px;
	width: 400px;
	height: 300px;
	position: relative;
	overflow: hidden;
}

.fade-slideshow .slideshow-item {
	width: 100%;
	height: 100%;
	position: absolute;
}

.slideshow-item .bg {
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: absolute;
	opacity: 0;
	transition: all 2.5s;
}

.slideshow-item.index .bg {
	opacity: 1;
	animation: 50s infinite slidein linear;
}

@keyframes slidein {
	0% {
		scale: 1;
		translate: 0 0;
	}

	15% {
		scale: 1.1;
		translate: -5% 0%;
	}

	50% {
		scale: 1.2;
		translate: 5% -5%;
	}

	85% {
		scale: 1.1;
		translate: 5% 0%;
	}

	100% {
		scale: 1;
		translate: 0 0;
	}
}

.animated-bg{
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	user-select: none;
	pointer-events: none;
	object-fit: cover;
	animation: 50s infinite slidein linear;
	z-index: 0;
}

.slideshow-item .details {
	position: absolute;
	bottom: -110%;
	width: calc(100% - 18px);
	left: 9px;
	display: flex;
	flex-direction: column;
	gap: 50px;
	color: #ffffffbb;
	text-shadow: 0px 0px 5px #000000cc;
	opacity: 0;
	padding: 10px;
	transition: opacity 1.5s ease 0s;

}


.slideshow-item.index .details {
	bottom: 10px;
	gap: 5px;
	opacity: 1;
	transition: bottom 0s ease-out 0s, gap 0s ease-in 0s, opacity 1.5s ease 0s;
	transition: bottom 1.5s ease-out 1s, gap .7s ease-in 1.0s, opacity 1.5s ease 0s;
}

.slideshow-item h1 {
	color: #ffffff;
}

.slideshow-item span {
	color: #ffffffdd;
	max-height: 20%;
	overflow: hidden;
	text-overflow: ellipsis;
	font-size: 14px;
}

.slideshow-item .fancy-btn {
	background-color: #593;
	width: fit-content;
	padding: 10px 20px;
	border: 1px solid #ffffff77;
	border-radius: 50px;
	color: #ffffffdd;
	align-self: self-end;
	margin: 10px 0px 0px 0px;
}


.contact-form-container {
	width: 400px;
	margin: 5px;
}


.contact-form {
	display: flex;
	flex-direction: column;
	gap: 6px;
	position: relative;
}

.contact-form-header{
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-around;
	gap: 10px;
	margin: 0px 10px;
}


.input-container {
	position: relative;
	display: block;
	height: 45px;
	width: 100%;
	min-height: fit-content;
}

.input-container .lable{
	font-size: 15px;
	padding: 5px;
	position: absolute;
	height: 45px;
	width: 100%;
	display: flex;
	align-items: center;
	pointer-events: none;
	padding: 5px 10px;
	transition: all .2s;
}

.input-container .lable.active{
	align-items: baseline;
	font-size: 12px;
	color: #ffffff77;
}

.input-container .input {
	position: absolute;
	left: 0px;
	top: 0%;
	height: 100%;
	width: 100%;
	padding: 23px 10px 10px 10px;
	outline: none;
	border: 1px solid #00000055;
	background-color: transparent;
	color: #ffffffbb;
	border-radius: 5px;
	background-color: #ffffff11 !important;
}

.input-container .input:active{
	background-color: #ffffff11 !important;
}

.input-container.textarea{
	height: 220px;
}
.input-container textarea{
	resize: none;
}

.contact-form .submit-btn{
	height: 100%;
	width: 100%;
	outline: none;
	border: 1px solid #00000055;
	background-color: transparent;
	color: #ffffffbb;
	border-radius: 5px;
	background-color: #22aaff55;
}

.contact-form .input-row{
	display: flex;
	flex-direction: row;
	width: 100%;
	position: relative;
	gap: 6px;
}

.pagger{
	width: 100%;
	height: 100%;
	display: block;
	position: relative;
	user-select: none;
	overflow: hidden;
}

.pagger img{
    user-select: none;
    pointer-events: none;
}
.pagger .pages{
	width: 100%;
	height: 100%;
	display: flex;
	position: absolute;
	left: 0px;
	top: 0px;
	transition: left 0.3s ease-out;
	cursor: grab;
}
.pagger .pages:active{
	cursor: grabbing;
}


.pagger .page{
	width: 100%;
	height: 100%;
	overflow: hidden;
	position: absolute;
}

.pagger .page.dummy{
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 150px;
}

.pagger .controlls{
	position: absolute;
	border: 1px solid cyan;
	width: 100%;
	height: 100%;
	pointer-events: none;
}

.pagger .arrowLeft{
	position: absolute;
	width: 40px;
	height: 40px;
	left: 10px;
	top: 50%;
	transform: translate(0, -50%);
	cursor: pointer;
}

.pagger .arrowRight{
	position: absolute;
	width: 40px;
	height: 40px;
	right: 10px;
	top: 50%;
	transform: translate(0, -50%);
	cursor: pointer;
}

.pagger .indicators{
	position: absolute;
	width: 25%;
	height: 5px;
	left: 50%;
	bottom: 10px;
	transform: translate(-50%, -50%);
	display: flex;
	flex-direction: row;
	gap: 6px;
}

.pagger .indicators *{
	cursor: pointer;
	border: 1px solid #ffffff77;
	border-radius: 2px;
	box-shadow: 0px 0px 3px #00000077;
	background-color: #ffffff77;
	flex: 1;
	transition: 0.5s;
	cursor: pointer;
}

.pagger .indicators *.active{
	flex: 3;
}


.notransition {
  -webkit-transition: none !important;
  -moz-transition: none !important;
  -o-transition: none !important;
  transition: none !important;
}




.tiles{
	display: flex;
	gap: 5px;
}

.tiles img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.tiles .row{
	flex: 1;
	display: flex;
	flex-direction: row;
	gap: 5px;
	position: relative;
	overflow: hidden;
}

.tiles .col{
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 5px;
	position: relative;
	overflow: hidden;
}

.tiles .legend{
	position: absolute;
	padding: 5px;
	width: 100%;
	height: 100%;
	background: linear-gradient(#000000aa 30%, #ffffff22 80%);
}


.list-items{
	display: flex;
	flex-direction: column;
	gap: 5px
}

.list-item{
	display: block;
	position: relative;
	height: fit-content;
}

.list-item .icon{
	width: 30px;
	height: 30px;
	object-fit: contain;
}

.list-item .desc{
	position: absolute;
	left: 35px;
	top: 0px;
	width: calc(100% - 35px);
	flex: 1;
	margin: 0px;
	width: fit-content;
}

.list-item span{
	padding: 5px 5px;
}

.notes p{
	display: flex;
	flex-direction: column;
	padding: 15px 0px;
}

.row{
	display: flex;
	flex-direction: row;
	width: 100%;
	flex: 1;
}
.col{
	display: flex;
	flex-direction: column;
	flex: 1;
}
