/* ====================
1. resets & defaults
2. base styles
3. layout
4. components
5. content by pages
==================== */


:root{
    --body-bg-color: #020A11;

    --color-default: #fff;

    --color-primary: #007bff;
    --color-success-rgb: 1,198,137;
    --color-success: #01C689;
    --color-light: #f2f2f2;

    --color-gray-light: #E0E0E0;
    --color-gray: #BDBDBD;
    --color-gray-dark: #828282;
    --color-gray-darker: #333;

    --color-blue: #6181FA;
    --color-green: #3CF4BF;

    --container-size-sm: 980px;
    --container-size-md: 1160px;
    --container-size-xl: 1468px;

    --app-content-px: 15px;

    --border-radius-base: 15px;
}


/* ==================== 1. resets & defaults ==================== */
body{
    background: var(--body-bg-color);

    color: var(--color-default);
}



/* ==================== 2. base styles ==================== */


/* ----------- container ----------- */
.container,
.container-sm,
.container-md,
.container-xs{
    padding-left: var(--app-content-px);
    padding-right: var(--app-content-px);
}
.container .container-xs,
.container .container-md,
.container .container-md{
    padding-left: 0;
    padding-right: 0;
}

.container,
.container-md{
    max-width: calc(var(--container-size-md) + var(--app-content-px) * 2);
}
.container .container-md{
    max-width: var(--container-size-md);
}

.container-sm{
    max-width: calc(var(--container-size-sm) + var(--app-content-px) * 2);
}
.container .container-sm{
    max-width: var(--container-size-sm);
}

.container-xl{
    max-width: calc(var(--container-size-xl) + var(--app-content-px) * 2);
}

/*.container-xs{
    max-width: calc(600px + var(--app-content-px) * 2);
}
.container .container-xs{
    max-width: 600px;
}*/
/* ----------- /container ----------- */


/* ----------- row, col ----------- */
.row{
    --gutter-x: 1.25rem;
    --gutter-y: 0;

    margin-top: calc(-1 * var(--gutter-y));
    margin-right: calc(-.5 * var(--gutter-x));
    margin-left: calc(-.5 * var(--gutter-x));
}
.row > *{
    padding-left: calc(var(--gutter-x) * .5);
    padding-right: calc(var(--gutter-x) * .5);
    margin-top: var(--gutter-y);
}

.g-20, .gy-20 {
    --gutter-y: 1.25rem;
}
.g-20, .gx-20 {
    --gutter-x: 1.25rem;
}

.g-1, .gy-1 {
    --gutter-y-y: 0.25rem;
}
.g-1, .gx-1 {
    --gutter-y: 0.25rem;
}

.g-2, .gy-2 {
    --gutter-y: 0.5rem;
}
.g-2, .gx-2 {
    --gutter-x: 0.5rem;
}

.g-3, .gy-3 {
    --gutter-y: 1rem;
}
.g-3, .gx-3 {
    --gutter-x: 1rem;
}

.g-4, .gy-4 {
    --gutter-y: 1.5rem;
}
.g-4, .gx-4 {
    --gutter-x: 1.5rem;
}

.g-5, .gy-5 {
    --gutter-y: 3rem;
}
.g-5, .gx-5 {
    --gutter-x: 3rem;
}

.grid-items-stretch > div{
    display: flex;
    flex-direction: column;
}
.grid-items-stretch > div > *{
    flex-grow: 1;
}
/* ----------- /row, col ----------- */


/* ----------- spacing ----------- */
.mb-20{
    margin-bottom: 1.25rem !important;
}
/* ----------- /spacing ----------- */


/* ----------- border radius ----------- */
.border-radius{
    border-radius: var(--border-radius-base) !important;
}
/* ----------- /border radius ----------- */


/* ----------- colors ----------- */
.text-gray-light{
    color: var(--color-gray-light) !important;
}
.text-gray{
    color: var(--color-gray) !important;
}
.text-gray-dark{
    color: var(--color-gray-dark) !important;
}
.text-gray-darker{
    color: var(--color-gray-darker) !important;
}

.bg-gray-transparent{
    background-color: rgba(238,237,239,0.1) !important;
}

.bg-blur-gray{
    background-color: rgba(70, 65, 65, 0.4);
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
}

.bg-success{
    background-color: var(--color-success) !important;
}
.bg-success-light{
    background-color: rgba(var(--color-success-rgb),0.1) !important;
}

.bg-light{
    background-color: var(--color-light) !important;
}

.bg-blue{
    background-color: var(--color-blue) !important;
}
.bg-green{
    background-color: var(--color-green) !important;
}
/* ----------- /colors ----------- */


