/*=============== GOOGLE FONTS ===============*/
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600&display=swap");

/*=============== VARIABLES CSS ===============*/
:root {
  --header-height: 3rem;

  --hue: 174;
  --sat: 63%;
  --first-color: hsl(var(--hue), var(--sat), 40%);
  --first-color-alt: hsl(var(--hue), var(--sat), 36%);
  --title-color: #454cd4;
  --text-color: hsl(var(--hue), 8%, 35%);
  --body-color: hsl(var(--hue), 100%, 99%);
  --container-color: #FFF;

  --body-font: 'Open Sans', sans-serif;
  --h1-font-size: 1.5rem;
  --normal-font-size: 1.238rem;
  --bigger-font-size: 1.138rem;
  --tiny-font-size: .625rem;

  --z-tooltip: 10;
  --z-fixed: 100;
}

html, body {
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  margin: var(--header-height) 0 0 0;
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  background-color: var(--body-color);
  color: var(--text-color);
}

.contact_details {
  font-size: var(--bigger-font-size);
}

main {
  margin-top: 115px;
  padding-top: 20px;
  text-align: center;
}

.container {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.section__title {
  font-size: var(--h1-font-size);
  color: var(--title-color);
  text-align: center;
  margin-bottom: 1.5rem;
}

.active-link {
  position: relative;
  color: var(--first-color);
  transition: .3s;
}

.section {
  padding: 0.3rem 0 2rem;
}

#map {
  overflow-x: scroll;
  position: relative;
}

#services_list {
  margin-top: 15px;
  display: grid;
  justify-content: center;
}

* {
  box-sizing: border-box
}

body {
  font-family: Verdana, sans-serif;
  margin: 0
}

img {
  vertical-align: middle;
  border-radius: 5%;
}

/* Slideshow container */
.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
}

/* Next & previous buttons */
.img_btn {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: white;
  background-color: #333;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

.prev {
  left: 0;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  font-weight: bold;
  top: 0;
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #333;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active,
.dot:hover {
  background-color: #801818;
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {

  .prev,
  .next,
  .text {
    font-size: 11px
  }
}

a.anchor {
  display: block;
  position: relative;
  top: -225px;
  visibility: hidden;
}

li {
  text-align: left;
}


/* MENU MESS */

header {
  left: 0;
  height: 125px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
  transition: 0.6s;
}

header.sticky {
  background-color: #454cd4;
  position: fixed;
  top: 0;
  width: 100vw;
}

header .brand {
  font-size: 15px;
  color: #fff;
  font-weight: bold;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 2px;
  padding-left: 5px;
}

header .menu {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

header .menu a {
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  color: #fff;
  margin: 0 30px;
  padding: 5px 15px;
  text-transform: uppercase;
  border-radius: 15px;
}

header .menu a:hover {
  color: #000;
  background: #fff;
}

header .btn {
  font-size: 25px;
  cursor: pointer;
  color: #fff;
  display: none;
}

.menu_btn {
  position: absolute;
  left: 90vw;
  top: 15px;
}

.gallery_height {
  margin-top: 15px;
}

@media screen and (min-width: 968px) {
  :root {
    --h1-font-size: 2.25rem;
    --normal-font-size: 1rem;
  }
}

@media (max-width: 1024px) {
  header .btn {
    display: block;
  }

  header .menu.active {
    left: 0;
  }

  header .menu {
    position: fixed;
    background: #454cd4;
    flex-direction: column;
    width: 100vw;
    height: 100vh;
    top: 0;
    right: -100%;
    padding: 80px 50px;
  }

  header .menu .close-btn {
    position: absolute;
    top: 0;
    left: 0;
    margin: 25px;
  }

  header .menu a {
    display: block;
    font-size: 16px;
    margin: 20px;
    padding: 0 15px;
  }
}

@media (max-width: 580px) {
  .section-main h1 {
    font-size: 50px;
    line-height: 60px;
  }
}

/* Summary */

details > summary {
  list-style-type: '▶️';
}

details[open] > summary {
  list-style-type: '🔽';
}

details {
  margin-top: 15px;
  cursor: grab;
  border: 1px solid gray;
  border-radius: 0.2rem;
  padding: 0.5rem;
}

details[open] > summary {
  margin-bottom: 0.5rem;
}

.column {
  float: left;
  width: 50%;
  padding: 10px;
}

.row:after {
  content: "";
  display: table;
  clear: both;
}