* {
    box-sizing: border-box;
    text-decoration: none;
}

html {
    position: relative;
    margin: 0;
    padding: 0;
    /*scroll-behavior: smooth;*/
}

body {
    font-family: 'Graphik LCG';
    font-weight: normal;
    display: block;
    width: 100%;
    overflow-x: hidden;
}

img {max-width: 100%;}


/*~~~~  Стили header  ~~~~*/
.header {
    background-image: url("../img/header/headerFon.jpg");
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
}
.header_bg {
    background-color: rgba(42, 108, 234, 0.8);
}
.header__top {}
.header__item {
    height: 80px;
    display: table;
    width: 100%;
}
.header__item_center {
    display: table-cell;
    vertical-align: middle;
}
.header__logo {}
.header__logo a {
    display: table;
    text-decoration: none;
}
.header__logo img {
    width: 100%;
    max-width: 120px;
}
.header__burger {
    position: absolute;
    transform: translate(-50%, -50%);
    top: 50%;
    width: 32px;
    height: 32px;
    cursor: pointer;
    right: 0;
    display: none;
}
.header__burger span {
    width: 22px;
    height: 2px;
    background: #fff;
    display: block;
    margin: 8px auto;
}
.header__menu {}
.menuMb {}
.menuMb__top {
    display: none;
}
.header__menu ul {
    padding: 0;
    margin: 0;
    text-align: right;
}
.header__menu li {
    display: inline-block;
    padding: 0 10px;
}
.header__menu li a {
    position: relative;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    color: #fff;
    text-decoration: none;
    padding: 5px 0;
}
.header__menu li a:after {
    position: absolute;
    content: '';
    width: 0;
    height: 1px;
    background: #fff;
    transition: all .5s;
    bottom: 1px;
    left: 0;
}
.header__menu li a:hover:after {
    width: 100%;
}
.header__content {}
.header__content_tb {}
.header__content_center {}
.header__title {margin: 230px 0 25px;}
.header__title h1 {
    max-width: 750px;
    font-style: normal;
    font-weight: 600;
    font-size: 52px;
    text-align: center;
    color: #fff;
    display: block;
    margin: auto;
    line-height: 64px;
}
.header__text {
    max-width: 480px;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    text-align: center;
    color: #fff;
    display: block;
    margin: auto;
}
.header__button {
    margin: 90px auto 310px;
    max-width: 255px;
}
.header__button a {
    padding: 20px 40px;
    width: 100%;
    background: #eceff2; 
    border: 2px solid rgb(194, 200, 205, .0);
    border-radius: 4px;
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    text-align: center;
    color: #191C1F;
    display: block;
    text-decoration: none;
    transition: all .5s;
}
.header__button a:hover {
    border: 2px solid rgb(194, 200, 205, 1);
    background: rgb(194, 200, 205, .75);
}


