@charset "UTF-8";
@font-face {
  font-family: "Roboto Condensed";
  src: url("./assets/fonts/RobotoCondensed-Bold.woff2") format("woff2");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto Condensed";
  src: url("./assets/fonts/RobotoCondensed-Regular.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  src: url("./assets/fonts/roboto-v47-latin-regular.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
@font-face {
  font-family: "fontello";
  src: url("./assets/fonts/fontello.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
}
/* Chrome hack: SVG is rendered more smooth in Windozze. 100% magic, uncomment if you need it. */
/* Note, that will break hinting! In other OS-es font will be not as sharp as it could be */
/*
@media screen and (-webkit-min-device-pixel-ratio:0) {
  @font-face {
    font-family: 'fontello';
    src: url('../font/fontello.svg?45104588#fontello') format('svg');
  }
}
*/
[class^=icon-]:before, [class*=" icon-"]:before {
  font-family: "fontello";
  font-style: normal;
  font-weight: normal;
  speak: never;
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  margin-right: 0.2em;
  text-align: center;
  /* opacity: .8; */
  /* For safety - reset parent styles, that can break glyph codes*/
  font-variant: normal;
  text-transform: none;
  /* fix buttons height, for twitter bootstrap */
  line-height: 1em;
  /* Animation center compensation - margins should be symmetric */
  /* remove if not needed */
  margin-left: 0.2em;
  /* you can be more comfortable with increased icons size */
  /* font-size: 120%; */
  /* Font smoothing. That was taken from TWBS */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* Uncomment for 3D effect */
  /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
}

.icon-phone:before {
  content: "\e800";
} /* '' */
.icon-phone-circled:before {
  content: "\e801";
} /* '' */
.icon-phone-1:before {
  content: "\e802";
} /* '' */
.icon-heart:before {
  content: "\e803";
} /* '' */
.icon-heart-empty:before {
  content: "\e804";
} /* '' */
.icon-star:before {
  content: "\e805";
} /* '' */
.icon-star-empty:before {
  content: "\e806";
} /* '' */
.icon-search:before {
  content: "\e807";
} /* '' */
.icon-mail:before {
  content: "\e808";
} /* '' */
.icon-cog:before {
  content: "\e809";
} /* '' */
.icon-resize-full:before {
  content: "\e80a";
} /* '' */
.icon-cancel:before {
  content: "\e80b";
} /* '' */
.icon-lightbulb:before {
  content: "\e80c";
} /* '' */
.icon-cancel-1:before {
  content: "\e80d";
} /* '' */
.icon-ok:before {
  content: "\e80e";
} /* '' */
.icon-lock:before {
  content: "\e80f";
} /* '' */
.icon-lock-open:before {
  content: "\e810";
} /* '' */
.icon-heart-empty-1:before {
  content: "\e811";
} /* '' */
.icon-heart-1:before {
  content: "\e812";
} /* '' */
.icon-chat:before {
  content: "\f03d";
} /* '' */
.icon-resize-full-alt:before {
  content: "\f0b2";
} /* '' */
.icon-mail-alt:before {
  content: "\f0e0";
} /* '' */
.icon-star-half-alt:before {
  content: "\f123";
} /* '' */
.icon-sliders:before {
  content: "\f1de";
} /* '' */
.icon-comment:before {
  content: "\f4ac";
} /* '' */
.header-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  height: 5rem;
  position: fixed;
  z-index: 1000;
  transition: background-color 0.3s ease-in-out, -webkit-backdrop-filter 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out, backdrop-filter 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out, backdrop-filter 0.3s ease-in-out, -webkit-backdrop-filter 0.3s ease-in-out;
  background-color: rgba(0, 0, 0, 0.001);
}
.header-wrap.scrolled {
  background-color: rgba(0, 0, 0, 0.5);
  -webkit-backdrop-filter: blur(50px);
          backdrop-filter: blur(50px);
}

header {
  max-width: 1920px;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  padding: 0.5rem 4rem;
  align-items: center;
  font-family: "Roboto Condensed", sans-serif;
  height: 5rem;
  z-index: 500;
  position: fixed;
}
header a {
  width: -moz-fit-content;
  width: fit-content;
}
header.blur {
  background: rgba(81, 81, 81, 0.315); /* Transparenter Hintergrund */
  backdrop-filter: blur(50px); /* Blur-Effekt */
  -webkit-backdrop-filter: blur(10px);
}
header.light {
  background-color: #f1f1f1;
}
header.dark {
  background-color: #131313;
}
header.transparent {
  background-color: transparent;
}
header .logo.txt {
  margin: 0;
  text-decoration: none;
  color: #101010;
  font-size: 1.6rem;
  font-weight: bold;
  letter-spacing: 2.5px;
}
header .logo.txt span {
  color: #3b8beb;
}
header .logo.txt.txt-light {
  color: #e4e4e4;
}
header #phone-number {
  transition: transform 0.3s ease;
}
header .phone-shift-left {
  transform: translateX(-120px);
}
header .contact {
  display: flex;
  margin-left: auto;
  margin-right: 2rem;
  align-items: center;
  margin-top: 0;
}
header .contact .phone-wrap {
  display: flex;
  align-items: center;
}
header .contact .phone-wrap .number {
  display: flex;
  background-color: #131313;
  height: 28px;
  align-items: center;
  box-sizing: border-box;
  padding: 0.25rem 1rem;
  border-radius: 0px 50px 50px 0px;
}
header .contact .phone-wrap .phone {
  background-color: #b23850;
  height: 28px;
  width: 40px;
  border-radius: 50px 0px 0px 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}
header .contact .phone-wrap .phone i {
  font-family: "fontello";
  color: #060e17;
}
header .contact .phone-wrap .phone i.bg-light {
  color: #f1f1f1;
}
header .contact p {
  color: #101010;
  letter-spacing: 1.5px;
  margin: 0;
  background-color: transparent;
  border-radius: none;
  height: auto;
}
header .contact p.txt-light {
  color: #e4e4e4;
  padding: 0;
}
header .contact .spacer {
  margin-left: 1rem;
  height: 18px;
  width: 2px;
  background-color: #b23850;
  opacity: 75%;
}
header .contact.transparent {
  background-color: transparent;
}
header .contact.hidden {
  display: none;
}
header .menu-bttn {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 2.3rem;
  height: 1.5rem;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  z-index: 1000;
}
header .menu-bttn span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: #060e17;
  border-radius: 2px;
  transition: 0.3s ease-in-out;
  backface-visibility: hidden;
}
header .menu-bttn span.light {
  background-color: #e4e4e4;
}
header .menu-bttn.ml-a {
  margin-left: auto;
}
header .menu-bttn:hover {
  animation: shake 0.4s ease-in-out;
}

