*,
*::before,
*::after {
    box-sizing: border-box;
}

* {
    margin: 0;
    padding: 0;
    font: inherit;
}

body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
    margin-block-end: 0;
}

ul[role="list"],
ol[role="list"] {
    list-style: none;
}

html:focus-within {
    scroll-behavior: smooth;
}

body {
    text-rendering: optimizeSpeed;
    line-height: 1.5;
}

a:not([class]) {
    text-decoration-skip-ink: auto;
}

img,
picture {
    max-width: 100%;
    display: block;
}

input,
button,
textarea,
select {
    font: inherit;
}

@font-face {
    font-family: "unu";
    src: url("/fonts/Averta-Black.otf");
}

@font-face {
    font-family: "doi";
    src: url("/fonts/Averta-Bold.otf");
}

@font-face {
    font-family: "trei";
    src: url("/fonts/Averta-Light.otf");
}

@font-face {
    font-family: "patru";
    src: url("/fonts/Averta-Regular.otf");
}

@font-face {
    font-family: "cinci";
    src: url("/fonts/Averta-Semibold.otf");
}

:root {
    --font-unu: "unu", sans-serif;
    --font-doi: "doi", sans-serif;
    --font-trei: "trei", sans-serif;
    --font-patru: "patru", sans-serif;
    --font-cinci: "cinci", sans-serif;
}

.bold-text {
    font-family: var(--font-unu);
}

.nav-link {
    font-family: var(--font-trei);
}

@media (prefers-reduced-motion: reduce) {
    html:focus-within {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,500;1,400&display=swap");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 62.5%;
    font-family: "Roboto", sans-serif;
}

li {
    list-style: none;
}

a {
    text-decoration: none;
}

.customize-text p {
    font-family: var(--font-cinci);
}

.navbar {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 1rem 1rem;
    height:55px;
}

.nav-logo {
    display: flex;
    gap: 3rem;
    justify-content: center;
    align-items: center;
}

.logo-kaufland {
    max-width: 80px;
    width: 100%;
}

.hamburger {
    display: none;
    cursor: pointer;
    z-index: 100;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    transition: all 0.3s ease-in-out;
    background-color: white;
}

.nav-menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item {
    margin-left: 2.75rem;
}

.nav-link {
    font-size: 1.75rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
}

.nav-link:hover {
    color: orange;
}

.logo-carpathian {
    width: 100%;
    max-width: 150px;
}

.wrapp {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.asculta--instinctul {
    display: flex;
    flex-direction: column;
    width: 80%;
    justify-content: center;
    align-items: center;
}
.text_acasa {
    width: 95%;
    max-width: 600px;
}

body {
    background-image: url("/images/bg_acsa.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-color: #073f32;
}

.info--container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 3rem;
    margin-top: 100px;
}

.cumpara,
.inscrie {
    width: 200px;
    cursor: pointer;
}

.customize-text {
    padding: 1em;
    background-color: #ab8a6d;
    width: 90%;
    border-top: 4px solid #6b4b3c;
    border-bottom: 4px solid #6b4b3c;
    max-width: 400px;
    color: white;
}

.customize-text p {
    text-align: center;
    font-size: 1.5rem;
}

.sticla {
    position: relative;
    bottom: 0%;
    left: 0%;
    width: 30%;
    max-width: 800px;
    margin: 0 auto;
}
.nav-logo {
    margin-top: 100px;
}
.row {
    display: flex;
}
.text_acasa {
    margin-bottom: 75px;
}


@media only screen and (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0%;
        flex-direction: column;
        background-color: #2e2629;
        width: 100%;
        border-radius: 10px;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        margin: 2.5rem 0;
    }

    .hamburger {
        display: block;
    }

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

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

@media (min-width: 1000px) {
    .nav-logo {
        position: absolute;
        top: 25px;
        left: 25px;
    }
    .wrapp {
        justify-content: space-evenly;
    }

    .row {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: row;
    }
    .nav-item {
        margin-right: 3rem;
    }
    .wrapp {
        flex-direction: row;
        justify-content: space-around;
        gap: 0;
        position: absolute;
        bottom: 0;
        right: 0;
        margin: 0 auto;
        width: 100%;
        padding: 20px;
        height: 90vh;
    }

    .customize-text {
        max-width: 500px;
    }
    .cumpara,
    .inscrie {
        width: 200px;
    }
    .asculta--instinctul {
        width: auto;
        width: 100%;
        max-width: 350px;
    }
    .customize-text p {
        font-size: 1.5rem;
    }
    /* .info--container {
        margin-top: 125px;
    } */
    .text_acasa {
        width: 90%;
    }
    .voucher {
        width: 70%;
    }
    .experienta_completa {
        width: 70%;
    }
    .info--container {
        margin-right: 200px;
    }
}

@media (min-width: 1280px) {
    .nav-logo {
        gap: 7rem;
    }
    .sticle {
        width: 100%;
    }

    .wrapp {
        justify-content: space-between;
    }
    .asculta--instinctul {
        max-width: 325px;
    }
}

@media (min-width: 1360px) {
    .text_acasa {
        width: 100%;
    }
}

@media (min-width: 1400px) {
    .customize-text {
        max-width: 680px;
        width: 95%;
    }
    .customize-text p {
        font-size: 2rem;
    }
    .cumpara,
    .inscrie {
        width: 300px;
    }
    .asculta--instinctul {
        max-width: 400px;
    }
    .wrapp {
        justify-content: center;
        gap: 10rem;
    }
    .text_acasa {
        max-width: 700px;
    }
    .instinctul {
        width: 90%;
    }
}

@media (min-width: 1500px) {
    .asculta--instinctul {
        max-width: 435px;
    }
}
@media (min-width: 1900px) {
    .nav-item {
        margin-left: 2.75rem;
    }
    .nav-link {
        font-size: 2.25rem;
    }
    .customize-text {
        max-width: 900px;
    }
    .customize-text p {
        font-size: 3rem;
    }
    .cumpara,
    .inscrie {
        width: 400px;
    }
    .logo-carpathian {
        max-width: 150px;
    }
    .logo-kaufland {
        max-width: 125px;
    }
    .asculta--instinctul {
        max-width: 600px;
    }
    .text_acasa {
        max-width: 900px;
    }
}

@media (min-width: 2500px) {
    .customize-text p {
        font-size: 4rem;
    }
    .customize-text {
        max-width: 1000px;
    }
}

#main.bg2 {
    background-image: url("/images/bg_acsa.png");   
}
body {
    background-image: url("/images/bg_acsa.png");
}

.header {
    max-height:75px;
}






.wrapper_regulament{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 50%;
    height: 70vh;
    margin:0 auto;
}

.regulament-btn,
.btn-general {
    display: inline-block;
    background-color: #96262c;
    color: white;
    padding: 4px 20px;
    text-decoration: none;
    border-radius: 10px;
    font-weight: bold;
    text-align: center;
    box-sizing: border-box;
    text-transform: uppercase;
    font-size: 12px;
    /* height: 50px; */
    line-height: 18px;
    border: 5px solid transparent;
    border-image-slice: 1;
}
.wrapper_regulament .regulament-btn {
    position:relative;
    bottom:60px;
}

.wrapper-castigatori {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 50%;
    height: 70vh;
    margin:0 auto;
}



@media (min-width: 1024px) {
    #main {
        background-image: url("/images/bg_acsa.png");
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        height: 100vh;
        width: auto;
    }
    .sticla {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        width: 10%;
    }
    .nav-logo {
        margin-top: 60px;
    }
    .text_acasa {
        width: 45%;
    }
}

