<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.footerContainer {
    background: #393E46;
    /* margin: 0 auto; */
    /* width: 1440px; */
    height: 175px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  
  .topRow {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 1360px;
    margin: 0 auto;
    margin-top: 31px;
    margin-bottom: 24px;
  }

  .logoContainer{
    width: 168px;
    height: 49px;
  }
  
  .logo {
    height: 100%;
    width: 100%;
  }
  
  .socialIcons {
    display: flex;
    gap: 8px;
  }
  
  .icon {
    color: #BEBDBD;
    cursor: pointer;
  }
  

  .copyright {
    text-align: center;
    color: #D2D2D2;
    font-size: 14px;
    background: #393e4600;
    width: 1360px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    border-top: 1px solid #FFFFFF1A;
}

@media screen and (min-width: 320px) and (max-width: 1360px) { 
  .copyright {
    width: 95%;
}
.topRow {
  width: 95%;
}

}
@media screen and (min-width: 320px) and (max-width: 449px) { 
.topRow {
  display: grid;
  justify-content: center;
}
.socialIcons {
  margin-top: 10px;;
  justify-content: center;
}

}</pre></body></html>