/* category button style */
.header-title a{
	font-family: Heebo;
}
.category-container {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(11, 1fr);
    gap: 10px;
}
.category-btn {
    border: 0;
    border-radius: 50px;
    font-family: 'Heebo';
    font-size: 20px;
    font-weight: 500;
}
.category-btn:active{
    box-shadow: 0px 0px 10px 3px #FFFDFD;
}
.category-btn:hover {
    transform: scale(1.1);
}
/* category button style end*/



/* slider style */
.slider-content {
    position: relative;
}
.wrapper {
    margin-top: 40px;
    overflow: hidden;
}
.center-slider {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding: 40px 15px;
}
.slider-img {
    height: 400px !important;
    padding: 0 10px;
    border-radius: 7px;
}
.slider-img img {
    width: 100%;
    object-fit: cover;
    height: 100%;
    border-radius: 7px;
}
.slick-prev, .slick-next {
    position: absolute;
    top: 25%;
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 10;
    font-size: 30px;
}
.slick-prev {
    left: -40px;
}
.slick-next {
    right: -40px;
}

.slick-prev i, .slick-next i {
    color: #fff;
}
.swiper-wrapper {
    display: flex;
    transition: transform 0.3s ease-in-out;
}
.swiper-slide {
    flex-shrink: 0;
    width: 100%;
}



/* thumbnail slider */
.slider-thumbnails {
    margin-top: 40px;
}
.slider-thumbnails img {
    border-radius: 10px;
    width: 95%;
    height: 125px;
    object-fit: cover;
    cursor: pointer;
}

/* .slick-prev {
    position: absolute;
    top: 45%;
    left: -30px;
    background: #fff;
    border: 0 !important;
    z-index: 1;
}
.slick-next {
    position: absolute;
    top: 45%;
    right: -30px;
    background: #fff;
    border: 0 !important;
    z-index: 1;
}
.slick-next:hover,
.slick-prev:hover {
    background-color: transparent !important;
}
.slick-next:focus,
.slick-prev:focus {
    background-color: transparent !important;
}
.center-slider .swiper-wrapper {
    padding: 0 !important;
} */



/* content design */
.content-container {
    width: 100%;
    margin-top: 50px;
    display: flex;
}
.content-right-col {
    width: 85%;
}
.content-left-col {
    width: 15%;
    text-align: end;
    padding: 0 0 0 10px;
}
.content-left-col img {
    width: 80%;
}
.post-title {
    margin: 0;
    color: #fff;
    margin-bottom: 0;
    font-family: 'Heebo';
    font-size: 30px;
    font-weight: 700;
}
.body-lang-container {
    width: 100%;
    display: flex;
    margin-bottom: 15px;
}
.post-body {
    margin: 0;
    color: #fff;
    font-family: 'Heebo';
    font-size: 20px;
    font-weight: 400;
}
.service-lang {
    margin: 0 8px 0 8px;
    color: #fff;
    font-family: 'Heebo';
    font-size: 20px;
    font-weight: 400;
}
.post_desc {
    margin: 0;
    color: #fff;
    font-family: 'Heebo';
    font-size: 20px;
    font-weight: 400;
}
.post-btn-container {
    margin-top: 20px;
}
.post-btn-container button {
    color: #fff;
    text-decoration: none !important;
    padding: 7px 30px 7px 30px;
    border: 1px solid #fff;
    border-radius: 50px;
    font-family: 'Heebo';
    font-size: 20px;
    font-weight: 500;
}
.post-btn-container button:hover {
    color: #000;
    background-color: #fff;
}
.post-btn-container button:focus {
    color: #000;
    background-color: #fff;
}




/* popup start */
.custom-model-main {
    /* text-align: center; */
    display: flex;
    justify-content: center;
    position: fixed;
    top: 50px;
    right: 0;
    bottom: 50px;
    left: 0;
    outline: 0;
    opacity: 0;
    -webkit-transition: opacity 0.15s linear, z-index 0.15;
    -o-transition: opacity 0.15s linear, z-index 0.15;
    transition: opacity 0.15s linear, z-index 0.15;
    z-index: -1;
    overflow-x: hidden;
    overflow-y: auto;
}

.model-open {
    z-index: 99999;
    opacity: 1;
    overflow: hidden;
}
.custom-model-inner {
    transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
    width: 90%;
    height: 95%;
    max-width: 90%;
}
.close-btn {
    color: #fff;
    text-align: end;
}
.close-btn img {
    width: 22px;
    height: 22px;
    cursor: pointer;
}
.custom-model-wrap {
    display: block;
    width: 100%;
    position: relative;
    background-color: #fff;
    border-radius: 6px;
    box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
    background-clip: padding-box;
    outline: 0;
    /* padding: 20px; */
    box-sizing: border-box;
    overflow-y: hidden;
    height: 100%;
}
.pop-up-content-wrap {
    height: 100%;
}
.pop-up-content-wrap iframe {
    width: 100%;
    height: 100%;
}
.model-open .custom-model-inner {
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
    position: relative;
    z-index: 999;
}
.model-open .bg-overlay {
    background: rgba(0, 0, 0, 0.6);
    z-index: 99;
}
.bg-overlay {
    background: rgba(0, 0, 0, 0);
    height: 100vh;
    width: 100%;
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    -webkit-transition: background 0.15s linear;
    -o-transition: background 0.15s linear;
    transition: background 0.15s linear;
}