@charset "UTF-8";
/* =========================================================
All things
========================================================= */

@font-face {
    font-family: "Space Grotesk", sans-serif;
    font-display: swap;
    src:
    url("../..//fonts/Montserrat-Regular.woff")format("woff"),
    url("../..//fonts/Montserrat-Bold.woff")format("woff"),
    url("../..//fonts/Montserrat-Black.woff")format("woff"),
    url("../..//fonts/Montserrat-Regular.ttf")format("truetype"),
    url("../..//fonts/Montserrat-Bold.ttf")format("truetype"),
    url("../..//fonts/Montserrat-Black.ttf")format("truetype")
    ;
  }

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: calc(250% / 3.5);
    scroll-behavior: smooth;
	@container style(--mq-huge: true) {
			font-size: .6944444444vw;
	}
	@container style(--mq-big: true) { 
			font-size: 62.5%;
	}
	&[lang="vi"] {
		font-size: calc(250% / 3.9);
		scroll-behavior: smooth;
		@container style(--mq-huge: true) {
				font-size: .6944444444vw;
		}
		@container style(--mq-big: true) { 
				font-size: 62.5%;
		}

	}
}


body {
    position: relative;
    margin: 0;
    line-height: 1.3;
    letter-spacing: .0935rem;
    color: var(--text-color01);
    background-color: transparent;
	font-size: var(--fs-postp);
    font-weight: bold;
    font-family: var(--font-family01);
    font-feature-settings: "palt";
    font-variant-ligatures: no-common-ligatures;
    -webkit-font-smoothing: subpixel-antialiased;
    -moz-osx-font-smoothing: unset;
    font-optical-sizing: auto;
}

/* =========================================================
Parts
========================================================= */
img {
    max-width: 100%;
}
ol,ul {
    padding-left: 0px;
}
ul {
    li {
        list-style: none!important;
    }
}

li {
    list-style: none;
}
p {
	line-height: 1.6;
}

a {
    color: var(--text-color01);
    outline: none;
    text-decoration: none;
    text-decoration-skip-ink: none;
    transition: var(--transition01); 
    &:hover {
        outline: none;
    }
}
a:focus, *:focus { outline:none; }

h1,h2,h3,h4,h5,h6 {
    font-weight: 800;
}
strong {
    font-weight: bold;
}

/*reset*/
button,input,textarea,select {
    background-color: transparent;
    border: none;
    outline: none;
    padding: 0;
    appearance: none;
}