@media(max-width: 992px) {
    .header__title h1 {
        max-width: 700px;
        font-size: 44px;
    }
    .menuMbBg {
        position: fixed;
        background: rgba(0, 0, 0, 0.5);
        height: 100%;
        width: 100%;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        cursor: pointer;
        visibility: hidden;
        opacity: 0;
        transition: all .5s;
        z-index: 10;
    }
    .menuMbBg.active {
        visibility: visible;
        opacity: 1;
    }
    .header__burger {
        display: block;
    }
    .menuMb {
        position: fixed;
        box-shadow: -1px 0px 25px 0px rgba(0, 0, 0, .57);
        background: #fff;
        width: 375px;
        height: 100%;
        top: 0;
        right: -101%;
        transition: all .5s;
        visibility: hidden;
        opacity: 0;
        z-index: 25;
        max-width: 100%;
    }
    .header__menu.menuMb.active {
        right: 0;
        visibility: visible;
        opacity: 1;
    }
    .menuMb__top {
        padding: 0 15px;
        display: block;
    }
    .menuMb__item {
        height: 80px;
        width: 100%;
        display: table;
    }
    .menuMb__item_center {
        display: table-cell;
        vertical-align: middle;
    }
    .menuMb__logo {}
    .menuMb__logo a {
        display: table;
        text-decoration: none;
    }
    .menuMb__logo img {
        width: 120px;
    }
    .menuMb__close {
        padding: 5px;
        width: auto;
        display: table;
        margin: 0 0 0 auto;
        cursor: pointer;
    }
    .menuMb__close img {
        width: 17px;
    }
    .header__menu ul {
        padding: 0 15px;
    }
    .header__menu li {
        display: block;
        padding: 0;
        border-top: 1px solid #eceff2;
    }
    .header__menu li:last-child {
        border-bottom: 1px solid #eceff2;
    }
    .header__menu li a {
        position: relative;
        text-decoration: none;
        font-style: normal;
        font-weight: 400;
        font-size: 18px;
        color: #83898F;
        padding: 20px 0;
        display: block;
        text-align: left;
        transition: all 1s;
    }
    .header__menu li a:hover {
        color: #2a6cea;
        transition: all 1s;
    }
    .header__menu li a:after {
        position: absolute;
        content: " ";
        background: url(../img/header/rightMenu.svg);
        right: 0;
        top: 50%;
        transform: translate(0, -50%);
        width: 25px;
        height: 25px;
        cursor: pointer;
        transition: all 1s;
        left: auto;
    }
    .header__menu li a:hover:after {
        background: url(../img/header/rightMenuBlue.svg);
        transition: all 1s;
        width: 25px !important;
    }
    .header__title {
        margin: 320px 0 25px;
    }
    .header__title h1 {
        font-size: 32px;
        max-width: 480px;
        line-height: 40px;
    }
    .header__text {
        font-size: 16px;
    }
    .header__button {
        margin: 40px auto 400px;
        max-width: 255px;
    }
}

@media(max-width: 768px) {
    .header__title {
        margin: 90px 0 10px;
    }
    .header__title h1 {
        max-width: 288px;
        font-style: normal;
        font-weight: 600;
        font-size: 24px;
        line-height: 32px;
    }
    .header__text {
        max-width: 288px;
        font-style: normal;
        font-weight: 400;
        font-size: 16px;
        line-height: 28px;
    }
    .header__button {
        margin: 25px auto 170px;
        max-width: 255px;
    }
}
/*~~~~  Стили header^  ~~~~*/


/*~~~~  Стили блока 'Как это работает'  ~~~~*/
.howItWorks {
    position: relative;
    padding: 80px 0;
}
.howItWorks__title {
    margin: 0 0 55px;
}
.howItWorks__title h2 {
    font-style: normal;
    font-weight: 600;
    font-size: 40px;
    text-align: center;
    color: #191C1F;
    margin: 0;
    padding: 0;
}
.howItWorks__guide {}
.howItWorks__guideItem {}
.howItWorks__guideImage {
    margin: 0 0 10px;
}
.howItWorks__guideImage img {
    height: 75px;
}
.howItWorks__guideTT {}
.howItWorks__guideTitle {
    margin: 0 0 10px;
}
.howItWorks__guideTitle h3 {
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: #191C1F;
    margin: 0;
    padding: 0;
}
.howItWorks__guideText {
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    color: #5E646A;
    margin: 0;
    padding: 0;
}

@media(max-width: 992px) {
    .howItWorks__guideItem {
        margin: 0 0 30px;
    }
    .howItWorks__guideItem:before {
        content: '';
        display: table;
    }
    .howItWorks__guideItem:after {
        content: '';
        display: table;
        clear: both;
    }
    .howItWorks__guideImage {
        float: left;
        width: 20%;
    }
    .howItWorks__guideImage img {
        height: 55px;
    }
    .howItWorks__guideTT {
        float: left;
        width: 80%;
    }
}

@media(max-width: 768px) {
    .howItWorks {
        padding: 50px 0;
    }
    .howItWorks__guideItem {
        max-width: 350px;
        margin: 0 auto 30px;
    }
    .howItWorks__guide .col-xs-12:last-child .howItWorks__guideItem {
        margin: 0 auto;
    }
}
/*~~~~  Стили блока 'Как это работает'^  ~~~~*/


