:root {
  --main-color-800: #422d27;
  --main-color-400: #5d4037;
  --main-color-300: #74554c;
  --main-color-200: #9e7a6f;
  --main-color-100: #e0b8ab;

  --secondary-color-400: #d7ccc8;
  --secondary-color-300: #c7c1bf;
  --secondary-color-100: #aba8a7;

  --secondary-primarry-400: #ffd700;
  --secondary-primarry-300: #b79d0f;
  --secondary-primarry-200: #89815b;

  --bright-blue: #007bff;
  --bright-orange: #ff8c00;
}

/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* 2. Remove default margin */
* {
  margin: 0;
}

body {
  /* 3. Add accessible line-height */
  line-height: 1.5;
  /* 4. Improve text rendering */
  -webkit-font-smoothing: antialiased;
}

/* 5. Improve media defaults */
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

/* 6. Inherit fonts for form controls */
input,
button,
textarea,
select {
  font: inherit;
}

/* 7. Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

/* 8. Improve line wrapping */
p {
  text-wrap: pretty;
  color: rgb(69, 65, 61);
}
h1,
h2,
h3,
h4,
h5,
h6 {
  text-wrap: balance;

  color: rgb(65, 53, 40);
}

button {
  background: rgb(230, 220, 208);
}

/*
      9. Create a root stacking context
    */
#root,
#__next {
  isolation: isolate;
}

body {
  display: flex;
  flex-direction: column;

  height: 100vh;
  width: 100%;

  background: #eeedec;
}

.opening-header {
  display: flex;
  justify-content: center;

  width: 100%;
  height: 100px;

  background-color: hsl(0, 3.18%, 30.78%);

  padding: 20px;
}

.logo {
  width: 300px;
  background: transparent;
}

.heading-titles > h2 {
  font-size: 1.5rem;
  margin-bottom: 0;

  color: whitesmoke;
}

.heading-titles > P {
  font-family: "Tangerine", cursive;
  font-size: 1.8rem;
  margin-top: -10px;
  line-height: 1.1;

  color: whitesmoke;
}

.headings {
  display: flex;

  margin-left: 50px;
  margin-right: 50px;

  align-items: center;
  justify-content: center;
}

.headings > .heading-titles {
  display: flex;
  flex-direction: column;
}

.headingIcon {
  width: 30px;
  height: auto;
  vertical-align: middle;
  margin-bottom: 10px;
  display: inline-block;
}

.icon-container {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;

  background: white;
  border: 2px solid var(--secondary-color-100);

  margin-right: 10px;
}

.heading-Img {
  height: 20px;
  background: white;
}

.icon-container > img {
  height: 30px;
}

.floating-header {
  display: flex;

  width: 100%;

  background: hsl(202, 72%, 75%);
  color: white;

  padding-top: 10px;
  padding-bottom: 10px;

  align-items: center;
  justify-content: center;

  transition: top 0.3s ease-in-out;
}

.floating-header.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.floating-header > a {
  display: flex;
  align-items: center;
  justify-content: center;

  text-decoration: none;

  color: white;
  transition: color 0.3s;

  margin-right: 50px;
}

.floating-header a:hover {
  color: var(--main-color-400);
}

.separator {
  margin-left: 10px;
}

.intro-div {
  display: flex;
  width: 100%;

  padding-left: 100px;

  margin-top: 50px;
  margin-bottom: 50px;

  color: white;
  padding: 20px;
}

.intro-div > .introduction {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.introduction > h2 {
  font-weight: normal;
  font-size: 1.9rem;

  color: hsl(202, 85%, 63%);
}
.intro-div > .introduction > p {
  width: 70%;
  margin-top: 10px;

  font-family: "Jost", sans-serif;
  line-height: 2.2;
  font-size: 1rem;
}

.intro-div .photo-slider {
  display: flex;
  flex-direction: column;
  flex: 1;

  align-items: center;
  justify-content: center;
  gap: 10px;

  margin-top: 50px;

  margin-right: 100px;
}

/*Image Slider */
.pictureFrame {
  width: 600px;
  height: 400px;
  background-color: black;
  overflow: hidden;
  position: relative;
}

.slideHolder {
  display: flex;

  width: 100%;
  height: 100%;
}

.slideImg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
}

