.c-road-moto {
    background-image: url('/cache/files/cd492abe134e1d3df1f0893fc8c845fc89a79f62.svg');
    height: 160px;
    width: 100%;
    background-size: contain;
    background-repeat: repeat-x;
    background-position: center;
}

.c-directions-box {
    display: flex;
    flex-direction: row;
    margin-top: 50px;
    border-radius: 20px;
    overflow: hidden;
}

.c-directions-map {
width: 100%;
}
.c-directions-map iframe {
width: 100%;
height: 350px;
}


.c-location-box {
    min-width: 280px;
    background-color: #ececec;
    padding: 40px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-size: 22px;
    font-weight: 800;
}


.c-location-from, .c-location-to {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.c-location-from::before {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 3px solid #7e2fed;
    margin-right: 5px;
    margin-left: 2px;
}

.c-location-to::before {
    content: '';
    display: block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 3px solid #7e2fed;
    background-color: #7e2fed;
    margin-right: 5px;
}

.c-location-space {
    height: 50px;
    border-left: 2px dotted #7e2fed;
    margin-left: 8px;
}

@media (max-width: 990px) {
.c-road-moto {
    background-size: 160%;
}

.c-directions-box {
    flex-direction: column;
}

.c-location-box {
    flex-direction: row;
    padding: 15px 0 10px 0;
}

.c-location-space {
    border-left: 0px;
    position: relative;
    width: 50px;
    margin-right: 8px;
}

.c-location-space::before {
    content: '';
    position: absolute;
    display: block;
    width: 100%;
    height: 2px;
    border-bottom: 2px dotted #7e2fed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

}

.contactform {
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
    background-color: #eeeeee;
    padding: 30px 20px;
    border-radius: 20px;
    margin-bottom: 30px;
}

div.contactform form p {
    position: relative;
    max-width: 100%;
    width: 100%;
}

.contactform p.required input, .contactform p.required textarea, .contactform p.notrequired input, .contactform p.notrequired textarea {
    width: 100%;
    box-sizing: border-box;
    border: 0;
    border-radius: 10px;
}

div.contactform p label, div.thelogin p label {
    color: #7e2fed;
}

div.contactform .submit button {
    display: inline-block;
    text-decoration: none;
    background-color: #7e2fed;
    color: white;
    padding: 10px 20px;
    border-radius: 80px;
    font-size: 16px;
    font-weight: 900;
    transition: 0.5s;
    border: 0;
    background-color: #7e2fed;
    text-transform: uppercase;
    font-weight: 800;
}

.c-buttons-boxes {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

#contact-form {
    padding-top: 150px;
}