.elementor-kit-6{--e-global-color-primary:#0C1922;--e-global-color-secondary:#000000;--e-global-color-text:#FFFFFF;--e-global-color-accent:#00CDE6;--e-global-color-61683bc:#EFF0F1;--e-global-color-6168db6:#FFFFFF;--e-global-color-0bb3489:#FF4B5A;--e-global-color-de7564e:#747474;--e-global-color-75b9bae:#142837;--e-global-color-7e126f7:#0F212F;--e-global-color-b117ea4:#DBDBDB;--e-global-color-f8ec02a:#FFC300;--e-global-color-ac203a2:#A0FF32;--e-global-color-512fe4e:#F9A835;--e-global-color-a839e30:#B2F4FC;--e-global-color-43a276e:#366C95;--e-global-color-0d83c08:#0C1922;--e-global-typography-text-font-family:"Red Hat Display";--e-global-typography-text-font-weight:500;--e-global-typography-accent-font-family:"URC Sans";font-family:"Red Hat Display", Sans-serif;background-color:var( --e-global-color-61683bc );}.elementor-kit-6 h1{color:var( --e-global-color-6168db6 );font-family:"URC Sans", Sans-serif;font-weight:400;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1252px;}.e-con{--container-max-width:1252px;--container-default-padding-top:10px;--container-default-padding-right:10px;--container-default-padding-bottom:10px;--container-default-padding-left:10px;}.elementor-widget:not(:last-child){margin-block-end:20px;}.elementor-element{--widgets-spacing:20px 20px;}{}h1.entry-title{display:var(--page-title-display);}.elementor-kit-6 e-page-transition{background-color:#FFBC7D;}@media(max-width:1024px){.elementor-kit-6{--e-global-typography-text-font-size:18px;--e-global-typography-text-line-height:25px;}.elementor-kit-6 h1{font-size:60px;line-height:69px;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:540px){.elementor-kit-6 h1{font-size:28px;line-height:36px;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS *//* Prevent scrolling on the body when the modal is open */


/* Make sure the modal container hides the overflow inside */




/* Articles grid section */
.content-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Articles container */
#articles-section {
    margin-bottom: 2rem;
    gap: 20px;
    display: flex;
    flex-direction: column;
}

/*No More Articles */
#articles-section p{
    font-size: 1rem; 
    color: var(--e-global-color-75b9bae);
    font-weight: 500;
    text-transform: uppercase;
}

/* Articles grid */
.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 20px;
}

/* Article item */
.article-item {
    border-radius: 15px 0px 15px 0px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background-color: #fff !important;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0px;
    box-sizing: border-box;
    height: 100%;
    overflow: hidden;
	max-width: 372px!important;
	cursor: pointer;
	overflow: hidden;
}
	
/* Card item link */
.article-item a {
    background-color: #fff !important; /* Consistent background color */
    text-decoration: none; /* Remove underline */
    color: inherit; /* Inherit text color */
}

.article-item a:hover {
    background-color: #fff !important; /* Consistent background color on hover */
}
/* Title alignment */
.article-item h3 {
    color: var(--e-global-color-secondary);
    font-family: 'Red Hat Display', Sans-serif;
    font-size: 18px;
    font-weight: 900;
    line-height: 24px;
    letter-spacing: 0.3px;
    margin: 0px 0 10px 0;
    text-align: left;
    padding: 0px 10px 0px 20px; /* Adjusted padding */
}

/* Meta information */
.article-meta {
    display: flex;
    gap:1rem;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    padding: 0px 20px; /* Added padding */
}

/* Category */
.article-category {
  white-space: nowrap;
    transition: font-size 0.2s ease; /* smooth change */
    color: var(--e-global-color-0bb3489);
    font-family: 'Red Hat Display', Sans-serif;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid var(--e-global-color-0bb3489);
    padding: 0.2px 5px;
    border-radius: 5px 0;
    display: inline-block;
}
.article-category.long-text {
    
    font-size: 9px; /* smaller size for long text */
}
/* Date */
.article-date {
    color: var(--e-global-color-de7564e);
    font-family: 'Red Hat Display', Sans-serif;
    font-size: 10px;
    font-weight: 500;
    line-height: 13.23px;
    letter-spacing: 0.5px;
}

