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

*{
    padding: 0; margin: 0;
    box-sizing: border-box;
    font-family: "Saira Condensed", sans-serif;
    font-weight: 600;
    font-style: normal;
    text-decoration: none;
    text-transform: capitalize;
    
}

body{
    min-height: 100vh;
    
   
}

header{
    position: fixed;
    top: 0; left: 0; right: 0;
    background: whitesmoke;
    box-shadow: 0 5px 10px black ;
    padding:0px 7%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
}

header .logo{
   width: 60px;
   border-radius: 100px;
}

header .navbar ul{
    list-style: none;
}

header .navbar ul li{
    position: relative;
    float: left;
}

header .navbar ul li a{
font-size: 20px;
padding: 20px;
color: rgb(108, 172, 13);
display: block;
}

header .navbar ul li a:hover{
    color: white;
    background: rgb(108, 172, 13);
}

header .navbar .fa{
    margin-right: 8px;
}

header .navbar ul li ul{
    position: absolute;
    left: 0;
    width: 200px;
    background: whitesmoke;
    display: none;
}
header .navbar ul li ul li{
    width: 100%;
    
    border-bottom: 1px solid rgb(108, 172, 13);
}

header .navbar ul li:focus-within > ul,
header .navbar ul li:hover > ul{
    display: initial;
}

#menu-bar{
    display: none;
}

header label{
  font-size: 20px;
  color: white;
  cursor: pointer;
  display: none;
  border: 1px;
  padding: 5px;
  background: rgb(108, 172, 13);
  border-radius: 20px;
}


.headis{
    
	text-align: center;
	padding-top: 55px;
    
	padding-bottom: 55px;
	font-size: 50px;
	color: #000000a2;
	background: url('images/slider311.png');

}
.headis h1{
    font-size: 60px;
    text-align: center;
    align-items: center;
}
.contact 
{
	position: relative;
	min-height: 100vh;
	padding: 50px 100px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	background: whitesmoke;
	backdrop-filter: blur(15px);
}
.contact .content 
{
	max-width: 800px;
	text-align: center;
	
}
.contact .content h2 
{
	font-size: 3em;
	color: #000;
	font-weight: 500;
	background:

}
.contact .content p 
{
	color: #000;
	font-size: 1.1em;
	font-weight: 300;
}
.container 
{
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 50px;
	margin-top: 30px;
}
.container .contactInfo 
{
	width: 50%;
	display: flex;
	flex-direction: column;
}
.container .contactInfo .box 
{
	position: relative;
	padding: 20px 0;
	display: flex;
	cursor: pointer;
}
.container .contactInfo .box .icon 
{
	min-width: 60px;
	height: 60px;
	background: rgb(204, 195, 195);
	border: 1px solid black;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 1.75em;
	transition: 0.5s;
    color: #000;
}
.container .contactInfo .box .icon a{
  text-decoration: none;
  color: black;
}
.container .contactInfo .box:hover .icon 
{
	background: transparent;
	color: black;
}
.container .contactInfo .box .text 
{
	display: flex;
	flex-direction: column;
	margin-left: 20px;
	font-size: 1.1em;
	color: #fff;
	font-weight: 300;
}
.container .contactInfo .box .text h3 
{
	font-weight: 400;
	color: black;
}
.container .contactInfo .box .text h3 a{
  
  color:black ;
}
.container .contactInfo .box .text p{
	color: rgba(0, 0, 0, 0.514);
	font-weight: 700;
}
.container .contactInfo .txt
{
	color: #0c0c0c94;
	margin-top: 50px;
	font-weight: 500;
	padding-left: 10px;
	line-height: 1em;
}
.sci 
{
	position: relative;
	display: flex;
	gap: 30px;
	margin: 20px 0;
}
.sci li 
{
	list-style: none;
}
.sci li a
{
	font-size: 2em;
	transition: 0.5s;
}
.sci li a:hover 
{
	color: #00bcd4;
}


.container .contactForm
{
	position: relative;
	width: 40%;
	background: #fff;
	min-height: 100px;
	padding: 60px;
	box-shadow: 0 0 5px 0 black;
} 
.container .contactForm h2 
{
	font-size: 2em;
	color: rgba(3, 48, 3, 0.959);
	font-weight: 500;
}
.container .contactForm .inputBox 
{
	position: relative;
	width: 100%;
	margin-top: 20px;
}
.container .contactForm .inputBox input, 
.container .contactForm .inputBox textarea 
{
	width: 100%;
	padding: 5px 0;
	font-size: 1.1em;
	margin: 10px 0;
	border: none;
	border-bottom: 2px solid #333;
	outline: none;
	resize: none;
}

