/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: last 4 version
*/

.header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 20px 0 0;
    overflow-x: hidden;
}

@media (max-width :  768px) {
    .header {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-flow: column;
                flex-flow: column;
        -ms-flex-direction: column;
            flex-direction: column;
        gap: 20px 0;
    }
}

.header__logo-link {
    width: 286px;
    height: auto;
    padding: 0 0 0 20px;
}

@media (max-width :  1024px) {
    .header__logo-link {
        width: 200px;
    }
}

.header__logo {
    width: 100%;
    /* height: 100%; */
    display: block;
}

.header__address {
    font-style: normal;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    gap: 20px 0;
}

@media (max-width :  1024px) {
    .header__address {
        gap: 15px 0;
    }
}

.header__address-phone-link {
    text-decoration: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0 10px;
}

.header__address-phone-icon {
    width: 18px;
    height: auto;
}

.header__address-phone {
    font-family: 'PT Sans Bold', 'Arial', sans-serif;
    font-size: 16px;
    line-height: 150%;
    font-weight: 700;
    color: #000000;
}

@media (max-width :  1024px) {
    .header__address-phone {
        font-size: 14px;
    }
}

@media (max-width :  768px) {
    .header__address-phone {
        font-size: 16px;
    }
}

.header__address-location-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0 10px;
}

.header__address-location-icon {
    width: 18px;
    height: auto;
}

.header__address-location {
    font-family: 'PT Sans Bold', 'Arial', sans-serif;
    font-size: 16px;
    line-height: 150%;
    font-weight: 700;
}

@media (max-width :  1024px) {
    .header__address-location {
        font-size: 14px;
    }
}

@media (max-width :  768px) {
    .header__address-location {
        font-size: 16px;
    }
}

.header__button {
    width: 226px;
    height: 50px;
    font-family: 'PT Sans Bold', 'Arial', sans-serif;
    font-size: 16px;
    line-height: 150%;
    font-weight: 700;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    color: #ffffff;
    background: #DE1010;
    border: none;
    border-radius: 50px;
    padding: 0;
    margin: 0 20px 0 0;
    cursor: pointer;
}

@media (width > 1024px) {
    .header__button:hover {
        color: #715f00;
        background: rgba(255,222,65,1);
    }
}

@media (max-width :  1024px) {
    .header__button {
        width: 200px;
        height: 45px;
        font-size: 14px;
    }
}

@media (max-width :  768px) {
    .header__button {
        width: 230px;
        height: 50px;
        font-size: 16px;
    }
}

.header__navigation {
    width: 100%;
    height: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background: rgba(255,222,65,1);
    padding: 0 20px;
    margin: 20px 0 0;
}

@media (max-width :  768px) {
    .header__navigation {
        height: auto;
        padding: 20px 0;
    }
}

.header__navigation-list {
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0 65px;
    padding: 0;
    margin: 0;
}

@media (max-width :  1024px) {
    .header__navigation-list {
        width: 100%;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
        gap: 0;
    }
}

@media (max-width :  768px) {
    .header__navigation-list {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-flow: column;
                flex-flow: column;
        -ms-flex-direction: column;
            flex-direction: column;
        gap: 20px 0;
    }
}

.header__navigation-item {

}

.header__navigation-item-link {
    font-family: 'PT Sans Semi Bold', 'Arial', sans-serif;
    font-size: 16px;
    line-height: 150%;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    display: block;
    color: #715f00;
}

@media (max-width :  1024px) {
    .header__navigation-item-link {
        font-size: 14px;
    }
}

.header__navigation-item:hover .header__navigation-item-link {
    color: #000000;
}