:root {
    --header-height: 40px;
    --header-bg-color: rgb(10 44 56 / 86%);
    --header-color: white;
    --header-blur: 10px;
    --border-radius: 4px;
    --img-cursor: pointer;
    --background-color-light: #f0f7f9;
    --background-color-white: white;
    --header-padding: 0 12px;
    --header-color-dark: #343a40;
    --tooltip-bg-color: rgba(10, 44, 56, 0.9);
    --menu-padding: 5px;
    --menu-transition: 0.1s ease-in-out;
    --hero-bg-size: cover;
    --hero-color: white;
    --hero-height: 100vh;
    --hero-text-shadow: -10px -10px 30px rgb(51, 51, 51), 10px -10px 30px rgb(51, 51, 51), -10px 10px 30px rgb(51, 51, 51), 10px 10px 30px rgb(51, 51, 51);
    --footer-bg-color: #333;
    --footer-color: white;
    --footer-padding: 5px 0;
    --btn-bottom: 100px;
    --btn-bg-color: transparent;
    --btn-color: white;
    --btn-border-color: white;
    --btn-animation: bobbing 2s ease-in-out infinite;
    --btn-blur: 10px;
    --btn-bg-color-blurred: rgba(10, 44, 56, 0.5);
    --loader-bg-color: white;
    --loader-z-index: 1000;
    --loader-transition: opacity 1s ease-out;
    --loading-dot-color: #0a2c38;
    --loading-dot-size: 10px;
    --loading-dot-margin: 0 5px;
    --loading-dot-radius: 50%;
    --loading-text-size: 24px;
    --loading-text-color: #0a2c38;
    --loading-text-margin: 20px;
    --hover-box-bottom-height: 40px;
    --hover-box-transition-duration: 0.7s;
    --hover-box-text-color: #fff;
    --hover-box-text-background: rgba(0, 0, 0, 0.7);
    --hover-box-text-font-family: Noto Sans, Roboto, Noto Sans TC, sans-serif, -apple-system, PingFang SC, Arial;
    --hover-box-text-font-size: 18px;
    --hover-box-text-font-weight: 400;
    --hover-box-slide-color: #fd1f1fed;
    --hover-box-blur-amount: 2px;
    --hover-box-scale-factor: 1.3;
    --hover-box-bg-color: #f0f0f0;
}

header {
    position: fixed;
    height: var(--header-height);
    width: 100%;
    color: var(--header-color);
    backdrop-filter: blur(var(--header-blur));
    display: flex;
    background-color: var(--header-bg-color);
    z-index: 15;
}

img,
iframe {
    border-radius: var(--border-radius);
}

img {
    cursor: var(--img-cursor);
}

.container {
    padding-top: 15px;
}

.leftHeaderdiv {
    display: flex;
    align-items: center;
    padding-left: 0;
    padding-top: 3px;
}

header .container {
    position: relative;
}

.headImg {
    height: calc(var(--header-height) - 5px);
    padding: 5px 15px 5px 0;
}

.feature {
    background-color: var(--background-color-light);
}

#sale {
    background-color: var(--background-color-white);
}

#inHeader {
    display: flex;
    justify-content: flex-end;
    flex-wrap: nowrap;
    justify-content: space-between;

    .logo-text {
        font-family: 'JURA', Arial, sans-serif;
        font-size: 30px;
        line-height: 30px;
        font-weight: bold;
    }

    .phone-text {
        font-family: 'JURA', Arial, sans-serif;
        font-weight: 700;
        font-size: 18px;
        line-height: 24px;
    }
}

h1 {
    font-size: 36px;
}

h1,
h2,
h3,
h4 {
    font-family: 'JURA', Arial, sans-serif !IMPORTANT;
    font-weight: bold;
}

.divider {
    width: 60px;
    height: 3px;
    background: #0a2c38;
    margin: 10px auto;
}

#about {
    color: var(--header-color-dark);
}

.tooltip-inner {
    background-color: var(--tooltip-bg-color);
    backdrop-filter: blur(var(--header-blur));
    color: var(--header-color);
}

.min-container-height {
    min-height: calc(100vh - 177px);
    overflow: hidden;
    text-align: center;
}

.share-button>a {
    border-radius: 0 0 4px 0;
}

.menuElement {
    text-align: center;
    cursor: pointer;
    width: fit-content;
    transition: var(--menu-transition);
    padding: var(--menu-padding);
}

.menuElement a {
    text-decoration: none;
    color: var(--header-color);
}

.hero {
    background-size: var(--hero-bg-size);
    color: var(--hero-color);
    height: var(--hero-height);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-direction: column;
}

