*, ::after, ::before {
    box-sizing: border-box;
}
body, html {
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #fff;
    position: relative;
    height: 100%;
}
body {
    font-family: "Open Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}
.p-0 {
    padding: 0;
}
.mt-0 {
    margin-top: 0;
}
.mb-0 {
    margin-bottom: 0;
}
.d-flex {
    display: flex;
}
.justify-content-between {
    justify-content: space-between;
}
.list-unstyled {
    list-style-type: none;
}
.align-items-center {
    align-items: center;
}
.header-info {
    align-items: center;
    grid-gap: 10px;
    margin-top: 10px;
}
header p {
    grid-gap: 35px;
    display: flex;
    align-items: center;
}
.wrapper {
    max-width: 1170px;
    padding-left: 15px;
    padding-right: 15px;
    margin: 0 auto;
}
img {
    vertical-align: top;
}
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.7);
    z-index: 3;
    padding: 10px 0;
    box-sizing: border-box;
}
.hero {
    width: 100%;
    height: 100%;
    background-image: url("../images/sky.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    overflow-x: hidden;
    background-position: center;
}
@keyframes moveBackground {
    100% { transform: translateX(-100000px); }
}
@keyframes city {
    100% { transform: translateX(-100000px); }
}
@keyframes car {
    100% {
        transform: translateY(-1px);
    }
    50% {
        transform: translateY(1px);
    }
    0%{
        transform: translateY(-1px);
    }
}
.road {
    width: 100000px;
    height: 200px;
    background-image: url("../images/road.jpg");
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
    background-repeat: repeat-x;
    animation: moveBackground 800s linear infinite;

}
.city {
    width: 100000px;
    height: 250px;
    background-image: url("../images/city.png");
    position: absolute;
    bottom: 200px;
    left: 0;
    right: 0;
    z-index: 1;
    background-repeat: repeat-x;
    animation: city 1000s linear infinite;
}
.road-line:nth-child(2) {
    animation-delay: 0.5s;
}
.road-line:nth-child(3) {
    animation-delay: 1s;
}
.car:before {
    content: "";
    height: 120px;
    width: 120px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 157px;
    background-image: url(../images/hitrack-map.svg);
    margin-left: -29px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.car {
    width: 445px;
    left: 50%;
    bottom: 100px;
    position: absolute;
    transform: translateX(-50%);
    z-index: 2;
}
.car img {
    max-width: 100%;
    animation: car 1s linear infinite;
}
.wheel {
    left: 50%;
    bottom: 178px;
    transform: translateX(-50%);
    position: absolute;
    z-index: 2;
}
.wheel img {
    width: 72px;
    height: 72px;
    animation: rotateWheel 1.5s linear infinite;
}
.back-wheel {
    left: -165px;
    position: absolute;
}
.front-wheel {
    left: 103px;
    position: absolute;
}
@keyframes rotateWheel {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.home-banner-text {
    padding: 150px 15px 0;
    text-align: center;
}
.home-banner-text h1 {
    font-family: 'ArTarumianErevanU';
    text-transform: uppercase;
    position: relative;
    z-index: 4;
    color: #00376e;
    font-size: 30px;
}
.header-info a{
    font-size: 20px;
    color: #000;
    text-decoration: none;
}
.copyright {
    position: absolute;
    bottom: 10px;
    color: #fff;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    font-size: 13px;
    white-space: nowrap;
}

@media only screen and (max-width: 768px){
    .car {
        width: 300px;
    }
    .wheel img {
        width: 47px;
        height: 47px;
    }
    .wheel {
        bottom: 150px;
    }
    .back-wheel {
        left: -111px;
    }
    .front-wheel {
        left: 70px;
    }
    .car:before {
        content: "";
        height: 85px;
        width: 95px;
        bottom: 106px;
        margin-left: -17px;
    }
    .home-banner-text h1 {
        font-size: 20px;
    }
    .header-info a {
        font-size: 18px;
    }
    header p {
        grid-gap: 10px;
    }
}