/* ===============================
   -- Modern Mobile-First Reset
================================== */

/* -- Box sizing & core elements -- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* -- Core html & body -- */
html {
    line-height: 1.5;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    scroll-behavior: smooth;
    background: #fff;
    color: #111;
}

/* -- Anti-aliasing -- */
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    min-height: 100%;
}

/* -- Lists -- */
ul,
ol {
    list-style: none;
}

/* -- Links -- */
a {
    text-decoration: none;
    color: inherit;
}

a:hover {
    color: #0073aa;
}

/* -- Images, video, svg, canvas -- */
img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
    height: auto;
}

/* -- HTML5 elements -- */
main,
section,
article,
aside,
header,
footer,
nav,
figure,
figcaption,
details,
summary,
dialog,
fieldset {
    display: block;
}

/* -- Form elements -- */
input,
button,
textarea,
select {
    font: inherit;
    border: none;
    background: none;
    color: inherit;
    outline: none;
}

button {
    cursor: pointer;
}

/* -- Headings weight -- */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: inherit;
    line-height: 1.2;
}

/* -- Tables -- */
table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* -- Accessibility: visually hidden -- */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
    border: 0;
}

/* -- Smooth scrolling -- */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
        scroll-behavior: auto !important;
    }
}
.header__nav {
    display: none;
}

.nm-hidden {
    visibility: hidden;
    position: absolute; 
}

.nm-show { 
    visibility: visible; 
    width: 100vw; 
    height: 100vh; 
    background: red; 
    position: absolute;
    top: 0;
    left: 0;
    z-index: 100;
}




.hamburger .line{
  width: 50px;
  height: 5px;
  background-color: #ecf0f1;
  display: block;
  margin: 8px auto;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.hamburger:hover{
  cursor: pointer;
}



.hamburger.is-active{
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
}

.hamburger.is-active .line:nth-child(2){
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
}

.hamburger .line:nth-child(2){
  -webkit-transition-delay: 0.3s;
  -o-transition-delay: 0.3s;
  transition-delay: 0.3s;
}


.hamburger.is-active .line:nth-child(2){
  opacity: 0;
}

.hamburger.is-active .line:nth-child(1),
.hamburger.is-active .line:nth-child(3){
  width: 35px;
  -webkit-transform-origin: right;
  -moz-transform-origin: right;
  -ms-transform-origin: right;
  -o-transform-origin: right;
  transform-origin: right;
}

.hamburger.is-active .line:nth-child(1){
  -webkit-transform: translateY(15px) rotate(45deg);
  -ms-transform: translateY(15px) rotate(45deg);
  -o-transform: translateY(15px) rotate(45deg);
  transform: translateY(15px) rotate(45deg);
}

.hamburger.is-active .line:nth-child(3){
  -webkit-transform: translateY(-15px) rotate(-45deg);
  -ms-transform: translateY(-15px) rotate(-45deg);
  -o-transform: translateY(-15px) rotate(-45deg);
  transform: translateY(-15px) rotate(-45deg);
}

















.nav-trigger__link {
    position: relative;
    z-index: 9999;
    cursor: pointer;
}
.nav-trigger__line {
    position: relative;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.nav-trigger__line, 
.nav-trigger__line::before, 
.nav-trigger__line::after {
    display: block;
    width: 30px;
    height: 3px;
    background-color: green;
    outline: 1px solid transparent;
    transition-property: background-color, transform;
    transition-duration: 0.3s;
}
.nav-trigger__line::before,
.nav-trigger__line::after {
    position: absolute;
    content: "";
}
.nav-trigger__line::before { top: -9px; }
.nav-trigger__line::after { top: 9px; }

.burger.clicked span { background-color: transparent; }
.burger.clicked span::before {transform: translateY(9px) rotate(45deg);}
.burger.clicked span::after {transform: translateY(-9px) rotate(-45deg);}
.burger.clicked span:before, 
.burger.clicked span:after { background-color: var(--clr-dark-01); }






#nav-mobile {
    padding: 20px;
}

#nav-mobile li ul{
    margin-left:-15px;
    padding-top: 10px;
}

#nav-mobile li {
    list-style-type: none;
    padding-bottom: 10px;
    font-size: 1.5rem;
}
    
@media (min-width:800px){
    #trigger {
        display:none;
    }
}









.nav-toggle__content {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    grid-area: mainbar;
}


:root {

    /* -- Colors
    ------------------------------- */
    --bg-white: #fff;
    --bg-black: #000;
    --bg-gray-50: #F9FAFB;
    --bg-gray-400: #9CA3AF;
    --bg-gray-800: #1F2937;
    --bg-gray-900: #111827;
    --bg-red-600: #DC2626;
    --bg-blue-600: #2563EB;

    --txt-white: #fff;
    --txt-gray-50: #F9FAFB;
    --txt-gray-900: #111827;

    --clr-gray-800: #1F2937;
    --clr-id: #00CBFF;

    --text-base: 16px;
    --text-xl: 20px;
    --text-3xl: 30px;

    /* -- Border
    ------------------------------- */
    --border-gray-700: #374151;


    /* -- Typography
    ------------------------------- */

    --ff-heading: "Arimo", sans-serif;
    --ff-body: "Open Sans", sans-serif;

    /* -- Font Size: Headings
    ------------------------------- */
    --fs-h1: clamp(2.75rem, 4vw + 1rem, 3.25rem);

}



body {
    background-color: var(--bg-gray-50);
    color: var(--txt-gray-900);
    font-family: var(--ff-body);
    font-weight: 400;
    letter-spacing: .005em;
    line-height: 1.5;
    font-size: 1.15rem;
}

#wrapper {
    width: 100%;
    max-width: 2560px;
    margin-inline: auto;
    position: relative;
}

#header {
    position: fixed;
    width: 100%;
    height: 120px;
    background-color: var(--bg-gray-50);
    border-bottom: 1px solid var(--bg-gray-400);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

#header .inside {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding-inline: 20px;
}

/* Logo */
.header__logo-img {
    width: 280px;
}









