body {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
}

.custom-html-content, .custom-html-content * {
    font-family: "Inter", sans-serif !important;
}

a {
    text-decoration: none;
}

.owl-dots {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    margin-top: -2em;
}

.owl-dots .owl-dot {
    display: inline-block;
    margin: 5px;
}

.owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    background: #ddd;
    border-radius: 50%;
    display: block;
}

.owl-dots .owl-dot.active span {
    background: var(--bs-green);
}

.dropdown-item.active, .dropdown-item:active {
    background-color: var(--bs-green) !important;
}

.text-bg-primary {
    color: #fff !important;
    background-color: var(--bs-green) !important;
}

.text-justify, .text-justify * {
    text-align: justify !important;
}

.badge {
    text-decoration: none;
}

.card-equal {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.circle-frame {
    width: 140px;
    height: 140px;
    border: 3px solid var(--bs-light);
    border-radius: 50%;
    font-size: 1.5rem;
    background-color: #fff;
    color: var(--bs-green);
}

.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  color: var(--bs-white);
  background-color: var(--bs-green);
}

.btn-outline-primary {
    --bs-btn-color: var(--bs-green) !important;
    --bs-btn-border-color: var(--bs-green) !important;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: var(--bs-green) !important;
    --bs-btn-hover-border-color: var(--bs-green) !important;
    --bs-btn-focus-shadow-rgb: 13, 110, 253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: var(--bs-green) !important;
    --bs-btn-active-border-color: var(--bs-green) !important;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: var(--bs-green) !important;
    --bs-btn-disabled-bg: transparent;
    --bs-btn-disabled-border-color: var(--bs-green) !important;
    --bs-gradient: none;
}

.btn-link {
    text-decoration: none;
}

.form-control:focus, .form-select:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.25rem rgb(190, 233, 206);
    border-color: #bee9ce;
}

.form-check-input:checked {
    background-color: var(--bs-green);
    border-color: var(--bs-green);
}

.page-link.active, .active > .page-link {
    background-color: var(--bs-green) !important;
    border-color: var(--bs-green) !important;
}

.page-link:focus {
    background-color: #bee9ce !important;
    box-shadow: 0 0 0 0.25rem rgb(190, 233, 206) !important;
  }

/*--------------------------------------
Accordion
--------------------------------------*/

.accordion-button:not(.collapsed) {
    color: var(--bs-green) !important;
    background-color: var(--bs-green-lighter);
}
.accordion-button:focus {
    border-color: var(--bs-green);
    box-shadow: 0 0 0 .25rem var(--bs-green-lighter);
}
.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml, %3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button:focus {
    border-color: #e8f8ed;
    box-shadow: 0 0 0 0.25rem rgb(190, 233, 206);
}

/*--------------------------------------
Blog
--------------------------------------*/

.blog .blog-item {
    border-radius: 10px;
    /* background: var(--bs-white); */
    /* box-shadow: inset 0 0 45px rgba(0, 0, 0, .1); */
    transition: 0.5s;
}

.blog-item .blog-title {
    height: 100%;
    min-height: 50px;
    max-height: 50px;
    text-decoration: none;
}

.blog .blog-item a {
    transition: 0.5s;
}

.blog .blog-item:hover a:hover {
    color: var(--bs-primary);
}

.blog .blog-item .blog-img {
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.blog .blog-item .blog-img img {
    transition: 0.5s;
}

.blog .blog-item:hover .blog-img img {
    transform: scale(1.2);
}

.blog .blog-item .blog-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 10px;
    background: rgba(0, 208, 132, 0.1);
    opacity: 0;
    transition: 0.5s;
    z-index: 1;
}

.blog .blog-item:hover .blog-img::after {
    opacity: 1;
}

.blog .blog-item .blog-img .blog-tags {
    position: absolute;
    bottom: 25px;
    left: 25px;
    z-index: 5;
}

.blog .blog-item .blog-img .blog-tags a {
    color: var(--bs-white);
    background: var(--bs-primary);
    transition: 0.5s;
}

.blog .blog-item:hover .blog-img .blog-tags a:hover {
    color: var(--bs-dark);
}

.blog-swiper {
    overflow-x: hidden;
}

.blog .owl-nav .owl-prev {
    position: absolute;
    top: -58px;
    left: 0;
    background: var(--bs-primary);
    color: var(--bs-white);
    padding: 6px 35px;
    border-radius: 30px;
    transition: 0.5s;
}

.blog .owl-nav .owl-prev:hover {
    background: var(--bs-dark);
    color: var(--bs-primary);
}

.blog .owl-nav .owl-next {
    position: absolute;
    top: -58px;
    right: 0;
    background: var(--bs-primary);
    color: var(--bs-white);
    padding: 6px 35px;
    border-radius: 30px;
    transition: 0.5s;
}

.blog .owl-nav .owl-next:hover {
    background: var(--bs-dark);
    color: var(--bs-primary);
}

.blog-description {
    white-space: normal;
    word-wrap: break-word;
    overflow-wrap: break-word;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}


/*--------------------------------------
Blog
--------------------------------------*/

.bg-breadcrumb {
    position: relative;
    overflow: hidden;
    /* background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(../../img/background/breadcrumb.jpg); */
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    padding: 80px 0;
    transition: 0.5s;
}

/* @media (min-width: 992px) {
    .bg-breadcrumb {
        padding: 140px 0 60px 0;
    }
}

@media (max-width: 991px) {
    .bg-breadcrumb {
        padding: 60px 0 60px 0;
    }
} */

