.key-areas-grid {
    display: grid;
    gap: 15px;
}

/* Desktop Layout - Dynamic from the shortcode */
.key-areas-grid {
    grid-template-columns: repeat(var(--items-in-desktop, 3), 1fr); /* Default 3 items per row */
}

/* Tablet Layout - Dynamic from the shortcode */
@media (max-width: 768px) {
    .key-areas-grid {
        grid-template-columns: repeat(var(--items-in-tab, 2), 1fr); /* Default 2 items per row */
    }
}

/* Mobile Layout - Dynamic from the shortcode */
@media (max-width: 480px) {
    .key-areas-grid {
        grid-template-columns: repeat(var(--items-in-mobile, 1), 1fr); /* Default 1 item per row */
    }
}

.key-area-item {
    height:100%;
    background-color: #fff;
    padding: 40px 20px;
    border-color:#fff;
    border-radius: 15px;
    box-shadow: 0px 0 25px #ddd;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    position:relative;
    top:0;
    transition: all 0.5s;
}

.key-area-item:hover{
    cursor:pointer;
    background:#00abec;
    top:-4px;
    border-color:#00abec;
    box-shadow: 0px 20px 35px #ccc;
    transition: all 0.5s;
}

.key-area-thumb{
    height:60px;
    width:60px;
}

