/* GLOBALS */
html
{
    font-size: 100%;
    box-sizing: border-box;
}

*,
*::before,
*::after
{
    box-sizing: inherit;
}

body
{
    margin: 0;
    padding: 0;
    font-family: Thasadith;
    color: rgba(21,3,1,1);
    background-color: rgba(246,240,235,1);
}

p
{
    line-height: 1.5;
    margin-bottom: 2.25rem;
}

a,
a:visited,
a:hover 
{
  text-decoration: none;
}

h2
{
    margin: 0;
    font-family: "Afacad", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 48px;
}

h2::after
{
    content: '•';
    color: rgba(255,123,49,1);
    font-size: 3.5rem;
    position: absolute;
    margin-left: 0.3rem;
    transform: translateY(7%);
}

.container 
{
    max-width: 90%;
    margin: 0 auto;
}

.flex{
    display: flex;
}

.flex-jc-sb
{
    justify-content: space-between;
}

.flex-jc-c
{
    justify-content: center;
}

.flex-ai-c
{
    align-items: center;
}

.header__toggle > span
{
    display: block;
    width: 40px;
    height: 4px;
    background-color: #C0B8B2;
    transition: all 300ms ease-in-out;
    transform-origin: 3px 1px;
}



.header__toggle > span:not(:last-child)
{
    margin-bottom: 8px;
}

.overlay
{
    opacity: 0;
    position: fixed;
    width: 60vw;
    top: 0px;
    right: 0px;
    bottom: 0px;
    background-color: #F6F0EB;
}

.fog
{
    opacity: 0;
    position: fixed;
    left: 0px;
    top: 0px;
    right: 0px;
    bottom: 0px;
    background-color: #0000009f;
}

.firstSpanOpen
{
    transform: rotate(45deg);
}

.secondSpanOpen
{
    opacity: 0;
}

.secondSpanClosed
{
    opacity: 1;
}

.thirdSpanOpen
{
    transform: rotate(-45deg);
}

.noscroll
{
    overflow: hidden;
}

.open
{
    background-color: #cc6e6e;
}


@media only screen and (max-width: 1199.98px)
{
    *
    {
        font-size: 20px;
    }

    .hide-for-mobile
    {
        display: none;
    }
    
    .container 
    {
        max-width: 90%;
        margin: 0 auto;
    }

    h2
    {
        font-size: 2.25rem;
    }

    h2::after
    {
        font-size: 2.6rem;
        transform: translateY(7%);
    }
}

@media only screen and (min-width: 1200px) 
{
    *
    {
        font-size: 20px;
    }

    .hide-for-desktop
    {
        display: none;
    }


    .container 
    {
        max-width: 90rem;
        margin: 0 auto;
    }

    h2
    {
        font-size: 48px;
    }

    h2::after
    {
        font-size: 3.5rem;
        transform: translateY(7%);
    }
}


/* HEADER */

.header
{
    position: relative;
    background-color: rgba(21,3,1,1);
    z-index: 1;
    box-shadow: 3px 13px 24px -14px rgba(66, 68, 90, 1);
}

