
/*========== Colors ==========*/
:root {

    
    /*========== Colors for general use ==========*/
    --rich-black-fogra-29: hsl(210, 26%, 7%);
    --deep-saffron: #b91717;
    --white: hsl(0, 0%, 100%);
    --black: hsl(0, 0%, 0%);
    --sonic-silver: hsl(0, 0%, 47%);
    
    }
footer {
    padding-bottom: 30px;
    background-image: url(../images/footer-bg/footer_bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
    padding-top: 10rem;
    padding-bottom: 1rem;
  }
  
  footer .container {
    text-align: center;
  }
  
  footer .container .all img {
    width: 250px;
  }
  
  footer .container .all .social-link {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin: 40px 0;
  }
  
  footer .container .all .social-link a {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    box-shadow: rgba(100, 100, 111, 0.534) 0px 7px 29px 0px;
    background-color: var(--white);
    color: #b91717;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    transition: 0.8s;
    -webkit-transition: 0.8s;
    -moz-transition: 0.8s;
    -ms-transition: 0.8s;
    -o-transition: 0.8s;
  }
  
  footer .container .all .social-link a:hover {
    background-color: var(--secondary-color);
    color: var(--main-color);
    transform: translateY(-4px);
    -webkit-transform: translateY(-4px);
    -moz-transform: translateY(-4px);
    -ms-transform: translateY(-4px);
    -o-transform: translateY(-4px);
  }
  
  
  footer .container .all .copy {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
  }
  
  footer .container .all .copy .co {
    border-right: 2px solid #fdfdfd;
    padding-right: 30px;
  }
  
  footer .container .all .copy .co p {
    font-weight: 600;
    font-size: 18px;
    color: #fdfdfd;
  }

  footer .container .all .copy .co span {
    color: #ffbebe;
  }
  footer .container .all .copy .co .lo {
    cursor: pointer;
  }
  footer .container .all .copy .co  a {
    text-decoration: none;
    color: #ffc6c6;
  }
/* Start Responsive Footer */

@media (max-width: 767px) {
    footer .container .all .copy {
        margin-bottom: 55px;
      flex-direction: column;
      gap: 0;
    }
  
    footer .container .all .copy .co {
      border: none;
      padding: 0;
    }
    footer .container .all .copy .co .lo {
        font-size: 18px !important;
    }
  }
  
  /* End Responsive Footer */  