@charset "UTF-8";

.pace {
    pointer-events: none;
    user-select: none
}

.pace-inactive {
    display: none
}

.pace .pace-progress {
    background: var(--bs-primary);
    position: fixed;
    z-index: 2000;
    top: 0;
    right: 100%;
    width: 100%;
    height: 3px
}

body {
    --bs-gutter-x: 24px;
    --font-primary: "Nunito", Arial, Helvetica, "sans-serif";
    --font-secondary: "Nunito Sans", "Trebuchet MS", "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", Tahoma, "sans-serif";
    --font-heading: var(--font-secondary);
    --radius-md: 10px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --header-height: 71px;
    --header-height-lg: 80px;
    --transition: all 0.5s ease-in-out;
    --transition-in: all 0.3s ease-in-out;
    --transition-out: all 0.8s ease-in-out
}

body {
    --header-bg: #fff;
    --header-bg-sticky: #fffc;
    --font-color: var(--bs-gray-800);
    --bg-color: var(--bs-gray-100);
    --footer-bg-color: var(--bs-gray-100);
    --post-hero-bg: #fffefe;
    --post-hero-color: var(--bs-gray-700);
    --swiper-theme-color: var(--bs-primary);
    --hero-banner-color: var(--gray-900)
}

body.dark-theme {
    --bs-white: #000;
    --bs-light: #181818;
    --bs-gray: #555;
    --bs-gray-100: #111;
    --bs-gray-200: #222;
    --bs-gray-300: #333;
    --bs-gray-400: #444;
    --bs-gray-500: #555;
    --bs-gray-600: #999;
    --bs-gray-700: #aaa;
    --bs-gray-800: #bbb;
    --bs-gray-900: #ccc;
    --bs-gray-dark: #ddd;
    --bs-dark: #eee;
    --header-bg: transparent;
    --header-bg-sticky: #000c
}

.text-dark {
    color: var(--bs-dark) !important
}

.text-white {
    color: var(--bs-white) !important
}

.text-body {
    color: var(--font-color) !important
}

.text-muted {
    color: var(--bs-gray-600) !important
}

.text-black-50 {
    color: var(--bs-gray-500) !important
}

.text-white-50 {
    color: var(--bs-gray-100) !important
}

.bg-white {
    background-color: var(--bs-white) !important
}

* {
    scroll-behavior: smooth
}

::selection {
    background: var(--bs-primary);
    color: var(--bs-white)
}

::-moz-selection {
    background: var(--bs-primary);
    color: var(--bs-white)
}

html {
    min-height: 100%;
    overflow-x: hidden
}

body {
    background-color: var(--bg-color);
    color: var(--font-color);
    height: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-family: var(--font-primary);
    font-weight: 300;
    padding-right: 0 !important
}

a,
button,
[type="button"],
[type="button"]:not(:disabled),
[type="reset"]:not(:disabled),
[type="submit"]:not(:disabled),
button:not(:disabled),
.btn {
    font-weight: 300
}

.btn,
.form-select,
option {
    font-weight: 700
}

#all-wrap {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 100vh
}

.main-content {
    flex: 1;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    position: relative
}

.main-content>section {
    flex: 0 0 auto
}

.main-content>section.section-padding {
    padding-top: 2rem;
    padding-bottom: 2rem
}

.main-content>section.bg-dark {
    color: var(--bs-white)
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    font-family: var(--font-heading);
    font-weight: 300
}

strong h1,
h1 strong,
h1.strong,
strong h2,
h2 strong,
h2.strong,
strong h3,
h3 strong,
h3.strong,
strong h4,
h4 strong,
h4.strong,
strong h5,
h5 strong,
h5.strong,
strong h6,
h6 strong,
h6.strong,
strong .h1,
.h1 strong,
.h1.strong,
strong .h2,
.h2 strong,
.h2.strong,
strong .h3,
.h3 strong,
.h3.strong,
strong .h4,
.h4 strong,
.h4.strong,
strong .h5,
.h5 strong,
.h5.strong,
strong .h6,
.h6 strong,
.h6.strong {
    font-weight: 700
}

b,
strong {
    font-weight: 700
}

.table {
    color: inherit
}

picture.ratio {
    display: inline-block
}

picture.ratio img {
    object-fit: cover
}

picture.ratio.ratio-grid-view {
    --bs-aspect-ratio: calc(9 / 16 * 100%)
}

@media screen and (min-width:576px) {
    picture.ratio.ratio-grid-view {
        --bs-aspect-ratio: calc(1 / 2 * 100%)
    }
}