.bg-breadcrumb .breadcrumb {
    position: relative;
}

.bg-breadcrumb .breadcrumb .breadcrumb-item a {
    color: var(--bs-white);
}


/*--------------------------------------
Button
--------------------------------------*/

.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-xl-square {
    width: 66px;
    height: 66px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square,
.btn-xl-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.btn.btn-primary {
    color: var(--bs-white);
    border: none;
    background-color: var(--bs-green);
}

.btn.btn-primary:hover {
    background: var(--bs-dark);
    color: var(--bs-primary);
}

.btn.btn-light {
    color: var(--bs-primary);
    border: none;
}

.btn.btn-light:hover {
    color: var(--bs-white);
    background: var(--bs-primary);
}

.btn.btn-light {
    background: var(--bs-light) !important;
    color: var(--bs-primary) !important;
    font-weight: 400;
    transition: 0.5s;
}

.btn.btn-light:hover {
    background: var(--bs-primary) !important;
    color: var(--bs-light) !important;
}

.btn-check:active+.btn-primary:focus, .btn-check:checked+.btn-primary:focus, .btn-primary.active:focus, .btn-primary:active:focus, .show>.btn-primary.dropdown-toggle:focus {
    box-shadow: 0 0 0 .25rem var(--bs-green-lighter) !important;
}
.btn-check:focus+.btn-primary, .btn-primary:focus {
    box-shadow: 0 0 0 .25rem var(--bs-green-lighter) !important;
}

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    transition: 0.5s;
    z-index: 99;
}

.faq-btn {
    position: fixed;
    right: 30px;
    bottom: 30px;
    transition: 0.5s;
    z-index: 99;
    border-width: 2px;
    font-weight: 500;
    z-index: 99;
}

/*--------------------------------------
Demographic
--------------------------------------*/

