@charset "UTF-8";

/*--reset.css--*/

html {
    margin: 0;
    padding: 0;
    border: 0;
}

body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, code,
del, dfn, em, img, q, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, dialog, figure, footer, header,
nav, section {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font-family: inherit;
    vertical-align: baseline;
}

article, aside, details, figcaption, figure, dialog,
footer, header, menu, nav, section {
    display: block;
}

blockquote:before, blockquote:after, q:before, q:after {
    content: '';
}

blockquote, q {
    quotes: "" "";
}

a img {
    border: none;
}

input:focus {
    outline: none;
}

body{
    background-color: #F5F5F5;
}

/*--end reset*/
/*--Containers--*/

.page_container{
    position: relative;
    width: 100%;
    min-width: 320px;
    font-family: 'Montserrat', sans-serif;
    color: #1E1E20;
}

.container{
    position: relative;
    width: 100%;
    max-width: 1320px;
    box-sizing: border-box;
    margin: auto;
}

.col2{
    float: left;
    width: 50%;
    padding-right: 15px;
    padding-left: 15px;
    box-sizing: border-box;
}

.container:after, .col2:after{
    content: "";
    display: table;
    clear: both;
}

.pad_lr {
    padding-right: 15px;
    padding-left: 15px;
}

.mob_pad_lr{
    padding-right: 0;
    padding-left: 0;
}

.pad_b {
    padding-bottom: 40px;
}

.pad_t{
    padding-top: 70px;
}

.mar_b{
    margin-bottom: 50px;
}

.no_pad{
    padding: 0;
}

/*--end containers--*/
/*-- text--*/

h1{
    font-size: 40px;
    font-weight: 500;
    line-height: 1.1em;
    margin: 0 0 24px;
}

h2, h3, h4{
    font-size: 26px;
    font-weight: 500;
    line-height: 1.3em;
    margin: 0 0 20px;
}

h5, h6{
    font-size: 20px;
    font-weight: 500;
    line-height: 1.3em;
    margin: 0 0 15px;
}

p{
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.04em;
    line-height: 1.8em;
    margin: 0 0 20px;
    color: #464646;
}

p a{
    font-weight: 500;
    color: #65ADDE;
}

a{
    transition: all 0.3s ease;
}

a:hover{
    opacity: 0.6;
}

b{
    font-weight: 700;
}

i{
    font-style: italic;
}

/*-- end text--*/
/*--header--*/

header{
    width: 100%;
}

.header{
    position: relative;
    width: 100%;
    max-width: 1320px;
    margin: auto;
    padding-top: 30px;
    padding-bottom: 30px;
    box-sizing: border-box;
}

header, .header:after {
    content: "";
    display: table;
    clear: both;
}

.header_logo{
    position: relative;
    z-index: 1000;
    display: block;
    float: left;
}

.header_logo img{
    display: block;
    height: 40px;
    width: auto;
    margin: 0;
    padding: 0;
}

.about_info{
    float: right;
}

.about_info span{
    display: inline-block;
    margin-right: 24px;
    vertical-align: middle;
}

.about_info span a{
    font-size: 12px;
    font-weight: 500;
    line-height: 40px;
    color: #1E1E20;
    text-decoration: none;
}

.social_links{
    list-style-type: none;
    display: inline-block;
    vertical-align: middle;
    font-size: 0;
}

.social_links li{
    display: inline-block;
    vertical-align: middle;
    padding-right: 24px;
}

.fb, .vk, .yt{
    display: block;
    width: 16px;
    height: 16px;
}

.fb{
    background: url("img/fb@2x.png") no-repeat center center;
    background-size: 16px 16px;
}

.vk{
    background: url("img/vk@2x.png") no-repeat center center;
    background-size: 16px 16px;
}

.yt{
    background: url("img/yt@2x.png") no-repeat center center;
    background-size: 16px 16px;
}

