* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Merriweather Sans', sans-serif;
    scroll-behavior: smooth;
    list-style: none;
    text-decoration: none;
}

:root {
    --main-color:#08232C;
    --text-color:#fff;
    --bg-color:#1e1c2a;
    --btn-color:#E64646;
    --big-font:5rem;
    --h2-font:2.25rem;
    --p-font:0.9rem;
}

*::selection {
    background: var(--main-color);
    color: #fff;
}

::-webkit-scrollbar {
    width: 14px;
  }
  
::-webkit-scrollbar-track {
    background-color: #e4e4e4;
    border-radius: 80px;
  }
  
::-webkit-scrollbar-thumb {
    background-color: #08232C;
    border-radius: 80px;
  }



body {
    background-color: #00B9C5;
    color: var(--text-color);
    min-height: 100vh;
}

header {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 170px;
}

.container{
    position: relative;
    width: 100%;
    height: 100vh;
}
.bubbles{
    position: relative;
    display: flex;
}
.bubbles span{
    position: relative;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.349);
    margin: 0 4px;
    border-radius: 50%;
    animation: animate 25s linear infinite;
    animation-duration: calc(180s / var(--i));
}
@keyframes animate{
    0%
    {transform: translateY(100vh) scale(0);}
    100%
    {transform: translateY(-10vh) scale(1);}
}

.home-logo img{
    max-width: 100%;
    width: 90px;
    height: auto;
}
.logo{
    color: var(--btn-color);
    font-weight: 700;
    font-size: 2.4rem;
    padding-right: 70vh;
}
.navbar{
    display: flex;
}
.navbar a{
    color: var(--text-color);
    font-size: 1.1rem;
    padding: 10px 20px;
    font-weight: 500;
}
.navbar a:hover{
    color: var(--main-color);
    transition: .4s;
}
#menu-icon{
    font-size: 2rem;
    cursor: pointer;
    display: none;
}
section{
    padding: 70px 17%;
}


.home{
    width: 100%;
    min-height: 90vh;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 1.5rem;
    align-items: center;
}
.home-img img{
    max-width: 100%;
    width: 1000px;
    height: auto;
}
.home-text h1{
    font-size: var(--big-font);
    color: var(--main-color);
}
.home-text h2{
    font-size: 1.7rem;
    color: var(--text-color);
    margin: 1rem 0 2rem;
}
.btn{
    display: inline-block;
    padding: 10px 20px;
    background: var(--bg-color);
    color: var(--text-color);
    border-radius: 0.5rem;
}
.btn:hover{
    transform: scale(1.2) translateY(10px);
    transition: .4s;
    background: var(--btn-color);
}


.lsmd{
    background-color: #08232C;
    width: 100%;
    min-height: 90vh;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 1.5rem;
    align-items: center;
}

.bw{
    background-color: #0091C6;
    min-height: 130vh;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 1.5rem;
    align-items: center;
    position: relative;
}
#particles-js{
    width: 100%;
    height: 100vh;
    padding-left: 120px;
    display: flex;
}
.bw img{
    width: 580px;
    height: 580px;
    object-fit: cover;
    margin-left: 20vh;
    margin-top: -40vh;
    position: absolute;
}
.bw-text{
    width: 130%;
    font-size: 1.5rem;
    margin-left: -60vh;
    margin-top: -40vh;
    float: left;
    font-family: 'Merriweather Sans', sans-serif;
}
.bw-text h1{
    color: var(--bg-color);
    font-size: var(--big-font);
    margin-bottom: 1.9rem;
}
.bw-text h2{
    color: var(--btn-color);
    font-size: var(--h2-font);
    margin-bottom: 0.7rem;
}
.bw .bw-footer-text{
    width: 90vh;
    font-size: 1.5rem;
    margin-top: 15.5%;
    margin-left: 20vh;
    float: left;
    position: absolute;
    font-family: 'Merriweather Sans', sans-serif;
}
.bw .bw-footer-text h3{
    color: var(--bg-color);
    font-size: var(--h2-font);
    margin-bottom: 0.3rem;
}
.bw .bw-footer-text-2{
    width: 90vh;
    font-size: 1.5rem;
    margin-top: 18%;
    margin-left: 96vh;
    float: left;
    position: absolute;
    font-family: 'Merriweather Sans', sans-serif;
}
.bw .bw-footer-text-2 h3{
    color: var(--btn-color);
    font-size: var(--h2-font);
    margin-bottom: 0.3rem;
}
.bw-form{
    width: 100vh;
    height: 25vh;
    margin-top: 48%;
    margin-left: 36vh;
    border-radius: 1rem;
    position: absolute;
    background-color: #2c2c2ca1;
    box-shadow: 0.8px 0.8px 5px 2px #2c2c2c;
}
.bw-form input{
    background-color: #2c2c2c7c;
    margin: 2vh 2.2vh auto;
    border-radius: 0.3rem;
    position: relative;
    border: none;
    box-sizing: border-box;
    width: 25vh;
    height: 3vh;
    box-shadow: 0.4px 0.4px 1px 1px #2c2c2c inset;
    color: var(--text-color);
    text-indent: 1rem;
}
.bw-form textarea{
    background-color: #2c2c2c7c;
    margin: 2vh 2.2vh auto;
    border-radius: 0.3rem;
    position: relative;
    border: none;
    box-sizing: border-box;
    width: 95vh;
    height: 15vh;
    box-shadow: 0.4px 0.4px 1px 1px #2c2c2c inset;
    color: var(--text-color);
    text-indent: 1rem;
    resize: none;
}
.bw-form button{
    display: inline-block;
    padding: 10px 39px;
    background: var(--bg-color);
    opacity: 70%;
    color: var(--text-color);
    border: none;
    border-radius: 0.5rem;
}
.bw-form button:hover{
    transform: scale(1.0) translateY(2px);
    transition: .4s;
    opacity: 70%;
    background: var(--btn-color);
}

.standort{
    background-color: #384950;
    width: 100%;
    min-height: 90vh;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 1.5rem;
    align-items: center;
}
.standort .standort-img img{
    display: flex;
    position: relative;
    left: 100px;
    width: 90%;
    transform: translateY(calc(100% -108px));
    transition: 250ms ease-in-out;
}
.standort .standort-img img:hover{
    transform: scale(1.2)
}
.standort-text h1{
    font-size: var(--big-font);
    color: var(--main-color);
}
.standort-text h2{
    font-size: 1.7rem;
    color: var(--btn-color);
    margin: 1rem 0 2rem;
}
.standort-text h3{
    font-size: 1.5rem;
    color: var(--text-color);
    margin: 1rem 0 2rem;
}
.standort-text h4{
    font-size: 1.1rem;
    color: var(--bg-color);
    margin: 1rem 0 2rem;
}


.kontakte{
    background-color: #2c2c2c;
    min-height: 15vh;
    align-items: center;
}
.footer{
    padding: 10px 0;
}
.main{
    display: flex;
    width: 100vh;
}
.col{
    width: 25%;
}
.col h4{
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 25px;
    position: relative;
}
.col h4::before{
    content: "";
    position: absolute;
    height: 2px;
    width: 50px;
    left: 0;
    bottom: -8px;
    background: var(--main-color);
}
.col ul li{
    margin-bottom: 15px;
}
.col ul li a{
    color: #141414;
    font-size: 1.1rem;
    display: block;
    text-transform: capitalize;
    transition: .4s;
}
.col ul li a:hover{
    color: var(--text-color);
}
