@font-face 
{
   src: url("../fonts/Montserrat/Montserrat-VariableFont_wght.ttf");
   font-family: Monsterrat;
}
@font-face {
    font-family: Monsterrat-Black;
    src: url("../fonts/Montserrat/static/Montserrat-Black.ttf");
}
@font-face 
{
    src: url("../fonts/Ubuntu/Ubuntu-Regular.ttf");
    font-family: Ubuntu;
}

/* Main Settings */
:root {
    --main-light-blue: #01acef;
    --main-dark-blue: #004689;
    --color-grey: #6c6e70;
    --mont-font: Monsterrat;
    --mont-font-b: Monsterrat-Black;
    --ubun-font: Ubuntu;
}

body
{
    font-family: var(--ubun-font);
}

.bg-color-lblue {
    background-color: var(--main-light-blue);
}

.bg-color-dblue
{
    background-color: var(--main-dark-blue);
}

.bg-color-grey
{
    background-color: var(--color-grey);
}

.color-lblue
{
    color: var(--main-light-blue);
}

.color-dblue
{
    color: var(--main-dark-blue);
}

.color-grey
{
    color: var(--color-grey);
}

.a-white
{
    color: white;
}



/* navbar */
.navbar
{
    margin-bottom: 4.5rem;
    background-color: #fff;
    border-radius: 10px;
}

.nav-logo
{
    height: 60px;
    border-radius: 5px;
    float: left;
}

.nav-item
{
    padding: 0 15px;
}

.span-nav
{
    padding-left: 5px;
}

.nav-link
{
    font-size: 1.2rem;
    font-family: var(--ubun-font);
    color: var(--main-light-blue);
}

.navbar-toggler
{
    margin-right: 5px;
    border: 0.5px solid var(--main-light-blue);
}

.navbar-toggler:active
{
    box-shadow: unset;
    border: 3px solid var(--main-light-blue);
}

.navbar-toggler:focus
{
    box-shadow: unset;
}

.navbar-toggler-icon
{
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(1, 172, 239, 1)'  stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Start Section */
.start-container
{
    padding: 3% 10% !important;
}

.start-headline
{
    font-size: 3rem;
    font-family: var(--mons-font-b);
    line-height: 1.5;
    font-weight: 700;
    margin-bottom: 25px;
}

.start-p
{
    font-size: 1.3rem;
    /* text-align: justify; */
}

.koe-image
{
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 0 5px #fff;
}

/* Dienstleistung */

.dienst-container
{
    padding: 3% 25% !important;
}

.dienst-headerline
{
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--main-dark-blue);
    line-height: 1.5;
    padding-bottom: 8%;
}

.dienst-div
{
    margin-bottom: 10%;
}

.head-dienst-div
{
    font-size: 2rem;
    font-weight: 600;
    color: var(--main-dark-blue);
    line-height: 1.2;
    padding-bottom: 1%;
}

.dienst-icon
{
    width: 25%;
    float: left;
    margin-right: 5%;
}

.dienst-icon-right
{
    width: 25%;
    float: right;
    margin-left: 5%;
}

.text-kontakt
{
    font-size: 1.2rem;
}

/* Kontakt */
.kontakt-card
{
    padding: 5% 0;
}
.kontakt-icon
{
    width: 25%;
    margin-bottom: 5%;
}

/* Vorher Nachher Bild */
.v-n-img
{
    border-radius: 50px;
    width: 60%;
    margin: 3% 5%;
}

.btn-img
{
    height: 12vh;
}

.btn-smartphone
{
    background-color: #004689;
}

@media(max-width:800px){
    /* start section */
    .start-container
    {
        padding: 3% 3% !important;
    }

    .start-headline
    {
        font-size: 2rem;
    }

    /* dienst Section */

    .dienst-container
    {
        padding: 5% 3% !important;
    }
    .dienst-headerline
    {
        font-size: 2rem;
    }

    .head-dienst-div
    {
        font-size: 1.5rem;
    }

    /* Image Section */
    .v-n-img
    {
        width: 90vw;
        margin: 3% 0 10% 0;
        border-radius: 10px;
    }
    .btn-img
    {
        display: none;
    }

    .btn-div
    {
        display: flex !important;
    }

}


#info-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--main-dark-blue);
  color: white;
  text-align: center;
  padding: 15px 10px;
  font-size: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 9999;
}

#info-banner p {
  margin: 0;
  flex: 1;
  padding-right: 10px;
}

#info-banner button {
  background: var(--main-light-blue);
  color: #fff;
  border: none;
  border-radius: 5px;
  padding: 8px 15px;
  cursor: pointer;
  font-size: 1rem;
}

#info-banner button:hover {
  background: #029cd5;
}