/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
:root {
    --red: #f15a57;
    --yellow: #f7cf0a;
    --blue: #135ba7;
    --teal: #019c86;
    --lilac: #e1dee5;
    --pink: #f7b1be;
    --black: rgb(75 85 99);
}

body {
    font-family: "Poppins";
    overflow-x: hidden;
    font-size: 22px;
}

a {
    color: --var;
    text-decoration: none;
}

a:hover {
    color: #73c5eb;
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Poppins", sans-serif;
    color: var(--black);
}

.text-mct {
    font-family: "Nunito";
    font-size: 15px;
}

.text-red {
    color: var(--red);
}

.text-yellow {
    color: var(--yellow);
}

.text-blue {
    color: var(--blue);
}

.text-teal {
    color: var(--teal);
}

.text-pink {
    color: var(--pink);
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
    animation: rotate 1s infinite;
    height: 50px;
    width: 50px;
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 9999;
}

#preloader:before,
#preloader:after {
    border-radius: 50%;
    content: "";
    display: block;
    height: 20px;
    width: 20px;
}
#preloader:before {
    animation: ball1 1s infinite;
    background-color: var(--red);
    box-shadow: 30px 0 0 var(--blue);
    margin-bottom: 10px;
}
#preloader:after {
    animation: ball2 1s infinite;
    background-color: var(--blue);
    box-shadow: 30px 0 0 var(--blue);
}

@keyframes rotate {
    0% {
        -webkit-transform: rotate(0deg) scale(0.8);
        -moz-transform: rotate(0deg) scale(0.8);
    }
    50% {
        -webkit-transform: rotate(360deg) scale(1.2);
        -moz-transform: rotate(360deg) scale(1.2);
    }
    100% {
        -webkit-transform: rotate(720deg) scale(0.8);
        -moz-transform: rotate(720deg) scale(0.8);
    }
}

@keyframes ball1 {
    0% {
        box-shadow: 30px 0 0 var(--yellow);
    }
    50% {
        box-shadow: 0 0 0 var(--yellow);
        margin-bottom: 0;
        -webkit-transform: translate(15px, 15px);
        -moz-transform: translate(15px, 15px);
    }
    100% {
        box-shadow: 30px 0 0 var(--yellow);
        margin-bottom: 10px;
    }
}

@keyframes ball2 {
    0% {
        box-shadow: 30px 0 0 var(--teal);
    }
    50% {
        box-shadow: 0 0 0 var(--teal);
        margin-top: -20px;
        -webkit-transform: translate(15px, 15px);
        -moz-transform: translate(15px, 15px);
    }
    100% {
        box-shadow: 30px 0 0 var(--teal);
        margin-top: 0;
    }
}
/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 996;
    background: #47b2e4;
    width: 40px;
    height: 40px;
    border-radius: 50px;
    transition: all 0.4s;
}

.back-to-top i {
    font-size: 24px;
    color: #fff;
    line-height: 0;
}

.back-to-top:hover {
    background: #6bc1e9;
    color: #fff;
}

.back-to-top.active {
    visibility: visible;
    opacity: 1;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    transition: all 0.5s;
    z-index: 997;
    padding: 15px 0;
}

#header.header-scrolled,
#header.header-inner-pages {
    background-color: rgba(247, 177, 190, 0.7);
}

#header .logo img {
    max-height: 70px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
    padding: 0;
}

.navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
}

.navbar li {
    position: relative;
}

.navbar a,
.navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0 10px 30px;
    font-size: 15px;
    font-weight: 500;
    color: var(--black);
    white-space: nowrap;
    transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover > a {
    color: var(--red);
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
    color: var(--black);
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: normal;
    transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
    color: var(--black);
}

@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: block;
    }

    .navbar ul {
        display: none;
    }
}

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background-color: rgba(225, 222, 229, 0.9);
    transition: 0.3s;
    z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 15px;
    right: 15px;
}

.navbar-mobile ul {
    display: block;
    position: absolute;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    padding: 10px 0;
    border-radius: 10px;
    background-color: #fff;
    overflow-y: auto;
    transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
    padding: 10px 20px;
    font-size: 15px;
    color: var(--black);
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover > a {
    color: var(--red);
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
    width: 100%;
    height: 100vh;
}

#hero .container {
    padding-top: 72px;
}

#hero h1 {
    margin: 0 0 10px 0;
    font-size: 48px;
    font-weight: 700;
    line-height: 56px;
    color: var(--black);
}

#hero h2 {
    color: var(--black);
    margin-bottom: 30px;
    margin-top: 20px;
    font-size: 24px;
    font-family: "Nunito";
}

#hero .btn-watch-video {
    font-size: 16px;
    display: flex;
    align-items: center;
    transition: 0.5s;
    margin: 0;
    color: var(--lilac);
    line-height: 1;
}

#hero .btn-watch-video:hover {
    color: var(--yellow);
}