@media screen and (min-width:768px) {
    picture.ratio.ratio-grid-view {
        --bs-aspect-ratio: calc(3 / 4 * 100%)
    }
}

pre {
    white-space: normal
}

:root {
    --animate-duration: 1s;
    --animate-delay: 1s;
    --animate-repeat: 1
}

@keyframes rotate-center {
    0% {
        transform: rotate(0)
    }

    100% {
        transform: rotate(360deg)
    }
}

@keyframes fade-in-down {
    0% {
        opacity: 0;
        transform: translate3d(0, -100%, 0)
    }

    to {
        opacity: 1;
        transform: translateZ(0)
    }
}

.animate__fade-in-down {
    animation-name: fade-in-down
}

@keyframes fade-in-left {
    0% {
        opacity: 0;
        transform: translate3d(-100%, 0, 0)
    }

    to {
        opacity: 1;
        transform: translateZ(0)
    }
}

.animate__fade-in-left {
    animation-name: fade-in-left
}

@keyframes fade-in-right {
    0% {
        opacity: 0;
        transform: translate3d(100%, 0, 0)
    }

    to {
        opacity: 1;
        transform: translateZ(0)
    }
}

.animate__fade-in-right {
    animation-name: fade-in-right
}

@keyframes fade-in-up {
    0% {
        opacity: 0;
        transform: translate3d(0, 100%, 0)
    }

    to {
        opacity: 1;
        transform: translateZ(0)
    }
}

.animate__fade-in-up {
    animation-name: fade-in-up
}

