/* Importing Google font - Open Sans */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700&display=swap');


.footer {
  /* max-width: 1380px; */
  width: 100%;
  background: rgba(10, 133, 204, 1);
  overflow: hidden;
}

.footer .footer-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 3.5rem;
  padding: 40px 40px 10px 40px;
}

.footer-row .footer-col h4 {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 900;
  text-align: left;
}

.footer-col .links {
  margin-top: 20px;
}

.footer-col .links li {
  list-style: none;
  margin-bottom: 10px;
}

.footer-col .links li a {
  text-decoration: none;
  color: #fffefe;
}

.footer-col .links li a:hover {
  color: #eceaea;
}

.footer-col p {
  margin: 20px 0;
  color: #bfbfbf;
  max-width: 300px;
}

.footer-col form {
  display: flex;
  /* gap: 5px; */
}

.footer-col input {
  height: 40px;
  border-radius: 6px 0px 0px 6px;
  background: none;
  width: 100%;
  outline: none;
  border-left: 3px solid white;
  border-bottom: 3px solid white;
  border-top: 3px solid white;
  caret-color: #fff;
  color: #fff;
  padding-left: 10px;
}

.footer-col input::placeholder {
  color: #ccc;
}

 .footer-col form button {
  background: #fff;
  outline: none;
  border: none;
  padding: 8px 15px;
  border-radius: 0px  6px 6px 0px;
  cursor: pointer;
  font-weight: 500;
  transition: 0.2s ease;
}

.footer-col form button:hover {
  background: #cecccc;
}

.footer-col .icons {
  display: flex;
  margin-top: 30px;
  gap: 30px;
  cursor: pointer;
}

.footer-col .icons i {
  color: white;
  font-size: 1.5rem;
  padding: 0.8rem;
}

.footer-col ul{
  padding: 0px;
}

.footer-col .icons i:hover{
  
    border-radius: 50%;
    background: #404140;
  
}
.footer-col .icons i:nth-child(1):hover{
  
  border-radius: 50%;
  background: #404140;
  transform: scaleX(1.2);

}

.footer-col .icons i:hover  {
  color: #fff;
}

@media (max-width: 768px) {
  .footer {
    position: relative;
    bottom: 0;
    left: 0;
    transform: none;
    width: 100%;
    border-radius: 0;
  }

  .footer-col input {
    border-right: 3px solid white;
    border-radius: 7px;
  }
  .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: 10px 0 0 0;
  }
  .footer-col{
    margin: 1rem;
  }
}