* {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        }

body {
        /*background: linear-gradient(130deg, #8ecae6, #226a98);*/

        font-family: Arial, sans-serif;
        color: #333;
        /*padding: 10px;*/
        }

/* Prevent Bootstrap from adding margin-bottom to .navigation */
ul.navigation {
    margin-bottom: 0 !important;
    padding-left: 0rem !important;
}

/* Prevent Bootstrap from modifying line-height on body */
body {
    line-height: normal !important;
}


/* HERE GOES THE TITLE */
.title_2 {
    padding: 180px;
    background: linear-gradient(130deg, #E65B00, #FDEE0B);
    text-align: center;
    color:#FFAA2E;
    /*text-shadow: -1px -2px #CCC;*/
}

.title_1 {

    background: linear-gradient(0deg, rgba(0, 65, 117, 1) 0%, rgba(0, 88, 160, 1) 100%);
}

.header1 {

  /*position: sticky;*/
    top: 0;
    left: 0;
    z-index: 1;

  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 3.5rem 1rem 3.5rem;

  max-width: 1330px;
  width: 100%;
  margin: 0 auto;

}

.bangers-regular {
  font-family: "Bangers", serif;
  font-size: 50px;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 4px;
}
.auto {
    font-size: 15px;
    font-family: serif;
    letter-spacing: 0px;
    padding-left: 15px;
}

.header1 a {
  text-decoration: none;
  color: #fff;
}

.header1 ul {
  list-style-type: none;
  display: flex;
  gap: 1.9rem;
}

.menu-hamburguesa {
  color: #fff;
  font-size: 2rem;
  border: 0;
  background-color: transparent;
  cursor: pointer;
  display: none;
}

/* HERE GOES THE BANNER */
.d-item {
  height: 350px;
}
.d-img {
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6);
}

/* Custom styles with spacing */
.custom-heading {
  font-family: 'Arial', sans-serif;
  font-size: 2rem;
  font-weight: 300;
  text-transform: uppercase;
  color: #ffffff;
  letter-spacing: 2px;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.6);
  margin-top: 10px; /* Custom margin instead of mt-5 */
}

.custom-title {
  font-family: 'Georgia', serif;
  font-size: 4rem;
  font-weight: 700;
  color: #ffffff;
  text-transform: capitalize;
  text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.7);
  margin-top: 20px; /* Adjust spacing as needed */
}

.custom-button {
  background-color: #0058a0;
  color: white;
  font-size: 1.5rem;
  font-weight: 200;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  text-transform: uppercase;
  transition: background-color 0.3s ease-in-out;
  margin-top: 15px; /* Custom spacing */
}

.custom-button:hover {
  background-color: #004175;
}


@media (min-width: 768px) and (max-width: 900px) {

        .title_2 {
            padding: 160px;
        }
      }

@media (min-width: 601px) and (max-width: 767px) {

        .title_2 {
            padding: 140px;
        }
      }

@media (max-width: 767px) {
    /* MENU HAMBURGUESA */
            .header1 ul {
                position: fixed !important;
                background: #00457e !important;
                flex-direction: column;
                top: 77px !important;
                left: 10% !important;
                width: 80% !important;
                /*    text-align: center;*/
                transform: translateX(120%);
                transition: transform 0.5s ease-in !important;
                z-index: 1050 !important; /* Higher than Bootstrap carousel */
              }
              .header1 ul li {
                margin: 8px;
                text-align: center;
              }
              .menu-hamburguesa {
                display: block !important;
              }

              .header1 ul.show {
                transform: translateX(0);
              }
}

@media (max-width: 600px) {

        .title_2 {
        padding: 100px;
        }
        .header1 {
            padding: 0.5em 1.5rem 1rem 1.5rem;
        }

        .d-item {
            height: 310px;
        }
        .mt-4 {
            margin-top: 0.5rem !important;
        }
        .custom-heading {
            font-size: 1.3rem;
        }
        .custom-title {
            font-size: 2.3rem;
        }
        .custom-button {
            font-size: 1rem;
        }
      }

/* Responsive Design for AUTO SALES */
@media (max-width: 400px) {

    .title_2 {
    padding: 60px;
    }

    .header1 {
    padding: 0.5rem 1rem 0.5rem 5rem;
    }

    .bangers-regular .auto {
        display: block;
        text-align: center;
    }
    .custom-heading {
        font-size: 1rem;
    }
    .custom-title {
        font-size: 2rem;
    }
    .custom-button {
        font-size: 1rem
    }
}