@font-face {
  font-family: "EspumaPro-Bold";
  src: url("../webfonts/EspumaPro-Bold/EspumaPro-Bold.ttf") format("truetype");
}
:root {
  --logo-color: hsl(162, 70%, 37%);
  --clr-dark-green: rgb(8, 81, 84);
  --clr-white: hsl(0, 0%, 100%);
  --clr-semi-transparent-white: rgba(255, 255, 255, 0.7);
  --clr-light-beige: hsla(0, 0%, 85%, 1);
  --clr-muted-aqua-blue: hsla(190, 45%, 40%, 1);
  --clr-warm-coral: hsla(10, 65%, 50%, 1);
  --clr-golden-amber: hsla(45, 85%, 50%, 1);
  --clr-earthly-green: hsla(120, 40%, 35%, 1);
  --clr-yellow-google-review: rgb(255, 217, 0);
  --clr-cool-yellow: rgb(236, 200, 19);
  --clr-yellow-light: rgb(200, 230, 117);
  --clr-black: hsl(0, 0%, 0%);
  --clr-1: hsla(182, 82%, 38%, 1);
  --clr-1-darker: hsla(182, 82%, 28%, 1);
  --clr-dark-grey-1: #3b3d3d;
  --clr-purple: hsla(275, 23%, 28%, 1);
  --clr-purple-darker: hsla(275, 23%, 20%, 1);
  --clr-orange: rgb(255, 107, 0);
  --clr-orange-darker: rgb(245, 87, 0);
  --clr-dark-green: hsla(182, 82%, 18%, 1);
  --clr-lighter-green: rgb(17, 171, 176);
  --clr-logo-green: hsl(162, 70%, 37%);
  --clr-logo-green-darker: hsl(152, 80%, 17%);
  --clr-cancel-red: hsl(0, 100%, 28%);
  --clr-whatsapp: hsl(142, 70.2%, 48.6%);
  --clr-messenger: hsl(212, 100%, 50%);
  --clr-light-blue: hsl(188, 39%, 69%);
  --clr-soft-cyan-blue: hsla(205, 50%, 65%, 1);
  --clr-golder-orange: hsla(35, 85%, 55%, 1);
  --clr-light-grey: #949494;
}

/* Initially apply the blur effect to the low-res image */
.lazy {
  filter: blur(10px); /* Adjust the blur to your liking */
  transition: filter 0.3s ease-in-out; /* Smooth transition for blur effect */
}

/* When the high-res image is loaded, remove the blur */
.lazy-loaded {
  filter: blur(0);
}

/* Optional: Add smooth opacity transition for better user experience */
img.lazy {
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
}

img.lazy-loaded {
  opacity: 1; /* Maintain smooth opacity transition when the high-res image is loaded */
}

html {
  font-size: 62.5%;
}

body {
  background-color: var(--clr-white);
  color: var(--clr-white);
}

form input {
  color: var(--clr-black);
  font-size: 1.6rem !important;
}

form select {
  color: var(--clr-black);
  font-size: 1.6rem !important;
}

form input:focus {
  border-color: lightgrey !important;
  box-shadow: 0 0 0 0.25rem lightgray !important;
}

form select:focus {
  border-color: lightgrey !important;
  box-shadow: 0 0 0 0.25rem lightgray !important;
}

form textarea:focus {
  border-color: lightgrey !important;
  box-shadow: 0 0 0 0.25rem lightgrey !important;
}

.xl-text {
  font-size: 65px;
}

.header {
  background-image: url("../images/heros/index_hero_background.avif"), url("../images/heros/index_hero_background.jpg");
  background-size: cover;
  height: 600px;
  position: relative;
}

.header-about {
  background-image: url("../images/heros/about_hero_background.avif"), url("../images/heros/about_hero_background.jpg");
  background-size: cover;
  background-position: center;
  height: 600px;
  position: relative;
}

.header-about::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
}

.header-about .text-container {
  z-index: 10;
}

.header-services {
  background-image: url("../images/heros/services_hero_background.avif"), url("../images/heros/services_hero_background.jpg");
  background-size: cover;
  background-position: center;
  height: 600px;
  position: relative;
}

.header-services::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
}

.header-services .text-container {
  z-index: 10;
}

.header-faq {
  background-image: url("../images/heros/faq_hero_background.avif"), url("../images/heros/faq_hero_background.jpg");
  background-size: cover;
  background-position: center;
  height: 600px;
  position: relative;
}

.header-faq::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
}

.header-faq .text-container {
  z-index: 10;
}

.header-contact {
  background-image: url("../images/heros/contact_hero_background.avif"), url("../images/heros/contact_hero_background.jpg");
  background-size: cover;
  background-position: center;
  height: 600px;
  position: relative;
}

.header-contact::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
}

.header-contact .text-container {
  z-index: 10;
}

.header-cookies {
  background-image: url("../images/heros/cookies_hero_background.avif"), url("../images/heros/cookies_hero_background.jpg");
  background-size: cover;
  background-position: center;
  height: 600px;
  position: relative;
}

.header-cookies::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
}

.header-cookies .text-container {
  z-index: 10;
}

.header-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 6.4rem;
  text-align: center;
}

.header-intrusion {
  color: var(--clr-1);
}

.header-paragraph {
  max-width: 600px;
  font-size: 1.2rem;
  text-align: center;
}

.text-container {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.header::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
}

.header .text-container {
  z-index: 10;
}

.vertical-decoration {
  top: 12%;
  width: 24px;
}

.hr-heading {
  display: inline-block;
  width: 3.5rem;
  height: 0.125rem;
  margin-top: 0.625rem;
  border: none;
  background-color: var(--bs-primary);
  opacity: 1;
}

.header-tours {
  background-image: url("../images/heros/tours-header-background.jpg");
  background-size: cover;
  background-position: center;
  height: 600px;
  position: relative;
}

.header-tours::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
}

.header-tours .text-container {
  z-index: 10;
}

.navbar {
  transition: all 0.5s ease-in-out;
}

.navbar-brand-custom {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  align-items: center;
}

.container-navigation {
  height: 100%;
}

.navbar-ediontrans {
  background-color: var(--clr-white);
  font-size: 1.8rem;
  padding: 0;
  border-bottom: 0.4rem solid var(--clr-1);
}

.nav-link-active {
  background-color: var(--clr-1);
}

.nav-link-active a {
  color: var(--clr-white);
}

.logo-link {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
}

.logo-text {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 2.25rem;
}

.logo-subtext {
  margin-top: -12px;
  text-transform: uppercase;
  font-size: 1.4rem;
}

.submitted-logo-text {
  font-family: "EspumaPro-Bold", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: var(--logo-color);
  font-size: 3.2rem;
}

.submitted-logo-subtext {
  margin-top: -3px;
  text-transform: uppercase;
  font-size: 1.4rem;
}

.photo-gallery {
  background-color: var(--clr-white);
}

.photo-gallery-info-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5rem 0;
}

.photo-gallery-paragraph {
  font-size: 2rem;
  padding-left: 2rem;
  color: var(--clr-black);
  text-align: justify;
}

.photo-gallery-badge {
  color: var(--clr-black);
}

.photo-gallery-titles h2 {
  color: var(--clr-black);
  font-size: 2.8rem;
  text-transform: uppercase;
  text-wrap: nowrap;
}

.photo-gallery-titles h5 {
  font-size: 1.4rem;
}

.row-custom {
  text-align: center;
  display: flex;
  justify-content: center;
}

.img-custom {
  width: 100%;
}

.col-custom {
  max-width: 300px;
}

.general-title {
  color: var(--clr-black);
  font-size: 3.1rem;
  margin-bottom: 0;
}

.general-subtitle {
  color: var(--clr-1);
  font-size: 1.6rem;
}

.general-text-inner {
  color: var(--clr-black);
}

.about-us-text-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
}

.general-titles-container {
  flex: 1;
}

.general-text-inner {
  flex: 3;
  font-size: 2.1rem;
}

.our-process-title {
  font-size: 2.6rem;
}

.process-title {
  color: var(--clr-1);
  font-size: 2.2rem;
}

.process-text {
  font-size: 1.8rem;
}

.tab-title-md-screen {
  display: none;
}

.our-drivers-section {
  color: var(--clr-black);
  padding: 7.5rem 0;
}

.our-drivers-cards-container {
  color: var(--clr-black);
}

.team-member-info {
  display: flex;
  flex-direction: column;
}

.team-member-info h3 {
  margin-bottom: 0;
}

.our-drivers-title {
  font-size: 2.6rem;
  margin-bottom: 0;
}

.our-drivers-subtitle {
  font-size: 1.6rem;
}

.our-drivers-cards-container {
  padding: 2rem 0 7.5rem 0;
}

.team-member-name {
  font-size: 1.8rem;
  color: var(--clr-lighter-green);
}

.team-member-position {
  margin-top: -1rem;
  font-size: 1.5rem;
  color: rgb(146, 147, 147);
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 1rem;
}

.team-member-position-text {
  line-height: 1.3;
}

.name-icon {
  color: var(--clr-1);
}

.team-member-position-icon {
  color: red;
}

.container-icon-name {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 1rem;
}

.team-member-see-more {
  text-decoration: none;
  font-size: 1.8rem;
  background-color: var(--clr-logo-green);
  display: flex;
  justify-content: center;
  color: var(--clr-white);
  border-radius: 0.5rem;
}

.team-member-see-more:hover {
  color: var(--clr-white);
}

.contact-call-to-action-section {
  background-color: var(--clr-dark-green);
  padding: 4rem;
}

.office-phone-list {
  list-style-type: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0;
}

.emergency-list {
  list-style-type: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0;
}

.office-emergency-lists-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.list-item-custom {
  font-size: 1.8rem;
}

.phone-link {
  text-decoration: none;
  color: var(--clr-white);
  transition: all 0.3s ease;
  font-size: 1.6rem;
}

.bell-icon-custom {
  color: hsl(0, 65%, 51%);
}

.address-link {
  text-decoration: none;
  color: var(--clr-white);
  font-size: 1.8rem;
  transition: all 0.3s ease;
}

.choose-from-our-services-button {
  text-decoration: none;
  font-size: 1.8rem;
  color: var(--clr-white);
  transition: all 0.3s ease-in-out;
}
@media (max-width: 576px) {
  .choose-from-our-services-button {
    font-size: 1.4rem;
  }
}

