@font-face {
    font-family: "Barlow";
    src: url('../fonts/Barlow-Thin.otf');
    font-display: swap;
}

@font-face {
    font-family: "BarlowLight";
    src: url('../fonts/Barlow-Light.otf');
    font-display: swap;
}

@font-face {
    font-family: "BarlowRegular";
    src: url('../fonts/Barlow-Regular.otf');
    font-display: swap;
}

@font-face {
    font-family: "BarlowBold";
    src: url('../fonts/Barlow-Bold.ttf');
    font-display: swap;
}

@font-face {
    font-family: "BarlowSemiBold";
    src: url('../fonts/Barlow-SemiBold.ttf');
    font-display: swap;
}

@font-face {
    font-family: "BarlowMedium";
    src: url('../fonts/Barlow-Medium.ttf');
    font-display: swap;
}

:root {
    --theme: #00a2e2;
    --white: #fff;
    --black: #414042;
    --black-v1: #333;
    --grey-dark: #1d1d1d;
    --dark-black2: #2C2E30;
    --grey: #CBCDCE;
    --grey2: #E8E8E8;
    --grey3: #c9c9c9;
    --grey4: #808080;
    --grey5: #5F6167;
    --grey6: #656565;
    --grey7: #F7F7F7;
    --grey8: #FBF9F9;
    --bs-gutter-x: 1.25rem;
}

.errors {
    color: red;
}

.clrblue {
    color: var(--theme);
}

.errorClass {
    border: 1px solid red !important;
}

body {
    background: var(--white);
    color: var(--black);
    font-family: "BarlowRegular", sans-serif;
    font-size: 16px;
    overflow-x: hidden;
}

body.is-preload *,
body.is-preload *:before,
body.is-preload *:after {
    -webkit-animation: none !important;
    animation: none !important;
    -webkit-transition: none !important;
    transition: none !important;
}

body.is-preload .main-inner {
    opacity: 0;
    pointer-events: none;
    -webkit-transition: opacity 1s ease;
    transition: opacity 1s ease;
}

body.is-preload .main-inner .home-banner {
    opacity: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    font-family: "BarlowBold", sans-serif;
}

h1,
.h1 {
    font-size: 50px;
}

h2,
.h2 {
    font-size: 40px;
}

h3,
.h3 {
    font-size: 32px;
}

h4,
.h4 {
    font-size: 22px;
}

h5,
.h5 {
    font-size: 20px;
}

.fw-medium {
    font-family: "BarlowMedium", sans-serif;
    font-weight: 500 !important;
}

dl,
ol,
ul {
    margin: 0;
}

a {
    color: currentColor;
}

p {
    font-family: "BarlowRegular", sans-serif;
}

.space-top {
    padding-top: 3.5rem;
}

.space-bottom {
    padding-bottom: 3.5rem;
}

.radius-50 {
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.fw-normal {
    font-family: "BarlowRegular", sans-serif;
}

.btn-close {
    background: rgba(0, 0, 0, 0) url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath d='M8 1.2A6.74 6.74 0 0 0 1.2 8 6.74 6.74 0 0 0 8 14.8 6.74 6.74 0 0 0 14.8 8 6.74 6.74 0 0 0 8 1.2zM0 8c0-4.4 3.6-8 8-8s8 3.6 8 8-3.6 8-8 8-8-3.6-8-8zm10.6-2.6a.61.61 0 0 1 0 .8L8.8 8l1.9 1.9a.61.61 0 0 1 0 .8.61.61 0 0 1-.8 0L8 8.8l-1.9 1.9a.61.61 0 0 1-.8 0 .61.61 0 0 1 0-.8L7.2 8 5.4 6.1a.61.61 0 0 1 0-.8.61.61 0 0 1 .8 0l1.9 1.9L10 5.3c.1-.1.4-.1.6.1z' fill-rule='evenodd' fill='%23000'/%3e%3c/svg%3e") center/1.75em auto no-repeat !important;
    border-radius: 1rem;
    opacity: .55;
    display: flex;
    justify-content: flex-end;
    text-align: right;
    margin-left: auto;
    width: 1.75rem;
    height: 1.75rem;
}

.btn-global {
    text-transform: uppercase;
    background: var(--white);
    color: var(--black);
    border-color: var(--white);
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    padding: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    box-shadow: none !important;
    font-family: "BarlowMedium", sans-serif;

}

.btn-primary:hover,
.btn-primary:focus {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
}

.btn-small {
    font-size: 12px;
    height: 35px;
}

.btn.outline {
    border-color: var(--white);
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
}

.btn.btn-border {
    background-color: transparent;
    color: var(--white);
}

.btn.btn-black {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
}

.btn-border-black {
    background-color: transparent;
    color: var(--black);
    border-color: var(--black);
}

.btn-blue {
    background: var(--theme);
    color: var(--white);
    border-color: var(--theme);
}

.btn-blue:hover,
.btn-blue:focus {
    background: var(--theme);
    color: var(--white);
    border-color: var(--theme);
}

.bgblack {
    background: var(--black);
}

.bg-dark {
    background: var(--grey-dark);
}

.value-input.errors {
    color: var(--black);
}

.logo img {
    width: 100px;
}

.logo {
    display: inline-block;
}

.footer-theme p {
    color: var(--white);
    margin: 0;
    text-align: center;
}

.footer-theme {
    padding: 15px 0;
}

.value-input {
    width: 100%;
    height: 55px;
    padding: 10px 20px;
    color: var(--grey6);
    outline: none;
    border: 1px solid #ccc;
    margin: 0 0 0px 0;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    text-overflow: ellipsis;
}

.value-input:focus {
    box-shadow: none;
    border-color: #86b7fe;
}

select.form-control {
    appearance: auto;
    -webkit-appearance: auto;
    -moz-appearance: auto;
}

.form-control::-webkit-input-placeholder {
    /* Edge */
    color: var(--grey6);
}

.form-control:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: var(--grey6);
}

