* {
  margin: 0;
  padding: 0;
  font-family: 'Times New Roman';
  color: #FFFFFF;
}

html {
  font-size: clamp(12px, 1.5vw, 26px);
  min-width: 780px;
}

body {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

#header {
  background-color: #102B3F;
  display: flex;
  flex-direction: row;
  height: 15%;
  width: 100%;
  align-items: center;
  justify-content: space-between;
}

#header h1 {
  font-size: 3rem;
  line-height: 100%;
  text-align: center;
  width: 80%;
}

#header img {
  width: 10%;
  height: 100%;
  object-fit: contain;
  margin-left: 2rem;
}

#spacer {
  width: 10%;
  height: 100%;
  margin-right: 2rem;
}

#content {
  background-color: #FDFFFC;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 90%;
  gap: 1rem;
}

#box{
  padding: 1rem;
  display: flex;
  justify-content: center;
}

#slideshow-container {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.mySlides {
  display: none;
  width: 100%;
  height: 100%;
}

.mySlides img {
  width: 100%;
  height: 100%;
  object-fit: fill;
}

.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {
    opacity: .4;
  }

  to {
    opacity: 1;
  }
}

#prev,
#next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  padding: 1rem;
  color: white;
  font-weight: bold;
  font-size: 1.75rem;
  transition: 0.3s ease;
  user-select: none;
  transform: translateY(-50%);
  z-index: 2;
}

#prev {
  left: 1rem;
  border-radius: 3px 0 0 3px;
}

#next {
  right: 1rem;
  border-radius: 0 3px 3px 0;
}

#prev:hover,
#next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

#dot-container {
  position: absolute;
  bottom: 1rem;
  width: 100%;
  text-align: center;
}

.dot {
  cursor: pointer;
  height: 1rem;
  width: 1rem;
  margin: 0 3px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active,
.dot:hover {
  background-color: #717171;
}

#card {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  gap: 1rem;
  width: 100%;
}

#slogan {
  background-color: #265273;
  width: 25%;
  display: flex;
  flex-direction:column;
  justify-content: center;
}

#slogan .h1 {
  font-size: 1.75rem;
  font-style: italic;
  text-align: center;
  padding: 1rem;
}

#prise {
  background-color: #265273;
  width: 75%;
  height: 100%;
  display: flex;
  flex-direction: row;
}

#description {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  width: 75%;
  gap: 0.5rem;
}

#description p {
  font-size: 1rem;
  padding: 0.25rem;
}

#description h2 {
  font-size: 1.5rem;
  text-align: center;
  padding: 0.25rem;
}

#links {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-evenly;
}

#links a {
  color: #FDFFFC;
  font-size: 1rem;
  padding: 0.5rem;
}

#prise-picture {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 25%;
  padding: 0.25rem;
}

#prise-picture img {
  width: 100%;
  height: 100%;
  object-fit: fill;
}

#main-service {
  background-color: #265273;
  display: flex;
  flex-flow: column;
  justify-content: space-evenly;
  gap:1.5rem;
  padding: 2rem 0rem; 
  width: 100%;
}

#main-service h1 {
  font-size: 2rem;
  font-style: italic;
  text-align: center;
}

#main-service h2 {
  font-size: 1.5rem;
  text-align: center;
}

.services {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 1rem;
}

.services-mobile{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
}

.service-description {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  width: 65%;
}

.service-description-mobile {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  width: 100%;
}

.registration-img {
  display: flex;
  width: 35%;
  justify-content: center;
  align-items: center;
}
.registration-img-mobile {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
}

#registration-img img {
  height: 100%;
  width: 100%;
  object-fit: fill;
}

#vehicle-types {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 1rem;
  height: 60%;
}

.vehicle {
  background-color: #265273;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 50%;
  padding: 1rem;
  gap: 1rem;
}


.list li {
  font-size: 1rem;
  padding: 0.25rem 0.5rem;
}

#services h4 {
  font-size: 1.25rem;
  padding: 0rem  1rem;
}

#other {
  background-color: #265273;
  height: 40%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

#footer {
  background-color: #102B3F;
  display: flex;
  flex-direction: row;
  height: 75px;
  align-items: center;
  justify-content: space-evenly;
  padding: 1rem 0rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  gap: 0.75rem;
  width: 33%;
}

.head-label {
  text-align: center;
  font-size: 1.25rem;
  font-weight: bold;
  width: 100%;
}

#numbers,
#email-address,
#address {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  width: 100%;
}

#numbers {
  justify-content: space-evenly;
}

#address-content,
#email {
  text-decoration: none;
  font-size: 1rem;
}

#maps-icon {
  width: 1.5rem;
  height: 1.5rem;
  object-fit: contain;
}