nav
{
    position: relative;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.header__logo img
{
    width: 8.75rem;
    height: 5rem;
}

.header__links a
{
    position: relative;
    font-size: 24px;
    font-weight: bold;
    color: #D8D2CB;
    transition: color 300ms ease-in-out;
}

.header__links a:not(:last-child)
{
    margin-right: 55px;
}

.header__links a::before
{
    content: "";
    display: block;
    position: absolute;
    height: 3px;
    left: 0;
    right: 0;
    bottom: -8px;
    border-radius: 10px;
    background: rgba(255,123,49,1);
    opacity: 0;
    transition: opacity 300ms ease-in-out;
}

.header__links a:hover
{
    color: white;
}

.header__links a:hover::before
{
    opacity: 1;
}

.header__menu
{
    display: flex;
    flex-direction: column;
    padding-top: 7rem;
    padding-left: 2rem;
}

.header__menu a
{
    font-family: 'Afacad';
    font-size: 2rem;
    font-weight: 700;
    color: #150301;
    margin-bottom: 4rem;
    width: max-content;

    padding-bottom: 0.3rem;
    background-image: linear-gradient(#FF7C32, #FF7C32);
    background-size: 0% 0.3em;
    background-position-y: 100%;
    background-position-x: 10%;
    background-repeat: no-repeat;
    transition: background-size 0.2s ease-in-out;
    text-decoration: none;
}

.header__menu a:hover,
.header__menu a:focus,
.header__menu a:active
{
    background-size: 100% 0.3em;
}

.header__menu a::before
{
    content: '•';
    color: rgba(255,123,49,1);
    font-size: 2.7rem;
    position: absolute;
    margin-left: 0.2rem;
    transform: translateY(24%);
}

.language-toggle {
    position: relative;
}

.toggle-checkbox {
    display: none;
}

.toggle-label {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.toggle-inner {
    position: relative;
    width: 60px;
    height: 30px;
    background-color: #000;
    border-radius: 30px;
    transition: background-color 0.3s;
}

.toggle-switch {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 24px;
    height: 24px;
    background-color: #333;
    border-radius: 50%;
    transition: left 0.3s;
    z-index: 2;
}

.flag-nav {
    position: relative;
    width: 20px;
    height: 16px;
}

.flag {
    position: absolute;
    width: 18px;
    height: 14px;
}

.flag-left {
    left: 7px;
    top:50%;
    transform: translateY(-50%);
}

.flag-right {
    right: 7px;
    top:50%;
    transform: translateY(-50%);
}

.toggle-checkbox:checked + .toggle-label .toggle-inner .toggle-switch {
    left: 33px;
}


/* HERO */


.hero .container
{
    margin-top: 3rem;
    display: flex;
    align-items: center;
    background-color: rgba(21,3,1,1);
    max-height: 45rem;
    box-shadow: 3px 13px 24px -14px rgba(66, 68, 90, 1);
}

.hero__image
{
    position: relative;
    background-image: url('images/barellswarehouse.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    background-position: center 70%;
    flex: 3;
    order: 2;
}


.hero__text
{
    padding-left: 2.2rem;
    flex: 2;
    order: 1;
    color: rgba(255,255,255,1);
    font-weight: 600;
}

.hero__text h1
{
    font-family: "Afacad", sans-serif;
    font-weight: 700;
    font-style: normal;
    line-height: 1.2;
}

.hero__text h1::after
{
    content: '•';
    color: rgba(255,123,49,1);
    position: absolute;
    margin-left: 0.3rem;
}

@media only screen and (max-width: 455.98px)
{
    .hero__image
    {
        display: none;
    }
    .hero__text
    {

        font-size: 0.875rem;
        min-width: 20rem;
        padding-right: 1rem;

        position: relative;

    }

    .hero .container
    {
        position: relative;
        height: 65rem;
        background-image: url("images/barellswarehouse.png");
        height: 50rem;
        background-size: cover;
        background-repeat: no-repeat;
        background-position: auto 70%;
        
    }
    .hero__text h1
    {
        font-size: 2.25rem;
    }
    
    .hero__text h1::after
    {
        font-size: 2.5rem;
        transform: translateY(9%);
    }
}


@media only screen and (min-width: 456px) and (max-width: 767.98px)
{
    .hero__image
    {
        display: none;
    }
    .hero__text
    {

        font-size: 0.875rem;
        min-width: 20rem;
        padding-right: 1rem;

        position: relative;

    }

    .hero .container
    {
        position: relative;
        background-image: url("images/barellswarehouse.png");
        height: 40rem;
        background-size: cover;
        background-repeat: no-repeat;
        background-position: auto 70%;
        
    }
    .hero__text h1
    {
        font-size: 2.25rem;
    }
    
    .hero__text h1::after
    {
        font-size: 2.5rem;
        transform: translateY(9%);
    }
}

@media only screen and (min-width: 768px) and (max-width: 1199.98px)
{
    .hero .container
    {
        max-height: 40rem;
    }

    .hero__image
    {
        min-height: 40rem;
    }

    .hero__text
    {
        font-size: 0.875rem;
        min-width: 20rem;
    }

    .hero__text h1
    {
        font-size: 2.25rem;
    }
    
    .hero__text h1::after
    {
        font-size: 2.5rem;
        transform: translateY(9%);
    }
}

@media only screen and (min-width: 1200px) 
{
    .hero .container
    {
        max-height: 35rem;
    }

    .hero__image
    {
        min-height: 35rem;
    }
    .hero__text
    {
        font-size: 1rem;
    }

    .hero__text h1
    {
        font-size: 3rem;
    }
    
    .hero__text h1::after
    {
        font-size: 3.5rem;
        transform: translateY(5%);
    }
}

/* FEATURES */

.feature__content
{
    margin-top: 7rem;
    padding-top: 2.3rem;
    padding-bottom: 2.3rem;
    padding-left: 2.2rem;
    padding-right: 2.2rem;
    background-color: #FBF9F5;
    box-shadow: 3px 13px 24px -14px rgba(66, 68, 90, 1);
}


.feature__info p
{
    margin-bottom: 2.7rem;
}

.feature__grid
{
    display: flex;
    flex-wrap: wrap;
    text-align: center;
    justify-content: center;
}

.feature__item
{
    padding: 1rem;
    flex: 1;
    background-color: #f5ece8;
    border-radius: 10px;
    text-align: center;
    box-shadow: 3px 13px 24px -14px rgba(66, 68, 90, 1);
}

.feature__icon
{
    margin-bottom: 1.5rem;
}

.feature__title
{
    font-family: "Afacad", sans-serif;
    font-weight: 500;
    font-style: normal;
    min-height: 3.5rem;
    align-content: center;
}

.feature__description2::before
{
    content: "";
    font-size: 3.7rem;
    display:flex;
    flex-direction: column;
    width: 10px;
    height: 5px;
    left: 0;
    right: 0;
    bottom: 25px;
    border-radius: 10px;
    background: rgba(255,123,49,1);
    color: rgba(255,123,49,1);

}

.feature__description
{
    margin-top: 1rem;
    line-height: 1.5;
}

.line {
    display: flex;
    align-items: center;
}

.line::after {
    content: '';
    flex: 1;
    height: 5px; 
    background-color: rgba(255,123,49,1);
    border-radius: 4px; 
}

.line-circle {
    width: 5px;
    height: 5px;
    background-color: rgba(255,123,49,1);
    border-radius: 50%;
    margin-right: 8px; 
}

.feature__pramen
{
    margin-top: 7rem;
    padding-top: 2.3rem;
    padding-bottom: 2.3rem;
    padding-left: 2.2rem;
    padding-right: 2.2rem;
    background-color: #f5ece8;
    border-radius: 10px;
    box-shadow: 3px 13px 24px -14px rgba(66, 68, 90, 1);
}

.pramen__bottle
{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
}

.pramen__firstText
{
    flex: 1 1 500px;
    padding-right: 2rem;
    text-align: justify;
    
}

.pramen__firstText h3
{
    color: #FF7C32;
    font-family: 'Afacad', sans-serif;
    font-size: 2rem;
    text-align: left;
}

.pramen__firstImage
{
    flex: 1 1 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    
}

.pramen__firstImage img
 {
    max-width: 100%;
    height: auto;
    max-height: 100%;
    border-radius: 30px;
    box-shadow: 3px 13px 24px -14px rgba(66, 68, 90, 1);
}

.pramen__can
{
    grid-template-columns: 0.4fr 1fr;
    grid-template-rows: 1fr;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    margin-top: 5rem;
}

.pramen__canBG
{
    background-image: url("images/can_bg.png");
    background-size: cover;
    background-position: center;
    position: relative;
    width: 100%;
    height: 500px;

    border-radius: 30px;
    box-shadow: 3px 13px 24px -14px rgba(66, 68, 90, 1);
}

.pramen__canText
{
    position: absolute;
    
    left: 55%;
    transform: translateX(-50%);
    color: white;
    padding: 10px;
    border-radius: 5px;
    text-align: left;
    max-width: 80%;
}

@media only screen and (max-width: 767.98px)
{
    .feature__pramen
    {
        margin-top: 4rem;
        padding-top: 2.3rem;
        padding-bottom: 2.3rem;
        padding-left: 0;
        padding-right: 0;
        background-color: #FBF9F5;
        border-radius: 10px;
        box-shadow: 0 0 0 0 rgba(66, 68, 90, 1);
    }

    .pramen__canBG
    {
        background-image: url("images/can_small.png");
        height: 90rem;
        background-position: 2% -20%;
    }

    .line
    {
        margin-top: 0;
    }

    .feature__item
    {   margin: 2rem;
        max-width: 18rem;
    } 

    .feature__grid > div 
    {
        display: flex; 
        flex-basis: calc(50% - 40px);  
        justify-content: center;
        flex-direction: column;
    }
    .feature__grid > div > div 
    {
        display: flex;
        justify-content: center;
        flex-direction: row;
    }

    .pramen__firstImage
    {
        order: 1;
    }


    .pramen__firstText
    {
        order: 2;
    }

    .pramen__canText
    {
        position: absolute;
        color: white;
        text-align: center;
        padding: 0.8rem;
        max-width: 100%;
        left: 0%;
        transform: translateX(0%);
    }

    .pramen__canText li
    {
        text-align: left;
    }
}

@media only screen and (min-width: 768px) and (max-width: 1199.98px)
{
    .line
    {
        margin-top: 0;
    }

    .feature__item
    {   margin: 2rem;
        max-width: 18rem;
    } 

    .feature__grid > div 
    {
        display: flex; 
        flex-basis: calc(50% - 40px);  
        justify-content: center;
        flex-direction: column;
    }
    .feature__grid > div > div 
    {
        display: flex;
        justify-content: center;
        flex-direction: row;
    }

    .pramen__firstImage
    {
        order: 1;
    }


    .pramen__firstText
    {
        margin-top: 4rem;
        padding: 0;
        order: 2;
    }

    .pramen__canBG
    {
        background-image: url("images/can_small.png");
        height: 60rem;
        background-position: 10%;
    }

    .pramen__canText
    {
        position: absolute;
        color: white;
        text-align: left;
        max-width: 100%;
        left: 0%;
        padding:1rem;
        transform: translateX(0%);
    }
}

@media only screen and (min-width: 1200px)
{
    .feature__item:not(:last-child)
    {
        margin-right: 7rem;
    } 

    .line
    {
        margin-top: 1rem;
    }
    
    .feature__item
    {
        max-width: 15rem;
    }
}


/* ABOUT */

.about .container
{
    display: flex;
    margin-top: 7rem;
    align-items: center;
}

.about__image
{
    position: relative;
    background-image: url('images/about.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    min-height: 35rem;
    max-width: 35rem;
    flex: 1;
    order: 1;
    box-shadow: 3px 13px 24px -14px rgba(66, 68, 90, 1);
}

.about__text
{
    padding-left: 7rem;
    flex: 1;
    order: 1;
}

@media only screen and (max-width: 767.98px)
{
    .about .container
    {
        flex-direction: column;
    }
    .about__image
    {
        position: relative;
        background-image: url('images/about.png');
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center center;
        min-height: 25rem;
        margin-top: 4rem;
        width: 100%;
        flex: 1;
        order: 2;
        box-shadow: 3px 13px 24px -14px rgba(66, 68, 90, 1);
    }

    .about__text
    {
        padding-left: 2.2rem;
        padding-right: 2.2rem;
    }
}

@media only screen and (min-width: 768px) and (max-width: 1199.98px)
{
    .about__image
    {
        position: relative;
        background-image: url('images/about.png');
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center center;
        min-height: 25rem;
        width: 30vw;
        box-shadow: 3px 13px 24px -14px rgba(66, 68, 90, 1);
    }
}

/* FOOTER */

.footer
{
    position: relative;
    margin-top: 7rem;
    background-color:rgba(21,3,1,1);
    min-height: 55rem;
}

.footer__logo
{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.footer__logo img
{
    opacity: 10%;
}

.footer h2
{
    color: white;
}

.footer__container
{
    text-align: center;
    color: #D8D2CB;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    align-items: center;
}


.form__head p
{
    margin: 0;
    align-self: flex-end;
}

input, textarea 
{
    width: 100%;
    padding: 0.75rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255,123,49,1);
    border-radius: 4px;
    background-color: rgba(246,240,235,1);
    color: rgba(21,3,1,1);
    font-size: 1rem;
    font-family: Thasadith;
    font-weight: bold;
}

input::placeholder, textarea::placeholder 
{
    color: rgb(92, 90, 90);
    font-family: Thasadith;
    font-weight: 600;

}

textarea 
{
    resize: vertical;
    max-height: 200px;
     
}

button 
{
    width: 100px;
    padding: 0.75rem;
    border: none;
    border-radius: 4px;
    background-color: rgba(255,123,49,1);
    color: #fff;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover 
{
    background-color: #cc6e6e;
}

.checkbox-container 
{
    display: flex;
    font-family: Thasadith;
    font-size: 0.8rem;
    margin-bottom: 2rem;
}

#consent
{
    width: 0.8rem;
    height: 0.8rem;
    margin: 0;
}

#consent__label
{
    font-size: 0.9rem;
    text-align: left;
    align-self: flex-start;
    padding-left: 0.5rem;
}


@media only screen and (max-width: 1199.98px)
{
    .footer
    {
        min-height: 100rem;
        
    }

    .footer__logo img
    {
        width: 95vw;
        opacity: 10%;
    }
    
    .footer__container
    {
        display: flex;
        flex-direction: column;
        padding-bottom: 10rem;
    }

    .footer__head
    {
        order: 1;
        align-self: center;
        height: 8rem;
        margin-top: 2rem;
    }
    
    .footer__textHead
    {  
        order: 5;
        margin-top: 5rem;
    }
    .footer__text
    {  
        order: 6;
        text-align: justify;
    }
    
    .footer__form
    {
        order: 3;
    }

    #responseMessage
    {
        order: 4;
        margin-top: 4rem;
        display: none;
    }
    
    .form__head
    {
        padding-left: 1rem;
        padding-right: 1rem;
        order: 2;
        margin-bottom: 2rem;
        align-self: flex-end;
    }
    
    .footer__text p
    {
        font-size: 1.2rem;
    }
    
    .footer__textHead h3
    {
        font-family: 'Afacad', sans-serif;
        font-weight: 400;
        font-style: normal;
        font-size: 1.8rem;
    }
    
}

@media only screen and (min-width: 1200px) 
{
    .footer__container
    {
        display: grid;
        grid-template-columns: 1fr minmax(10rem, 1fr);
        grid-template-rows: auto 0.5fr 1.5fr auto;
        column-gap: 2rem;
    }
    .footer__head
    {
        grid-area: 1 / 1 / 1 / 3;
        margin-bottom: 2rem;
    }
    
    .footer__textHead
    {  
        grid-area: 2 / 1 / 3 / 2;
        align-self: flex-end;
    }

    .footer__text
    {  
        grid-area: 3 / 1 / 4 / 2;
        align-self: flex-start;
    }
    
    .footer__form
    {
        padding: 1rem;
        grid-area: 3 / 2 / 3 / 3;
    }
    
    .form__head
    {
        padding-left: 1rem;
        padding-right: 1rem;
        grid-area: 2 / 2 / 3 / 3;
        margin: 0;
        align-self: flex-end;
    }

    #responseMessage
    {
        grid-area: 4 / 2 / 4 / 4;
        display: none;
    }
    
    .footer__text p
    {
        font-size: 1.3rem;
    }
    
    .footer__textHead h3
    {
        font-family: 'Afacad', sans-serif;
        font-weight: 400;
        font-style: normal;
        font-size: 1.8rem;
    }
}

#responseMessage
{
    display: none;
}

.has-fade {
    visibility: hidden;
  }
  
  @keyframes fade-in {
    from {
      visibility: hidden;
      opacity: 0;
    }
    1% {
      visibility: visible;
      opacity: 0;
    }
    to {
      visibility: visible;
      opacity: 1;
    }
  }
  .fade-in {
    animation: fade-in 200ms ease-in-out forwards;
  }
  
  @keyframes fade-out {
    from {
      visibility: visible;
      opacity: 1;
    }
    99% {
      visibility: visible;
      opacity: 0;
    }
    to {
      visibility: hidden;
      opacity: 0;
    }
  }
  .fade-out {
    animation: fade-out 200ms ease-in-out forwards;
  }

/* INFO */
.info
{
    overflow: hidden;
}

.info__container
{
    position: fixed;
    z-index: 300;
    background-color: white;
    border: solid 2px #FF7C32;
    height: auto;
    
    padding: 2rem;
    width: 90vw;
    top: 0%;
    left: 50%;
    transform: translateX(-50%);
    overflow: auto;
}

.info__close
{
    float: right;
}

.info .fog
{
    z-index: 2;
}

.info__text
{
    overflow: auto;
}

.info__text p
{
    font-size: 12px;
}

.info__text b
{
    font-size: 12px;
}

.info__close > span
{
    display: block;
    text-align: right;
    transform: rotate(-45deg);
    width: 25px;
    height: 4px;
    background-color: #C0B8B2;
    transition: all 300ms ease-in-out;
    transform-origin: 4px 2px;
    
}

.info__close > span:not(:last-child)
{
    margin-bottom: 8px;
    transform: rotate(45deg);
    background-color: #C0B8B2;
}

.info__close:hover > span
{
    background-color: #FF7C32;
}

@media only screen and (min-width: 1200px)
{
    .info__container
    {
        height: auto;
        width: 70vw;
    }

    .info__text p
    {
        font-size: 20px;
    }

    .info__text b
    {
        font-size: 20px;
    }

    .info__account
    {
        column-count: 2;
    }

    .info__account p
    {
        margin-top: 0;
    }

    .info__container
    {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
}

/* AGE GATE */
.age-gate {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("images/AgeGate.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 30%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.age-gate__content {
    background: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

.age-gate__question {
    margin-bottom: 20px;
    font-size: 18px;
}

.age-gate__button {
    margin: 5px;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
}