.showImg {
  display: block;
}

.controls-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-top: 10px;
}

/* Dots (Pagination) */
.dots-container {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.dot {
  width: 10px;
  height: 10px;
  background-color: #ccc;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s;
}

.dot.active {
  background-color: var(--main-color-200);
}

.backBtn,
.nxtBtn {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: hsl(0, 3.11%, 31.57%);
  padding: 5px 10px;
  transition: color 0.3s;
}

.backBtn:hover,
.nxtBtn:hover {
  color: var(--main-color-200);
}

.footer {
  display: flex;

  justify-content: center;
  align-items: center;

  background-color: hsl(0, 3.18%, 30.78%);

  width: 100%;

  color: white;

  padding-top: 50px;
  padding-bottom: 50px;
}

.contacts > .icon-links {
  display: flex;

  margin-top: 20px;
}

.contacts > h2 {
  font-weight: normal;
  font-size: 1.9rem;

  color: hsl(202, 79%, 72%);
}

.contacts > p {
  font-family: "Jost", sans-serif;
  line-height: 2.2;
  font-size: 1.1rem;

  color: white;
}

.contact-links-paragraph {
  display: flex;
  align-items: center;
}

.contact-links-paragraph > img {
  height: 25px;
  margin-right: 10px;
}

.icon-links > a {
  width: 40px; /* Adjust size as needed */
  height: 40px;
  border-radius: 50%; /* Makes it a circle */
  overflow: hidden; /* Ensures image stays inside */
  display: flex;
  align-items: center;
  justify-content: center;

  background: rgb(255, 255, 255);
  border: transparent;

  margin-right: 10px;
}

.icon-links > a:hover {
  cursor: pointer;
}

.footer > .branches {
  display: flex;
  flex-direction: column;

  text-align: center;

  margin-left: 100px;
  margin-bottom: 50px;
}

.branches > h2 {
  font-weight: normal;
  font-size: 1.9rem;

  color: hsl(202, 79%, 72%);
}

.contact-locations-div {
  display: flex;
  flex-direction: column;
}

.location-div {
  display: flex;
  align-items: center;
}

.location-div > p {
  font-family: "Jost", sans-serif;
  line-height: 2.2;
  font-size: 1.1rem;

  margin-right: 10px;

  color: white;
}

.location-div > .location {
  display: flex;

  width: 100px;
  padding-top: 5px;
  padding-bottom: 5px;
  padding-left: 5px;
  padding-right: 5px;

  background: hsl(176.63, 47.59%, 63.33%);

  border-radius: 5px;
  border: transparent;

  margin-top: 10px;
  margin-bottom: 10px;

  align-items: center;
  justify-content: center;

  text-decoration: none;
  color: hsl(0, 3.18%, 30.78%);

  margin-right: 30px;

  transition: background-color 0.3s ease, transform 0.2s ease;
}

.location-div > .location:hover {
  cursor: pointer;

  background: hsl(178, 72%, 80%);
}

/* fAQ SECTION*/
.faq-section {
  max-width: 600px;
  margin: auto;
}

.faq-section > h2 {
  font-weight: normal;
  font-size: 1.8rem;

  color: hsl(202, 85%, 63%);

  text-align: center;

  margin-bottom: 15px;

  line-height: 1.3;
}

.faq-item {
  border-bottom: 1px solid #ccc;
  margin-bottom: 10px;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  font-family: "Jost", sans-serif;
  font-size: 18px;

  padding: 10px;
  margin-bottom: 5px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-answer {
  opacity: 0;
  visibility: hidden;
  max-height: 0px;
  padding: 0 15px;
  background-color: var(--main-color-200);
  font-family: "Jost", sans-serif;
  border-radius: 8px;
  margin-top: 5px;
  overflow: hidden;
  transition: opacity 0.3s ease-in-out, height 0.3s ease-in-out,
    padding 0.3s ease-in-out;
}

.faq-answer > p {
  color: white;
}

.faq-answer.show {
  opacity: 1;
  visibility: visible;
  max-height: 1000px;
  padding: 12px 15px;
}

.arrow {
  transition: transform 0.3s ease-in-out;

  color: var(--main-color-200);
}

.faq-question.active .arrow {
  transform: rotate(180deg);
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 55px;
  height: 55px;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease-in-out;
  z-index: 1000;
}

.whatsapp-float img {
  width: 35px;
  height: 35px;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.whatsapp-float {
  animation: fadeIn 0.5s ease-in-out;
}

.services-container {
  width: 80%;
  margin: 0 auto;
  margin-bottom: 150px;
}

.services-heading {
  text-align: center;

  margin-bottom: 10px;

  font-weight: normal;
  font-size: 1.9rem;

  color: hsl(202, 85%, 63%);
}

.services-container > p {
  margin-top: 30px;
  margin-bottom: 50px;

  font-family: "Jost", sans-serif;
  line-height: 2.2;
  font-size: 1rem;
}

.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 50px;
}

.sevice-div {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.sevice-div .price {
  margin-top: 8px;
  margin-bottom: 10px;

  font-family: "Jost", sans-serif;
  line-height: 2.2;
  font-size: 1rem;
}

.sevice-div img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 5px;
}

.sevice-div .summary {
  width: 80%;

  margin-top: 20px;

  font-family: "Jost", sans-serif;
  line-height: 2.2;
  font-size: 1rem;
}

.contact_box {
  max-width: 600px;
  margin: auto;

  margin-top: 100px;
  margin-bottom: 100px;

  border-radius: 10px;
}

.contact_box > h3 {
  text-align: center;
  font-weight: normal;
  font-size: 1.9rem;

  color: hsl(202, 85%, 63%);

  margin-bottom: 50px;
}

.contact_box > .contact_form {
  display: flex;
  flex-direction: column;

  padding: 30px 80px 50px 30px;

  background-color: hsl(0, 3.18%, 30.78%);

  font-family: "Jost", sans-serif;
  line-height: 2.2;
  font-size: 1rem;
}

.contact_form > h2 {
  color: white;
}

.contact_form > label {
  color: white;
}

.contact_form > input {
  margin-top: 5px;
  margin-bottom: 10px;

  width: 350px;
  height: 35px;

  padding: 5px 5px 5px 5px;

  border: transparent;
  border-radius: 5px;

  font-family: "Jost", sans-serif;
  line-height: 2.2;
  font-size: 1rem;
}

.contact_form > textarea {
  width: 350px;
  height: 200px;

  padding: 10px;

  border: transparent;

  font-family: "Jost", sans-serif;
  line-height: 2.2;
  font-size: 1rem;
}

.contact_form > button {
  display: flex;

  align-items: center;
  justify-content: center;

  margin-top: 20px;

  padding: 10px 5px 10px 5px;

  border-radius: 20px;
  border: transparent;

  background: hsl(176.63, 47.59%, 63.33%);

  transition: background-color 0.3s ease, transform 0.2s ease;
}

.contact_form > button:hover {
  cursor: pointer;

  background: hsl(176, 60%, 80%);
}

.footer-main {
  display: flex;

  width: 100%;

  align-items: center;
  justify-content: center;

  padding: 50px;
}

.footer-main > #map {
  display: flex;
  margin-right: 200px;
}

@media (min-width: 12008px) {
  .footer-main {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  #contact_form {
    margin: 100px;
  }
}

@media (min-width: 950px) and (max-width: 1200px) {
  .footer-main {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  #contact_form {
    margin-left: 200px;
  }

  #map {
    margin-left: 50px;
  }
}

