html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background-color: #F5F5F5;
  display: flex;
  flex-direction: column;
}

.main {
  flex: 1;
}

.header-wrap {
  display: flex;
  justify-content: center;
  background-color: red;
}

header {
  max-width: 1920px;
  display: flex;
  position: fixed;
  width: 100%;
  align-items: center;
  box-sizing: border-box;
  padding: 1.5rem 8rem;
  font-family: "Roboto condensed", sans-serif;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 1000;
}
header .menu {
  width: 35px;
  margin-left: auto;
  display: none;
}
header .menu.hidden {
  display: none;
}
header button {
  display: none;
  margin-left: auto;
  border: none;
  background: transparent;
  padding: 0;
}
header .menu-light {
  width: 35px;
  margin-left: auto;
}
header .menu-light.hidden {
  display: none;
}
header .logo {
  font-size: 1.8rem;
  font-weight: bold;
  text-decoration: none;
  color: black;
  transition: color 0.3s ease;
}
header .logo.on-dark {
  color: white;
}
header nav {
  display: flex;
  gap: 3vw;
  align-items: center;
  margin-left: auto;
}
header nav ul {
  margin: 0;
}
header nav ul a {
  color: black;
  text-decoration: none;
  letter-spacing: 1px;
  transition: color 0.3s ease;
  transition: opacity 0.2s;
}
header nav ul a:hover {
  opacity: 75%;
}
header nav ul a.on-dark {
  color: white;
}
header nav ul a.contact {
  padding: 0.3rem 1rem;
  font-weight: bold;
  color: white;
  border-radius: 5px;
  background: linear-gradient(to right, #8DB48E, #A3C2A4);
}
header nav ul a.contact:hover {
  opacity: 75%;
}

@media screen and (max-width: 1100px) {
  header nav {
    display: none;
  }
  header .menu {
    display: block;
  }
  header button {
    display: block;
  }
}
@media screen and (max-width: 590px) {
  header {
    padding: 1.5rem 1rem;
  }
}
.hero-wrap {
  display: flex;
  justify-content: center;
}

.hero-section {
  max-width: 1920px;
  height: calc(100vh - 82.66px);
  background-color: #F5F5F5;
  padding: 2rem 0rem 2rem 8rem;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  width: 100%;
}
.hero-section .text {
  box-sizing: border-box;
  max-width: 40%;
}
.hero-section .text p {
  font-family: "Roboto condensed", sans-serif;
  font-size: 1rem;
  font-weight: 350;
  letter-spacing: 2px;
  margin: 0;
}
.hero-section .text p.flow {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  line-height: 24px;
}
.hero-section .text h2 {
  font-size: 2.5rem;
  font-family: "Roboto condensed", sans-serif;
  font-weight: 300;
  margin: 0;
  letter-spacing: 2px;
}
.hero-section .text h2 span {
  font-weight: 500;
}
@media screen and (max-width: 1280px) {
  .hero-section .text h2 {
    font-size: 2rem;
  }
}
.hero-section .graphic-container {
  background: linear-gradient(#ffffff, #f0f0f0);
  height: 50vh;
  max-height: 450px;
  flex-grow: 1;
  border-radius: 15vw 0 0 15vw;
  margin-left: 3rem;
  display: flex;
  overflow: visible;
}
.hero-section .graphic-container img {
  height: 110%;
  margin-left: 5vw;
  margin-top: -3.5vw;
}
@media screen and (max-width: 1250px) {
  .hero-section .graphic-container {
    height: 30vh;
  }
  .hero-section .graphic-container img {
    margin-top: -2.5vw;
  }
}

@media screen and (max-width: 960px) {
  .hero-section {
    flex-direction: column;
    align-items: start;
    padding-right: 128px;
  }
  .hero-section .text {
    max-width: 100%;
  }
  .hero-section .graphic-container {
    margin-left: 0;
    margin-top: 5rem;
    width: 120%;
    border-radius: 0vw 25vw 25vw 0vw;
    max-height: 300px;
    margin-left: -8rem;
  }
  .hero-section .graphic-container img {
    margin-left: 3.2rem;
    max-width: 550px;
    margin-left: 4rem;
  }
}
@media screen and (max-width: 590px) {
  .hero-section {
    padding: 2rem 1rem 2rem 1rem;
  }
  .hero-section .graphic-container {
    width: 100%;
    margin-left: -1rem;
    display: flex;
    justify-content: center;
    border-radius: 0vw 35vw 35vw 0vw;
    margin-top: 2rem;
    max-height: 270px;
  }
  .hero-section .graphic-container img {
    width: 90%;
    margin-left: -2rem;
  }
}
.leistungs-wrap {
  display: flex;
  justify-content: center;
  background-color: #0C120C;
}

.leistungen-section {
  background-color: #0C120C;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  width: 100%;
  padding: 5rem 8rem 6rem 8rem;
  max-width: 1500px;
}
.leistungen-section .items {
  display: flex;
  box-sizing: border-box;
  width: 100%;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}
.leistungen-section .items .item {
  display: flex;
  flex-direction: column;
  width: 13.5rem;
  letter-spacing: 2px;
  background: linear-gradient(to right, #8DB48E, #A9CBAA);
  padding: 0.5rem;
  height: 8rem;
  border-radius: 15px;
  position: relative;
  transition: all 0.5s;
  min-width: 215px;
  flex-grow: 1;
}
.leistungen-section .items .item .circle {
  background-color: #4d724d;
  padding: 0.5rem;
  border-radius: 100%;
  position: absolute;
  top: -1rem;
  right: -1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.leistungen-section .items .item .circle img {
  width: 15px;
}
.leistungen-section .items .item .item-head {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
}
.leistungen-section .items .item .item-head h3 {
  font-family: "Roboto condensed", sans-serif;
  margin: 0;
  color: #222222;
}
.leistungen-section .items .item p {
  font-family: "Roboto", sans-serif;
  color: #222222;
  letter-spacing: 2px;
  margin-top: 0.5rem;
  font-size: 1rem;
  line-height: 24px;
}
.leistungen-section .items .item:hover {
  transform: scale(1.05);
  box-shadow: 0px 0px 15px rgba(127, 255, 212, 0.2);
}
@media screen and (max-width: 740px) {
  .leistungen-section .items .item {
    width: 100%;
  }
}
@media screen and (min-width: 1256px) {
  .leistungen-section .items {
    justify-content: space-between;
  }
}
.leistungen-section .vorteile-container {
  width: 100%;
  margin-top: 4rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-sizing: border-box;
}
.leistungen-section .vorteile-container .vorteil {
  background-color: rgba(77, 114, 77, 0.04);
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 2rem 1rem;
  border-radius: 15px;
  box-sizing: border-box;
  transition: all 0.5s;
}
.leistungen-section .vorteile-container .vorteil .head {
  display: flex;
  color: rgb(237, 237, 237);
  font-family: "Roboto condensed", sans-serif;
  letter-spacing: 2px;
  align-items: center;
}
.leistungen-section .vorteile-container .vorteil .head p {
  margin: 0;
  font-size: 1.1rem;
  font-weight: bold;
  color: white;
}
.leistungen-section .vorteile-container .vorteil .head img {
  width: 17px;
  height: 17px;
  margin-left: 0.5rem;
  margin-left: auto;
}
.leistungen-section .vorteile-container .vorteil p {
  letter-spacing: 2px;
  line-height: 24px;
  font-family: "Roboto", sans-serif;
  color: rgb(212, 212, 212);
  margin: 0;
  font-size: 1rem;
}
.leistungen-section .vorteile-container .vorteil p.mb05 {
  margin-bottom: 0.5rem;
}
.leistungen-section .vorteile-container .vorteil p span {
  font-weight: bold;
}
.leistungen-section .vorteile-container .vorteil .bttn-container1 {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
}
.leistungen-section .vorteile-container .vorteil .bttn-container1 a {
  font-family: "Roboto condensed", sans-serif;
  letter-spacing: 2px;
  text-decoration: none;
  color: #222222;
  width: 6rem;
  border-radius: 10px;
  display: flex;
  align-items: center;
  padding: 0.5rem 2rem;
  background-color: #8DB48E;
  border: 2px solid #8DB48E;
  justify-content: center;
  font-weight: 500;
  transition: opacity 0.2s;
}
.leistungen-section .vorteile-container .vorteil .bttn-container1 a:hover {
  opacity: 75%;
}
.leistungen-section .vorteile-container .vorteil .bttn-container1 a.ol {
  background-color: transparent;
  border: 2px solid rgb(226, 226, 226);
  color: rgb(226, 226, 226);
}
.leistungen-section .vorteile-container .vorteil .bttn-container1 a img {
  width: 15px;
  margin-top: 3px;
  margin-left: 0.5rem;
}
@media screen and (max-width: 850px) {
  .leistungen-section .vorteile-container .vorteil .bttn-container1 {
    flex-wrap: wrap;
  }
  .leistungen-section .vorteile-container .vorteil .bttn-container1 a {
    width: 100%;
  }
}
.leistungen-section .vorteile-container .vorteil:hover {
  background-color: rgba(77, 114, 77, 0.12);
}

@media screen and (max-width: 560px) {
  .leistungen-section {
    padding: 3rem 1.5rem 4rem 1.5rem;
  }
  .leistungen-section .vorteile-container .vorteil {
    background-color: rgba(77, 114, 77, 0.08);
  }
}
.pricing-wrap {
  display: flex;
  justify-content: center;
  padding-top: 3rem;
}

.pricing-section {
  padding: 2rem 8rem;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  max-width: 1500px;
}
.pricing-section .cards {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}
.pricing-section .cards .card-wrap {
  width: -moz-fit-content;
  width: fit-content;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 2px 0px;
  border-radius: 15px;
  transition: all 0.3s;
}
.pricing-section .cards .card-wrap a {
  box-sizing: border-box;
  width: 100%;
  border: none;
  font-weight: bold;
  color: white;
  padding: 1rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0px 0px 15px 15px;
  background: linear-gradient(to right, #8DB48E, #A3C9A4);
  font-size: 1rem;
  font-family: "Roboto condensed", sans-serif;
  letter-spacing: 2px;
  transition: color 0.2s;
}
.pricing-section .cards .card-wrap a:hover {
  color: #ecffdf;
}
.pricing-section .cards .card-wrap:hover {
  transform: translateY(-10px);
}
.pricing-section .cards .card {
  font-family: "Roboto condensed", sans-serif;
  letter-spacing: 2px;
  background-color: white;
  border-radius: 15px 15px 0px 0px;
  padding: 2rem 1rem 0.5rem 1rem;
  height: 28rem;
  max-width: 298.55px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.pricing-section .cards .card.highlight {
  background-color: #fafafa;
}
.pricing-section .cards .card h4 {
  font-size: 1.5rem;
  margin: 0;
}
.pricing-section .cards .card p {
  font-size: 1rem;
  margin: 0;
}
.pricing-section .cards .card .list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.pricing-section .cards .card .list .list-element {
  display: flex;
  align-items: center;
  margin-bottom: 0.1rem;
}
.pricing-section .cards .card .list .list-element .circle {
  width: 5px;
  height: 5px;
  border-radius: 100%;
  background-color: black;
  opacity: 30%;
  margin-right: 0.5rem;
}
.pricing-section .cards .card .batch {
  position: absolute;
  top: -0.8rem;
  right: 1rem;
  text-align: center;
  background-color: #4d724d;
  padding: 0.2rem 1rem;
  border-radius: 5px;
  color: rgb(240, 240, 240);
  font-weight: 500;
  display: flex;
  align-items: center;
}
.pricing-section .cards .card .batch h5 {
  margin: 0;
  font-size: 1rem;
}
.pricing-section .cards .card .price {
  margin-top: auto;
  flex-direction: column;
  display: flex;
  box-sizing: border-box;
}
.pricing-section .cards .card .price h2 {
  margin: 0;
}
.pricing-section .cards .card .price p {
  opacity: 80%;
}
.pricing-section .cards .card .price .mwst {
  opacity: 60%;
  font-size: 0.8rem;
}
.pricing-section .cards .trennlinie {
  background-color: #8DB48E;
  width: 2rem;
  height: 2px;
}
.pricing-section .cards .trennlinie.none {
  display: none;
}
@media screen and (max-width: 1300px) {
  .pricing-section .cards .trennlinie {
    display: none;
  }
}
.pricing-section .module-container {
  width: 100%;
  margin-top: 2rem;
}
.pricing-section .module-container h3 {
  font-family: "Roboto condensed", sans-serif;
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.pricing-section .module-container h3 span {
  background-color: rgb(138, 138, 138);
  height: 2px;
  width: 2rem;
  opacity: 50%;
}
.pricing-section .module-container .module {
  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 2px 0px;
  border-radius: 15px;
  background-color: white;
  padding: 0.5rem 1rem 0.5rem 1rem;
  transition: all 0.3s;
}
.pricing-section .module-container .module .head {
  display: flex;
  font-family: "Roboto condensed", sans-serif;
  letter-spacing: 2px;
  align-items: center;
  gap: 1rem;
}
.pricing-section .module-container .module .head p {
  font-size: 1.2rem;
  font-weight: bold;
}
.pricing-section .module-container .module .head p.tag {
  font-size: 0.8rem;
  opacity: 50%;
}
.pricing-section .module-container .module .text {
  font-family: "Roboto", sans-serif;
  color: #1b1b1b;
  line-height: 24px;
  letter-spacing: 2px;
}
.pricing-section .module-container .module .text span a {
  cursor: pointer;
}
.pricing-section .module-container .module .price {
  font-family: "Roboto condensed", sans-serif;
  letter-spacing: 2px;
  font-size: 1.2rem;
  font-weight: bold;
}
.pricing-section .module-container .module .price span {
  opacity: 60%;
  font-size: 0.8rem;
  font-weight: normal;
}
.pricing-section .module-container .module:hover {
  transform: translateX(10px);
}
@media screen and (max-width: 1180px) {
  .pricing-section .cards {
    justify-content: center;
    gap: 1.5rem;
  }
}
@media screen and (max-width: 590px) {
  .pricing-section .cards {
    gap: 2rem;
  }
  .pricing-section .cards .card-wrap {
    width: 100%;
  }
  .pricing-section .cards .card {
    max-width: 100%;
  }
}

@media screen and (max-width: 590px) {
  .pricing-section {
    padding: 2rem 1rem;
  }
}
.about-wrap {
  display: flex;
  justify-content: center;
  padding-top: 3rem;
}

.about-section {
  padding: 2rem 8rem;
  max-width: 1500px;
  width: 100%;
  box-sizing: border-box;
}
.about-section .chapters {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.about-section .chapters .chapter {
  background-color: white;
  padding: 2rem 1rem;
  border-radius: 10px;
  width: 100%;
  box-sizing: border-box;
  min-height: 293.5px;
  transition: all 0.3s;
}
.about-section .chapters .chapter p {
  font-family: "Roboto condensed", sans-serif;
  letter-spacing: 2px;
  margin: 0;
  line-height: 24px;
}
.about-section .chapters .chapter p.head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.about-section .chapters .chapter p.head img {
  width: 22px;
}
.about-section .chapters .chapter h3 {
  font-family: "Roboto condensed", sans-serif;
  letter-spacing: 2px;
  margin: 0;
}
.about-section .chapters .chapter span {
  font-weight: bold;
}
.about-section .chapters .chapter:hover {
  box-shadow: rgba(0, 0, 0, 0.05) 1.95px 1.95px 2.6px;
}

@media screen and (max-width: 590px) {
  .about-section {
    padding: 2rem 1rem;
  }
}
.footer-wrap {
  display: flex;
  justify-content: center;
  background-color: #060906;
  margin-top: 3rem;
}

footer {
  background-color: #060906;
  width: 100%;
  max-width: 1920px;
  padding: 2rem 8rem;
  box-sizing: border-box;
  color: white;
  display: flex;
  justify-content: space-between;
}
footer h2 {
  font-family: "Roboto condensed", sans-serif;
  letter-spacing: 2px;
  margin: 0;
  color: rgb(228, 228, 228);
  font-size: 1.2rem;
}
footer h3 {
  font-family: "Roboto condensed", sans-serif;
  letter-spacing: 2px;
  color: rgb(228, 228, 228);
  margin-bottom: 0.5rem;
}
footer p {
  margin: 0;
  font-family: "Roboto", sans-serif;
  letter-spacing: 2px;
  color: rgb(228, 228, 228);
  margin-top: 1rem;
  font-size: 0.8rem;
}
footer .info {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  max-width: 33.33%;
}
footer .info.nav {
  align-items: center;
  text-align: center;
}
footer .info.downloads {
  align-items: end;
  text-align: right;
}
footer .info li {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
footer .info li a {
  color: rgb(228, 228, 228);
  opacity: 75%;
  text-decoration: none;
  font-family: "Roboto", sans-serif;
  letter-spacing: 2px;
  font-size: 0.9rem;
  transition: opacity 0.2s;
}
footer .info li a:hover {
  opacity: 95%;
}

@media screen and (max-width: 1000px) {
  footer {
    padding: 2rem 1rem;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    align-items: start;
  }
  footer .info {
    width: 100%;
    max-width: none;
  }
  footer .info .line {
    width: 100% !important;
  }
  footer .info.nav {
    align-items: start;
    text-align: left;
  }
  footer .info.downloads {
    align-items: start;
    text-align: left;
  }
}
.contact-wrap {
  display: flex;
  justify-content: center;
}

.contact {
  padding: 0rem 8rem;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1920px;
  box-sizing: border-box;
}
.contact .contact-info {
  margin-top: 2rem;
}
.contact .contact-info .element {
  display: flex;
  align-items: center;
}
.contact .contact-info .element .line {
  flex-grow: 1;
  height: 2px;
  background-color: #8DB48E;
  margin-left: 1rem;
  opacity: 30%;
}
.contact .contact-info p {
  font-family: "Roboto condensed", sans-serif;
  letter-spacing: 2px;
  color: #151515;
  padding-left: 1rem;
  border-left: 2px solid #8DB48E;
}
.contact .contact-content {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}
.contact .contact-content .contact-partner {
  display: flex;
  flex-direction: column;
  background-color: white;
  border-radius: 10px;
  width: 50%;
  position: relative;
  padding: 1rem;
  border: 2px solid #e3e3e3;
}
.contact .contact-content .contact-partner img {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  position: absolute;
  right: -1rem;
  top: -1rem;
}
.contact .contact-content .contact-partner h3 {
  margin: 0;
  font-family: "Roboto condensed", sans-serif;
  letter-spacing: 2px;
  color: #151515;
}
.contact .contact-content .contact-partner h4 {
  margin: 0;
  font-family: "Roboto condensed", sans-serif;
  letter-spacing: 2px;
  font-size: 0.9rem;
  font-weight: 400;
  color: #151515;
  opacity: 80%;
}
.contact .contact-content .contact-partner p {
  padding-right: 1rem;
  font-family: "Roboto condensed", sans-serif;
  letter-spacing: 2px;
  color: rgb(42, 42, 42);
  margin: 0;
  line-height: 24px;
}
.contact form {
  display: flex;
  flex-direction: column;
  width: 50%;
}
.contact form .check-label {
  display: flex;
  align-items: center;
  border-left: 2px solid #e3e3e3;
  border-right: 2px solid #e3e3e3;
  padding: 0.5rem 1rem;
  margin-top: -0.1rem;
  font-family: "Roboto condensed", sans-serif;
  font-size: 0.8rem;
}
.contact form .submit {
  border-radius: 0px 0px 10px 10px;
  border: 2px solid #e3e3e3;
  border-top: none;
  margin-top: -1px;
  padding: 0.5rem;
  background: linear-gradient(to right, #8DB48E, #A3C9A4);
  font-size: 1rem;
  font-family: "Roboto condensed", sans-serif;
  letter-spacing: 2px;
  color: white;
  cursor: pointer;
}
.contact form .message {
  height: 10rem;
  border: 2px solid #e3e3e3;
  resize: none;
  margin-top: -1px;
  padding: 0.5rem 1.5rem;
  font-family: "Roboto", sans-serif;
  font-size: 0.8rem;
  background-color: #F5F5F5;
  color: #060906;
  border-top: 0px;
  border-bottom: none;
}
.contact form .message:focus {
  outline: none;
}
.contact form .head {
  display: flex;
}
.contact form .field {
  display: flex;
  flex-direction: column;
  position: relative;
  flex-grow: 1;
  min-width: 0;
}
.contact form .field label {
  font-size: 0.8rem;
  font-family: "Roboto condensed", sans-serif;
  letter-spacing: 2px;
  background-color: #F5F5F5;
  position: absolute;
  left: 1rem;
  top: -0.45rem;
  padding: 0rem 0.5rem;
}
.contact form .field input {
  height: 2rem;
  border: 2px solid #e3e3e3;
  background-color: #F5F5F5;
  color: rgb(228, 228, 228);
  padding: 0rem 1.5rem;
  color: #060906;
}
.contact form .field input#name {
  border-radius: 10px 0px 0px 0px;
}
.contact form .field input#mail {
  border-radius: 0px 10px 0px 0px;
}
.contact form .field input:focus {
  outline: none;
}
.contact form .field #mail {
  border-left: none;
}

@media screen and (max-width: 1200px) {
  .contact .contact-content {
    flex-direction: column;
  }
  .contact .contact-content form {
    width: 100%;
  }
  .contact .contact-content .contact-partner {
    width: 100%;
    box-sizing: border-box;
    margin-top: 1rem;
  }
}
@media screen and (max-width: 650px) {
  .contact {
    padding: 0rem 1rem;
  }
  .contact .contact-partner img {
    right: -0.8rem !important;
  }
}
.impressum-wrap {
  display: flex;
  justify-content: center;
}
.impressum-wrap .impressum {
  max-width: 1920px;
  box-sizing: border-box;
  width: 100%;
  padding: 0rem 8rem;
  display: flex;
  flex-direction: column;
}
.impressum-wrap .impressum p {
  font-family: "Roboto condensed", sans-serif;
}
.impressum-wrap .impressum .block h3 {
  margin-bottom: 0.5rem;
  font-family: "Roboto condensed", sans-serif;
}
.impressum-wrap .impressum .block p {
  margin: 0;
  margin-bottom: 0.25rem;
  font-family: "Roboto", sans-serif;
}

@media screen and (max-width: 590px) {
  .impressum-wrap .impressum {
    padding: 0rem 1rem;
  }
}
.line {
  height: 2px;
  background-color: #8DB48E;
}
.line.thirty {
  width: 30%;
}
.line.twenty {
  width: 20%;
}
.line.ten {
  width: 10%;
}
.line.five {
  width: 5%;
}
.line.m1 {
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.line.dark {
  background-color: #222222;
}
.line.light {
  background-color: white;
}
.line.op50 {
  opacity: 50%;
}
.line.op80 {
  opacity: 80%;
}

.bttn-container {
  font-family: "Roboto condensed", sans-serif;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
}
.bttn-container .bttn {
  background-color: #8DB48E;
  font-size: 1rem;
  color: white;
  text-decoration: none;
  padding: 0.5rem 2rem;
  width: 6rem;
  text-align: center;
  border-radius: 10px;
  position: relative;
  z-index: 0;
  overflow: hidden;
  border: 2px solid #8DB48E;
  transition: opacity 0.2s;
}
.bttn-container .bttn:hover {
  opacity: 75%;
}
.bttn-container .bttn.ol {
  background-color: transparent;
  color: #8DB48E;
}

.head-element {
  display: flex;
  align-items: center;
  font-family: "Roboto Condensed", serif;
  color: white;
  letter-spacing: 3px;
  font-weight: bold;
  margin-bottom: 1rem;
  text-transform: uppercase;
  width: 100%;
}
.head-element .circle {
  background-color: #8DB48E;
  width: 11px;
  height: 11px;
  border-radius: 100%;
  opacity: 50%;
  margin-right: 0.5rem;
}
.head-element .line {
  height: 1px;
  background-color: #CACACA;
  opacity: 50%;
  flex-grow: 1;
  margin-left: 1rem;
}
.head-element .line.dark {
  background-color: #0C120C;
}
.head-element.dark {
  color: black;
}

.menu1 {
  position: fixed;
  top: 0;
  right: 0;
  width: 220px;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: white;
  padding-top: 60px;
  z-index: 100000;
  transform: translateX(0);
  transition: transform 0.3s ease-in-out;
  font-family: "Roboto Condensed", serif;
}
.menu1 .phone-wrap {
  display: none;
  text-align: center;
  align-items: center;
  width: 100%;
  justify-content: space-between;
  padding: 0.2rem 0.5rem;
  box-sizing: border-box;
}
.menu1 ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.menu1 ul li {
  padding: 15px;
  border-bottom: 1px solid #444;
}
.menu1 ul li a {
  color: white;
  text-decoration: none;
}
.menu1 ul li a:hover {
  text-decoration: underline;
}
.menu1.hidden-ts {
  transform: translateX(100%);
}

.close-button {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.close-button:hover {
  transform: rotate(90deg);
}

@media screen and (max-width: 720px) {
  .menu .phone-wrap {
    display: flex;
  }
}
@font-face {
  font-family: "Roboto Condensed";
  src: url("fonts/RobotoCondensed-VariableFont_wght.woff2") format("woff2");
  font-weight: 300 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("fonts/RobotoCondensed-VariableFont_wght.woff2") format("woff2");
  font-weight: 300 800;
  font-style: normal;
  font-display: swap;
}/*# sourceMappingURL=style.css.map */