/*========================================================*/
/* Fonts */
/*========================================================*/
@font-face {
    font-family: 'Mplus';
    src: url('../fonts/Mplus1p-Light.eot');
    src: url('../fonts/Mplus1p-Light.eot?#iefix') format('embedded-opentype'),
    url('../fonts/Mplus1p-Light.woff') format('woff'),
    url('../fonts/Mplus1p-Light.ttf') format('truetype'),
    url('../fonts/Mplus1p-Light.svg#Mplus1p-Light') format('svg');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Mplus';
    src: url('../fonts/Mplus1p-Regular.eot');
    src: url('../fonts/Mplus1p-Regular.eot?#iefix') format('embedded-opentype'),
    url('../fonts/Mplus1p-Regular.woff') format('woff'),
    url('../fonts/Mplus1p-Regular.ttf') format('truetype'),
    url('../fonts/Mplus1p-Regular.svg#Mplus1p-Regular') format('svg');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Mplus';
    src: url('../fonts/Mplus1p-Medium.eot');
    src: url('../fonts/Mplus1p-Medium.eot?#iefix') format('embedded-opentype'),
    url('../fonts/Mplus1p-Medium.woff') format('woff'),
    url('../fonts/Mplus1p-Medium.ttf') format('truetype'),
    url('../fonts/Mplus1p-Medium.svg#Mplus1p-Medium') format('svg');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Mplus';
    src: url('../fonts/Mplus1p-Bold.eot');
    src: url('../fonts/Mplus1p-Bold.eot?#iefix') format('embedded-opentype'),
    url('../fonts/Mplus1p-Bold.woff') format('woff'),
    url('../fonts/Mplus1p-Bold.ttf') format('truetype'),
    url('../fonts/Mplus1p-Bold.svg#Mplus1p-Bold') format('svg');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Mplus';
    src: url('../fonts/Mplus1p-ExtraBold.eot');
    src: url('../fonts/Mplus1p-ExtraBold.eot?#iefix') format('embedded-opentype'),
    url('../fonts/Mplus1p-ExtraBold.woff') format('woff'),
    url('../fonts/Mplus1p-ExtraBold.ttf') format('truetype'),
    url('../fonts/Mplus1p-ExtraBold.svg#Mplus1p-ExtraBold') format('svg');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

/*========================================================*/
/* Reset */
/*========================================================*/
::selection {
    background: #000;
    color: #fff;
}
html {
    font-size: 62.5%;
    line-height: 1.5;
}
body {
    font-family: Mplus, sans-serif;
    color: #000;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5, h6 {
    font-family: Mplus, sans-serif;
    color: #000;
}
a:hover, a:focus {
    text-decoration: none
}
b, strong {
    font-weight: 600;
}
*:focus {
    outline: none !important;
}
ul {
    margin: 0;
    padding: 0;
}
ul li {
    list-style-type: none;
}
/*========================================================*/
/* Layout*/
/*========================================================*/
.flex-row {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}
.flex-column {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
}
.text-center {
    text-align: center;
}
.text-right {
    text-align: right;
}
.float-right {
    float: right;
}
.form-control::-webkit-input-placeholder {
    color: #747474;
}
.form-control::-moz-placeholder {
    color: #747474;
}
.form-control:-ms-input-placeholder {
    color: #747474;
}
.form-control:-moz-placeholder {
    color: #747474;
}
/*========================================================*/
/*** DEFAULT ELEMENTS ***/
/*========================================================*/
.medium-button {
    width: 100%;
    max-width: 250px;
}
.large-button {
    width: 100%;
}
.btn-default {
    text-align: center;
    padding: 10px 20px;
    font-size: 1.4rem;
    line-height: 2.4rem;
    font-weight: 600;
    letter-spacing: .025em;
    color: #fff;
    background-color: #000;
    border: 1px solid #000;
    border-radius: 0;
    background-image: none;
    text-transform: uppercase;
    transition: linear .3s;
    min-height: 45px;
}
.btn-default:hover {
    color: #000;
    background-color: #fff;
    border-color: #000;
    transition: linear .3s;
}
input[type="text"].form-control,
input[type="password"].form-control,
input[type="email"].form-control,
textarea.form-control,
select.form-control {
    font-size: 1.3rem;
    line-height: 2.4rem;
    letter-spacing: .025em;
    font-weight: 400;
    border: 1px solid #ddd;
    border-radius: 0;
    color: #000;
    padding: 10px 15px;
    min-height: 45px;
}
input[type="text"].form-control::placeholder,
input[type="password"].form-control::placeholder,
input[type="email"].form-control::placeholder,
textarea.form-control::placeholder,
select.form-control::placeholder {
    font-size: 1.3rem;
    line-height: 2.4rem;
    letter-spacing: .025em;
    font-weight: 400;
    color: #a4a4a4;
}
.form-control:focus {
    border: 1px solid #ddd;
    -webkit-box-shadow: none;
    box-shadow: none;
}
label.control-label {
    font-size: 1.3rem;
    line-height: 2.4rem;
    letter-spacing: .025em;
    font-weight: 400;
    color: #000;
}
select.form-control:focus {
    border-color: #000000;
    -webkit-box-shadow: none;
    box-shadow: none;
}