/*
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;700&display=swap');
*/

* {
    outline: 0px none;
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
}
html, body {
    height: 100%;
    min-height: 100%;
    width: 100%;
    font-size: 13px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 16px;
    color: #222222;
    text-align: left;
    background: #fafbfe;
}
html.bluebg,
body.bluebg {
    background: #ebf2ff;
}
html, body, form, p, img {
    border: 0px none;
}
a {
    color: #3B7EFF;
    text-decoration: none;
}
a:hover {
    color: #ff0000;
    text-decoration: underline;
}
.al     { text-align: left;   }
.ac     { text-align: center; }
.ar     { text-align: right; }
.aj     { text-align: justify;  }
.at     { vertical-align: top; }
.ab     { vertical-align: bottom; }
.fl     { float: left;  }
.fr     { float: right; }
.mask   {
    position: relative;
    display: block;
    white-space: nowrap;
    overflow: hidden;
}
.clear  {
    clear: both;
    font-size: 0px;
    height: 0px;
    overflow: hidden;
}
.system_message .error {
    font-weight: 800;
    color: #cc0000;
}
.system_message .success {
    font-weight: 800;
    color: #009900;
}


#main {
    min-height: 100%;
}
.main_content_holder {
    width: 100%;
    max-width: 1200px;
    margin: 0px auto;
}
@media screen and (max-width: 1200px){
    .main_content_holder {
        width: calc(100% - 40px);
    }
}
@media screen and (max-width: 800px){
    .main_content_holder {
        width: calc(100% - 40px);
    }
}

.main_header_topline {
    display: block;
    height: 140px;
    background: #ebf2ff;
}
#main.nobg .main_header_topline {
    background: transparent;
}
.main_header_topline .main_content_holder {
    display: flex;
    padding-top: 40px;
    height: 80px;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: center;
}
.main_header_topline .logo {
    display: block;
    float: left;
    width: 220px;
    height: 55px;
    background: url(../images/logo.svg) 0px 0px no-repeat;
}
.main_header_topline .menu {
    display: inline-block;
}
.main_header_topline .menu a {
    display: inline-block;
    font-size: 17px;
    color: #252347;
    padding: 0px 10px 0px 10px;
}
.main_header_topline .menu a:hover {
    color: #407BFF;
    text-decoration: none;
}
.main_header_topline .buttons {
    display: flex;
    width: 288px;
    flex-flow: row wrap;
    justify-content: flex-end;
    align-items: center;
}
.main_header_topline .buttons .signup {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 160px;
    height: 50px;
    color: #ffffff;
    font-size: 17px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 100px;
    background: #21C58E;
}
.main_header_topline .buttons .langs {
    display: block;
    font-size: 16px;
    padding-right: 20px;
}
.main_header_topline .buttons .langs .current {
    display: block;
    position: relative;
    cursor: pointer;
    font-weight: bold;
    padding-right: 20px;
}
.main_header_topline .buttons .langs .current:after {
    display: block;
    position: absolute;
    content: "";
    width: 5px;
    height: 5px;
    right: 0px;
    margin: -13px 6px 0px 0px;
    border: 2px solid #21c58e;
    border-width: 0px 2px 2px 0px;
    transform: rotate(45deg);
}
.main_header_topline .buttons .langs .list {
    display: none;
}
.main_header_topline .buttons .langs.open .list {
    display: block;
    z-index: 1000;
    position: absolute;
    padding: 10px;
    margin: 3px 0px 0px -3px;
    border-radius: 2px;
    box-shadow: 0px 0px 3px rgba(0,0,0,0.2);
    background: #ffffff;
}
.main_header_topline .buttons .langs.open .list a {
    display: block;
    padding: 4px;
}
@media screen and (max-width: 450px){
    .main_header_topline .buttons {
        width: 210px;
        flex-flow: row wrap;
    }
    .main_header_topline .buttons .signup {
        width: 100px;
        font-size: 12px;
    }
}

.main_header_topline .buttons .login {
    display: inline-block;
    margin-right: 20px;
    font-size: 17px;
    color: #252347;
    text-decoration: none;
}
.main_header_topline .buttons .login:hover {
    color: #407BFF;
}
.main_header_topline .mobile_menu {
    display: none;
    float: left;
}
.main_header_topline .mobile_menu .icon {
    cursor: pointer;
    width: 32px;
    height: 40px;
    margin-right: 20px;
    padding: 10px 0px 0px 0px;
    color: #3D59FA;
}
.main_header_topline .mobile_menu .menu_column {
    display: none;
    position: absolute;
    z-index: 100;
    padding: 10px;
    width: 100%;
    max-width: 400px;
    left: 0px;
    margin-top: 20px;
    border-radius: 4px;
    background: #ffffff;
    box-shadow: 0px 0px 15px rgba(0,0,0,0.2);
}
.main_header_topline .mobile_menu.open .menu_column {
    display: block;
}
.main_header_topline .mobile_menu .menu_column a {
    display: block;
    font-size: 18px;
    padding: 10px;
    text-align: center;
}

@media screen and (max-width: 900px){
    .main_header_topline .menu {
        display: none;
    }
    .main_header_topline .mobile_menu {
        display: block;
    }
}
@media screen and (max-width: 700px){
    .main_header_topline .logo {
        width: 60px;
    }
    .main_header_topline .buttons .login {
        max-width: 75px;
    }
}



.blog_header_topline {
    display: block;
}
.blog_header_topline .main_content_holder {
    display: flex;
    height: 120px;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: center;
}
.blog_header_topline .logo {
    display: block;
    float: left;
    width: 220px;
    height: 55px;
    background: url(../images/logo.svg) 0px 0px no-repeat;
}
.blog_header_topline .menu {
    display: inline-block;
}
.blog_header_topline .menu a {
    display: inline-block;
    font-size: 17px;
    color: #252347;
    padding: 0px 10px 0px 10px;
}
.blog_header_topline .menu a:hover {
    color: #407BFF;
    text-decoration: none;
}
.blog_header_topline .buttons {
    display: flex;
    width: 285px;
    flex-flow: row wrap;
    justify-content: flex-end;
    align-items: center;
}
.blog_header_topline .buttons .signup {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 160px;
    height: 50px;
    color: #ffffff;
    font-size: 17px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 100px;
    background: #21C58E;
}
@media screen and (max-width: 500px){
    .main_header_topline .buttons {
        width: 210px;
        flex-flow: row wrap;
    }
    .main_header_topline .buttons .signup {
        width: 100px;
        font-size: 12px;
    }
    .blog_header_topline .buttons .signup {
        width: 80px;
        font-size: 12px;
    }
    .blog_header_topline .buttons {
        width: 180px;
    }
}

.blog_header_topline .buttons .login {
    display: inline-block;
    margin-right: 20px;
    font-size: 17px;
    color: #252347;
    text-decoration: none;
}
.blog_header_topline .buttons .login:hover {
    color: #407BFF;
}
.blog_header_topline .mobile_menu {
    display: none;
    float: left;
}
.blog_header_topline .mobile_menu .icon {
    cursor: pointer;
    width: 32px;
    height: 40px;
    margin-right: 20px;
    padding: 10px 0px 0px 0px;
    color: #3D59FA;
}
.blog_header_topline .mobile_menu .menu_column {
    display: none;
    position: absolute;
    z-index: 100;
    padding: 10px;
    width: 100%;
    max-width: 400px;
    left: 0px;
    margin-top: 20px;
    border-radius: 4px;
    background: #ffffff;
    box-shadow: 0px 0px 15px rgba(0,0,0,0.2);
}
.blog_header_topline .mobile_menu.open .menu_column {
    display: block;
}
.blog_header_topline .mobile_menu .menu_column a {
    display: block;
    font-size: 18px;
    padding: 10px;
    text-align: center;
}

@media screen and (max-width: 900px){
    .blog_header_topline .menu {
        display: none;
    }
    .blog_header_topline .mobile_menu {
        display: block;
    }
}
@media screen and (max-width: 700px){
    .blog_header_topline .logo {
        width: 60px;
    }
    .blog_header_topline .buttons .login {
        max-width: 60px;
    }
}




.main_header_video {
    display: block;
    background: #ebf2ff;
    background-size: 600px 400px;
}
.main_header_video .main_content_holder {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    min-height: 500px;
    padding: 0px 0px 60px 0px;
}
.main_header_video .info {
    display: block;
    padding: 80px 0px 0px 0px;
    width: 40%;
    max-width: 450px;
}
.main_header_video .info .coming_soon {
    display: inline-block;
    padding: 2px 10px 2px 10px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: normal;
    text-align: center;
    color: #ffffff;
    background: #407BFF;
}
.main_header_video .video {
    position: relative;
    display: flex;
    width: 55%;
    padding: 0px 0px 0px 20px;
    height: 540px;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    /*
    background: url(../images/video_bg.svg) 50% 50% no-repeat;
    background-size: contain;
    */
}
.main_header_video .video .player {
    position: relative;
    width: 80%;
    height: 340px;
    padding: 10px;
    margin: -35px auto 0px auto;
    border-radius: 20px;
    overflow: hidden;
    /*
    background: #ffffff;
    box-shadow: 5px 10px 25px rgba(0,0,0,0.4);
    */
}
.main_header_video .video .video-overlay {
    position: absolute;
    display: flex;
    left: 0;
    top: 0;
    /*background: url(../images/video-preview.svg) no-repeat 50% 20%;*/
    background-size: 100% 100%;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    text-align: center;
    justify-content: center;
    align-items: center;
    color: #fff;
}
.main_header_video .video .player .graph-system-overlay {
    position: absolute;
    display: flex;
    left: 0;
    top: 0;
    background: url(../images/top_graph.png) no-repeat 50% 0%;
    background-size: auto 100%;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    padding-top: 120px;
    text-align: center;
    color: #fff;
}
.main_header_video .video .play {
    display: block;
    width: 105px;
    height: 105px;
    cursor: pointer;
    color: #444444;
    background: url(../images/yt_play.svg) no-repeat 50% 50%;
    background-size: contain;
    z-index: 10;
    margin-right: 9px;
    margin-top: 25px;
}
.main_header_video .video .play .st0 {
    fill: #ff0000;
}
.main_header_video .video svg {
    position: absolute;
    width: 100%;
}
.main_header_video .header {
    position: relative;
}
.main_header_video .header h1 {
    position: relative;
    font-size: 46px;
    line-height: 55px;
    z-index: 10;
}
@media screen and (max-width: 600px){
    .main_header_video .header h1 {
        font-size: 34px;
        line-height: 43px;
    }
}
.main_header_video .header .addon {
    position: absolute;
    display: block;
    left: 0px;
    top: 0px;
    z-index: 5;
    width: 220px;
    height: 10px;
    margin: 40px 0px 0px 0px;
    background: #ffffff;
}
.main_header_video .subheader,
.main_header_video .subheader * {
    font-size: 25px;
    line-height: 55px;
}
.main_header_video .snippet {
    padding: 21px 0px 0px 0px;
    font-size: 15px;
    line-height: 24px;
    color: #5D6B7D;
}
.main_header_video .buttons {
    display: flex;
    padding: 36px 0px 0px 0px;
    flex-flow: row nowrap;
    align-items: center;
}
.main_header_video .buttons .trial {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    padding: 0px 40px 0px 40px;
    border-radius: 50px;
    box-shadow: 5px 5px 10px rgba(7, 46, 117, 0.3);
    font-size: 15px;
    font-weight: bold;
    text-decoration: none;
    color: #ffffff;
    background: #407BFF;
}
.main_header_video .buttons .watch {
    display: inline-block;
    font-size: 15px;
    line-height: 25px;
    margin-left: 20px;
}
.main_header_video .buttons .watch .bullet {
    display: block;
    float: left;
    width: 25px;
    height: 25px;
    margin-right: 2px;
    background: url(../images/video_bullet.svg) -22px -17px no-repeat;
    background-size: 75px 75px;
}
@media screen and (max-width: 800px){
    .main_header_video .main_content_holder {
        flex-flow: column nowrap;
    }
    .main_header_video .header .addon {
        display: none;
    }
    .main_header_video .info {
        width: 100%;
        max-width: 100%;
        text-align: center;
    }
    .main_header_video .video {
        width: 100%;
        height: 400px;
        margin: 40px 0px 0px 0px;
    }
    .main_header_video .video .player {
        height: 260px;
    }
}
@media screen and (max-width: 700px){
    .main_header_video .info {
        padding-top: 50px;
    }
}
@media screen and (max-width: 600px){
    .main_header_video .buttons .watch {
        margin-top: 15px;
    }
    .main_header_video .info {
        padding-top: 20px;
    }
    .main_header_video .video .play {
        width: 65px;
        height: 65px;
        margin-top: 15px;
        margin-left: 4px;
    }
    .main_header_video .video {
        height: 330px;
    }
    .main_header_video .info .coming_soon {
        margin: 0px auto;
    }
}
@media screen and (max-width: 400px){
    .main_header_video .video {
        height: 280px;
    }
}