@keyframes shake {
  0% {
    transform: translateX(0);
  }
  20% {
    transform: translateX(-3px);
  }
  40% {
    transform: translateX(3px);
  }
  60% {
    transform: translateX(-2px);
  }
  80% {
    transform: translateX(2px);
  }
  100% {
    transform: translateX(0);
  }
}
@media screen and (max-width: 720px) {
  .header-wrap {
    height: 3.5rem;
  }
  header {
    padding: 0.5rem 1rem;
    height: 3.5rem;
  }
  header .contact {
    display: none;
  }
  header .menu-bttn {
    margin-left: auto;
    margin-top: 3px;
  }
}
.hero {
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-blend-mode: multiply;
  background-position: center;
  height: 100vh;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  z-index: 0;
}
.hero::before {
  content: "";
  position: absolute;
  top: -30px;
  right: -30px;
  bottom: -30px;
  left: -30px;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0)), url(../../media/hero-img.jpg);
  background-size: cover;
  background-position: center;
  filter: blur(14px);
  z-index: -1;
}
.hero.bg-light::before {
  background-image: none;
  background-color: #f1f1f1;
}
.hero.h-80 {
  height: 80vh;
}
.hero .hero-content-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
}
.hero .hero-content {
  max-width: 1920px;
  display: flex;
  width: 100%;
  box-sizing: border-box;
  padding: 1rem 4rem;
  margin-top: 2.5rem;
  align-items: center;
}
.hero .hero-content .hero-text {
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  max-width: 1000px;
  margin-right: 5rem;
}
.hero .hero-content .hero-text h1 {
  color: #e4e4e4;
  font-family: "Roboto Condensed", sans-serif;
  letter-spacing: 2px;
  margin-top: 0;
}
.hero .hero-content .hero-text h1 span {
  text-decoration: underline;
}
.hero .hero-content .hero-text h1.dark {
  color: #101010;
}
.hero .hero-content .hero-text p {
  line-height: 28px;
  color: #e4e4e4;
  opacity: 100%;
  letter-spacing: 2px;
  font-family: "Roboto", sans-serif;
  margin-bottom: 0;
  margin-top: 0;
}
.hero .hero-content .hero-text p.dark {
  color: #101010;
}
.hero .hero-content .hero-text.ta-c {
  text-align: center;
  align-items: center;
}
.hero .hero-content img {
  width: 30vw;
  border-radius: 15px;
  margin-left: 2rem;
  max-width: 580px;
  margin-left: auto;
  box-shadow: rgba(0, 0, 0, 0.09) 0px 2px 1px, rgba(0, 0, 0, 0.09) 0px 4px 2px, rgba(0, 0, 0, 0.09) 0px 8px 4px, rgba(0, 0, 0, 0.09) 0px 16px 8px, rgba(0, 0, 0, 0.09) 0px 32px 16px;
}
.hero .hero-content img.hidden {
  display: none;
}
.hero .hero-content.black-back {
  background-color: rgba(17, 17, 17, 0.15);
}
.hero .hero-content.jf-c-c {
  justify-content: center;
}

