@import url("../fonts/lato/stylesheet.css");
@import url("../fonts/montserrat/stylesheet.css");
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:ital,wght@0,100..700;1,100..700&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --popup-text-color: #333;
}

.btn {
    margin: 0;
    padding: 0;
    color: currentColor;
    border: none;
    box-shadow: none;
    background: none;
    outline: none;
    text-decoration: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    line-height: 1;
    cursor: pointer;
}

*, *:before, *:after {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-tap-highlight-color: transparent;
}

body {
    font-size: 1rem;
    color: #333;
    font-family: 'Lato', Arial, Helvetica, sans-serif;
}

body.no-scroll {
    overflow: hidden;
}

.content {
    min-height: 100vh;
    display: grid;
    grid-template-rows: auto 1fr auto;
    grid-template-columns: 100%;
}

.limit {
    width: 82.5rem;
    max-width: 100%;
    margin: 0 auto;
}

a {
    transition: all 0.3s;
}

button {
    transition: background 0.3s;
}

@media (max-width: 90rem) {
    .limit {
        width: 100%;
        padding: 0 2.5rem;
    }
}

@media (max-width: 1023px) {
    .limit {
        padding: 0 1.25rem;
    }
}

@media (max-width: 767px) {
    .limit {
        padding: 0 0.625rem;
    }
}

@media (max-width: 767px) {
    /*.footer {*/
    /*    display: none;*/
    /*}*/
}

.flex-panel {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    justify-content: space-between;
}

.flex-panel__itm {
    margin-right: 2rem;
}

.flex-panel__itm:last-child {
    margin-right: 0;
}

@media (max-width: 767px) {
    .flex-panel {
        display: block;
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    }
}

.icn {
    display: block;
    max-width: 100%;
    max-height: 100%;
    fill: currentColor;
    transition: all 0.3s;
}

.sect {
    margin: 3.125rem 0;
}

@media (max-width: 767px) {
    .sect {
        margin: 1.25rem 0;
    }
}

.sect_no-padding {
    margin: 0;
}

.sect__title {
    margin-bottom: 1.875rem;
}

.sect__title + .sect__title {
    margin-top: 3.125rem;
}

.sect__block {
    margin-bottom: 1.25rem;
}

.sect__block:last-child {
    margin-bottom: 0;
}

.two-col {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    clear: both;
}

.two-col__main {
    width: 57.5%;
    flex-grow: 1;
}

@media (max-width: 767px) {
    .two-col__main {
        width: 100%;
    }
}

@media (max-width: 991px) {
    .two-col__main .form__col {
        width: 100%;
    }

    .two-col__main .form__col:not(:last-child) {
        margin-right: 0;
        margin-bottom: 30px;
    }

    .two-col__main .form__col .check {
        margin-top: 0;
    }
}

.two-col__aside {
    width: 40%;
}

@media (max-width: 767px) {
    .two-col__aside {
        width: 100%;
        display: none;
    }
}

@media (max-width: 767px) {
    .two-col__aside.mobile-visible {
        -ms-flex-order: -1;
        order: -1;
        margin-bottom: 1.25rem;
    }
}

.sidebar {
    width: 100%;
    height: 100%;
    margin-left: 40px;
    text-align: center;
}

@media (max-width: 767px) {
  .sidebar {
    margin-top: 15px;
    margin-left: 0;
  }
}

.sidebar .slider {
    margin-bottom: 1.25rem;
}

.banner {
    display: block;
    width: 28.125rem;
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
    text-align: center;
}

.banner__img {
    display: block;
    max-width: 100%;
    border: none;
    margin: 0 auto 1.25rem;
}

.banner__txt {
    display: block;
    width: 20rem;
    max-width: 100%;
    margin: 0 auto;
    font-weight: 600;
}

.page-title,
.section-title {
    font-size: 1.625rem;
    font-weight: bold;
    line-height: 1;
    margin: 0;
}

.block-title {
    margin-bottom: 50px;
}

@media (max-width: 767px) {
    .mobile-visible {
        display: block;
    }

    .block-title {
        margin-bottom: 20px;
    }
}

@media (max-width: 767px) {
    .mobile-heddien {
        display: none;
    }
}

.only-mobile {
    display: none;
}

@media (max-width: 767px) {
    .only-mobile {
        display: block;
    }
}

a {
    color: #3D4940;
    text-decoration: none;
}

.link {
    color: #2C6AE1;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    outline: none;
    transition: all 0.3s linear;
}

.link:focus {
    color: #333;
}

.link:hover {
    text-decoration: underline;
}

