﻿@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    min-height: 100%;
}

img {
    max-width: 100%;
}

#wrapper {
    position: relative;
    max-width: 910px;
    margin: 12px auto;
    border: 1px solid #777;
    padding: 24px;
    overflow: hidden;
    text-align: left;
    font-size: 15px;
    line-height: 19px;
    color: #200E00;
    font-family: 'Roboto', sans-serif;
    background-color: #FFE000;
}

.content {
    background-color: #fff;
    padding: 30px 20px 1px 20px;
}

header {
    margin: 0 0 12px;
    padding: 0;
    display: flex;
    justify-content: flex-end;
}

article {
    padding: 16px 16px 16px 30px;
    position: relative;
}

footer {
    margin: 60px 0 0;
    padding: 0;
    color: #9D9C9C;
    font-size: 0.675em;
    line-height: 1.25;
    text-align: justify;
}



p {
    margin: 0 0 14px;
    padding: 0;
}

h1 {
    margin: 5px 0 2px;
    padding: 0;
    font-size: 38px;
    line-height: 1.25;
    font-weight: 900;
}

h2 {
    margin: 10px 0;
    font-size: 15px;
    line-height: 19px;
    color: #FF0077;
}

.link {
    color: #FF0077 !important;
}

h3 {
    margin: 0;
    font-size: 30px;
    line-height: 1;
}

h3 small {
    font-size: 18px;
    white-space: nowrap;
}

h3 span {
    padding: 6px 8px;
    color: #FF0077;
    background: #FFE200;
    display: inline-block;
    transform: rotate(-4deg);
}

h4 {
    margin: 0 0 19px;
    font-size: 22px;
    line-height: 1.25;
}

h5 {
    margin: 9px 0;
    font-size: 19px;
    line-height: 1.25;
    color: #FFE000;
    background-color: #FF0077;
    text-align: center;
    width: 125px;
    height: 126px;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 403px;
    right: -57px;
}

h5 strong {
    transform: rotate(-8deg);
    display: block;
}

.email {
    vertical-align: bottom;
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

ul li {
    padding-left: 14px;
    margin-bottom: 8px;
}

li:before {
    content: "\2022";
    color: #200E00;
    float: left;
    margin-left: 0;
    font-size: 20px;
    text-indent: -14px;
}

.boxflex {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    margin: 51px 0 42px 0;
}

.boxflex+p {
    font-size: 16px;
    line-height: 1.3;
}

.boxflex>div {
    width: 28%;
}

ins a {}

.right {
    width: 39% !important;
}

@media all and (max-width:910px) {
    #wrapper {
        padding: 16px;
        border: none;
        margin: 0 auto;
    }

    br {
        display: none;
    }

    footer br {
        display: inline;
    }

    .content {
        background-color: #fff;
        padding: 16px;
    }

    footer {
        text-align: left;
    }

    h5 {
        right: -46px;
    }

    .nowrap {
        white-space: nowrap;
    }
}

@media all and (max-width:767px) {
    #wrapper {
        padding: 6px;

    }

    article {
        padding: 0;
    }

    h3 span {
        transform: none;
    }

    .right {
        width: 100% !important;
    }

    .boxflex+p {
        padding-right: 0;
    }

    .boxflex {
        margin: 16px 0;
    }

    h3 {
        font-size: 7vw;
    }

    h5 {
        position: static;
        margin: 16px auto;
    }

    .boxflex>div {
        width: 100%;
    }

    footer {
        margin: 16px 0 0;
    }
}