[class^="icon-"]:before,
[class*=" icon-"]:before {
    font-family: "fontello";
    font-style: normal;
    font-weight: 400;
    display: inline-block;
    text-decoration: inherit;
    width: 1em;
    margin-right: .2em;
    text-align: center;
    font-variant: normal;
    text-transform: none;
    line-height: 1em;
    margin-left: .2em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

.icon-list:before {
    content: ""
}

.icon-statistic-graph:before {
    content: ""
}

.icon-statistic-pie:before {
    content: ""
}

.icon-file-minus:before {
    content: ""
}

.icon-file-plus:before {
    content: ""
}

.icon-file:before {
    content: ""
}

.icon-folder:before {
    content: ""
}

.icon-cart:before {
    content: ""
}

.icon-arrow-left-right-1:before {
    content: ""
}

.icon-expand:before {
    content: ""
}

.icon-compass:before {
    content: ""
}

.icon-navigate:before {
    content: ""
}

.icon-map:before {
    content: ""
}

.icon-pin:before {
    content: ""
}

.icon-refresh:before {
    content: ""
}

.icon-clock:before {
    content: ""
}

.icon-users:before {
    content: ""
}

.icon-calendar:before {
    content: ""
}

.icon-microphone:before {
    content: ""
}

.icon-wifi:before {
    content: ""
}

.icon-swicth-on:before {
    content: ""
}

.icon-switch-off:before {
    content: ""
}

.icon-bookmark:before {
    content: ""
}

.icon-speech-bubble:before {
    content: ""
}

.icon-control-fullscreen:before {
    content: ""
}

.icon-control-end:before {
    content: ""
}

.icon-control-start:before {
    content: ""
}

.icon-control-fastforward:before {
    content: ""
}

.icon-control-rewind:before {
    content: ""
}

.icon-control-pause:before {
    content: ""
}

.icon-control-stop:before {
    content: ""
}

.icon-control-play:before {
    content: ""
}

.icon-volume-minus:before {
    content: ""
}

.icon-volume-mute:before {
    content: ""
}

.icon-volume-plus:before {
    content: ""
}

.icon-volume:before {
    content: ""
}

.icon-cogwheel:before {
    content: ""
}

.icon-settings:before {
    content: ""
}

.icon-share:before {
    content: ""
}

.icon-info:before {
    content: ""
}

.icon-exclamation:before {
    content: ""
}

.icon-circle-question:before {
    content: ""
}

.icon-question:before {
    content: ""
}

.icon-link:before {
    content: ""
}

.icon-globe:before {
    content: ""
}

.icon-tag:before {
    content: ""
}

.icon-attachment:before {
    content: ""
}

.icon-desktop:before {
    content: ""
}

.icon-mobile:before {
    content: ""
}

.icon-photo:before {
    content: ""
}

.icon-magnifier-minus:before {
    content: ""
}

.icon-magnifier-plus:before {
    content: ""
}

.icon-magnifier:before {
    content: ""
}

.icon-clipboard:before {
    content: ""
}

.icon-video:before {
    content: ""
}

.icon-print:before {
    content: ""
}

.icon-user:before {
    content: ""
}

.icon-phone:before {
    content: ""
}

.icon-off:before {
    content: ""
}

.icon-pen:before {
    content: ""
}

.icon-home:before {
    content: ""
}

.icon-cloud:before {
    content: ""
}

.icon-cloud-upload:before {
    content: ""
}

.icon-cloud-download:before {
    content: ""
}

.icon-upload:before {
    content: ""
}

.icon-download:before {
    content: ""
}

.icon-arrow-in-down:before {
    content: ""
}

.icon-arrow-in-up:before {
    content: ""
}

.icon-lock-open:before {
    content: ""
}

.icon-lock-closed:before {
    content: ""
}

.icon-document-copy:before {
    content: ""
}

.icon-document:before {
    content: ""
}

.icon-camera:before {
    content: ""
}

.icon-trash:before {
    content: ""
}

.icon-envelope:before {
    content: ""
}

.icon-heart:before {
    content: ""
}

.icon-circle:before {
    content: ""
}

.icon-square-blank:before {
    content: ""
}

.icon-forbidden:before {
    content: ""
}

.icon-square-check:before {
    content: ""
}

.icon-circle-check:before {
    content: ""
}

.icon-square-minus:before {
    content: ""
}

.icon-square-close:before {
    content: ""
}

.icon-square-plus:before {
    content: ""
}

.icon-circle-minus:before {
    content: ""
}

.icon-plus-cricle:before {
    content: ""
}

.icon-circle-close:before {
    content: ""
}

.icon-grid-view:before {
    content: ""
}

.icon-nav-burger:before {
    content: ""
}

.icon-minus-big:before {
    content: ""
}

.icon-plus-big:before {
    content: ""
}

.icon-close-big:before {
    content: ""
}

.icon-arrow-down:before {
    content: ""
}

.icon-arrow-up:before {
    content: ""
}

.icon-arrow-right:before {
    content: ""
}

.icon-arrow-left:before {
    content: ""
}

.icon-check:before {
    content: ""
}

.icon-chevron-down:before {
    content: ""
}

.icon-chevron-up:before {
    content: ""
}

.icon-chevron-left:before {
    content: ""
}

.icon-chevron-right:before {
    content: ""
}

.icon-facebook:before {
    content: ""
}

.icon-heart-fill:before {
    content: ""
}

.icon-instagram:before {
    content: ""
}

.icon-linked-in:before {
    content: ""
}

.icon-twitter:before {
    content: ""
}

.icon-youtube:before {
    content: ""
}

.icon-youtube-alt:before {
    content: ""
}

.icon-whatsapp:before {
    content: ""
}

.icon-spin2:before {
    content: ""
}

.icon-statistic-bar:before {
    content: ""
}

.icon-star-1:before {
    content: ""
}

.icon-star-fill:before {
    content: ""
}

.icon-chevron-right-sm:before {
    content: ""
}

.icon-chevron-left-sm:before {
    content: ""
}

.icon-chevron-down-sm:before {
    content: ""
}

.icon-chevron-up-sm:before {
    content: ""
}

.icon-spin5:before {
    content: ""
}

.icon-quote-end:before {
    content: ""
}

.icon-elipsis-horizontal:before {
    content: ""
}

.icon-elipsis-vertical:before {
    content: ""
}

.icon-tiktok:before {
    content: ""
}

.icon-arrow-in-upright:before {
    content: ""
}

.icon-quote-start:before {
    content: ""
}

.icon-arrow-left-right:before {
    content: ""
}

.icon-arrow-up-down:before {
    content: ""
}

.icon-filter:before {
    content: ""
}

.icon-arrow-left-circle:before {
    content: ""
}

.icon-arrow-right-circle:before {
    content: ""
}

.icon-alarm:before {
    content: ""
}

.icon-finger-print:before {
    content: ""
}

.icon-moon:before {
    content: ""
}

.icon-save:before {
    content: ""
}

.icon-sun:before {
    content: ""
}

.icon-pin-2:before {
    content: ""
}

.icon-reply:before {
    content: ""
}

.floating-action {
    position: fixed;
    top: 5rem;
    right: 0;
    z-index: 99
}

.floating-action>.card {
    background: #fff;
    margin-left: auto;
    width: 300px;
    border-radius: 0;
    z-index: 99;
    position: absolute;
    box-shadow: 0 8px 20px rgba(18, 17, 39, .1);
    right: -300px;
    transition: 200ms ease-out
}

.floating-action>.card.show {
    right: 0%
}

.floating-action>.card .card-body {
    padding: 1.5rem
}

.floating-action .btn-toggle-float-action {
    position: absolute;
    left: -20px;
    transform-origin: left center;
    transform: rotate(90deg);
    white-space: nowrap;
    height: 40px;
    top: -20px;
    border-radius: 0 0 .5rem .5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px 15px
}

@media screen and (min-width:992px) {
    .floating-action {
        top: 6rem
    }
}

.hero-banner-slider {
    display: flex;
    align-items: flex-start;
    transition-property: transform, height
}

.hero-banner-slider .slide {
    flex-shrink: 0;
    width: 100%
}

.hero-banner {
    --caption-padding-top-lg: 5rem;
    --min-height: 660px;
    position: relative;
    background: linear-gradient(180deg, var(--hero-banner-bg), transparent);
    color: var(--hero-banner-color);
    display: flex;
    flex-direction: column;
    justify-content: center
}

.hero-banner .hero-caption,
.hero-banner .hero-picture,
.hero-banner .hero-video {
    position: relative;
    display: block;
    left: 0;
    top: 25px;
    width: 100%;
    height: 100%
}

.hero-banner .hero-caption {
    display: flex;
    align-items: center;
    height: inherit;
    z-index: 10
}

.hero-banner .hero-caption [class*="col"] {
    padding-top: calc(var(--header-height) + var(--caption-padding-top));
    padding-bottom: var(--caption-padding-top);
    display: flex;
    flex-direction: column;
    align-items: flex-start
}

.hero-banner .hero-caption [class*="col"].text-center {
    align-items: center
}

.hero-banner .hero-caption [class*="col"] .btn-cta {
    position: relative;
    font-size: 16px;
    padding: .875rem 1.875rem;
    display: inline-block
}

@media only screen and (min-width:576px) {
    .hero-banner .hero-caption [class*="col"] .btn-cta {
        font-size: calc(16px + 2 * ((100vw - 576px) / 824))
    }
}

@media only screen and (min-width:1400px) {
    .hero-banner .hero-caption [class*="col"] .btn-cta {
        font-size: 18px
    }
}

.hero-banner .hero-caption [class*="col"]>*:last-child,
.hero-banner .hero-caption [class*="col"]>*:only-child {
    margin-bottom: 0
}

.hero-banner .hero-caption .title {
    margin-bottom: 1.875rem;
    font-size: 32px
}

@media only screen and (min-width:576px) {
    .hero-banner .hero-caption .title {
        font-size: calc(32px + 20 * ((100vw - 576px) / 824))
    }
}

@media only screen and (min-width:1400px) {
    .hero-banner .hero-caption .title {
        font-size: 52px
    }
}

.hero-banner .hero-caption .subtitle {
    margin-bottom: 1rem;
    font-size: 24px
}

@media only screen and (min-width:576px) {
    .hero-banner .hero-caption .subtitle {
        font-size: calc(24px + 14 * ((100vw - 576px) / 824))
    }
}

@media only screen and (min-width:1400px) {
    .hero-banner .hero-caption .subtitle {
        font-size: 38px
    }
}

.hero-banner .hero-caption p {
    font-size: 14px
}

@media only screen and (min-width:576px) {
    .hero-banner .hero-caption p {
        font-size: calc(14px + 2 * ((100vw - 576px) / 824))
    }
}

@media only screen and (min-width:1400px) {
    .hero-banner .hero-caption p {
        font-size: 16px
    }
}

.hero-banner .hero-caption p.lead {
    font-size: 18px;
    margin-bottom: 2rem
}

@media only screen and (min-width:576px) {
    .hero-banner .hero-caption p.lead {
        font-size: calc(18px + 2 * ((100vw - 576px) / 824))
    }
}

@media only screen and (min-width:1400px) {
    .hero-banner .hero-caption p.lead {
        font-size: 20px
    }
}

.hero-banner .hero-caption .btn-action-group .btn-cta {
    margin-right: .75rem
}

.hero-banner .hero-picture {
    background-repeat: repeat;
    display: flex;
    align-items: center
}

.hero-banner .hero-picture>picture {
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%
}

.hero-banner .hero-picture img {
    max-width: none;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center
}

.hero-banner .hero-picture[use-masking] {
    background-color: var(--bs-dark);
    z-index: 0
}

.hero-banner .hero-picture[use-masking]::before {
    content: "";
    position: absolute;
    z-index: 10;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAMAAAADCAYAAABWKLW/AAAAAXNSR0IArs4c6QAAABpJREFUGFdjZECA/4xQ9n8GBgZGEAfMAAkCADZSAwMYVwZHAAAAAElFTkSuQmCC)
}

