@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');

@font-face {
    font-family: "neueHaas";
    src: url("../fonts/NeueHaasDisplayRoman.ttf");
  }

  @font-face {
    font-family: "bold";
    src: url("../fonts/NeueHaasDisplayBold.ttf");
  }

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none !important;
}

.bold-title {
    font-family: bold;
  }

body {
    overflow-x: hidden !important;
    font-family: neueHaas !important;
}

:root {
    --colar-50: #FD5F21;
    --colar-150: #F5F8F5;
    --line: #FD5F21;
} 

.text-justify {text-align: justify;}

#checkbox {display: none;}

.toggle {
    position: relative;
    width: 30px;
    height: 30px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition-duration: .5s;
}
  
.bars {
    width: 100%;
    height: 4px;
    background-color: var(--colar-50);
    border-radius: 4px;
}
  
#bar2 {
    transition-duration: .8s;
}
  
#bar1,#bar3 {
    width: 70%;
}
  
#checkbox:checked + .toggle .bars {
    position: absolute;
    transition-duration: .5s;
}

#checkbox:checked + .toggle #bar2 {
    transform: scaleX(0);
    transition-duration: .5s;
}
  
#checkbox:checked + .toggle #bar1 {
    width: 100%;
    transform: rotate(45deg);
    transition-duration: .5s;
}
  
#checkbox:checked + .toggle #bar3 {
    width: 100%;
    transform: rotate(-45deg);
    transition-duration: .5s;
}
  
#checkbox:checked + .toggle {
    transition-duration: .5s;
    transform: rotate(180deg);
}

.nav-link:hover {
    background-color: var(--colar-50);
    color: white !important;
}

.nav-btn {
    background-color: var(--colar-50) !important;
    color: white !important;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease-in-out;
}
.nav-btn:hover {
    opacity: 0.8;
}

.start-banner {
    background-image: url('../img/banner.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 720px;
    display: flex;
    align-items: end;
}

.first-section {
    background-image: url('../img/section-vektor.png');
    background-repeat: no-repeat;
}

.line {
    width: 2px; 
    height: 200px; 
    background-color: var(--line); 
    margin-right: 20px; 
    margin-top: -100px;
}

.text-content {
    width: 50%;
}

.four-section,
.two-section {
    background-color: var(--colar-150);
}

.tree-section {
    background-image: url('../img/section-vektor2.png');
    background-repeat: no-repeat;
    background-position: right center; 
}

.aboutContent {
    width: 75%;
}

.end-section {
    background-image: url("../img/endBanner.png");
    height: 800px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
}
.qr-code {
    max-width: 100px;
}

.store-logo {
    max-width: 150px; 
}

footer {
    background-color: var(--colar-50);
}

.icon {
    width: 50px;
    height: 50px;
}