@font-face {
  font-family: Barlow;
  src: url('font/Barlow-Regular.ttf');
}

@font-face {
  font-family: Barlow-Black;
  src: url('font/Barlow-Black.ttf');
}

#map {
  height: 800px;
  width: 100%;
}

.toggle-btn {
  position: absolute;
  top: 10px;
  right: 25px;
  width: 30px;
  height: 30px;
  border: 2px solid #000;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background 0.3s ease;
  z-index: 2;
}
/*
.toggle-btn:hover {
  background: rgba(255, 255, 255, 0.8);
}
*/
.toggle-btn span {
  position: absolute;
  font-size: 20px;
  font-weight: bold;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.toggle-btn .question {
  opacity: 1;
  transform: rotate(0deg);
}
.toggle-btn .close {
  opacity: 0;
  transform: rotate(-90deg);
}

.toggle-btn.active .question {
  opacity: 0;
  transform: rotate(90deg);
}
.toggle-btn.active .close {
  opacity: 1;
  transform: rotate(0deg);
}
.legend-panel {
  position: absolute;
  top: 0;
  right: -300px; 
  width: 300px;
  height: 100%;
  background: rgba(255, 255, 255, 0.7);
  transition: right 0.3s ease;
  z-index: 1;
}

.legend-panel.active {
  right: 0;
}

#mapCont{
  overflow: hidden;
}

#map{
  z-index: 0;
}

#legendPanel{
  padding-top: 20px;
}

#main-descr{
  padding: 15px;
}

.imap_descr > * {
  font-family: 'Barlow', Arial, Helvetica, sans-serif;
  font-weight: 600;
}

.imap_footer * {
  font-family: 'Barlow', Arial, Helvetica, sans-serif;
  font-weight: 600;
}

div.contact_card {
  font-family: Arial, sans-serif;
  background-color: #fff;
  padding: 40px;
}
div.contact_card .card {
  border: 1px solid #ccc;
  padding: 30px;
  display: flex;
  align-items: flex-start;
  gap: 30px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
div.contact_card .qr-placeholder {
  width: 200px;
  height: 200px;
  background-color: #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #555;
}
div.contact_card .info {
  flex: 1;
}
div.contact_card .name {
  color: #00876e;
  font-size: 24px;
  font-weight: bold;
}
div.contact_card .role {
  font-size: 16px;
  margin-top: 4px;
  color: #333;
}
div.contact_card .contact {
  font-size: 16px;
  margin-top: 20px;
}
div.contact_card .contact strong {
  font-weight: bold;
}
div.contact_card .email {
  margin-top: 5px;
  font-size: 16px;
  color: #002244;
}
div.contact_card .company {
  font-size: 14px;
  margin-top: 30px;
  color: #444;
}
div.contact_card .company a {
  color: #002244;
  text-decoration: none;
}