@import url('https://fonts.googleapis.com/css2?family=Merriweather:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400;1,700;1,900&display=swap');
@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&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "tt-font";
}

@font-face {
    font-family: "tt-font";
    src: url("../css/tt-norms-pro-cufonfonts/TT\ Norms\ Pro\ Medium.otf");
    /* src: url("../css/tt-norms-pro-cufonfonts/TT\ Norms\ Pro\ ExtraLight.otf"); */
}

:root {
    --black-color: #101010;
    --white-color: #fff;
    --main-color: #212844;
}

h1,
h3 {
    font-family: "Merriweather", serif;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin-bottom: 0 !important;
}

ul {
    margin-bottom: 0 !important;
    padding-left: 0 !important;
}

li {
    list-style: none !important;
}

a {
    text-decoration: none !important;
}

button {
    border: none;
    outline: none;
    background-color: transparent;
}

.global_btn {
    background-color: var(--white-color);
    color: var(--black-color);
    font-size: 18px;
    padding: 8px 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.global_btn:hover {
    background-color: var(--main-color);
    color: var(--white-color);
    transition: .3s ease;
}

.global_section {
    padding: 0 5rem;
}

@media(max-width:1200px) {
    .global_section {
        padding: 0 2rem;
    }
}

@media(max-width:992px) {
    .global_section {
        padding: 0 1rem;
    }
}

@media (max-width: 768px) {
    .global_section {
        padding: 0 0rem;
    }

    .global_btn {
        font-size: 16px;
        padding: 8px 22px;
    }
}