@media (max-width: 800px) {
    .instinctul,
    .sticle,
    .voucher,
    .experienta_completa {
        width: 95%;
        max-width: 600px;
    }
}

@media (max-width: 999px) {
    .nav-logo {
        margin-top: 0;
    }
    .info--container {
        margin: 50px 0px 50px 0px;
    }
    .sticle {
        display: none;
    }
    .nav-logo {
        margin-bottom: 50px;
    }
    .savureaza {
        padding-bottom: 35px;
    }
    .premii_row {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        width: 50%;
        gap: 3rem;
    }
    .consuma_responsabil {
        margin: 0 auto;
        width: 200px;
    }
    .wrapp {
        margin-bottom:30px;
    }
}

@media (min-width: 1000px) {
    .premiul_1,
    .premiul_2,
    .premiul_3 {
        display: none;
    }
    .consuma_responsabil {
        /* position: absolute; */
        bottom: 0;
        left: 0;
        width: auto;
        margin: 0 auto;
        padding: 10px;
        max-height:30px;
    }
}

@media (min-width: 760px) and (max-width: 1023px) {
    .logo-carpathian {
        max-width: 100px;
    }
    .logo-kaufland {
        max-width: 105px;
    }
    .inscrie {
        width: 250px;
    }
    .sticla {
        width: 18%;
    }
}

@media (min-width: 1200px) {
    .wrapp {
        justify-content: space-between;
    }
    .text_acasa {
        width: 75%;
    }
    .sticle {
        width: 100%;
    }
    #main {
        background-size: 100% 100%;
    }
    .nav-logo {
        margin-top: 0px;
    }
    .asculta--instinctul {
        max-width: 500px;
    }
    .text_acasa {
        width: 80%;
    }
    .inscrie {
        width: 300px;
    }
}

@media (min-width: 1900px) {
    .asculta--instinctul {
        max-width: 800px;
    }
    .text_acasa {
        width: 100%;
    }
    .sticla {
        width: 12%;
    }
}

