*{
    font-family: 'Visby';
    /* outline: 1px solid limegreen; */
}
/* .mulish-<uniquifier> {
    font-family: "Mulish", sans-serif;
    font-optical-sizing: auto;
    font-weight: <weight>;
    font-style: normal;
  } */
  
  @font-face {
    font-family: 'Visby';
    src: url('../font/visby/VisbyRegular.otf');
    font-display: swap;
  }
  
  @font-face {
    font-family: 'Visby-Medium';
    src: url('../font/visby/VisbyMedium.otf');
    font-display: swap;
  }

@font-face {
    font-family: 'Visby-Bold';
    src: url('../font/visby/VisbyBold.otf');
}

@font-face {
    font-family: 'Visby-Heavy';
    src: url('../font/visby/VisbyBold.otf');
}

.text-sharp{
    font-family: 'Visby';
}

.text-sharp-bold{
    font-family: 'Visby-Bold';
}

.body{
    font-family: 'Visby', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

:root{
    --main:#2A1B3D;
    --light_main:#EFEAF2;
    --active:#9358b6;
    --second:#667085;
    --greenish : #eae7dce9;
    --green: #4A7C59;
    --slate:#667085;
    --gold:#C29241;
    --blue:#0079FF;
    --light_blue : #E6F2FF;
    --clay_blue :#3C5762;
}

.text-main{
    color: var(--main) !important;
}
.text-second{
    color: var(--second) !important;
}
.text-green {
    color: var(--green) !important;
}
.text-greenish {
    color: var(--greenish) !important;
}
.text-blue{
    color: var(--blue) !important;
}
.text-clay-blue{
    color: var(--clay_blue) !important;
}
.text-justify{
    text-align: justify;
}
.text-slate{
    color: var(--slate);
}

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

.bg-blue{
    background-color: var(--blue);
}

.bg-light-blue{
    background-color: var(--light_blue);
}

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

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

.bg-light-main{
    background-color: var(--light_main) !important;
}
.boder-main{
    border: 2px solid var(--main) !important;
}
/* font */
.fs-1em{
    font-size: 1em;
}
.fs-2em{
    font-size: 2em;
}
.fs-3em{
    font-size: 3em;
}
.fs-4em{
    font-size: 4em;
}
.fs-5em{
    font-size: 5em;
}

.fs-1rem{
    font-size: 1rem;
}
.fs-2rem{
    font-size: 2rem;
}
.fs-3rem{
    font-size: 3rem;
}
.fs-4rem{
    font-size: 4rem;
}
.fs-5rem{
    font-size: 5rem;
}

/* component */
.input{
    background-color: #ffffff00;
    border: 1.5px solid white;
    border-radius: .5rem;
    padding: 1em;
    width: 100%;
    color: white;
}
.input::placeholder{
    color: rgba(255, 255, 255, 0.446);
}
.input:focus {
    outline: none;
}

.input-2{
    background-color: #FFF;
    border: 1.5px solid #CCBFD5;
    border-radius: .5rem;
    padding: 1em;
    width: 100%;
}
.input-2::placeholder{
    color: #CCBFD5;
}
.input-2:focus {
    outline: none;
}

.input-3{
    background-color: #FFF;
    border: 2px solid #D9D9D9;
    border-radius: .5rem;
    padding: .5em;
    width: 100%;
}
.input-3::placeholder{
    color: #CCBFD5;
}
.input-3:focus {
    outline: none;
}
.owl-buttons-product{
    display: flex;
    justify-content: space-between;
    width: 55%;
    position: absolute;
    left: 22%;
    top: 50%;
    z-index: 10;
}

.owl-buttons-product > button{
    border: none;
    border-radius: 100%;
    height: 2.5rem;
    width: 2.5rem;
    background-color: white;
    box-shadow: 0px -3px 5px 0px #00000017;
    box-shadow: 0px 12px 13px 0px #0000002B;
    box-shadow: 0px 4px 6px 0px #0000001F;
    box-shadow: 0px -12px 30px 0px #0000001F;
    box-shadow: 0px 54px 55px 0px #00000040;
}
.prev-product, .next-prdouct {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: red;
}

.gallery,.gallery-2 {
    display: flex;
    width: 100%;
    gap: 1em;
    flex-grow: 1;
}

.gallery .item,.gallery-2 .item {
    height: 15em;
    transition: width 0.5s ease; 
    background-size: cover;
    display: flex;
    flex-direction: column;
    align-items: start;
    padding: 1em;
    color: white;
    font-weight: 700;
    background-color: rgba(0, 0, 0, 0.1); /* Adjust the opacity as needed */
    background-blend-mode: overlay; 
    border-radius: 1em;
}
/* galery 1 */
.gallery .item:nth-child(1) {
    width: 60%;
}

.gallery .item:nth-child(1):hover {
    width: 60%;
}

.gallery .item:nth-child(2) {
    width: 40%;
}

.gallery .item:nth-child(2):hover {
    width: 90%;
}
/* galery 2 */
.gallery-2 .item:nth-child(1) {
    width: 40%;
}

.gallery-2 .item:nth-child(1):hover {
    width: 90%;
}

.gallery-2 .item:nth-child(2) {
    width: 60%;
}


.item .detail {
    background-color: #ff000000;
    padding: 0.5em; 
    transition: background-color 0.5s ease;
    border: 1.5px solid white;
    padding: 0.5em 1em;
    border-radius: 2em;
}

.item .btn {
    background-color: #ff151500;
    border: 1.5px solid white;
    padding: 0.5em 1em;
    border-radius: 2em;
    color:white;
}

.gallery .item:hover .detail {
    background-color: #FFFFFF;
    color: black;
}

.gallery-2 .item:hover .detail {
    background-color: #FFFFFF;
    color: black;
}

.swiper-slide {
    width: 300px; /* Adjust as needed */
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background-color: #fff;
}
/* Style for the card title */
.card-title {
    font-size: 20px;
    margin-bottom: 10px;
}
/* Style for the card content */
.card-content {
    font-size: 16px;
}
button:focus {
    outline: 0;
}

.owl-carousel-stacked {
    margin-top: 20px;
}
.owl-carousel .item {
    height: 30em;
}

.owl-carousel-stacked .owl-item.center {
    transform: scaleY(0.95) scaleX(2)  !important;
    /* transform: scaleX(1.6) !important; */
    /* transform: scale(1.2) !important; */
    -webkit-box-shadow: 0px 0px 55px -12px rgba(0, 0, 0, 0.74);
    -moz-box-shadow: 0px 0px 55px -12px rgba(0, 0, 0, 0.74);
    box-shadow: 0px 0px 55px -12px rgba(0, 0, 0, 0.74);
}

.owl-carousel-stacked .owl-item {
    transition: all 0.5s;
    transform: scale(0.7) !important;
}

.owl-carousel-stacked .left-of-center {
    transform: scale(0.7) translateX(10%) !important;
}

.owl-carousel-stacked .right-of-center {
    transform: scale(0.7) translateX(-10%) !important;
}

.owl-carousel-stacked .center {
    z-index: 2;
}


.owl-carousel-stacked .owl-carousel {
    position: relative;
}

.owl-carousel-stacked .owl-prev,
.owl-carousel-stacked .owl-next {
    position: absolute;
    top: 50%;
    margin-top: -10px;
    cursor: pointer;
    color: #ddd !important;
}

.owl-carousel-stacked .owl-prev {
    left: 0;
}

.owl-carousel-stacked .owl-next {
    right: 0;
}

.owl-carousel-stacked .owl-dots {
    text-align: center;
}

.owl-carousel-stacked .owl-dot {
    cursor: pointer;
    background-color: #ddd !important;
    width: 20px;
    height: 20px;
    display: inline-block;
    margin: 10px 2px;
}

.owl-carousel-stacked .owl-dot.active {
    background-color: #d2181f !important;
}

.owl-carousel-stacked .owl-stage-outer {
    padding: 25px 0;
}


.card-article{
    border-radius: 1em;
    border: 1.5px solid white;
    cursor: pointer;
    transition: background-color .3s;
}

.card-article:hover{
    background-color: var(--gold);
}

.card-article .chevron {
    display: none;
    transition: opacity 0.3s;
}

.card-article:hover .chevron {
    display: inline-block;
}


.card-article .card-top{
    background-color: white;
    border-top-left-radius: 0.8rem;
    border-top-right-radius: 0.8em;
    overlay:auto;
    padding: 1em;
}

.card-article .card-top .list-badge{
    display: flex;
    margin: 1em 0em;
    gap: 1em;
}

/* about item product */
.item-product {
    border-radius: .5em;
}

.owl-about .owl-dots{
    position: absolute;
    bottom: .5em;
    left: 1.5em;
}

.img-layanan{
    height: 18em;
}
.img-layanan-2{
    height: 20em;
}

.col-layanan {
    height: 18em;
}

.col-layanan-2 {
    height: 20em;
}

.card-main-product {
    box-shadow: 12px 2px 16px 0px #2A1B3D33;
    /* box-shadow: -6px -2px 16px 0px #FFFFFFCC; */
    box-shadow: 6px 2px 16px 0px #2A1B3D33;

    border-radius: 10px;
}

.card-sec-product {
    background-color: white;
    border-radius: 1em;
    overflow: auto;
}

.badge-filter{
    background-color: var(--main);
    font-weight: 700;
    font-size: 1.2rem;
    color: white;
    padding: .7em 1.5em;
    min-width: 10em;
}

.badge-filter:hover{
    background-color: var(--gold);
    font-weight: 700;
    font-size: 1.2rem;
    color: white;
    padding: .7em 1.5em;
    min-width: 10em;
}

.badge-filter.active{
    background-color: var(--gold);
    font-weight: 700;
    font-size: 1.2rem;
    color: white;
    padding: .7em 1.5em;
    min-width: 7em;
}

.filter-produk{
    background-color: white;
    border-radius: 0.5rem;
    width: 90%;
    padding: 0.5em 1em;
    font-weight: 700;
    font-size: 1.2em;
    transition: all ease-in-out .2s;
}

.filter-produk:hover{
    background-color: var(--main);
    border-radius: 0.5rem;
    width: 100%;
    padding: 0.5em 1em;
    font-weight: 700;
    font-size: 16px;
    /* font-size:1.2em; */
    color: white;
}

.filter-produk.active{
    background-color: var(--main);
    border-radius: 0.5rem;
    width: 100%;
    padding: 0.5em 1em;
    font-weight: 700;
    font-size: 16px;
    color: white;
}

/* .filter-produk img{
    height: 4em;
    border-radius: 1em;
} */

.detail-produk{
    background-color: white;
    border-radius: 1em;
    padding: 1em;
}

.col-step{
    width: 10rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.card-instagram{
    background-color: rgba(0, 0, 0, 0);
}
.card-instagram:hover > img {
    background-color: rgba(0, 0, 0, 0.1);
}

.button-contact_us {
    transition: transform 0.3s;
    cursor: pointer;
    text-decoration: none;
}

.button-contact_us:hover {
    transform: scale(1.05);
}

.badge-article{
    background-color: var(--light_main);
    color: var(--main);
    padding: 1em 2em;
    font-weight: 700;
    text-align: center;
    cursor: pointer;
}

.badge-article.active{
    background-color: var(--active);
    color: white;
    padding: 1em 2em;
    font-weight: 700;
    text-align: center;
    cursor: pointer;
}

.scrollbar
{
	overflow-x: auto;
    padding: 1em;
}


#style-1::-webkit-scrollbar-track
{
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	border-radius: 10px;
	background-color: #F5F5F5;
}

#style-1::-webkit-scrollbar
{
    height: 5px;
	background-color: #F5F5F5;
}

#style-1::-webkit-scrollbar-thumb
{
	border-radius: 10px;
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
	background-color: #717171;
}

.modal-body.scrollbar::-webkit-scrollbar-track
{
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	background-color: #F5F5F5;
	border-radius: 10px;
}

.modal-body.scrollbar::-webkit-scrollbar
{
	width: 10px;
	background-color: #F5F5F5;
}

.modal-body.scrollbar::-webkit-scrollbar-thumb
{
	border-radius: 10px;
	background-image: -webkit-gradient(linear,
									   left bottom,
									   left top,
									   color-stop(0.44, rgb(122,153,217)),
									   color-stop(0.72, rgb(73,125,189)),
									   color-stop(0.86, rgb(28,58,148)));
}

.required:after{content:"*";position:relative;font-size:inherit;color:#f1416c;padding-left:.25rem;font-weight:700}

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

/* Default (xs) */
.clamp-text-1 { -webkit-line-clamp: 1; }
.clamp-text-2 { -webkit-line-clamp: 2; }
.clamp-text-3 { -webkit-line-clamp: 3; }
.clamp-text-4 { -webkit-line-clamp: 4; }
.clamp-text-5 { -webkit-line-clamp: 5; }

/* Breakpoints mirip Bootstrap */
@media (min-width: 576px) {
    .clamp-text-sm-1 { -webkit-line-clamp: 1; }
    .clamp-text-sm-2 { -webkit-line-clamp: 2; }
    .clamp-text-sm-3 { -webkit-line-clamp: 3; }
    .clamp-text-sm-4 { -webkit-line-clamp: 4; }
    .clamp-text-sm-5 { -webkit-line-clamp: 5; }
}
@media (min-width: 768px) {
    .clamp-text-md-1 { -webkit-line-clamp: 1; }
    .clamp-text-md-2 { -webkit-line-clamp: 2; }
    .clamp-text-md-3 { -webkit-line-clamp: 3; }
    .clamp-text-md-4 { -webkit-line-clamp: 4; }
    .clamp-text-md-5 { -webkit-line-clamp: 5; }
}
@media (min-width: 992px) {
    .clamp-text-lg-1 { -webkit-line-clamp: 1; }
    .clamp-text-lg-2 { -webkit-line-clamp: 2; }
    .clamp-text-lg-3 { -webkit-line-clamp: 3; }
    .clamp-text-lg-4 { -webkit-line-clamp: 4; }
    .clamp-text-lg-5 { -webkit-line-clamp: 5; }
}
@media (min-width: 1200px) {
    .clamp-text-xl-1 { -webkit-line-clamp: 1; }
    .clamp-text-xl-2 { -webkit-line-clamp: 2; }
    .clamp-text-xl-3 { -webkit-line-clamp: 3; }
    .clamp-text-xl-4 { -webkit-line-clamp: 4; }
    .clamp-text-xl-5 { -webkit-line-clamp: 5; }
}