body {
    overflow-y: scroll;
    margin: 0 auto;
    max-width: 1280px
}

#logo {
    margin-top: -0.5vw;
    max-width: 15%;
}

footer a {
    text-decoration: none;
}

.background-image {
    overflow: hidden;
    position: fixed;
    opacity: 0.4;
    top: 175px;
    right: -50vmax;
    transform: translate(50%, 50%);
    width: 100vmax;
    height: 100vmax;
    z-index: -1;
    animation: rotateBackground 100s linear infinite;
}

@keyframes rotateBackground {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


.parallax_img {
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    background-image: url(/images/stbasils.jpg);
    height: 20vw;
}

.footer-links {
    text-align: right;
}

@media (max-width: 576px) {

    .footer-contact-info,
    .footer-links {
        margin-bottom: 20px;
        text-align: center;
    }
}

.welcome_img {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 20% 100%);
    height: 100%;
    object-fit: cover;
    width: 100%;
    border-top-right-radius: .5rem;
    border-bottom-right-radius: .5rem;
}

@media screen and (max-width:767.5px) {
    .welcome_img {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
        margin-top: 1em;
        border-radius: 0;
    }

    #logo {
        margin-top: -0.5vw;
        max-width: 20%;
    }
}

.main__call {
    background-color: rgba(0, 0, 0, .3);
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    color: white;
    text-decoration: none;
    font-size: calc(30px + 2.5vw);
    padding-left: 3vh;
    transition: .4s ease;
}

.main__call:hover {
    color: white;
    background-color: rgba(0, 0, 0, .7);
}

.welcome_text {
    font-size: 1.15em;
    padding-left: 2vw;
}

@media screen and (min-width:1700px) {
    .welcome_text {
        font-size: 1.35em;
        padding-left: 0vw;
    }
}