html {
    box-sizing: border-box;
}

*,
*::before,
*::after {
    box-sizing: inherit;
}

body {
    min-width: 320px;
    background-color: #F5F5F5;
    font-family: 'Roboto Condensed';
    color: #03A6FD;
    font-size: 20px;
    font-weight: 500;
}
h1 { text-align: center; margin: 0; padding: 0; }
.container {
    padding: 0 20px;
}

.svg {
    height: 25px;
    width: 25px;
    fill: #03A6FD;
    margin-right: 10px;
}

.svg:active,
.svg:hover {
    opacity: 0.2;
    transition: all 0.3s ease;
}

.main {
    margin-top: 50px;
}

.section {
    min-height: 300px;
    background-color: #F5F5F5;
}

.section--blue {
    background-color: #03A6FD;
}

.section--grey {
    background-color: #DCDCDC;
}
/*! Header start */
.header {
    position: fixed;
    width: 100%;
    left: 0;
    top: 0;
    background-color: #FFF;
    border-bottom: 1px solid rgba(196, 196, 196, 0.6);
    z-index: 10;
}

.header__inner {
    display: flex;
    align-items: center;
    min-height: 50px;
}
/*! Header end */
.notice {
    min-height: 120px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f876bc;
    padding: 15px 35px 15px 35px;
}

.notice__text {
    color: #ffffff;
    text-align: center;
    font-size: 24px;
    font-weight: 500;
    line-height: 1.5;
    padding: 5px;
    overflow: hidden;
}

.menu {
    background-color: #fff;
    height: 100%;
}