#hero .btn-watch-video i {
    line-height: 0;
    color: var(--lilac);
    font-size: 32px;
    transition: 0.3s;
    margin-right: 8px;
}

#hero .btn-watch-video:hover i {
    color: var(--yellow);
}

#hero .animated {
    animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

#hero .animate-one {
    position: absolute;
    top: 0;
    left: -16px;
    width: 13rem;
    height: 13rem;
    background-color: var(--yellow);
    border-radius: 50%;
    mix-blend-mode: multiply;
    filter: blur(40px);
    opacity: 0.7;
    animation: blob 7s infinite;
}

#hero .animate-two {
    position: absolute;
    top: 0;
    right: -16px;
    width: 13rem;
    height: 13rem;
    background-color: var(--red);
    border-radius: 50%;
    mix-blend-mode: multiply;
    filter: blur(40px);
    opacity: 0.7;
    animation: blob 7s infinite;
    animation-delay: 2000ms;
}

#hero .animate-three {
    position: absolute;
    bottom: -32px;
    left: 80px;
    width: 13rem;
    height: 13rem;
    background-color: var(--blue); /* main-yellow color */
    border-radius: 50%;
    mix-blend-mode: multiply;
    filter: blur(40px);
    opacity: 0.7;
    animation: blob 7s infinite;
    animation-delay: 4000ms;
}

#hero .logo-mascot-container {
    position: relative;
    margin: 32px;
}

#hero .logo-mascot {
    object-position: center;
}

@media (min-width: 768px) {
    #hero .animate-one {
        width: 20rem;
        height: 20rem;
    }

    #hero .animate-two {
        width: 20rem;
        height: 20rem;
    }

    #hero .animate-three {
        width: 20rem;
        height: 20rem;
    }
}

@media (max-width: 991px) {
    #hero {
        height: 100vh;
        text-align: center;
    }

    #hero .animated {
        animation: none;
    }

    #hero .hero-img {
        text-align: center;
    }

    #hero .hero-img img {
        width: 50%;
    }
}

@media (max-width: 768px) {
    #hero h1 {
        font-size: 28px;
        line-height: 36px;
    }

    #hero h2 {
        font-size: 18px;
        line-height: 24px;
        font-family: "Nunito";
        margin-bottom: 30px;
    }

    #hero .hero-img img {
        width: 70%;
    }
}

@media (max-width: 575px) {
    #hero .hero-img img {
        width: 80%;
    }

    #hero .btn-get-started {
        font-size: 16px;
        padding: 10px 24px 11px 24px;
    }
}

@media (min-width: 330px) {
    #hero .glightbox {
        margin: auto;
    }
}

@media (min-width: 1110px) {
    #hero .glightbox {
        margin: 0;
    }
}

@keyframes blob {
    0% {
        transform: translate(0px, 0px) scale(1);
    }
    33% {
        transform: translate(30px, -50px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
    100% {
        transform: translate(0px, 0px) scale(1);
    }
}

@keyframes up-down {
    0% {
        transform: translateY(10px);
    }

    100% {
        transform: translateY(-10px);
    }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
    padding: 60px 0;
    overflow: hidden;
}

.section-bg {
    background-color: #f3f5fa;
}

.section-title {
    text-align: center;
    padding-bottom: 30px;
}

/*--------------------------------------------------------------
# About Us
--------------------------------------------------------------*/

#about-us .container-title-about {
    position: relative;
    text-align: center;
}

#about-us .title-about {
    text-transform: uppercase;
    font-family: "Nunito";
    font-weight: 600;
    color: var(--black);
}

#about-us .mascots {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    padding: 2rem;
    gap: 2rem;
    align-items: center;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

#about-us .cnt-mct {
    position: relative;
}

#about-us .img-mct {
    margin: auto;
    width: 7rem;
}

#about-us .box-mct {
    /* padding: 3rem, 1.5rem, 3rem, 1.5rem; */
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 24px;
    border-radius: 16px;
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out,
        background-color 0.2s ease-in-out;
}

#about-us .box-mct:hover {
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    background-color: #fff;
}

#about-us .sgtabe {
    display: block;
    position: absolute;
    bottom: 0;
    width: 20rem;
    right: -4px;
    z-index: -10;
    opacity: 40%;
}

#about-us .sgkiki {
    display: block;
    position: absolute;
    bottom: 0;
    width: 11rem;
    right: -16px;
    z-index: -10;
    opacity: 40%;
}

#about-us .sgkai {
    display: block;
    position: absolute;
    bottom: 0;
    left: -1rem;
    width: 15rem;
    z-index: -10;
    opacity: 40%;
}

#about-us .sgmoya {
    display: block;
    position: absolute;
    bottom: 0;
    left: -1rem;
    width: 11rem;
    z-index: -10;
    opacity: 40%;
}

