html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

body {
    line-height: 1;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 100vh;
    position: relative;
    overflow: hidden;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.waves{
    display: flex;
    justify-content: center;
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}
.waves::before {
    content: '';
    position: absolute;
    background: url(images/bg-b.svg) center center no-repeat;
    width: 1266px;
    height: 347px;
    bottom: -1px;
    right: -1px;
    overflow: hidden;
    z-index: -1;
}

.waves::after {
    content: '';
    position: absolute;
    background: url(images/bg-t.svg) center center no-repeat;
    width: 1334px;
    height: 255px;
    top: -1px;
    left: -1px;
    z-index: -1;
}
.waves.pink::before {
    background: url(images/bg_pink-b.svg) center center no-repeat;
}

.waves.pink::after {
    background: url(images/bg_pink-t.svg) center center no-repeat;
}

.wrap {
    width: 1500px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 0 50px;
}

.pic img {
    width: 90%;
    height: auto;
    pointer-events: none; 
    user-select: none;
    margin-bottom: 150px;
    margin-left: 50px;
}

.text {
    padding-left: 56px;
    color: #58595B;
    text-align: center;
}

.text .text_title {
    font-size: 2rem;
    font-weight: 800;
    text-align: center;
    line-height: 1.5;
}

.text .text_content{
    font-size: 1rem;
    line-height: 1.5;
}
.text .btn {
    display: inline-block;
    padding: 18px 100px;
    margin-top: 32px;
    border-radius: 50px;
    color: white;
    background-color: #349df0;
    text-decoration: none;
    border-bottom: 5px solid #2a7bbd;
    position: relative;
}
.text .btn.pink {
    color: white;
    background-color: #b8135b;
    border-bottom: 5px solid #800e3f;
}



@media (max-width:1200px) {
    .pic img {
        width: 85%;
    }
    .text p:nth-child(2),
    .text p:nth-child(1) {
        font-size: 1.5rem;
    }
}


@media (max-width:768px) {
    .waves::before{
        bottom: -150px;
    }
    .waves::after{
        top: -80px;
    }
    .wrap{
        display: block;
        margin: auto 0;
        padding: 0 16px 100px;
    }
    .text{
        padding-left: 0;
        margin-top: 50px;
        text-align: center;
    }
    .pic{
        text-align: center;
    }
    .pic img{
        margin: 0;
    }
}
@media (max-width:576px) {
    .waves::before{
        display: none;
    }
    .waves::after{
        display: none;
    }
    .text p:nth-child(2),
    .text p:nth-child(1) {
        font-size: 1.25rem;
    }
}