.header {
    width: 100%;
    margin: 0;
    background-image: url('img/utp-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}
.header-links {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: absolute;
    top: 100px;
    animation: header-links 2s;
}
.header-links > a {
    padding-left: 60px;
    color: white;
    font-weight: 700;
    font-size: 18px;
    padding-top: 7px;
    padding-bottom: 7px;
    background-repeat: no-repeat;
    background-size: contain;
    margin-bottom: 15px;
}
.header > p {
    color: white;
    text-transform: uppercase;
    position: absolute;
    animation: header-desc 1s;
}
.header-tel {
    background-image: url('../../others/symbols/mobile-white.png');
}
.header-telegram {
    background-image: url('../../others/symbols/tg-white.png');
}
.header-whatsApp {
    background-image: url('../../others/symbols/whatsApp-white.png');
}
.header-mail {
    background-image: url('../../others/symbols/mail-white.png');
}
@keyframes header-links {
    from{
        opacity: 0;
    }
    to{
        opacity: 1;
    }
}
@media(min-width:1060px) {
    .header > p {
        left: 10%;
    }
    .header-links {
        right: 10%;
    }
    @keyframes header-desc {
        from {
            left: -50%;
        }
        to {
            left: 10%;
        }
    }
}
@media(min-width:715px) and (max-width:1059px) {
    .header > p {
        left: 4%;
    }
    .header-links {
        right: 4%;
    }
    @keyframes header-desc {
        from {
            left: -50%;
        }
        to {
            left: 4%;
        }
    }
}
@media(min-width:901px) {
    .header > p {
        font-size: 40px;
    }
}
@media(min-width:570px) and (max-width:900px) {
    .header > p {
        font-size: 28px;
    }
}
@media(min-width:715px) {
    .header > p {
        top: 150px;
    }
    .header {
        height: 300px;
    }
}
@media(max-width:714px) {
    .header {
        height: 360px;
    }
    .header > p {
        left: 10%;
        top: 80px;
        margin: 0;
    }
    .header-links {
        left: 20%;
        top: 140px;

    }
}
@media(max-width:569px) {
    .header > p {
        font-size: 22px;
    }
    #desctop-menu {
        display: none;
    }

}