*{
	box-sizing: border-box;
  
}
html{
  overflow-y: overlay;
}
body{
	margin: 0;
	padding: 0;
  background-color: #000;
  font-family: futura;

}
.header{
	background-color: #000;
	color: #fff;
	margin: 0;
	padding: .2rem;
	text-align: center;
}
.header h1{
  background-color: #000;
  font-size: 50px;
}
.header img{
  margin: 1rem;
}
#oycen{
  width:13%;
}
.sticky{
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 2;
  box-shadow: 0px 5px rgba(0, 0, 0, .5 );
}
.nav-bar{
	display: flex;
	justify-content: center;
	background-color: #333;
	width: 100%;
  font-family: futura;
  font-size: 1.3rem;
}
.nav-bar .icon {
  display: none;
}
ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: #333;
}

li {
  float: left;
}

li a, .dropbtn {
  display: inline-block;
  color: #fff;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

li a:hover, .dropdown:hover{
  transition: .5s ease;
  background-color: #fff;
  color: #000;

}

li.dropdown {
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.dropdown-content a:hover {
  background-color: #f1f1f1;
}

.nature_select{
  color: #fff;
  text-align: center;
  font-size: 5rem;
}

.nature_select a{
  color: #fff;
  text-decoration: none;
  margin:0 .5%;
}
.nature_select hr{
  width: 50%;
}

@media screen and (max-width: 600px) {
  .nature_select{
    font-size: 2rem;
  }
}


#big{
	width: 100%;
}

#architecture:hover #architectured{
  display: block;
}

#hotels:hover #hotelsd{
  display: block;
}

#nature:hover #natured{
  display: block;
}

.big-div{
  text-align: center;
  color: #fff;
}

/* photos */

.photo-container{
  margin: 3rem 5rem 12rem 5rem;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  background-color: #000;
}

@media screen and (max-width: 600px) {
  .photo-container{
    margin: 3rem 1rem;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    background-color: #000;
  }
}

.photo-container div{
  max-width: 30rem;
  height: 30rem;
  margin: 1rem;
  border: #333 3px solid;
  position:relative;
}

.photo-div{
  max-width: 25rem;
  height: 25rem;

  margin: 1rem;
}

.photo-container img{
  transition: .5s ease;
  width:100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  border-radius: 0rem;
}

.photo-container img:hover{
  transition: .5s ease;
  filter: none;
  object-fit: contain;
}

.photo-container div:hover{
  border:none;
}



/* photos-alt */

.photo-container-alt{
  margin: 3rem 5rem;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  background-color: #000;
}

@media screen and (max-width: 600px) {
  .photo-container-alt{
    margin: 3rem 0 ;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    background-color: #000;
  }
}
.photo-container-alt div{
  max-width: 30rem;
  height: 30rem;
  margin: 1rem;
  border: #333 3px solid;
  position:relative;
}

.photo-container-alt div:hover{
  border: none;
}

.photo-container-alt img{
  transition: .5s ease;
  width:100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  border-radius: 0rem;
}

.imgdiv:hover img{
  transition: .5s ease;
  filter: grayscale(100%) blur(15px);
  overflow: hidden;
}

.imgdiv:hover .centered{
  display: block;
}

.centered {
  transition: 1s ease;
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(0, 0, 0, .5 );
  width: 90%;
  height: fit-content;
  padding:.5rem .5rem;
  text-align: center;
  font-size: 1.5rem;
  font-weight: bold;
  color: #f1f1f1;
  text-decoration: none;
}

 
 @keyframes moveleft {
  0%{
    object-fit: cover;
  }
  100%{
    object-fit: contain;
  }
 }

/* fonts */
@font-face{
  font-family: futura;
  src:url("fonts/futura_sv/futura_book.ttf")
}

/* footer/copy */
footer{
  width: 100%;
  margin: 0;
  padding: .5rem;
  background-color: #333;
  color: #fff;
  text-align: center;
}

footer p{
  margin:0;
  padding: 1rem 0;
 }

 .footer-contact{
  transition: .5s ease;
  position: absolute;
  bottom: 2%;
  left: 50%;
  transform: translate(-50%, 0%);
  width: fit-content;
  height: fit-content;
  border-radius: 25px;
  margin: 0;
  padding: .5rem;
  background-color: #333;
  color: #fff;
  text-align: center;
}

.footer-contact:hover{
  transition: .5s ease;
  width:fit-content;
  height: fit-content;
  font-size: 1.5rem;
}

.footer-contact:hover .hidden{
  display: block;
}

.hidden{
  display: none;
  font-size: .9rem;
}

.footer-contact a{
  color: white;

}

.footer-home{

  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0%);
  width: 100%;
  height: fit-content;
  margin: 0;
  padding: .5rem;
  background-color: #333;
  color: #fff;
  text-align: center;
}


#copy{
  font-weight: bolder;
}


::-webkit-scrollbar {
  width: 15px;
}

::-webkit-scrollbar-track {
  background: transparent !important; 
}

::-webkit-scrollbar-thumb {
  background: #888; 
}

::-webkit-scrollbar-thumb:hover {
  background: #555; 
}


/* responsiveness */
.icon{
  color: #fff;
  padding-top:.8rem;
}

@media screen and (max-width: 600px) {
  .nav-bar li:not(:first-child) {display: none;}
  .nav-bar a.icon {
    float: right;
    display: block;
  }
}

@media screen and (max-width: 600px) {
  .nav-bar.responsive {position: relative;}
  .nav-bar.responsive .icon {
    position: relative;
    width: 100%;
    text-align: center;
    padding-bottom: 1rem;
  }

  .nav-bar.responsive li {
    float: none;
    display: block;
    text-align: left;
  }
}


/* contact */
.contact-info{
  font-size: 1.5rem;
  text-align: center;
  position: relative;
  margin-top: 10rem;
}


.info{
  background-color: #000;
  color: #fff;
  position: absolute;
  top: 50%; 
  left: 50%;
  transform: translate(-50%, -50%);
}
.info li{
  width: 100%;
  text-align: center;
}
.info li:first-child{
  margin-bottom: 3rem;
}

.info li:not(:last-child){
  padding-bottom: 1rem;
}


