@charset "UTF-8";



/* ------------- IMPORT FONT ------------- */

@import url("../font/font-awesome-5.1/css/all.min.css");

@font-face {
    font-family: 'Rubik Light';
    src: url('../font/rubik/rubik-light.ttf') format('truetype');
}

@font-face {
    font-family: 'Rubik Regular';
    src: url('../font/rubik/rubik-regular.ttf') format('truetype');
}

@font-face {
    font-family: 'Rubik Medium';
    src: url('../font/rubik/rubik-medium.ttf') format('truetype');
}

@font-face {
    font-family: 'Rubik Bold';
    src: url('../font/rubik/rubik-bold.ttf') format('truetype');
}

@font-face {
    font-family: 'Font Awesome Regular';
    src: url('../font/font-awesome-5.1/webfonts/fa-regular-400.ttf') format('truetype');
}

@font-face {
    font-family: 'Font Awesome Solid';
    src: url('../font/font-awesome-5.1/webfonts/fa-solid-900.ttf') format('truetype');
}



/* ------------- IMPORT FILES ------------- */

@import url("./style-project-list.css");




/* ------------- BASE STYLE ------------- */

html, body {
    width: 100%;
    margin: 0px;
    padding: 0px;
    -webkit-text-size-adjust: 100%;
    font-size: 15px;
    font-family: 'Rubik Light', Helvetica Neue, sans-serif;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Rubik Medium', Helvetica Neue, sans-serif;
}

a, p, label, article, li, span {
    font-family: 'Rubik Light', Helvetica Neue, sans-serif;
}

a, p, label, article, li {
    font-size: 15px;
    line-height: 140%;
    letter-spacing: 0.25px;
}

input, select, textarea {
    font-family: "Rubik Light";
    color: #333;
    font-size: 15px;
}

a {
    color: #516f20;
    text-decoration: none;
    cursor: default !important;
}

a:hover {
    color: #516f20;
    text-decoration: underline;
}

a:link {
    text-decoration: none;
}

a:visited {
    text-decoration: none;
}

strong {
    font-weight: 600;
}

img {
    width: 100%;
}

.clear {
    clear: both;
}

::selection {
    background: #516f20;
    color: #fff;
}

::-moz-selection {
    background: #516f20;
    color: #fff;
}