/*  =====================================================
    @ThemeEaster
    ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Roboto&amp;family=Rubik:wght@300;400;500;600&amp;family=Shadows+Into+Light&amp;display=swap');

/* Common Styles */
*{
	padding: 0;
	margin: 0;
}
body{
    background-color: #fff;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    line-height: 26px;
    color: #777;
    font-weight: 400;
    letter-spacing: -0.2px;
    position: relative;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6{
    font-family: 'Rubik', sans-serif;
    -webkit-font-smoothing:antialiased;
	color: #0e1318;
}
h1{
    font-size: 45px;
    font-weight: 600;
    line-height: 55px;
    margin: 0 0 10px;
    color: #0e1318;
}
h2{
    font-size: 42px;
    line-height: 52px;
    color: #0e1318;
    margin: 0 0 10px;
    font-weight: 600;
    /* letter-spacing: -2px; */
}
h2 span{
    color: #ff9d2d;
}
h3,h4{
    margin: 0 0 10px;
    font-weight: 600;
    line-height: 1.7;
    color: #0e1318;
    /* letter-spacing: -0.5px; */
}
h3{ font-size: 20px; }
h4{ font-size: 16px; }
h5,h6{
    font-size: 14px;
    margin: 0 0 10px;
}
img{
    border: none;
    outline:none;
    max-width: 100%;
}
ul{
    display: block;
    list-style: none;
    padding: 0;
    margin: 0;
}
p, li, a, span{}
p{
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 15px;
}
a, a:hover{
    text-decoration: none;
}
a:focus{
    outline: 0;
    text-decoration: none;
}
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder{
   color: #999 !important;
}

input:-moz-placeholder,
textarea:-moz-placeholder{ /* Firefox 18- */
   color: #999 !important;
}

input::-moz-placeholder,
textarea::-moz-placeholder{  /* Firefox 19+ */
   color: #999 !important;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder{
   color: #999 !important;
}
button{
    border: none;
	background: none;
}

/* Scrollbar Style */
::-webkit-scrollbar {
    width: 8px;
    height: 8px
}
::-webkit-scrollbar-thumb {
    cursor: pointer;
    background: #03487f;
}
/* ::selection {
    background-color: #03487f;
    color: #fff
}
-webkit-::selection {
    background-color: #03487f;
    color: #fff
}
::-moz-selection {
    background-color: #03487f;
    color: #fff
} */
/* Padding */
.padding{ padding: 100px 0; }
.no-padding{ padding: 0; }
.padding-15{ padding: 15px; }
.padding-20{ padding: 20px; }
.box-padding{ padding: 0 50px; }

/* Background Color */
.bg-white{ background-color: #fff; }
.bg-grey{ background-color: #faf7f2;}
.bg-dark{ background-color: #242323!important;}
.bd-top{ border-top: 1px solid #eeeeee;}
.bd-bottom{ border-bottom: 1px solid #eeeeee;}

/* Background Shape */
.bg-shape{
    background-repeat-x: repeat;
    background-position: bottom center;
    width: 100%;
    height: 15px;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 1;
}
.bg-shape.white{ background-image: url(../img/shape-white.png); }
.bg-shape.grey{ background-image: url(../img/shape-grey.png); }

/* Margin Class */
.mb-10{ margin-bottom: 10px; }
.mb-15{ margin-bottom: 15px; }
.mb-20{ margin-bottom: 20px; }
.mb-25{ margin-bottom: 25px; }
.mb-30{ margin-bottom: 30px; }
.mb-35{ margin-bottom: 35px; }
.mb-40{ margin-bottom: 40px; }
.mb-45{ margin-bottom: 45px; }
.mb-50{ margin-bottom: 50px; }
.ml-15{ margin-left: 15px; }
.ml-20{ margin-left: 20px; }
.ml-25{ margin-left: 25px; }
.ml-30{ margin-left: 30px; }
.ml-35{ margin-left: 35px; }
.mt-20{ margin-top: 20px; }
.mt-30{ margin-top: 30px; }
.mt-40{ margin-top: 40px; }
.mt-50{ margin-top: 50px; }
.pt-80{ padding-top: 80px; }
.pt-90{ padding-top: 90px; }
.pb-20{ padding-bottom: 20px; }
.pb-30{ padding-bottom: 30px; }
.pb-40{ padding-bottom: 40px; }

/* Font Size */
.fz-28{ font-size: 28px; }
.fz-24{ font-size: 24px; }
.fz-22{ font-size: 22px; }
.fz-20{ font-size: 20px; }
.fz-18{ font-size: 18px; }
.fz-16{ font-size: 16px; }

/* Preloader */
.loaded .site-preloader-wrap {
    opacity: 0;
    visibility: hidden;
}
.site-preloader-wrap {
    position: fixed;
    z-index: 999;
    height: 100%;
    width: 100%;
    background: #fff;
    top: 0;left: 0
}

.site-preloader-wrap .spinner {
    background-color: #03487f;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -20px;
    margin-top: -20px;
}

.spinner {
  width: 40px;
  height: 40px;

  border-radius: 100%;
  -webkit-animation: sk-scaleout 1.0s infinite ease-in-out;
  animation: sk-scaleout 1.0s infinite ease-in-out;
}

@-webkit-keyframes sk-scaleout {
  0% { -webkit-transform: scale(0) }
  100% {
    -webkit-transform: scale(1.0);
    opacity: 0;
  }
}

@keyframes sk-scaleout {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
  } 100% {
    -webkit-transform: scale(1.0);
    transform: scale(1.0);
    opacity: 0;
  }
}

/* Default Button */
.btn-group{}
.btn-group a{
    margin: 5px;
}
.btn-group-left a{
    margin-right: 10px;
}
.default-btn{
    display: inline-block;
    background: #ff9d2d;
    color: #fff;
    font-family: 'Rubik', sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-transform: capitalize;
    height: 45px;
    line-height: 45px;
    padding: 0 35px;
    letter-spacing: 1px;
    border-radius: 0;
    overflow: hidden;
    position: relative;
    transition: all ease 700ms;
    -moz-transition: all ease 700ms;
    -webkit-transition: all ease 700ms;
    -ms-transition: all ease 700ms;
    -o-transition: all ease 700ms;
    z-index: 1;
}
.default-btn:hover{ color: #FFF; }
.default-btn span {
    background: #0e1318 none repeat scroll 0 0;
    border-radius: 50%;
    display: block;
    height: 0;
    position: absolute;
    transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transition: width 0.6s ease 0s, height 0.6s ease 0s;
    -moz-transition: width 0.6s ease 0s, height 0.6s ease 0s;
    -webkit-transition: width 0.6s ease 0s, height 0.6s ease 0s;
    -ms-transition: width 0.6s ease 0s, height 0.6s ease 0s;
    -o-transition: width 0.6s ease 0s, height 0.6s ease 0s;
    width: 0;
    z-index: -1;
}
.default-btn:hover span {
    height: 562.5px;
    width: 562.5px;
}
.default-btn i{ margin-right: 8px; }

/* Swiper Controls */
.swiper-container{
    height: 300px;
    position: relative;
}
.carousel-preloader{
    background-color: #fff;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}
.carousel-preloader .dot-flashing,
.carousel-preloader .dot-flashing::before,
.carousel-preloader .dot-flashing::after{
    background-color: #6c7a87;
}
.swiper-initialized{
    height: auto;
}
.swiper-initialized .carousel-preloader{
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s linear;
}
.dl-slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 20px;
    margin-top: 30px;
}

.dl-slider-button-prev, .dl-slider-button-next {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}
.dl-slider-button-prev:hover, .dl-slider-button-next:hover{
    color: #ff9d2d;
    transition: all 0.2s ease-in-out;
}
.dl-slider-button-prev svg, .dl-slider-button-next svg {
    width: 20px;
}

/* Style 2 */
.nav-outside{
    position: relative;
    margin: 0 -55px;
}
.nav-outside .swiper-container{
    position: static;
    width: calc(100% - 110px);
    margin: 0 auto;
}
.dl-slider-controls.style-2 .dl-slider-button-prev,
.dl-slider-controls.style-2 .dl-slider-button-next{
    background-color: #fff;
    color: #0b2238;
    border: 1px solid #eee;
    width: 50px;
    height: 50px;
    position: absolute;
    left: 5px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50%;
    visibility: hidden;
    opacity: 0;
    z-index: 1;
}
.dl-slider-controls.style-2 .dl-slider-button-next{
    left: auto;
    right: 5px;
}
.swiper-container:not(.nav-visible):hover .dl-slider-controls.style-2 > div{
    visibility: visible;
    opacity: 1;
}
.swiper-container:not(.nav-visible):hover .dl-slider-controls.style-2 .dl-slider-button-prev{ left: 0; }
.swiper-container:not(.nav-visible):hover .dl-slider-controls.style-2 .dl-slider-button-next{ right: 0; left: auto; }
.nav-outside .dl-slider-controls.style-2 .dl-slider-button-prev,
.nav-outside .dl-slider-controls.style-2 .dl-slider-button-next{
    width: 50px;
    height: 50px;
}
.nav-outside .dl-slider-button-prev svg, .nav-outside .dl-slider-button-next svg {
    width: 15px;
}
.dl-slider-controls.style-2 .dl-slider-button-prev:hover,
.dl-slider-controls.style-2 .dl-slider-button-next:hover{
    background-color: #ff9d2d;
    color: #fff;
}
.nav-visible .dl-slider-controls.style-2 > div{
    visibility: visible;
    opacity: 1;
    left: 30px;
}
.nav-visible .dl-slider-controls.style-2 > div.dl-slider-button-next{
    right: 30px;
    left: auto;
}
@media (max-width: 580px){
    .nav-outside{
        margin: 0;
    }
    .nav-outside .swiper-container{
        width: 100%;
    }
}
/* Bullets */
.dl-swiper-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 0;
}
.dl-swiper-pagination .swiper-pagination-bullet {
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-border-radius: inherit;
    border-radius: inherit;
    background: transparent;
    opacity: 1;
}
.dl-swiper-pagination .swiper-pagination-bullet svg{
    width: 100%;
    height: 100%;
}
.dl-swiper-pagination .swiper-pagination-bullet .path {
    stroke: #eee;
    stroke-width: 1px;
    display: none;
}
.dl-swiper-pagination .swiper-pagination-bullet .solid-fill{
    fill: #bbb;
}
.dl-swiper-pagination .swiper-pagination-bullet-active .path {
    stroke: #c9e167;
    display: inline-block !important;
    stroke-dasharray: 1000;
    stroke-dashoffset: 0;
    animation: dash ease-in 3s;
    animation-iteration-count: unset;
}
.dl-swiper-pagination .swiper-pagination-bullet-active .solid-fill{
    fill: #c9e167;
}
@-webkit-keyframes dash {
    from {
        stroke-dashoffset: 1000;
    }
    to {
        stroke-dashoffset: 0;
    }
}
@keyframes dash {
    from {
        stroke-dashoffset: 1000;
    }
    to {
        stroke-dashoffset: 0;
    }
}

/* Section Heading */
.section-heading h2{
    font-size: 40px;
    margin-bottom: 20px;
    display: block;
}
.section-heading h2 span{ color: #ff9d2d; }
.section-heading h4{
    display: inline-block;
    text-transform: capitalize;
    font-size: 16px;
    color: #f43127;
    font-weight: 500;
    letter-spacing: -0.5px;
    font-family: "Rubik",sans-serif;
    position: relative;
    margin-bottom: 10px;
    z-index: 1;
}
.heading-wrap{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Transition Effect */
a,a:hover, img, .form-control,  .form-control:hover, button{
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

/*======================================================
    Promo Section
=======================================================*/
.promo-section{ position: relative; }
.food-carousel{ overflow: hidden; }
.food-item{
    background-color: #fff;
    padding: 40px 30px;
    box-shadow: 0 0.2rem 2.8rem rgb(36 36 36 / 5%);
    text-align: center;
    position: relative;
    z-index: 1;
}
.food-item:before{
    background-color: #ff9d2d;
    clip-path: polygon(0 40%, 100% 0%, 100% 100%, 0 100%);
    content: "";
    width: 100%;
    height: 150px;
    position: absolute;
    left: 0;
    bottom: 0;
    transition: all 0.2s ease;
    z-index: -1;
}
.food-item:hover:before{
    height: 100%;
    clip-path: polygon(0 0%, 100% 0%, 100% 100%, 0 100%);
}
.food-item:hover .food-content h3,
.food-item:hover .food-content p,
.food-item:hover .food-icon i{ color: #fff;}
.food-icon{}
.food-icon i{
    color: #ff9d2d;
    font-size: 60px;
}
.food-content{}
.food-content h3{
    letter-spacing: -0.8px;
    font-size: 22px;
    font-weight: 600;
}
.food-thumb{
    text-align: center;
}
.food-thumb img{
    margin: 0 auto;
}

/*======================================================
    About Section
=======================================================*/
.about-section{ position: relative; }
.about-section.inner{ margin-top: -40px; }
.about-section .content-img-holder{ position: relative; }
.about-section .content-img-holder > img {
    transform: inherit;
}
.about-section .content-img-holder .sale{
    background-image: url(../img/sale-shape-red.png);
    left: 100px;
    top: 0;
}
.about-section .content-img-holder .sale h4,
.about-section .content-img-holder .sale span,
.about-section .content-img-holder .sale h2{
    color: #fff;
}
.about-info{
    margin-left: 30px;
}
.check-list{ margin-bottom: 30px; }
.check-list li{
    font-family: "Rubik",sans-serif;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -0.5px;
    color: #0e1318;
    display: flex;
    align-items: center;
}
.check-list li:not(:last-of-type){margin-bottom: 10px;}
.check-list li i{
    background-color: #ff9d2d;
    color: #fff;
    border-radius: 50%;
    font-size: 10px;
    width: 20px;
    height: 20px;
    line-height: 20px;
    text-align: center;
    margin-right: 10px;
}
.about-info h2{
    font-size: 35px;
    line-height: 48px;
}
.about-info h2 span{
    font-size: 70px;
    line-height: 78px;
    margin-bottom: 10px;
    letter-spacing: 1.5px;
    display: block;
    font-family: "Lobster Two", serif;
    color: #ff9d2d;
}
/* .about-info h3{
    color: #f43127;
    margin-bottom: 20px;
} */
.about-info h3{
    font-family: "Rubik",sans-serif;
    font-size: 17px;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 15px;
}
.about-info h3 span{
    height: 4px;
    width: 30px;
    display: inline-block;
    background: #ffe600;
    position: relative;
    margin-left: 10px;
    top: -4px;
}
.about-info h3 span:before{
    content: "";
    position: absolute;
    right: -8px;
    top: 0;
    height: 4px;
    width: 4px;
    background: #ffe600;
}
.about-info p{margin-bottom: 20px;}
.content-img-holder .play-btn{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

/* Play Button */
.play-btn{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
}
.play-btn .play-icon{
    display: block;
	width: 80px;
	height: 80px;
	border-radius: 100%;
	display: flex;
	align-items: center;
    justify-content: center;
	background-color: #ffffff;
    color: #ffe600;
    font-size: 30px;
	transition: all .4s linear;
	-webkit-animation: ripple_effect 2s linear infinite;
	animation: ripple_effect 2s linear infinite;
}
@-webkit-keyframes ripple_effect{
    0% {
        -webkit-box-shadow: 0px 0px 0px 0px rgba(255, 255, 255, 0.5), 0px 0px 0px 5px rgba(255, 255, 255, 0.5), 0px 0px 0px 12px rgba(255, 255, 255, 0.5);
        box-shadow: 0px 0px 0px 0px rgba(255, 255, 255, 0.5), 0px 0px 0px 5px rgba(255, 255, 255, 0.5), 0px 0px 0px 12px rgba(255, 255, 255, 0.5);
    }

    100% {
        -webkit-box-shadow: 0px 0px 0px 5px rgba(255, 255, 255, 0.5), 0px 0px 0px 12px rgba(255, 255, 255, 0.5), 0px 0px 0px 18px rgba(73, 82, 232, 0);
        box-shadow: 0px 0px 0px 5px rgba(255, 255, 255, 0.5), 0px 0px 0px 12px rgba(255, 255, 255, 0.5), 0px 0px 0px 18px rgba(73, 82, 232, 0);
    }
}
@keyframes ripple_effect{
    0% {
        -webkit-box-shadow: 0px 0px 0px 0px rgba(255, 255, 255, 0.5), 0px 0px 0px 5px rgba(255, 255, 255, 0.5), 0px 0px 0px 12px rgba(255, 255, 255, 0.5);
        box-shadow: 0px 0px 0px 0px rgba(255, 255, 255, 0.5), 0px 0px 0px 5px rgba(255, 255, 255, 0.5), 0px 0px 0px 12px rgba(255, 255, 255, 0.5);
    }

    100% {
        -webkit-box-shadow: 0px 0px 0px 5px rgba(255, 255, 255, 0.5), 0px 0px 0px 12px rgba(255, 255, 255, 0.5), 0px 0px 0px 18px rgba(73, 82, 232, 0);
        box-shadow: 0px 0px 0px 5px rgba(255, 255, 255, 0.5), 0px 0px 0px 12px rgba(255, 255, 255, 0.5), 0px 0px 0px 18px rgba(73, 82, 232, 0);
    }
}

/*======================================================
    Food Menu Section
=======================================================*/
.food-menu{
    position: relative;
    padding: 100px 0 80px;
}
.product-item{
    background-color: #fff;
    padding: 70px 40px 40px;
    position: relative;
}
.product-item .sale{
    background-color: #f43127;
    font-family: "Roboto",sans-serif;
    font-size: 12px;
    color: #fff;
    font-weight: 600;
    padding: 5px 15px;
    line-height: 1;
    text-transform: uppercase;
    position: absolute;
    left: 40px;
    top: 40px;
}
.product-thumb{
    position: relative;
}
.product-thumb img{width: 100%;}
.product-thumb .order-btn{
    background-color: #f43127;
    font-family: "Rubik",sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-transform: capitalize;
    letter-spacing: -0.2px;
    color: #fff;
    display: inline-block;
    line-height: 40px;
    width: 60%;
    text-align: center;
    position: absolute;
    left: 50%;
    top: 60%;
    transform: translate(-50%, -50%);
    transition: all 450ms cubic-bezier(.4, 0, .2, 1);
    visibility: hidden;
    opacity: 0;
}
.product-thumb .order-btn:hover{
    background-color: #ff9d2d;
}
.product-item:hover .order-btn{
    top: 50%;
    visibility: visible;
    opacity: 1;
}
.product-item h3{
    font-size: 22px;
    font-weight: 600;
    letter-spacing: -1px;
}
.food-carousel .product-item h3{
    font-size: 18px;
    line-height: 22px;
}
.food-info{padding-top: 20px;}
.product-item .ratting{}
.product-item .ratting li{
    display: inline-flex;
    align-items: center;
    font-family: "Rubik",sans-serif;
    font-weight: 500;
}
.product-item .ratting li:first-child{margin-right: 10px;}
.product-item .ratting li i{
    font-size: 14px;
    color: #ff9d2d;
}
.food-info .price{}
.food-info .price h4{
    text-transform: uppercase;
    color: #f43127;
    margin: 0;
}
.food-info .price span{
    margin-left: 10px;
    color: #ff9d2d;
}
.food-info .price .reguler{
    color: #bbb;
    text-decoration: line-through;
    margin-left: 5px;
}

/*Food Menu Filter*/
.food-menu-filter{
    text-align: center;
    margin-bottom: 20px;
}
.food-menu-filter li{
    background-color: #fff;
    font-family: "Rubik",sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #0e1318;
    display: inline-block;
    margin: 0 5px;
    padding: 5px 20px;
    border: 1px solid #eee;
    cursor: pointer;
}
.food-menu-filter li.active{
    background-color: #ff9d2d;
    color: #fff;
}
/*======================================================
    Product Details Section
=======================================================*/
.food-details{position: relative; }
.product-details{ margin-top: 10px; }
.food-details-thumb{
    position: relative;
    overflow: hidden;
    margin-right: 40px;
    transition: all 0.2s ease-in-out;
}
.food-details-thumb:hover img{
    transform: scale(1.02);
}
.food-details-thumb .img-popup{
    background-color: #fff;
    color: #0e1318;
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 20px;
    text-align: center;
    border-radius: 50%;
    position: absolute;
    right: 20px;
    bottom: 20px;
}
.product-details .product-inner{
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 15px;
    align-items: center;
}
.product-details .product-inner .category li a{
    font-family: "Roboto",sans-serif;
    font-size: 17px;
    color: #777;
}
.product-details .ratting{
    text-align: right;
}
.product-details .ratting li{
    display: inline-block;
    color: #FF9529;
    font-size: 14px;
    margin: 0 -2px;
}
.product-details .price {
    color: #222;
    font-size: 22px;
    display: flex;
    align-items: center;
}
.product-details .price span {
    font-size: 16px;
    text-decoration: none;
    color: #5dce53;
    margin-left: 10px;
}
.product-btn {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}
.product-btn form input {
    width: 100%;
    height: 45px;
    line-height: 45px;
    border: 1px solid #eee;
    border-radius: 0;
    outline: none;
    box-shadow: none;
    text-align: center;
}
.purchase-btn{
    background-color: #ff8e28;
    font-family: "Rubik",sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-transform: capitalize;
    color: #fff;
    height: 45px;
    line-height: 45px;
    text-align: center;
    padding: 0 30px;
    display: inline-block;
    margin-left: 15px;
}
.purchase-btn:hover{
    background-color: #0e1318;
    color: #fff;
}
.product-details .product-meta {
    margin-bottom: 30px;
}
.product-details .product-meta li:not(:last-of-type) {
    margin-bottom: 5px;
}
.product-details .product-meta li a {
    color: #777;
    margin-left: 5px;
}
.product-details .social-icon li{
    display: inline-block;
}
.product-details .social-icon li:first-child {
    margin-right: 10px;
}
.product-details .social-icon li a {
    background-color: #ff8e28;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    display: inline-block;
    color: #fff;
}
.product-details .social-icon li a:hover{
    background-color: #0e1318;
    color: #fff;
}

/*Description Tab*/
.product-tab-content{}
.tab-content .tab-pane.description{
    background-color: #fff;
    padding: 40px;
}
.tab-content .tab-pane.ad-info{
    background-color: #fff;
}
.tab-navigation{
    margin-bottom: 40px;
}
.tab-navigation li button{
    background-color: #eee;
    color: #0e1318;
    font-family: "Rubik",sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-transform: capitalize;
    height: 45px;
    line-height: 45px;
    text-align: center;
    padding: 0 20px;
    margin-right: 15px;
}
.tab-navigation li .active{
    background-color: #ff8e28;
    color: #fff;
}
.description-meta li{
    display: grid;
    align-items: center;
    justify-content: flex-start;
    grid-template-columns: 150px 1fr;
    grid-gap: 20px;
}
.description-meta li span{}
.product-table thead tr th{
    font-family: "Roboto",sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    color: #777;
    border-bottom: 1px solid #eee;
    border-top: 1px solid #eee;
}
.product-table{}
.product-table {
    border-left: 1px solid #eee;
    border-right: 1px solid #eee;
}
/* .table>:not(caption)>*>*,
.table>:not(:last-child)>:last-child>*{
    border-bottom: 1px solid #eee;
    color: #777;
    text-align: center;
} */

.service-wrap .kuasa-hukum-emas-container h3.kuasa-hukum-emas {
    /* margin-top: 10px; */
    color: #c9e167;
}
.service-wrap .kuasa-hukum-emas-container:hover h3.kuasa-hukum-emas {
    color: #fff;
}
@media (max-width: 580px) {
    .service-wrap .kuasa-hukum-emas-container h3.kuasa-hukum-emas {
        font-size: 22px;
    }
}
.kuasa-hukum-emas-container::before {
    position: absolute;
    top: -65px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    background-color: rgba(255, 255, 255, 1);
    width: 130px;
    height: 130px;
    border-radius: 50%;
    content: "";
}
@media (max-width: 580px) {
    .kuasa-hukum-emas-container::before {
        top: -50px;
        width: 100px;
        height: 100px;
    }
}
.kuasa-hukum-emas-container::after {
    position: absolute;
    top: 50%;
    left: 50%;
    content: "";
    width: 0;
    height: 100%;
    background-color: #c9e167;
    z-index: 0;
    visibility: hidden;
    opacity: 0;
    border-radius: 5px;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: 0.4s;
    transition: 0.4s;
}
.kuasa-hukum-emas-container:hover::after {
    visibility: visible;
    opacity: 1;
    width: 100%;
  }

.kuasa-hukum-emas-container {
    overflow: visible !important;
}
.kuasa-hukum-emas-container p {
    color: #777 !important;
}
.kuasa-hukum-emas-container:hover p {
    color: #fff !important;
}
.kuasa-hukum-emas-container .service-img {
    position: absolute;
    top: -65px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 130px;
    height: 130px;
    background: rgba(221, 221, 221, 0.2);
    border-radius: 50%;
    /* border: 5px solid #c9e167; */
    color: #c9e167;
    padding: 15px;
    font-size: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    z-index: 2;
}
@media (max-width: 580px) {
    .kuasa-hukum-emas-container .service-img {
        font-size: 50px;
        top: -50px;
        width: 100px;
        height: 100px;
    }
}
.kuasa-hukum-emas-container .service-img img {
    transform: scale(1.05);
}

/* .kuasa-hukum-emas-container:hover .service-img {
    background-color: #fff;
    color: #c9e167;
    border: 5px solid #ffffff;
} */
.table>:not(caption)>*>*{
    padding: 12px 0;
}
@media (max-width: 468px) {
    .table>:not(caption)>*>*{
        padding: 12px 10px;
        font-size: 14px;
    }
}
.product-table tbody tr td:not(:last-of-type), .product-table thead tr th:not(:last-of-type) {
    border-right: 1px solid #eee;
}
/*Reviews*/
.review .comment-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 30px;
}
.review .comment-list > li {
    background-color: #fff;
    display: grid;
    grid-template-columns: 80px 1fr;
    grid-gap: 30px;
    align-items: center;
    padding: 40px;
    border: 1px solid #eee;
}
.review .comment-list .comment-text h3 span {
    font-family: "Rubik",sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-transform: capitalize;
    color: #777;
    display: block;
}
.review .comment-list .comment-thumb img {
    border-radius: 50%;
}
.review .comment-list .comment-author {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.comment-author .ratting{}
.comment-author .ratting li{
    display: inline-block;
    color: #FF9529;
    font-size: 14px;
    margin: 0 -2px;
}

/*Cart*/
.cart-header{
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 30px;
}
.cart-header>div{
    color: #0e1318;
}
.cart-body{
    display: flex;
    align-items: center;
}
.cart-body .cart-item{
    display: flex;
    align-items: center;
}
.cart-body .cart-item img {
    max-width: 100px;
    margin-right: 20px;
    background: #fff;
    padding: 10px;
    border: 1px solid #eee;
}
.cart-body .cart-item .cart-content{}
.cart-body .cart-item .cart-content a{
    font-size: 18px;
    font-weight: 500;
    color: #0e1318;
}
.cart-body .cart-item .cart-content a:hover{
    color: #ff8e28;
}
.cart-body .cart-item p{margin: 0;}
.cart-body .cart-item p strong{ color: #0e1318; }
.cart-body .cart-item input{
    background-color: #fff;
    border-radius: 0;
    border: 1px solid #eee;
    width: 100px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    outline: none;
    box-shadow: none;
}
.cart-body .cart-item .remove{
    background-color: #ff8e28;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    font-size: 15px;
    color: #fff;
    display: block;
    margin-top: -5px;
}
.cart-body .cart-item .remove:hover{
    background-color: #0e1318;
    color: #fff;
}
.cart-total{
    background-color: #fff;
    padding: 40px;
}
.cart-total li{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.cart-total li:not(:last-of-type){margin-bottom: 20px;}
.cart-total li a:not(.default-btn),
.cart-total li span{
    font-family: "Rubik",sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #0e1318;
}

/*======================================================
    Checkout Section
=======================================================*/
.checkout-form-wrap{
    background-color: #fff;
    padding: 40px;
}
.checkout-form{
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 15px;
}
.checkout-form-wrap h2{
    font-size: 20px;
    letter-spacing: -1px;
}
.checkout-form .form-field{}
.additional-info .form-field textarea,
.checkout-form .form-field input{
    background-color: #F9FAFC;
    height: 50px;
    border-radius: 0;
    outline: none;
    box-shadow: none;
    border: 1px solid #eee;;
}
.additional-info .form-field textarea{ height: auto; }

/*======================================================
    Booking Section
=======================================================*/
.booking-section{ position: relative; }
.booking-section .booking-form{ margin: 0; }
.booking-section .booking-form .form-control.message{
    height: 150px;
}
.booking-section .booking-form .form-select,
.booking-section .booking-form .form-control{ height: 50px;
}


/*======================================================
    FAQ's Section
=======================================================*/
.faq-accordion{}
.accordion-item:first-of-type .accordion-button {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    outline: none;
    box-shadow: none;
}
.accordion-button{
    background-color: #fff;
    color: #0e1318;
    font-size: 18px;
    letter-spacing: -0.5px;
    font-family: "Rubik",sans-serif;
    font-weight: 500;
    border: 1px solid #eee;
    padding: 10px 15px;
}
.accordion-button:focus{
    border-color: #eee;
    outline: none;
    box-shadow: none;
}
.accordion-button:not(.collapsed){
    color: #fff;
    background-color: #ff8e28;

}
.accordion-button:not(.collapsed):after{
    background-image: inherit;
    content: "\f067";
    color: #fff;
    transform: inherit;
}
.accordion-button:after {
    background-image: inherit;
    content: "\f068";
    font-family: "Font Awesome 5 Free";
    font-size: 12px;
    position: absolute;
    right: 20px;
    top: 50%;
    color: #222;
    font-weight: 600;
    transform: translateY(-50%)!important;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

/*======================================================
    Content Section
=======================================================*/
.content-section{
    background-image: url(../img/content01.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    position: relative;
    overflow: hidden;
}
.content-section .bg-shape.grey{
    bottom: auto;
    top: -2px;
    transform: scaleY(-1);
}
.content-section .bg-shape.white{
    bottom: 0px;
}
.content-info{}
.content-info h2{
    font-size: 35px;
    line-height: 45x;
    color: #fff;
    margin-bottom: 20px;
}
.content-info span{
    line-height: 58px;
    font-size: 55px;
    color: #ffe600;
    display: block;
}
.content-info p{
    color: #ddd;
    font-size: 18px;
    margin-bottom: 20px;
}
.content-img-holder{
    position: relative;
}
/* .content-img-holder > img{
    transform: scale(1.3) translateY(50px);
} */
.content-img-holder .sale{
    background-image: url(../img/sale-shape.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100%;
    width: 216px;
    height: 226px;
    position: absolute;
    left: -20px;
    top: 50px;
    display: flex;
    place-content: center;
    animation: scaleanim 1s linear 0s infinite alternate;
}
.content-img-holder .sale h2{
    line-height: 1;
    font-size: 22px;
    color: #f43127;
}
.content-img-holder .sale span{
    color: #ff9d2d;
    display: block;
    font-size: 42px;
}
.content-img-holder .sale div{
    margin: 55px 30px 0px 0px;
}

.content-img-holder {
    position: relative;
    z-index: 1;
    text-align: center;
}
.content-img-holder img{
    margin-top: -70px;
    /* margin-bottom: -10px; */
}

@media only screen and (max-width: 1200px) {
    .content-img-holder img {
        margin-top: 0;
    }
}

.delivery-girl{
    position: relative;
    z-index: 1;
    text-align: center;
}
.delivery-girl img{
    margin-top: -50px;
    margin-bottom: -10px;
}
.content-section.delivery{ overflow: visible;}
.content-section.delivery .bg-shape.white{
    z-index: 2;
}
.content-section.delivery .content-info{ padding: 80px 0;}
.content-section.delivery .order-content h3 span{ color: #ddd; }
.content-section-2{ position: relative; }
.content-section-2 .section-heading .sign{
    max-width: 200px;
    margin-top: 15px;
}

@keyframes scaleanim{
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.05);
  }
}

/*======================================================
    Delivery Section
=======================================================*/
.delivery-section{ position: relative; }
.delivery-boy-wrap{
    position: relative;
}
.delivery-boy{
    background-image: url(../img/delivery-boy.svg);
    background-repeat: no-repeat;
    background-position: left center;
    background-size: 100%;
    position: absolute;
    width: 100%;
    height: 100%;
    left: -80px;
    top: 0;
}
.order-content{
    display: flex;
    align-items: center;
}
.order-content a {
    width: 80px;
    height: 80px;
}

.order-content h3 {
    margin-left: 10px;
}

.order-content h3 a{
    color: #ffe600;
    margin-bottom: 0;
    font-size: 30px;
    line-height: 48px;
}
.order-content h3 span{
    color: #f43127;
    font-size: 18px;
    line-height: 25px;
    font-weight: 500;
    display: block;
    margin-bottom: -5px;
}

/*======================================================
    Testimonial Section
=======================================================*/
.testimonial-section{ position: relative; }
.review-section{ position: relative; }
.testimonial-carousel{overflow: hidden;}
.testimonial-item{
    background-color: #fff;
    padding: 40px;
}
.testi-thumb{
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}
.testi-thumb img{
    max-width: 80px;
    border-radius: 50%;
    margin-right: 15px;
}
.testi-thumb .author{}
.testi-thumb .author h3{
    font-size: 18px;
    margin: 0;
}
.testi-thumb .author h4{
    color: #777;
    font-size: 14px;
    font-weight: 400;
    margin: 0;
    letter-spacing: 0;
}
.testimonial-item .ratting{}
.testimonial-item .ratting li{
    display: inline-block;
    margin: 0;
    line-height: 1;
    color: #ff9d2d;
}

/*======================================================
    Banner Section
=======================================================*/
.banner-section{ position: relative; }
.banner-wrapper > div{ min-height: 440px; }
.banner-wrapper .row > div{
    min-height: calc((500px - 15px) / 2);
}
.banner-wrapper .row > div{margin-top: 15px;}
.banner-wrapper .row > div:nth-child(2){margin-top: 0;}
.banner-item{
    position: relative;
    height: 100%;
    overflow: hidden;
}
.banner-item:hover img{
    transform: scale(1.05);
}
.banner-item img{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-content{
    position: absolute;
    width: 60%;
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
}

@media (max-width: 767px) {
    .banner-content {
        position: relative;
        padding: 45px 0;
    }
}
.banner-content h3{
    font-family: "Noto Serif", serif;
    color: #ffe600;
    margin-bottom: 15px;
    font-size: 32px;
    line-height: 34px;
}
.banner-content h2{
    font-size: 36px;
    line-height: 42px;
}
.banner-content h2,
.banner-content p{color: #fff;}
.banner-content .order-btn{
    background-color: #ff8e28;
    height: 40px;
    line-height: 40px;
    text-align: center;
    padding: 0 25px;
    display: inline-block;
    font-family: "Rubik",sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    letter-spacing: 0;
}
.banner-content .order-btn:hover{
    background-color: #0e1318;
    color: #fff;
}

/*======================================================
    Hero Section
=======================================================*/
.hero-section{
    background-color: #faf7f2;
    background-image: url(../img/banner.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 650px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.hero-section .hero-img{
    width: 800px;
    height: 600px;
    position: absolute;
    top: 100px;
    bottom: 0;
    right: -30px;
    z-index: 2;
}
@media (max-width: 1400px) {
    .hero-section .hero-img {
        width: 670px;
        height: 560px;
    }
}
@media (max-width: 1300px) {
    .hero-section .hero-img {
        width: 590px;
        height: 540px;
        top: unset;
        bottom: 0;
    }
}
.hero-section .hero-img img{
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    object-fit: contain;
}
.hero-content{ margin-top: 80px; }
.hero-content h3{
    background-color: #c9e167;
    font-family: 'Lobster Two', sans-serif;
    color: #fff;
    font-size: 30px;
    letter-spacing: 1px;
    font-weight: 500;
    padding: 5px 5px 5px 20px;
    margin-bottom: 20px;
    display: inline-block;
    position: relative;
}
.hero-content h3:before{
    background-color: #c9e167;
    clip-path: polygon(100% 0%, 75% 50%, 100% 100%, 0 100%, 0 0);
    content: "";
    width: 20px;
    height: 100%;
    position: absolute;
    right: -18px;
    top: 0;
}
.hero-content h1{
    font-size: 70px;
    font-family: "Noto Serif", serif;
    line-height: 90px;
    margin-bottom: 20px;
}

span.text-gradient {
    /* background: linear-gradient(to left, #c59401 0%, #e9bd00 25%, #fde480 50%, #e9bd00 75%, #c59401 100%); */
    background: linear-gradient(to left, #000 0%, #a49400 25%, #ffe600 50%, #a49400 75%, #000 100%);
    background-size: 200% auto;
    background-clip: text;
    color: transparent;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-animation: shine2 5s linear infinite;
    animation: shine2 5s linear infinite;
}

@-webkit-keyframes shine2 {
    from {
      background-position: 0 0;
    }

    to {
      background-position: -200% 200%;
    }
  }
  @keyframes shine2 {
    from {
      background-position: 0 0;
    }

    to {
      background-position: -200% 200%;
    }
  }

.hero-content h1 span{ color: #ff9d2d; }
.hero-content .hero-list{ margin-bottom: 20px; }
.hero-content .hero-list li{
    font-family: "Rubik",sans-serif;
    font-size: 17px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    margin-right: 10px;
}
.hero-content .hero-list li i{
    background-color: #1ab825;
    color: #fff;
    font-size: 10px;
    width: 20px;
    height: 20px;
    line-height: 20px;
    text-align: center;
    border-radius: 50%;
    margin-right: 5px;
}
.hero-content p {
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 15px;
}

.hero-img .sale{
    background-image: url(../img/sale-shape-red.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100%;
    width: 216px;
    height: 226px;
    position: absolute;
    left: 20px;
    top: 100px;
    display: flex;
    place-content: center;
    animation: scaleanim 1s linear 0s infinite alternate;
}
.hero-img .sale h4{ color: #fff;}
.hero-img .sale h2{
    line-height: 1;
    font-size: 26px;
    color: #fff;
}
.hero-img .sale span{
    color: #fff;
    display: block;
    font-size: 42px;
}
.hero-img .sale div{
    margin: 55px 30px 0px 0px;
}
/*======================================================
    Team Section
=======================================================*/
.team-section{ position: relative; }
.team-item{}
.team-thumb{ position: relative; }
.team-thumb img{ width: 100%; }
.team-content{
    position: relative;
    text-align: center;
    height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -70px;
    z-index: 1;
}
.team-shape{
    background-image: url(../img/team-shape.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100%;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}
.team-content h3{
    color: #fff;
    margin-bottom: 5px;
    line-height: 1;
}
.team-content h4{
    color: #fff;
    margin: 0;
}
.team-social{
    position: absolute;
    left: 50%;
    bottom: 90px;
    width: 100%;
    height: auto;
    text-align: center;
    transform: translateX(-50%);
}
.team-social li{
    display: inline-block;
    transform: translateY(100%);
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s linear;
}
.team-social li:nth-child(2) {
    transition-delay: 100ms;
}
.team-social li:nth-child(3) {
    transition-delay: 150ms;
}
.team-social li:nth-child(4) {
    transition-delay: 200ms;
}
.team-item:hover .team-social li {
    transform: translateY(0);
    visibility: visible;
    opacity: 1;
}
.team-social li a{
    background-color: #ff8e28;
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    text-align: center;
    color: #fff;
    font-size: 15px;
}
.team-social li a:hover{
    background-color: #0e1318;
    color: #fff;
}

/*======================================================
    Gallery Section
=======================================================*/
.gallery-section{ position: relative; }
.gallery-item{
    position: relative;
    overflow: hidden;
}
.gallery-item img{}
.gallery-item:hover img{
    transform: scale(1.05);
}
.gallery-item .full-view{}
.gallery-item .img-popup{
    background-color: #fff;
    color: #0e1318;
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 20px;
    text-align: center;
    border-radius: 50%;
    position: absolute;
    right: 20px;
    bottom: 20px;
    transform: scale(0);
    visibility: hidden;
    opacity: 0;
}
.gallery-item:hover .img-popup{
    transform: scale(1);
    transition-delay: 0.05s;
    visibility: visible;
    opacity: 1;
}


/*======================================================
    Footer Section
=======================================================*/
.footer-section{
    background-color: #fff;
    position: relative;
    z-index: 1;
}
.footer-illustration{
    background-image: url(../img/footer-illustration.png);
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: 100%;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    overflow: hidden;
    z-index: -1;
}
.running-cycle{
    overflow: hidden;
    width: 100%;
    height: 120px;
    position: absolute;
    left: 0;
    bottom: 0;
}
.running-cycle div{
    background-image: url(../img/delivery-boy.svg);
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: 150px;
    width: 150px;
    height: 150px;
    position: absolute;
    left: 0;
    bottom: -5px;
    animation: running-anim 20s linear infinite;
    z-index: 1;
}
.footer-section .col-lg-3:nth-child(2) .footer-widget{ padding-left: 30px; }
.footer-top{
    position: relative;
    padding: 100px 0;
    border-bottom: 1.5px solid #3f3d5650;
}
.footer-widget{}
.footer-widget .logo{
    margin-bottom: 25px;
    display: block;
    max-width: 150px;
}
.footer-widget .footer-social{}
.footer-widget .footer-social li{ display: inline-block; }
.footer-widget .footer-social li a{
    background-color: #ff8e28;
    font-size: 15px;
    color: #fff;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    display: inline-block;
    margin-right: 3px;
    margin-top: 10px;
    font-size: 13px;
    border-radius: 1px;
}
.footer-widget .footer-social li a:hover{
    background-color: #0e1318;
}
.footer-widget h3{
    font-family: "Rubik",sans-serif;
    font-size: 18px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 25px;
}
.footer-widget h3 span{
    height: 4px;
    width: 30px;
    display: inline-block;
    background: #ff9d2d;
    position: relative;
    margin-left: 10px;
    top: -4px;
}
.footer-widget h3 span:before{
    content: "";
    position: absolute;
    right: -8px;
    top: 0;
    height: 4px;
    width: 4px;
    background: #ff9d2d;
}
.footer-recent-post{}
.footer-recent-post li{
    display: flex;
    align-items: center;
}
.footer-recent-post li:not(:last-of-type){ margin-bottom: 15px; }
.footer-recent-post li .thumb img{
    max-width: 80px;
}
.footer-recent-post li .post-content{ padding-left: 15px; }
.footer-recent-post li .post-content h4{ font-size: 14px; }
.footer-recent-post li .post-content h4 a{ color: #0e1318; }
.footer-recent-post li .post-content h4 a:hover{
    color: #fff;
    text-decoration: underline;
}
.footer-recent-post li .post-content .date{
    font-family: "Roboto",sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    color: #0e1318;
}
.footer-recent-post li .post-content .date i{
    font-size: 15px;
    color: #ff9d2d;
    margin-right: 10px;
}
.contact-info{}
.contact-info-list{}
.contact-info-list li a{
    color: #0e1318;
    text-decoration: underline;
}
.contact-info-list li a:hover{
    color: #fff;
    text-decoration: underline;
}
.opening-hours-list li:not(:last-of-type),
.contact-info-list li:not(:last-of-type){ margin-bottom: 10px; }
.alert-danger {
    margin: 20px 0 0;
}

/*Booking Form*/
.booking-form{
    background-color: #fff;
    padding: 30px;
    position: relative;
    margin-top: -150px;
    border: 1px solid #eee;
    box-shadow: 0px 5px 10px 0px rgb(0 0 0 / 10%);
}
.booking-form .booking-form-group{
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 10px;
}
.booking-form .booking-form-group > div:last-child{
    grid-column-end: span 2;
}
.booking-form .form-select,
.booking-form .form-control{
    width: 100%;
    height: 40px;
    line-height: 40px;
    font-size: 14px;
    border-radius: 0;
    outline: none;
    box-shadow: none;
    border: 1px solid #eee;
    color: #999;
}
.booking-form .form-select{
    color: #999;
    line-height: inherit;
}
.booking-form .form-control.message{
    height: 100px;
}
.booking-form .form-control[type="date"]::-webkit-calendar-picker-indicator{
    width: 15px;
    padding: 0px;
    margin: 0px;
    padding: 5px !important;
    opacity: 0.8;
}
.book-btn{
    background-color: #ff8e28;
    height: 40px;
    line-height: 40px;
    padding: 0 25px;
    text-align: center;
    font-family: "Rubik",sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #fff;
    margin-top: 10px;
}
.book-btn:hover{
    background-color: #0e1318;
    color: #fff;
}
/*Subscribe Form*/
.subscribe-form{}
.subscribe-form .form-control{
    background-color: #fff;
    border-radius: 1px;
    border: none;
    height: 45px;
    box-shadow: none;
}
.subscribe-form .submit{
    background-color: #ff9d2d;
    font-family: "Roboto",sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    color: #fff;
    border-radius: 1px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    width: 100%;
    margin-top: 10px;
}
.subscribe-form .submit:hover{
    background-color: #fff;
    color: #051441;
}
.subscribe-form .submit i{margin-left: 10px; }
.footer-bottom{
    padding: 20px 0;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.2);
    background-color: #272727;
    color: #ffe600;
}
.footer-bottom p{margin: 0;}

/* Animation */
@-moz-keyframes running-anim {
    0% {
        left: -30%
    }
    100% {
        left: 100%
    }
}

@-webkit-keyframes running-anim {
    0% {
        left: -30%
    }
    100% {
        left: 100%
    }
}

@keyframes running-anim {
    0% {
        left: -30%
    }
    100% {
        left: 100%
    }
}

/* Contact Section */
.contact-section{
    position: relative;
    z-index: 1;
}
.contact-section .map{
    background-image: url(../img/map-white.png);
    background-repeat: no-repeat;
    background-position: left center;
    background-size: 80%;
    width: 100%;
    height: 100%;
    position: absolute;
    left: -20%;
    top: 0;
    z-index: -1;
}
.contact-details-wrap{ padding-right: 60px; }
.contact-title{margin-bottom: 20px;}
.contact-title h2{
    font-family: "Rubik",sans-serif;
    font-size: 28px;
    line-height: 38px;
    font-weight: 600;
    display: inline-block;
}
.contact-title h2 span{
    height: 4px;
    width: 30px;
    display: inline-block;
    background: #ff9d2d;
    position: relative;
    margin-left: 10px;
    top: -4px;
}
.contact-title h2 span:before{
    content: "";
    position: absolute;
    right: -8px;
    top: 0;
    height: 4px;
    width: 4px;
    background: #ff9d2d;
}
.contact-section .contact-details li {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}
.contact-section .contact-details li i {
    color: #ff9d2d;
    font-size: 15px;
    margin-right: 15px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    border-radius: 50%;
    background-color: rgba(90, 73, 248,0.1);
}
.contact-form{
    background-color: #fff;
    padding: 30px;
    box-shadow: 0 0 8px -2px rgb(0 0 0 / 10%);
}
.contact-form form{
    border: dotted 3px #eee;
    padding: 30px;
}
.contact-form-group{
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 15px;
}
.contact-form-group .form-field{}
.contact-form-group .form-field .form-control{
    background-color: #fff;
    border: 1px solid #eee;
    height: 45px;
    border-radius: 0;
    box-shadow: none;
    outline: none;
}
.contact-form-group .form-field .form-control:focus{
    border: 1px solid #ff9d2d;
}
.contact-form-group .form-field.message{
    grid-column-end: span 2;
}
.contact-form-group .form-field.message .form-control{
    height: auto;
}

.contact-form .form-group .form-control::-webkit-input-placeholder,
.contact-form .form-group .form-control::-webkit-input-placeholder{
   color: #999 !important;
}

.contact-form .form-group .form-control:-moz-placeholder,
.contact-form .form-group .form-control:-moz-placeholder{ /* Firefox 18- */
   color: #999 !important;
}

.contact-form .form-group .form-control::-moz-placeholder,
.contact-form .form-group .form-control::-moz-placeholder{  /* Firefox 19+ */
   color: #999 !important;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder{
   color: #ddd !important;
}
.contact-form .form-group .form-control.message{ height: 120px; }
#b-form-messages,
#form-messages {
    display: none;
    margin-top: 15px;
    margin-bottom: 0;
}
#b-form-messages.alert-danger,
#form-messages.alert-danger,
#b-form-messages.alert-success,
#form-messages.alert-success{display:block}

.branches-section{ position: relative; }
.branches-list h3{
    font-family: "Roboto",sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0;
    background-color: #ff9d2d;
    color: #fff;
    display: inline-block;
    padding: 3px 15px;
    margin-bottom: 20px;
}
.branches-list ul li{
    margin-bottom: 5px;
}
.branches-list ul li a{ color: #777; }
.branches-list ul li a:hover{
    text-decoration: underline;
    color: #ff9d2d;
}
/* Scrool To Top */
#scrollup{
    width: 45px;
    height: 45px;
    position: fixed;
    bottom: 30px;
    right: 30px;
    overflow: hidden;
    z-index: 999;
}
.scroll-to-top{
    width: 100%;
    height: 100%;
    text-align: center;
    background-color: #c9e167;
    font-size: 15px;
    padding: 0;
    line-height: 40px;
    color: #fff;
    border-radius: 50%;
    text-decoration: none;
    transform: translateY(150%);
    transition: all 0.3s ease-in-out;
}
#scrollup.show{ opacity: 1; }
#scrollup.show .scroll-to-top{
    transform: translateY(0);
    transition: all 0.3s ease-in-out;
}
.scroll-to-top:hover{
    color: #fff;
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s ease-in-out;
}
.scroll-to-top:focus{
    outline: none;
}

.reservation-wrap .reservation-box-wrap .opening-hrs .office-schedule li,
.reservation-wrap .reservation-box-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.reservation-wrap .reservation-box-wrap .opening-hrs .office-schedule li {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -ms-grid-row-align: center;
    align-items: center;
}

.reservation-wrap .reservation-box-wrap .opening-hrs .office-schedule li {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.overlay {
    background-color: #000;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 60%;
}

.reservation-wrap {
    position: relative;
    padding: 100px 0 90px;
}

.reservation-wrap .reservation-shape {
    background-image: url(../img/feature/feature-bg-2.jpg);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 300px;
    z-index: -1;
}

    .reservation-wrap .reservation-box-wrap {
    -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
            box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    }

    .reservation-wrap .reservation-box-wrap .reservation-form {
    background-color: #fff;
    width: 40%;
    }

    .reservation-wrap .reservation-box-wrap .reservation-form form .form-group {
    margin: 0 0 15px;
    position: relative;
    }

    .reservation-wrap .reservation-box-wrap .reservation-form form .form-group label {
    display: block;
    margin: 0 0 8px;
    line-height: 1;
    color: #545454;
    font-weight: 600;
    }

    .reservation-wrap .reservation-box-wrap .reservation-form form .form-group input {
    width: 100%;
    height: 45px;
    background-color: #fff;
    padding: 10px 15px;
    border: 1.5px solid #ccc;
    border-radius: 5px;
    }

    .reservation-wrap .reservation-box-wrap .reservation-form form .form-group input:focus-visible {
        outline: none;
        border: 1.5px solid #222;
    }

    .reservation-wrap .reservation-box-wrap .reservation-form form .form-group i {
    color: #FFA323;
    position: absolute;
    top: 38px;
    right: 15px;
    }

    .reservation-wrap .reservation-box-wrap .reservation-form form .form-group select {
    width: 100%;
    height: 45px;
    background-color: #EEEFF2;
    padding: 10px 15px;
    border: none;
    color: #545454;
    border-radius: 5px;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-repeat: no-repeat;
    background-size: 10px;
    background-position: 94% 50%;
    }

.reservation-wrap .reservation-box-wrap .opening-hrs {
    background-image: url(../img/bg-2.jpg);
    position: relative;
    width: 60%;
    z-index: -2;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
}

    .reservation-wrap .reservation-box-wrap .opening-hrs h4 {
        color: #ffe600;
    position: relative;
    z-index: 1;
    }

    .reservation-wrap .reservation-box-wrap .opening-hrs h4 span {
        color: #fff;
    }

    .reservation-wrap .reservation-box-wrap .opening-hrs .office-schedule {
    position: relative;
    z-index: 1;
    }

    .reservation-wrap .reservation-box-wrap .opening-hrs .office-schedule li {
    margin: 0 0 20px;
    }

    .reservation-wrap .reservation-box-wrap .opening-hrs .office-schedule li:last-child {
    margin: 0;
    }

    .reservation-wrap .reservation-box-wrap .opening-hrs .office-schedule li p {
    color: #fff;
    margin: 0;
    }

    .reservation-wrap .reservation-box-wrap .promotional-offer {
    height: 435px;
    width: 33.33%;
    background-image: url(../img/offer/promotion-2.jpg);
    }

    .reservation-wrap .reservation-box-wrap .reservation-form,
    .reservation-wrap .reservation-box-wrap .opening-hrs {
    padding: 30px;
    min-height: 435px;
    }

    .reservation-wrap .reservation-box-wrap .reservation-form h4,
    .reservation-wrap .reservation-box-wrap .opening-hrs h4 {
    font-size: 28px;
    line-height: 1.2;
    margin: 0 0 5px;
    }

    .reservation-wrap .reservation-box-wrap .opening-hrs p {
        font-size: 14px;
        font-style: italic;
        color: #fff;
        font-family: "Noto Serif", serif;
    }

    .reservation-wrap .reservation-box-wrap .reservation-form p {
        font-size: 16px;
        line-height: 22px;
        margin-bottom: 25px;
    }



.contact-wrap .contact-shape-1 {
  position: absolute;
  top: 0;
  left: 0;
}

.contact-wrap .contact-shape-2 {
  position: absolute;
  bottom: 0;
  right: 0;
}

.contact-wrap.style3 .agent-img {
  position: absolute;
  bottom: -100px;
  right: 0;
  max-height: 450px;
}

.contact-wrap.style3 .contact-num {
  font-size: 40px;
  font-weight: 700;
  display: block;
  text-align: center;
  color: #FFA323;
  margin: 0 0 38px;
}

.contact-wrap .contact-btn {
  text-align: center;
}

.contact-wrap .contact-btn .btn:first-child {
  margin-right: 10px;
}

.contact-wrap.contact-page {
  padding-bottom: 200px;
}

.contact-wrap.contact-page2 {
  margin-top: -100px;
}

.contact-wrap.contact-page2 .mpa-bg {
  height: 450px;
}

.contact-bg-1 {
  background-image: url(../img/contact/contact-bg-1.jpg);
}

.contact-bg-2 {
  background-image: url(../img/contact/contact-bg-2.jpg);
}

.contact-box-wrap {
  position: relative;
}

.contact-box-wrap .contact-box-icon {
  position: absolute;
  top: calc(50% - 15px);
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background-color: #000;
  width: 112px;
  height: 112px;
  border-radius: 50%;
  z-index: 1;
  text-align: center;
}

.contact-box-wrap .contact-box-icon:after {
  position: absolute;
  top: 5px;
  left: 5px;
  content: "";
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  background-color: transparent;
  border: 3px solid #FFA323;
  border-radius: 50%;
}

.contact-box-wrap .contact-box-icon i {
  font-size: 52px;
  color: #FFA323;
}

.contact-box-wrap .contact-box {
  width: calc(50% - 20px);
  margin: 0 0 30px;
  padding: 50px;
  background-color: #ECEBE9;
  border-radius: 5px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.contact-box-wrap .contact-box h5 {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2;
  margin: 0 0 25px;
}

.contact-box-wrap .contact-box a {
  color: #FFA323;
  font-size: 40px;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
}

.contact-box-wrap .contact-box img {
  position: absolute;
  bottom: -10px;
  right: 35px;
  display: none;
}

.contact-wrap {
  position: relative;
  padding: 100px 0 0;
}

.map-bg iframe{
  /* position: absolute;
  bottom: 0;
  left: 0%; */
  width: 100%;
  height: 300px;
  z-index: -1;
}

.contact-wrap.style2 .btn i {
  position: relative;
  top: 4px;
  font-size: 16px;
  margin-left: 5px;
  margin-right: 0;
}

.contact-wrap.style3 {
  position: relative;
}

.contact-wrap.style3:after {
  position: absolute;
  top: 0;
  right: 0;
  content: "";
  width: 100%;
  height: 100%;
  z-index: 0;
  background: -webkit-gradient(linear, right top, left top, from(black), color-stop(5%, black), to(rgba(0, 0, 0, 0.58)));
  background: linear-gradient(-90deg, black 0%, black 5%, rgba(0, 0, 0, 0.58) 100%);
}

.contact-card {
  background-color: #fff;
  -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  padding: 25px;
  min-height: 291px;
  margin: 0 0 30px;
}

.contact-card .contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
  width: 125px;
  height: 125px;
  border-radius: 50%;
  border: 15px solid #EEEFF2;
  margin: 0 auto 25px;
}

.contact-card .contact-icon i {
  color: #FFA323;
  font-size: 50px;
  text-align: center;
}

.contact-card .contact-info {
  text-align: center;
}

.contact-card .contact-info h4 {
  font-weight: 700;
  margin-bottom: 6px;
}

.contact-card .contact-info p {
  margin-bottom: 0;
}

.contact-card .contact-info p,
.contact-card .contact-info a {
  color: #545454;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.contact-card .contact-info p:hover,
.contact-card .contact-info a:hover {
  color: #FFA323;
}

.contact-form .form-group {
  margin: 0 0 20px;
}

.contact-form .form-group label {
  display: block;
  line-height: 1.2;
  margin: 0 0 8px;
  font-weight: 700;
}

.contact-form .form-group input,
.contact-form .form-group textarea {
  width: 100%;
  height: 54px;
  background-color: #EEEFF2;
  border-radius: 5px;
  border: none;
  padding: 10px 15px !important;
}

.contact-form .form-group textarea {
  height: 150px;
  resize: none;
}

.contact-form .btn.disabled {
  opacity: 1;
}

.blog-wrap {
    padding: 100px 0 80px;
    position: relative;
}

.blog-card.style1 {
    margin-bottom: 25px;
  }

  .blog-card.style1 .blog-img {
    overflow: hidden;
    position: relative;
    max-height: 320px;
  }

  .blog-card.style1 .blog-img img {
    /* width: calc(100% + 40px); */
    width: 100%;
    max-width: none;
    /* -webkit-transform: translate3d(-40px, 0, 0);
    transform: translate3d(-40px, 0, 0); */
    -webkit-transition: 0.9s;
    transition: 0.9s;
  }

  .blog-card.style1 .blog-img .blog-social {
    overflow: hidden;
  }

  .blog-card.style1 .blog-img .blog-social span {
    position: absolute;
    top: 22px;
    right: 20px;
    width: 28px;
    height: 28px;
    cursor: pointer;
    border-radius: 50%;
    text-align: center;
    background-color: #fff;
    -webkit-transition: 0.4s;
    transition: 0.4s;
  }

  .blog-card.style1 .blog-img .blog-social span i {
    color: #F41F31;
    font-size: 13px;
    line-height: 0.8;
    -webkit-transition: 0.4s;
    transition: 0.4s;
  }

  .blog-card.style1 .blog-img .blog-social .social-profile {
    position: absolute;
    top: 50px;
    right: 20px;
    visibility: hidden;
    opacity: 0;
    z-index: -1;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }

  .blog-card.style1 .blog-img .blog-social .social-profile li {
    display: block;
    margin: 10px 0;
    -webkit-transform: translateX(40px);
    transform: translateX(40px);
  }

  .blog-card.style1 .blog-img .blog-social .social-profile li:nth-child(1) {
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }

  .blog-card.style1 .blog-img .blog-social .social-profile li:nth-child(2) {
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }

  .blog-card.style1 .blog-img .blog-social .social-profile li:nth-child(3) {
    -webkit-transition: 0.7s;
    transition: 0.7s;
  }

  .blog-card.style1 .blog-img .blog-social .social-profile li:nth-child(4) {
    -webkit-transition: 0.9s;
    transition: 0.9s;
  }

  .blog-card.style1 .blog-img .blog-social .social-profile li:nth-child(5) {
    -webkit-transition: 1.1s;
    transition: 1.1s;
  }

  .blog-card.style1 .blog-img .blog-social:hover span {
    background-color: #F41F31;
  }

  .blog-card.style1 .blog-img .blog-social:hover span i {
    color: #fff;
  }

  .blog-card.style1 .blog-img .blog-social:hover .social-profile {
    z-index: 1;
    opacity: 1;
    visibility: visible;
  }

  .blog-card.style1 .blog-img .blog-social:hover .social-profile li {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  .blog-card.style1 .blog-info {
    padding: 20px;
    background-color: #fff;
    -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.06);
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.06);
    -webkit-transition: 0.3s;
    transition: 0.3s;
    position: relative;
  }

  .blog-card.style1 .blog-info:after {
    position: absolute;
    bottom: 0;
    left: 0;
    content: "";
    background-color: #c9e167;
    width: 0%;
    height: 1px;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: 0.4s;
    transition: 0.4s;
  }

  .blog-card.style1 .blog-info .blog-title {
    font-family: "Noto Serif", serif;
    font-size: 24px;
    line-height: 1.4;
    margin: 0 0 15px;
  }

  .blog-card.style1 .blog-info .blog-title a {
    color: #000;
  }

  .blog-card.style1 .blog-info p {
    margin: 0;
  }

  .blog-card.style1 .blog-info .blog-metainfo {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 15px 0 0;
  }

  .blog-card.style1 .blog-info .blog-metainfo .blog-date {
    width: 50%;
  }

  .blog-card.style1 .blog-info .blog-metainfo .blog-author {
    width: 50%;
    text-align: right;
  }

  .blog-card.style1 .blog-info .blog-metainfo .blog-date,
  .blog-card.style1 .blog-info .blog-metainfo .blog-author {
    font-size: 14px;
    color: #545454;
  }

  .blog-card.style1 .blog-info .blog-metainfo .blog-date i,
  .blog-card.style1 .blog-info .blog-metainfo .blog-author i {
    color: #c9e167;
    font-size: 14px;
    position: relative;
    top: 1px;
    margin-right: 8px;
  }

  .blog-card.style1:hover .blog-img img {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }

  .blog-card.style1:hover .blog-info {
    -webkit-box-shadow: 0 5px 45px 10px rgba(0, 0, 0, 0.06);
            box-shadow: 0 5px 45px 10px rgba(0, 0, 0, 0.06);
  }

  .blog-card.style1:hover .blog-info:after {
    width: 100%;
    visibility: visible;
    opacity: 1;
  }

  .blog-card.style1:hover .blog-info .blog-title a {
    color: #c9e167;
  }

  .table tbody tr {
    font-size: 16px;
    font-weight: 600;
    background-color: rgba(177, 177, 177, 0.1);
}


.table tr td {
    text-align: center;
}

.table thead {
    background-color: #272727;
}

.table thead tr {
    font-size: 18px;
    color: #ffe600;
    text-align: center;
}

.pane--table2 table {
    box-shadow: 0 2px 15px rgb(0 0 0 / 20%);
}

/* .pane--table2 td {
    width: 60%;
    vertical-align: middle;
} */

.pane--table2 tbody {
	position: relative;
    overflow-y: overlay;
    overflow-x: hidden;
    display: block;
    max-height: 270px;
    padding-right: 13px;
    background: rgb(255 255 255 / 50%);
}

@media only screen and (max-width: 420px) {
    .pane--table2 tbody {
        padding-right: 10px;
    }
}

.pane--table2 thead {
    display: table;
    width: 100%;
}

.pane--table2 tbody::-webkit-scrollbar {
	width: 13px;
}

@media only screen and (max-width: 420px) {
    .pane--table2 tbody::-webkit-scrollbar {
        width: 8px;
    }
}

.pane--table2 tbody::-webkit-scrollbar-track {
    background-color: #f2f2f2;
}

.pane--table2 tbody::-webkit-scrollbar-thumb {
    background: #999;
    border: 2px solid #f2f2f2;
    border-radius: 10px;
  }


.hargajual {
    position: relative;
    background-image: url(../img/bg-kalkulasi.png);
    padding: 20px 15px;
    box-shadow: 0 2px 15px rgb(0 0 0 / 20%);
    border-radius: 5px;
    margin-top: 25px;
    font-weight: 600;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: right;
    z-index: 0;
}

.hargajual .overlay {
    background-color: #fff;
    opacity: 30%;
    border-radius: 5px;
}


.hargajual span {
    margin-top: 5px;
    display: block;
    font-size: 30px;
    line-height: 30px;
    color: #000000;
    font-family: "Noto Serif", serif;
}

.section-title h2 {
    font-family: "Noto Serif", serif;
}

.section-title h2 span {
    color: #ffe600;
}

.section-title h3 span {
    height: 4px;
    width: 30px;
    display: inline-block;
    background: #ffe600;
    position: relative;
    margin-left: 10px;
    top: -4px;
}

.section-title h3 span::before {
    content: "";
    position: absolute;
    right: -8px;
    top: 0;
    height: 4px;
    width: 4px;
    background: #ffe600;
}

.service-bg-1 {
    background-image: url(../img/service/service-bg-1.jpg);
  }

  .service-wrap {
    position: relative;
    padding: 90px 0 0;
  }

  .service-wrap .container {
    position: relative;
  }

  .service-wrap .section-title {
    margin-bottom: 120px;
  }

  .service-card-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .service-card-wrap .service-card {
    width: calc(25% - 17px);
  }

  .service-card {
    background-color: #fff;
    margin: 0 0 45px;
    position: relative;
    z-index: 1;
    border-radius: 5px;
  }

  .service-card:after {
    position: absolute;
    top: 50%;
    left: 50%;
    content: "";
    width: 0;
    height: 100%;
    background-color: #c9e167;
    z-index: -1;
    visibility: hidden;
    opacity: 0;
    border-radius: 5px;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: 0.4s;
    transition: 0.4s;
  }

  .service-card .service-info .service-title {
    font-family: "Lobster Two", serif;
    font-size: 28px;
    margin: 0 0 10px;
    color: #c9e167;
    -webkit-transition: 0.4s;
    transition: 0.4s;
  }

  .service-card:hover .service-info .service-title {
    color: #FFF;
  }


  .service-card .service-info p {
    margin: 0;
    -webkit-transition: 0.4s;
    transition: 0.4s;
  }

  .service-card:hover:after {
    visibility: visible;
    opacity: 1;
    width: 100%;
  }

  .service-card:hover .service-info .service-title a {
    color: #fff;
  }

  .service-card:hover .service-info p {
    color: #fff;
  }

  .service-card.style1 {
    -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
            box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
    padding: 105px 20px 35px;
    -webkit-transition: 0.4s;
    transition: 0.4s;
  }

  .service-card.style1:before {
    position: absolute;
    top: -80px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    background-color: rgba(255, 255, 255, 0.8);
    width: 170px;
    height: 170px;
    border-radius: 50%;
    content: "";
  }

  .service-card.style1 .service-img {
    position: absolute;
    top: -80px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 170px;
    height: 170px;
    background: rgba(221, 221, 221, 0.2);
    border-radius: 50%;
    border: 5px solid #c9e167;
    color: #c9e167;
    padding: 15px;
    font-size: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-transition: 0.4s;
    transition: 0.4s;
  }

  .service-card.style1:hover .service-img {
    background-color: #fff;
    color: #c9e167;
    border: 5px solid #ffffff;
  }

  .service-card.style1:hover .service-info .service-title a {
    color: #fff;
  }

  .service-card.style1 .service-info a,
  .service-card.style1 .service-info p {
    font-size: 16px;
    font-weight: 600;
    color: #777;
  }

  .service-card.style1:hover .service-info a,
  .service-card.style1:hover .service-info p {
    color: #fff;
  }

  .service-card.style1 .service-info a:hover {
    text-decoration: underline;
  }

  .service-card.style2 {
    -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.07);
            box-shadow: 0 0 15px rgba(0, 0, 0, 0.07);
    text-align: center;
    position: relative;
    padding: 25px 20px 25px;
    -webkit-transition: 0.4s;
    transition: 0.4s;
  }

  .service-card.style2 .service-img {
    position: relative;
    z-index: 1;
    margin: 0 0 20px;
    display: inline-block;
    -webkit-transition: 0.4s;
    transition: 0.4s;
  }

  .service-card.style2 .service-img img {
    position: relative;
    z-index: 1;
    -webkit-transition: 0.4s;
    transition: 0.4s;
  }

  .service-card.style2 .service-img .service-card-shape-1 {
    position: absolute;
    top: 65%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: -1;
  }

  .service-card.style2 .service-img .service-card-shape-2 {
    position: absolute;
    top: 23%;
    right: 0;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: -1;
  }

  .service-card.style2:hover .service-img img {
    -webkit-filter: brightness(0) invert(1);
            filter: brightness(0) invert(1);
  }

  .service-card.style2:hover .service-img .service-card-shape-1,
  .service-card.style2:hover .service-img .service-card-shape-2 {
    -webkit-filter: brightness(1) invert(0.6);
            filter: brightness(1) invert(0.6);
    opacity: 0.22;
  }

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

  .post-item iframe {
    width: 100%;
    max-height: 350px;
  }

  ul.banyak-tutup,
  ul.dua-tutup {
    display: flex;
    justify-content: center;
  }

  ul.banyak-tutup li,
  ul.dua-tutup li {
    margin: 0 3px;
    position: relative;
    font-size: 16px;
    font-weight: 600;
    -webkit-transition: 0.4s;
    transition: 0.4s;
  }

  ul.banyak-tutup li{
    margin: 0;
  }

  ul.banyak-tutup li:last-child {
    margin-left: 3px;
  }

  .service-card.style1:hover .service-info ul.banyak-tutup li,
  .service-card.style1:hover .service-info ul.dua-tutup li {
    color: #fff;
  }

  ul.dua-tutup li::before {
    content: "&";
    margin-right: 3px;
  }

  ul.dua-tutup li:first-child::before {
    content: "(";
  }

  ul.dua-tutup li:first-child,
  ul.dua-tutup li:last-child {
    margin: 0;
  }

  ul.dua-tutup li:last-child::before {
    content: unset;
  }

  ul.dua-tutup li:last-child::after {
    content: ")";
    margin-left: 3px;
  }

  ul.banyak-tutup li::before {
    content: ",";
    margin-right: 3px;
  }

  ul.banyak-tutup li:first-child::before {
    content: unset;
  }

  ul.banyak-tutup li:first-child::before {
    content: "(";
  }

  ul.banyak-tutup li:last-child::before {
    content: unset;
  }

  ul.banyak-tutup li:last-child::after {
    content: ")";
    margin-left: 3px;
  }


  /* popup */

  #popUp .modal-dialog {
    max-width: 400px;
  }

  #popUp .modal-content {
    border: unset;
    overflow: hidden;
  }


  #popUp .modal-body {
    padding: 0;
  }

  #popUp .modal-body .isi {
    padding: 20px 25px;
    text-align: center;
  }

  #popUp .modal-body .isi h3 {
    font-family: "Noto Serif", serif;
    font-size: 25px;
  }


  #popUp .btn-close {
    position: absolute;
    z-index: 1;
    top: 0;
    right: 0;
    font-size: 22px;
    background-color: #c9e167;
    opacity: 1;
    padding: 9px 9px 11px 10px;
    border-radius: 0 0 0 15px;
    color: #fff;
  }



