* {
    margin: 0;
    padding 0;
    box-sizing: border-box;
    font-family: Shantell Sans;
    font-weight: 600;
    font-size: 16px;
}

.header {
    background-color: #ba6cac;
    color: white;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header img {
    height: 60px;
}

.header h1 {
    font-size: 32px;
    margin-left: 20px;
}

.content {
    width: 100%;
    margin: 20px auto 0;
}

.mw {
    width: 90%;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.content h2 {
    border-bottom: 2px solid #ba6cac;
    color: #ba6cac;
    padding-bottom: 6px;
    font-size: 24px;
}

.content p {
    margin-top: 16px;
    line-height: 26px;
}

.content ul {
    margin-top: 20px;
}

.content li {
    margin-top: 8px;
}

.content li::marker {
    color: #ba6cac;
}

.block1 {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.block1-left {
    min-width: 400px;
    height: 500px;
    position: relative;
    margin-right: 30px;
}

.block1-left img {
    position: absolute;
    top: 70px;
    left: 42px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    transition-duration: 0.2s;
}

.bubble1 {
    position: absolute;
    top: 266px;
    left: 26px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background-color: #d29fc9;
    transition-duration: 0.2s;
}

.bubble2 {
    position: absolute;
    top: 262px;
    left: 156px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background-color: #ba6cac;
    transition-duration: 0.2s;

    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding-bottom: 39px;
}

.bubble2 .name {
    color: white;
    font-size: 20px;
    transition-duration: 0.2s;
}

.bubble2 .title {
    color: white;
    font-weight: 300;
    font-style: italic;
    font-size: 12px;
    transition-duration: 0.2s;
}

.bubble3 {
    position: absolute;
    left: 34px;
    top: 55px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background-color: #ddeab0;
    right: 18%;
    transition-duration: 0.2s;
}

.bubble4 {
    position: absolute;
    top: 208px;
    left: 232px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background-color: #ddeab0;
    transition-duration: 0.2s;
}


.block1-right {
    width: 100%;
}

@media all and (max-width: 900px) {
    .block1-left {
        min-width: 300px;
        height: 450px;
    }

    .bubble1 {
        top: 189px;
        left: 25px;
        width: 160px;
        height: 160px;
    }

    .bubble2 {
        top: 241px;
        left: 127px;
        width: 160px;
        height: 160px;
        padding-bottom: 42px;
    }

    .bubble2 .name {
        font-size: 18px;
    }

    .bubble2 .title {
        font-size: 11px;
    }

    .bubble3 {

    }

    .bubble4 {
        top: 200px;
        left: 192px;
        width: 110px;
        height: 110px;
    }

    .block1-left img {
        top: 79px;
        left: 50px;
        width: 220px;
        height: 220px;
    }
}

@media all and (max-width: 730px) {
    .block1 {
        flex-direction: column;
    }

    .block1-left {
        min-width: 340px;
        height: 300px;
        margin-right: 0;
    }

    .bubble1 {
        top: 105px;
        left: 72px;
        width: 180px;
        height: 180px;
    }

    .bubble2 {
        top: 110px;
        left: 178px;
        width: 160px;
        height: 160px;
        padding-bottom: 42px;
    }

    .bubble2 .name {
        font-size: 18px;
    }

    .bubble2 .title {
        font-size: 11px;
    }

    .bubble3 {
        top: 23px;
        left: 55px;
    }

    .bubble4 {
        top: 36px;
        left: 167px;
        width: 140px;
        height: 140px;
    }

    .block1-left img {
        top: 6px;
        left: 0px;
        width: 220px;
        height: 220px;
    }
}

@media all and (max-width: 370px) {
    .header h1 {
        font-size: 26px;
        margin-left: 12px;
    }

    .header img {
        height: 46px;
    }

    .block1-left {
        min-width: 320px;
        height: 322px;
    }

    .block1-left img {
        top: 0px;
        left: 16px;
    }

    .bubble2 {
        top: 145px;
        left: 148px;
    }

    .bubble4 {
        top: 73px;
        width: 135px;
    }

    .bubble1 {
        left: 33px;
    }
}

.block2 {
    margin-top: 65px;
    position: relative;
}

.block2 h2 {
    max-width: 410px;
}

.block2 .bubble {
    position: absolute;
    top: -50px;
    right: 0px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background-color: #ba6cac;
    transition-duration: 0.2s;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding: 0 10px 40px;
}

.block2 .bubble .text {
    color: white;
    text-align: center;
}

.block2 .bubble .name {
    color: white;
    font-weight: 300;
    font-style: italic;
    transition-duration: 0.2s;
    font-size: 14px;
    align-self: flex-end;
    margin-right: 27px;
    margin-top: 5px;
}


@media all and (max-width: 730px) {
    .block2 {
        margin-top: 30px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .block2 h2 {
        max-width: none;
        margin-top: 30px;
    }

    .block2 .bubble {
        position: unset;
    }
}

.block3 {
    background-color: #ba6cac;
    padding: 60px 0 40px;
    margin-top: 30px;
    margin-bottom: 30px;
    position: relative;
}

.block3 img {
    position: absolute;
    height: 60px;
    top: 30px;
    left: calc(50% - 60px);
    padding: 0 20px;
    background-color: #ba6cac;
}

.block3 p {
    color: white;
    margin-top: 0;
    font-size: 20px;
    line-height: 32px;
    border-top: 2px solid white;
    border-bottom: 2px solid white;
    padding: 40px 0;
    text-align: justify;
}

@media all and (max-width: 500px) {
    .block3 p {
        text-align: center;
    }
}

.block5 {
    margin-top: 40px;
    padding: 40px 0;
    background-color: #ba6cac;
}

.block5 h2 {
    color: white;
    border-bottom: 2px solid white;
}

.block5 li {
    color: white;
}

.block5 li::marker {
    color: white;
}

.block5 p {
    color: white;
    font-size: 14px;
    font-style: italic;
    font-weight: 300;
    margin-top: 5px;
    line-height: 20px;
}

.block5 p:first-of-type {
    margin-top: 20px;
}

.block6 {
    margin-top: 40px;
    margin-bottom: 40px;
}

.block65 {
    margin-top: 40px;
    padding: 40px 0;
    background-color: #ba6cac;
}

.block65 h2 {
    color: white;
    border-bottom: 2px solid white;
}

.block65 p {
    color: white;
}

.block7 {
    margin-top: 40px;
    padding: 40px 0;
}

.block7 .mw {
    display: flex;
    flex-direction: row;
    margin-left: auto;
    margin-right: auto;
    width: 470px;
}

.block7-left {
    width: 300px;
}

.block7 h2 {
    color: #ba6cac;
    border-bottom: 2px solid #ba6cac;
}

.block7 li {
    color: #ba6cac;
}

.block7 li::marker {
    color: #ba6cac;
}

.block7-right {
    width: 30%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 30px;
}

.block7-right img {
    width: 180px;
}

@media all and (max-width: 520px) {
    .block7 .mw {
        flex-direction: column;
        align-items: center;
        width: auto;
    }
    .block7-right {
        margin-right: 0;
        margin-bottom: 20px;
    }
}