/* Theming */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap");

:root{
    --white: #f9f9f9;
    --black: #36383F;
    --grey: #85888C;
}

/* Reset */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
	
}

body{
	height:100vh;

}
.back-img
{
	width:100%;
	height:100vh;
    background-image: url(logo.jpeg);
    background-repeat: no-repeat;
    background-size: cover;	

}
.bg-txt{
	position:absolute;
	top:39%;
	left:27%;
	box-sizing:10%;
	
	
}
.firsttxt{
    font-size: 300%;
    font-style: normal;
	color:white;
	font-family:Sans serif;
	
	
}
.sectxt{
    font-size: 120%;
    padding: 10px;
	text-align:center;
	color:white;
}

a{
    text-decoration: none;
}




/* Header */
.header{
    background-color:rgba(255, 255, 255, 0.848);
    box-shadow: 1px 1px 5px 0px var(--grey);
	position:fixed;
    top: 0;
    width: 100%;
	display:flex;
}

/* Logo */
.logo{
   
    color: black;
	font-weight:600;
    font-size: 30px;
    margin-left: 30px;

}

/* Nav menu */
nav{
    width: 100%;
    hight: 20%;
    background-color: #D9D9D3;   
	top:0;
	z-index:2;


	
	
	
}
.ul {
	float:right;
	margin-right:20px;

}
.ul li{
	display:inline-block;
	line-height:50px;
	margin:0 5px;

}
.ul li a{
	padding:10px;
	color:black;
	font-size:17px;
	text-transform:uppercase;
}
a.active,a.hover{
	transition:.5s;
	
}
.checkbtn{
	font-size:30px;
	color:blue;
	float:right;
	margin-top:10px;
	margin-right:20px;
	line-height:80px;
	cursor:pointer;
	display:none;
}

#check
{
	display:none;
	
}
@media (max-width: 858px)
{

	
	
	.checkbtn{
		display:block;
	}
	
	.ul
	{
		position:fixed;
		width:100%;
		height:30vh;
		top:50px;
		left:-100%;
		text-align:center;
	    transition: all .5s;
		background-color:D9D9D3;
		color:black;		
	}

	.ul li{
		display:block;
	}
	
	#check:checked ~ .ul{
		left:0;	
	}

	.bg-txt
	{
		text-align:center;
		left:8%;
	}

}
	




/* Toggle menu icon */

#check:checked ~ nav{
    max-height: 100%;
}

.#check:checked ~ .hamb .hamb-line {
    background: transparent;
}

.#check:checked ~ .hamb .hamb-line::before {
    transform: rotate(-45deg);
    top:0;

}
/*main */
.home{
    top: 100%;
    transform: translateY(200%);
    color: white;
    text-align: center;
    justify-content: center;
    align-items: center;
}
#whatsapplink{
    font-weight: 600;
    font-family: 'Open Sans',sans-serif;
    color: #fff!important;
    line-height: 18px;
    letter-spacing: 1.54px;
    border: solid white;
    background-color: #2eb843;
    border-radius: 25px;
    padding:15px 55px 15px 55px;
    position: absolute;
    left: calc(50% - 106px);
    cursor: pointer;
}
.footer{
    transform: translateY(110%);
	font-family: 'Open Sans',sans-serif;
	font-weight: 300;
    position: relative;
    text-align: center;
    justify-content: bottom;
    align-items: flex-end;
    background-color: white;
    color: black;
	padding-bottom:10px;
}
.tagline{
    margin-left: 17%;
    top: 37px;
    font-size: 13px;
    font-style: italic;
    font-family: Arial, Helvetica, sans-serif;
}
body{
    position: relative;
}
header{
    position: fixed;
    top:0;
}			

.side-menu:checked ~ .hamb .hamb-line::after {
    transform: rotate(45deg);
    top:0;
}

	
header figure{display:flex;
			justify-content:center;
			margin-left:0;
			margin-right:0}
header figure figcaption{
			font-size:20px
			}
			


  
    
	

/* Responsiveness */