.demographic {
    padding: 4rem 3rem;
    width: 100%;
    height: auto;
    /* background-color: #e8f8ed; */
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' version='1.1' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:svgjs='http://svgjs.dev/svgjs' width='1440' height='560' preserveAspectRatio='none' viewBox='0 0 1440 560'%3e%3cg mask='url(%26quot%3b%23SvgjsMask1037%26quot%3b)' fill='none'%3e%3crect width='1440' height='560' x='0' y='0' fill='rgba(232%2c 248%2c 237%2c 1)'%3e%3c/rect%3e%3cpath d='M1069.46 289.32a51.38 51.38 0 1 0-84.27-58.8z' stroke='rgba(166%2c 215%2c 130%2c 1)'%3e%3c/path%3e%3cpath d='M632.19 362L647.59 362L647.59 377.4L632.19 377.4z' fill='rgba(234%2c 243%2c 166%2c 1)'%3e%3c/path%3e%3cpath d='M1228.18 153.57a21.33 21.33 0 1 0-0.74 42.65z' stroke='rgba(166%2c 215%2c 130%2c 1)'%3e%3c/path%3e%3cpath d='M918.89 420.72L952.84 420.72L952.84 454.67L918.89 454.67z' stroke='rgba(234%2c 243%2c 166%2c 1)'%3e%3c/path%3e%3cpath d='M1136.82 260.32L1144.22 260.32L1144.22 267.72L1136.82 267.72z' stroke='rgba(183%2c 255%2c 205%2c 1)'%3e%3c/path%3e%3cpath d='M357.25 473.98L377 473.98L377 493.73L357.25 493.73z' fill='rgba(183%2c 255%2c 205%2c 1)'%3e%3c/path%3e%3cpath d='M148.71 257.78L165.01 257.78L165.01 274.08L148.71 274.08z' fill='rgba(183%2c 255%2c 205%2c 1)'%3e%3c/path%3e%3cpath d='M1021.78 304.75 a35.88 35.88 0 1 0 71.76 0 a35.88 35.88 0 1 0 -71.76 0z' stroke='rgba(183%2c 255%2c 205%2c 1)'%3e%3c/path%3e%3cpath d='M882.64 367.26a37.87 37.87 0 1 0-75.7-2.24z' stroke='rgba(166%2c 215%2c 130%2c 1)'%3e%3c/path%3e%3cpath d='M691 158.88L721.31 158.88L721.31 189.19L691 189.19z' fill='rgba(234%2c 243%2c 166%2c 1)'%3e%3c/path%3e%3cpath d='M264.78 16.77L310.13 16.77L310.13 27.97L264.78 27.97z' fill='rgba(166%2c 215%2c 130%2c 1)'%3e%3c/path%3e%3cpath d='M1216.78 385.15 a23.85 23.85 0 1 0 47.7 0 a23.85 23.85 0 1 0 -47.7 0z' stroke='rgba(183%2c 255%2c 205%2c 1)'%3e%3c/path%3e%3cpath d='M1079.41 102.96L1092.02 102.96L1092.02 115.57L1079.41 115.57z' fill='rgba(166%2c 215%2c 130%2c 1)'%3e%3c/path%3e%3cpath d='M853.38 57.19L876.24 57.19L876.24 75.77L853.38 75.77z' fill='rgba(234%2c 243%2c 166%2c 1)'%3e%3c/path%3e%3cpath d='M754.54 473.23a29.37 29.37 0 1 0-24.35 53.46z' fill='rgba(234%2c 243%2c 166%2c 1)'%3e%3c/path%3e%3cpath d='M361.4 476.89L387.61 476.89L387.61 529.18L361.4 529.18z' fill='rgba(183%2c 255%2c 205%2c 1)'%3e%3c/path%3e%3cpath d='M1179.56 370.79 a40.05 40.05 0 1 0 80.1 0 a40.05 40.05 0 1 0 -80.1 0z' stroke='rgba(183%2c 255%2c 205%2c 1)'%3e%3c/path%3e%3cpath d='M752.29 21.05 a5.58 5.58 0 1 0 11.16 0 a5.58 5.58 0 1 0 -11.16 0z' stroke='rgba(183%2c 255%2c 205%2c 1)'%3e%3c/path%3e%3cpath d='M188.85 69.12 a24.21 24.21 0 1 0 48.42 0 a24.21 24.21 0 1 0 -48.42 0z' fill='rgba(166%2c 215%2c 130%2c 1)'%3e%3c/path%3e%3cpath d='M1268.48 407.89a40.14 40.14 0 1 0-76.27-25.04z' fill='rgba(183%2c 255%2c 205%2c 1)'%3e%3c/path%3e%3cpath d='M1253.06 165.44L1300.44 165.44L1300.44 174.74L1253.06 174.74z' stroke='rgba(234%2c 243%2c 166%2c 1)'%3e%3c/path%3e%3cpath d='M657.25 578.74a46.35 46.35 0 1 0-75.31-54.06z' stroke='rgba(166%2c 215%2c 130%2c 1)'%3e%3c/path%3e%3cpath d='M209.92 436.36a46.88 46.88 0 1 0-77.76 52.39z' stroke='rgba(183%2c 255%2c 205%2c 1)'%3e%3c/path%3e%3cpath d='M485.16 64.22a40.81 40.81 0 1 0 24.85-77.75z' stroke='rgba(234%2c 243%2c 166%2c 1)'%3e%3c/path%3e%3cpath d='M644.63 463.99L650.84 463.99L650.84 470.2L644.63 470.2z' stroke='rgba(183%2c 255%2c 205%2c 1)'%3e%3c/path%3e%3cpath d='M470.11 212.94 a0.51 0.51 0 1 0 1.02 0 a0.51 0.51 0 1 0 -1.02 0z' fill='rgba(234%2c 243%2c 166%2c 1)'%3e%3c/path%3e%3cpath d='M657.2 360a28.03 28.03 0 1 0-43.41-35.47z' stroke='rgba(183%2c 255%2c 205%2c 1)'%3e%3c/path%3e%3cpath d='M284.36 319.6L295.64 319.6L295.64 330.88L284.36 330.88z' stroke='rgba(183%2c 255%2c 205%2c 1)'%3e%3c/path%3e%3cpath d='M104.2 556.82L110.55 556.82L110.55 557.12L104.2 557.12z' fill='rgba(166%2c 215%2c 130%2c 1)'%3e%3c/path%3e%3cpath d='M820.61 154.24 a18.25 18.25 0 1 0 36.5 0 a18.25 18.25 0 1 0 -36.5 0z' stroke='rgba(234%2c 243%2c 166%2c 1)'%3e%3c/path%3e%3cpath d='M799.93 296.02 a10.58 10.58 0 1 0 21.16 0 a10.58 10.58 0 1 0 -21.16 0z' fill='rgba(166%2c 215%2c 130%2c 1)'%3e%3c/path%3e%3cpath d='M873.22 25.68L917.58 25.68L917.58 59.32L873.22 59.32z' stroke='rgba(166%2c 215%2c 130%2c 1)'%3e%3c/path%3e%3cpath d='M1299.75 405.07L1332.73 405.07L1332.73 442.28L1299.75 442.28z' fill='rgba(234%2c 243%2c 166%2c 1)'%3e%3c/path%3e%3c/g%3e%3cdefs%3e%3cmask id='SvgjsMask1037'%3e%3crect width='1440' height='560' fill='white'%3e%3c/rect%3e%3c/mask%3e%3c/defs%3e%3c/svg%3e");
}

.demographic h1 {
    font-size: 3.5rem;
}

.demographic h6 {
    font-size: 1.5rem;
}

/* .demographic::after {
    content: '';
    background-image: url('/assets/theme-2/img/u1094u109ueadakjnda.svg');
    background-repeat: no-repeat;
    position: absolute;
    left: 500px;
    top: -20px;
    width: 100%;
    height: 100%    ;
    z-index: -1;
    opacity: .8;
} */



/*--------------------------------------
FAQ
--------------------------------------*/