.lableText {
    height: 95vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.btnGoMore {
    height: 5vh;
}

.hero h1,
.hero h3 {
    text-shadow: var(--hero-text-shadow);
}

.btnGoMore {
    display: none;

    a {
        background: #ffffffc9;
        color: #291a48;
    }

    .bi.bi-chevron-double-down {
        width: 3vh;
        height: 4vh;
    }
}

.border-header {
    z-index: 1;
    position: relative;
    border-radius: 20px;
    background: #ffffff;
    top: -20px;
}

.footer {
    display: flex;
    background-color: var(--footer-bg-color);
    color: var(--footer-color);
    padding: var(--footer-padding);
    text-align: center;
    align-items: center;
}

.btn-transparent {
    position: absolute;
    bottom: var(--btn-bottom);
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--btn-bg-color);
    color: var(--btn-color);
    border: 2px solid var(--btn-border-color) !important;
    animation: var(--btn-animation);
    backdrop-filter: blur(var(--btn-blur));
    background-color: var(--btn-bg-color-blurred);
}


@keyframes bobbing {

    0%,
    100% {
        transform: translate(-50%, 0);
    }

    50% {
        transform: translate(-50%, -20px);
    }
}


#loader {
    position: fixed;
    width: 100%;
    height: 100%;
    background: var(--loader-bg-color);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: var(--loader-z-index);
    transition: var(--loader-transition);
}

.loading-container {
    text-align: center;
}

.loading-dot {
    display: inline-block;
    width: var(--loading-dot-size);
    height: var(--loading-dot-size);
    margin: var(--loading-dot-margin);
    background-color: var(--loading-dot-color);
    border-radius: var(--loading-dot-radius);
    animation: loading 1s infinite;
}

.loading-dot:nth-child(1) {
    animation-delay: 0s;
}

.loading-dot:nth-child(2) {
    animation-delay: 0.3s;
}

.loading-dot:nth-child(3) {
    animation-delay: 0.6s;
}

.loading-text {
    font-size: var(--loading-text-size);
    color: var(--loading-text-color);
    margin-top: var(--loading-text-margin);
}

.loadImg {
    min-height: 200px;
}

@keyframes loading {

    0%,
    80%,
    100% {
        transform: scale(0);
    }

    40% {
        transform: scale(1);
    }
}

#content {
    width: 100%;
}

.flapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.template-procces {
    position: relative;
}

.template-procces>svg {

    width: 100%;
    height: 100%;
    position: absolute;
    padding: 0;
    top: 0;
    bottom: 0;
    max-width: calc(100vw - 25px);
}

.procces-item {
    display: flex;
    justify-content: space-between;
    align-items: center
}


.procces-item .procces-item-flex {
    align-items: center;
}

.procces-item ul {
    padding-left: 5px;
}

.procces-item .text-container {
    /* width: 285px; */
}

.procces-item.end {
    align-items: stretch;
    justify-content: flex-end;
}

.procces-item li {
    list-style-type: none;
    font-size: 12px;
    line-height: 20px;
}

.procces-item .row {
    position: relative;
}

.procces-item .image-wrapper {
    width: 125px;
    height: 125px;
    position: relative;
}

.procces-item img {
    width: 100%;
    height: 100%;
    border: solid 1px #bbb;
}

.procces-item .procces-item-index {
    border: 1px solid;
    border-radius: 100%;
    position: absolute;
    width: 28px;
    text-align: center;
    padding: 0;
    background: white;
}


@media (max-width: 992px) {

    .procces-item .procces-item-flex {
        width: 100%;
    }

    .procces-item .image-wrapper {
        width: 100px;
        height: 100px;
    }
}

@media (min-width: 0px) {
    .ordenation-xs-st {
        top: -7px;
        left: -7px;
        bottom: unset;
        right: unset;
    }

    .ordenation-xs-et {
        top: -7px;
        right: -7px;
        bottom: unset;
        left: unset;
    }

    .ordenation-xs-sb {
        bottom: -7px;
        left: -7px;
        top: unset;
        right: unset;
    }

    .ordenation-xs-eb {
        bottom: -7px;
        right: -7px;
        top: unset;
        left: unset;
    }
}

@media (min-width: 768px) {
    .ordenation-md-st {
        top: -7px;
        left: -7px;
        bottom: unset;
        right: unset;
    }

    .ordenation-md-et {
        top: -7px;
        right: -7px;
        bottom: unset;
        left: unset;
    }

    .ordenation-md-sb {
        bottom: -7px;
        left: -7px;
        top: unset;
        right: unset;
    }

    .ordenation-md-eb {
        bottom: -7px;
        right: -7px;
        top: unset;
        left: unset;
    }
}

@media (min-width: 993px) {
    .ordenation-lg-st {
        top: -7px;
        left: -7px;
        bottom: unset;
        right: unset;
    }

    .ordenation-lg-et {
        top: -7px;
        right: -7px;
        bottom: unset;
        left: unset;
    }

    .ordenation-lg-sb {
        bottom: -7px;
        left: -7px;
        top: unset;
        right: unset;
    }

    .ordenation-lg-eb {
        bottom: -7px;
        right: -7px;
        top: unset;
        left: unset;
    }
}







@media (min-width: 0px) {
    .order-xs-6 {
        order: 6;
    }
}

