@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Gwendolyn:wght@400;700&display=swap');


*{
  margin: 0;
  padding: 0;
  list-style: none;
  text-decoration: none;
  font-family: Quicksand;
}

.footer{
 width: 100%;
 display: block;
 overflow: hidden;
 padding: 50px 50px;
 box-sizing: border-box;
 background-color: #4D231C;
 padding-top: 100px;
 padding-bottom: 100px;
}
.inner_footer{
  display: block;
  margin: 0 auto;
  width: 1100px;
  height: 100%;
}
.inner_footer .logo_container{
  width: 20%;
  display: block;
  float: left;
  height: 100%; 
}
.inner_footer .logo_container img{
  width: 100px;
  height: auto;
}
.inner_footer .footer_third{
  width: calc(21.6666666667% - 20px);
  margin-right: 10px;
  float: left;
  height: 100%;
}
.inner_footer .footer_third:last-child{
  margin-right: 0;
}
.inner_footer .footer_third h1{
  font-family: 'Style Script', cursive;
  color: #fff;
  font-size: 22px;
  margin-bottom: 20px;
  width: 100%;
  display: block;
}
.inner_footer .footer_third a{

    color: #fff;
    font-size: 16px;
    font-weight: 200px;
    margin-bottom: 20px;
    width: 100%;
    display: block;
    padding-bottom: 5px;
    transition: all .5s;
  }
  .inner_footer .footer_third a:hover{
    color: #DA002B;
  }
  .inner_footer .footer_third li{
    display: inline-block;
    padding: 0 5px;
    font-size: 20px;
  }
  .inner_footer .footer_third span{
    color: #ffffff;
    font-size: 13px;
    font-weight: 200px;
    display: block;
  }
  @media (max-width:600px) {
    .footer .inner_footer{
      width: 90%;
    }
    .inner_footer .logo_container,
    .inner_footer .footer_third{
      width: 100%;
      margin-bottom: 30px;
    }
  
  }
  .whitebottom{
    background-color: #ffffff;
    width: 100%;
    height: 50px;
    display: block;
  }