@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

section{
    position: relative;
    width: 100%;
    min-height: 100vh;
    padding: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-image: url(../img/bg_beer.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;
    background-size: cover;
}

section .circle{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #FFC024;
    clip-path: circle(70% at right -20%);
}

header{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 40px 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo{
    position: relative;
    max-width: 150px;
}

header .navigation{
    position: relative;
    display: flex;
}

header .navigation li{
    list-style: none;
}

header .navigation li a{
    display: inline-block;
    color: #7e5200;
    font-weight: 500;
    text-decoration: none;
    margin-left: 40px;
}

header .navigation li a:hover{
    display: inline-block;
    color: #ED0B2C;
    font-weight: 500;
    text-decoration: none;
    margin-left: 40px;
}

.content{
    position: relative;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.content .textbox{
    position: relative;
    max-width: 600px;
    margin-left: 20px;
}

.content .textbox h2{
    color: #fff;
    font-size: 3rem;
    margin-bottom: 15px;
    line-height: 1.4em;
    font-weight: 700;
}

.content .textbox p{
    color: #fff;
}

.content .textbox a{
    display: inline-block;
    margin-top: 20px;
    padding: 8px 20px;
    background: #FFC024;
    color: #7e5200;
    border-radius: 40px;
    font-weight: 500;
    letter-spacing: 1px;
    text-decoration: none;
}

.content .textbox a:hover{
    display: inline-block;
    margin-top: 20px;
    padding: 8px 20px;
    background: #f39e00;
    color: #fff;
    border-radius: 40px;
    font-weight: 500;
    letter-spacing: 1px;
    text-decoration: none;
}

.social{
    position: absolute;
    bottom: 70px;
    left: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.social li{
    list-style: none;
}

.social li i{
    display: inline-block;
    margin-left: 15px;
    background: #000;
    color: #fff;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transition: 0.2s ease-in-out;
}

.social li i:hover{
    background: #FFC024;
    color: #7e5200;
    transform: translateY(-10px);
}

/* SLIDE WIPER */
.swiper-container{
    width: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
  }

.swiper-slide{
    background-position: center;
    background-size: cover;
    width: 150px;
    height: 320px;
    display: flex;
    justify-content: center;
  }

.content .imgbox{
    width: 500px;
    display: flex;
    justify-content: flex-end;
}

.swiper-slide img{
    display: block;
    width: 100%;
  }

.content .imgbox img{
    max-width: 150px;
}

.swiper-slide img{
    position: absolute;
    bottom: 0;
    max-height: 100%;
}

.swiper-container .swiper-slide-shadow-left,
.swiper-container .swiper-slide-shadow-right{
    background-image: none;
}

@media (max-width: 991px){
    
    header{
        padding: 40px;
    }
    
    section{
        padding: 150px 40px;
    }

    .social{
        left: 40px;
    }

    .content{
        flex-direction: column;
    }

    .content .textbox,
    .content .imgbox{
        max-width: 100%;
    }

    .swiper-slide{
        height: 300px;
    }

    header .navigation{
        display: none;
    }

    header .navigation.active{
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: #FFC024;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        z-index: 10;
    }

    header .navigation li a{
        margin: 10px 0;
        font-size: 1.5em;
        font-weight: 300;
    }

    header .navigation li a:hover{
        display: inline-block;
        color: #ED0B2C;
        font-weight: 500;
        text-decoration: none;
        margin-left: 0px;
        transition: 0.2s;
    }

    .toggle{
        position: relative;
        width: 30px;
        height: 30px;
        background: url(../img/menu.png);
        background-size: 30px;
        background-repeat: no-repeat;
        background-position: center;
        cursor: pointer;
        z-index: 10000;
    }

    .toggle.active{
        background: url(../img/close.png);
        background-size: 25px;
        background-repeat: no-repeat;
        background-position: center;
        position: fixed;
        right: 40px
    }
}