* {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #ffffff;
  background-color: #000000;
  scroll-behavior: smooth;
  overflow-x: hidden;
}
a:link {
  color: #ffffff;
  text-decoration: none;
}
a:visited {
  color: #ffffff;
  text-decoration: none;
}
a:hover {
  color: #ffffff;
  text-decoration: none;
  cursor: pointer;
}
a:active {
  color: #ffffff;
}
#container {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  -webkit-overflow-scrolling: touch;
  align-items: center;
}
#header {
  display: flex;
  flex-direction: row;
  width: 100%;
  height: 75px;
  min-height: 75px;
  align-items: center;
}
#header-logo {
  display: flex;
  width: 40px;
  height: 40px;
  align-items: center;
  margin-left: 10px;
  margin-right: 10px;
}
#header-logo img {
  width: 40px;
  height: 40px;
}
#header-title {
  display: flex;
  width: 100%;
  height: 50px;
  align-items: center;
}
#header-title-left {
  display: flex;
  width: 50%;
  height: 50px;
  font-size: 32px;
  justify-content: flex-start;
}
#header-title-right {
  display: flex;
  width: 50%;
  height: 50px;
  font-size: 18px;
  justify-content: end;
  align-items: center;
  padding-right: 30px;
}
.contact-button {
  width: 200px;
  height: 40px;
  background-color: #000000;
  font-size: 18px;
  color: #ffffff;
  border-radius: 30px;
  border: 1px solid #3b3b3b;
  margin-right: 30px;
}
.contact-button:hover {
  background-color: #0ee304;
  color: #000000;
  cursor: pointer;
}
#hero {
  display: flex;
  width: 100%;
  height: 1080px;
  /*
  background-image: url("../images/hero01.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  */
}

/*--HERO SLIDESHHOW---------------------------*/
#hero-slideshow {
  width: 100%;
  height: 1080px;
  overflow: hidden;
  position: relative;
}
#hero-slideshow .slides {
  position: relative;
  width: 100%;
  height: 100%;
}
#hero-slideshow .slides img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
#hero-slideshow .slides img.active {
  opacity: 1;
}
/*--END---------------------------------------*/

#body-section01 {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: auto;
  justify-content: center;
  align-items: center;
}
#body-section01-heading-top {
  display: flex;
  width: 75%;
  height: 50px;
  margin-top: 200px;
  align-items: last baseline;
  color: #0ee304;
  font-weight: bold;
  padding-bottom: 20px;
  letter-spacing: 0.05em;
  border-bottom: 1px solid #3b3b3b;
}
#body-section01-heading-bottom {
  display: flex;
  width: 75%;
  height: 100px;
  font-size: 48px;
  padding-top: 12px;
}
.services-block {
  display: flex;
  flex-direction: column;
  width: 80%;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}
#body-section01-services-wrap {
  display: flex;
  flex-direction: row;
  width: 100%;
  height: 300px;
  gap: 20px;
  justify-content: center;
  align-items: center;
}
.services-wrap {
  display: flex;
  flex-direction: column;
  width: 350px;
  height: 300px;
  background-color: #0d0d0d;
  border: 1px solid #3b3b3b;
  border-radius: 20px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.services-wrap:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}
.services-icon {
  display: block;
  width: 150px;
  height: 100px;
  margin-bottom: 10px;
}
.services-text {
  display: flex;
  width: 90%;
  height: auto;
  align-items: center;
  margin-left: 50px;
}
/*--SERVICES PANEL SLIDE SHOW-------------------------*/
#service-panels-container {
  width: 96%;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.6s ease;
  background-color: #0d0d0d;
  margin-top: 20px;
  margin-bottom: 100px;
  color: #ffffff;
  border: 0 solid transparent;
  border-radius: 20px;
  padding: 0 40px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}
#service-panels-container.active {
  max-height: 1200px;
  padding-top: 20px;
  padding-bottom: 20px;
  border: 1px solid #3b3b3b;
}
.service-panel {
  display: none;
}
.service-panel.active {
  display: block;
}
.panel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  margin-top: 20px;
}
.panel-item img {
  width: 300px;
  height: 200px;
  object-fit: contain;
  margin-bottom: 10px;
}
.panel-item h3 {
  margin: 0 0 8px;
  font-size: 1.1rem;
  font-weight: 600;
}