.main_header_article {
    display: block;
    padding: 0px;
    background: #ebf2ff;
    background-size: 600px 400px;
}
.main_header_article .main_content_holder {
    max-width: 850px;
}



.info_block1 {
    padding: 150px 0px 0px 0px;
}
.info_block1 .main_content_holder {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: center;
    color: #252347;
}
.info_block1 .graph {
    width: 47%;
    min-height: 350px;
    background: url(../images/info_graph1.svg) 50% 50% no-repeat;
    background-size: contain;
}
.info_block1 .graph7 {
    width: 47%;
    min-height: 350px;
    background: url(../images/info_graph7.svg) 50% 50% no-repeat;
    background-size: 90%;
}
.info_block1 .info {
    width: 47%;
}
.info_block1 .info .header {
    position: relative;
}
.info_block1 .info .header * {
    position: relative;
    z-index: 10;
    font-size: 40px;
    font-weight: bold;
    line-height: 50px;
}
.info_block1 .info .header .addon {
    position: absolute;
    display: block;
    left: 0px;
    top: 0px;
    z-index: 5;
    width: 140px;
    height: 10px;
    margin: 35px 0px 0px 0px;
    background: #21C58E;
}
.info_block1 .info .header .addon.v2 {
    width: 191px;
}
.info_block1 .info .body p {
    display: block;
    padding: 20px 0px 0px 0px;
    font-size: 17px;
    line-height: 26px;
    color: #5D6B7D;
}
@media screen and (max-width: 700px){
    .info_block1  {
        padding: 60px 0px 0px 0px;
    }
    .info_block1 .info .header * {
        font-size: 28px;
        line-height: 35px;
    }
    .info_block1 .info .header .addon {
        width: 100px;
        margin: 23px 0px 0px 0px;
    }
    .info_block1 .info .header .addon.v2 {
        width: 136px;
        margin: 23px 0px 0px 0px;
    }
}
@media screen and (max-width: 600px){
    .info_block1 .main_content_holder {
        flex-direction: column-reverse;
    }
    .info_block1 .graph {
        width: 100%;
        margin-top: 20px;
    }
    .info_block1 .graph7 {
        width: 100%;
        margin-top: 20px;
    }
    .info_block1 .info {
        width: 100%;
    }
}
@media screen and (max-width: 500px){
    .info_block1 {
        padding: 50px 0px 0px 0px;
    }
}



.info_block1_systems {
    padding: 150px 0px 0px 0px;
}
.info_block1_systems .main_content_holder {
    display: flex;
    flex-flow: row-reverse wrap;
    justify-content: space-between;
    align-items: center;
    color: #252347;
}
.info_block1_systems .graph {
    width: 47%;
    min-height: 350px;
    background: url(../images/info_graph1.svg) 50% 50% no-repeat;
    background-size: contain;
}
.info_block1_systems .info {
    width: 47%;
}
.info_block1_systems .info .header {
    position: relative;
}
.info_block1_systems .info .header * {
    position: relative;
    z-index: 10;
    font-size: 40px;
    font-weight: bold;
    line-height: 50px;
}
.info_block1_systems .info .header .addon {
    position: absolute;
    display: block;
    left: 0px;
    top: 0px;
    z-index: 5;
    width: 180px;
    height: 10px;
    margin: 35px 0px 0px 0px;
    background: #21C58E;
}
.info_block1_systems .info .body p {
    display: block;
    padding: 20px 0px 0px 0px;
    font-size: 17px;
    line-height: 26px;
    color: #5D6B7D;
}
.info_block1_systems .info .body b {
    display: block;
    font-size: 17px;
    line-height: 26px;
    color: #5D6B7D;
}
.info_block1_systems .info .body ol {
    display: block;
    padding: 0px 0px 0px 20px;
}
.info_block1_systems .info .body li {
    font-size: 17px;
    line-height: 26px;
    color: #5D6B7D;
}
.info_block1_systems .system_logo_combo {
    position: relative;
    width: 50%;
    height: 550px;
    text-align: center;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: 50% 50%;
}
.info_block1_systems .system_logo_combo .soon {
    position: absolute;
    padding: 20% 0px 0px 0px;
    width: 100%;
}
.info_block1_systems .system_logo_combo .soon .label {
    display: inline-block;
    padding: 2px 10px 3px 10px;
    color: #ffffff;
    border-radius: 100px;
    background: #407bff;
}
.info_block1_systems .system_logo_combo img {
    width: 100%;
}
.info_block1_systems .system_logo_combo a {
    display: block;
    margin-top: -32%;
    font-weight: bold;
    font-size: 15px;
}
@media screen and (max-width: 700px){
    .info_block1_systems  {
        padding: 60px 0px 0px 0px;
    }
    .info_block1_systems .system_logo_combo {
        height: 310px;
    }
    .info_block1_systems .info .header * {
        font-size: 28px;
        line-height: 35px;
    }
    .info_block1_systems .info .header .addon {
        width: 127px;
        margin: 23px 0px 0px 0px;
    }
}
@media screen and (max-width: 600px){
    .info_block1_systems .main_content_holder {
        flex-direction: column-reverse;
    }
    .info_block1_systems .graph {
        width: 100%;
    }
    .info_block1_systems .info {
        width: 100%;
    }
    .info_block1_systems .system_logo_combo {
        width: 100%;
        height: 430px;
    }
}
@media screen and (max-width: 500px){
    .info_block1_systems {
        padding: 50px 0px 0px 0px;
    }
    .info_block1_systems .system_logo_combo {
        height: 380px;
    }
}
@media screen and (max-width: 400px){
    .info_block1_systems .system_logo_combo {
        height: 330px;
    }
}
@media screen and (max-width: 350px){
    .info_block1_systems .system_logo_combo {
        height: 300px;
    }
}


.info_block1_systems_integrate {
    padding: 150px 0px 0px 0px;
}
.info_block1_systems_integrate .main_content_holder {
    display: flex;
    flex-flow: row-reverse wrap;
    justify-content: space-between;
    align-items: center;
    color: #252347;
}
.info_block1_systems_integrate .info {
    width: 47%;
}
.info_block1_systems_integrate .info .header {
    position: relative;
}
.info_block1_systems_integrate .info .header * {
    position: relative;
    z-index: 10;
    font-size: 40px;
    font-weight: bold;
    line-height: 50px;
}
.info_block1_systems_integrate .info .header .addon {
    position: absolute;
    display: block;
    left: 0px;
    top: 0px;
    z-index: 5;
    width: 180px;
    height: 10px;
    margin: 35px 0px 0px 0px;
    background: #21C58E;
}
.info_block1_systems_integrate .info .body p {
    display: block;
    padding: 20px 0px 0px 0px;
    font-size: 17px;
    line-height: 26px;
    color: #5D6B7D;
}
.info_block1_systems_integrate .info .body b {
    display: block;
    font-size: 17px;
    line-height: 26px;
    color: #5D6B7D;
}
.info_block1_systems_integrate .info .body ol {
    display: block;
    padding: 0px 0px 0px 20px;
}
.info_block1_systems_integrate .info .body li {
    font-size: 17px;
    line-height: 26px;
    color: #5D6B7D;
}
.info_block1_systems_integrate .system_logo_combo {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50%;
    height: 550px;
}
.info_block1_systems_integrate .system_logo_combo .frame {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 360px;
    height: 360px;
    padding: 20px;
    border-radius: 100px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-color: #ffffff;
}
@media screen and (max-width: 700px){
    .info_block1_systems_integrate  {
        padding: 60px 0px 0px 0px;
    }
    .info_block1_systems_integrate .system_logo_combo {
        height: 310px;
    }
    .info_block1_systems_integrate .info .header * {
        font-size: 28px;
        line-height: 35px;
    }
}
@media screen and (max-width: 600px){
    .info_block1_systems_integrate .main_content_holder {
        flex-direction: column-reverse;
    }
    .info_block1_systems_integrate .graph {
        width: 100%;
    }
    .info_block1_systems_integrate .info {
        width: 100%;
    }
    .info_block1_systems_integrate .system_logo_combo {
        width: 100%;
        height: 430px;
    }
}
@media screen and (max-width: 500px){
    .info_block1_systems_integrate {
        padding: 50px 0px 0px 0px;
    }
    .info_block1_systems_integrate .system_logo_combo {
        height: 380px;
    }
}
@media screen and (max-width: 400px){
    .info_block1_systems_integrate .system_logo_combo {
        height: 330px;
    }
}
@media screen and (max-width: 350px){
    .info_block1_systems_integrate .system_logo_combo {
        height: 300px;
    }
}



.info_block2 {
    padding: 150px 0px 0px 0px;
}
.info_block2 .main_content_holder {
    display: flex;
    flex-flow: row-reverse wrap;
    justify-content: space-between;
    align-items: center;
    color: #252347;
}
.info_block2 .graph {
    width: 47%;
    min-height: 350px;
    background: url(../images/info_graph2.svg) 50% 50% no-repeat;
    background-size: contain;
}
.info_block2 .info {
    width: 47%;
}
.info_block2 .info .header {
    position: relative;
}
.info_block2 .info .header * {
    position: relative;
    z-index: 10;
    font-size: 40px;
    font-weight: bold;
    line-height: 50px;
}
.info_block2 .info .header .addon {
    position: absolute;
    display: block;
    left: 0px;
    top: 0px;
    z-index: 5;
    width: 205px;
    height: 10px;
    margin: 35px 0px 0px 0px;
    background: #21C58E;
}
.info_block2 .info .body p {
    display: block;
    padding: 20px 0px 0px 0px;
    font-size: 17px;
    line-height: 26px;
    color: #5D6B7D;
}
@media screen and (max-width: 700px){
    .info_block2 {
        padding: 80px 0px 0px 0px;
    }
    .info_block2 .info .header * {
        font-size: 28px;
        line-height: 35px;
    }
    .info_block2 .info .header .addon {
        width: 145px;
        margin: 23px 0px 0px 0px;
    }
}
@media screen and (max-width: 600px){
    .info_block2 .main_content_holder {
        flex-direction: column-reverse;
    }
    .info_block2 .graph {
        width: 100%;
    }
    .info_block2 .info {
        width: 100%;
    }
}
@media screen and (max-width: 500px){
    .info_block2 {
        padding: 50px 0px 0px 0px;
    }
}



.info_block3 {
    padding: 150px 0px 0px 0px;
}
.info_block3 .main_content_holder {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: center;
    color: #252347;
}
.info_block3 .graph {
    width: 47%;
    min-height: 350px;
    background: url(../images/info_graph3.svg) 50% 50% no-repeat;
    background-size: contain;
}
.info_block3 .info {
    width: 47%;
}
.info_block3 .info .header {
    position: relative;
}
.info_block3 .info .header * {
    position: relative;
    z-index: 10;
    font-size: 40px;
    font-weight: bold;
    line-height: 50px;
}
.info_block3 .info .header .addon {
    position: absolute;
    display: block;
    left: 0px;
    top: 0px;
    z-index: 5;
    width: 200px;
    height: 10px;
    margin: 35px 0px 0px 0px;
    background: #21C58E;
}
.info_block3 .info .body p {
    display: block;
    padding: 20px 0px 0px 0px;
    font-size: 17px;
    line-height: 26px;
    color: #5D6B7D;
}
@media screen and (max-width: 700px){
    .info_block3 {
        padding: 80px 0px 0px 0px;
    }
    .info_block3 .info .header * {
        font-size: 28px;
        line-height: 35px;
    }
    .info_block3 .info .header .addon {
        width: 142px;
        margin: 23px 0px 0px 0px;
    }
}
@media screen and (max-width: 600px){
    .info_block3 .main_content_holder {
        flex-direction: column-reverse;
    }
    .info_block3 .graph {
        width: 100%;
    }
    .info_block3 .info {
        width: 100%;
    }
}
@media screen and (max-width: 500px){
    .info_block3 {
        padding: 50px 0px 0px 0px;
    }
}


