* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Roboto-Regular";
  color: #ffffff;
}

html, body {
  width: 100vw;
  height: 100vh;
  background-color: #004f94;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.container {
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: flex;
  align-items: center;
  justify-content: center;
}
.container .map {
  width: 100%;
  overflow: visible;
}

.logo {
  position: absolute;
  top: 0;
  left: 0;
  width: 250px;
  z-index: 999;
  margin: 25px 0 0 25px;
}
.logo img {
  width: 100%;
  height: 100%;
}

.key {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 998;
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 20% 100%);
  background-color: #ffffff;
  color: #1b3e6f;
  font-family: "Roboto-Black";
  height: 130px;
  width: 350px;
}

.switches {
  padding: 10px 20px 10px 70px;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 999;
  display: grid;
  grid-template-columns: 65px 1fr;
  row-gap: 5px;
  align-items: center;
}
.switches p {
  color: #1b3e6f;
  font-family: "Roboto-Black";
}
.switches .col-fix {
  grid-column: 1/span 2;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.buttons {
  position: relative;
  margin: 10px 0 0 30px;
  z-index: 999;
  display: flex;
  justify-content: flex-end;
}
.buttons .button {
  width: 70px;
  height: 25px;
  background-color: #014888;
  color: #ffffff;
  clip-path: polygon(0% 0%, 80% 0%, 100% 100%, 20% 100%);
  font-family: "Roboto-Black";
  font-size: 25px;
  margin: 2px 2px;
  text-align: center;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wrap, .wrap2 {
  z-index: 999;
  position: absolute;
  width: 380px;
  filter: drop-shadow(#1b3e6f 1px 1px 10px) drop-shadow(#1b3e6f 1px -1px 10px) drop-shadow(#1b3e6f -1px 1px 10px) drop-shadow(#1b3e6f -1px -1px 10px);
  left: 20px;
  will-change: transform;
  visibility: hidden;
  opacity: 0;
}

.popup {
  background-color: #ffffff;
  width: 380px;
  clip-path: polygon(0 0, 100% 0, 100% 90%, 0% 100%);
  padding: 15px 0 50px 15px;
}
.popup .heading {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: 5px 0 0 10px;
}
.popup .lines {
  height: 18px;
}
.popup h2 {
  color: #1b3e6f;
  margin: 5px 0 15px 0;
  font-family: "Roboto-Black", sans-serif;
}
.popup .contact {
  display: grid;
  grid-template-columns: 40px 1fr;
  row-gap: 15px;
  align-items: start;
  position: relative;
  z-index: 9999;
}
.popup .contact p {
  color: #1b3e6f;
  margin-top: 3px;
}
.popup .contact a {
  color: #1b3e6f;
  text-decoration: none;
}
.popup .contact .icon {
  height: 25px;
  margin: 0 5px;
}
.popup .box {
  position: absolute;
  clip-path: polygon(100% 0, 100% 0, 100% 100%, 0% 125%);
  width: 200px;
  height: 150px;
  background-color: #e1e0df;
  bottom: 0;
  right: 0;
  z-index: 98;
}
.popup .close {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 25px;
  cursor: pointer;
  z-index: 9999;
  transition: all 0.25s ease;
}
.popup .close:hover {
  opacity: 0.6;
}
@media only screen and (max-width: 775px) {
  .popup {
    width: 340px;
  }
  .popup .close {
    right: 50px;
  }
}

text {
  pointer-events: none;
}

.labels {
  position: relative;
  visibility: hidden;
  opacity: 0;
}

.switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 28px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ffffff;
  transition: 0.4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 2px;
  bottom: 2px;
  background-color: #f26a24;
  transition: 0.4s;
}

.switch:first-child .slider::before {
  background-color: #a0a0a0;
}

input:checked + .slider {
  background-color: #f26a24;
}

.switch:first-child input:checked + .slider {
  background-color: #a0a0a0;
}

.slider {
  border: solid 2px #f26a24;
}

.switch:first-child .slider {
  border: solid 2px #a0a0a0;
}

input:checked + .slider:before {
  transform: translateX(22px);
}

input:checked + .slider::before {
  background-color: white;
}

.switch:first-child input:checked + .slider::before {
  background-color: white;
}

.slider.round {
  border-radius: 14px;
}

.slider.round:before {
  border-radius: 50%;
}

.double {
  display: none;
}

.languages {
  margin-top: 10px;
  position: relative;
  max-width: 70px;
  font-family: "Roboto-Regular";
  cursor: pointer;
  z-index: 999999999999 !important;
}
.languages span {
  color: #004987;
  font-family: "Roboto-Black";
  letter-spacing: 0.5px;
}
@media only screen and (max-width: 500px) {
  .languages {
    right: 0.75em;
    top: 0.75em;
  }
}

.selected-language {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 6px;
  background: #ffffff;
  border-bottom: 2.5px solid #004987;
}
@media only screen and (max-width: 500px) {
  .selected-language img {
    width: 18px !important;
  }
}

.selected-language img {
  width: 28px;
  height: 22px;
}

.language-options {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  min-width: 56px;
  background: #ffffff;
  display: none;
  z-index: 999999999999 !important;
  cursor: pointer;
  margin-top: -1px;
}

.language-options div {
  display: flex;
  border-bottom: 1.5px solid #004987;
  align-items: center;
  gap: 6px;
  padding: 4px 6px;
  transition: background 0.2s;
}

.language-options div:hover {
  background: #1b3e6f;
}
.language-options div:hover span {
  color: #ffffff;
}

.language-options img {
  width: 20px;
  height: 14px;
}

@media only screen and (max-width: 775px) {
  .logo {
    top: initial;
    bottom: 1em;
    width: 185px;
  }
}/*# sourceMappingURL=styles.css.map */