/*@font-face
{
	font-family: mMainFont;
	src: url(fonts/klavika/klavika-light.otf);
}*/

/*
@font-face
{
	font-family: mMainFont;
	src: url(fonts/rajdhani/Rajdhani-Regular.ttf);
}*/

@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@400;700&display=swap');

* {
  box-sizing: border-box;
}

/* Hide scrollbar for Chrome, Safari and Opera */
.hide-scrollbar::-webkit-scrollbar
{
	display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.hide-scrollbar 
{
	-ms-overflow-style: none;  /* IE and Edge */
	scrollbar-width: none;  /* Firefox */
}


/* GENERAL VIBE */

body, html 
{
	margin: 0;
	font-family: 'Barlow', sans-serif;
	color: rgb(10%, 10%, 10%);
	background: rgb(96%, 96%, 96%);
}

li 
{
	margin: 10px;
}

a
{
	text-decoration:none;
}

@media all and (max-width: 760px) 
{
	ul
	{
		margin-left: -25px;
	}
}

.heading1
{
	width: 100%;
	font-size: 28pt;
	font-weight: bold;
	color: rgb(10%, 10%, 10%);
	margin-top: 20px;
	margin-bottom: 10px;
}

#map 
{
	height: 400px;
	width: 400px;
	/* The height is 400 pixels */
	
	/* The width is the width of the web page */
}

.paragraph1
{
	font-size: 14pt;
	color: rgb(10%, 10%, 10%);
}

.fade-to-white
{
	transition: background 0.25s ease-out;
}

.fade-to-white:hover
{
	background: rgb(100%, 100%, 100%, 25%);
}

/* LOGO */

#logo
{
	min-width: 256px;
	max-width: 256px;
	padding: 12px 16px;
	text-align: center;
	width: 100%;
	margin-left: 0;
	margin-right: 0;
	width: 100%;
}




/* INTRO */

.intro
{
	display: block; 
	position: fixed;
	z-index: 2;
	height: auto;
	width: 100%;
}

/* CURTAIN */

.curtain
{
	display: block; 
	height: 25px; 
	background: linear-gradient(rgba(0%, 0%, 0%, 100%), rgba(0%, 0%, 0%, 0%));
}

/* CURTAIN REVERSED */

.curtain-reversed
{
	position: fixed; 
	width: 100%; 
	bottom: 0; 
	display: block; 
	height: 50px; 
	background: linear-gradient(rgba(0%, 0%, 0%, 0%), rgba(0%, 0%, 0%, 100%));
}

.horizontal-separator
{
	width:100%;
	height: 2px;
	background: rgb(10%, 10%, 10%);
	margin-top: 1%;
	margin-bottom: 2%;
}

/* FRONTAL */

#frontal
{
	display: flex; 
	flex-direction: row;
	background: black;
	position: relative;
	z-index: 2;
	width: 100%;
}

#footer
{
	padding: 0% 10% 0% 10%;
}

/* MAIN CONTAINER */

.main-container
{
	margin-left: auto;
	margin-right: auto;
	width: 100%;
	background: rgba(0,0,0,0);
}

.sub-container-1
{
	width: 100%;
}


/* SUB CONTAINER */

.sub-container-2
{
	padding: 0% 15% 0% 15%;
}

@media all and (max-width: 1000px) 
{
	.sub-container-2
	{
		padding: 0% 5% 0% 5%;
	}
}


/* Columns */

/* Create two unequal columns that floats next to each other */
.column {
  float: left;
  padding: 0px;
}

.left {
  width: 72%;
}

.right {
  width: 25%;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

/* buton */
.button {
  display: inline-block;
  border-radius: 0px;
  background-color: #414141;
  border: none;
  color: #FFFFFF;
  text-align: center;
  font-size: 20px;
  padding: 17px;
  width: 300px;
  transition: all 0.5s;
  cursor: pointer;
  margin: auto;
}

.button span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
}

.button span:after {
  content: '\00bb';
  position: absolute;
  opacity: 0;
  top: 0;
  right: -20px;
  transition: 0.5s;
}

.button:hover {
   background-color: #111111;
}

.button:hover span {
  padding-right: 25px;
}

.button:hover span:after {
  opacity: 1;
  right: 0;
}

/* THUMBNAIL */
.thumbnail-container
{
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}

.thumbnail
{	
	/*display: block;*/
	align-content: center;
	/*flex-direction: column;*/
	margin-left: 5px;
	margin-right: 5px;
	margin-bottom: 2%;
	transition: box-shadow 0.25s ease-out;
	border-width: 1px;
	border-color: rgb(80%, 80%, 80%);
	border-style: solid;
	background: rgb(20%, 20%, 20%);
}


.thumbnail-img
{
	/*display: flex;*/
	/*object-fit: fit;*/
  width: 100%;
  height: auto;

}

.thumbnail:hover
{
	box-shadow: 0px 4px 10px 1px rgba(0, 0, 0, 0.5);
}

.thumbnail:hover .thumbnail-text
{
	color: rgb(10%, 10%, 10%);
}

.thumbnail-title
{
	/*display: block;*/
	bottom: 0;
	font-size: 16pt;
	text-align: center;
	vertical-align: middle;
	background: rgb(20%, 20%, 20%);
	color: rgb(90%, 90%, 90%);
	padding: 10px 10px 20px 10px;
	
}

.thumbnail-text
{
	display: block;
	color: rgb(30%, 30%, 30%);
	background: rgb(20%, 20%, 20%);
	padding: 5% 5% 5% 5%;
	text-align: justify;
	text-justify: inter-word;
	font-size: 16pt;
}

.thumbnail-row {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
  	padding: 0 2px;
  	float: left;
  	width: 100%;
}

.clearfix:after {
  content: "";
  display: table;
  clear: both;
}


div.gallery {
/*  border: 0px solid #ccc;
  margin: 0px;*/
  padding 0px;

	/*display: block;*/
	align-content: center;
	/*flex-direction: column;*/
	margin-left: 5px;
	margin-right: 5px;
	margin-bottom: 2%;
	transition: box-shadow 0.25s ease-out;
	
}


div.gallery:hover {
/*  border: 0px solid #777;*/
	box-shadow: 0px 4px 10px 1px rgba(0, 0, 0, 0.5);
}


}

