.problem {
  background: var(--background-1);
  padding-bottom: 2rem;
  padding-top: 1rem;
}

info {
  max-width: 50%;
  margin-left: 3rem;
  justify-content: center;
  flex-direction: column;
  display: flex;
}

info h1 {
  font-size: 3rem;
  line-height: 3rem;
  font-weight: bold;
}

info h2 {
  display: block;
  position: relative;
  margin-top: 2rem;
  font-size: 1.2rem;
}

info h2 b {
  font-weight: bold;
}

info address {
  display: none; /**/
  opacity: 0.5;
  margin-top: 1rem;
  font-size: 1.2rem;
}

mobile_car_wrapper {
  display: none;
}

car_wrapper {
  width: 300px;
  height: 324px;
  margin-top: 40px;
  position: relative;
  padding-bottom: 3rem;
  overflow: visible;
  border-top-left-radius: 64px;
  border-top-right-radius: 64px;
  border: 32px;
}

car_particle {
  position: absolute;
  width: 384px;
  height: 384px;
  border-top-left-radius: 64px;
  z-index: 100;
  margin-left: -32px;
  margin-top: 0px;
  background-image: linear-gradient(to bottom right, var(--text), #8f3a1d);
}

car {
  height: 400px;
  width: 520px;
  background-image: url(/images/car.png);
  background-position: right;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;

  z-index: 100;
  transform: rotateY(190deg) scale(1.1);
  margin-top: -6px;
  margin-left: -148px;
}

contact {
  width: fit-content;
  margin-top: 2rem;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  justify-content: space-between;
  background: var(--white);
  border-radius: 10px;
}

contact a {
  display: flex;
  color: var(--background-1);
  background: var(--text);
  padding: 1.1rem;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  border: 1px solid var(--text);
  transition: all 0.5s;
}

contact a:hover {
  background: var(--white);
  color: var(--text);
}

@media only screen and (max-width: 1280px) {
  .problem {
    padding-top: unset;
  }

  info {
    max-width: 100%;
    margin-left: 0rem;
    margin-right: 0rem;
  }

  info h1 {
    text-align: center;
    font-size: 2rem;
    line-height: 2rem;
  }

  info h2 {
    margin-top: 2rem;
    font-size: 1rem;
    text-align: center;
  }

  info address {
    margin-top: 1rem;
    font-size: 1.2rem;
  }

  contact {
    flex-direction: column;
    width: 100%;
  }

  contact a {
    width: 100%;
  }

  contact text {
    text-align: center;
  }

  mobile_car_wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    width: 100%;
    height: 100%;
  }

  mobile_car_particle {
    top: 2rem;
    position: absolute;
    display: block;
    width: 15rem;
    height: 15rem;
    border-radius: 100%;
    background-image: linear-gradient(to bottom right, var(--text), #8f3a1d);
  }

  mobile_car {
    position: relative;
    display: block;
    margin: 0 auto;
    margin-top: 2rem;
    width: 100%;
    height: 256px;
    background-size: contain;
    background-image: url(/images/car.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 10;
  }

  car_wrapper {
    display: none;
  }
}
