/*
Import typefaces
*/
@font-face {
    font-family: Inter;
    src: url('../fonts/Inter-Regular.woff') format('woff');
    font-style: normal;
	font-weight: 400;
	font-stretch: normal;
}

@font-face {
    font-family: Inter;
    src: url('../fonts/Inter-Medium.woff') format('woff');
    font-style: normal;
	font-weight: 500;
	font-stretch: normal;
}


/* 
Typography
*/
.t-min {
    font-family: Inter, Arial, Helvetica, sans-serif;
    font-weight: 500;
    font-size: .66rem;
    line-height: 110%;
    letter-spacing: -.0025em;
}

.t-body {
    font-family: Inter, Arial, Helvetica, sans-serif;
    font-weight: 500;
    font-size: .9rem;
    line-height: 110%;
    letter-spacing: -.0025em;
}

.t-display {
    font-family: Inter, Arial, Helvetica, sans-serif;
    font-weight: 400;
    font-size: 8vw;
    line-height: 100%;
    letter-spacing: -.04em;
}

/* TABLET */
@media only screen and (min-width: 768px) {
    .t-display {
        font-size: 2rem;
    }
}

/* DESKTOP */
@media only screen and (min-width: 1024px) {
    .t-body {
        font-size: .8rem;
    }
}

/* 
Text Style 
*/
.t-uppercase {
	text-transform: uppercase;
}

.t-lowercase {
	text-transform: lowercase;
}

.t-left {
    text-align: left;
}

.t-center {
	text-align: center;
}

.t-right {
    text-align: right;
}

.t-underline {
    text-decoration: underline;
}