@font-face {
  font-family: 'Montserrat';
  src: url('../../fonts/Montserrat-VariableFont_wght.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
}

:root {
  --blue: rgb(0, 66, 137);
  --white: rgb(255, 255, 255);
  --black: rgb(0, 0, 0);
  --border: rgb(214, 214, 214);
  --border-sw: rgb(214, 214, 214);
  --white-t-sw: rgba(255, 255, 255, 0.7);
  --text-gray-sw: rgb(80, 80, 80);
  --shadow-sw: rgb(126, 126, 126);
  --dirt-white-sw: rgb(247, 247, 247);
  --white-sw: rgb(255, 255, 255);
  --black-sw: rgb(0, 0, 0);
  font-size: 10px;
}

.dark {
  --border-sw: rgb(75, 75, 75);
  --white-t-sw: rgba(26, 26, 26, 0.7);
  --text-gray-sw: rgb(190, 190, 190);
  --shadow-sw: rgb(19, 19, 19);
  --dirt-white-sw: rgb(39, 39, 39);
  --white-sw: rgb(26, 26, 26);
  --black-sw: rgb(230, 230, 230);
}

a[x-apple-data-detectors] {
  color: inherit !important;
  text-decoration: none !important;
  font-size: inherit !important;
  font-family: inherit !important;
  font-weight: inherit !important;
  line-height: inherit !important;
}

a[href^="tel"] {
  color: inherit;
  text-decoration: none;
}

body {
  text-decoration: none;
  color: var(--black-sw);
  background-color: var(--white-sw);
  padding: 0;
  margin: 0;
  font-family: sans-serif;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
  padding-top: 8rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
}

.container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  background-color: var(--white-sw);
  z-index: 90;
  transition: filter 0.3s ease;
}

@media screen and (max-width: 1150px) {
  .container.active {
    filter: blur(4px);
    pointer-events: none !important;
    user-select: none !important;
    overflow: hidden !important;
  }
}

main {
  margin: 0 auto;
  padding: 3rem 0 5rem 0;
  width: 130rem;
}

@media screen and (max-width: 1350px) {
  main {
    width: auto;
    margin: 0;
    padding: 3rem 1.3rem 5rem 1.3rem;
  }
}

h1 {
  position: relative;
  display: inline-block;
  padding: 0 0.7rem 0.3rem 0.7rem;
  font-weight: 500;
  font-size: 3rem;
  margin: 0 0 3rem 0;
  color: var(--black-sw);
  letter-spacing: 1px;
}

h1::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0.3rem;
  border-radius: 1rem;
  background: var(--blue);
}
.cookie-overlay {
  display: none;
  justify-content: center;
  align-items: center;
  position: fixed;
  bottom: 0;
  width: 100%;
  background-color: transparent;
  z-index: 999;
}
.cookie-banner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  bottom: 0;
  left:0;
  right: 0;
  padding: 0;
  background-color: rgb(255, 255, 255);
  border-radius: 1rem;
  margin: 0 2vw 1vh 2vw;
  font-size: 1.5rem;
  max-width: 50rem;
  outline: 1px solid rgb(233, 233, 233);
  box-shadow: 1px 1px 5px rgb(235, 235, 235), inset -1px -1px 5px rgb(251 251 251);
}

.cookie-close {
  box-sizing: content-box;
  position: relative;
  background-color: transparent;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  border: none;
  margin: 0;
  padding: 0.5rem;
  font-family: inherit;
  cursor: pointer;
  height: 3rem;
  width: 100%;
}

.cookie-close .line {
  position: absolute;
  width: 3rem;
  height: 2px;
  background-color: rgb(87, 0, 0);
  border-radius: 5px;
}
.cookie-close:hover .line {
  background-color: rgb(209, 0, 0);
}
.cookie-close .line:first-child {
  transform: rotate(45deg) ;
}
.cookie-close .line:last-child {
  transform: rotate(-45deg) ;
}

.cookie-text {
  text-align: justify;
  padding: 0 1.2rem 1.2rem 1.2rem;
}

@media screen and (max-width: 820px) {
  h1 {
    font-size: 2.5rem;
  }

}