/*---:[ main css ]:---*/

html, body {
    background-color: #000;
    font-family: -apple-system, B linkMacSystemFont, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
}
p {
    font-family: Arial;
    color:#fff;
 
}
p.small {
  line-height: 0;
}

p.uppercase {
  text-transform: uppercase;
}

img {
  width: 100%;
  height: auto;
}

img logo {
  width: 100%;
  max-width: 400px;
  height: auto;
}

a:link {
    color: #ff940b;
  text-decoration: none;
}

/* visited link */
a:visited {
    color: #ff940b;
}

/* mouse over link */
a:hover {
  color: #fff;
  background-color: transparent;
  text-decoration: none;
}

/* selected link */
a:active {
    color: #ff940b;
}

a[href^=tel] {
text-decoration:inherit;
color: inherit;
}

 .center {
    position: absolute;
    top:0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 50%;
    text-align: center;
    font-size: 18px;
    color: #fff;
 }
 .content {
    text-align: center;
    color: #fff;
 }

 .car {

    text-align: center;
    background-color: #675a4e52;
    border-style: solid;
    border-width: 5px;
    border-color: black;
 }
 .details {
    text-align: center;
    padding: 5px 5px 5px 5px;
 }

 h1 {
      display:inline-block;
      position:relative;
      font-weight: 500;
      margin-top: 1rem;
      margin-bottom: 5px;
      font-size: 1.3rem;
      color:#fff;
      text-transform: uppercase;
}
 h2 {
      display:inline-block;
      position:relative;
      font-weight: 400;
      margin-top: 1rem;
      margin-bottom: 0;
      font-size: 1rem;
      color:#fff;
      text-transform: uppercase;
}
 h3 {
      display:inline-block;
      position:relative;
      font-weight: 400;
      margin-top: 1rem;
      margin-bottom: 5px;
      font-size: 1.4rem;
}
  .title2 {
      font-weight: 500;
      font-size: 1.3rem;
      margin-bottom: 5px;
}   
  .title1 {
      display: none;
}
.button {
  display: inline-block;
  border-radius: 10px;
  background-color: #f4511e;
  border: none;
  color: #FFFFFF;
  text-align: center;
  font-size: 28px;
  padding: 20px;
  transition: all 0.5s;
  cursor: pointer;
  margin: 5px;
}

.button span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
}

.button span:after {
  content: '\00bb';
  position: absolute;
  opacity: 0;
  top: 0;
  right: -20px;
  transition: 0.5s;
}

.button:hover span {
  padding-right: 25px;
}

.button:hover span:after {
  opacity: 1;
  right: 0;
}   

@media only screen and (max-width: 600px) {
  .center {
    position: relative;
    width: 500px;
    font-size: 14px;
    padding-left: 15px;
    padding-right: 15px;
  }

@media only screen and (max-width: 400px) {
  .center {
    position: relative;
    width: 300px;
    font-size: 14px;
    padding-left: 15px;
    padding-right: 15px;
  }

img {
  max-width: 300px;
 }
}