/*~~~~  Стили блока 'Круто, ты дошел до третьего блока'  ~~~~*/
.thirdBlock {
    padding: 0 0 80px;
}
.thirdBlock__right {
    width: 48%;
    float: right;
}
.thirdBlock__item {
    display: table;
    width: 100%;
    height: 448px;
    padding: 0 15px;
}
.thirdBlock__item_center {
    display: table-cell;
    vertical-align: middle;
}
.thirdBlock__image {}
.thirdBlock__image img {}
.thirdBlock__left {
    width: 52%;
    float: left;
}
.thirdBlock__content {}
.thirdBlock__title {
    margin: 0 0 20px;
}
.thirdBlock__title h2 {
    font-style: normal;
    font-weight: 600;
    font-size: 32px;
    line-height: 40px;
    color: #191c1f;
    margin: 0;
    padding: 0;
}
.thirdBlock__text {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    color: #5e646a;
}
.thirdBlock__text p {
    margin: 0 0 30px;
}

@media(max-width: 992px) {
    .thirdBlock__title h2 {
        font-style: normal;
        font-weight: 600;
        font-size: 20px;
        line-height: 24px;
        color: #191C1F 191c1f;
    }
    .thirdBlock__text {
        font-style: normal;
        font-weight: 400;
        font-size: 16px;
        line-height: 28px;
        color: #5e646a;
    }
}

@media(max-width: 768px) {
    .thirdBlock {
        padding: 0 0 55px;
    }
    .thirdBlock__right {
        width: 100%;
        float: none;
    }
    .thirdBlock__item {
        height: auto;
    }
    .thirdBlock__image img {
        max-width: 350px;
        margin: 0 auto;
        display: block;
    }
    .thirdBlock__left {
        width: 100%;
        float: none;
    }
    .thirdBlock__content {
        text-align: center;
    }
    .thirdBlock__title {
        margin: 10px 0;
    }
}
/*~~~~  Стили блока 'Круто, ты дошел до третьего блока'^  ~~~~*/



/*~~~~  Стили блока 'Отзывы'  ~~~~*/
.reviews {
    position: relative;
    background: #f6f8fa;
    padding: 55px 0 45px;
}
.reviews__title {
    margin: 0 0 7px;
}
.reviews__title h2 {
    font-style: normal;
    font-weight: 600;
    font-size: 40px;
    line-height: 56px;
    text-align: center;
    color: #191C1F;
    padding: 0;
    margin: 0;
}
#owlCarousel {}
.reviews .owl-carousel .owl-stage-outer {
    /*padding: 16px 39px 23px;*/
}
.reviews .slide {
    padding: 25px 17px;
}
.reviews__item {
    background: #fff;
    box-shadow: 0px 5px 17px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    min-height: 316px;
    padding: 22px;
}
.reviews__person {}
.reviews__person:before {
    content: '';
    display: table;
}
.reviews__person:after {
    content: '';
    display: table;
    clear: both;
}
.reviews__personIcon {
    width: 20%;
    float: left;
}
.reviews__personIcon img {
    max-width: 44px;
}
.reviews__personInfo {
    width: 80%;
    float: left;
}
.reviews__personName {
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: #191C1F;
}
.reviews__personCity {
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    color: #5E646A;
}
.reviews__review {
    position: relative;
    margin: 20px 0 0;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    color: #191C1F;
}


