/*=== web fonts ===*/

@font-face {
    font-family: "History-of-Waw";
    src: url("../webfonts/History-of-Wawa.ttf");
    font-weight: 400;
}

@font-face {
    font-family: "Fredoka";
    src: url("../webfonts/Fredoka-SemiBold.ttf");
    font-weight: 600;
}

:root {
    --primary-font: "History-of-Waw";
    --secondary-font: "Fredoka";
    --bg-black: #000;
    --bg-white: #fff;
    --white: #fff;
    --black: #000;
}

/*=== Basic css ===*/
html,
body,
header,
footer,
main,
nav,
section,
div,
menu,
span,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
strong,
i,
ol,
ul,
li,
form,
label,
button {
    margin: 0;
    padding: 0;
}

p {
    margin: 0;
}

ol,
ul {
    list-style: none;
}

button:focus,
a:focus,
input:focus,
textarea:focus {
    outline: none;
}

a {
    text-decoration: none;
    display: inline-block;
    transition: 0.2s all ease;
    -webkit-transition: 0.2s all ease;
    -moz-transition: 0.2s all ease;
}

a:visited,
a:hover,
a:active {
    text-decoration: none;
}

img {
    max-width: 100%;
}

body {	
    font-family: var(--primary-font);
    font-size: 16px;
    font-weight: 400;    
    background: #091D05;
    color: var(--white);
}

.scrolltotop {
    width: 40px;
    height: 40px;
    line-height: 34px;
    border-radius: 50%;
    background: #091D05; 
    text-align: center; 
    font-size: 16px;
    color: var(--white);
    position: fixed;
    right: 30px;
    bottom: 25px;
    display: none;
    animation: lab_top_up 5s linear infinite;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
    border: 2px solid var#091D05;
    z-index: 8888;    
}

.scrolltotop i {
    color: var(--white);
}

@keyframes lab_top_up {
    0% {
        transform: translateY(-15px);
    }
    50% {
        transform: translateY(0px);
    }
    100% {
        transform: translateY(-15px);
    }
}

.pluse,
.pluse2 {
    position: relative;
    top: 10px;
    left: -8px;
    z-index: -1;
}

.pluse::before,
.pluse2::before {
    width: 40px;
    height: 40px;
}

.pluse::after,
.pluse::before,
.pluse2::after,
.pluse2::before {
    background: #091D05; 
    border-radius: 50%;
    left: 50%;
    top: 50%;
    display: block;
    content: '';
    position: absolute;
    top: 2px;
    left: 0;
}

.pluse::after,
.pluse2::after {
    width: 30px;
    height: 30px;
    background: transparent;
    margin-left: -15px;
    margin-top: -15px;
}

.pluse::before {
    -webkit-animation: pluse_animate 2.5s infinite linear;
    animation: pluse_animate 2.5s infinite linear;
}

.pluse2::before {
    -webkit-animation: pluse_animate 3s infinite linear;
    animation: pluse_animate 3s infinite linear; 
}

@keyframes pluse_animate {
    0% {
        opacity: 1;
        -webkit-transform: translate(-50%, -50%) scale(0.3);
        transform: translate(-50%, -50%) scale(0.3);
    }
    100% {
        opacity: 0;
        -webkit-transform: translate(-50%, -50%) scale(2);
        transform: translate(-50%, -50%) scale(2);
    }
}

.container {
    padding-left: 15px;
    padding-right: 15px;
}

.button {
    font-size: 16px; 
    font-weight: 400;
    color: #fff;
    padding: 8px 25px;
    border-radius: 18px;
    background: #3B28AD;
    position: relative;
    z-index: 9;
    overflow: hidden;
}

.button:hover {
    color: #fff;
}

.button:after {
    content: '';
    position: absolute;
    width: 0%;
    height: 100%;
    top: 0;
    left: 50%;
    transform: translateX(-100%);
    background: #000000;
    z-index: -1;
    transition: 0.3s all ease;
    -webkit-transition: 0.3s all ease;
    -moz-transition: 0.3s all ease;
}

.button:before {
    content: '';
    position: absolute;
    width: 0%;
    height: 100%;
    top: 0;
    right: 51%;
    transform: translateX(100%);
    background: #000000;
    z-index: -1;
    transition: 0.3s all ease;
    -webkit-transition: 0.3s all ease;
    -moz-transition: 0.3s all ease;
}

