#footer_div{
    background-color: #4D0000;
    margin-top: 100px;
    display: flex;
    flex-direction: column;
    color: white;
    flex-wrap: wrap;
}

#fav_content{
    display: flex;
    flex-direction: row;
    flex: 2;
    margin: 0px 100px;
    padding: 30px 0px;
}

#fav_con_appdetails{
    align-self: center;
    padding-left: 0px;
    flex: 1;
}

#fav_con_appdetails img{
    margin-left: 40px;
}

#fav_con_appdetails img:hover{
    -webkit-animation: rotating 2s linear infinite;
    -moz-animation: rotating 2s linear infinite;
    -ms-animation: rotating 2s linear infinite;
    -o-animation: rotating 2s linear infinite;
    animation: rotating 2s linear infinite;
}

@-webkit-keyframes rotating /* Safari and Chrome */ {
    from {
      -webkit-transform: rotate(0deg);
      -o-transform: rotate(0deg);
      transform: rotate(0deg);
    }
    to {
      -webkit-transform: rotate(360deg);
      -o-transform: rotate(360deg);
      transform: rotate(360deg);
    }
  }
  @keyframes rotating {
    from {
      -ms-transform: rotate(0deg);
      -moz-transform: rotate(0deg);
      -webkit-transform: rotate(0deg);
      -o-transform: rotate(0deg);
      transform: rotate(0deg);
    }
    to {
      -ms-transform: rotate(360deg);
      -moz-transform: rotate(360deg);
      -webkit-transform: rotate(360deg);
      -o-transform: rotate(360deg);
      transform: rotate(360deg);
    }
  }

#fav_con_main, #fav_con_category, #fav_con_legal{
    display: flex;
    flex-direction: column;
    margin-top: 20px;
    flex: 0.5;
}

#fav_con_main small, #fav_con_category small, #fav_con_legal small{
    margin-top: 10px;
}

#fav_con_main small a, #fav_con_category small a, #fav_con_legal small a{
    text-decoration: none;
    padding: 5px 10px;
    color: rgb(214, 205, 205);
}

#fav_con_main small a:hover, #fav_con_category small a:hover, #fav_con_legal small a:hover{
    color: #FFA826;
    font-weight: bold;
    transition: 0.5s ease-in-out;
}

#fav_hr{
    flex: 0.01;
    height: 0.1px;
    background-color: white;
    margin: 0px 50px;
}

#fav_contact{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    flex: 0.5;
    margin: 30px 100px;
}

#fav_contact *{
    flex: 1;
}

#fav_contact_auth{
    text-align: end;
    color: rgb(214, 205, 205);
}

#fav_contact_icons *{
    font-size: x-large;
    margin-left: 10px;
    color: #FFA826;
    cursor: pointer;
}

#fav_c_twitter i:hover{
    color: rgb(0, 174, 255);
    transform: scale(1.2);
    transition: 0.3s ease-in-out;
}

#fav_c_facebook i:hover{
    color: rgb(75, 72, 255);
    transform: scale(1.2);
    transition: 0.3s ease-in-out;
}

#fav_c_instagram i:hover{
    color: rgb(255, 0, 76);
    transform: scale(1.2);
    transition: 0.3s ease-in-out;
}

#fav_c_whatsapp i:hover{
    color: rgb(0, 180, 54);
    transform: scale(1.2);
    transition: 0.3s ease-in-out;
}

#fav_c_youtube i:hover{
    color: rgb(233, 1, 1);
    transform: scale(1.2);
    transition: 0.3s ease-in-out;
}