.choose-from-our-services-button:hover {
  color: var(--clr-white);
}

.address-button-container {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.call-to-action-container {
  background-color: var(--clr-dark-green);
}

.call-to-action-container-inner {
  display: flex;
  flex-direction: column;
}

.about-call-to-action-title {
  font-size: 3.1rem;
  color: var(--clr-cool-yellow);
}

.call-to-action-text p {
  font-size: 1.8rem;
  margin: 0;
  padding: 0;
}

.about-call-to-action-button {
  background-color: var(--clr-orange);
  color: var(--clr-white);
  text-decoration: none;
  padding: 1rem 1.5rem;
  border-radius: 0.5rem;
  font-size: 1.8rem;
}

.about-call-to-action-button:hover {
  color: var(--clr-white);
}

.tab-title-active {
  transform: translateY(-80%);
}

.our-process-section {
  padding: 7.5rem 0;
  background-color: var(--clr-purple);
  color: var(--clr-black);
}

.tab-title {
  width: 100%;
  font-size: 1.8rem;
  border: none;
  border-radius: 0.5rem;
  transition: all 0.3s ease-in-out;
  padding: 1rem 2rem;
  color: var(--clr-white);
}

.tabbed-row {
  display: grid;
  grid-template-columns: 1fr 7fr;
  align-items: center;
  padding: 3.5rem 0;
  gap: 3rem;
}

.tab-content-single-text {
  font-size: 1.8rem;
  text-align: justify;
  color: var(--clr-white);
}

.tabs-titles {
  background-color: var(--clr-light-beige);
  padding: 1rem 2rem;
  border-radius: 0.5rem;
}

.tab-title[data-title="1"] {
  background-color: var(--clr-muted-aqua-blue);
}

.tab-content-single-icon[data-icon="1"] {
  background-color: var(--clr-muted-aqua-blue);
}

.tab-content-single-icon[data-icon="2"] {
  background-color: var(--clr-warm-coral);
}

.tab-content-single-icon[data-icon="3"] {
  background-color: var(--clr-golden-amber);
}

.tab-content-single-icon[data-icon="4"] {
  background-color: var(--clr-earthly-green);
}

.tab-title[data-title="2"] {
  background-color: var(--clr-warm-coral);
}

.tab-title[data-title="3"] {
  background-color: var(--clr-golden-amber);
}

.tab-title[data-title="4"] {
  background-color: var(--clr-earthly-green);
}

.tab-title-sm-screen {
  display: none;
}

.tab-content-single-icon {
  display: flex;
  justify-content: center;
  background-color: var(--clr-white);
  padding: 3.5rem;
  border-radius: 0.5rem;
  font-size: 2rem;
  color: var(--clr-white);
}

.tabs-contents {
  padding: 3rem 15rem;
}

.modal-body-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

.paragraph-drivers-team {
  font-size: 1.6rem;
}

.custom-info-icon {
  color: var(--clr-orange);
}

.modal-body-image {
  flex: 1;
}

.modal-body-text {
  flex: 2;
  line-height: 1.4;
}

.modal-body-text-badges {
  font-size: 1.4rem;
  display: flex;
  gap: 1rem;
}

.modal-body-text-inner {
  text-align: justify;
  font-size: 1.6rem;
}

.modal-body-text-qualifications {
  display: flex;
}

.modal-header-custom {
  font-size: 1.6rem;
}

.modal-title-custom {
  font-size: 1.6rem;
}

.btn-close-custom {
  font-size: 1.4rem;
}

.our-services-section {
  color: var(--clr-black);
  background-color: var(--clr-light-blue);
}

.services-introduction {
  padding: 7.5rem 0 4rem 0;
  background-color: var(--clr-light-blue);
}

.service-title {
  color: var(--clr-white);
  font-size: 2.1rem;
}

.our-services-text-container {
  counter-reset: ctr;
  padding-bottom: 3rem;
}

.service-title::before {
  content: counter(ctr, decimal-leading-zero) ".";
  counter-increment: ctr;
  color: var(--clr-1);
}

.service-text {
  font-size: 1.8rem;
}

.phone-numbers {
  display: flex;
  flex-direction: column;
}

.phone-number-link {
  text-decoration: none;
  color: var(--clr-semi-transparent-white);
}

.phone-number-link:hover {
  color: var(--clr-semi-transparent-white);
}

.call-to-action-container-inner {
  gap: 1rem;
}

.contact-call-to-action-title {
  display: flex;
  justify-content: center;
  font-size: 3.8rem;
}

.contact-call-to-action-content {
  display: flex;
  justify-content: space-between;
  margin: auto;
  gap: 2rem;
  padding: 2rem;
}

.call-to-action-contact-info-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex: 3;
}

.phone-number-link {
  font-size: 2rem;
}

.contact-call-to-action-button {
  text-decoration: none;
  font-size: 1.6rem;
  background-color: var(--clr-orange);
  color: var(--clr-white);
  white-space: nowrap;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
}

.contact-call-to-action-button:hover {
  color: var(--clr-white);
}

#map-italy,
#map-france-germany {
  width: 100%;
  height: 750px;
}

.custom-marker {
  background-image: url("../images/ediontrans_logo_marker.png"); /* Path to your logo */
  background-size: cover;
  width: 30px; /* Adjust size */
  height: 30px;
  border-radius: 50%; /* Make it circular */
}

.location-name {
  color: black;
}

.location-description {
  color: black;
}

.italy-tour-paragraph {
  font-size: 2rem;
}

.brand-name {
  font-style: normal;
  color: hsl(162, 70%, 37%);
}

.country-name {
  font-style: normal;
  color: rgb(255, 107, 0);
}

#toast {
  position: fixed;
  top: 10rem;
  left: 50%;
  transform: translate(-50%);
  z-index: 2030;
  opacity: 0;
  transition: opacity 0.3s ease;
  padding: 1rem;
  border-radius: 0.5rem;
  font-size: 1.75rem;
}

.toast-visible {
  opacity: 1 !important;
}

.toast-hidden {
  opacity: 0;
}

.toast-error {
  background-color: red;
}

.toast-success {
  background-color: green;
}

.accordion-container-custom {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 5rem 0 7.5rem 0;
  font-size: 1.6rem;
}

.accordion-button-custom {
  padding: 1.5rem;
  font-size: 1.8rem;
  display: flex;
  border: 1px solid lightgray;
}

.accordion-body-custom {
  padding: 1.5rem;
}

.accordion-button {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  color: black;
  background-color: transparent;
}

.accordion-button .arrow {
  display: inline-flex;
  align-items: center;
}

.accordion-button:not(.collapsed) .arrow i {
  transform: rotate(180deg);
}

.accordion-button .arrow i {
  transition: transform 0.2s ease-in-out;
}

.accordion-body {
  color: black;
}

.accordion-item {
  border: none;
}

.accordion-button:focus {
  box-shadow: none;
}

.accordion-button:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

.q-a-section-container {
  padding: 3.5rem 0;
}

.q-a-section-title {
  color: var(--clr-black);
  font-size: 3.2rem;
}

.q-a-section-text {
  color: var(--clr-black);
  font-size: 1.8rem;
}

.ask-question-action-section {
  background-color: var(--clr-purple);
  padding: 7.5rem 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.ask-question-action-buttons {
  display: flex;
  flex-direction: row;
  gap: 2rem;
}

.action-link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 18rem;
  gap: 1rem;
  text-decoration: none;
  color: var(--clr-white);
  border: 1px solid var(--clr-white);
  padding: 1rem;
  border-radius: 0.5rem;
  font-size: 1.6rem;
}

.action-link:hover {
  color: var(--clr-white);
}

.action-link-whatsapp {
  transition: all 0.3s ease;
}

.action-link-messenger {
  transition: all 0.3s ease;
}

.action-link-form {
  transition: all 0.3s ease;
}

.action-link-phone {
  transition: all 0.3s ease;
}

.action-link-email {
  transition: all 0.3s ease;
}

.ask-question-title {
  font-size: 3.8rem;
  font-weight: 600;
}

.ask-question-text {
  font-size: 2.4rem;
  display: flex;
  justify-content: center;
  color: var(--clr-semi-transparent-white);
}

.contact-info-inner {
  gap: 1rem;
}

.ediontrans-contact-info {
  padding: 5rem 0;
  color: var(--clr-white);
  background-color: var(--clr-purple);
}

.contact-address {
  font-size: 1.8rem;
  text-decoration: none;
  color: var(--clr-white);
  transition: all 0.3s ease-in-out;
}

.contact-address-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-phones-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-chat-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.address-content-text {
  font-size: 1.8rem;
}

.address-content-icon {
  font-size: 1.8rem;
}

.address-content-info {
  font-size: 1.2rem;
}

.address-content-text-link {
  text-decoration: none;
  color: var(--clr-white);
  font-weight: 600;
  transition: all 0.3s ease;
}

.address-content-text-link:hover {
  color: var(--clr-golder-orange);
}

.contact-phones-title {
  font-size: 2rem;
}

.contact-phones-list {
  list-style: none;
}

.contact-phones-link {
  text-decoration: none;
  color: var(--clr-white);
  font-size: 1.8rem;
  transition: all 0.3s ease;
}

.contact-phones-link:hover {
  color: var(--clr-golder-orange);
}

.contact-chat-title {
  font-size: 2rem;
}

.contact-chat-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.chat-live-button {
  border: none;
  display: flex;
  gap: 1rem;
  font-size: 1.8rem;
  padding: 1rem 2rem;
  background-color: var(--clr-1);
  color: var(--clr-white);
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}

.chat-live-button:hover {
  background-color: var(--clr-1-darker);
}

.chat-live-info-text {
  font-size: 1.2rem;
}

.ediontrans-contact-info-title {
  font-size: 2.8rem;
  margin-bottom: 3rem;
  font-weight: 600;
}

.showroom-street-view {
  color: var(--clr-black);
  padding: 7.5rem 0;
}

.showroom-street-view-title {
  font-size: 3.4rem;
  font-weight: 600;
  margin-bottom: 0;
}

.showroom-street-view-subtitle {
  font-size: 2rem;
}

.showroom-street-view-subtitle-container {
  margin-bottom: 2rem;
}

