@font-face {
  font-display: swap; 
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 300;
  src: url('../fonts/roboto-condensed-v25-latin-300.eot'); 
  src: url('../fonts/roboto-condensed-v25-latin-300.eot?#iefix') format('embedded-opentype'),
       url('../fonts/roboto-condensed-v25-latin-300.woff2') format('woff2'),
       url('../fonts/roboto-condensed-v25-latin-300.woff') format('woff'), 
       url('../fonts/roboto-condensed-v25-latin-300.ttf') format('truetype'), 
       url('../fonts/roboto-condensed-v25-latin-300.svg#RobotoCondensed') format('svg');
}

@font-face {
  font-display: swap; 
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/roboto-condensed-v25-latin-regular.eot'); 
  src: url('../fonts/roboto-condensed-v25-latin-regular.eot?#iefix') format('embedded-opentype'), 
       url('../fonts/roboto-condensed-v25-latin-regular.woff2') format('woff2'),
       url('../fonts/roboto-condensed-v25-latin-regular.woff') format('woff'),
       url('../fonts/roboto-condensed-v25-latin-regular.ttf') format('truetype'), 
       url('../fonts/roboto-condensed-v25-latin-regular.svg#RobotoCondensed') format('svg');
}

@font-face {
  font-display: swap; 
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/roboto-condensed-v25-latin-700.eot'); 
  src: url('../fonts/roboto-condensed-v25-latin-700.eot?#iefix') format('embedded-opentype'),
       url('../fonts/roboto-condensed-v25-latin-700.woff2') format('woff2'), 
       url('../fonts/roboto-condensed-v25-latin-700.woff') format('woff'), 
       url('../fonts/roboto-condensed-v25-latin-700.ttf') format('truetype'), 
       url('../fonts/roboto-condensed-v25-latin-700.svg#RobotoCondensed') format('svg'); 
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    color: #231f20;
    font-family: 'Roboto Condensed', Arial, sans-serif;
    font-size: 15px;
    line-height: 21px;
    font-weight: 400;
}

#wrapper {
    max-width: 701px;
    margin: 16px auto;
    border: 1px solid #289ba3;
    background-color: #fff;
}

article {
    padding: 10px 20px;
    position: relative;
}

.logo {
    position: absolute;
    top: -60px;
    right: 20px;
    z-index: 99;
}

.kununu {
    position: absolute;
    bottom: 10px;
    right: 12px;
    z-index: 999;
}

.color {
    font-size: 0.90625rem;
    color: #289ba3 !important;
    white-space: normal !important;
}
.font{font-size: 16px;}
span {
    white-space: nowrap;
}

p {
    margin: 0 0 10px;
}

:is(strong, h1, h2) {
    font-weight: 700;
}

h1 {
    margin: 0 0 12px;
    font-size: 38px;
    line-height: 1.15;
}

h2 {
    font-size: 17px;
    line-height: 23px;
    color: #289ba3;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #231f20;
    text-decoration: none;
    white-space: nowrap;
}

ul {
    margin: 0 0 10px;
    list-style: none;
}

ul li {
    padding-left: 38px;
}

li:before {
    content: '\2022';
    float: left;
    font-size: 22px;
    text-indent: -12px;
}

img {
    max-width: 100%;
    vertical-align: bottom;
}

@media all and (max-width: 700px) {
    #wrapper {
        margin: 0 auto;
        border: none;
    }

    article {
        padding: 1px 16px;
    }

    :is(.logo, .kununu) {
        position: static;
        display: flex;
        justify-content: center;
        margin: 16px 0;
    }

    :is(p, ul) {
        hyphens: auto;
        text-wrap: pretty;
    }

    ul li {
        padding-left: 16px;
    }

    li:before {
        text-indent: -16px;
    }

    br {
        display: none;
    }
}