:root {
    --black: #111c11;
    --dark: #1e1e1e;
    --gray: #e9e9e9;
    --white: #ffffff;
    --light: #F1F1F1;

    --primary: var(--black);
    --primary-light: var(--dark);

    --secondary: var(--danger);
    --secondary-light: #ffc6c6;

    --info: #0069d8;
    --info-light: #d6e9fb;
    --danger: #fe3838;
    --success: #20b743;
    --warning: #f8be10;
}


html {
    font-size: 16px;
}
body {
    font-family: "Roboto", serif;
    font-size: inherit;
    font-weight: 300;
    line-height: 1.52;
    background: var(--white);
    color: var(--black);
}
strong {
    font-weight: 700;
}
i {
    font-style: italic;
}
img {
    width: 100%;
    max-width: 100%;
    display: block;
}
ul, li {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 0;
}
.primary {
    color: var(--primary);
}
.secondary {
    color: var(--secondary);
}
.info {
    color: var(--info);
}
.box {
    background: var(--light);
}
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6, p {
    margin-bottom: 0;
    font-weight: 400;
}
.card {
    --bs-card-spacer-y: initial;
    --bs-card-spacer-x: initial;
    --bs-card-title-spacer-y: initial;
    --bs-card-title-color: initial;
    --bs-card-subtitle-color: initial;
    --bs-card-border-width: initial;
    --bs-card-border-color: initial;
    --bs-card-border-radius: initial;
    --bs-card-box-shadow: initial;
    --bs-card-inner-border-radius: initial;
    --bs-card-cap-padding-y: initial;
    --bs-card-cap-padding-x: initial;
    --bs-card-cap-bg: transparent;
    --bs-card-cap-color: initial;
    --bs-card-height: initial;
    --bs-card-color: initial;
    --bs-card-bg: initial;
    --bs-card-img-overlay-padding: initial;
    --bs-card-group-margin: initial;
    position: relative;
    display: initial;
    flex-direction: column;
    min-width: 0;
    height: var(--bs-card-height);
    color: var(--bs-body-color);
    word-wrap: break-word;
    background-color: var(--bs-card-bg);
    background-clip: border-box;
    border: var(--bs-card-border-width) solid var(--bs-card-border-color);
    border-radius: var(--bs-card-border-radius);
}

.btn, .btn:active, .btn:hover, .btn.focus, .btn:focus {
    width: 100%;
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    border-radius: 0.35rem;
    border-width: 1;
    border-style: solid;
    border-color: var(--primary);
    padding: 1rem 1.5rem;
    font-weight: 700;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 21px;
    line-height: 1;
    min-height: 58px;
}
.btn p {
    margin-bottom: 0;
}
.btn-glitch {
    position: relative;
    overflow: hidden;
}
.btn-glitch:after {
    content: "";
    display: block;
    width: 1rem;
    height: 100%;
    background: rgba(255, 255, 255, 1);
    opacity: .5;
    position: absolute;
    left: -100%;
    top: 0;
    z-index: 1;
    transform: rotate(45deg) scale(2);
    animation: 3s linear 0s infinite normal animation-glitch;
}
@keyframes animation-glitch {
    0% {
        left: -100%;
    }
    100%,
    20% {
        left: 100%;
        margin-left: 5rem;
    }
}


input {
    font-size: 18px;
    line-height: 1;
    padding: 1rem 1rem !important;
    min-height: 58px;
    border-radius: 0.35rem !important;
}
input::placeholder {
    font-size: 18px;
}

.screen {
    min-height: 100vh;
    min-height: calc(var(--vh, 1vh) * 100);
    display: flex;
    flex-direction: column;
}

section {
	padding: 2.75rem 0
}

.progress, .progress-stacked {
    display: initial;
    height: initial;
    overflow: initial;
    font-size: 1rem;
    background-color: initial;
    border-radius: 0;
}