.social_links li a img{
    display: block;
    margin: 0;
    padding: 0;
    width: 100%;
    height: auto;
}

.info_wrap{
    display: inline-block;
    vertical-align: middle;
}

.user_account{
    background: url("img/account_black@2x.png") no-repeat 24px 50%;
    background-size: 16px 16px;
    display: inline-block;
    vertical-align: middle;
    height: 40px;
    border-left: solid 1px #1E1E20;
    padding-left: 52px;
    font-size: 12px;
    font-weight: 500;
    line-height: 40px;
    color: #1E1E20;
    text-decoration: none;
}

.header .line{
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background-color: #1E1E20;
}

.index_page header{
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    margin-bottom: 0;
}

.index_page .header .line{
    display: none;
}

.index_page .user_account{
    background: url("img/account_white@2x.png") no-repeat 24px 50%;
    background-size: 16px 16px;
    border-left: solid 1px #FFFFFF;;
    color: #FFFFFF;
}

.index_page .about_info span a{
    color: #FFFFFF;
}

.index_page .fb{
    background: url("img/fb_w@2x.png") no-repeat center center;
    background-size: 16px 16px;
}

.index_page .vk{
    background: url("img/vk_w@2x.png") no-repeat center center;
    background-size: 16px 16px;
}

.index_page .yt{
    background: url("img/yt_w@2x.png") no-repeat center center;
    background-size: 16px 16px;
}

/*--end header--*/
/*--guru hero--*/
.guru_hero{
    position: relative;
    background: url("img/hero_bg.jpg") no-repeat 50% 50%;
    background-size: cover;
    width: 100%;
    height: 500px;
    padding-top: 180px;
}

.guru_hero_content{
    width: 100%;
    max-width: 1320px;
    padding: 0 15px;
    box-sizing: border-box;
    margin: auto;
}

.guru_hero_content h1, .guru_hero_content h2, .guru_hero_content h3,
.guru_hero_content h4, .guru_hero_content h5, .guru_hero_content h6,
.guru_hero_content > span{
    display: block;
    font-size: 28px;
    font-weight: 500;
    line-height: 1.5em;
    margin: 0 auto;
    max-width: 560px;
    color: #FFFFFF;
    text-align: center;
    text-shadow: 0 3px 6px rgba(0,0,0,0.2);
}

.guru_btn{
    cursor: pointer;
    display: block;
    width: 260px;
    height: 52px;
    border-radius: 26px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.04em;
    line-height: 52px;
    text-align: center;
    text-decoration: none;
    color: #FFFFFF;
}

.blue{
    background-color: #65ADDE;
}

.guru_hero .blue{
    margin: 30px auto 0;
    box-shadow: 0 3px 6px rgba(0,0,0,0.2);
}

.guru_hero .blue:hover{
    opacity: 1;
    background-color: #C0392B;
}

.guru_hero_content > ul{
    width: 100%;
    font-size: 0;
    list-style-type: none;
    margin: 90px auto 0;
    text-align: center;
    opacity: 0.75;
}

.guru_hero_content > ul >li{
    width: 300px;
    padding: 10px 30px;
    box-sizing: border-box;
    border-left: solid 1px #FFFFFF;
    display: inline-block;
    vertical-align: top;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0.06em;
    color: #FFFFFF;
    text-align: left;
}

.guru_hero_content > ul >li:first-child{
    border-left: none;
}

.guru_hero_content > ul >li > span{
    display: block;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 8px;
}

/*--end guru hero--*/
/*--slider--*/

.guru_heading{
    width: 100%;
    margin-bottom: 30px;
}

.guru_heading h1, .guru_heading h2, .guru_heading h3,
.guru_heading h4, .guru_heading h5, .guru_heading h6,
.guru_heading span{
    display: block;
    width: 100%;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.3em;
    color: #1E1E20;
}

.conf_slider_wrap{
    padding-top: 70px;
    padding-bottom: 100px;
}


