
/* footer  */

footer {
    background: #fff;
  }
  
  .connect-btn a {
    font-size: 17px;
    color: #fff;
    background-color: var(--secondary);
    border: 2px solid var(--secondary);
    padding: 12px 25px;
    text-transform: uppercase;
    text-decoration: none;
    position: relative;
    font-weight: 500;
    transition: all 0.3s;
    
  }
  
  .footer-description p {
    font-size: 16px;
    letter-spacing: 1px;
    color: #fff;
    font-weight: 400;
    margin-bottom: 20px;
  }
  
  .footer-description h3 {
    font-size: 28px;
    letter-spacing: 1px;
    color: #fff;
    font-weight: 500;
    text-transform: capitalize;
    margin-bottom: 15px;
  }
  
  .footer-description form {
    display: flex;
  }
  
  .footer-description form input {
    padding: 8px 15px;
    border: none;
  }
  
  .footer-description form button {
    padding: 8px 15px;
    border: none;
    background-color: var(--secondary);
  }
  
  .footer-heading h3 {
    font-size: 28px;
    letter-spacing: 1px;
    color: #fff;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 15px;
  }
  
  .footer-links ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-links ul a {
    text-decoration: none;
    line-height: 25px;
    color: #fff;
    font-size: 18px;
    font-weight: 400;
    display: block;
    margin-bottom: 10px;
    transition: all 0.3s;
    &:hover {
      letter-spacing: 0.05em;
    }
    
  }
   
  .footer-links ul a i {
    font-size: 18px;
    margin-right: 10px;
  }

 
  
  .footer-links ul li a.head {
    font-size: 18px;
    font-family: "Raleway", sans-serif;
    font-weight: 600;
    letter-spacing: 1px;
    margin: 0;
    margin-top: 18px;
  }
  
  .footer-links ul li span {
    font-size: 18px;
    margin-right: 8px;
    /* color: #fff; */
    font-weight: 400;
    text-transform: initial;
  }
  
  .footer-links li p a {
    font-size: 18px;
    margin-right: 8px;
    color: #fff;
    font-weight: 400;
    text-transform: capitalize;
    transition: all 0.3s;
   
  }
  
  .footer-links ul li p {
    font-size: 18px;
    margin-bottom: 15px;
    color: #fff;
    font-weight: 400;
    text-transform: uppercase;
  }
  
  .footer-links li p i {
    margin-right: 8px;
    font-size: 18px;
    color: #fff;
  }
  
  .footer-btm {
    /* background: #fff; */
    border-top: 1px solid #fff;
  }
  
  .footer-bottom p {
    font-size: 18px;
    color: #fff;
    font-weight: 400;
    /* text-align: center; */
    margin-top: 20px;
    a {
      color: #fff;
    }
  }
  
  .footer-social-links ul {
    display: flex;
    /* justify-content: center; */
    gap: 15px;
    padding: 0;
    margin-top: 20px;
    list-style: none;
  }
  
  .footer-social-links ul a {
    padding: 8px 10px;
    height: 35px;
    width: 35px;
    border: 1px solid #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--secondary);
    color: #fff;
    &:hover {
      background-color: #fff;
      color: var(--secondary);
    }
  }
  