:root {
  --horizontal-padding: min(150px, 10%);
  --site-width: max(960px, 67vw);
  --red: #c22419;
  --blue: #296ea5;
}
.m-0 {
  margin: 0;
}
body {
  font-family: "Open Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  font-size: max(1em, 1.18vw);
  margin: 0;
  padding: 0;
  text-align: center;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
body.popup-opened {
  overflow: hidden;
}
body.popup-opened main,
body.popup-opened header {
  filter: blur(1px);
}
main {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.header {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to right, var(--red) 50%, var(--blue) 50%);
  color: white;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background: url("lightbulb.webp") no-repeat;
  background-size: cover;
  background-position: 65% 50%;
}
.header::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 50%;
  height: 100%;
  background: url("waterdrop.webp") no-repeat;
  background-size: cover;
  background-position: 10% 50%;
}
.header h1 {
  padding: 46px;
  font-weight: 500;
  text-transform: uppercase;
  z-index: 2;
  font-size: max(31px, 2.15vw);
  margin-left: 4px;
}
.header img {
  position: absolute;
  width: 50%;
  height: auto;
  top: 0;
  object-fit: contain;
}
.header .lightbulb {
  left: 0;
}
.header .waterdrop {
  left: 50%;
}
main {
  z-index: 1;
  margin-bottom: 60px;
}
.row {
  display: flex;
  flex-direction: row; /* flex-wrap: wrap; */
  justify-content: center;
  padding: 20px 0;
  max-width: var(--site-width);
  margin: auto;
}
.title-bg {
  padding: 20px 0px;
  background: linear-gradient(to right, var(--red) 50%, var(--blue) 50%);
}
.title-bg .title {
  color: white;
  text-align: center;
  font-weight: 500;
  margin: 0 4px 0 0;
  font-size: max(20px, 1.9vw);
}
.column {
  flex: 1;
  text-align: left;
  padding: 0 0.7vw;
}
a {
  color: inherit;
  cursor: pointer;
  text-decoration: none;
}
.phone-line {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
}
.phone-icon {
  width: auto;
  height: max(1em, 1.18vw);
}
.separator {
  width: 8px;
  background: linear-gradient(to right, var(--red) 50%, var(--blue) 50%);
  margin: 0 2vw;
  flex-shrink: 0;
  position: relative;
}
/* .separator::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 6vw;
  height: 6px;
  background: red;
  transform: translateX(-50%);
} */
.about {
  margin-bottom: 36px;
}
.about p {
  margin: 0;
  margin-bottom: 6px;
  font-weight: bold;
  font-size: max(1em, 1.18vw);
}
.about p.highlight {
  margin-top: 22px;
}
.footer {
  background: linear-gradient(to right, var(--red) 50%, var(--blue) 50%);
  color: white;
  text-align: left;
  font-weight: bold;
  display: block;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 2;
  max-height: 100%;
  overflow: hidden;
}
.footer.extended {
  overflow: auto;
}
.footer .rodo-close {
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  margin-left: auto;
  color: #fff;
}
.footer.extended .rodo-close {
  opacity: 1;
}
.footer .wrapper {
  /* padding: 10px var(--horizontal-padding); */
  padding: 10px 24px;
  max-width: var(--site-width);
  margin: auto;
  display: flex;
  align-items: center;
  position: relative;
}
.footer button {
  background-color: transparent;
  border: none;
  color: white;
  cursor: pointer;
  font-size: 16px;
}
.footer .wrapper .icon {
  width: 40px;
  margin-right: 8px;
  height: auto;
}
#rodo-text {
  padding: 0 var(--horizontal-padding);
  max-height: 0;
  transition: max-height 0.5s ease-in-out;
  background: #f8f8f8;
  color: black;
  font-weight: normal;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow: auto;
}
#rodo-text .wrapper {
  display: block;
  padding: 24px 0;
}
.highlight {
  color: var(--red);
  font-weight: bold;
}
.only-mobile {
  display: none;
}
.name-list {
  list-style-type: lower-alpha;
  margin-top: 0;
}
@media (max-width: 720px) {
  body {
    font-size: 1.1em;
  }
  .only-mobile {
    display: block;
  }
  .header h1 {
    padding: 24px;
    font-size: 26px;
    text-shadow: 1px 1px 2px black;
  }
  .header::after {
    background-position: 40% 50%;
  }
  .title-bg .title {
    font-size: 20px;
  }
  .row {
    flex-direction: column;
    padding: 0;
  }
  .column {
    padding: 1em;
    position: relative;
    text-align: center;
  }
  .about {
    margin-top: 32px;
  }
  .separator {
    width: 80%;
    height: 6px;
    background: linear-gradient(to bottom, var(--red) 50%, var(--blue) 50%);
    margin: 10px auto;
  }
}