.hero-banner .hero-picture[use-masking] img {
    z-index: 0;
    opacity: .5
}

.hero-banner .hero-caption+.hero-picture[style*="background-image"],
.hero-banner[data-height="use-caption"] .hero-caption+.hero-picture[style*="background-image"] {
    position: absolute
}

.hero-banner .hero-caption+.hero-picture img,
.hero-banner[data-height="use-caption"] .hero-caption+.hero-picture img {
    object-position: right
}

.hero-banner[data-height="use-image"] {
    height: auto
}

.hero-banner[data-height="use-image"] .hero-caption {
    left: 0;
    top: 0;
    width: 100%;
    height: 100%
}

.hero-banner[data-height="use-image"] .hero-caption .hero-picture {
    position: relative
}

.hero-banner[data-height="use-video"] .hero-caption {
    position: absolute;
    height: 100%;
    z-index: 10
}

.hero-banner[data-height="use-video"] .hero-video {
    min-height: var(--min-height);
    height: 100vh;
    overflow: hidden;
    width: 100vw
}

.hero-banner[data-height="use-video"] .hero-video video {
    position: absolute;
    height: 100%;
    width: 100%;
    object-fit: cover
}

.hero-banner[data-height="use-video"] .hero-video iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100vw;
    width: calc(100vw * 4);
    min-height: 100vh;
    transform: translate(-50%, -50%)
}

