*,
*::before,
*::after {
box-sizing: border-box;
margin: 0;
padding: 0;
}

html{
    overflow-x: hidden;
    font-size: 16px;
}

/* Apply to both default elements and Gutenverse block classes */
h1, .wp-block-heading h1 {
    font-size: 70px !important;
    margin-bottom: 50px;
    margin-top: 5px !important;
	font-family: 'Barlow Condensed', sans-serif;
	font-weight: 600 !important;
	color: #171a43;
	line-height: 74px !important;
	text-transform: uppercase;
}

h2, .wp-block-heading h2 {
    font-size: 56px;
    margin-bottom: 32px;
    margin-top: 10px;
	font-family: 'Barlow Condensed', sans-serif;
	font-weight: 600;
	line-height: 60px;
	color: #ffffff;
	text-transform: uppercase;
}

h3, .wp-block-heading h3 {
    font-size: 56px;
    margin-bottom: 32px;
    margin-top: 10px;
	font-family: 'Barlow Condensed', sans-serif;
	font-weight: 600;
	line-height: 60px;
	color: #171a43;
	text-transform: uppercase;
}

h4, .wp-block-heading h4 {
    font-size: 18px !important;
    margin-bottom: 32px;
    margin-top: 10px;
	font-family: 'Barlow Condensed', sans-serif;
	font-weight: 600 !important;
	color: #e3b108;
	line-height: 18px !important;
	text-transform: uppercase;
}

h5, .wp-block-heading h5 {
    font-size: 36px;
    margin-bottom: 32px;
    margin-top: 10px;
	font-family: 'Barlow Condensed', sans-serif;
	color: #191616;
	line-height: 52px;
	text-transform: uppercase;
}

h6, .wp-block-heading h6 {
    font-size: 14px;
    margin-bottom: 32px;
    margin-top: 10px;
}

/* Ensure paragraphs inside Gutenverse blocks follow the styling */
p, div, span, ul, li, .wp-block-paragraph {
    font-size: 16px;
}

p, .wp-block-paragraph {
	font-family: 'Work Sans', sans-serif !important;
	font-weight: 400 !important;
	color: #5d5d5d;
	font-size: 18px;
	line-height: 26px !important;
	margin-top: 28px;
	margin-bottom: 10px;
}

/*gutenverse buttons*/
.guten-button-wrapper .guten-button {
	background: #E3B108;
    padding: 15px 49px 15px 49px;
	font-family: 'Barlow Condensed', sans-serif;
	font-weight: 600 !important;
	color: #ffffff;
	font-size: 18px !important;
	line-height: 23px;
	text-transform: uppercase;
/* 	margin-top: 40px; */
	border-radius: 0px;
}

/*gutenverse list*/
.guten-icon-list-item .list-text {
font-family: 'Work Sans', sans-serif !important;
	font-weight: 400 !important;
	color: #5d5d5d;
	font-size: 18px !important;
	line-height: 26px !important;
/* 	margin-top: 28px !important; */
}

/* Ensure images are responsive */
img,
picture,
video,
canvas,
svg {
display: block !important;
max-width: 100% !important;
}

/* Inherit fonts for form controls */
input,
button,
textarea,
select {
font: inherit !important;
}

/* Ensure consistent line height */
body {
	line-height: 1.5 !important;
	background-color: #F1F1F1;
}

body.page-id-11,
body.page-id-150,
body.page-id-171,
body.page-id-177{
  background-color: #ffffff;
}

/* Add spacing between main sections */
section, .wp-block-group {
    margin-bottom: 50px;
	margin-top: 50px;
}

/* HEADER START */
.main_menu {
    display: flex;
/*     justify-content: space-between; */
	justify-content: right;
    padding: 0;
    margin: 0;
    align-items: center;
}

.main_menu li {
    text-decoration: none;
    list-style: none;
    display: inline-block;
/*     padding-left: 20px; */
	padding: 0 20px;
	position: relative;
}

/* .main_menu li:hover {
    color: #D20A11;
} */

.main_menu li a {
    text-decoration: none;
    color: inherit;
    font-size: 18px;
}

ul#main_menu li a {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 27px;
    letter-spacing: 0.5px; /* condensed fonts often benefit from slight tracking */
    text-transform: uppercase; /* matches the reference header */
    color: #333;
    text-decoration: none;
}

ul#main_menu li.current-menu-item a,
ul#main_menu li a:hover {
    color: rgb(227, 177, 8);
}

ul#main_menu li.current-menu-ancestor > a,
ul#main_menu li.current-menu-parent > a {
    color: rgb(227, 177, 8) !important;
}