.showroom-street-view-subtitle-address-link {
  font-size: 1.8rem;
  text-decoration: none;
  color: var(--clr-black);
  transition: all 0.3s ease;
}

.showroom-street-view-subtitle-address-link:hover {
  color: var(--clr-1);
}

.showroom-logo-text {
  color: var(--clr-1);
}

.showroom-street-view-image {
  border-radius: 1rem;
}

.ediontrans-contact-info-container {
  display: flex;
  align-items: center;
}

.update-date {
  font-size: 1.4rem;
}

.cookies-header-paragraph {
  text-align: center;
  font-size: 1.6rem;
}

.cookies-info-section {
  padding: 10rem 5rem;
  color: var(--clr-black);
}

.cookies-info-single-title {
  font-size: 2.6rem;
}

.cookies-info-single-text {
  font-size: 1.6rem;
  text-align: justify;
}

.cookies-info-single-text-strong {
  font-size: 1.6rem;
  text-align: justify;
}

.cookies-info-single-text-normal {
  font-size: 1.6rem;
  text-align: justify;
}

.cookies-info-single {
  margin-bottom: 2rem;
}

.header-title-tours {
  font-size: 6rem;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-3rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.container-404-custom {
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: black;
  font-family: "Poppins", serif;
  background-color: #2c2c2c;
  color: white;
  padding: 2rem;
  animation: fadeIn 0.4s ease-in-out;
}

.title-404 {
  font-size: 6rem;
  color: #007bff;
}

.subtitle-404 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 1.5rem;
}

.paragraph-404 {
  font-size: 1.2rem;
  text-align: center;
}

.btn-home {
  margin-top: 1.5rem;
  padding: 1rem 1.8rem;
  background-color: #007bff;
  color: white;
  text-decoration: none;
  border-radius: 0.5rem;
  font-size: 1.2rem;
  transition: 0.3s ease;
}

.btn-home:hover {
  background-color: #0056b3;
  color: white;
}

.logo-404-image {
  max-width: 5rem;
}