.conf_item{
    width: 330px;
    min-height: 402px;
    padding: 50px 30px 40px;
    box-sizing: border-box;
    background-color: #FFFFFF;
    border-radius: 10px;
    border: solid 1px #FFFFFF;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}

.conf_item:hover{
    border: solid 1px #dcdcdc;
}

.conf_logo{
    width: 100%;
    height: 30px;
    margin-bottom: 34px;
}

.conf_logo img{
    display: block;
    margin: 0;
    padding: 0;
    height: 100%;
    width: auto;
}

.conf_item .cof_hero_date{
    font-size: 24px;
    font-weight: 300;
    line-height: 1em;
    letter-spacing: 0.04em;
    color: #1E1E20;
    margin-bottom: 10px;
}

.conf_item p{
    font-size: 12px;
    line-height: 1.5em;
    letter-spacing: normal;
    margin-bottom: 12px;
}

.red{
    background-color: #C0392B;
}

.ghost_red{
    background-color: #FFFFFF;
    border: solid 1px #C0392B;
    color: #C0392B;
    box-sizing: border-box;
}

.conf_item .red, .conf_item .ghost_red{
    width: 100%;
    height: 44px;
    line-height: 44px;
    font-size: 12px;
    font-weight: 700;
}

.conf_item .red{
    margin-top: 40px;
}
.conf_item .ghost_red{
    margin-top: 10px;
}

.conf_item form{
    margin-top: 40px;
}

.conf_item input[type="text"] {
    display: block;
    border: none;
    outline: none;
    -webkit-appearance: none;
    width: 100%;
    height: 44px;
    font-size: 14px;
    font-weight: 400;
    padding: 0 15px;
    box-sizing: border-box;
    color: #1E1E20;
    background-color: #F5F5F5;
    border-radius: 22px;
    text-align: center;
    overflow: hidden;
}

.conf_item input[type="text"]::-webkit-input-placeholder, .conf_item input[type="text"]:-ms-input-placeholder,
.conf_item input[type="text"]:-ms-input-placeholder, .conf_item input[type="text"]:-ms-input-placeholder {
    font-size: 12px;
    font-weight: 400;
    font-style: italic;
    color: #B4B4B4;
    letter-spacing: 0.02em;
    text-align: center;
}

.conf_item input[type="text"]::placeholder {
    font-size: 12px;
    font-weight: 400;
    font-style: italic;
    color: #B4B4B4;
    letter-spacing: 0.02em;
    text-align: center;
    opacity: 1;
}

.conf_item input[type="submit"] {
    cursor: pointer;
    background-color: #B4B4B4;
    width: 100%;
    height: 44px;
    border: none;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    line-height: 44px;
    color: #ffffff;
    text-align: center;
    border-radius: 22px;
    margin-top: 10px;
    transition: all 0.3s ease;
}

.conf_item input[type="submit"]:hover {
    opacity: 0.8;
}


.more_btn{
    width: 100%;
    padding-right: 28px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1em;
    text-decoration: none;
    background: url("img/link_arrow_black.png") no-repeat right center;
    background-size: 18px 10px;
    color: #1E1E20;
}

/*--end slider--*/
/*--conf about--*/
.bg_transition{
    background: url("img/section_bg_end.png") no-repeat bottom center;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    margin: 30px 0 40px;
    height: 0;
    overflow: hidden;
}

.video-container iframe, .video-container object, .video-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.bg_white{
    background-color: #FFFFFF;
}

.points_list{
    width: 100%;
    font-size: 0;
    list-style-type: none;
    text-align: center;
}

.points_list li{
    width: 25%;
    display: inline-block;
    vertical-align: top;
    padding: 20px 35px;
    box-sizing: border-box;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.04em;
    line-height: 1.5em;
}

.points_list img{
    width: 44px;
    height: auto;
    display: block;
    padding: 0;
    margin: 0 auto 20px;
}

/*--end conf about--*/
/*--news--*/

.guru_news_list{
    width: 100%;
    font-size: 0;
    list-style-type: none;
}

.guru_news_list li{
    display: inline-block;
    vertical-align: top;
    width: 33.33333%;
    padding: 0 15px 30px;
    box-sizing: border-box;
}

.news_item{
    display: block;
    position: relative;
    width: 100%;
    text-decoration: none;
    color: #1E1E20;
}

.news_img_container{
    background: url("img/no_img.png") no-repeat 50% 50% #f0f0f0;
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    overflow: hidden;
    margin-bottom: 24px;
}

.news_img_container img{
    position: absolute;
    display: block;
    width: 100%;
    height: auto;
    margin: auto;
    top: -9999px;
    bottom: -9999px;
    left: -9999px;
    right: -9999px;
    transition: all 0.4s ease;
}

.news_item h2, .news_item h3, .news_item h4,
.news_item h5, .news_item h6, .news_item span{
    display: block;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.02em;
    line-height: 1.33em;
    margin: 0 0 10px;
    padding-right: 30px;
    box-sizing: border-box;
}

.date{
    font-size: 12px;
    font-weight: 400;
    color: #1E1E20;
    line-height: 1em;
    letter-spacing: 0.12em;
    margin-bottom: 10px;
}

.news_item:hover{
    opacity: 1;
    color: #65ADDE;
}

.news_item:hover .news_img_container img{
    transform: scale(1.1,1.1);
}

.news_item .conf_logo{
    margin-bottom: 0;
}

/*--end news--*/
/*--subscription--*/

.mail_subscription{
    width: 100%;
    padding: 30px 0;
    background-color: #FAF0EF;
    font-size: 0;
}

.subscr_info{
    display: inline-block;
    vertical-align: middle;
    width: 440px;
    padding-right: 30px;
    box-sizing: border-box;
}

.subscr_info h3{
    font-size: 24px;
    font-weight: 700;
    line-height: 1.3em;
    margin-bottom: 4px;
}

.subscr_info h3 > span{
    white-space: nowrap;
}

.subscr_info p{
    font-size: 12px;
    line-height: 1.5em;
    margin-bottom: 0;
}

.subscr_form {
    display: inline-block;
    vertical-align: middle;
    box-sizing: border-box;
    width: calc(100% - 440px);
    height: 54px;
    background-color: #FFFFFF;
    border-radius: 26px;
    overflow: hidden;
    border: solid 1px #D9D9D9;
}

.subscr_wrap {
    width: 100%;
    padding: 3px;
    box-sizing: border-box;
}


.subscr_wrap input[type="text"] {
    display: inline-block;
    vertical-align: middle;
    border: none;
    outline: none;
    -webkit-appearance: none;
    width: calc(100% - 183px);
    height: 46px;
    padding-left: 30px;
    box-sizing: border-box;
    font-size: 16px;
    font-weight: 400;
    color: #1E1E20;
}

.subscr_wrap input[type="text"]::-webkit-input-placeholder, .subscr_wrap input[type="text"]:-ms-input-placeholder,
.subscr_wrap input[type="text"]:-ms-input-placeholder, .subscr_wrap input[type="text"]:-ms-input-placeholder {
    font-size: 16px;
    font-weight: 400;
    font-style: italic;
    color: #AEAEAE;
    letter-spacing: 0.04em;
}

input[type="text"]::placeholder {
    font-size: 16px;
    font-weight: 400;
    font-style: italic;
    color: #AEAEAE;
    letter-spacing: 0.04em;
    opacity: 1;
}

.subscr_wrap input[type="submit"] {
    cursor: pointer;
    background-color: #65ADDE;
    width: 180px;
    height: 46px;
    border: none;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    line-height: 46px;
    color: #ffffff;
    text-align: center;
    border-radius: 23px;
    float: right;
    transition: all 0.3s ease;
}

.subscr_wrap input[type="submit"]:hover {
    opacity: 0.8;
}
/*--end subscription--*/
/*--forms--*/

.form, .s_login{
    max-width: 850px;
}

.form .conf_logo{
    height: 40px;
}

.guru_form{
    width: 100%;
    font-size: 0;
}

.info_input {
    width: 100%;
    font-size: 0;
    padding: 0 15px 20px;
    box-sizing: border-box;
}

.col2 .info_input {
    padding: 0 0 20px;
}


.info_input label, .amount label, .info_input span{
    display: block;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.06em;
    line-height: 1.2em;
    color: #1E1E20;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.person label{
    display: none;
}

.info_input input[type="text"],
.info_input input[type="password"],
.info_input select,
.info_input textarea {
    display: block;
    border: solid 1px #E8E8E8;
    background-color: #FFFFFF;
    width: 100%;
    height: 54px;
    padding: 0 0 0 20px;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 52px;
    color: #464646;
}

.error input[type="text"],
.error input[type="password"],
.error select,
.error textarea {
    border-bottom: solid 2px #C0392B;
}

.conf_select select{
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: #C0392B;
}

.info_input textarea {
    padding: 10px 20px;
    height: 140px;
    line-height: 24px;
}

.info_input input[type="text"]::-webkit-input-placeholder,
.info_input input[type="text"]:-ms-input-placeholder,
.info_input input[type="text"]:-ms-input-placeholder,
.info_input input[type="text"]:-ms-input-placeholder,
.info_input input[type="password"]::-webkit-input-placeholder,
.info_input input[type="password"]:-ms-input-placeholder,
.info_input input[type="password"]:-ms-input-placeholder,
.info_input input[type="password"]:-ms-input-placeholder,
.info_input textarea::-webkit-input-placeholder,
.info_input textarea:-ms-input-placeholder,
.info_input textarea:-ms-input-placeholder,
.info_input textarea:-ms-input-placeholder{
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #8C8C8C;
    letter-spacing: 0.04em;
    font-style: normal;
}

.info_input .usual_text {
    font-size: 12px;
}

.info_input input[type="password"]::placeholder,
.info_input input[type="text"]::placeholder,
.info_input textarea::placeholder{
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #8C8C8C;
    letter-spacing: 0.04em;
    font-style: normal;
    opacity: 1;
}

.info_input input[type="text"]::-webkit-input-placeholder,
.info_input input[type="text"]:-ms-input-placeholder,
.info_input input[type="text"]:-ms-input-placeholder,
.info_input input[type="text"]:-ms-input-placeholder,
.info_input input[type="password"]::-webkit-input-placeholder,
.info_input input[type="password"]:-ms-input-placeholder,
.info_input input[type="password"]:-ms-input-placeholder,
.info_input input[type="password"]:-ms-input-placeholder,
.info_input input[type="password"]::placeholder,
.info_input input[type="text"]::placeholder{
    line-height: 52px;
}

.info_input textarea::-webkit-input-placeholder,
.info_input textarea:-ms-input-placeholder,
.info_input textarea:-ms-input-placeholder,
.info_input textarea:-ms-input-placeholder,
.info_input textarea::placeholder{
    line-height: 24px;
}

.input_wrap{
    width: 100%;
    font-size: 0;
    box-sizing: border-box;
    padding: 0 0 20px 40px;
}

.input_wrap label{
    cursor: pointer;
    width: 100%;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: #1E1E20;
}

.input_wrap input[type=checkbox], .input_wrap input[type=radio] {
    vertical-align: middle;
    margin: -2px 8px 0 -20px;
}

.input_wrap label:hover {
    color: #65ADDE;
}

.attachment_wrap{
    width: 100%;
    padding: 0 15px;
    box-sizing: border-box;
}

input[type="file"] {
    cursor: pointer;
    position: absolute;
    left: 0;
    opacity: 0;
    top: 0;
    bottom: 0;
    width: 100%;
}

.attach {
    cursor: pointer;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F5F5F5;
    border: dashed 2px #787878;
    border-radius: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: #787878;
    letter-spacing: 0.04em;
    text-align: center;
}

.add_file {
    display: inline-block;
    position: relative;
    height: 100px;
    width: 100%;
}

.attach .dragover {
    background-color: #aaa;
}

.error_message {
    display: none;
    width: 100%;
    font-size: 12px;
    font-weight: 500;
    color: #C0392B;
    margin-top: 10px;
}

.error .error_message{
    display: block;
}

.hint_message {
    display: block;
    width: 100%;
    font-size: 12px;
    font-weight: 500;
    color: gray;
    margin-top: 10px;
    text-align: right;
}

.disclaimer{
    width: 100%;
    max-width: 600px;
    padding: 30px 15px 20px;
    box-sizing: border-box;
    margin: auto;
}

.disclaimer p{
    font-size: 10px;
    font-weight: 400;
    color: #1E1E20;
    line-height: 1.6em;
    letter-spacing: 0.04em;
    text-align: center;
    margin: 0;
}

.submit_btn {
    display: block;
    cursor: pointer;
    /*width: 100%;*/
    min-width: 300px;
    height: 52px;
    border-radius: 26px;
    border: none;
    margin: 0 auto;
    padding: 0 20px;
    background-color: #C0392B;
    font-size: 14px;
    font-weight: 500;
    color: #FFFFFF;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.submit_btn:hover{
    opacity: 0.7;
}

.col2 .submit_btn {
    /*max-width: unset;*/
    width: 100%;
}



.amount{
    font-size: 0;
    width: 100%;
    box-sizing: border-box;
    padding-bottom: 20px;
}

.counter{
    border: solid 1px #e6e6e6;
    box-sizing: border-box;
}

.but{
    vertical-align: top;
    cursor: pointer;
    width: 52px;
    height: 52px;
    overflow: hidden;
    text-indent: -10000px;
    outline: none;
    transition: all 0.3s ease;
    border: none;
}

.but:hover{
    background-color: #f5f5f5;
}

.but:active{
    background-color: #7c72df;
}

.dec{
    background: url("img/decr@2x.png") no-repeat 50% 50% #FFFFFF;
    background-size: 20px 20px;
}

.inc{
    background: url("img/incr@2x.png") no-repeat 50% 50% #FFFFFF;
    background-size: 20px 20px;
}

.field{
    vertical-align: top;
    width: calc(100% - 104px);
    height: 52px;
    border: none;
    padding: 0;
    font-size: 16px;
    color: #1E1E20;
    font-weight: 400;
    text-align: center;
}

.totals {
    list-style-type: none;
    padding: 30px 0;
    border-top: dashed 1px #B4B4B4;
    border-bottom: dashed 1px #B4B4B4;
}

.totals li {
    font-size: 14px;
    font-weight: 400;
    color: #1E1E20;
    margin-bottom: 15px;
}

.totals li:last-child{
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 0;
}

.totals li:after {
    content: "";
    clear: both;
    display: block;
}

.totals .label {
    float: left;
}

.totals .value {
    float: right;
}

.about_rate{
    position: relative;
    width: 100%;
    padding: 40px 50px;
    box-sizing: border-box;
    background-color: #FFFFFF;
    color: #1E1E20;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.04em;
    border-radius: 10px;
    margin-bottom: 40px;
}

.about_rate ul{
    list-style-type: none;
    margin-top: 20px;
}

.about_rate ul li{
    margin-bottom: 8px;
}

.about_rate ul li:first-child{
    font-weight: 700;
}

.r_heading{
    font-size: 20px;
    font-weight: 500;
}

.arrow_up {
    position: absolute;
    bottom: 100%;
    left: 20px;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #FFFFFF;
}

.s_login {
    text-align: center;
    margin: 20px auto;
}

.s_login span{
    display: block;
    width: 100%;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.social_login{
    cursor: pointer;
    display: inline-block;
    vertical-align: top;
    width: 60px;
    height: 60px;
    padding: 10px;
    box-sizing: border-box;
    border-radius: 30px;
    overflow: hidden;
    margin: 30px 20px;
    background-color: #FFFFFF;
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
    transition: all 0.3s ease-in-out;
}

.social_login:hover{
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.social_login img{
    display: block;
    margin: 0;
    padding: 0;
    width: 100%;
    height: auto;
}

.grey{
    background-color: #d2d2d2;
    margin: auto;
    width: 100%;
    max-width: 300px;
}

/*--end forms--*/
/*--account--*/
.account_details{
    float: right;
    width: calc(100% - 220px);
    box-sizing: border-box;
    padding-right: 15px;
    padding-left: 15px;

}

.ticket_list, .article_list{
    width: 100%;
    max-width: 880px;
    margin: auto;
    padding-top: 50px;
}

.acc_heading{
    width: 100%;
    font-size: 32px;
    font-weight: 300;
    line-height: 1.2em;
    margin-bottom: 24px;
}

.acc_ticket_item, .acc_article_item{
    width: 100%;
    background-color: #FFFFFF;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 10px;
    font-size: 0;
}

.acc_ticket_item{
    display: table;
    width:100%;
    table-layout:fixed;
}

.acc_article_item{
    padding: 30px;
    box-sizing: border-box;
}

.cti_section{
    display: table-cell;
    width: 25%;
    padding: 30px;
    box-sizing: border-box;
    border-left: solid 1px #F5F5F5;
}

.cti_section .conf_logo{
    position: relative;
    margin: 0;
    width: 100%;
    max-width: 140px;
    height: 0;
    padding-bottom: 30%;
}

.cti_section .conf_logo img{
    position: absolute;
    display: block;
    width: 100%;
    height: auto;
    margin: auto;
    top: -9999px;
    bottom: -9999px;
    left: -9999px;
    right: -9999px;
    transition: all 0.4s ease;
}

.cti_parameter{
    width: 100%;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.06em;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.cti_value{
    width: 100%;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.06em;
}

.cti_value span{
    white-space: nowrap;
}

.topic_preview{
    display: block;
    text-decoration: none;
    color: #1E1E20;
    margin-bottom: 8px;
}

.acc_article_item h1, .acc_article_item h2, .acc_article_item h3, .acc_article_item h4,
.acc_article_item h5, .acc_article_item h6, .acc_article_item > span{
    display: block;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.02em;
    line-height: 1.4em;
    margin-bottom: 0;
}

.acc_article_item p{
    font-size: 12px;
    margin: 10px 0 0;
    letter-spacing: 0.06em;
}

.presentation_link{
    display: block;
    width: 100%;
    background: url("img/paper_clip@2x.png") no-repeat 0 0;
    background-size: 22px 22px;
    padding: 5px 0 0 32px;
    box-sizing: border-box;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.04em;
    color: #65ADDE;
    text-decoration: none;
    margin-top:30px;
}

.user{
    float: left;
    width: 220px;
    padding: 50px 15px;
    box-sizing: border-box;
}

.user_img{
    cursor: pointer;
    background: url("img/user_img_placeholder.png") no-repeat center center;
    background-size: 80px 80px;
    width: 80px;
    height: 80px;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 3px 6px rgba(0,0,0,0.2);
    margin-bottom: 30px;
}

.user_img img{
    display: block;
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
}

.username{
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.02em;
    margin-bottom: 5px;
}

.change_mail{
    cursor: pointer;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.04em;
    box-sizing: border-box;
    transition: all 0.3s ease-in-out;
}
.change_mail:after{
    content: "";
    display: inline-block;
    vertical-align: top;
    width: 16px;
    height: 16px;
    background: url("img/settings@2x.png") no-repeat 0 0;
    background-size: 16px 16px;
    margin-left: 10px;
}

.change_mail:hover{
    color: #7c72df;
}

.acc_links{
    list-style-type: none;
    margin: 30px 0;
}

.acc_links li{
    margin-bottom: 20px;
    transition: all 0.3s ease-in-out;
}

.acc_links li a{
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.04em;
    color: #1E1E20;
    text-decoration: none;
}

.acc_links li:last-child{
    margin-bottom: 0;
}

.acc_links li:hover, .acc_settings li:hover{
    opacity: 0.6;
}

.acc_links li img{
    display: inline-block;
    vertical-align: center;
    width: 18px;
    height: auto;
    margin: 0 10px 0 0;
    padding: 0;
}

.acc_settings{
    list-style-type: none;
}

.acc_settings li{
    cursor: pointer;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.02em;
    margin-bottom: 12px;
    transition: all 0.3s ease-in-out;
}

/*--end account--*/
/*--footer--*/
footer{
    width: 100%;
    padding: 50px 0;
    background-color: #1E1E20;
}

.footer_logo{
    position: relative;
    display: block;
    float: left;
}

.footer_logo img{
    display: block;
    height: 30px;
    width: auto;
    margin: 0;
    padding: 0;
}

.copyright{
    display: block;
    float: left;
    font-size: 10px;
    font-weight: 400;
    color: #B4B4B4;
    letter-spacing: 0.06em;
    line-height: 1.2em;
    margin: 6px 0 0 15px;
}

footer .about_info span a{
    line-height: 30px;
    color: #B4B4B4!important;
}

footer .social_links li:last-child{
    padding-right: 0;
}

footer .fb, .index_page footer .fb{
    background: url("img/fb_grey@2x.png") no-repeat center center;
    background-size: 16px 16px;
}

footer .vk, .index_page footer .vk{
    background: url("img/vk_grey@2x.png") no-repeat center center;
    background-size: 16px 16px;
}

footer .yt, .index_page footer .yt{
    background: url("img/yt_grey@2x.png") no-repeat center center;
    background-size: 16px 16px;
}

/*--end footer--*/

a {
    font-weight: 500;
    color: #65ADDE;
    text-decoration: none;
}

.info_message {
    width: 100%;
    color: #2B8686;
    text-align: center;
    padding: 10px;
}

.order-links {
    clear: both;
}

.order-links li {
    list-style: none;
    float: left;
    margin-right: 20px;
}


.imageBox
{
    position: relative;
    height: 300px;
    width: 300px;
    border:1px solid #aaa;
    overflow: hidden;
    background: #fff no-repeat;
    cursor:move;
}

.imageBox .thumbBox
{
    position: absolute;
    top: 50%;
    left: 50%;
    width: 202px;
    height: 202px;
    margin-top: -101px;
    margin-left: -101px;
    box-sizing: border-box;
    border: 1px solid rgb(102, 102, 102);
    box-shadow: 0 0 0 1000px rgba(0, 0, 0, 0.5);
    background: none repeat scroll 0 0 transparent;
}

.imageBox .spinner
{
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    text-align: center;
    line-height: 200px;
    background: rgba(0,0,0,0.7);
}

.cropbox-container
{
    margin-top: 20px;
    margin-left: 240px;
    display: none;
}

.cropbox-action
{
    width: 300px;
    height: 30px;
    margin: 10px 0;
}

.cropbox-action input {
    float: right;
}

.cropbox-cropped>img
{
    margin-right: 10px;
}

.error_message_text {
    font-size: 12px;
    font-weight: 500;
    color: #C0392B;
}

.success_message_text {
    font-size: 12px;
    font-weight: 500;
    color: #33aa33;
}