/* ----------- width ----------- */
.w-auto{
    width: auto !important;
    min-width: auto !important;
}

@media (min-width: 576px) {
    .w-sm-50{
        width: 50% !important;
    }
    .w-sm-100{
        width: 100% !important;
    }
}
@media (min-width: 768px) {
    .w-md-50{
        width: 50% !important;
    }
    .w-md-100{
        width: 100% !important;
    }
}
@media (min-width: 992px) {
    .w-lg-50{
        width: 50% !important;
    }
    .w-lg-100{
        width: 100% !important;
    }
}
/* ----------- /width ----------- */


/* ----------- icons ----------- */
.text-icon{
    font-size: 40px;
    font-style: normal;
}
/* ----------- /icons ----------- */



/* ==================== 3. layout ==================== */


/* ----------- page ----------- */
.app-page .section:last-child{
    margin-bottom: 100px;
}

.app-page .section-title {
    margin-bottom: 44px;
    font-weight: bold;
}

.app-page .page-title,
.app-page .section-title{
    background: -webkit-linear-gradient(#15F0C6, #97FFAE);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.app-page .section-head {
    max-width: 830px;
    margin: 0 auto 44px;
}
.app-page .section-head .title{
    margin-bottom: 0;
}
.app-page .section-head .text-wrap{
    font-size: 1rem;
}

.app-page .section.bg-lighting{
    z-index: 3;
}
.section.bg-lighting::before{
    content: "";
    border-radius: 50%;
    position: absolute;
    z-index: -1;
}
.bg-lighting-1::before,
.bg-lighting-3::before{
    width: 1800px;
    height: 1200px;
    background: rgb(8,8,8);
    background: linear-gradient(-149deg, rgba(99,56,220,1) 100%, rgba(8,8,8,1) 24%);
    filter: blur(500px);

    top: 300px;
    left: -1500px;

    transform: rotate(-41.84deg);
}
.bg-lighting-2::before{
    width: 1200px;
    height: 1200px;
    background: #663BE0;
    filter: blur(700px);

    top: 50%;
    right: 0;

    transform: translate(50%, -60%);
}
.bg-lighting-3::before{
    opacity: 0.7;
    left: -1600px;
}

.bg-lighting-4::before,
.bg-lighting-5::before,
.bg-lighting-6::before,
.bg-lighting-7::before,
.bg-lighting-8::before{
    width: 2250px;
    height: 1550px;
    background: rgb(8,8,8);
    filter: blur(500px);

    top: 50%;
}
.bg-lighting-4::before{
    background: linear-gradient(40deg, rgba(8,8,8,1) 0%, rgba(8,8,8,1) 24%, rgba(34,182,231,1) 100%);
    left: 0;
    transform: translate(-50%, -30%) rotate(-42deg);
}
.bg-lighting-5::before{
    background: linear-gradient(40deg, rgba(8,8,8,1) 0%, rgba(8,8,8,1) 24%, rgba(169,128,216,1) 100%);
    right: 0;
    transform: translate(40%, -5%) rotate(-42deg);
}
.bg-lighting-6::before{
    background: linear-gradient(40deg, rgba(8,8,8,1) 0%, rgba(8,8,8,1) 24%, rgba(86,175,160,1) 100%);
    top: 100%;
    right: 0;
    transform: translate(40%, -10%) rotate(-42deg);
    opacity: 0.7;
}

.bg-lighting-7::before{
    background: linear-gradient(40deg, rgba(8,8,8,1) 0%, rgba(8,8,8,1) 24%, rgba(99,56,220,1) 100%);
    left: 0;
    transform: translate(-55%, -15%) rotate(-42deg);
    opacity: 0.7;
}

.bg-lighting-8::before{
    background: linear-gradient(40deg, rgba(8,8,8,1) 0%, rgba(8,8,8,1) 24%, rgba(99,56,220,1) 100%);
    top: 0;
    right: 0;
    transform: translate(40%, -40%) rotate(-42deg);
    opacity: 0.7;
}

@media (min-width: 576px){
    .page-title,
    .section-title{
        font-size: 3.125rem;
    }
}
@media (min-width: 992px){
    .page-title{
        font-size: 3.75rem;
        line-height: 1.2;
    }
}
/* ----------- /page ----------- */


/* ----------- footer ----------- */
.app-page.hide-footer ~ .app-footer{
    display: none !important;
}
/* ----------- /footer ----------- */


/* ----------- bottom bar ----------- */
.app-bottom-bar{
    width: 100%;
    max-width: 1150px;
    padding: 0 4px;
    position: fixed;
    bottom: 4px;
    left: 50%;
    z-index: 300;
    transform: translateX(-50%);
}

.app-bottom-bar .main-wrap,
.app-bottom-bar .card{
    background-color: rgba(70, 65, 65, 0.4) !important;
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);

    border-radius: var(--border-radius-base);
}

