.content {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10% 0 10% 0;
}

.content p strong {
    display: flex;
    justify-content: center;
    font-size: 2rem;
    color: rgb(50, 50, 50);
    margin-bottom: 2%;
}

.background {
    width: 100%;
    height: auto;
    background-color: rgba(127, 127, 127, 0.2);
    padding: 10% 0 10% 0;
}

.slider-mods {
    width: 100%;
    height: auto;
    overflow: hidden;
    position: relative;
}

.slider-mods-group {
    width: 100%;
    height: 100%;
    position: absolute;
}

.imgs-mods {
    position: absolute;
    display: none;
    opacity: 0;
    width: 100%;
    height: 100%;
    transition: opacity 0.5s;
}

.imgs-mods:first-child {
    opacity: 1;
    display: block;
}

.img-mods-text {
    width: 100%;
    height: auto;
    background-color: rgba(150, 150, 150, 0.2);
    padding: 1rem;
    color: rgb(50, 50, 50);
    font-weight: 600;
}

.img-mods-text p {
    margin: 0;
}

.arrow_pos {
    display: flex;
    justify-content: center;
    align-items: center;
}

#arrow_left,
#arrow_right {
    font-size: 4rem;
    color: rgba(50, 50, 50, 0.7);
}

#arrow_left {
    margin-left: 60%;
}

#arrow_right {
    margin-right: 60%;
}

#arrow_left:hover,
#arrow_right:hover {
    color: rgba(50, 50, 50, 0.9);
    cursor: pointer;
    transition: 0.3s;
}

@media screen and (max-width: 600px) {
    .content p strong {
        font-size: 1.2rem;
    }

    #arrow_left,
    #arrow_right {
        font-size: 2rem;
    }
}

.road {
    width: 100%;
    height: 1000px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10rem;
    background-image: url(../img/bannerRoad.png);
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
	overflow:visible;
}

.carR {
    width: 400px;
    height: 350px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    animation-duration: 5s;
    animation-iteration-count: infinite;
}

.carL {
    width: 400px;
    height: 350px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    position: absolute;
    top: 68%;
    transform: translateY(-50%);
    animation-duration: 15s;
    animation-iteration-count: infinite;
}

.car-left {
	background-image: url(../img/LMcd.png);
    left: 100;
    animation-name: moveCarLeft;
}

.car-right {
	background-image: url(../img/RMcd.png);
    right: 100;
	animation-name: moveCarRight;
}

@keyframes moveCarLeft {
    0% {
		left: 100%;
    }
    100% {
		left: -100%;
    }
}

@keyframes moveCarRight {
    0% {
		right: 100%;
    }
    100% {
		right: -100%;
	}
}

.faster h2{
	font-family: "Barlow", sans-serif;
	font-size: 80pt;
	text-align: center;
}