.info_block4 {
    padding: 60px 0px 0px 0px;
}
.info_block4 .main_content_holder {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: center;
    color: #252347;
}
.info_block4 .info .header * {
    font-size: 40px;
    font-weight: bold;
    line-height: 50px;
}
.info_block4 .info .body {
    font-size: 17px;
    line-height: 26px;
}
.info_block4 .info .body p {
    display: block;
    padding: 20px 0px 0px 0px;
    font-size: 17px;
    line-height: 26px;
    color: #222222;
}
.info_block4 .info .body h2,
.info_block4 .info .body h3 {
    display: block;
    font-size: 1.5em;
    line-height: 1.3em;
    padding: 15px 0px 0px 0px;
}
.info_block4 .info .body li {
    margin: 10px 0 10px 2em;
}
@media screen and (max-width: 700px){
    .info_block4 {
        padding: 80px 0px 0px 0px;
    }
    .info_block4 .info .header * {
        font-size: 28px;
        line-height: 35px;
    }
    .info_block4 .info .header .addon {
        width: 142px;
        margin: 23px 0px 0px 0px;
    }
}
@media screen and (max-width: 500px){
    .info_block4 {
        padding: 50px 0px 0px 0px;
    }
}


.info_block5 {
    padding: 150px 0px 0px 0px;
}
.info_block5 .main_content_holder {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: center;
    color: #252347;
}
.info_block5 .graph {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
    width: 47%;
    min-height: 350px;
    background: url(../images/info_graph5.svg) 50% 50% no-repeat;
    background-size: contain;
    padding: 32px 42px 80px 120px;
    text-align: center;
}
.info_block5 .graph6 {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
    width: 47%;
    min-height: 350px;
    background: url(../images/info_graph6.svg) 50% 50% no-repeat;
    background-size: 85%;
    padding: 32px 42px 80px 120px;
    text-align: center;
}
.info_block5 .graph img {
    width: 85%;
}
.info_block5 .info {
    width: 47%;
}
.info_block5 .info .header {
    position: relative;
}
.info_block5 .info .header * {
    position: relative;
    z-index: 10;
    font-size: 40px;
    font-weight: bold;
    line-height: 50px;
}
.info_block5 .info .header .addon {
    position: absolute;
    display: block;
    left: 0px;
    top: 0px;
    z-index: 5;
    width: 200px;
    height: 10px;
    margin: 35px 0px 0px 0px;
    background: #21C58E;
}
.info_block5 .info .header .addon.v2 {
    width: 99px;
}
.info_block5 .info .body p {
    display: block;
    padding: 20px 0px 0px 0px;
    font-size: 17px;
    line-height: 26px;
    color: #5D6B7D;
}
@media screen and (max-width: 700px){
    .info_block5 {
        padding: 80px 0px 0px 0px;
    }
    .info_block5 .graph {
        min-height: 210px;
    }
    .info_block5 .graph6 {
        min-height: 210px;
    }
    .info_block5 .info .header * {
        font-size: 28px;
        line-height: 35px;
    }
    .info_block5 .info .header .addon {
        width: 142px;
        margin: 23px 0px 0px 0px;
    }
    .info_block5 .info .header .addon.v2 {
        width: 70px;
    }
}
@media screen and (max-width: 600px){
    .info_block5 {
        padding: 40px 0px 0px 0px;
    }
    .info_block5 .main_content_holder {
        flex-direction: column-reverse;
    }
    .info_block5 .graph {
        width: 100%;
        min-height: 210px;
        margin-top: 20px;
    }
    .info_block5 .graph6 {
        width: 100%;
        min-height: 210px;
        margin-top: 20px;
    }
    .info_block5 .info {
        width: 100%;
    }
}
@media screen and (max-width: 500px){
    .info_block5 {
        padding: 50px 0px 0px 0px;
    }
}




.info_block6 {
    margin-top: 80px;
    padding: 80px 0px 80px 0px;
    background: #ffffff;
}
.info_block6 .main_content_holder {
    max-width: 800px;
}
.info_block6 .info p {
    display: block;
    padding: 20px 0px 0px 0px;
    font-size: 17px;
    line-height: 26px;
    color: #5D6B7D;
}
@media screen and (max-width: 500px){
    .info_block6 {
        padding: 30px 0px 30px 0px;
    }
}


.info_block7 {
    padding: 50px 0px 0px 0px;
}
.info_block7 .main_content_holder {
    text-align: center;
}
.info_block7 .main_content_holder .button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    padding: 0px 80px 0px 80px;
    border-radius: 50px;
    box-shadow: 5px 5px 10px rgb(7 46 117 / 30%);
    font-size: 15px;
    font-weight: bold;
    text-decoration: none;
    color: #ffffff;
    background: #407BFF;
}



.info_block_article {
    padding: 20px 0px 0px 0px;
}
.info_block_article .main_content_holder {
    max-width: 900px;
}
.info_block_article .main_content_holder.catalog {
    display: flex;
    flex-flow: row nowrap;
    max-width: 1200px;
}
.info_block_article .main_content_holder.catalog .article-body {
    border-radius: 0px 20px 20px 0px;
}
.category_header .wide_content_holder {
    max-width: 1200px;
    margin: 0px auto;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
}
.info_block_article .category_header {
    padding: 10px 0px 10px 0px;
    /*background: #EBF2FF;*/
}
.info_block_article .category_header h1 {
    padding: 0px;
    font-size: 17px;
    font-weight: 400;
    color: #5D6B7D;
}
.info_block_article .category_header a {
    position: relative;
    margin-right: 20px;
    z-index: 10;
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
    color: #5D6B7D;
}
.info_block_article .category_header a.selected {
    color: #21C58E;
    font-weight: bold;
}
.info_block_article .category_header a:hover {
    color: #21C58E;
}
.info_block_article .category_header .search {
    display: block;
    width: 100%;
}
.info_block_article .category_header .search input {
    position: relative;
    width: 100%;
    z-index: 6;
    padding: 12px 12px 12px 40px;
    border: 1px solid #cccccc;
    border-radius: 100px;
    color: #5D6B7D;
    font-size: 16px;
    background: #ffffff url('data:image/svg+xml;utf8,<svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M12.5 11H11.71L11.43 10.73C12.41 9.59 13 8.11 13 6.5C13 2.91 10.09 0 6.5 0C2.91 0 0 2.91 0 6.5C0 10.09 2.91 13 6.5 13C8.11 13 9.59 12.41 10.73 11.43L11 11.71V12.5L16 17.49L17.49 16L12.5 11ZM6.5 11C4.01 11 2 8.99 2 6.5C2 4.01 4.01 2 6.5 2C8.99 2 11 4.01 11 6.5C11 8.99 8.99 11 6.5 11Z" fill="%235D6B7D"/></svg>') 15px 50% no-repeat;
}
.info_block_article .category_header .search .search-popup {
    display: none;
    position: relative;
    margin-top: -20px;
    z-index: 5;
    width: 100%;
    font-size: 17px;
    padding: 40px 36px 36px 28px;
    border-radius: 0px 0px 36px 36px;
    background: #ffffff;
}
.info_block_article .category_header .search .search-popup .item {
    display: block;
    padding: 5px;
}
.info_block_article .category_header .search .search-popup .item a {
    line-height: 20px;
    color: #346eb8;
    border-bottom: 1px solid #bfd3ed;
}
.info_block_article .category_header .search .search-popup .item a:hover {
    color: #cd192e;
    border-bottom: 1px solid #f6b4bc;
}
.info_block_article .category_header .search .search-popup .item a:before {
    display: block;
    float: left;
    width: 6px;
    height: 6px;
    border-radius: 100px;
    margin: 7px 6px 0px 0px;
    content: "";
    background: #dddddd;
}
.info_block_article .subscription {
    display: block;
    position: relative;
    margin-top: 40px;
    height: 300px;
    border-radius: 20px;
    background: #003087; /* url(../images/subscribe.svg) 0px 0px no-repeat;*/
    background-size: contain;
}
.info_block_article .subscription .image_right {
    display: block;
    float: right;
    width: 350px;
    height: 300px;
    margin-right: -49px;
    background: url(../images/subscribe.svg) 100% 0% no-repeat;
    background-size: auto 100%;
}
.info_block_article .subscription .image_left {
    display: block;
    float: left;
    width: 120px;
    height: 300px;
    background: url(../images/subscribe.svg) 0% 0% no-repeat;
    background-size: auto 100%;
}
.info_block_article .subscription .content {
    display: block;
    position: absolute;
    z-index: 20;
    width: 100%;
    padding: 60px 0px 0px 0px;
}
.info_block_article .subscription .content .body {
    display: block;
    margin: 0px auto;
    width: 100%;
    max-width: 550px;
    text-align: center;
    font-size: 40px;
    line-height: 44px;
    font-weight: bold;
    color: #ffffff;
}
.info_block_article .subscription .content .body .form {
    display: flex;
    padding: 40px 0px 0px 0px;
    flex-flow: row nowrap;
    justify-content: center;
}
.info_block_article .subscription .content .body input {
    width: calc(100% - 100px);
    max-width: 250px;
    height: 40px;
    border: 0px none;
    padding: 8px 16px 8px 16px;
    border-radius: 20px;
}
.info_block_article .subscription .content .body input.invalid {
    background: #ffaaaa;
}
.info_block_article .subscription .content .body .button {
    display: inline-block;
    height: 40px;
    border: 0px none;
    padding: 8px 16px 8px 16px;
    margin-left: 10px;
    border-radius: 20px;
    font-size: 15px;
    font-weight: bold;
    line-height: 24px;
    color: #ffffff;
    background: #21C58E;
}
.info_block_article .subscription .content .body .result {
    padding: 40px 0px 0px 0px;
    color: #77ff77;
    font-size: 15px;
    line-height: 20px;
}
.info_block_article .article-categories {
    display: block;
    padding: 20px 30px 30px 30px;
    width: 280px;
    min-width: 280px;
    border-radius: 20px 0px 0px 20px;
    background: #f8f8f8;
}
.info_block_article .article-categories .item {
    display: inline-block;
    margin-top: 10px;
    text-decoration: none;
}
.info_block_article .article-categories .item:hover {
    color: #cd192e;
}
.info_block_article .article-categories .item.selected {
    font-weight: bold;
    color: #cd192e;
}
.info_block_article .article-categories .item.level0 {
    font-size: 15px;
}
.info_block_article .article-categories .item.level1 {
    margin-left: 20px;
}
.info_block_article .article-categories .item.level2 {
    margin-left: 40px;
}
.info_block_article .article-categories .item.level3 {
    margin-left: 60px;
}

@media screen and (max-width: 600px){
    .info_block_article .main_content_holder.catalog {
        display: flex;
        flex-flow: row wrap;
    }
    .info_block_article {
        padding: 0px 0px 0px 0px;
    }
    .info_block_article .subscription .content .body  {
        font-size: 30px;
        line-height: 34px;
        padding: 0px 30px 0px 30px;
    }
    .info_block_article .subscription .image_right {
        display: none;
    }
    .info_block_article .subscription .image_left {
        display: none;
    }
    .info_block_article .article-categories {
        width: 100%;
        border-radius: 20px 20px 0px 0px;
    }
    .info_block_article .main_content_holder.catalog .article-body {
        border-radius: 0px 0px 20px 20px;
    }
}




.article_large {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    padding: 40px 0px 0px 0px;
}
.article_large .large_image {
    display: flex;
    cursor: pointer;
    width: 50%;
    border-radius: 10px;
    overflow: hidden;
}
.article_large .large_image img {
    display: block;
    width: 100%;
}
.article_large .large_info {
    width: calc(50% - 40px);
}
.article_large .large_info h2 {
    padding: 0px;
    font-size: 32px;
    line-height: 38px;
    color: #252347;
    text-decoration: none;
}
.article_large .large_info .title {
    text-decoration: none;
}
.article_large .large_info .metadata {
    display: flex;
    flex-flow: row nowrap;
}
.article_large .large_info .metadata .category {
    display: block;
    padding: 2px 5px 2px 5px;
    border-radius: 4px;
    background: #05ADFF;
}
.article_large .large_info .metadata .category a {
    color: #ffffff;
}
.article_large .large_info .metadata .dot {
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    color: #5D6B7D;
    font-size: 20px;
    padding: 0px 10px 0px 10px;
}
.article_large .large_info .metadata .date {
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    color: #5D6B7D;
    font-size: 13px;
}
.article_large .large_info .snippet {
    color: #5D6B7D;
    font-size: 13px;
    line-height: 18px;
}
.article_large .large_info .snippet .read-more {
    display: block;
    margin: 10px 0px 0px 0px;
    color: #21C58E;
    font-weight: bold;
    text-decoration: none;
}
@media screen and (max-width: 600px){
    .article_large .large_image {
        width: 100%;
    }
    .article_large .large_info {
        width: 100%;
        padding-top: 20px;
    }
}

