body {
  background-color: #E0F2E9;
  color: #463730;
  font-family: Arial, Helvetica, sans-serif;
}

h3 {
    font-size: 1.6rem;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 600;
    text-align: center;
    padding: 30px 0 10px;
  }
  

  #hr-divider-line { 
    display: block;
    margin-top: 0.5em;
    margin-bottom: 0.5em;
    margin-left: auto;
    margin-right: auto;
    border-style: inset;
    border-width: 1px;
  } 

  #footer-subscribe-div {
    width: 360px;
    margin: 0 auto;
    margin-bottom: 100px;
    font-family: Arial, Helvetica, sans-serif;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
    background-color: #488ac3;
    border: #f54545 solid 5px;
    border-radius: 25px;
  }
  
  .text-error {
    color: red;
  }
  
  .text-success {
    color: #3898ec;
  }
  
  #subscribe-form {
    width: 330px;
    margin: 0 auto;
    font-family: Arial, Helvetica, sans-serif;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
    background-color: #488ac3;
  }
  
  #subscribe-form input {
    width: 100%;
    padding: 6px 10px;
    margin-bottom: 4px;
    border-radius: 5px;
    border: #3898ec solid 3px;
    border-radius: 15px;
  }
  
  #subscribe-form button {
    width: 93px;
    padding: 6px 10px;
    margin-top: 8px;
    margin-bottom: 25px;
    border-radius: 5px;
    background-color: #3898ec;
    color: #fff;
    text-align: center;
    cursor: pointer;
    border-radius: 10px;
  }
  
  #subscribe-form button:hover {
    background-color: #463730;
  }

.footer-coffee-container {

  height: 150px;
  width: 100px;
  position: relative;
}

.footer-coffee-cup {
  position: absolute;

  height: 33%;
  width: 50%;
  bottom: 25%;
  left: 25%;

  background: linear-gradient(to right, #f9f9f9, #d9d9d9);
  border-bottom-left-radius: 45%;
  border-bottom-right-radius: 45%;
  background-color: #313131;
}

.footer-coffee-top {
  position: absolute;
  top: -13%;
  left: 0;
  width: 100%;
  height: 27%;
  background: linear-gradient(to right, #f9f9f9, #d9d9d9);
  border-radius: 50%;
}

.footer-coffee-circle {
  position: absolute;
  top: -2%;
  left: 3%;
  width: calc(100% - 6%);
  height: 100%;
  background: linear-gradient(to left, #f9f9f9, #d9d9d9);
  border-radius: 50%;
  box-sizing: border-box;
  overflow: hidden;
}


.footer-coffee-tea {
  position: absolute;
  top: 56%;
  left: 0%;
  width: 100%;
  height: 100%;
  background: linear-gradient(#c57e65, #2e1d16);
  border-radius: 50%;
}


.footer-coffee-handle {
  position: absolute;
  bottom: 19%;
  left: 75%;
  width: 40%;
  height: 68%;
  border-radius: 50%;
  border: 10px solid #d9d9d9;
  border-left: 10px solid transparent;
  border-bottom: 10px solid transparent;

  transform: rotate(27deg);
}

.footer-coffee-plate {
  position: absolute;
  bottom: 14%;
  left: 5%;
  width: 90%;
  height: 31%;
  background: linear-gradient(to right, #f9f9f9, #e7e7e7);
  border-radius: 50%;
  box-shadow: 0 35px 35px rgba(0, 0, 0, 0.2);
}

.footer-coffee-plate-inside {
  position: absolute;
  bottom: 8%;
  left: 5%;
  width: 90%;
  height: 88%;
  background: linear-gradient(to right, #e7e7e7, #f9f9f9);
  border-radius: 50%;
  box-shadow: 0 35px 35px rgba(0, 0, 0, 0.2);
}

.footer-coffee-plate::after {
  content: '';
  position: absolute;
  bottom: 0%;
  left: 0%;
  right: 0%;
  top: 0%;
  background: radial-gradient(rgba(0, 0, 0, 0.253), 25%,
      transparent, transparent);
  border-radius: 50%;
}

.footer-coffee-plate::before {
  content: '';
  position: absolute;
  bottom: 10px;
  left: 10px;
  right: 10px;
  top: 10px;
  /*background: linear-gradient(to left, #f9f9f9, #e7e7e7);*/
  border-radius: 50%;
}

.footer-coffee-vapour {
  position: absolute;
  width: 100%;
  height: 100%;

  left: 0%;
  bottom: 0%;
  display: flex;
  z-index: 1;
  padding: 0;

}


.footer-coffee-vapour span {
  position: relative;
  left: 25%;
  width: 50%;
  display: block;

  margin: 0% 0% 0% -30%;


  min-width: 20px;
  height: 100%;
  background: #fff;
  border-radius: 40%;
  animation: animate 5s linear infinite;
  opacity: 2%;
  filter: blur(10px);
  animation-delay: calc(var(--i) * -0.5s);
}


@keyframes animate {

  0% {
    transform: translateY(0)translateY(1);
    opacity: 0;
  }

  15% {
    opacity: 2;
  }

  50% {
    transform: translateY(-50px)scaleX(3);
  }

  95% {
    opacity: 3;
  }

  100% {
    transform: translateY(-150px)scaleX(4);
  }
}

@media screen and (max-width:436px) {
#footer-subscribe-div {
    width: 300px;
    margin: 0 auto;
    margin-bottom: 100px;
    font-family: Arial, Helvetica, sans-serif;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
    background-color: #488ac3;
    border: #f54545 solid 5px;
    border-radius: 25px;
  }

    #subscribe-form {
      width: 230px;
      margin: 0 auto;
      font-family: Arial, Helvetica, sans-serif;
      display: flex;
      flex-wrap: wrap;
      flex-direction: column;
      align-items: center;
      background-color: #488ac3;
    }

    #subscribe-form input {
      width: 60%;
      padding: 6px 10px;
      margin-bottom: 4px;
      border-radius: 5px;
      border: #3898ec solid 3px;
      border-radius: 15px;
    }

  }