@media (min-width: 900px) and (max-width: 950px) {
  .footer-main {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  #contact_form {
    display: flex;
    flex-direction: column;

    margin-left: 220px;

    width: 65%;
  }

  #map {
    margin-left: 30px;
  }

  .contact_form input,
  .contact_form textarea {
    max-width: 300px;

    padding: 10px;
    margin-bottom: 15px;
    box-sizing: border-box;
  }
  .contact_form > button {
    background: hsl(202, 72%, 75%);
    margin-left: 50px;
  }
}

@media (min-width: 800px) and (max-width: 900px) {
  .opening-header {
    display: flex;

    height: auto;
    text-align: center;
    justify-content: center;
  }

  .logo {
    display: block;

    width: 250px;
    height: 50px;

    margin: 0 auto;

    margin-top: 50px;

    text-align: center;
  }

  .headings {
    flex-direction: column;
    text-align: center;
    margin: 10px 0;

    margin-left: 20px;
  }

  .icon-container {
    margin-bottom: 10px;
  }

  .intro-div {
    flex-direction: column;
    padding: 10px;
    text-align: center;
  }

  .intro-div > .introduction p {
    width: 100%; /* Full width */
  }

  .photo-slider {
    width: 100%;
    margin-right: 0;
  }

  .footer-main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .contact_form input,
  .contact_form textarea {
    max-width: 300px;
    margin-bottom: 15px;
    box-sizing: border-box;
  }

  #map {
    margin-left: 200px;
  }

  .footer > .contacts {
    margin-left: 50px;
  }
}

