html {
  overflow-x: hidden;
  background-color: rgb(200, 200, 200);
}

header {
  overflow-x: hidden;
  margin: 0px;
}

body {
  overflow-x: hidden;
  margin: 0;
  font-family: Arial, sans-serif;
}

footer {
  overflow-x: hidden;
  background-color: rgb(25, 25, 25);
  bottom: 0;
  width: 100%;
  margin: 0;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer-column {
  flex-basis: 30%;
  margin-bottom: 20px;
  margin-right: 30px;
  margin-left: 10px;
}

.footer-column a {
  color: rgb(255, 255, 255);
}

.footer-column h3 {
  color: #25e264;
}

.footer-column h4 {
  color: white;
}

.footer-column p {
  color: #777;
}

.footer-bottom {
  margin-top: 20px;
  text-align: center;
  color: #777;
}

#tabs {
  background-color: rgb(255, 255, 255);
  color: rgb(0, 0, 0);
}

a {
  text-decoration: none;
}

.a1 {
  color: black;
}

#img {
  offset-distance: 0px;
  margin: 0;
  padding: 0;
  border: none;
  float: left;
}

::-webkit-scrollbar {
  width: 8px;
  height: 5px;
}

::-webkit-scrollbar-track {
  background: rgba(66, 190, 190);
}

::-webkit-scrollbar-thumb {
  background: rgb(238, 255, 0);
  border-radius: 20px;
}

div.scrollmenu {
  background-color: #333;
  overflow: auto;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

div.scrollmenu a {
  display: inline-block;
  color: white;
  text-align: center;
  padding: 15px;
  text-decoration: none;
}

div.scrollmenu a:hover {
  background-color: #777;
  transform: scale(1.1);
  border: 3px;
  border-radius: 20px;
}

.column {
  float: left;
  width: 33.33%;
  padding: 0;
}

.row::after {
  content: "";
  clear: both;
  display: table;
}

.image-with-text {
  display: flex;
  align-items: center;
}

.image-with-text img {
  width: 30%;
  height: auto;
  margin-right: 10px;
  margin-left: 40px;
  border-radius: 20px;
}

.image-with-text .text {
  flex-grow: 1;
  margin-left: 20px;
  font-size: 20px;
}

.image-with-text a {
  color: black;
}

.fas.fa-envelope {
  margin-right: 5px;
}

.fas.fa-phone {
  margin-right: 5px;
}

.centered-text {
  text-align: center;
}

.margined-text {
  margin-left: 15px;
  margin-right: 15px;
}

@media (max-width: 800px) {
  .footer-column a,
  .footer-column h3,
  .footer-column h2,
  .footer-column h1,
  .footer-column h4,
  p,
  .footer-bottom p,
  .margined-text p {
    font-size: 18px;
  }

  h2,
  h1,
  h3,
  .margined-text h1,
  .margined-text h2,
  .margined-text h3 {
    font-size: 20px;
  }
}

.slideshow-container {
  position: relative;
  max-width: 80%;
  max-height: 50%;
  margin: 10%;
  margin-top: 5px;
  margin-bottom: 5px;
}

.slide {
  display: none;
}

.slide img {
  border-radius: 20px;
}

.controls {
  text-align: center;
  position: relative;
  z-index: 1;
}

.prev,
.next {
  position: absolute;
  top: 50%;
  transform: translateY(130%);
  border-radius: 20px;
  color: black;
  background-color: rgba(39, 158, 184, 0.501);
  font-size: 50px;
}

.prev {
  left: -5%;
}

.next {
  right: -5%;
}

.controls button {
  margin-left: 10%;
  margin-right: 10%;
  border-radius: 20px;
  color: black;
  background-color: rgba(39, 158, 184, 0.501);
  font-size: 50px;
}

.controls button:hover {
  border-radius: 20px;
  color: black;
  background-color: rgba(39, 131, 184, 0.501);
  font-size: 50px;
}

.faq {
  margin-bottom: 10px;
}

.question {
  cursor: pointer;
  font-weight: bold;
}

.answer {
  display: none;
}

.quote-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
  margin-bottom: 20px;
}

.quote-button {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #f5f5f5;
  border: none;
  border-radius: 8px;
  padding: 10px;
  width: 300px;
  height: 300px;
  transition: background-color 0.3s ease;
}

.quote-button:hover {
  background-color: #bdbdbd;
}

.quote-button img {
  width: 200px;
  height: 200px;
  margin-bottom: 10px;
  border-radius: 3px;
}

.quote-button span {
  text-align: center;
  font-size: 17px;
}

.contact-form {
  max-width: 90%;
  margin: 0 auto;
  margin-top: 10px;
  margin-bottom: 10px;
}

.contact-form label {
  display: block;
  margin-bottom: 10px;
  font-weight: bold;
}

.contact-form input[type="text"],
.contact-form input[type="tel"],
.contact-form textarea {
  width: 95%;
  padding: 10px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 10px;
}

.contact-form textarea {
  height: 120px;
}

.contact-form input[type="submit"] {
  background-color: #4CAF50;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.contact-form input[type="submit"]:hover {
  background-color: #45a049;
}

.contact-form .success-message,
.contact-form .error-message {
  margin-bottom: 20px;
  padding: 10px;
  border-radius: 4px;
}

.contact-form .success-message {
  background-color: #28f759;
  color: #000000;
}

.contact-form .error-message {
  background-color: #f03242;
  color: #000000;
}