.faq-section {
    background-color: #ffffff;
    background: 
        linear-gradient(to top, white, transparent 50%),
        linear-gradient(to bottom, white, transparent 50%),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='192' height='192' viewBox='0 0 192 192'%3E%3Cpath fill='%23d1efcd' fill-opacity='0.4' d='M192 15v2a11 11 0 0 0-11 11c0 1.94 1.16 4.75 2.53 6.11l2.36 2.36a6.93 6.93 0 0 1 1.22 7.56l-.43.84a8.08 8.08 0 0 1-6.66 4.13H145v35.02a6.1 6.1 0 0 0 3.03 4.87l.84.43c1.58.79 4 .4 5.24-.85l2.36-2.36a12.04 12.04 0 0 1 7.51-3.11 13 13 0 1 1 .02 26 12 12 0 0 1-7.53-3.11l-2.36-2.36a4.93 4.93 0 0 0-5.24-.85l-.84.43a6.1 6.1 0 0 0-3.03 4.87V143h35.02a8.08 8.08 0 0 1 6.66 4.13l.43.84a6.91 6.91 0 0 1-1.22 7.56l-2.36 2.36A10.06 10.06 0 0 0 181 164a11 11 0 0 0 11 11v2a13 13 0 0 1-13-13 12 12 0 0 1 3.11-7.53l2.36-2.36a4.93 4.93 0 0 0 .85-5.24l-.43-.84a6.1 6.1 0 0 0-4.87-3.03H145v35.02a8.08 8.08 0 0 1-4.13 6.66l-.84.43a6.91 6.91 0 0 1-7.56-1.22l-2.36-2.36A10.06 10.06 0 0 0 124 181a11 11 0 0 0-11 11h-2a13 13 0 0 1 13-13c2.47 0 5.79 1.37 7.53 3.11l2.36 2.36a4.94 4.94 0 0 0 5.24.85l.84-.43a6.1 6.1 0 0 0 3.03-4.87V145h-35.02a8.08 8.08 0 0 1-6.66-4.13l-.43-.84a6.91 6.91 0 0 1 1.22-7.56l2.36-2.36A10.06 10.06 0 0 0 107 124a11 11 0 0 0-22 0c0 1.94 1.16 4.75 2.53 6.11l2.36 2.36a6.93 6.93 0 0 1 1.22 7.56l-.43.84a8.08 8.08 0 0 1-6.66 4.13H49v35.02a6.1 6.1 0 0 0 3.03 4.87l.84.43c1.58.79 4 .4 5.24-.85l2.36-2.36a12.04 12.04 0 0 1 7.51-3.11A13 13 0 0 1 81 192h-2a11 11 0 0 0-11-11c-1.94 0-4.75 1.16-6.11 2.53l-2.36 2.36a6.93 6.93 0 0 1-7.56 1.22l-.84-.43a8.08 8.08 0 0 1-4.13-6.66V145H11.98a6.1 6.1 0 0 0-4.87 3.03l-.43.84c-.79 1.58-.4 4 .85 5.24l2.36 2.36a12.04 12.04 0 0 1 3.11 7.51A13 13 0 0 1 0 177v-2a11 11 0 0 0 11-11c0-1.94-1.16-4.75-2.53-6.11l-2.36-2.36a6.93 6.93 0 0 1-1.22-7.56l.43-.84a8.08 8.08 0 0 1 6.66-4.13H47v-35.02a6.1 6.1 0 0 0-3.03-4.87l-.84-.43c-1.59-.8-4-.4-5.24.85l-2.36 2.36A12 12 0 0 1 28 109a13 13 0 1 1 0-26c2.47 0 5.79 1.37 7.53 3.11l2.36 2.36a4.94 4.94 0 0 0 5.24.85l.84-.43A6.1 6.1 0 0 0 47 84.02V49H11.98a8.08 8.08 0 0 1-6.66-4.13l-.43-.84a6.91 6.91 0 0 1 1.22-7.56l2.36-2.36A10.06 10.06 0 0 0 11 28 11 11 0 0 0 0 17v-2a13 13 0 0 1 13 13c0 2.47-1.37 5.79-3.11 7.53l-2.36 2.36a4.94 4.94 0 0 0-.85 5.24l.43.84A6.1 6.1 0 0 0 11.98 47H47V11.98a8.08 8.08 0 0 1 4.13-6.66l.84-.43a6.91 6.91 0 0 1 7.56 1.22l2.36 2.36A10.06 10.06 0 0 0 68 11 11 11 0 0 0 79 0h2a13 13 0 0 1-13 13 12 12 0 0 1-7.53-3.11l-2.36-2.36a4.93 4.93 0 0 0-5.24-.85l-.84.43A6.1 6.1 0 0 0 49 11.98V47h35.02a8.08 8.08 0 0 1 6.66 4.13l.43.84a6.91 6.91 0 0 1-1.22 7.56l-2.36 2.36A10.06 10.06 0 0 0 85 68a11 11 0 0 0 22 0c0-1.94-1.16-4.75-2.53-6.11l-2.36-2.36a6.93 6.93 0 0 1-1.22-7.56l.43-.84a8.08 8.08 0 0 1 6.66-4.13H143V11.98a6.1 6.1 0 0 0-3.03-4.87l-.84-.43c-1.59-.8-4-.4-5.24.85l-2.36 2.36A12 12 0 0 1 124 13a13 13 0 0 1-13-13h2a11 11 0 0 0 11 11c1.94 0 4.75-1.16 6.11-2.53l2.36-2.36a6.93 6.93 0 0 1 7.56-1.22l.84.43a8.08 8.08 0 0 1 4.13 6.66V47h35.02a6.1 6.1 0 0 0 4.87-3.03l.43-.84c.8-1.59.4-4-.85-5.24l-2.36-2.36A12 12 0 0 1 179 28a13 13 0 0 1 13-13zM84.02 143a6.1 6.1 0 0 0 4.87-3.03l.43-.84c.8-1.59.4-4-.85-5.24l-2.36-2.36A12 12 0 0 1 83 124a13 13 0 1 1 26 0c0 2.47-1.37 5.79-3.11 7.53l-2.36 2.36a4.94 4.94 0 0 0-.85 5.24l.43.84a6.1 6.1 0 0 0 4.87 3.03H143v-35.02a8.08 8.08 0 0 1 4.13-6.66l.84-.43a6.91 6.91 0 0 1 7.56 1.22l2.36 2.36A10.06 10.06 0 0 0 164 107a11 11 0 0 0 0-22c-1.94 0-4.75 1.16-6.11 2.53l-2.36 2.36a6.93 6.93 0 0 1-7.56 1.22l-.84-.43a8.08 8.08 0 0 1-4.13-6.66V49h-35.02a6.1 6.1 0 0 0-4.87 3.03l-.43.84c-.79 1.58-.4 4 .85 5.24l2.36 2.36a12.04 12.04 0 0 1 3.11 7.51A13 13 0 1 1 83 68a12 12 0 0 1 3.11-7.53l2.36-2.36a4.93 4.93 0 0 0 .85-5.24l-.43-.84A6.1 6.1 0 0 0 84.02 49H49v35.02a8.08 8.08 0 0 1-4.13 6.66l-.84.43a6.91 6.91 0 0 1-7.56-1.22l-2.36-2.36A10.06 10.06 0 0 0 28 85a11 11 0 0 0 0 22c1.94 0 4.75-1.16 6.11-2.53l2.36-2.36a6.93 6.93 0 0 1 7.56-1.22l.84.43a8.08 8.08 0 0 1 4.13 6.66V143h35.02z'%3E%3C/path%3E%3C/svg%3E");
}