.reviews .owl-carousel .owl-dots.disabled, .reviews .owl-carousel .owl-nav.disabled {
    display: block;
    position: relative;
}
.reviews .owl-nav {margin: 0; display: table !important; width: 100%;}
.reviews .owl-theme .owl-nav [class*=owl-] {
    position: absolute;
    z-index: 1;
    top: 43%;
    transform: translateY(-50%);
    color: #2a6cea;
    font-size: 46px;
    margin: 5px 111px;
    line-height: 1;
    box-shadow: initial;
    background: rgba(227, 227, 227, 0);
    display: inline-block;
    cursor: pointer;
    border-radius: 0;
    transition: .5s;
}
.reviews .owl-theme .owl-nav .owl-prev {
    padding: 0;
    float: left;
    margin: 0;
    left: -60px;
}
.reviews .owl-theme .owl-nav .owl-next {
    padding: 0;
    float: right;
    margin: 0;
    right: -60px;
}
.reviews .owl-theme .owl-nav [class*=owl-] img {
    width: 40px;
    filter: invert(0);
    transition: all .5s;
}
.reviews .owl-theme .owl-nav [class*=owl-] img:hover {
    filter: invert(0.5);
}
.reviews .owl-theme .owl-dots {
    position: relative;
    margin: 25px 0 0;
    top: 0;
}
.reviews .owl-theme .owl-dots .owl-dot span {
    width: 8px;
    height: 8px;
    margin: 5px 12px;
    background: #C2C8CD;
    display: block;
    border: 0px solid #C2C8CD;
    -webkit-backface-visibility: visible;
    transition: opacity .2s ease;
    border-radius: 30px;
    transition: all .5s;
}
.reviews .owl-theme .owl-dots .owl-dot.active span, .reviews .owl-theme .owl-dots .owl-dot:hover span {
    background: #2A6CEA;
    height: 8px;
    width: 8px;
}


@media (max-width: 1199.5px) {
    .reviews #owlCarousel {
        margin: auto;
    }
    .reviews .owl-theme .owl-nav .owl-prev {
        left: -50px;
    }
    .reviews .owl-theme .owl-nav .owl-next {
        right: -50px;
    }
}
@media (max-width: 991.5px) {
    .reviews #owlCarousel {
        width: auto;
        margin: auto;
    }
    .reviews .owl-theme .owl-nav [class*=owl-] {
        top: initial;
        transform: initial;
    }
    .reviews .owl-theme .owl-nav [class*=owl-] img {
        width: 25px;
        filter: invert(0);
        transition: all .5s;
    }
    .reviews .owl-theme .owl-nav .owl-prev {
        padding: 0;
        float: left;
        margin: 0;
        left: 10px;
    }
    .reviews .owl-theme .owl-nav .owl-next {
        padding: 0;
        float: right;
        margin: 0;
        right: 10px;
    }
    .reviews .owl-theme .owl-dots {
        margin: 17px auto 0 !important;
        top: 0;
        max-width: 80%;
    }
}

@media(max-width: 768px) {
    .reviews {
        margin: 0 -15px;
    }
    .reviews__title {
        padding: 0 15px;
    }
    .reviews .slide {
        padding: 15px;
    }
    .reviews__item {
        min-height: auto;
    }
    .reviews__personIcon {
        width: 25%;
        float: left;
    }
    .reviews__personInfo {
        width: 75%;
        float: left;
    }
}
/*~~~~  Стили блока 'Отзывы'^  ~~~~*/



/*~~~~  Стили блока 'Вопросы и ответы'  ~~~~*/
.questionsAndAnswers {
    padding: 80px 0;
}
.questionAnswer__title {
    margin: 0 0 40px;
}
.questionAnswer__title h2 {
    font-style: normal;
    font-weight: 600;
    font-size: 40px;
    line-height: 56px;
    text-align: center;
    color: #191C1F;
    margin: 0;
    padding: 0;
}
.questionAnswer__content {}
.questionAnswer__content ul {
    position: relative;
    margin: 0;
    padding: 0;
    list-style: none;
}
.questionAnswer__content ul li {
    position: relative;
    padding: 25px 0;
    border-top: 1px solid #f6f8fa;
}
.questionAnswer__content ul li:last-child {
    border-bottom: 1px solid #f6f8fa;
}
.questionAnswer__content ul li:before {
    position: relative;
    display: none;
}
.questionAnswer__content ul li p {
    position: relative;
}
.questionAnswer__content ul li p.question {
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 32px;
    color: #191C1F;
    margin: 0;
    padding: 0 35px 0 0;
    transition: all .5s;
    cursor: pointer;
}
.questionAnswer__content ul li p.question:hover {
    color: #2a6cea;
}
.questionAnswer__content ul li p.question:after {
    position: absolute;
    content: " ";
    background: url(../img/plus.svg);
    right: 0;
    top: 50%;
    transform: translate(0, -50%);
    width: 25px;
    height: 25px;
    cursor: pointer;
    transition: all .5s;
}
.questionAnswer__content ul li p.question:hover:after {
    background: url(../img/plusBlue.svg);
}
.questionAnswer__content ul li.active p.question {

}
.questionAnswer__content ul li p.answer {
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 32px;
    color: #5E646A;
    padding: 0;
    margin: 0;
    height: 0;
    visibility: hidden;
    height: 0;
    opacity: 0;
}
.questionAnswer__content ul li.active p.answer {
    padding: 25px 0 0;
    visibility: visible;
    transition: 1s;
    height: 100%;
    opacity: 1;
}

