@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

html,
body {
    font-family: "Montserrat", sans-serif;
}

._container {
    max-width: 1160px;
    margin: 0 auto;
}

img {
    border-radius: 15px;
    box-shadow: 0 0 10px 2px rgba(49, 49, 49, 0.79);
}

img:hover {
    box-shadow: 0 0 10px 3px rgba(49, 49, 49, 0.79);
    transition: .2s ease-out;
}

.title {
    font-size: 48px;
    font-weight: 600;
}

.subtitle {
    font-size: 32px;
    font-weight: 700;
}

.text {
    font-size: 18px;
    font-weight: 500;
}

.list {
    display: flex;
    gap: 2px;
}

.list>* {}

.item-title {
    margin-bottom: 5px;
    font-size: 18px;
    font-weight: 700;
}

.item-text {
    font-size: 15px;
    font-weight: 400;
}

.btn-start {
    width: 100%;
}

.btn {
    border-radius: 15px;
    padding: 1rem 1.2rem;
    font-size: 16px;
    font-weight: 600;
    border: none;
    cursor: pointer;
}

.btn-red {
    color: #fff;
    background: red;
}

.btn-red:hover {
    background: rgb(143, 0, 0);
    transition: .2s ease-out;
}

.wrapper {
    background: #2E2E2E;
    color: #000;
}

.main {}

.image-content {
    width: calc((100% - 100px) / 2);
}

.image-content img {
    width: 100%;
}

.text-content {
    width: calc((100% - 100px) / 2);
    text-align: center;
}

/* /SERVICE */

/* HEADER */
.header__block {
    position: relative;
    background: inherit;
}

.header__container {}

.header__body {
    color: #fff;
    padding: 25px 0;
    text-align: center;
}

/* /HEADER */

/* START */
.start__block {
    position: relative;
}

.start__container {}

.start__body {
    background: #fff;
    border-radius: 15px;
    padding: 2rem;
    display: flex;
    gap: 100px;
}

.start__body .subtitle {
    margin-bottom: 40px;
}

.start__body .list {
    flex-direction: column;
    margin-bottom: 80px;
    text-align: center;
}

.start__body ul li {
    display: flex;
    align-items: center;
}

.start__body ul li img {
    height: 29px;
    order: 1;
}

.start__body ul li div {
    order: 5;
}

.start__body .text {
    margin-bottom: 25px;
}

.start__body .text-content img {
    display: none;
}

/* /START */

/* ADVANTAGES */
.advantages__block {
    padding: 25px 0;
    position: relative;
}

.advantages__container {}

.advantages__body {
    display: flex;
    gap: 100px;
    padding: 2rem;
    background: #fff;
    border-radius: 15px;
}

.advantages__body .subtitle {
    margin-bottom: 80px;
}

.advantages__body .list {
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.advantages__body .item {
    display: flex;
    gap: 25px;
    align-items: center;
}

.advantages__body .num {
    width: 60px;
}

.advantages__body .num img {
    box-shadow: none;
    width: 24px;
}

/* /ADVANTAGES */

/* REVIEWS */
.reviews__block {
    padding: 25px 0;
    position: relative;
}

.reviews__container {}

.reviews__body {
    border-radius: 15px;
    padding: 1rem;
    text-align: center;
}

.reviews__body .subtitle {
    margin-bottom: 40px;
    color: #fff;
}

.reviews__body .list {
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
}

.reviews__body .list>* {
    text-align: start;
    width: calc((100% - 80px) / 3);
    padding: 24px;
    box-sizing: border-box;
    background: #fff;
    border-radius: 15px;
}

.reviews__body .item img {
    width: 100%;
    margin-bottom: 25px;
}

.reviews__body .item-text {
    margin-bottom: 10px;
}

/* /REVIEWS */

/* FOOTER */
.footer__block {
    position: relative;
    background: #000;
}

.footer__container {}

.footer__body {
    padding: 25px 0;
    text-align: center;
    color: #fff;
}

/* /FOOTER */

/* QUIZ */
.modal {
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    overflow: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
    z-index: 99;
    background: #000000da;
    visibility: hidden;
}

.modal__wrap {
    flex-shrink: 0;
    flex-grow: 0;
    width: 100%;
    min-height: 100%;
    margin: auto;
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    justify-content: center;
    /*margin-top: 50%;*/
}

.modal__close {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 32px;
    border: none;
    color: #fff;
    background: inherit;
    cursor: pointer;
}

.quiz__block {
    width: 100%;
}

.quiz__container {}

.quiz__body {
    color: #fff;
}

.quiz__body>*:not(:first-child) {
    display: none;
}

.quiz__body>*>*:not(:first-child) {
    margin-top: 40px;
}

.quiz__body .title {
    font-size: 40px;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 80px;
}

.answers {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.custom-radio {
    display: flex;
}

.custom-radio label {
    display: block;
    width: 100%;
}

/*.custom-radio {*/
/*    display: inline-block;*/
/*    width: auto;*/
/*}*/

/*.custom-radio input[type=radio],*/
/*.custom-radio input[type=checkbox] {*/
/*    display: none;*/
/*}*/

/*.custom-radio label {*/
/*    display: inline-block;*/
/*    cursor: pointer;*/
/*    padding: 5px 20px;*/
/*    line-height: 34px;*/
/*    background: inherit;*/
/*    font-weight: 400;*/
/*    border-radius: 15px;*/
/*    font-size: 18px;*/
/*    user-select: none;*/
/*    border: 1px solid #fff;*/
/*    color: #fff;*/
/*}*/

/*.custom-radio input[type=radio]:checked+label,*/
/*.custom-radio input[type=checkbox]:checked+label {*/
/*    background: #666666;*/
/*    color: #fff;*/
/*}*/

/*.custom-radio label:hover {*/
/*    background: #666666;*/
/*    color: #fff;*/
/*    transition: 0.3s ease-out;*/
/*}*/

.nav-buttons {
    margin-top: 40px;
}

.nav-buttons>* {
    display: inline;
}

.final__block {
    display: none;
}

.final__container {}

.final__body {
    color: #fff;
    width: 600px;
}

.final__body .form__body {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.final__body .subtitle {
    margin-bottom: 25px;
}

.final__body .group {
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.final__body .group-check {
    font-size: 14px;
}

.final__body .form-checkbox {
    display: inline-block;
    margin-right: 5px;
}

.final__body .form-control {
    font-size: 15px;
    font-weight: 500;
    color: #000;
    padding-left: 3.4rem;
    height: 55px;
    border-radius: 5px;
    border: 1px solid #fff;
    box-sizing: border-box;
}

/* /QUIZ */

.gg5 {
    overflow: hidden;
    background-color: #ffd300;
    max-height: 30px !important;
    margin: 0 auto;
    transition: all 0.4s linear;
}

.marquee {
    color: #000;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    line-height: 30px !important;
    font-style: normal;
    text-transform: uppercase;
}

.js-marquee {
    margin-right: 0 !important;
}