.app-bottom-bar .main-wrap{
    border: 1px solid rgba(255,255,255,0.2);
    padding: 16px 10px;

    font-size: 14px;
}

.app-bottom-bar .card{
    display: none;
    border: none !important;
    margin-bottom: 9px;
    position: absolute;
    bottom: 100%;
    left: 4px;
    right: 4px;

    font-size: 15px;
}
.app-bottom-bar .card-body{
    padding: 40px;
}
.app-bottom-bar .card > button{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    background-color: rgba(255,255,255,0.2);
    border: 0;
    border-radius: 50%;
    padding: 0;

    position: absolute;
    top: 8px;
    right: 8px;
}
.app-bottom-bar .card > button img{
    flex-shrink: 0;
    width: 16px;
}

.app-bottom-bar .card a{
    color: inherit;
}

.app-bottom-bar .card .btn-white{
    background-color: #fff;
    border-color: #fff;
}
.app-bottom-bar .card .btn-white:hover{
    background-color: rgba(255,255,255,0.85);
}

@media (min-width: 768px) {
    .app-bottom-bar{
        padding: 0 var(--app-content-px);
        bottom: 20px;
    }

    .app-bottom-bar .main-wrap{
        padding-left: 24px;
        padding-right: 24px;
        font-size: 16px;
    }

    .app-bottom-bar .card{
        left: auto;
        right: var(--app-content-px);
    }
    .app-bottom-bar .card-body{
        padding: 50px;
    }
}
@media (min-width: 992px) {
    .app-bottom-bar .main-wrap{
        padding-left: 36px;
    }
}

@media (max-width: 767px) {
    /*.app-bottom-bar .main-wrap{
        padding: 20px;
    }*/
    .app-bottom-bar .main-wrap{
        text-align: center;
    }
    .app-bottom-bar .main-wrap .row > div + div{
        margin-top: 15px;
    }
}
/* ----------- /bottom bar ----------- */



/* ==================== 4. components ==================== */


/* ---------- title,text ---------- */
.title-md{
    font-size: 1.875rem !important;
}
.title-xs{
    font-size: 1.25rem !important;
}
.title-xxs{
    font-size: 1.125rem !important;
}

@media (min-width: 992px){
    .title-xxl{
        font-size: 3.75rem;
        line-height: 1.2;
    }
    h2,
    .title-lg{
        font-size: 2.5rem;
    }
}

.text-md{
    font-size: 1rem !important;
}

.check-list{
    list-style: none;
    padding-left: 0 !important;
}
.check-list li{
    min-height: 24px;
    background: url(../images/icons/check_green.svg) 0 3px no-repeat;
    background-size: 16px auto;
    padding-left: 28px;
}
.check-list li + li{
    margin-top: 15px;
}
/* ---------- /title,text ---------- */


/* ----------- buttons ----------- */
.btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 30px;
    padding: 7px 44px;

    font-size: 15px;
    font-weight: normal;
    line-height: 24px;
}
.btn-lg{
    min-width: 46px;
    padding: 12px 50px;

    font-size: 16px;
}
.btn-xl {
    font-size: 16px;
    padding-top: 12px;
    padding-bottom: 12px;
}
.btn-xxl {
    min-width: 200px;
    padding-top: 15px;
    padding-bottom: 15px;
    font-size: 18px;
}

.btn-xl > img + span,
.btn-xl > span + img{
    margin-left: 4px;
}
.btn-xl > img + span{
    position: relative;
    top: 1px;
}
/* ----------- /buttons ----------- */


/* ----------- /form ----------- */
.form-check {
    display: inline-flex;
    min-height: 23px;
    padding: 0;
    margin: 0;
}
.form-check .form-check-input {
    flex-shrink: 0;
    float: none;
    width: 23px;
    height: 23px;
    background-color: #D9D9D9;
    border: 2px solid #D9D9D9;
    border-radius: 6px;
    box-shadow: none !important;
    margin: 0 10px 0 0;
    position: relative;
}

.form-check .form-check-input:checked{
    background-color: #0171E3;
    border-color: #0171E3;
}

.form-check .form-check-label{
    color: #070707;
}
/* ----------- /form ----------- */


/* ----------- card ----------- */
.card{
    border-radius: var(--border-radius-base);
}