@media(max-width: 768px) {
    .questionsAndAnswers {
        padding: 57px 0;
    }
    .questionAnswer__content ul li.active p.answer {
        padding: 15px 0 0;
    }
    .questionAnswer__content ul li:last-child {
        border-bottom: 0px solid #f6f8fa;
    }
}
/*~~~~  Стили блока 'Вопросы и ответы'^  ~~~~*/



/*~~~~  Стили блока 'Опрошенные пользователи'  ~~~~*/
.interviewees {
    padding: 70px 0 32px;
    background: #f6f8fa;
}
.interviewees__content {}
.interviewees__item {
    margin: 0 0 37px;
}
.interviewees__title {
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 32px;
    color: #191C1F;
    margin: 0 0 17px;
}
.interviewees__text {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    color: #191C1F;
}

@media(max-width: 992px) {
    .interviewees {
        padding: 20px 0 32px;
    }
    .interviewees__title {
        margin: 0 0 46px;
    }
    .interviewees__text {
        margin: 0px;
    }
    .interviewees__item {
        margin: 0 0 20px;
    }
    .interviewees .col-xs-12:last-child .interviewees__item {
        margin: 0;
    }
}

@media(max-width: 768px) {
    .interviewees {
        padding: 20px 0;
    }
    .interviewees__title {
        margin: 0 0 20px;
    }
    .interviewees__text {
        margin: 0px;
    }
    .interviewees__item {
        margin: 0 0 20px;
    }
    .interviewees .col-xs-12:last-child .interviewees__item {
        margin: 0;
    }
}
/*~~~~  Стили блока 'Опрошенные пользователи'^  ~~~~*/



/*~~~~  Стили блока 'Форма обратной связи'  ~~~~*/
.feedbackForm {
    padding: 80px 0;
}
.feedbackForm__title {
    font-style: normal;
    font-weight: 600;
    font-size: 40px;
    line-height: 56px;
    text-align: center;
    color: #191C1F;
    margin: 0 0 44px;
}
.feedbackForm__callForm {
    width: 100%;
    max-width: 800px;
    display: block;
    margin: auto;
}
.feedbackForm__callForm form {
    margin: 0 -16px;
}
.feedbackForm__callForm form:before {
    content: '';
    display: table;
}
.feedbackForm__callForm form:after {
    content: '';
    display: table;
    clear: both;
}
.feedbackForm__callForm form label {
    position: relative;
    width: 50%;
    float: left;
    margin: 0 0 30px;
    padding: 0 16px;
}
.feedbackForm__callForm form input {
    box-sizing: border-box;
    background: #F6F8FA;
    border: 2px solid #F6F8FA;
    border-radius: 4px;
    width: 100%;
    padding: 26px 16px 2px;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 32px;
    transition: all .5s;
    color: #5e646a;
    outline: none;
}
.callForm__text {
    position: absolute;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 32px;
    color: #5e646a;
    left: 34px;
    top: 18px;
    transition: all .5s;
}


body form.callForm label input:focus + .callForm__text,
body form.callForm label input:valid + .callForm__text {
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    color: #83898F;
    top: 8px;
}

body form.callForm label input:focus,
body form.callForm label input:valid {
    border: 2px solid #C2C8CD;
    /*outline: 2px solid #C2C8CD;*/
}

