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,
ection,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
    line-height: 1.6;
    font-size: 14px;
}

ul,
li {
    list-style: none;
}

body {
    color: #586a82;
    background: #f1f5f8;
}

.mt65 {
    margin-top: 65px;
}

.cards {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 20px;
    border: 2px solid #FFFFFF;
    border-radius: 10px;
    margin-top: 15px;
    background: linear-gradient(-45deg, #fff 0%, #edf0f8 100%);
    box-shadow: 0 4px 15px rgba(0, 43, 128, 0.1);
    transition: padding 0.1s ease-out, box-shadow 0.1s ease-out;
}

.cards .cards_text {
    flex: 1;
    padding-bottom: 4px;
}

.cards .cards_text h2 {
    font-size: 20px;
    padding-bottom: 4px;
    font-weight: bold;
}

.cards .cards_text p {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.cards .cards_icon {
    margin-left: 20px;
}

.cards .cards_icon {
    width: 50px;
    cursor: pointer;
    transform: translateY(0);
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    -webkit-transition: -webkit-transform 1s ease-out;
    -moz-transition: -moz-transform 1s ease-out;
    -o-transition: -o-transform 1s ease-out;
    -ms-transition: -ms-transform 1s ease-out;
}

.cards .cards_icon:hover {
    transform: translateY(-15px);
    -webkit-transform: translateY(-15px);
    -moz-transform: translateY(-15px);
    -ms-transform: translateY(-15px);
    -o-transform: translateY(-15px);
}

.bgw {
    padding: 80px 0;
    background-color: #fff;
}


.block {
    display: flex;
    flex-wrap: wrap;
    margin-top: 30px;
}

.block li {
    margin: 0px 10px;
    width: calc((100% - 80px) / 4);
    padding: 30px 32px;
    color: #fff;
    height: 274px;
}

.block li div {
    text-align: center;
    padding: 10px 0 10px 0
}

.block li div img {
    height: 40px;
}

.block li h2 {
    font-size: 20px;
    font-weight: bold;
    text-align: center;
}


.block1 {
    background: url(../images/bg1.png) no-repeat;
    background-size: 100%;
}

.block2 {
    background: url(../images/bg2.png) no-repeat;
    background-size: 100%;
}

.block3 {
    background: url(../images/bg3.png) no-repeat;
    background-size: 100%;
}

.block4 {
    background: url(../images/bg4.png) no-repeat;
    background-size: 100%;
}


.title {
    margin-top: 80px;
    text-align: center;
    font-size: 36px;
    font-weight: bold;
}

.case {
    display: flex;
    flex-wrap: wrap;
    margin-top: 30px;
}

.case li {
    margin: 5px 5px;
    width: calc((100% - 60px) / 6);
    background: #fff;
    overflow: hidden;
    border-radius: 10px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.foot {
    padding: 30px 0;
    background-color: #fff;
}

@media(max-width:576px) {

    .navbar-brand img {
        width: 180px;
        vertical-align: -4px;
    }

    .navbar-transparent {
        position: absolute;
        top: 0;
        width: 100%;
        z-index: 100;
        background-color: transparent !important;
        border: 0;
        box-shadow: none;
    }

    .cards {
        padding: 15px 20px;
    }

    .cards .cards_icon {
        width: 40px;
        margin-left: 15px;
    }

    .bgw {
        padding: 20px 0;
    }

    .block {
        margin-top: 20px;
        justify-content: space-between;
    }

    .block li {
        margin: 0px 5px;
        width: calc((100% - 20px) / 2);
        padding: 20px;
        color: #fff;
        height: 192px;
        overflow: hidden;
    }

    .block li div {
        padding: 5px 0 0px 0
    }

    .block li div img {
        height: 30px;
    }

    .block li h2 {
        font-size: 16px;
        /* padding-bottom: 4px; */
    }

    .block li p {
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
    }

    .title {
        margin-top: 20px;
        font-size: 20px;
    }


    .case {
        margin-top: 10px;
    }

    .case li {
        margin: 5px 5px;
        width: calc((100% - 30px) / 3);
    }

    .case li img {
        width: 100%;
        object-fit: contain;
    }


    .mt65 {
        margin-top: 20px;
    }

    .pb-4,
    .py-4 {
        padding-bottom: 1rem !important;
    }

    .pt-4,
    .py-4 {
        padding-top: 1rem !important;
    }

}