:root {
    --blue: #1f64a3;
    --dark-blue: #1c154f;
    --orange: #f8b413;
    --dark-red: #a62b20;
    --grey: #808080;
    --dark-grey: #58595b;
    --font-regular: "Montserrat Regular";
    --font-bold: "Montserrat bold";
    --font-semi: "Montserrat SemiBold";
    --font-medium: "Montserrat Medium";
    --font-light: "Montserrat Light";
}

html,
body {
    overflow-x: hidden;
    font-family: var(--font-regular);
    scroll-behavior: smooth;
    height: 100%;
    width: 100%;
    position: relative;
}

.logo-wrapper {
    position: absolute;
    width: 100%;
    top: 3%;
    left: 2%;
}

.header .logo {
    max-width: 6rem;
}

.header-container {
    position: relative;
}

.header-text {
    position: absolute;
    left: 4%;
    bottom: 9%;
    width: 42%;
}

.header-text img {
    width: 100%;
}

.header-text__wrapper {
    background-image: linear-gradient(to left, var(--dark-blue)50%, var(--main-blue));
    width: 100%;
    position: absolute;
    height: 85%;
    z-index: -1;
}

.header-text__wrapper img {
    width: 25%;
    padding: 0.5rem 1rem;
    margin-left: 25%;
}


/* landing page  */
.landing-page {
    display: flex;
}

.landing-page .first-text {
    font-size: 1rem;
    color: var(--grey);
    font-family: var(--font-medium);
}

.landing-page .multiple-text {
    font-size: 1.5rem;
    line-height: 1;
    color: var(--orange);
    font-family: var(--font-medium);
    margin: 0;
}

.landing-page .main-text {
    font-size: 3.5rem;
    line-height: 1;
    color: var(--blue);
    font-family: var(--font-bold);
    margin: 0;
}

.landing-page .last-text {
    margin: 0;
    color: var(--grey);
    font-family: var(--font-bold);
}

.custom-select {
    border-radius: 50px;
    text-align: center;
    color: var(--dark-blue);
    font-family: var(--font-semi);
    background-image: url("../images/arrow.svg");
    background-size: 1.5rem;
}

.input-wrapper {
    width: 30%;
}

.form-control {
    border-radius: 50px;
}


.min-w-30 {
    min-width: 20%;
}

.btn-g-primary {
    background-color: var(--orange);
    text-transform: uppercase;
    width: 100%;
    color: #fff;
    font-family: var(--font-bold);
    border-radius: 50px;
}

.btn-g-primary:hover {
    color: #fff;
}

/* questions */
.questions-container {
    display: none;
}

.question-header {
    color: var(--blue);
    font-family: var(--font-bold);
    font-size: 1.3rem;
}

.question-wrapper {
    list-style: none;
}

.question-wrapper li .marker-img {
    width: 1.3rem;
    align-self: flex-start;
}

.question-text {
    font-size: 1.1rem;
    line-height: 1.2;
    font-family: var(--font-semi);
    color: var(--dark-grey);
    position: relative;
    width: 100%;
}

.question-num {
    color: var(--orange);
    font-size: 1.2rem;
    line-height: 1;
    margin-right: 0.5rem;
}

.form-check-label {
    color: var(--dark-grey);
    font-family: var(--font-regular);
}


.free-text {
    border-radius: 0.5rem;
    resize: none;
}

.btn-submit {
    background-color: var(--orange);
    text-transform: uppercase;
    color: #fff;
    font-family: var(--font-bold);
    border-radius: 50px;
    width: 100%;
}

.btn-submit:hover {
    color: #fff;
}

.btn-previous {
    text-transform: uppercase;
    border-color: var(--dark-blue);
    color: var(--dark-blue);
    font-family: var(--font-semi);
    border-radius: 50px;
    width: 11rem;
}

.custom-ps {
    padding-left: 5.2rem;
}

/* thank you  */

.thank-you img {
    width: 5rem;
}

.thank-you .main-text {
    font-size: 2rem;
    line-height: 1;
    color: var(--dark-blue);
    font-family: var(--font-bold);
    margin: 0;
}

.thank-you .multiple-text {
    font-size: 2rem;
    line-height: 1;
    color: var(--blue);
    font-family: var(--font-bold);
    margin: 0;
}

.thank-you {
    text-align: center;
    display: none;
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #000000e3;
    margin: 0 auto;
    z-index: 20;
}

.thank-you__container {
    width: 100%;
    height: 100%;
    position: relative;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
}

.thank-you__content {
    position: relative;
    background-color: #fff;
    width: 100%;
    max-width: 80%;
    height: 100%;
    padding: 2rem;
    height: fit-content;
    border-radius: 25px;
}



.side-code {
    position: absolute;
    right: 2%;
    bottom: 2%;
    width: 0.5rem;
}

.side-code>img {
    width: 100%;
}


@media (max-width:576px) {
    html {
        font-size: 12px;
    }
}

@media (max-width: 768px) {
    .header-text__wrapper {
        position: static;
        height: 100%;
        text-align: start;
    }

    .header-text__wrapper img {
        margin-left: 0;
        width: 45%;
    }

    .graph {
        position: absolute;
        right: -58%;
        width: 100% !important;
    }
}

/* loader section*/
#loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.9);
}

#loader {
    display: block;
    position: relative;
    left: 50%;
    top: 50%;
    width: 150px;
    height: 150px;
    margin: -75px 0 0 -75px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #fff;
    z-index: 1001;
    animation: spin 2s linear infinite;
}

#loader:before {
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: var(--dark-blue);
    animation: spin 3s linear infinite;
}

#loader:after {
    content: "";
    position: absolute;
    top: 15px;
    right: 15px;
    left: 15px;
    bottom: 15px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: var(--dark-red);
    animation: spin 1.5s linear infinite;
}

#loader-wrapper .loader-section {
    position: fixed;
    top: 0;
    width: 51%;
    height: 100%;
    z-index: 1000;
    transform: translateX(0);
}

#loader-wrapper .loader-section.section-left {
    left: 0;
}

#loader-wrapper .loader-section.section-right {
    right: 0;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}



.loaded #loader-wrapper .loader-section.section-left {
    transform: translateX(-100%);
    transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.loaded #loader-wrapper .loader-section.section-right {
    transform: translateX(100%);
    transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.loaded #loader {
    opacity: 0;
    transition: all 0.3s ease-out;
}

.loaded #loader-wrapper {
    visibility: hidden;
    transform: translateY(-100%);
    transition: all 0.3s 1s ease-out;
    display: none;
}