/* stylelint-disable */
/* stylelint-enable */
@font-face {
  font-family: "Kelson";
  src: url(/fonts/kelson_rg.otf?a65db02e1134a1f7b12213e94407702f);
  font-display: swap;
}
@font-face {
  font-family: "Kelson";
  font-weight: 300;
  src: url(/fonts/kelson_lt.otf?f83e36104dd5c8bf56c77387cc29800a);
  font-display: swap;
}
@font-face {
  font-family: "Kelson";
  font-weight: 600;
  src: url(/fonts/kelson_md.otf?652ca5cded91cf2aa53a815b67d270d4);
  font-display: swap;
}
* {
  padding: 0;
  margin: 0;
  font-family: "Kelson";
  accent-color: #B14344;
}

section * {
  z-index: 2;
}

a {
  cursor: pointer;
  text-decoration: none;
  color: #B14344;
}
a:hover {
  color: inherit;
}

body {
  background-color: #DADEDD;
  color: #606060;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.scroll-disabled {
  overflow: hidden;
}

.no-border-radius {
  border-radius: 0 !important;
}

.pretitle {
  color: #B14344;
  font-weight: bold;
  font-size: 14px;
}

.h1 {
  font-weight: bold;
  margin-bottom: 1.5rem;
}

.h2 {
  font-weight: bold;
  margin-bottom: 1.5rem;
}

.h3 {
  font-weight: bold;
  margin-bottom: 1.5rem;
}

.h4 {
  font-weight: bold;
  margin-bottom: 1.5rem;
}

.h5 {
  font-weight: bold;
  margin-bottom: 1.5rem;
}

.h6 {
  font-weight: bold;
  margin-bottom: 1.5rem;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: bold;
  margin-bottom: 1.5rem;
}
h1.title, h2.title, h3.title, h4.title, h5.title, h6.title {
  color: #B14344;
}

h2.title {
  font-size: 2.5rem;
}
@media screen and (max-width: 576px) {
  h2.title {
    font-size: 2rem;
  }
}

.section__desc {
  font-size: 1.25rem;
  font-weight: 600;
}
@media screen and (max-width: 576px) {
  .section__desc {
    font-size: 1rem;
  }
}

.uppercase {
  text-transform: uppercase;
}

.text-muted {
  color: rgba(0, 0, 0, 0.8);
}

mark {
  background-color: rgba(177, 67, 68, 0.2);
}

.weight-100 {
  font-weight: 100 !important;
}
.weight-200 {
  font-weight: 200 !important;
}
.weight-300 {
  font-weight: 300 !important;
}
.weight-400 {
  font-weight: 400 !important;
}
.weight-500 {
  font-weight: 500 !important;
}
.weight-600 {
  font-weight: 600 !important;
}
.weight-700 {
  font-weight: 700 !important;
}
.weight-800 {
  font-weight: 800 !important;
}

.weight-normal {
  font-weight: 400 !important;
}

.no-wrap {
  white-space: nowrap;
}

.text-primary {
  color: #B14344 !important;
}
.text-secondary {
  color: #F2C37B !important;
}
.text-success {
  color: #00851d !important;
}
.text-danger {
  color: #c52528 !important;
}
.text-warning {
  color: #db952b !important;
}
.text-info {
  color: #003185 !important;
}

.button__primary {
  padding: 0.75rem 2rem;
  background-color: #B14344;
  color: #FFF !important;
}
.button__primary:disabled, .button__primary:focus, .button__primary:active {
  background-color: #DADEDD;
  border: #DADEDD;
}
.button__primary:disabled:hover, .button__primary:focus:hover, .button__primary:active:hover {
  background-color: #DADEDD;
}
.button__primary:hover {
  background-color: #424644;
}

.form__control {
  padding: 0;
  margin: 0;
  resize: none;
  border: 2px solid #C5C7C6;
  border-radius: 4px;
  background: #FFF;
  color: #000;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 0.5rem 0.75rem;
}
.form__control.placeholder {
  color: #C5C7C6;
}
.form__control:-moz-placeholder {
  color: #C5C7C6;
}
.form__control::-moz-placeholder {
  color: #C5C7C6;
}
.form__control:-ms-input-placeholder {
  color: #C5C7C6;
}
.form__control::-webkit-input-placeholder {
  color: #C5C7C6;
}
.form__control:focus, .form__control:focus-visible {
  outline: none;
  border-color: #F2C37B;
  box-shadow: none;
}