.link-logo-404 {
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.testimonials {
  background-color: var(--clr-purple-darker);
  padding: 12rem 0;
}

.testimonials-title {
  font-size: 3rem;
  padding: 0;
  margin: 0;
}

.testimonials-paragraph {
  font-size: 1.6rem;
}

.testimonial-single {
  display: flex;
  gap: 1rem;
}

.testimonial-quote {
  font-size: 3.6rem;
  line-height: 1.3;
}

.user-info {
  line-height: 1.2;
}

.user-info-user {
  color: var(--clr-semi-transparent-white);
  font-size: 1.7rem;
  color: var(--clr-);
}

.user-info-name {
  display: flex;
  font-size: 1.7rem;
  font-weight: 600;
}

.google-review-review {
  font-size: 1.7rem;
  color: var(--clr-white);
}

.testimonials-container {
  padding: 3rem 0;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.star-custom {
  font-size: 1.7rem;
  color: var(--clr-yellow-google-review);
}

.testimonials-action-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.show-more-reviews-button {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  border: none;
  background-color: var(--clr-dark-grey-1);
  color: var(--clr-white);
  font-size: 1.8rem;
  padding: 1rem 3rem;
  border-radius: 1rem;
}

.write-review-button {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 1.8rem;
  padding: 1rem 3rem;
  border-radius: 1rem;
  text-decoration: none;
  color: rgb(50, 50, 50);
  background-color: var(--clr-yellow-light);
  text-align: center;
}

.write-review-button:hover {
  color: rgb(50, 50, 50);
}

.call-to-action {
  background-color: var(--clr-1);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 12rem 0;
}

.call-to-action-title {
  font-size: 3.8rem;
}

.call-to-action-paragraph {
  font-size: 2.6rem;
}

.call-to-action-button {
  background-color: var(--clr-orange);
  border: none;
  padding: 1rem 2rem;
  border-radius: 5px;
  font-size: 1.6rem;
  color: var(--clr-white);
}

.custom-modal {
  color: var(--clr-black);
}

.back-button {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  border: none;
  background-color: #d3d3d3;
  font-size: 1.4rem;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 0.5rem;
  padding: 0.5rem 1.5rem;
}

.back-button span {
  display: flex;
}

.btn-close-modal-custom {
  font-size: 1.6rem;
}

.form-control {
  background-color: var(--clr-white);
}

.form-control:focus {
  background-color: var(--clr-white);
}

form select {
  color: #000 !important;
}

.initial-buttons-container {
  display: flex;
  flex-direction: column;
  margin: auto;
  gap: 1rem;
  width: 75%;
}

.initial-buttons-container button {
  font-size: 1.6rem !important;
}

.transport-people {
  background-color: var(--clr-dark-green);
  color: var(--clr-white);
}

.transport-people:hover {
  background-color: var(--clr-dark-green);
  color: var(--clr-white);
}

.flight-tickets {
  background-color: var(--clr-lighter-green);
  color: var(--clr-white);
}

.flight-tickets:hover {
  background-color: var(--clr-lighter-green);
  color: var(--clr-white);
}

.send-parcel {
  background-color: var(--clr-purple);
  color: var(--clr-white);
}

.send-parcel:hover {
  background-color: var(--clr-purple);
  color: var(--clr-white);
}

.form-steps-container {
  font-size: 1.8rem;
  display: flex;
  flex-direction: column;
  margin: auto;
}

.transport-people-buttons-container {
  display: flex;
  flex-direction: column;
  margin: auto;
  gap: 1rem;
  width: 75%;
}

.send-parcel-buttons-container {
  display: flex;
  flex-direction: column;
  margin: auto;
  gap: 1rem;
  width: 75%;
}

.transport-people-buttons-container button {
  font-size: 1.6rem;
}

.send-parcel-buttons-container button {
  font-size: 1.6rem;
}

.transport-people-italy {
  background-color: var(--clr-logo-green);
  border-color: var(--clr-logo-green);
}

.transport-people-italy:hover {
  background-color: var(--clr-logo-green-darker);
  border-color: var(--clr-logo-green-darker);
}

.transport-people-france-germany {
  background-color: var(--clr-orange);
  border-color: var(--clr-orange);
}

.transport-people-france-germany:hover {
  background-color: var(--clr-orange-darker);
  border-color: var(--clr-orange-darker);
}

.transport-airport {
  background-color: var(--clr-purple);
  border-color: var(--clr-purple);
}

.transport-airport:hover {
  background-color: var(--clr-purple-darker);
  border-color: var(--clr-purple-darker);
}

.transport-people-locally {
  background-color: var(--clr-1);
  border-color: var(--clr-1);
}

.transport-people-locally:hover {
  background-color: var(--clr-1-darker);
  border-color: var(--clr-1-darker);
}

.send-parcel-italy {
  background-color: var(--clr-purple);
  border-color: var(--clr-purple);
}

.send-parcel-italy:hover {
  background-color: var(--clr-purple-darker);
  border-color: var(--clr-purple-darker);
}

.send-parcel-france-germany {
  background-color: var(--clr-logo-green);
  border-color: var(--clr-logo-green);
}

.send-parcel-france-germany:hover {
  background-color: var(--clr-logo-green-darker);
  border-color: var(--clr-logo-green-darker);
}

.send-parcel-italy-form {
  font-size: 1.6rem;
}

.send-parcel-france-germany-form {
  font-size: 1.6rem;
}

.transport-people-italy-form {
  font-size: 1.6rem;
}

.departure-date-select {
  font-size: 1.6rem;
}

.departure-point-select {
  font-size: 1.6rem;
}

.arrival-point-select {
  font-size: 1.6rem;
}

.btn-send-form-custom {
  font-size: 1.6rem;
}

.btn-send-form-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: flex-end;
  align-items: center;
}

.captcha-error {
  color: red;
}

.transport-people-france-germany-form {
  font-size: 1.6rem;
}

.transport-airport-form {
  font-size: 1.6rem;
}

.transport-people-locally-form {
  font-size: 1.6rem;
}

.flight-tickets-form {
  font-size: 1.6rem;
}

.ask-a-question-form {
  font-size: 1.6rem;
}

.contact-us-section {
  background-color: var(--clr-logo-green-darker);
  padding: 19rem 0;
}

.address-title {
  color: var(--clr-white);
}

.call-title {
  color: var(--clr-white);
}

.phone-links-container {
  display: flex;
  flex-direction: column;
}

.contact-us-title {
  font-size: 3rem;
}

.contact-us-subtitle {
  font-size: 1.6rem;
  color: var(--clr-white);
}

.contact-us-text {
  font-size: 3.2rem;
}

.section-content {
  padding: 5rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.section-content-addresses-calls {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.address-title,
.call-title {
  font-size: 2.4rem;
  display: flex;
  gap: 1rem;
  align-items: center;
}

.call-title-text {
  color: var(--clr-white);
}

.address-title-text {
  color: var(--clr-white);
}

.address-title-icon,
.call-title-icon {
  color: var(--clr-white);
}

.fill-form-btn {
  font-size: 1.6rem;
  max-width: 40%;
}

.fill-form-btn:hover {
  background-color: var(--clr-white);
  color: var(--clr-black);
  border-color: var(--clr-white);
}

.section-content-text {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.modal {
  color: var(--clr-black);
}

.btn-close-modal {
  font-size: 1.5rem;
}

.emergency-icon-custom {
  color: #d32f2f;
}

.emergency-title {
  font-size: 2.4rem;
  padding-top: 1rem;
}

.ask-question-form {
  font-size: 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.form-actions {
  display: flex;
  gap: 1rem;
}

.btn-submit-custom {
  flex: 1;
  font-size: 1.6rem;
}

.btn-cancel-custom {
  flex: 1;
  font-size: 1.6rem;
}

.footer {
  position: relative;
  background-image: url("../../public/images/footer-background-map.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.footer::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
}

.footer-first-column {
  position: relative;
}

.footer .footer-first-column {
  z-index: 100;
}

.footer-second-column {
  position: relative;
}

.footer .footer-second-column {
  z-index: 100;
}

.footer-third-column {
  position: relative;
}

.footer .footer-third-column {
  z-index: 100;
}

.footer-logo-img {
  max-width: 40px;
}

.footer-logo-text {
  font-family: "EspumaPro-Bold";
}

.footer-contact-phone-numbers {
  display: flex;
  flex-direction: column;
}

.footer-phone-link {
  text-decoration: none;
  color: var(--clr-white);
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-phone-link:hover {
  text-decoration: none;
  color: var(--clr-logo-green);
}

.footer-contact-email-link {
  text-decoration: none;
}

.footer-contact-email-link:hover {
  color: var(--clr-orange);
}

.footer-contact-title {
  font-weight: 600;
  font-size: 2.6rem;
}

.footer-logo-container {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-contact-phone-numbers-title {
  color: var(--clr-logo-green);
  font-weight: bold;
}

.useful-links {
  font-weight: 600;
  font-size: 2.6rem;
}

.useful-links-container {
  display: flex;
  flex-direction: column;
}

.useful-link-inner {
  text-decoration: none;
  color: var(--clr-white);
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.useful-link-inner:hover {
  color: var(--clr-logo-green);
}

.phone-numbers-container {
  display: flex;
  flex-direction: column;
}

.footer-logo-text {
  font-size: 3rem;
  color: var(--clr-logo-green);
}

.footer-contact-email-title {
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--clr-logo-green);
}

.footer-contact-email-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.8rem;
  color: var(--clr-white);
}

.footer-contact-email-link:hover {
  color: var(--clr-logo-green);
}

.footer-contact-socials-title {
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--clr-logo-green);
}

.footer-contact-socials-facebook {
  text-decoration: none;
  color: var(--clr-white);
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-contact-socials-facebook:hover {
  color: var(--clr-logo-green);
}

.footer-contact-socials-instagram {
  text-decoration: none;
  color: var(--clr-white);
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-contact-socials-instagram:hover {
  color: var(--clr-logo-green);
}

.write-review-title {
  font-size: 2.6rem;
  font-weight: 600;
}

.footer-write-review-button {
  font-size: 1.8rem;
  padding: 0.5rem 1.5rem;
  text-wrap: nowrap;
  background-color: var(--clr-yellow-light);
  border-radius: 1rem;
  border: none;
}

.facebook-instagram-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.quick-call-option {
  display: none;
  position: fixed;
  bottom: 0;
  width: 100%;
  background-color: var(--clr-dark-grey-1);
  color: var(--clr-dark-grey-1);
  font-size: 1.6rem;
  padding: 1.5rem;
  z-index: 101;
}
@media (max-width: 576px) {
  .quick-call-option {
    display: flex;
  }
}

.phone-section-link {
  display: flex;
  text-decoration: none;
  color: inherit;
}

.phone-section-link:active,
.phone-section-link:visited,
.phone-section-link:hover {
  color: hsl(140, 100%, 30%) !important;
}

.phone-section-link {
  color: hsl(140, 100%, 30%);
}

.phone-section {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  color: hsl(140, 100%, 30%);
}

.phone-section-link {
  color: hsl(140, 100%, 30%);
}

.custom-clock-icon {
  color: var(--clr-orange-darker);
}

.program-section {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: var(--clr-white);
  flex: 4;
}

.program-container {
  display: flex;
  flex-direction: column;
}

.created-by {
  background-color: #444;
  display: flex;
  justify-content: center;
  padding: 0.25rem;
  font-size: 12px;
}

.created-by .created-by-link {
  text-decoration: none;
  transition: all 0.3s ease;
}

.created-by .created-by-link:hover {
  color: var(--clr-golder-orange);
}

.created-by p {
  padding: 0;
  margin: 0;
}

.list-container,
.navbar-list {
  height: 100%;
}

.nav-item-custom {
  height: 100%;
}

.navigation-link {
  height: 100%;
  color: var(--clr-black);
  display: flex;
  align-items: center;
}

.navigation-link:hover {
  background-color: var(--clr-1);
  color: var(--clr-white);
}

.navbar-sticky {
  opacity: 0.8;
}

.img-logo {
  width: 240px;
}

.logo-text {
  color: var(--logo-color);
  font-size: 3.2rem;
  font-family: "EspumaPro-Bold";
}

.details .vertical-decoration {
  top: 0;
  left: 0;
  width: 24px;
}

.details-2 .vertical-decoration {
  top: 5%;
  right: 0;
  width: 24px;
}

.video-play-button {
  position: absolute;
  z-index: 10;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: 32px;
  height: 44px;
  border-radius: 50%;
  display: block;
  box-sizing: content-box;
  padding: 1.125rem 1.25rem 1.125rem 1.75rem;
  cursor: pointer;
}

.video-play-button:before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: 76px;
  height: 76px;
  border-radius: 50%;
  display: block;
  background: var(--bs-primary);
  cursor: pointer;
  animation: pulse-border 1500ms ease-in-out infinite;
}

.video-play-button:after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: block;
  background: var(--bs-primary);
  cursor: pointer;
  transition: all 200ms;
}

.video-play-button span {
  position: relative;
  display: block;
  z-index: 3;
  top: 6px;
  left: 4px;
  width: 0;
  height: 0;
  border-left: 26px solid #fff;
  border-top: 16px solid transparent;
  border-bottom: 16px solid transparent;
}

@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}
.video-modal .modal-dialog {
  max-width: 1150px;
  margin-top: 20px;
}

.project-modals .modal-dialog {
  max-width: 1150px;
  margin-top: 130px;
}

.message-inner {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  color: var(--clr-black);
}

.back-to-main {
  text-decoration: none;
  font-size: 1.6rem;
  color: var(--clr-white);
}

.back-to-main:hover {
  color: var(--clr-white);
}

.submitted_logo {
  width: 240px;
}

.message-inner-logo-text {
  font-family: "EspumaPro-Bold";
  color: var(--logo-color);
  font-size: 3rem;
}

.message-inner-logo {
  display: flex;
  justify-content: center;
  align-items: center;
}

.side-buttons-container {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  position: fixed;
  right: 0.5rem;
  bottom: 35%;
  z-index: 11;
}

.side-buttons-socials {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.side-button-link {
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}

.side-buttons-whatsapp,
.side-buttons-messenger,
.side-buttons-form {
  font-size: 1.8rem;
  padding: 0.4rem;
  border-radius: 0.5rem;
}

.side-buttons-whatsapp {
  background-color: var(--clr-white);
}

.side-buttons-messenger {
  background-color: var(--clr-white);
}

.side-buttons-form {
  background-color: var(--clr-white);
}

.side-button-whatsapp-link {
  color: var(--clr-whatsapp);
}

.side-button-messenger-link {
  color: var(--clr-messenger);
}

.side-button-whatsapp-link:hover {
  color: var(--clr-whatsapp);
}

.side-button-messenger-link:hover {
  color: var(--clr-messenger);
}

.side-button-form-link:hover {
  color: var(--clr-orange);
}

.back-top-button {
  position: fixed;
  right: 0.5rem;
  bottom: 4rem;
  z-index: 1000;
}
@media (max-width: 576px) {
  .back-top-button {
    bottom: 9rem;
  }
}

.back-top-button-inner {
  padding: 0.5rem;
  font-size: 1.6rem;
  color: var(--clr-white);
  background-color: var(--clr-black);
  border-radius: 0.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  display: none;
}

.side-buttons-whatsapp {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.65rem 0;
  gap: 0.5rem;
}

.side-buttons-messenger {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.65rem 0;
  gap: 0.5rem;
}

.side-buttons-form {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.65rem 0;
  gap: 0.5rem;
}

.side-buttons-whatsapp:hover {
  cursor: pointer;
}

.side-buttons-messenger:hover {
  cursor: pointer;
}

.side-buttons-form:hover {
  cursor: pointer;
}

.side-button-link-whatsapp {
  position: absolute;
  white-space: nowrap;
  right: 5.5rem;
  color: var(--clr-whatsapp);
  display: none;
  background-color: var(--clr-white);
  padding: 0.9rem 1rem;
  border-radius: 0.5rem;
}

.side-button-link-messenger {
  position: absolute;
  white-space: nowrap;
  right: 5.5rem;
  color: var(--clr-messenger);
  display: none;
  background-color: var(--clr-white);
  padding: 0.9rem 1rem;
  border-radius: 0.5rem;
}

.side-button-link-form {
  position: absolute;
  white-space: nowrap;
  right: 5.5rem;
  color: var(--clr-orange);
  display: none;
  background-color: var(--clr-white);
  padding: 0.9rem 1rem;
  border-radius: 0.5rem;
}

.side-buttons-messenger {
  padding: 0.75rem;
}

.side-buttons-whatsapp {
  position: relative;
}

.side-buttons-messenger {
  position: relative;
}

.side-buttons-form {
  position: relative;
}

.modal-body-ask-question {
  padding: 2rem 4rem;
}

.modal-body-ask-question form textarea {
  font-size: 1.6rem;
}

.cookie-popup {
  position: fixed;
  bottom: 0;
  width: 100%;
  background-color: hsl(0, 0%, 20%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 1.4rem;
  padding: 2rem;
  z-index: 1000;
}
@media (max-width: 576px) {
  .cookie-popup {
    bottom: 84px;
  }
}

.cookie-popup-buttons-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
}

.find-more-about-cookies {
  text-decoration: none;
  color: var(--clr-white);
  background-color: var(--clr-logo-green);
  padding: 1rem;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}

.find-more-about-cookies:hover {
  color: var(--clr-white);
  background-color: var(--clr-logo-green-darker);
}

.close-cookie-popup {
  border: none;
  padding: 1rem;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}

.close-cookie-popup:hover {
  background-color: var(--clr-light-grey);
  color: var(--clr-white);
}

@media (max-width: 576px) {
  .header-title {
    font-size: 3rem;
  }
  .header-paragraph {
    max-width: 300px;
    font-size: 1.8rem;
    text-align: center;
  }
  .photo-gallery-titles {
    text-align: center;
  }
  .photo-gallery-paragraph {
    padding: 0 2rem;
    font-size: 2rem;
  }
  .photo-gallery-titles h2 {
    font-size: 3.2rem;
    text-transform: uppercase;
  }
  .photo-gallery-titles h5 {
    font-size: 1.8rem;
  }
  .testimonials {
    padding: 5rem 0;
  }
  .testimonials-container {
    padding-bottom: 2rem;
  }
  .testimonials-title {
    text-align: center;
  }
  .testimonials-paragraph {
    text-align: center;
  }
  .testimonial-quote {
    font-size: 2rem;
  }
  .testimonial-picture-inner {
    width: 5rem;
  }
  .testimonials-action-buttons {
    flex-direction: column;
  }
  .show-more-reviews-button {
    font-size: 1.5rem;
    padding: 0.5rem 1.5rem;
    width: 100%;
  }
  .write-review-button {
    font-size: 1.5rem;
    padding: 0.5rem 1.5rem;
    width: 100%;
  }
  .testimonials-action-buttons {
    display: flex;
    align-items: center;
  }
  .google-review-stars {
    display: flex;
    gap: 0.25rem;
  }
  .google-review-stars i {
    font-size: 1.25rem;
  }
  .user-info-name {
    font-size: 1.5rem;
  }
  .google-review-review {
    font-size: 1.5rem;
  }
  .user-info-user {
    font-size: 1.5rem;
  }
  .call-to-action {
    padding: 6rem 0;
    gap: 1rem;
  }
  .call-to-action-title {
    text-align: center;
    font-size: 3.4rem;
  }
  .call-to-action-paragraph {
    text-align: center;
    font-size: 2rem;
  }
  .contact-us-section {
    padding: 7.5rem 0;
  }
  .contact-us-text {
    font-size: 2.2rem;
  }
  .section-content {
    padding: 1rem 0;
    gap: 2rem;
  }
  .fill-form-btn {
    max-width: 100%;
  }
  .section-content-addresses-calls {
    padding: 2rem 3rem;
  }
  .footer {
    padding-top: 2.5rem !important;
    padding-bottom: 4rem !important;
  }
  .footer-contact-title {
    display: flex;
    justify-content: center;
  }
  .footer-logo-container {
    display: flex;
    justify-content: center;
  }
  .footer-contact-phone-numbers {
    align-items: center;
  }
  .footer-contact-email {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .footer-contact-socials {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .google-review-section {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .useful-links-section {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .about-us-text-container {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .general-title {
    font-size: 2.5rem;
  }
  .general-subtitle {
    font-size: 1.4rem;
    text-align: center;
  }
  .general-text-inner {
    font-size: 1.6rem;
    text-align: center;
  }
  .our-process-section {
    padding: 2.5rem 0;
  }
  .our-process-title {
    font-size: 2.2rem;
  }
  .process-title {
    font-size: 1.8rem;
  }
  .process-text {
    font-size: 1.6rem;
  }
  .tabs-contents {
    padding: 3rem;
  }
  .tab-title {
    width: unset;
  }
  .tab-title-lg-screen {
    display: none;
  }
  .tab-title-sm-screen {
    display: flex;
  }
  .col-tab-custom {
    width: unset;
  }
  .tab-title-active {
    transform: translateY(-50%);
  }
  .tabs-titles {
    justify-content: center;
    padding: 1rem 1.5rem;
  }
  .tab-content-single-text {
    font-size: 1.6rem;
  }
  .tabbed-row {
    grid-template-columns: unset;
  }
  .tab-content-single-icon {
    width: 3rem;
    font-size: 1rem;
  }
  .our-drivers-title {
    font-size: 2.2rem;
    text-align: center;
  }
  .our-drivers-subtitle {
    font-size: 1.4rem;
  }
  .our-drivers-cards-container .row .col-md-3 {
    margin-bottom: 2rem;
  }
  .our-drivers-cards-container .row .col-md-3 {
    max-width: 20rem;
  }
  .our-drivers-row {
    display: flex;
    justify-content: center;
    margin-right: 0;
  }
  .our-drivers-cards-container {
    padding: 2rem 0 4rem 0;
  }
  .our-drivers-section {
    padding: 3.5rem 0;
  }
  .our-drivers-title {
    font-size: 2.6rem;
  }
  .our-drivers-subtitle {
    font-size: 1.5rem;
    text-align: center;
  }
  .our-drivers-cards-container {
    padding: 2rem 0 0 0;
  }
  .container-icon-name {
    line-height: 1.2;
  }
  .modal-body-container {
    flex-direction: column;
  }
  .modal-body-image img {
    max-width: 175px;
  }
  .call-to-action-container {
    padding: 5rem 0;
  }
  .about-call-to-action-title {
    text-align: center;
    font-size: 2.5rem;
    margin: 0;
  }
  .call-to-action-text p {
    text-align: center;
    font-size: 1.6rem;
  }
  .call-to-action-button-container {
    display: flex;
    justify-content: center;
  }
  .general-title {
    display: flex;
    justify-content: center;
  }
  .services-introduction {
    padding: 4rem 0 3.5rem 0;
  }
  .general-subtitle {
    font-size: 1.6rem;
  }
  .general-text-inner {
    font-size: 1.8rem;
  }
  .service-title {
    font-size: 2.2rem;
  }
  .photo-gallery-info-container {
    padding: 0;
  }
  .services-photo-gallery-title {
    font-size: 2.6rem !important;
  }
  .services-photo-gallery-badge {
    color: var(--clr-1);
    font-size: 1.6rem;
  }
  .services-photo-gallery-paragraph {
    color: var(--clr-black);
    font-size: 1.6rem;
    padding: 0 2rem;
    text-align: justify;
  }
  .contact-call-to-action-title {
    font-size: 3rem;
  }
  .contact-call-to-action-paragraph {
    font-size: 2.2rem;
    text-align: center;
  }
  .call-to-action-contact-info-container {
    display: flex;
    flex-direction: column;
  }
  .phone-numbers {
    justify-content: center;
    align-items: center;
  }
  .faq-header-paragraph {
    font-size: 1.6rem;
    padding: 0 3rem;
    text-align: center;
  }
  .q-a-section-title {
    font-size: 2.6rem;
    text-align: center;
  }
  .q-a-section-text {
    text-align: center;
    padding: 0 2rem;
    font-size: 1.6rem;
  }
  .accordion-container-custom {
    padding: 2rem 2rem 3rem 2rem;
  }
  .ask-question-action-section {
    padding: 3rem 2rem;
  }
  .ask-question-title {
    font-size: 2.8rem;
    text-align: center;
  }
  .ask-question-text {
    font-size: 1.8rem;
    text-align: center;
  }
  .ask-question-action-buttons {
    flex-direction: column;
    gap: 0.5rem;
  }
  .ediontrans-contact-info-title {
    font-size: 2.4rem;
    text-align: center;
  }
  .contact-address-container {
    text-align: center;
  }
  .showroom-street-view {
    padding: 5rem 0;
  }
  .showroom-street-view-title {
    font-size: 2.8rem;
  }
  .showroom-street-view-subtitle {
    font-size: 1.8rem;
  }
  .showroom-street-view-subtitle-address-link {
    font-size: 1.6rem;
  }
  .showroom-street-view-image {
    padding: 0 2rem;
  }
  .cookies-header-paragraph {
    padding: 0.5rem 2rem;
  }
  .cookies-info-section {
    padding: 4rem;
  }
  .cookies-info-single-title {
    font-size: 2.2rem;
  }
  .cookies-info-single-text {
    font-size: 1.4rem;
    text-align: left;
  }
  .cookies-info-single-text-strong {
    font-size: 1.4rem;
    text-align: left;
  }
  .cookies-info-single-text-normal {
    font-size: 1.4rem;
    text-align: left;
  }
  body {
    overflow-x: hidden;
    max-width: 100%;
  }
}
@media (min-width: 576px) and (max-width: 768px) {
  .header-title {
    font-size: 3.5rem;
  }
  .header-paragraph {
    max-width: 400px;
    font-size: 2rem;
    text-align: center;
  }
  .photo-gallery-titles {
    text-align: center;
  }
  .photo-gallery-paragraph {
    padding: 0 2rem;
    font-size: 2.2rem;
  }
  .photo-gallery-titles h2 {
    font-size: 3.4rem;
    text-transform: uppercase;
  }
  .photo-gallery-titles h5 {
    font-size: 2rem;
  }
  .testimonials {
    padding: 5rem 0;
  }
  .testimonials-container {
    padding-bottom: 2rem;
    margin-top: 1rem;
    padding-top: 0;
  }
  .testimonials-title {
    text-align: center;
  }
  .testimonials-paragraph {
    text-align: center;
  }
  .testimonial-quote {
    font-size: 2.2rem;
  }
  .testimonial-picture-inner {
    width: 5rem;
  }
  .testimonials-action-buttons {
    flex-direction: row;
  }
  .show-more-reviews-button {
    font-size: 1.5rem;
    padding: 0.5rem 1.5rem;
    width: 70%;
    flex: 1;
  }
  .write-review-button {
    font-size: 1.5rem;
    padding: 0.5rem 1.5rem;
    width: 70%;
    flex: 1;
  }
  .testimonials-action-buttons {
    display: flex;
    align-items: center;
  }
  .google-review-stars {
    display: flex;
    gap: 0.25rem;
  }
  .google-review-stars i {
    font-size: 1.25rem;
  }
  .user-info-name {
    font-size: 1.5rem;
  }
  .google-review-review {
    font-size: 1.5rem;
  }
  .user-info-user {
    font-size: 1.5rem;
  }
  .show-more-reviews-button-text {
    white-space: nowrap;
  }
  .write-review-button {
    white-space: nowrap;
  }
  .call-to-action {
    padding: 6rem 0;
    gap: 1.2rem;
  }
  .call-to-action-title {
    text-align: center;
    font-size: 3.2rem;
  }
  .call-to-action-paragraph {
    text-align: center;
    font-size: 2rem;
  }
  .contact-us-section {
    padding: 7rem 0;
  }
  .contact-us-text {
    font-size: 2.2rem;
    text-align: left !important;
  }
  .section-content {
    padding: 1rem 0;
    gap: 2rem;
  }
  .fill-form-btn {
    max-width: 75%;
  }
  .section-content-addresses-calls {
    padding: 2rem 5rem;
  }
  .about-us-text-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .general-title {
    font-size: 2.8rem;
  }
  .general-subtitle {
    font-size: 1.6rem;
    text-align: center;
  }
  .general-text-inner {
    font-size: 1.8rem;
    text-align: left;
  }
  .our-process-section {
    padding: 2.5rem 0;
  }
  .our-process-title {
    font-size: 2.2rem;
  }
  .process-title {
    font-size: 1.8rem;
  }
  .process-text {
    font-size: 1.6rem;
  }
  .tabs-contents {
    padding: 3rem;
  }
  .tab-title {
    width: unset;
  }
  .tab-title-lg-screen {
    display: none;
  }
  .tab-title-sm-screen {
    display: flex;
  }
  .col-tab-custom {
    width: unset;
  }
  .tab-title-active {
    transform: translateY(-50%);
  }
  .tabs-titles {
    justify-content: center;
    padding: 1rem 1.5rem;
  }
  .tab-content-single-text {
    font-size: 1.6rem;
  }
  .tabbed-row {
    grid-template-columns: unset;
  }
  .tab-content-single-icon {
    width: 3rem;
    font-size: 0.75rem;
    padding: 1rem 3rem;
  }
  .our-drivers-section {
    padding: 4rem 0;
  }
  .our-drivers-title {
    font-size: 2.4rem;
    text-align: left;
  }
  .our-drivers-subtitle {
    font-size: 1.6rem;
  }
  .our-drivers-cards-container .row .col-md-3 {
    margin-bottom: 2rem;
  }
  .our-drivers-cards-container .row .col-md-3 {
    max-width: 20rem;
  }
  .our-drivers-row {
    display: flex;
    justify-content: center;
  }
  .our-drivers-cards-container {
    padding: 2rem 0 4rem 0;
  }
  .modal-body-container {
    flex-direction: row;
  }
  .modal-body-image img {
    max-width: 140px;
  }
  .call-to-action-container {
    padding: 3rem 0;
    gap: 0.5rem;
  }
  .about-call-to-action-title {
    text-align: left;
    font-size: 2.6rem;
    margin: 0;
  }
  .call-to-action-text p {
    text-align: left;
    font-size: 1.8rem;
  }
  .call-to-action-button-container {
    display: flex;
    justify-content: flex-start;
  }
  .general-title {
    display: flex;
    justify-content: center;
  }
  .services-introduction {
    padding: 4rem 0 3.5rem 0;
  }
  .general-subtitle {
    font-size: 1.6rem;
  }
  .general-text-inner {
    font-size: 1.6rem;
    text-align: justify;
  }
  .service-title {
    font-size: 2rem;
  }
  .service-text {
    font-size: 1.6rem;
  }
  .photo-gallery-info-container {
    padding: 0;
  }
  .services-photo-gallery-title {
    font-size: 2.6rem !important;
  }
  .services-photo-gallery-badge {
    color: var(--clr-1);
    font-size: 1.6rem;
  }
  .services-photo-gallery-paragraph {
    color: var(--clr-black);
    font-size: 1.6rem;
    padding: 0 2rem;
    text-align: justify;
  }
  .contact-call-to-action-title {
    font-size: 3rem;
  }
  .contact-call-to-action-paragraph {
    font-size: 2.2rem;
    text-align: center;
  }
  .contact-call-to-action-content {
    display: flex;
    flex-direction: column;
  }
  .call-to-action-contact-info-container {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
  }
  .phone-numbers {
    justify-content: center;
    align-items: center;
  }
  .phone-number-link {
    font-size: 1.6rem;
  }
  .q-a-section-title {
    font-size: 3rem;
    text-align: left;
  }
  .faq-header-paragraph {
    font-size: 1.8rem;
    padding: 0 3rem;
    text-align: center;
  }
  .q-a-section-text {
    text-align: left;
    padding: 0;
    font-size: 1.6rem;
  }
  .accordion-container-custom {
    padding: 2rem 0rem 3rem 0rem;
  }
  .ask-question-action-section {
    padding: 3rem 2rem;
  }
  .ask-question-title {
    font-size: 2.8rem;
    text-align: center;
  }
  .ask-question-text {
    font-size: 1.8rem;
    text-align: center;
  }
  .ask-question-action-buttons {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
  }
  .ediontrans-contact-info {
    padding: 7.5rem 0;
  }
  .ediontrans-contact-info-title {
    font-size: 2.6rem;
    text-align: center;
  }
  .contact-address-container {
    text-align: center;
  }
  .showroom-street-view {
    padding: 7.5rem 0;
  }
  .showroom-street-view-title {
    font-size: 2.8rem;
  }
  .showroom-street-view-subtitle {
    font-size: 1.8rem;
  }
  .showroom-street-view-subtitle-address-link {
    font-size: 1.6rem;
  }
  .showroom-street-view-image {
    padding: 0 2rem;
  }
  .contact-chat-container {
    margin-top: 2rem;
  }
  .contact-phones-link {
    white-space: nowrap;
  }
  .cookies-info-section {
    padding: 6.5rem 5rem;
  }
  .cookies-header-paragraph {
    padding: 0.5rem 2rem;
  }
  .cookies-info-single-title {
    font-size: 2.2rem;
  }
  .cookies-info-single-text {
    font-size: 1.4rem;
    text-align: justify;
  }
  .cookies-info-single-text-strong {
    font-size: 1.4rem;
    text-align: justify;
  }
  .cookies-info-single-text-normal {
    font-size: 1.4rem;
    text-align: justify;
  }
}
@media (min-width: 768px) and (max-width: 992px) {
  .header-title {
    font-size: 4rem;
  }
  .header-paragraph {
    max-width: 500px;
    font-size: 2.2rem;
    text-align: center;
  }
  .photo-gallery-titles {
    text-align: center;
  }
  .photo-gallery-paragraph {
    padding: 0 2rem;
    font-size: 1.8rem;
  }
  .photo-gallery-titles h2 {
    font-size: 2.5rem;
    text-transform: uppercase;
  }
  .photo-gallery-titles h5 {
    font-size: 2rem;
  }
  .testimonials {
    padding: 5rem 0;
  }
  .testimonials-container {
    padding-bottom: 2rem;
    margin-top: 3rem;
    padding-top: 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .testimonial-quote {
    font-size: 3rem;
  }
  .testimonial-picture-inner {
    width: 5rem;
  }
  .testimonials-action-buttons {
    flex-direction: row;
  }
  .show-more-reviews-button {
    font-size: 1.5rem;
    padding: 0.5rem 1.5rem;
    width: 70%;
    flex: 1;
  }
  .write-review-button {
    font-size: 1.5rem;
    padding: 0.5rem 1.5rem;
    width: 70%;
    flex: 1;
  }
  .testimonials-action-buttons {
    display: flex;
    align-items: center;
  }
  .google-review-stars {
    display: flex;
    gap: 0.25rem;
  }
  .google-review-stars i {
    font-size: 1.35rem;
  }
  .user-info-name {
    font-size: 1.6rem;
  }
  .google-review-review {
    font-size: 1.6rem;
  }
  .user-info-user {
    font-size: 1.6rem;
  }
  .call-to-action {
    padding: 6rem 0;
    gap: 1.2rem;
  }
  .call-to-action-title {
    text-align: center;
    font-size: 3.4rem;
  }
  .call-to-action-paragraph {
    text-align: center;
    font-size: 2.2rem;
  }
  .contact-us-section {
    padding: 10rem 0;
  }
  .contact-us-text {
    font-size: 2.4rem;
    text-align: left !important;
  }
  .section-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .section-content {
    padding: 1rem 0;
    gap: 3rem;
  }
  .fill-form-btn {
    max-width: 100%;
  }
  .section-content-addresses-calls {
    padding: 2rem 5rem;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .section-address-phones {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .footer-write-review-button {
    font-size: 1.2rem;
    width: 100%;
  }
  .about-us-text-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 3rem;
  }
  .general-title {
    font-size: 3rem;
  }
  .general-subtitle {
    font-size: 1.8rem;
    text-align: center;
  }
  .general-text-inner {
    font-size: 1.8rem;
    text-align: justify;
  }
  .our-process-title {
    font-size: 2.4rem;
  }
  .process-title {
    font-size: 1.8rem;
  }
  .process-text {
    font-size: 1.6rem;
  }
  .tab-title-lg-screen {
    display: none;
  }
  .tab-title-md-screen {
    display: block;
    font-size: 1.4rem;
  }
  .tab-title-active {
    transform: translateY(-75%);
  }
  .tabs-titles {
    padding: 1rem;
  }
  .tabs-contents {
    padding: 0;
  }
  .our-drivers-section {
    padding: 5rem 0;
  }
  .our-drivers-title {
    font-size: 2.5rem;
    text-align: left;
  }
  .our-drivers-subtitle {
    font-size: 1.7rem;
  }
  .our-drivers-cards-container .row .col-md-3 {
    margin-bottom: 2rem;
  }
  .our-drivers-cards-container .row .col-md-3 {
    max-width: 22rem;
  }
  .our-drivers-row {
    display: flex;
    justify-content: center;
  }
  .our-drivers-cards-container {
    padding: 2rem 0 4rem 0;
  }
  .call-to-action-container {
    padding: 4rem 0;
    gap: 1rem;
  }
  .about-call-to-action-title {
    text-align: left;
    font-size: 2.8rem;
    margin: 0;
  }
  .call-to-action-text p {
    text-align: left;
    font-size: 1.8rem;
  }
  .call-to-action-button-container {
    display: flex;
    justify-content: flex-start;
  }
  .general-title {
    display: flex;
    justify-content: center;
    font-size: 3.2rem;
  }
  .services-introduction {
    padding: 6rem 0 4.5rem 0;
  }
  .general-subtitle {
    font-size: 1.8rem;
  }
  .general-text-inner {
    font-size: 1.8rem;
    text-align: justify;
  }
  .service-title {
    font-size: 2.2rem;
  }
  .service-text {
    font-size: 1.8rem;
  }
  .photo-gallery-info-container {
    flex-direction: column;
    padding: 0;
    margin-bottom: 2rem;
  }
  .services-photo-gallery-title {
    font-size: 2.4rem !important;
  }
  .services-photo-gallery-badge {
    color: var(--clr-1);
    font-size: 1.4rem;
    white-space: nowrap;
  }
  .services-photo-gallery-paragraph {
    color: var(--clr-black);
    font-size: 2rem;
    padding: 0 2rem;
    text-align: justify;
    line-height: 1.4;
  }
  .contact-call-to-action-title {
    font-size: 3rem;
  }
  .contact-call-to-action-paragraph {
    font-size: 2.2rem;
    text-align: center;
  }
  .contact-call-to-action-content {
    display: flex;
    flex-direction: column;
  }
  .call-to-action-contact-info-container {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
  }
  .phone-number-link {
    font-size: 1.6rem;
  }
  .q-a-section-title {
    font-size: 3rem;
    text-align: left;
  }
  .faq-header-paragraph {
    font-size: 1.8rem;
    padding: 0 3rem;
    text-align: center;
  }
  .q-a-section-text {
    text-align: justify;
    padding: 0;
    font-size: 1.6rem;
  }
  .accordion-container-custom {
    padding: 2rem 0rem 3rem 0rem;
  }
  .ask-question-action-section {
    padding: 3rem 2rem;
  }
  .ask-question-title {
    font-size: 2.8rem;
    text-align: center;
  }
  .ask-question-text {
    font-size: 1.8rem;
    text-align: center;
  }
  .ask-question-action-buttons {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
  }
  .ediontrans-contact-info {
    padding: 7.5rem 0;
  }
  .ediontrans-contact-info-title {
    font-size: 2.6rem;
    text-align: center;
  }
  .contact-address-container {
    text-align: center;
  }
  .showroom-street-view {
    padding: 8.5rem 0;
  }
  .showroom-street-view-title {
    font-size: 3rem;
    text-align: center;
  }
  .showroom-street-view-subtitle-container {
    text-align: center;
  }
  .showroom-street-view-subtitle {
    font-size: 1.8rem;
  }
  .showroom-street-view-subtitle-address-link {
    font-size: 1.6rem;
  }
  .showroom-street-view-image {
    padding: 0 2rem;
  }
  .contact-phones-link {
    white-space: nowrap;
  }
  .chat-live-info {
    text-align: center;
  }
  .cookies-info-section {
    padding: 7.5rem 6rem;
  }
  .cookies-header-paragraph {
    padding: 0.5rem 2rem;
  }
  .cookies-info-single-title {
    font-size: 2.4rem;
  }
  .cookies-info-single-text {
    font-size: 1.5rem;
    text-align: justify;
  }
  .cookies-info-single-text-strong {
    font-size: 1.4rem;
    text-align: justify;
  }
  .cookies-info-single-text-normal {
    font-size: 1.4rem;
    text-align: justify;
  }
}
@media (min-width: 992px) and (max-width: 1200px) {
  .header-title {
    font-size: 4.4rem;
  }
  .header-paragraph {
    max-width: 600px;
    font-size: 2.4rem;
    text-align: center;
  }
  .photo-gallery-titles {
    text-align: center;
  }
  .photo-gallery-paragraph {
    padding: 0 2rem;
    font-size: 2rem;
  }
  .photo-gallery-titles h2 {
    font-size: 2.8rem;
    text-transform: uppercase;
  }
  .photo-gallery-titles h5 {
    font-size: 1.6rem;
  }
  .testimonials {
    padding: 5rem 0;
  }
  .testimonials-container {
    padding: 3rem 0 4.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
  .testimonial-quote {
    font-size: 3.2rem;
  }
  .testimonial-picture-inner {
    width: 5rem;
  }
  .show-more-reviews-button {
    font-size: 1.8rem;
    padding: 0.5rem 1.5rem;
    width: 70%;
    flex: 1;
  }
  .write-review-button {
    font-size: 1.8rem;
    padding: 0.5rem 1.5rem;
    width: 70%;
    flex: 1;
  }
  .testimonials-action-buttons {
    display: flex;
    align-items: center;
  }
  .google-review-stars {
    display: flex;
    gap: 0.25rem;
  }
  .google-review-stars i {
    font-size: 1.45rem;
  }
  .user-info-name {
    font-size: 1.65rem;
  }
  .google-review-review {
    font-size: 1.65rem;
  }
  .user-info-user {
    font-size: 1.65rem;
  }
  .section-header {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .contact-us-section {
    padding: 12rem 0;
  }
  .contact-us-text {
    font-size: 2.4rem;
    text-align: left !important;
  }
  .section-content {
    padding: 1rem 0;
    gap: 3rem;
  }
  .fill-form-btn {
    max-width: 100%;
  }
  .section-content-addresses-calls {
    padding: 2rem 5rem;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .footer-write-review-button {
    font-size: 1.2rem;
    width: 100%;
  }
  .about-us-text-container {
    padding: 0 5rem;
    display: flex;
    gap: 1.5rem;
  }
  .general-title {
    font-size: 3rem;
  }
  .general-subtitle {
    font-size: 1.8rem;
    text-align: left;
  }
  .general-text-inner {
    font-size: 1.8rem;
    text-align: justify;
  }
  .our-process-title {
    font-size: 2.4rem;
  }
  .process-title {
    font-size: 1.8rem;
  }
  .process-text {
    font-size: 1.6rem;
  }
  .tab-title-lg-screen {
    display: none;
  }
  .tab-title-md-screen {
    display: block;
  }
  .tabs-titles {
    padding: 1rem 2rem;
  }
  .tab-title-active {
    transform: translateY(-50%);
  }
  .our-drivers-section {
    padding: 5rem 0;
  }
  .our-drivers-title {
    font-size: 2.6rem;
    text-align: left;
  }
  .our-drivers-subtitle {
    font-size: 1.7rem;
  }
  .our-drivers-cards-container .row .col-md-3 {
    margin-bottom: 2rem;
  }
  .our-drivers-cards-container .row .col-md-3 {
    max-width: 22rem;
  }
  .our-drivers-row {
    display: flex;
    justify-content: center;
  }
  .our-drivers-cards-container {
    padding: 2rem 0 4rem 0;
  }
  .call-to-action-container {
    padding: 4rem 0;
    gap: 1rem;
  }
  .about-call-to-action-title {
    text-align: left;
    font-size: 3.2rem;
    margin: 0;
  }
  .call-to-action-text p {
    text-align: left;
    font-size: 1.8rem;
  }
  .call-to-action-button-container {
    display: flex;
    justify-content: flex-start;
  }
  .general-title {
    display: flex;
    justify-content: center;
    font-size: 2.8rem;
  }
  .general-subtitle {
    font-size: 1.6rem;
  }
  .general-text-inner {
    font-size: 1.8rem;
    text-align: justify;
  }
  .about-us-text-container {
    flex-direction: column;
  }
  .services-introduction {
    padding: 6rem 0 4.5rem 0;
  }
  .service-title {
    font-size: 2.4rem;
  }
  .service-text {
    font-size: 1.8rem;
  }
  .photo-gallery-info-container {
    flex-direction: column;
    padding: 0;
    margin-bottom: 2rem;
  }
  .services-photo-gallery-title {
    font-size: 2.4rem !important;
  }
  .services-photo-gallery-badge {
    color: var(--clr-1);
    font-size: 1.4rem;
    white-space: nowrap;
  }
  .services-photo-gallery-paragraph {
    color: var(--clr-black);
    font-size: 2rem;
    padding: 0 2rem;
    text-align: justify;
    line-height: 1.4;
  }
  .contact-call-to-action-title {
    font-size: 3.2rem;
  }
  .contact-call-to-action-paragraph {
    font-size: 2.4rem;
    text-align: center;
  }
  .contact-call-to-action-content {
    display: flex;
    flex-direction: column;
  }
  .call-to-action-contact-info-container {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
  }
  .phone-numbers {
    justify-content: center;
    align-items: flex-start;
  }
  .phone-number-link {
    font-size: 1.8rem;
  }
  .q-a-section-title {
    font-size: 3rem;
    text-align: left;
  }
  .faq-header-paragraph {
    font-size: 1.8rem;
    padding: 0 3rem;
    text-align: center;
  }
  .q-a-section-text {
    text-align: justify;
    padding: 0;
    font-size: 1.8rem;
  }
  .accordion-container-custom {
    padding: 2rem 0rem 3rem 0rem;
  }
  .ask-question-action-section {
    padding: 6rem 2rem;
  }
  .ask-question-title {
    font-size: 3rem;
    text-align: center;
  }
  .ask-question-text {
    font-size: 2rem;
    text-align: center;
    padding-bottom: 1rem;
  }
  .ask-question-action-buttons {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1rem;
  }
  .ediontrans-contact-info {
    padding: 7.5rem 0;
  }
  .ediontrans-contact-info-title {
    font-size: 2.8rem;
    text-align: center;
  }
  .contact-address-container {
    text-align: center;
  }
  .showroom-street-view {
    padding: 8.5rem 0;
  }
  .showroom-street-view-title {
    font-size: 3rem;
    text-align: left;
  }
  .showroom-street-view-subtitle-container {
    text-align: left;
  }
  .showroom-street-view-subtitle {
    font-size: 1.8rem;
    margin-bottom: 0;
  }
  .showroom-street-view-subtitle-address-link {
    font-size: 1.6rem;
  }
  .showroom-street-view-image {
    padding: 0;
  }
  .contact-phones-link {
    white-space: nowrap;
  }
  .chat-live-info {
    text-align: center;
  }
  .cookies-info-section {
    padding: 8rem 6.5rem;
  }
  .cookies-header-paragraph {
    padding: 0.5rem 2rem;
  }
  .cookies-info-single-title {
    font-size: 2.6rem;
  }
  .cookies-info-single-text {
    font-size: 1.6rem;
    text-align: justify;
  }
  .cookies-info-single-text-strong {
    font-size: 1.6rem;
    text-align: justify;
  }
  .cookies-info-single-text-normal {
    font-size: 1.6rem;
    text-align: justify;
  }
}
@media (min-width: 1201px) and (max-width: 1400px) {
  .header-title {
    font-size: 4.8rem;
  }
  .header-paragraph {
    max-width: 700px;
    font-size: 2.6rem;
    text-align: center;
  }
  .photo-gallery-titles {
    text-align: center;
  }
  .photo-gallery-paragraph {
    padding: 0 2rem;
    font-size: 2.2rem;
  }
  .photo-gallery-titles h2 {
    font-size: 3rem;
    text-transform: uppercase;
  }
  .photo-gallery-titles h5 {
    font-size: 1.8rem;
  }
  .testimonials {
    padding: 5rem 0;
  }
  .testimonials-container {
    padding: 3rem 0 4.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
  .testimonial-quote {
    font-size: 3.6rem;
  }
  .testimonial-picture-inner {
    width: 5rem;
  }
  .show-more-reviews-button {
    font-size: 2.2rem;
    padding: 0.5rem 1.5rem;
    width: 70%;
    flex: 1;
  }
  .write-review-button {
    font-size: 2rem;
    padding: 0.5rem 1.5rem;
    width: 70%;
    flex: 1;
  }
  .testimonials-action-buttons {
    display: flex;
    align-items: center;
  }
  .google-review-stars {
    display: flex;
    gap: 0.25rem;
  }
  .google-review-stars i {
    font-size: 1.55rem;
  }
  .user-info-name {
    font-size: 1.7rem;
  }
  .google-review-review {
    font-size: 1.7rem;
  }
  .user-info-user {
    font-size: 1.7rem;
  }
  .contact-us-section {
    padding: 12rem 0;
  }
  .contact-us-text {
    font-size: 2.4rem;
    text-align: left !important;
  }
  .section-content {
    padding: 1rem 0;
    gap: 3rem;
  }
  .section-header {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .fill-form-btn {
    max-width: 100%;
  }
  .section-content-addresses-calls {
    padding: 2rem 5rem;
    width: 100%;
    display: flex;
    align-items: center;
  }
  .footer-write-review-button {
    font-size: 1.2rem;
    width: 100%;
  }
  .ediontrans-contact-info {
    padding: 7.5rem 0;
  }
  .ediontrans-contact-info-title {
    font-size: 2.8rem;
    text-align: center;
  }
  .contact-address-container {
    text-align: center;
  }
  .showroom-street-view {
    padding: 8.5rem 0;
  }
  .showroom-street-view-title {
    font-size: 3rem;
    text-align: left;
  }
  .showroom-street-view-subtitle-container {
    text-align: left;
  }
  .showroom-street-view-subtitle {
    font-size: 1.8rem;
    margin-bottom: 0;
  }
  .showroom-street-view-subtitle-address-link {
    font-size: 1.6rem;
  }
  .showroom-street-view-image {
    padding: 0;
  }
  .contact-phones-link {
    white-space: nowrap;
  }
  .chat-live-info {
    text-align: center;
  }
  .general-text-inner {
    text-align: justify;
  }
  .our-process-title {
    font-size: 2.4rem;
  }
  .process-title {
    font-size: 1.8rem;
  }
  .process-text {
    font-size: 1.6rem;
  }
  .tab-title-lg-screen {
    display: none;
  }
  .tab-title-md-screen {
    display: block;
  }
  .tabs-titles {
    padding: 1rem 2rem;
  }
  .tab-title-active {
    transform: translateY(-50%);
  }
  .tabs-contents {
    padding: 2rem 10rem;
  }
  .our-drivers-section {
    padding: 5rem 0;
  }
  .call-to-action-text {
    padding-bottom: 1rem;
  }
  .cookies-info-section {
    padding: 8rem 6.5rem;
  }
  .cookies-header-paragraph {
    padding: 0.5rem 2rem;
  }
  .cookies-info-single-title {
    font-size: 2.6rem;
  }
  .cookies-info-single-text {
    font-size: 1.6rem;
    text-align: justify;
  }
  .cookies-info-single-text-strong {
    font-size: 1.6rem;
    text-align: justify;
  }
  .cookies-info-single-text-normal {
    font-size: 1.6rem;
    text-align: justify;
  }
}
@media (min-width: 992px) {
  .action-link-whatsapp:hover {
    background-color: var(--clr-whatsapp);
    border-color: var(--clr-whatsapp);
  }
  .action-link-messenger:hover {
    background-color: var(--clr-messenger);
    border-color: var(--clr-messenger);
  }
  .action-link-form:hover {
    background-color: var(--clr-orange);
    border-color: var(--clr-orange);
  }
  .action-link-phone:hover {
    background-color: var(--clr-golder-orange);
    border-color: var(--clr-golder-orange);
  }
  .action-link-email:hover {
    background-color: var(--clr-soft-cyan-blue);
    border-color: var(--clr-soft-cyan-blue);
  }
}
@media (min-width: 1401px) {
  .header-paragraph {
    font-size: 2rem;
    text-align: center;
  }
  .show-more-reviews-button {
    flex: 1;
  }
  .write-review-button {
    flex: 1;
  }
  .google-review-stars {
    display: flex;
    gap: 0.25rem;
  }
  .google-review-stars i {
    font-size: 1.65rem;
  }
  .user-info-name {
    font-size: 1.75rem;
  }
  .google-review-review {
    font-size: 1.75rem;
  }
  .user-info-user {
    font-size: 1.75rem;
  }
  .contact-us-section {
    padding: 12rem 0;
  }
  .contact-us-text {
    font-size: 2.4rem;
    text-align: left !important;
  }
  .section-content {
    padding: 1rem 0;
  }
  .fill-form-btn {
    max-width: 100%;
  }
  .section-content-addresses-calls {
    padding: 2rem 5rem;
  }
  .about-us-text-container {
    display: flex;
    gap: 1.8rem;
  }
  .general-title {
    font-size: 3.2rem;
  }
  .general-subtitle {
    font-size: 2rem;
    text-align: left;
  }
  .general-text-inner {
    font-size: 1.8rem;
    text-align: justify;
  }
  .our-process-title {
    font-size: 2.6rem;
  }
  .process-title {
    font-size: 2rem;
  }
  .process-text {
    font-size: 1.8rem;
  }
  .our-drivers-title {
    font-size: 2.6rem;
    text-align: left;
  }
  .our-drivers-subtitle {
    font-size: 1.7rem;
  }
  .our-drivers-cards-container .row .col-md-3 {
    margin-bottom: 2rem;
  }
  .our-drivers-cards-container .row .col-md-3 {
    max-width: 35rem;
  }
  .our-drivers-row {
    display: flex;
    justify-content: flex-start;
  }
  .our-drivers-cards-container {
    padding: 2rem 0 4rem 0;
  }
  .call-to-action-container {
    padding: 7.5rem 0;
    gap: 1rem;
  }
  .about-call-to-action-title {
    text-align: left;
    font-size: 3.2rem;
    margin: 0;
  }
  .call-to-action-text p {
    text-align: left;
    font-size: 1.8rem;
  }
  .call-to-action-button-container {
    display: flex;
    justify-content: flex-start;
  }
  .general-title {
    display: flex;
    justify-content: flex-start;
    font-size: 3rem;
  }
  .general-subtitle {
    font-size: 1.6rem;
    white-space: nowrap;
  }
  .general-text-inner {
    font-size: 2rem;
    text-align: justify;
  }
  .about-us-text-container {
    flex-direction: row;
  }
  .services-introduction {
    padding: 6rem 0 4.5rem 0;
  }
  .service-title {
    font-size: 2.6rem;
  }
  .service-text {
    font-size: 1.8rem;
  }
  .photo-gallery-info-container {
    flex-direction: row;
    padding: 0;
    margin-bottom: 2rem;
  }
  .services-photo-gallery-title {
    font-size: 2.8rem !important;
  }
  .services-photo-gallery-badge {
    color: var(--clr-1);
    font-size: 1.4rem;
    white-space: nowrap;
  }
  .services-photo-gallery-paragraph {
    color: var(--clr-black);
    font-size: 2rem;
    padding: 0 2rem;
    text-align: justify;
    line-height: 1.4;
  }
  .contact-call-to-action-title {
    font-size: 3.2rem;
  }
  .contact-call-to-action-paragraph {
    font-size: 2.4rem;
    text-align: center;
  }
  .contact-call-to-action-content {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 4rem;
  }
  .call-to-action-contact-info-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
  }
  .phone-numbers {
    justify-content: center;
    align-items: flex-start;
  }
  .phone-number-link {
    font-size: 1.8rem;
  }
  .col-custom {
    max-width: unset;
  }
  .q-a-section-container {
    padding: 8.5rem 0;
  }
  .q-a-section-title {
    font-size: 3.4rem;
    text-align: left;
  }
  .faq-header-paragraph {
    font-size: 2.6rem;
    padding: 0 3rem;
    text-align: center;
  }
  .q-a-section-text {
    text-align: justify;
    padding: 0;
    font-size: 2.2rem;
  }
  .accordion-button-custom {
    font-size: 2.4rem;
  }
  .accordion-body-custom {
    font-size: 1.8rem;
  }
  .accordion-container-custom {
    padding: 2rem 0rem 3rem 0rem;
  }
  .ask-question-action-section {
    padding: 8.5rem 0;
  }
  .ask-question-title {
    font-size: 3.2rem;
    text-align: center;
  }
  .ask-question-text {
    font-size: 2.2rem;
    text-align: center;
    padding-bottom: 1rem;
  }
  .ask-question-action-buttons {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1rem;
  }
  .ediontrans-contact-info {
    padding: 10rem 0;
  }
  .ediontrans-contact-info-title {
    font-size: 3.4rem;
    text-align: center;
  }
  .contact-phones-title {
    font-size: 2.6rem;
  }
  .contact-chat-title {
    font-size: 2.6rem;
  }
  .address-content-text-link {
    font-size: 2rem;
  }
  .address-content-info {
    font-size: 1.4rem;
  }
  .contact-address-container {
    text-align: center;
  }
  .showroom-street-view {
    padding: 10rem 0;
  }
  .showroom-street-view-subtitle-container {
    text-align: left;
  }
  .showroom-street-view-image {
    padding: 0;
  }
  .contact-phones-link {
    white-space: nowrap;
    font-size: 2rem;
  }
  .chat-live-info {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
  }
  .chat-live-button {
    font-size: 2rem;
  }
  .chat-live-info-text {
    font-size: 1.4rem;
  }
  .showroom-street-view-title {
    font-size: 3.6rem;
    text-align: left;
  }
  .showroom-street-view-subtitle {
    font-size: 2.2rem;
    margin-bottom: 0;
  }
  .showroom-street-view-subtitle-address-link {
    font-size: 2rem;
  }
}
@media (max-width: 992px) {
  .xl-text {
    font-size: 50px;
  }
  .video-points {
    padding: 0 !important;
    text-align: center;
  }
  .video-points .col-lg-4 {
    margin-bottom: 20px;
  }
  .side-button-link-message {
    display: none !important;
  }
}
@media (max-width: 992px) {
  .navbar-ediontrans {
    padding: 1.2rem;
  }
}
@media (min-width: 992px) {
  .navbar-ediontrans {
    height: 80.75px;
  }
}
.edion-trans-text {
  color: var(--clr-logo-green);
  font-weight: bold;
}

.container-edion-trans-pre-map {
  padding: 5rem;
}

.no-display {
  display: none;
}

.map-test {
  padding: 50px;
}