/*--FOOTER-----------------------------*/
#footer {
  display: flex;
  position: relative;
  flex-direction: column;
  width: 100%;
  height: auto;
  align-items: center;
  background-color: #000000;
}
#footer-heading {
  display: flex;
  width: 75%;
  height: 100px;
  align-items: flex-end;
  font-size: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #3b3b3b;
}
#footer-middle {
  display: flex;
  flex-direction: row;
  width: 75%;
  height: auto;
  font-size: 14px;
  align-items: center;
  padding-top: 50px;
}
#footer-mid-left-wrap {
  display: flex;
  width: 31%;
  height: 150px;
  align-items: center;
}
#footer-mid-lef-logo {
  display: flex;
  width: 150px;
  height: 150px;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  border: 1px solid white;
}
#footer-mid-left-text {
  display: flex;
  width: 200px;
  height: 100px;
  font-size: 28px;
  align-items: center;
  padding-left: 20px;
}
#footer-links-wrapper {
  display: flex;
  width: 75%;
  height: auto;
  justify-content: right;
}
.footer-links {
  display: flex;
  width: 200px;
  height: auto;
  line-height: 24px;
}
#footer-bottom {
  display: flex;
  width: 75%;
}
#footer-legal {
  display: flex;
  width: 100%;
  height: 120px;
  font-size: 14px;
  margin-top: 50px;
  padding-top: 20px;
  border-top: 1px solid #3b3b3b;
}

/*--MOBILE DEVICES--------------------------------*/
@media (max-width: 768px) {
  #header-title-left {
    font-size: 18px;
  }
  #header-title-right {
    font-size: 14px;
  }
  .contact-button {
    font-size: 14px;
    margin-right: 10px;
  }
  #hero-slideshow {
    width: 100%;
    height: 230px;
    overflow: hidden;
    position: relative;
  }
  @supports (-moz-appearance: none) {
    #hero-slideshow {
      height: 200px;
    }
    #header-logo {
      margin-left: 5px;
      margin-right: 5px;
    }
  }
  #hero-slideshow .slides {
    position: relative;
    width: 100%;
    height: 100%;
  }
  #hero-slideshow .slides img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  #body-section01-heading-top {
    margin-top: 50px;
    padding-bottom: 20px;
  }
  #body-section01-heading-bottom {
    display: flex;
    width: 75%;
    height: 100px;
    font-size: 16px;
    padding-top: 12px;
  }
  #body-section01-services-wrap {
    flex-direction: column;
    height: auto;
    width: 100%;
  }
  .services-block {
    display: flex;
    width: 90%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .services-wrap {
    width: 100%;
    height: 250px;
    align-items: center;
    justify-content: center;
  }
  .services-wrap:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
  }
  .services-icon {
    display: block;
    width: 150px;
    height: 100px;
    margin-top: 40px;
  }
  .services-text {
    display: flex;
    width: 90%;
    height: 200px;
    margin-top: 0;
    margin-left: 30px;
  }
  #service-panels-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: auto;
    max-height: none;
    margin: 0 auto;
    padding-right: 10px;
    padding-left: 40px;
    padding-right: 30px;
    align-items: center;
  }
  #service-panels-container.active {
    display: flex;
    flex-direction: column;
    max-height: 2000px;
    margin-bottom: 50px;
  }
  #service-panels-container .panel-grid {
    display: flex !important;
    flex-direction: column !important;
  }
  .service-panel.active {
    display: flex !important;
    flex-direction: column !important;
  }
  #footer {
    margin-bottom: 20px;
  }
  #footer-heading {
    font-size: 24px;
  }
  #footer-middle {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: auto;
    font-size: 14px;
    align-items: center;
    padding-top: 50px;
  }
  #footer-mid-left-wrap {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 250px;
    align-items: center;
  }
  #footer-mid-lef-logo {
    display: flex;
    width: 150px;
    height: 150px;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    border: 1px solid white;
  }
  #footer-mid-left-text {
    display: flex;
    width: 200px;
    height: 100px;
    font-size: 28px;
    align-items: center;
    justify-content: center;
    padding-left: 20px;
  }
  #footer-links-wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: auto;
    align-items: center;
  }
  .footer-links {
    display: flex;
    width: 200px;
    height: auto;
    line-height: 24px;
    margin-bottom: 10px;
  }
  #footer-bottom {
    display: flex;
    width: 75%;
    padding-bottom: 20px;
  }
  #footer-legal {
    display: flex;
    width: 100%;
    height: auto;
    font-size: 14px;
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid #3b3b3b;
  }
}
