/*========================================================*/
/* Reset */
/*========================================================*/
::selection {
    background: #000;
    color: #fff;
}
html {
    font-size: 62.5%;
    line-height: 1.5;
}
h1, h2, h3, h4, h5, h6 {
    color: #000;
}
a:hover, a:focus {
    text-decoration: none;
    color:#fff;
}
b, strong {
    font-weight: 600;
}
*:focus {
    outline: none !important;
}
ul {
    margin: 0;
    padding: 0;
}
ul li {
    list-style-type: none;
}
p {
    font-size: 2.4rem;
    font-weight: 400;
    line-height: 1.2;
    margin: 0;
}
/*========================================================*/
/* 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;
}
.flex-center{
    display: flex;
    align-items: center;
    justify-content: center;
}
.col-50 {
    flex-basis: 50%;
}
.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 ***/
/*========================================================*/
.cta {
    display: inline-block;
    font-size: 2rem;
    font-weight: 600;
    color: #000;
    position: relative;
}
.cta:hover, .cta:focus {
    color: #000;
}
.cta::after {
    content: '';
    display: inline-block;
    width: 100%;
    height: 2px;
    background-color: #000;
    position: absolute;
    bottom: -3px;
    left: 0;
}
.cta::before {
    content: '';
    display: inline-block;
    width: 100%;
    height: 2px;
    background-color: #000;
    position: absolute;
    bottom: -3px;
    left: 0;
    z-index: 2;
}
.cta:hover::before {
    content: '';
    display: inline-block;
    width: 100%;
    height: 2px;
    background-color: #ff0000;
    position: absolute;
    bottom: -3px;
    left: 0;
    -webkit-animation: left-to-right 0.4s ease both;
	        animation: left-to-right 0.4s ease both;
}
.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;
}
input::selection {
    background-color: #ff0000;
}

/* keyframes */
@-webkit-keyframes left-to-right {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
@keyframes left-to-right {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
