footer{
    background-color: var(--secondary-color);
    padding: 60px 0;
   padding-bottom: 0;
}
.footer-logo{
    width: 330px;
    height: 100px;
}
.footer-logo img{
    width: 100%;
    height: 100%;
}

footer .top-footer p{
    font-size: 16px;
    font-weight: bold;
    line-height: 3;
    width: 80%;
}

footer .top-footer .social{
    display: flex;
    gap: 10px;
}
footer .top-footer .social li {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;

}
footer .top-footer .social li:nth-child(1){
    background-color: #C13584;
}
footer .top-footer .social li:nth-child(2){
    background-color: #0077B5;
}
footer .top-footer .social li:nth-child(3){
    background-color: #3B5998;
}
footer .top-footer .social li:nth-child(4){
    background-color: #34A853;

}
footer .top-footer .social li:nth-child(5){
    background-color: #1DA1F2;
}
footer .top-footer .social li a{
    width: 16px;
    height: 16px;
    color: white !important;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;

}
footer .top-footer h4{
    font-weight: bold;
    padding-bottom: 30px;
}
footer .top-footer .footer-links ul{
    display: flex;
    flex-direction: column;
    gap: 15px;
}
footer .top-footer .footer-links ul li{
    list-style: none;
}
footer .top-footer .footer-links ul li a{
    color: black;
    font-weight: bold;
    transition: 0.3s;
}

footer .top-footer .footer-links ul li a:hover{
  color: var(--main-color);
}

.remove-mune {
    position: absolute;
    top: 30px;
    right: 30px;
  }

  .remove-mune span {
    width: 40px;
    height: 40px;
    display: block;
    transition: all 0.2s linear;
    position: relative;
    cursor: pointer;
    transform: rotate(0deg);

    transition-delay: 0.8s;
  }

  .remove-mune span::after {
    content: "";
    height: 2px;
    background-color: white;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    transition: all 0.6s linear;
  }

  .remove-mune span::before {
    content: "";
    height: 2px;
    background-color: white;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    transition: all 0.2s linear;

    transition-delay: 0.6s;
  }



.menu_responsive.active .remove-mune span::before {
    transform: rotate(90deg) translateY(-50%);
  }

  .menu_responsive.active .remove-mune span {
    transform: rotate(45deg);
  }

  .element_menu_responsive ul li {
    transform: translateY(100%);
    transition: all 0.2s linear;
    transition-delay: 0.4s;
    display: block;
    opacity: 0;
  }

  .menu_responsive {
    transition-delay: 1s;
  }

  .menu_responsive.active {
    transition-delay: 0.3s;
  }

  .menu_responsive.active .element_menu_responsive ul li {
    transform: translateY(0%);
  }

  .menu_responsive.active .element_menu_responsive ul li:nth-of-type(1) {
    transition-delay: 0.4s;
    opacity: 1;
  }

  .menu_responsive.active .element_menu_responsive ul li:nth-of-type(2) {
    transition-delay: 0.6s;
    opacity: 1;
  }

  .menu_responsive.active .element_menu_responsive ul li:nth-of-type(3) {
    transition-delay: 0.8s;
    opacity: 1;
  }

  .menu_responsive.active .element_menu_responsive ul li:nth-of-type(4) {
    transition-delay: 1s;
    opacity: 1;
  }

  .menu_responsive.active .element_menu_responsive ul li:nth-of-type(5) {
    transition-delay: 1.2s;
    opacity: 1;
  }

  .menu_responsive.active .element_menu_responsive ul li:nth-of-type(6) {
    transition-delay: 1.4s;
    opacity: 1;
  }

  .menu_responsive.active .element_menu_responsive ul li:nth-of-type(7) {
    transition-delay: 1.6s;
    opacity: 1;
  }

  .menu_responsive.active .element_menu_responsive ul li:nth-of-type(8) {
    transition-delay: 1.8s;
    opacity: 1;
  }

  .menu_responsive.active .element_menu_responsive ul li:nth-of-type(9) {
    transition-delay: 2s;
    opacity: 1;
  }

  .copy__write{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 50px;
    border-top: 1px solid #000;
  }


  .copy__write a{
    color: #000;
    display: flex;
    align-items: center;
  }

  .copy__write a span{
    color: rgb(204, 3, 3);
    display: block;
    margin: 5px;
    animation: scalling infinite linear 2s ;
  }

  .copy__write p{
    font-size: 16px;
    font-weight: 700;
  }


@keyframes scalling {
   0%{
    transform: scale(1);
   }

   25%{
    transform: scale(1.3);
   }

   50%{
    transform: scale(1);
   }

   75%{
    transform: scale(0.7);
   }

   100%{
    transform: scale(1);
   }
}