.card:not([class*=bg-]){
    /*background-color: #16181D;
    border: 1px solid #2C2B39;*/
    background-color: rgba(70, 65, 65, 0.4) !important;
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
}

.card-header,
.card-footer{
    border-color: rgba(255,255,255,0.3);
}

.card-title{
    margin: 0;

    font-size: 2.25rem;
    line-height: 1.1;
}
.card-title.size-sm{
    font-size: 2rem;
}

.card.bg-white,
.card.bg-white .card-title,
.card.bg-white .text-wrap,
.card.bg-light,
.card.bg-light .card-title,
.card.bg-light .text-wrap{
    color: #16181D;
}

.card.bg-blue,
.card.bg-blue .card-title,
.card.bg-blue .text-wrap{
    color: #fff;
}

.card.bg-green,
.card.bg-green .card-title,
.card.bg-green .text-wrap{
    color: #fff;
}


.card.bg-success-light,
.card.bg-success-light .card-title,
.card.bg-success-light .text-wrap{
    color: #069058;
}
/* ----------- /card ----------- */


/* ----------- pricing card ----------- */
.pricing-card{
    border: none;
    padding: 0 15px;
}

.pricing-card .card-header,
.pricing-card .card-body,
.pricing-card .card-footer{
    padding: 22px 0 !important;
}

.pricing-card .card-title{
    color: var(--color-gray-light);
    font-size: 24px;
}

.pricing-card .card-body{
    color: var(--color-gray);
    font-size: 15px;
}
.pricing-card .card-body .title{
    margin-bottom: 8px;

    font-size: 20px;
}

.pricing-card .card-body .group{
    margin-bottom: 25px;
}
.pricing-card .card-body .group:last-child{
    margin-bottom: 0;
}

.pricing-card .card-body ul{
    list-style: none;
}
.pricing-card .card-body ul li{
    min-height: 22px;
    background: url(../images/icons/check_green.svg) 0 4px no-repeat;
    background-size: 14px auto;
    padding-left: 24px;
}
.pricing-card .card-body ul li.is-excluded{
    background-image: url(../images/icons/xmark_red.svg);
}
.pricing-card .card-body li + li{
    margin-top: 6px;
}
.pricing-card .card-body img{
    width: 15px;
    margin-right: 10px;
}

@media (min-width: 992px) {
    .pricing-card .card-title{
        font-size: 28px;
    }
}
/* ----------- /pricing card ----------- */


/* ----------- card 2col with img ----------- */
.card-2col-with-img .card-body{
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}
.card-2col-with-img .row > div{
    display: flex;
    flex-direction: column;
}
.card-2col-with-img .col-info{
    align-items: flex-start;
    justify-content: center;
    padding-top: 40px;
    padding-bottom: 40px;

    color: var(--color-gray-light);
    font-size: 1.25rem;
}

.card-2col-with-img .col-info .text,
.card-2col-with-img .col-info .text-wrap{
    color: inherit;
    font-size: inherit;
}

.card-2col-with-img .col-info .card-title{
    color: inherit;
}
.card-2col-with-img .col-info .card-title:not(.title-lg){
    font-size: 1.875rem;
}

.card-2col-with-img .col-img{
    align-items: center;
    justify-content: flex-end;
}

@media (min-width: 992px) {
    .card-2col-with-img .col-img{
        height: 432px;
    }
}
/* ----------- card 2col with img ----------- */


/* ----------- section 2col with img ----------- */
.section-2col-with-img-wide{
    width: 100%;
    overflow: hidden;
}

