/*  Author:   Martin Stettler (https://dieweberei.ch/)
    Version:  17/09/2025 // BS v5.0.2
*/

/* ==========================================================================
   STYLES
   ========================================================================== */

body {
    margin: 0;
    padding: 0;
    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #000;
    text-align: left;
    background-color: #fff;
}

p {
    margin-bottom: 20px;
}

strong {
    font-weight: 700;
}

a {
    color: #000;
}

a:hover {
    color: #9ab9ad;
}

a,
a:hover {
    text-decoration: none;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}

.main {
    padding: 25px 15px;
}

.logo img {
    width: 320px;
    height: auto;
    margin-bottom: 30px;
}

.info {
    padding-left: 63px;
}

 .img-mobile {
    display: inline-block;
}

.img-desktop {
    display: none;
}

@media screen and   (min-width: 768px) {

    .main {
        padding: 50px 3vw;
    }

    .logo img {
        width: 400px;
        height: auto;
        margin-bottom: 40px;
    }

    .info {
        padding-left: 80px;
    }
}

@media screen and (min-width: 1025px) {

   .img-mobile {
        display: none;
   }
   .img-desktop {
        display: inline-block;
   }
    
}