#header {
    background-color: #fff;
    position: relative;
    z-index: 5;
    padding: 14px 0;
}
#header .container {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    height: 100%;
}
#header .logo {
    flex: 0 0 185px;
    height: 40px;
}
#header .logo img {
    width: 100%;
    height: 100%;
}
#header .free-btn {
    white-space: nowrap;
    border-radius: 6px;
    background: #00a976;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    padding: 9px 17px;
    display: inline;
}
#header .free-btn:hover {
    background: #2ea45e;
}
@media (max-width: 768px) {
    #header {
        box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.11);
        padding: 20px 0;
    }
    #header .logo {
        flex: 0 0 125rem;
        height: 28rem;
    }
}

.ad-footer {
    background-color: #F5F5F5;
    padding: 25px 0;
}
.ad-footer-ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 90px;
}
.ad-footer-li:hover a {
    text-decoration: underline;
}
.ad-footer-li-link {
    color: #474747;
    font-size: 16px;
    line-height: 1.5;
    text-decoration: underline;
}
@media (max-width: 768px) {
    .ad-footer .ad-footer-ul {
        flex-wrap: wrap;
        justify-content: center;
        flex-direction: column;
        gap: 0;
    }
    .ad-footer .ad-footer-li {
        padding: 20px 0;
        border-bottom: 1px solid #ECECEC;
        width: 100%;
        text-align: center;
    }
}
