
#newsletter{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  background-color: rgb(0, 0, 43);
}
#newsletter h4{
  font-size: 22px;
  font-weight: 700;
  color: #fff;
}
#newsletter p{
  font-size: 14px;
  font-weight: 600;
  color: #818ea0;
}
#newsletter p span{
  color: #ffbd27;
}
#newsletter .form :nth-child(1){
  height: 3.125rem;
  padding: 0;
  font-size: 14px;
  width: 350px;
  border: 1px solid transparent;
  border-radius: 4px;
  outline: none;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
#newsletter .form :nth-child(2){
  height: 3.125rem;
  padding: 0 2px;
  font-size: 16px;
  width: 150px;
  border: 1px solid transparent;
  border-radius: 4px;
  outline: none;
  background-color: #088178;
  color: white;
  white-space: nowrap;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
#newsletter .form input::placeholder{
  color: black;
  font-size: 15px;
}
#newsletter .form{
  display: flex;
  width: 40%;
}


footer img{
  height: 60px;
  width:150px;
  border-radius: 5px;
  margin-bottom: 30px;
}
footer{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
footer .col{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 20px;
}
footer h4{
  font-size: 14px;
  padding-bottom: 20px;
}
footer p{
  font-size: 13px;
  margin: 0 0 8px 0;
}
footer a{
  font-size: 13px;
  text-decoration: none;
  color: #222;
  margin-bottom: 10px;
}
footer .follow{
  margin-top: 20px;
}
footer .follow i{
  color: #465b52;
  padding-right: 4px;
  cursor: pointer;
}
footer .install .row img{
   border: 1px solid #088178;
   border-radius: 6px;
   height: 49px;
   width: 49%;
}
footer .install img{
  margin: 10px 0 15px 0;
  width: 100%;
}
footer .follow i:hover,
footer a:hover {
   color: #088178;
}
.copyright{
  background-color: rgb(204, 204, 204);
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: dotted 1.5px #088178;
}


/* media query */
@media (max-width:799px){
  #newsletter .form{
    width: 70%;
  }
}