.btn-primary {
    --bs-btn-color: var(--white);
    --bs-btn-bg: var(--primary);
    --bs-btn-border-color: var(--primary);
    --bs-btn-hover-color: var(--white);
    --bs-btn-hover-bg: var(--primary-light);
    --bs-btn-hover-border-color: var(--primary-light);
    --bs-btn-focus-shadow-rgb: 0, 0, 0;
    --bs-btn-active-color: var(--white);
    --bs-btn-active-bg: var(--primary-light);
    --bs-btn-active-border-color: var(--primary-light);
    --bs-btn-active-shadow: 0;
    --bs-btn-disabled-color: var(--white);
    --bs-btn-disabled-bg: var(--primary-light);
    --bs-btn-disabled-border-color: var(--primary-light);
    box-shadow: 0 0 1px 3px rgba(var(--bs-btn-focus-shadow-rgb), 0.15);
    border-width: 1;
    border-style: solid;
    border-color: var(--bs-btn-bg);
}
.btn-primary:hover , .btn-primary:focus , .btn-primary:active {
    box-shadow: 0 0 3px 6px rgba(var(--bs-btn-focus-shadow-rgb), 0.15);
    border-width: 1;
    border-style: solid;
    border-color: var(--bs-btn-bg);
}
.btn-white {
    --bs-btn-color: var(--black);
    --bs-btn-bg: var(--white);
    --bs-btn-border-color: var(--white);
    --bs-btn-hover-color: var(--black);
    --bs-btn-hover-bg: var(--gray);
    --bs-btn-hover-border-color: var(--gray);
    --bs-btn-focus-shadow-rgb: 255, 255, 255;
    --bs-btn-active-color: var(--black);
    --bs-btn-active-bg: var(--gray);
    --bs-btn-active-border-color: var(--gray);
    --bs-btn-active-shadow: 0;
    --bs-btn-disabled-color: var(--black);
    --bs-btn-disabled-bg: var(--gray);
    --bs-btn-disabled-border-color: var(--gray);
    box-shadow: 0 0 1px 3px rgba(var(--bs-btn-focus-shadow-rgb), 0.15);
    border-width: 1;
    border-style: solid;
    border-color: var(--bs-btn-bg);
}
.btn-white:hover , .btn-white:focus , .btn-white:active {
    box-shadow: 0 0 3px 6px rgba(var(--bs-btn-focus-shadow-rgb), 0.15);
    border-width: 1;
    border-style: solid;
    border-color: var(--bs-btn-bg);
}

.container {
    width: calc(100% - 30px);
}
.container, 
.container-fluid, 
.container-lg, 
.container-md, 
.container-sm, 
.container-xl, 
.container-xxl,
.row>* {
    padding-left: 0;
    padding-right: 0;
}
.row {
    margin-left: 0;
    margin-right: 0;
}

.form-group {
    margin-bottom: 1rem;
}

label {
    display: block;
    margin-bottom: 0.25rem;
    font-weight: 600;
}


header .container {
    padding: 10px 0; 
}
footer .logo img ,
header .logo img {
    width: auto !important;
    max-width: 100% !important;
    margin: 0 auto;
    max-height: 35px;
}
@media screen and (max-width: 991px) {
    footer .logo img ,
    header .logo img {
        max-height: 25px;
    }
}


.intro {
    flex-grow: 1;
    padding: 10vh 0;
}
.intro > .container > .row > .inner {
    max-width: 370px;
    margin: 0 auto;
}
.intro .intro-title h1 ,
.intro .welcome-content h1 {
    font-size: 36px;
    line-height: 48px;
    text-align: center;
    margin-bottom: 1.75rem;
}
.intro .intro-list ,
.intro .analizer-list  {
    max-width: 270px;
    width: 100%;
    margin: 0 auto 1.75rem;
    margin-bottom: 1.75rem;
}
.intro .analizer-list {
    max-width: 270px;
    color: var(--success);
    font-size: 18px;
}
.intro .intro-list li ,
.intro .analizer-list li .li-inner {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}
.intro .intro-list li:not(:last-child) ,
.intro .analizer-list li:not(:last-child) {
    margin-bottom: 1rem;
}
.intro .intro-list img ,
.intro .analizer-list img {
    width: 22px;
    min-width: 22px;
    margin-right: 0.5rem;
}
.intro .analizer-list img {
    transform: translateY(1px);
}

