.header__link {
    color: #ffffff;
    text-decoration: none;
    border: 1px solid #ffffff;
    border-radius: 4px;
    padding: 5px;
}

.header__link:hover {
    text-decoration: none;
}

.header__link:active {
    text-decoration: none;
}
.menu-header__burger{
    display: none;
}
.burgericon {
    z-index: 20;
    position: relative;
    display: none;
    width: 26px;
    height: 20px;
    cursor: pointer;
}

.burgericon span {
    position: absolute;
    top: 10px;
    right: 0;
    width: 100%;
    height: 2px;
    background-color: #fff;
    -webkit-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
}

.burgericon::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #fff;
    -webkit-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
}

.burgericon::after {
    content: "";
    position: absolute;
    top: 20px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #fff;
    -webkit-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
}

.burgericon.active {
    z-index: 30;
    position: relative;
    cursor: pointer;
}

.burgericon.active span {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 5px;
    -webkit-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
}

.burgericon.active::before {
    height: 0;
}

.burgericon.active::after {
    top: 5px;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
}
.burger {
    opacity: 0;
    visibility: hidden;
    position: fixed;
    z-index: 5;
    top: 77px;
    width: 100%;
    height: 100%;
    background-color: rgba(59, 67, 76, 0.8941176471);
    overflow: auto;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.burger__container {
    max-width: 320px;
    margin: 0 auto;
    position: relative;
}

.burger__navigation {
    position: relative;
    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-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
    margin-bottom: 110px;
}

.burger__item {
    text-decoration: none;
    color: #fff;
    text-transform: uppercase;
}

.burger__item:hover {
    color: #25abe0;
    text-decoration: none;
}

.burger__social {
    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;
    gap: 20px;
}

.burger__link {
    width: 43px;
    height: 43px;
}

.burger.active {
    opacity: 1;
    visibility: visible;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

body.notactive {
    overflow: hidden;
}

.footer__links{
    display: flex;
    margin-top: 10px;
    gap: 15px;
    padding: 5px 0px;

}
.footer__link{
    color: #ffffff;
    /*text-align: center;*/
    width: 100px;
}
.footer__link:hover{
    text-decoration: underline;
    color: #ffffff;
}
.footer__link:active{
    text-decoration: none;
    color: #FFFFFF;
}
.links-line{
    flex-wrap: nowrap;
}
.link-line{
    padding: 0 10px;
}

.link-line:not(:last-child){
    border-right: 1px solid #ffffff;
}

.menu__links{
   display: flex;
    gap: 20px;
}
.menu__link{
    padding: 5px;
    color: #ffffff;
}
.menu__link:hover{
    color: #ffffff;
}
@media (max-width: 972px) {
    .footer__links{
        flex: 1 1 100%;
        flex-direction: column;
    }
    .links-line{
        flex-direction: row;
        gap: 0;
    }
    .link-line{
        text-align: center;
        width: auto;
        margin-top: 10px;
        padding: 0 5px

    }
}

@media (max-width: 1024px) {
    .menu__links{
        display: flex;
        gap: 15px;
    }
}
@media (max-width: 870px) {
    .menu__links{
        display: flex;
        gap: 10px;
    }
}
@media (max-width: 830px) {
    .header__menu{
        display: flex;
        flex-direction: column-reverse;
        gap: 10px;
    }
    .js{
        align-self: flex-end;
    }
}
@media (max-width: 768px) {
    .menu__links{
        display: none
    }
    .burgericon{
        display: block;
    }
    .header__menu{
        flex-direction: row;
        gap: 10px;
    }
}
