 * {
    margin: 0;
    padding: 0;
    position: relative;
}
/*
*:empty {
    display: none;
}
*/


@font-face {
    font-family: "Arial";
    src: url(../fonts/asmArial.woff) format("woff2"), url(../fonts/asmArial.woff) format("woff");
    font-weight: 300;
    font-style: normal;
    font-display: swap
}

:root {
    font-size: 16px;
  /*  line-height: 20.8px;*/
    line-height: 150%;
    font-family: "Arial";

    --blue: rgb( 2, 50, 118 );
}

body {
    background-color: #fff;
}

#wrapper {
    max-width: 900px;
    margin: auto;
    padding: 25px 40px;
    border: solid 1px #387aae;
}

header {
    display: flex;
    min-height: 120px;
}

header a {
    line-height: 1px;
	background-image: none;
}

header .mobile {
    display: none;
}

header a img {
   /* width: 340px; */
   width: 360px;
    margin-left: 3px;
    margin-top: 10px;
}
header a:nth-of-type(2) img {
    width:350px;
    margin-top:29px;
    margin-left:-15px;
    position:relative;
}
/* header #adler {
    position:absolute;

} */
header svg {
    position: absolute;
    float: right;
    margin-top: 34px;
    margin-right: 40px;
    width: 84px;
    right: 0;
}

.adler {
	fill: rgb(198, 198, 198);
}

#extraLogoCl {
    width: 290px;
    margin-top: 36.5px;
}

main {
    margin-top: 40px;
    margin-left: 40px;
    margin-right: 40px;
}

main section {
    margin-bottom: 34px;
}

main p {
    margin-bottom: 15px;
    text-align: left;
}

main a {
    text-decoration: none;
    color: inherit;
    color: var(--blue);
}

main strong {
    color: var(--blue);
}


main #modalities {
    display: flex;
   
}
main #modalities div {
    width: 50%;
}

main #title  h1 {
    font-size: 30px;
    line-height: 150%;
    color: var(--blue);
    margin-top: 26px;
    margin-bottom: 26px;
    text-align: left;
    font-weight: normal;
}

main div h2 {
    margin-top: 34px;
}

main h2 {
    color: var(--blue);
    font-size: 20px;
    line-height: 24.8px;
    margin-bottom: 15px;
}

main h3 {
    color: var(--blue);
    font-size: 18px;
    line-height: 20px;
    margin-bottom: 8px;
}


main ul {
    list-style-position: inside;
    list-style-type: none;
    margin-left: 16px;
    margin-bottom: 16px;
}


main ul li::before {
    content: "\25CF";
    padding-right: 8px;
    color: #000;
    position: absolute;
    font-size: 11px;
    top: -1px;
    left: -13px;
}

#audit {
    display: block;
    position: relative;
    right: 0;
    float: right;
    margin-left: 20px;
    margin-bottom: 20px;
}

#audit img {
    width: 110px;
}

main a.btn {
    width: fit-content;
    background-color: var(--blue);
    background-image: none;
    display:block;
    color:#fff;
    padding: 16px;
    padding-left: 36px;
    padding-right: 36px;
    margin-bottom: 32px;
    box-shadow: 0 2px 8px 0 #89919a;
    margin-top: 40px;
    margin-bottom: 40px;
    transition: .33s ease-in-out;
}

main a.btn:hover {
	background-color: #387aae;
}

@media screen and ( max-width: 890px ) {
    header {
        flex-direction: column;
        align-items: flex-start;
    }
    header a:nth-of-type(2) img {
       
        margin-left: 29px !important;
    }

}


@media screen and ( max-width: 620px ) {
    #wrapper {
        padding-left: 0;
        padding-right: 0;
        border: none;
    }


    header .mobile {
        display: block;
    }

    header .desktop {
        display: none;
    }

    header a img {
        margin-left: 3px !important;
        margin-top: -3px;
       /* width: 224px;*/
       width: 170px;
    }

    header a:nth-of-type(2) img {
        
        margin-top:12px;
        margin-left:14px !important;
        
    }

    #extraLogoCl {
        margin-top: 12px !important;
    }

    header svg {
        margin-right: 20px;
        margin-top: 21px;
        width: 78px;
    }

    main {
        margin-left: 20px;
        margin-right: 20px;
        margin-top: 25px;
    }

    main h1 {
        line-height: 1420%;;
    }

    main #modalities {
        display: block;
       
    }
    main #modalities div {
        width: 100%;
    }
}

.noWrap {
    white-space: pre;
    word-break: keep-all;
  }