.m-open-btn {
    display: none;
    position: relative;
    width: 25px;
    height: 14px;
    -webkit-box-flex: 1;
    -ms-flex: 1 0 100%;
    flex: 1 0 100%;
    max-width: 25px;
}

    .m-open-btn:before {
        content: '';
        display: block;
        width: 100%;
        height: 100%;
        border-top: 2px solid #357875;
        border-bottom: 2px solid #357875;
    }

    .m-open-btn:after {
        content: '';
        display: block;
        width: 100%;
        height: 2px;
        background-color: #357875;
        position: absolute;
        top: 50%;
        left: 0;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
    }

.m-close-btn {
    width: 15px;
    height: 15px;
    position: absolute;
    top: 28px;
    left: 26px;
}

    .m-close-btn:before,
    .m-close-btn:after {
        content: '';
        display: block;
        width: 100%;
        height: 2px;
        background-color: #fff;
        position: absolute;
        top: 50%;
    }

    .m-close-btn:before {
        -webkit-transform: translateY(-50%) rotate(-45deg);
        -ms-transform: translateY(-50%) rotate(-45deg);
        transform: translateY(-50%) rotate(-45deg);
    }

    .m-close-btn:after {
        -webkit-transform: translateY(-50%) rotate(45deg);
        -ms-transform: translateY(-50%) rotate(45deg);
        transform: translateY(-50%) rotate(45deg);
    }

.main-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    z-index: 9998;
    background: #fff;
}

    .main-header.fixed {
        min-height: 92px;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        -webkit-box-shadow: 0 20px 40px 0 rgba(0, 0, 0, 0.07);
        box-shadow: 0 20px 40px 0 rgba(0, 0, 0, 0.07);
    }

.header-logo-container {
    padding-left: 44px;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    min-width: 300px;
    -ms-flex: 1 1 300px;
    flex: 1 1 300px;
    /* flex: 1 1 100%; */
}

.header-logo {
    display: block;
    padding-right: 20px;
    max-width: 410px;
}

.header-nav-section {
    padding-right: 27px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: #269e75;
    max-width: 1030px;
    width: 100%;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.header-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-right: 80px;
}

.header-nav-item {
    margin-left: 44px;
}

.header-nav-link {
    display: inline-block;
    font-size: 16px;
    padding: 40px 0 30px;
    font-weight: 500;
    text-decoration: none;
    border-bottom: 4px solid transparent;
    color: rgba(255, 255, 255, 0.7);
    -webkit-transition: color 0.35s ease;
    -o-transition: color 0.35s ease;
    transition: color 0.35s ease;
}

.non-touch .header-nav-link:hover {
    color: #fff;
}

.header-nav-link.selected {
    border-color: #fff;
}

.header-search {
    display: block;
    position: relative;
    margin-right: 17px;
    width: 44px;
    height: 44px;
    border: 2px solid #fff;
    border-radius: 50%;
}

    .header-search > img {
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        margin: auto;
    }

.notifier {
    position: absolute;
    top: -4px;
    right: -7px;
    display: inline-block;
    min-width: 20px;
    height: 20px;
    line-height: 17px;
    color: #fff;
    background-color: #dd052b;
    font-size: 10px;
    font-weight: 600;
    border-radius: 10px;
    padding: 2px;
    text-align: center;
}

.logo-2 {
    margin: 0 10px;
}

.header-logo img {
    width: 100%;
    /* margin-left: 20px; */
}

/* Language header */
.header-language {
    margin-left: auto;
    margin-right: 30px;
    position: relative;
}

.language__current {
    color: #424242;
    font-family: "Avenir Next";
    font-size: 12px;
    font-weight: 600;
    line-height: 16px;
    text-transform: uppercase;
    text-decoration: none;
    position: relative;
    padding-right: 10px;
    padding: 16px;
    display: block;
    z-index: 50;
    background: #fff;
}

    .language__current::after {
        content: '';
        height: 3px;
        width: 6px;
        background: url('../../images/icons/select-arrow.svg');
        display: inline-block;
        background-repeat: no-repeat;
        background-size: contain;
        vertical-align: middle;
        position: absolute;
        top: 50%;
        margin-top: -1.5px;
        right: 5px;
        -webkit-transition: -webkit-transform ease 0.4s;
        transition: -webkit-transform ease 0.4s;
        -o-transition: transform ease 0.4s;
        transition: transform ease 0.4s;
        transition: transform ease 0.4s, -webkit-transform ease 0.4s;
    }

.languages__list {
    position: absolute;
    left: 0px;
    right: 0;
    visibility: hidden;
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    transform: translateY(-100%);
    -webkit-transition: -webkit-transform ease 0.4s;
    transition: -webkit-transform ease 0.4s;
    -o-transition: transform ease 0.4s;
    transition: transform ease 0.4s;
    transition: transform ease 0.4s, -webkit-transform ease 0.4s;
}

    .languages__list a:first-of-type {
        padding-top: 0;
    }

    .languages__list a {
        color: #a0a0a0;
        font-family: "Avenir Next";
        font-size: 12px;
        font-weight: 600;
        line-height: 16px;
        padding: 16px;
        text-transform: uppercase;
        text-decoration: none;
        display: block;
    }

