@charset "UTF-8";
/**
 * Author: Hans Dieter Feil 
 * @copyright (c) 2024 MobyNet All rights reserved
 * @license Proprietary
 */
/* ============================  base  =================================== */
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 1.2rem;
  background: var(--mo-dark1);
}
body {
  background-color: var(--mo-dark1) !important;
}
/* ============================  font  =================================== */
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../../webfonts/montserrat/fonts/webfonts/Montserrat-Medium.woff2"), format("woff2");
}
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../../webfonts/montserrat/fonts/webfonts/Montserrat-SemiBold.woff2"), format("woff2");
}

/* ============================  Color  =================================== */
:root {
  /* Light Color */
  --mo-blue: #0d6efd;
  --mo-indigo: #6610f2;
  --mo-purple: #6f42c1;
  --mo-pink: #d63384;
  --mo-red: #dc3545;
  --mo-orange: #fd7e14;
  --mo-yellow: #ffc107;
  --mo-green: #198754;
  --mo-teal: #20c997;
  --mo-cyan: #0dcaf0;
  --mo-black: #000;
  --mo-white: #fff;
  --mo-gray: #6c757d;
  --mo-gray-dark: #343a40;
  --mo-gray-100: #f8f9fa;
  --mo-gray-200: #e9ecef;
  --mo-gray-300: #dee2e6;
  --mo-gray-400: #ced4da;
  --mo-gray-500: #adb5bd;
  --mo-gray-600: #6c757d;
  --mo-gray-700: #495057;
  --mo-gray-800: #343a40;
  --mo-gray-900: #212529;
  --mo-primary: #0d6efd;
  --mo-secondary: #6c757d;
  --mo-success: #198754;
  --mo-info: #0dcaf0;
  --mo-warning: #ffc107;
  --mo-danger: #dc3545;
  --mo-light: #f8f9fa;
  --mo-dark: #212529;
  --mo-primary-text-emphasis: #052c65;
  --mo-secondary-text-emphasis: #2b2f32;
  --mo-success-text-emphasis: #0a3622;
  --mo-info-text-emphasis: #055160;
  --mo-warning-text-emphasis: #664d03;
  --mo-danger-text-emphasis: #58151c;
  --mo-light-text-emphasis: #495057;
  --mo-dark-text-emphasis: #495057;
  --mo-primary-bg-subtle: #cfe2ff;
  --mo-secondary-bg-subtle: #e2e3e5;
  --mo-success-bg-subtle: #d1e7dd;
  --mo-info-bg-subtle: #cff4fc;
  --mo-warning-bg-subtle: #fff3cd;
  --mo-danger-bg-subtle: #f8d7da;
  --mo-light-bg-subtle: #fcfcfd;
  --mo-dark-bg-subtle: #ced4da;
  --mo-primary-border-subtle: #9ec5fe;
  --mo-secondary-border-subtle: #c4c8cb;
  --mo-success-border-subtle: #a3cfbb;
  --mo-info-border-subtle: #9eeaf9;
  --mo-warning-border-subtle: #ffe69c;
  --mo-danger-border-subtle: #f1aeb5;
  --mo-light-border-subtle: #e9ecef;
  --mo-dark-border-subtle: #adb5bd;
  --mo-white-rgb: 255, 255, 255;
  --mo-black-rgb: 0, 0, 0;
  --mo-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
  --mo-body-color: #212529;
  --mo-body-bg: #fff;
  --mo-emphasis-color: #000;
  --mo-secondary-bg: #e9ecef;
  --mo-tertiary-bg: #f8f9fa;
  --mo-link-color: #0d6efd;
  --mo-code-color: #d63384;
  --mo-highlight-color: #212529;
  --mo-highlight-bg: #fff3cd;
  --mo-border-color: #dee2e6;
  --mo-border-color-translucent: rgba(0, 0, 0, 0.175);
  --mo-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  --mo-box-shadow-sm: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  --mo-box-shadow-lg: 0 1rem 3rem rgba(0, 0, 0, 0.175);
  --mo-box-shadow-inset: inset 0 1px 2px rgba(0, 0, 0, 0.075);
  /* Dark Color*/
  --mo-body-color: #dee2e6;
  --mo-body-bg: #212529;
  --mo-emphasis-color: #fff;
  --mo-secondary-color: rgba(222, 226, 230, 0.75);
  --mo-secondary-bg: #343a40;
  --mo-tertiary-bg: #2b3035;
  --mo-tertiary-color: rgba(222, 226, 230, 0.5);
  --mo-tertiary-color: #dee2e6;
  --mo-primary-text-emphasis: #6ea8fe;
  --mo-secondary-text-emphasis: #a7acb1;
  --mo-success-text-emphasis: #75b798;
  --mo-info-text-emphasis: #6edff6;
  --mo-warning-text-emphasis: #ffda6a;
  --mo-danger-text-emphasis: #ea868f;
  --mo-light-text-emphasis: #f8f9fa;
  --mo-dark-text-emphasis: #dee2e6;
  --mo-primary-bg-subtle: #031633;
  --mo-secondary-bg-subtle: #161719;
  --mo-success-bg-subtle: #051b11;
  --mo-info-bg-subtle: #032830;
  --mo-warning-bg-subtle: #332701;
  --mo-danger-bg-subtle: #2c0b0e;
  --mo-light-bg-subtle: #343a40;
  --mo-dark-bg-subtle: #1a1d20;
  --mo-primary-border-subtle: #084298;
  --mo-secondary-border-subtle: #41464b;
  --mo-success-border-subtle: #0f5132;
  --mo-info-border-subtle: #087990;
  --mo-warning-border-subtle: #997404;
  --mo-danger-border-subtle: #842029;
  --mo-light-border-subtle: #495057;
  --mo-dark-border-subtle: #343a40;
  --mo-link-color: #6ea8fe;
  --mo-link-hover-color: #8bb9fe;
  --mo-code-color: #e685b5;
  --mo-highlight-color: #dee2e6;
  --mo-highlight-bg: #664d03;
  --mo-border-color: #495057;
  --mo-border-color-translucent: rgba(255, 255, 255, 0.15);
  /* Dachdecker Farben */
  --mo-red-bg: #592202;
  --mo-dark1: #212529;
  --mo-dark2: #1b1f22;
  --mo-dark3: #2b3035;
  /* meine Webseite */
  --my-primary-bg: #404448;
  --my-secondary-bg: #6B8395;
  --my-light: #E2EDF3;
  --my-dark: #2D2927;
}



