/*** 
set the width and height to match your images 
**/
*{
    margin: 0;
    padding: 0;
}
body{
    background-color: #000;
}
#slideshow {
    position:relative;
	z-index:-1;
    background-color: #000;
}

#slideshow img {
    position:absolute;
    top:0;
    left:0;
    z-index:8;
    opacity:0;
}

#slideshow img.active {
    z-index:10;
    opacity:1;
}

#slideshow img.last-active {
    z-index:9;
}

#slideshow img {
	/* Set rules to fill background */
	width: 100%;			
	height: 100%;	
	/* Set up positioning */
	position: fixed;
	top: 0;
	left: 0;
}
		
@media screen and (max-width: 1024px){
	img.bg {
	left: 50%;
	margin-left: -512px; 
}
}
		
#page-wrap { 
	position: relative;
	width: 400px; 
	margin: 50px auto; 
	padding: 20px; 
	background: #fff; 
	-moz-box-shadow: 0 0 20px black; 
	-webkit-box-shadow: 0 0 20px black; 
	box-shadow: 0 0 20px black; 
}

p { 
	font: 15px/2 Arial; 
	margin: 0 0 30px 0; 
	color: #fff;
}
#wrapper{
    display: flex;
    width: 100vw;
    height: 100vh;
}
#content {
	width: 100%;
    height: 100%;
	background: rgba(0,0,0, 0.5);
    display: flex;
    flex-direction: column;
}

.header{
    width: 90%;
    padding: 2% 5%;
    height: 15%;
    display: flex;
}
.logo{
    display: flex;
    width: 50%;
    align-items: center;
}
.lang{
    display: flex;
    width: 50%;
    align-items: flex-start;
    justify-content: flex-end;
}
.lang a{
    color: #b2bb1e;
    padding: 0 3%;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    text-decoration: none;
}
.lang a:nth-child(1){
    border-right: 1px solid #fff;
}
.body{
    width: 100%;
    height: 85%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.containerBox{
    width: 70%;
    height: 50%;
    display: flex;
    flex-direction: column;
    text-align: center;
}
#content h1 {
	font-family: 'Poppins', sans-serif;
    line-height: 42px;
	color: #fff;
    font-size: 38px;
    font-weight: 600;
    margin-bottom: 2%;
    text-shadow: 2px 2px 10px #000;
}
#content p {
	font-family: 'Poppins', sans-serif;
	color: #fff;
    font-size: 20px;
    line-height: 28px;
    margin-bottom: 5%;
    text-shadow: 2px 2px 10px #000;
}
#contBtn{
    background-color: #b2bb1e;
    padding: 1% 2%;
    color: #fff;
    font-size: 14px;
    text-decoration: none;
    border-radius: 10px;
    text-transform: uppercase;
    font-family: sans-serif;
    font-weight: 700;    
}
#contactform{
    width: 100%;
    height: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    grid-gap: 10px;
    grid-column-gap: 20px;
}
#contactform input, #contactform textarea, #contactform select{
    width: 96%;
    padding: 1% 2%;
    height: 30px;
}
#contactform textarea{
    grid-column: 1/-1;
    height: 50px;
    font-size: 14px;
}
.submitBtn{
    grid-column: 1/-1;
}
.submitBtn input{
    width: auto!important;
}
#submit{
     background-color: #b2bb1e;
    padding: 1% 2%;
    border: none;
    color: #fff;
    border-radius: 10px;
    line-height: 10px;
}
.arabicText input, .arabicText textarea{
    text-align: right!important;
}
#contBtn:hover{
    background-color: #80a020;
}
@media (max-width: 600px){

    .body{
    width: 100%;
    height: 85%;
    display: flex;
    margin-top: 10%;
    justify-content:flex-start;
    align-items: center;
    flex-direction: column;
}
       
.containerBox{
    width: 90%;
    height: 50%;
    display: flex;    
    flex-direction: column;
    text-align: center;
}    
#contactform{
    width: 95%;
    height: auto;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    grid-gap: 10px;
    grid-column-gap: 20px;
}  
#content h1 {
    font-size: 38px;
}
#content p {
    font-size: 20px;
}
#contBtn{
    background-color: #b2bb1e;
    padding: 2% 5%;
    color: #fff;
    font-size: 14px;
    text-decoration: none;
    border-radius: 10px;
    text-transform: uppercase;
    font-family: sans-serif;
    font-weight: 700;    
} 

#slideshow img {
	/* Set rules to fill background */
	width: 100%;			
	height: 100%;	
}    
    
}