.form-control::placeholder {
    color: var(--grey6);
}

.value-grid {
    margin-bottom: 1rem;
}

.smalltext {
    font-size: 14px !important;
    font-family: 'BarlowLight';
}

.fw-semibold {
    font-family: 'BarlowSemiBold';
}

.fw-bold {
    font-family: 'BarlowBold';
}

.round-border {
    border: 2px solid var(--grey2);
    padding: 5px;
    width: 150px;
    height: 150px;
}

.form-wrap-d {
    background: var(--dark-black2);
}

.opacity-text75 {
    opacity: .75;
}

.header {
    padding: 25px 0;
}

/* .home-banner{
    height: 40vw;
} */
.home-banner>img {
    height: 100%;
    object-fit: cover;
}

.home-banner .container {
    position: static;
}

/* .homebannerimg {
    margin: 0 -1rem;
    position: relative;
} */

.home-bannertext {
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    left: auto;
    color: var(--white);
}

.home-bannertext h1 {
    line-height: 1.2;
}

.home-bannertext>*:not(:last-child) {
    margin-bottom: 30px;
}

.home-bannertext h5 {
    font-family: 'BarlowLight';
    font-weight: 400;
}

.paragrey {
    color: var(--grey6);
}

.gerbox-ft {
    background: var(--grey8);
    padding: 2rem;
}

.download-section {
    background: var(--grey8);
    padding: 2rem;
}

.gerbox-ft p {
    margin-bottom: 0;
}


.levelsgame {
    background-color: var(--grey8);
}