.section-2col-with-img-wide .col-info{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.section-2col-with-img-wide .section-title{
    margin-bottom: 32px;
    line-height: 1.1;
}
.section-2col-with-img-wide .text-wrap{
    font-size: 1rem;
    line-height: 1.4;
}
.section-2col-with-img-wide .text-wrap + .btn{
    margin-top: 32px;
}

.section-2col-with-img-wide .col-img img{
    display: block;
    width: 100%;
    border-radius: var(--border-radius-base);
}

@media (min-width: 992px) {
    .section-2col-with-img-wide .col-info{
        padding-right: 0;
    }
    .section-2col-with-img-wide .col-img{
        padding-left: 40px;
    }

    .section-2col-with-img-wide .col-img > figure{
        width: 863px;
    }
}
@media (min-width: 1200px) {
    .section-2col-with-img-wide .col-img{
        padding-left: 80px;
    }
}

@media (max-width: 991px) {
    .section-2col-with-img-wide .col-img{
        margin-bottom: 50px;
    }
}
/* ----------- /section 2col with img ----------- */


/* ----------- img grid ----------- */
.img-grid{
    --gutter-y: 1.25rem;
}
.img-grid img{
    display: block;
    width: 100%;
    border-radius: var(--border-radius-base);
}
.img-grid img + img{
    margin-top: 1.25rem;
}

@media (max-width: 767px) {
    .img-grid img{
        max-width: 560px;
        margin-left: auto;
        margin-right: auto;
    }
}
/* ----------- /img grid ----------- */


/* ----------- boxed items grid ----------- */
.boxed-items-grid{
    --gutter-y: 1.25rem;
}
.boxed-items-grid > div{
    display: flex;
    flex-direction: column;
}
.boxed-grid-item + .boxed-grid-item{
    margin-top: 1.25rem;
}

.boxed-grid-item{
    width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: var(--border-radius-base);
    position: relative;
    overflow: hidden;
}
.boxed-grid-item::before{
    content: '';
    width: 100%;
    height: 100%;
    background: rgb(99,56,220);
    background: linear-gradient(180deg, rgba(99,56,220,0.4) 0%, rgba(99,56,220,1) 100%);
    opacity: 0.5;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}
.boxed-grid-item .wrap{
    padding: 23px 18px;
    position: relative;
    z-index: 2;
}

.boxed-grid-item,
.boxed-grid-item .title{
    font-size: 20px;
    font-weight: bold;
    line-height: 1.1;
}

.boxed-grid-item.item-primary,
.boxed-grid-item.item-secondary-1{
    flex-grow: 1;
}

.boxed-grid-item.item-primary,
.boxed-grid-item.item-primary .wrap{
    display: flex;
    flex-direction: column;
}
.boxed-grid-item.item-primary .wrap{
    flex-grow: 1;
    align-items: center;
    justify-content: space-between;
    padding: 23px 16px 30px;
    text-align: center;
}

.boxed-grid-item.item-secondary-1{
    height: 229px;
}
.boxed-grid-item.item-secondary-1::before{
    opacity: 0.8;
}
.boxed-grid-item.item-secondary-1 .wrap{
    position: absolute;
    bottom: 0;
    left: 0;
}
.boxed-grid-item.item-secondary-1 .title{
    color: var(--color-gray-light);
    font-size: 26px;
}

.boxed-grid-item.item-secondary-2 .wrap{
    display: flex;
    align-items: center;
}
.boxed-grid-item.item-secondary-2 .wrap img{
    flex-shrink: 0;
    width: 60px;
    margin-right: 14px;
}

@media (min-width: 576px) {
    .boxed-grid-item,
    .boxed-grid-item .title{
        font-size: 22px;
    }

    .boxed-grid-item.item-primary .wrap{
        padding: 23px 38px 40px;
    }
}
@media (min-width: 992px) and (max-width: 1140px) {
    .boxed-grid-item.item-secondary-2 .wrap img{
        width: 40px;
        margin-right: 10px;
    }
    .boxed-grid-item.item-secondary-2 .title{
        font-size: 20px;
    }
}
/* ----------- /boxed items grid ----------- */


/* ----------- accordion ----------- */
.accordion-item + .accordion-item{
    margin-top: 10px;
}

.accordion-item-head,
.accordion-item-body{
    padding: 20px 24px;

    color: var(--color-gray);
}

.accordion-item-head{
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 82px;
    cursor: pointer;
}
.accordion-item-head::after{
    flex-shrink: 0;
    width: 17px;
    height: 17px;
    margin-left: 16px;
}
.accordion-item-head .title{
    color: inherit;
    font-size: 1rem;
    font-weight: normal;
}

.accordion-item-body{
    padding-top: 10px;
    padding-bottom: 30px;
}
.accordion-item-body .text-wrap{
    color: inherit;
    font-size: 13px;
}
/* ----------- /accordion ----------- */


/* ----------- accordion with slides ----------- */
.section-accordion-with-slides .accordion-item{
    border: none;
}
.section-accordion-with-slides .accordion-item + .accordion-item{
    margin-top: 24px;
}

.section-accordion-with-slides .accordion-item-head{
    min-height: 60px;
    padding-top: 16px;
    padding-bottom: 16px;

    transition: padding-top ease 0.2s;
}
.section-accordion-with-slides .accordion-item-head::after{
    display: none;
}
.section-accordion-with-slides .is-open .accordion-item-head{
    padding-top: 26px;
}

.section-accordion-with-slides .accordion-item-head .title{
    color: #fff;
    font-size: 1.375rem;
    font-weight: bold;
}

.section-accordion-with-slides .accordion-item-body{
    padding-top: 0;
    padding-bottom: 24px;
}
.section-accordion-with-slides .accordion-item-body .text-wrap{
    font-size: 16px;
}

.accordion-section-slider{
    width: 100%;
}
.section-accordion-with-slides .img-wrap{
    width: 100%;
    background-color: rgba(255,255,255,0.5);
    border-radius: 17px;
    padding: 4px;
    position: relative;
    overflow: hidden;
}
.section-accordion-with-slides .img-wrap img{
    display: block;
    width: 100%;
    border-radius: 17px;
}

@media (min-width: 992px) {
    .section-accordion-with-slides .accordion-item-body .text-wrap{
        min-height: 96px;
    }
}

@media (max-width: 991px) {
    .section-accordion-with-slides .col-img{
        margin-top: 30px;
    }
}
/* ----------- /accordion with slides ----------- */


/* ----------- cards grid ----------- */
.cards-grid{
    --gutter-y: 1.25rem;
}

.card.cards-grid-item{
    max-width: 375px;
    border-radius: 20px;
    overflow: hidden;
    margin: 0 auto;
}

.card.cards-grid-item .card-body{
    display: flex;
    flex-direction: column;
    padding: 0;
}

.card.cards-grid-item .info-wrap,
.card.cards-grid-item .img-wrap{
    width: 100%;
    padding: 24px 20px 20px;
}
.card.cards-grid-item .img-wrap{
    position: relative;
    z-index: 1;
}
.card.cards-grid-item .info-wrap{
    z-index: 2;
}
.card.cards-grid-item .info-wrap + .img-wrap{
    padding-top: 0;
}
.card.cards-grid-item .img-wrap + .info-wrap{
    padding-top: 4px;
    padding-bottom: 24px;
}

.card.cards-grid-item .border-radius{
    border-radius: 10px !important;
}
.card.cards-grid-item .border-radius-lg{
    border-radius: 15px !important;
}
.card.cards-grid-item .box-shadow{
    box-shadow: 0 3px 15px 0 rgba(0,0,0,0.3) !important;
}

.cards-grid-item .card-title{
    color: var(--color-gray-light);
    font-size: 1.875rem;
}
.cards-grid-item .card-title.size-lg{
    font-size: 2.25rem;
}
.cards-grid-item .text-wrap{
    color: var(--color-gray-light);
    font-size: 1rem;
}
.cards-grid-item .card-title + .text-wrap{
    margin-top: 16px;
}

/*.cards-grid-item .img-wrap{
    margin-top: 24px;
}*/
/*.cards-grid-item .img-wrap{
    padding-top: 20px;
}
.cards-grid-item .img-wrap figure{
    border-radius: 12px;
    margin-bottom: 10px;
}
.cards-grid-item .img-wrap figure:last-child{
    margin-bottom: 0;
}
.cards-grid-item .ratio-1::before{
    padding-top: 20.425%;
}
.cards-grid-item .ratio-2::before{
    padding-top: 34.535%;
}
.cards-grid-item .ratio-3::before{
    padding-top: 44.745%;
}
.cards-grid-item .ratio-4::before{
    padding-top: 64.265%;
}
.cards-grid-item .ratio-5::before{
    padding-top: 76.28%;
}*/

@media (min-width: 768px) {
    .card.cards-grid-item{
        max-width: 100%;
    }
}
@media (min-width: 1200px) {
    .card.cards-grid-item .info-wrap{
        padding: 34px;
    }
}


/*.cards-grid .card:not(.card.cards-grid-item){
    border-radius: 20px;
}
.cards-grid .card:not(.card.cards-grid-item) .card-body{
    padding: 34px;
}*/
/* ----------- /cards grid ----------- */


/* ----------- cards list ----------- */
.cards-list-indexed{
    counter-reset: cards-counter;
}
.cards-list-indexed .card{
    margin-bottom: 3rem;
}
.cards-list-indexed .card .card-body{
    padding: 36px 24px;
}
.cards-list-indexed .index{
    display: block;
    font-size: 140px;
    font-weight: 300;
    line-height: 0.75;
}
.cards-list-indexed .index::before{
    counter-increment: cards-counter;
    content: counter(cards-counter);
}

@media (min-width: 768px) {
    .cards-list-indexed .card .card-body{
        padding: 48px 34px;
    }
}
@media (min-width: 992px) {
    .cards-list-indexed .card{
        margin-bottom: 5rem;
    }
    .cards-list-indexed .card .card-body{
        padding: 92px 64px;
    }
    .cards-list-indexed .index{
        font-size: 200px;
        text-align: center;
    }
}
/* ----------- /cards list ----------- */


/* ----------- slider ----------- */
.carousel .splide__track{
    padding-left: var(--app-content-px) !important;
    /*padding-right: 50px !important;*/
}

.carousel .splide__arrows{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
    max-width: calc(var(--container-size-md) + var(--app-content-px) * 2);
    padding-left: var(--app-content-px);
    padding-right: var(--app-content-px);

    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);

    gap: 15px;
}
.carousel .splide__arrow{
    width: 34px;
    height: 34px;
    background-color: rgba(255,255,255,0.7);
    opacity: 1;
    position: relative;
    top: 0;
    left: auto;
    right: auto;

    transform: none;
}
.carousel .splide__arrow:disabled {
    opacity: .3;
}
.carousel .splide__arrow svg{
    display: block;
    width: 17px;
    height: auto;
    fill: #616163;
}