:focus-visible {
  outline: none;
}

.navigation {
  border-bottom: 1px solid #DADEDD;
  background-color: #FFF;
}
.navigation__bar {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .navigation__bar {
    flex-direction: row;
  }
}
.navigation .logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.navigation nav {
  display: inline-flex;
  margin-top: 0.5rem;
}
@media screen and (min-width: 768px) {
  .navigation nav {
    margin-left: auto;
    margin-top: 0;
  }
}
.navigation nav a {
  margin-right: 1rem;
  padding: 0.5rem 0;
  color: #606060;
  text-decoration: none;
  transition: color 0.33s;
  font-weight: 500;
}
.navigation nav a:last-of-type {
  margin-right: 0;
}
.navigation nav a:hover, .navigation nav a.active {
  color: #B14344;
}
@media screen and (max-width: 400px) {
  .navigation nav a {
    font-size: 0.9rem;
  }
}

footer {
  position: relative;
  padding: 4rem 0;
  background-color: #424644;
  background-image: url(/images/logo-footer.svg?03a2cde3e6a49fb98ee6db9a116216ab);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom left;
  z-index: 1;
}
footer .container {
  z-index: 1000 !important;
}
footer .title {
  color: #FFF;
}
footer h2.title {
  font-size: 2rem;
}
footer p.copyright {
  color: rgba(255, 255, 255, 0.2);
}
footer p {
  color: rgba(255, 255, 255, 0.7);
}
footer h5.title {
  position: relative;
}
footer h5.title::before {
  content: "";
  display: inline-flex;
  position: absolute;
  width: 0.75rem;
  height: 0.75rem;
  top: 50%;
  left: -0.75rem;
  transform: translate(-100%, -50%);
  border-radius: 50%;
  background-color: #B14344;
}