.button:hover:after {
    width: 60%;
}

.button:hover:before {
    width: 60%;
}

/*=== Header area start ===*/

.header-area {
    background-image: url(../images/header-first.jpg);
    background-repeat: no-repeat;
    background-position: center top;
    background-size: contain;
    padding: 30px 0 90px;
}

.header-item img {
    max-width: 100%;
    display: block;
    margin: 0 auto;
}

/*=== main content start ===*/

.main-content {
    overflow: hidden;
}

.youtube-video-area {
    background-image: url(../images/youtube-video-bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 24px 0 390px;
}

.youtube-video-item {
    max-width: 965px;
    margin: 0 auto;
}

.youtube-video-item iframe {
    width: 100%;
    height: 580px;
}

/*=== resipi area start ===*/

.resipi-area {
    background-image: url(../images/resipi-bg.jpg);
    background-repeat: no-repeat;
    background-position: top;
    background-size: cover;
    padding: 0px
}

.resipi-content {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 70px 0 0;
}

.resipi-content .container {
    max-width: 1370px;
}

.resipi-title {
    text-align: center;
    margin-bottom: 215px;
}

.resipi-title img {
    max-width: 100%;
}

.resipi-item {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 20px;
}

.resipi-item-inner {
    position: relative;
    border-radius: 10px;
    z-index: 9;
    background-color: var(--bg-white);
    padding: 7px;
    margin-bottom: 40px;
}

.resipi-item-inner::after {
    content: '';
    position: absolute;
    width: calc(100% - 14px);
    height: calc(100% - 14px);
    top: 7px;
    left: 7px;
    border-radius: 10px;
    background-color: #204911;
    z-index: -1;
}

.resipi-item-image {
    position: relative;
    padding: 42px 50px;
    display: flex;
}

.resipi-item-image div:nth-of-type(1) {
    position: absolute;
    left: 20px;
    bottom: 30px;
}

.resipi-item-image div:nth-of-type(2) {
    margin-left: auto;
}

.resipi-item-image img {
    max-width: 100%;
}

.resipi-item-content ul {
    padding: 0 50px 24px;
}

.resipi-item-content ul li {
    font-family: var(--secondary-font);
    padding: 12px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 20px;
    font-weight: 600;
    color: var(--white);
    border-bottom: 1px solid var(--white);
}

.resipi-item-content ul li:last-of-type {
    border-bottom: none;
}

.resipi-content-button a span {
    width: 386px !important;
    justify-content: center !important;
}

.senarai-area {
    padding-top: 110px;
}

.senarai-content {
    padding-bottom: 130px;
    position: relative;
    z-index: 9;
}

.senarai-title {
    text-align: center;
    margin-bottom: 30px;
    z-index: 8;
}

.senarai-title img {
    max-width: 100%;
}

.senarai-content .favourite-item img {
    width: 100% !important;
}

.senarai-button {
    padding-top: 25px;
}

.senarai-button a {
    font-size: 35px;
    font-weight: 400;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 340px;
    height: 64px;
    border-radius: 16px;
    background-color: #255441;
    margin: 0 auto;
}

.senarai-content-image {
    position: absolute;
    top: -75px;
    left: 0;
    z-index: 1;
}

.senarai-content-image img {
    max-width: 100%;
}

.senarai-content-image-second {
    left: auto;
    right: 0;
}

.kombo-area {
    padding-bottom: 200px;
}

.kombo-item {
    text-align: center;
}

.kombo-item img {
    max-width: 100%;
}

/*=== company logo area start ===*/

.company-logo-area {
    background-color: var(--bg-white);
    padding: 70px 0 30px;
}

.company-logo-item {
    max-width: 1050px;
    margin: 0 auto;
}

.company-logo-item ul {
    display: flex;
    flex-wrap: wrap;
}

.company-logo-item ul li {
    width: 16.666%;
    padding: 0 15px 30px;
}

.company-logo-item ul li a img {
    max-width: 100%;
}
.blog-bottom img {
    position: absolute;
}
.mamak-guy img {
    width: 34%;
    right: 0;
    transform: translatex(18%);
    bottom: 3%;
}
.blog-carousel .blog-item {
    background-color: #fff;
    border-radius: 15px;
    overflow: hidden;
    border: 4px solid #fff;
}
.blog-item h3 {
    color: #214911;
    font-family: var(--secondary-font);
}
.blog-content a {
    font-family: var(--secondary-font);
    color: #215442;
    text-decoration: underline;
    display: block;
}
.blog-content h3 a {
    text-decoration: none;
}
.blog-item .blog-content h3 {
    margin-bottom: 15px;
    font-size: 23px;
    font-weight: 100 !important;
    line-height: 1.45;
}

.blog-item .blog-content {
    padding: 20px;
}
.drinks-frame img {
    width: 50%;
}
.drinks-frame img {
    width: 55%;
    transform: translateX(-22%);
    bottom: 1%;
}
/*=== letupan area start ===*/

.letupan-area {
    background-image: url(../images/letupan-bg1.jpg);
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    padding: 90px 0 1450px;
}

.letupan-title img {
    max-width: 100%;
    display: block;
    margin: 0 auto 20px;
}

.letupan-button {
    text-align: center;
}

.letupan-button a {
    position: relative;
    z-index: 9;
}

.letupan-button a span {
    font-size: 25px;
    font-weight: 400;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    text-align: center;
    padding-right: 20px;
    width: 467px;
    height: 98px;
    background-image: linear-gradient(to bottom, #99e53a, #54cc11);
    border-radius: 60px; 
    text-shadow: 0 3.36px 5.896px #207b02, 0 -2px 1px #207b02
}

.letupan-button a small {
    font-size: 25px;
    display: block;
    width: 350px;
    margin-top: -30px;
}

.letupan-button a img {
    position: absolute;
    width: 140px;
    top: -14px;
    left: -56px;
    z-index: 1;
}

.letupan-button a::before {
    content: '';
    position: absolute;
    width: calc(100% + 8px);
    height: calc(100% + 8px);
    top: 0px;
    left: -4px;
    border-radius: 60px;
    background-image: linear-gradient(to bottom, #0f8300, #0a2805);
    z-index: -1;
}
.owl-carousel .owl-item img {
    width:100%;
}
/*=== blog area start ===*/

.blog-area {
    background-image: url(../images/blog-bg.png);
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    padding: 5% 0 34%;    
    position: relative;
    margin-top:-8%
}

.blog-title {
    padding: 150px 0 30px;
    text-align: center;
}

.blog-title h2 {
    font-size: 70px;
    font-weight: 400;
    color: var(--white);
}

.owl-carousel {
    padding: 0px;
}

.blog-item img {
    width: 100%;
}

.owl-carousel .owl-nav button.owl-next, .owl-carousel .owl-nav button.owl-prev {
    width: 95px;
    height: 95px;
    border-radius: 50%;
    color: transparent;
    background-color: transparent;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.owl-carousel .owl-nav button.owl-prev {
    background-image: url(../images/slider-left.png);
    left: 0;
}
.mamak-guy-2 img {
    right: 0%;
    width: 37%;
    bottom: 0;
    transform: translateY(5%);
}
.drinks-frame-2 img {
    width: 60%;
    bottom: -15%;
}
.owl-carousel .owl-nav button.owl-next {
    background-image: url(../images/slider-right.png);
    right: 0;
}

/*=== celebration area start ===*/

.celebration-area {
    background-image: url(../images/celebration-bg.png);
    padding: 25% 0 720px;
    margin-top: -14%;
    position: relative;
}

/*=== favourite area start ===*/

.favourite-area {
    background-color: #091d05;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center;
    margin-top: 0px;
    position: relative;
}

.favourite-item img {
    max-width: 100%;
    display: block;
    margin: 0 auto;
}

/*=== footer area start ===*/

.footer-area {
    padding: 45px 0;
}

.footer-item p {
    font-size: 16px;
    font-weight: 400;
    color: var(--white);
    text-align: center;
}
.header-item img {        
        width:100%
        
    }
@media screen and (min-width: 1450px) {
    
    
    
    .senarai-content {
        background-size: 100% 100%;
    }

}