div.gallery img {
  width: 100%;
  height: auto;
  padding: 0px;;
  margin: 0px;
}

div.desc {
  padding: 0px;;
  margin: 0px;
}



.responsive {
  padding: 0px;
  float: left;
  width: 33.333329%;
  display: flex;
}

@media only screen and (max-width: 1000px) {
  .responsive {
    width: 49.99999%;
   /* margin: 6px 0;*/
  }
}

@media only screen and (max-width: 700px) {
  .responsive {
    width: 100%;
  }
}


/*
@media all and (max-width: 721px) 
{
	.thumbnail-row
	{
		display: block;
	}		
	.thumbnail-title
	{
		font-size: 14pt;
	}
}



@media all and (max-width: 721px) 
{
    .thumbnail
    {
        display:none;
        width:0;
        height:0;
        opacity:0;
        visibility: collapse;
    } 
}
*/

.main-text
{
	font-size: 18pt; 
	width: 100%; 
	text-align: justify; 
}

@media all and (max-width: 721px) 
{
    .main-text
    {
		font-size: 16pt;
		text-align: left; 
    }
}







/* NAVIGATION */

#navigation
{
	width: auto;
	display: flex;
}

.navigation-button
{
	display: block;
	text-decoration: none;
	color: white;
	transition: background 0.5s ease-out;
}

.navigation-button-text
{
	display: block;
	padding: 16px 24px 16px 24px;
	text-align: left;
}

.navigation-separator
{
	width: 100%;
}

@media all and (max-width: 1000px) 
{
	.navigation-button-text
	{
		display: block;
		/*padding: 16px 24px 16px 24px;*/
		margin: auto;
		padding: 16px 0px 16px 0px;
		text-align: center;
	}
	.navigation-separator
	{
		width: 0px;
	}
}