@media screen and (max-width: 720px) {
  .hero {
    height: 100vh !important;
  }
  .hero .hero-content {
    padding: 0.5rem 1rem;
  }
  .hero .hero-content .hero-text {
    margin-right: 0;
  }
}
@media screen and (max-width: 1200px) {
  .hero .hero-content img {
    display: none;
  }
}
.bttn-container {
  width: 50%;
  display: flex;
  box-sizing: border-box;
  gap: 1rem;
}
.bttn-container a {
  text-decoration: none;
  font-family: "Roboto Condensed", sans-serif;
  color: #e4e4e4;
  padding: 0.5rem 2rem;
  flex: 1;
  border-radius: 6px;
  letter-spacing: 1.5px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
}
.bttn-container a.dark {
  color: #101010;
}
.bttn-container a.cl-white {
  color: rgb(255, 255, 255);
}
.bttn-container a.cl-black {
  color: rgb(0, 0, 0);
}
.bttn-container a.primary {
  background: linear-gradient(to right, #3b8beb, #62a2ef);
}
.bttn-container a.secondary {
  border: 2px solid #3b8beb;
}
.bttn-container a.half {
  max-width: 50%;
}
.bttn-container a.primary-second {
  background-color: #b23850;
}
.bttn-container a.hv-op-70:hover {
  opacity: 70%;
}
.bttn-container a.hv-fill-prim:hover {
  background-color: #3b8beb;
}
.bttn-container a.hv-transparent:hover {
  background: transparent;
}
.bttn-container.mt-1-5 {
  margin-top: 1.5rem;
}
.bttn-container.full {
  width: 100%;
}
.bttn-container.mt-a {
  margin-top: auto;
}

@media screen and (max-width: 720px) {
  .bttn-container {
    box-sizing: border-box;
    width: 100%;
    flex-direction: column;
  }
  .bttn-container a {
    width: 100%;
    box-sizing: border-box;
  }
}
.banner {
  width: 100%;
  box-sizing: border-box;
  height: 3rem;
  background-color: #131313;
  display: flex;
  justify-content: center;
  align-items: center;
}
.banner .five-stars i {
  color: #b23850;
}

.scroll-wrapper {
  display: flex;
  justify-content: center;
  width: 100%;
}

.scroll-section {
  width: 100%;
  background-color: #131313;
  height: 250px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.scroll-content {
  display: flex;
  width: -moz-max-content;
  width: max-content;
  height: 100%;
  transition: transform 0.2s ease-out;
}

.scroll-content img {
  width: 300px;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}

.section-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
}
.section-wrap.dark {
  background-color: #131313;
}
.section-wrap.light {
  background-color: #f1f1f1;
}
.section-wrap.mt-2 {
  margin-top: 2rem;
}
.section-wrap .section {
  box-sizing: border-box;
  width: 100%;
  padding: 0.5rem 4rem;
}
.section-wrap .section.mw-1920 {
  max-width: 1920px;
}
.section-wrap .section.mw-1600 {
  max-width: 1600px;
}
.section-wrap .section.dark {
  background-color: #131313;
}
.section-wrap .section.light {
  background-color: #f1f1f1;
}
.section-wrap .section.mt-1 {
  margin-top: 1rem;
}
.section-wrap .section.mt-2 {
  margin-top: 2rem;
}
.section-wrap .section.mt-4 {
  margin-top: 4rem;
}
.section-wrap .section.pd-tb-2 {
  padding: 2rem 0rem 2rem 0rem;
}
.section-wrap .section.pd-b-4 {
  padding-bottom: 3rem;
}
.section-wrap .section.pd-t-3 {
  padding-top: 3rem;
}

@media screen and (max-width: 720px) {
  .section-wrap .section {
    padding: 0.5rem 1rem;
  }
}
.head-element {
  display: flex;
  align-items: center;
  font-family: "Roboto Condensed", sans-serif;
}
.head-element .circle {
  width: 12px;
  height: 12px;
  background-color: #b23850;
  opacity: 30%;
  margin-right: 0.5rem;
  border-radius: 50px;
}
.head-element .circle.hidden {
  display: none;
}
.head-element h2 {
  letter-spacing: 2.5px;
  text-transform: uppercase;
}
.head-element h2.light {
  color: rgb(238, 238, 238);
}
.head-element .line {
  height: 2px;
  opacity: 15%;
  background-color: rgb(63, 63, 63);
  margin-left: 1rem;
  flex-grow: 1;
}
.head-element .line.light {
  background-color: rgb(216, 216, 216);
}

.card-container {
  display: flex;
  gap: 2rem;
}
.card-container.cl {
  flex-direction: column;
}
.card-container.mt-1 {
  margin-top: 1rem;
}
.card-container.mt-2 {
  margin-top: 2rem;
}
.card-container .card {
  display: flex;
  box-sizing: border-box;
  padding: 2rem 3rem;
  flex-direction: column;
  position: relative;
  transition: transform 0.3s ease;
}
.card-container .card.w-100 {
  width: 100%;
}
.card-container .card.ds {
  box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
}
.card-container .card.br-12 {
  border-radius: 12px;
}
.card-container .card.fl-1 {
  flex: 1;
}
.card-container .card.hover-up:hover {
  transform: translateY(-10px);
}
.card-container .card.hover-right:hover {
  transform: translateX(10px);
}
.card-container .card .head {
  font-family: "Roboto Condensed", sans-serif;
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  width: 100%;
  box-sizing: border-box;
}
.card-container .card .head h3 {
  margin: 0;
}
.card-container .card .head i {
  margin-left: auto;
  color: #b23850;
}
.card-container .card p {
  font-family: "Roboto", sans-serif;
  letter-spacing: 1.5px;
  line-height: 26px;
}
.card-container .card .prefix {
  font-family: "Roboto Condensed", sans-serif;
  position: absolute;
  background-color: #3b8beb;
  left: -0.5rem;
  top: -0.7rem;
  color: #e4e4e4;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50px;
}
.card-container .card .prefix h3 {
  margin: 0;
}

@media screen and (max-width: 720px) {
  .card-container {
    flex-direction: column;
  }
}
.img-txt {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
}
.img-txt.reverse {
  flex-direction: row-reverse;
}
.img-txt.mt-3 {
  margin-top: 3rem;
}
.img-txt.mt-5 {
  margin-top: 5rem;
}
.img-txt img {
  max-width: 500px;
  min-width: 500px;
  border-radius: 12px;
  width: 40%;
  height: 18rem;
}
.img-txt .txt {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.img-txt .txt .tag {
  padding: 0.25rem 2rem;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
  width: -moz-max-content;
  width: max-content;
  border-radius: 50px;
  display: flex;
  align-items: center;
}
.img-txt .txt .tag .circle {
  width: 5px;
  height: 5px;
  margin-right: 0.5rem;
  border-radius: 50%;
}
.img-txt .txt .tag .circle.prim {
  background-color: #3b8beb;
}
.img-txt .txt .tag .circle.second {
  background-color: #b23850;
}
.img-txt .txt .tag p {
  margin: 0;
}
.img-txt .txt p {
  font-family: "Roboto", sans-serif;
  line-height: 26px;
  letter-spacing: 2px;
  margin: 0;
}
.img-txt .txt h2 {
  margin: 0;
  font-family: "Roboto Condensed", sans-serif;
  letter-spacing: 2px;
}

@media screen and (max-width: 1140px) {
  .img-txt {
    flex-direction: column;
    align-items: baseline;
    margin-top: 1rem !important;
    gap: 1rem;
  }
  .img-txt.mt-5 {
    margin-top: 3rem !important;
  }
  .img-txt.reverse {
    flex-direction: column;
  }
  .img-txt img {
    max-width: 100%;
    min-width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.left-right-container {
  display: flex;
  justify-content: space-between;
  font-family: "Roboto", sans-serif;
  line-height: 24px;
  letter-spacing: 2px;
}
@media screen and (max-width: 1250px) {
  .left-right-container.bp-1250 {
    flex-direction: column;
  }
  .left-right-container.bp-1250 .left {
    width: 100%;
  }
  .left-right-container.bp-1250 .right {
    width: 100%;
  }
}
@media screen and (max-width: 1250px) {
  .left-right-container.bp-600 {
    flex-direction: column;
    gap: 1rem;
  }
}
.left-right-container.al-c {
  align-items: center;
}
.left-right-container.gap-2 {
  gap: 2rem;
}
.left-right-container.gap-4 {
  gap: 4rem;
}
.left-right-container.txt-sec {
  color: #e4e4e4;
}
.left-right-container .left {
  width: 50%;
}
.left-right-container .left.dr-c {
  flex-direction: column;
}
.left-right-container .right {
  width: 50%;
  display: flex;
  justify-content: end;
}
.left-right-container .right.jc-c {
  justify-content: center;
}
.left-right-container .right.jc-s {
  justify-content: start;
}
.left-right-container .right.dr-c {
  flex-direction: column;
}

.contact-form {
  display: flex;
  flex-direction: column;
}
.contact-form .head {
  display: flex;
  flex-direction: column;
  margin-bottom: -0.01px;
  justify-content: space-between;
  height: 100%;
  width: 90%;
}
.contact-form.pd-1 {
  padding: 1rem;
}
.contact-form h3 {
  margin: 0;
  color: rgb(41, 41, 41);
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
}
.contact-form h3 span {
  color: #b23850;
}
.contact-form h3 .line {
  height: 2px;
  flex-grow: 1;
  background-color: rgb(34, 34, 34);
  opacity: 50%;
  margin: 0px 0px 0px 1rem;
}
.contact-form .element {
  display: flex;
  flex-direction: column;
}
.contact-form .element input {
  padding: 1rem 2rem;
  border-radius: 8px;
  border: none;
  font-family: "Roboto", sans-serif;
  font-size: 0.9rem;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 2px 0px;
}
.contact-form .element input.left-none {
  border-left: 0;
}
.contact-form .element input:focus {
  outline: none;
  box-shadow: none;
}
.contact-form textarea {
  resize: none;
  padding: 1rem 2rem;
  border: 0;
  margin-top: -0.5px;
  display: flex;
  flex: 1;
  border-radius: 8px;
  font-family: "Roboto", sans-serif;
  font-size: 0.9rem;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 2px 0px;
}
.contact-form textarea:focus {
  outline: none;
  box-shadow: none;
}
.contact-form .bttn {
  padding: 1rem 2rem;
  margin-top: 1rem;
  background-color: #3b8beb;
  color: white;
  border: none;
  letter-spacing: 2px;
  border-radius: 8px;
  font-size: 0.9rem;
}
.contact-form .bttn.sec {
  background-color: #b23850;
}
.contact-form .bttn:hover {
  cursor: pointer;
  opacity: 70%;
}

@media screen and (max-width: 1250px) {
  .head {
    gap: 1rem;
    width: 100% !important;
    box-sizing: border-box;
  }
  .head input {
    width: 100%;
    box-sizing: border-box;
  }
}
footer {
  background-color: #131313;
  display: flex;
  flex-direction: column;
  padding: 0.5rem 4rem;
}
@media screen and (max-width: 1250px) {
  footer.bp-1250 .multi-row {
    flex-direction: column;
  }
  footer.bp-1250 .multi-row .row {
    max-width: 100%;
  }
  footer.bp-1250 .multi-row .row.center {
    text-align: left;
    align-items: start;
  }
  footer.bp-1250 .multi-row .row.right {
    text-align: left;
    align-items: start;
  }
  footer.bp-1250 p {
    margin-top: 2rem;
  }
}
footer .multi-row {
  display: flex;
  justify-content: space-between;
  width: 100%;
  gap: 1.5rem;
}
footer .multi-row .row {
  display: flex;
  flex-direction: column;
  color: #e4e4e4;
  font-family: "Roboto Condensed", sans-serif;
  flex-grow: 1;
  max-width: 33.33%;
}
footer .multi-row .row nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
footer .multi-row .row nav a {
  color: #e4e4e4;
  opacity: 70%;
  text-decoration: none;
  transition: opacity 0.2s;
}
footer .multi-row .row nav a:hover {
  opacity: 100%;
}
footer .multi-row .row.center {
  text-align: center;
  align-items: center;
}
footer .multi-row .row.right {
  text-align: right;
  align-items: end;
}
footer h4 {
  margin-bottom: 0.5rem;
}
footer p {
  color: white;
  opacity: 50%;
  font-family: "Roboto", sans-serif;
  font-size: 0.8rem;
  letter-spacing: 1px;
}
@media screen and (max-width: 720px) {
  footer {
    padding: 0.5rem 1rem;
  }
}

body {
  font-family: sans-serif;
  margin: 0;
  padding: 0;
}

.menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 220px;
  height: 100vh;
  background-color: #333;
  color: white;
  padding-top: 60px;
  z-index: 100000;
  transform: translateX(0);
  transition: transform 0.3s ease-in-out;
}
.menu .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;
}
.menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.menu ul li {
  padding: 15px;
  border-bottom: 1px solid #444;
}
.menu ul li a {
  color: white;
  text-decoration: none;
}
.menu ul li a:hover {
  text-decoration: underline;
}
.menu.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;
  }
}
body {
  margin: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
}
body.light {
  background-color: #f1f1f1;
}
body.dark {
  background-color: #131313;
}

html {
  scroll-behavior: smooth;
}

.main {
  flex: 1;
}

.hidden {
  display: none;
}

.vt-line {
  width: 3px;
  height: 1rem;
  background-color: #3b8beb;
}
.vt-line.m-r-05 {
  margin-right: 0.5rem;
}
.vt-line.op-50 {
  opacity: 50%;
}/*# sourceMappingURL=main.css.map */