* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    min-height: 100%;
}

body {
    background: none;
    font-family: "Montserrat", Arial, sans-serif;
    color: #4b5055;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.3;
}

#wrapper {
    max-width: 762px;
    margin: 16px auto;
    border: 1px solid #899297;
    background-color: #fff;
    overflow: hidden;
}

#wrapper .video {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding-top: 56.25%;
    margin-bottom: 22px;
}

#wrapper .responsive-iframe {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    border: none;
}

#wrapper .width {
    flex: 1 1 0;
    padding: 30px;
}

#wrapper .banner {
    width: 50%;
}

#wrapper .banner img {
    object-fit: cover;
}

#wrapper .center {
    text-align: center;
}

#wrapper .hide {
    display: none;
}

#wrapper .nobr {
    white-space: nowrap;
}

#wrapper header {
    display: flex;
}

#wrapper article {
    padding: 20px 40px 40px;
}

#wrapper footer {
    padding: 0;
}

#wrapper p {
    margin-bottom: 16px;
}

#wrapper .bottom {
    margin-bottom: 45px;
}

#wrapper strong {
    font-weight: 600;
}

#wrapper h1 {
    margin-bottom: 10px;
    font-size: 33px;
    font-weight: 200;
    text-align: center;
}

#wrapper h3 {
    margin-bottom: 10px;
    font-size: 21px;
    font-weight: 600;
    letter-spacing: 1px;
}

#wrapper :is(a:link, a:visited, a:hover, a:active) {
    color: #0069aa;
    text-decoration: none;
}

#wrapper p a {
    position: relative;
}

#wrapper p a:hover::before {
    content: "";
    width: 100%;
}

#wrapper p a:before {
    content: "";
    -webkit-transition: all ease-in-out 0.1s;
    transition: all ease-in-out 0.1s;
    bottom: 0px;
    left: 0;
    width: 0;
    height: 1px;
    position: absolute;
    background: #0069aa;
}

#wrapper :is(.button2, .button1) a:before {
    display: none !important;
}

#wrapper .button1 {
    display: flex;
    justify-content: center;
}

#wrapper .button1 a {
    display: inline-block;
    padding: 11px 55px;
    background: #0069aa;
    color: #fff;
    border-radius: 25px;
    transition: .2s;
}

#wrapper .button1 a:hover {
    background: #004072;
}

#wrapper .flex-btn {
    display: flex;
    justify-content: space-between;
    margin: 26px 0 15px;
    flex-wrap: wrap;
    column-gap: 15px;
}

#wrapper .link {
    color: #899297 !important;
}

#wrapper .button2 {
    display: flex;
    justify-content: center;
}

#wrapper .button2 a {
    display: inline-block;
    padding: 13px 55px;
    background: #0069aa;
    color: #fff;
    border-radius: 25px;
    transition: .2s;
    font-size: 13px;
}

#wrapper .button2 a:hover {
    background: #004072;
}

#wrapper ul {
    margin-bottom: 20px;
    list-style: none;
}

#wrapper ul li {
    padding-left: 21px;
    position: relative;
}

#wrapper ul li:before {
    content: '\2022';
    font-size: 20px;
    font-family: Arial, sans-serif;
    position: absolute;
    top: 0;
    line-height: 1;
    left: 0;
}

#wrapper img {
    max-width: 100%;
    vertical-align: middle;
}

#wrapper .logo {
    display: flex;
    justify-content: end;
    margin-top: -45px;
}

@media (max-width: 761px) {
    #wrapper {
        margin: 0;
        border: none;
    }

    #wrapper :is(p, ul) {
        hyphens: auto;
        -webkit-hyphens: auto;
    }

    #wrapper article,
    #wrapper .width {
        padding: 16px;
    }
}

@media (max-width: 579px) {
    #wrapper header {
        display: block;
    }
}

@media (max-width: 379px) {
    #wrapper .logo {
        justify-content: center;
        margin-top: 0;
    }
}