@import url('https://fonts.googleapis.com/css2?family=Didact+Gothic&display=swap');
*{
font-family: "Didact Gothic", sans-serif;
  
  font-style: normal;	
}
.f-container {
	display: flex;
	width: 100%;
	align-items: center;
	margin: 10px 0px; 
	position: relative;
}

.f-container input[type="email"] {
	flex: 1; /* Allow the input to grow and shrink */
	padding: 5px 5px 8px 10px;
	font-size: 14px;
	border: 1px solid #ccc;
	border-radius: 5px;
}

.f-container button {
	padding: 8px 15px 8px 16px;
	font-size: 16px;
	border: none;
	background: transparent;
	color: #000;
	border-radius: 0 5px 5px 0;
	cursor: pointer;
	position: absolute;
	right: 0;
}

.f-container button:hover {
    background: rgba(0,0,0,0.1); /* Darker shade for hover effect a0a1a3*/
}


.footer-area{
    padding: 40px 0px;
    background-color: #ADB5BD;
    color: #000;
}
.footer-area a{
    text-decoration: none;
}
.footer-area .footer-heading{
    font-size: 24px;
    color: #000;
}
.footer-area .footer-underline{
    height: 1px;
    width: 70px;
    background-color: #000;
    margin: 10px 0px;
}
.copyright-area{
    padding: 14px 0px;
    background-color: #ADB5BD;
}
.copyright-area p{
    margin-bottom: 0px;
    color: #000;
}
.copyright-area .social-media{
    text-align: end;
	color: #000;
	font-size: 18px;
}
.copyright-area .social-media a{
    margin: 0px 4px;
    color: #000;
    width: 30px;
	font-size: 20px;
}

.p-mode img{
	width: 70%;
	height: auto;
	border-radius: 10px;
	margin-bottom: 20px;
}
/*Footer Css*/