.callForm__check {
    width: 50%;
    float: left;
    padding: 0 16px;
}
body form .callForm__check input {
    width: 25px;
    height: 25px;
    margin: 0 16px 0 0;
    display: inline-table;
    vertical-align: middle;
    padding: 0;
    line-height: initial;
    border-radius: initial;
    border: none;
    outline: none;
    cursor: pointer;
}
.callForm__check input[type="checkbox"]:checked {

}
.callForm__checkbox {

}
.callForm__checkbox:before {content: ''; display: table;}
.callForm__checkbox:after {content: ''; display: table; clear: both;}
.callForm__checkYes {
    position: absolute;
    visibility: hidden;
    opacity: 0;
    transition: all .5s;
    left: 0;
    top: 0;
}
.callForm__checkNo {
    visibility: visible;
    opacity: 1;
    transition: all .5s;
}
.callForm__check input[type="checkbox"]:checked + label .callForm__checkYes {
    visibility: visible;
    opacity: 1;
}
.callForm__check input[type="checkbox"]:checked + label .callForm__checkNo {
    visibility: hidden;
    opacity: 0;
}
body form .callForm__check label {
    position: relative;
    margin: 0;
    padding: 0;
    text-align: left;
    width: 75%;
    vertical-align: middle;
    float: none;
    cursor: pointer;
}
.callForm__link {}
.callForm__link a {}
.callForm__submit {
    width: 50%;
    float: left;
    padding: 0 16px;
}
body form .callForm__submit input {
    background: #2A6CEA;
    border-radius: 4px;
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 24px;
    text-align: center;
    color: #FFFFFF;
    outline: none;
    padding: 20px;
    transition: all .5s;
}
body form .callForm__submit input:hover {
    background: #397DFF;
}
body form .callForm__submit input[disabled] {
    padding: 20px 40px;
    background: #ECEFF2;
    border-radius: 4px;
    border: 1px solid rgba(236, 239, 242, 0);
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 24px;
    text-align: center;
    color: #191C1F;
    transition: all .5s;
}
body form .callForm__submit input[disabled]:hover {
    padding: 20px 40px;
    background: #FFFFFF;
    border: 1px solid #C2C8CD;
    border-radius: 4px;
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 24px;
    text-align: center;
    color: #191C1F;
}

@media(max-width: 768px) {
    .feedbackForm {
        padding: 55px 0;
    }
    .feedbackForm__callForm {
        max-width: 500px;
        margin: 0 auto;
    }
    .feedbackForm__title {
        margin: 0 0 30px;
        font-size: 24px;
        line-height: 32px;
    }
    .feedbackForm__callForm form label {
        margin: 0 0 20px;
        float: none;
        width: 100%;
    }
    .callForm__check {
        margin: 0 0 20px;
        float: none;
        width: 100%;
    }
    .callForm__submit {
        float: none;
        width: 100%;
    }
}
/*~~~~  Стили блока 'Форма обратной связи'^  ~~~~*/



/*~~~~  Стили блока 'Footer'  ~~~~*/
.footer {
    padding: 28px 0;
    border-top: 1px solid #eceff2;
}
.footer__content {
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 32px;
    text-align: center;
    color: #191C1F;
}
/*~~~~  Стили блока 'Footer'^  ~~~~*/



/*~~~~  Стили блока 'Кнопки вверх'  ~~~~*/
.toTop {
    position: fixed;
    background: #2a6cea;
    opacity: 0.7;
    bottom: 26px;
    right: 26px;
    border-radius: 8px;
    transition: .5s;
    z-index: 10000000000;
    cursor: pointer;
    display: none;
    outline: none;
    border: 0;
}
.toTop_dsTable {
    display: table;
    width: 40px;
    height: 40px;
    text-align: center;
    outline: none;
    border: 0;
}
.toTop_center {
    vertical-align: middle;
    display: table-cell;
    color: #fff;
    font-size: 26px;
    opacity: 1;
    position: relative;
    line-height: 1;
    top: -1px;
    outline: none;
    border: 0;
}
.toTop:hover {
    opacity: 1;
    transition: 1s;
}

