html {
    overflow-y: scroll;
    /* background: url(../images/bg.jpg) top center no-repeat; */
}

body {
    font-size: 16px;
    background-color: #F2F2F2;
}

* {
    padding: 0;
    margin: 0;
    list-style: none;
    text-decoration: none;
}

a:hover {
    color: #009A80;
    /* text-decoration: underline; */
}

.clear {
    clear: both;
}

.container {
    width: 1120px;
    margin: 0 auto;
}

.half {
    width: 50%;
}

.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.left {
    float: left;
}

.right {
    float: right;
}

.flex {
    display: flex;
}
.flex-wrap{
flex-wrap:wrap;
}
.justify-between {
    justify-content: space-between;
}

.justify-center {
    justify-content: center;
}

.items-start {
    align-items: flex-start;
}

.align-center {
    align-items: center;
}