.faq-section .accordion .accordion-item .accordion-header .accordion-button {
    color: var(--bs-secondary);
}

.faq-section .accordion .accordion-item .accordion-header .accordion-button.collapsed {
    color: var(--bs-dark);
}

.faq-section .faq-content {
    width: 100%;
    /* max-width: 660px; */
}

/*--------------------------------------
Feature
--------------------------------------*/

.feature {
    background: 
        linear-gradient(to top, white, transparent 50%),
        linear-gradient(to bottom, white, transparent 50%),
        url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' version='1.1' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:svgjs='http://svgjs.dev/svgjs' width='1440' height='560' preserveAspectRatio='none' viewBox='0 0 1440 560'%3e%3cg mask='url(%26quot%3b%23SvgjsMask1016%26quot%3b)' fill='none'%3e%3crect width='1440' height='560' x='0' y='0' fill='rgba(188%2c 253%2c 205%2c 1)'%3e%3c/rect%3e%3cpath d='M0%2c657.91C121.385%2c649.231%2c183.857%2c509.954%2c278.815%2c433.845C361.761%2c367.363%2c456.65%2c321.932%2c522.902%2c238.802C604.769%2c136.079%2c702.131%2c29.892%2c705.408%2c-101.422C708.822%2c-238.25%2c641.164%2c-375.597%2c540.549%2c-468.389C443.764%2c-557.649%2c301.026%2c-558.044%2c173.751%2c-591.743C50.323%2c-624.424%2c-72.92%2c-701.454%2c-194.693%2c-663.063C-316.095%2c-624.789%2c-374.061%2c-492.475%2c-454.373%2c-393.716C-531.957%2c-298.311%2c-634.367%2c-215.327%2c-657.075%2c-94.473C-680.135%2c28.256%2c-643.467%2c157.633%2c-577.943%2c263.938C-516.374%2c363.826%2c-402.627%2c409.544%2c-305.672%2c475.636C-205.624%2c543.837%2c-120.775%2c666.545%2c0%2c657.91' fill='%23a7fcbd'%3e%3c/path%3e%3cpath d='M1440 851.0899999999999C1509.105 855.624 1576.129 895.4 1642.19 874.614 1715.434 851.568 1779.579 799.178 1817.387 732.347 1856.704 662.848 1871.189 578.44 1853.834 500.5 1837.0230000000001 425.003 1789.3220000000001 355.456 1724.179 313.757 1665.221 276.017 1585.41 312.331 1520.182 286.924 1444.961 257.624 1401.364 144.166 1321.66 156.971 1245.131 169.26600000000002 1236.709 281.295 1186.688 340.504 1137.5439999999999 398.674 1037.7359999999999 425.336 1030.864 501.175 1023.922 577.787 1113.459 625.4110000000001 1155.005 690.153 1189.438 743.811 1198.654 817.808 1254.17 849.158 1309.225 880.248 1376.909 846.951 1440 851.0899999999999' fill='%23d1fedd'%3e%3c/path%3e%3c/g%3e%3cdefs%3e%3cmask id='SvgjsMask1016'%3e%3crect width='1440' height='560' fill='white'%3e%3c/rect%3e%3c/mask%3e%3c/defs%3e%3c/svg%3e");
      background-position: center;
      background-size: cover;
      background-repeat: no-repeat;
}

.feature .feature-item {
    text-align: center;
    border-radius: 10px;
    /* background: var(--bs-light); */
    border: 1px solid transparent;
    transition: 0.5s;
}

.feature .feature-item:hover {
    border: 1px solid var(--bs-primary);
}

.feature .feature-item .feature-icon {
    background: var(--bs-white);
    border-radius: 10px;
    display: inline-block;
}



/*--------------------------------------
Footer
--------------------------------------*/

.footer {
    background: #f8f9fb;
}

.footer .footer-item {
    display: flex;
    flex-direction: column;
}

.footer .footer-item a {
    line-height: 35px;
    color: var(--bs-dark);
    transition: 0.5s;
    text-decoration: none;
}