.lebvlboxinside {
    background: var(--white);
    padding: 1.5rem 1rem;
    text-align: center;
    box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000, 0px 0px 9px 1px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.lebvlboxinside h5 {
    flex: 1 1 0%;
}

.lebvlboxinside p,
.slidebox-swipe p {
    font-size: 14px;
}

.lebvlboxinside p:last-child {
    margin-bottom: 0;
}

.leveloxitems>.row {
    --bs-gutter-x: 2.5rem;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    border: 1px solid var(--grey4);
    background: var(--white);
    opacity: 1;
}

.fitcarosal .swiper-slide p {
    color: var(--grey6);
}

.slider__pagination   .swiper-pagination-bullet {
    margin: 0 5px;
}

.swiper-pagination-bullet-active {
    background: var(--grey4);
}

.authors p:last-child {
    font-size: 14px;
    margin-bottom: 0;
}

.slidebox-swipe {
    border: 1px solid rgba(228, 228, 231, 1);
    padding: 10px;
    box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000, 0px 0px 9px 1px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.slidebox-swipe>p {
    height: calc(21px * 8);
}

.authors {
    flex: 1 1 0%;
}

.fitcarosal .swiper-slide {
    height: 100%;
    margin-bottom: 1rem;
}

@-webkit-keyframes flip-horizontal-bottomactive {
    0% {
        opacity: 0.1;
    }

    100% {
        opacity: 1;
    }
}

@keyframes flip-horizontal-bottomactive {
    0% {
        opacity: 0.1;
    }

    100% {
        opacity: 1;
    }
}

.loopitemslist {
    display: none;
    align-items: center;
    opacity: 1;
    transition: all 0.3s ease;
    overflow: hidden;
    transition: transform 0.3s ease-out;
    -webkit-animation: flip-horizontal-bottom 0.4s cubic-bezier(0.455, 0.030, 0.515, 0.955) both;
    animation: flip-horizontal-bottom 0.4s cubic-bezier(0.455, 0.030, 0.515, 0.955) both;
}

.loopitemslist.active {
    display: inline-flex;
    opacity: 1;
    transform: scale(1);
    -webkit-animation: flip-horizontal-bottomactive 0.4s cubic-bezier(0.455, 0.030, 0.515, 0.955) both;
    animation: flip-horizontal-bottomactive 0.4s cubic-bezier(0.455, 0.030, 0.515, 0.955) both;
}

.slider__pagination {
    text-align: center;
}

@media (min-width: 1200px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 1240px;
    }
}

/***********************************Responsive**********************/
@media(min-width:1200px) and (max-width:1400px) {}

@media(min-width:992px) and (max-width:1199px) {}

@media(max-width:1199px) {

    h2,
    .h2 {
        font-size: 28px;
    }

    h3,
    .h3 {
        font-size: 26px;
    }

    h4,
    .h4 {
        font-size: 22px;
    }

    h5,
    .h5 {
        font-size: 16px;
    }

    h1,
    .h1 {
        font-size: 35px;
    }

}

@media(max-width:992px) {
    .home-bannertext {
        background: var(--black);
        width: 100%;
        transform: inherit;
        position: static;
        padding: 1rem;
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .home-bannertext h1 {
        line-height: 1.2;
    }

    .home-bannertext>*:not(:last-child) {
        margin-bottom: 25px;
    }

    .home-banner .container {
        padding: 0;
        max-width: 100%;
    }

    .sedncontent-wd .paragrey br {
        display: none;
    }
}

@media(min-width:768px) and (max-width:991px) {
    .order {
        order: 2;
    }

    body {
        font-size: 14px;
    }

    .leveloxitems>.row {
        --bs-gutter-x: 1.5rem;
    }
}

@media (min-width: 768px) {
    .position-md-absolute {
        position: absolute !important;
    }

    .wmd-50 {
        width: 70%;
    }

    .wmd-70 {
        width: 80%;
    }
}

@media (min-width: 992px) {
    .position-lg-relative {
        position: relative !important;
    }

    .position-lg-absolute {
        position: absolute !important;
    }

    .position-lg-fixed {
        position: fixed !important;
    }

    .wmd-50 {
        width: 50%;
    }

    .wmd-70 {
        width: 86%;
    }

    .home-banner {
        height: 40vw;
    }

}

@media(max-width:767px) {

    body,
    .black-fridaybox,
    .btn-primary,
    .authors p:last-child {
        font-size: 14px;
    }

    .order {
        order: 2;
    }

    .smalltext {
        font-size: 11px !important;
    }

    h1,
    .h1 {
        font-size: 30px;
    }

    .space-bottom {
        padding-bottom: 3rem;
    }

    .space-top {
        padding-top: 3rem;
    }

    .home-bannertext {
        margin-top: -5rem;
    }

    .home-bannertext h1 {
        font-size: 28px;
    }

    .btn-global {
        padding: 0.85rem;
        line-height: 1;
        padding-left: 12px;
        font-size: 13px;
        padding-right: 12px;
    }

    .getbtn .btn {
        padding-left: 20px;
        padding-right: 20px;
    }

    .value-grid {
        margin-bottom: 20px;
    }

    .value-input {
        height: 50px;
        font-size: 14px;
        padding: 10px 14px;
    }

    .logo img {
        width: 80px;
        height: 45px;
    }

    .lebvlboxinside p {
        font-size: 13px;
    }

}

/*cutom*/
@media(min-width:991px) {
    .mx-lg-50 {
        width: 50%;
    }

    .mx-lg-75 {
        width: 85%;
    }

    .mx-lg-60 {
        width: 60%;
    }

    .benefits-lg {
        padding: 0 3rem;
    }

    .download-section {
        padding: 50px 100px;
    }
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}