/*sub-menu*/
.main_menu li ul {
    display: none;
    position: absolute;
    top: 54px;
    left: -23px;
    background-color: #551C61;
    min-width: 207px;
    z-index: 9999;
    padding: 1.4em 0;
    margin: 0;
    list-style: none;
}

.main_menu li:hover ul {
    display: block;
}

.main_menu li ul li {
    display: block;
    padding: 0;
    width: 100%;
}

.main_menu li ul li a {
    display: block;
    padding: 0.22em 2.3em;
    color: #ffffff !important;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.main_menu li ul li a:hover {
    color: rgb(227, 177, 8) !important;
}

.main_menu li ul li.current-menu-item a {
    color: rgb(227, 177, 8) !important;
}

/* Bridge gap between nav item and submenu */
.main_menu li::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 54px; /* same as top value on ul */
    background: transparent;
}

/* Keep submenu open when hovering over it */
.main_menu li:hover > ul,
.main_menu li ul:hover {
    display: block;
}

.header-pad {
/* 		padding: 23px 20px; */
		justify-content: flex-end;
	}

.open_search {
    cursor: pointer;
}
.search_form{
    background-color: #000000ad;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 99;
    margin: 0;
    padding: 0;
    text-align: right;
    display: none;
}
.search_form form{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 60%;
    text-align: center;
}
.search_form form input{
    border: 1px solid #fff;
    padding: 10px;
    border-radius: 0;
    font-size: large;
    height: 53px;
}
.search_form form input:focus{
    border: 1px solid #fff;
    box-shadow: none;
}

.search_form form button{
    background-color: transparent;
    border: 1px solid #fff;
    color: #fff;
    padding: 10px 20px;
    border-radius: 10px;
}

.close_search_btn{
    background-color: transparent;
    border: none;
    color: #fff;
    font-size: xxx-large;
}

header{
    box-shadow: 0 4px 2px -2px rgba(0, 0, 0, 0.2);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    background-color: #ffffff;
	height: 80px;
}

/* .custom-logo-link img{
    height: 100px;
    width: 100px;
} */

.custom-logo-link img {
		height: auto;
		width: auto;
	}

.col-logo {
		justify-content: flex-start !important;
	}

.menu-col {
		padding: 0;
	}

/* Donate Button */
.btn-donate {
    background-color: #551C61;
    color: #ffffff !important;
    padding: 25.9px 50px;
}

.btn-donate::after {
    background-color: #0B193D;
}

.btn-donate:hover {
    color: #ffffff !important;
}

/* Button Column */
header .col-3 {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0;
}

/* HEADER END */

/* FOOTER START */
/* newsletter start */
#subscription_email{
    border-radius: 0;
    padding: 10px;
    border: 1px solid #4f4b4b;
}
#subscription_btn{
    border: 1px solid #4f4b4b;
    border-radius: 0;
    margin-top: 10px;
}

#subscription_btn:hover{
    background-color:  #4f4b4b;
    color: #fff;
}
/* newsletter end */
footer{
    box-shadow: 0px -2px 4px -2px rgba(0, 0, 0, 0.2);
/*     padding-top: 50px; */
}
/* .copyright_row{
    background-color: #000;
    color: #fff;
    padding-top: 10px;
    font-size: 11px;
} */
/* FOOTER END */

/* body */
.main_content{
    min-height: 100vh;
}

.btn {
	font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 27px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
	position: relative;
    overflow: hidden;
    z-index: 1;
    transition: color 0.3s ease, box-shadow 0.3s ease;
	border-radius: 0 !important
}

.btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: auto;
    right: 0;
    width: 0%;
    height: 100%;
    z-index: -1;
    transition: width 0.3s ease;
}

  .btn:hover::after {
    width: 100%;
}

.guten-button-wrapper .guten-button {
    position: relative !important;
    overflow: hidden !important;
    z-index: 1 !important;
    transition: color 0.3s ease !important;
}

/* Sliding background */
.guten-button-wrapper .guten-button::after {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: auto !important;
    right: 0 !important;
    width: 0% !important;
    height: 100% !important;
    background-color: #ffffff !important;
    z-index: -1 !important;
    transition: width 0.3s ease !important;
}

/* Slide in on hover */
.guten-button-wrapper .guten-button:hover::after {
    width: 100% !important;
}

/* Text color on hover */
.guten-button-wrapper .guten-button:hover {
    color: #0B193D !important;
} 

/* Exclude icon box buttons from hover effect */
.guten-icon-box .guten-button-wrapper .guten-button {
    position: static !important;
    overflow: visible !important;
}

.guten-icon-box .guten-button-wrapper .guten-button::after {
    display: none !important;
}

