html, body {
    width: 100%;
    height: 100%;
    overflow: auto;
}

.mobile {
    display: none;
}

header {
    height: 80px;
    border-bottom: 1px solid #DDD;
    display: block;
}

header section {
    height: 79px;
    width: 1166px;
    display: flex;
    justify-content: space-between;
    margin: auto;
    align-items: center;
}

header section nav a {
    font-family: 'GolSansDisplay';
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    color: #2B2B2B;
    text-decoration: none;
    margin-left: 12px;
    padding-bottom: 5px;
}

header section nav a i.icon-flag-right {
    display: none;
}

header section nav a:hover {
    text-decoration: none;
    border-bottom: 2px solid #ff5e00;
}

footer {
    height: 238px;
    display: block;
}

footer section.top {
    height: 131px;
    width: 1166px;
    border-top: 1px solid #DDDDDD;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

footer section.top div {
    display: flex;
    flex-direction: row;
    height: 100%;
    width: 203.84px;
    justify-content: space-between;
    align-items: center;
}

footer section.top div img {
    width: 78.84px;
    height: 32px;
}

footer section.top div small {
    font-family: 'GolSansDisplay';
    color: #767676;
    font-size: 12px;
    font-weight: 600;
    line-height: 13.75px;
}
footer section.top div small a{
    font-family: 'GolSansDisplay';
    color: #767676;
    font-size: 12px;
    font-weight: 600;
    line-height: 13.75px;
    text-decoration: none;
}
footer section.top div small a:hover{
    text-decoration: underline;
}

footer section.bottom {
    height: 106px;
    background-color: #2B2B2B;
    display: block;
    color: #FFF;
}

footer section.bottom article {
    width: 1166px;
    margin: auto;
    display: flex;
    flex-direction: row;
    height: 100%;
    align-items: center;
    justify-content: space-between;
}

footer section.bottom article div:first-child {
    width: 850px;
}

footer section.bottom article div:last-child {
    width: 214px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

footer section.bottom article div label {
    font-weight: 400;
    font-size: 14px;
    line-height: 25.2px;
    font-family: 'GolSansText';
    color: #FFF;
}

footer section.bottom article div small {
    font-weight: 600;
    font-size: 10px;
    line-height: 11.46px;
    font-family: 'GolSansDisplay';
}

div.wrapper {
    display: block;
    min-height: calc(100% - 419px);
    max-width: 1166px;
    margin: auto;
    padding: 50px 0;
}

div.wrapper nav.breadcrumb {
    width: 100%;
}

div.wrapper nav.breadcrumb ol {
    display: flex;
}

div.wrapper nav.breadcrumb ol li {
    margin: 0 5px 0 0;
}

div.wrapper nav.breadcrumb ol li a {
    font-family: 'GolSansText';
    font-weight: 400;
    font-size: 12px;
    line-height: 13.75px;
    color: #767676;
    text-decoration: underline;
}

div.wrapper nav.breadcrumb ol li::before {
    content: '>';
    margin-right: 5px;
    font-family: 'GolSansText';
    font-weight: 400;
    font-size: 14px;
    line-height: 12px;
    color: #767676;
}

div.wrapper nav.breadcrumb ol li:first-child:before {
    content: '';
    margin: 0;
}

div.wrapper nav.breadcrumb ol li:first-child a {
    text-decoration: none;
}

div.wrapper nav.breadcrumb ol li:first-child a:hover {
    text-decoration: underline;
}

@media (max-width: 1214px) {
    div.wrapper  {
        padding: 38px 24px;
    }

    header section {
        width: calc(100% - 48px);
        padding: 0 24px;
        height: 70px;
    }
    
    footer {
        width: 100%;
    }

    footer section.top {
        width: calc(100% - 48px);
        margin: auto;
    }

    footer section.bottom {
        width: 100%;
        margin: auto;
    }

    footer section.bottom article {
        width: calc(100% - 48px);
        padding: 0 24px;
    }

    footer section.bottom article div:first-child {
        width: 78%;
    }

    footer section.bottom article div:last-child {
        width: 18%;
    }

    picture img {
        max-width: 100%;
    }
}

@media (max-width: 983px) {
    .mobile {
        display: block;
    }

    header {
        width: 100%;
        height: 70px;
        position: fixed;
        background-color: #FFF;
        z-index: 1;
    }

    header section {
        width: calc(100% - 48px);
        padding: 0 24px;
        height: 70px;
    }

    header section img {
        width: 148.5px;
        height: 24px;
    }

    header section div a.open {
        cursor: pointer;
        display: block;
        background-image: url('../images/icons/icon-menu.png');
        width: 21px;
        height: 24px;
    }

    header section div a.close {
        cursor: pointer;
        display: block;
        background-image: url('../images/icons/icon-close.png');
        width: 16.85px;
        height: 16.86px;
    }

    header section nav {
        position: absolute;
        top: 71px;
        background-color: white;
        display: none;
        flex-direction: column;
        width: calc(100% - 64px);
    }

    header section nav a {
        font-size: 14px;
        line-height: 16.04px;
        font-weight: 600;
        color: #2B2B2B;
        border-bottom: 1px solid #E5E5E5;
        margin: 18px;
        padding-bottom: 5px;
    }

    header section div a.open {
        display: block;
    }

    header section div a.close {
        display: none;
    }

    header.open {
        height: 100%;
        overflow: auto;
    }

    header.open section {
        border-bottom: 1px solid #DDD;
    }

    header.open section nav {
        display: flex;
    }

    header.open section nav a i{
        height: 10px;
        width: 6.36px;
        margin-left: 6px;
        display: inline;
    }

    header.open section nav a:hover {
        border-bottom: 1px solid #DDD;
    }

    header.open section div a.open {
        display: none;
    }

    header.open section div a.close {
        display: block;
    }

    footer {
        height: 428px;
    }

    footer section.top {
        width: calc(100% - 48px);
        margin: auto;
    }

    footer section.top div {
        flex-direction: column;
        justify-content: center;
    }
    footer section.top div small {
        margin-bottom: 8px;
    }

    footer section.bottom {
        height: 296px;
        width: 100%;
    }

    footer section.bottom article {
        width: calc(100% - 48px);
        padding: 0 24px;
        flex-direction: column;
        justify-content: space-evenly;
    }

    footer section.bottom article div:first-child {
        width: 100%;
    }

    footer section.bottom article div:last-child {
        width: 214px;
    }

    div.wrapper {
        display: block;
        margin-top: 71px;
        min-height: calc(100% - 499px);
    }
}

@media (max-width: 575px) {
    picture img {
        margin: 0 0 0 -24px;
        max-width: calc(100% + 48px);
    }

    picture.banner img {
        margin: 0;
        width: 100%;
    }
}