@media (max-width: 1920px) {
    .toTop {
        bottom: 26px;
        right: 26px;
        border-radius: 8px;
    }
    .toTop_dsTable {
        width: 40px;
        height: 40px;
    }
    .toTop_center {
        font-size: 26px;
        top: -1px;
    }
}

@media(max-width: 480px) {
    .toTop {
        bottom: 26px;
        right: 26px;
    }
    .logo-block>div{
        width: 100%;
    }
}
/*~~~~  Стили блока 'Кнопки вверх'^  ~~~~*/



/*~~~~  Стили блока 'modalWindowOfThanks'  ~~~~*/
.modalWindowOfThanks {
    position:fixed;
    height:100%;
    width:100%;
    -webkit-transition: all .25s;
    -o-transition: all .25s;
    transition: all .25s;
    display:table;
    opacity:0;
    cursor:pointer;
    top:0;
    right:0;
    bottom:0;
    left:0;
    visibility: hidden;
    z-index: 8888888;
}
.modalWindowOfThanks__blackFon {
    position:fixed;
    height:100%;
    width:100%;
    background:rgba(0,0,0,0.5);
    -webkit-transition:1.7s;
    -o-transition: all .25s;
    transition: all .25s;
    opacity:0;
    cursor:pointer;
    top:0;
    right:0;
    bottom:0;
    left:0;
    z-index:1;
    visibility: hidden;
}
.modalWindowOfThanks_center {
    position:relative;
    display:table-cell;
    vertical-align:middle;
}
.modalWindowOfThanks__content {
    position: relative;
    margin: auto;
    width: 93%;
    max-width: 360px;
    padding: 35px;
    background: #fff;
    z-index: 5;
    text-align: center;
    -webkit-transition: all .25s;
    -o-transition: all .25s;
    transition: all .25s;
    opacity: 0;
    border-radius: 5px;
}
.modalWindowOfThanks__content .crossElement {
    position: relative;
    cursor: pointer;
    width: 25px;
    display: block;
    margin: -18px -17px 0 auto;
}
.modalWindowOfThanks__content .crossElement img {
    filter: brightness(0.5);
}
.modalWindowOfThanks__content .crossElement span {position:relative;}
.modalWindowOfThanks__content .crossElement span svg {
    position: relative;
    fill: #2a6cea;
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
}
.modalWindowOfThanks__content .crossElement span svg:hover {
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}
.modalWindowOfThanks__content .responseText {
    position: relative;
    color: #2a6cea;
    font-size: 23px;
    line-height: 1.4;
}
.modalWindowOfThanks__content .responseText__animation:after {
    content:'.';
    -webkit-animation: loading 1s ease alternate infinite;
    animation: loading 1s ease alternate infinite;
}
@-webkit-keyframes loading {
    60% {
        text-shadow: 0.35em 0 0 currentColor;
    }
    100% {
        text-shadow: 0.35em 0 0 currentColor, 0.75em 0 0 currentColor;
    }
}
@keyframes loading {
    60% {
        text-shadow: 0.35em 0 0 currentColor;
    }
    100% {
        text-shadow: 0.35em 0 0 currentColor, 0.75em 0 0 currentColor;
    }
}
.modalWindowOfThanks__content .textError__form {color: red;}
.modalWindowOfThanks__content .successText__form {position:relative;}
.modalWindowOfThanks__content .successText__form p {
    padding:0;
    margin:0;
}
.modalWindowOfThanks.open {
    -webkit-transition: all .25s;
    -o-transition: all .25s;
    transition: all .25s;
    opacity: 1;
    visibility: visible;
}
.modalWindowOfThanks.open .modalWindowOfThanks__blackFon {
    -webkit-transition: all .25s;
    -o-transition: all .25s;
    transition: all .25s;
    opacity: 1;
    z-index: 70;
    visibility: visible;
}
.modalWindowOfThanks.open .modalWindowOfThanks__content {
    -webkit-transition: all .25s;
    -o-transition: all .25s;
    transition: all .25s;
    opacity: 1;
    z-index: 80;
}
/*~~~~  Стили блока 'modalWindowOfThanks'^  ~~~~*/