:root{
	--khaki: #f0e68c;
}

html{
	font-size: 62.5%; 
	scroll-behavior: smooth; 
	scroll-padding-top: 6rem; 
	overflow-x: hidden;
}

.btn{
display: inline-block; 
margin-top: 1rem;
border-radius: 10rem; 
background: #e3dac9;
padding:.5rem 1rem;
cursor: pointer;
font-size: 2.7rem;
}

.btn:hover{
background: #bb6528;
}

header{
position: fixed;
top: 0; 
left:0; 
right:0;
background: transparent;
backdrop-filter: blur(20px);
padding: .9rem 9%; 
display: flex; 
align-items: center;
justify-content: space-between;
z-index: 1000;
box-shadow: 0.1rem .5rem rgba(0,0,0,.1);
}	

header .logo{
font-size: 3rem;
color: #333;
font-weight: bolder;
}

header .logo span{
color:var(--khaki);
}

header .navbar a{
font-size: 2rem;
padding:0 1.5rem; 
color:#666;
 
}

header .navbar a:hover{
color:var(--khaki);
}

.icons a{
font-size: 1.5rem;
color: #333;
margin-left: 1.5rem;
}

.icons a:hover{
color:var(--khaki);
}

header #toggler{
	display: none;
}

header .fa-bars{
	font-size: 3rem;
	color: #333;
	border-radius: .5rem;
	padding: .5rem 1.5rem;
	cursor: pointer;
	border: .1rem solid rgba(0,0,0,.3);
	display: none;
}

.navbar{
       width:100%;
       margin:auto;
       padding: 35px 0;
       font-size: 10px;
	color: #000;         
}

.navbar ul li{
	display: inline-block;
        list-style: none;
        margin: 0 20px;
        position: relative;

       
        
}

.navbar ul li a{
	text-decoration: none;
	color: #000;
	padding: 5px 20px;
	transition: 0.5s;

}

.navbar ul li::after{
        content:'';
	    height: 3px;
        width: 0%;
        background: #bb6528;
        position: absolute;
        left: 0;
        bottom: -10px;
        transition: 0.5s;

}

.navbar ul li:hover::after{
	width: 100%;

}

ul li.active a{
	color:#da9100;

}

.contact-info .credit {
	padding:1.5rem;
	margin-top: 1.5rem;
	padding-top: 2.5rem;
	font-size: 1rem;
	color : #333;
	border-top: .1rem solid rgba(0,0,0 ,. 1);
}

.contact-info .credit a{
	color:#da9100;
}






/* media queries */
@media (max-width:991px){
	html{
		font-size: 55%;
	}
	
	header{
		padding: 2rem;
	}
}

@media (max-width:768px) {
	header .fa-bars {
		display: block;
	}
	
	header {
		background: transparent;
backdrop-filter: blur(20px);
	}
	
	header .navbar {
		position: absolute;
		top: 100%; left: 0%; right: 0%;
		background-image:linear-gradient(#f2f3f4,#dcdcdc);
		clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
	}
	
	header #toggler:checked ~ .navbar {
		clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
	}
	
	header .navbar a {
		margin: 1.5rem;
		padding: 1.5rem;
		display: block;
	}
	
	.navbar ul li a{
	text-decoration: none;
	color: #000;
	padding: 5px 20px;
	transition: 0.5s;
}

ul li.active a{
	color:#ffbf00;

}

 }



@media (max-width:450px) {
	html{
		font-size: 50%;
	}
}

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;300;400;500;600&display=swap');

*{
  margin:0; padding:0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}


.container .controls{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    padding:20px 0;
    list-style: none;
}

.container .controls .buttons{
    height:40px;
	text-decoration: none;
    width: 140px;
    background:#fff;
    color:#666;
    font-size: 20px;
    line-height: 40px;
    cursor: pointer;
    margin:20px;
    box-shadow: 0 3px 5px rgba(0,0,0,.3);
    text-align: center;
}

.container .controls .buttons.active{
    background:#bb6528;
    color:#f0e68c;
}

.container{
  max-width: 85%;
  margin:130px auto;
}

.container .title{
  font-size: 25px;
  background-color: #000;
  color:#fff;
  border-radius: 5px;
  margin-bottom: 5px;
  text-align: center;
  padding:15px;
}

.container .image-container{
  columns:2 450px;
  gap:20px;
}

.container .image-container img{
  margin-bottom: 10px;
  border-radius: 5px;
  width: 100%;
}

.wrapper{
	display: flex;
	cursor: pointer;
}

.image{
	cursor: pointer;
    position:relative;
}

img{
    display: block;
	margin:auto;
}

.content{
	width:100%;
	height: 97%;
	top:0;
	Left:0;
	border-radius: 5px;
	position: absolute;
	background:rgba(0,0,0,0.5);
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	opacity: 0;
	transition: 0.6s;
}

.content:hover{
	opacity:1;
}

.content h2{
	font-size: 30px;
	text-decoration: underline;
	color:#fff;
	margin-bottom: 10px;
}
	
.content p{
	font-size: 15px;
	font-weight: none;
	color : #fff;
}

.content > *{
	transform:translateY(25px);
	transition: transform 0.6s;
}

.content:hover > *{
	transform:translateY(0px);
}

@media (max-width:768px) {

.wrapper{
	display: flex;
	cursor: pointer;
}

.image{
	cursor: pointer;
    position:relative;
}

img{
    display: block;
	margin:auto;
}

.content{
	width:100%;
	height: 97%;
	top:0;
	Left:0;
	border-radius: 5px;
	position: absolute;
	background:rgba(0,0,0,0.3);
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	opacity: 1;
	transition: 5.6s;
}

.content h2{
	font-size: 20px;
	color:#fff;
	text-decoration: underline;
	margin-bottom: 10px;
}
	
.content p{
	font-size: 15px;
	font-weight: bold;
	color : #fff;
}

.content > *{
	transform:translateY(25px);
	transition: transform 0.6s;
}

.content:hover > *{
	transform:translateY(0px);
}

 }