@media screen and (max-width:767px) {
    .projects-section {
        padding: 0rem 0 3rem 0;
    }
}

.kv-info {
    position: absolute;
    right: .5vw;
    bottom: .5vw;
    color: #7aa7b5;
    text-align: right;
    font-size: 10px;
}

.section-main {
    overflow: hidden;
    position: relative;
    background-image: url(../img/bg/bg-main.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
}

.section-main .block {
    margin: auto;
    width: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.section-main .block .kv-txt {
    position: relative;
    top: 10vw;
    width: 100%;
    max-width: 100%;
    height: auto;
}

.section-main .block .kv-car {
    position: relative;
    bottom: -12vw;
    width: 100%;
    max-width: 100%;
    height: auto;
}

.arrows-block {
    position: relative;
    margin: 0 auto;
    bottom: 1.5vw;
}

.arrows {
    width: 20px;
    height: 20px;
}

.arrows::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-left: 3px solid rgba(0, 0, 0, 0.8);
    border-bottom: 3px solid rgba(0, 0, 0, 0.8);
    transform: rotate(-45deg);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0)rotate(-45deg);
    }
    40% {
        transform: translateY(-15px)rotate(-45deg);
    }
    60% {
        transform: translateY(-5px)rotate(-45deg);
    }
}

@media screen and (max-width:767px) {
    .section-main {
        background-image: url(../img/bg/bg-main-m.png);
        background-size: cover;
        height: 85vh;
    }
    .section-main .block {
        height: 85vh;
        justify-content: flex-end;
    }
    .section-main .block .kv-txt {
        top: 20vw;
    }
    .section-main .block .kv-car {
        bottom: -25vw;
    }
    .arrows-block {
        bottom: 5vw;
    }
    .kv-info {
        font-size: 8px;
    }
}

@media screen and (max-width:600px) {
    .section-main .block .kv-txt {
        top: 15vw;
    }
    .section-main .block .kv-car {
        bottom: -20vw;
    }
    .arrows-block {
        bottom: 7vw;
    }
}


/* body {
    position: relative;
    width: 100dvw;
    min-height: 100dvh;
} */


/* body::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../img/bg/bg-main.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1;
    opacity: 1;
} */