:root {
    --orange: #DEE562;
    --darkGray: #282828;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 62.5%;
}

body {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.6rem;
    line-height: 1.6;
    font-weight: 300;
    color: var(--darkGray);
}

.header {
    padding: 1.5rem 0;
    position: relative;
    box-shadow: 0px 1px 5px 1px rgba(0, 0, 0, 0.1)
}


.container {
    width: 100%;
    max-width: 1140px;
    padding: 0 1.5rem;
    margin: 0 auto;
}

.clearfix::after {
    content: '';
    display: block;
    clear: both;
}

.header .logo {
    height: 8rem;
}

.right-logo {
    float: right;
}

.right-logo img {
    height: 8rem;
    margin-left: 1rem;
}

h2 {
    font-size: 3rem;
    margin: 2rem 0 1rem;
}

h3 {
    font-size: 2rem;
    margin: 2rem 0 0.5rem;
}

h2,
h3 {
    font-weight: 400;
    line-height: 1.3;
}

.icon {
    display: inline-block;
    width: 4rem;
    vertical-align: middle;
}


p {
    margin-bottom: 2rem;
    text-align: justify;
}

strong {
    font-weight: 600;
}

ul {
    margin: 1rem 0;
    list-style: none;
}

li {
    padding-left: 2rem;
    position: relative;
}

li:not(:last-child) {
    margin-bottom: 1rem;
}

li::before,
li::after {
    content: '';
    position: absolute;
    left: 0;
    top: 1.4rem;
    width: 0.8rem;
    height: 0.2rem;
    background: var(--orange);
    transform: rotate(-45deg);
}

li::before {
    top: 0.9rem;
    transform: rotate(45deg);
}

li li::before {
    width: 0.5rem;
    height: 0.5rem;
}

li li::after {
    display: none;
}

p a {
    color: var(--orange);
    text-decoration: none;
}

.agree {
    background-color: var(--orange);
    width: 60%;
    display: block;
    padding: 1.2rem 6rem;
    font-size: 1.8rem;
    font-weight: 400;
    color: #ffffff;
    text-align: center;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 24px;
    margin: 3rem auto 2rem;
}

.center-content {
    text-align: center;
    padding: 2rem 0 0;
}

.center-content .logo {
    width: 12rem;
}

@media (max-width: 767px) {
    html {
        font-size: 52%;
    }
}