.welcome .welcome-img {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;
}
.welcome .welcome-img img {
    max-width: 125px;
}
.intro .welcome-content h1 {
    margin-bottom: 1rem;
}
.intro .welcome-content p {
    text-align: center;
    font-size: 18px;
}


.progress {
    display: block;
    margin: 0 auto 1.5rem;
    max-width: 320px;
    transition: all 0.3s linear;
}
.progress .progress-inner {
    display: flex;
    justify-content: center;
    align-items: center;
}
.progress .circle-container {
    border: 2px solid var(--secondary-light);
    padding: 4px;
    border-radius: 100rem;
    transition: all 0.3s linear;
}
.progress .circle {
    width: 42px;
    min-width: 42px;
    height: 42px;
    min-height: 42px;
    border-radius: 100rem;
    font-size: 21px;
    font-weight: 600;
    line-height: 1;
    background: var(--secondary-light);
    color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    transition: all 0.3s linear;
}
.progress .line-container {
    width: 60px;
    height: 2px;
    background: var(--secondary-light);
    position: relative;
}
.progress .line-container .line {
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: all 0.3s linear;
    position: absolute;
    top: 0;
    left: 0;
}
.progress .line-container .line-green {
    width: 0;
    height: 2px;
    background: var(--success);
    transition: all 0.3s linear;
    position: absolute;
    top: 0;
    left: 0;
}

.progress .circle-container.active {
    border: 2px solid var(--secondary);
}
.progress .circle-container.active .circle {
    background: var(--secondary);
    color: var(--white);
}
.progress .line-container.active .line {
    width: 100%;
}

.progress .circle-container.checked {
    border: 2px solid var(--success);
}
.progress .circle-container.checked .circle {
    background: var(--success);
    color: var(--white);
}
.progress .line-container.checked .line-green {
    width: 100%;
}

.quiz-block .title {
    margin-bottom: 1.5rem;
}
.quiz-block .title h6 {
    font-size: 21px;
    line-height: 1.52;
    text-align: center;
}
.quiz-block .answers .btn {
    margin-bottom: 1rem;
}

.final .banner {
    display: flex;
    justify-content: center;
    align-items: center;
}
.final .banner strong {
    background: var(--info-light);
    padding: 0.5rem 1.5rem;
    color: var(--info);
    font-size: 18px;
    border-radius: 6rem;
    margin-bottom: 1.5rem;
}
.final .title {
    margin-bottom: 1.5rem;
    text-align: center;
}
.final .data {
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 18px;
}
.final .title h2 {
    font-size: 32px;
    line-height: 48px;
}


@media screen and (max-width: 991px) {
    .intro {
        padding: 1.75rem 0 2.75rem;
    }
    .intro .intro-title h1 ,
    .intro .welcome-content h1 {
        font-size: 32px;
        letter-spacing: -0.2px;
    }
    .final .title h2 {
        font-size: 28px;
        line-height: 42px;
    }
}


.intro .form-step-2 , 
.intro .form-step-3 , 
.analizer ,
.analizer-list li ,  
.quiz-block:not(.quiz-block-1) , 
.final , 
.quiz {
    display: none;
}
.intro .form-step .btn {
    margin-top: 1.5rem;
}




.au {
    background: var(--primary);
    color: var(--white);
}
.au .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 4rem;
}
.au .content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.au .content .title {
    margin-bottom: 4rem;
}
.au .content p {
    display: block;
    margin-bottom: 1.75rem;
}
.au .content .title h5 {
    font-size: 32px;
    line-height: 40px;
}
.au .content .img {
    display: none;
}
.au .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.au .btn {
    max-width: 370px;
}
@media screen and (max-width: 991px) {
    .au .container {
        display: grid;
        grid-template-columns: 1fr;
        grid-gap: 1.75rem;
    }
    .au .content .title {
        margin-bottom: 1.75rem;
    }
    .au .content .title h5 {
        font-size: 21px;
        line-height: 36px;
    }
    .au .content .img {
        margin-left: -15px;
        width: calc(100% + 30px);
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 1.75rem;
    }
    .au .container > .img {
        display: none;
    }
    .au .btn {
        margin-left: auto;
        margin-right: auto;
    }   
}

