/*
    @Name: reset | @Author: Cherry.liu
====================================================================================== */
/* Reset */
* {
    padding: 0;
    margin: 0;
    border: none;
    outline: none;
    box-shadow: none;
    list-style: none;
    box-sizing: border-box;
}
a, a:hover, a:focus, a:active, a:visited {
    text-decoration: none;
}
body {
    font-family: "Helvetica Neue", Helvetica, Arial, Roboto, Tahoma, sans-serif;
    font-size: 16px;
    color: #303030;
    line-height: 1.35;
    background: #fff;
}


/* Gird */
.container {
    width: 1200px;
    margin-left: auto;
    margin-right: auto;
}
.row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -1em;
    margin-right: -1em;
}
.container:after, .row:after {
    content: " ";
    display: table;
    clear: both;
}
.col {
    flex: 1 0 0%;
}
.col, 
.col-sm , 
.col-md ,
.col-sm-4 , 
.col-sm-8 {
    position: relative;
    max-width: 100%;
    padding-left: 1em;
    padding-right: 1em;
}
.col-sm , 
.col-md ,
.col-sm-4 ,
.col-sm-8 {
    flex: 0 0 100%;
}
@media(min-width: 1024px) {
    .col-md {
        flex: 1 0 0%;
    }
}
@media(min-width: 768px) {
    .col-sm {
        flex: 1 0 0%;
    }
    .col-sm-4 {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
    .col-sm-8 {
        flex: 0 0 66.666667%;
        max-width: 66.666667%;
    }
}
@media(max-width: 767px){
    .order-xs-last{
        order: 13;
    }
}

/* Align */
.align-items-start {
    align-items: start!important;
}
.align-items-center {
    align-items: center!important;
}
.align-items-end {
    align-items: flex-end!important;
}
.align-self-start {
    align-self: flex-start!important;
}
.align-self-center {
    align-self: center!important;
}
.align-self-end {
    align-self: flex-end!important;
}
.w-100 {
    width: 100%!important;
}
@media (max-width: 1259px) {
    .container {
        width: 100%;
        padding-left: 2em;
        padding-right: 2em;
    }
}

/* Color */
.bg-gray-lighter {
    background: #F2F4F7;
}


/* Fonts */
.h1 {
    font-size: 48px;
}
.h2 {
    font-size: 36px;
}
.h3 {
    font-size: 28px;
}
.h4 {
    font-size: 18px;
}
.text-left {
    text-align: left;
}
.text-center {
    text-align: center;
}
.text-right {
    text-align: right;
}
.uppercase {
    text-transform: uppercase;
}
.font-bold {
    font-weight: 700;
}
.font-medium {
    font-weight: 500;
}
.text-gray {
    color: #555;
}
.text-gray-light {
    color: #888;
}
.text-primary {
    color: #FF7F0C;
}


/* Btn */
.btn,
a.btn ,
button.btn {
    display: inline-block;
    padding: 1em;
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
}
.btn-primary {
    color: #fff;
    background: #FF7F0C;
}
.btn-block {
    display: block;
    width: 100%!important;
}


/* margin */
.mb-xs {
    margin-bottom: 0.6em;
}
.mb-sm {
    margin-bottom: 1em;
}
.mb-md {
    margin-bottom: 1.6em;
}

@media (max-width: 767px) {
    body {
        font-size: 14px;
    }
    .container {
        width: 100%;
        padding-left: 1.4em;
        padding-right: 1.4em;
    }
    .hidden-xs {
        display: none !important;
    }
    .display-xs-block {
        display: block !important;
    }
    .h1 {
        font-size: 36px;
    }
    .h2 {
        font-size: 24px;
    }
    .h3 {
        font-size: 20px;
    }
    .h4 {
        font-size: 16px;
    }
}
