@charset "UTF-8";
/* CSS Document */

.body
{
  margin: 0;
  padding: 0;
  font-family: "Poppins";
}

.footer {
  position: absolute;
  max-width: 100%;
  width: 100%;
  background-color: #818589;
  margin-bottom: 20px;
  text-decoration: none;

}

.footer .footer-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 60px;
}

.footer-row .footer-col h3 {
  color: #F1EEE8;
  font-size: 14px;
  font-family: "Poppins", serif;
  font-weight: 600;
  font-style: normal;
}

.footer-col .links {
  list-style-type: none;
}

.footer-col .links li {
  font-family:poppins;
  font-weight: 200;	
}

.footer-col .links li a {
  text-decoration: none;
  color: #F1EEE8;
  font-size: 14px;
  font-family: "Poppins", serif;
  font-weight: 200;
  font-style: normal;
}

.footer-col .links li a:hover {
  color: #818589;
  font-weight: 600;
  font-style: italic;
}

.footer-col p {
  margin: 1em 0;
  font-family:poppins;
  font-weight: 100;
  color: white;
  max-width: 325px;
}

.footer-col form {
  display: flex;
  gap: .5em;
}
.footer-col input {
  font-family: poppins;
  height: 40px;
  border-radius: 1px;
  background: none;
  width: 100%;
  background-color: #F1EEE8;
  border-top: solid;
  border-bottom: solid;
  border-color: dodgerblue;
  border-width: 1px;
  padding-left: 10px;
}

.footer-col input:hover {
	background-color: 	dodgerblue;
	font-weight: 400;
}

 .footer-col form button {
  color: 	#818589;
  font-family: poppins;
  background: #fff;
  outline: none;
  border: none;
  padding: 10px px;
  border-radius: 1px;
  cursor: pointer;
  font-weight: 500;
  transition: 0.2s ease;
}

.footer-col form button:hover {
	background-color: 	dodgerblue;
  	color: white;
	font-weight: 400;




@media (max-width: 768px) {
  .footer {
    position: relative;
    bottom: 0;
    left: 0;
	  z-index: 10;
    transform: none;
    width: 100%;
    border-radius: 0;
  }
  .footer .footer-row {
    padding: 20px;
    gap: 1rem;
  }
  .footer-col form {
    display: block;
  }
  .footer-col form :where(input, button) {
    width: 100%; /
  }
  .footer-col form button {
    margin: 20px 0 0 0;
	padding: 10px; 
    width: 30%; /
  }
}