/**
 * Theme Name: Blocksy Child
 * Description: Blocksy Child theme
 * Author: Creative Themes
 * Template: blocksy
 * Text Domain: blocksy
 */

/* General Styling */
.gc a.ct-menu-link {
    color: #1A1818!important;
    font-weight: 300;
}
.gc a.ct-menu-link:hover {
    color: #46791D!important;
    font-weight: 300;
}
.gc.current-menu-item  a.ct-menu-link{
    color: #46791D !important;
    font-weight: 300;
}
.gc.overviewlink a.ct-menu-link {
	font-weight:600;
}
.asp_link_style:hover {
    text-decoration: underline;
	color:#E97716;
	text-decoration-thickness: 2px;
}

li::marker {
    color: #E97715;
}

.wp-block-list li {
    padding-bottom: 10px;
    padding-left: 10px;
}

/* Icon and Menu Styling */
.ct-toggle-dropdown-desktop svg.ct-icon {
    fill: #F68D2E;
    --theme-icon-size: 15px;
}

#menu-top-menu .menu-item:not(:last-child) a {
    border-right: 2px solid #CCC1B7;
    padding: 7px 13px;
    height: 10%;
}

#menu-top-menu .menu-item:last-child a {
    padding: 7px 13px;
}


/* Custom Adjustments */
span.wp-block-post-terms__prefix {
    margin-right: 10px;
}

.asp_tags a {
    text-decoration: none;
}

.asp_tags a:hover {
    text-decoration: underline;
    text-decoration-thickness: 6px;
    text-decoration-color: #E97716;
    text-underline-offset: 8px;
}

.left-column {
    border-right: 5px solid #E0E3DF;
}

.right-column {
    margin-left: 20px;
}

.iconDetails a {
    font-weight: 700;
    color: #39607C;
    text-decoration: underline;
}

.innerDescription {
    padding: 20px 40px;
    background: #EAEDEA;
    margin-top: 25px;
    font-size: 24px;
    display: none;
    font-family: var(--theme-font-family);
}

.innerDescription h3 {
    font-size: 35px;
    padding: 10px 0 0;
    margin: 20px 0 15px;
}

.right-column .iconDetails {
    font-size: 19px;
}
.\32 -col {
	display:flex;
}
.iconBox {
  display:flex;
  align-items: center;
}
.iconHd {
  margin-right: 10px;
}
.iconHd img{
  max-width: 20px;
}
.selecthd {
    font-weight: bold;
    width: 370px;
    border: 4px solid #E0E3DF;
    font-size: 18px;
    font-family: var(--theme-font-family);
    color: #46791D;
    background: url(https://licensureproject.org/wp-content/uploads/2020/10/down-arrow.svg) no-repeat 97%;
    background-size: 21px;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
}

#gform_1 input,
#gform_1 select,
#gform_1 textarea {
    border-color: #E0E3DF !important;
    border-width: 4px;
    --gf-ctrl-shadow: none;
}

input#gform_submit_button_1 {
    border-width: 0;
}

/* Pagination Styling */
[data-pagination=simple]>div .page-numbers,
a.next.page-numbers,
a.prev.page-numbers {
    background: #EAEDEA;
    border: none;
    border-radius: 0;
    text-transform: none;
    font-weight: 400;
}

.page-numbers svg {
    fill: #E97716;
    height: 25px;
    width: 13px;
}

/* Custom Layouts */
.featured-posts-grid {
    display: flex;
    gap: 20px;
    justify-content: space-between;
}

.featured-post,
.single-featured-post {
    text-align: center;
}

.featured-post {
    width: 48%;
}

.featured-image img,
.single-featured-post .featured-image img {
    width: auto;
    height: 220px;
    display: block;
	object-fit:cover;
    box-shadow: 8px 8px 8px rgba(0, 0, 0, 0.1);
}

.featured-post h3,
.single-featured-post h3 {
    margin-top: 20px;
    font-size: 1em;
    text-align: left;
}

.featured-post h3 a,
.single-featured-post h3 a {
    color: #2D617B;
}

.single-featured-post {
    max-width: 600px;
    margin: 0 auto;
}

h2.tax_topics {
    border-top: none;
    border-right: none;
    border-left: none;
    border-style: solid;
}

/* Two-Column Container */
.two-column-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 20px;
    max-width: 100%;

}