.hero-banner[data-img-position="full"] .hero-picture img {
    width: 100% !important;
    max-width: none !important;
}

@media screen and (min-width:576px) {
    .hero-banner .hero-caption [class*="col"] {
        padding-top: calc(var(--header-height) + var(--caption-padding-top))
    }
}

@media screen and (min-width:768px) {
    .hero-banner {
        padding-bottom: 0
    }
}

@media screen and (min-width:992px) {

    .hero-banner .hero-caption+.hero-picture,
    .hero-banner[data-height="use-caption"] .hero-caption+.hero-picture {
        position: absolute
    }

    .hero-banner[data-height="use-image"] .hero-caption {
        position: absolute
    }

    .hero-banner[data-height="use-image"] .hero-caption+.hero-picture {
        position: relative;
        height: 100vh;
        min-height: var(--min-height)
    }

    .hero-banner[data-img-position] .hero-caption+.hero-picture img {
        width: auto;
        max-width: 60%
    }

    .hero-banner[data-img-position="left"] .hero-picture,
    .hero-banner[data-img-position="left"] .hero-picture>picture {
        justify-content: flex-start
    }

    .hero-banner[data-img-position="right"] .hero-picture,
    .hero-banner[data-img-position="right"] .hero-picture>picture {
        justify-content: flex-end
    }

    .hero-banner[data-height="use-video"] .hero-video iframe {
        height: calc(100vh * 2)
    }
}

.hero-banner-wrap {
    position: relative
}

.hero-banner-wrap.show-arrow-onhover .swiper-button-next,
.hero-banner-wrap.show-arrow-onhover .swiper-button-prev {
    opacity: 0;
    transition: all 300ms ease-out
}

.hero-banner-wrap.show-arrow-onhover:hover .swiper-button-next,
.hero-banner-wrap.show-arrow-onhover:hover .swiper-button-prev {
    opacity: 1
}

.hero-banner-wrap .swiper-button-next,
.hero-banner-wrap .swiper-button-prev {
    --swiper-navigation-size: 1.5rem;
    display: none;
    width: 3rem;
    height: 3rem;
    border-radius: 5rem;
    border: solid 1px var(--bs-primary)
}

.hero-banner-wrap .swiper-button-next:hover,
.hero-banner-wrap .swiper-button-prev:hover {
    box-shadow: inset 0 0 3rem -2rem var(--bs-gray-100)
}

.hero-banner-wrap .swiper-button-next::after,
.hero-banner-wrap .swiper-button-prev::after {
    font-size: 24px;
    font-family: "Nunito Sans", sans-serif
}

.hero-banner-wrap .swiper-button-next.swiper-button-disabled,
.hero-banner-wrap .swiper-button-prev.swiper-button-disabled {
    opacity: 0.35 !important;
    cursor: default
}

.hero-banner-wrap .swiper-button-prev {
    left: 1rem
}

