* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    min-height: 100%;
}

body {
    background: none;
    font-family: "Inter", Arial, sans-serif;
    color: #000;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.4;
}

#wrapper {
    max-width: 930px;
    margin: 16px auto;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.75);
    background-color: #fff;
    overflow: hidden;
    background: linear-gradient(to bottom, #fff 0, #fff 30%, #ebf5ff 50%, #fff 70%, #fff 100%);
    background-size: 400% 100%;
    animation: background-animation 10s infinite linear;
}

@keyframes background-animation {
    0% {
        background-position: 0 50%
    }

    50% {
        background-position: 100% 50%
    }

    100% {
        background-position: 0 50%
    }
}

#wrapper .benefit {
    padding: 16px;
    border: 3px solid #002d55;
    border-radius: 6px;
    margin: 30px 0;
}



#wrapper .hide {
    display: none;
}

#wrapper .nobr {
    white-space: nowrap;
}


#wrapper article {
    padding: 26px;
}

#wrapper p {
    margin-bottom: 16px;
}

#wrapper strong {
    font-weight: 700;
}

#wrapper h1 {
    margin-bottom: 8px;
    font-size: 39px;
    font-weight: 600;
    color: #002d55;
    line-height: 1.1;
}

#wrapper .share {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

#wrapper .social {
    display: flex;
    align-items: center;
    gap: 5px;
}

#wrapper .social a {
    padding: 6px;
    border-radius: 6px;
    background: #002d55;
    width: 42px;
    display: inline-flex;
    justify-content: center;
    height: 40px;
    transition: .2s;
    align-items: center;
}

#wrapper .social a:hover {
    transform: scale(.9);
    background: #B30004;
}

#wrapper h3 {
    margin-bottom: 20px;
    font-size: 22px;
    font-weight: 600;
    color: #002d55;
}

#wrapper :is(a:link, a:visited, a:hover, a:active) {
    color: #000;
    text-decoration: none;
}

#wrapper .flex-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

#wrapper .button a {
    display: inline-block;
    color: #fff;
    background-color: #002d55;
    padding: 10px 25px;
    border-radius: 5px;
    transition: all ease-in-out .2s;
}

#wrapper .button a:hover {
    transform: scale(.9);
    background: #B30004;
}

#wrapper .button2 a {
    display: inline-flex;
    color: #fff;
    background-color: #075e54;
    padding: 10px 22px;
    border-radius: 5px;
    transition: all ease-in-out .2s;
    align-items: center;
    gap: 8px;
}

#wrapper .button2 a:hover {
    transform: scale(.9);
    background: #128C7E;
}

#wrapper .text p {
    display: flex;
    align-items: center;
    gap: 5px;
}

#wrapper .text {
    display: flex;
    align-items: center;
    column-gap: 25px;
    flex-wrap: wrap;
}

#wrapper .benefit ul {
    margin: 0;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

#wrapper .benefit ul li {
    padding-left: 60px;
    width: 48%;
    margin-bottom: 25px;
}

#wrapper .benefit ul li:nth-of-type(1):before {
    content: url(benefit1.png);
}

#wrapper .benefit ul li:nth-of-type(2):before {
    content: url(benefit2.png);
}

#wrapper .benefit ul li:nth-of-type(3):before {
    content: url(benefit3.png);
}

#wrapper .benefit ul li:nth-of-type(4):before {
    content: url(benefit4.png);
}

#wrapper .benefit ul li:nth-of-type(5):before {
    content: url(benefit5.png);
}

#wrapper .benefit ul li:nth-of-type(6):before {
    content: url(benefit6.png);
}

#wrapper .benefit ul li:nth-of-type(7):before {
    content: url(benefit7.png);
}

#wrapper .benefit ul li:nth-of-type(8):before {
    content: url(benefit8.png);
}

#wrapper .benefit ul li:nth-of-type(9):before {
    content: url(benefit9.png);
}

#wrapper .benefit ul li:nth-of-type(10):before {
    content: url(benefit10.png);
}

#wrapper .benefit ul li:nth-of-type(11):before {
    content: url(benefit11.png);
}

#wrapper .benefit ul li:nth-of-type(12):before {
    content: url(benefit12.png);
}

#wrapper .benefit ul li:nth-of-type(13):before {
    content: url(benefit13.png);
}

#wrapper .benefit ul li:nth-of-type(14):before {
    content: url(benefit14.png);
}

#wrapper .big {
    font-size: 22px;
    color: #002d55;
    font-weight: 500;
}

#wrapper .logo {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

#wrapper ul {
    margin-bottom: 20px;
    list-style: none;
}

#wrapper ul li {
    padding-left: 21px;
    position: relative;
}

#wrapper ul li:before {
    content: '\2022';
    font-size: 21px;
    font-family: Arial, sans-serif;
    position: absolute;
    top: 0;
    line-height: 1;
    left: 0;
    color: #E60005;
}

#wrapper img {
    max-width: 100%;
    vertical-align: middle;
}

@media (max-width: 899px) {
    #wrapper {
        margin: 0;
        box-shadow: none;
    }

    #wrapper :is(p, ul) {
        hyphens: auto;
        -webkit-hyphens: auto;
    }

    #wrapper article {
        padding: 16px;
    }

    #wrapper footer {
        padding: 16px;
    }
}

@media (max-width: 679px) {
    #wrapper .benefit ul li {
        width: 100%;
        min-height: 34px;
        display: flex;
        align-items: center;
    }

    #wrapper h1 {
        font-size: 30px;
    }
}