.container .contactForm .inputBox span 
{
	position: absolute;
	left: 0;
	pointer-events: none;
	padding: 5px 0;
	margin: 10px 0;
	font-size: 1.1em;
	color: #666;
	transition: 0.5s;
}
.container .contactForm .inputBox input:focus ~ span, 
.container .contactForm .inputBox textarea:focus ~ span,
.container .contactForm .inputBox input:valid ~ span, 
.container .contactForm .inputBox textarea:valid ~ span 
{
	color: #e91e63;
	font-size: 0.9em;
	transform: translateY(-20px);
}
.container .contactForm .inputBox input[type="submit"]
{
	width: 100px;
	color: white;
	background: rgba(0, 0, 0, 0.514);
	border: none;
	cursor: pointer;
	padding: 10px;
	font-size: 1.1em;
	font-weight: 500;
}
.container .contactForm .inputBox input[type="submit"]:hover{
	background: #fff;
	color: #000;
	border: 1px solid black;
}


/*for google map*/
iframe{
  width: 1500px;
  display: flex;

  
}
footer .wallpaper{
    margin-top: 40px;
    background: url(/images/footer-back.jpg);
    border: none;
  }
  .row{
    display: flex;
    color: white;
    justify-content: space-between;
    padding: 40px 80px;

  }
  
  
  .row .logol h7{
    margin-bottom: 25px;
    color: whitesmoke;
    font-size: 30px;
    font-style: 22px;
    font-family: "Saira Condensed", sans-serif;
  }
  .row .logol p{
    color: whitesmoke;
    font-family: "Saira Condensed", sans-serif;
 }
 .wallpaper .row .footer-colomn .logol .fa{
    margin-left: 8px;
 }
 
  .footer .footer-colomn ul{
    list-style: none;
  }
  
  .footer-colomn3 .text-box p{
    font-size: larger;
    display: inline-block;
    color: whitesmoke;
    margin-top: 20px;
  }
  .footer-colomn4 h6{
    color: whitesmoke;
    margin-bottom: 15px;
    font-size: 30px;
    font-style: 22px;
    font-family: "Saira Condensed", sans-serif;
  }
  .footer-colomn4 ul li{
    color: rgb(108, 172, 13);
  }
  .footer-colomn4 ul i{
    color: black
  }
  .footer-colomn3 .text-box h7{
    margin-bottom: 25px;
    color: whitesmoke;
    font-size: 30px;
    font-style: 22px;
     font-family: Arial, Helvetica, sans-serif;
  }
  .footer-colomn3 .text-box p{
    font-size: 15px;
    color: rgb(108, 172, 13);
  }
  
  
  .footer-colomn4 ul li{
    padding: 10px 0;
  }
  .footer-colomn4 ul li a{
    color: white;
    text-decoration: none;
    font-size: 16px;
    opacity: 0.7s;
    transition: 0.5s;
  }
  .footer-colomn4 ul li a:hover{
    opacity: 1;
    color: black;
  }
  .footer-colomn input{
    border: none;
    width: 250px;
    height: 45px;
    display: block;
    padding left: 20px;
    margin: 14px 0;
  }
  .footer-colomn .InputSubmit{
    padding: 8px 20px;
    background-color: rgba(0, 128, 0, 0.788);
    border: none;
    color: white;
  }
  .rowl .coll p{
    color: white;
    padding-bottom: 10px;
    justify-self: center;
    text-align: center;
  }
  .row .socialIcons i{
    display: inline-block;
    color: white;
    font-size: 20px;
    margin: 0 15px;
    transition: 0.5s;
    padding-left: 20px;
  }
  .footer-colomn34 h8{
    margin-left: 2px;
    color: whitesmoke;
    font-size: 30px;
    font-style: 22px;
    font-family: "Saira Condensed", sans-serif;
  }
  .footer-colomn34 p{
    color: whitesmoke;
    font-size: 15px;
    font-family: "Saira Condensed", sans-serif;
  }




 
   

  





@media(max-width:991px){
    header{
        padding: 20px;
    }
    header label{
        display: initial;
    }
    header .navbar{
        position: absolute;
        top: 100%; left: 0; right: 0;
        background: whitesmoke;
        border-top: 1px solid black;
        display: none;
    }

    header .navbar ul li{
        width: 100%;
    }

    header .navbar ul li ul{
        position: relative;
        width: 100%;
    }
    header .navbar ul li ul li{
        background: whitesmoke;
    }

    #menu-bar:checked ~ .navbar{
        display: initial;
    }
    .headis{
        margin-top: 50px;
        width: auto;
        height:auto;
    }
    marquee{
        font-size: 15px;
    }
    .contact
	{
		padding: 50px;
	}
	.container
	{
		flex-direction: column;
    width: auto;
	}
	.container .contactInfo,
	.container .contactForm
	{
		width: 100%;
	}
	.container .contactForm
	{
		padding: 50px 30px;
	}

    .row{
        display: block;
    }
    iframe{
      width: 359px;
      
      
    }
    body{
      width: 359px;
    }
}

