/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 2.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/


  @import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

  .as-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #000;
  }

  .as-footer__row {
    width: 100%;
    padding: 10px 0 !important;
    display: flex;
    justify-content: center;
    column-gap: 20px;
    row-gap: 10px;
  }

  .as-footer__row:first-child {
    background-color: #232323;
  }

  .as-footer__row:last-child {
    max-width: 1200px;
    justify-content: space-between;
  }

  .as-footer__col {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .as-footer * {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    line-height: 1.2;
  }

  .as-footer__list {
    list-style: none;
    display: flex;
    column-gap: 20px;
    row-gap: 5px;
    justify-content: center;
    align-items: center;
    padding: 0;
    flex-wrap: wrap;
  }

  .as-footer__list li {
    position: relative;
  }

  .as-footer__list li:not(:last-child)::after {
    content: '';
    width: 1px;
    height: 7px;
    background: #fff;
    position: absolute;
    top: 51%;
    right: -12px;
    transform: translateY(-50%);
  }

  .as-footer__list a,
  .as-footer__col a {
    font-family: 'Montserrat';
    text-transform: uppercase;
    text-decoration: none;
    font-size: 10px;
    color: #fff;
    transition: all 0.3s;
  }

  .as-footer__list a:hover {
    color: rgba(255, 255, 255, 0.6);
  }

  .as-footer__col img {
    max-height: 50px;
  }

  .as-footer__col:nth-child(2) a {
    font-size: 14px;
    font-weight: 600;
    text-align: center;
  }

  .as-footer__col:nth-child(2) a:hover {
    opacity: 0.6;
  }

  .as-footer__col:nth-child(2) img {
    max-height: 25px;
    margin-bottom: -6px;
  }

  @media (max-width: 660px) {
    .as-footer__list {
      flex-direction: column;
      align-items: center;
      gap: 5px;
      justify-content: center;
    }

    .as-footer__list li::after {
      display: none;
    }

    .as-footer__list li::before {
      content: '';
      width: 30px;
      height: 1px;
      position: absolute;
      left: 50%;
      bottom: -5px;
      background-color: #fafafa;
      box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
      transform: translatex(-50%);
    }

    .as-footer__row:nth-child(2) {
      flex-direction: column;
    }

    .as-footer__col:nth-child(2) {
      order: 1;
    }

    .as-footer__col:first-child {
      order: 2;
    }

    .as-footer__col:last-child {
      order: 3;
    }
  }
