html {}

body {
    font-size: 16px;
max-width:1920px;
margin:0 auto;
}

* {
    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;
}