.footer .footer-item p {
    line-height: 35px;
}

.footer .footer-item a:hover {
    color: var(--bs-primary);
}

.footer .footer-item .footer-btn a,
.footer .footer-item .footer-btn a i {
    transition: 0.5s;
}

.footer .footer-item .footer-btn a:hover {
    background: var(--bs-white);
}

.footer .footer-item .footer-btn a:hover i {
    color: var(--bs-primary);
}

.copyright {
    background: #5a6f80;
}

.ck-table-resized th, .ck-table-resized td {
    border: 1px solid hsl(0, 0%, 70%);
}

.ck-table-resized {
    border-style: none !important;
}

/*--------------------------------------
Hero
--------------------------------------*/

.hero-text {
    font-size: 4.5rem;
}

.hero-sub-text {
    font-size: 1.5rem;
}

.hero-container::after {
    content: '';
    background-image: url(../../img/background/369215459_f3ea0fe4-e8b5-415e-bfb2-4b9329a8f1f3.svg);
    background-repeat: no-repeat;
    position: absolute;
    left: 36.5%;
    top: -2%;
    width: 300px;
    height: 100%;
    z-index: -1;
    opacity: .8;
}

.hero-container:before {
    content: '';
    background-image: url(../../img/abstract/369215459_f3ea0fe4-e8b5-415e-bfb2-4b9329a8f1f3.svg);
    background-repeat: no-repeat;
    position: absolute;
    left: -5%;
    top: 80%;
    width: 300px;
    height: 100%;
    z-index: -1;
    opacity: .8;
}

@media (max-width: 992px) {
    .hero-container:before {
        left: -5%;
        top: 80%;
    }

    .hero-container:after {
        left: 60%;
        top: 42%;
    }
}

.hero-swiper-item {
    width: 100%;
    max-height: calc(100vh - 220px);
    cursor: pointer;
}

.hero-swiper-item img, video {
    border-radius: 1em;
    height: calc(100vh - 220px);
    max-height: calc(100vh - 220px);
    object-fit: cover;
}

@media (max-width: 540px) {
    .hero-text {
        font-size: 3rem;
    }
    .hero-sub-text {
        font-size: 1.2rem;
    }
    .hero-swiper-item {
        max-height: calc(100vh - 520px);
    }
    .hero-swiper-item img {
        max-height: calc(100vh - 520px);
    }
    .hero-container::after {
        width: auto !important;
        right: 0 !important;
    }
    .announcement-swiper {
        margin-bottom: 2em;
    }
    .demographic-item {
        margin-bottom: 3em;
    }
    .hero-annoucement {
        margin-left: -1em;
        margin-right: -1em;
    }
}

.announcement-swiper-item {
    position: relative;
    height: 100px; 
    overflow: hidden;
    align-items: center;
    white-space: nowrap;
}



/*--------------------------------------
Navbar
--------------------------------------*/

.navbar {
    border-bottom: 1px solid #F0F3F7 !important;
}

.navbar-light .navbar-nav .nav-link {
    position: relative;
    margin-right: 25px;
    padding: 35px 0;
    color: var(--bs-dark);
    font-size: 16px;
    font-weight: 400;
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-nav .nav-link,
.sticky-top.navbar-light .navbar-nav .nav-item .nav-link {
    padding: 20px 0;
    color: var(--bs-dark);
}

.navbar-light .navbar-nav .nav-item .nav-link {
    color: var(--bs-dark);
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .nav-item .nav-link:hover,
.navbar-light .navbar-nav .nav-item .nav-link.active  {
    color: var(--bs-primary);
}

.navbar-light .navbar-brand img {
    max-height: 60px;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-brand img {
    max-height: 45px;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
    margin-left: 8px;
}

.dropdown .dropdown-menu a:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light);
    transition: .5s;
    opacity: 1;
}

@media (max-width: 991.98px) {
    .sticky-top.navbar-light {
        position: relative;
        background: var(--bs-white);
    }

    .navbar.navbar-expand-lg .navbar-toggler {
        padding: 10px 20px;
        border: 1px solid var(--bs-primary);
        color: var(--bs-primary);
    }

    .navbar-light .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid #DDDDDD;
    }

    .navbar-light .navbar-nav .nav-link,
    .sticky-top.navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
        margin-left: 0;
        color: var(--bs-dark);
    }

    .navbar-light .navbar-nav .nav-item .nav-link {
        color: var(--bs-dark);
    }

    .navbar-light .navbar-brand img {
        max-height: 45px;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        border-radius: 10px;
        transition: .5s;
        opacity: 0;
    }

    .navbar-light {
        position: relative;
        width: 100%;
        top: 0;
        left: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .1);
        z-index: 999;
    }
    
    .sticky-top.navbar-light {
        position: fixed;
        background: var(--bs-light);
    }

    .navbar-light .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 0;
        height: 2px;
        bottom: -1px;
        left: 50%;
        background: var(--bs-primary);
        transition: .5s;
    }

    .navbar-light .navbar-nav .nav-link:hover::before,
    .navbar-light .navbar-nav .nav-link.active::before {
        width: calc(100% - 2px);
        left: 1px;
    }

    .navbar-light .navbar-nav .nav-link::after {
        position: absolute;
        content: "";
        width: 0;
        height: 0;
        bottom: -1px;
        left: 50%;
        background: var(--bs-primary);
        transition: .5s;
    }

    .navbar-light .navbar-nav .nav-link:hover::after,
    .navbar-light .navbar-nav .nav-link.active::after {
        width: 2px;
        height: 12px;
    }
}

