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

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

body {
    color: #343434;
    background: #fff;
    font-family: "Noto Sans Thai", sans-serif;
    font-size: 16px;
}

a {
    color: var(--primary);
    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 {
    color: var(--primary);
    text-decoration: none;
}

a.link {
    color: var(--primary);
    text-decoration: none;
}


h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
}

section {
    position: relative;
    padding: 100px 0;
}

/*** text ***/

.text-primary {
    color: var(--primary) !important;
}

.text-secondary {
    color: var(--secondary) !important;
}

.text-dark {
    color: var(--dark) !important;
}

.text-detail {
    font-size: 20px;
}

/*** bg ***/

.bg-primary {
    color: var(--primary) !important;
}

.bg-secondary {
    color: var(--secondary) !important;
}

.bg-dark {
    color: var(--dark) !important;
}

/*** Button ***/

.btn {
    font-weight: 600;
    border-radius: 0;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

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

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

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

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

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