@import url(//fonts.googleapis.com/css2?family=Oswald:wght@400;600&display=swap);

.wrapper {
    padding-top: 14.6rem;
}

.site-header {
    display: block;
    width: 100%;
    height: auto;
    padding: 0;
    box-sizing: border-box;
    z-index: 5000;
    position: fixed;
    top: 0;
    left: 0;
    transition: background-color .3s ease-in-out;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.site-header.is-white.has-animation {
    background: #fff;
}

.site-header.is-white {
    background: #fff;
    border-bottom: none;
}

.site-header .site-header-container {
    position: relative;
    width: 100%;
    box-sizing: border-box;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 0 0 1rem;
    height: 6.6rem;
}

.site-header-search-wrapper {
    background: var(--global--color-bg-secondary);
    box-shadow: 0 2px 6px 0 rgba(0, 0, 0, .1) inset;
    position: relative;
}

.lang-switcher .lang-switcher__toggle,
body.front-page .lang-switcher .lang-switcher__toggle,
.site-navigation.is-white .site-menu-item__link {
    color: var(--global--color-default);
}

.lang-switcher .lang-switcher__icon path,
body.front-page .lang-switcher .lang-switcher__icon path {
    transition: all .2s ease-in-out;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    fill: var(--global--color-default);
}

.site-header-search-wrapper {
    background: var(--global--color-bg-secondary);
    box-shadow: 0 2px 6px 0 rgba(0, 0, 0, .1) inset;
    position: relative;
}

.site-header-search {
    box-sizing: border-box;
    padding: .8rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: var(--alignwide-width);
    margin: 0 auto;
    gap: 5px;
}

.site-header-search .site-header-search-label {
    font-size: 14px;
    font-weight: 700;
    color: #132a4e;
    white-space: nowrap;
    margin: 0;
}

.site-header-search .site-header-search-form {
    width: 100%;
    position: relative;
    box-sizing: border-box;
}

.site-header-search .site-header-search-field {
    -webkit-appearance: none;
    border: 1px solid var(--global--color-border);
    border-radius: 5px;
    background: #fff;
    width: 100%;
    font-size: 16px;
    line-height: 1.5;
    color: var(--global--color-default);
    padding: 1.1rem 6rem 1.1rem 2.4rem;
}

.site-header-search .site-header-search-field:placeholder-shown {
    color: #ccc;
}

.site-header-search .site-header-search-submit {
    box-sizing: border-box;
    position: absolute;
    display: block;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    margin: auto;
    -webkit-appearance: none;
    border: none;
    background: none;
    border-radius: 0 5px 5px 0;
    height: 100%;
    aspect-ratio: 1 / 1;
    background: url(../images/icon_search_white.svg) #132a4e no-repeat center center;
    cursor: pointer;
    transition: all .2s ease-in-out;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.model-search-alert {
    transition: all .2s ease-in-out;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    background-color: #f4db1e;
    display: inline-block;
    position: absolute;
    left: 0;
    font-weight: 400;
    font-size: var(--global--font-size-xs);
    line-height: 1.77;
    color: var(--global--color-default);
    text-align: center;
    border-radius: 5px;
    white-space: nowrap;
    padding: .8rem 1rem;
    box-sizing: border-box;
    opacity: 0;
    z-index: -1;
    visibility: hidden;
    top: -4rem;
}

.model-search-alert:after {
    content: "";
    position: absolute;
    bottom: -1rem;
    left: 0;
    right: 0;
    width: 0;
    height: 0;
    margin: 0 auto;
    border-style: solid;
    border-width: 10px 10px 0 10px;
    border-color: #f4db1e rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) rgba(0, 0, 0, 0);
}

.model-search-alert.is-active {
    opacity: 1;
    z-index: 100;
    visibility: visible;
    top: -5.7rem;
}

@media print, only screen and (min-width: 1280px) {
    .site-menu-item.has-menu-contact .site-menu-item__link {
        transition: all .2s ease-in-out;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        background: var(--global--color-sub);
        color: #fff;
        width: 14.5rem;
    }
}

@media print, only screen and (min-width: 961px) {
    .pc-break {
        display: block;
    }

    .site-header .site-header-container {
        height: 8rem;
    }

    .site-header-search {
        max-width: 680px;
        padding: 1.2rem 0;
        flex-direction: row;
        gap: 10px;
    }

    .site-header-search .site-header-search-label {
        font-size: 16px;
    }

    .wrapper:not(.is-front) {
        padding-top: 15.2rem;
    }
}