@media (min-width: 1200px) {
    .carousel .splide__track{
        padding-left: calc((100vw - var(--container-size-md) - var(--app-content-px)) / 2) !important;
        /*padding-right: 50px !important;*/
    }
}


/* --- items --- */
.slider-item{
    --width: 260px;
    --gap: 20px;
    --img-ratio: 100%;
    --img-ratio-2: 156%;

    width: calc(var(--width) + var(--gap));
    padding-right: var(--gap);
}

.slider-item .img-wrap{
    flex-shrink: 0;
    border-radius: 15px;
    overflow: hidden;
}
.slider-item figure.img-wrap::before,
.slider-item .img-wrap figure::before{
    padding-top: var(--img-ratio);
}
.slider-item figure.img-wrap.ratio-2::before,
.slider-item .img-wrap.ratio-2 figure::before{
    padding-top: var(--img-ratio-2);
}
.slider-item .img-wrap img{
    display: block;
    width: 100%;
    object-fit: cover;
}

.slider-item > .slide-title,
.slider-item .info-wrap{
    padding: 15px 0;
}
.slider-item .info-wrap{
    color: var(--color-gray);
    font-size: 14px;
}

.slider-item .slide-title{
    color: inherit;
    font-size: 1.25rem;
    font-weight: bold;
    line-height: 1.25;
}
.slider-item .slide-title + *{
    margin-top: 5px;
}