.menu-col {
    padding: 0;
    display: flex;
    justify-content: flex-end;
}
/*Contact form 7 form css start */
.wpcf7{
    width: 100%;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;

}
.wpcf7-form,
.wpcf7-form input,
.wpcf7-form textarea,
.wpcf7-form p,
.wpcf7-form span,
.wpcf7-form label{
    width: 100%;
}

.wpcf7-form{
    border: 1px solid #e0dede;
    padding: 20px;
}
.wpcf7-form input{
    border: none;
    border-bottom: 1px solid #e0dede;
    padding-top: 10px;
    padding-bottom: 5px;
    outline: none;
    margin-top: 10px;
}
.wpcf7-form input:focus{
    border: none;
    border-bottom: 1px solid #000;
}
.wpcf7-form textarea{
    border: 1px solid #e0dede;
    outline: none;
    margin-top: 10px;
    border-radius: 10px;
    padding: 10px;
}
.wpcf7-form textarea:focus{
    border: 1px solid #000;
}
.wpcf7-form [type=submit]{
    background-color: #b9e40c;
    padding: 10px;
}

/*Contact form 7  form css end */

/* widths starts */
.width_lg_10{
    width: 10% !important;
}
.width_lg_20{
    width: 20% !important;
}
.width_lg_30{
    width: 30% !important;
}
.width_lg_40{
    width: 40% !important;
}
.width_lg_50{
    width: 50% !important;
}
.width_lg_60{
    width: 60% !important;
}
.width_lg_70{
    width: 70% !important;
}
.width_lg_80{
    width: 80% !important;
}
.width_lg_90{
    width: 90% !important;
}
.width_lg_100{
    width: 100% !important;
}
/* widths end */


@media only screen and (max-width: 1024px){
    .width_md_10{
        width: 10% !important;
    }
    .width_md_20{
        width: 20% !important;
    }
    .width_md_30{
        width: 30% !important;
    }
    .width_md_40{
        width: 40% !important;
    }
    .width_md_50{
        width: 50% !important;
    }
    .width_md_60{
        width: 60% !important;
    }
    .width_md_70{
        width: 70% !important;
    }
    .width_md_80{
        width: 80% !important;
    }
    .width_md_90{
        width: 90% !important;
    }
    .width_md_100{
        width: 100% !important;
    }
}

@media only screen and (max-width: 767px){
    .width_sm_10{
        width: 10% !important;
    }
    .width_sm_20{
        width: 20% !important;
    }
    .width_sm_30{
        width: 30% !important;
    }
    .width_sm_40{
        width: 40% !important;
    }
    .width_sm_50{
        width: 50% !important;
    }
    .width_sm_60{
        width: 60% !important;
    }
    .width_sm_70{
        width: 70% !important;
    }
    .width_sm_80{
        width: 80% !important;
    }
    .width_sm_90{
        width: 90% !important;
    }
    .width_sm_100{
        width: 100% !important;
    }
}

.guten-icon-box .icon-box.icon-box-body .title {
	font-family: 'Barlow Condensed', sans-serif;
	font-weight: 600;
	color: #171a43;
	size: 24px;
	line-height: 24px;
	text-transform: uppercase;
}

