/*

Base font size

*/

:root {
    font-size: 18px;
}

/*

Variables

*/

* {
    --bs-card-title-color: #0f2068;
    --bs-heading-color: #0f2068;
}

/*

Styles

*/

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
}

ul li {
    margin-bottom: 2rem;
}
ul li:last-child {
    margin-bottom: 0;
}

p {
    font-weight: 400;
    font-family: 'Lato', sans-serif !important;
}

i {
  text-decoration-style: initial;
}

img {
    max-width: 100%;
    height: auto;
}

.text-wrap > *:last-child{
    margin-bottom: 0;
}

.container {
    max-width: 992px;
}

.hero {
    min-height: 500px;
    position: relative;
    overflow: hidden;
}

.jarallax-hero {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    z-index: -1;
}
.jarallax-hero .jarallax {
    height: 100%;
}

.hero:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #2b61a1 50%, rgba(12, 23, 31, 0.0001) 100%);
    z-index: -1;
}

.bg-light {
    background-color:  rgb(43 97 161 / 5%) !important;
}

.opacity-15 {
    opacity: .15!important;
}
.opacity-9 {
    opacity: .9!important;
}

footer {
    background-color: var(--bs-card-title-color);
}

.img-side {
    height: 110px;
    margin: auto;
    display: block;
    object-fit: contain;
    object-position: left;
    width: 100%;
    min-width: 100px;
}
.img-bonus {
    height: 220px;
    width: auto;
    margin: auto;
    display: block;
    object-fit: contain;
}

@media screen and (max-width: 992px) {
    .img-side {
        max-width: 170px;
        margin: initial;
    }
}

@media screen and (max-width: 767px) {
    .img-bonus {
        height: initial;
    }
}

.w-sm-75 {
    width: 75%;
}
.w-sm-25 {
    width: 25%;
}

@media screen and (max-width: 576px) {
    .w-sm-75, .w-sm-25 {
        width: 100% !important;
    }
}

/* animation */

.bg-warning {
    background-color: transparent !important;
    position: relative;
    z-index: 1;
    transition: ease-in .2s;
}

.bg-warning-animated {
    background-color: rgb(253,243,154) !important;
}

.jarallax {
    position: relative;
    z-index: 0;
}
.jarallax > .jarallax-img {
    position: absolute;
    object-fit: cover;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}
.hi {   
    padding: 0 0.2em;
    line-height: 1;
    margin: 0 -0.1em;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-image: url(../img/hi1.png);
}
.hi-2 {   
    padding: 2 0.2em;
    line-height: 1;
    margin: 2 -0.1em;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-image: url(../img/hi1.png);
}
.special-headline {   
    font-family: 'Fira Sans Condensed', sans-serif !important;
}
h2.special-headline {
    font-family: 'Fira Sans Condensed', sans-serif !important;
}

.fancybox__backdrop {
    opacity: .5 !important;
}
.fancybox__content {
    background: transparent !important;
    max-width: 992px !important;
}

.card-male {
    background-color: #3484d9;
    background-image: linear-gradient(to bottom, #3484d9, #2c33b8);
}
.card-female {
    background-color: #9734d9;
    background-image: linear-gradient(to bottom, #9734d9, #742bb8);
}
.btn-cursor {
    position: relative;
    &:after {
        position: absolute;
        content: '';
        width: 2.25rem;
        height: 2.25rem;
        bottom: -1.5rem;
        right: 3rem;
        background-image: url(../img/cursor.png);
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        z-index: 1;
    }
}
@media screen and (max-width: 767px) {
    .btn-cursor {
        &:after {
            background-image: url(../img/cursor_hand.png);
        }
    }
}
.f-button.is-close-btn {
    background-color: rgba(0,0,0, .75) !important;
    border-radius: 50%;
}

/*  pulse css animation  */

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
    100% {
        transform: scale(1);
    }
}

.pulse {
    animation: pulse 2s infinite;
}