.article_large2_holder {
    display: flex;
    flex-flow: row wrap;
}
.article_large2 {
    display: block;
    padding: 40px 0px 0px 0px;
    width: calc(50% - 20px);
}
.article_large2:nth-child(2n) {
    margin-left: 40px;
}
.article_large2 .large_image {
    display: flex;
    cursor: pointer;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
}
.article_large2 .large_image img {
    display: block;
    width: 100%;
}
.article_large2 .large_info {
    width: 100%;
    padding: 20px 0px 0px 0px;
}
.article_large2 .large_info h2 {
    padding: 10px 0px 0px 0px;
    font-size: 18px;
    line-height: 24px;
    color: #252347;
}
.article_large2 .large_info .title {
    text-decoration: none;
}
.article_large2 .large_info .metadata {
    display: flex;
    flex-flow: row nowrap;
}
.article_large2 .large_info .metadata .category {
    display: block;
    padding: 2px 5px 2px 5px;
    border-radius: 4px;
    background: #05ADFF;
}
.article_large2 .large_info .metadata .category a {
    color: #ffffff;
}
.article_large2 .large_info .metadata .dot {
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    color: #5D6B7D;
    font-size: 20px;
    padding: 0px 10px 0px 10px;
}
.article_large2 .large_info .metadata .date {
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    color: #5D6B7D;
    font-size: 13px;
}
.article_large2 .large_info .snippet {
    padding: 10px 0px 0px 0px;
    color: #5D6B7D;
    font-size: 13px;
    line-height: 18px;
}
.article_large2 .large_info .snippet .read-more {
    display: block;
    margin: 5px 0px 0px 0px;
    color: #21C58E;
    font-weight: bold;
    text-decoration: none;
}
@media screen and (max-width: 600px){
    .article_large2 {
        width: 100%;
        margin-left: 0px !important;
    }
}


.section_headline,
.info_block_article .section_headline h1{
    flex-flow: row wrap;
    justify-content: space-between;
    padding: 0px 0px 0px 0px;
    font-size: 38px;
    line-height: 44px;
    font-weight: bold;
    color: #252347;
}
.section_headline .view-all {
    display: block;
    float: right;
    font-size: 16px;
    font-weight: bold;
    line-height: 32px;
    color: #3D59FA;
    text-decoration: none;
    border-radius: 100px;
    padding: 5px 30px 5px 30px;
    background: #EBF2FF;
}








.info_block_article p {
    display: block;
    padding: 17px 0px 0px 0px;
    font-size: 17px;
    line-height: 26px;
    color: #222222;
}
.info_block_article li {
    font-size: 17px;
    line-height: 26px;
    color: #222222;
}
.info_block_article h1,
.info_block_article h2,
.info_block_article h3,
.info_block_article h4 {
    display: block;
    padding: 20px 0px 0px 0px;
    font-size: 20px;
    line-height: 26px;
    color: #222222;
}
.info_block_article .article-body {
    width: calc(100% - 280px);
    padding: 20px 0px 0px 40px;
    background: #ffffff;
}
.info_block_article .article-body.blog-article {
    width: 100%;
    padding: 20px 50px 40px 50px;
    background: #ffffff;
}
.info_block_article .article-body img {
    width: 100%;
}
.info_block_article .path {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    font-size: 15px;
    line-height: 20px;
}
.info_block_article .path a {
    font-size: 15px;
    text-decoration: none;
    /*color: #5D6B7D;*/
}
.info_block_article .path a:hover {
    /*color: #21C58E;*/
}
.info_block_article .path .dot {
    width: 6px;
    height: 6px;
    margin: 0px 15px 0px 15px;
    border-radius: 20px;
    background: #3B7EFF;
}
.info_block_article .header {
    padding: 0px 0px 0px 0px;
    width: 100%;
}
.info_block_article .header,
.info_block_article .header * {
    font-size: 40px;
    line-height: 45px;
    color: #252347;
}
.info_block_article .header .selected {
    text-decoration: underline;
}
.info_block_article .header sup.count {
    padding: 0px 8px 0px 8px;
    margin-left: 2px;
    font-size: 16px;
    border-radius: 100px;
    color: #ffffff;
    background: #407BFF;
}

.info_block_article .meta {
    padding: 10px 0px 0px 0px;
    color: #5D6B7D;
}
.info_block_article .image {
    border-radius: 20px 20px 0px 0px;
    overflow: hidden;
}
.info_block_article .image img {
    display: block;
    width: 100%;
    height: auto;
}
.info_block_article .blog_categories {
    display: flex;
    padding: 50px 0px 0px 0px;
    width: 100%;
    justify-content: space-between;
}
.info_block_article .blog_categories .blog_category {
    display: flex;
    cursor: pointer;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
    width: calc(100% / 3);
}
.info_block_article .blog_categories .blog_category svg {
    max-height: 100px;
    color: #888888;
}
.info_block_article .blog_categories .blog_category .category_name {
    padding: 10px 0px 0px 0px;
    font-size: 18px;
}
.info_block_article .article-body .delimiter_holder {
    text-align: center;
    padding: 24px 0px 0px 0px;
    font-size: 36px;
    letter-spacing: 0.2em;
}
.info_block_article .article-body h1 {
    display: block;
    font-size: 36px;
    font-weight: 500;
    line-height: 1.3em;
}
.info_block_article .article-body h2 {
    display: block;
    font-size: 2.2em;
    line-height: 1.3em;
    padding: 50px 0px 0px 0px;
}
.info_block_article .article-body h3 {
    display: block;
    padding: 50px 0px 0px 0px;
    font-size: 1.8em;
    line-height: 1.3em;
}
.info_block_article .article-body h4 {
    display: block;
    padding: 50px 0px 0px 0px;
    font-size: 1.6em;
    line-height: 1.3em;
}
.info_block_article .article-body h5 {
    display: block;
    padding: 50px 0px 0px 0px;
    font-size: 1.6em;
    line-height: 1.3em;
}
.info_block_article .article-body .content,
.info_block_article .article-body p {
    display: block;
    padding: 15px 0px 0px 0px;
    font-size: 18px;
    line-height: 29px;
}
.info_block_article .article-body ul,
.info_block_article .article-body ol {
    display: block;
    padding: 15px 0px 0px 0px;
}
.info_block_article .article-body li{
    margin: 10px 0 10px 2em;
}
.info_block_article .article-body .checklist_holder {
    display: block;
    padding: 15px 0px 0px 0px;
}
.info_block_article .article-body .checklist_holder input[type="checkbox"] {
    display: inline-block;
    width: 18px;
    height: 18px;
    vertical-align: middle;
    margin: -2px 5px 0px 0px;
}
.info_block_article .article-body .inline-code {
    display: inline-block;
    font-family: monospace;
    line-height: 20px;
    border: 1px solid #eeeeee;
    border-radius: 4px;
    background: #f8f8f8;
    margin: 0px 2px 0px 2px;
    padding: 2px 5px 2px 5px;
}
.info_block_article .article-body .image_holder {
    display: block;
    width: 100%;
    padding: 15px 0px 0px 0px;
    text-align: center;
}
.info_block_article .article-body .image_holder img {
    display: inline-block;
    max-width: 100%;
}
.info_block_article .article-body .image_holder .caption {
    font-size: 12px;
    color: #888888;
}
.info_block_article .article-body .video_holder {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
}
.info_block_article .article-body .video_holder iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.info_block_article .article-body table {
    margin: 15px 0px 0px 0px;
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #dddddd;
}
.info_block_article .article-body td,
.info_block_article .article-body th {
    padding: 5px;
    font-size: 15px;
    line-height: 17px;
    border: 1px solid #dddddd;
}
.info_block_article .article-body .code {
    font-family: Consolas, Courier, Monospace;
    color: #000088;
    margin-top: 15px;
    padding: 0px 0px 0px 20px;
    border-left: 5px solid #000066;
}
.info_block_article .article-body .quote {
    margin-top: 15px;
    padding: 0px 0px 0px 20px;
    color: #666666;
    border-left: 5px solid #888888;
}
.info_block_article .article-body a {
    color: #346eb8;
    border-bottom: 1px solid #bfd3ed;
    text-decoration: none;
    word-wrap: break-word;
}
.info_block_article .article-body a:hover {
    color: #cd192e;
    border-bottom: 1px solid #f6b4bc;
}
.info_block_article .article-body .delimiter_holder {
    text-align: center;
    padding: 24px 0px 0px 0px;
    font-size: 36px;
    letter-spacing: 0.2em;
}
@media screen and (max-width: 700px){
    .info_block_article .article-body.blog-article {
        padding: 20px;
    }
    .info_block_article .article-body p {
        font-size: 15px;
        line-height: 22px;
    }
}
@media screen and (max-width: 600px){
    .info_block_article .article-body.blog-article {
        padding: 20px;
    }
    .info_block_article .article-body p {
        font-size: 15px;
        line-height: 22px;
    }
}
@media screen and (max-width: 500px){
    .info_block_article .header,
    .info_block_article .header * {
        font-size: 28px;
        line-height: 35px;
    }
}