/* Vertical Social Strip - Only on Banner */
.banner-social-strip {
    position: absolute !important;
    left: 0 !important;
    top: 0 !important;
    bottom: 0 !important;
    z-index: 100 !important;
    display: flex !important;
    flex-direction: column !important;
    width: 80px !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Top Dark Navy Section */
.strip-top-section {
    flex: 1 !important;
    background-color: #1e2749 !important; /* Dark navy blue */
    width: 100% !important;
}

/* Bottom Section with Social Icons */
.social-strip-inner {
    background: linear-gradient(180deg, #5b4fd1 0%, #4a3fb8 100%) !important; /* Purple/blue gradient */
/*     padding: 30px 0 !important; */
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important; /* Remove gap for seamless blocks */
    align-items: center !important;
    width: 100% !important;
}

/* Social Icon Styling - Default state */
.social-strip-icon {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    height: 80px !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    border-radius: 0 !important;
    background-color: transparent !important;
    border: none !important;
}

/* Icon colors - default white */
.social-strip-icon i {
    font-size: 16px !important;
    color: #ffffff !important;
    transition: all 0.3s ease !important;
}

/* Twitter/X - Hover to Yellow/Gold */
.social-strip-icon:nth-child(1){
	background-color: #1d204e !important;
}
.social-strip-icon:nth-child(1):hover {
    background-color: #F7B32B !important;
}

/* Facebook - Hover to Blue */
.social-strip-icon:nth-child(2){
	background-color: #262b6b !important;
}
.social-strip-icon:nth-child(2):hover {
    background-color: #F7B32B !important;
}

/* YouTube - Hover to Purple/Blue */
.social-strip-icon:nth-child(3){
	background-color: #31368A !important;
}
.social-strip-icon:nth-child(3):hover {
    background-color: #F7B32B !important;
}

/* Keep icons white on hover */
.social-strip-icon:hover i {
    color: #ffffff !important;
}

/* Position relative to slider container */
.n2-section-smartslider,
.n2-ss-align,
ss3-force-full-width {
    position: relative !important;
}

/* Hide social strip everywhere */
.banner-social-strip {
  display: none !important;
}

/* Show it only on the homepage */
body.home .banner-social-strip {
  display: flex !important;
}

/* Responsive - hide on tablet and mobile */
@media (max-width: 991px) {
    .banner-social-strip {
        display: none !important;
    }
}

/* =============================================
   FOOTER — Human Rights Theme
   Matches: dark navy bar, centered copyright,
   social icons right, solid filled square blocks
   ============================================= */

/* Footer Copyright Row */
.copyright_row {
    background-color: #1e2749;
    padding: 0;
    margin: 0;
}

.copyright_inner {
    display: flex;
    align-items: stretch; /* stretch so icons fill full height */
    justify-content: space-between;
    margin: 0 auto;
    position: relative;
    min-height: 80px;
}

/* Center copyright text — truly centered over full width */
.copyright_center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    white-space: nowrap;
    pointer-events: none;
    height: 100%;
}

.copyright_row,
.copyright_left,
.copyright_left span,
.copyright_left div,
.copyright_center,
.copyright_center span,
.copyright_center div,
#block-18,
#block-18 span,
#block-18 div {
    color: #ffffff !important;
    font-size: 18px !important;
    line-height: 1.6 !important;
	font-family: 'Work Sans', sans-serif !important;
	font-weight: 400;
}

/* Right social icons wrapper */
.copyright_social {
    display: flex;
    align-items: stretch;
    flex-shrink: 0;
    margin-left: auto;
}

.copyright_right {
    display: flex;
    align-items: stretch;
}

#block-23,
#block-23 .widget_block {
    display: flex;
    align-items: stretch;
}

/* WP block columns — no gap, flush blocks */
.copyright_social .wp-block-columns {
    display: flex !important;
    align-items: stretch !important;
    gap: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
}

.copyright_social .wp-block-column {
    display: flex !important;
    align-items: stretch !important;
    margin: 0 !important;
    padding: 0 !important;
    flex-grow: 0 !important;
    width: auto !important;
}

.copyright_social .guten-social-icons,
.copyright_social .guten-element {
    display: flex !important;
    align-items: stretch !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Each icon — solid filled square, full height, no gap */
.copyright_social .guten-social-icon a {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 80px !important;
    height: 100% !important;
    min-height: 64px !important;
    border-radius: 0 !important;
    text-decoration: none !important;
    border: none !important;
    transition: background-color 0.3s ease !important;
}

.copyright_social .guten-social-icon i {
    font-size: 14px !important;
    color: #ffffff !important;
}

/* Individual icon background colors — matching the banner strip */
.copyright_social .guten-social-icon.twitter a {
    background-color: #1d204e !important;
}

.copyright_social .guten-social-icon.facebook a {
    background-color: #262b6b !important;
}

.copyright_social .guten-social-icon.youtube a {
    background-color: #31368a !important;
}

/* Hover — gold, matching banner strip */
.copyright_social .guten-social-icon.twitter a:hover,
.copyright_social .guten-social-icon.facebook a:hover,
.copyright_social .guten-social-icon.youtube a:hover {
    background-color: #f7b32b !important;
}

.copyright_social .guten-social-icon a:hover i {
    color: #ffffff !important;
}

/* Responsive */
@media (max-width: 768px) {
    .copyright_inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .copyright_center {
        padding: 16px 20px;
    }

    .copyright_social .guten-social-icon a {
        width: 54px !important;
        min-height: 54px !important;
    }
}

@media (min-width: 1024px) and (max-width: 1566px) { 
    #n2-ss-2 .n2-ss-layers-container.n2-ss-slide-limiter {
        max-width: 1290 !important;
        margin: 0 auto !important;
    }
}

@media (min-width: 1567px) { 
    #n2-ss-2 .n2-ss-layers-container {
        max-width: 1560px !important;
        margin: 0 auto !important;
    }
}

.guten-u6pq3z .guten-icon-box-wrapper,
.guten-usk8WS .guten-icon-box-wrapper,
.guten-QCg3gO .guten-icon-box-wrapper,
.guten-fsZOBt .guten-icon-box-wrapper {
    position: relative !important;
    overflow: hidden !important;
}