.balance {
    display: block;
    margin: 0 auto;
    width: 18.75rem;
    max-width: 100%;
    background-image: linear-gradient(270deg, #FEA82F 0%, #1a4326 97.93%);
    border-radius: 5px;
    padding: 0.625rem;
    color: #fff;
    line-height: 1;
    position: relative;
}

.balance__close {
    display: block;
    width: 1rem;
    height: 1rem;
    position: absolute;
    top: 0.625rem;
    right: 0.625rem;
    cursor: pointer;
}

.balance__title {
    -moz-text-align-last: left;
    text-align-last: left;
    font-weight: 600;
    margin-bottom: 5rem;
}

.balance__txt {
    font-size: 1.25rem;
    font-weight: bold;
    line-height: 1.25;
    margin-bottom: 1.875rem;
}

.balance__icn {
    display: inline-block;
    width: 2.125rem;
    height: 2.125rem;
    margin-bottom: 1.25rem;
}

.balance__val {
    font-size: 3.125rem;
    font-weight: bold;
    margin-bottom: 2.1875rem;
}

.btn-nav {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    max-width: 100%;
}

.btn-nav__itm {
    margin-right: 30px;
}

.btn-nav__itm:last-child {
    margin-right: 0;
}

.btn-nav__link {
    position: relative;
    display: inline-block;
    color: currentColor;
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    outline: none;
    transition: all 0.3s linear;
}

@media (max-width: 359px) {
    .btn-nav__link {
        font-size: 16px;
    }

    .btn-nav__itm {
        margin-right: 20px;
    }
}

.btn-nav__link:after {
    content: '';
    position: absolute;
    bottom: -26px;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: #1a4326;
    opacity: 0;
    cursor: default;
}

.btn-nav__link:hover, .btn-nav__link:focus {
    color: #1a4326;
}

.btn-nav__link.active:after {
    opacity: 1;
}

@media (max-width: 767px) {
    .btn-nav__link:after {
        display: none;
    }

    .btn-nav__link.active {
        color: #1a4326;
    }
}

.btn-nav__link.active:hover, .btn-nav__link.active:focus {
    color: currentColor;
}

.btn_subm {
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 15px 25px;
    width: 18.75rem;
    max-width: 100%;
    height: 60px;
    background-color: #3D4940;
    border-radius: 0.3125rem;
    color: #fff;
    font-size: 1.5rem;
    font-weight: bold;
}

.btn_subm + .link-container {
    margin-left: 30px;
}

@media (max-width: 767px) {
    .btn_subm {
        max-width: 100%;
    }

    .btn_subm + .link-container {
        margin: 15px auto 0;
    }
}
@media (max-width: 479px) {
  .btn_subm {
    max-width: 60%;
  }
}

.btn_subm .btn__icn {
    width: 1rem;
    height: 1rem;
    margin-left: 1.5625rem;
}

.btn_subm .btn__icn:first-child {
    margin-left: 0;
    margin-right: 1.5625rem;
}

.btn_subm:focus {
    box-shadow: 0 0 0.3125rem 0 rgba(0, 0, 0, 0.5);
}

.btn_subm:hover {
    background-color: #1a4326;
}

.btn--back {
    padding: 0 40px;
    max-width: 100%;
    height: 60px;
    background-color: #3D4940;
    border-radius: 0.3125rem;
    color: #fff;
    font-size: 1.5rem;
    font-weight: bold;
    vertical-align: top;
}

.btn--back .btn__icn {
    width: 1.5rem;
    height: 1.5rem;
}

.btn--back:hover {
    box-shadow: 0 0 0.3125rem 0 rgba(0, 0, 0, 0.5);
}

@media (max-width: 479px) {
    .btn--back {
        width: 37%;
        padding: 0;
        display: inline-flex;
        justify-content: center;
        align-items: center;
    }
}

.btn--close {
    width: 30px;
    height: 30px;
    color: #3D4940;
    float: right;
}

.btn--close .icn {
    width: 100%;
    height: 100%;
}

.btn--close:hover {
    color: #000;
}

.check {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: start;
    align-items: flex-start;
    position: relative;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.radio__inpt,
.check__inpt {
    margin: 0;
    position: absolute;
    top: 30%;
    left: 5%;
    opacity: 0;
    cursor: pointer;
}

.check__inpt:checked ~ .check__mask .check__icn {
    display: block;
}

.check__inpt:focus ~ .check__mask {
    box-shadow: 0 0 0.3125rem rgba(0, 0, 0, 0.2);
}

.check__mask {
    display: -ms-inline-flexbox;
    flex-shrink: 0;
    display: inline-flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background-color: #DED4D4;
    cursor: pointer;
    transition: background-color 0.3s;
}

.check__inpt:checked ~ .check__mask {
    background-color: #e3f4e6;
}

.check__mask:not(:last-child) {
    margin-right: 0.75rem;
}

.check__mask:not(:first-child) {
    margin-left: 0.75rem;
}

.check__icn {
    display: none;
    width: 1.25rem;
    height: 1.25rem;
    color: #333;
}

.check__label {
  -ms-flex-positive: 1;
    flex-grow: 1;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-align: start;
    align-items: flex-start;
    padding-top: 0.375rem;
    font-size: 1.0625rem;
    font-weight: bold;
}

.check__label a {
    color: #2C6AE1;
    text-decoration: none;
    margin: 0 .25em;
}

.check__label a:hover {
    text-decoration: underline;
}

.check__label-icn {
    margin-left: auto;
}

.check__label-img {
    display: block;
    max-width: 100%;
    margin: 0;
}

.completed-info {
    font-size: 1.0625rem;
}

.footer {
    padding: 19px 0;
}

.copiright {
    line-height: 1;
    margin-right: 18px;
}

@media (max-width: 767px) {
    .copiright {
        margin-bottom: 0.625rem;
    }
}

.footer-nav {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.footer-nav__link {
    color: #2C6AE1;
    line-height: 1;
    text-decoration: none;
    margin: 0.625rem 3rem 0.625rem 0;
    outline: none;
    transition: all 0.3s linear;
}

.footer-nav__link:focus {
    color: #333;
}

.footer-nav__link:hover {
    text-decoration: underline;
}

.footer-nav__link:last-child {
    margin-right: 0;
}

/* statt form */
.form {
    width: 100%;
}

.form__block {
    margin: 2.8125rem 0;
}

.form__block:last-child {
    margin-bottom: 0;
}

.form__title {
    font-size: 24px;
    /*font-weight: bold;*/
}

.form__title .form__descr {
    margin-top: 0.625rem;
}

.form__descr {
    font-size: 16px;
    font-weight: 700;
    line-height: 25px;
}

.form__title:not(:last-child) {
    margin-bottom: 25px;
}

.form__brdr {
    border-top: 0.0625rem solid #DED4D4;
    padding: 0.9375rem 0;
}

.form__brdr:last-child {
    border-bottom: 0.0625rem solid #DED4D4;
}

.form__row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 30px;
}

.form__row:last-child {
    margin-bottom: 0;
}

.form_profile .form__title {
    margin-bottom: 0.625rem;
}

.form_resultate .form__title {
    margin-bottom: 1.5625rem;
}

.form_restore-pas {
    width: 18.75rem;
    max-width: 100%;
}

.form__title_content {
    width: 150%;
}

.form__grade {
    display: flex;
    align-items: flex-end;
}

.form__grade:not(:last-child) {
    margin-bottom: 40px;
}

.form__grade:not(:first-child) {
    margin-top: 40px;
}

.form__subtitle {
    font-weight: 600;
}

.form__grade .radio__label,
.form__grade .check__label {
    order: -1;
    padding-top: 0;
    padding-bottom: 10px;
}

.form__grade .radio,
.form__grade .check {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.form__grade .radio__mask,
.form__grade .check__mask {
    margin-right: 0;
    border-color: #333;
}
.form__grade .radio__mask_poll,
.form__grade .check__mask {
    margin-right: 0;
    border-color: #333;
}

.form__grade-fields {
    display: flex;
    justify-content: space-between;
}

/* edit */
@media (min-width: 768px) {

    /* .form__grade-fields > *:not(:last-child),
    .form__grade > *:not(:last-child) {
        margin-right: 50px;
    } */

    .form__grade .form__subtitle {
        margin-bottom: 7px;
    }
}

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

@media (max-width: 767px) {
    .form__title_content {
        width: 100%;
    }

    .form__row {
        flex-direction: column;
        align-items: flex-start;
    }

    .form__grade {
        flex-wrap: wrap-reverse;
        align-items: flex-start;
        justify-content: space-between;
    }

    .form__grade .form__subtitle:last-child {
        padding-left: 10px;
    }

    .form__grade .form__subtitle:first-child {
        padding-right: 10px;
    }

    .form__grade-fields {
        width: 100%;
        order: -1;
        margin-bottom: 20px;
    }

    .form__grade-fields > *:not(:last-child) {
        margin-right: 10px;
    }
}
/* end form */

/* start common */
.content-container {
    margin-left: 120px;
    margin-right: 120px;
}
.rubik-font {
    font-family: "Rubik", sans-serif;
}
.adlam-display-regular {
    font-family: "ADLaM Display", system-ui;
}
/* end common */

/* start header */
.header {
    position: relative;
    min-height: 6.88vw;       /* 132px */
    max-height: 6.88vw;       /* 132px */
    border-top-width: 0;
    border-left-width: 0;
    border-right-width: 0;
    border-bottom-width: 0.10vw; /* 2px */
    border-style: solid;
    border-color: #9CAD84;
}

.header-logo {
    top: 2.60vw;              /* 50px */
    left: 10.69vw;            /* -90px */
    position: absolute;
    overflow: hidden;
    width: 14.84vw;           /* 285px */
    height: 14.84vw;          /* 285px */
    border-radius: 100%;
    background-color: #9CAD84;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-logo img {
    object-fit: contain;
}

@media (max-width: 700px) {
     .header {
        min-height: 35.2vw;   /* 132px */
        max-height: 35.2vw;   /* 132px */
        border-bottom-width: 0.53vw; /* 2px */
    }
    .header-logo {
        left: 8vw;       /* 30px */
        width: 45.33vw;  /* 170px */
        height: 45.33vw; /* 170px */
        top: 2.33vw;    /* 50px */
        display: flex;
        justify-content: center;
        align-items: center;
    }
}
/* end header */

/* start voice matter secion */
.voice-matter-section {
    overflow-x: clip;
    position: relative;
}

.voice-matter-section:before,
.voice-matter-section:after {
    content: "";
    position: absolute;
    border-radius: 100%;
    background-color: #9CAD84;
}

.voice-matter-section:before {
    top: 1.15vw; /* 22px */
    width: 15.42vw; /* 296px */
    height: 14.74vw; /* 283px */
    transform: translateX(-60%);
}

.voice-matter-section:after {
    width: 14.58vw; /* 280px */
    height: 9.90vw; /* 190px */
    transform: translateX(-60%) translateY(-100%);
}

.voice-matter-section__body {
    display: flex;
    padding: 5.21vw 6.25vw 9.58vw 9.38vw; /* 100px 120px 184px 180px */
}

.voice-matter-section__body-content {
    margin-top: 8.44vw; /* 162px */
    display: flex;
    flex-direction: column;
}

.voice-matter-section__body-content h2 {
    margin: 0;
    font-size: 4.17vw; /* 80px */
    font-weight: 700;
    letter-spacing: 0.1em;
}

.voice-matter-section__body-content h3 {
    margin: -0.52vw 0 0; /* -10px */
    font-size: 2.50vw; /* 48px */
    font-weight: 700;
    letter-spacing: 0.1em;
}

.voice-matter-section__body-content span {
    color: #FF5508;
    font-weight: 900;
    text-decoration: underline;
}

.voice-matter-section__body-content p {
    margin: 1.46vw 0 0 0.52vw; /* 28px 0 0 10px */
    font-size: 1.04vw; /* 20px */
    letter-spacing: 0.09em;
}

.voice-matter-section__body-card {
    margin-left: auto;
    object-fit: cover;
    overflow: hidden;
    width: 38.28vw; /* 735px */
    height: 32.81vw; /* 630px */
    border-radius: 4.17vw; /* 80px */
    background-color: #9CAD84;
}

@media (max-width: 700px) {
    .voice-matter-section__body {
        flex-direction: column;
        padding-top: 0vw;
        padding-left: 19.73vw;       /* 74px */
        padding-right: 8vw;          /* 30px */
        padding-bottom: 16vw;        /* 60px */
    }

    .voice-matter-section:before {
        top: 14.13vw;              /* 53px */
        width: 78.93vw;            /* 296px */
        height: 64vw;              /* 240px */
        transform: translateX(-80%);
    }

    .voice-matter-section:after {
        width: 45.33vw;            /* 170px */
        height: 38.13vw;           /* 143px */
        transform: translateX(-80%) translateY(-50%);
    }

    .voice-matter-section__body-content {
        margin-top: 28vw;            /* 90px */
        margin-right: 8vw;           /* 30px */
    }

    .voice-matter-section__body-content h2,
    .voice-matter-section__body-content h3 {
        font-weight: 400;
        font-size: 8.53vw;           /* 32px */
        line-height: 100%;
        letter-spacing: 0.01em;
    }

    .voice-matter-section__body-content h3 {
        margin-top: 1.6vw;           /* 6px */
    }

    .voice-matter-section__body-content p {
        margin: 7.47vw 0 0 0;
        font-size: 5.33vw;
    }

    .voice-matter-section__body-content span {
        font-weight: 400;
    }

    .voice-matter-section__body-card {
        width: 75.47vw;              /* 283px */
        height: 64.53vw;             /* 242px */
        margin-top: 8vw;             /* 30px */
        margin-left: -8vw;           /* -30px */
        border-radius: 15vw;
    }
}
/* end voice matter section */

/* start about project section */
.about-project-section {
    background: #9CAD8457;
}

.about-project-section__body {
    margin: 3.54vw 10.94vw 4.69vw 13.28vw; /* 68px 210px 90px 255px */
    display: flex;
    flex-direction: column;
    gap: 3.02vw; /* 58px */
}

.about-project-section__body-title {
    margin: 0.52vw 0 0 -3.13vw; /* 10px 0 0 -60px */
    text-align: center;
    font-weight: 700;
    font-size: 3.33vw; /* 64px */
    line-height: 2.60vw; /* 50px */
    letter-spacing: 0.01em;
}

.about-project-section__body-content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: nowrap;
}

.about-project-section__body-content-card {
    overflow: hidden;
    object-fit: cover;
    width: 23.13vw; /* 444px */
    height: 23.13vw; /* 444px */
    border-radius: 3.44vw; /* 66px */
    background-color: #9CAD84;
}

.about-project-section__body-content-container {
    display: flex;
    flex-direction: column;
    gap: 3.23vw; /* 62px */
}

.about-project-section__body-content-title {
    margin: 0.52vw 2.34vw 0 0; /* 10px 45px 0 0 */
    font-weight: 700;
    font-size: 2.50vw; /* 48px */
    line-height: 2.60vw; /* 50px */
    letter-spacing: 0.02em;
}

.about-project-section__body-content-list {
    margin-top: 0.26vw; /* 5px */
    margin-left: -0.26vw; /* -5px */
    display: flex;
    flex-direction: column;
    gap: 0.73vw; /* 14px */
}

.about-project-section__body-content-list p {
    gap: 1.20vw; /* 23px */
    display: flex;
    align-items: center;
    margin: 0;
    color: #4F5665;
    font-weight: 400;
    font-size: 1.67vw; /* 32px */
    line-height: 1.56vw; /* 30px */
    letter-spacing: 0.02em;
}

.about-project-section__body-content-list p:before {
    content: "";
    min-width: 1.98vw; /* 38px */
    max-width: 1.98vw; /* 38px */
    min-height: 1.98vw; /* 38px */
    max-height: 1.98vw; /* 38px */
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url("data:image/svg+xml,%3Csvg width='36' height='36' viewBox='0 0 36 36' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M17.9394 2.98987C9.69629 2.98987 2.98999 9.69617 2.98999 17.9393C2.98999 26.1824 9.69629 32.8886 17.9394 32.8886C26.1825 32.8886 32.8888 26.1824 32.8888 17.9393C32.8888 9.69617 26.1825 2.98987 17.9394 2.98987ZM14.951 24.5364L10.4579 20.053C9.87373 19.4701 9.87255 18.5241 10.4553 17.9397C11.0383 17.355 11.9851 17.3539 12.5695 17.9373L14.948 20.3117L21.8053 13.4544C22.389 12.8707 23.3354 12.8707 23.9191 13.4544C24.5029 14.0382 24.5029 14.9846 23.9191 15.5683L14.951 24.5364Z' fill='%232FAB73'/%3E%3C/svg%3E%0A");
}

@media (max-width: 700px) {
    .about-project-section__body {
        margin: 0;
        margin-top: 10vw;                /* 15px */
        margin-left: 4.8vw;             /* 18px */
        margin-bottom: 8vw;             /* 30px */
        gap: 2.67vw;                    /* 10px */
    }

    .about-project-section__body-content-card {
        margin-top: 12vw;
        min-width: 38.13vw;             /* 143px */
        max-width: 38.13vw;
        min-height: 38.13vw;
        max-height: 38.13vw;
        border-radius: 5.33vw;          /* 20px */
    }

    .about-project-section__body-content {
        gap: 8vw;                       /* 30px */
        align-items: center;
    }

    .about-project-section__body-content-container {
        gap: 2.67vw;                    /* 10px */
    }

    .about-project-section__body-title {
        font-size: 6.4vw;               /* 24px */
        margin: 0;
    }

    .about-project-section__body-content-title {
        margin: 0;
        margin-top: 8vw;
        max-width: 80%;
        font-size: 4vw;                 /* 15px */
        line-height: 4.8vw;             /* 18px */
    }

    .about-project-section__body-content-list {
        margin: 0;
        gap: 2.67vw;                    /* 10px */
    }

    .about-project-section__body-content-list p {
        font-size: 4vw;                 /* 15px */
        line-height: 4vw;               /* 15px */
    }

    .about-project-section__body-content-list p:before {
        min-width: 6.4vw;               /* 24px */
        max-width: 6.4vw;
        min-height: 6.4vw;
        max-height: 6.4vw;
    }
}
/* end about project section */

/* start how work section */
.how-work-section {
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
}

.how-work-section:before {
    content: "";
    border-radius: 100%;
    position: absolute;
    top: 17.71vw;             /* 340px */
    right: 0;
    width: 15.63vw;           /* 300px */
    height: 15.63vw;          /* 300px */
    background-color: #9CAD84;
    transform: translateX(50%);
}

.how-work-section__body {
    width: 82%;
    margin-left: 3.23vw;      /* 62px */
    padding-bottom: 48.44vw;  /* 930px */
}

.how-work-section__body-title {
    margin-top: 3.65vw;       /* 70px */
    margin-left: 3.65vw;      /* 70px */
    font-weight: 400;
    font-size: 3.33vw;        /* 64px */
    line-height: 2.60vw;      /* 50px */
    letter-spacing: 0.02em;
    text-align: center;
}

.how-work-section__body-list {
    margin-top: 5.73vw;       /* 110px */
    display: flex;
    justify-content: space-between;
}

.how-work-section__body-list-item {
    display: flex;
    align-items: center;
    gap: 1.35vw;              /* 26px */
}

.how-work-section__body-list-item span {
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 4.53vw;        /* 87px */
    max-width: 4.53vw;
    min-height: 4.53vw;
    max-height: 4.53vw;
    background: #FFECEC;
    font-weight: 700;
    font-size: 2.50vw;        /* 48px */
    line-height: 1.56vw;      /* 30px */
}

.how-work-section__body-list-item p {
    margin: 0;
    color: #4F5665;
    font-weight: 700;
    font-size: 1.88vw;        /* 36px */
    line-height: 1.56vw;      /* 30px */
    letter-spacing: 0.02em;
}

.how-work-section__body-img {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100vw;
}

.how-work-section__body-img-mobile {
    display: none;
}

@media (max-width: 700px) {
    .how-work-section__body {
        width: 100%;
        margin: 0;
        padding: 0;
        margin-top: 8vw;
        margin-left: 5.33vw;           /* 20px */
        padding-bottom: 8vw;           /* 30px */
    }

    .how-work-section:before {
        width: 80vw;         /* 300px */
        height: 80vw;        /* 300px */
        transform: translateX(87%);
        top: unset;
        bottom: 0;
    }

    .how-work-section__body-title {
        margin: 0;
        margin-top: 4vw;               /* 15px */
        font-size: 8.53vw;             /* 32px */
    }

    .how-work-section__body-list {
        margin-top: 8vw;               /* 30px */
        gap: 6.67vw;                   /* 25px */
        flex-direction: column;
    }

    .how-work-section__body-list-item {
        display: flex;
        align-items: center;
        gap: 6.93vw;              /* 26px */
    }

    .how-work-section__body-list-item span {
        min-width: 23.2vw;        /* 87px */
        max-width: 23.2vw;
        min-height: 23.2vw;
        max-height: 23.2vw;
        font-size: 12.8vw;        /* 48px */
        line-height: 8vw;         /* 30px */
    }

    .how-work-section__body-list-item p {
        margin: 0;
        color: #4F5665;
        font-weight: 700;
        font-size: 8vw;
        line-height: 8vw;
        letter-spacing: 0.02em;
    }

    .how-work-section__body-img {
        display: none;
    }

    .how-work-section__body-img-mobile {
        display: flex;
        width: 100%;
        margin-top: 13.33vw;           /* 50px */
    }
}
/* end how work section */

/* start anonim section */
.anonim-section {
    position: relative;
    overflow: hidden;
    background: #9CAD8457;
}

.anonim-section__body {
    /* без изменений */
}

.anonim-section__body-title {
    font-weight: 400;
    font-size: 3.33vw;        /* 64px */
    line-height: 2.60vw;      /* 50px */
    letter-spacing: 0.01em;
    text-align: center;
}

.anonim-section__body-content {
    margin-top: 1.56vw;       /* 30px */
    margin-left: 7.29vw;      /* 140px */
    margin-bottom: 2.45vw;    /* 47px */
    display: flex;
    align-items: center;
    gap: 10.68vw;             /* 205px */
}

.anonim-section__body-text h3 {
    margin: 0;
    font-weight: 400;
    font-size: 2.50vw;        /* 48px */
    line-height: 2.60vw;      /* 50px */
    letter-spacing: 0.1em;
}

.anonim-section__body-text p {
    margin: 0;
    margin-top: 1.04vw;       /* 20px */
    color: #4F5665;
    font-weight: 400;
    font-size: 1.67vw;        /* 32px */
    line-height: 1.56vw;      /* 30px */
    letter-spacing: 0.02em;
}

.anonim-section__body-img {
    height: 13.02vw;          /* 250px */
}

.anonim-section__body-img-mobile {
    display: none;
}

@media (max-width: 700px) {
    .anonim-section__body-content {
        margin: 0;
        gap: 8vw;               /* 30px */
        margin-left: 7.73vw;    /* 29px */
    }
    .anonim-section__body-title {
        font-size: 6.4vw;       /* 24px */
        line-height: 4.8vw;     /* 18px */
        margin-top: 8vw;        /* 30px */
    }
    .anonim-section__body-text h3 {
        font-size: 5.33vw;      /* 20px */
        line-height: 4.8vw;     /* 18px */
    }
    .anonim-section__body-text p {
        margin-top: 7vw;
        font-size: 5.33vw;      /* 20px */
        line-height: 4.8vw;     /* 18px */
    }
    .anonim-section__body-img {
        display: none;
    }
    .anonim-section__body-img-mobile {
        display: flex;
        width: 28vw;            /* 105px */
        margin-right: 10.67vw;  /* 40px */
    }
}
/* end anonim section */

/* start voice matter section */
.voices-matter-section {
    position: relative;
    overflow: hidden;
    padding-left: 7.57vw;    /* 145px */
    padding-right: 4.79vw;   /* 92px */
    padding-bottom: 4.69vw;  /* 90px */
}
.voices-matter-section:before {
    content: "";
    border-radius: 100%;
    position: absolute;
    bottom: 0.21vw;          /* 4px */
    right: 0;
    width: 15.63vw;          /* 300px */
    height: 15.63vw;         /* 300px */
    background-color: #9CAD84;
    transform: translateX(60%);
}
.voices-matter-section h2 {
    margin: 0;
    margin-top: 3.02vw;      /* 58px */
    font-size: 2.5vw;        /* 48px */
    line-height: 2.34vw;     /* 45px */
    letter-spacing: 0.02em;
}
.voices-matter-section p {
    color: #4F5665;
    margin: 0;
    margin-top: 1.82vw;      /* 35px */
    font-weight: 400;
    font-size: 1.25vw;       /* 24px */
    line-height: 1.56vw;     /* 30px */
    letter-spacing: 0.02em;
}

@media (max-width: 700px) {
    .voices-matter-section {
        padding: 0;
        padding-left: 5.33vw;     /* 20px */
        padding-right: 2.13vw;    /* 8px */
        padding-top: 8vw;         /* 30px */
        padding-bottom: 6.4vw;    /* 24px */
    }
    .voices-matter-section:before {
        bottom: 10.67vw;          /* 40px */
        right: 0;
        width: 80vw;              /* 300px */
        height: 80vw;             /* 300px */
        transform: translateX(95%);
    }
    .voices-matter-section h2 {
        margin: 0;
        font-size: 5.33vw;        /* 20px */
        line-height: 4.8vw;       /* 18px */
        text-align: center;
    }
    .voices-matter-section p {
        color: #4F5665;
        margin: 0;
        margin-top: 5.33vw;       /* 20px */
        font-size: 3.2vw;         /* 12px */
        line-height: 4.8vw;       /* 18px */
    }
}
/* end voice matter section */

/* start section footer */
.footer-section {
    position: relative;
    padding-top: 1.56vw;       /* 30px */
    padding-left: 7.81vw;      /* 150px */
    padding-bottom: 5.21vw;    /* 100px */
    background: #00000012;
}
.footer-section__logo {
    display: flex;
    align-items: center;
    gap: 1.56vw;               /* 30px */
}
.footer-section__logo-container {
    width: 7.81vw;             /* 150px */
    height: 7.81vw;            /* 150px */
    overflow: hidden;
    border-radius: 100%;
    background-color: #9CAD84;
    display: flex;
    justify-content: center;
    align-items: center;
}
.footer-section__logo h2 {
    margin: 0;
    color: #0B132A;
    font-weight: 700;
    font-size: 2.5vw;          /* 48px */
    line-height: 100%;
    letter-spacing: 0.02em;
}
.footer-section__description {
    max-width: 28.65vw;        /* 550px */
    margin: 0;
    margin-top: 1.56vw;        /* 30px */
    color: #4F5665;
    font-weight: 400;
    font-size: 0.83vw;         /* 16px */
    line-height: 1.56vw;       /* 30px */
    letter-spacing: 0.02em;
}
.footer-section__copyright {
    position: absolute;
    right: 1.56vw;             /* 30px */
    bottom: 1.56vw;            /* 30px */
    color: #AFB5C0;
    font-weight: 400;
    font-size: 0.83vw;         /* 16px */
    line-height: 1.56vw;       /* 30px */
    letter-spacing: 0.01em;
}

@media (max-width: 700px) {
    .footer-section {
        padding-top: 8vw;          /* 30px */
        padding-left: 5.87vw;      /* 22px */
        padding-right: 5.07vw;     /* 19px */
        padding-bottom: 53.33vw;   /* 200px */
    }
    .footer-section__logo {
        gap: 5.33vw;               /* 20px */
    }
    .footer-section__logo-container {
        width: 21.33vw;            /* 80px */
        height: 21.33vw;           /* 80px */
    }
    .footer-section__logo h2 {
        margin: 0;
        font-size: 6.4vw;          /* 24px */
    }
    .footer-section__description {
        max-width: unset;
        margin: 0;
        margin-top: 8vw;           /* 30px */
        font-size: 3.2vw;          /* 12px */
        line-height: 4.8vw;        /* 18px */
    }
    .footer-section__copyright {
        right: 2.67vw;             /* 10px */
        bottom: -2.67vw;           /* -10px */
        font-size: 4.27vw;         /* 16px */
        line-height: 8vw;          /* 30px */
    }
}
/* end section footer */

.inpt {
    display: block;
    width: 100%;
    line-height: 1;
    position: relative;
    clear: both;
}

.inpt__label {
    display: inline-block;
    font-weight: 700;
    margin-bottom: 0.625rem;
}

.inpt__change {
    display: inline-block;
    font-weight: 700;
    margin-bottom: 0.625rem;
    color: #2C6AE1;
    cursor: pointer;
    float: right;
}

.inpt__change:hover {
    text-decoration: underline;
}

.inpt__field {
    width: 100%;
    height: 3.5rem;
    padding: 0 1.25rem;
    color: #333;
    font-size: 20px;
    font-family: 'Lato', Arial, Helvetica, sans-serif;
    font-weight: bold;
    border: 1px solid #DED4D4;
    border-radius: 0;
    box-shadow: none;
    outline: none;
    transition: background 0.3s;
}

.inpt__error {
    display: none;
    color: red;
    font-weight: 600;
    line-height: 1;
    margin-top: 0.125rem;
}

.inpt.error .inpt__field {
    border-color: red;
    color: red;
}

.inpt.error .inpt__error {
    display: block;
}

.inpt.inpt--filled .inpt__field {
    background-color: #E1F1FF;
    border-color: #E1F1FF;
}

.inpt.inpt--filled .select2-container--default .select2-selection--multiple,
.inpt.inpt--filled .select2-container--default .select2-selection--single {
    background-color: #E1F1FF;
    border-color: #E1F1FF;
}

.inpt.required .inpt__label::after {
    content: "*";
    color: inherit;
    font-size: inherit;
    font-weight: inherit;
    font-family: inherit;
}

.inpt.readonly .inpt__field {
    background-color: #f2f7fa;
    border: none;
    font-weight: normal;
}

.inpt.readonly .inpt__field:focus {
    box-shadow: none;
}

.inpt.readonly textarea.inpt__field {
    height: auto;
    min-height: 3.5rem;
}

::-webkit-input-placeholder {
    color: #D7D7D7;
    font-weight: bold;
}

::-moz-placeholder {
    color: #D7D7D7;
    font-weight: bold;
}

:-ms-input-placeholder {
    color: #D7D7D7;
    font-weight: bold;
}

:-moz-placeholder {
    color: #D7D7D7;
    font-weight: bold;
}

textarea.inpt__field {
    height: 9.375rem;
    padding: 1.25rem;
    resize: none;
}

.inpt .select2-container {
    width: 100% !important;
    font-size: 20px;
    font-weight: bold;
}

.inpt .select2-container .select2-selection--single {
    height: 3.5rem;
    border-color: #DED4D4;
    outline: none;
}

.inpt .select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 3.5rem;
    padding: 0 2.5rem 0 1.25rem;
}

.inpt .select2-container--default .select2-selection--single .select2-selection__arrow {
    width: 2.5rem;
    height: 100%;
}

.inpt .select2-container--default .select2-selection__arrow b {
    color: #333333;
    width: 0.9375rem;
    height: 0.5625rem;
    border: none;
    margin-left: -0.4375rem;
    margin-top: -0.25rem;
}

.inpt .select2-container--default .select2-selection__arrow b:before,
.inpt .select2-container--default .select2-selection__arrow b:after {
    content: '';
    display: block;
    width: 0.125rem;
    height: 0.625rem;
    background-color: currentColor;
    position: absolute;
    top: 0;
}

.inpt .select2-container--default .select2-selection__arrow b:before {
    left: 0.1875rem;
    -webkit-transform: rotate(-50deg);
    transform: rotate(-50deg);
}

.inpt .select2-container--default .select2-selection__arrow b:after {
    right: 0.1875rem;
    -webkit-transform: rotate(50deg);
    transform: rotate(50deg);
}

/* start login-block */
.login-block {
    width: 500px;
    margin: 0 auto;
    max-width: 100%;
}

.login-block__form:not(:last-child) {
    margin-bottom: 10px;
}

.login-block .link-container {
    width: 100%;
    text-align: center;
}

.login-block .inpt__field,
.login-block .inpt__label,
.login-block .inpt__error,
.login-block .form__title,
.login-block .form__descr {
    text-align: center;
}

.login-block .check__label,
.login-block .inpt__label {
    display: block;
}

.login-block .btn {
    width: 100%;
    margin-top: 10px;
}

.login-block--gray {
    padding: 40px 30px;
    background-color: #EFECEC;
    border-radius: 2px;
}

.login-block--gray .inpt__field {
    border: none;
}

.login-block--gray .check__mask {
    background-color: #fff;
}

.login-block__socials {
    text-align: center;
    margin-bottom: 1.875rem;
}

.login-block .socials {
    -ms-flex-pack: center;
    justify-content: center;
}

.login-block__registrate {
    color: #333;
    font-size: 20px;
    font-weight: 700;
    line-height: 25px;
    text-align: center;
    border-bottom: 1px solid #DED4D4;
    padding-bottom: 30px;
    margin-bottom: 30px;
}

.login-block__registrate span {
    margin-right: 15px;
}

.login-block__registrate .link {
    display: inline-block;
    height: 40px;
    border-radius: 5px;
    background-color: #1a4326;
    color: #fff;
    padding: 0 15px;
    line-height: 36px;
    margin-top: 10px;
}

.login-block__registrate .link:hover {
    background-color: #3D4940;
}
/* end login-block */

.logo {
    /*display: -ms-flexbox;*/
    /*display: flex;*/
    align-items: center;
    -ms-flex-align: center;
    -ms-flex-pack: center;
    max-width: 100%;
    text-decoration: none;
    color: #fff;
    line-height: 1;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    outline: none;
}

.logo__pic {
    width: 54px;
    margin-right: 1.25rem;
}

.logo__pic_mob {
    display: none;
}

.logo__txt {
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    font-size: 1.875rem;
}

@media (min-width: 992px) {
    .logo__txt br {
        display: none;
    }
}

@media (max-width: 1199px) {
    .logo__txt {
        font-size: 1.5rem;
    }
}

@media (max-width: 767px) {
    .logo {
        max-width: 100%;
        height: 4rem;
        -ms-flex-align: center;
        align-items: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .logo__pic {
        margin: 0;
    }

    .logo__pic_desk {
        display: none;
    }

    .logo__pic_mob {
        display: block;
    }

    .logo__txt {
        font-size: 1.2rem;
    }
}

.burger {
    display: none;
    width: 30px;
    min-width: 30px;
    height: 21px;
    margin-right: 5%;
    position: relative;
    z-index: 100;
    transition: all 0.3s linear;
}

.burger.active span {
    background-color: #3D4940;
}

.burger.active .burger__top {
    -webkit-transform: translateY(0.55rem) translateX(0) rotate(45deg);
    transform: translateY(0.55rem) translateX(0) rotate(45deg);
}

.burger.active .burger__middle {
    opacity: 0;
}

.burger.active .burger__bottom {
    -webkit-transform: translateY(-0.575rem) translateX(0) rotate(-45deg);
    transform: translateY(-0.575rem) translateX(0) rotate(-45deg);
}

.burger span {
    background-color: #333;
    height: 3px;
    width: 100%;
    border-radius: 5px;
    position: absolute;
    top: 0;
    left: 0;
    cursor: pointer;
    transition: all 0.3s linear;
}

.burger span:nth-of-type(2) {
    top: 9px;
}

.burger span:nth-of-type(3) {
    top: 18px;
}

.burger:hover span {
    background-color: #3D4940;
}


.mobile-mnu {
    display: grid;
    grid-template-rows: 1fr auto;
    grid-template-columns: 100%;
    width: 80vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    padding-top: 4rem;
    padding: 4rem 0.625rem 0.625rem;
    background-color: #EFECEC;
    box-shadow: 0px 0px 20px rgba(222, 212, 212, 0.8);
    z-index: 10;
    transition: all 0.3s linear;
    overflow: auto;
}

.mobile-mnu__list {
    width: 100%;
    height: 100%;
}

.mobile-mnu__list-itm {
    padding: 0.9375rem 0;
}

.mobile-mnu__link {
    color: #333;
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: none;
}

.mobile-mnu__link:hover {
    color: #3D4940;
}

.mobile-mnu__footer-link {
    color: #333;
    font-size: 1.0625rem;
    font-weight: bold;
    text-decoration: none;
}

.mobile-mnu__footer-link:hover {
    color: #3D4940;
}

.mobile-mnu.active {
    -webkit-transform: translateX(0);
    transform: translateX(0);
}

@media (min-width: 48rem) {
    .mobile-mnu.active {
        display: none;
    }
}

.nav {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
}

@media (max-width: 480px) {
    .nav {
        -ms-flex-pack: distribute;
        justify-content: space-around;
        padding-right: 20%;
    }
}

.nav__link {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    height: 2.5rem;
    color: #fff;
    font-size: 1.125rem;
    font-weight: bold;
    text-decoration: none;
    outline: none;
    padding: 0.3125rem 1rem;
    margin-right: 1.125rem;
    border-radius: 5px;
}

.nav__link:last-child {
    margin-right: 0;
}

.nav__link:focus {
    color: #333;
}

.nav__link.active, .nav__link:hover {
    color: #333;
    background-color: #fff;
}

.nav__link.active .nav__link-icn, .nav__link:hover .nav__link-icn {
    color: #3D4940;
}

.nav__link.active:focus, .nav__link.active:hover {
    color: #3D4940;
}

@media (max-width: 767px) {
    .nav__link.active, .nav__link:hover {
        background-color: transparent;
    }
}

@media (max-width: 1023px) {
    .nav__link {
        margin-right: 0.3125rem;
    }
}

@media (max-width: 767px) {
    .nav__link {
        padding: 0;
        margin-right: 5%;
        color: #333;
    }
}

.nav__link-icn {
    display: inline-block;
    vertical-align: middle;
    width: 1.875rem;
    height: 1.875rem;
    margin-right: 0.5rem;
}

@media (max-width: 767px) {
    .nav__link-icn {
        margin: 0;
    }
}

.nav__link-icn .icn-man {
    fill: none;
    stroke: currentColor;
    stroke-width: 0.125rem;
}

@media (max-width: 767px) {
    .nav__link-txt {
        display: none;
    }
}

@media (max-width: 767px) {
    .login {
        display: none;
    }
}


.polls-list__itm {
    margin-bottom: 1.5625rem;
    border-bottom: 1px solid #DED4D4;
}

.polls-list__itm:last-child {
    margin-bottom: 0;
}

.polls-list_available .polls-list__itm {
    margin-bottom: 0;
    border-top: 1px solid #DED4D4;
    border-bottom: none;
}

.polls-list_available .polls-list__itm:last-child {
    border-bottom: 1px solid #DED4D4;
}


.progress {
    display: flex;
    background-color: #a0b67f;
    width: 100%;
    line-height: 1;
    text-decoration: none;
    color: currentColor;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    outline: none;
    position: relative;
}

@media (min-width: 480px) {

    .progress--sm {
        display: inline-flex;
        width: auto;
    }
}

@media (max-width: 479px) {

    .progress {
        flex-direction: column;
    }
}

.progress:not(:last-child) {
    margin-bottom: 25px;
}

.progress:focus {
    box-shadow: 0 0 0.125rem 0 rgba(0, 0, 0, 0.5);
}

.progress__time {
    position: absolute;
    top: calc(100% + 5px);
    font-style: italic;
    font-size: 13px;
    line-height: 1;
    color: #bbb;
    font-weight: 600;
    white-space: nowrap;
}

.progress__txt {
    display: -ms-flexbox;
    flex-grow: 1;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    padding: 1.25rem;
}

.progress__val {
    color: #1a4326;
    font-size: 26px;
    font-weight: 700;
    margin-right: 5.5%;
}

.progress__title {
    font-size: 20px;
    font-weight: bold;
}

@media (max-width: 767px) {

    .progress__title {
        font-size: 18px;
    }
}

.progress__title:not(:last-child) {
    margin-bottom: 10px;
}

.progress__bar {
    width: 100%;
    height: 0.3125rem;
    background-color: #DED4D4;
    position: absolute;
}

.progress__line {
    height: 100%;
    background-color: #3D4940;
}

.progress__arrow {
    width: 1rem;
    height: 1rem;
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    color: #DED4D4;
}

.progress_available {
    min-height: 70px;
    padding: 15px 0;
}

.radio {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: start;
    align-items: flex-start;
    position: relative;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.radio__inpt:checked ~ .radio__mask::before {
    display: block;
}

.radio__inpt:focus ~ .radio__mask {
    box-shadow: 0 0 0.3125rem rgba(0, 0, 0, 0.2);
}
.radio__inpt:checked ~ .radio__mask_poll::before {
    display: block;
}

.radio__inpt:focus ~ .radio__mask_poll {
    box-shadow: 0 0 0.3125rem rgba(0, 0, 0, 0.2);
}

.radio__mask {
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    flex-shrink: 0;
    width: 1.875rem;
    min-width: 1.875rem;
    height: 1.875rem;
    border-radius: 50%;
    border: 0.0625rem solid #DED4D4;
    margin-right: 0.75rem;
    cursor: pointer;
}
.radio__mask_poll {
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    flex-shrink: 0;
    width: 1.875rem;
    min-width: 1.875rem;
    height: 1.875rem;
    border-radius: 50%;
    border: 0.0625rem solid #DED4D4;
    margin-right: 0.75rem;
    cursor: pointer;
}

.radio__mask::before {
    content: '';
    display: none;
    width: 1.125rem;
    height: 1.125rem;
    border-radius: 50%;
    background-color: #3D4940;
}
.radio__mask_poll::before {
    content: '';
    display: none;
    width: 1.125rem;
    height: 1.125rem;
    border-radius: 50%;
    background-color: #3D4940;
}

.radio__label {
    -ms-flex-positive: 1;
    flex-grow: 1;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-align: start;
    align-items: flex-start;
    padding-top: 0.375rem;
    font-size: 1.0625rem;
    font-weight: bold;
}

.radio__label-icn {
    margin-left: auto;
}

.radio__label-img {
    display: block;
    max-width: 100%;
    margin: 0;
}

.restore-pass__txt {
    margin-bottom: 1.875rem;
}

.resultate {
    line-height: 1;
    margin-bottom: 1.875rem;
}

.resultate:last-child {
    margin-bottom: 0;
}

.resultate__title {
    font-size: 1.0625rem;
    font-weight: bold;
    margin-bottom: 1.25rem;
}

.resultate__val {
    color: #3D4940;
    font-size: 3.125rem;
    font-weight: 900;
}

.slider {
    width: 20rem;
    max-width: 100%;
    margin: 0 auto;
}

.slider button.owl-dot {
    width: 0.9375rem;
    height: 0.9375rem;
    border-radius: 50%;
    background-color: #EFECEC;
    margin-right: 0.625rem;
}

.slider button.owl-dot:last-child {
    margin-right: 0;
}

.slider button.owl-dot.active {
    background-color: #3D4940;
}

.slider .owl-dots {
    margin-top: 1.25rem;
}

.socials__title {
    font-size: 16px;
    font-weight: 600;
    line-height: 20px;
    margin-bottom: 25px;
}

.socials-list {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    justify-content: center;
}

.socials-list__itm {
    margin-right: 20px;
}

.socials-list__itm:last-child {
    margin-right: 0;
}

.social {
    display: block;
    width: 40px;
    min-width: 40px;
    height: 40px;
    border-radius: 50%;
    color: currentColor;
    overflow: hidden;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    text-decoration: none;
}

.social__icn {
    display: block;
    width: 100%;
    max-width: 100%;
    height: 100%;
    max-height: 100%;
}

.social_fb .social__icn {
    background-image: url(../img/sprite.png);
    background-position: 0 0;
}

.social_google .social__icn {
    background-image: url(../img/sprite.png);
    background-position: -2.8125rem 0;
}

.social_vk .social__icn {
    background-image: url(../img/sprite.png);
    background-position: -5.625rem 0;
}

.social_ok .social__icn {
    background-image: url(../img/sprite.png);
    background-position: -2.8125rem -2.8125rem;
}

.social_mail .social__icn {
    background-image: url(../img/sprite.png);
    background-position: 0 -2.8125rem;
}

.social:hover {
    opacity: 0.8;
}

.sortable-list__itm {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    border-top: 0.0625rem solid #DED4D4;
    position: relative;
    margin-left: 2.5rem;
}

.sortable-list__itm:last-child {
    border-bottom: 0.0625rem solid #DED4D4;
}

.sortable-list__itm-num {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 1.875rem;
    height: 1.875rem;
    border-radius: 50%;
    background-color: #3D4940;
    color: #fff;
    font-size: 0.875rem;
    font-weight: 900;
    line-height: 1;
    position: absolute;
    left: -2.5rem;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.sortable {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-positive: 1;
    flex-grow: 1;
    position: relative;
    line-height: 1;
    padding: 1.125rem 0;
}

.sortable__title {
    font-size: 1.0625rem;
    font-weight: bold;
}

.sortable__trigger {
    width: 1.875rem;
    height: 1.875rem;
    color: #b4bfc7;
    margin-left: auto;
    cursor: pointer;
}

.top-bar {
    padding: 21px 0 21px;
    background-color: #EFECEC;
    border-bottom: 1px solid #DED4D4;
}

.top-bar_no-bg {
    background-color: transparent;
}

.top-panel {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

@media (max-width: 767px) {
    .top-panel {
        justify-content: center;
    }
}

.top-panel__btns {
    margin-left: 70px;
}

@media (max-width: 767px) {
    .top-panel__btns {
        width: 100%;
        margin-left: 0;
        margin-top: 0.9375rem;
        display: flex;
        justify-content: center;
        overflow-x: auto;
        overflow-y: hidden;
    }
}

.txt p {
    margin: 1.5625rem 0;
}

.txt h2, .txt h3, .txt h4 {
    font-weight: 600;
}

.txt h2 + *, .txt h3 + *, .txt h4 + * {
    margin-top: 1rem;
}

.txt h2 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
}

.txt h3 {
    font-size: 1.25rem;
    margin: 1.5rem 0 1rem;
}

.txt h4 {
    font-size: 1.125rem;
    margin: 1rem 0;
}

.txt b, .txt strong {
    font-weight: bold;
}

.txt ul, .txt ol {
    margin: 1rem 0;
    padding: 0;
    list-style-position: inside;
}

.txt li {
    padding: .5rem 0;
}


.profile-menu {
    width: 100%;
    max-width: calc(100% - 40px);
    padding: 0;
    margin: 0 0 0 40px;
}

.profile-menu__li {
    display: block;
    margin-bottom: 20px;
}

.profile-menu__link {
    display: flex;
    align-items: center;
    width: 100%;
    height: 70px;
    border-radius: 2px;
    background-color: #EFECEC;
    border-radius: 5px;
    color: #333;
    font-size: 20px;
    font-weight: 700;
    padding: 0 20px;
}

.profile-menu__link:hover {
    background-color: #E1F1FF;
}

.profile-menu__link.active {
    cursor: default;
    color: #fff;
    background-color: #3D4940;
    background-image: linear-gradient(90deg, #1a4326 0%, #FEA82F 100%);
}

.profile-menu__link.active span {
    color: #fff;
}

.profile-menu__link .icn {
    flex-shrink: 0;
    width: 10px;
    height: 16px;
    margin-right: 15px;
}

.profile-menu__link span {
    margin-left: auto;
    padding-left: 10px;
    color: #333;
    font-weight: 700;
    font-size: 1.5em;
}

@media (max-width: 1023px) {
    .profile-menu {
        max-width: calc(100% - 30px);
        margin: 0 0 0 30px;
    }

    .profile-menu__link {
        font-size: 18px;
    }

    .profile-menu__link span {
        font-size: 1.3em;
    }
}

@media (max-width: 767px) {
    .two-col--profile {
        flex-direction: column;
    }

    .two-col--profile .two-col__aside {
        display: block;
        order: -1;
        margin-bottom: 20px;
    }

    .profile-menu {
        width: 100%;
        max-width: 100%;
        margin: 0px 0 0 0px;
    }

    .profile-menu__li {
        margin-bottom: 10px;
    }

    .profile-menu__link {
        height: 50px;
    }
}

.section-with-side {
    display: flex;
}

.section-with-side .two-col {
    flex-grow: 1;
}

.section-with-side .two-col__main {
    padding-right: 20px;
    width: 60%;
}

.section-with-side .two-col__aside {
    width: 40%;
}

.side-block {
    width: 200px;
    margin-right: 30px;
    flex-shrink: 0;
}

.side-block__menu {
    margin-bottom: 30px;
}

.side-block__menu .btn-nav {
    flex-direction: column;
    align-items: flex-start;
    margin-top: 20px;
}

.side-block__menu .btn-nav__itm {
    margin-right: 0;
    margin-bottom: 10px;
}

.side-block .resultate__title {
    font-size: 0.9625rem;
    margin-bottom: 1rem;
}

.side-block .resultate__val {
    font-size: 2rem;
}

/* Votes widget */

.votes-widget-block {
    margin-bottom: 25px;
}

.votes-widget__img {
    margin-bottom: 10px;
    border: 1px solid #DED4D4;
    padding: 22px;
    margin-bottom: 20px;
}

.votes-widget__img img {
    margin: 0 auto;
    display: block;
    max-width: 100%;
}

.votes-widget__content {
    background: linear-gradient(270deg, #FEA82F 0%, #1a4326 97.93%);
    border-radius: 5px;
    padding: 20px;
    margin-bottom: 10px;
}

.votes-widget__title {
    font-size: 16px;
    color: #fff;
    font-weight: bold;
    margin-bottom: 7px;
}

.votes-widget__text p {
    font-size: 10px;
    line-height: 1.5;
    font-weight: 700;
    color: #fff;
    margin-top: 0;
    margin-bottom: 5px;
}

.votes-widget__questions {
    margin-top: 10px;
}

@media (max-width: 1023px) {
    .section-with-side .two-col__main {
        width: 50%;
    }

    .section-with-side .two-col__aside {
        width: 50%;
    }
}

@media (max-width: 767px) {
    .section-with-side .two-col__main {
        width: 100%;
        padding-right: 0;
        margin-bottom: 20px;
    }

    .section-with-side .two-col__aside {
        width: 100%;
        display: block;
    }
}

@media (max-width: 479px) {
    .section-with-side {
        flex-direction: column;
    }

    .side-block {
        width: 100%;
        margin-right: 0;
        margin-bottom: 20px;
    }
}

/*------------*/
/* 28.05.2021 */
/*------------*/
body {
    min-width: 320px;
    /*background-color: #9CAD84;*/
}

.two-col__main--margin {
    width: 57.5%;
    margin-right: 6.5%;
}

.two-col__aside--new {
    width: 36%;
}

.votes-widget-block {
    margin-bottom: 25px;
}

.votes-widget__content {
    margin-bottom: 0;
}

.votes-widget__questions {
    margin: 30px 0 20px;
}

.votes-widget__question {
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    color: #333;
    padding: 10px 20px;
    font-size: 15px;
    line-height: 20px;
    font-weight: 500;
    border: 1px solid #DED4D4;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
    cursor: pointer;
}

.votes-widget__question + .votes-widget__question {
    margin-top: -1px;
}

.votes-widget__question span {
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: #E1F1FF;
    z-index: -1;
}

.votes-widget__question strong {
    width: 60px;
    flex-shrink: 0;
    margin-left: 10px;
    font-weight: 900;
}

.votes-widget__question.selected strong {
    color: #3D4940;
}

.votes-widget__question:hover {
    background-color: #EFECEC;
}

.votes-widget__questions--selected .votes-widget__question:hover {
    background-color: transparent;
    cursor: default;
}

.votes-widget__questions--selected .votes-widget__question {
    padding-right: 20px;
}

.votes-widget__questions--selected .votes-widget__question.selected {
    background-color: transparent;
    cursor: default;
}

.votes-widget__btn {
    display: block;
    background: #1a4326;
    border-radius: 5px;
    height: 40px;
    width: 100%;
    text-align: center;
    color: #fff;
    font-size: 15px;
    line-height: 40px;
    font-weight: 700;
    border: none;
    cursor: pointer;
}

.votes-widget__btn:hover {
    background: #FF8900;
}

.votes-widget__votes {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #3D4940;
    font-size: 15px;
    font-weight: 500;
    padding: 10px;
}

.votes-widget__votes img {
    width: 30px;
    height: 30px;
    border: 2px solid #ffffff;
    margin-right: -10px;
    border-radius: 50%;
}

.votes-widget__votes span {
    margin-left: 20px;
}

.polls-list__category {
    font-size: 1.25rem;
    font-weight: bold;
    margin-top: 1rem;
    margin-bottom: 1rem;
    color: #2C6AE1;
}

.polls-list__itm .progress {
    display: flex;
    align-items: center;
}

.progress__label {
    height: 16px;
    border-radius: 2px;
    background-color: #ccc;
    line-height: 16px;
    padding: 0 5px;
    margin-right: 10px;
    color: #fff;
    font-size: 10px;
    font-weight: 900;
    text-align: center;
    text-transform: uppercase;
}

.progress__label--hot {
    background-color: #FF8900;
}

.progress__label--new {
    background-color: #33B13A;
}

.progress__label--bonus {
    width: 50px;
    background: #d02a2f center center no-repeat;
    background-size: 20px;
}

.aside__title {
    text-align: center;
    margin-bottom: 20px;
}

.all-polls {
    display: flex;
    align-items: center;
    border: 1px solid #DED4D4;
    padding: 30px;
    margin-top: calc(50px + 1em);
    margin-bottom: 20px;
}

@media (max-width: 767px) {
    .all-polls {
        margin-top: 0;
    }
}

.all-polls__img {
    flex-shrink: 0;
    width: 150px;
    margin-right: 20px;
}

.all-polls__img img {
    width: 100%;
}

.all-polls__info {
    flex-grow: 1;
}

.all-polls__item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4px 10px;
    color: #333;
    font-size: 16px;
    font-weight: 700;
}

.all-polls__item:nth-child(odd) {
    background-color: #EFECEC;
}

.all-polls__item:not(:last-child) {
    margin-bottom: 7px;
}

.all-polls__item strong {
    width: 30px;
    margin-left: 10px;
    font-size: 20px;
    text-align: right;
}

.ratings {
    margin-bottom: 25px;
}

.ratings-item {
    color: #333;
    margin-bottom: 10px;
    line-height: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    min-height: 45px;
}

.ratings-item.active .ratings-item__content {
    background-color: #EFECEC;
}

.ratings-item__ava {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 10px;
    flex-shrink: 0;
}

.ratings-item__ava img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.ratings-item__content {
    display: flex;
    align-items: center;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #DED4D4;
    flex-grow: 1;
    min-height: 45px;
}

@media (max-width: 991px) {
    .ratings-item__content {
        flex-wrap: wrap;
    }
}

@media (max-width: 767px) {
    .ratings-item__content {
        flex-wrap: nowrap;
    }
}

@media (max-width: 479px) {
    .ratings-item__content {
        flex-wrap: wrap;
    }
}

.ratings-item__number {
    margin-right: 10px;
}

.ratings-item__name {
    margin-right: 20px;
}

.ratings-item__points {
    margin-left: auto;
    font-size: 10px;
    font-weight: 700;
}

@media (max-width: 991px) {
    .ratings-item__points {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .ratings-item__points {
        width: auto;
    }
}

@media (max-width: 479px) {
    .ratings-item__points {
        width: 100%;
    }
}

.ratings-item:nth-child(1) .ratings-item__content,
.ratings-item:nth-child(2) .ratings-item__content,
.ratings-item:nth-child(3) .ratings-item__content {
    border: none;
    color: #fff;
    background-image: url(../img/star.svg);
    background-position: calc(100% - 20px) center;
    background-repeat: no-repeat;
    background-size: 17px;
    padding-right: 50px;
}

.ratings-item:nth-child(1) .ratings-item__number,
.ratings-item:nth-child(2) .ratings-item__number,
.ratings-item:nth-child(3) .ratings-item__number {
    color: #fff;
}

.ratings-item:nth-child(1) .ratings-item__content {
    background-color: #C11203;
}

.ratings-item:nth-child(2) .ratings-item__content {
    background-color: #EE3108;
}

.ratings-item:nth-child(3) .ratings-item__content {
    background-color: #FBBC04;
}

.header-profile {
    display: flex;
    align-items: center;
    margin-left: auto;
}

.header-profile__cash {
    display: flex;
    align-items: center;
    height: 40px;
    border-radius: 20px;
    background-color: #ffffff;
    line-height: 40px;
    color: #000000;
    font-size: 17px;
    font-weight: 900;
    padding-right: 15px;
    margin-right: 20px;
}

.header-profile__cash-img {
    width: 40px;
    height: 40px;
    background-color: #eb9e06;
    margin-right: 10px;
    border-radius: 50%;
    display: flex;
}

.header-profile__cash-img img {
    display: block;
    max-width: 100%;
    margin: auto;
}

.header-profile__cash:hover {
    color: #ffffff;
    background-color: #eb9e06;
}

.header-profile__info {
    display: flex;
    align-items: center;
}

.header-profile__ava {
    width: 40px;
    height: 40px;
    margin-right: 10px;
    flex-shrink: 0;
    overflow: hidden;
}

.header-profile__ava img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.header-profile__name {
    width: 120px;
    margin-right: 15px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    line-height: 20px;
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.experience-profile {
    display: flex;
    align-items: baseline;
}

@media (max-width: 767px) {
    .experience-profile {
        flex-direction: column;
        align-items: flex-start;
    }
}

.experience-profile__bar {
    position: relative;
    width: 124px;
    height: 10px;
    border: 1px solid #fff;
    margin-right: 10px;
    border-radius: 10px;
}

.experience-profile__bar span {
    position: absolute;
    top: 0;
    left: 0;
    width: 60%;
    height: 100%;
    background: #fff;
    border-radius: inherit;
}

.experience-profile__counts {
    text-align: right;
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
}

@media (max-width: 767px) {
    .experience-profile__counts {
        margin-top: 5px;
    }
}

.experience-profile__counts span {
    font-weight: 400;
}

.hamb {
    position: relative;
    margin-left: 15px;
}

.hamb__button {
    display: flex;
    width: 40px;
    height: 40px;
    color: #fff;
    border-radius: 3px;
}

.hamb__button:hover {
    background: #fff;
    color: #3D4940;
}

.hamb__button .icn {
    display: block;
    width: 30px;
    height: 21px;
    margin: auto;
}

.hamb__hidden {
    display: none;
    position: absolute;
    top: 80%;
    right: 15px;
    width: 120px;
    box-shadow: 0 0 20px rgba(163, 181, 193, 0.3);
    background-color: #ffffff;
    padding: 20px;
    margin-top: 20px;
    z-index: 10;
}

.hamb__hidden:before {
    content: '';
    position: absolute;
    bottom: 100%;
    right: 0;
    width: 0;
    height: 0;
    border: 10px solid transparent;
    border-right-color: #fff;
    border-bottom-color: #fff;
}

.hamb__link {
    color: #333;
    font-size: 19px;
    font-weight: 700;
    display: block;
    margin-bottom: 10px;
}

.hamb__link:hover {
    color: #3D4940;
}

.hamb__link:last-child {
    margin-bottom: 0;
}

.header-profile__msg {
    position: absolute;
    top: 115%;
    right: 0;
    width: 180px;
    background: url(../img/arrow-top.svg) right 4px no-repeat;
    padding-top: 7px;
    color: #333;
    font-size: 10px;
    font-weight: 700;
    line-height: 15px;
}


@media (max-width: 1350px) {
    .experience-profile__bar {
        width: 70px;
    }

    .header-profile__cash {
        margin-right: 10px;
        overflow: hidden;
    }

    .header-profile__cash-img {
        flex-shrink: 0;
    }

    .all-polls {
        flex-direction: column;
    }

    .all-polls__img {
        margin-right: 0;
        margin-bottom: 10px;
    }

    .all-polls__info {
        width: 100%;
    }
}


@media (max-width: 1199px) {
    .header-profile__name {
        display: none;
    }

    .header-profile__cash {
        width: 40px;
    }
}


@media (max-width: 767px) {
    .two-col__main--margin {
        width: 100%;
        margin-right: 0;
    }

    .two-col__aside--new {
        display: block;
        width: 100%;
        margin-top: 30px;
    }

    .hamb,
    .header-profile__msg {
        display: none;
    }

    .header-profile {
        margin-left: auto;
        margin-right: 20px;
    }

    .header-profile__cash {
        width: auto;
    }

    .experience-profile__bar {
        border-color: #1a4326;
    }

    .experience-profile__bar span {
        background: #1a4326;
    }

    .experience-profile__counts {
        color: #333;
    }
}

@media (max-width: 479px) {
    .header-profile__cash {
        display: none;
    }
}

.profile-level {
    display: flex;
    border: 1px solid #DED4D4;
    margin-bottom: 40px;
    padding: 20px 30px;
}

.profile-level__card {
    display: flex;
    align-items: center;
    margin-right: 37px;
}

.profile-level__ava {
    position: relative;
    width: 90px;
    height: 90px;
    cursor: pointer;
}

.profile-level__ava-crop {
    overflow: hidden;
    border-radius: 50%;
}

.profile-level__ava-hover {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    border-radius: 50%;
    display: none;
}

.profile-level__ava img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-level__ava .icn-photo {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 28px;
    height: 24px;
    fill: #fff;
    margin: -12px 0 0 -14px;
}

.profile-level__ava:hover .profile-level__ava-hover {
    display: block;
}

.profile-level__ava:hover .profile-level__ava-hidden {
    display: block;
}

.profile-level__ava-hidden {
    position: absolute;
    top: 0;
    left: calc(100% + 20px);
    box-shadow: 0 0 20px rgba(163, 181, 193, 0.3);
    background-color: #ffffff;
    width: 270px;
    padding: 15px 20px;
    z-index: 10;
    display: none;
}

.profile-level__ava-hidden:before {
    content: '';
    position: absolute;
    left: -20px;
    top: 0;
    height: 100%;
    width: 20px;
}

.profile-level__ava-link {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.profile-level__ava-link:last-child {
    margin-bottom: 0;
}

.profile-level__ava-link:hover {
    color: #eb9e06;
}

.profile-level__ava-link .icn {
    width: 15px;
    height: 15px;
    display: block;
    fill: currentColor;
    margin-right: 10px;
}

.profile-level__ava-link .icn-delete {
    width: 12px;
    height: 12px;
}

.profile-level__name {
    width: 100px;
    color: #333;
    font-size: 19px;
    font-weight: 700;
    line-height: 25px;
    text-align: left;
}

.profile-level__stat {
    flex-grow: 1;
}

.profile-level__title {
    color: #333;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
}

.profile-level__bar-point {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.profile-level__bar {
    position: relative;
    flex-grow: 1;
    height: 30px;
    background-color: #EFECEC;
    border-radius: 50px;
    margin-right: 20px;
}

.profile-level__bar span {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: linear-gradient(90deg, #1a4326 0%, #FEA82F 100%);
    border-radius: inherit;
}

.profile-level__point {
    min-width: 90px;
    color: #333;
    font-size: 20px;
    font-weight: 800;
}

.profile-level__point span {
    font-weight: 400;
}

.profile-level__text {
    color: #333;
    font-size: 10px;
    margin-right: 110px;
    text-align: right;
}

@media (max-width: 1199px) {
    .profile-level {
        flex-direction: column;
    }

    .profile-level__card {
        margin-right: 0;
        margin-bottom: 20px;
    }

    .profile-level__text {
        text-align: left;
        margin-right: 0;
    }

    .profile-level__point {
        min-width: 0;
    }
}

@media (max-width: 479px) {
    .profile-level__bar {
        width: 130px;
    }

    .profile-level__point {
        font-size: 16px;
    }

    .profile-level {
        padding: 20px;
    }
}

.popup-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100;
    display: flex;
    opacity: 0;
    pointer-events: none;
    background: rgba(230, 239, 245, 0.7);
}

.popup-bg--dark {
    background-color: rgba(0, 0, 0, 0.5);
}

.popup-bg.active {
    opacity: 1;
    pointer-events: all;
}

.popup {
    position: relative;
    box-shadow: 0 0 20px rgba(163, 181, 193, 0.3);
    background-color: #ffffff;
    padding: 30px 40px 40px;
    margin: auto;
    max-width: 570px;
    display: none;
}

.popup.active {
    display: block;
}

.popup__close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 16px;
    height: 16px;
    color: #333;
}

.popup__close:hover {
    color: #1a4326;
}

.popup__title {
    color: #333;
    font-size: 26px;
    font-weight: 700;
    line-height: 25px;
    margin-bottom: 30px;
}

.popup__text {
    color: #333;
    font-weight: 700;
    line-height: 19px;
    margin-bottom: 30px;
    text-align: center;
}

.popup__buttons {
    display: flex;
    margin-bottom: -10px;
}

.popup__btn {
    height: 45px;
    background-color: #EFECEC;
    line-height: 45px;
    padding: 0 20px;
    margin: 0 20px 10px 0;
    border: none;
    color: #333;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
}

.popup__btn input[type='file'] {
    display: none;
}

.popup__btn:hover {
    background-color: #3D4940;
    color: #fff;
}

.popup--feedback {
    width: 640px;
    box-shadow: 0 0 20px rgba(193, 207, 217, 0.3);
    background-color: #EFECEC;
}

.popup--feedback .popup__title {
    text-align: center;
    padding-top: 25px;
    margin-bottom: 20px;
}

.popup--feedback .popup__text {
    text-align: center;
    margin-bottom: 10px;
    color: #333;
    font-size: 16px;
    font-weight: 600;
}

.popup--feedback .popup__btn {
    height: 64px;
    border-radius: 2px;
    background-color: #3D4940;
    text-align: center;
    color: #fff;
    width: 100%;
    font-size: 24px;
    font-weight: 700;
    margin-top: 30px;
}

.popup--feedback .popup__btn:hover {
    background: #2b2b2b;
}

.popup--feedback .popup__textarea {
    width: 100%;
    resize: none;
    height: 156px;
    border-radius: 2px;
    border: 1px solid #DED4D4;
    background-color: #ffffff;
    outline: none;
    padding: 10px;
    font-size: 14px;
}

.popup--bonus {
    width: 590px;
    box-shadow: 0 0 20px rgba(193, 207, 217, 0.3);
    background-color: #F5F2EF;
}

.popup--bonus .popup__img {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.popup--bonus .popup__img--full {
    height: 230px;
    margin: -30px -40px 30px;
    overflow: hidden;
}

.popup--bonus .popup__img--full img {
    width: 100%;
    max-width: 100%;
    min-height: 100%;
    object-fit: cover;
}

.popup--bonus .popup__img img {
    display: block;
    max-width: 100%;
}

.popup--bonus .popup__title {
    text-align: center;
    line-height: 36px;
}

.popup--bonus .popup__text {
    color: #333;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 17px;
    line-height: 20px;
}

.popup--bonus .popup__bonus {
    background-color: #ffffff;
    margin-bottom: 20px;
    text-align: center;
    color: #333;
    font-size: 20px;
    font-weight: 700;
    line-height: 24px;
    padding: 18px 20px;
}

.popup--bonus .popup__btn {
    display: block;
    border-radius: 2px;
    background-color: #1a4326;
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    padding: 7px 10px 12px;
    height: auto;
    margin: 0;
}

.popup--bonus .popup__btn:hover {
    background-color: #3D4940;
}

@media (max-width: 767px) {
    .popup--bonus .popup__img--full {
        margin: -40px -20px 30px;
    }

    .popup__title br {
        display: none;
    }
}

.upload-ava {
    width: 384px;
    height: 384px;
    margin-bottom: 70px;
}

.header-profile__notification {
    position: relative;
    width: 41px;
    height: 40px;
    background-color: #ffffff;
    border-radius: 50%;
    margin-right: 30px;
    display: flex;
}

.header-profile__notification-text {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 19px;
    height: 19px;
    background-color: #f91717;
    border-radius: 50%;
    text-align: center;
    line-height: 19px;
    color: #ffffff;
    font-size: 10px;
    font-weight: 400;
}

.header-profile__notification .icn-notification {
    fill: #ffa000;
    width: 23px;
    height: 31px;
    margin: auto;
}


.header-profile__notification:hover .notification-hidden {
    display: block;
}

.notification-hidden {
    position: absolute;
    top: calc(100% + 15px);
    right: 15px;
    width: 430px;
    box-shadow: 0 0 20px rgba(163, 181, 193, 0.3);
    background-color: #ffffff;
    margin-top: 20px;
    z-index: 10;
    display: none;
}

.notification-hidden:before {
    content: '';
    position: absolute;
    bottom: 100%;
    right: 0;
    width: 0;
    height: 0;
    border: 16px solid transparent;
    border-right-width: 8px;
    border-left-width: 8px;
    border-right-color: #fff;
    border-bottom-color: #fff;
}

.notification-hidden:after {
    content: '';
    position: absolute;
    top: -40px;
    right: 0;
    width: 100%;
    height: 40px;
}

.notification-hidden__item {
    border-top: 1px solid rgba(180, 191, 199, 0.5);
    padding: 20px 25px;
    display: flex;
    align-items: center;
}

.notification-hidden__item:first-child {
    border-top: none;
}

.notification-hidden__icon {
    flex-shrink: 0;
    width: 41px;
    height: 40px;
    background-color: #3D4940;
    margin-right: 13px;
    border-radius: 50%;
    display: flex;
}

.notification-hidden__icon--red {
    background-color: #f91717;
}

.notification-hidden__icon--orange {
    background-color: #ffa000;
}

.notification-hidden__icon .icn {
    fill: #fff;
    width: 23px;
    height: 23px;
    margin: auto;
}

.notification-hidden__text {
    color: #333;
    font-size: 17px;
    line-height: 20px;
}

.notification-hidden__text a:hover {
    color: #eb9e06;
}

.notification-hidden__more {
    display: block;
    width: 100%;
    height: 65px;
    background-color: #1abc95;
    color: #ffffff;
    font-size: 19px;
    font-weight: 700;
    line-height: 65px;
    text-align: center;
}

.notification-hidden__more:hover {
    background: #3D4940;
}

@media (max-width: 1350px) {
    .header-profile__notification {
        margin-right: 15px;
    }
}

@media (max-width: 991px) {
    .nav__link-icn {
        margin-right: 0;
    }

    .nav__link--reg .nav__link-txt {
        display: block;
    }
}

@media (max-width: 767px) {
    .popup {
        padding: 40px 20px 20px;
    }

    .notification-hidden {
        right: -200px;
    }

    .notification-hidden:before {
        right: 48.5%;
        border: 30px solid transparent;
        border-bottom-color: #fff;
        border-right-width: 12px;
        border-left-width: 12px;
    }

    .nav__link-txt {
        display: none;
    }

    .nav__link--reg .nav__link-txt {
        display: none;
    }
}

@media (max-width: 479px) {
    .profile-level__ava-hidden {
        left: 0;
        top: calc(100% + 20px);
        width: 240px;
    }

    .profile-level__ava-hidden:before {
        top: -20px;
        height: 20px;
        width: 100%;
    }

    .upload-ava {
        width: 280px;
        height: 280px;
        margin-bottom: 70px;
    }

    .header-profile__ava {
        margin-right: 0;
    }

    .experience-profile {
        display: none;
    }

    .nav {
        justify-content: flex-start;
        padding-right: 0;
    }

    .notification-hidden {
        right: -150px;
        width: 320px;
    }
}

.form__comment {
    position: relative;
    background-color: #EFECEC;
    color: #333;
    font-size: 20px;
    font-weight: 600;
    line-height: 25px;
    padding: 20px 30px;
    margin-bottom: 30px;
}

.form__comment--nobg {
    background: none;
    padding: 0;
}

.form__comment--nobg:after {
    display: none;
}

.form__comment:after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 0;
    height: 0;
    border: 10px solid transparent;
    border-top: 10px solid #EFECEC;
    border-left: 10px solid #EFECEC;
}

.form__img {
    margin-bottom: 20px;
    width: 100%;
}

.form__img img {
    display: block;
    width: 100%;
}

.form__btns {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.form__btns .btn {
    display: flex;
    align-items: center;
    height: 50px;
    border-radius: 2px;
    background-color: #EFECEC;
    padding: 0 20px;
    color: #333;
    font-size: 15px;
    font-weight: 700;
}

.form__btns .btn:hover {
    background: #3D4940;
    color: #fff;
}

.form__btns .btn .icn {
    width: 10px;
    height: 16px;
    margin-left: 12px;
    flex-shrink: 0;
}

.form__btns .btn--icon-reverse .icn {
    transform: scale(-1);
    margin-left: 0;
    margin-right: 12px;
}

.form__btns .btn[disabled] {
    opacity: 0.3;
    cursor: default;
}

.form__btns .btn[disabled]:hover {
    background-color: #EFECEC;
    color: #333;
}

.form__count {
    text-align: center;
    color: #333;
    font-size: 12px;
    font-weight: 600;
    line-height: 20px;
    padding: 0 20px;
}

.form__count-title {
    font-size: 16px;
    margin-bottom: 7px;
}

.bottom-scroll {
    position: fixed;
    bottom: 75px;
    right: 10px;
    width: 50px;
    height: 50px;
    background-color: #3D4940;
    border-radius: 50%;
    color: #fff;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10;
}

.bottom-scroll .icn {
    transform: rotate(90deg);
    width: 10px;
    height: 15px;
}

.questionnaire-cols {
    display: flex;
}

.questionnaire__left {
    width: 480px;
    margin-right: 45px;
    flex-shrink: 0;
}
.questionnaire__left .gallery-slider {
    margin-top: 50px;
}
.questionnaire__right {
    flex-grow: 1;
}

.questionnaire__mobile-text {
    display: none;
}

.form__cols {
    display: flex;
    flex-wrap: wrap;
}

.form__cols .form__brdr {
    max-width: calc(50% - 25px);
    border: none;
    margin-right: 50px;
    margin-bottom: 30px;
    padding: 0;
}

.form__cols .form__brdr:nth-child(2n) {
    margin-right: 0;
}

.form__cols .form__brdr .radio {
    flex-wrap: wrap;
    cursor: pointer;
}

.radio__inpt:checked + .radio__mask + .radio__mask_poll + .radio__label + .form__img:after {
    opacity: 1;
}

.form__cols .form__brdr .form__img {
    position: relative;
    margin-top: 20px;
    margin-bottom: 0;
}

.form__cols .form__brdr .form__img:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: inset #3D4940 0 0 0 8px;
    opacity: 0;
    z-index: 1;
}

.form__col {
    width: calc(50% - 10px);
}

.form__col:not(:last-child) {
    margin-right: 20px;
}

.form__col .check {
    margin-top: 25px;
}

@media (max-width: 767px) {
    .form__col {
        width: 100%;
    }

    .form__col:not(:last-child) {
        margin-bottom: 30px;
        margin-right: 0;
    }

    .form__col .check {
        margin-top: 0;
    }
}


.max-width-1040 {
    max-width: 1040px;
}

@media (max-width: 991px) {
    .questionnaire-cols {
        flex-direction: column;
    }

    .questionnaire__left {
        width: 100%;
        margin-right: 0;
        margin-bottom: 20px;
    }

    .questionnaire__mobile-text {
        position: relative;
        display: block;
        text-align: center;
        color: #ffffff;
        font-size: 16px;
        font-weight: 600;
        line-height: 20px;
        padding: 15px;
    }

    .questionnaire__mobile-text:before {
        content: '';
        position: absolute;
        top: 0;
        left: 50%;
        width: 100vw;
        transform: translateX(-50%);
        height: 120px;
        background-image: linear-gradient(to bottom, #3D4940, rgba(255, 255, 255, 0));
        z-index: -1;
    }
}

@media (max-width: 767px) {
    .bottom-scroll {
        display: flex;
    }

    .form__cols .form__brdr {
        max-width: calc(50% - 10px);
        margin-right: 20px;
    }

    .form__cols .form__brdr:nth-child(2n) {
        margin-right: 0;
    }
}

@media (max-width: 479px) {
    .form__btns {
        flex-wrap: wrap;
    }

    .form__count {
        order: -1;
        width: 100%;
        margin-bottom: 20px;
    }

    .form__cols {
        flex-direction: column;
    }

    .form__cols .form__brdr {
        max-width: 100%;
        width: 100%;
        margin-right: 0px;
    }
}

.main--login {
    background-color: #EFECEC;
}

.main--login .inpt__field{
    border: none;
}

.main--login .check__mask {
    background-color: #fff;
}

.main--login .top-bar {
    background: transparent;
    border-bottom: 1px solid #DED4D4;
    text-align: center;
}

.open-welcome-popup {
    overflow: hidden;
}

.open-welcome-popup .content {
    filter: blur(7px);
}

.welcome-popup-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    background: rgba(0, 0, 0, 0.5);
    overflow: auto;
    z-index: 100;
}

.welcome-popup {
    position: relative;
    width: 590px;
    max-width: 100%;
    padding: 30px 60px 50px;
    margin: auto;
    box-shadow: 0 0 20px rgba(193, 207, 217, 0.3);
    background-color: #EFECEC;
}

.welcome-popup__close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 17px;
    height: 17px;
    color: #333;
}

.welcome-popup__close:hover {
    color: #3D4940;
}

.welcome-popup__img {
    display: flex;
    justify-content: center;
    margin-bottom: 15px;
}

.welcome-popup__img img {
    display: block;
    max-width: 100%;
}

.welcome-popup__title {
    color: #333;
    font-size: 26px;
    font-weight: 700;
    line-height: 25px;
    margin-bottom: 15px;
}

.welcome-popup__text {
    color: #333;
    font-size: 16px;
    line-height: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.welcome-popup__ul {
    padding: 0;
    margin: 15px 0 20px;
}

.welcome-popup__ul li {
    display: block;
    margin-bottom: 10px;
    padding-left: 30px;
    background: url("../img/star-orange.svg") left 2px no-repeat;
    background-size: 20px;
}

.welcome-popup__ul li strong {
    display: block;
    font-weight: 800;
    margin-bottom: 2px;
}

.welcome-popup__btn {
    display: block;
    border-radius: 2px;
    background-color: #1a4326;
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    padding: 17px 20px 19px;
}

.welcome-popup__btn:hover {
    background-color: #3D4940;
}

@media (max-width: 767px) {
    .welcome-popup__title {
        font-size: 22px;
    }

    .welcome-popup {
        padding: 30px 20px 20px;
    }

    .welcome-popup__text {
        font-size: 14px;
    }

    .welcome-popup__btn {
        font-size: 20px;
        padding: 10px 20px 12px;
    }

    .welcome-popup__img img {
        max-width: 80%;
    }
}

.news-main {
    position: relative;
    border-radius: 8px;
    border: 1px solid #DED4D4;
    background-color: #ffffff;
    overflow: hidden;
}

.news-main__img {
    position: relative;
    min-height: 300px;
    width: 50%;
    padding-top: 50%;
    overflow: hidden;
}

.news-main__img img {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-main__info {
    position: absolute;
    top: 50%;
    right: 5%;
    width: 40%;
    transform: translateY(-50%);
}

.news-main__category {
    color: #333;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 34px;
}

.news-main__title {
    color: #333;
    font-size: 40px;
    font-weight: 700;
    line-height: 50px;
    margin-bottom: 20px;
}

.news-main__description {
    color: #333;
    font-size: 22px;
    margin-top: 0px;
}

.news-main__btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 2px;
    background-color: #3D4940;
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    font-style: normal;
    letter-spacing: normal;
    text-align: center;
    padding: 15px 100px 20px;
}

.news-main__btn:hover {
    opacity: 0.7;
}

.news-main__btn .icn {
    display: block;
    width: 10px;
    height: 16px;
    margin-left: 12px;
    flex-shrink: 0;
    margin-top: 4px;
}

@media (max-width: 1199px) {
    .news-main__category {
        font-size: 18px;
    }

    .news-main__title {
        font-size: 30px;
        line-height: 40px;
        margin-bottom: 14px;
    }

    .news-main__description {
        font-size: 20px;
    }

    .news-main__btn {
        padding: 10px 50px 15px;
        font-size: 18px;
    }

    .news-main__btn .icn {
        height: 12px;
    }
}

@media (max-width: 991px) {
    .news-main__category {
        font-size: 16px;
    }

    .news-main__title {
        font-size: 23px;
        line-height: 32px;
    }

    .news-main__description {
        font-size: 16px;
    }

    .news-main__btn {
        padding: 10px 50px 15px;
        font-size: 16px;
    }

    .news-main__btn .icn {
        height: 12px;
    }
}

@media (max-width: 767px) {
    .news-main__category {
        font-size: 15px;
        margin-bottom: 20px;
    }

    .news-main__title {
        font-size: 20px;
    }

    .news-main__description {
        font-size: 18px;
    }

    .news-main__img {
        height: 250px;
        min-height: 0;
    }

    .news-main__img img {
        height: 100%;
        width: 50%;
        object-fit: cover;
    }

    .news-main__info {
        position: static;
        transform: translate(0);
        width: 100%;
        padding: 20px;
    }
}

@media (max-width: 479px) {
    .news-main__img {
        height: 150px;
    }

    .news-main__title {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 8px;
    }

    .news-main__description {
        font-size: 16px;
    }
}

.news-slider {
    margin-bottom: 50px;
}

.news-slider .owl-nav {
    position: absolute;
    bottom: -160px;
    left: 0;
    width: 100%;
    height: 0;
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    z-index: 1;
}

@media (max-width: 767px) {
    .news-slider .owl-nav {
        width: auto;
        left: auto;
        right: 20%;
        bottom: auto;
        top: 15%;
        flex-direction: column;
        height: 120px;
        padding: 0;
    }
}

@media (max-width: 479px) {
    .news-slider .owl-nav {
        top: 4%;
        right: 10%;
    }
}

.news-slider .owl-prev,
.news-slider .owl-next {
    width: 50px;
    height: 50px;
    border-radius: 2px;
    background-color: #EFECEC !important;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #333;
}

.news-slider .owl-prev .icn,
.news-slider .owl-next .icn {
    width: 16px;
    height: 16px;
}

.news-slider .owl-prev .icn {
    transform: scale(-1);
}

.news-slider .owl-prev:hover,
.news-slider .owl-next:hover {
    background: #3D4940 !important;
    color: #fff;
}


.news {
    position: relative;
    display: flex;
    justify-content: center;
    margin-bottom: 55px;
    padding: 0 100px;
    z-index: inherit;
}

.news:before {
    content: '';
    position: absolute;
    top: 75px;
    left: 0;
    width: 100%;
    height: 119px;
    border-radius: 8px;
    border: 1px solid #DED4D4;
    z-index: -1;
}

.news-item {
    cursor: pointer;
}

.news-item__img {
    position: relative;
    margin-bottom: 20px;
    padding-top: 100%;
}

.news-item__img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-item__img:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: inset #3D4940 0 0 0 10px;
    z-index: 1;
    opacity: 0;
}

.news-item__title {
    color: #333;
    font-size: 20px;
    font-weight: 700;
    line-height: 25px;
}

.news .owl-item.current .news-item__img:after {
    opacity: 1;
}

@media (max-width: 1199px) {
    .news-item__img {
        margin-bottom: 10px;
    }

    .news-item__img:after {
        box-shadow: inset #3D4940 0 0 0 5px;
    }

    .news-item__title {
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    .news {
        display: none !important;
    }
}


.news-socials {
    display: flex;
    flex-wrap: wrap;
}

.social-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 2px;
    border: 1px solid #DED4D4;
    margin-right: 20px;
    color: #3D4940;
}

.social-item .icn {
    display: block;
    transform: scale(0.8);
}

.social-item .icn-vk {
    width: 53px;
    height: 29px;
}

.social-item .icn-inst {
    width: 42px;
    height: 41px;
}

.social-item .icn-youtube {
    width: 42px;
    height: 34px;
}

.social-item .icn-telegram {
    width: 45px;
    height: 40px;
}

.social-item .icn-fb {
    width: 22px;
    height: 45px;
}

.social-item .icn-ok {
    width: 29px;
    height: 49px;
}

.social-item .icn-dzen {
  width: 29px;
  height: 49px;
}

.social-item:hover {
    background: #3D4940;
    border-color: #3D4940;
    color: #fff;
}

@media (max-width: 1199px) {
    .social-item {
        width: 75px;
        height: 75px;
    }
}

@media (max-width: 767px) {
    .social-item {
        width: 55px;
        height: 55px;
        margin-right: 10px;
    }

    .social-item .icn {
        transform: scale(0.6);
    }
}

@media (max-width: 479px) {
    .social-item {
        width: 40px;
        height: 40px;
    }
}


.progress--border {
    border-radius: 0;
    display: flex;
    align-items: center;
    padding: 13px 0;
    border-bottom: 1px solid #DED4D4;
}

@media (max-width: 479px) {
    .progress--border {
        flex-direction: column;
        align-items: flex-start;
    }
}

.progress--border:first-child {
    border-top: 1px solid #DED4D4;
}

.progress--border .progress__txt {
    margin-bottom: 0;
}

.progress__start {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    background-color: #3D4940;
    color: #fff;
    font-weight: 600;
    padding: 20px;
}

.progress__start .icn {
    margin-left: 12px;
    width: 10px;
    height: 16px;
    flex-shrink: 0;
}

.progress__start:hover {
    background-color: #1a4326;
}

@media (max-width: 1199px) {
    .progress__start .icn {
        height: 12px;
    }
}

@media (max-width: 479px) {
    .progress__start {
        width: 100%;
        justify-content: center;
    }
}

.news-title {
    color: #333;
    font-size: 30px;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 30px;
}

.news-col {
    display: flex;
    margin-bottom: 30px;
}

.news-col__big {
    width: 800px;
    margin-right: 40px;
}

.news-col__mini {
    width: 400px;
    flex-shrink: 0;
}

@media (max-width: 1199px) {
    .news-col__big {
        margin-right: 60px;
    }
}

@media (max-width: 991px) {
    .news-col {
        flex-direction: column;
    }

    .news-col__big {
        width: 100%;
        margin-right: 0;
        margin-bottom: 50px;
    }

    .news-col__mini {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .news-title {
        font-size: 20px;
    }
}

@media (max-width: 479px) {
    .news-title {
        font-size: 18px;
    }
}

.news-img img {
    display: block;
    max-width: 100%;
}

.news-info {
    border-radius: 2px;
    background-color: #EFECEC;
    margin-bottom: 25px;
    padding: 28px 20px 20px;
    width: 100%;
}

.news-info__blank {
    border-radius: 2px;
    margin-bottom: 25px;
    padding: 28px 20px 20px;
    width: 100%;
}

.news-info__title {
    color: #333;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
}

.news-info__stat {
    display: flex;
    font-size: 42px;
    font-weight: 900;
    line-height: 70px;
    color: #fff;
}

.news-info__stat span {
    display: block;
    width: 70px;
    height: 70px;
    text-align: center;
    margin-right: 1px;
    border-radius: 2px;
    background-color: #3D4940;
    background-image: linear-gradient(to top, #3D4940 0%, #14bfaf 100%);
}

.news-info__stat span:last-child {
    width: auto;
    font-size: 26px;
    padding: 0 20px;
}

@media (max-width: 1199px) {
    .news-info__title {
        font-size: 22px;
    }

    .news-info__stat {
        font-size: 35px;
        line-height: 60px;
    }

    .news-info__stat span {
        width: 60px;
        height: 60px;
    }

    .news-info__stat span:last-child {
        font-size: 20px;
    }
}

@media (max-width: 479px) {
    .news-info__title {
        font-size: 18px;
    }

    .news-info__stat {
        font-size: 25px;
        line-height: 50px;
    }

    .news-info__stat span {
        width: 50px;
        height: 50px;
    }

    .news-info__stat span:last-child {
        font-size: 17px;
    }
}

.feedback {
    border-radius: 2px;
    background-color: #3D4940;
    background-image: linear-gradient(to top, #3D4940 0%, #14bfaf 100%);
    padding: 35px 40px 30px;
}

.feedback__title {
    color: #ffffff;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 30px;
}

.feedback__text {
    color: #ffffff;
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 40px;
}

.feedback__btn {
    display: inline-flex;
    align-items: center;
    border-radius: 2px;
    background-color: #ffffff;
    color: #3D4940;
    font-size: 15px;
    font-weight: 700;
    padding: 14px 20px;
}

.feedback__btn .icn {
    margin-left: 12px;
    width: 10px;
    height: 16px;
    flex-shrink: 0;
}

.feedback__btn:hover {
    opacity: 0.7;
}

@media (max-width: 1199px) {
    .feedback__title {
        font-size: 22px;
        margin-bottom: 15px;
    }

    .feedback__text {
        font-size: 15px;
        margin-bottom: 20px;
    }

    .feedback__btn {
        font-size: 14px;
        padding: 10px 15px;
    }

    .feedback__btn .icn {
        height: 12px;
    }
}

@media (max-width: 767px) {
    .feedback {
        padding: 20px;
    }

    .feedback br {
        display: none;
    }
}

@media (max-width: 479px) {
    .feedback__title {
        font-size: 18px;
    }

    .feedback__text {
        font-size: 14px;
    }
}

.icn-news {
    fill-rule: evenodd;
}

.apps-bots {
    display: flex;
    margin-top: 50px;
}

.apps-bots__col {
    margin-right: 20px;
}

.apps-bots__content {
    display: flex;
    flex-wrap: wrap;
}

.apps-bots__link {
    display: block;
    border-radius: 2px;
    border: 1px solid #DED4D4;
    background-color: #fff;
    padding: 20px 25px 25px 100px;
    margin-right: 20px;
    margin-bottom: 20px;
    text-decoration: none;
    position: relative;
    color: #333;
    font-size: 26px;
    font-weight: 700;
    line-height: 25px;
}

.apps-bots__link:last-child {
    margin-right: 0;
}

.apps-bots__link span {
    font-size: 17px;
    display: block;
    margin-bottom: 7px;
}

.apps-bots__link .icn {
    position: absolute;
    top: 50%;
    left: 20px;
    width: 60px;
    height: 60px;
    margin-top: -30px;
    fill: #159443;
}

.apps-bots__link .icn-telegram {
    width: 54px;
}

.apps-bots__link .icn-appstore {
    width: 80px;
    height: 80px;
    margin-top: -40px;
    left: 10px;
}

.apps-bots__link:hover {
    background: #3D4940;
    color: #fff;
}

.apps-bots__link:hover .icn {
    fill: #fff;
}

@media (max-width: 1199px) {
    .apps-bots {
        flex-direction: column;
    }
}

@media (max-width: 767px) {
    .apps-bots__link {
        font-size: 21px;
        padding: 15px 25px 20px 80px;
    }

    .apps-bots__link .icn {
        width: 50px;
        left: 15px
    }

    .apps-bots__link .icn-telegram {
        width: 50px;
        height: 40px;
        margin-top: -20px;
    }

    .apps-bots__link .icn-appstore {
        width: 60px;
        height: 60px;
        margin-top: -30px;
        left: 10px;
    }

    .apps-bots__link span {
        margin-bottom: 0;
    }
}

@media (max-width: 479px) {
    .apps-bots__link {
        width: 100%;
        margin-right: 0;
        font-size: 19px;
        padding-top: 22px;
        padding-bottom: 22px;
    }

    .apps-bots__link span {
        display: inline;
        font-size: 14px;
    }
}

.thanks-block {
    display: flex;
}

.thanks-block__left {
    margin-right: 40px;
    width: 700px;
    max-width: 100%;
}

.thanks-block__img {
    width: 100%;
}

.thanks-block__img:not(:last-child) {
    margin-bottom: 10px;
}

.thanks-block img {
    display: block;
    max-width: 100%;
}

.thanks-block__right {
    flex-grow: 1;
    flex-shrink: 0;
    max-width: calc(50% - 20px);
    width: 440px;
}

.thanks-block__title {
    margin-bottom: 14px;
    color: #333;
    font-size: 30px;
    font-weight: 700;
    line-height: 36px;
}

.thanks-block__text {
    color: #333;
    font-size: 16px;
    line-height: 25px;
    text-align: left;
    margin-bottom: 30px;
}

.thanks-block__text a {
    font-weight: 700;
}

.thanks-block__socials .news-title {
    font-size: 17px;
    margin-bottom: 20px;
}

.thanks-block__socials .social-item {
    width: 65px;
    height: 65px;
    margin-right: 20px;
    margin-bottom: 20px;
}

.thanks-block__socials .social-item .icn {
    transform: scale(0.6);
}

@media (max-width: 767px) {
    .thanks-block {
        max-width: 100%;
        flex-direction: column;
        align-items: flex-start;
    }

    .thanks-block__left {
        margin-right: 0;
        margin-top: 30px;
    }

    .thanks-block__right {
        max-width: 100%;
        width: 100%;
        order: -1;
    }

    .thanks-block__socials {
        margin-top: 30px;
    }

    .thanks-block__title {
        font-size: 23px;
        line-height: 30px;
    }

    .thanks-block__socials .social-item {
        width: 55px;
        height: 55px;
        margin-right: 10px;
        margin-bottom: 10px;
    }
}

.b-lazy {
    opacity: 0;
    transition: opacity 0.5s;
}

.b-loaded {
    opacity: 1;
}

/* Страница исследования */
.header--research .header-panel__logo--nomargin {
    margin-right: 0;
}

.header--research .header-panel__back {
    background: #fff;
    display: inline-flex;
    align-items: center;
    height: 40px;
    border-radius: 20px;
    padding: 0 17px;
    color: #000000;
    font-size: 20px;
    font-weight: 700;
    margin-left: 40px;
    margin-right: auto;
}

.header-panel__back:before {
    content: '';
    background: url('../img/right-arrow.webp') center center no-repeat;
    width: 20px;
    height: 20px;
    display: inline-block;
    margin-right: 10px;
}

.header-panel__back:hover {
    opacity: 0.7;
}

.research-main {
    position: relative;
    margin-bottom: 160px;
}

.research-main__title {
    position: absolute;
    bottom: -80px;
    left: 0;
    right: 0;
    margin: 0 auto;
    padding: 40px;
    background-color: #ffffff;
    background-image: linear-gradient(to right, #3D4940 0%, #14bfaf 100%);
    max-width: 880px;
    color: #ffffff;
    font-size: 40px;
    font-weight: 700;
    line-height: 50px;
    text-align: center;
}

.research-main__img {
    height: 100%;
    max-height: 300px;
    overflow: hidden;
}

.research-main__img--none {
    height: 120px;
}

.research-main img {
    display: block;
    width: 100%;
}

.research__row {
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(180, 191, 199, 0.5);
    padding-bottom: 50px;
    margin-bottom: 50px;
}

.research__row--column {
    flex-direction: column;
}

.research__col:first-child {
    padding-right: 30px;
    margin-right: auto;
}

.research__col--760 {
    width: 760px;
}

.research__col--550 {
    width: 550px;
    flex-shrink: 0;
}

.research__col img {
    display: block;
    max-width: 100%;
}

.research__row--column .research__col:first-child {
    margin-bottom: 50px;
}

.research__title {
    color: #333;
    font-size: 26px;
    font-weight: 700;
    line-height: 36px;
    margin: 0 0 30px;
}

.research__title--center {
    text-align: center;
    margin-bottom: 60px;
}

.research__big-text {
    color: #333;
    font-size: 20px;
    font-weight: 600;
    line-height: 25px;
}

.research__text {
    color: #333;
    font-size: 17px;
    font-weight: 600;
    line-height: 25px;
}

.research__text b {
    font-weight: 700;
}

.research__btn {
    display: inline-flex;
    align-items: center;
    border-radius: 2px;
    background-color: #3D4940;
    padding: 19px 55px 21px;
    margin-left: 20px;
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    line-height: 23px;
}

.research__btn .icn {
    display: block;
    width: 10px;
    height: 16px;
    margin-left: 30px;
    flex-shrink: 0;
    margin-top: 3px;
}

.research__btn:hover {
    background: #14bfaf;
}

.footer--research .limit {
    border-top: 1px solid rgba(180, 191, 199, 0.5);
    padding-top: 45px;
    padding-bottom: 30px;
}

.footer__row {
    display: flex;
    margin-bottom: 45px;
}

.footer__row:last-child {
    margin-bottom: 0;
}

.footer__left {
    width: 410px;
    margin-right: auto;
    flex-shrink: 0;
}

.footer__text {
    color: #333;
    font-size: 17px;
    font-weight: 600;
}

.footer__text--social {
    width: 340px;
    margin-right: 35px;
}

.footer__items {
    display: flex;
    margin-bottom: 45px;
}

.footer__item {
    display: flex;
    align-items: center;
    margin-right: 20px;
}

.footer__item:last-child {
    margin-right: 0;
}

.footer__title {
    color: #333;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 45px;
}

.footer__btn {
    display: inline-flex;
    align-items: center;
    border-radius: 2px;
    background-color: #3D4940;
    padding: 15px 20px 16px;
    color: #fff;
    line-height: 18px;
    margin-left: 20px;
}

.footer__btn .icn {
    width: 10px;
    height: 16px;
    margin-left: 10px;
    flex-shrink: 0;
}

.footer__btn:hover {
    background: #14bfaf;
}

.footer__soc {
    display: flex;
}

.footer .news-socials {
    margin-bottom: 0;
}

.footer .social-item {
    width: 65px;
    height: 65px;
}

.footer .social-item .icn {
    transform: scale(0.65);
}

.footer .social-item:last-child {
    margin-right: 0;
}

.research-slider {
    position: relative;
}

.research-slider .owl-nav {
    position: absolute;
    top: 110px;
    left: 0;
    width: 100%;
    height: 0;
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    z-index: 1;
}

@media (max-width: 479px) {
    .research-slider .owl-nav {
        top: 4%;
        right: 10%;
    }
}

.research-slider .owl-prev,
.research-slider .owl-next {
    width: 50px;
    height: 50px;
    border-radius: 2px;
    background-color: #EFECEC !important;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #333;
}

.research-slider .owl-prev .icn,
.research-slider .owl-next .icn {
    width: 16px;
    height: 16px;
}

.research-slider .owl-prev .icn {
    transform: scale(-1);
}

.research-slider .owl-prev:hover,
.research-slider .owl-next:hover {
    background: #3D4940 !important;
    color: #fff;
}

@media (max-width: 1350px) {
    .research-main__title {
        padding: 20px;
        font-size: 30px;
        line-height: 40px;
        bottom: -60px;
    }

    .research-main {
        margin-bottom: 120px;
    }

    .footer__left {
        width: 300px;
    }

    .footer__title {
        font-size: 19px;
    }
}

@media (max-width: 1199px) {
    .research__col--550 {
        width: 450px;
    }

    .footer__row {
        flex-direction: column;
    }

    .footer__left {
        width: 100%;
        margin-bottom: 45px;
    }

    .footer__title {
        margin-bottom: 20px;
    }

    .footer__items {
        justify-content: space-between;
    }

    .footer__text--social {
        width: 100%;
    }

    .footer .news-socials {
        flex-shrink: 0;
    }
}

@media (max-width: 991px) {
    .header--research .header-panel {
        height: auto;
        padding-bottom: 10px;
        padding-top: 10px;
    }

    .header--research .header-panel__logo--nomargin {
        margin-right: 0;
        width: 100%;
        display: flex;
        justify-content: center;
        margin-bottom: 20px;
    }

    .header--research .header-panel__back {
        margin-left: 0;
    }

    .research-main {
        margin-bottom: 50px;
    }

    .research-main__title {
        position: static;
        max-width: none;
    }

    .research__row {
        flex-direction: column;
    }

    .research__col:first-child {
        margin-bottom: 30px;
        padding-right: 0;
    }

    .research__col--760,
    .research__col--550 {
        width: 100%;
        padding-right: 0;
        margin-bottom: 30px;
    }

    .research__btn {
        margin-left: 0;
    }
}

@media (max-width: 767px) {
    .header--research {
        background: linear-gradient(90deg, #3D4940 0%, #22b973 34%, #14bfaf 100%);
        border: none;
    }

    .header--research .header-panel__logo--nomargin {
        order: 0;
        margin-bottom: 10px;
    }

    .header--research .header-panel__back {
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 10px;
    }

    .header--research .header-panel__nav {
        -ms-flex-positive: 0;
        flex-grow: 0;
        margin-left: 0;
        margin-right: 0;
        width: 100%;
    }

    .header--research .header-panel__nav .nav {
        justify-content: flex-end;
    }

    .header--research .nav__link {
        padding: 0.3125rem 1rem;
        margin-right: 0.3125rem;
        color: #fff;
    }

    .research-slider {
        display: block !important;
    }

    .footer.footer--research {
        display: block;
    }

    .footer__items,
    .footer__soc {
        flex-direction: column;
    }

    .footer__text--social {
        margin-right: 0;
        margin-bottom: 20px;
    }

    .footer__items {
        margin-bottom: 15px;
    }

    .footer__item {
        margin-right: 0;
        margin-bottom: 20px;
    }

    .footer__left {
        margin-bottom: 25px;
    }

    .research-main__title {
        padding: 10px;
        font-size: 25px;
        line-height: 35px;
    }

    .research__title {
        font-size: 21px;
        line-height: 30px;
    }

    .research__big-text {
        font-size: 18px;
    }

    .research__text {
        font-size: 15px;
        line-height: 22px;
    }

    .research__row {
        padding-bottom: 30px;
        margin-bottom: 30px;
    }

    .header--research .logo {
        max-width: 90%;
        width: auto;
        height: auto;
        background: none;
        margin-bottom: 5px;
    }

    .header--research .logo img {
        width: 100%;
    }
}

@media (max-width: 479px) {
    .footer .social-item {
        width: 50px;
        height: 50px;
    }

    .footer .social-item .icn {
        transform: scale(0.5);
    }

    .research-main__title {
        font-size: 19px;
        line-height: 23px;
    }

    .research__title {
        font-size: 17px;
        line-height: 22px;
    }

    .research__big-text {
        font-size: 16px;
    }

    .research__text {
        font-size: 14px;
        line-height: 20px;
    }

    .research__row {
        padding-bottom: 30px;
        margin-bottom: 30px;
    }

    .research-slider {
        padding: 0;
        margin-bottom: 80px;
    }

    .research-slider:before {
        display: none;
    }

    .research-slider .owl-nav {
        top: auto;
        right: 0;
        bottom: 0;
        padding: 0;
        justify-content: center;
    }

    .research-slider .owl-prev,
    .research-slider .owl-next {
        margin: 0 10px;
    }

    .research__title--center {
        margin-bottom: 20px;
    }
}

.landing {
    overflow: hidden;
}

.header--landing {
    position: sticky;
    top: 0;
    z-index: 11;
}

.header--landing .nav__link {
    font-size: 20px;
    margin-right: 40px;
    padding: 0;
}

.header--landing .nav__link:hover {
    background: transparent;
}

.header--landing .nav__link--btn {
    border-radius: 5px;
    background-color: #fff;
    color: #000;
    padding: 0 15px;
    margin-right: 10px;
}

.header--landing .nav__link--btn:last-child {
    margin-right: 0;
}

.header--landing .nav__link--btn:hover {
    background: #fff;
    color: #3D4940;
}

.landing .button {
    border-radius: 5px;
    background-color: #1a4326;
    color: #ffffff;
    font-weight: 700;
    border: none;
    cursor: pointer;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.landing .button .icn {
    display: block;
    width: 10px;
    height: 16px;
    fill: currentColor;
    margin-left: 20px;
    margin-top: 2px;
    flex-shrink: 0;
}

.landing .button:hover {
    background-color: #3D4940;
}

.sect--no-bottom-margin {
    margin-bottom: 0;
}

.sect--grey {
    background: #EFECEC;
    padding: 55px 0;
}

@media (max-width: 767px) {
    .sect--grey {
        padding: 30px 0;
    }
}

/* start welcome-block*/
.welcome-block {
    display: flex;
    border: 1px solid #DED4D4;
    padding: 40px 60px;
}

.welcome-block__info {
    width: 45%;
    min-width: 350px;
    margin-right: 30px;
}

.welcome-block__img {
    flex-grow: 1;
    display: flex;
    justify-content: flex-end;
    max-width: 100%;
}

.welcome-block__img img {
    display: block;
    max-width: 100%;
    object-fit: cover;
}

.welcome-block__title {
    color: #333;
    font-size: 30px;
    font-weight: 700;
    line-height: 36px;
    margin-top: 0;
}

.welcome-block__title:not(:last-child) {
    margin-bottom: 15px;
}

.welcome-block__text {
    max-width: 500px;
}

.welcome-block__text:not(:last-child) {
    margin-bottom: 26px;
}

.welcome-block__list {
    padding: 0;
}

.welcome-block__list:not(:last-child) {
    margin-bottom: 30px;
}

.welcome-block__list li {
    position: relative;
    display: block;
    color: #333;
    min-height: 30px;
    padding-left: 45px;
    line-height: 25px;
    margin-bottom: 12px;
}

.welcome-block__list li:before {
    content: '';
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: url(../img/checked_fill.svg) center center no-repeat;
    background-size: 100%;
}

.welcome-block__list li b {
    font-weight: 900;
}

.welcome-block__button {
    padding: 10px 20px;
}

@media (max-width: 1199px) {
    .welcome-block {
        padding: 30px;
    }
}

@media (max-width: 767px) {
    .welcome-block {
        flex-direction: column;
    }

    .welcome-block__info {
        width: 100%;
        margin-right: 0;
        margin-bottom: 30px;
        min-width: 0;
    }

    .welcome-block__img {
        width: 100%;
    }

    .welcome-block__img img {
        width: 100%;
    }
}
/* end welcome-block */

/* start all-registration */
.all-registration {
    display: flex;
    background: #F5F2EF;
    border: 1px solid #DED4D4;
}

.all-registration__img {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48%;
}

.all-registration__img img {
    display: block;
    width: 100%;
    min-height: 100%;
    max-width: 100%;
    object-fit: cover;
}

.all-registration__info {
    width: 52%;
    min-width: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 30px 85px;
}

.all-registration__title {
    max-width: 500px;
    color: #333;
    font-size: 30px;
    font-weight: 700;
    line-height: 36px;
    margin-top: 0;
}

.all-registration__title:not(:last-child) {
    margin-bottom: 30px;
}

.all-registration__count {
    display: flex;
}

.all-registration__count span {
    background: #1a4326;
    border-radius: 5px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    line-height: 40px;
    text-align: center;
    min-width: 40px;
    margin-left: 2px;
}

.all-registration__count span:first-child {
    padding: 0 15px;
}

@media (max-width: 1199px) {
    .all-registration__info {
        padding: 30px 50px;
    }
}

@media (max-width: 991px) {
    .all-registration__info {
        padding: 0 0 0 30px;
    }
}

@media (max-width: 767px) {
    .all-registration {
        flex-direction: column;
    }

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

    .all-registration__info {
        width: 100%;
        min-width: 0;
        padding-left: 0;
    }

    .all-registration__count span {
        min-width: 0;
        line-height: 40px;
        min-width: 25px;
        font-size: 20px;
    }
}

/* end all registration */

.start-steps {
    border-radius: 8px;
    background-color: #EFECEC;
    background-image: linear-gradient(to right, #3D4940 0%, #14bfaf 100%);
    padding: 50px 60px 60px;
}

.start-steps__title {
    color: #ffffff;
    font-size: 40px;
    font-weight: 700;
    font-style: normal;
    letter-spacing: normal;
    margin-top: 0;
    margin-bottom: 20px;
}

.start-steps__text {
    color: #ffffff;
    font-size: 20px;
    font-weight: 600;
    line-height: 25px;
    margin-bottom: 45px;
}

.start-steps__content {
    display: flex;
}

.item-start-steps {
    border-radius: 8px;
    background-color: #ffffff;
    padding: 30px;
    margin-right: 30px;
}

.item-start-steps:first-child {
    width: 370px;
    flex-shrink: 0;
}

.item-start-steps:last-child {
    width: 350px;
    flex-shrink: 0;
    margin-right: 0;
}

.item-start-steps__info {
    display: flex;
}

.item-start-steps__number {
    color: #333;
    font-size: 40px;
    font-weight: 700;
    line-height: 30px;
    text-align: center;
    margin-right: 25px;
}

.item-start-steps__text {
    color: #333;
    font-size: 20px;
    font-weight: 700;
    line-height: 25px;
    text-align: left;
}

.item-start-steps__button {
    display: flex;
    background-color: #3D4940;
    width: 100%;
    margin-top: 30px;
    justify-content: center;
    line-height: 22px;
}

.slider-about__item {
    border-radius: 8px;
    background-color: #EFECEC;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.slider-about__img {
    flex-shrink: 0;
    width: 565px;
    height: 450px;
    margin-right: 65px;
}

.slider-about__img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-about__info {
    max-width: 540px;
    padding-right: 40px;
}

.slider-about__title {
    color: #333;
    font-size: 40px;
    font-weight: 700;
    line-height: 50px;
    margin-bottom: 40px;
}

.slider-about__list {
    padding: 0;
}

.slider-about__list li {
    position: relative;
    display: block;
    color: #333;
    font-size: 20px;
    font-weight: 400;
    font-style: normal;
    letter-spacing: normal;
    padding-left: 35px;
    line-height: 25px;
    margin-bottom: 12px;
}

.slider-about__list li:before {
    content: '';
    position: absolute;
    display: block;
    top: 2px;
    left: 0;
    width: 23px;
    height: 23px;
    background: url(../img/checked_fill.webp) center center no-repeat;
}

.slider-about__text {
    color: #333;
    font-size: 20px;
    font-weight: 400;
    line-height: 25px;
}

.slider-about .owl-nav {
    display: flex;
    justify-content: space-between;
    height: 0;
    width: 100%;
    margin-top: -25px;
    position: absolute;
    top: 50%;
    left: 0;
    padding: 0 50px;
}

.slider-about .owl-prev,
.slider-about .owl-next {
    display: flex;
    width: 50px;
    height: 50px;
    border-radius: 2px;
    background: #ffffff !important;
    color: #333 !important;
}

.slider-about .owl-prev .icn,
.slider-about .owl-next .icn {
    display: block;
    width: 10px;
    height: 16px;
    margin: auto;
}

.slider-about .owl-prev {
    transform: scaleX(-1);
}

.slider-about .owl-prev:hover,
.slider-about .owl-next:hover {
    background: #3D4940 !important;
    color: #fff !important;
}

.slider-about .owl-dots {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.slider-about .owl-dot {
    width: 10px;
    height: 10px;
    background-color: #c6c6c6 !important;
    border-radius: 50%;
    margin: 0 5px;
}

.slider-about .owl-dot:hover,
.slider-about .owl-dot.active {
    background: #3D4940 !important;
}

.why-try {

}

.why-try__title {
    color: #333;
    font-size: 30px;
    font-weight: 700;
    line-height: 36px;
    text-align: center;
}

.why-try__content {
    display: flex;
    flex-wrap: wrap;
}

.item-why-try {
    display: flex;
    align-items: center;
    width: calc(50% - 15px);
    box-shadow: 0px 0px 20px rgba(222, 212, 212, 0.8);
    background-color: #ffffff;
    margin-bottom: 30px;
    margin-right: 30px;
    padding: 40px;
}

.item-why-try:nth-child(2n) {
    margin-right: 0;
}

.item-why-try__icon {
    flex-shrink: 0;
    width: 80px;
    margin-right: 30px;
}

.item-why-try__icon img {
    display: block;
    max-width: 100%;
    margin: 0 auto;
}

.item-why-try__title {
    color: #333;
    font-size: 20px;
    font-weight: 700;
    line-height: 25px;
    margin-bottom: 10px;
}

.item-why-try__text {
    color: #333;
    font-weight: 700;
    line-height: 25px;
}

@media (max-width: 991px) {
    .item-why-try {
        padding: 30px;
    }

    .item-why-try__icon {
        width: 50px;
        margin-right: 20px;
    }

    .item-why-try__text {
        font-weight: 400;
    }
}

@media (max-width: 767px) {
    .item-why-try {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
    }

    .item-why-try__icon {
        margin-bottom: 20px;
    }
}

@media (max-width: 479px) {
    .item-why-try {
        flex-direction: row;
        align-items: center;
    }

    .item-why-try__icon {
        width: 40px;
        margin-bottom: 0;
        margin-right: 20px;
    }
}

.bots__title {
    color: #333;
    font-size: 40px;
    font-weight: 700;
    line-height: 50px;
    text-align: center;
    margin-top: 0;
    margin-bottom: 30px;
}

.bots__text {
    color: #333;
    font-size: 20px;
    font-weight: 700;
    line-height: 25px;
    text-align: center;
    margin-bottom: 50px;
}

.bots__content {
    display: flex;
}

.item-bots {
    width: calc(50% - 20px);
    margin-right: 40px;
}

.item-bots:last-child {
    margin-right: 0;
}

.item-bots:last-child .item-bots__title {
    margin-right: 110px;
}

.item-bots__info {
    border-radius: 2px;
    background-color: #EFECEC;
    padding: 50px 50px 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.item-bots__icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    margin-right: 25px;
    color: #3D4940;
}

.item-bots__icon .icn {
    display: block;
    max-width: 100%;
    fill: currentColor;
}

.item-bots__title {
    color: #333;
    font-size: 17px;
    font-weight: 700;
    line-height: 25px;
    margin-right: 60px;
}

.item-bots__title span {
    display: block;
    color: #333;
    font-size: 26px;
    font-weight: 700;
    line-height: 25px;
    margin-top: 5px;
}

.item-bots__img {
    margin-top: -70px;
}

.item-bots__img img {
    display: block;
    max-width: 100%;
    margin: 0 auto;
}

.how-work__title {
    color: #333;
    font-size: 30px;
    font-weight: 700;
    line-height: 36px;
    text-align: center;
    margin-top: 0;
    margin-bottom: 0;
}

.how-work__content {
    display: flex;
}

@media (max-width: 767px) {
    .how-work__content {
        flex-direction: column;
    }
}

/* start item-how-work */
.item-how-work {
    position: relative;
    width: calc(33.33% - 40px);
    background: linear-gradient(270deg, #FEA82F 0%, #1a4326 97.93%);
    border-radius: 5px;
    padding: 16px 75px 30px 20px;
    margin-top: 35px;
    margin-right: 60px;
    color: #fff;
}

.item-how-work:last-child {
    margin-right: 0;
}

.item-how-work__number {
    position: absolute;
    top: 20px;
    right: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #fff;
    color: #333;
    font-size: 20px;
    font-weight: 700;
    text-align: center;
}

.item-how-work__title {
    font-size: 20px;
    font-weight: 700;
    text-align: left;
    margin-bottom: 10px;
}

.item-how-work__text {
    font-weight: 700;
    line-height: 25px;
    text-align: left;
}

@media (max-width: 1199px) {
    .item-how-work {
        padding-right: 40px;
    }

    .item-how-work__number {
        width: 50px;
        height: 50px;
        top: -15px;
        right: -15px;
        box-shadow: 0px 0px 20px rgba(222, 212, 212, 0.8);
    }
}

@media (max-width: 991px) {
    .item-how-work {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .item-how-work {
       padding-top: 35px;
    }

    .item-how-work__number {
        right: 15px;
        top: -25px;
    }
}
/* end item-how-work */

.landing .news {
    margin-bottom: 0;
}

.landing .news:before {
    z-index: 1;
    top: 120px;
}

.landing .news .owl-stage {
    display: flex;
}

.landing .news .owl-stage-outer {
    z-index: 1;
    position: relative;
}

.landing .research__title {
    font-size: 40px;
    font-weight: 700;
}

.landing .news-item {
    display: flex;
    flex-direction: column;
    box-shadow: 0 0 18px 2px rgba(154, 154, 154, 0.4);
    background-color: #ffffff;
    margin: 20px;
    height: calc(100% - 40px);
}

.landing .news-item__img {
    margin-bottom: 0;
}

.landing .news-item__title {
    margin-bottom: 15px;
}

.news-item__text {
    color: #333;
    font-size: 17px;
    font-weight: 600;
    line-height: 25px;
    margin-bottom: 20px;
}

.news-item__info {
    padding: 30px 20px 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.news-item .news-item__button {
    font-size: 15px;
    padding: 14px;
    margin-top: auto;
}

.landing .research-slider .owl-nav {
    top: 160px;
}

.landing .research-slider .owl-prev,
.landing .research-slider .owl-next {
    background: #fff !important;
}

.landing .research-slider .owl-prev:hover,
.landing .research-slider .owl-next:hover {
    background: #3D4940 !important;
}

.project-work__title {
    color: #333;
    font-size: 40px;
    font-weight: 700;
    line-height: 50px;
    text-align: center;
    margin-bottom: 40px;
}

.item-project-work {
    display: flex;
    height: 100%;
    border: 1px solid #DED4D4;
    padding: 40px 170px 40px 80px;
    background: #fff;
}

.item-project-work__img {
    flex-shrink: 0;
    width: 530px;
    max-width: 100%;
    margin-right: 50px;
}

.item-project-work__img img {
    box-shadow: 0px 0px 20px rgba(222, 212, 212, 0.8);
}

.item-project-work__steps {
    display: flex;
    margin-bottom: 50px;
}

.item-project-work__link {
    display: block;
    height: 40px;
    background: #DED4D4;
    border-radius: 5px;
    margin-right: 20px;
    color: #333;
    font-weight: 700;
    line-height: 40px;
    padding: 0 20px;
}

.item-project-work__link:hover {
    background: #3D4940;
    color: #fff;
}

.item-project-work__link.active {
    background: #1a4326;
    color: #fff;
}

.item-project-work__title {
    color: #333;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.item-project-work__title-dop {
    font-weight: 700;
    line-height: 25px;
    color: #2C6AE1;
    margin-bottom: 25px;
}

.item-project-work__text {
    color: #333;
    font-size: 17px;
    font-weight: 600;
    line-height: 25px;
    margin-bottom: 50px;
}

@media (max-width: 1199px) {
    .item-project-work {
        padding-right: 80px;
    }
}

.project-work__slider .owl-nav {
    display: flex;
    justify-content: space-between;
    height: 0;
    width: 100%;
    position: absolute;
    top: 50%;
    left: 0;
    margin: -20px 0 0;
}

.project-work__slider .owl-stage {
    display: flex;
}

.project-work__slider .owl-item {
    padding: 0 2px;
}

.project-work__slider .owl-prev,
.project-work__slider .owl-next {
    display: flex;
    width: 40px;
    height: 40px;
    background: #1a4326 !important;
    border-radius: 5px;
    color: #333 !important;
}

.project-work__slider .owl-prev .icn,
.project-work__slider .owl-next .icn {
    display: block;
    width: 10px;
    height: 16px;
    margin: auto;
    fill: #fff;
}

.project-work__slider .owl-next {
    margin-right: 65px;
}

.project-work__slider .owl-prev {
    transform: scaleX(-1);
    margin-left: 20px;
}

.project-work__slider .owl-prev:hover,
.project-work__slider .owl-next:hover {
    background: #3D4940 !important;
    color: #fff !important;
}

.project-work__slider .owl-dots {
    position: absolute;
    left: 655px;
    bottom: 40px;
    width: 50%;
    display: flex;
}

.project-work__slider .owl-dot {
    width: 10px;
    height: 10px;
    background-color: #DED4D4 !important;
    border-radius: 50%;
    margin: 0 7px;
}

.project-work__slider .owl-dot:hover,
.project-work__slider .owl-dot.active {
    background: #1a4326 !important;
}

@media (max-width: 1199px) {
    .project-work__slider .owl-next {
        margin-right: -15px;
    }

    .project-work__slider .owl-prev {
        margin-left: -15px;
    }
}

@media (max-width: 767px) {
    .project-work__slider .owl-stage {
        display: block;
    }
}

@media (max-width: 767px) {
    .project-work__slider .owl-next,
    .project-work__slider .owl-prev {
        width: 30px;
        height: 30px;
    }
}

/* start your-contacts */
.your-contacts {
    display: flex;
    align-items: center;
}

.your-contacts__img {
    width: 50%;
}

.your-contacts__img img {
    display: block;
    max-width: 100%;
    margin-left: auto;
}

.your-contacts__info {
    width: 500px;
    margin-left: 50px;
}

.your-contacts__title {
    color: #333;
    font-size: 30px;
    font-weight: 700;
    line-height: 36px;
    text-align: center;
    margin-bottom: 20px;
}

.your-contacts__text {
    color: #333;
    font-weight: 700;
    line-height: 25px;
    text-align: center;
    margin-bottom: 25px;
}

.your-contacts__input-group {
    margin-bottom: 20px;
}

.your-contacts__input-group--filled .your-contacts__input,
.your-contacts__input-group--filled .your-contacts__textarea {
   background-color: #E1F1FF;
}

.your-contacts__label {
    display: block;
    color: #333;
    font-weight: 700;
    text-align: center;
    margin-bottom: 10px;
}

.your-contacts__input,
.your-contacts__textarea {
    width: 100%;
    height: 60px;
    border-radius: 0;
    border: none;
    background-color: #ffffff;
    outline: none;
    color: #333;
    font-size: 20px;
    text-align: center;
    font-weight: 700;
    padding: 0 20px;
    transition: background 0.3s;
}

.your-contacts__textarea {
    height: 170px;
    resize: none;
    padding-top: 15px;
    padding-bottom: 15px;
}

.your-contacts__input-checkbox {
    display: block;
    color: #333;
    font-weight: 700;
    font-style: normal;
    letter-spacing: normal;
    line-height: 25px;
    padding-left: 50px;
    position: relative;
    cursor: pointer;
}

.your-contacts__input-checkbox:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 30px;
    height: 30px;
    background-color: #fff;
    cursor: pointer;
    transition: background-color 0.3s;
}

.your-contacts__checkbox {
    display: none;
}

.your-contacts__checkbox:checked + .your-contacts__input-checkbox:before {
    background-image: url("../img/check.svg");
    background-repeat: no-repeat;
    background-position: center center;
    background-color: #E1F1FF;
}

.your-contacts__input-checkbox a {
    color: #2C6AE1;
}

.your-contacts__input-checkbox a:hover {
    text-decoration: underline;
}

.your-contacts__messagebox {
    color: #333;
    font-size: 15px;
    font-weight: 700;
    line-height: 25px;
    margin-bottom: 25px;
}

.your-contacts__button {
    width: 100%;
    padding: 20px;
    margin-top: 30px;
    font-size: 24px;
}

.your-contacts__button:disabled, button[disabled] {
    opacity: 0.3;
    cursor: default;
}

.your-contacts__input-group:disabled, input[disabled], textarea[disabled] {
    background-color: #EFECEC;
    color: #333;
    cursor: default;
}

.your-contacts--feedback {
    padding: 55px 45px;
    background-color: #EFECEC;
    overflow: hidden;
}

.your-contacts--feedback .your-contacts__img {
    order: 1;
    margin-left: auto;
}

.your-contacts--feedback .your-contacts__info {
    margin-right: 50px;
    margin-left: 0;
}

@media (max-width: 1199px) {
    .your-contacts--feedback {
        padding: 30px;
    }
}

@media (max-width: 767px) {
    .your-contacts__info {
        margin-left: 0;
    }

    .your-contacts--feedback .your-contacts__info {
        margin-right: 0;
    }

    .your-contacts--feedback .your-contacts__img {
        margin-left: 0;
    }

    .your-contacts__input,
    .your-contacts__textarea {
        font-size: 16px;
    }
}
/* end your-contacts */

.apps {
    display: flex;
    padding: 0 80px;
}

.apps__title {
    color: #333;
    font-size: 40px;
    font-weight: 700;
    line-height: 50px;
    text-align: left;
    margin-bottom: 30px;
    max-width: 320px;
}

.apps__text {
    color: #333;
    font-size: 20px;
    font-weight: 700;
    line-height: 25px;
    max-width: 430px;
    margin-bottom: 55px;
}

.apps__buttons {
    display: flex;
}

.apps__buttons .apps-bots__link {
    box-shadow: 0 0 18px 2px rgba(154, 154, 154, 0.4);
    border-radius: 2px;
    border: none;
}

.apps__img {
    margin-left: auto;
    margin-right: 60px;
    align-self: flex-end;
}

.apps__img img {
    display: block;
}

.footer--landing {
    border-top: 1px solid rgba(180, 191, 199, 0.5);
    padding-top: 25px;
    padding-bottom: 35px;
}

.requisites-footer {
    margin-bottom: 20px;
}

.requisites-footer__title {
    color: #333;
    font-size: 16px;
    font-weight: 600;
    line-height: 20px;
    text-align: left;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.requisites-footer__row {
    display: flex;
}

.requisites-footer__col {
    width: 33.33%;
}

.requisites-footer__col--two {
    width: 66.66%;
    display: flex;
    align-items: center;
}

.requisites-footer__copir {
    color: #333;
    font-size: 16px;
    font-weight: 600;
    margin-right: 40px;
}

.requisites-footer__link {
    color: #3D4940;
    font-size: 16px;
    font-weight: 600;
    line-height: 25px;
    margin-right: 20px;
}
@media (max-width: 767px) {
  .requisites-footer__link {
    font-size: 13px;
  }
}

.up {
    position: fixed;
    bottom: 20px;
    right: 3%;
    z-index: 99;
    display: none;
    width: 40px;
    height: 40px;
    border-radius: 5px;
    background: #2C6AE1 url('../img/chevron-up.svg') center center no-repeat;
    color: #ffffff;
    font-weight: 900;
    font-size: 39px;
    line-height: 65px;
    text-align: center;
}

.up:hover {
    opacity: 0.9;
}


@media (max-width: 1350px) {
    .header--landing .nav__link {
        margin-right: 20px;
    }

    .item-start-steps:first-child,
    .item-start-steps:last-child {
        width: auto;
        flex-shrink: inherit;
    }

    .item-project-work__img {
        width: 350px;
        margin-right: 50px;
    }

    .project-work__slider .owl-dots {
        left: 475px;
    }

    .item-project-work {
        height: 100%;
    }

    .apps__img {
        margin-right: 0;
    }

    .footer .social-item {
        width: 55px;
        height: 55px;
        margin-right: 10px;
    }
}

@media (max-width: 1373px) {
    .welcome-block__title {
        font-size: 35px;
        line-height: 45px;
    }
}

@media (max-width: 1205px) {
    .header--landing .header-panel {
        height: auto;
        padding-bottom: 10px;
        padding-top: 10px;
    }

    .header--landing .header-panel__logo {
        margin-right: 0;
        width: 100%;
        display: flex;
        justify-content: center;
        margin-bottom: 20px;
    }

    .header--landing .logo img {
        display: block;
        max-width: 100%;
    }

    .header--landing .header-panel__nav {
        margin-right: auto;
    }

    .welcome-block {
        align-items: center;
    }

    .welcome-block__title,
    .all-registration__title,
    .start-steps__title,
    .slider-about__title,
    .why-try__title,
    .bots__title,
    .how-work__title,
    .landing .research__title,
    .project-work__title,
    .your-contacts__title,
    .apps__title {
        font-size: 30px;
        line-height: 35px;
    }

    .welcome-block__list li,
    .slider-about__list li {
        font-size: 17px;
        line-height: 23px;
    }

    .apps__text,
    .your-contacts__text,
    .bots__text,
    .slider-about__text {
        font-size: 17px;
        line-height: 23px;
    }

    .all-registration__title {
        margin-top: 0;
    }

    .item-start-steps__number {
        font-size: 35px;
    }

    .item-start-steps__text {
        font-size: 16px;
        line-height: 20px;
    }

    .landing .item-start-steps__button {
        font-size: 20px;
    }

    .slider-about__img {
        width: 45%;
    }

    .slider-about .owl-nav {
        padding: 0 10px;
    }

    .item-bots .item-bots__title,
    .item-bots:last-child .item-bots__title {
        margin-right: 20px;
    }

    .item-how-work {
        width: calc(33.33% - 20px);
        margin-right: 30px;
    }

    .item-project-work__img {
        margin-right: 30px;
    }

    .item-project-work__link {
        font-size: 16px;
    }

    .your-contacts__input-checkbox {
        font-size: 15px;
        line-height: 20px;
    }

    .apps__img {
        width: 40%;
    }

    .apps__img img {
        width: 100%;
    }

    .apps__buttons {
        flex-direction: column;
    }

    .apps-bots__link {
        margin-right: 0;
    }

    .apps__info {
        padding-right: 30px;
    }

    .requisites-footer__col p {
        margin: 0 0 5px;
        font-size: 14px;
    }

    .project-work__slider .owl-dots {
        left: 455px;
    }
}

@media (max-width: 991px) {
    .header--landing .nav__link {
        font-size: 16px;
    }

    .all-registration {
        padding: 30px;
    }

    .start-steps__content {
        flex-wrap: wrap;
    }

    .item-start-steps {
        width: calc(50% - 15px) !important;
        flex-grow: 1;
        margin-bottom: 20px;
    }

    .item-start-steps:nth-child(2) {
        margin-right: 0;
    }

    .item-bots__info {
        flex-wrap: wrap;
        padding: 20px 20px 90px;
    }

    .item-bots__title {
        width: 150px;
    }

    .landing .item-bots__button {
        margin-top: 20px;
        padding: 15px;
    }

    .item-project-work {
        padding: 20px 30px;
    }

    .item-project-work__img {
        width: 250px;
    }

    .item-project-work__steps {
        margin-bottom: 30px;
    }

    .item-project-work__link {
        font-size: 13px;
    }

    .item-project-work__title {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .item-project-work__title-dop,
    .item-project-work__text {
        font-size: 15px;
        line-height: 22px;
    }

    .project-work__slider .owl-dots {
        left: 300px;
        bottom: 30px;
    }

    .requisites-footer__col {
        padding-right: 30px;
    }

    .footer .social-item {
        margin-bottom: 10px;
    }

    .requisites-footer__col--two {
        flex-direction: column;
        align-items: flex-start;
    }

    .requisites-footer__copir {
        margin-bottom: 20px;
    }

    .up {
        width: 45px;
        height: 45px;
        line-height: 45px;
        font-size: 25px;
    }
}

@media (max-width: 767px) {
    .header--landing {
        position: relative;
    }

    .header--landing .nav__link {
        display: none;
    }

    .header--landing .nav__link--btn {
        display: flex;
    }

    .landing .button {
        font-size: 17px;
        padding: 15px;
    }

    .welcome-block__title,
    .all-registration__title,
    .start-steps__title,
    .slider-about__title,
    .why-try__title,
    .bots__title,
    .how-work__title,
    .landing .research__title,
    .project-work__title,
    .your-contacts__title,
    .apps__title {
        font-size: 20px;
        line-height: 25px;
    }

    .welcome-block__list li,
    .slider-about__list li {
        font-size: 15px;
        line-height: 20px;
    }

    .apps__text,
    .your-contacts__text,
    .bots__text,
    .slider-about__text {
        font-size: 15px;
        line-height: 20px;
    }

    .item-start-steps {
        width: 100% !important;
        margin-right: 0;
        flex-grow: 1;
        margin-bottom: 20px;
    }

    .start-steps {
        padding: 30px;
    }

    .start-steps__text {
        font-size: 18px;
        line-height: 22px;
    }

    .slider-about__item {
        flex-direction: column;
    }

    .slider-about__img {
        width: 100%;
        height: 200px;
        margin-right: 0;
        margin-bottom: 20px;
    }

    .slider-about__info {
        padding: 0 20px;
        width: 100%;
    }

    .slider-about .owl-nav {
        top: 110px;
    }

    .slider-about__title {
        margin-bottom: 20px;
    }

    .up {
        display: none !important;
    }

    .bots__content {
        flex-direction: column;
    }

    .item-bots {
        width: 100%;
        margin-right: 0;
        margin-bottom: 20px;
    }

    .item-how-work {
        width: 100%;
        margin-right: 0;
        margin-bottom: 10px;
    }

    .item-how-work__title {
        font-size: 18px;
    }

    .item-how-work__text {
        font-size: 14px;
        line-height: 20px;
    }

    .item-project-work {
        flex-direction: column;
        margin: 0 1px;
        padding: 30px 100px;
    }

    .item-project-work__img {
        margin: 0 auto 20px;
    }

    .item-project-work__steps {
        display: none;
    }

    .project-work__slider .owl-dots {
        left: 0;
        bottom: 30px;
        width: 100%;
        justify-content: center;
    }

    .your-contacts {
        flex-direction: column;
    }

    .your-contacts__info {
        padding-left: 20px;
        padding-right: 20px;
        margin-top: 20px;
        width: auto;
    }

    .your-contacts--feedback .your-contacts__info {
        padding-right: 20px;
    }

    .your-contacts--feedback .your-contacts__img {
        order: 0;
    }

    .your-contacts--feedback {
        padding: 30px 0;
    }

    .apps {
        padding: 0;
    }

    .apps__img {
        width: 60%;
    }

    .footer--landing {
        display: block;
    }

    .requisites-footer__row {
        flex-direction: column;
    }

    .requisites-footer__col {
        width: 100%;
    }

    .footer .news-socials {
        margin-top: 20px;
    }

    .landing .welcome-block__button {
        display: flex;
        width: 100%;
    }

    .requisites-footer__title {
        margin-bottom: 10px;
        font-size: 13px;
    }

    .requisites-footer__col p {
        margin: 0 0 5px;
        font-size: 12px;
    }

    .header--landing .header-panel {
        flex-wrap: nowrap;
    }

    .header--landing .header-panel__logo {
        width: auto;
        margin-bottom: 0;
        margin-right: auto;
    }

    .header--landing .nav__link {
        font-size: 14px;
        margin-right: 10px;
    }

    .project-work__slider .owl-prev {
        margin-left: 20px;
    }

    .project-work__slider .owl-next {
        margin-right: 20px;
    }
}

@media (max-width: 479px) {
    .item-start-steps {
        padding: 20px 15px;
    }

    .item-why-try {
        width: 100%;
        margin-right: 0;
    }

    .landing .research-slider .owl-nav {
        top: auto;
    }

    .landing .news {
        margin-bottom: 20px;
    }

    .your-contacts__img {
        width: 100%;
    }

    .your-contacts--feedback {
        padding-top: 0;
    }

    .apps {
        flex-direction: column;
    }

    .apps__info {
        padding-right: 0;
    }

    .apps__img {
        width: 80%;
        margin: 0 auto;
    }

    .footer .social-item {
        width: 45px;
        height: 45px;
    }

    .item-project-work {
        padding: 30px;
    }

    .project-work__slider .owl-next {
        margin-right: -10px;
    }

    .project-work__slider .owl-prev {
        margin-left: -10px;
    }
}


.starability-basic {
    display: block;
    position: relative;
    width: 160px;
    min-height: 24px;
    padding: 0;
    border: none;
    margin-top: 50px;
}

@media (max-width: 767px) {
    .starability-basic {
        margin: 50px auto 0;
    }
}

.starability-basic > input {
    position: absolute;
    margin-right: -100%;
    opacity: 0;
}

.starability-basic > input:checked ~ label,
.starability-basic > input:focus ~ label {
    background-position: 0 0;
}

.starability-basic > input:checked + label,
.starability-basic > input:focus + label {
    background-position: 0 -24px;
}

.starability-basic > input[disabled]:hover + label {
    cursor: default;
}

.starability-basic > input:not([disabled]):hover ~ label {
    background-position: 0 0;
}

.starability-basic > input:not([disabled]):hover + label {
    background-position: 0 -24px;
}

.starability-basic > input:not([disabled]):hover + label::before {
    opacity: 1;
}

.starability-basic > label {
    position: relative;
    display: inline-block;
    float: left;
    width: 32px;
    height: 24px;
    font-size: 0.1em;
    color: transparent;
    cursor: pointer;
    background-image: url(../img/stars.svg);
    background-repeat: no-repeat;
    background-position: 0 -24px;
}

.starability-basic > label::before {
    content: '';
    position: absolute;
    display: block;
    height: 24px;
    background-image: url(../img/stars.svg);
    background-position: 0 24px;
    pointer-events: none;
    opacity: 0;
}

.starability-basic > label:nth-of-type(5)::before {
    width: 128px;
    left: -128px;
}

.starability-basic > label:nth-of-type(4)::before {
    width: 96px;
    left: -96px;
}

.starability-basic > label:nth-of-type(3)::before {
    width: 64px;
    left: -64px;
}

.starability-basic > label:nth-of-type(2)::before {
    width: 32px;
    left: -32px;
}

.starability-basic > label:nth-of-type(1)::before {
    width: 0px;
    left: 0px;
}

.starability-basic:hover .hint__hidden--visible {
    opacity: 0;
}

.hint {
    position: relative;
}

.hint__hidden {
    position: absolute;
    bottom: calc(100% + 10px);
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    color: #000;
    font-size: 9px;
    font-weight: 400;
    text-transform: uppercase;
    padding: 5px 10px;
    background: #EFECEC;
    border-radius: 5px;
    white-space: nowrap;
    opacity: 0;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    pointer-events: none;
}

.hint__hidden--visible {
    opacity: 1;
}

.hint__hidden:after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border: 5px solid transparent;
    border-top-color: #EFECEC;
}

.hint:hover .hint__hidden {
    opacity: 1;
}

.lock_background_yellow {
    border-radius: 50%;
    background: 0 0 / 50px 50px url('../img/myPaint.png') #fefe22;
    width: 50px;
    height: 50px;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-animation-name: rotation;
    -webkit-animation-duration: 5s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    -moz-animation-name: rotation;
    -moz-animation-duration: 5s;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;
    -o-animation-name: rotation;
    -o-animation-duration: 5s;
    -o-animation-iteration-count: infinite;
    -o-animation-timing-function: linear;
    animation-name: rotation;
    animation-duration: 5s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

.lock_background_grey{
    border-radius: 50%;
    background: #E5EEF5;
    width: 50px;
    height: 50px;
    position: absolute;
    top: 0;
    left: 0;
}

.lock-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 50px;
    height: 50px;
    background: 11px 7px / 28px 36px url('../img/padlock.png') no-repeat
}

.locked_lock{
    position: absolute;
    top: 0;
    left: 0;
    width: 50px;
    height: 50px;
    background: 16px 12px / 18px 26px url('../img/locked_lock.png') no-repeat
}

.lock_circle {
    width: 50px;
    height: 50px;
    position: relative;
    margin-right: 20px;
}

.popup-modal{
    background: #f5ede7;
    box-shadow: 0px 0px 20px 0px rgba(196, 206, 216, 0.3);
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 590px;
    height: 656px;
    display: none;
    z-index: 20;
    flex-direction: column;
    align-items: center;
}

.popup-img{
    width: 400px;
}

.popup-exit{
    width: 20px;
    height: 20px;
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
}

.popup-modal__text{
    font-size: 16px;
    color: rgb(28, 28, 28);
    line-height: 1.25;
    font-weight: 700;
    width: 80%;
}

.popup-modal-later{
    border-radius: 2px;
    background-color: rgb(189, 197, 203);
    width: 294px;
    height: 64px;
    color: rgb(255, 255, 255);
    font-weight: bold;
    line-height: 1.042;
    text-align: center;
    font-size: 24px;
    padding-top: 20px;
    cursor: pointer;
}

.popup-modal-begin{
    border-radius: 2px;
    background-color: rgb(107, 178, 68);
    width: 162px;
    height: 64px;

    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.popup-modal-begin-text{
    color: rgb(255, 255, 255);
    font-weight: bold;
    text-align: center;
    font-size: 24px;
}

/* start rating */
.rating {
    display: flex;
    align-items: center;
    padding: 15px 0;
    border-top: 1px solid #DED4D4;
    border-bottom: 1px solid #DED4D4;
}

.rating__text {
    margin-right: auto;
    padding-right: 10px;
    color: #333;
    font-weight: 700;
}

.rating__stars {
    display: flex;
}

.rating__stars:not(:last-child) {
    margin-right: 20px;
}

.rating__count {
    margin-left: 15px;
    color: #333;
    font-weight: 600;
    font-size: 26px;
}

.rating__count:not(:last-child) {
    margin-right: 20px;
}

@media (max-width: 991px) {
    .rating__stars:not(:last-child) {
        margin-right: 10px;
    }

    .rating__stars img {
       width: 25px;
    }

    .rating__smile img {
        width: 35px;
    }

    .rating__count {
        font-size: 20px;
    }

    .rating__count:not(:last-child) {
        margin-right: 10px;
    }
}

@media (max-width: 767px) {
    .rating {
        flex-wrap: wrap;
    }

    .rating__text {
        width: 100%;
        margin-bottom: 10px;
    }
}
/* end rating */

/* start start */
.start {
    display: flex;
}

.start__title {
    display: flex;
    align-items: center;
    flex-grow: 1;
    padding: 18px 20px;
    border: 1px solid #DED4D4;
    font-weight: 700;
    font-size: 20px;
    line-height: 24px;
}

.start__title:not(:last-child) {
    margin-right: 20px;
}

.start__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    background-color: #1a4326;
    border-radius: 5px;
    color: #fff;
    font-weight: 700;
    padding: 15px 20px;
    font-size: 24px;
    line-height: 30px;
    text-align: center;
}

.start__btn:hover {
    background-color: #3D4940;
}

@media (max-width: 991px) {
    .start {
        flex-direction: column;
    }

    .start__title:not(:last-child) {
        margin-right: 0;
        margin-bottom: 20px;
    }
}
/* end start */

/* start poll */
.poll__start:not(:last-child) {
    margin-bottom: 40px;
}

.poll__rating:not(:last-child) {
    margin-bottom: 40px;
}

.poll__title {
    padding: 18px 20px;
    background: #EFECEC;
    font-weight: 700;
    font-size: 20px;
    line-height: 24px;
}

.poll__title:not(:last-child) {
    margin-bottom: 20px;
}

.poll__descr {
    font-weight: 700;
    line-height: 25px;
}

.poll__descr:not(:last-child) {
    margin-bottom: 20px;
}

.poll__text:not(:last-child) {
    margin-bottom: 10px;
    margin-top: 0;
}

.poll__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 25px;
    max-width: 100%;
    background-color: #1a4326;
    border-radius: 5px;
    color: #fff;
    font-weight: bold;
}

.poll__btn:hover {
    background-color: #3D4940;
}

.poll__btn .icn-arrow_l{
    width: 10px;
    height: 16px;
    margin-right: 15px;
}
/* end poll */
@-webkit-keyframes rotation {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-moz-keyframes rotation {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-o-keyframes rotation {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes rotation {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(720deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
/*polls-daily*/
.polls-daily{
    background: linear-gradient(90deg, #FFD600 0%, #FEB700 100%);
    border-radius: 2px;
    display: flex;
    justify-content: space-between;
    margin: 0 0 5vh 0;
}

.polls-daily__text{
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin: 1vw ;
}

.polls-daily__title{
    margin: 1vw ;
    font-family: 'Lato';
    font-style: normal;
    font-weight: 700;
    font-size: 26px;
    line-height: 36px;
    font-feature-settings: 'liga' off;

}

.polls-daily__subtitle{
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin: 1vw ;
    font-family: 'Lato';
    font-style: normal;
    font-weight: 700;
    font-size: 17px;
    line-height: 20px;
}

.polls-daily__btn{
    display: flex;
    align-items:center;
    justify-content: space-evenly;
    margin: 1vw;
    width: 118px;
    height: 50px;
    font-family: 'Lato'; /* 'Inter' */
    font-style: normal;
    font-weight: 600;
    font-size: 15px;
    line-height: 30px;
    cursor: pointer;
    text-align: center;
    border: none;
    color: #000000;
    background: #FFFFFF;
    border-radius: 2px;
}


.polls-daily__time{
    display: flex;
    justify-content:center;
    flex-wrap: wrap;
    margin: 2vw;
}


.polls-daily__time--text{
    font-family: 'Lato';
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 20px;
    text-align: center;
}

.polls-daily__line{
    display: flex;
    justify-content: center;
    border: 1px solid #FFFFFF;
    margin: 2vw;
}

@media (max-width: 479px) {
    .polls-daily__title{
        font-size: 18px;
    }
    .polls-daily__subtitle{
        font-size: 14px;
    }
}
@media (max-width: 602px) {
    .polls-daily{
        text-align: center;
        flex-direction: column;
    }
    .polls-daily__title{
        line-height: 25px;
    }
    .polls-daily__text{
        justify-content: center;
    }
    .polls-daily__time{
        justify-content: center;
        align-items: center;
    }
}
@media (max-width:1140px) {
    .polls-daily__title{
        font-size: 22px;
        line-height: 25px;
    }
}
/*-----------*/

/* field table */
.fields-table-wrapper {
    overflow: auto;
    position: relative;
    z-index: 15;

}
@media (max-width: 767px) {
    .fields-table-wrapper {
        max-height: 80vh;
    }
}
.fields-table-wrapper::-webkit-scrollbar {
    width: 0;
    height: 0;
}
.fields-table {
    width: 100%;
    border-collapse: collapse;
}
.fields-table thead{
    position: sticky;
    top: 0;
    z-index: 2;
}
.fields-table:not(:last-child) {
    margin-bottom: 2.8125rem;
}

.fields-table tr {
    background-color: #fff;
    transition: all 0.3s;
}
.fields-table tbody tr {
    border-bottom: 1px solid #d9dfe3;
}

.fields-table tr.selected {
    background-color:  #e6eff5;
}

.fields-table th,
.fields-table td {
    padding: 0.9375rem;
}

.fields-table th {
  position: relative;
  text-align: left;
  background-color: #fff;
}
.fields-table th:before{
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #e6eff5;
}
.fields-table td {
    min-width: 130px;
}

.fields-table__label {
    font-weight: 700;
}

.fields-table__title {
    font-weight: 400;
}
.fields-table__swipe {
    position: absolute;
    bottom: -5px;
    display: none;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 50px;
}

.fields-table__swipe:before {
    content: '';
    width: 100%;
    height: 100%;
    background: url('../img/chevrons.svg') right center no-repeat;
    background-size: 30px;
    transform: scale(-1);
}

.fields-table__swipe:after {
    content: '';
    width: 100%;
    height: 100%;
    background: url('../img/chevrons.svg') right center no-repeat;
    background-size: 30px;
}

.fields-table--scroll .fields-table__swipe {
    display: flex;
}

.fields-table--scroll th {
    padding-bottom: 40px;
}
/* field table */

/* field select */
.field-select:not(:last-child) {
    margin-bottom: 10px;
}

.field-select.field-select--checked .field-select__select {
    background-color: #E6EFF5;
}

.field-select.field-select--error .field-select__select {
    background-color: #FFE4E4;
}

.field-select.field-select--open:before {
    pointer-events: auto;
    opacity: 0.7;
}

.field-select.field-select--open .field-select__dropdown {
    opacity: 1;
    pointer-events: auto;
}

.field-select:before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    width: 100vw;
    height: 100vh;
    background-color: #333;
    pointer-events: none;
    opacity: 0;
    transition: all 0.3s;
}

.field-select__title {
    font-size: 15px;
    font-weight: 700;
}

.field-select__title:not(:last-child) {
    margin-bottom: 15px;
}

.field-select__select {
    position: relative;
    height: 45px;
    padding: 10px 30px 10px 10px;
    border: 1px solid #D9DFE3;
    background-color: #fff;
    font-size: 15px;
    line-height: 25px;
    vertical-align: middle;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    cursor: pointer;
    transition: all 0.3s;
}

.field-select__select:after {
    content: '';
    position: absolute;
    top: calc(50% - 5px);
    right: 10px;
    width: 10px;
    height: 10px;
    border: 2px solid #333;
    border-top: transparent;
    border-right: transparent;
    transform: rotate(-45deg) translateY(-50%);
}

.field-select__dropdown {
    position: fixed;
    bottom: 10px;
    left: 10px;
    z-index: 101;
    padding: 20px;
    width: calc(100% - 20px);
    max-height: calc(100vh - 20px);
    border-radius: 2px;
    background-color: #fff;
    overflow-y: auto;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s;
}

.field-select__dropdown .check,
.field-select__dropdown .radio {
    padding: 10px 0;
}

.field-select__dropdown .check:not(:last-of-type),
.field-select__dropdown .radio:not(:last-of-type) {
    border-bottom: 1px solid #D9DFE3;
}

.field-select__dropdown .check:last-of-type,
.field-select__dropdown .radio:last-of-type {
    margin-bottom: 10px;
}

.field-select__dropdown .check__label,
.field-select__dropdown .radio__label {
    font-size: 15px;
    font-weight: 400;
}

.field-select__dropdown .check__icn {
    color: #333;
}

.field-select__dropdown .check__inpt:checked ~ .check__mask  {
    background-color: #E6EFF5;
}

.field-select__dropdown-title  {
    width: calc(100% + 40px);
    margin: -20px -20px 20px -20px;
    padding: 20px;
    background-color: #E6EFF5;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.field-select__save {
    width: 100%;
    height: 50px;
    font-size: 15px;
}
/* field select */

/* gallery slidder */
.gallery-slider {
    position: relative;
}

.gallery-slider:not(:last-child) {
    margin-bottom: 30px;
}

.gallery-slider__counter {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    font-weight: 600;
}

@media (max-width: 479px) {

    .gallery-slider__counter {
        bottom: 15px;
    }
}

@media (max-width: 479px) {

    .gallery-slider__counter-title {
        display: none;
    }
}

.gallery-slider__counter-numbers {
    font-size: 12px;
}

@media (max-width: 479px) {

    .gallery-slider__counter-numbers {
        font-size: 16px;
    }
}

.gallery-slider__counter-numbers:not(:first-child) {
    margin-top: 5px;
}

.gallery-slider .owl-nav {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.gallery-slider .owl-carousel .owl-nav button.owl-prev,
.gallery-slider .owl-carousel .owl-nav button.owl-next {
    display: flex;
    align-items: center;
    height: 50px;
    border-radius: 2px;
    background-color: #e6eff5;
    padding: 0 20px !important;
    color: #161616;
    font-size: 15px;
    font-weight: 700;
    transition: all 0.3s;
}

.gallery-slider .owl-carousel .owl-nav button.owl-prev.disabled,
.gallery-slider .owl-carousel .owl-nav button.owl-next.disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

.gallery-slider .owl-carousel .owl-nav button.owl-prev:hover,
.gallery-slider .owl-carousel .owl-nav button.owl-next:hover {
    background-color: #1a4326;
    color: #fff;
}
/* gallery slidder */

/* helpers */
@media (max-width: 767px) {

    .mobile-hidden {
        display: none;
    }
}

@media (min-width: 768px) {

    .mobile-visible {
        display: none;
    }
}
/* helpers */

@media (max-width: 480px) {

    .fields-table td:not(:first-child) {
        min-width: 100px;
    }
}

.fields-table td:first-child,
.fields-table th:first-child {
    position: sticky;
    left: 0;
    z-index: 1;
    background-color: inherit;
}



/* <<<=============< Intro >==============>>> */

.intro1 {
    display: flex;
    width: 100%;
    padding-right: 40px;
    padding-top: 0px;
    font-family: "Lato", sans-serif;
    justify-content: space-between;
}

.content__text1:not(:last-child) {
    margin-bottom: 30px;
}

.content__field {
    font-size: 20px;
    font-family: "Inter", sans-serif;
    padding: 17px 0px;
    margin-bottom: 30px;
    font-weight: 700;
}
.description__main {
  margin-top: 10%;
  padding: 0 24vh;
  font-size: 18px;
}

@media (max-width: 1023px) {

  .description__main {
    margin-top: 30%;
    padding: 0 10px;
  }

}

.content__text1,
.content__text2 {
    font-size: 17px;
    line-height: 25px;
    max-width: 600px;
}

.content__text2 span {
    font-size: 17px !important;
    line-height: 25px !important;
}

.content__text2 p:not(:first-child) {
    margin-top: 0;
}

.content__text2 p:not(:last-child) {
    margin-bottom: 0;
}

.content__text2:not(:last-child) {
    margin-bottom: 20px;
}

.start1 {
    display: flex;
    margin-top: 50px;
    margin-bottom: 67px;
}

.field2 {
    padding: 15px 17px;
    border: 1px solid #dee3e7;
    border-radius: 2px;
    width: 350px;
}

button {
    outline: 0;
    border: 0;
    background-color: transparent;
}

.start__btn1 {
    width: 118px;
    height: 50px;
    border-radius: 2px;
    background: #1a4326;
    cursor: pointer;
    margin-left: 20px;
    font-size: 15px;
    font-family: "Inter", sans-serif;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.start__icon1 {
    width: 10px;
    height: 10px;
    border-bottom: 2px solid white;
    border-right: 2px solid white;
    border-top: transparent;
    border-left: transparent;
    margin-top: 2px;
    transform: rotate(-45deg);
    margin-left: 14px;
}

.start__btn1:hover {
    background-color: #1a4326;
}

.rat__text {
    color: #333333;
    margin-right: 120px;
}

.rauting {
    display: flex;
    align-items: center;
    padding-top: 20px;
    padding-bottom: 20px;
    border-top: 1px solid #d9dfe3;
    border-bottom: 1px solid #d9dfe3;
}

.count1 {
    font-size: 26px;
    font-family: "Inter", sans-serif;
    margin-right: 19px;
    margin-left: 21px;
}

.back1 {
    margin-top: 30px;
    width: 275px;
    height: 50px;
    background: #e6eff5;
    font-family: "Inter", sans-serif;
    border-radius: 2px;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
}

.back__icon1 {
    width: 10px;
    height: 10px;
    border-bottom: 2px solid#333333;
    border-left: 2px solid#333333;
    border-right: transparent;
    border-top: transparent;
    transform: rotate(45deg);
    margin-right: 10px;
}

.back1:hover {
    background: rgb(201, 238, 255);
}
/* <<<=============< Media >==============>>> */

@media (max-width: 1350px) {
    .rat__text {
        margin-right: 35px;
    }
}

@media (max-width: 1260px) {
    .content__field {
        font-size: 20px;
    }

    .content__text1,
    .content__text2 {
        font-size: 14px;
        line-height: 22px;
        margin-left: auto;
        margin-right: auto;
    }

    .content__text2 span {
        font-size: 14px !important;
        line-height: 22px !important;
    }

    .start1 {
        margin-top: 21px;
        margin-bottom: 25px;
        font-size: 14px;
    }

    .field2 {
        width: 300px;
        height: 40px;
        padding: 11px 11px;
    }

    .start__text1 {
        font-size: 14px;
    }

    .start__btn1 {
        height: 40px;
        width: 105px;
    }

    .rat__text {
        font-size: 14px;
    }

    .rat__stars img {
        max-width: 25px;
    }

    .count1 {
        font-size: 16px;
    }

    .smile1 img {
        max-width: 32px;
    }

    .rauting {
        padding-top: 15px;
        padding-bottom: 15px;
    }

    .back1 {
        margin-top: 23px;
        width: 250px;
        height: 40px;
        font-size: 14px;
    }

    .intro1 {
        padding-left: 0;
    }

    footer {
        margin-top: 30vh;
    }

    .site1 {
        margin-bottom: 4px;
    }
}

@media (max-width: 1000px) {
    .intro1 {
        flex-direction: column;
        text-align: center;
        padding-left: 120px;
        padding-right: 120px;
    }

    .start1,
    .rauting,
    .back1 {
        display: inline-flex;
    }

    footer {
        margin-top: 15vh;
        text-align: center;
        justify-content: center;
        font-size: 14px;
    }

    .site1 {
        margin-left: 0;
    }
}

@media (max-width: 750px) {
    .header__title1 {
        text-align: center;
        margin-left: 0;
        font-size: 30px;
        line-height: 50px;
    }

    .underhead__title {
        margin-left: 0;
        text-align: center;
        font-size: 20px;
        line-height: 50px;
    }

    .underhead {
        height: 50px;
        margin-top: 50px;
    }

    .rat__stars img {
        max-width: 18px;
    }

    .rat__text {
        margin-right: 10px;
    }

    .count1 {
        margin-right: 5px;
        margin-left: 9px;
    }

    .intro1 {
        padding-left: 40px;
        padding-right: 40px;
    }

    .pol {
        margin-left: 18px;
        margin-right: 18px;
    }

    footer {
        font-size: 11px;
    }

    .site1 {
        font-size: 11px;
    }
}

@media (max-width: 600px) {
    .intro1 {
        padding-left: 0;
        padding-right: 0;
    }
}

@media (max-width: 560px) {

    .content__field {
        font-size: 16px;
    }

    .start1 {
        flex-direction: column;
    }

    .start__btn1 {
        margin-left: auto;
        margin-right: auto;
        margin-top: 20px;
    }
}

@media (max-width: 440px) {
    .header__title1 {
        font-size: 20px;
        line-height: 40px;
    }

    .underhead__title {
        font-size: 15px;
        line-height: 40px;
    }

    .underhead {
        margin-top: 40px;
        height: 40px;
    }

    .intro1 {
        max-width: 95vw;
        margin: 0 auto;
    }

    .field2 {
        width: 247px;
        height: 27px;
        padding: 5px 5px;
        font-size: 11px;
    }

    .start1 {
        margin-top: 13px;
        margin-bottom: 16px;
    }

    .start__btn1 {
        font-size: 12px;
        margin-top: 12px;
        height: 30px;
        width: 85px;
    }

    .start__text1 {
        font-size: 12px;
    }

    .start__icon1 {
        width: 8px;
        height: 8px;
    }

    .rat__text {
        font-size: 10px;
    }

    .rat__stars img {
        max-width: 12px;
    }

    .count1 {
        font-size: 11px;
        margin-top: 3px;
    }

    .smile1 img {
        max-width: 20px;
    }

    .smile1 {
        margin-top: 2px;
    }

    .rauting {
        padding-top: 7px;
        padding-bottom: 7px;
    }

    .back1 {
        margin-top: 17px;
        height: 30px;
        width: 205px;
    }

    .back__text1 {
        font-size: 11px;
    }

    .back__icon1 {
        width: 8px;
        height: 8px;
    }

    .site1 {
        font-size: 11px;
    }
}
.intro__img1 {
    max-width: 500px;
    flex-shrink: 0;
}

.intro__content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    flex-grow: 1;
    width: 100%;
    margin-top: 70px;
}

@media (max-width: 1023px) {

    .intro__content {
        margin-top: 100px;
    }
    .header-panel__logo {
      display: block;
    }
}

.intro__img1 img {
    padding-right: 20px;
    max-width: 100%;
}
@media (max-width: 1000px) {
    .intro__img1 img {
      max-width: 100%;
  }
}


/* additionally */

@media (max-width: 767px) {
    .form__text_left_mobile_hide {
        display: none;
    }

    .txt-a-r {
        text-align: right;
    }
}

@media (min-width: 768px) {
    .form__text_left_dectop_hide {
        display: none;
    }

    .ml__10_desctop {
        margin-left: 10px;
    }
}


@media (min-width: 950px) {
    .form__grade > *:not(:last-child) {
        margin-right: 50px;
    }

    .form__grade-fields > *:not(:last-child) {
        margin-right: 50px;
    }
}

@media (min-width: 768px) and (max-width: 950px) {
    .form__grade > *:not(:last-child) {
        margin-right: 30px;
    }

    .form__grade-fields > *:not(:last-child) {
        margin-right: 30px;
    }
}

.w_40pc {
    width: 40%;
  }

.mr_0 {
    margin-right: 0 !important;
}

/* additional */
@supports (-webkit-touch-callout: none) {
    .select_ios {
        display: none;
    }
}

.align_center {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.btn_subm_margin {
    margin-top: 20px;
}

@media (max-width: 767px) {
    .anketa__container_center {
        width: 80vw;
        /* margin-left: 20vw; */
    }

    .radio__mask_poll {
        width: 1.3rem !important;
        min-width: 1.3rem !important;
        height: 1.3rem;
    }
}

@media (min-width: 768px) {
    .anketa__container_center {
        width: 60vw;
        /* margin-left: 20vw; */
    }
}

/* field table */
.fields-table-wrapper {
    position: relative;
    z-index: 15;
    overflow: auto;
}
@media (max-width: 767px) {
    .fields-table-wrapper {
        max-height: 80vh;
    }
}

.fields-table-wrapper::-webkit-scrollbar {
    width: 0;
    height: 0;
}

.fields-table {
    width: 100%;
    border-collapse: collapse;
}

.fields-table thead{
    position: sticky;
    top: 0;
    z-index: 2;
}

.fields-table:not(:last-child) {
    margin-bottom: 2.8125rem;
}

.fields-table tr {
    background-color: #fff;
    transition: all 0.3s;
}

.fields-table tbody tr {
    border-bottom: 1px solid #d9dfe3;
}

.fields-table tr.selected {
    background-color:  #e6eff5;
}

.fields-table th,
.fields-table td {
    padding: 0.9375rem;
}

.fields-table th {
  position: relative;
  text-align: left;
  background-color: #fff;
}

.fields-table th:before{
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #e6eff5;
}

.fields-table td {
    min-width: 130px;
}

.fields-table__label {
    font-weight: 700;
}

.fields-table__title {
    font-weight: 400;
}
.fields-table__swipe {
    position: absolute;
    bottom: -5px;
    display: none;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 50px;
}

.fields-table__swipe:before {
    content: '';
    width: 100%;
    height: 100%;
    background: url('../img/chevrons.svg') right center no-repeat;
    background-size: 30px;
    transform: scale(-1);
}

.fields-table__swipe:after {
    content: '';
    width: 100%;
    height: 100%;
    background: url('../img/chevrons.svg') right center no-repeat;
    background-size: 30px;
}

.fields-table--scroll {
    cursor: grab;
}

.fields-table--scroll .fields-table__swipe {
    display: flex;
}

.fields-table--scroll th {
    padding-bottom: 40px;
}

/* field table */

/* field select */
.field-select:not(:last-child) {
    margin-bottom: 10px;
}

.field-select.field-select--checked .field-select__select {
    background-color: #E6EFF5;
}

.field-select.field-select--error .field-select__select {
    background-color: #FFE4E4;
}

.field-select.field-select--open:before {
    pointer-events: auto;
    opacity: 0.7;
}

.field-select.field-select--open .field-select__dropdown {
    opacity: 1;
    pointer-events: auto;
}

.field-select:before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    width: 100vw;
    height: 100vh;
    background-color: #333;
    pointer-events: none;
    opacity: 0;
    transition: all 0.3s;
}

.field-select__title {
    font-size: 15px;
    font-weight: 700;
}

.field-select__title:not(:last-child) {
    margin-bottom: 15px;
}

.field-select__select {
    position: relative;
    height: 45px;
    padding: 10px 30px 10px 10px;
    border: 1px solid #D9DFE3;
    background-color: #fff;
    font-size: 15px;
    line-height: 25px;
    vertical-align: middle;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    cursor: pointer;
    transition: all 0.3s;
}

.field-select__select:after {
    content: '';
    position: absolute;
    top: calc(50% - 5px);
    right: 10px;
    width: 10px;
    height: 10px;
    border: 2px solid #333;
    border-top: transparent;
    border-right: transparent;
    transform: rotate(-45deg) translateY(-50%);
}

.field-select__dropdown {
    position: fixed;
    bottom: 10px;
    left: 10px;
    z-index: 101;
    padding: 20px;
    width: calc(100% - 20px);
    max-height: calc(100vh - 20px);
    border-radius: 2px;
    background-color: #fff;
    overflow-y: auto;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s;
}

.field-select__dropdown .check,
.field-select__dropdown .radio {
    padding: 10px 0;
}

.field-select__dropdown .check:not(:last-of-type),
.field-select__dropdown .radio:not(:last-of-type) {
    border-bottom: 1px solid #D9DFE3;
}

.field-select__dropdown .check:last-of-type,
.field-select__dropdown .radio:last-of-type {
    margin-bottom: 10px;
}

.field-select__dropdown .check__label,
.field-select__dropdown .radio__label {
    font-size: 15px;
    font-weight: 400;
}

.field-select__dropdown .check__icn {
    color: #333;
}

.field-select__dropdown .check__inpt:checked ~ .check__mask  {
    background-color: #E6EFF5;
}

.field-select__dropdown-title  {
    width: calc(100% + 40px);
    margin: -20px -20px 20px -20px;
    padding: 20px;
    background-color: #E6EFF5;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.field-select__save {
    width: 100%;
    height: 50px;
    font-size: 15px;
}
/* field select */

/* disabled checkbox */
.check__inpt:disabled + .check__mask {
    background-color: #f2f1f1;
}
.check__mask {
    border: 0.0625rem solid #DED4D4;
    background-color: #fff;
}
.form__img img {
    display: block;
    width: 100%;
}
.form__question__img {
    width: auto;
    height: auto;
    max-height: 100%;
    max-width: 100%;
    margin: 0 auto;
    object-fit: contain;
}
/* Question image START */
.radio__inpt:checked + .radio__mask + .radio__label + .form__img:after {
    opacity: 1;
}
.question__img {
    width: 355px;
    height: 250px;
    display: flex;
    /* align-content: center; */
    align-items: center;
    justify-content: center;
    cursor: zoom-in;
}
.form__question__img {
  width: auto;
  height : auto;
  max-height: 100%;
  max-width: 100%;
  margin: 0 auto;
  object-fit: contain;
}
body.lb-disable-scrolling {
  overflow: hidden;
}

.lightboxOverlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
  background-color: black;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
  opacity: 0.8;
  display: none;
}

.lightbox {
  position: absolute;
  left: 0;
  width: 100%;
  z-index: 10000;
  text-align: center;
  line-height: 0;
  font-weight: normal;
  outline: none;
}

.lightbox .lb-image {
  display: block;
  height: auto;
  max-width: inherit;
  max-height: none;
  border-radius: 3px;

  /* Image border */
  border: 4px solid white;
}

.lightbox a img {
  border: none;
}

.lb-outerContainer {
  position: relative;
  *zoom: 1;
  width: 250px;
  height: 250px;
  margin: 0 auto;
  border-radius: 4px;

  /* Background color behind image.
     This is visible during transitions. */
  background-color: white;
}

.lb-outerContainer:after {
  content: "";
  display: table;
  clear: both;
}

.lb-loader {
  position: absolute;
  top: 43%;
  left: 0;
  height: 25%;
  width: 100%;
  text-align: center;
  line-height: 0;
}

.lb-cancel {
  display: block;
  width: 32px;
  height: 32px;
  margin: 0 auto;
  background: url(../img/loading.gif) no-repeat;
}

.lb-nav {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 10;
}

.lb-container > .nav {
  left: 0;
}

.lb-nav a {
  outline: none;
  background-image: url('data:image/gif;base64,R0lGODlhAQABAPAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==');
}

.lb-prev, .lb-next {
  height: 100%;
  cursor: pointer;
  display: block;
}

.lb-nav a.lb-prev {
  width: 34%;
  left: 0;
  float: left;
  background: url(../img/prev.png) left 48% no-repeat;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  -webkit-transition: opacity 0.6s;
  -moz-transition: opacity 0.6s;
  -o-transition: opacity 0.6s;
  transition: opacity 0.6s;
}

.lb-nav a.lb-prev:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}

.lb-nav a.lb-next {
  width: 64%;
  right: 0;
  float: right;
  background: url(../img/next.png) right 48% no-repeat;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  -webkit-transition: opacity 0.6s;
  -moz-transition: opacity 0.6s;
  -o-transition: opacity 0.6s;
  transition: opacity 0.6s;
}

.lb-nav a.lb-next:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}

.lb-dataContainer {
  margin: 0 auto;
  padding-top: 5px;
  *zoom: 1;
  width: 100%;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}

.lb-dataContainer:after {
  content: "";
  display: table;
  clear: both;
}

.lb-data {
  padding: 0 4px;
  color: #ccc;
}

.lb-data .lb-details {
  width: 85%;
  float: left;
  text-align: left;
  line-height: 1.1em;
}

.lb-data .lb-caption {
  font-size: 13px;
  font-weight: bold;
  line-height: 1em;
}

.lb-data .lb-caption a {
  color: #4ae;
}

.lb-data .lb-number {
  display: block;
  clear: left;
  padding-bottom: 1em;
  font-size: 12px;
  color: #999999;
}

.lb-data .lb-close {
  display: block;
  float: right;
  width: 30px;
  height: 30px;
  background: url(../img/close.png) top right no-repeat;
  text-align: right;
  outline: none;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
  opacity: 0.7;
  -webkit-transition: opacity 0.2s;
  -moz-transition: opacity 0.2s;
  -o-transition: opacity 0.2s;
  transition: opacity 0.2s;
}

.lb-data .lb-close:hover {
  cursor: pointer;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}
.image__form__cols {
    display: flex;
    justify-content: space-around;
}
.image__select {
    max-width: 950px;
}
/* Question image END*/

/*************/
/* RVM start */
/*************/

/* RVM common start */
.rvm-content * {
  font-family: "IBM Plex Sans", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}
.rvm-content *, .rvm-content *::before, .rvm-content *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.rvm-container {
  padding-left: calc((100vw - 1440px) / 2);
  padding-right: calc((100vw - 1440px) / 2);
}
.rvm-main {
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 70px;
}
.rvm-button {
  min-width: 140px;
  cursor: pointer;
  transition: .2s;
  padding: 11px 25px;
  background-color: #FFDD00;
  color: black;
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.rvm-button:hover {
  filter: brightness(110%);
}
.rvm-button-icon svg {
  min-width: 18px;
  max-width: 18px;
  min-height: 18px;
  max-height: 18px;
}
.rvm-button-dense {
    min-width: unset !important;
}
@media (max-width: 1800px) {
  .rvm-container {
    padding-left: 160px;
    padding-right: 160px;
  }
}
@media (max-width: 1440px) {
  .rvm-container {
    padding-left: 120px;
    padding-right: 120px;
  }
  .rvm-main {
    gap: 70px;
  }
  .rvm-button {
    min-width: 9.72vw; /* 140px */
    padding: 0.76vw 1.74vw; /* 11px 25px */
    font-size: 1.11vw; /* 16px */
    gap: 1.39vw; /* 20px */
  }
  .rvm-button-icon svg {
    min-width: 1.25vw; /* 18px */
    max-width: 1.25vw;
    min-height: 1.25vw;
    max-height: 1.25vw;
  }
}
@media (max-width: 1400px) {
  .rvm-container {
    padding-left: 80px;
    padding-right: 80px;
  }
  .rvm-main {
    gap: 40px;
  }
  .rvm-button {
    min-width: 100px;
    padding: 10px;
    font-size: 16px;
  }
}
@media (max-width: 1300px) {
  .rvm-container {
    padding-left: 5.56vw;  /* 80px */
    padding-right: 5.56vw; /* 80px */
  }
  .rvm-main {
    gap: 2.78vw; /* 40px */
  }
}
@media (max-width: 700px) {
  .rvm-container {
    padding-left: 10px;
    padding-right: 10px;
  }
  .rvm-main {
    margin-top: 0;
    gap: 50px;
  }
  .rvm-button-icon svg {
    min-width: 12px;
    max-width: 12px;
    min-height: 12px;
    max-height: 12px;
  }
}
/* RVM common end */

/* RVM header start */
.rvm-header {
  height: 104px;
  display: flex;
  flex-direction: column;
}
.rvm-header-body {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.rvm-header-logo-container {
  display: flex;
  align-items: center;
  gap: 35px;
}
.rvm-header-logo {
  color: black;
  font-family: "Roboto", sans-serif;
  font-weight: 900;
  font-size: 50px;
  line-height: 125%;
}
.rvm-header-logo-description {
  opacity: 0.5;
  font-weight: 500;
  font-size: 16px;
  line-height: 120%;
}

.rvm-header-action-container {
  display: flex;
  align-items: center;
  gap: 60px;
}
.rvm-header-action-description {
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
}
.rvm-header-action-button {
  cursor: pointer;
  transition: .2s;
  padding: 11px 25px;
  background-color: #FFDD00;
  color: black;
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
}
.rvm-header-action-button:hover {
  filter: brightness(110%);
}

.rvm-header-mobile-description {
  display: none;
}

@media (max-width: 1300px) {
  .rvm-header {
    height: 7.22vw; /* 104px */
  }

  .rvm-header-logo-container {
    gap: 2.43vw; /* 35px */
  }
  .rvm-header-logo {
    font-size: 3.47vw; /* 50px */
  }
  .rvm-header-logo-description {
    font-size: 1.11vw; /* 16px */
  }

  .rvm-header-action-container {
    gap: 4.17vw; /* 60px */
  }
  .rvm-header-action-description {
    font-size: 1.11vw; /* 16px */
  }
  .rvm-header-action-button {
    padding: 0.76vw 1.74vw; /* 11px 25px */
    font-size: 1.11vw; /* 16px */
  }
}
@media (max-width: 700px) {
  .rvm-header {
    height: auto;
    padding-top: 11px;
    padding-bottom: 19px;
    gap: 27px;
  }

  .rvm-header-logo-container {
    gap: 21px;
  }
  .rvm-header-logo {
    font-size: 32px;
    line-height: 125%;
  }
  .rvm-header-logo-description {
    font-size: 10px;
  }

  .rvm-header-action-description {
    display: none;
  }
  .rvm-header-action-button {
    padding: 10px;
    font-size: 16px;
  }

  .rvm-header-mobile-description {
    display: flex;
    font-weight: 400;
    font-size: 13px;
    line-height: 130%;
  }
}
/* RVM header end */

/* RVM header bottom line start */
.rvm-header-bottom-line {
  width: 100%;
  height: 37px;
  background-color: #FFDD00;
}

@media (max-width: 1300px) {
  .rvm-header-bottom-line {
    height: 2.57vw;
  }
}
@media (max-width: 700px) {
  .rvm-header-bottom-line {
    height: 37px;
  }
}
/* RVM header bottom line end */

/* RVM advantages section start */
.advantages-section {
  display: flex;
  gap: 30px;
}

.advantages-section-main {
  flex-grow: 1;
  min-height: 100%;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.advantages-section-main:before {
  z-index: 1;
  content: "";
  top: 0;
  left: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #0000004A;
}
.advantages-section-main-image {
  z-index: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.advantages-section-main-title {
  z-index: 1;
  padding: 38px 35px 38px 33px;
  left: 0;
  bottom: 0;
  position: absolute;
  color: white;
  font-weight: 400;
  font-size: 34px;
  line-height: 130%;
}

.advantages-section-items {
  min-width: 330px;
  max-width: 330px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.advantages-section-item {
  min-height: 173px;
  max-height: 173px;
  overflow: hidden;
  position: relative;
  padding: 18px 21px 18px 18px;
  border: 3px solid #FFDD00;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.advantages-section-item-background-image {
  right: -22px;
  bottom: -27px;
  position: absolute;
  opacity: 10%;
  min-width: 162px;
  max-width: 162px;
  min-height: 162px;
  max-height: 162px;
}
.advantages-section-item-header {
  display: flex;
  align-items: center;
  gap: 10px;
}
.advantages-section-item-icon {
  min-width: 24px;
  max-width: 24px;
  min-height: 24px;
  max-height: 24px;
}
.advantages-section-item-title {
  font-weight: 600;
  font-size: 18px;
  line-height: 100%;
}
.advantages-section-item-description {
  font-weight: 400;
  font-size: 13px;
  line-height: 130%;
}

@media (max-width: 1300px) {
  .advantages-section {
    gap: 2.08vw; /* 30px */
  }

  .advantages-section-main-title {
    padding: 2.64vw 2.43vw 2.64vw 2.29vw; /* 38px 35px 38px 33px */
    font-size: 2.36vw; /* 34px */
  }

  .advantages-section-items {
    min-width: 22.92vw; /* 330px */
    max-width: 22.92vw; /* 330px */
    gap: 0.69vw; /* 10px */
  }
  .advantages-section-item {
    min-height: 12.01vw; /* 173px */
    max-height: 12.01vw; /* 173px */
    padding: 1.25vw 1.46vw 1.25vw 1.25vw; /* 18px 21px 18px 18px */
    border: 0.21vw solid #FFDD00; /* 3px */
    gap: 0.69vw; /* 10px */
  }
  .advantages-section-item-background-image {
    right: -1.53vw; /* 22px */
    bottom: -1.88vw; /* 27px */
    min-width: 11.25vw; /* 162px */
    max-width: 11.25vw;
    min-height: 11.25vw;
    max-height: 11.25vw;
  }

  .advantages-section-item-header {
    gap: 0.69vw; /* 10px */
  }
  .advantages-section-item-icon {
    min-width: 1.67vw; /* 24px */
    max-width: 1.67vw;
    min-height: 1.67vw;
    max-height: 1.67vw;
  }
  .advantages-section-item-title {
    font-size: 1.25vw; /* 18px */
  }
  .advantages-section-item-description {
    font-size: 0.90vw; /* 13px */
  }
}
@media (max-width: 700px) {
  .advantages-section {
    padding: 0;
    flex-direction: column;
    gap: 30px;
  }
  .advantages-section-main {
    width: 100%;
    min-height: 288px;
    max-height: 288px;
  }
  .advantages-section-main-title {
    max-width: 85%;
    padding: 64px 11px 38px 10px;
    font-size: 24px;
    line-height: 130%;
  }

  .advantages-section-items {
    min-width: unset;
    max-width: unset;
    padding-left: 10px;
    padding-right: 10px;
    flex-direction: row;
    gap: 10px;
  }

  .advantages-section-item {
    flex: 1;
    min-height: 120px;
    max-height: unset;
    border-width: 3px;
    padding: 10px;
    gap: 10px;
  }
  .advantages-section-item-background-image {
    right: -22px;
    bottom: -85px;
    opacity: 10%;
    min-width: 162px;
    max-width: 162px;
    min-height: 162px;
    max-height: 162px;
  }
  .advantages-section-item-header {
    gap: 10px;
  }
  .advantages-section-item-icon {
    min-width: 24px;
    max-width: 24px;
    min-height: 24px;
    max-height: 24px;
  }
  .advantages-section-item-title {
    font-size: 16px;
    line-height: 100%;
  }
  .advantages-section-item-description {
    font-size: 10px;
    line-height: 130%;
  }
}
@media (max-width: 620px) {
  .advantages-section-items {
    flex-direction: column;
    gap: 5px;
  }
  .advantages-section-item {
    min-height: 120px;
    max-height: 120px;
    border-width: 3px;
  }
}
/* RVM advantages section end */

/* RVM about section start */
.about-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-section-title {
  font-weight: 700;
  font-size: 18px;
  line-height: 160%;
}

.about-section-items {
  display: flex;
  gap: 30px;
}
.about-section-item {
  flex: 1;
  overflow: hidden;
  border-radius: 2px;
  background-color: white;
  box-shadow: 8px 7px 18.9px 0 #00000014;
}
.about-section-item-image-container {
  overflow: hidden;
  min-width: 100%;
  max-width: 100%;
  min-height: 310px;
  max-height: 310px;
  background-color: #D9D9D9;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-section-item-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.about-section-item-content {
  padding: 20px 20px 30px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.about-section-item-title {
  font-weight: 500;
  font-size: 18px;
  line-height: 140%;
}
.about-section-item-description {
  font-weight: 400;
  font-size: 13px;
  line-height: 130%;
}

@media (max-width: 1300px) {
  .about-section {
    gap: 1.39vw; /* 20px */
  }

  .about-section-title {
    font-size: 1.25vw; /* 18px */
  }

  .about-section-items {
    gap: 2.08vw; /* 30px */
  }
  .about-section-item {
    border-radius: 0.14vw; /* 2px */
    box-shadow: 0.56vw 0.49vw 1.31vw 0 #00000014; /* 8px 7px 18.9px */
  }
  .about-section-item-image-container {
    min-height: 21.53vw; /* 310px */
    max-height: 21.53vw;
  }
  .about-section-item-content {
    padding: 1.39vw 1.39vw 2.08vw; /* 20px 20px 30px */
    gap: 0.69vw; /* 10px */
  }
  .about-section-item-title {
    font-size: 1.25vw; /* 18px */
  }
  .about-section-item-description {
    font-size: 0.90vw; /* 13px */
  }
}
@media (max-width: 700px) {
  .about-section {
    gap: 20px;
  }

  .about-section-title {
    font-size: 18px;
    line-height: 160%;
  }

  .about-section-items {
    gap: 20px;
  }
  .about-section-item {
    border-radius: 2px;
    box-shadow: 8px 7px 18.9px 0 #00000014;
  }
  .about-section-item-image-container {
    min-height: 213px;
    max-height: 213px;
  }
  .about-section-item-content {
    padding: 20px;
    gap: 10px;
  }
  .about-section-item-title {
    font-size: 16px;
    line-height: 140%;
  }
  .about-section-item-description {
    font-size: 10px;
    line-height: 130%;
  }
}
@media (max-width: 620px) {
  .about-section-items {
    flex-direction: column;
  }
}
/* RVM about section end */

/* RVM opinion section start */
.opinion-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.opinion-section-title {
  font-weight: 700;
  font-size: 18px;
  line-height: 120%;
}
.opinion-section-description {
  text-align: center;
  font-weight: 400;
  font-size: 13px;
  line-height: 130%;
}

.opinion-section-items {
  margin-top: 5px;
  display: flex;
  gap: 20px;
}
.opinion-section-item {
  overflow: hidden;
  position: relative;
  flex: 1;
  padding: 16px 16px 106px;
  border-radius: 2px;
  border: 3px solid #FFDD00;
  background-color: white;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.opinion-section-item-index {
  right: 18px;
  bottom: 24px;
  position: absolute;
  opacity: 20%;
  font-weight: 600;
  font-size: 68.7px;
  line-height: 100%;
}
.opinion-section-item-title {
  max-width: 88%;
  font-weight: 600;
  font-size: 18px;
  line-height: 130%;
}
.opinion-section-item-description {
  font-weight: 400;
  font-size: 13px;
  line-height: 130%;
}

@media (max-width: 1300px) {
  .opinion-section {
    gap: 1.39vw; /* 20px */
  }

  .opinion-section-title {
    font-size: 1.25vw; /* 18px */
  }
  .opinion-section-description {
    font-size: 0.90vw; /* 13px */
  }

  .opinion-section-items {
    margin-top: 0.35vw; /* 5px */
    gap: 1.39vw; /* 20px */
  }
  .opinion-section-item {
    padding: 1.11vw 1.11vw 7.36vw; /* 16px 16px 106px */
    border-radius: 0.14vw; /* 2px */
    border: 0.21vw solid #FFDD00; /* 3px */
    gap: 0.69vw; /* 10px */
  }
  .opinion-section-item-index {
    right: 1.25vw; /* 18px */
    bottom: 1.67vw; /* 24px */
    font-size: 4.77vw; /* 68.7px */
  }
  .opinion-section-item-title {
    font-size: 1.25vw; /* 18px */
  }
  .opinion-section-item-description {
    font-size: 0.90vw; /* 13px */
  }
}
@media (max-width: 700px) {
  .opinion-section {
    gap: 20px;
  }

  .opinion-section-title {
    font-size: 18px;
  }
  .opinion-section-description {
    font-size: 10px;
  }

  .opinion-section-items {
    display: grid;
    grid-template-rows: repeat(4, 1fr);
    gap: 10px;
  }
  .opinion-section-item {
    padding: 20px 20px 13.5px;
    border-radius: 2px;
    border-width: 3px;
    gap: 10px;
  }
  .opinion-section-item-index {
    top: 0;
    right: 20px;
    height: 100%;
    font-size: 68.7px;
    line-height: 78%;
    display: flex;
    align-items: center;
  }
  .opinion-section-item-title {
    max-width: 70%;
    font-size: 16px;
  }
  .opinion-section-item-description {
    max-width: 73%;
    font-size: 10px;
  }
  .opinion-section-item-description br {
    display: none;
  }
}
/* RVM opinion section end */

/* RVM future section start */
.future-section {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.future-section-title {
  position: relative;
  font-weight: 700;
  font-size: 18px;
  line-height: 120%;
}
.future-section-title:after {
  content: "";
  left: 0;
  bottom: -5px;
  position: absolute;
  width: 100%;
  min-height: 1px;
  max-height: 1px;
  background-color: #0000001A;
}
.future-section-body {
  display: flex;
  gap: 20px;
}
.future-section-body-item {
  flex: 1;
}

.future-section-map {
  width: 100%;
}
.future-section-map-image {
  width: 100%;
  object-fit: contain;
}

.future-section-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.future-section-content-header {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.future-section-content-header-item {
  font-weight: 500;
  font-size: 20px;
  line-height: 130%;
}
.future-section-content-header-item strong {
  font-weight: 700;
}
.future-section-content-footer {
  padding-bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.future-section-content-footer-title {
  font-weight: 600;
  font-size: 18px;
  line-height: 130%;
}
.future-section-content-footer-item {
  font-weight: 500;
  font-size: 14px;
  line-height: 140%;
  display: flex;
  gap: 10px;
}
.future-section-content-footer-item span {
  align-self: center;
}
.future-section-content-footer-item strong {
  font-weight: 700;
}
.future-section-content-footer-item:before {
  content: "";
  min-width: 24px;
  max-width: 24px;
  min-height: 24px;
  max-height: 24px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9 22H15C20 22 22 20 22 15V9C22 4 20 2 15 2H9C4 2 2 4 2 9V15C2 20 4 22 9 22Z' stroke='black' stroke-opacity='0.3' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M7.75 11.9999L10.58 14.8299L16.25 9.16992' stroke='%23FFDD00' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
}

@media (max-width: 1300px) {
  .future-section {
    gap: 1.74vw; /* 25px */
  }
  .future-section-title {
    font-size: 1.25vw; /* 18px */
  }
  .future-section-title:after {
    bottom: -0.35vw; /* 5px */
    min-height: 0.07vw; /* 1px */
    max-height: 0.07vw;
  }
  .future-section-body {
    gap: 1.39vw; /* 20px */
  }

  .future-section-content-header {
    gap: 0.69vw; /* 10px */
  }
  .future-section-content-header-item {
    font-size: 1.39vw; /* 20px */
  }

  .future-section-content-footer {
    padding-bottom: 2.78vw; /* 40px */
    gap: 0.69vw; /* 10px */
  }
  .future-section-content-footer-title {
    font-size: 1.25vw; /* 18px */
  }
  .future-section-content-footer-item {
    font-size: 0.97vw; /* 14px */
    gap: 0.69vw; /* 10px */
  }
  .future-section-content-footer-item:before {
    min-width: 1.67vw; /* 24px */
    max-width: 1.67vw;
    min-height: 1.67vw;
    max-height: 1.67vw;
   }
}
@media (max-width: 700px) {
  .future-section {
    margin-top: 100px;
    gap: 25px;
  }

  .future-section-title {
    font-size: 18px;
  }
  .future-section-title:after {
    left: 0;
    bottom: -5px;
    min-height: 1px;
    max-height: 1px;
  }
  .future-section-body {
    gap: 20px;
  }

  .future-section-map {
    min-height: 334px;
  }
  .future-section-map-image {
    height: 100%;
  }

  .future-section-content {
    gap: 15px;
  }
  .future-section-content-header {
    gap: 10px;
  }
  .future-section-content-header-item {
    font-size: 13px;
  }
  .future-section-content-footer {
    padding-bottom: 0;
    gap: 10px;
  }
  .future-section-content-footer-title {
    font-weight: 500;
    font-size: 13px;
  }
  .future-section-content-footer-item {
    font-size: 10px;
    gap: 10px;
  }
  .future-section-content-footer-item:before {
    min-width: 18px;
    max-width: 18px;
    min-height: 18px;
    max-height: 18px;
  }
}
@media (max-width: 620px) {
  .future-section-body {
    flex-direction: column;
  }
  .future-section-content-header-item {
    font-size: 16px;
  }
  .future-section-content-footer {
    gap: 10px;
  }
  .future-section-content-footer-title {
    font-size: 16px;
  }
  .future-section-content-footer-item {
    font-size: 10px;
  }
  .future-section-content-footer-item:before {
    min-width: 24px;
    max-width: 24px;
    min-height: 24px;
    max-height: 24px;
  }
}
/* RVM future section start */

/* RVM together section start */
.together-section {
  padding-top: 27px;
  padding-bottom: 25px;
  background-color: #FFDD00;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.together-section-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.together-section-content-title {
  font-weight: 600;
  font-size: 18px;
  line-height: 100%;
}
.together-section-content-description {
  font-weight: 400;
  font-size: 13px;
  line-height: 130%;
}

.together-section-button {
  cursor: pointer;
  transition: .2s;
  padding: 10px 25px;
  border: none;
  background-color: white;
  color: black;
  font-weight: 500;
  font-size: 16px;
  line-height: 130%;
}
.together-section-button:hover {
  filter: brightness(110%);
}

@media (max-width: 1300px) {
  .together-section {
    padding-top: 1.88vw;    /* 27px */
    padding-bottom: 1.74vw; /* 25px */
    gap: 2.08vw; /* 30px */
  }

  .together-section-content {
    gap: 0.83vw; /* 12px */
  }
  .together-section-content-title {
    font-size: 1.25vw; /* 18px */
  }
  .together-section-content-description {
    font-size: 0.90vw; /* 13px */
  }

  .together-section-button {
    padding: 0.69vw 1.74vw; /* 10px 25px */
    font-size: 1.11vw; /* 16px */
  }
}
@media (max-width: 700px) {
  .together-section {
    padding-top: 27px;
    padding-bottom: 27px;
    flex-direction: column;
    gap: 23px;
  }

  .together-section-content {
    width: 100%;
    gap: 12px;
  }
  .together-section-content-title {
    font-weight: 500;
    font-size: 16px;
  }
  .together-section-content-description {
    font-size: 10px;
  }

  .together-section-button {
    width: 100%;
    padding: 10px 25px;
    font-size: 16px;
  }
}
/* RVM together section end */

/* RVM footer start */
.rvm-footer {
  padding-top: 47px;
  padding-bottom: 46px;
  background-color: black;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.rvm-footer-content {
  display: flex;
  align-items: center;
  gap: 95px;
}
.rvm-footer-logo {
  width: 170px;
}
.rvm-footer-content-items {
  padding-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 19px;
}
.rvm-footer-content-item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.rvm-footer-content-item-icon {
  min-width: 24px;
  max-width: 24px;
  min-height: 24px;
  max-height: 24px;
}
.rvm-footer-content-item-title {
  color: white;
  text-align: left;
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
}

.rvm-footer-description {
  display: flex;
  flex-direction: column;
  align-items: end;
  gap: 18px;
}
.rvm-footer-description-item {
  text-align: right;
  color: white;
  font-weight: 400;
  font-size: 13px;
  line-height: 130%;
}

@media (max-width: 1300px) {
  .rvm-footer {
    padding-top: 3.26vw;    /* 47px */
    padding-bottom: 3.19vw; /* 46px */
  }

  .rvm-footer-content {
    gap: 6.60vw; /* 95px */
  }
  .rvm-footer-logo {
    width: 11.81vw; /* 170px */
  }
  .rvm-footer-content-items {
    padding-top: 1.25vw; /* 18px */
    gap: 1.32vw; /* 19px */
  }
  .rvm-footer-content-item {
    gap: 0.69vw; /* 10px */
  }
  .rvm-footer-content-item-icon {
    min-width: 1.67vw; /* 24px */
    max-width: 1.67vw;
    min-height: 1.67vw;
    max-height: 1.67vw;
  }
  .rvm-footer-content-item-title {
    font-size: 1.11vw; /* 16px */
  }

  .rvm-footer-description {
    gap: 1.25vw; /* 18px */
  }
  .rvm-footer-description-item {
    font-size: 0.90vw; /* 13px */
  }
}
@media (max-width: 700px) {
  .rvm-footer {
    padding-top: 43px;
    padding-bottom: 25px;
    flex-direction: column;
    gap: 66px;
  }

  .rvm-footer-content {
    width: 100%;
    gap: 36px;
  }
  .rvm-footer-logo {
    min-width: 170px;
  }
  .rvm-footer-content-items {
    padding-top: 14px;
    gap: 10px;
  }
  .rvm-footer-content-item {
    gap: 10px;
  }
  .rvm-footer-content-item-icon {
    min-width: 24px;
    max-width: 24px;
    min-height: 24px;
    max-height: 24px;
  }
  .rvm-footer-content-item-title {
    font-size: 13px;
    line-height: 130%;
  }

  .rvm-footer-description {
    gap: 48px;
  }
  .rvm-footer-description-item {
    text-align: left;
    font-size: 13px;
  }
  .rvm-footer-description-item br {
    display: none;
  }
  .rvm-footer-copyright {
    align-self: center;
    text-align: center;
  }
}
/* RVM footer end */

/*************/
/*  RVM end  */
/*************/

/*********************/
/* RVM surveys start */
/*********************/

/* RVM surveys common start */
.rvm-surveys-content {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.rvm-surveys-main {
  flex: 1;
  margin-top: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
/* RVM surveys common end */


/* RVM surveys header start */
.rvm-surveys-header {
  height: 104px;
  display: flex;
  flex-direction: column;
}
.rvm-surveys-header-body {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.rvm-surveys-header-logo-container {
  display: flex;
  align-items: center;
  gap: 35px;
}
.rvm-surveys-header-logo {
  color: black;
  font-family: "Roboto", sans-serif;
  font-weight: 900;
  font-size: 50px;
  line-height: 125%;
}
.rvm-surveys-header-logo-description {
  opacity: 0.5;
  font-weight: 500;
  font-size: 16px;
  line-height: 120%;
}

.rvm-surveys-header-description {
  max-width: 583px;
  text-align: right;
  font-weight: 400;
  font-size: 13px;
  line-height: 130%;
}

@media (max-width: 1300px) {
  .rvm-surveys-header {
    height: 7.22vw; /* 104px */
  }

  .rvm-surveys-header-logo-container {
    gap: 2.43vw; /* 35px */
  }
  .rvm-surveys-header-logo {
    font-size: 3.47vw; /* 50px */
  }
  .rvm-surveys-header-logo-description {
    font-size: 1.11vw; /* 16px */
  }

  .rvm-surveys-header-description {
    max-width: 40.49vw; /* 583px */
    font-size: 0.90vw; /* 13px */
  }
}
@media (max-width: 1000px) {
  .rvm-surveys-header {
    height: auto;
    padding-top: 11px;
    padding-bottom: 19px;
    gap: 27px;
  }

  .rvm-surveys-header-body {
    flex-wrap: wrap;
    gap: 20px;
  }

  .rvm-surveys-header-logo-container {
    width: 100%;
    justify-content: space-between;
    gap: 21px;
  }
  .rvm-surveys-header-logo {
    font-size: 32px;
    line-height: 125%;
  }
  .rvm-surveys-header-logo-description {
    text-align: right;
    font-size: 10px;
  }

  .rvm-surveys-header-description {
    width: 100%;
    max-width: unset;
    text-align: left;
    font-size: 13px;
  }
}
/* RVM surveys header end */

/* RVM surveys section start */
.surveys-section {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: 47.85% auto;
}

.surveys-section-header {
  overflow: hidden;
  position: relative;
  padding-top: 30px;
  padding-right: 25px;
  background-color: #FFFADD;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.surveys-section-header-image {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  position: absolute;
  object-fit: cover;
  object-position: center center;
}
.surveys-section-header-title {
  position: relative;
  max-width: 79%;
  font-weight: 600;
  font-size: 34px;
  line-height: 100%;
}
.surveys-section-header-description {
  position: relative;
  max-width: 79%;
  font-weight: 600;
  font-size: 18px;
  line-height: 100%;
}

.surveys-section-content {
  position: relative;
  padding-left: 40px;
  display: flex;
  flex-direction: column;
}

.surveys-section-start-container {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 30px;
}
.surveys-section-start-button-container {
  display: flex;
  align-items: center;
  gap: 12px;
}
.surveys-section-start-button {
  cursor: pointer;
  transition: .2s;
  width: 217px;
  padding: 15px 40px;
  background-color: #FFDD00;
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
}
.surveys-section-start-button:hover {
  filter: brightness(110%);
}
.surveys-section-start-hint {
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
}
.surveys-section-start-time-hint {
  font-weight: 400;
  font-size: 13px;
  line-height: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
}
.surveys-section-start-time-hint:before {
  content: "";
  min-width: 20px;
  max-width: 20px;
  min-height: 21px;
  max-height: 21px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='21' viewBox='0 0 20 21' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath opacity='0.3' d='M13.4064 13.6408L10.0364 11.6408V7.11077C10.0364 6.71077 9.71638 6.39077 9.31638 6.39077H9.25638C8.85638 6.39077 8.53638 6.71077 8.53638 7.11077V11.8308C8.53638 12.1808 8.71638 12.5108 9.02638 12.6908L12.6764 14.8808C13.0164 15.0808 13.4564 14.9808 13.6564 14.6408C13.8664 14.2908 13.7564 13.8408 13.4064 13.6408ZM18.7164 3.40077L15.6364 0.840765C15.2164 0.490765 14.5864 0.540765 14.2264 0.970765C13.8764 1.39077 13.9364 2.02077 14.3564 2.38077L17.4264 4.94077C17.8464 5.29077 18.4764 5.24077 18.8364 4.81077C19.1964 4.39077 19.1364 3.76077 18.7164 3.40077ZM1.63638 4.94077L4.70638 2.38077C5.13638 2.02077 5.19638 1.39077 4.83638 0.970765C4.48638 0.540765 3.85638 0.490765 3.43638 0.840765L0.356383 3.40077C-0.0636173 3.76077 -0.123617 4.39077 0.236383 4.81077C0.586383 5.24077 1.21638 5.29077 1.63638 4.94077ZM9.53638 2.39077C4.56638 2.39077 0.536383 6.42077 0.536383 11.3908C0.536383 16.3608 4.56638 20.3908 9.53638 20.3908C14.5064 20.3908 18.5364 16.3608 18.5364 11.3908C18.5364 6.42077 14.5064 2.39077 9.53638 2.39077ZM9.53638 18.3908C5.67638 18.3908 2.53638 15.2508 2.53638 11.3908C2.53638 7.53077 5.67638 4.39077 9.53638 4.39077C13.3964 4.39077 16.5364 7.53077 16.5364 11.3908C16.5364 15.2508 13.3964 18.3908 9.53638 18.3908Z' fill='black'/%3E%3C/svg%3E%0A");
}

.surveys-section-footer {
  width: 100%;
  left: 0;
  bottom: 0;
  position: absolute;
  padding-left: 40px;
  padding-top: 21px;
  padding-bottom: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.surveys-section-footer-title {
  color: black;
  font-weight: 900;
  font-size: 30px;
  line-height: 125%;
}
.surveys-section-footer-copyright {
  font-weight: 400;
  font-size: 13px;
  line-height: 100%;
}

@media (max-width: 1300px) {
  .surveys-section-header {
    padding-top: 2.08vw; /* 30px */
    padding-right: 1.74vw; /* 25px */
    gap: 1.94vw; /* 28px */
  }
  .surveys-section-header-title {
    font-size: 2.36vw; /* 34px */
  }
  .surveys-section-header-description {
    font-size: 1.25vw; /* 18px */
  }

  .surveys-section-content {
    padding-left: 2.78vw; /* 40px */
  }

  .surveys-section-start-container {
    gap: 2.08vw; /* 30px */
  }
  .surveys-section-start-button-container {
    gap: 0.83vw; /* 12px */
  }
  .surveys-section-start-button {
    width: 15.07vw;          /* 217px */
    padding: 1.04vw 2.78vw;  /* 15px 40px */
    font-size: 1.11vw;       /* 16px */
  }
  .surveys-section-start-hint {
    font-size: 1.11vw; /* 16px */
  }
  .surveys-section-start-time-hint {
    font-size: 0.90vw; /* 13px */
    gap: 1.11vw; /* 16px */
  }

  .surveys-section-start-time-hint:before {
    min-width: 1.39vw; /* 20px */
    max-width: 1.39vw;
    min-height: 1.46vw; /* 21px */
    max-height: 1.46vw;
  }

  .surveys-section-footer {
    padding-left: 2.78vw; /* 40px */
    padding-top: 1.46vw; /* 21px */
    padding-bottom: 1.94vw; /* 28px */
  }
  .surveys-section-footer-title {
    font-size: 2.08vw; /* 30px */
  }
  .surveys-section-footer-copyright {
    font-size: 0.90vw; /* 13px */
  }
}
@media (max-width: 1000px) {
  .surveys-section {
    display: flex;
    flex-direction: column;
  }

  .surveys-section-header {
    min-height: 190px;
    padding-top: 11px;
    padding-bottom: 11px;
    align-items: center;
    justify-content: center;
    gap: 28px;
  }
  .surveys-section-header-title {
    max-width: unset;
    font-size: 22px;
  }
  .surveys-section-header-description {
    max-width: unset;
    font-size: 16px;
  }

  .surveys-section-content {
    flex: 1;
    padding-top: 46px;
    gap: 180px;
  }

  .surveys-section-start-container {
    align-items: center;
    justify-content: start;
    gap: 30px;
  }
  .surveys-section-start-button-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .surveys-section-start-button {
    width: 217px;
    padding: 15px 40px;
    font-size: 16px;
  }
  .surveys-section-start-hint {
    font-size: 16px;
  }
  .surveys-section-start-hint br {
    display: none;
  }
  .surveys-section-start-time-hint {
    font-size: 13px;
    gap: 16px;
  }
  .surveys-section-start-time-hint:before {
    min-width: 20px;
    max-width: 20px;
    min-height: 21px;
    max-height: 21px;
  }

  .surveys-section-footer {
    position: relative;
    padding-top: 27px;
    padding-bottom: 25px;
  }
  .surveys-section-footer-title {
    font-size: 30px;
  }
  .surveys-section-footer-copyright {
    font-size: 13px;
  }
}
@media (max-width: 500px) {
  .surveys-section-header {
    min-height: 226px;
    align-items: start;
    justify-content: start;
  }
}
/* RVM surveys section end */

/*********************/
/* RVM surveys end */
/*********************/

/*********************/
/* RVM survey start  */
/*********************/
.survey-progress-container, .survey-container {
  max-width: 90%;
}
.survey-container {
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.survey-container .form__brdr:last-child label {
  padding-bottom: 20px;
}
.survey-container label {
  padding-top: 20px;
}
.survey-container .radio__mask {
  margin-right: 10px;
}

.survey-container .checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.survey-form-footer {
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
  gap: 10px;
}
@media (max-width: 1080px) {
  .survey-progress-container, .survey-container {
    width: 100%;
    max-width: 100%;
    padding-left: 5vw;
    padding-right: 5vw;
  }
}
@media (max-width: 700px) {
  .survey-progress-container, .survey-container {
    padding-left: 10px;
    padding-right: 10px;
  }
}
/*********************/
/*  RVM survey end   */
/*********************/
