:root {
    --green-light: #d8f9e7;
    --green-dark: #064915;
    --green-dark-hover: #023a0e;
    --green: #7ed957;
    --green-hover: #68ce3c;
    --red: #e92c1c;
    --red-hover: #d51806;
    --grey: #545454;
    --white: #fff;
    --black: #000;
}

.btn-green-dark {
    --bs-btn-color: #fff;
    --bs-btn-bg: var(--green-dark);
    --bs-btn-border-color: var(--green-dark);
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: var(--green-dark-hover);
    --bs-btn-hover-border-color: var(--green-dark-hover);
    --bs-btn-focus-shadow-rgb: 6, 73, 21;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: var(--green-dark-hover);
    --bs-btn-active-border-color: var(--green-dark-hover);
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: var(--green-dark);
    --bs-btn-disabled-border-color: var(--green-dark);
}

.btn-green {
    --bs-btn-color: #000;
    --bs-btn-bg: var(--green);
    --bs-btn-border-color: var(--green);
    --bs-btn-hover-color: #000;
    --bs-btn-hover-bg: var(--green-hover);
    --bs-btn-hover-border-color: var(--green-hover);
    --bs-btn-focus-shadow-rgb: 126, 217, 87;
    --bs-btn-active-color: #000;
    --bs-btn-active-bg: var(--green-hover);
    --bs-btn-active-border-color: var(--green-hover);
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: var(--green);
    --bs-btn-disabled-border-color: var(--green);
}
.btn-red {
    min-height: 50px !important;
    --bs-btn-color: #fff;
    --bs-btn-bg: var(--red);
    --bs-btn-border-color: var(--red);
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: var(--red-hover);
    --bs-btn-hover-border-color: var(--red-hover);
    --bs-btn-focus-shadow-rgb: 233, 44, 28;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: var(--red-hover);
    --bs-btn-active-border-color: var(--red-hover);
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: var(--red);
    --bs-btn-disabled-border-color: var(--red);
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
p,
pre {
    padding: 0;
    margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    line-height: 1.4;
}
img {
    max-width: 100%;
}
.bold {
    font-weight: 700;
}
.center {
    text-align: center;
}
.hidden {
    display: none;
    opacity: 0;
    visibility: hidden;
}

.red {
    color: var(--red);
}
.grey {
    color: var(--grey);
}
.green-dark {
    color: var(--green-dark);
}
.green {
    color: var(--green);
}

h1,
.h1 {
    font-size: 28px;
}
h2,
.h2 {
    font-size: 26px;
}
h3,
.h3 {
    font-size: 21px;
}
h4,
.h4 {
    font-size: 21px;
}
.question {
    margin-bottom: 10px;
}

body {
    background: #FFD4CD;
    background: linear-gradient(180deg,rgba(255, 212, 205, 1) 0%, rgba(198, 253, 207, 1) 100%);
    font-family: "Poppins", sans-serif;
    color: var(--black);
}

.wrap {
    width: calc(100% - 30px);
    max-width: 630px;
    margin-left: auto;
    margin-right: auto;
}

.prg-bar {
    margin: 20px auto 0;
    background: var(--white);
    height: 8px;
    overflow: hidden;
    border-radius: 100px;
}
.prg-line {
    height: 8px;
    width: 0px;
    transition: all 0.3s linear;

    background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-size: 1rem 1rem;
    background-color: var(--green);

}

.logo {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 0 0;
}
.logo img {
    max-width: 240px;
}

.slide-image {
    margin: 20px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.slide-image img {
    aspect-ratio: 16/12;
    object-fit: cover;
    object-position: top center;
    border-radius: 8px;
}
.slide-image div {
    position: absolute;
    width: 100%;
    padding: 16px;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.slide-image div .name {
    font-size: 36px;
    font-weight: bold;
    text-shadow:
        -1px -1px 0 #fff,
        1px -1px 0 #fff,
        -1px  1px 0 #fff,
        1px  1px 0 #fff,
        0px  1px 0 #fff,
        1px  0px 0 #fff,
        -1px  0px 0 #fff,
        0px -1px 0 #fff;
}
/* .slide-image a {
    position: absolute;
    right: 35px;
    bottom: 30px;
} */
.slide-content {
    margin: 20px auto;
}
@media screen and (max-width: 767px) {
.slide-content {
    margin: 16px auto;
}
}

.white-block {
    background: #fafafa;
    padding: 20px;
    margin: 20px 0;
    border-radius: 8px;
}
.white-block-p-x {
    padding: 0px 20px;
}

.btn-container {
    display: grid;
    grid-template-columns: 1fr;
    margin: 30px auto;
    grid-gap: 10px;
    max-width: 400px;
}
@media screen and (max-width: 767px) {
.btn-container {
    margin: 20px auto;
}
}
.btn {
    font-weight: 700;
    font-size: 20px;
    min-height: 56px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
}
.btn-sm {
    font-size: 16px;
    min-height: 44px;
}
.btn-answer {
    min-height: 44px;
    font-size: 18px;
}
.btn-start {
    justify-content: flex-start;
}
.title {
    margin: 20px auto;
    font-size: 36px;
}

@media screen and (max-width: 767px) {
    h1,
    .h1 {
        font-size: 18px;
    }
    h2,
    .h2 {
        font-size: 16px;
    }
    h3,
    .h3 {
        font-size: 16px;
    }
    h4,
    .h4 {
        font-size: 16px;
    }

    .white-block {
        padding: 15px;
    }
    .white-block-p-x {
        padding: 0px 15px;
    }
    /* .slide-image a {
        position: absolute;
        right: 25px;
        bottom: 18px;
    } */
    .btn-sm {
        font-size: 14px;
        min-height: 34px;
    }

    .question {
        font-size: 24px;
    }
    .title {
        font-size: 34px;
    }

    .slide-image div .name {
        font-size: 24px;
    }
    .btn-red {
        font-size: 14px;
        min-height: 42px !important;
    }

}

/* arrow animation */
.styles_arrow {
    width: 32px;
    height: 32px;
    margin-left: 18px;
    transform: rotate(-90deg);
}

.styles_arrow span {
    display: block;
    width: 16px;
    height: 16px;
    border-bottom: 3px solid #fff;
    border-right: 3px solid #fff;
    transform: rotate(45deg);
    animation: styles_animate__pHXpz 2s infinite;
    margin-top: -8px;
    margin-left: 8px;
}

.styles_arrow span:nth-child(2) {
    animation-delay: -0.2s;
}

.styles_arrow span:nth-child(3) {
    animation-delay: -0.4s;
}

@keyframes styles_animate__pHXpz {
    0% {
        opacity: 0;
        transform: rotate(45deg) translate(-10px, -10px);
    }
    50% {
        opacity: 1;
    }
    to {
        opacity: 0;
        transform: rotate(45deg) translate(10px, 10px);
    }
}

/* circle progress */
.slide-progress {
    margin: 20px auto;
    width: 145px;
}
.circular-progress {
    margin-bottom: 25px;
    position: relative;
    min-width: 145px;
    min-height: 145px;
    min-height: 145px;
    border-radius: 50%;
    background: conic-gradient(#476ec2 3.6deg, #fff 0deg);
    display: flex;
    align-items: center;
    justify-content: center;
}
.circular-progress::before {
    content: "";
    position: absolute;
    min-width: 135px;
    min-height: 135px;
    border-radius: 50%;
    background-color: var(--green-light);
}
.circular-progress-value {
    position: relative;
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 34px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
}


.transition-y {
    transform: translateY(900px);
}
.slide-content > * {
    transition: all 0.3s linear;
}

footer {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 10px;
    background: #252525;
    font-size: 12px;
}
.footer a {
     color: #fff !important;
     text-decoration: none;
     padding: 0 10px;
}

.wrap {
    min-height: 100vh;
}

a, a:active {
    border-color: transparent !important;
}