.guten-u6pq3z .guten-icon-box-wrapper::before,
.guten-usk8WS .guten-icon-box-wrapper::before,
.guten-QCg3gO .guten-icon-box-wrapper::before,
.guten-fsZOBt .guten-icon-box-wrapper::before {
    content: "" !important;
    width: 0 !important;
    height: 0 !important;
    border-style: solid !important;
    border-width: 25px 0 0 25px !important;
    border-color: transparent transparent transparent #f1f1f1 !important;
    position: absolute !important;
    z-index: 1 !important;
    top: auto !important;
    bottom: 10px !important;
    left: 10px !important;
    transition: border-color 0.3s ease !important;
}

.guten-u6pq3z .guten-icon-box-wrapper:hover::before,
.guten-usk8WS .guten-icon-box-wrapper:hover::before,
.guten-QCg3gO .guten-icon-box-wrapper:hover::before,
.guten-fsZOBt .guten-icon-box-wrapper:hover::before,
.guten-UfM0BN .guten-posts article:hover::before {
    border-color: transparent transparent transparent #e3b108 !important;
}

.guten-UfM0BN .guten-posts article {
	position: relative;
}

/* Default state - smooth transition */
.guten-u6pq3z .guten-icon-box-wrapper,
.guten-usk8WS .guten-icon-box-wrapper,
.guten-QCg3gO .guten-icon-box-wrapper,
.guten-fsZOBt .guten-icon-box-wrapper {
    position: relative !important;
    overflow: hidden !important;
    transform: translateY(0) !important;
    transition: transform 0.3s ease-out !important;
}

/* Move up on hover */
.guten-u6pq3z .guten-icon-box-wrapper:hover,
.guten-usk8WS .guten-icon-box-wrapper:hover,
.guten-QCg3gO .guten-icon-box-wrapper:hover,
.guten-fsZOBt .guten-icon-box-wrapper:hover {
    transform: translateY(-8px) !important;
}

/* Default SVG stroke color */
.guten-u6pq3z svg path,
.guten-usk8WS svg path,
.guten-QCg3gO svg path,
.guten-fsZOBt svg path {
    stroke: #000000;
    transition: stroke 0.3s ease !important;
}

/* SVG stroke color on hover */
.guten-u6pq3z .guten-icon-box-wrapper:hover svg path,
.guten-usk8WS .guten-icon-box-wrapper:hover svg path,
.guten-QCg3gO .guten-icon-box-wrapper:hover svg path,
.guten-fsZOBt .guten-icon-box-wrapper:hover svg path {
    stroke: #e3b108 !important;
}

.fun-fact-inner .number,
.fun-fact-inner .prefix {
    font-size: 40px !important;
}

/*post block start*/
.guten-postblock .guten-post-title a {
	font-family: 'Barlow Condensed', sans-serif !important;
	font-weight: 600;
	font-size: 36px;
	line-height: 38px;
	text-transform: uppercase;
	color: #171a43;
}

.home .guten-postblock .guten-post-title{
	line-height: 0 !important;
}

.guten-postblock .guten-readmore {
	padding: 0.7em 2.7em;
	border-radius: 0px;
	font-family: 'Barlow Condensed', sans-serif !important;
	font-weight: 600;
	color: #ffffff;
	font-size: 18px;
	line-height: 23px;
	text-transform: uppercase;
	background-color: #E3B108;
}

/* Post block read more button hover effect */
.guten-postblock .guten-readmore {
    position: relative !important;
    overflow: hidden !important;
    z-index: 1 !important;
    transition: color 0.3s ease !important;
	border: none;
}

.guten-postblock .guten-readmore::after {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: auto !important;
    right: 0 !important;
    width: 0% !important;
    height: 100% !important;
    background-color: #0b193d !important;
    z-index: -1 !important;
    transition: width 0.3s ease !important;
}

.guten-postblock .guten-readmore:hover::after {
    width: 100% !important;
}

.guten-postblock .guten-readmore:hover {
    color: #ffffff !important;
}
/*post block end*/

/*homepage post block start*/
.guten-SW5a8h .guten-posts {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
/*     gap: 20px !important; */
    align-items: stretch !important;
}

.guten-SW5a8h .guten-post {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
}

/* Make thumb position relative for overlay */
.guten-SW5a8h .guten-thumb,
.guten-zpCnCz .guten-thumb {
    position: relative !important;
    overflow: hidden !important;
}

/* Overlay hidden by default */
.guten-SW5a8h .guten-thumb::after,
.guten-zpCnCz .guten-thumb::after {
    content: "" !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background-color: rgba(0, 0, 0, 0) !important;
    transition: all 0.5s ease !important;
    z-index: 4 !important;
}