/* is open */
.is-open.header-language .languages__list {
    -webkit-transform: translateY(0%);
    -ms-transform: translateY(0%);
    transform: translateY(0%);
    background: #fff;
    visibility: visible;
    -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.07), 0 10px 20px rgba(0, 0, 0, 0.07);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.07), 0 10px 20px rgba(0, 0, 0, 0.07);
}

.is-open.header-language .language__current::after {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.is-open.header-language {
    -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.07), 0 10px 20px rgba(0, 0, 0, 0.07);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.07), 0 10px 20px rgba(0, 0, 0, 0.07);
}

/*end Language header */

@media only screen and (min-width: 940px) {
    .header-nav-section {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important;
        min-height: 92px;
    }
}

@media only screen and (max-width: 939px) {
    .header-language {
        display: none;
    }

    .m-open-btn,
    .m-close-btn {
        display: block;
    }

    /* .main-header.fixed {
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
	} */

    .main-header {
        display: block;
        background: #fff;
        -webkit-box-shadow: 0 20px 40px 0 rgba(0, 0, 0, 0.07);
        box-shadow: 0 20px 40px 0 rgba(0, 0, 0, 0.07);
        z-index: 9998;
    }

        .main-header.opened {
            bottom: 0;
            overflow-y: auto;
        }

            .main-header.opened .header-language {
                display: block;
                z-index: 150;
            }

            .main-header.opened .language__current {
                background: transparent;
                color: #fff;
            }

    .header-avatar-wrapper {
        /* margin: 0 -26px; */
        padding: 12px 0px 10px;
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
        width: 100%;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-flex: 0;
        -ms-flex: 0 1 auto;
        flex: 0 1 auto;
        justify-content: space-between;
    }

    .header-wrapper {
        min-height: 66px;
    }

    .header-logo-container {
        padding: 21px 25px;
        min-height: 66px;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        max-width: 100%;
        position: relative;
        z-index: 990;
        background: #fff;
        -webkit-transition: background ease 0.4s;
        -o-transition: background ease 0.4s;
        transition: background ease 0.4s;
    }

    .header-logo:first-of-type {
        margin-left: auto;
        padding-left: 20px;
        max-width: 235px;
    }

    .header-logo {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
        margin-left: 10px;
        padding-right: 0;
    }

    .header-nav {
        display: block;
        margin: 0;
        margin-bottom: auto;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-flex: 1;
        -ms-flex: 1 0 auto;
        flex: 1 0 auto;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        padding: 20px 0 0px;
        margin-bottom: 20px;
    }

    .is-open.header-language .language__current {
        background: #fff;
        color: #424242;
    }

    .header-language {
        margin-right: 0;
    }

    .language__current {
        padding-right: 30px;
    }

        .language__current::after {
            background-image: url('../../images/icons/select-arrow-white.svg');
            -webkit-transition: background ease 0.4s;
            -o-transition: background ease 0.4s;
            transition: background ease 0.4s;
        }

    .is-open.header-language .language__current::after {
        background-image: url('../../images/icons/select-arrow.svg');
    }
    /* header opened */
    .main-header.opened .header-logo:first-of-type {
        display: none;
    }

    .main-header.opened .m-open-btn::after,
    .main-header.opened .m-open-btn::before {
        display: none;
    }

    .main-header.opened .m-open-btn {
        width: 15px;
        height: 15px;
        max-width: 15px;
    }

        .main-header.opened .m-open-btn::before,
        .main-header.opened .m-open-btn::after {
            content: '';
            display: block;
            width: 100%;
            height: 2px;
            background-color: #fff;
            border: none;
            position: absolute;
            top: 50%;
        }

        .main-header.opened .m-open-btn::before {
            -webkit-transform: translateY(-50%) rotate(-45deg);
            -ms-transform: translateY(-50%) rotate(-45deg);
            transform: translateY(-50%) rotate(-45deg);
        }

        .main-header.opened .m-open-btn::after {
            -webkit-transform: translateY(-50%) rotate(45deg);
            -ms-transform: translateY(-50%) rotate(45deg);
            transform: translateY(-50%) rotate(45deg);
        }

    .main-header.opened .header-logo-container {
        background: #269e75;
        padding-bottom: 0;
    }
    /* header opened */
    .header-nav-section {
        width: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        /* display: block; */
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        padding: 60px 26px 0;
        z-index: 100;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        /* min-height: 100%; */
        /* height: 100%;
		max-height: 100%; */
        overflow: auto;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        -webkit-transform: translateY(-100%);
        -ms-transform: translateY(-100%);
        transform: translateY(-100%);
        -webkit-transition: -webkit-transform ease 0.4s;
        transition: -webkit-transform ease 0.4s;
        -o-transition: transform ease 0.4s;
        transition: transform ease 0.4s;
        transition: transform ease 0.4s, -webkit-transform ease 0.4s;
    }

    .main-header.opened .header-nav-section {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
        padding-top: 69px;
    }

    .m-close-btn {
        display: none;
    }

    .header-nav-item {
        margin: 0 0 20px;
    }

        .header-nav-item:last-child {
            margin-bottom: 0;
        }

    .header-nav-link {
        padding: 0;
        font-size: 26px;
        border: 0;
    }

    .header-search {
        /* position: absolute;
		width: 17px;
		height: 17px;
		right: 26px;
		top: 28px;
		border: 0;
		border-radius: 0;
		margin-right: 0; */
    }
}

@media only screen and (max-width:768px) {
    .header-nav-section {
        padding-top: 115px;
    }
}