#about-us .sgshiro {
    display: block;
    position: absolute;
    bottom: 0;
    width: 20rem;
    right: -2.5rem;
    z-index: -10;
    opacity: 40%;
}

@media (min-width: 640px) {
    #about-us .p-6 {
        padding: 5rem;
    }

    #about-us .mascots {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        padding: 0px;
        gap: 4rem;
        align-items: center;
        margin-top: 3rem;
        margin-bottom: 3rem;
    }
}

@media (min-width: 1024px) {
    #about-us .mascots {
        grid-template-columns: repeat(5, minmax(0, 1fr));
        padding: 3rem;
        gap: 4rem;
        align-items: center;
        margin-top: 3rem;
        margin-bottom: 3rem;
    }
}

/*--------------------------------------------------------------
# Category Product
--------------------------------------------------------------*/

#category-product .container-title-about {
    position: relative;
    text-align: center;
}

#category-product .title-about {
    text-transform: uppercase;
    font-family: "Nunito";
    font-weight: 600;
    color: var(--black);
}

#category-product .ctn-product {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    margin-top: 3rem;
    margin-bottom: 3rem;
    padding-left: 1rem;
    padding-right: 1rem;
}

#category-product .prd-img {
    width: 100%;
    object-fit: fill;
}

#category-product .ctn-prd-title {
    padding: 0.75rem;
    border-bottom-width: 1px;
    border-right-width: 1px;
    border-left-width: 1px;
    border-bottom-right-radius: 1.5rem;
    border-bottom-left-radius: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    background-color: #fff;
}

#category-product .ctn-title {
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (min-width: 640px) {
    #category-product .ctn-product {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        padding: 3rem;
    }
}

@media (min-width: 768px) {
    #category-product .ctn-product {
        gap: 6rem;
    }
}

@media (min-width: 1024px) {
    #category-product .ctn-product {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/*--------------------------------------------------------------
# Store Location
--------------------------------------------------------------*/

#store-location .title-about {
    color: var(--black);
}

#store-location .ctn-text::after {
    position: absolute;
    content: url("/sg/sgtwo.png");
    left: -4rem;
    z-index: 1000;
}

swiper-container {
    width: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
}

swiper-slide {
    background-position: center;
    background-size: cover;
    width: 300px;
    height: 300px;
}

swiper-slide img {
    display: block;
    width: 100%;
}

/*--------------------------------------------------------------
# Contact Us
--------------------------------------------------------------*/

#contact-us .contact-form {
    position: relative;
    box-shadow: 0 0 10px rgba(47, 46, 46, 0.1);
    background-color: var(--lilac);
    border-radius: 10rem 0.5rem 0.5rem 0.5rem;
}

#contact-us .ctn-form {
    padding-left: 3rem;
    padding-right: 3rem;
    padding-top: 7rem;
    padding-bottom: 7rem;
}

.ctn-input {
    position: relative;
    box-shadow: 0 0 40px rgba(51, 51, 51, 0.1);
    margin-top: 1.3rem;
}

.ctn-input input {
    height: 60px;
}

.ctn-input input:focus {
    box-shadow: none;
    border: 2px solid var(--teal);
}

.ctn-input textarea:focus {
    box-shadow: none;
    border: 2px solid var(--teal);
}

.ctn-btn {
    margin-top: 1.3rem;
}

.btn-outline {
    color: var(--pink);
    background-color: #ffffff;
    border-color: var(--pink);
    font-weight: bold;
    letter-spacing: 0.05em;
}

.btn-outline {
    color: var(--pink);
    background-color: #ffffff;
    border-color: var(--pink);
    font-weight: bold;
    border-radius: 0.3rem;
}

.btn-outline:hover,
.btn-outline:active,
.btn-outline:focus,
.btn-outline.active {
    background: var(--pink);
    color: #ffffff;
    border-color: var(--pink);
}

@media (min-width: 640px) {
    #contact-us .ctn-contact {
        padding-left: 5rem;
        padding-right: 5rem;
    }
    #contact-us .ctn-form {
        padding: 7rem;
    }
}

@media (min-width: 360px) {
    #contact-us .ctn-contact {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
    padding: 3rem 0;
    font-family: "Poppins", sans-serif;
}
.footer .footer-site-logo .img-footer {
    text-align: center;
    width: 14rem;
}
.footer .nav-links {
    padding: 0;
    margin: 0;
}
.footer .nav-links li {
    display: inline-block;
    color: var(--black);
}
.footer .social h3 {
    font-weight: bold;
    font-size: 18px;
    color: var(--black);
}
.footer .social ul li {
    display: inline-block;
}
.footer .social ul li a {
    display: inline-block;
    padding: 10px;
}
.footer .social ul li.in a {
    color: #df588a;
}

.footer .social ul li.fb a {
    color: #3742d0;
}
.footer .social ul li.ti a {
    color: #313131;
}

.footer .copyright {
    color: #999999;
}