/* Overlay appears on hover */
.guten-SW5a8h .guten-post:hover .guten-thumb::after,
.guten-zpCnCz .guten-post:hover .guten-thumb::after {
    background-color: rgba(0, 0, 0, 0.15) !important;
}

/* Slight zoom on image hover */
.guten-SW5a8h .guten-thumb img,
.guten-zpCnCz .guten-thumb img {
    transition: transform 0.35s ease-in-out !important;
}

.guten-SW5a8h .guten-post:hover .guten-thumb img,
.guten-zpCnCz .guten-post:hover .guten-thumb img {
    transform: scale(1.05) !important;
}

.guten-SW5a8h .guten-postblock-content {
    flex: 1 !important;
    background-color: #f1f1f1 !important;
}

.guten-SW5a8h .guten-post {
    position: relative !important;
    overflow: hidden !important;
}

.guten-SW5a8h .guten-postblock-content,
.guten-zpCnCz .guten-thumb .thumbnail-container {
    position: relative !important;
}

/*triangle icon*/
.guten-SW5a8h .guten-postblock-content::before,
.guten-UfM0BN .guten-posts article::before {
    content: "" !important;
    position: absolute !important;
    bottom: 10px !important;
    left: 10px !important;
    width: 0 !important;
    height: 0 !important;
    border-style: solid !important;
    border-width: 25px 0 0 25px !important;
    border-color: transparent transparent transparent #ffffff !important;
    z-index: 1 !important;
}

.guten-SW5a8h .guten-post:hover .guten-postblock-content::before {
    border-color: transparent transparent transparent #0b193d !important;
    transition: border-color 0.3s ease !important;
}

/* Make thumbnail container relative */
.guten-SW5a8h .guten-thumb .thumbnail-container {
    position: relative !important;
}

/* All 4 spans - the border lines */
.guten-SW5a8h .guten-thumb .thumbnail-container::before,
.guten-zpCnCz .guten-thumb .thumbnail-container::before,
.guten-SW5a8h .guten-thumb .thumbnail-container::after,
.guten-zpCnCz .guten-thumb .thumbnail-container::after {
    content: "" !important;
    position: absolute !important;
    background: #551C61 !important;
    z-index: 5 !important;
    transition: all 0.3s linear !important;
}

/* Top border */
.guten-SW5a8h .guten-thumb .thumbnail-container::before,
.guten-zpCnCz .guten-thumb .thumbnail-container::before {
    top: 0 !important;
    left: 0 !important;
    width: 0 !important;
    height: 7px !important;
}

/* Bottom border */
.guten-SW5a8h .guten-thumb .thumbnail-container::after,
.guten-zpCnCz .guten-thumb .thumbnail-container::after {
    bottom: 0 !important;
    right: 0 !important;
    width: 0 !important;
    height: 7px !important;
}

/* Animate top and bottom on hover */
.guten-SW5a8h .guten-post:hover .guten-thumb .thumbnail-container::before,
.guten-zpCnCz .guten-post:hover .guten-thumb .thumbnail-container::before
.guten-SW5a8h .guten-post:hover .guten-thumb .thumbnail-container::after,
.guten-zpCnCz .guten-post:hover .guten-thumb .thumbnail-container::after {
    width: 100% !important;
}

/* Left border using guten-overlay */
.guten-SW5a8h .guten-thumb .guten-overlay,
.guten-zpCnCz .guten-thumb .guten-overlay {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    z-index: 5 !important;
    background: transparent !important;
    box-shadow: inset 0 0 0 0 #551C61 !important;
    transition: box-shadow 0.4s linear !important;
}

.guten-SW5a8h .guten-post:hover .guten-thumb .guten-overlay,
.guten-zpCnCz .guten-post:hover .guten-thumb .guten-overlay {
    box-shadow: inset 0 0 0 7px #551C61 !important;
}
/*homepage post block end*/

/* styles for breadcrumb links start*/
.n2-ss-layer a {
  color: #ffffff;
  text-decoration: none;
}

.n2-ss-layer a:hover {
  color: #E3B137;
  text-decoration: none;
}
/* styles for breadcrumb links end*/

/* Overlay effect for Partner Publication post block */
/* Post title */
.guten-vjuREU .guten-post-title a,
.guten-xIpSOr .guten-post-title a {
    font-size: 22px;
    font-weight: 600;
    line-height: 24px !important;
    text-transform: none;
}

/* Base post setup */
.guten-vjuREU .guten-post,
.guten-xIpSOr .guten-post {
    position: relative !important;
    overflow: hidden !important;
    height: 400px !important;
}

.guten-vjuREU .guten-thumb,
.guten-xIpSOr .guten-thumb {
    height: 100% !important;
}

