@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

body {
  font-family: "Montserrat", system-ui !important;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 12px;
}

.dropdown-menu {
  display: none;
  position: absolute;
  background-color: white;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 0.5rem;
  top: 100%;
  left: 0;
  z-index: 10;
  opacity: 0;
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
  transform: scale(0.95);
}

.menu-item:hover .dropdown-menu {
  display: block;
  opacity: 1;
  transform: scale(1);
}

.menu-item {
  position: relative;
}

.img-desktop {
  display: block;
}

.img-responsive {
  display: none;
}

.credits {
  display: block;
}

.credits_mobile {
  display: none;
}

a:hover .tooltip {
  visibility: visible;
  opacity: 1;
}

.hvr-shutter-out-horizontal {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  background: #e1e1e1;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}

.hvr-shutter-out-horizontal:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #0a2574;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 50%;
  transform-origin: 50%;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

.hvr-shutter-out-horizontal:hover,
.hvr-shutter-out-horizontal:focus,
.hvr-shutter-out-horizontal:active {
  color: white;
}

.hvr-shutter-out-horizontal:hover:before,
.hvr-shutter-out-horizontal:focus:before,
.hvr-shutter-out-horizontal:active:before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

.circle-number {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 30px;
  background-color: #24909a;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.form2 {
  width: 300px;
  margin: 0 auto;
  text-align: center;
}

.value-button {
  display: inline-block;
  border: 1px solid #ddd;
  margin: 0px;
  width: 40px;
  height: 40px;
  text-align: center;
  vertical-align: middle;
  padding: 11px 0;
  background: #eee;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.value-button:hover {
  cursor: pointer;
}

.form2 #decrease {
  margin-right: -4px;
  border-radius: 8px 0 0 8px;
}

.form2 #increase {
  margin-left: 0px;
  border-radius: 0 8px 8px 0;
}

.form2 #input-wrap {
  margin: 0px;
  padding: 0px;
}

input#number {
  text-align: center;
  border: none;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  margin: 0px;
  width: 40px;
  height: 40px;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* //////////////////////////////////////// */

.slider {
  position: relative;
  max-width: 100%;
  margin: auto;
  overflow: hidden;
  height: 400px;
  margin-bottom: 20px;
}

.slider-responsive .slider {
  height: 700px;
}

.slider-container {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 100%;
}

.slide {
  min-width: 100%;
  box-sizing: border-box;
  height: 400px;
}

.slider-responsive .slide {
  height: 700px;
}

.slide img,
.slide video {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.slider-responsive .slide img,
.slide video {
  height: 700px;
}

.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  padding: 16px;
  margin-top: -22px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  border-radius: 0 3px 3px 0;
  user-select: none;
  background-color: rgba(0, 0, 0, 0.5);
}

.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.prev:hover,
.next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

.dots-container {
  text-align: center;
  padding: 10px;
  position: absolute;
  bottom: 10px;
  width: 100%;
  z-index: 10;
  height: 30px;
}

.dot {
  display: inline-block;
  height: 12px;
  width: 12px;
  margin: 0 5px;
  background-color: #333;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s;
}

.dot.active {
  background-color: #000;
}

.dot:hover {
  background-color: #555;
}

/* //////////////////////////////////////// */

.btn-desktop {
  display: block;
  width: 310px;
  text-align: center;
}

.btn-responsive {
  display: none;
}

.slider-responsive {
  display: none;
}

/* //////////////////////////////////////// */

@media (max-width: 768px) {

  .slider-desktop {
    display: none;
  }

  .slider-responsive {
    display: block;
  }

  .btn-desktop {
    display: none;
  }

  .btn-responsive {
    display: block;
  }

}

@media (min-width: 300px) and (max-width: 768px) {

  #about,
  #our_solution {
    margin: 0.3rem !important;
  }

  #boxes1 {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
  }

  #screen2 {
    display: none;
  }

  #normal {
    display: block;
  }

  #map1 {
    display: block;
  }

  #map2 {
    display: none;
  }

  #footer1 {
    display: block;
  }

  #footer2 {
    display: none;
  }
}

@media (min-width: 769px) and (max-width: 900px) {

  #about,
  #our_solution {
    margin: 1rem !important;
  }

  #more_info {
    font-size: 1rem;
  }

  #boxes1 {
    margin-left: 0.3rem;
    margin-right: 0.3rem;
  }

  #screen2 {
    display: block;
  }

  #normal {
    display: none;
  }

  #map1 {
    display: block;
    text-align: center;
  }

  #map2 {
    display: none;
  }

  #footer1 {
    display: block;
  }

  #footer2 {
    display: none;
  }
}

@media (min-width: 901px) and (max-width: 1024px) {

  #about,
  #our_solution {
    margin: 2rem !important;
  }

  #boxes1 {
    margin-left: 1rem;
    margin-right: 1rem;
  }

  #screen2 {
    display: block;
  }

  #normal {
    display: none;
  }

  #map1 {
    display: block;
    text-align: center;
  }

  #map2 {
    display: none;
  }

  #footer1 {
    display: block;
  }

  #footer2 {
    display: none;
  }
}

@media (min-width: 1025px) and (max-width: 1200px) {

  #about,
  #our_solution {
    margin: 3rem !important;
  }

  #boxes1 {
    margin-left: 1.3rem;
    margin-right: 1.3rem;
  }

  #screen2 {
    display: block;
  }

  #normal {
    display: none;
  }

  #map1 {
    display: none;
  }

  #map2 {
    display: block;
  }

  #footer1 {
    display: block;
  }

  #footer2 {
    display: none;
  }
}

@media (min-width: 1200px) and (max-width: 3000px) {

  #about,
  #our_solution {
    margin: 3rem !important;
  }

  #boxes1 {
    margin-left: 1.3rem;
    margin-right: 1.3rem;
  }

  #screen2 {
    display: none;
  }

  #normal {
    display: block;
  }

  #map1 {
    display: none;
  }

  #map2 {
    display: block;
  }

  #footer1 {
    display: none;
  }

  #footer2 {
    display: block;
  }
}