.ra-nb-component * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.ra-nb-component {
  width: 100%;
}
.ra-nb-component.content-component h2 {
  margin-bottom: 20px;
}
.ra-nb-component.content-component p {
  margin-bottom: 12px;
}
.ra-nb-component.services-component h2 {
  margin-bottom: 32px;
}
.ra-nb-component.services-component .services {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.ra-nb-component.services-component .services .service {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.ra-nb-component.services-component .services .service:nth-child(odd) {
  flex-direction: row;
}
.ra-nb-component.services-component .services .service:nth-child(even) {
  flex-direction: row-reverse;
}
.ra-nb-component.services-component .services .service img {
  width: 45%;
  height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
}
.ra-nb-component.services-component .services .service .text {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media only screen and (max-width: 1024px) {
  .ra-nb-component.services-component .services .service {
    gap: 12px;
  }
  .ra-nb-component.services-component .services .service:nth-child(odd) {
    flex-direction: column;
  }
  .ra-nb-component.services-component .services .service:nth-child(even) {
    flex-direction: column;
  }
  .ra-nb-component.services-component .services .service img {
    width: 100%;
    height: 300px;
  }
  .ra-nb-component.services-component .services .service .text {
    width: 100%;
  }
}
.ra-nb-component.about-component h2 {
  margin-bottom: 20px;
}
.ra-nb-component.about-component p {
  margin-bottom: 12px;
}
.ra-nb-component.drivingdirections-component {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.ra-nb-component.drivingdirections-component .iframe-wrapper {
  width: 49%;
  height: 300px;
}
@media only screen and (max-width: 1024px) {
  .ra-nb-component.drivingdirections-component {
    flex-direction: column;
    gap: 20px;
  }
  .ra-nb-component.drivingdirections-component .iframe-wrapper {
    width: 100%;
    height: 300px;
  }
}/*# sourceMappingURL=default_nb_components_styles.css.map */