.slider-item-wide{
    --width: 75vw;
    --img-ratio: 68%;
}

.slider-item.content-overlay .info-wrap{
    position: absolute;
    bottom: 0;
    left: 0;
    right: var(--gap);
    z-index: 3;

    color: #fff;
}
.slider-item.content-overlay .img-wrap::after{
    content: "";
    width: 100%;
    height: 60%;
    background: #000;
    background: linear-gradient(180deg,rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 2;
}

@media (min-width: 576px) {
    .slider-item:not(.slider-item-wide){
        --width: 400px;
    }

    .slider-item > .slide-title{
        padding: 36px 0 24px;
    }
    .slider-item > .slide-title{
        font-size: 1.875rem;
    }

    .slider-item .info-wrap{
        padding: 15px;
        font-size: 1rem;
    }
    .slider-item .info-wrap .slide-title{
        font-size: 1.5rem;
    }
    .slider-item .info-wrap .slide-title + *{
        margin-top: 10px;
    }
}
@media (min-width: 768px) {
    .slider-item{
        --width: 538px;
    }

    .slider-item .info-wrap{
        padding: 24px 32px;
    }
}
@media (min-width: 1200px) {
    .slider-item:not(.slider-item-wide){
        --width: 453px;
        --gap: 50px;
    }
}

@media (max-width: 767px) {
    .slider-item.content-overlay .info-wrap {
        padding: 20px 15px;
    }
}
/* ----------- /slider ----------- */


/* ----------- item 2col vertical ----------- */
.item-2col-vertical{
    display: flex;
    justify-content: center;
}

.item-2col-vertical .img-wrap{
    flex-grow: 1;
    max-width: 376px;
}
.item-2col-vertical .img-wrap img{
    display: block;
    width: 100%;
}

.item-2col-vertical .info-wrap{
    flex-grow: 1;
    max-width: 294px;
}
.item-2col-vertical .info-wrap > div{
    margin: 56px 0 0;
}
.item-2col-vertical .info-wrap .title{
    margin-bottom: 18px;
}

@media (min-width: 768px) {
    .item-2col-vertical{
        display: flex;
        justify-content: center;
        gap: 40px;
    }
    .item-2col-vertical .info-wrap{
        max-width: 294px;
    }
}
@media (min-width: 992px) {
    .item-2col-vertical{
        gap: 92px;
    }
}

@media (max-width: 767px) {
    .item-2col-vertical{
        flex-direction: column;
        align-items: center;
    }
}
/* ----------- /item 2col vertical ----------- */



/* ==================== 5. content by pages ==================== */



/* ----------- e-commerce ----------- */

/* --- intro --- */
.section.section-intro{
    padding-top: 100px;
    /*overflow: hidden;*/
}

.section-intro .section-title{
    margin-bottom: 0;
}
.section-intro .text{
    font-size: 1.375rem;
}

.section-intro .img-container{
    margin-top: 34px;
    width: 100%;
}
.section-intro .img-container > div{
    margin: 0 -33px;
}
.section-intro .img-container .row{
    align-items: flex-end;
}

.section-intro .img-container img{
    display: block;
    width: 100%;
}

.section-intro .img-container .row > div:nth-child(2){
    width: 40.345%;
    transform: translateY(25px);
}

@media (max-width: 991px) {
    .section-intro .img-container > div{
        margin: 0 -40vw;
    }
}

.page-dark .contact-section svg.linkedin,
.page-dark .contact-section svg.facebook {
    fill: #fff;
}
/* ----------- /e-commerce ----------- */





/*
==============================================
animations
==============================================
*/
.animated {
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    visibility: visible !important;
}


/* ---------- fadeIn ---------- */
.fadeIn {
    animation-name: fadeIn;
    -webkit-animation-name: fadeIn;
    animation-duration: 1.5s;
    -webkit-animation-duration: 1.5s;
    animation-timing-function: ease-in-out;
    -webkit-animation-timing-function: ease-in-out;
    visibility: visible;
}

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0.0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0.0;
    }

    100% {
        opacity: 1;
    }
}