.navigation-button:hover
{
	background: rgb(100%, 100%, 100%, 25%);
}

.navigation-button-drop-down:hover .navigation-drop-down-container
{
	display: block;
	text-align: left;
}

.navigation-button-drop-down
{
	display: block;
}

.navigation-drop-down-container
{
	position: absolute;
	background: black;
	display: none;
}











/* MY SLIDES */

/* SLIDESHOW IMAGE */

.slideshow-img 
{
	
	filter: brightness(40%);
	vertical-align: middle;
	width: 100%;
}

/* SLIDESHOP CONTAINER */

.slideshow-container
{
	max-width: 100%;
	position: relative;
	margin: auto;
	overflow: hidden;
	background: black;
	vertical-align: middle;
	width: 100%;
}

.slideshow-container-small
{
	max-width: 100%;
	position: relative;
	margin: auto;
	overflow: hidden;
	background: black;
	vertical-align: middle;
	width: 100%;
	height: 180px;
}


.slideshow-h1
{
	display: block;
	width: 70%;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
	padding: 1%;
	font-size: 4vw;
	font-weight: bold;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -300%);
	animation-duration: 5s;
  	animation-name: fadeint;
}

.slideshow-h2
{
	display: block;
	font-size: 2vw;
	font-style: normal;
	animation-duration: 7s;
  	animation-name: fadeint;
}

@keyframes fadeint 
{
	from 
	{
		opacity:0%;
  	}
	to 
	{
		opacity:100%;
	}
}

@media all and (max-width: 1000px) 
{
	.slideshow-h1
	{
		width: 90%;
		font-size: 6vw;
		transform: translate(-50%, -200%);
	}

	.slideshow-h2
	{
		font-size: 4vw;
		font-weight: 200;
	}

}

@media all and (max-width: 720px) 
{
	.slideshow-h1
	{
		width: 90%;
		font-size: 6vw;
		transform: translate(-50%, -200%);
	}

	.slideshow-h2
	{
		font-size: 5vw;
		font-weight: 200;
	}

}



/* CAPTION TEXT */

.caption-text 
{
	display: block;
	background: rgb(0, 0, 0);
	opacity: 80%;
	color: white;
	font-size: 30pt;
	text-align: left;
	position: absolute;
	text-decoration: none;
	bottom: 0;
	width: 100%;
	text-align: center;
}

/* FADE ANIMATION */

.fade
{
    -webkit-animation: fadeinout 8s linear forwards;
    animation: fadeinout 8s linear forwards;
    opacity: 30%;
    transform: scale(1);
}

@-webkit-keyframes fadeinout 
{
	10% { opacity: 1; }
	48% { transform: scale(1.1); }
	52% { transform: scale(1.1); }
	90% { opacity: 1; }
}

@keyframes fadeinout 
{
	10% { opacity: 1; }
	48% { transform: scale(1.1); }
	52% { transform: scale(1.1); }
	90% { opacity: 1; }
}

a#totop {
    display: block;
    color: #fff;
    position: fixed;
    bottom: 15px;
    right: 15px;
 /*   background: #cf112d; */
	background: #375b87da;
    text-indent: -9999em;
    width: 43px;
    height: 43px;
    border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    z-index: 999;
    line-height: 1.6;
    text-decoration: none;
	opacity: 0;
	transition: all .5s linear,opacity .5s ease-in-out;
}


img#totop_arrow
{
    display: block;
    position: absolute;
    bottom: 0px;
    right: 0px;
	z-index: 1000;
	opacity: 0;
	transition: all 1s linear,opacity 1s ease-in-out;
}

/*
a#totop:after {
	content: "\f077"; 
    font-family: FontAwesome;
    font-size: 1.8rem;
    text-indent: 0;
    text-align: center;
    color: white;
    display: block;
    position: absolute;
    bottom: 9px;
    right: 12px;
}

*/
