/*
Theme Name: Agencylife
Theme URI: https://www.agencylife.at/
Author: Agencylife GmbH
Author URI:https://www.agencylife.at/
Co-Author: Muris Ceman, DigitalWerk GmbH
Co-Author URI: https://digitalwerk.agency
Description: Web & Display
Version: 1.0
Text Domain: dw
*/

body .rte ul li:before, body .rte ol li:before {
  /* this has been replaced in the style.min.css as it caused
  a bug in ie11 when declaring font-sizes multiple times
  https://stackoverflow.com/questions/40134983/ie11-applies-em-font-size-twice-for-duplicate-rule */

  /* font-size: 1.5em; */
  vertical-align: middle;
}

body .hero--slider .slick-dots li button:before {
  content: '';
  display: inline-block;
  background-color: #fff;
  border: 4px solid #f59d00;
  border-radius: 50%;
  opacity: 1;
}

body .hero--slider .slick-dots li.slick-active button:before {
  background-color: #f59d00;
}

/* body {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  margin: 0;
} */

.six-circles {
  margin-top: 100px;
  margin-bottom: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.big-circle {
  position: relative;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  display: flex;
  justify-content: center; /* Centers horizontally */
  align-items: center;
  border: 4px solid #005597;
  margin-top: 100px;
  margin-bottom: 100px;
}
.big-circle img{
  max-width: 234px;
  max-height: 168px;
}

.small-circle {
  position: absolute;
  width: 200px;
  height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-shrink: 0;
  border: 4px solid white;
  border-radius: 50%;
  background: #005597;

  /* Positioning the circles around the big circle */
  transform: translate(-50%, -50%) rotate(var(--angle)) translate(0, -250px) rotate(calc(-1 * var(--angle)));
  top: 50%;
  left: 50%;
  cursor: pointer;
  transition: all 0.3s ease; /* Add transition for smooth effect */
}
.small-circle.active:hover {
  width: 205px;
  height: 205px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
  border-color: #cccccc;
}

.content-box {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
}

.inner-box {
  width: 54px;
  height: 54px;
  background: white;
  border-radius: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.number-box {
  text-align: center;
  color: #005597;
  font-size: 28px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 800;
  line-height: 24px;
  word-wrap: break-word;
}

.text-box {
  max-width: 150px;
  text-align: center;
  color: white;
  font-size: 20px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  line-height: 32px;
  word-wrap: break-word;
}

/* Style for inactive circles */
.small-circle.inactive {
  background-color: #DBF0FF;
  pointer-events: none; /* Disable pointer events for inactive circles */
}

.small-circle.inactive .inner-box {
  background-color: #005597; /* Color for the inner box of inactive circles */
}

.small-circle.inactive .number-box {
  display: none; /* Hide number box for inactive circles */
}

.small-circle.inactive .text-box {
  color: #006BBD; /* Color for text box of inactive circles */
}

/* Modal Styles */
.modal-six-circles {
  display: none; /* Hidden by default */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
  z-index: 1000;
  justify-content: center;
  align-items: center;
}

.modal-six-circles .modal-content {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  padding: 20px;
  max-width: 80%;
  text-align: left;
  position: relative;
}

.modal-six-circles .close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 24px;
  color: #aaa;
  cursor: pointer;
}

.modal-six-circles .modal-text {
  padding: 20px 0;
}

.modal-six-circles .modal-title {
  font-size: 24px;
  margin-bottom: 10px;
}

.modal-six-circles .modal-description {
  font-size: 18px;
  line-height: 1.6;
  color: #333;
}

.modal-six-circles .modal-video-player {
  max-width: 100%;
  height: auto;
}

/* Tablet and Mobile */
@media (max-width: 768px) {
  .six-circles {
    margin-top: 50px;
    margin-bottom: 50px;
  }
  .big-circle {
    position: relative;
    width: 100%;
    height: 100%;
    border: 4px solid transparent;
    margin-top: 0;
    margin-bottom: 0;
  }
  .big-circle img{
    display: none;
  }
  .circle-line {
    position: absolute;
    width: 4px; /* Adjust width of the line */
    height: 100%; /* Full height of the container */
    background-color: #005597; /* Color of the vertical line */
    left: 50%; /* Center horizontally */
    transform: translateX(-50%); /* Center horizontally */
  }
  .circle-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 100px; /* 12px gap between circles */
  }
  .small-circle {
    position: relative;
    top: auto; /* Reset top position */
    left: auto; /* Reset left position */
    margin: 0 auto; /* Center horizontally */
	transform:none;
  }
}

.form-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: #f0f0f0;
}

.form-container {
  background-color: #fff;
  padding: 2em;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
  max-width: 400px;
  width: 100%;
}

.post-password-form p {
  margin: 1em 0;
}

.post-password-form label {
  display: block;
  margin-bottom: 0.5em;
}

.post-password-form input[type="password"] {
  width: 100%;
  padding: 0.5em;
  margin-top: 0.5em;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}

.post-password-form input[type="submit"] {
  height: unset;
  margin-top: 30px;
  background-color: #0073aa;
  color: white;
  border: none;
  padding: 0.75em 1.5em;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1em;
  transition: background-color 0.3s ease;
}

.post-password-form input[type="submit"]:hover {
  background-color: #005177;
}
.post-password-form{
  padding:20px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  /* top: 50%; */
  margin-top: 10%
}
em {
  font-style: italic !important;
}
#header{
	font-size: 12px !important;
}
.menu_1_list_1 {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 16px;
  background-color: #005597;
  padding: 10px 16px;
  border-radius: 6px;
  flex-wrap: wrap;
}

.menu_1_list_1 li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 4px;
  transition: background-color 0.3s;
}

.menu_1_list_1 li a:hover {
  background-color: #003e6e;
}
.line_2{
	background-color: #005597;
}
.line_2_content {
  display: flex;
  font-size:12px;
  justify-content: center;
}

#main_menu {
  list-style: none;
  margin: 0;
  padding: 10px 16px;
  display: flex;
  gap: 16px;
  background-color: #ffffff;
  border-radius: 6px;
  flex-wrap: wrap;
}

#main_menu li {
  display: inline-block;
}

#main_menu li a {
  color: #005597;
  text-decoration: none;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 4px;
  transition: background-color 0.3s, color 0.3s;
}

#main_menu li a:hover {
  background-color: #e6f0f8;
  color: #003e6e;
}

.line_3 .content_cover {
  display: flex;
  justify-content: center;
}

.menu_1_list_2 {
  list-style: none;
  margin: 0;
  padding: 10px 16px;
  display: flex;
  gap: 16px;
  background-color: #ffffff;
  border-radius: 6px;
  flex-wrap: wrap;
}

.menu_1_list_2 li {
  display: inline-block;
}

.menu_1_list_2 li a {
  color: #005597;
  text-decoration: none;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 4px;
  transition: background-color 0.3s, color 0.3s;
}

.menu_1_list_2 li a:hover {
  background-color: #e6f0f8;
  color: #003e6e;
}

.line_1_content {
  display: flex;
  font-size:12px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.line_3 {
  font-size:12px;
}
#footer {
  padding: 20px 0 0 0 !important
}
