@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #be1522;
}

html {
  font-size: 62.5%;
}

body {
  font-family: "Montserrat", sans-serif;
  font-size: 2rem;
  line-height: 1.5;
}

.ptb-small {
  padding: 5rem 0;
}

.bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.txt {
  font-size: 1.8rem;
}

.title {
  font-size: 4.8rem;
  font-weight: bold;
}

.button.button_primary {
  background-color: #000;
  color: #fff;
  font-size: 1.5rem;
  font-weight: bold;
  letter-spacing: 0.125em;
  padding: 1.5rem 4rem;
  border-radius: 5px;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
}
.button.button_secondary {
  background-color: #fff;
  color: #000;
  font-size: 1.5rem;
  font-weight: bold;
  letter-spacing: 0.125em;
  padding: 1.5rem 4rem;
  border-radius: 5px;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
}

header .navbar {
  background-color: #000;
  padding: 2rem 0;
}

header .navbar .offcanvas-body {
  justify-content: end;
}

header .navbar .navbar-nav {
  align-items: center;
}

header .navbar ul li:last-child {
  display: flex;
  align-items: center;
}

header .navbar ul li:not(:last-child) {
  margin-right: 2rem;
}

header .navbar ul li a {
  color: #fff;
  font-size: 1.3rem;
  font-weight: bold;
  text-transform: uppercase;
  transition: all 0.3s;
}
header .navbar ul li a:hover {
  color: var(--primary-color);
}

.menu {
  display: flex;
  flex-direction: column;
  gap: 2px;
  position: fixed;
  right: 0;
  top: 40%;
  z-index: 300;
}

