@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Bebas+Neue&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Noto+Sans+Display:ital,wght@0,100..900;1,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=TASA+Orbiter:wght@400..800&family=Titillium+Web:ital,wght@0,200;0,300;0,400;0,600;0,700;0,900;1,200;1,300;1,400;1,600;1,700&family=Zalando+Sans+Expanded:ital,wght@0,200..900;1,200..900&family=Zalando+Sans:ital,wght@0,200..900;1,200..900&display=swap');
*
{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Open Sans', sans-serif;
}
body::-webkit-scrollbar { display: none; }
header
{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 10px 100px;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .logo
{
  color: #111;
  text-transform: lowercase;
  cursor: pointer;
  font-size: 7em;
  font-weight: 500;
}

header a
{
	display: inline-block;
	position: absolute;
	top: 90px;
	left: 5px;
	width: 100%;
  	padding: 40px 100px;
	font-size: 1.5em;
    font-weight: 500;
	color: #111;
	letter-spacing: 1.5px;
	text-decoration: none;
}

.showcase
{
  position: absolute;
  right: 0px;
  left: 0px;
  width: 100%;
  min-height: 100vh;
  padding: 0px;
  top: 190px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 2;
  object-fit: cover;
}

.text
{
  position: relative;
  z-index: 10;
}

.text h2
{
  font-size: 5em;
  font-weight: 800;
  color: #111;
  line-height: 1em;
  text-transform: uppercase;
}
.text h3
{
  font-size: 4em;
  font-weight: 700;
  color: #111;
  line-height: 1em;
  text-transform: uppercase;
}
.text p
{
  font-size: 1.1em;
  color: #111;
  margin: 20px 0;
  font-weight: 400;
  max-width: 700px;
}
.text a
{
  display: inline-block;
  font-size: 1.2em;
  text-transform: lowercase;
  text-decoration: none;
  font-weight: 400;
  margin-top: 10px;
  color: #111;
  letter-spacing: 2px;
  transition: 0.2s;
}
.text a:hover
{
  letter-spacing: 6px;
}
.social
{
  position: absolute;
  z-index: 10;
  bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.social li
{
  list-style: none;
}
.social li a
{
  display: inline-block;
  margin-right: 20px;
  filter: invert(1);
  transform: scale(0.5);
  transition: 0.5s;
}
.social li a:hover
{
  transform: scale(0.5) translateY(-15px);
}
.menu
{
  position: absolute;
  top: 35px;
  right: 50px;
  width: 500px;
  height: 50px;
  z-index: 1000;

}
.menu ul
{
  position: relative;
}
.menu ul li
{
  list-style: none;
  display: inline;
  padding: 20px;
}
.menu ul li a
{
  text-decoration: none;
  font-size: 1.5em;
  color: #111;
	font-weight: 600;
	text-transform: lowercase;
	
}
.menu ul li a:hover
{
  	color: #8C8C8C;
	transition: 0.3s;

}

@media (max-width: 991px)
{
  .showcase,
  .showcase header
  {
    padding: 40px;
  }
  .text h2
  {
    font-size: 3em;
  }
  .text h3
  {
    font-size: 2em;
  }
	
}


/* galerie CSS start */
* {
  box-sizing:inherit;
  margin: 0;
  padding: 0;
}


.gallery-image {
 margin:0 auto;
 display: grid;
 grid-template-columns:repeat(3, 1fr);
 grid-gap: 5px;
}

.gallery-image img {
 height:100%;
  width: 100%;
  transform: scale( 1.0);
  transition: transform 0.4s ease;
}

.img-box {
  box-sizing: flex;
  height:100%;
  width: 100%;
  overflow: hidden;
  display: inline-block;
  color: white;
  position: relative;
  background-color: white;
  object-fit: cover;
}

.caption {
  position: absolute;
  bottom: 5px;
  left: 20px;
  opacity: 0.0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.transparent-box {
 height:100%;
  width: 100%;
  background-color:rgba(0, 0, 0, 0);
  position: absolute;
  top: 0;
  left: 0;
  transition: background-color 0.3s ease;
}

.img-box:hover img { 
  transform: scale(1.1);
}

.img-box:hover .transparent-box {
  background-color:rgba(0, 0, 0, 0.5);
}

.img-box:hover .caption {
  transform: translateY(-20px);
  opacity: 1.0;
}

.img-box:hover {
  cursor: pointer;
}
.img-box:hover {
  cursor: pointer;
}
.caption > p:nth-child(1) {
  font-size: 1.2em;
	font-weight: 600;
}
.caption > p:nth-child(2) {
  font-size: 0.8em;
 font-weight: 500;

}


.opacity-low {
  opacity: .5;
}