/* Article Image */
.article-item img {
    width: 100%;
    height: 188px; /* Image covers half of the card */
    object-fit: cover;
    object-position: top center;
    margin-bottom: 5px;
    overflow: hidden;
}
.article-item img:hover{
    transform: scale(1.05);
    transition-duration: .3s;
    transition-property: transform;
    overflow: hidden;
    /*margin-bottom: 20px!important;*/
}
/* Article content */
.article-content {
    flex-grow: 1; /* Allows content to take remaining space */
}

/* Read Time */
.article-read-time {
    color: #747474;
    font-size: 12px;
    padding: 20px; /* Adjusted padding */
    text-align: left; /* Ensures proper alignment */
    display: block; /* Ensure block display */
}
/* Remove background color and adjust border radius on hover */
.article-item a {
    display: block;
    text-align: center;
    color: #000;
    text-decoration: none;
}


/* Hide the dropdown search bar */
.select2-search--dropdown {
    display: none !important;
}

/* General styles for the selected option in the dropdown */
.select2-container--default .select2-selection--single {
    background: none;
    border: none;
    border-radius: 0;
    height: auto;
    padding: 5px 10px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    box-sizing: border-box;
    position: relative;
    display: inline-block;
    width: 100%; /* Ensures ellipsis works */
}

/* Style the rendered selected option */
.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 1.4em;
    letter-spacing: 0.1em;
    color: #FFFFFF;
    font-family: 'URC SANS';
    font-weight: 400;
    font-size: 22px;
    /*line-height: 22px;*/
    display: block;
    width: 100%; /* Ensures ellipsis works */
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    position: relative;
    padding-bottom: 0; /* No extra space below text */
}

/* Dropdown customization */
.select2-dropdown .select2-dropdown--below {
    width: unset;
}

.select2-container--open .select2-dropdown--below {
    border: 0.5px solid #00CDE6;
    border-radius: 0;
    margin-top: 15px;
}

/* Highlighted option in dropdown */
.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: var(--e-global-color-accent);
    color: white;
}

/* Dropdown list styling */
.select2-container--default .select2-results>.select2-results__options {
    background-color: white;
    min-width: 220px;
    max-height: 480px;
    overflow-y: auto;
    text-align: center;
    font-size: 14px;
    color: var(--e-global-color-primary);
    font-family: var(--e-global-typography-text-font-family);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    line-height: 18.52px;
}

/* Selected option styles */
.select2-container--default .select2-results__option--selected {
    /*background-color: transparent;*/
    /*border-bottom: 0.5px solid var(--e-global-color-accent);*/
    border-bottom: 0.5px;
    border-color: #00CDE6;
}

/* Custom underline animation for select box */
.select2-container--default .select2-selection--single .select2-selection__rendered::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #00CDE6; /* Underline color */
    transform: scaleX(0); /* Initially hidden */
    transform-origin: bottom left;
    transition: transform 0.3s ease-out;
}

/* Change arrow direction on open */
.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
    border-color: transparent transparent #00CDE6 transparent;
    border-width: 0 4px 7px 4px;
}

/* Reveal underline on hover or focus, but only when not hovering */
.select2-container--default .select2-selection--single:not(.hover):hover .select2-selection__rendered::after,
.select2-container--default .select2-selection--single:focus .select2-selection__rendered::after {
    transform: scaleX(1); /* Reveal underline */
}

/* Arrow styling with jump animation */
.select2-container--default .select2-selection--single .select2-selection__arrow b {
    margin-top: 4px;
    border-color: #00CDE6 transparent transparent transparent;
    border-width: 7px 4px 0 4px;
    transition: transform 0.3s ease-out; /* Add smooth transition for jump */
}

/* Jump animation for arrow on hover or focus, but only when not hovering */
.select2-container--default .select2-selection--single:not(.hover):hover .select2-selection__arrow b,
.select2-container--default .select2-selection--single:focus .select2-selection__arrow b {
    animation: jump 0.5s ease-in-out infinite alternate;
}