.menu a {
  background-color: var(--primary-color);
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero {
  background-color: #000;
  min-height: 50dvh;
  position: relative;
  z-index: 0;
}

.hero-services {
  z-index: 1;
}

.hero .slide {
  min-height: 70rem;
}

.hero .slick-list {
  top: 10rem;
}

.hero .wrapper .bg {
  border-bottom-right-radius: 1.5rem;
  border-bottom-left-radius: 1.5rem;
}

.hero .slide .content-wrapper {
  position: absolute;
  top: 20%;
  left: 5%;
  color: #fff;
  z-index: 2;
}

.hero .slide h1 {
  font-size: 5.8rem;
  font-weight: bold;
}
.hero .slide h4 {
  font-size: 2rem;
  margin-top: 2rem;
}
.hero .bg {
  border-bottom-right-radius: 30px;
  border-bottom-left-radius: 30px;
}
.about {
  padding: 20rem 0 15rem 0;
}
.about h2 {
  font-size: 4.8rem;
  line-height: 1.1;
  font-weight: bold;
  margin-bottom: 7.5rem;
}

.about p.txt {
  margin-bottom: 4rem;
}

.about h5 {
  font-size: 6rem;
}

.about .container > .row:last-child {
  margin-top: 20rem;
}

.about .row:last-child h2 {
  font-size: 3.6rem;
}

.offer {
  position: relative;
  color: #fff;
  padding: 10rem 0;
}
.offer h2 {
  font-size: 5.8rem;
  font-weight: bold;
}
.offer ul {
  list-style: none;
  padding: 0;
  margin-top: 5rem;
}
.offer ul li:not(:last-child) {
  margin-bottom: 5rem;
}
.offer ul li > div {
  display: flex;
  align-items: center;
  gap: 5rem;
}
.offer ul li div span {
  font-size: 6rem;
  color: var(--primary-color);
}
.offer ul li div h3 {
  font-size: 4.8rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
}

.offer ul li div p {
  margin-top: 1rem;
  max-width: 75%;
}

.offer img {
  max-width: 7%;
}

.service {
  padding: 10rem 0;
}
.service h2 {
  margin-bottom: 4rem;
}
.service img {
  border-radius: 20px;
}

.services {
  background-color: #fff;
  position: relative;
  padding: 10rem 0;
}

.services .btn-secondary {
  margin-top: 3rem;
}

.services .row {
  margin-top: 10rem;
}

.services h3,
.welcome h3,
.team h2 {
  font-size: 3rem;
  font-weight: 900;
  text-transform: uppercase;
  color: #000;
  margin-bottom: 1rem;
  position: relative;
  margin-bottom: 5rem;
}

.team img {
  border-radius: 20px;
}
.services h3::after,
.welcome h3::after {
  content: "";
  display: block;
  width: 14rem;
  height: 0.3rem;
  background-color: #000;
  margin-top: 0.5rem;
  position: absolute;
  left: 0;
  bottom: -2rem;
}

.welcome h3::after {
  width: 7.5rem;
}

.services p {
  font-size: 1.6rem;
  color: #1d1d1b;
  line-height: 1.8;
  max-width: 80%;
}
.services h3 {
  margin-top: 5rem;
}
.s-bottom-c {
  text-align: center;
  margin-top: 10rem;
}

.s-bottom-c h3::after {
  display: none;
}

.services img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.services-2 .row:nth-child(3) .col-lg-6 {
  order: 1;
}
.service .row {
  align-items: center;
}

.car-purchase {
  background-color: #000;
  color: #fff;
  padding: 10rem 0;
}
.car-purchase h2 {
  margin-bottom: 7.5rem;
}

.car-purchase .row .row {
  align-items: center;
  margin-top: 7rem;
}
.car-purchase .row .row .col-md-3 {
  text-align: center;
}
.car-purchase .row .row h3 {
  margin-top: 2rem;
  font-size: 2rem;
}
.car-purchase img {
  max-width: 40%;
}

.team {
  padding: 10rem 0;
}

.team .team-card {
  display: flex;
  align-items: center;
  border: 1px solid #e5e5e0;
  border-radius: 2rem;
  gap: 1.5rem;
}

.team .team-card h3 {
  font-size: 1.8rem;
  font-weight: bold;
}
.team .team-card p {
  font-size: 1.7rem;
  margin-bottom: 0;
}
.team-card img{
  border-radius: 20px;
}

.team .row:last-child {
  margin-top: 10rem;
  row-gap: 2rem;
}

.team .team-card a {
  font-size: 1.7rem;
  margin-top: 2rem;
  font-weight: bold;
  text-decoration: none;
  color: #000;
  display: inline-block;
}

.guarantee {
  background-color: #e1e3e5;
  padding: 10rem 0;
}

.guarantee h2 {
  text-align: center;
}

.guarantee .wrapper {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.guarantee .wrapper h3 {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
}

.guarantee .row {
  margin-top: 7.5rem;
}

.guarantee .button {
  margin-top: 7.5rem;
}

.btn-wrapper-center {
  text-align: center;
}

.testimonials {
  background-color: #000;
  padding: 10rem 0;
}

.testimonials .slider {
  text-align: center;
}

.testimonials .slider p {
  max-width: 50%;
  color: #fff;
  margin: 3rem auto 2rem auto;
}

.testimonials .slider h6 {
  color: #999;
  font-size: 1.6rem;
}

.contact {
  background-color: #e1e3e5;
  padding: 10rem 0;
}

.contact h2 {
  margin-bottom: 5rem;
}

.contact .row {
  row-gap: 3rem;
}

.contact label span {
  color: var(--primary-color);
}

.contact input:not([type="checkbox"]) {
  min-height: 4rem;
}

.contact input:not([type="checkbox"]),
.contact textarea {
  width: 100%;
  border: none;
  outline: none;
  box-shadow: inset 1px 1px 0 1px rgba(0, 0, 0, 0.2);
  padding-left: 1.5rem;
  font-size: 1.5rem;
  resize: none;
}

.contact .btn-wrapper {
  margin-top: 4rem;
}

.contact .txt-last {
  font-size: 1.4rem;
}

.locations {
  padding: 10rem 0;
  border: 1px solid #e1e3e5;
}

.locations ul {
  list-style-type: none;
  padding: 0;
}

.locations li {
  font-size: 1.5rem;
}

.newsletter {
  padding: 10rem 0;
}

.newsletter .row {
  align-items: end;
}
.newsletter input {
  width: 100%;
  min-height: 5.6rem;
  border-radius: 2rem;
  font-size: 1.4rem;
  text-align: center;
  outline: none;
  border: 1px solid #999;
}
.newsletter input::placeholder {
  color: #999;
}
footer {
  background-color: #000;
  color: #fff;
  padding-top: 5rem;
}

footer .logo-wrapper {
  text-align: center;
  margin-bottom: 7.5rem;
}

footer h5 {
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  font-weight: 300;
  color: #999;
  letter-spacing: 0.125em;
  text-transform: uppercase;
}

footer p,
footer a,
footer ul li,
footer h6 {
  font-size: 1.6rem;
}

footer p,
footer a,
footer span {
  color: #999;
  text-decoration: none;
}

footer p strong {
  color: #fff;
}

.lastline {
  border-top: 1px solid #e1e3e5;
  padding: 2rem 0;
  margin-top: 5rem;
}
.lastline .row {
  align-items: center;
}
.lastline p {
  margin-bottom: 0;
}
.lastline .wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.lastline ul {
  list-style: none;
  padding: 0;
  display: flex;
  align-items: center;
  margin-bottom: 0;
  gap: 2rem;
}

.mpk {
  padding: 15rem 0;
}

.mpk .bullet-list span {
  font-weight: 300;
}

.radio-group {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.radio-item label {
  font-size: 1.6rem;
  margin-left: 0.5rem;
}

.radio-item input[type="radio"] {
  accent-color: #ba1015;
  width: 20px;
  height: 20px;
}

.mpk h2 {
  font-size: 3.6rem;
  font-weight: 900;
  text-transform: uppercase;
  text-align: left;
  margin-bottom: 1.5rem;
  letter-spacing: 0.05rem;
}

.mpk .btn-primary {
  margin-top: 4rem;
}

.txt-last {
  font-size: 1.6rem;
}

.file-upload {
  position: relative;
  display: inline-block;
  margin-top: 2rem;
}

.file-upload input[type="file"] {
  display: none;
}

.file-input {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.mpk h2 span {
  font-weight: 300;
}

.mpk .h2-2 {
  margin-top: 5rem;
}

.mpk select,
.mpk input:not([type="checkbox"], [type="radio"]) {
  width: 100%;
  height: 4rem;
  font-size: 1.6rem;
  outline: none;
  box-shadow: none;
}
.mpk select option:hover {
  background-color: #ba1015;
}
.mpk select:focus,
.mpk input:focus,
.mpk textarea:focus {
  box-shadow: none;
  outline: none;
}
.select2-container--default .select2-selection--single {
  height: 4rem !important;
  display: flex !important;
  align-items: center !important;
}

.select2-container--default
  .select2-selection--single
  .select2-selection__arrow {
  top: 50% !important;
  transform: translateY(-50%) !important;
}
.mpk label.btn-primary {
  width: 100%;
  text-align: center;
}

.mpk .section-title {
  font-size: 1.8rem;
}

.mpk textarea {
  width: 100%;
  font-size: 1.6rem;
  resize: none;
}

.car-purchase .row .row .col-md-1 {
  padding-bottom: 6rem;
}

.hero .container {
  position: relative;
}

.hero .slide-counter {
  position: absolute;
  bottom: -10%;
  right: 5%;
  color: #fff;
}

.hero .slick-next {
  right: -50px;
}
.hero .slick-prev {
  left: -50px;
}
.slick-next:before {
  font-family: "Font Awesome 5 Free";
  content: "\f105";
  font-weight: 900;
}
.slick-prev:before {
  font-family: "Font Awesome 5 Free";
  content: "\f104"; /* Unicode za fa-angle-left */
  font-weight: 900;
}

.testimonials .slick-slide img {
  margin: 0 auto;
  display: block;
}

.testimonials .testimonials-slide-counter {
  text-align: center;
  color: #fff;
  margin-top: 5rem;
}

.testimonials .testimonials-slide-counter span {
  font-size: 1.7rem;
}

.required {
  color: red;
}
@media only screen and (max-width: 991px) {
  .car-purchase .row .row .col-md-1 {
    display: none;
  }
  .offer ul li div p {
    max-width: 100%;
  }
  section {
    overflow: hidden !important;
  }
  .hero .wrapper h1 {
    font-size: 3.8rem;
  }
  .about {
    padding: 5rem 0;
  }
  .about h2 {
    font-size: 3.2rem;
  }
  .about .row {
    row-gap: 3rem;
  }
  .about .container > .row:last-child {
    margin-top: 5rem;
  }
  .about h2 {
    margin-bottom: 3rem;
  }
  .offer h2 {
    font-size: 3.8rem;
  }
  .offer ul li div h3 {
    font-size: 2.8rem;
  }
  .txt {
    font-size: 1.6rem;
  }
  .car-purchase .row {
    row-gap: 3rem;
  }
  .car-purchase h2 {
    margin-bottom: 3rem;
  }
  .team .team-card p {
    font-size: 1.5rem;
  }
  .team .team-card a {
    font-size: 1.4rem;
  }
  .guarantee .wrapper h3 {
    font-size: 2.4rem;
  }
  .guarantee .wrapper p {
    max-width: 75%;
  }
  .guarantee .row {
    row-gap: 3rem;
  }
  .contact .row {
    row-gap: 1rem;
  }
  .contact .wrapper span {
    font-size: 1.5rem;
  }
  .contact label {
    font-size: 1.6rem;
  }
  .contact .btn-wrapper {
    margin-bottom: 2rem;
  }
  .locations .row {
    row-gap: 3rem;
  }
  .title {
    font-size: 3.8rem;
  }
  .newsletter .row {
    row-gap: 2rem;
  }
  .lastline .row {
    row-gap: 2rem;
  }
  .lastline p {
    text-align: center;
  }
  .navbar .navbar-toggler .navbar-toggler-icon {
    width: 32px;
    height: 32px;
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
  }

  header .navbar ul li:not(:last-child) {
    margin-right: 0;
  }

  header .navbar ul li a {
    font-size: 2rem;
    color: #000;
  }
  header .navbar ul li:last-child {
    gap: 1rem;
  }
  header .navbar .offcanvas-body {
    justify-content: center;
  }
  .offcanvas-body {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .offer img {
    max-width: 25%;
  }
  .offer ul li > div,
  .offer h2 {
    text-align: center;
  }

  .locations
    .accordion-item:first-of-type
    > .accordion-header
    .accordion-button {
    border: 1px solid #be1522;
    background-color: transparent;
    outline: none;
    box-shadow: none;
    font-size: 1.8rem;
    color: #000;
  }
  .locations .accordion-item:last-of-type > .accordion-collapse {
    border: none;
  }
  .lastline .wrapper {
    flex-direction: column;
    row-gap: 2rem;
  }
  footer .accordion-item > .accordion-header .accordion-button {
    background-color: #000;
    color: #999;
    font-size: 1.6rem;
  }
  footer .accordion-body {
    background-color: #000;
  }

  footer p,
  footer a,
  footer ul li,
  footer h6 {
    color: #fff !important;
  }

  footer .accordion-button::after {
    content: "";
    color: #fff;
  }
  .mpk .row {
    row-gap: 3rem;
  }

  .mpk .bullet-list li,
  .mpk .description {
    font-size: 1.6rem;
  }

  .mpk .h2-2 {
    font-size: 2rem;
  }
  .guarantee .wrapper p {
    max-width: 100%;
  }
}

@media only screen and (max-width: 480px) {
  .hero .slide h1 {
    font-size: 3.2rem;
  }
  .about h2,
  .about .row:last-child h2,
  .offer h2,
  .title {
    font-size: 2.8rem;
  }
  .about p.txt {
    margin-bottom: 2rem;
  }
  .offer ul li > div {
    flex-direction: column;
    align-items: start;
  }
  .offer ul li div span {
    display: none;
  }
  .service,
  .team,
  .guarantee,
  .contact {
    padding: 5rem 0;
  }

  .offer ul li div img {
    display: block;
    margin: 0 auto;
  }

  .testimonials .slider p {
    max-width: 100%;
  }
  .testimonials .slider p {
    font-size: 1.6rem;
  }
  footer .row {
    row-gap: 3rem;
  }
  footer .logo-wrapper {
    text-align: left;
  }
  .about h5 {
    font-size: 4rem;
  }
  .car-purchase .row .row h3 {
    font-size: 1.6rem;
  }
  .guarantee img {
    max-width: 6.5rem;
  }

  .mpk {
    padding: 5rem 0;
  }

  .mpk h2 {
    font-size: 2.4rem;
  }
  .mpk .btn-primary {
    margin-top: 0;
  }
  .f1 {
    margin-top: 2rem;
  }
}