/* ---------- fadeInUp ---------- */
@-webkit-keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
}

/* ---------- fadeInDown ---------- */
@-webkit-keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.fadeInDown {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
}

/* ---------- fadeInLeft ---------- */
@-webkit-keyframes fadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
    }
}

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        transform: translateX(-20px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.fadeInLeft {
    -webkit-animation-name: fadeInLeft;
    animation-name: fadeInLeft;
}

/* ---------- fadeInRight ---------- */
@-webkit-keyframes fadeInRight {
    0% {
        opacity: 0;
        -webkit-transform: translateX(20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
    }
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        transform: translateX(20px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.fadeInRight {
    -webkit-animation-name: fadeInRight;
    animation-name: fadeInRight;
}

/* ---------- fadeInLeftLg ---------- */
@-webkit-keyframes fadeInLeftLg {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-100px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
    }
}

@keyframes fadeInLeftLg {
    0% {
        opacity: 0;
        transform: translateX(-100px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.fadeInLeftLg {
    -webkit-animation-name: fadeInLeftLg;
    animation-name: fadeInLeftLg;
}

/* ---------- fadeInRightLg ---------- */
@-webkit-keyframes fadeInRightLg {
    0% {
        opacity: 0;
        -webkit-transform: translateX(100px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
    }
}

@keyframes fadeInRightLg {
    0% {
        opacity: 0;
        transform: translateX(100px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.fadeInRightLg {
    -webkit-animation-name: fadeInRightLg;
    animation-name: fadeInRightLg;
}

/* ---------- wiggle ---------- */
.wiggle {
    animation: wiggle 5s linear infinite;
    animation-play-state: running;
    animation-delay: 2s;
}

@keyframes wiggle {
    2% {
        -webkit-transform: translateX(3px) rotate(2deg);
        transform: translateX(3px) rotate(2deg);
    }

    4% {
        -webkit-transform: translateX(-3px) rotate(-2deg);
        transform: translateX(-3px) rotate(-2deg);
    }

    6% {
        -webkit-transform: translateX(3px) rotate(2deg);
        transform: translateX(3px) rotate(2deg);
    }

    8% {
        -webkit-transform: translateX(-3px) rotate(-2deg);
        transform: translateX(-3px) rotate(-2deg);
    }

    10% {
        -webkit-transform: translateX(2px) rotate(1deg);
        transform: translateX(2px) rotate(1deg);
    }

    12% {
        -webkit-transform: translateX(-2px) rotate(-1deg);
        transform: translateX(-2px) rotate(-1deg);
    }

    14% {
        -webkit-transform: translateX(2px) rotate(1deg);
        transform: translateX(2px) rotate(1deg);
    }

    16% {
        -webkit-transform: translateX(-2px) rotate(-1deg);
        transform: translateX(-2px) rotate(-1deg);
    }

    18% {
        -webkit-transform: translateX(1px) rotate(0);
        transform: translateX(1px) rotate(0);
    }

    20% {
        -webkit-transform: translateX(-1px) rotate(0);
        transform: translateX(-1px) rotate(0);
    }
}