/*================================*
*                                *
*    Created by VADIM LEE        *
*    vadimlee042594@gmail.com    *
*                                *
*================================*/
html {
    height: 100%;
}
html,
body {
    padding: 0;
    margin: 0;
    position: relative;
    display: block;
}

body {
    font-size: 14px;
    font-family: "GothamProRegular" !important;
}

a:hover, a:focus, a:active {
    text-decoration: none;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 0 10px 0;
}

h1 {
    font-size: 36px;
}

h2 {
    font-size: 32px;
}

h3 {
    font-size: 28px;
}

h4 {
    font-size: 24px;
}

h5 {
    font-size: 20px;
}

h6 {
    font-size: 16px;
}

hr {
    height: 1px;
    border: none;
    background: #eee;
}

hr.divider {
    margin: 30px 0;
}

textarea {
    min-height: 150px;
}

strong {
    font-weight: bold;
}

.text-underline {
    text-decoration: underline;
}

.white-font-color {
    color: #fff;
}

*, *:focus {
    outline: none !important;
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.div-1 {
    width: 100px;
    height: 100px;
    background-color: red;
    margin: 5px;
    border: 3px solid green;
    padding: 15px;
    display: inline-block;
}