.hero-banner-wrap .swiper-button-prev:hover {
    transform: translateX(-5px)
}

.hero-banner-wrap .swiper-button-next {
    right: 1rem
}

.hero-banner-wrap .swiper-button-next:hover {
    transform: translateX(5px)
}

.hero-banner-wrap .swiper-button-prev::after,
.hero-banner-wrap .swiper-rtl .swiper-button-next::after {
    content: ""
}

.hero-banner-wrap .swiper-button-next::after,
.hero-banner-wrap .swiper-rtl .swiper-button-prev::after {
    content: ""
}

@media screen and (min-width:998px) {

    .hero-banner[data-img-position="full"] .hero-caption,
    .hero-banner[data-img-position="full"] .hero-picture {
        min-height: var(--min-height)
    }

    .hero-banner[data-img-position="full"] .hero-picture {
        position: absolute !important
    }
}

@media screen and (min-width:1024px) {

    .hero-banner[data-img-position="full"] .hero-caption,
    .hero-banner[data-img-position="full"] .hero-picture {
        min-height: var(--min-height)
    }

    .hero-banner[data-img-position="full"] .hero-picture {
        position: absolute !important
    }
}

@media screen and (min-width:1200px) {

    .hero-banner[data-img-position="full"] .hero-caption,
    .hero-banner[data-img-position="full"] .hero-picture {
        min-height: var(--min-height)
    }

    .hero-banner[data-img-position="full"] .hero-picture {
        position: absolute !important
    }
}

@media screen and (min-width:768px) {

    .hero-banner-wrap .swiper-button-next,
    .hero-banner-wrap .swiper-button-prev {
        display: flex
    }
}

body {
    font-family: "Nunito Sans", sans-serif
}

.section-padding {
    padding-top: 2rem;
    padding-bottom: 2rem
}

.ornaments {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1
}

.ornaments img[src*="ornament"],
.ornaments>img[src] {
    position: absolute
}

.ornaments img[src*="ornament-ellipse-left-1"] {
    left: 0;
    bottom: 3rem
}

.ornaments img[src*="ornament-ellipse-right-1"] {
    right: 0;
    bottom: 5rem
}

.btn-navbar {
    background: #1c80c3;
    border-radius: 5px;
    font-family: "Nunito Sans", sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 35px !important;
    text-align: center;
    color: #ffffff !important
}

.nav-text {
    font-family: "Nunito Sans", sans-serif;
    font-style: italic;
    font-weight: 300;
    font-size: 14px;
    line-height: 190%;
    text-transform: capitalize;
    color: #595959
}

.sub-menu {
    font-family: "Nunito Sans", sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    text-transform: capitalize;
    color: #333
}

.nav-item .list-group-item {
    border-color: transparent !important;
    font-family: "Nunito Sans", sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 260%;
    text-transform: capitalize;
    color: #828282
}

.nav-item .list-group-item.active {
    background-color: transparent !important
}

a {
    text-decoration: none
}

.breadcrumb a {
    font-family: "Nunito Sans", sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    color: #424242;
    text-decoration: none
}

.pdf-text {
    font-family: "Nunito Sans", sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 22px;
    color: #000
}

.section-main {
    padding-left: 80px;
    padding-right: 80px
}

.fab-container {
    position: fixed;
    bottom: 60px;
    right: 20px;
    text-align: center;
    cursor: pointer;
    z-index: 100
}

.fab-container .button {
    width: 76px;
    height: 76px;
    background: #eb3b33;
    border-radius: 100%;
    text-align: center
}

.fab-container .button .iconbutton {
    width: 50px;
    height: 50px;
    border-radius: 100%;
    background: #ff4f79;
    box-shadow: 10px 10px 5px #aaa;
    text-align: center
}

.fab-container .button p {
    font-family: "Nunito Sans", sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    line-height: 15px;
    justify-items: center;
    text-align: center;
    align-items: center;
    color: #fff
}

@media (max-width:768px) {
    .hero-area .hero-text {
        position: relative;
        top: 200px;
        padding-left: 50px
    }

    .hero-area .col-md-6 {
        width: 500px
    }

    .hero-area .title-about {
        font-family: "Nunito Sans", sans-serif;
        font-style: normal;
        font-weight: 700;
        font-size: 36px;
        line-height: 100%;
        text-transform: uppercase;
        color: #fcfcfc
    }

    .hero-area .subtitle-about {
        font-family: "Nunito Sans", sans-serif;
        font-style: normal;
        font-weight: 400;
        font-size: 16px;
        line-height: 20px;
        color: #fff
    }

    .pdf-text {
        font-family: "Nunito Sans", sans-serif;
        font-style: normal;
        font-weight: 600;
        font-size: 14px;
        line-height: 22px;
        color: #000
    }

    .section-main {
        padding: 0
    }

    .swiper-button-next::after {
        display: none
    }

    .swiper-button-prev::after {
        display: none
    }
}