/* ============================  Bootstrap-icons =================================== */
@font-face {
  font-display: block;
  font-family: "bootstrap-icons";
  src: url("./bootstrap-icons/font/fonts/bootstrap-icons.woff2?24e3eb84d0bcaf83d77f904c78ac1f47") format("woff2"), url("./bootstrap-icons/font/fonts/bootstrap-icons.woff?24e3eb84d0bcaf83d77f904c78ac1f47") format("woff");
}
.bi::before,
[class^=bi-]::before,
[class*=" bi-"]::before {
  display: inline-block;
  font-family: "bootstrap-icons" !important;
  font-style: normal;
  font-weight: normal !important;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  vertical-align: -0.125em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.bi-list::before {
  content: "\f479";
}

.bi-house::before {
  content: "\f425";
}

.bi-person::before {
  content: "\f4e1";
}

.bi-briefcase::before {
  content: "\f1cc";
}

.bi-bank::before {
  content: "\f62e";
}

.bi-suit-heart::before {
  content: "\f59e";
}

.bi-bell::before {
  content: "\f18a";
}

.bi-check-square::before {
  content: "\f26d";
}

.bi-heart-fill::before {
  content: "\f415";
}

.bi-telephone::before {
  content: "\f5c1";
}

.bi-envelope::before {
  content: "\f32f";
}

.bi-globe::before {
  content: "\f3ee";
}

.bi-rocket-takeoff::before {
  content: "\f845";
}

.bi-x-lg::before {
  content: "\f659";
}

/* Anpassung der farben für die icons */
.bi-list {
  color: var(--mo-light);
  font-size: 1.3rem !important;
}

.bi-house {
  color: var(--mo-primary);
  font-size: 1rem !important;
  margin-right: 0.5rem;
}

.bi-person {
  color: var(--mo-primary);
  font-size: 1rem !important;
  margin-right: 0.5rem;
}

.bi-briefcase {
  color: var(--mo-primary);
  font-size: 1rem !important;
  margin-right: 0.5rem;
}

.bi-bank {
  color: var(--mo-primary);
  font-size: 1rem !important;
  margin-right: 0.5rem;
}

.bi-suit-heart {
  color: var(--mo-primary);
  margin-right: 0.5rem;
}

.bi-bell {
  color: var(--mo-primary);
  font-size: 1rem !important;
  margin-right: 0.5rem;
}

.bi-check-square {
  color: var(--mo-primary);
  font-size: 1rem !important;
}

.bi-heart-fill {
  color: var(--mo-primary);
  font-size: 1rem !important;
}

.bi-rocket-takeoff {
  color: var(--mo-primary);
  font-size: 1rem !important;
}

.bi-x-lg {
  color: var(--mo-light);
  font-size: 1rem !important;
}

.bi-telephone {
  color: var(--mo-primary);
  font-size: 1.5rem !important;
}

.bi-envelope {
  color: var(--mo-primary);
  font-size: 1.5rem !important;
}

.bi-globe {
  color: var(--mo-primary);
  font-size: 1.5rem !important;
}

/* ============================  navigation  =================================== */




/* ============================  header  =================================== */
.header {
  min-height: 100vh;
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url("images/banner1.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  text-align: center;
  color: #fff;
}

.heading-h1 {
  padding-top: 200px;
  padding-bottom: 0;
  font-size: 65px;
  color: #fff;
  font-family: "Montserrat";
  font-weight: 700;
}
.heading-h1 span {
  color: var(--mo-primary);
}

.heading-h3 {
  color: #fff;
  margin: 18px 0;
}

ul.breadcrumb {
  padding: 10px 50px;
  list-style: none;
  text-align: left;
  margin-top: 54px;
}

ul.breadcrumb li {
  display: inline;
  font-size: 16px;
}

/* Add a slash symbol (/) before/behind each list item */
ul.breadcrumb li + li:before {
  padding: 8px;
  color: rgb(255, 255, 255);
  content: "/ ";
}

ul.breadcrumb li a {
  color: #0c6efd;
  text-decoration: none;
}

ul.breadcrumb li a:hover {
  color: #fff;
  text-decoration: underline;
}

.phat-color {
  color: #fff;
}

.impressum {
  padding: 25px 50px;
  height: 100vh;
  line-height: 50px;
  color: #fff;
  font-size: 1.1rem;
  margin-top: 50px;
}

.impressum h2 {
  font-size: 2rem;
  color: #fff;
}

/* ======================== leistung boxen ============================================= */
#leistung {
  background: var(--mo-dark1);
  padding: 25px 25px;  
  text-align: center;
  font-size: 12px !important;
}
h4 {
  font-size: 20px !important;
  color: #ffffff80 !important;
  line-height: 25px;
}
.box {
  background-color: #1b1f22;
  text-align: center;
  padding: 20px;
  border-radius: 8px;
 
}
.box .bi {
  color: var(--mo-primary);
}
/* ============================  about =================================== */
#about {
  padding: 100px 50px;
}
#about h1 {
  font-size: 2rem;
}