@media (max-width: 1200px) {
    .navbar-light .navbar-nav .nav-link {
        margin-right: 12px;
    }
}

@media (max-width: 1060px) {
    .navbar-light .navbar-nav .nav-link {
        font-size: 15px;
    }
}



/*--------------------------------------
Service
--------------------------------------*/

/* .service::after {
    content: '';
    background-image: linear-gradient(to right, rgba(255, 255, 255, 0.904), rgba(255, 255, 255, 0.541)), url('/assets/theme-2/img/portfolio-left-dec.jpg');
    background-repeat: no-repeat;
    position: absolute;
    left: 0;
    top: 0px;
    width: 677px;
    height: 759px;
    z-index: -1;
} */

.service .service-item {
    background: var(--bs-light);
    border-radius: 10px;
    transition: 0.5s;
}

.service .service-item:hover {
    box-shadow: 0 0 45px rgba(0, 0, 0, .2);
}

.service .service-item .service-img {
    position: relative;
    overflow: hidden;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    transition: 0.5s;
}

.service .service-item .service-img img {
    transition: 0.5s;
}

.service .service-item:hover .service-img img {
    transform: scale(1.2);
}



/*--------------------------------------
Spinner
--------------------------------------*/

#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}



/*--------------------------------------
Team
--------------------------------------*/

.team .team-item {
    position: relative;
    padding: 0 25px 25px 25px;
    border-radius: 10px;
    transition: 0.5s;
    cursor: pointer;
}

.team .team-item::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    background: var(--bs-light);
    border-radius: 10px;
    transition: 0.5s;
    z-index: -1;
}

.team .team-item:hover::before {
    height: 0;
}

.team .team-item::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    bottom: 0;
    left: 0;
    border-radius: 10px;
    transition: 0.5s;
    z-index: -1;
}

.team .team-item:hover::after {
    height: 100%;
    background: var(--bs-primary);
}

.team .team-item .team-img {
    width: 100%; 
    height: 100%;
    border-radius: 100%;
    position: relative;
    margin-top: 50%;
    transform: translateY(-50%);
    margin-bottom: -50%;
    display: flex;
    justify-content: center;
    border: 4px solid var(--bs-primary);
    border-style: dotted;
    padding: 4px;
    background: var(--bs-white);
    transition: 0.5s;
}

.team .team-item:hover .team-img {
    border: 4px solid var(--bs-white);
    border-style: dotted;
    background: 0;
}

.team .team-item .team-img img {
    width: 100%;
    height: 100%;
    border-radius: 100%;
    transition: 0.5s;
    object-fit: cover;
}

.team .team-item .team-title {
    padding: 25px 0 25px 0;
    text-align: center;
}

.team .team-item .team-title h4,
.team .team-item .team-title p {
    transition: 0.5s;
}

.team .team-item:hover .team-title h4,
.team .team-item:hover .team-title p {
    color: var(--bs-white);
}

.team .team-item .team-icon {
    display: flex;
    justify-content: center;
}

.team .team-item .team-icon a {
    transition: 0.5s;
}

.team .team-item:hover .team-icon a {
    color: var(--bs-dark);
    background: var(--bs-white);
}

.team .team-item:hover .team-icon a:hover {
    color: var(--bs-primary);
    background: var(--bs-dark);
}

/*--------------------------------------
Testimonial
--------------------------------------*/

.testimonial .testimonial-item {
    position: relative;
    margin-bottom: 30px;
    padding: 0 25px 25px 25px;
}

.testimonial .testimonial-item::before {
    content: "";
    position: absolute;
    width: 100%;
    height: calc(100% - 50px);
    bottom: 0;
    left: 0;
    border-radius: 10px;
    background: var(--bs-light);
    z-index: -1;
}

.testimonial .testimonial-item .testimonial-img {
    display: flex;
    justify-content: center;
}

.testimonial .testimonial-item .testimonial-img img {
    height: 140px;
    border-radius: 100px;
    border: 5px solid var(--bs-light);
    border-style: double;
    background: var(--bs-white);
}

.testimonial .testimonial-item .testimonial-text {
    padding: 25px 0;
    text-align: center;
}

.testimonial-title {
    display: -webkit-box;
    -webkit-line-clamp: 3; 
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 5.5rem; 
}

@media (max-width: 540px) {
    .testimonial-title {
        height: 3.5rem; 
    }
}

/*--------------------------------------
Timeline
--------------------------------------*/

.timeline {
    position: relative;
    width: 100%;
    margin: 0 auto;
    padding: 15px 0;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 2px;
    background: var(--bs-green);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1px;
}

.timeline-container {
    padding: 15px 30px;
    position: relative;
    background: inherit;
    width: 50%;
}

.timeline-container.left {
    left: 0;
}

.timeline-container.right {
    left: 50%;
}

.timeline-container::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    top: calc(50% - 8px);
    right: -8px;
    background: #ffffff;
    border: 2px solid var(--bs-green);
    border-radius: 16px;
    z-index: 1;
}

.timeline-container.right::after {
    left: -8px;
}

.timeline-container::before {
    content: '';
    position: absolute;
    width: 50px;
    height: 2px;
    top: calc(50% - 1px);
    right: 8px;
    background: var(--bs-green);
    z-index: 1;
}

.timeline-container.right::before {
    left: 8px;
}