.guten-vjuREU .guten-thumb .thumbnail-container,
.guten-xIpSOr .guten-thumb .thumbnail-container {
    height: 100% !important;
}

.guten-vjuREU .guten-thumb img,
.guten-xIpSOr .guten-thumb img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center top !important;
}

/* Overlay */
.guten-vjuREU .guten-thumb .guten-overlay,
.guten-xIpSOr .guten-thumb .guten-overlay {
    position: absolute !important;
    inset: 0 !important;
    background-color: rgba(0, 0, 0, 0) !important;
    transition: background-color 0.5s ease !important;
    z-index: 5 !important;
}

.guten-vjuREU .guten-post:hover .guten-thumb .guten-overlay,
.guten-xIpSOr .guten-post:hover .guten-thumb .guten-overlay {
    background-color: rgba(0, 0, 0, 0.98) !important;
}

/* Content overlay */
.guten-vjuREU .guten-postblock-content,
.guten-xIpSOr .guten-postblock-content {
    position: absolute !important;
    inset: 0 !important;
    background: transparent !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 45px !important;
    z-index: 6 !important;
    text-align: center !important;
}

/* Border animation */
.guten-vjuREU .guten-postblock-content::before,
.guten-xIpSOr .guten-postblock-content::before,
.guten-vjuREU .guten-postblock-content::after,
.guten-xIpSOr .guten-postblock-content::after {
    content: "" !important;
    position: absolute !important;
    inset: 30px !important;
    transition: all 0.5s ease !important;
    pointer-events: none !important;
    z-index: 1 !important;
}

.guten-vjuREU .guten-postblock-content::before,
.guten-xIpSOr .guten-postblock-content::before {
    border-top: 3px solid #ffffff !important;
    border-bottom: 3px solid #ffffff !important;
    transform: scaleX(0) !important;
}

.guten-vjuREU .guten-postblock-content::after,
.guten-xIpSOr .guten-postblock-content::after {
    border-left: 3px solid #ffffff !important;
    border-right: 3px solid #ffffff !important;
    transform: scaleY(0) !important;
}

.guten-vjuREU .guten-post:hover .guten-postblock-content::before,
.guten-xIpSOr .guten-post:hover .guten-postblock-content::before {
    transform: scaleX(1) !important;
}

.guten-vjuREU .guten-post:hover .guten-postblock-content::after,
.guten-xIpSOr .guten-post:hover .guten-postblock-content::after {
    transform: scaleY(1) !important;
}

/* Title */
.guten-vjuREU .guten-postblock-content .guten-post-title,
.guten-xIpSOr .guten-postblock-content .guten-post-title {
    opacity: 0 !important;
    transform: translateY(-1em) !important;
    transition: all 0.5s ease !important;
    text-align: center !important;
    margin: 0 0 15px !important;
    position: relative !important;
    z-index: 2 !important;
}

.guten-vjuREU .guten-postblock-content .guten-post-title a,
.guten-xIpSOr .guten-postblock-content .guten-post-title a {
    color: #ffffff !important;
    transition: color 0.3s ease !important;
}

.guten-vjuREU .guten-postblock-content .guten-post-title a:hover,
.guten-xIpSOr .guten-postblock-content .guten-post-title a:hover {
    color: #e3b108 !important;
}

/* Date */
.guten-vjuREU .guten-postblock-content .guten-post-meta,
.guten-xIpSOr .guten-postblock-content .guten-post-meta {
    opacity: 0 !important;
    transform: translateY(1em) !important;
    transition: all 0.5s ease !important;
    position: relative !important;
    z-index: 2 !important;
}

.guten-vjuREU .guten-postblock-content .guten-post-meta *,
.guten-xIpSOr .guten-postblock-content .guten-post-meta * {
    color: #ffffff !important;
}

.guten-vjuREU .guten-postblock-content .guten-post-meta:hover *,
.guten-xIpSOr .guten-postblock-content .guten-post-meta:hover * {
    color: #e3b108 !important;
    font-weight: 600 !important;
}