#main_detailed {
    padding: 30px 0px 0px 0px;
}
#main_detailed .main_content_holder {
    display: flex;
    flex-flow: row wrap;
    max-width: 1200px;
    width: 100%;
    margin: 0px auto;
    justify-content: space-between;
}
#main_detailed .article-categories {
    display: block;
    padding: 30px;
    width: 280px;
    border-radius: 20px 0px 0px 20px;
    border: 1px solid #e8e8e8;
    border-width: 1px 0px 1px 1px;
    background: #f4f4f4;
}
#main_detailed .article-categories .item {
    display: inline-block;
    padding: 1px 0px 1px 0px;
    white-space: nowrap;
    overflow: hidden;
    margin-top: 5px;
    text-decoration: none;
    font-size: 13px;
    border-bottom: 1px solid #bfd3ed;
}
#main_detailed .article-categories .item:hover {
    color: #cd192e;
    border-bottom: 1px solid #f6b4bc;
}
#main_detailed .article-categories .item.selected {
    font-weight: bold;
    color: #cd192e;
    border-bottom: 1px solid #f6b4bc;
}
#main_detailed .article-categories .item.level0 {
    font-size: 18px;
}
#main_detailed .article-categories .item.level1 {
    margin-left: 20px;
}
#main_detailed .article-categories .item.level2 {
    margin-left: 40px;
}
#main_detailed .article-categories .item.level3 {
    margin-left: 60px;
}
#main_detailed .article-body {
    display: block;
    position: relative;
    z-index: 10;
    padding: 40px 60px 80px 60px;
    max-width: 840px;
    font-size: 18px;
    line-height: 29px;
    color: #000000;
    background: #ffffff;
    word-break: break-word;
    width: calc(100% - 280px);
    max-width: 2000px;
    margin: 0px;
    border: 1px solid #e8e8e8;
    border-width: 1px 1px 1px 0px;
    border-radius: 0px 20px 20px 0px;
}
@media screen and (max-width: 800px){
    #main_detailed {
        padding: 30px 10px 0px 10px;
    }
    #main_detailed .article-body {
        width: 100%;
        padding: 15px;
        border-radius: 0px 0px 20px 20px;
        border-width: 1px;
    }
    #main_detailed .article-categories {
        width: 100%;
        border-width: 1px;
        border-radius: 20px 20px 0px 0px;
    }
}
#main_detailed .article-body .share-social-media {
    display: block;
    text-align: center;
    padding: 100px 0px 0px 0px;
}
#main_detailed .article-body .share-social-media .title {
    display: block;
    color: #666666;
    padding: 0px 0px 20px 0px;
}
#main_detailed .article-body .share-social-media .social-link {
    display: inline-block;
    width: 35px;
    height: 35px;
    margin: 0px 10px 0px 10px;
    border-radius: 4px;
    border-bottom: 0px;
}
#main_detailed.help .main_content_holder {
    display: flex;
    justify-content: space-between;
}
#main_detailed.help .article-body {
    width: calc(100% - 280px);
    max-width: 2000px;
    margin: 0px;
    border-radius: 0px 20px 20px 0px;
}
#main_detailed .article-body .path {
    display: flex;
    flex-flow: row wrap;
    line-height: 18px;
    font-size: 16px;
    padding: 0px 0px 20px 0px;
}
#main_detailed .article-body .path > div,
#main_detailed .article-body .path a {
    display: block;
}
#main_detailed .article-body .path .dot {
    display: inline-block;
    width: 4px;
    height: 4px;
    background: #444444;
    border-radius: 100px;
    margin: 8px 12px 0px 12px;
}
#main_detailed .article-body .path .last {
    color: #888888;
}
#main_detailed .article-body .meta {
    display: block;
    float: right;
    font-size: 14px;
    font-size: 16px;
    line-height: 18px;
    color: #828281;
}
#main_detailed .article-body .meta .date,
#main_detailed .article-body .meta .views,
#main_detailed .article-body .meta .dot {
    display: inline-block;
}
#main_detailed .article-body .meta .dot {
    padding: 0px 5px 0px 5px;
}
#main_detailed .article-body .meta .views {
    padding: 0px 0px 0px 25px;
    background: url(../images/icon_eye.svg) 0px 1px no-repeat;
}
#main_detailed .article-body h1 {
    display: block;
    font-size: 36px;
    font-weight: 500;
    line-height: 1.3em;
}
#main_detailed .article-body h2 {
    display: block;
    font-size: 1.5em;
    line-height: 1.3em;
    padding: 15px 0px 0px 0px;
}
#main_detailed .article-body h3 {
    display: block;
    padding: 15px 0px 0px 0px;
    font-size: 1.25em;
    line-height: 1.3em;
}
#main_detailed .article-body p {
    display: block;
    padding: 15px 0px 0px 0px;
    font-size: 18px;
    line-height: 29px;
}
#main_detailed .article-body ul,
#main_detailed .article-body ol {
    display: block;
    padding: 15px 0px 0px 0px;
}
#main_detailed .article-body li{
    margin: 10px 0 10px 2em;
}
#main_detailed .article-body .checklist_holder {
    display: block;
    padding: 15px 0px 0px 0px;
}
#main_detailed .article-body .checklist_holder input[type="checkbox"] {
    display: inline-block;
    width: 18px;
    height: 18px;
    vertical-align: middle;
    margin: -2px 5px 0px 0px;
}
#main_detailed .article-body .inline-code {
    display: inline-block;
    font-family: monospace;
    line-height: 20px;
    border: 1px solid #eeeeee;
    border-radius: 4px;
    background: #f8f8f8;
    margin: 0px 2px 0px 2px;
    padding: 2px 5px 2px 5px;
}
#main_detailed .article-body .image_holder {
    display: block;
    width: 100%;
    padding: 15px 0px 0px 0px;
    text-align: center;
}
#main_detailed .article-body .image_holder img {
    display: inline-block;
    max-width: 100%;
}
#main_detailed .article-body .image_holder .caption {
    font-size: 12px;
    color: #888888;
}
#main_detailed .article-body .video_holder {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
}
#main_detailed .article-body .video_holder iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
#main_detailed .article-body table {
    margin: 15px 0px 0px 0px;
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #dddddd;
}
#main_detailed .article-body td,
#main_detailed .article-body th {
    padding: 5px;
    font-size: 15px;
    line-height: 17px;
    border: 1px solid #dddddd;
}
#main_detailed .article-body .code {
    font-family: Consolas, Courier, Monospace;
    color: #000088;
    margin-top: 15px;
    padding: 0px 0px 0px 20px;
    border-left: 5px solid #000066;
}
#main_detailed .article-body .quote {
    margin-top: 15px;
    padding: 0px 0px 0px 20px;
    color: #666666;
    border-left: 5px solid #888888;
}
#main_detailed .article-body a {
    color: #346eb8;
    border-bottom: 1px solid #bfd3ed;
    text-decoration: none;
}
#main_detailed .article-body a:hover {
    color: #cd192e;
    border-bottom: 1px solid #f6b4bc;
}
#main_detailed .article-body .delimiter_holder {
    text-align: center;
    padding: 15px 0px 0px 0px;
    font-size: 36px;
    letter-spacing: 0.2em;
}
#main_detailed .article-body .author {
    display: flex;
    flex-flow: row wrap;
}
#main_detailed .article-body .author .photo {
    width: 60px;
    height: 60px;
    border-radius: 100px;
    border: 2px solid #cccccc;
    overflow: hidden;
}
#main_detailed .article-body .author .photo img {
    width: 100%;
}
#main_detailed .article-body .author .info {
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    padding: 0px 0px 0px 13px;
    font-size: 14px;
    line-height: 18px;
}
#main_detailed .article-body .author .info .name {
    font-weight: bold;
    text-decoration: none;
    border-bottom: 0px none;
}
#main_detailed .article-body .author .readtime {
    display: flex;
    flex-grow: 1;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: flex-end;
    font-size: 14px;
}
#main_detailed .article-reset-arrow {
    position: fixed;
    display: block;
    z-index: 1000;
    cursor: pointer;
    width: 50px;
    height: 50px;
    padding: 10px;
    right: 20px;
    bottom: 100px;
    color: #555555;
    border-radius: 4px;
    background: #ffffff;
}
@media screen and (max-width: 500px){
    #main_detailed .article-body .author .readtime {
        align-items: flex-start;
        width: 100%;
        padding-top: 10px;
    }
    #main_detailed .article-body p {
        font-size: 15px;
        line-height: 24px;
    }

    #main_detailed .article-body h1,
    #main_detailed .article-body h2,
    #main_detailed .article-body h3,
    #main_detailed .article-body h4 {
        font-size: 24px;
        font-weight: bold;
        line-height: 1.3em;
    }
}



#main_search {
    padding: 30px 0px 0px 0px;
}
#main_search input[type=text],
#main_search input[type=search]{
    position: relative;
    width: 100%;
    height: 72px;
    z-index: 10;
    padding: 25px 0px 25px 74px;
    border-radius: 150px;
    border: 0px none;
    font-size: 20px;
    font-weight: bold;
    border: 1px solid #eeeeee;
    background: #ffffff url(../images/search.svg) 30px 22px no-repeat;
}
#main_search input[type=text]::placeholder {
    color: #aaaaaa;
    font-weight: normal;
}
#main_search input[type=text]::-webkit-contacts-auto-fill-button,
#main_search input[type=text]::-webkit-credentials-auto-fill-button,
#main_search input[type=search]::-webkit-contacts-auto-fill-button,
#main_search input[type=search]::-webkit-credentials-auto-fill-button {
    visibility: hidden;
    position: absolute;
    right: 0;
}
#main_search .search-popup {
    display: none;
    position: relative;
    margin-top: -36px;
    z-index: 5;
    width: 100%;
    font-size: 17px;
    padding: 40px 36px 36px 28px;
    border-radius: 0px 0px 36px 36px;
    background: #ffffff;
}
#main_search .search-popup .item {
    display: block;
    padding: 5px;
}
#main_search .search-popup .item a {
    line-height: 20px;
    color: #346eb8;
    border-bottom: 1px solid #bfd3ed;
}
#main_search .search-popup .item a:hover {
    color: #cd192e;
    border-bottom: 1px solid #f6b4bc;
}
#main_search .search-popup .item a:before {
    display: block;
    float: left;
    width: 6px;
    height: 6px;
    border-radius: 100px;
    margin: 7px 6px 0px 0px;
    content: "";
    background: #dddddd;
}







.systems_block {
    padding: 150px 0px 0px 0px;
}
.systems_block .main_content_holder {
}
.systems_block .header {
    position: relative;
    display: inline-block;
}
.systems_block .header * {
    position: relative;
    z-index: 10;
    width: 100%;
    font-size: 40px;
    font-weight: bold;
    line-height: 50px;
    text-align: center;
}
.systems_block .header .addon {
    position: absolute;
    display: block;
    left: 0px;
    top: 0px;
    z-index: 5;
    width: 180px;
    height: 10px;
    margin: 35px 0px 0px 0px;
    background: #21C58E;
}
.systems_block .systems {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    padding: 40px 0px 0px 0px;
}
.systems_block .systems .system {
    display: block;
    position: relative;
    width: calc((100% - 60px) / 4);
    padding: 20px;
    margin: 20px 0px 0px 20px;
    border-radius: 20px;
    background: #ffffff;
}
.systems_block .systems .system.hidden {
    display: none;
}
.systems_block .systems .system:nth-child(4n + 1) {
    margin: 20px 0px 0px 0px;
}
.systems_block .systems .system:hover {
    box-shadow: 0px 0px 15px rgba(12, 66, 185, 0.1);
}
.systems_block .systems .system:hover .name {
    color: #21C58E;
}
.systems_block .systems .system .logo {
    display: block;
    text-align: center;
    height: 95px;
    border-bottom: 1px solid #EEF2FF;
}
.systems_block .systems .system .name {
    display: block;
    margin-top: 20px;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    color: #252347;
}
.systems_block .systems .system .description {
    display: block;
    margin-top: 20px;
    text-align: center;
    font-size: 14px;
    line-height: 18px;
    color: #818C9F;
    height: 110px;
    overflow: hidden;
}
.systems_block .systems .system .overlay {
    display: block;
    position: absolute;
    width: calc(100% - 40px);
    height: 25px;
    margin-top: -25px;
    background: linear-gradient(transparent 0%, #ffffff 100%);
}
.systems_block .systems .system .coming_soon {
    display: block;
    width: 90px;
    padding: 2px 7px 2px 7px;
    margin: -8px auto;
    border-radius: 10px;
    font-size: 11px;
    font-weight: normal;
    text-align: center;
    line-height: 12px;
    color: #9fa6b6;
    background: #eef1fa;
}
.systems_block .show-all {
    display: block;
    padding: 40px 0px 0px 0px;
    text-align: center;
}
.systems_block .show-all a {
    display: inline-block;
    padding: 15px 40px 15px 40px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 15px;
    color: #3D59FA;
    background: #EBF2FF;
}
@media screen and (max-width: 1000px){
    .systems_block .systems .system {
        width: calc((100% - 40px) / 3);
    }
    .systems_block .systems .system:nth-child(4n + 1) {
        margin: 20px 0px 0px 20px;
    }
    .systems_block .systems .system:nth-child(3n + 1) {
        margin: 20px 0px 0px 0px;
    }
    .systems_block .header .addon {
        display: none;
    }
}
@media screen and (max-width: 700px){
    .systems_block {
        padding: 100px 0px 0px 0px;
    }
    .systems_block .header * {
        font-size: 32px;
        line-height: 38px;
    }
    .systems_block .systems {
        padding: 20px 0px 0px 0px;
    }
    .systems_block .systems .system:nth-child(n) {
        width: calc((100% - 20px) / 2);
        margin: 20px 0px 0px 20px;
    }
    .systems_block .systems .system:nth-child(2n + 1) {
        margin: 20px 0px 0px 0px;
    }
}
@media screen and (max-width: 500px){
    .systems_block {
        padding: 80px 0px 0px 0px;
    }
    .systems_block .header * {
        font-size: 32px;
        line-height: 38px;
    }
    .systems_block .systems .system:nth-child(n) {
        width: 100%;
        margin: 20px 0px 0px 0px;
    }
    .systems_block .systems {
        padding: 20px 0px 0px 0px;
    }
}




.systems_compact_block {
    padding: 150px 0px 0px 0px;
}
.systems_compact_block .main_content_holder {
}
.systems_compact_block .header {
    position: relative;
    display: inline-block;
}
.systems_compact_block .header * {
    position: relative;
    z-index: 10;
    width: 100%;
    font-size: 40px;
    font-weight: bold;
    line-height: 50px;
    text-align: center;
}
.systems_compact_block .header .addon {
    position: absolute;
    display: block;
    left: 0px;
    top: 0px;
    z-index: 5;
    width: 180px;
    height: 10px;
    margin: 35px 0px 0px 0px;
    background: #21C58E;
}
.systems_compact_block .systems {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    padding: 40px 0px 0px 0px;
}
.systems_compact_block .systems .system {
    display: block;
    width: calc((100% - 80px) / 5);
    padding: 10px 0px 10px 0px;
    margin: 20px 0px 0px 20px;
    border-radius: 20px;
    background: #ffffff;
}
.systems_compact_block .systems .system.hidden {
    display: none;
}
.systems_compact_block .systems .system:nth-child(5n + 1) {
    margin: 20px 0px 0px 0px;
}
.systems_compact_block .systems .system:hover {
    box-shadow: 0px 0px 15px rgba(12, 66, 185, 0.1);
}
.systems_compact_block .systems .system .logo {
    display: block;
    text-align: center;
}
.systems_compact_block .show-all {
    display: block;
    padding: 40px 0px 0px 0px;
    text-align: center;
}
.systems_compact_block .show-all a {
    display: inline-block;
    padding: 15px 40px 15px 40px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 15px;
    color: #3D59FA;
    background: #EBF2FF;
}
@media screen and (max-width: 1000px){
    .systems_compact_block .systems .system {
        width: calc((100% - 40px) / 3);
    }
    .systems_compact_block .systems .system:nth-child(4n + 1) {
        margin: 20px 0px 0px 20px;
    }
    .systems_compact_block .systems .system:nth-child(3n + 1) {
        margin: 20px 0px 0px 0px;
    }
    .systems_compact_block .header .addon {
        display: none;
    }
}
@media screen and (max-width: 700px){
    .systems_compact_block .systems .system:nth-child(n) {
        width: calc((100% - 20px) / 2);
        margin: 20px 0px 0px 20px;
    }
    .systems_compact_block .systems .system:nth-child(2n + 1) {
        margin: 20px 0px 0px 0px;
    }
}
@media screen and (max-width: 500px){
    .systems_compact_block {
        padding: 100px 0px 0px 0px;
    }
    .systems_compact_block .systems .system:nth-child(n) {
        width: 100%;
        margin: 20px 0px 0px 0px;
    }
}


.page_block_faq {
    color: #252347;
}
.page_block_faq .main_content_holder {
    max-width: 800px;
}
.page_block_faq .page_block_faq_header {
    padding-bottom: 10px;
}
.page_block_faq .page_block_faq_header * {
    font-size: 28px;
    font-weight: bold;
    line-height: 34px;
    text-align: center;
}
.page_block_faq .page_block_faq_item {
    margin-top: 10px;
    background: #ffffff;
    border: 1px solid #f0f0f0;
    border-radius: 10px;
}
.page_block_faq .page_block_faq_question {
    cursor: pointer;
    padding: 20px 40px 20px 20px;
    background: 98% 50% url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path fill="%23cccccc" d="M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z"></path></svg>') no-repeat;
    background-size: 20px 20px;
}
.page_block_faq .page_block_faq_question h3 {
    padding: 0px;
    font-size: 16px;
}

.page_block_faq .page_block_faq_answer {
    max-height: 0px;
    overflow: hidden;
    transition: all 400ms;
}
.page_block_faq .page_block_faq_answer .text {
    padding: 0px 20px 20px 20px;
    font-size: 14px;
    line-height: 18px;
}
.page_block_faq .page_block_faq_answer .text ul {
    margin-left: 20px;
}
.page_block_faq .page_block_faq_item.open  {
    box-shadow: 0px 0px 15px rgba(0,0,0,0.1);
}
.page_block_faq .page_block_faq_item.open .page_block_faq_question  {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path fill="%23cccccc" d="M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z"></path></svg>');
}
.page_block_faq .page_block_faq_item.open .page_block_faq_answer {
    max-height: 500px;
}
@media screen and (max-width: 500px){
    .page_block_faq .page_block_faq_header * {
        text-align: center;
    }
    .page_block_faq .page_block_faq_question {
        background-position: 95% 50%;
    }
}




.payment_rates_block {
    padding: 150px 0px 0px 0px;
}
.payment_rates_block .main_content_holder {
}
.payment_rates_block .header {
    position: relative;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
}
.payment_rates_block .header .text {
    position: relative;
    z-index: 10;
    width: 100%;
    font-size: 40px;
    font-weight: bold;
    line-height: 50px;
}
.payment_rates_block .header .addon {
    position: absolute;
    display: block;
    left: 0px;
    top: 0px;
    z-index: 5;
    width: 137px;
    height: 10px;
    margin: 35px 0px 0px 0px;
    background: #21C58E;
}
.payment_rates_block .period_toggler {
    display: flex;
    height: 50px;
    padding: 5px;
    flex-flow: row nowrap;
    border-radius: 100px;
    box-shadow: 0px 0px 20px rgba(0,0,0,0.2);
    background: #ffffff;
}
.payment_rates_block .period_toggler a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 130px;
    font-size: 15px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 100px;
    color: #000000;
}
.payment_rates_block .period_toggler a.selected {
    color: #ffffff;
    background: #407BFF;
}
.payment_rates_block .discount {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: flex-start;
    min-width: 150px;
    text-align: right;
    font-size: 15px;
    font-weight: bold;
    color: #cc0000;
}
.payment_rates_block .discount .amount{
    padding-left: 7px;
}