@media (min-width: 0px) {
    .order-xs-7 {
        order: 7;
    }
}

@media (min-width: 0px) {
    .order-xs-8 {
        order: 8;
    }
}

@media (min-width: 0px) {
    .order-xs-9 {
        order: 9;
    }
}

@media (min-width: 0px) {
    .order-xs-10 {
        order: 10;
    }
}

@media (min-width: 0px) {
    .order-xs-11 {
        order: 11;
    }
}

@media (min-width: 0px) {
    .order-xs-12 {
        order: 12;
    }
}

@media (min-width: 577px) {
    .order-sm-6 {
        order: 6;
    }
}

@media (min-width: 577px) {
    .order-sm-7 {
        order: 7;
    }
}

@media (min-width: 577px) {
    .order-sm-8 {
        order: 8;
    }
}

@media (min-width: 577px) {
    .order-sm-9 {
        order: 9;
    }
}

@media (min-width: 577px) {
    .order-sm-10 {
        order: 10;
    }
}

@media (min-width: 577px) {
    .order-sm-11 {
        order: 11;
    }
}

@media (min-width: 577px) {
    .order-sm-12 {
        order: 12;
    }
}

@media (min-width: 769px) {
    .order-md-6 {
        order: 6;
    }
}

@media (min-width: 769px) {
    .order-md-7 {
        order: 7;
    }
}

@media (min-width: 769px) {
    .order-md-8 {
        order: 8;
    }
}

@media (min-width: 769px) {
    .order-md-9 {
        order: 9;
    }
}

@media (min-width: 769px) {
    .order-md-10 {
        order: 10;
    }
}

@media (min-width: 769px) {
    .order-md-11 {
        order: 11;
    }
}

@media (min-width: 769px) {
    .order-md-12 {
        order: 12;
    }
}

@media (min-width: 993px) {
    .order-lg-6 {
        order: 6;
    }
}

@media (min-width: 993px) {
    .order-lg-7 {
        order: 7;
    }
}

@media (min-width: 993px) {
    .order-lg-8 {
        order: 8;
    }
}

@media (min-width: 993px) {
    .order-lg-9 {
        order: 9;
    }
}

@media (min-width: 993px) {
    .order-lg-10 {
        order: 10;
    }
}

@media (min-width: 993px) {
    .order-lg-11 {
        order: 11;
    }
}

@media (min-width: 993px) {
    .order-lg-12 {
        order: 12;
    }
}

@media (min-width: 1201px) {
    .order-xl-6 {
        order: 6;
    }
}

@media (min-width: 1201px) {
    .order-xl-7 {
        order: 7;
    }
}

@media (min-width: 1201px) {
    .order-xl-8 {
        order: 8;
    }
}

@media (min-width: 1201px) {
    .order-xl-9 {
        order: 9;
    }
}

@media (min-width: 1201px) {
    .order-xl-10 {
        order: 10;
    }
}

@media (min-width: 1201px) {
    .order-xl-11 {
        order: 11;
    }
}

@media (min-width: 1201px) {
    .order-xl-12 {
        order: 12;
    }
}

@media (min-width: 1401px) {
    .order-xxl-6 {
        order: 6;
    }
}

@media (min-width: 1401px) {
    .order-xxl-7 {
        order: 7;
    }
}

@media (min-width: 1401px) {
    .order-xxl-8 {
        order: 8;
    }
}

@media (min-width: 1401px) {
    .order-xxl-9 {
        order: 9;
    }
}

@media (min-width: 1401px) {
    .order-xxl-10 {
        order: 10;
    }
}

@media (min-width: 1401px) {
    .order-xxl-11 {
        order: 11;
    }
}

@media (min-width: 1401px) {
    .order-xxl-12 {
        order: 12;
    }
}

.blog-category-tag {
    border-radius: 8px;
    border: #d0d0d0 1px solid;
    width: fit-content;
    padding: 0.25rem 0.5rem;
    font-weight: 800;
    font-size: 14px;
    text-decoration: none;
    color: #a8a8a8;
    transition: all 0.2s ease-in-out;
    display: inline-block;
}

.blog-category-tag:hover {
    border: #949494 1px solid;
    color: #6a6a6a;
    background: #d9d9d9;
}

.blog-category-tag:active {
    border: #7a7a7a 1px solid;
    color: #4a4a4a;
    background: #c0c0c0;
}

.blog-card {
    border: unset;
    background: #f8fbfd;

    .card-header {
        border-bottom: 1px solid #bbb;
        background: #456069;
        color: white !important;
        display: flex;
        align-items: center;
        border-radius: 4px 4px 0 0;
        justify-content: space-between;

        h4 {
            font-size: calc(15px + 0.3vw) !important;
        }
    }

    .img-fluid {
        height: calc(60px + 1.5vw);
        margin-right: -0.750rem;
    }

    .card-footer {
        border-radius: 0 0 4px 4px;
        border: solid 1px #bbb;
        background: #e7e7e7;
    }
}

.popover-body {
    padding: 0;
}