@media (min-width: 700px) and (max-width: 799px) {
  /* Opening header adjustments */
  .opening-header {
    display: flex;

    height: auto;
    text-align: center;
    justify-content: center;
  }

  .logo {
    display: block;

    width: 250px;
    height: 50px;

    margin: 0 auto;

    margin-top: 50px;

    text-align: center;
  }

  .headings {
    flex-direction: column;
    text-align: center;
    margin: 10px 0;

    margin-left: 20px;
  }

  .icon-container {
    margin-bottom: 10px;
  }

  .intro-div {
    flex-direction: column;
    padding: 10px;
    text-align: center;
  }

  .intro-div > .introduction p {
    width: 100%; /* Full width */
  }

  .photo-slider {
    width: 100%;
    margin-right: 0;
  }

  .footer-main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .contact_form {
    display: flex;
    flex-direction: column;

    width: 100%;
  }

  .contact_form input,
  .contact_form textarea {
    max-width: 300px;
    margin-bottom: 15px;
    box-sizing: border-box;
  }

  #map {
    margin-left: 200px;
  }

  .footer > .contacts {
    margin-left: 50px;
  }
}

@media (min-width: 600px) and (max-width: 699px) {
  body {
    display: flex;
    width: 100vw;
    height: 100%;
  }
  .footer-main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .contact_form {
    display: flex;
    flex-direction: column;

    width: 90%;
  }

  .contact_form input,
  .contact_form textarea {
    max-width: 300px;
    margin-bottom: 15px;
    box-sizing: border-box;
  }

  #map {
    margin-left: 200px;
  }

  .footer {
    width: 110vw;
  }

  .footer > .contacts {
    margin-left: 50px;
  }
  .footer > .branches {
    margin-right: 50px;
  }
}