.payment_rates_block .payment_rates_list {
    display: flex;
    flex-flow: column nowrap;
    margin-top: 40px;
    flex-flow: row wrap;
    border-radius: 40px;
    box-shadow: 10px 20px 70px rgba(7, 46, 117, 0.08);
    overflow: hidden;
    background: #ffffff;
}
.payment_rates_block .payment_rates_list .payment_rate {
    display: flex;
    flex-flow: column nowrap;
    width: calc(100% / 4);
    text-align: left;
    padding: 30px 0px 30px 30px;
    border-radius: 40px;
    background: #ffffff;
}
.payment_rates_block .payment_rates_list .payment_rate .name {
    height: 40px;
    font-weight: bold;
    font-size: 18px;
}
.payment_rates_block .payment_rates_list .payment_rate .popular {
    display: block;
    float: right;
    margin: -2px 30px 0px 0px;
    padding: 2px 10px 2px 10px;
    font-size: 12px;
    font-weight: normal;
    color: #ffffff;
    border-radius: 10px;
    background: #21C58E;
}
.payment_rates_block .payment_rates_list .payment_rate .price {
    display: flex;
    flex-flow: row nowrap;
    font-weight: bold;
    font-size: 44px;
    line-height: 44px;
}
.payment_rates_block .payment_rates_list .payment_rate .units {
    padding: 0px 0px 0px 5px;
    font-weight: normal;
    font-size: 16px;
}
.payment_rates_block .payment_rates_list .payment_rate .info {
    padding: 10px 0px 0px 0px;
    font-size: 16px;
}
.payment_rates_block .payment_rates_list .payment_rate .info.save {
    font-weight: bold;
    color: #bbbbbb;
}
.payment_rates_block .payment_rates_list .payment_rate .line {
    margin-top: 20px;
    height: 20px;
    border-top: 1px solid #EEF2FF;
}
.payment_rates_block .payment_rates_list .payment_rate .trial {
    color: #21C58E;
    font-size: 16px;
    font-weight: bold;
    height: 30px;
}
.payment_rates_block .payment_rates_list .payment_rate .features {
    font-size: 14px;
}
.payment_rates_block .payment_rates_list .payment_rate .features li {
    display: block;
    padding: 10px 0px 10px 25px;
    background: url(../images/rate_bullet.svg) 0px 50% no-repeat;
    background-size: 20px 20px;
}
.payment_rates_block .payment_rates_list .payment_rate .button_holder {
    display: flex;
    padding: 20px 30px 0px 0px;
    flex-flow: column nowrap;
    flex-grow: 1;
    justify-content: flex-end;
    align-items: flex-start;
}
.payment_rates_block .payment_rates_list .payment_rate .button_holder .free_trial {
    display: block;
    width: 80%;
    padding: 15px 13px 15px 13px;
    margin: 0px auto;
    font-weight: bold;
    font-size: 16px;
    text-align: center;
    text-decoration: none;
    color: #ffffff;
    background: #407BFF;
    border-radius: 50px;
}
.payment_rates_block .payment_rates_list .payment_rate.selected {
    border: 2px solid #407BFF;
}
.payment_rates_block .payment_rates_list .payment_rate:hover {
    color: #ffffff;
    background: #407BFF;
}
.payment_rates_block .payment_rates_list .payment_rate:hover .trial {
    color: #ffffff;
}
.payment_rates_block .payment_rates_list .payment_rate:hover .button_holder .free_trial {
    color: #3D59FA;
    background: #EBF2FF;
}

@media screen and (max-width: 1000px){
    .payment_rates_block .payment_rates_list .payment_rate {
        width: calc(100% / 2);
    }
}
@media screen and (max-width: 600px){
    .payment_rates_block {
        padding: 100px 0px 0px 0px;
    }
    .payment_rates_block .payment_rates_list .payment_rate {
        width: 100%;
    }
    .payment_rates_block .header {
        flex-flow: row wrap;
    }
    .payment_rates_block .period_toggler {
        margin-top: 20px;
    }
}


#cookie_confirmation_box .holder {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
}
#cookie_confirmation_box .button_holder {
    padding: 0px 0px 0px 10px;
}
@media screen and (max-width: 600px){
    #cookie_confirmation_box > .holder {
        flex-flow: column nowrap;
    }
    #cookie_confirmation_box .button_holder {
        padding: 10px 0px 0px 0px;
    }
}



.registration_block {
    display: flex;
    flex-flow: row nowrap;
    width: 100%;
    min-height: 100%;
    overflow: hidden;
    position: relative;
}
.registration_block .feedback_block {
    display: flex;
    width: 40%;
    min-width: 300px;
    padding: 0px 20px 0px 20px;
    flex-direction: row-reverse;
}
.registration_block .feedback_holder {
    width: 100%;
    max-width: 360px;
    padding: 80px 0px 0px 0px;
}
.registration_block .feedback_block .logo {
    display: block;
    width: 220px;
    height: 55px;
    margin-top: -4px;
    background: url(../images/logo.svg) 0px 0px no-repeat;
}
.registration_block .registration_form {
    width: 60%;
    min-height: 600px;
    background: #ffffff;
}
.registration_block .registration_holder {
    width: 100%;
    max-width: 600px;
    padding: 30px 0px 0px 0px;
}
.registration_block .registration_holder .steps {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-around;
    color: #aaaaaa;
    font-size: 14px;
    height: 38px;
    border-bottom: 1px solid #eeeeee;
}
.registration_block .registration_holder .step_name {
    color: #aaaaaa;
    width: calc(100% / 3);
    text-align: center;
}
.registration_block .registration_holder .step_name.passed {
    color: #407bff;
}
.registration_block .registration_holder .steps .dot {
    padding: 5px 0px 0px 0px;
    width: 32px;
    margin: 0px auto;
}
.registration_block .registration_holder .header {
    position: relative;
    margin: 50px 50px 0px 50px;
}
.registration_block .registration_holder .header * {
    position: relative;
    z-index: 10;
    width: 100%;
    font-size: 34px;
    font-weight: bold;
    line-height: 50px;
}
.registration_block .registration_holder .header .addon {
    position: absolute;
    display: block;
    left: 0px;
    top: 0px;
    z-index: 5;
    width: 74px;
    height: 10px;
    margin: 32px 0px 0px 0px;
    background: #21C58E;
}
.registration_block .registration_holder .header .addon.v2 {
    width: 113px;
}
.registration_block .system_message .error {
    font-size: 17px;
    line-height: 20px;
    color: #cc0000;
}
.registration_block .system_message .success {
    font-size: 17px;
    color: #009900;
}

.registration_block .registration_holder .form {
    padding: 0px 50px 0px 50px;
}
.registration_block .registration_holder .form .control {
    display: flex;
    padding: 30px 0px 0px 0px;
    flex-flow: row wrap;
    justify-content: space-between;
}
.registration_block .registration_holder .form .control.invalid {
    border: 2px solid #ee4444;
    border-radius: 8px;
}
.registration_block .registration_holder .form .control_submit {
    display: block;
    padding: 35px 0px 35px 0px;
    text-align: right;
}
.registration_block .registration_holder .form input[type="text"],
.registration_block .registration_holder .form input[type="password"]{
    width: 100%;
    border: 1px solid #EBF2FF;
    border-radius: 8px;
    padding: 10px;
    height: 48px;
    font-size: 16px;
}
.registration_block .registration_holder .form .submit {
    display: inline-block;
    cursor: pointer;
    padding: 10px 50px 10px 50px;
    height: 48px;
    color: #ffffff;
    font-weight: bold;
    font-size: 16px;
    background: #21C58E;
    border: 0px;
    border-radius: 100px;
}
.registration_block .registration_holder .delimiter_or {
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    padding: 30px 0px 0px 0px;
    font-size: 17px;
    font-weight: bold;
    color: #555555;
}
.registration_block .registration_holder .login_buttons {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    padding: 30px 0px 0px 0px;
}
.registration_block .registration_holder .login_button {
    display: flex;
    cursor: pointer;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: center;
    width: calc(50% - 10px);
    height: 48px;
    color: #000000;
    font-size: 16px;
    border-radius: 8px;
    background: #EBF2FF;
}
.registration_block .registration_holder .text_message {
    display: block;
    padding: 40px 0px 0px 50px;
    font-size: 17px;
    line-height: 24px;
}
@media screen and (max-width: 600px){
    .registration_block .registration_holder .header {
        text-align: center;
    }
    .registration_block .registration_holder .header * {
        font-size: 28px;
    }
    .registration_block .registration_holder .login_buttons {
        padding: 10px 0px 0px 0px;
    }
    .registration_block .registration_holder .login_button {
        width: 100%;
        margin-top: 10px;
    }
    .registration_block .registration_holder .header {
        margin: 10px 30px 0px 30px;
    }
    .registration_block .registration_holder .text_message {
        padding: 40px 30px 0px 30px;
    }
    .registration_block .registration_holder .form .control_submit {
        text-align: center;
    }
}
@media screen and (max-width: 900px){
    .registration_block .registration_holder .login_button {
        padding-left: 20px;
    }
}
@media screen and (max-height: 800px) {
    .registration_block .feedback_holder {
        padding: 50px 0px 0px 0px;
    }
    .registration_block .registration_holder {
        padding: 0px;
    }
    .registration_block .registration_holder .delimiter_or {
        padding: 25px 0px 10px 0px;
    }
    .registration_block .registration_holder .form .control {
        padding: 10px 0px 0px 0px;
    }
    .registration_block .registration_holder .form .control_submit {
        padding: 15px 0px 10px 0px;
    }
}


