:root {
    --primaryColor: #029BDF;
    --secondaryColor: #935FA9;
    --textColor: #000000;

    --btnGradient1: linear-gradient( 135deg, #029BDF, #935FA9 );
    --btnGradient2: linear-gradient( to top, #029BDF, #935FA9 );
    --btnGradient3: linear-gradient( -15deg, #029BDF 10%, #935FA9 70% );
}

body,
html {
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    line-height: 1.4;
    font-weight: 300;
    max-width: 100vw;
    background: #FAF9FB;
    color: #252525;
}

* {
    position: relative;
    z-index: 1;
}

.app {
    padding-inline: 1.5rem;
    max-width: 100vw;
    overflow-x: hidden;
}

img {
    height: auto;
    object-fit: cover;
    object-position: center center;
}

.siteHeader {
    background: #fff;
    position: sticky;
    top: 0;
    padding-block: 1.25rem;
    z-index: 99;
}

.siteLogo {
    width: 13rem;
}

.siteHeader_nav {
    column-gap: 1.875rem;
}

.siteHeader_link {
    font-size: 1.25rem;
    display: inline-block;
    padding: 0.65em 0;
    line-height: 1;
    text-decoration: none;
    color: var(--textColor);
}

.hamburger {
    cursor: pointer;
}

.siteBtn,
.siteBtn:active,
.siteBtn:focus {
    background: var(--btnGradient1);
    font-size: 1.25rem;
    line-height: 1;
    font-weight: 300;
    padding: 0.65em 1em;
    color: white;
    border: none;
    border-radius: 3rem;
    box-shadow: rgba(114, 1, 124, 0.2) 0px 4px 4px 0px;
    transform: translateY(0);
    transition: all 0.3s ease-in-out;
}

.siteBtn_alt,
.siteBtn_alt:active,
.siteBtn_alt:focus {
    background: var(--primaryColor);
    line-height: 1;
    color: white;
    border: none;
    border-radius: 3rem;
    transform: translateY(0);
    font-size: 1.5rem;
    padding: 0.65em 1.25em;
    width: 100%;
    font-weight: 400;
    transition: all 0.3s ease-in-out;
}

.quiz_card_btn,
.quiz_card_btn:active,
.quiz_card_btn:focus,
.quiz_card_btn:hover {
    background: var(--btnGradient1);
    font-size: 1.875rem;
    line-height: 1;
    font-weight: 500;
    padding: 0.65em 1.75em;
    color: white !important;
    border: none;
    border-radius: 1.25rem;
    box-shadow: rgba(27, 27, 27, 0.2) 0px 4px 4px 0px;
    transform: translateY(0);
    display: inline-flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 0.625rem;
    align-items: center;
    width: auto;
    max-width: 18rem;
    transition: all 0.3s ease-in-out;
}

.bc_card_btn,
.bc_card_btn:active,
.bc_card_btn:focus,
.bc_card_btn:hover {
    font-size: 1.1rem !important;
}

.quiz_card_btn img {
    width: 1.65rem;
}

.bc_card_btn img {
    width: 1.2rem !important;
}

.siteBtn:hover {
    color: white;
    box-shadow: rgba(114, 1, 124, 0.2) 0px 10px 6px 0px;
    outline: none;
    border: none;
    transform: translateY(-10%);
}

.siteBtn_alt:hover {
    background: var(--secondaryColor);
    color: white;
    outline: none;
    border: none;
}

.siteBtn_alt.btn-secondary,
.siteBtn_alt.btn-secondary:active,
.siteBtn_alt.btn-secondary:focus {
    background-color: #6c757d;
    color: #fff;
    font-size: 1.1rem;
}

.siteBtn_alt.btn-secondary:hover {
    background-color: #5c636a;
    color: #fff;
}

.quiz_card_btn:hover {
    color: white;
    box-shadow: rgba(124, 1, 97, 0.2) 0px 10px 6px 0px;
    outline: none;
    border: none;
    transform: translateY(-10%);
}

.siteFooter {
    padding-block: 10rem;
    background: var(--btnGradient3);
}

.social_links {
    column-gap: 1rem;
}

.social_links img {
    width: 2rem;
}

.footer_links,
.footer_links a {
    color: white;
    font-size: 1.25rem;
    text-decoration: none;
}

.footer_links a:hover {
    text-decoration: underline;
}

.siteBanner {
    border-radius: 1.25rem !important;
    overflow: hidden;
}

.adImage {
    cursor: pointer;
    border-radius: 1.25rem;
}

.subTitle {
    font-size: 2.5rem;
}

.subTitle span {
    font-size: 0.5em;
}

.subTitle small {
    font-size: 0.75em;
}

.subTitle small span {
    font-size: 0.65em;
}

.videoModal * {
    background: transparent !important;
    border: none !important;
}

.videoModal .modal-dialog {
    max-width: 100vmin !important;
    width: 100% !important;
}

.videoModal .modal-dialog iframe {
    aspect-ratio: 16/9 !important;
    width: 100%;
}

.videoModal .modal-body {
    background: #000 !important;
    padding: 5px 5px 0px !important;
}

.videoModal .close {
    position: absolute;
    top: -35px;
    right: 0px;
    font-size: 28px;
    color: #fff;
}

.adsWrap .adsWrap_prev,
.adsWrap .adsWrap_next {
    position: absolute;
    z-index: 5;
    top: 50%;
    transform: translateY(-50%);
    width: 1.5rem;
    cursor: pointer;
}

.adsWrap .adsWrap_prev {
    left: 1rem;
}

.adsWrap .adsWrap_next  {
    right: 1rem;
}

.adsWrap .adsWrap_prev img,
.adsWrap .adsWrap_next img {
    width: 100%;
}

@media( max-width: 1399px ) {
    body, html {
        font-size: 14px;
    }
    .quiz_card_btn,
    .quiz_card_btn:active,
    .quiz_card_btn:focus,
    .quiz_card_btn:hover{
        font-size: 1.55rem;
        border-radius: 1.2rem;
    }
    .siteBtn_alt,
    .siteBtn_alt:active,
    .siteBtn_alt:focus {
        font-size: 1.35rem;
        padding: 0.65em 1em;
    }
}

@media( max-width: 991px ) {
    body, html {
        font-size: 12px;
    }
}

@media( max-width: 575px ) {
    .siteLogo {
        width: 7.5rem;
    }
    .siteBtn_alt,
    .siteBtn_alt:active,
    .siteBtn_alt:focus {
        font-size: 1.5rem;
        padding: 0.9em 1em;
    }
    .videoModal .modal-dialog {
        margin: 0;
    }
}

.siteHeader_nav .admin-card {
    min-width: 100px;
    text-align: right;
}

.siteHeader_nav .admin-card span {
    font-size: 12px;
    line-height: 1;
}

.siteHeader_nav .admin-card span b {
    font-size: 1.1em;
}

.siteHeader_nav .admin-card hr {
    margin-block: 5px;
}

.siteHeader_nav .admin-card .btn-link {
    color: #f00 !important;
    text-decoration: none !important;
    font-size: 11px !important;
    font-weight: 600 !important;
    padding: 0 !important;
}

.phone_code_select {
    max-width: 120px;
}

iframe {
    aspect-ratio: 16/9;
}

.brandVideo {
    border-radius: 2rem;
    overflow: hidden;
}

.form-control {
    outline: none !important;
    box-shadow: none !important;
}

.parsley-errors-list {
    list-style-type: none;
    margin: 0;
    padding: 0;
    font-size: 12px;
    color: darkred;
    position: absolute;
    right: 0;
    width: 100%;
    text-align: right;
    z-index: 2;
    top: 100%;
}

.open_in_tab {
    display: block;
    padding-right: 5rem;
}

.open_in_tab span {
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
}

.uploadForm .form-control {
    height: 45px;
    border-radius: 8px;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

.uploadForm .siteBtn {
    border: 1px solid #fff;
    font-weight: 600;
    padding: 0.75em 3em;
}

.dropzone {
    border-radius: 8px;
    min-height: 200px;
    border: none !important;
    display: flex;
    justify-content: center;
    align-items: center;
}

.profile-wid-bg::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    opacity: .9;
    background: linear-gradient(135deg, #029BDF, #935FA9) !important;
    z-index: 2;
}

@media(min-width: 1400px) {
    .quizWrap .quiz_card_btn,
    .quizWrap .quiz_card_btn:active,
    .quizWrap .quiz_card_btn:focus,
    .quizWrap .quiz_card_btn:hover {
        font-size: 1.5rem;
        max-width: 18rem;
    }
}

@media(max-width: 991px) {
    .bc_card {
        width: 170px !important;
        padding: 3rem 1.5rem !important;
    }

    .bc_card_btn {
        padding: 0.85rem 1rem !important;
    }
}


.fw-bold {
    font-weight: 700 !important;
}

@media( max-width: 767px ) {
    body {
        max-width: 100vw;
        overflow-x: hidden;
    }
    .header-item {
        height: 40px;
    }
    .mx-n4 {
        margin-inline: 0 !important
    }
}