@keyframes jump {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-5px); /* Adjust the height of the jump */
    }
}

/* Dropdown scrollbar customization */
.select2-results__options::-webkit-scrollbar {
    width: 6px;
}

.select2-results__options::-webkit-scrollbar-track {
    background-color: #DBDBDB;
}

.select2-results__options::-webkit-scrollbar-thumb {
    background-color: #142837;
}

.select2-results__option--selectable {
    border-bottom: 0.5px solid var(--e-global-color-accent);
    padding: 0.75em;
    min-height: 48px;
    align-content: center;
}



.menu-item.fixture {
  position: relative;
}

.menu-item.fixture:hover::after {
  content: "This is your message";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #333;
  color: #fff;
  padding: 5px;
  border-radius: 4px;
  white-space: nowrap;
  font-size: 12px;
  z-index: 100;
  opacity: 1;
  visibility: visible;
}

.menu-item.fixture::after {
  content: "";
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.article-item h3 {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    font-family: 'Red Hat Display' !important;
    font-size: 20px !important;
    font-weight: 900 !important;
    line-height: 1.74rem;
}
.article-item {
    border-radius: 10px 0px 10px 0px!important;
}

button#load-more{
    font-family: "URC Sans", Sans-serif;
    font-size: 20px;
    color: var(--e-global-color-75b9bae);
    font-weight: 400;
    line-height: 16px;
    letter-spacing: 2px;
    background-color:rgb(0 205 239 / 0.08);
    border-style: solid;
    border-width: 1px 1px 1px 1px;
    border-color: var(--e-global-color-accent);
    border-radius: 8px 0px 8px 0px;
    padding: 14px 22px 14px 22px;
}
button#load-more:hover{
    color: #366c95;
   
}

.single-article-container .related-articles.no-print h2.elementor-heading-title.elementor-size-default {
    padding-bottom: 50px!important;
}

h3, .entry-content h3 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 48px;
}


/*.filter-container.jedv-enabled--yes.elementor-hidden-tablet.elementor-hidden-mobile.e-flex.e-con-boxed.e-con.e-parent {*/
/*    display: none;*/
/*}*/

.entry-content h1, .entry-content h2, .entry-content h3, .entry-content h4, .entry-content h5, .entry-content h6 {
    margin-bottom: 5px!important;
}

.elementor-9665 .elementor-element.elementor-element-4e0e7e2 img {
    width: 100%!important;
}

.module.poll-module.wp-block-poll.show-results.multi-color {
    display: none;
}/* End custom CSS */
/* Start Custom Fonts CSS */@font-face {
	font-family: 'Red Hat Display';
	font-style: normal;
	font-weight: 400;
	font-display: auto;
	src: url('https://devmediacentre.wpenginepowered.com/wp-content/uploads/2024/08/RedHatDisplay-Regular.woff2') format('woff2');
}
@font-face {
	font-family: 'Red Hat Display';
	font-style: normal;
	font-weight: 500;
	font-display: auto;
	src: url('https://devmediacentre.wpenginepowered.com/wp-content/uploads/2024/08/RedHatDisplay-Medium.woff2') format('woff2');
}
@font-face {
	font-family: 'Red Hat Display';
	font-style: normal;
	font-weight: 700;
	font-display: auto;
	src: url('https://devmediacentre.wpenginepowered.com/wp-content/uploads/2024/08/RedHatDisplay-Bold.woff2') format('woff2');
}
@font-face {
	font-family: 'Red Hat Display';
	font-style: normal;
	font-weight: 900;
	font-display: auto;
	src: url('https://devmediacentre.wpenginepowered.com/wp-content/uploads/2024/08/RedHatDisplay-Black.ttf') format('truetype');
}
/* End Custom Fonts CSS */
/* Start Custom Fonts CSS */@font-face {
	font-family: 'URC Sans';
	font-style: normal;
	font-weight: 400;
	font-display: auto;
	src: url('https://devmediacentre.wpenginepowered.com/wp-content/uploads/2024/08/URC-Sans.woff2') format('woff2');
}
/* End Custom Fonts CSS */