footer{
    width: 100%;
    min-height: 500px;
    position: relative;
    color: #ffffff;
    font-size: 16px;
}
footer * {
  font-family: "Poppins", sans-serif;
  box-sizing: border-box;
  border: none;
  outline: none;
}
footer .column-header{
    text-align: center;
    background-color: #121315;
    width: 44%;
    float: left;
    height: 200px;
}
footer .column-header .logo{
    padding-top: 20px;
    width: 100px;
    height: 80px;
    margin: auto;
    overflow: hidden;
}
footer .column-header .logo img{
    width: 100%;
    height: 100%;
    border: solid 2px #11949A;
    border-radius: 5px;
    transition: 0.5s;

}
footer .column-header .logo:hover img{
    transform: scale(1.1);
    border: solid 1px #11949A;

}
footer .column {
  padding-right: 50px;
  box-sizing: border-box;
  height: 200px;
  float: left;
  width: 28%;
  background-color: #121315;

}
footer .column h3{
    color: #11949A;
    font-size: 1.6em;
}
footer .column-header h2{
    color: #11949A;
    font-size: 1.6em;

}
footer .column-bottom{
    padding-top: 20px;
    width: 100%;
    height: 100px;
    float: left;
    background-color: #121315;

}

footer .column-bottom{
        min-height: 300px;
        display: flex;
        justify-content: center;
        align-content: center;
        align-items: center;
        flex-direction: column;
        box-sizing: border-box;
}
footer .column-bottom .tiny-line{
    margin-top: 5px;
    margin-bottom: 5px;
    width: 90%;
    height: 3px;
    border-radius: 50%;
    background-color: #ffffff;
}
footer .column-bottom form{
    padding-right: 30px;
}
footer .column-bottom form input,footer button {
  font-size: 1em;
  padding: 1em;
  width: 100%;
  border-radius: 5px;
  margin-bottom: 5px;
}
footer .column-bottom form input:placeholder-shown{
    font-size: 18px;
}
footer button {
  background-color: #11949A;
  color: #ffffff;
}
footer ul a{
    text-decoration: none;
    font-size: 18px;
    color: #fff;
}
footer .column-bottom ul{
    list-style: none;
}
footer .column-bottom ul a{
    float: left;
    margin-left: 40px;
    font-size: 30px;
    color: #fff;
    
}
/* On screens that are 992px wide or less, go from four columns to two columns */
@media screen and (max-width: 992px) {
    footer .column-header{
        width: 100%;
        height: 200px;
    }
  footer .column {
    width: 50%;
      height: 200px;
      padding-right: 20px;
      box-sizing: border-box;
  }
    footer .column-bottom{
        width: 100%;
        height: auto;
        float: left;

    }
    
}

/* On screens that are 600px wide or less, make the columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
    footer .colume-header{
        width: 100%;
    }
    
  footer .column {
    width: 50%;
  }
    footer .column-bottom{
        width: 100%;
        height: auto;
        float: left;
        
    }
}