.left-column,
.right-column {
    flex: 1 1 45%;
    box-sizing: border-box;
}

/* Icon Styling */
svg.ct-icon.toggle-icon-1 {
    fill: #F68D2E;
    height: 25px;
    width: 25px;
}
/* pagination styling */
.gb-pagination {
    display: grid;
    grid-template-columns: 1fr auto 1fr; /* Three columns: Prev | Pages | Next */
    align-items: center;
    margin-top: 20px;
    padding: 0 10px;
}

.gb-pagination .prev {
    justify-self: start; /* Align Previous to the far left */
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 80px;
    height: 50px;
    background-color: #f5f5f5;
    color: #2D617B;
    text-decoration: none;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
    font-size: 16px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.gb-pagination .prev:hover {
    background-color: #2D617B; /* Blue hover background */
    color: #fff; /* White text on hover */
    border-color: #2D617B;
    box-shadow: 0 4px 6px rgba(45, 97, 123, 0.3); /* Slightly pronounced shadow */
}

.gb-pagination .next {
    justify-self: end; /* Align Next to the far right */
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 80px;
    height: 50px;
    background-color: #f5f5f5;
    color: #2D617B;
    text-decoration: none;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
    font-size: 16px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.gb-pagination .next:hover {
    background-color: #2D617B; /* Blue hover background */
    color: #fff; /* White text on hover */
    border-color: #2D617B;
    box-shadow: 0 4px 6px rgba(45, 97, 123, 0.3); /* Slightly pronounced shadow */
}

.gb-pagination .pages {
    justify-self: center; /* Center the page numbers */
    display: flex;
    gap: 10px; /* Spacing between page numbers */
}

.gb-pagination a,
.gb-pagination span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: #f5f5f5;
    color: #2D617B;
    text-decoration: none;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
    font-size: 16px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.gb-pagination a:hover {
    background-color: #2D617B; /* Blue hover background */
    color: #fff; /* White text on hover */
    border-color: #2D617B;
    box-shadow: 0 4px 6px rgba(45, 97, 123, 0.3); /* Slightly pronounced shadow */
}

.gb-pagination .current {
    background-color: #2D617B; /* Blue for current page */
    color: #fff; /* White text */
    border-color: #2D617B;
    font-weight: bold;
    pointer-events: none; /* Disable clicks on the current page */
}

.gb-pagination .prev:before,
.gb-pagination .next:after {
    font-family: "Font Awesome 5 Free"; /* Font Awesome for chevrons */
    font-weight: 900; /* Ensure proper chevron display */
    font-size: 18px; /* Chevron size */
    margin: 0 5px;
}

.gb-pagination .prev:before {
    content: '\f104'; /* Font Awesome "chevron-left" */
    color: #2D617B; /* Blue chevron */
}

.gb-pagination .next:after {
    content: '\f105'; /* Font Awesome "chevron-right" */
    color: #2D617B; /* Blue chevron */
}
.change-icon-color .gb-icon svg  {
	fill:#E97716 !important;
}
/* fix list style issue */ 
.wp-block-kadence-iconlist ul.kt-svg-icon-list .kt-svg-icon-list-item-wrap .kt-svg-icon-list-single {
	padding: 10px 0 !important;
}

/* Responsive Styles */
@media (max-width: 999px) {
    .login .ct-icon,
    .ct-icon-container svg {
        fill: #E97716;
    }
    .social svg {
        fill: #464C52;
    }
    .two-column-container {
        max-width: 90%; /* Adjust as needed to make it smaller */
        
    }
}

@media (max-width: 768px) {
	.\32 -col {
    display: flex;
    flex-direction: column;
}
	.two-column-container {
        flex-direction: column !important; /* Ensures stacking */
    }
    .left-column,
    .right-column {
        flex: 0 0 100%;
        max-width: 100%;
        margin-left: 0; /* Reset any horizontal margin */
    }
	.left-column {
		border:none;
	}
	p.p1 {
    font-size: 22px;
		margin-bottom: 0;
}
	.selecthd {
        width: 300px; /* Adjust the width as needed */
        font-size: 16px; /* Adjust the font size as needed */
    }
	.innerDescription h3{
		font-size:23px;
	}
		.innerDescription p{
		font-size:19px;
	}
}