html, body {
    font-family: 'Kanit', sans-serif;
    /* overflow-x: hidden; */
}

ul li {
    list-style: none;
    font-size: 18px;
}

.dropdown-item {
    display: flex;
    align-items: center;
}

.dropdown-item i {
    font-size: 8px;
    margin-right: 8px;
}

.cover-img {
    max-width: 100%;
    width: 100%;
    height: auto;
}

.about-section {
    margin-top: 50px;
    background-image: url('/public/img/bg-map.jpg');
    background-size: cover;
    background-position: center;
}

.vr-section {
    margin-top: 50px;
    width: 100%;
    background-image: url('/public/img/bg-map.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.vr-section a {
    width: 40%;
}

.vr-img {
    max-width: 100%;
    width: 100%;
    height: auto;
    animation: hithere 3s ease infinite;
}

@keyframes hithere {
	30% { transform: scale(1.1); }
    40%, 60% { transform: rotate(-20deg) scale(1.1); }
    50% { transform: rotate(20deg) scale(1.1); }
    70% { transform: rotate(0deg) scale(1.1); }
    100% { transform: scale(1); }
}

.vr-section img:hover {
    filter: drop-shadow(0 0 0.9rem green);
}

.about-section .maps {
    max-width: 90%;
    cursor: pointer;
}

.about-section .human {
    max-width: 100%;
}

.about-section .maps:hover {
    filter: drop-shadow(0 0 0.9rem green);
}

.product-section {
    margin-top: 5rem;
}

.product-section img {
    max-width: 100%;
}

.product-border-left {
    border-left: 2px;
    border-top: 0;
    border-right: 0;
    border-bottom: 0;
    border-style: dotted;
    color: rgba(156, 155, 155, 0.4);
}

.product-border-bottom {
    border-left: 0;
    border-top: 0;
    border-right: 0;
    border-bottom: 2px;
    border-style: dotted;
    color: rgba(156, 155, 155, 0.4);
}

.slogan-section {
    margin-top: 5rem;
    background: url('/public/img/bg-slogan.jpg') fixed;
    background-size: cover;
    width: 100%;
    height: 600px;
}

.slogan-title {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slogan-title h1 {
    color: #fff;
}

.gallery-section {
    margin-top: 5rem;
    margin-bottom: 5rem;
}

.footer {
    background-color: #FAF7F2;
    margin: 0;
}

.footer ul li {
    font-size: 16px;
}

.follow-section {
    display: flex;
    flex-direction: row;
}

.follow-section i {
    font-size: 30px;
}

.footer-tag {
    background-color: rgb(94, 43, 43);
    margin: 0;
    padding: 0;
}

.footer-tag p {
    color: #fff;
    margin: 0;
    padding: 0;
}

hr {
    margin-top: 5rem;
}

.contact-header {
    background: url('/public/img/bg-map.jpg');
    width: 100%;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}