
/* reset */
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    list-style: none;
    outline: 0;
    padding: 0;
    margin: 0;
}



/* font */
* {
    font-family: 'Open Sans', sans-serif;
}



/* body */
body {
    padding: 0;
    margin: 0;
    background-color: #FBFBFB;
}



/* util */
.util {
    display: block;
    width: 100%;
    max-width: 1400px;
    padding: 0 20px;
    margin: 0 auto;
}



/* header */
header {
    display: block;
    width: 100%;
    background-color: #fff;
    padding: 20px 0;
}
header:after {
    content: "";
    display: block;
    overflow: hidden;
    width: 100%;
    opacity: 0;
}
header .logo {
    float: left;
}
header .logo img {
    width: auto;
    height: 56px;
}
header .bt_login {
    float: right;
    display: block;
    width: auto;
    min-width: 180px;
    line-height: 40px;
    padding: 0 40px;
    margin: 8px 0 0;
    background-color: #592BBF;
    border: 0;
    border-radius: 40px;
    text-align: center;
    text-decoration: none;
    font-weight: normal;
    font-size: 18px;
    color: #fff;
}

@media (max-width: 767px) {
    header {
        padding: 40px 0;
    }
    header .logo {
        float: none;
        width: 100%;
        text-align: center;
    }
    header .logo img {
        width: auto;
        height: 48px;
        margin: 0 auto;
    }
    header .bt_login {
        float: none;
        display: block;
        width: 80%;
        margin: 24px auto 0;
    }
    
}




/* footer */
footer {
    display: block;
    width: 100%;
    padding: 80px 0 0;
    background-color: #56C4CF;
    text-align: center;
}
footer h3 {
    font-weight: 300;
    line-height: 1.25;
    font-size: 44px;
    color: #592BBF;
    margin: 0 0 48px;
}

footer .social {
    display: block;
    width: 100%;
    padding: 16px 0;
    margin: 56px auto 0;
    background-color: #592BBF;
    text-align: center;
}
footer .social .link_social {
    display: inline-block;
    width: 30px;
    margin: 0 4px;
    text-align: center;
}
footer .social .link_social img {
    width: 30px;
    height: auto;
}

.footer_columns {
    display: table;
    width: 100%;
    max-width: 1108px;
    margin: 0 auto;
}
.footer_columns:after {
    content: "";
    display: block;
    overflow: hidden;
    width: 100%;
    opacity: 0;
}
.footer_columns li {
    display: table-cell;
    vertical-align: top;
    padding: 0 24px;
    text-align: center;
}
.footer_columns li:first-child {
    text-align: left;
}

.footer_columns p {
    font-weight: normal;
    font-size: 19px;
    line-height: 1.4;
    color: #fff;
    margin: 0;
}
.footer_columns .bt {
    display: inline-block;
    width: auto;
    min-width: 200px;
    padding: 4px 24px 4px 16px;
    background-color: transparent;
    border: solid 2px #fff;
    border-radius: 40px;
    line-height: 30px;
    white-space: nowrap;
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    font-size: 20px;
    color: #fff;
}
.footer_columns .bt img {
    display: inline-block;
    width: auto;
    height: 30px;
    margin: 0 4px 0 0;
    vertical-align: middle;
}

@media (max-width: 767px) {
    footer {
        padding: 80px 0 0;
    }
    .footer_columns {
        display: block;
    }
    .footer_columns li {
        display: block;
        padding: 0 0 32px;
    }
    .footer_columns li:first-child {
        text-align: center;
    }
    .footer_columns .bt {
        display: block;
        width: 80%;
        margin: 0 auto;
    }
    footer h3 {
        font-size: 32px;
        margin: 0 0 40px;
    }
    .footer_columns p {
        font-size: 16px;
    }
}




/* content */
.content {
    display: block;
    width: 100%;
}
.content:after {
    content: "";
    display: block;
    overflow: hidden;
    width: 100%;
    opacity: 0;
}
.content_col.left {
    float: left;
    display: block;
    width: 46%;
    text-align: left;    
}
.content_col.right {
    float: right;
    display: block;
    width: 54%;
    text-align: center;
}
.content_col.right img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 560px;
}

@media (max-width: 1250px) {
    .content_col.left {
        width: 60%;   
    }
    .content_col.right {
        width: 35%;
    }
}

@media (max-width: 767px) {
    .content_col.left,
    .content_col.right {
        float: left;
        width: 100%;
        text-align: center;    
    }
    .content_col.right img {
        margin: 0 auto 20px;
    }
}



/* content fonts */
.content h2 {
    font-weight: 800;
    line-height: 1.4;
    font-size: 28px;
    color: #FF4E8E;
    margin: 0 0 8px;
}
.content h3 {
    font-weight: bold;
    line-height: 1.25;
    font-size: 37px;
    color: #592BBF;
    margin: 0 0 32px;
}
.content p {
    font-weight: normal;
    line-height: 1.4;
    font-size: 28px;
    color: #592BBF;
    margin: 0;
}

@media (max-width: 1250px) {
    br.br_1920 {
        display: none;
    }
}

@media (max-width: 767px) {
    .content h2 {
        font-size: 24px;
    }
    .content h3 {
        font-size: 32px;
    }
    .content p {
        font-size: 20px;
    }
}



/* next */
.next {
    display: block;
    width: 100%;
    margin: 32px auto 0;
    text-align: center;
}
.next .next_link {
    display: inline-block;
    width: 80px;
    height: 40px;
    background: url(../images/arrow.svg) no-repeat center center;
}



/* box */
.box {
    display: block;
    width: 100%;
    max-width: 1060px;
    height: auto;
    margin: 0 auto;
    padding: 0 40px;
    background-color: #592BBF;
    box-shadow: 3px 3px 6px #00000029;
}
.box:after {
    content: "";
    display: block;
    overflow: hidden;
    width: 100%;
    opacity: 0;
}
.box li {
    float: left;
    display: block;
    width: 25%;
    padding: 32px 24px;
    text-align: center;
}
.box img {
    width: auto;
    height: 78px;
    margin: 0 auto 16px;
}
.box p {
    font-weight: normal;
    line-height: 1.2;
    font-size: 18px;
    color: #fff;
    margin: 0;
}

@media (max-width: 767px) {
    .box {
        padding: 80px 40px;
    }
    .box li {
        width: 100%;
        padding: 24px 0;
    }
    .box p {
        font-size: 16px;
    }
}




/* section */
section {
    display: block;
    width: 100%;
}
section:after {
    content: "";
    display: block;
    overflow: hidden;
    width: 100%;
    opacity: 0;
}

section.section_1 {
    padding: 120px 0 0;
}
section.section_2 {
    padding: 120px 0 0;
}
section.section_3 {
    padding: 60px 0 180px;
}

section.section_1 .content_col.left {
    padding: 80px 0;
}

@media (max-width: 1250px) {
    section.section_1 .content_col.left {
        padding: 0;
    }
}

@media (max-width: 767px) {
    section.section_1 {
        padding: 80px 0 0;
    }
    section.section_2 {
        padding: 80px 0 0;
    }
    section.section_3 {
        padding: 120px 0 0;
    }
    section.section_3 .util {
        padding: 0;
    }
}



