/* 
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
*/

/** General */
body:has(#header.mobile-menu-open) {
  overflow: hidden;
}

.container {
  display: flex;
  flex-direction: column;
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
}

/** Header */
#header {
  display: flex;
  flex-direction: column;
  background-color: #101111;
  padding: 10px 20px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

#header .header-wrapper {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
  column-gap: 20px;
  position: relative;
}

#header .header-wrapper .logo {
  display: flex;
  flex-direction: column;
  max-width: 86px;
}

#header .header-wrapper .logo .image {
  display: flex;
  flex-direction: column;
}

#header .header-wrapper .hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 28px;
  height: 28px;
  cursor: pointer;
  gap: 6px;
  z-index: 100000;
}

#header .header-wrapper .hamburger .line {
  height: 2px;
  width: 100%;
  background: #fff;
  transition: transform 0.3s cubic-bezier(.4, 2, .6, 1), opacity 0.3s;
  position: relative;
}

#header.mobile-menu-open .header-wrapper .hamburger .line:nth-child(1) {
  transform: translateY(8px) rotate(44deg);
}

#header.mobile-menu-open .header-wrapper .hamburger .line:nth-child(2) {
  opacity: 0;
}

#header.mobile-menu-open .header-wrapper .hamburger .line:nth-child(3) {
  transform: translateY(-8px) rotate(-44deg);
}

#header .header-wrapper .navigation {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background-color: #101111e0;
  backdrop-filter: blur(4px);
  padding: 20px;
  display: flex;
  flex-flow: column nowrap;
  align-items: flex-start;
  row-gap: 2px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

#header.mobile-menu-open .header-wrapper .navigation {
  opacity: 1;
  visibility: visible;
}

#header .header-wrapper .navigation a {
  font-size: 24px;
  font-weight: 600;
  text-transform: uppercase;
  padding: 6px 8px;
  color: #008aa1;
  transition: color 0.15s ease;
}

#header .header-wrapper .navigation a:hover {
  color: #8ad1e8;
}

#header .header-wrapper .navigation a.active {
  color: #fff;
}

/** Footer */
#footer {
  display: flex;
  flex-direction: column;
  background-color: #101111;
  padding: 0 20px;
}

#footer a {
  color: #fff;
}

#footer .information {
  display: flex;
  flex-flow: row wrap;
  gap: 40px 24px;
  padding: 80px 0;
}

#footer .information .logo-wrapper {
  flex-basis: 100%;
  display: flex;
  flex-direction: column;
}

#footer .information .logo-wrapper .logo {
  display: flex;
  flex-direction: column;
  max-width: 140px;
}

#footer .information .logo-wrapper .logo .image {
  display: flex;
}

#footer .information .section {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}

#footer .information .section .title {
  color: #fff;
  font-weight: 700;
}

#footer .information .section .content {
  display: flex;
  flex-direction: column;
  row-gap: 4px;
  align-items: flex-start;
}

#footer .information .section .content a {
  display: flex;
  flex-direction: column;
}

#footer .information .section .content .social-media {
  margin-top: 15px;
  display: flex;
  flex-flow: row nowrap;
  column-gap: 14px;
}

#footer .divider {
  display: flex;
  flex-direction: column;
  height: 1px;
  background-color: #fff;
}

#footer .copyright-policies {
  display: flex;
  flex-direction: column;
  gap: 16px 10px;
  justify-content: space-between;
  padding: 32px 0 80px;
}

#footer .copyright-policies .copyright {
  color: #fff;
}

/** Responsive */

/** 768px and up */
@media (min-width: 768px) {
  #header .header-wrapper .hamburger {
    display: none;
  }

  #header .header-wrapper .navigation {
    position: relative;
    flex-flow: row nowrap;
    column-gap: 18px;
    opacity: 1;
    visibility: visible;
    background-color: transparent;
    backdrop-filter: unset;
    z-index: auto;
  }

  #header .header-wrapper .navigation a {
    font-size: inherit;
    font-weight: inherit;
  }

  #footer .information {
    gap: 0px 80px;
  }

  #footer .information .logo-wrapper {
    flex-basis: auto;
  }

  #footer .copyright-policies {
    flex-direction: row;
  }
}

/** 1024px and up */
@media (min-width: 1024px) {
  #footer .information {
    gap: 0px 120px;
  }
}

/** 1280px and up */
@media (min-width: 1280px) {}