.hiw {
    padding-top: 6rem;
    margin-bottom: 2.75rem;
}
.hiw .title {
    margin-bottom: 4rem;
}
.hiw .title h2 {
    font-size: 48px;
    line-height: 56px;
    text-align: center;
}
.hiw .cards {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    grid-gap: 4rem;
}
.hiw .card {
    height: 218px;
}
.hiw .card .content {
    margin-left: 4rem;
    margin-top: 2.5rem;
}
.hiw .card .title {
    margin-bottom: 1rem;
    font-size: 24px;
    font-weight: 700;
    line-height: 32px;
}
.hiw .card img {
    position: absolute;
    top: 0;
    left: 0;
    height: 218px;
    width: auto;
}

@media screen and (max-width: 991px) {
    .hiw .title {
        margin-bottom: 2.75rem;
    }
    .hiw .title h2 {
        font-size: 32px;
        line-height: 40px;
    }
    .hiw .cards {
        display: grid;
        grid-template-columns: repeat(1,1fr);
        grid-gap: 1.75rem;
    }
    .hiw .card .title {
        margin-bottom: 1rem;
        font-size: 24px;
        font-weight: 700;
        line-height: 32px;
    }
    .hiw .card img {
        transform: translateX(-15px);
    }
    .hiw .card:last-of-type img {
        transform: translateX(-45px);
    }
}

.faq {
    padding-bottom: 6rem;
}
.faq .title h2 {
    font-size: 48px;
    line-height: 56px;
    text-align: center;
}
.faq .title {
    margin-bottom: 4rem;
}
.faq .card {
    border-bottom: 1px solid var(--primary);
    padding: 1rem;
    display: flex;
    flex-direction: column;
}
.faq .card .title {
    margin-bottom: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}
.faq .card .title h5 {
    font-size: 21px;
    line-height: 32px;
}
.faq .card figure img {
    width: 1.25rem;
    min-width: 1.25rem;
    margin-left: 1rem;
}
.faq .card figure {
    margin-bottom: 0;
}
.faq .card figure img:nth-child(2) {
    display: none;
}
.faq .card.active figure img:nth-child(1) {
    display: none;
}
.faq .card.active figure img:nth-child(2) {
    display: block;
}
.faq .card .text {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s linear;
}
.faq .card.active .text {
    padding: 1rem 0 0;
    max-height: 400px;
}
@media screen and (max-width: 991px) {
    .faq .title {
        margin-bottom: 2.75rem;
    }
    .faq .card {
        padding: 1rem 0;
    }
    .faq .card .title h5 {
        font-size: 18px;
        line-height: 24px;
    }
    .faq .title h2 {
        font-size: 32px;
        line-height: 40px;
        text-align: left;
    }
}



footer {
    background: var(--gray);
	padding: 2.75rem 0 0;
    font-size: 14px;
}
footer .container img {
    margin-bottom: 1.5rem;
}
footer .container nav {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
}
footer .container nav a {
    text-decoration: none;
    line-height: 1;
    margin-left: 1rem;
    margin-right: 1rem;
    color: var(--primary);
    transition: all 0.3s linear;
}
footer .container nav a:hover {
    color: var(--secondary);
}
footer .container .description {
    margin-bottom: 2.75rem;
    font-style: italic;
    font-size: 12px;
}
footer .container .description p:not(:last-child) {
    margin-bottom: 0.5rem;
}
footer .copy {
    padding: 1rem 0;
    text-align: center;
    background: var(--primary);
    color: var(--white);
}
@media screen and (max-width: 991px) {
    footer {
        padding: 2.75rem 0 0
    }
    footer .container nav {
        flex-direction: column;
    }
    footer .container nav a:not(:last-child) {
        margin-bottom: 1rem;
    }
    footer .container .description {
        margin-bottom: 2.75rem;
        font-size: 12px;
    }
}