.car-card {
  position: relative;
  width: 100%;
  height: 100%;
  background-color: #FFF;
  border-radius: 8px;
}
.car-card.new::before {
  content: "";
  position: absolute;
  top: -1rem;
  left: 1rem;
  width: 85px;
  height: 85px;
  background-image: url(/images/new.svg?39f78a79a7ad4e034a15e08d80da3787);
  z-index: 1000;
}
.car-card .card__dots {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  width: 100%;
}
.car-card .card__dots .slick-dots {
  bottom: 0;
}
.car-card .card__dots .slick-dots li.slick-active button:before {
  opacity: 1;
  transform: scale(3);
}
.car-card .card__dots .slick-dots li button:before {
  color: #F2C37B;
  transform: scale(2);
  text-shadow: 0 0 2px #000;
  opacity: 0.5;
  transition: transform 0.15s ease-in-out;
}
.car-card .card__content {
  padding: 1.1rem;
  padding-top: 0;
}
.car-card .card__image {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  min-height: 200px;
  margin-bottom: 1rem;
  overflow: hidden;
  border-radius: 8px;
  margin: 0 !important;
}
.car-card .card__image:hover .cta {
  opacity: 1;
}
.car-card .card__image .cta {
  opacity: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 2;
  background-color: rgba(242, 195, 123, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.3s ease-in-out;
  cursor: pointer;
}
.car-card .card__image .cta i {
  width: 4rem;
  height: 4rem;
  font-size: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #F2C37B;
  color: #FFF;
  border-radius: 50%;
}
.car-card .card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.car-card .card__title {
  font-size: 1.5rem;
  color: #606060;
  font-weight: 700;
  transition: color 0.33s;
}
.car-card .card__title:hover {
  color: #B14344;
}
.car-card .card__description {
  color: rgba(96, 96, 96, 0.6);
}
.car-card .card__description ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.car-card .card__price {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  padding: 0.5rem 2rem;
  background-color: #424644;
  color: #FFF;
  z-index: 3;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}
.car-card .card__date {
  color: #B14344;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.service {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  padding: 2rem;
  border-radius: 6px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
}
.service.active {
  background-color: #F6DEB9;
  border: 4px solid #db952b;
}
.service.active p {
  font-weight: 600;
  color: #606060;
}
.service.active .service__icon {
  background-color: #db952b;
}
.service.active::before {
  content: "";
  position: absolute;
  top: -1rem;
  left: -1rem;
  width: 134px;
  height: 134px;
  background-image: url(/images/ribon.png?5f702d6f514819d2f6c6762205233fc1);
}
.service__icon {
  width: 4rem;
  height: 4rem;
  background-color: #B14344;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  color: #FFF;
  border-radius: 50%;
  margin-bottom: 1rem;
}
.service__title {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.service__content p {
  text-align: center;
  color: rgba(96, 96, 96, 0.5);
}
@media screen and (max-width: 991px) {
  .service__title {
    font-size: 1.5rem;
  }
  .service__content p {
    font-size: 1rem;
  }
}

.testemonial__quote {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 1rem;
}
.testemonial__avatar {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 0.5rem;
}
.testemonial__author {
  font-size: 0.75rem;
  color: rgba(96, 96, 96, 0.5);
}

.steps {
  position: relative;
  display: flex;
  width: 100%;
  justify-content: space-between;
}
.steps::before {
  content: "";
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  height: 1px;
  background-color: #606060;
  z-index: 0;
}
.steps .step {
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
}
.steps .step.active .step__number, .steps .step.active .step__title {
  color: #606060;
}
.steps .step.active .step__icon {
  background-color: #B14344;
}
.steps .step.active .step__icon i {
  color: white;
}
.steps .step .step__number {
  color: #DADEDD;
  font-size: 0.75rem;
  margin-bottom: 4px;
  z-index: 2;
}
.steps .step .step__icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background-color: #DADEDD;
  display: flex;
  justify-content: center;
  align-items: center;
  outline: 10px solid white;
  z-index: 1;
}
.steps .step .step__icon i {
  color: white;
  font-size: 1.5rem;
}
.steps .step .step__title {
  color: #DADEDD;
  font-size: 1rem;
  margin-top: 8px;
  z-index: 2;
}

.tab-pane {
  display: none;
}
.tab-pane.active {
  display: block;
}

.hero {
  position: relative;
  height: 75vh;
  min-height: 500px;
  background-image: url(/images/hero_bg.webp?57912240b16c572bad834c5ad4f48cff);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero.small {
  height: 300px;
  min-height: 300px;
}
.hero.small::after {
  display: none;
}
@media screen and (max-width: 991px) {
  .hero::after {
    display: none;
  }
}
.hero::after {
  content: "";
  position: absolute;
  right: 0%;
  bottom: 0;
  background-image: url(/images/hero_fg.png?76db1c2f7f235363c7ed08c8a3d4c72d);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom;
  height: 100%;
  aspect-ratio: 1/1;
}
@media screen and (min-width: 1900px) {
  .hero::after {
    right: 8%;
  }
}
.hero .title {
  font-weight: 700;
  color: #424644;
  font-size: 3rem;
  margin-bottom: 1rem;
}
.hero .title + p {
  font-size: 1.25rem;
  color: #424644;
}
.hero p {
  font-size: 1rem;
  font-weight: 400;
  color: white;
}
.hero .btn {
  margin-bottom: 10rem;
}
.hero .bubble {
  position: absolute;
  bottom: 0;
  right: 0;
  height: 300px;
  width: 300px;
  padding: 2rem;
  padding-right: 4rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-direction: column;
  text-align: right;
}
.hero .bubble .bubble__title {
  position: absolute;
  top: 1rem;
  right: 3.5rem;
  font-size: 1.75rem;
  background-color: #F19848;
  color: white;
  border-radius: 50px;
  padding: 0.5rem 1.5rem;
  text-transform: uppercase;
}
.hero .bubble .bubble__title i {
  margin-left: 3rem;
}
.hero .bubble > * {
  z-index: 2;
}
.hero .bubble .title {
  align-self: flex-end;
  margin-top: 2.7rem;
  margin-bottom: 2.5rem;
  text-transform: uppercase;
}
.hero .bubble p {
  font-size: 1rem;
  color: #606060;
  font-weight: 400;
  line-height: 1.5rem;
}
.hero .bubble p.news__title {
  font-size: 1rem;
  color: #606060;
  font-weight: 800;
  line-height: 1.8rem;
}
.hero .bubble .icon {
  position: absolute;
  top: 65px;
  left: 0px;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background-color: #F2C37B;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero .bubble .icon i {
  color: #FFF;
  font-size: 2rem;
}
.hero .bubble::after {
  content: "";
  position: absolute;
  top: -20%;
  left: -12%;
  width: 205%;
  height: 210%;
  border-radius: 50%;
  background-color: rgba(232, 205, 162, 0.9);
  border: 4px solid #F19848;
  z-index: -1;
}
@media screen and (max-width: 991px) {
  .hero .bubble {
    width: 100%;
    height: 220px;
    padding: 2rem;
    text-align: center;
    margin-bottom: 0px;
  }
  .hero .bubble .title {
    font-size: 1.2rem;
    line-height: 1.2rem;
  }
  .hero .bubble p {
    font-size: 1rem;
    line-height: 1.1rem;
  }
  .hero .bubble .icon {
    top: 34px !important;
    left: 10px !important;
    width: 3rem !important;
    height: 3rem !important;
  }
  .hero .bubble .icon i {
    font-size: 1.5rem !important;
  }
  .hero .bubble .bubble__title {
    top: -0.5rem;
    position: relative;
    margin-top: 2rem;
    right: 0px;
  }
}
@media screen and (max-width: 400px) {
  .hero .bubble {
    height: 150px;
    padding: 0.75rem;
  }
  .hero .bubble .bubble__title {
    font-size: 1rem;
  }
  .hero .bubble p {
    font-size: 0.75rem;
  }
  .hero .bubble::after {
    border-radius: 0%;
  }
}

.services {
  background-color: white;
  padding: 3rem 0;
  border-start-start-radius: 100px;
  border-end-end-radius: 100px;
}
@media (max-width: 576px) {
  .services {
    border-start-start-radius: 0;
    border-end-end-radius: 0;
  }
}

.service__title {
  line-height: 120%;
}

.used-cars {
  padding-bottom: 3rem;
  border-bottom-right-radius: 100px;
}
@media screen and (max-width: 991px) {
  .used-cars {
    border-bottom-right-radius: 0;
  }
}
.used-cars .btn {
  font-size: 1.5rem;
}
@media screen and (max-width: 1400px) {
  .used-cars .btn {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 1200px) {
  .used-cars .btn {
    font-size: 1rem;
  }
}

.car__hero {
  position: relative;
  background-color: #A52122;
  color: #fff;
}
.car__hero .bread-crumbs {
  width: 100%;
  height: 120px;
  padding-left: 120px;
  padding-right: 1rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  color: #E8AC4E !important;
}
@media screen and (max-width: 991px) {
  .car__hero .bread-crumbs {
    padding-left: 80px;
    height: 80px;
    padding: 0;
    justify-content: center;
  }
}
.car__hero .bread-crumbs a {
  color: #E8AC4E !important;
  position: relative;
  margin-right: 0.5rem;
}
.car__hero .bread-crumbs a::after {
  content: ">";
  margin-left: 0.5rem;
}
.car__hero .price {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
}
@media screen and (max-width: 991px) {
  .car__hero .price {
    justify-content: center;
    margin-top: 2rem;
  }
}
.car__hero .price span {
  padding: 1rem 2.5rem;
  margin-right: -3rem;
  font-weight: 600;
  font-size: 1.5rem;
  background-color: #fff;
  color: #A52122;
}
@media screen and (max-width: 991px) {
  .car__hero .price span {
    margin-right: 0;
  }
}
.car__hero .image {
  position: relative;
  height: 100%;
  width: 100%;
  min-height: 600px;
}
.car__hero .image .arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
  font-size: 2rem;
  opacity: 0.8;
  cursor: pointer;
}
.car__hero .image .arrow__prev {
  left: 1rem;
}
.car__hero .image .arrow__next {
  right: 1rem;
}
.car__hero .image .card__dots {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  width: 100%;
}
.car__hero .image .card__dots li.slick-active button:before {
  opacity: 1;
  transform: scale(3);
}
.car__hero .image .card__dots li button:before {
  color: #FFF;
  transform: scale(2);
  text-shadow: 0 0 2px #000;
  opacity: 0.5;
  transition: transform 0.15s ease-in-out;
}
@media screen and (max-width: 991px) {
  .car__hero .image {
    min-height: 400px;
  }
}
.car__hero .image .image__slick {
  position: absolute;
  inset: auto;
  width: 100%;
  height: 100%;
}
.car__hero .image .image__slick * {
  width: 100%;
  height: 100%;
}
.car__hero .image img {
  position: absolute;
  inset: auto;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.car__hero .image:hover {
  cursor: pointer;
}
.car__hero .image:hover::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 5rem;
  height: 5rem;
  color: #E0E4E3;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath fill='%23fff' d='M500.3 443.7 380.6 324c27.22-40.41 40.65-90.9 33.46-144.7-12.23-91.55-87.28-166-178.9-177.6C98.96-15.54-15.54 98.98 1.76 235.1c11.6 91.64 86.07 166.7 177.6 178.9 53.81 7.191 104.3-6.235 144.7-33.46l119.7 119.7c15.62 15.62 40.95 15.62 56.57 0 15.57-15.54 15.57-40.94-.03-56.54zM288 232h-56.9v56c0 13.26-10.74 24-23.1 24-13.3 0-24-10.7-24-24v-56h-56.9c-12.4 0-23.1-10.7-23.1-24s10.74-24 23.1-24H184v-56c0-13.26 10.74-24 23.1-24s24 10.7 24 24v56h56c14.2 0 24.9 10.7 24.9 24s-10.7 24-24 24z'/%3E%3C/svg%3E");
  opacity: 0.5;
  pointer-events: none;
  z-index: 100;
}
.car__hero .content {
  display: flex;
  flex-direction: column;
  margin-top: 3rem;
  padding-left: 4rem;
}
@media screen and (max-width: 991px) {
  .car__hero .content {
    padding: 0 0.5rem;
  }
}
.car__hero .content h2 {
  color: #fff;
  margin-bottom: 0;
}
.car__hero .content .date {
  font-size: 1.75rem;
  color: #E8AC4E;
}
.car__hero .content .details {
  display: flex;
  flex-direction: column;
  padding-left: 5rem;
  margin-top: 1.5rem;
  margin-bottom: 2rem;
}
@media screen and (max-width: 991px) {
  .car__hero .content .details {
    padding-left: 0;
    margin-bottom: 1rem;
  }
}
.car__hero .content .details .detail {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.25rem;
  padding: 8px 0;
  border-bottom: 2px solid #BC2D2E;
}
.car__hero .content .details .detail:last-of-type {
  border-bottom: none;
}
.car__hero .content .details .detail .title {
  font-weight: 600;
}
.car__hero .content .details .detail .value {
  text-align: right;
}
.car__hero.new::before {
  content: "NEU";
  position: absolute;
  top: 0;
  left: 0;
  width: 120px;
  height: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  background-color: #E8AC4E;
  font-size: 2rem;
  font-weight: 600;
  z-index: 100;
}
@media screen and (max-width: 991px) {
  .car__hero.new::before {
    width: 80px;
    height: 80px;
    font-size: 1.5rem;
  }
}

.car-aside {
  background-color: #E0E4E3;
  padding: 2rem;
  margin-bottom: 2rem;
}
@media screen and (max-width: 991px) {
  .car-aside {
    margin-top: 2rem;
    margin-left: 1rem;
    margin-right: 1rem;
  }
}
.car-aside:last-of-type {
  margin-bottom: 0;
}
.car-aside h3.title {
  position: relative;
  display: flex;
  text-transform: uppercase;
}
.car-aside h3.title::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  left: -2rem;
  top: 50%;
  background-color: #A52122;
  transform: translate(-50%, -50%);
}
.car-aside .details {
  display: flex;
  flex-direction: column;
  margin-top: 1.5rem;
}
.car-aside .details .detail {
  display: flex;
  justify-content: space-between;
  font-size: 1.25rem;
  padding: 8px 0;
  border-bottom: 2px solid #fff;
}
.car-aside .details .detail:last-of-type {
  border-bottom: none;
}
.car-aside .details .detail .title {
  font-weight: 600;
}
.car-aside .details .detail .value {
  text-align: right;
}
.car-aside form input, .car-aside form textarea {
  border: none;
  border-radius: 0;
  font-size: 1.25rem;
}

.slick__nav {
  overflow: hidden;
}
.slick__nav::after {
  content: "";
  position: absolute;
  top: -25%;
  left: 0;
  width: 100%;
  height: 150%;
  box-shadow: inset 0px 0px 50px 50px #ffffff;
  z-index: 10;
  pointer-events: none;
}
.slick__nav img {
  padding: 10px 5px;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}

.testemonials {
  position: relative;
  padding: 5rem 0;
  background-color: white;
  border-end-start-radius: 100px;
  overflow: hidden;
}
@media (max-width: 576px) {
  .testemonials {
    border-end-start-radius: 0;
  }
}
.testemonials::after {
  content: "";
  position: absolute;
  top: -1rem;
  right: 4rem;
  background-image: url(/images/quotes.svg?71e90ffcab9dd4f95b8060167102a71d);
  background-size: contain;
  width: 400px;
  height: 400px;
  background-repeat: no-repeat;
}
@media screen and (max-width: 991px) {
  .testemonials::after {
    display: none;
  }
}

.contact {
  padding: 3rem 0;
}
.contact textarea {
  width: 100%;
}
.contact i {
  font-size: 1.25rem;
  color: #FFF;
}
.contact a {
  color: #606060;
  font-size: 1rem;
}
.contact a:hover {
  text-decoration: underline;
}
.contact .h5 {
  margin-bottom: 1.5rem;
}
.contact p {
  margin-bottom: 1rem;
}
.contact .gmap_canvas {
  overflow: hidden;
  background: none !important;
  width: 100%;
  min-height: 200px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  transform: scale(0.9);
}
.contact .tel-row {
  display: flex;
  gap: 16px;
  margin-bottom: 2rem;
}
@media screen and (max-width: 1200px) {
  .contact .tel-row {
    flex-direction: column;
  }
}
.contact a.phone {
  text-decoration: none;
}
.contact .phone {
  padding: 8px 32px;
  background-color: #B14344;
  color: #FFF;
  border-radius: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  flex: 1;
}
@media screen and (max-width: 1200px) {
  .contact .phone {
    padding: 16px 32px;
    font-size: 1.5rem;
  }
}
.contact .phone i {
  margin-right: 1rem;
  transform: scale(1.5);
}
.contact .textarea--button {
  position: relative;
  display: flex;
  width: 100%;
  flex-direction: column;
}
.contact .textarea--button textarea {
  width: 100%;
  margin-bottom: 0 !important;
  flex: 1;
}
.contact .textarea--button .btn {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
}
.contact .textarea--button .btn:hover {
  background-color: #B14344 !important;
}

.service-single {
  background-color: #A52122;
}
.service-single .btn {
  font-size: 1.5rem;
}
@media screen and (max-width: 1400px) {
  .service-single .btn {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 1200px) {
  .service-single .btn {
    font-size: 1rem;
  }
}
.service-single .service-single__content {
  border-top-left-radius: 100px;
  background-color: #fff;
  padding-top: 3rem;
  padding-bottom: 3rem;
}
@media screen and (max-width: 991px) {
  .service-single .service-single__content {
    border-top-left-radius: 0;
  }
}

.service__hero {
  position: relative;
  background-color: #A52122;
  color: #fff;
  overflow: hidden;
}
@media screen and (min-width: 991px) {
  .service__hero {
    height: 480px;
  }
}
.service__hero::before {
  content: "";
  position: absolute;
  top: -20px;
  left: -30px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath fill='%23fff' d='M320 336c0 8.844-7.156 16-16 16h-96C199.2 352 192 344.8 192 336V288H0v144C0 457.6 22.41 480 48 480h416c25.59 0 48-22.41 48-48V288h-192V336zM464 96H384V48C384 22.41 361.6 0 336 0h-160C150.4 0 128 22.41 128 48V96H48C22.41 96 0 118.4 0 144V256h512V144C512 118.4 489.6 96 464 96zM336 96h-160V48h160V96z'/%3E%3C/svg%3E");
  background-position: center;
  background-size: 150px 150px;
  background-repeat: no-repeat;
  opacity: 0.1;
  outline: 10px solid #fff;
}
.service__hero .bread-crumbs {
  width: 100%;
  height: 120px;
  padding-left: 120px;
  padding-right: 1rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  color: #E8AC4E !important;
}
@media screen and (max-width: 991px) {
  .service__hero .bread-crumbs {
    padding-left: 80px;
    height: 80px;
    padding: 0;
    justify-content: center;
  }
}
.service__hero .bread-crumbs a {
  color: #E8AC4E !important;
  position: relative;
  margin-right: 0.5rem;
}
.service__hero .bread-crumbs a::after {
  content: ">";
  margin-left: 0.5rem;
}
.service__hero .image {
  position: relative;
  height: 100%;
  width: 100%;
  min-height: 480px;
}
.service__hero .image .arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
  font-size: 2rem;
  opacity: 0.8;
  cursor: pointer;
}
.service__hero .image .arrow__prev {
  left: 1rem;
}
.service__hero .image .arrow__next {
  right: 1rem;
}
.service__hero .image .card__dots {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  width: 100%;
}
.service__hero .image .card__dots li.slick-active button:before {
  opacity: 1;
  transform: scale(3);
}
.service__hero .image .card__dots li button:before {
  color: #FFF;
  transform: scale(2);
  text-shadow: 0 0 2px #000;
  opacity: 0.5;
  transition: transform 0.15s ease-in-out;
}
@media screen and (max-width: 991px) {
  .service__hero .image {
    min-height: 480px;
  }
}
.service__hero .image .image__slick {
  position: absolute;
  inset: auto;
  width: 100%;
  height: 100%;
}
.service__hero .image .image__slick * {
  width: 100%;
  height: 100%;
}
.service__hero .image img {
  position: absolute;
  inset: auto;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.service__hero .content {
  display: flex;
  flex-direction: column;
  margin-top: 3rem;
  padding-left: 4rem;
}
@media screen and (max-width: 991px) {
  .service__hero .content {
    padding: 0 0.5rem;
  }
}
.service__hero .content h2 {
  color: #fff;
  margin-bottom: 0;
}
.service__hero .content .date {
  font-size: 1.75rem;
  color: #E8AC4E;
}
.service__hero .content .details {
  display: flex;
  flex-direction: column;
  padding-left: 5rem;
  margin-top: 1.5rem;
  margin-bottom: 2rem;
}
@media screen and (max-width: 991px) {
  .service__hero .content .details {
    padding-left: 0;
    margin-bottom: 1rem;
  }
}
.service__hero .content .details .detail {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.25rem;
  padding: 8px 0;
  border-bottom: 2px solid #BC2D2E;
}
.service__hero .content .details .detail:last-of-type {
  border-bottom: none;
}
.service__hero .content .details .detail .title {
  font-weight: 600;
}
.service__hero .content .details .detail .value {
  text-align: right;
}
.service__hero.new::before {
  content: "NEU";
  position: absolute;
  top: 0;
  left: 0;
  width: 120px;
  height: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  background-color: #E8AC4E;
  font-size: 2rem;
  font-weight: 600;
  z-index: 100;
}
@media screen and (max-width: 991px) {
  .service__hero.new::before {
    width: 80px;
    height: 80px;
    font-size: 1.5rem;
  }
}

.button__aside {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80px;
}

.service-aside {
  background-color: #E0E4E3;
  padding: 1rem;
  margin-bottom: 1rem;
  min-height: 80px;
  display: flex;
  flex-direction: row;
  align-items: center;
  transition: background-color 0.15s, color 0.15s;
}
@media screen and (max-width: 991px) {
  .service-aside {
    margin-top: 1rem;
    margin-left: 1rem;
    margin-right: 1rem;
  }
}
@media screen and (max-width: 576px) {
  .service-aside {
    margin-left: 0rem;
    margin-right: 0rem;
  }
}
.service-aside h3.title__secondary {
  font-size: 1.25rem;
}
.service-aside a {
  flex: 1;
}
.service-aside:last-of-type {
  margin-bottom: 0;
}
.service-aside h3.title__secondary {
  display: flex;
  flex: 1;
  color: #424645;
  margin: 0;
}
.service-aside .icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 3rem;
  height: 3rem;
  background-color: #AF2727;
  border-radius: 50%;
  margin-right: 1.5rem;
  transition: background-color 0.15s, color 0.15s;
}
.service-aside .icon i {
  transition: color 0.15s;
  color: #fff;
  font-size: 1.5rem;
}
.service-aside form input, .service-aside form textarea {
  border: none;
  border-radius: 0;
  font-size: 1.25rem;
}
.service-aside:hover, .service-aside.active {
  background-color: #E8AC4E;
  color: #fff;
}
.service-aside:hover h3.title__secondary, .service-aside.active h3.title__secondary {
  color: #fff;
}
.service-aside:hover .icon, .service-aside.active .icon {
  background-color: #fff;
}
.service-aside:hover .icon i, .service-aside.active .icon i {
  color: #E8AC4E;
}
