/*
Font Family
=========================== */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Thai:wdth,wght@62.5..100,100..900&family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap');

/* Typography 
=========================== */
html, body {
    padding: 0;
    margin: 0;
    overflow-x: hidden !important;
}

body {
    color: #6a6a6a;
    background: #fff;
    font-family: "Noto Sans Thai", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
}

a {
    color: #6a6a6a;
    text-decoration: none;
    outline: 0;
    cursor: pointer;
    -webkit-transition: all 0.3s ease-in-out;
    -khtml-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

a:focus {
    outline: 0;
}

a:hover {
    text-decoration: none;
}

a.link {
    color: #6a6a6a;
    text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--primary);
    margin: 0 0 15px 0;
    font-size: 48px;
    font-weight: 700;
    line-height: 40px;
    text-transform: uppercase;
}

h2 {
    font-size: 36px;
    line-height: 48px;
}

h3 {
    font-size: 30px;
    line-height: 36px;
}

h4 {
    font-size: 24px;
    line-height: 30px;
}

h5 {
    font-size: 18px;
    line-height: 24px;
}

h6 {
    font-size: 16px;
    line-height: 18px;
}

p {
    margin-top: 0;
    margin-bottom: 20px;
}

.section {
    padding: 100px 0;
}

@media (max-width: 992px) {
    .section {
        padding: 70px 0;
    }
}

@media (max-width : 820px) {}

@media (max-width : 768px) {
    .section {
        padding: 50px 0;
    }
}

@media (max-width: 576px) {}

@media (max-width : 480px) {
    .section {
        padding: 30px 0;
    }
}

@media (max-width : 320px) {}