@import url('https://fonts.googleapis.com/css2?family=Kanit:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Noto+Sans+Thai:wght@100..900&display=swap');
*{
    font-family: "Kanit", serif;
    font-weight: 400;
    font-style: normal;
    scroll-behavior: smooth;
}
.body{
    min-height: 100vh;
    overflow-x: hidden;
    padding: 0;
    margin: 0;
}
.btn-blue{
    background-color: #D7E5F0;;
    color: #fff;
}
.bg-current{
    background-color: #D7E5F0;
}
.btn-current{
    background-color: #D7E5F0;
}
.text-current{
    color: #D7E5F0;
}
.text-mobile{
        font-size: 5rem;
    }
.brand{
        height: 20rem;
    }
.maps{
        width: 40rem;
        height: 20rem;
        
    }
.alert{
    display: flex;
    height: 100vh;
    width: 100vw;
    position: fixed;
    top: 0;left: 0;
    z-index: 1;
    margin: 0;
    background-color: #0000007b;
}

.card-alert{
    width: 50rem;
    animation: fadeslide 0.5s;
}

#exit1{
    display: none;
}
#exit2{
    display: block;
}
.cart1{
    height: 150%;
}
.bar{
    height: 100vh;
}
@keyframes fadeslide {
    0% {
        opacity: 0;
        transform: translateY(-100%);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
    
}
@media screen and (max-width: 450px) {
    .brand{
        height: 15rem;
    }
    .image-mobile{
        width: 18rem;
    }
    .text-mobile{
        font-size: 4rem;
    }
    .maps{
        width: 20rem;
        height: 20rem;
        
    }
    .cart1{
    height: 100%;
}
    .card-alert{
        width: 20rem;
    }
    #exit2{
        display: none;
    }
    #exit1{
        display: block;
    }
    

}