@media (min-width: 500px) and (max-width: 599px) {
  .footer-main {
    display: flex;
    flex-direction: column;

    padding: 0px;
  }

  .footer-main > * {
    width: 100%;
    margin-bottom: 15px;
  }

  .footer-main iframe {
    width: 90%;
    height: 250px;
    display: block;
    margin: 0 auto;
  }
  /* Form */

  .opening-header {
    flex-direction: column;
    height: auto;
    text-align: center;
  }

  .logo {
    display: block;

    width: 200px;

    margin-bottom: 50px;
    margin: 0 auto;

    text-align: center;
  }

  .headings {
    flex-direction: column;
    text-align: center;
    margin: 10px 0;
  }

  .icon-container {
    margin-bottom: 10px;
  }

  /* Floating header (Navigation) */
  .floating-header {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;

    align-items: center;
    justify-content: space-evenly;
    text-align: center;

    padding: 10px;
    box-sizing: border-box;
  }

  .floating-header > a {
    font-size: 1rem;

    margin-top: 5px;
    margin-bottom: 5px;
    margin-right: 0px;
    margin-left: 15px;
  }

  /* Introduction section */
  .intro-div {
    flex-direction: column;
    padding: 10px;
    text-align: center;
  }

  .intro-div > .introduction p {
    width: 100%; /* Full width */
  }

  .photo-slider {
    width: 100%;
    margin-right: 0;
  }

  .pictureFrame {
    width: 100%;
    height: auto;
  }

  /* FAQ section */
  .faq-section {
    max-width: 100%;
    padding: 10px;
  }

  .faq-question {
    font-size: 16px;
    padding: 8px;
  }

  .contact_form {
    width: 70%;
    max-width: 500px;
    margin: 20px auto;
    padding: 20px;
    box-sizing: border-box;

    border-radius: 10px;
  }

  .contact_form input,
  .contact_form textarea {
    max-width: 300px;

    padding: 10px;
    margin-bottom: 15px;
    box-sizing: border-box;
  }

  .contact_form textarea {
    border-radius: 10px;
  }

  .contact_form > button {
    background: hsl(202, 72%, 75%);
    margin-left: 50px;
  }

  #map {
    margin: 0 auto;
    margin-top: 10px;
    margin-bottom: 40px;
  }

  .footer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    background-color: var(--main-color-200);
    width: 100%;
    color: white;

    padding-top: 50px;
    padding-bottom: 50px;

    margin-top: 50px;
  }

  .branches {
    margin-top: 50px;
    margin-right: 200px;
  }

  .contact-locations-div {
    display: flex;
    flex-direction: column;
    margin-left: 20px;
  }

  .location-div > p {
    width: 200px;

    margin-top: 20px;
    margin-left: 30px;
  }

  .location-div > .location {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Contact links */
  .icon-links {
    justify-content: center;
  }
}

@media (min-width: 400px) and (max-width: 499px) {
  /* General body adjustments */
  body {
    display: flex;
  }

  /* Opening header adjustments */
  .opening-header {
    flex-direction: column;
    height: auto;
    text-align: center;
  }

  .logo {
    display: block;

    width: 200px;

    margin-bottom: 50px;
    margin: 0 auto;

    text-align: center;
  }

  .headings {
    flex-direction: column;
    text-align: center;
    margin: 10px 0;
  }

  .icon-container {
    margin-bottom: 10px;
  }

  /* Floating header (Navigation) */
  .floating-header {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;

    align-items: center;
    justify-content: space-evenly;
    text-align: center;

    padding: 10px;
    box-sizing: border-box;
  }

  .floating-header > a {
    font-size: 1rem;

    margin-top: 5px;
    margin-bottom: 5px;
    margin-right: 0px;
    margin-left: 15px;
  }

  /* Introduction section */
  .intro-div {
    flex-direction: column;
    padding: 10px;
    text-align: center;
  }

  .intro-div > .introduction p {
    width: 100%;
    padding: 10px;
  }

  .photo-slider {
    width: 100%;
    margin-right: 0;
    padding: 10px;
  }

  .pictureFrame {
    width: 100%;
    height: auto;
  }

  /* FAQ section */
  .faq-section {
    max-width: 90%;
    padding: 10px;
  }

  .faq-question {
    font-size: 16px;
    padding: 8px;
  }

  /* Footer */

  .footer-main {
    display: flex;
    flex-direction: column;

    padding: 0px;
  }

  .footer-main > * {
    width: 100%;
    margin-bottom: 15px;
  }

  .footer-main iframe {
    width: 90%;
    height: 250px;
    display: block;
    margin: 0 auto;
  }

  .footer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    background-color: var(--main-color-200);
    width: 100%;
    color: white;

    padding-top: 50px;
    padding-bottom: 50px;

    margin-top: 50px;
  }

  .branches {
    margin-top: 50px;
    margin-right: 200px;
  }

  .contact-locations-div {
    display: flex;
    flex-direction: column;
    margin-left: 20px;
  }

  .location-div > p {
    width: 200px;

    margin-top: 20px;
    margin-left: 100px;
  }

  .location-div > .location {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Contact links */
  .icon-links {
    justify-content: center;
  }

  /* Blog section */
  .blog-slider {
    flex-direction: column;
    align-items: center;
  }

  .blog-item {
    max-width: 100%;
  }

  /*Map */
  #map {
    margin: 0 auto;
  }

  /* WhatsApp Button */
  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 15px;
    right: 15px;
  }

  .whatsapp-float img {
    height: 30px;
    width: 30px;
  }

  .contact_box {
    margin-top: 50px;
    margin-bottom: 50px;
    padding: 10px;
    margin-right: 10px;
  }

  /* Form */

  .contact_form {
    width: 95%;
    max-width: 500px;
    margin: 20px auto;
    padding: 20px;
    box-sizing: border-box;

    border-radius: 10px;
  }

  .contact_form input,
  .contact_form textarea {
    max-width: 300px;

    padding: 10px;
    margin-bottom: 15px;
    box-sizing: border-box;
  }

  .contact_form textarea {
    border-radius: 10px;
  }

  .contact_form > button {
    background: hsl(202, 72%, 75%);
    margin-left: 50px;
  }
}

