@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,400;0,700;1,400;1,700&family=Roboto+Slab:wght@400;700&display=swap');

html {
  height: 100%;
  min-height:100dvh;
  background-color:#000;
  margin: 0;
  padding:0;
}
body {
  text-align: center;
 font-family: 'Noto Sans', sans-serif;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  margin: 0;
  padding:0 20px;
  min-height: 100dvh;
  background-color: #000;
  background-image:  url('images/bg-b.png?v2'), url('images/bg-top.jpg?v2');
  background-position: bottom, top;
  background-size: 100%, 100%;
  background-repeat: no-repeat;
  color:#fff;
  text-align:center;
}

h1{
  font-weight:400;
  padding-top:0;
  margin-top:0;
  font-family: 'Roboto Slab', serif;
}

#svg_form_time {
  height: 15px;
  max-width: 80%;
  margin: 40px auto 20px;
  display: block;
}

#svg_form_time circle,
#svg_form_time rect {
  fill: white;
}

.button {
  background: #00b1a9;
  border-radius: 20px;
  padding: 15px 25px;
  display: block;
  margin: 20px auto;
  font-weight: bold;
  color: white;
  cursor: pointer;
  box-shadow:0px 2px 5px rgb(0,0,0,0.5);
  text-decoration:none;
  text-transform:uppercase;
  max-width:70%;
}
.button:hover {
  background: #1f4c49;
}

.headert2 {
  background: #00b1a9;
  border-radius: 20px;
  padding: 15px 25px;
  display: block;
  margin: 20px auto;
  font-weight: bold;
  color: white;
  box-shadow:0px 2px 5px rgb(0,0,0,0.5);
  text-decoration:none;
  text-transform:uppercase;
  max-width:70%;
}
.headert {
  background: #00b1a9;
  border-radius: 20px;
  padding: 15px;
  display: block;
  margin: 30px auto;
  font-weight: bold;
  font-size: 32px;
  color: white;
  box-shadow:0px 2px 5px rgb(0,0,0,0.5);
  text-decoration:none;
  text-transform:uppercase;
  max-width:600px;
}

.navbar a {
  font-size: 18px;
  color: white;
  text-decoration:none;	
      padding: 10px;
  transition: transform .2s;
  display: inline-block;
}

.navbar a:hover, .navbar a.active {
    color: #ffffff;
    transform: scale(1.1);
    background-color: #00a99d;
    border-radius: 15px;
}

.social {
    position: fixed;
    right: 0;
    bottom: 0;
    background-color: #00a99d;
    margin: 0;
    padding: 15px 30px;
	color:#fff;
	font-weight:bold;
	    border-radius: 40px 0 0 0;
}

.social span {
	display:inline-block;
}

.social img {
	max-width:30px;
	width:100%;
	height:auto;
	vertical-align:middle
}

.social a {
	display:inline-block;
}

.disabled {
  display:none;
}

.image-container {
  position: relative;
}

.hotspot {
  position: absolute; /* Allows you to position the link on the image */
  width: 16%;       /* Set the size of your clickable area */
  height: 30px;      /* Set the size of your clickable area */
  transform: translate(-50%, -50%); /* Centers the hotspot precisely */
  cursor: pointer;
  z-index: 10; /* Ensures the hotspot is on top of the image */
}

.thbx {
    font-size: 20px;
    padding: 10px 15px;
    background-color: #00a99d;
    border-radius: 20px;
    margin: 5px 10px;
    cursor: pointer;
    display: inline-block;
	opacity:0.7;
}

.thbx.active {
	opacity:1;
}


section {
  padding: 20px ;
  max-width: 800px;
  margin: 20px auto;
  background:rgb(255 255 255 / 80%);
  backdrop-filter:blur(0px);
  box-shadow:0px 2px 10px rgba(0,0,0,0.3);
  border-radius:5px;
  transition:transform 0.2s ease-in-out;
}


input, select {
  width: 100%;
  margin: 7px 0px;
  display: inline-block;
  padding: 12px 25px;
  box-sizing: border-box;
  border-radius: 5px;
  border: 1px solid lightgrey;
  font-size: 1em;
  font-family:inherit;
  background:white;
}

p{
  text-align:center;
margin-top:0;
}

.logocontainer {
text-align:center; max-width:850px; padding:25px 15px; margin:0 auto;
}

.logocontainer img {
max-width:280px; width:100%; height:auto;
}

.titlecontainer {
max-width:600px; margin:0 auto;
padding-top:25vh;	
}
.meet-image {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px; /* Adds space between the images */
}

.meet-image img {
  max-width: 45%; /* Adjusts the size of images on desktop */
  height: auto;
}

.container {
  display: flex; /* This makes the columns align horizontally by default */
  flex-direction: row; /* This is the default, but it's good practice to be explicit */
  gap: 10px; /* Adds space between the columns */
}

.column {
  flex: 1;
}

.faq-item {
	text-align:left;
	margin-bottom:15px;
}
.question {
	font-weight:bold;
}

.titleicon {
    display: inline-block;
    max-height: 30px;
    width: auto;
}

/* Media query for mobile devices */
@media (max-width: 768px) {
  .meet-image {
    flex-direction: column; /* Stacks images vertically on mobile */
  }
  .meet-image img {
    max-width: 100%; /* Makes images full-width on mobile */
    margin-bottom: 10px; /* Adds space between stacked images */
  }
  body {
  background-image:  url('images/bg-m.png?v2'), url('images/bg-top.jpg?v2');
	}
.social {
	width:100%;
	border-radius:0;
}
.spacecar {
	padding-bottom:120px;
}
.logocontainer {
    padding: 10px;
}
.navbar a {
    font-size: 14px;
}
.headert {
    font-size: 28px;
}

  .container {
    flex-direction: column;
  }
}
