.wrapper {
    max-width: 380px;
    margin: 0 auto;
    background: #ffffff;

    font-family: 'Roboto', sans-serif;
}

.container {
    padding: 30px;
}

.flex {
    display: flex;
    flex-flow: column;
    align-items: center;
}

.flex-item {
    width: 100%;
}

.thin {
    font-weight: 300;
}

.bold {
    font-weight: 500;
}

.titles .title {
    line-height: 40px;
    text-align: center;
    margin: 0;
    font-size: 39px;
    color: #3B3B3B;
}

.titles .title ~ .title  {
    margin-top: 15px;
}

.image {
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image img {
    width: auto;
    height: 240px;
    object-fit: contain;
    margin-right: 41px;
}

.desc {
    text-align: center;
    margin-top: 15px;
}

.desc p {
    line-height: 25px;
    color: #3B3B3B;
    margin: 0;
}
.desc .note{
    font-style: italic;
    text-align: left;
}
.desc ol {
    line-height: 25px;
    color: #3B3B3B;
    text-align: left;
    padding-left: 17px;
    margin-bottom: 25px;
}

.desc ol li {
    margin-bottom: 10px;
}

.button {
    margin-top: 15px;
}

.link {
    max-width: 100%;
    font-size: 16px;
    text-decoration: none;
    
    background: #000166;
    color: #ffffff;

    border: 1px solid #000166;

    display: block;
    padding: 15px 0;
    text-align: center;
    border-radius: 4px;

    transition: all .2s ease-in-out;
}

.link:hover {
    background: #ffffff;
    color: #000166;
    border-color: #000166;
}

.abs {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: none;
}