

:root {
    --text-dark: #000000;
    --text-light: #141412;
    --extra-light: #ff6d00 ;
    --white: #ffffff;
    --max-width: 1200px;
    --header-font: Arial, Helvetica, sans-serif;;
  }
  
  * {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
  }
  
  
  .section__container {
    max-width: var(--max-width);
    margin: auto;
    padding: 5rem 1rem;
  }
  
  .section__header {
    position: relative;
    isolation: isolate;
    width: fit-content;
    margin-inline: auto;
    padding-bottom: 0.5rem;
    font-size: 2.5rem;
    font-weight: 800;
    font-family: var(--header-font);
    color: var(--text-dark);
    text-align: center;
  }
  
  .section__header::before {
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    height: 2px;
    width: 10rem;
    background-color: var(--text-dark);
  }
  
  .btn {
    padding: 1rem 2rem;
    outline: none;
    border: none;
    color: var(--white);
    background-color: var(--text-dark);
    transition: 0.3s;
    cursor: pointer;
  }
  
  .btn:hover {
    background-color: var(--text-light);
  }
  
  body {
   font-family:Arial, Helvetica, sans-serif;;
  }

  .separator-line {
    height: 2px;
    background-color: #FFA07A;
   
  }
  
  .footer__container {
    display: grid;
    gap: 4rem;
  }
  
  .footer__col .section__header {
    margin-inline-start: unset;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 300;
  }
  
  .footer__col p {
    line-height: 1.75rem;
    color: var(--text-light);
  }
  
  .footer__socials {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  
  .footer__socials li {
    margin-bottom: 3px;
  }
  
  .footer__socials a {
    padding: 5px 9px;
    font-size: 1.1rem;
    color: var(--text-light);
    
  }
  
  .footer__socials a:hover {
    color:  #ff6d00;
  }
  
  .footer__bar {
    padding: 1rem;
    color: var(--text-light);
    text-align: center;
  }
  
  @media (width > 540px) {
  
    .footer__container {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (width > 768px) {
  
    .footer__container {
      grid-template-columns: repeat(3, 1fr);
    }
  }
  
  
  