.hero-area .hero-text {
    position: relative;
    top: 200px;
    padding: 0
}

.hero-area .col-md-6 {
    width: 400px
}

.hero-area .title-about {
    font-family: "Nunito Sans", sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 26px;
    line-height: 100%;
    text-transform: uppercase;
    color: #fcfcfc
}

.hero-area .subtitle-about {
    font-family: "Nunito Sans", sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 20px;
    color: #fff
}

.pdf-text {
    font-family: "Nunito Sans", sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 10px;
    line-height: 22px;
    color: #000
}

.overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 1
}

p.lead {
    color: whitesmoke
}

.btn-outline-primary {
    color: #a6cee8;
    background-color: #22222294
}

.btn-outline-secondary {
    color: #e2bcbb;
    background-color: #22222294
}

.swiper-button-next::after {
    display: none
}

.swiper-button-prev::after {
    display: none
}

@media (max-width:400px) {
    .hero-area .col-md-6 {
        width: 300px
    }

    .swiper-button-next::after {
        display: none
    }

    .swiper-button-prev::after {
        display: none
    }
}

.homepage-product {
    font-family: "Nunito Sans", sans-serif;
    text-align: center;
    color: #1c80c3;
    font-weight: 600
}

.card_image {
    object-fit: cover
}

.col .ilustrasi-text {
    padding-top: 50px
}

.card-text {
    color: #fff;
    text-align: justify
}

.card-produk {
    background-color: #1c80c3;
    width: 1188px;
    color: #fff
}

.thumb-pic {
    margin-right: 70px
}

.btn-secondary:disabled {
    color: #fff;
    background-color: #eb3b33;
    border-color: #eb3b33
}

.fs-5 {
    font-size: 18px !important
}

.p-3 {
    padding: 0.5rem !important
}

.card-text-contact {
    color: #000;
    text-align: justify
}

.misi {
    padding-left: 1rem
}

.accordion-body {
    padding: 1rem 2rem
}

.produk-number {
    margin-left: 1rem
}

ol,
ul {
    padding-left: 1rem
}

/* Karir */
.bg-karir-one {
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #e0ebe3;
    border-radius: 100%
}

.bg-karir-two {
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f9edda;
    border-radius: 100%
}

.bg-karir-three {
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #e3e0f9;
    border-radius: 100%
}

#detail_karir ol,
#detail_karir ul {
    padding-left: 1rem
}

#tooltip {
    opacity: 0;
    position: absolute;
    background: #fff;
    color: #000;
    border-radius: 3px;
    -webkit-transition: all 0.1s ease;
    transition: all 0.1s ease;
    pointer-events: none;
    padding: 4px;
    margin: 100px;
    z-index: 1000;
    font-size: 14px;
    border-color: #000;
    box-shadow: 0 1px 2px 0 rgb(60 64 67 / 30%), 0 1px 3px 1px rgb(60 64 67 / 15%)
}

.title-update {
    font-family: "Nunito Sans", sans-serif;
    font-size: 14px;
    margin-top: 10px;
    color: #5b5b5b
}

.swiper-button-next .btn-arrow {
    position: absolute;
    background-color: #1f92c9;
    color: whitesmoke;
    right: -10px;
    top: -10px
}

.swiper-button-prev .btn-arrow {
    position: absolute;
    background-color: #1f92c9;
    color: whitesmoke;
    left: -10px;
    top: -10px
}

.btn-arrow {
    border-radius: 50%;
    height: 36px;
    width: 36px;
    line-height: 10px
}

.btn-arrow:hover {
    border-radius: 50%;
    height: 36px;
    width: 36px;
    line-height: 10px;
    background-color: #1f92c9;
    color: #fff
}

.btn-acara {
    background-color: #3e93cc;
    width: 150px;
    color: #fff
}

.acara-img {
    height: fit-content;
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 6px 16px 0 rgba(0, 0, 0, 0.08), 0 3px 6px -4px rgba(0, 0, 0, 0.12), 0 9px 28px 8px rgba(0, 0, 0, 0.05) !important;
}

@media (max-width:576px) {
    .swiper-button-next::after {
        display: none
    }

    .swiper-button-prev::after {
        display: none
    }
}