.registration_block .feedback_offset {
    padding-top: 130px;
}
.registration_block .feedback_comment {
    max-width: 300px;
    position: absolute;
}
.registration_block .feedback_comment .client {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
}
.registration_block .feedback_comment .client .photo {
    border-radius: 100px;
    overflow: hidden;
    min-width: 80px;
    min-height: 80px;
    width: 80px;
    height: 80px;
}
.registration_block .feedback_comment .client .photo img {
    width: 100%;
}
.registration_block .feedback_comment .client .name {
    font-size: 20px;
    line-height: 24px;
    padding-left: 20px;
}
.registration_block .feedback_comment .comment {
    padding: 20px 0px 0px 0px;
    font-size: 14px;
    line-height: 20px;
    color: #252347;
}
@media screen and (max-width: 800px){
    .registration_block .feedback_offset {
        padding-top: 60px;
    }
    .registration_block .feedback_comment {
        max-width: 250px;
    }
}
@media screen and (max-width: 670px){
    .registration_block .feedback_block {
        display: none;
    }
    .registration_block .registration_form {
        width: 100%;
        background: #ffffff;
    }
}
@keyframes client_comment_hide {
    0% {
        margin-left: 0px;
        opacity: 1.0;
    }
    100% {
        margin-left: -500px;
        opacity: 0.0;
    }
}
@keyframes client_comment_show {
    0% {
        margin-top: 300px;
        opacity: 0.0;
    }
    100% {
        margin-top: 0px;
        opacity: 1.0;
    }
}


.signup_appsumo{
    margin: 60px auto 60px auto;
    padding: 40px;
    width: 100%;
    max-width: 450px;
    border: 2px solid #cccccc;
    background: #ffffff;
}
.signup_appsumo .collaboration_logos {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 400px;
    margin: 0px auto;
}
.signup_appsumo .collaboration_logos .logo_apix {
    display: block;
    max-width: 400px;
    width: calc((100% - 60px) / 2);
    height: 60px;
    border-radius: 4px;
    background: #e5e5ff url(../images/logo.svg) 50% 50% no-repeat;
    background-size: 80%;
}
.signup_appsumo .collaboration_logos .logo_appsumo {
    display: block;
    max-width: 400px;
    width: calc((100% - 60px) / 2);
    height: 60px;
    border-radius: 4px;
    background: #ffbc00 url(../images/appsumo-logo.svg) 50% 50% no-repeat;
    background-size: 80%;
}
.signup_appsumo .collaboration_logos .logo_with {
    font-size: 16px;
    font-weight: bold;
}
.signup_appsumo .greetings {
    display: block;
    padding: 40px 0px 20px 0px;
    text-align: center;
}
.signup_appsumo .greetings h2 {
    display: block;
    padding: 0px 0px 10px 0px;
    font-size: 30px;
    line-height: 30px;
    color: #222222;
}
.signup_appsumo .greetings p {
    display: block;
    font-size: 18px;
    line-height: 24px;
    color: #666666;
}
.signup_appsumo .form {
    max-width: 800px;
    margin: 0px auto;
}
.signup_appsumo .form .control {
    padding: 20px 0px 0px 0px;
}
.signup_appsumo .form .control label {
    display: block;
    font-size: 16px;
    line-height: 18px;
    padding: 0px 0px 4px 0px;
}
.signup_appsumo .form input[type=text],
.signup_appsumo .form input[type=password],
.signup_appsumo .form textarea {
    display: block;
    padding: 10px;
    border: 1px solid #cccccc;
    border-radius: 3px;
    width: 100%;
}
.signup_appsumo .form .invalid input[type=text],
.signup_appsumo .form .invalid .validaton_status,
.signup_appsumo .form .invalid textarea {
    border: 2px solid #ee0000;
}
.signup_appsumo .form .submit {
    display: inline-block;
    cursor: pointer;
    width: 220px;
    height: 55px;
    border-radius: 100px;
    border: 0px none;
    font-size: 16px;
    font-weight: 600;
    color: #000000;
    background: #ffe131;
}


.integration_catalog {
    display: block;
    padding: 50px 0px 0px 0px;
    background: #ffffff;
}
.integration_catalog .main_content_holder {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
}
.integration_catalog .header {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    padding: 20px 0px 20px 0px;
    width: 100%;
}
.integration_catalog .header input {
    width: calc(100% - 360px);
    border: 1px solid #cccccc;
    padding: 10px 20px 10px 20px;
    font-size: 18px;
    border-radius: 100px;
}
.integration_catalog .header .types {
    display: flex;
    flex-flow: row nowrap;
    width: 340px;
    height: 43px;
    padding: 5px;
    border-radius: 100px;
    box-shadow: 0px 0px 20px rgb(0 0 0 / 20%);
    background: #ffffff;
}
.integration_catalog .header .types a {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: bold;
    width: calc(100% / 3);
    border-radius: 100px;
    text-decoration: none;
    color: #444444;
}
.integration_catalog .header .types a.selected {
    color: #ffffff;
    background: #407BFF;
}
.integration_catalog .header > .text{
    display: block;
    width: 280px;
    padding: 20px 0px 10px 0px;
    margin: 0px auto;
    border-bottom: 1px solid #eeeeee;
    text-align: center;
    font-size: 18px;
}
.integration_catalog .catalog {
    width: 230px;
    color: #0a1b47;
    font-size: 18px;
}
.integration_catalog .catalog .title {
    font-size: 24px;
    font-weight: bold;
    line-height: 30px;
    color: #5b7b94;
}
.integration_catalog .catalog .item {
    display: block;
    padding: 5px;
    margin: 10px 0px 0px 0px;
}
.integration_catalog .catalog .item a {
    display: inline-block;
    padding-bottom: 3px;
    font-size: 14px;
    color: #346eb8;
    border-bottom: 1px solid #bfd3ed;
    text-decoration: none;
}
.integration_catalog .catalog .item.selected a {
    color: #cd192e;
    border-bottom: 1px solid #f6b4bc;
    /*background: #C9C1FB;*/
}
.integration_catalog .catalog .item.level0 {
    font-weight: bold;
}
.integration_catalog .catalog .item.level0:before {
    display: block;
    float: left;
    width: 6px;
    height: 6px;
    border-radius: 100px;
    margin: 6px 6px 0px 0px;
    content: "";
    background: #dddddd;
}
.integration_catalog .catalog .item.level0.selected:before {
    background: #cd192e;
}
.integration_catalog .logo_list {
    display: block;
    position: relative;
    flex-flow: row wrap;
    width: calc(100% - 250px);
}
.integration_catalog .logo_list .title {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    line-height: 30px;
    color: #5b7b94;
}
.integration_catalog .logo_list form {
    width: 100%;
}
.integration_catalog .logo_list form input  {
    width: 100%;
    height: 75px;
    padding: 3px 0px 0px 50px;
    border-radius: 100px;
    border: 0px none;
    box-shadow: 0px 0px 2px rgba(0,0,0,0.1);
    font-size: 18px;
}
.integration_catalog .logo_list .group {
    padding: 30px 0px 10px 0px;
    width: 100%;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    color: #4b5879;
    text-align: center;
}
.integration_catalog .logo_list .logo_holder {
    position: relative;
    display: flex;
    width: 100%;
    flex-flow: row wrap;
}
.integration_catalog .logo_list .logo_frame {
    position: relative;
    width: calc(25% - 6px);
    margin: 7px 3px 0px 3px;
    border-radius: 8px;
    overflow: hidden;
    background: #ffffff;
}
.integration_catalog .logo_list .logo_frame .soon_holder {
    position: absolute;
    display: block;
    width: 1px;
    left: 50%;
    margin: 8px auto;
}
.integration_catalog .logo_list .logo_frame .coming_soon {
    display: block;
    width: 120px;
    text-align: center;
    line-height: 12px;
    padding: 2px 7px 2px 7px;
    margin: 0px 0px 0px -60px;
    border-radius: 10px;
    font-size: 11px;
    color: #9fa6b6;
    background: #eef1fa;
}
.integration_catalog .logo_list .logo_frame:hover {
    box-shadow: 0px 0px 3px rgba(0,0,0,0.2);
}
.integration_catalog .logo_list .logo_frame img {
    width: 100%;
    max-width: 223px;
    margin: 0px auto;
}
.integration_catalog .show-all {
    display: block;
    padding: 40px 0px 0px 0px;
    text-align: center;
}
.integration_catalog .show-all a {
    display: inline-block;
    padding: 15px 40px 15px 40px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 15px;
    color: #3D59FA;
    background: #EBF2FF;
}
@media screen and (max-width: 1000px){
    .integration_catalog .logo_list .logo_frame {
        width: calc(100% / 3 - 6px);
    }
}
@media screen and (max-width: 760px){
    .integration_catalog .header {
        flex-flow: row wrap;
        justify-content: center;
    }
    .integration_catalog .header input {
        width: 100%;
    }
    .integration_catalog .header .types {
        margin-top: 10px;
    }
    .integration_catalog .logo_list .logo_frame {
        width: calc(100% / 2 - 6px);
    }
}
@media screen and (max-width: 600px){
    .integration_catalog .catalog {
        width: 100%;
    }
    .integration_catalog .logo_list {
        width: 100%;
        padding-top: 40px;
    }
    .integration_catalog .logo_list .logo_frame {
        width: calc(100% / 2 - 6px);
    }
}



.main_footer {
    display: block;
    padding: 40px 0px 20px 0px;
}
.main_footer .main_content_holder {
    display: flex;
    flex-flow: row-reverse wrap;
    justify-content: space-between;
    align-items: center;
}
.main_footer .logo {
    display: block;
    width: 180px;
    height: 45px;
    background: url(../images/logo.svg) 0% 0px no-repeat;
    background-size: contain;
}
.main_footer .social-media {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
    width: 180px;
    height: 32px;
}
.main_footer .social-media a {
    display: block;
    width: 32px;
    height: 32px;
    margin-top: -6px;
}
.main_footer .mail,
.main_footer .mail2 {
    display: block;
    width: 100%;
    padding: 20px 0px 0px 0px;
    text-align: center;
}
.main_footer .mail2 {
    display: none;
}
.main_footer .menu {
    display: inline-block;
}
.main_footer .menu a {
    display: inline-block;
    font-size: 15px;
    color: #252347;
    padding: 0px 20px 0px 20px;
}
.main_footer .buttons {
    display: flex;
    width: 40px;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
}
@media screen and (max-width: 700px){
    .main_footer {
        padding-top: 20px;
    }
    .main_footer .logo_social {
        flex-flow: column-reverse nowrap;
        width: 100%;
        justify-content: space-between;
    }
    .main_footer .logo {
        margin: 30px auto 20px auto;
        background: url(../images/logo.svg) 50% 0px no-repeat;
        background-size: contain;
    }
    .main_footer .social-media {
        justify-content: center;
        width: 100%;
        margin: 20px 0px 0px 0px;
    }
    .main_footer .social-media a {
        margin: 0px 7px 0px 7px;
    }
    .main_footer .menu {
        display: flex;
        flex-flow: row nowrap;
        width: 100%;
        justify-content: center;
        padding: 20px 0px 0px 0px;
    }
    .main_footer .menu a {
        text-align: center;
        padding: 0px 10px 0px 10px;
    }
    .main_footer .mail {
        display: none;
        padding: 10px 0px 0px 0px;
    }
    .main_footer .mail2 {
        display: block;
    }
}