.key-area-thumb img {
    object-fit:cover;
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.key-area-item:hover .key-area-thumb img{
    filter: invert(100%) sepia(100%) saturate(1%) hue-rotate(176deg) brightness(276%) contrast(100%);
}

.key-area-info {
    margin-top: 15px;
    text-align:center;
}

.key-area-info h4 {
    font-size: 16px;
    margin-bottom: 10px;
    color:#232323;
}

.key-area-item:hover h4{
    color:#fff;
}

.key-area-categories {
    margin-top: 10px;
}

.key-area-category {
    background-color: #F1F1F1;
    padding: 5px 10px;
    margin-right: 5px;
    display: inline-block;
    border-radius: 5px;
    font-size: 14px;
}

.key-areas-pagination {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.key-areas-pagination .page-numbers {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 10px;
}

.key-areas-pagination .page-numbers a {
    padding: 8px 16px;
    background-color: #0073aa;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

.key-areas-pagination .page-numbers a:hover {
    background-color: #005177;
}

.key-areas-pagination .page-numbers .current {
    background-color: #333;
    color: white;
    padding: 8px 16px;
    border-radius: 5px;
}

.key-areas-pagination .first-page,
.key-areas-pagination .last-page {
    padding: 8px 16px;
    background-color: #0073aa;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

.key-areas-pagination .first-page:hover,
.key-areas-pagination .last-page:hover {
    background-color: #005177;
}

.childcares-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center; /* Centers all items horizontally */
}

/* Individual item layout */
/*.childcare-item {*/
/*    background-color: #00abec;*/
/*    padding: 20px;*/
/*    border-radius: 15px;*/
/*    box-shadow: 0px 0 25px #ddd;*/
/*    display: flex;*/
/*    flex-direction: column;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*    min-height: 150px;*/
    /* Default flex-basis (4 items per row on desktop) */
/*    flex-basis: calc(100% / var(--items-in-desktop) - 15px);*/
/*    position:relative;*/
/*    top:0;*/
/*    transition: all 0.5s;*/
/*}*/

/*.childcare-item:hover{*/
/*    top:-4px;*/
/*    transition: all 0.5s;*/
/*}*/

.childcare-item {
    min-height: 250px;
    perspective: 1000px;
    flex-basis: calc(100% / var(--items-in-desktop) - 15px);
    border-radius: 15px;
}

.childcare-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform .6s;
    transform-style: preserve-3d;
    box-shadow: 0px 0 25px #ddd;
    border-radius: 15px;
}

.childcare-item:hover .childcare-inner {
    transform: rotateY(180deg);
}

.childcare-front,
.childcare-back {
    position: absolute;
    width: 100%;
    height: 100%;
    padding: 20px;
    backface-visibility: hidden;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* FRONT SIDE */
.childcare-front {
    background: #00abec;
    color: #fff;
}

/* BACK SIDE */
.childcare-back {
    background: #0089b8;
    color: #fff;
    transform: rotateY(180deg);
}

.childcare-back p{
    color:#fff;
    text-align:center !important;
}

.childcare-readmore {
    display: inline-block;
    margin-top: 15px;
    color: #fff;
    text-decoration: underline;
    border:1px solid;
    border-color:transparent;
    border-radius:2px;
    padding:0 15px;
}

.childcare-readmore:hover{
    color:#fff;
    border-color:#fff;
}

/* Design 2 specific styles (No flip animation) */
.childcare-item.design2 {
    min-height: auto;
    perspective: 1000px;
    flex-basis: calc(100% / var(--items-in-desktop) - 15px);
    border-radius: 0;
    box-shadow: none;
}

/* Remove flip animation and transform for design2 */
.childcare-item.design2 .childcare-inner {
    /* Remove flip animation for design2 */
    transform: none;
    box-shadow: none;
    margin-bottom:0;
}

/* Customize the layout for design2 */
.childcare-item.design2 .childcare-info {
    padding: 40px 25px;
    background-color: #00abec; /* Background for text section */
    color: #fff; /* Text color */
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1); /* Add a subtle shadow */
    margin-bottom: 10px;
    display:flex;
    flex-direction:column;
    justify-content:flex-start;
    align-items:flex-start;
    margin:0;
    height:100%;
}


/* Design 3 specific styles (No flip animation) */
.childcare-item.design3 {
    min-height: auto;
    perspective: 1000px;
    flex-basis: calc(100% / var(--items-in-desktop) - 15px);
    border-radius: 0;
    box-shadow: none;
}

/* Remove flip animation and transform for design3 */
.childcare-item.design3 .childcare-inner {
    /* Remove flip animation for design3 */
    transform: none;
    box-shadow: none;
    margin-bottom:0;
}

/* Customize the layout for design3 */
.childcare-item.design3 .childcare-info {
    padding: 40px 40px;
    background-color: transparent; /* Background for text section */
    color: #333; /* Text color */
    border-radius: 0;
    box-shadow: none; /* Add a subtle shadow */
    margin-bottom: 10px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:flex-start;
    margin:0;
    height:100%;
}

.childcare-item.design3 .childcare-info h4{
    color:#333;
}

.childcare-item.design3 .childcare-thumb img{
    border-radius:0;
}

.childcare-item.design3:nth-child(odd) {
    
}

.childcare-item.design3:nth-child(even) .childcare-inner .row {
    flex-direction: row-reverse;
}


@media screen and (max-width: 827px){
    .childcare-item.design2 .childcare-info{
        border-bottom-left-radius:0;
        border-bottom-right-radius:0;
    }
    .childcare-item.design3:nth-child(even) .childcare-inner .row {
        flex-direction: none;
    }
}

.childcare-item.design2 .childcare-info h5 {
    font-size: 25px;
    font-weight: bold;
    margin-bottom: 20px;
    text-align:left;
}
.childcare-item.design2 .childcare-info p {
    color:#fff;
    text-align:left;
}

/* Right column (image) for design2 */
.childcare-item.design2 .childcare-thumb img {
    width: 100%; /* Ensure image takes full width */
    height: auto;
    border-radius: 0;
}

.childcare-item.design2 .childcare-readmore {
    display: inline-block;
    margin-top: 15px;
    color: #fff;
    text-decoration: none;
    border:none;
    padding:0 0;
}

.childcare-item.design2 .childcare-readmore:hover {
    /*text-decoration: underline;*/
}

.childcare-item.design3 .childcare-readmore {
    display: inline-block;
    margin-top: 15px;
    color: #333;
    text-decoration: none;
    border:none;
    padding:0 0;
}

.childcares-grid.gap-zero {
    gap: 0;
    overflow:hidden;
}

.childcare-item.design3 .childcare-readmore:hover {
    /*text-decoration: underline;*/
}

.childcare-item .childcare-icon img{
    height:85px;
    width:85px;
}

/* Tablet Layout */
@media (max-width: 768px) {
    .childcare-item {
        flex-basis: calc(100% / var(--items-in-tab) - 15px); /* Default 2 items per row */
    }
}

/* Mobile Layout */
@media (max-width: 480px) {
    .childcare-item {
        flex-basis: calc(100% / var(--items-in-mobile) - 15px); /* 1 item per row */
    }
}

/* Apply red background to 1st, 4th, 7th, etc. */
/*.childcare-item:nth-child(3n+1):hover {*/
/*    background: #4caf50;  */
/*}*/

/* Apply blue background to 2nd, 5th, 8th, etc. */
/*.childcare-item:nth-child(3n+2):hover {*/
/*    background: #ff9800; */
/*}*/

/* Apply green background to 3rd, 6th, 9th, etc. */
/*.childcare-item:nth-child(3n):hover {*/
/*    background: #f44336; */
/*}*/

/* 1st, 4th, 7th... */
.childcare-item:nth-child(3n+1) .childcare-back {
    background: #4caf50;
}

/* 2nd, 5th, 8th... */
.childcare-item:nth-child(3n+2) .childcare-back {
    background: #ff9800;
}

/* 3rd, 6th, 9th... */
.childcare-item:nth-child(3n) .childcare-back {
    background: #f44336;
}


.childcare-thumb {
    height: auto;
    width: 100%;
}

.childcare-thumb img {
    object-fit: cover;
    width: 100%;
    height: auto;
    border-radius: 8px;
}

/*.childcare-item:hover .childcare-thumb img {*/
/*    filter: invert(100%) sepia(100%) saturate(1%) hue-rotate(176deg) brightness(276%) contrast(100%);*/
/*}*/

.childcare-info {
    margin-top: 15px;
    text-align: center;
}

.childcare-info h5 {
    margin-bottom: 10px;
    color: #fff;
}

.childcare-item:hover h4 {
    color: #fff;
}

.childcare-item button {
    font-size:13px;
    font-weight:800;
    padding:0 10px !important;
    border:1px solid transparent !important;
    background-color:transparent;
    color: #fff;
    margin-top:10px;
}

.childcare-item:hover button {
    border: 1px solid #fff !important;
    color: #fff;
}

.childcare-categories {
    margin-top: 10px;
}

.childcare-category {
    background-color: #F1F1F1;
    padding: 5px 10px;
    margin-right: 5px;
    display: inline-block;
    border-radius: 5px;
    font-size: 14px;
}

.childcares-pagination {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.childcares-pagination .page-numbers {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 10px;
}

.childcares-pagination .page-numbers a {
    padding: 8px 16px;
    background-color: #0073aa;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

.childcares-pagination .page-numbers a:hover {
    background-color: #005177;
}

.childcares-pagination .page-numbers .current {
    background-color: #333;
    color: white;
    padding: 8px 16px;
    border-radius: 5px;
}

.childcares-pagination .first-page,
.childcares-pagination .last-page {
    padding: 8px 16px;
    background-color: #0073aa;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

.childcares-pagination .first-page:hover,
.childcares-pagination .last-page:hover {
    background-color: #005177;
}


/* Grid for Notice Boards */
.notice-boards-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center; /* Centers all items horizontally */
}

/* Individual item layout for Notice Board */
.notice-board-item {
    border: 2px solid #00abec36;
    background: #00abec21;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0px 0 25px #ddd;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    min-height: 80px;
    /* Default flex-basis (3 items per row on desktop) */
    flex-basis: calc(100% / var(--items-in-desktop) - 15px);
}

.notice-board-item:hover {
    border: 2px solid #00abec36;
    background: #00aeef;
}

.notice-board-item:hover .notice-board-info h5{
    color:#fff;
}

.notice-board-item:hover .notice-board-info .excerpt{
    color:#fff;
}

.notice-board-item:hover .notice-board-info .icon{
    color:#fff;
}

/* Tablet Layout for Notice Board */
@media (max-width: 768px) {
    .notice-board-item {
        flex-basis: calc(100% / var(--items-in-tab) - 15px); /* Default 2 items per row */
    }
}

/* Mobile Layout for Notice Board */
@media (max-width: 480px) {
    .notice-board-item {
        flex-basis: calc(100% / var(--items-in-mobile) - 15px); /* 1 item per row */
    }
}

/* Thumbnail size for Notice Board */
.notice-board-thumb {
    height: 85px;
    width: 85px;
}

.notice-board-thumb img {
    object-fit: cover;
    width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Info container styling for Notice Board */
.notice-board-info {
    margin-top: 0;
    text-align: left;
}

.notice-board-info h5 {
    margin-bottom: 0;
}

.notice-board-info .heading-wrapper{
    display:flex;
    flex-direction:row;
    align-items:flex-start;
    justify-content:center;
    gap:20px;
}

.notice-board-info .heading-wrapper .icon{
    height:100%
    width:50px;
}

.notice-board-info .heading-wrapper .icon i{
    font-size:25px;
}

.notice-board-info .heading-wrapper .title{
    flex:1;
}

.notice-board-info  .excerpt{
    font-weight:normal;
}

.notice-board-item:hover h5 {
}

.notice-board-item button {
    font-size: 13px;
    font-weight: 800;
    padding: 0 10px !important;
    border: 1px solid transparent !important;
    background-color: transparent;
    color: #fff;
    margin-top: 10px;
}

.notice-board-item:hover button {
    border: 1px solid #fff !important;
    color: #fff;
}

/* Categories styling for Notice Board */
.notice-board-categories {
    margin-top: 10px;
}

.notice-board-category {
    background-color: #F1F1F1;
    padding: 5px 10px;
    margin-right: 5px;
    display: inline-block;
    border-radius: 5px;
    font-size: 14px;
}

/* Pagination for Notice Board */
.notice-boards-pagination {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.notice-boards-pagination .page-numbers {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 10px;
}

.notice-boards-pagination .page-numbers a {
    padding: 8px 16px;
    background-color: #0073aa;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

.notice-boards-pagination .page-numbers a:hover {
    background-color: #005177;
}

.notice-boards-pagination .page-numbers .current {
    background-color: #333;
    color: white;
    padding: 8px 16px;
    border-radius: 5px;
}

/* First and Last Page Styling */
.notice-boards-pagination .first-page,
.notice-boards-pagination .last-page {
    padding: 8px 16px;
    background-color: #0073aa;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

.notice-boards-pagination .first-page:hover,
.notice-boards-pagination .last-page:hover {
    background-color: #005177;
}

.vlogs-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center; /* Centers all items horizontally */
}

/* Individual item layout */
.vlog-item {
    /*box-shadow: 0px 0 25px #ddd;*/
    display: flex;
    overflow:hidden;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 150px;
    /* Default flex-basis (4 items per row on desktop) */
    flex-basis: calc(100% / var(--items-in-desktop) - 15px);
    margin-bottom:30px;
}

/* Tablet Layout */
@media (max-width: 768px) {
    .vlog-item {
        flex-basis: calc(100% / var(--items-in-tab) - 15px); /* Default 2 items per row */
    }
}

/* Mobile Layout */
@media (max-width: 480px) {
    .vlog-item {
        flex-basis: calc(100% / var(--items-in-mobile) - 15px); /* 1 item per row */
    }
}

.vlog-thumb {
    height: 250px;
    width: 100%;
    overflow:hidden;
    border-radius: 15px;
}

.vlog-thumb img {
    object-fit: cover;
    width: 100%;
    height: auto;
    border-radius: 8px;
}

/*.vlog-item:hover .vlog-thumb img {*/
/*    filter: invert(100%) sepia(100%) saturate(1%) hue-rotate(176deg) brightness(276%) contrast(100%);*/
/*}*/

.vlog-info {
    margin-top: 15px;
    text-align: left;
    display:block;
    width:100%;
}

.vlog-info h5 {
    margin-bottom: 10px;
    font-weight:700;
}

.vlog-item:hover h4 {
}

.vlog-categories {
    margin-top: 10px;
}

.vlog-category {
    background-color: #F1F1F1;
    padding: 5px 10px;
    margin-right: 5px;
    display: inline-block;
    border-radius: 5px;
    font-size: 14px;
}

.vlogs-pagination {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.vlogs-pagination .page-numbers {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 10px;
}

.vlogs-pagination .page-numbers a {
    padding: 8px 16px;
    background-color: #0073aa;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

.vlogs-pagination .page-numbers a:hover {
    background-color: #005177;
}

.vlogs-pagination .page-numbers .current {
    background-color: #333;
    color: white;
    padding: 8px 16px;
    border-radius: 5px;
}

.vlogs-pagination .first-page,
.vlogs-pagination .last-page {
    padding: 8px 16px;
    background-color: #0073aa;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

.vlogs-pagination .first-page:hover,
.vlogs-pagination .last-page:hover {
    background-color: #005177;
}

.vlog-excerpt { opacity:.95; margin-top:8px; line-height:1.5; }

.vlog-watch-btn {
  color: #00abec;
  font-size: 30px;
  left: 50%;
  padding-left: 7px;
  position: absolute;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  z-index: 1;
  cursor:pointer;
}

.vlog-watch-btn:before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 80px;
  height: 80px;
  background: #ffffff repeat scroll 0 0;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -webkit-animation: pulse-border 1500ms ease-out infinite;
  animation: pulse-border 1500ms ease-out infinite;
}

.vlog-watch-btn.theme:before,
.vlog-watch-btn.theme:after {
  background: #00abec repeat scroll 0 0;
}

.vlog-watch-btn:after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 80px;
  height: 80px;
  background: #ffffff repeat scroll 0 0;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  transition: all 200ms;
  -webkit-transition: all 200ms;
  -moz-transition: all 200ms;
  -ms-transition: all 200ms;
  -o-transition: all 200ms;
}

.vlog-watch-btn i {
  display: block;
  position: relative;
  z-index: 3;
  color: #00abec !important;
}


.vlog-embed-wrap { position:relative; width:100%; padding-top:56.25%; }
.vlog-embed-wrap iframe { position:absolute; top:0; left:0; width:100%; height:100%; }


.vlog-date {
    font-size: 13px;
    margin-bottom: 8px;
    font-style: normal;
}

.video-modal-custom {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100;
}

.video-modal-custom .modal-content {
    position: relative;
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    max-width: 60%;   /* Increased to 90% to allow more space for video */
    max-height: 80%;  /* Maximum height to fit within the screen */
    /*overflow: hidden;*/
}

.video-modal-custom .close-btn {
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 30px;
    cursor: pointer;
    background-color: #00aeef;
    color: #fff;
    border-radius: 100%;
    height: 30px;
    width: 30px;
    z-index: 105;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.video-modal-custom .video-container {
    position: relative;
    width: 100%;
    height:580px;
    overflow: hidden;
}


/* Grid */
.stories-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

/* Item */
.story-item {
    display: flex;
    overflow: hidden;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 150px;
    flex-basis: calc(100% / var(--items-in-desktop) - 15px);
    margin-bottom: 30px;
    border-radius: 0;
    background-color:#fff;
}

.story-read-btn{
    position:relative;
}

.story-read-btn:after
 {
    content: "\00BB";
    font-family: "Font Awesome 5 Free";
    position: absolute;
    right: -15px;
    top: 50%;
    display: flex;
    transform: translateY(-50%);
}

/* Hover = play animation once */
.story-read-btn:hover:after {
    animation: slideFade 0.4s ease;
}

.childcare-readmore{
    position:relative;
}

.childcare-item.design2 .childcare-readmore:after, .childcare-item.design3 .childcare-readmore:after
 {
    content: "\00BB";
    font-family: "Font Awesome 5 Free";
    position: absolute;
    right: -15px;
    top: 50%;
    display: flex;
    transform: translateY(-50%);
}

/* Hover = play animation once */
.childcare-item.design2 .childcare-readmore:hover:after, .childcare-item.design3 .childcare-readmore:hover:after {
    animation: slideFade 0.4s ease;
}

@keyframes slideFade {
    0% {
        opacity: 0;
        transform: translateY(-50%) translateX(-6px);
    }
    100% {
        opacity: 1;
        transform: translateY(-50%) translateX(0);
    }
}

/* Tablet */
@media (max-width: 768px) {
    .story-item {
        flex-basis: calc(100% / var(--items-in-tab) - 15px);
    }
}

/* Mobile */
@media (max-width: 480px) {
    .story-item {
        flex-basis: calc(100% / var(--items-in-mobile) - 15px);
    }
}

/* Thumb */
.story-thumb {
    height: 250px;
    width: 100%;
    position: relative;
}

.story-thumb img {
    object-fit: cover;
    width: 100%;
    height: auto;
    border-bottom-right-radius:40%;
}

/* Info */
.story-info {
    margin-top: 15px;
    text-align: left;
    display: block;
    width: 100%;
    padding:15px 20px;
}

.story-info h5 {
    margin-bottom: 10px;
    font-weight: 700;
}

.story-date {
    font-size: 13px;
    margin-bottom: 8px;
}

/* Button overlay (like your play button, but a book icon) */
.story-open-btn {
  color: #00abec;
  font-size: 30px;
  left: 50%;
  padding-left: 7px;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  pointer-events: none; /* click handled by .story-thumb */
}

/* Pagination (mirrors Vlogs) */
.stories-pagination {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.stories-pagination .page-numbers {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 10px;
}
.stories-pagination .page-numbers a {
    padding: 8px 16px;
    background-color: #0073aa;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}
.stories-pagination .page-numbers a:hover { background-color: #005177; }
.stories-pagination .page-numbers .current {
    background-color: #333;
    color: white;
    padding: 8px 16px;
    border-radius: 5px;
}
.stories-pagination .first-page,
.stories-pagination .last-page {
    padding: 8px 16px;
    background-color: #0073aa;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}
.stories-pagination .first-page:hover,
.stories-pagination .last-page:hover { background-color: #005177; }

/* Modal (mirrors your video modal styles, renamed) */
.story-modal-custom {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100;
}
.story-modal-custom .modal-content {
    position: relative;
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    max-width: 60%;
    max-height: 80%;
}
.story-modal-custom .story-container{
    height:100%;
    overflow:auto;
}
.story-modal-custom .close-btn {
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 30px;
    cursor: pointer;
    background-color: #00aeef;
    color: #fff;
    border-radius: 100%;
    height: 30px;
    width: 30px;
    z-index: 105;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.story-post .padding-style{
    padding-top:60px;
    padding-bottom:60px;
}

.story-post .story-thumb{
    min-height:450px;
}

.featured-stories-carousel.owl-carousel .owl-dot {
  margin-bottom: -10px;
  margin-top: 20px;
}

.featured-stories-carousel.owl-carousel .owl-dot span {
  display: block;
  height: 20px;
  width: 20px;
  margin: 0 5px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  background: #ffffff !important;
  position: relative;
  z-index: 1;
  border: 2px solid #e7e7e7;
}

.featured-stories-carousel.owl-carousel .owl-dot.active span::after {
  position: absolute;
  left: 50%;
  top: 50%;
  content: "";
  height: 5px;
  width: 5px;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  background: #3bcf93;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}


.pdf-posts-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-flex-start: center; /* Centers all items horizontally */
}

/* Individual item layout */
.pdf-post-item {
    display: flex;
    overflow: hidden;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 150px;
    flex-basis: calc(100% / var(--items-in-desktop) - 15px); /* Default flex-basis (4 items per row on desktop) */
    margin-bottom: 30px;
    background:#fff;
    border-radius:20px;
    overflow:hidden;
}

/* Tablet Layout */
@media (max-width: 768px) {
    .pdf-post-item {
        flex-basis: calc(100% / var(--items-in-tab) - 15px); /* Default 2 items per row */
    }
}

/* Mobile Layout */
@media (max-width: 480px) {
    .pdf-post-item {
        flex-basis: calc(100% / var(--items-in-mobile) - 15px); /* 1 item per row */
    }
}

.pdf-thumb {
    height: 350px;
    width: 100%;
    overflow: hidden;
}

.pdf-thumb img {
    object-fit: cover;
    width: 100%;
    height: auto;
}

/* Styling for PDF Post Info Section */
.pdf-info {
    text-align: left;
    display: flex;
    flex-direction:row;
    align-items:center;
    justify-content:space-between;
    width: 100%;
    padding: 15px 20px;
}

.pdf-info .icon-info{
    width:30px;
    height:40px;
    background:url('/wp-content/themes/poora-child/images/pdf-icon.png') no-repeat center center;
    background-size:cover;
}

.pdf-info .text-info{
    flex:1;
}

.pdf-info h5 {
    margin-bottom: 10px;
    font-weight: 700;
}

.pdf-date{
    font-style:italic;
    font-weight:normal;
}

/* Styling for Categories */
.pdf-categories {
    margin-top: 10px;
}

.pdf-category {
    background-color: #F1F1F1;
    padding: 5px 10px;
    margin-right: 5px;
    display: inline-block;
    border-radius: 5px;
    font-size: 14px;
}

/* Styling for PDF download button */
.download-pdf {
    display: inline-block;
    background-color: #0073aa;
    color: white;
    padding: 8px 16px;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 15px;
}

.download-pdf:hover {
    background-color: #005177;
    color:#fff;
}

.pdf-posts-pagination {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.pdf-posts-pagination .page-numbers {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 10px;
}

.pdf-posts-pagination .page-numbers a {
    padding: 8px 16px;
    background-color: #0073aa;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

.pdf-posts-pagination .page-numbers a:hover {
    background-color: #005177;
}

.pdf-posts-pagination .page-numbers .current {
    background-color: #333;
    color: white;
    padding: 8px 16px;
    border-radius: 5px;
}

.pdf-posts-pagination .first-page,
.pdf-posts-pagination .last-page {
    padding: 8px 16px;
    background-color: #0073aa;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

.pdf-posts-pagination .first-page:hover,
.pdf-posts-pagination .last-page:hover {
    background-color: #005177;
}

.pdf-excerpt {
    opacity: .95;
    margin-top: 8px;
    line-height: 1.5;
}

.pdf-download{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
}

/* Tablet and smaller screens (Max-width: 827px) */
@media screen and (max-width: 827px) {
    .video-modal-custom .modal-content {
        max-width: 80%;  /* Increase the width on smaller screens */
    }

    .video-modal-custom .video-container {
        height: 320px;  /* Adjust the video container height for tablets */
    }
    .story-modal-custom .modal-content{
        max-width: 90%;
        height: 500px;
    }
}

/* Desktop Large Displays (Min-width: 1200px) */
@media screen and (min-width: 1200px) {
    .video-modal-custom .modal-content {
        max-width: 60%;  /* Make the modal width larger for large desktops */
    }

    .video-modal-custom .video-container {
        height: 600px; /* Increase height for larger displays */
    }
    
    .story-modal-custom .modal-content{
        height: 600px;
        max-width: 80%;
    }
}

/* Medium Desktop Screens (Between 827px and 1200px) */
@media screen and (min-width: 827px) and (max-width: 1199px) {
    .video-modal-custom .modal-content {
        max-width: 80%;  /* Slightly larger width for medium desktops */
    }

    .video-modal-custom .video-container {
        height: 480px;  /* Adjust height for medium desktop screens */
    }
    
    .story-modal-custom .modal-content{
        max-width: 80%;
    }
}

.video-modal-custom .video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


.title-custom{
    color:#232323;
    font-weight:700;
}

.subtitle-custom{
    color:#00aeef;
    font-weight:600;
}

/*.causes-custom .owl-carousel .owl-item{*/
/*    width:335px !important;*/
/*}*/

.causes-custom .causes-area .causes-items .recent-causes-carousel .item{
    background-color:#00aeef;
}

.causes-custom .causes-area .causes-items .info{
    background-color:#00aeef;
    color:#fff;
    min-height:125px;
}

.causes-custom .causes-area .causes-items .info h4 a{
    color:#fff;
}

.causes-custom .owl-item .item .info p{
    display:none;
}

.causes-custom .progress-box{
    display:none;
}

.causes-custom .causes-area .causes-items .thumb a{
    border-radius: 0 0 70px 0;
    overflow: hidden;
}

.causes-custom .owl-carousel .owl-stage-outer {
    overflow: visible;
}

#mapsPrograms {
  width: 100%;
  height: 620px;
  /*border: 2px solid #00abec36;*/
  /*border-radius:15px;*/
  background: #fbfbfb;
  margin-bottom:20px;
}

.mapsPrograms-bullets {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.mapsPrograms-bullets li {
  display: flex;
  gap: 8px;
  font-size: 14px;
  align-items: center;
}
.mapsPrograms-bullets li .icon {
  width: 14px;
  height: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mapsPrograms-bullets li .icon img {
  width: 100%;
  height: auto;
}

.counter-area-custom .elementor-widget-wrap{
    display: grid !important;
    gap: 20px;
    grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width:827px){
    .counter-area-custom .elementor-widget-wrap{
        grid-template-columns: repeat(2, 1fr);
    }
}
.counter-area-custom .elementor-widget-counter{
    border: 2px solid #00abec36;
    background: #00abec21;
    padding:20px;
    height:100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius:20px;
    text-align:center;
    margin-bottom:0 !important;
} 
.counter-area-custom .elementor-counter-number{
    font-size:36px;
    font-weight:700;
    margin-bottom:15px;
}
.counter-area-custom .elementor-counter-title{
    font-size:14px !important;
    line-height:20px !important;
    text-align:center !important;
}
.text-area-custom .elementor-widget-wrap{
    display: grid !important;
    gap: 20px;
    grid-template-columns: repeat(2, 1fr);
}
.text-area-custom .elementor-widget-text-editor{
    border: 2px solid #00abec36;
    background: #00abec21;
    padding:20px;
    height:100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    text-align:left;
    border-radius:20px;
    margin-bottom:0 !important;
} 
.text-area-custom .elementor-widget-text-editor ul{
    text-align:left;
    margin-left:20px;
}
.text-area-custom .elementor-widget-text-editor ul li{
    list-style:none;
    position:relative;
    padding-left:20px;
}
.text-area-custom .elementor-widget-text-editor ul li:before{
    content:"";
    height:12px;
    width:12px;
    display:inline-block;
    background-color: #00abec;
    border-radius:50%;
    position:absolute;
    left:0;
    top:50%;
    transform:translateY(-50%);
}
.text-area-custom.type2 .elementor-widget-wrap{
    display: grid !important;
    gap: 20px;
    grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width:827px){
    .text-area-custom.type .elementor-widget-wrap{
        grid-template-columns: repeat(2, 1fr);
    }
    .text-area-custom.type2 .elementor-widget-wrap{
        grid-template-columns: repeat(2, 1fr);
    }
}
.text-area-custom.type2 .elementor-widget-text-editor{
    align-items: center;
    justify-content:center;
}
.text-area-custom.type2 .elementor-widget-text-editor *{
    margin-bottom:0;
    color:#fff;
    text-align:center;
}
/* 1st, 4th, 7th, 10th, etc. */
.text-area-custom.type2 .elementor-widget-text-editor:nth-child(3n+1) {
    background-color: #6aa64d; /* Change this to your desired color */
    border: 2px solid #6aa64d;
}
.elementor-widget .elementor-icon-list-icon{
    color:#00abec;
}

/* 2nd, 5th, 8th, 11th, etc. */
.text-area-custom.type2 .elementor-widget-text-editor:nth-child(3n+2) {
    background-color: #d36704; /* Change this to your desired color */
    border: 2px solid #d36704;
}

/* 3rd, 6th, 9th, 12th, etc. */
.text-area-custom.type2 .elementor-widget-text-editor:nth-child(3n) {
    background-color: #00abec; /* Change this to your desired color */
    border: 2px solid #00abec;
}
.why-partner-with-sos-custom h2{
    color:#fff !important;
}
.why-partner-with-sos-custom h5{
    color:#00abec !important;
}
.why-partner-with-sos-custom p{
    color:#fff !important;
    line-height:24px;
}
.why-partner-with-sos-custom .why-partner-with-sos-text-part{
    max-height:500px;
}

/* Apply styles to the scrollbar */
.custom-scroll-container {
    overflow: auto;
}

/* Customize the scrollbar track */
.custom-scroll-container::-webkit-scrollbar {
    width: 10px; /* Set the width of the scrollbar */
    height: 10px; /* For horizontal scrollbar */
}

/* Customize the scrollbar handle (thumb) */
.custom-scroll-container::-webkit-scrollbar-thumb {
    background-color: #00abec; /* Scrollbar thumb color */
    border-radius: 10px; /* Rounded corners for the thumb */
}

/* Customize the scrollbar track */
.custom-scroll-container::-webkit-scrollbar-track {
    background-color: #f1f1f1; /* Track background color */
    border-radius: 10px; /* Rounded corners for the track */
}

/* Optional: Customize the scrollbar's hover state */
.custom-scroll-container::-webkit-scrollbar-thumb:hover {
    background-color: #00abec; /* Darker thumb color on hover */
}

.client-carousel-custom .slick-dots{
    display:none !important;
}

.wpls-logo-showcase .slick-arrow{
    display:flex !important;
}

.wpls-logo-showcase .slick-arrow, .wpls-logo-showcase .slick-arrow:hover{
    background:#00aeef;
}

.donation-section-custom .progress-box{
    display:none;
}

.donation-section-custom .top-entry{
    display:none !important;
}

.support-communities-custom .we-do-area.half-bg::after{
    display:none;
}
.support-communities-custom .default-padding.bottom-less{
    padding:0;
}
.support-communities-custom .bg-gray{
    background:transparent;
}
.support-communities-custom .container{
    padding:0;
}
.support-communities-custom .site-heading {
    display: none;
}
.blog-custom .default-padding.bottom-less, .blog-custom .container{
    padding:0;
}    
.blog-custom .site-heading{
    display:none;
}
.blog-custom .blog-items .item{
    background-color:#FFF;
    padding:15px;
}

.event-custom .default-padding, .event-custom .container{
    padding:0 !important;
}    
.event-custom .site-heading{
    display:none;
}

.donate-today-custom .default-padding, .donate-today-custom .container{
    padding:0;
}    
.donate-today-custom .site-heading{
    display:none;
}
.donate-today-custom .bg-gray{
    background:transparent;
}
.donate-today-custom .elementor-background-overlay{
    background-color:#000;
}
.donate-today-custom .area-title{
    color:#fff;
}
.donate-today-custom p{
    color:#fff;
}
.donate-today-custom .question, .donate-today-custom .question .info h5{
    color:#fff !important;
}
.container-custom {
    width: 100%;
    padding-right: 5px;
    padding-left: 5px;
    margin-right: auto;
    margin-left: auto
}
.container-custom.direction-row .elementor-container{
    flex-direction:row;
}
@media (min-width: 576px) {
    .container-custom {
        max-width:540px
    }
}

@media (min-width: 768px) {
    .container-custom {
        max-width:720px
    }
}

@media (min-width: 992px) {
    .container-custom {
        max-width:960px
    }
}

@media (min-width: 1200px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl {
        max-width: 1270px !important;
    }
}

@media (min-width: 1200px) {
    .container-custom {
        max-width:1270px
    }
}
.default-padding {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
}
.no-padding-custom .we-do-area{
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}
.default-padding-bottom{
    padding-bottom:0 !important;
}
.elementor-button{
    background-color:#00aeef !important;
    color:#ffffff !important;
    border:2px solid #00aeef !important;
    border-radius:30px !important;
    font-size:18px !important;
    font-weight:600 !important;
    padding:18px 35px !important;
}
.elementor-button:hover{
    background-color:transparent !important;
    color:#232323 !important;
    border:2px solid #00aeef !important;
}
h1,h2,h3,h4,h5,h6{
    font-weight:700 !important;
}
@media (max-width:827px){
    .reverse-column-custom .elementor-container{
        flex-direction: column-reverse;
    }
}
.image-radius-custom img{
    border-radius: 20px 0px 150px !important;
}
.image-circled-custom img{
    border-radius:100% !important;
    border: 10px solid #fff !important;
    box-shadow: 0 0 30px rgb(0 0 0 / 8%) !important;
}
.counter-custom .fun-factor-area.bg-gray{
    background-color:transparent;
}
.elementor-accordion .elementor-accordion-item {
    border: 1px solid #00abec26 !important;
}
.elementor-accordion .elementor-tab-content {
    border-block-start: 1px solid #00abec26 !important;
}
.elementor-accordion .elementor-tab-title{
    font-size:18px !important;
    color: #00abec !important;
    background: #edf9fe !important;
    border: 1px solid #00abec26 !important;
    padding: 25px 20px !important;
}
.elementor-widget-accordion .elementor-tab-content{
    background: #ffffff !important;
}
/* Page hero */
.poora-page-hero {
    position: relative;
    min-height: 625px; /* Adjust to your desired height */
    max-height: 625px; /* Adjust to your desired height */
    background-size: cover;
    background-position: center center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    padding: 20px 0;
}

.poora-page-hero .container{
    position: relative;
    min-height: 625px; /* Adjust to your desired height */
    max-height: 625px; /* Adjust to your desired height */
}

.poora-hero-overlay {
    position:absolute;
    right:30px;
    bottom:60px;
    padding:30px;
}

.poora-hero-inner {
    z-index: 1; /* Ensure content is above the overlay */
    display:flex;
    flex-direction:column;
    background: rgba(0,174,239,0.8);
    width: 450px;
    height:auto;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 45px 40px;
}

.poora-hero-title{
    font-size: 3rem;
    font-weight: bold;
    text-align:left;
    margin-bottom:20px;
    line-height:1.2;
    color:#fff;
}

.poora-hero-title .poora-hero-heading * {
    font-size: 3rem;
    font-weight: bold;
    text-align:left;
    margin-bottom:20px;
    line-height:1.2;
    color:#fff;
}

.poora-hero-title .poora-hero-subheading {
    font-size: 1rem;
    font-weight: normal;
    color: #fff;
    text-align:left;
    line-height:1.5;
}


@media (max-width:827px){
    .poora-hero-overlay {
        right:0;
        bottom:20px;
    }
    .poora-hero-inner {
        display:flex;
        flex-direction:column;
        width:100%;
    }
    .poora-hero-title .poora-hero-heading * {
        font-size: 2rem;
    }
    
    .poora-hero-title .poora-hero-subheading {
        font-size: 0.8rem;
    }
}

.poora-hero-title {
    margin: 0;
    font-size: 28px;
    font-weight: bold;
    text-transform: capitalize;
    letter-spacing: 1px;
    color:#fff;
}

.poora-breadcrumb {
    font-size: 16px;
}

.poora-breadcrumb a {
    color: #fff;
    font-weight: normal;
}
.poora-breadcrumb a:hover {
    color: #333;
}
.poora-breadcrumb span.current-item {
    color: #fff;
    font-weight:700;
}
.we-do-area .item{
    height:100%;
}
.call-to-action-custom .area-title{
    background:#00aeef;
    color:#fff;
    display:inline-block;
    padding:10px 20px;
}
.call-to-action-custom h5{
    background:#00aeef;
    color:#fff !important;
    display:inline-block;
    padding:10px 20px;
}
.rounded-custom img{
    border-radius: 20px !important;
}
.donation-list {
  width: 100%;
  margin: 0 auto;
}
.donation-list li {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  font-size: 1.1em;
}
.donation-list li:last-child {
  margin-bottom: 0;
}
/* Hide actual radio input */
.donation-list input[type="radio"] {
  display: none;
}
/* Style the span like a button */
.donation-list label span {
  display: inline-block;
  padding: 7px 20px;
  border-radius: 8px;
  cursor: pointer;
  /*transition: all 0.3s ease;*/
  font-size: 1.1em;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  background: #00abec1c;
  border: 2px solid #00abec1c !important;
}
/* Hover effect */
.donation-list label span:hover {
  background: #00aeef;
  color:#fff;
}
/* Selected state */
.donation-list input[type="radio"]:checked + span {
  background: #00aeef;
  color: #fff;
}
/* Remove default list styles */
.sponsor-type {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sponsor-type li {
  margin-bottom: 10px; /* spacing between options */
}

/* Hide native radio button */
.sponsor-type input[type="radio"] {
  display: none;
}

/* Style label span as button */
.sponsor-type label span {
  display: inline-block;
  padding: 7px 20px;
  border-radius: 8px;
  background: #f5f5fa9c;
  border: 1px solid #eee;
  font-weight: 500;
  cursor: pointer;
  /*transition: all 0.3s ease;*/
  text-align: center;
  width: 100%; /* full width for mobile */
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Hover effect */
.sponsor-type label span:hover {
  background: #00aeef;
  color:#fff;
}

/* Checked state */
.sponsor-type input[type="radio"]:checked + span {
  background: #00f2fe; /* brighter/active color */
  color: #000;
  background: #00aeef;
  color:#fff;
}
.causes-single-area .sidebar aside{
    padding:0;
}
.causes-single-area .sidebar aside .box-area {
    padding: 30px 20px;
    background: #ffffff;
    box-shadow: 0 5px 30px 0 rgba(214, 215, 216, 0.57);
    border-radius: 15px;
    margin-top:20px;
}
.causes-single-items .item.sponsor-type ul li button {
  background: #f5f5fa9c;
  border: 1px solid #eee !important;
  font-weight: 500;
  padding: 3px 8px;
  font-size: 13px;
}
.causes-single-items .item.sponsor-type ul li button.active,
.causes-single-items .item.sponsor-type ul li button:hover {
  background: #00abec;
  border: 1px solid #00abec !important;
  color: white;
}

.causes-single-items .item ul li button {
  background: #00abec1c;
  border: 2px solid #00abec1c !important;
}
.causes-single-items .item ul li button:hover {
  background: #00abec;
  border: 2px solid #00abec !important;
  color: white;
}
.causes-single-items .item ul li .form-control {
  color: #495057;
  background-color: #fff;
  border: 1px solid #ced4da;
  border-radius: 8px;
  border: 2px solid #00abec1c !important;
  font-weight: 600;
  min-height: 43px;
}
.causes-single-items .item ul li .form-control:focus {
  color: #495057;
}
input[type="radio"]{
    min-height:auto;
}
.checkmark {
  font-weight: bold;
  font-size: 1em;
  margin-right: 15px;
  line-height: 1;
  user-select: none;
}
.causes-single-items .item .donator {
  display: flex;
  border-bottom: 1px dashed #cccccc;
  margin-bottom: 20px;
  padding-bottom: 15px;
}
.donator .info {
    display: flex;
    align-items: baseline;
    gap: 5px;
}
.home-custom .container{
    display:flex;
    justify-content:space-between !important;
}
.top-bar-area .row{
    justify-content:space-between !important;
}

@media (min-width: 1024px) {
    .attr-nav > ul > li.button {
        margin-left: 0;
    }
}

@media (min-width: 1024px) and (max-width: 1200px) {
    nav.navbar.bootsnav ul.nav > li > a {
        padding: 35px 7px !important;
    }
}

@media (max-width: 1023px) {
    .navbar .container{
        flex-direction:column !important;
    }
    nav.navbar.bootsnav.no-full .navbar-collapse {
        width: 100%;
    }
    nav.navbar.bootsnav .navbar-header{
        width:100%;
    }
    .home-custom .attr-nav.border-less{
        display:none !important;
    }
}

@media (max-width: 1023px) {
    nav.navbar.bootsnav .navbar-brand {
        left: 0;
        position: relative;
    }
}
@media (max-width: 992px) {
    nav.navbar.navbar-sticky .navbar-brand {
        left: 0;
    }
    .top-bar-area .item-flex{
        justify-content:center !important;
    }
}
@media (max-width: 827px) {
    .attr-nav{
        display:none !important;
    }
}
@media (min-width:992px) and (max-width: 1023px) {
    nav.navbar.bootsnav ul.nav > li > a {
        font-size: 11px;
        letter-spacing: 0.02em;
        padding: 35px 7px;
    }
}
.elementor:not(.elementor-bc-flex-widget) .elementor-widget-wrap {
    display: block;
}
.intan ul li {
    list-style: none;
    display: block !important;
    position: relative;
    padding-left: 24px;
    vertical-align: top;
    padding-bottom: 12px;
    text-align: justify;
}
.intan ul li:before {
    content: "";
    display: block;
    position: absolute;
    left: 0px;
    height: 1px;
    width: 15px;
    background-color: #0e3862;
    top: 14px;
}
.jobs-none-container p{
    text-align:center;
}
.awsm-jobs-single-title{
    font-size:30px;
}
.awsm-list-item .awsm-job-item{
    display:flex;
    align-items:center;
}
.awsm-lists{
    border:none;
}
.awsm-list-item {
    border: 1px solid #f2f2f2;
    margin-bottom: 20px;
    box-shadow: 1px 8px 15px 0px #ddd;
}
.awsm-list-item .awsm-job-item{
    border-bottom:none;
}
.awsm-job-more{
    color:#00aeef;
}
.awsm-list-item .awsm-job-specification-item {
    font-style: italic;
    font-size: 12px;
}
table {
    border: 1px solid #dbdbdb; /* Set table border color */
    border-collapse: collapse; /* Collapse borders for neatness */
}

table th, table td {
    padding: 4px 10px;
    vertical-align: middle;
    border: 1px solid #dbdbdb; /* Set border color for table cells */
}
@media (max-width: 827px) {
    .footer-bottom .inline-custom{
       justify-content:center;
    }
    .about-area .thumb {
        margin-right: 0;
    }
}
.donation-area .donation-form {
    padding-left: 15px;
}
.blog-area.right-sidebar .sidebar {
    padding-left: 20px;
}
.form-control{
    border:1px solid #e5e5e5;
}
@media (min-width: 1024px) {
    nav.navbar.bootsnav .navbar-brand {
        padding: 0 10px;
    }
    nav.navbar .attr-nav > ul > li.button a {
        padding: 8px 15px !important;
    }
}
.attr-nav{
    margin-left:0;
}
.help-block{
    position: relative;
    color: #da0000;
    font-style:italic;
    display:block;
    font-size:12px;
    text-align:left;
    margin-top:5px;
}