@media (max-width:992px) {
    .swiper-button-next::after {
        display: none
    }

    .swiper-button-prev::after {
        display: none
    }
}

@media (max-width:1200px) {
    .swiper-button-next::after {
        display: none
    }

    .swiper-button-prev::after {
        display: none
    }
}

@media (max-width:1400px) {
    .swiper-button-next::after {
        display: none
    }

    .swiper-button-prev::after {
        display: none
    }
}

/* Request Demo Post */
.fab-container *>.iconbutton {
    width: 60px;
    height: 60px;
    background-position: center center;
    border-radius: 10px;
    background-color: #ffffff !important;
    background-image: url(/upload/image/icon-white-70px.png);
    box-shadow: 0 5px 5px rgb(0 0 0 / 10%);
    /* opacity: 0.8; */
    transition: 0.2ms ease-out;
}

.fab-container *>.iconbutton:hover {
    box-shadow: 0 5px 20px rgb(0 0 0 / 20%);
    opacity: 1;
}

/*////////// Acara /////////////////*/

#acara-new *>.card {
    margin: 16px 0 16px 0;
}

#acara-new *>.content-acara {
    display: flex;
    flex-direction: row;
    position: relative;
    width: 100%;
    height: 200px;
    margin: 0;
    padding: 0;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
}

#acara-new *>.content-acara .img-wraped img {
    width: 200px !important;
    height: 200px;
    object-fit: cover;
    object-position: center;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
}

#acara-new *>.content-acara>.img-wraped {
    position: relative;
    width: 100%;
    max-width: 200px;
    height: 100%;
    max-height: 200px;
}

#acara-new *>.content-acara>.img-wraped a.date {
    position: absolute;
    top: 0;
    font-size: 20px;
    font-weight: bold;
    text-transform: uppercase;
}

#acara-new *>.content-acara>.description {
    width: 60%;
    height: 100%;
    /* max-height: 200px; */
    padding: 20px;
}

@media (min-width: 300px) and (max-width: 991px) {

    #acara-new *>.card {
        margin: 16px 0 16px;
        min-height: 0;
    }

    #acara-new *>.content-acara .img-wraped img {
        display: none;
    }

    #acara-new *>.content-acara>.description {
        display: flex;
        flex-direction: column;
        width: 100%;
        height: 100%;
        padding-bottom: 0px;
    }

    #acara-new *>.content-acara {
        height: auto !important;
        flex-direction: column;
    }

    #acara-new *>.content-acara>.date-time {
        width: auto !important;
        border-left: 0 !important;
        margin: -16px 0px 16px 0 !important;
    }

    #acara-new *>.content-acara>.date-time .url {
        margin-top: 25px;
    }
}

#acara-new *>.content-acara>.description .type {
    font-size: 12px !important;
    font-weight: 600;
    text-transform: uppercase;
    color: darkred;
}

#acara-new *>.content-acara>.description .date {
    font-size: 12px !important;
    font-weight: 400;
    text-transform: uppercase;
    color: gray;
}

#acara-new *>.content-acara>.description .title {
    font-size: 17px !important;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--bs-primary);
}

#acara-new *>.content-acara>.description .title a:hover {
    color: var(--bs-secondary);
    text-decoration: underline;
}

#acara-new *>.content-acara>.description .overview p {
    font-size: 16px !important;
    font-weight: 400;
    line-height: 20px !important;
    color: #000;
    margin: 16px 0;
}

#acara-new *>.content-acara>.date-time {
    width: 20%;
    border-left: 1px solid rgb(0 0 0 / 5%);
    margin: 30px;
    padding-left: 20px;
}

#acara-new *>.content-acara>.date-time .date,
#acara-new *>.content-acara>.date-time .time {
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    color: #333;
}

#acara-new *>.content-acara>.date-time .url a:hover {
    color: var(--bs-secondary);
    text-decoration: underline;
}

#acara-new *>.content-acara>.description div.mb-auto p {
    font-size: 16px !important;
    line-height: 20px;
    margin-bottom: auto !important;
    text-overflow: ellipsis;
}

.card {
    margin: 0;
}

.video-container {
    width: 100%;
    height: 300px;
}

/* Highlight Text on search */

.TitleHighlight {
    /* font-size: 14px; */
    font-weight: 600;
    color: inherit;
    background-color: rgb(36 107 159 / 16%);
}

.DescHighlight {
    /* font-size: 14px; */
    font-weight: 400;
    color: inherit;
    background-color: rgb(36 107 159 / 16%);
}