html {
    font-size: 18px;
    line-height: 1.4;
    font-weight: 400;
    color: #333;
    font-family: 'Open Sans', sans-serif;
    overflow-y: scroll;
}

body {
    padding: 0;
    margin: 0;
    background-color: #fff;
}

.canvas {
    /*overflow: hidden;*/
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.overlay {
    display: block;
    position: absolute;
    top: 0;
    left: 0; 
    width: 100%;
    height: 100%;
}

.canvas > .center-group {
    flex: 1;
}

.container {
    width: 100%;
    max-width: 1680px;
    padding: 20px 40px;
    margin-left: auto;
    margin-right: auto;
}

.max320 {
    max-width: 320px;
}

.max480 {
    max-width: 480px;
}

.max560 {
    max-width: 560px;
}

.max640 {
    max-width: 640px;
}

.max720 {
    max-width: 720px;
}

.max760 {
    max-width: 760px;
}

.container .container {
    padding-left: 0;
    padding-right: 0;
}

@media screen and (max-width: 959px) {

    .container {
        padding-left: 24px;
        padding-right: 24px;
    }

}

.ptb0 {
    padding-top: 0;
    padding-bottom: 0;
}


.gray {
    color: #9c9c9c;
}

.gray a {
    color: #9c9c9c;
}


* {
    box-sizing: border-box;
}

p {
    margin: 16px 0;
}

h1, h2, h3, h4, h5 {
    margin: 20px 0;
    font-weight: 500;
    line-height: 1.2;
}

h1 {
    font-size: 40px;
    font-weight: 700;
}

h2 {
    font-size: 40px;
    font-weight: 700;
}

h3 {
    font-size: 48px;
    font-weight: 400;
}

h4 {
    font-size: 24px;
    font-weight: 400;
}

h5 {
    font-size: 16px;
}



a { 
    color: inherit;
    outline: none;
    text-decoration: none;
    transition: all .2s;
}

.anohover a {
    /*transition: all 0s;*/
} 

a:hover {
} 


.dark-box, a.dark-box {
    color: #fff;
}

.dark-box a:not(.btn) {
    color: #fff;
} 

.dark-box a:not(.btn):hover {
} 


hr {
    border: 0;
    height: 1px;
    background: #d9d7d9;
}

img, svg {
    display: table;
    padding: 0;
    margin: 0;
    max-width: 100%;
    box-sizing: border-box;
}

input, textarea {
    font-family: 'Open Sans', sans-serif;
    outline: none;
    height: 52px;
    border-radius: 6px;
    width: 100%;
    transition: all .2s;
    font-size: 16px;
    font-weight: 500;
    background-color: #fff;
    color: #333;
    padding: 0 20px;
    display: block;
    border: none;
    border: 1px solid rgba(0,0,0,0);
    box-shadow: none !important;
}

input:hover, textarea:hover {
    border: 1px solid rgba(0,0,0,.1);
}

input:focus, textarea:focus {
  border-color: rgba(0,0,0,.5);  
}

textarea {
    resize: none;
    overflow: auto;
    padding: 14px 20px;
    height: auto;
    max-height: 200px;
}

input, input:focus,
textarea, textarea:focus 
{
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}


input::-webkit-input-placeholder {color:#BDBDBD}
input::-moz-placeholder          {color:#BDBDBD}
input:-moz-placeholder           {color:#BDBDBD;}
input:-ms-input-placeholder      {color:#BDBDBD;}

textarea::-webkit-input-placeholder {color:#BDBDBD;}
textarea::-moz-placeholder          {color:#BDBDBD;}
textarea:-moz-placeholder           {color:#BDBDBD;}
textarea:-ms-input-placeholder      {color:#BDBDBD;}

button:disabled {
    opacity: 0.3;
}

button {
    border: none;
    cursor: pointer;
    outline: none;
    background: none;
}

input.error {
    border: 1px solid #DD5656;
    background-color: rgba(221, 86, 86, 0.05);
}

.underline {
    text-decoration: underline;
}

.solid {
    border-bottom: 1px solid rgba(0,0,0,.5)
}

.dark-box .solid {
    border-bottom: 1px solid rgba(255,255,255,.7)
}

.btn {
    min-height: 52px;
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    background-color: #fd3456;
    display: inline-flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    padding: 0 32px;
    border-radius: 26px;
    color: #fff !important;
    line-height: 1;
    transition: all .3s;
    font-weight: 400;
    width: 280px;
    max-width: 100%;
    white-space: nowrap;
}

.btn:hover {
    background-color: #fff;
}

.btn.icotext:hover {
    border: 1px solid #fd3456;
    color: #fd3456 !important;
    background-color: #fff;
}

.btn:hover {
    background-color: #e42848;
}

.btn.icotext:hover .svg path {
    fill: #fd3456 !important;
}

.btn-shadow {
    box-shadow: 0 4px 0 #d71334;
}

.btn-shadow:hover {
    background-color: #e42848;
    box-shadow: 0 4px 0 #aa253c;
}

.btn-yel:hover {
    background-color: #F8D837;
}

.btn-med {
    min-height: 48px;
}

.btn-big {
    min-height: 48px;
}

.btn-small {
    min-height: 32px;
    padding: 0 12px;
    font-size: 14px;
}

.btn-bord {
    background-color: transparent;
    border: 2px solid #fd3456;
    color: #fd3456 !important;
}

.btn-bord:hover {
    background-color: #fd3456;
    color: #fff !important;
}

.btn-bord-thin {
    border: 1px solid #fd3456;
}

.btn-bord:hover {
    
}



ul {
    padding: 0;
    margin: 0;
    display: block;
    list-style:none;
}

li {display: block;
    padding: 0;
    margin: 0;
}



.word a {
    color: #1771E6;;
}

.word a:hover {
    color: #2D83F3;
}

.word {
    line-height: 1.7;
}

.word ul li {
    margin: 4px 0;
    padding-left: 32px;
    position: relative;
}

.word ul:not(.li-checks) li:before {
    content: '';
    display: block;
    position: absolute;
    top: 10px;
    left: 0;
    width: 16px;
    height: 2px;
    background-color: #FFDD2D;
}


.word img {
    margin: 24px 0;
}


.word ol {
    padding: 0;
    margin: 4px 0;
    counter-reset: li;
    list-style: none;
}

.word ol > li {
    position: relative;
    padding-left: 28px;
}

.word ol > li:before {
    content: counter(li)'.';
    counter-increment: li;
    display: inline-block;
    color: #FFDD2D;
    position: absolute;
    top: 0;
    left: 0;
}



@media (max-width: 959px) {

    h1 {
        font-size: 28px;
    }

    body .article-body-box .word {
        font-size: 15px;
    }

    .word h2 {
        font-size: 22px;
    }

    .word * + h2 {
        margin-top: 24px;
    }

    .word h3 {
        font-size: 18px;
    }

    .word * + h3 {
        margin-top: 18px;
    }

    .word h4 {
        font-size: 16px;
    }

    .word * + h4 {
        margin-top: 18px;
    }

}

@media (max-width: 639px) {

    h1 {
        font-size: 24px;
    }

}

table {
    border-collapse: separate;
    border-collapse: collapse;
    width: 100%;
}


.dashed-line {
    border-bottom: 1px dashed #4A32AD;
}



/*==============================================================*/


.burger-box {
    display: none;
}


.burger {
    width: 20px;  
    height: 18px;
    display: flex;
    align-items: center;
}

.burger i {
    position: relative;
    display: block;
    background: #222;
    width: 100%;
    height: 2px;
    border-radius: 2px;
    opacity: 1;
    transition: background .2s;
}

.burger i:before, .burger i:after {
    position: absolute;
    content: '';
    display: block;
    background: #222;
    width: 100%;
    height: 2px;
    border-radius: 2px;
    top: -6px;
    left: 0;
    transition: all .2s;
}

.burger i:after {
    top: auto;
    bottom: -6px;
}

.burger.active i {
    background: transparent; 
}

.burger.active i:before {
    transform: rotate(45deg);
    top: 0;
    background-color: #222;
}

.burger.active i:after {
    transform: rotate(-45deg);
    background-color: #222;
    top: 0;
}



.icotext {
    display: flex;
    align-items: center;
}

.icotext > *:first-child {
    margin-right: 8px;
}

.icotext img {
    max-width: none;
}




/*==========================================================*/




.popup {display: none;}

.itl {
    font-style: italic;
}

.fz11 {font-size: 11px;}
.fz12 {font-size: 12px;}
.fz13 {font-size: 13px;}
.fz14 {font-size: 14px;}
.fz15 {font-size: 15px;}
.fz16 {font-size: 16px;}
.fz18 {font-size: 18px;}
.fz20 {font-size: 20px;}
.fz22 {font-size: 22px;}
.fz24 {font-size: 24px;}
.fz28 {font-size: 28px;}
.fz32 {font-size: 32px;}
.fz40 {font-size: 40px;}
.fz48 {font-size: 48px;}
.fz56 {font-size: 56px;}

.fw100 {font-weight: 100;}
.fw200 {font-weight: 200;}
.fw300 {font-weight: 300;}
.fw400 {font-weight: 400;}
.fw500 {font-weight: 500;}
.fw600 {font-weight: 600;}
.fw700 {font-weight: 700;}
.fw900 {font-weight: 900;}

.lh160 {line-height: 1.6;}
.lh180 {line-height: 1.8;}

.ttr {text-transform: uppercase;}


.row > * {
    float: left
}

.row:after {
    content: "";
    display: block;
    clear: both;
    visibility: hidden;
    height: 0;
}

.clrfix:after {
    content: "";
    display: block;
    clear: both;
    visibility: hidden;
    height: 0;
}


.row-t {
    display: table;
}

.row-t > * {
    display: table-cell;
    vertical-align: top;
}

.row-tc {
    display: table;
}

.row-tc > * {
    display: table-cell;
    vertical-align: middle;
}

.clr {
    clear: both;
}

.clr-left {
    clear: left;
}

.w100 {width: 100%;}
.wdtauto {width: auto;}
.wdt960 {max-width: 960px;}

.tbl {display: table;}

.fll {float: left;}
.flr {float: right;}

.center {text-align: center}

.thiscenter {
    display: table;
    margin-left: auto;
    margin-right: auto;
}

.thisright {
    display: table;
    margin-left: auto;
}

.text-left {
    text-align: left;
}




.flex {
    display: flex;
}

.flex-list {
    display: flex;
    flex-flow: row wrap;
}


.cntrv {
    align-items: center;
}

.aitc {
    align-items: center;
}

.sbtw {
    justify-content: space-between; 
}

.table {
    display: table;
}

.hg100  {
    height: 100%;
}

.bxz, .bxz * {
    box-sizing: border-box;
}


.tb > *:first-child, .word > *:first-child {margin-top: 0 !important;}
.tb > *:last-child, .word > *:last-child {margin-bottom: 0 !important;}



.col-1 {width: 8.33333333%;}
.col-2 {width: 16.66666667%;}
.col-3 {width: 25%;}
.col-4 {width: 33.33333333%;}
.col-5 {width: 41.66666667%;}
.col-6 {width: 50%;}
.col-7 {width: 58.33333333%;}
.col-8 {width: 66.66666667%;}
.col-9 {width: 75%;}
.col-10 {width: 83.33333333%;}
.col-11 {width: 91.66666667%;}
.col-12 {width: 100%;}



/*==============================================*/



.column2 > * {
    width: 50%;
}



.step-4 {
    margin: -2px;
}

.step-4 > * {
    padding: 2px;
}

.step-8 {
    margin: -4px;
}

.step-8 > * {
    padding: 4px;
}

.step-12 {
    margin: -6px;
}

.step-12 > * {
    padding: 6px;
}

.step-16 {
    margin: -8px;
}

.step-16 > * {
    padding: 8px;
}

.step-20 {
    margin: -10px;
}

.step-20 > * {
    padding: 10px;
}

.step-24 {
    margin: -12px;
}

.step-24 > * {
    padding: 12px;
}

.step-32 {
    margin: -16px;
}

.step-32 > * {
    padding: 16px;
}

.step-40 {
    margin: -20px;
}

.step-40 > * {
    padding: 20px;
}


.column-2 > * {
    width: 50%;
}

.column-3 > * {
    width: 33.33333333%;
}

.column-4 > * {
    width: 25%;
}

.column-5 > * {
    width: 20%;
}

.column-6 > * {
    width: 16.6666667%;
}


.column-cnt-2 {
    column-count: 2;
}

.column-cnt-2 > * {
    page-break-inside: avoid;  
}

.column-cnt-3 {
    column-count: 3;
}

.column-cnt-3 > * {
    page-break-inside: avoid;  
}


.mt40 {
    margin-top: 40px;
}

.mtp40 {
    margin-top: 40px;
    margin-bottom: 40px;
}

.mtp20 {
    margin-top: 20px;
    margin-bottom: 20px;
}

.mtp0 {
    margin-top: 0;
    margin-bottom: 0;
}

img.cover {
    max-width: none;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    object-position: center;
}



style, script {
    display: none!important;
}



.hide {
    display: none !important;
}

.ovh {
    overflow: hidden;
    height: 100vh;
}


.canvas *::-webkit-scrollbar:vertical {
    width: 0;
}

.canvas *::-webkit-scrollbar:horizontal {
    height: 0;
}

.canvas *::-webkit-scrollbar-track, 
.canvas *::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0);
    opacity: 0;
    width: 0;
    height: 0;
}

.canvas * {
  -webkit-overflow-scrolling: touch;
}

.canvas *::-webkit-scrollbar  {
    -webkit-appearance: none;
    display: none;
    height: 0;
    width: 0;
}






/*-------------------------------------------------------------------------------*/