/* Show on hover */
.guten-vjuREU .guten-post:hover .guten-postblock-content .guten-post-title,
.guten-vjuREU .guten-post:hover .guten-postblock-content .guten-post-meta,
.guten-xIpSOr .guten-post:hover .guten-postblock-content .guten-post-title,
.guten-xIpSOr .guten-post:hover .guten-postblock-content .guten-post-meta {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.guten-UfM0BN .guten-postblock .guten-post .guten-postblock-content .guten-post-title a{
	font-size: 23px;
	font-weight: 600;
	line-height: 27px;
}

.guten-zpCnCz .guten-post-title a {
	font-size: 25px;
	line-height: 25px !important;
	color: #EDEDED;
}

.guten-zpCnCz .guten-post-title a:hover,
.guten-ocVdzU .guten-post-title a:hover,
.guten-R2KCkJ .guten-post-title a:hover {
	color: #E3B108 !important;
}

.guten-zpCnCz .guten-post-excerpt p,
.guten-ocVdzU .guten-post-excerpt p,
.guten-R2KCkJ .guten-post-excerpt p {
	font-family: 'Barlow Condensed', sans-serif !important;
	font-size: 16px;
	line-height: 24px !important;
	color: #551C61;
	font-weight: 600 !important;
}

.guten-zpCnCz .guten-postblock .guten-post-title,
.guten-ocVdzU .guten-postblock .guten-post-title,
.guten-R2KCkJ .guten-postblock .guten-post-title {
	line-height: 0 !important;
}

.guten-zpCnCz .guten-postblock-content {
    min-height: 184px !important;
}

.page-id-133 .guten-zpCnCz .guten-postblock-content {
    min-height: 0px !important;
}

.guten-ocVdzU .guten-postblock-content,
.guten-R2KCkJ .guten-postblock-content {
    min-height: 137px !important;
}

 {
    min-height: 141px !important;
}

.guten-ocVdzU .post-1139 .guten-post-excerpt,
.guten-ocVdzU .post-1141 .guten-post-excerpt,
.guten-R2KCkJ .post-1147 .guten-post-excerpt,
.guten-R2KCkJ .post-1149 .guten-post-excerpt,
.guten-R2KCkJ .post-1151 .guten-post-excerpt,
.guten-R2KCkJ .post-1153 .guten-post-excerpt,
.guten-R2KCkJ .post-1155 .guten-post-excerpt,
.guten-zpCnCz .post-1147 .guten-post-excerpt,
.guten-zpCnCz .post-1222 .guten-post-excerpt,
.guten-zpCnCz .post-1216 .guten-post-excerpt,
.guten-zpCnCz .post-1219 .guten-post-excerpt {
    display: none !important;
}

@keyframes animate-end4 {
    0% { width: 0; }
    100% { width: 100%; }
}
/*.dhl-image-wrap {
    position: relative;
    overflow: hidden;
    display: block;
}*/

.dhl-image-wrap img {
    display: block;
    width: 100%;
    transition: transform 0.4s ease;
}
.guten-UfM0BN .guten-post:hover .dhl-image-wrap img,
.guten-SW5a8h .guten-post:hover .dhl-image-wrap img{
    transform: scale(1.05);
}
/* All 4 border sides */
.dhl-image-wrap .border-top,
.dhl-image-wrap .border-right,
.dhl-image-wrap .border-bottom,
.dhl-image-wrap .border-left {
    position: absolute;
    background: #551c61;
    z-index: 2;
    transition: none;
}
/* Top — left to right */
.dhl-image-wrap .border-top {
    top: 0;
    left: 0;
    height: 7px;
    width: 0;
    transition: width 0.6s ease;
}

/* Right — top to bottom */
.dhl-image-wrap .border-right {
    top: 0;
    right: 0;
    width: 7px;
    height: 0;
    transition: height 0.6s ease;
}
/* Bottom — right to left */
.dhl-image-wrap .border-bottom {
    bottom: 0;
    right: 0;
    height: 7px;
    width: 0;
    transition: width 0.6s ease;
}
/* Left — bottom to top */
.dhl-image-wrap .border-left {
    bottom: 0;
    left: 0;
    width: 7px;
    height: 0;
    transition: height 0.6s ease;
}

/* On hover — expand each side */
.guten-UfM0BN .guten-post:hover .dhl-image-wrap .border-top,
.guten-SW5a8h .guten-post:hover .dhl-image-wrap .border-top {
    width: 100%;
}
.guten-UfM0BN .guten-post:hover .dhl-image-wrap .border-right,
.guten-SW5a8h .guten-post:hover .dhl-image-wrap .border-right {
    height: 100%;
}

.guten-UfM0BN .guten-post:hover .dhl-image-wrap .border-bottom,
.guten-SW5a8h .guten-post:hover .dhl-image-wrap .border-bottom {
    width: 100%;
}

.guten-UfM0BN .guten-post:hover .dhl-image-wrap .border-left,
.guten-SW5a8h .guten-post:hover .dhl-image-wrap .border-left {
    height: 100%;
}

.guten-nBsjtn {
    position: relative !important;
    overflow: visible !important;
}

#n2-ss-7 {
    position: relative !important;
}

#n2-ss-7 .n2-ss-slider-controls-absolute-right-top {
    position: absolute !important;
    top: 0 !important;
    right: 0 !important;
    left: auto !important;
    bottom: auto !important;
    transform: none !important;
    z-index: 10 !important;
}