* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    min-height: 100%;
}

body {
    background: none;
}

#wrapper {
    max-width: 999px;
    margin: 16px auto;
    border: 1px solid #000;
    background-color: #fff;
    overflow: hidden;
    font-family: 'Source Sans Pro', Arial, sans-serif;
    font-size: 14px;
    line-height: 1.3;
    color: #43547C;
}

@keyframes slidy {
    0% {
        opacity: 0;
    }

    25% {
        opacity: 1;
    }

    50% {
        opacity: 1;
    }

    75% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

@keyframes opacity {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 1;
    }

    75% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}


#wrapper .slideshow>img {
    animation: opacity 3s forwards;
}

#wrapper .slideshow {
    position: relative;
}

#wrapper .slideshow img {
    vertical-align: bottom;
}

#wrapper .slideshow>img:nth-of-type(1) {
    position: relative;
}

#wrapper .slide img {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    max-width: 100%;
    animation: slidy 6s linear 0s infinite normal forwards;
}

#wrapper .slide img:nth-child(2) {
    animation-delay: 3s;
}

#wrapper img.banner {
    display: block;
    width: 100%;
}

#wrapper .nobr {
    white-space: nowrap;
}

#wrapper .footer p {
    width: 700px;
    margin-bottom: 0;
}

#wrapper .text {
    margin-bottom: 15px;
    display: flex;
    column-gap: 20px;
    flex-wrap: wrap;
}

#wrapper .text p {
    display: flex;
    align-items: center;
    gap: 5px;
}

#wrapper .contact p {
    text-align: right;
}

#wrapper .contact {
    position: absolute;
    bottom: 58px;
    left: 9%;
}

#wrapper br.none {
    display: none;
}

#wrapper strong {
    font-weight: 600;
}

#wrapper .pad {
    padding: 10px 40px 10px 250px;
}

#wrapper .button a {
    display: inline-block;
    background: #0E4194;
    color: #fff !important;
    padding: 10px 15px;
    margin-left: 10px;
    transition: transform 0.3s ease;
}

#wrapper .button a:hover {
    transform: scale(1.05);
}

#wrapper .hide {
    display: none;
}

#wrapper .icon p {
    margin-bottom: 0;
}

#wrapper .icon {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 15px;
}

#wrapper .header {
    padding: 10px;
    border-bottom: 1px solid #0E4194;
}

#wrapper .article {
    padding: 10px;
    position: relative;
}

#wrapper .flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

#wrapper .content {
    width: 48%;
}

#wrapper p {
    margin-bottom: 15px;
}

#wrapper .button {
    display: flex;
    justify-content: end;
}

#wrapper strong {
    font-weight: 700;
}

#wrapper h1 {
    margin-bottom: 35px;
    font-size: 35px;
    line-height: 1.1;
    font-weight: 400;
}

#wrapper h2 {
    margin-bottom: 15px;
    font-size: 22px;
    line-height: 1.1;
    font-weight: 400;
    color: #777777;
}

#wrapper h3 {
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 600;
    color: #43547C;
}

#wrapper h4 {
    margin: 25px 0 10px;
    font-size: 32px;
    font-weight: 400;
    line-height: 1.1;
    color: #43547C;
}

#wrapper :is(a:link, a:visited, a:hover, a:active) {
    color: #43547C;
    text-decoration: none;
}

#wrapper ul {
    margin-bottom: 15px;
    list-style: none;
}

#wrapper ul li {
    padding-left: 30px;
    position: relative;
}

#wrapper ul li:before {
    content: '\2022';
    color: #43547C;
    font-size: 20px;
    position: absolute;
    top: -3px;
    left: 15px;
    font-family: Arial, sans-serif;
}

#wrapper img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}

@media (max-width:998px) {
    #wrapper {
        margin: 0;
        border: none;
        text-wrap: pretty;
    }

    #wrapper :is(p, ul) {
        hyphens: auto;
        -webkit-hyphens: auto;
    }

    #wrapper .pad {
        padding: 16px 16px 16px 210px;
    }

    #wrapper .contact {
        left: 16px;
        bottom: 62px;
    }

}

@media (max-width:670px) {
    #wrapper {
        margin: 0;
        border: none;
    }

    #wrapper .pad {
        padding: 10px 0 0;
    }

    #wrapper .header {
        padding: 10px 16px;
    }

    #wrapper .footer p {
        margin-bottom: 15px;
        width: auto;
    }

    #wrapper .button a {
        margin-left: 0;
    }

    #wrapper .contact {
        position: static;
        margin-top: 30px;
    }

    #wrapper .contact p {
        text-align: center;
    }

    #wrapper .button {
        justify-content: center;
    }

    #wrapper .article {
        padding: 16px;
    }

    #wrapper p span.block {
        display: inline;
    }

}

@media (max-width:500px) {
    #wrapper .header {
        display: flex;
        justify-content: center;
    }

    #wrapper .content {
        width: 100%;
    }

    #wrapper h1,
    #wrapper h4 {
        font-size: 27px;
    }

    #wrapper ul li {
        padding-left: 15px;
    }

    #wrapper ul li:before {
        left: 0;
    }

}