@media (max-width: 399px) {
  /* General body adjustments */
  body {
    display: flex;
  }

  /* Opening header adjustments */
  .opening-header {
    flex-direction: column;
    height: auto;
    text-align: center;
  }

  .logo {
    display: block;

    width: 200px;

    margin-bottom: 50px;
    margin: 0 auto;

    text-align: center;
  }

  .headings {
    flex-direction: column;
    text-align: center;
    margin: 10px 0;
  }

  .icon-container {
    margin-bottom: 10px;
  }

  /* Floating header (Navigation) */
  .floating-header {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;

    align-items: center;
    justify-content: space-evenly;
    text-align: center;

    padding: 10px;
    box-sizing: border-box;
  }

  .floating-header > a {
    font-size: 1rem;

    margin-top: 5px;
    margin-bottom: 5px;
    margin-right: 0px;
    margin-left: 15px;
  }

  /* Introduction section */
  .intro-div {
    flex-direction: column;
    padding: 10px;
    text-align: center;
  }

  .intro-div > .introduction p {
    width: 100%; /* Full width */
  }

  .photo-slider {
    width: 100%;
    margin-right: 0;
  }

  .pictureFrame {
    width: 100%;
    height: auto;
  }

  .sevice-div {
    margin-right: 20px;
  }

  /* FAQ section */
  .faq-section {
    max-width: 100%;
    padding: 10px;
  }

  .faq-question {
    font-size: 16px;
    padding: 8px;
  }

  /* Footer */

  .footer-main {
    display: flex;
    flex-direction: column;

    padding: 0px;
  }

  .footer-main > * {
    width: 100%;
    margin-bottom: 15px;
  }

  .footer-main iframe {
    width: 90%;
    height: 250px;
    display: block;
    margin: 0 auto;
  }

  .footer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    background-color: var(--main-color-200);
    width: 100%;
    color: white;

    padding-top: 50px;
    padding-bottom: 50px;

    margin-top: 50px;
  }

  .branches {
    margin-top: 50px;
    margin-right: 200px;
  }

  .contact-locations-div {
    display: flex;
    flex-direction: column;
    margin-left: 50px;
  }

  .location-div > p {
    width: 200px;

    margin-top: 20px;
    margin-left: 50px;
  }

  .location-div > .location {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Contact links */
  .icon-links {
    justify-content: center;
  }

  /* Blog section */
  .blog-slider {
    flex-direction: column;
    align-items: center;
  }

  .blog-item {
    max-width: 100%;
  }

  /*Map */
  #map {
    margin: 0 auto;
  }

  /* WhatsApp Button */
  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 15px;
    right: 15px;
  }

  .whatsapp-float img {
    height: 30px;
    width: 30px;
  }

  .contact_box {
    margin-top: 50px;
    margin-bottom: 50px;
    padding: 10px;
    margin-right: 10px;
  }

  /* Form */

  .contact_form {
    width: 95%;
    max-width: 500px;
    margin: 20px auto;
    padding: 20px;
    box-sizing: border-box;

    border-radius: 10px;
  }

  .contact_form input,
  .contact_form textarea {
    max-width: 250px;

    padding: 10px;
    margin-bottom: 15px;
    box-sizing: border-box;
  }

  .contact_form textarea {
    border-radius: 10px;
  }

  .contact_form > button {
    background: hsl(202, 72%, 75%);
    margin-left: 50px;
  }
}
