.header {
    padding: 10px 0;
    background-color: #212121;
    position: relative;
    z-index: 2;
}

.header.fixed {
    position: fixed;
    z-index: 10;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
}

.header-col-left,
.header-col-right {
    width: 39.5%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
}

.header-col-left {
    padding-right: 15px;
}

.header-col-right {
    padding-left: 15px;
}

.header-col-center {
    width: 21%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .4s all;
}

.header-logotype {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.header-logotype svg {
    max-width: 98px;
	display: block;
	width: 100%;
	height: auto;
}

.other-page-header-logotype {
    display: block;
}
/*
.header.fixed .header-logotype {
    background-color: transparent;
    padding: 0;
    border-radius: 0;
    max-width: 98px;
    height: 100%;
    top: 0;
}*/

.header-email__link--mobile {
    display: none;
}

.header__email {
    color: #fff;
    padding-left: 3%;
    line-height: 1.9rem;
    font-size: 1.4rem;
}

.header__address,
.header__phone,
.header-email__link {
    line-height: 1.9rem;
    font-size: 1.4rem;
    color: #fff;
    text-decoration: none;
    display: inline-flex;
}

.header__address:hover,
.header__phone:hover {
    text-decoration: underline;
}

.header-email__link {
    text-decoration: underline;
}

.header-email__link:hover {
    text-decoration: none;
}

@media screen and (max-width: 1023px) {

    .header-col-right {
        flex-direction: column;
        align-items: flex-end;
    }

    .header-col-left,
    .header-col-right {
        align-items: center;
    }

}

@media screen and (max-width: 767px) {

    .header {
        padding: 13px  0;
    }

    .header-col-center {
        width: 60%;
    }

    .header-col-left,
    .header-col-right {
        width: 20%;
    }

    .header__phone,
    .header__email,
    .header__address {
        display: none;
    }

    .header__address {
        font-size: 0;
        display: block;
        width: 30px;
        height: 30px;
        background: url('/assets/images/header/location-icon.svg') no-repeat center center;
    }

    .header__phone {
        font-size: 0;
        display: block;
        width: 30px;
        height: 30px;
        background: url('/assets/images/header/phone-icon.svg') no-repeat center center;
    }

    .header-email__link--mobile {
        display: inline-block;
        font-weight: 400;
        font-size: 1.4rem;
        line-height: 1.9rem;
        color: #fff;
        opacity: 0.5;
        margin-top: 7px;
    }

    .header.fixed .header-logotype {
        max-width: 100%;
    }

}
