:root {
    --primary-color: #082EB5;
    --primary-soft-color: #F8F9FB;
    --primary-light-color: #DBECFC;
    --secondary-color: #2496F1;
    --orange-color: #e04519;
}

.text-primary {
    color: var(--primary-color) !important;
}

.text-secondary {
    color: var(--secondary-color) !important;
}

.text-orange {
    color: var(--orange-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.bg-primary-soft {
    background-color: var(--primary-soft-color) !important;
}

.bg-primary-light {
    background-color: var(--primary-light-color) !important;
}

.bg-secondary {
    background-color: var(--secondary-color) !important;
}

.btn-primary {
    border-color: var(--primary-color) !important;
    background-color: var(--primary-color) !important;
}

.btn-primary:hover {
    background-color: rgba(from var(--primary-color) r g b / 0.8) !important;
}

.btn-secondary {
    border-color: var(--secondary-color) !important;
    background-color: var(--secondary-color) !important;
}

.btn-secondary:hover {
    background-color: rgba(from var(--secondary-color) r g b / 0.8) !important;
}

.btn-orange {
    color: #fff;
    border-color: var(--orange-color) !important;
    background-color: var(--orange-color) !important;
}

.btn-orange:hover {
    color: #fff;
    background-color: rgba(from var(--orange-color) r g b / 0.8) !important;
}

.btn-outline-secondary {
    color: var(--secondary-color) !important;
    border-color: var(--secondary-color) !important;
}

.btn-outline-secondary:hover {
    color: #fff !important;
    background-color: var(--secondary-color) !important;
}

.border-secondary {
    border-color: var(--secondary-color) !important;
}

.border-info {
    border-color: var(--secondary-color) !important;
}

.shadow {
    box-shadow: rgba(0, 0, 0, 0.45) 0px 25px 20px -20px !important;
}

.navbar-nav .nav-link.active, .navbar-nav .nav-link.show {
    color: var(--primary-color) !important;
}

.nav-pills .nav-link {
    width: 125px;
}

.nav-pills .nav-link span {
    font-size: 14px;
}

.nav-pills .nav-link.active, .nav-pills .show>.nav-link {
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    background-color: #fff;
    border-radius: 15px;
}

.nav-pills .nav-link.active > svg, .nav-pills .show>.nav-link > svg {
    color: var(--orange-color);
}

.banner .title {
    font-size: 70px;
}

.banner .subtitle {
    font-size: 50px;
}

.banner, .promotions {
    background-image: url('../images/2.webp');
    background-color: rgba(255, 255, 255, 0.6);
    background-blend-mode: lighten;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
}

.service-page-title, .about-page-title, .promotion-page-title, .contact-page-title, .download-page-title, .blog-page-title, .customer-page-title {
    background-image: url('../images/2.webp');
    background-color: rgba(255, 255, 255, 0.6);
    background-position: center;
    background-blend-mode: lighten;
}

.service-page-title h1, .about-page-title h1, .promotion-page-title h1, .contact-page-title h1, .customer-page-title h1, .download-page-title h1, .blog-page-title h1 {
    font-size: 80px;
}

.service-info .nav-link.active {
    background-color: var(--primary-light-color) !important;
}

.owl-carousel {
    position: relative;
}

.owl-carousel .owl-nav {
    width: 100%;
    display: flex;
    position: absolute;
    justify-content: space-between;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 40px));
}

.owl-carousel.owl-not-dots .owl-nav {
    transform: translate(-50%, -80%) !important;
}

.owl-carousel.owl-theme .owl-dots .owl-dot span {
    width: 7px;
    height: 7px;
    background: rgba(from var(--secondary-color) r g b / 0.4);
}

.owl-carousel.owl-theme .owl-dots .owl-dot:hover span {
    background: var(--secondary-color);
}

.owl-carousel.owl-theme .owl-dots .owl-dot.active span {
    width: 10px;
    height: 10px;
    background: var(--secondary-color);
}

.owl-carousel .owl-nav button.owl-prev {
    background-image: url('../images/icons/45.webp');
    color: transparent;
    width: 30px;
    height: 30px;
    background-size: contain;
    background-repeat: no-repeat;
}

.owl-carousel .owl-nav button.owl-prev:hover {
    color: transparent;
    background: round !important;
    background-image: url('../images/icons/45.2.webp') !important;
}

.owl-carousel .owl-nav button.owl-next {
    background-image: url('../images/icons/45.webp');
    color: transparent;
    width: 30px;
    height: 30px;
    background-size: contain;
    background-repeat: no-repeat;
    transform: rotate(180deg);
}

.owl-carousel .owl-nav button.owl-next:hover {
    color: transparent;
    background: round !important;
    background-image: url('../images/icons/45.2.webp') !important;
    transform: rotate(180deg);
}

.partners .owl-carousel {
    padding-left: 100px;
    padding-right: 100px;
}

/* ol > li[data-list="bullet"] {
    list-style-type: disc;
} */

.hithere {
    animation: hithere 1s ease infinite;
}

@keyframes hithere {
    30% { transform: scale(1.2); }
    40%, 60% { transform: rotate(-20deg) scale(1.2); }
    50% { transform: rotate(20deg) scale(1.2); }
    70% { transform: rotate(0deg) scale(1.2); }
    100% { transform: scale(1); }
}

@media screen and (max-width: 575px) {
    .banner .title {
        font-size: 60px;
        line-height: 1;
    }

    .banner .subtitle {
        font-size: 30px;
    }

    .partners .owl-carousel {
        padding-left: 50px;
        padding-right: 50px;
    }

    .service-page-title h1, .about-page-title h1, .promotion-page-title h1, .contact-page-title h1, .customer-page-title h1, .download-page-title h1, .blog-page-title h1 {
        font-size: 50px;
    }
}