@media screen and (max-width: 1049px) {
  #about {
    padding: 100px 50px;
  }
   .mobile {
      flex-direction: column;
    }
  .box-6-r {
    width: 100%;
    padding: 30px 10px;
  }
}
@media screen and (max-width: 700px) {
     .box-6-r {
      flex: 0 0 100%;
      width: 100%;
      flex-direction: column;
     }
}
.box-6-l {
  flex: 0 0 49%;
  line-height: 1.5rem;
}
.box-6-l h3 {
  color: #fff;
}

.about-content {
  margin-bottom: 3rem;
  color: rgba(222, 226, 230, 0.75);
}

.box-6-r {
  flex: 0 0 49%;
  background: var(--mo-dark3);
  padding-bottom: 50px;
}
.box-6-r h3 {
  color: #fff;
  padding: 13px;
}

.box-6-r p {
  color: #fff;
}

.progress {
  margin: 15px 0;
  background: var(--mo-dark2);
  margin: 0 10% auto;
}

.progress-bar {
  text-align: center;
  background: var(--mo-primary);
  color: #fff;
  border-radius: 30px;
  font-size: 0.75rem;
}

.button-flex {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
  margin-bottom: 2rem;
}

/* ============================  services =================================== */
#services {
  padding: 100px 50px 135px 50px;
  background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url("images/background2.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: #efefef !important;
}
#services h1 {
  text-align: center;
  color: #efefef !important;
  padding-bottom: 10px;
}

.services {
  margin-top: 40px;
}

.icon {
  font-size: 40px;
  margin: 20px auto;
  padding: 8px;
  height: 80px;
  width: 80px;
  border: 1px solid #fff;
  border-radius: 50%;
}

.icon i {
  margin: 0px;
  font-size: 40px !important;
  vertical-align: 0px;
}

#services {
  font-size: 14px;
  margin-top: 20px;
  color: #ccc;
}

.col-md-3 {
  width: 25%;
  line-height: 25px;
}


/* ============================  footer =================================== */
.box-bg {
  background: #2b3035;
  padding: 10px 20px;
}
.footer {
  padding: 100px 50px 12px 50px;
  background-image: linear-gradient(#1b1f22, #2b3035);
  color: #fff;
}

.footer-logo {
  width: 150px;
  margin-top: 15px;
  margin-bottom: 15px;
}
.footer hr {
  margin-top: 30px;
  background: rgba(255, 255, 255, 0.3137254902);
}

.footer .copyright {
  text-align: center;
  padding-top: 10px;
}

/* ============================  Title unterhalb der h1 =================================== */
.title {
  width: fit-content;
  color: #fff;
  text-align: center;
  margin: 0 auto 60px;
  padding: 0 10px 10px;
  border-bottom: 2px solid var(--mo-primary);
  position: relative;
}

.title::after {
  content: "";
  width: 40px;
  height: 8px;
  background: var(--mo-primary);
  position: absolute;
  left: 50%;
  bottom: -5px;
  transform: translateX(-50%);
  border-radius: 20px;
}

/* In verbindung mit h1 */
.section-title {
  width: fit-content;
  color: #000;
  text-align: center;
  margin: 0 auto 60px;
  position: relative;
}

.section-title::before {
  content: "";
  height: 4px;
  width: 50px;
  background-color: #f44336;
  position: absolute;
  top: 100%;
  left: 0;
}

.section-title::after {
  content: "";
  height: 4px;
  width: 25px;
  background-color: #f44336;
  top: 100%;
  left: 0;
  margin-top: 10px;
  position: absolute;
}