.pagination {
    display: flex;
    justify-content: center;
    padding: 20px 0px 0px 0px;
}
.pagination > a,
.pagination > span {
    display: inline-block;
    width: 30px;
    height: 30px;
    margin: 0px 2px 0px 2px;
    text-align: center;
    line-height: 32px;
    font-size: 16px;
    border-radius: 2px;
    background: #f0f0f0;
}
.pagination > a:hover {
    color: #ffffff !important;
    background: #6258AA;
}
.pagination .link-prev {
    padding: 1px 0px 0px 0px;
}



.video_tutorial_popup {
    display: flex;
    flex-flow: column wrap;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    position: fixed;
    left: 0px;
    top: 0px;
    z-index: 10000;
}
.video_tutorial_popup.hidden {
    display: none;
}
.video_tutorial_popup .overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    background: #ffffff;
    opacity: 0.90;
}
.video_tutorial_popup .close {
    display: block;
    float: right;
    width: 120px;
    height: 30px;
    margin: 0px 0px 10px 0px;
    font-weight: bold;
    line-height: 30px;
    /*border: 2px solid #;*/
    border-radius: 100px;
    cursor: pointer;
    color: #ffffff;
    background: #407BFF;
    box-shadow: 0px 0px 5px rgba(0,0,0,0.2);
}
.video_tutorial_popup iframe {
    border: 3px solid #ffcc00;
    border-radius: 10px;
    box-shadow: 0px 0px 20px rgba(0,0,0,0.5);
}




.info_block_vote {
    display: block;
    padding: 100px 0px 0px 0px;
}
.info_block_vote .header * {
    position: relative;
    z-index: 10;
    text-align: center;
    font-size: 40px;
    font-weight: bold;
    line-height: 50px;
}
.info_block_vote .frame {
    display: block;
    padding: 50px 100px 60px 100px;
}
.info_block_vote .infotext {
    display: block;
    padding: 20px 0px 0px 0px;
    font-size: 15px;
    line-height: 20px;
    text-align: center;
}
.info_block_vote .form {
    max-width: 800px;
    margin: 0px auto;
}
.info_block_vote .form .control {
    padding: 40px 0px 0px 0px;
}
.info_block_vote .form .control.first {
    width: 48%;
    float: left;
}
.info_block_vote .form .control.second {
    width: 48%;
    float: right;
}
.info_block_vote .form .control label {
    display: block;
    font-size: 16px;
    line-height: 18px;
    padding: 0px 0px 4px 0px;
}
.info_block_vote .form .control .submit {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    padding: 0px 40px 0px 40px;
    border-radius: 50px;
    box-shadow: 5px 5px 10px rgb(7 46 117 / 30%);
    font-size: 15px;
    font-weight: bold;
    text-decoration: none;
    color: #ffffff;
    background: #407BFF;
}
.info_block_vote .form input[type=text],
.info_block_vote .form input[type=password],
.info_block_vote .form textarea {
    display: block;
    padding: 10px;
    border: 1px solid #cccccc;
    border-radius: 3px;
    width: 100%;
}
.info_block_vote .form .invalid input[type=text],
.info_block_vote .form .invalid textarea {
    border: 1px solid #dd4444;
}
.info_block_vote .info {
    font-size: 15px;
    line-height: 20px;
    text-align: justify;
}



.popup-message {
    position: relative;
    font-size: 16px;
    line-height: 20px;
    text-align: left;
    display: block;
    vertical-align: top;
    box-sizing: border-box;
    color: #000;
    padding: 60px;
    margin: 50px auto 0px auto;
    width: 450px;
    z-index: 1000;
    border-radius: 5px;
    box-shadow: 0px 0px 30px 0 rgba(0, 0, 0, 0.35);
    background: #ffffff;
}
.popup-message-overlay {
    position: fixed;
    display: block;
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    z-index: 999;
    opacity: 0.5;
    background: #000000;
}
.popup-message .popup-close {
    position: absolute;
    right: 20px;
    top: 15px;
    cursor: pointer;
    opacity: 0.5;
    font-size: 20px;
    font-weight: 800;
    text-decoration: none;
}


.orange_button {
    display: inline-block;
    padding: 15px 65px 15px 65px;
    font-size: 16px;
    font-weight: 500;
    line-height: 26px;
    text-decoration: none;
    color: #000000;
    border-radius: 100px;
    cursor: pointer;
    background: #ffe131;
}





#main_site_videos {
    display: block;
    padding: 20px 0px 0px 0px;
}
#main_site_videos .path {
    line-height: 18px;
    font-size: 16px;
    color: #444444;
}
#main_site_videos a {
    line-height: 20px;
    font-size: 16px;
    color: #346eb8;
    text-decoration: none;
    border-bottom: 1px solid #bfd3ed;
}
#main_site_videos a:hover {
    color: #cd192e;
    border-bottom: 1px solid #f6b4bc;
}

#main_site_videos .section_title {
    padding: 20px 0px 0px 0px;
}
#main_site_videos .section_info {
    padding: 20px 0px 0px 0px;
    margin: 0px auto;
    max-width: 970px;
    font-size: 18px;
    line-height: 26px;
    color: #203058;
    text-align: center;
}
#main_site_videos .videos_holder{
    display: flex;
    min-height: 400px;
    flex-flow: row wrap;
}
#main_site_videos .videos_holder .video {
    cursor: pointer;
    width: calc(100% / 3 - 20px);
    margin: 30px 0px 0px 30px;
    padding: 0px 0px 30px 0px;
    overflow: hidden;
    border-radius: 5px;
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
    background: #ffffff;
}
#main_site_videos .videos_holder .video:nth-child(3n + 1) {
    margin-left: 0px;
}
#main_site_videos .videos_holder .video .name {
    padding: 10px 10px 0px 10px;
    font-weight: bold;
}
#main_site_videos {
    display: flex;
    padding: 20px 0px 0px 0px;
    flex-flow: row wrap;
}
#main_site_videos .integrators_filter {
    display: flex;
    flex-flow: row wrap;
}
#main_site_videos .filter {
    width: calc(100% / 4 - 90px);
    min-width: 160px;
    margin-left: 20px;
    margin-top: 20px;
    flex-grow: 1;
}
#main_site_videos .filter.search {
    min-width: 120px;
}
#main_site_videos .filter:first-child {
    margin-left: 0px;
}
@media screen and (max-width: 749px){
    #main_site_videos .videos_holder .video {
        width: calc(100% / 2 - 15px);
        margin: 30px 0px 0px 30px;
    }
    #main_site_videos .videos_holder .video:nth-child(3n + 1) {
        margin-left: 30px;
    }
    #main_site_videos .videos_holder .video:nth-child(2n + 1) {
        margin-left: 0px;
    }
    #main_site_videos .filter {
        width: calc(100% / 2 - 30px);
    }
    #main_site_videos .filter:nth-child(3) {
        margin-left: 0px;
    }
}
@media screen and (max-width: 500px){
    #main_site_videos .videos_holder .video {
        width: 100%;
        margin: 30px 0px 0px 0px;
    }
    #main_site_videos .videos_holder .video:nth-child(3n + 1) {
        margin-left: 0px;
    }
    #main_site_videos .filter {
        width: 100%;
    }
    #main_site_videos .filter:nth-child(3) {
        margin-left: 0px;
    }
    #main_site_videos .filter:nth-child(2) {
        margin-left: 0px;
    }
    #main_site_videos .filter:nth-child(4) {
        margin-left: 0px;
    }
}
#main_site_videos label {
    display: block;
    padding: 0px 0px 5px 0px;
    font-size: 14px;
    font-weight: bold;
    color: #203058;
}
#main_site_videos select,
#main_site_videos input[type=text] {
    width: 100%;
    padding: 10px;
    border: 0px none;
    border-right: 5px solid #ffffff;
    border-radius: 3px;
}
#main_site_videos input[type=text] {
    padding-left: 20px;
}
#main_site_videos button {
    display: inline-block;
    width: 100%;
    padding: 10px 20px 10px 20px;
    font-size: 14px;
    font-weight: bold;
    color: #000000;
    border-radius: 100px;
    border: 0px none;
    text-decoration: none;
    cursor: pointer;
    background: #FFE131;
}
#main_site_videos .pagination {
    display: flex;
    padding: 20px 0px 0px 0px;
    font-size: 14px;
    line-height: 23px;
    justify-content: center;
}
#main_site_videos .pagination a,
#main_site_videos .pagination span {
    font-size: 14px;
    line-height: 25px;
    display: inline-block;
    padding: 4px 5px 4px 5px;
    margin: 0px 4px 0px 4px;
    border: 0px none;
    text-align: center;
}
#main_site_videos .pagination a.selected {
    color: #ffffff;
    border-radius: 2px;
    background: #3350b8;
}
#main_site_videos .pagination .link-prev,
#main_site_videos .pagination .link-next {
    display: inline-block;
    border-radius: 2px;
    font-size: 24px;
    line-height: 20px;
    background: #eeeeee;
}




.article-body .article-inline-block {
    display: flex;
    justify-content: space-between;
    flex-flow: row wrap;
    padding: 0px 25px 30px 25px;
    margin: 30px 0px 10px 0px;
    border-radius: 4px;
    background: #ffffff;
    box-shadow: 0px 0px 30px rgba(0,0,0,0.07);
}
.article-body .article-inline-block .article_popular {
    display: block;
    cursor: pointer;
    width: calc(100% / 2 - 10px);
    min-height: 220px;
    margin-top: 20px;
}
.article-body .article-inline-block .header1 {
    display: flex;
    width: 100%;
    font-size: 18px;
    font-weight: bold;
    line-height: 24px;
    text-align: center;
    justify-content: center;
    align-items: center;
    padding: 30px 20px 5px 20px;
}
.article-body .article-inline-block .image {
    display: block;
    height: 165px;
    border-radius: 8px 8px  0px 0px;
    background-position: center;
    background-size: cover;
}
.article-body .article-inline-block .article_popular .info {
    display: block;
    padding: 15px 15px 0px 0px;
    border-radius: 0px 0px 8px 8px;
    background: #ffffff;
}
.article-body .article-inline-block .article_popular .tag {
    display: inline-block;
    padding: 4px 8px 4px 8px;
    margin: 16px 0px 0px 16px;
    font-size: 12px;
    font-weight: bold;
    border-radius: 20px;
    color: #222222;
    background: #FFE131;
}
.article-body .article-inline-block .article_popular .info .title {
    display: block;
    height: 46px;
    overflow: hidden;
    font-size: 14px;
    font-weight: bold;
    line-height: 110%;
    color: #222222;
    border: 0px none;
}
.article-body .article-inline-block .article_popular .info .meta {
    display: block;
    width: 100%;
    padding: 10px 0px 0px 0px;
    font-size: 14px;
    font-weight: bold;
    color: #7E8996;
}
.article-body .article-inline-block .inline-text .body,
.article-body .article-inline-block .inline-text .body * {
    font-size: 15px;
    line-height: 18px;
}
.article-body .article-inline-block .inline-text {
    display: flex;
    flex-flow: row nowrap;
}
@media screen and (max-width: 600px){
    .article-body .article-inline-block .inline-text {
        display: flex;
        flex-flow: column nowrap;
    }
}

.article-body .article-inline-block .inline-text .logo {
    display: block;
    width: 200px;
    padding-top: 50px;
    margin-right: 20px;

}
.article-body .article-inline-block .inline-text .body {
    padding: 40px 0px 0px 0px;
}
.article-body .article-inline-block .button {
    width: 100%;
    padding: 30px 0px 0px 0px;
    text-align: center;
}
.article-body .article-inline-block .button a {
    display: inline-block;
    padding: 8px 30px 8px 30px;
    font-size: 16px;
    font-weight: 500;
    line-height: 26px;
    text-decoration: none;
    color: #000000;
    border-radius: 100px;
    border: 0px none;
    background: #ffe131;
}
.article-body .article-inline-block .inline-text .header {
    font-size: 24px;
    font-weight: bold;
    line-height: 28px;
    padding-bottom: 13px;
}
.article-body .article-inline-block .inline-text ul {
    padding: 10px 0px 10px 0px;
}
.article-body .article-inline-block .inline-text li {
    margin: 0px 0px 0px 30px;
}
.article-body .article-inline-block .video {
    position: relative;
    display: block;
    cursor: pointer;
    width: calc(100% / 2 - 10px);
    min-height: 220px;
    margin-top: 20px;
}
.article-body .article-inline-block .video .name {
    display: block;
    height: 46px;
    overflow: hidden;
    font-size: 14px;
    font-weight: bold;
    line-height: 110%;
    color: #222222;
    border: 0px none;
    padding-top: 5px;
}