.timeline-container.left .company-logo {
    right: -50%;
    /* top: 31%; */
}

.timeline-container.right .company-logo {
    left: -50%;
    /* top: 28%; */
}

.timeline-container .company-logo img {
    max-width: 200px;
    max-height: 100px;
    object-fit: contain;
}

.timeline-container .icon {
    position: absolute;
    display: inline-block;
    width: 40px;
    height: 40px;
    padding: 9px 0;
    top: calc(50% - 20px);
    border: 2px solid var(--bs-green);
    border-radius: 40px;
    text-align: center;
    font-size: 18px;
    color: var(--bs-green);
    z-index: 1;
}

.timeline-container.left .icon {
    right: 56px;
}

.timeline-container.right .icon {
    left: 56px;
}

.timeline-container .content {
    padding: 30px 90px 30px 30px;
    position: relative;
    border-radius: 0 500px 500px 0;
}

.timeline-container.right .content {
    padding: 30px 30px 30px 90px;
    border-radius: 500px 0 0 500px;
}

.timeline-container .content h2 {
    margin: 0 0 10px 0;
    font-size: 18px;
    font-weight: bold;
    color: var(--bs-green);
}

.timeline-container .content p {
    margin: 0;
    font-size: 16px;
    line-height: 22px;
    color: #000000;
}

@media (min-width: 767.98px) {
    .timeline-container .company-logo {
        position: absolute;
        display: inline-block;
        z-index: 1;
        width: 200px;
        height: 100px;
    }

    .company-logo-sm {
        display: none !important;
    }
}

@media (max-width: 767.98px) {
    .timeline-container .company-logo {
        display: none;
    }

    .timeline-container .company-logo-sm {
        width: 200px;
        height: 100px;
    }

    .timeline-container .company-logo-sm img {
        max-width: 200px;
        max-height: 100px;
        object-fit: contain;
    }

    .timeline::after {
        left: 20px;
    }

    .timeline-container {
        width: 100%;
        padding-right: 30px;
    }

    .timeline-container.right {
        left: 0%;
    }

    .timeline-container.left::after,
    .timeline-container.right::after {
        left: 12px;
    }

    .timeline-container.left::before,
    .timeline-container.right::before {
        left: 12px;
        border-color: transparent var(--bs-green) transparent transparent;
        z-index: -1
    }

    .timeline-container.left .company-logo,
    .timeline-container.right .company-logo {
        right: auto;
        left: 15px;
    }

    .timeline-container.left .icon,
    .timeline-container.right .icon {
        right: auto;
        left: 60px;
        z-index: 1;
    }

    .timeline-container.left .content,
    .timeline-container.right .content {
        padding: 30px 0px 30px 90px;
        border-radius: 500px 0 0 500px;
    }
}

/*--------------------------------------
JOB
--------------------------------------*/

.job-card {
    position: relative;
    color: white;
    text-align: center;
    padding: 1rem;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
    box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075);
    height: 300px;
    background-size: cover;
    background-position: center;
}

.job-card .job-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.3s ease;
}

.job-card:hover .job-bg-img {
    transform: scale(1.05);
}

.job-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.job-title {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.job-count {
    background-color: #0dcaf0;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: bold;
}


/*--------------------------------------
Utils
--------------------------------------*/

.border-primary {
    border-color: var(--bs-green) !important;
}

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

.text-dark {
    color: #3a3a3a !important;
}

.text-gold {
    color: #dab96a;
}

a {
    color: var(--bs-green);
}
a:hover {
    color: var(--bs-green-dark);
}

.text-line-clamp-2 {
    line-clamp: 2;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.text-line-clamp-3 {
    line-clamp: 3;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.text-download {
    text-decoration: underline; 
    font-style: italic;
}

.sales-icon-animate {
    animation: salesIconMoveUpDown 3s ease-in-out infinite;
}
@keyframes salesIconMoveUpDown {
    0% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-10px); /* Move up by 15px */
    }
    100% {
      transform: translateY(0);
    }
}

.running-text {
    font-weight: 500;
    top: .5em;
    font-size: 20px;
    position: absolute;
    white-space: nowrap;
    animation: none;
    animation-timing-function: linear;
    animation-fill-mode: forwards;
}

@keyframes runningText {
    0% {
      transform: translateX(20%); /* Start from the right */
    }
    100% {
      transform: translateX(-100%); /* End at the left */
    }
}

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    /* align-items: center; */
}

.swiper-slide img, video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-swiper-button-prev, .hero-swiper-button-next {
    opacity: 0;
    pointer-events: auto;
}

.swiper-button-next:after, .swiper-button-prev:after {
    color: var(--bs-green);
}

.hero-swiper-button-prev:hover, .hero-swiper-button-next:hover {
    opacity: 1;
    transform: scale(1.1);
}

.swiper-pagination-bullet-active {
    background-color: var(--bs-green);
}

.bg-abstract {
    background-image: url('../img/background/bg-img-1298471DAKJDSAKJD32752.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.background-layer {
    background-image: url('../img/background/bg-img-1298471DAKJDSAKJD32752.png');
    /* background-image: 
    linear-gradient(to bottom, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0)),
    linear-gradient(to top, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0)),
    url('../img/background/bg-img-1298471DAKJDSAKJD32752.png');  */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* opacity: 0.5; */
}

.section {
    padding-top: 8rem !important;
    padding-bottom: 8rem !important;
    position: relative;
    z-index: 1;
}