/*
	Theme Name: gaianastouch
	Description: This is the sample theme created for the Genesis Framework.
	Author: StudioPress
	Author URI: http://www.studiopress.com/
	Version: 2.0.0
 
	Tags: black, orange, white, one-column, two-columns, three-columns, fixed-width, custom-menu, full-width-template, sticky-post, theme-options, threaded-comments, translation-ready
 
	Template: genesis
	Template Version: 2.0.0
 
	License: GPL-2.0+
	License URI: http://www.opensource.org/licenses/gpl-license.php
*/


/* Table of Contents

	- HTML5 Reset
		- Baseline Normalize
		- Box Sizing
		- Float Clearing
	- Defaults
		- Typographical Elements
		- Headings
		- Objects
		- Forms
		- Tables
	- Structure and Layout
		- Site Containers
		- Column Widths and Positions
		- Column Classes
	- Common Classes
		- WordPress
		- Genesis
		- Titles
	- Widgets
		- Featured Content
	- Plugins
		- Genesis eNews Extended
		- Genesis Latest Tweets
		- Gravity Forms
		- Jetpack
	- Site Header
		- Title Area
		- Widget Area
	- Site Navigation
		- Header Navigation
		- Primary Navigation
		- Secondary Navigation
	- Content Area
		- Entries
		- Pagination
		- Comments
	- Sidebars
	- Footer Widgets
	- Site Footer
	- Media Queries
		- max-width: 1139px
		- max-width: 1023px
		- max-width: 767px

*/


/*
HTML5 Reset
---------------------------------------------------------------------------------------------------- */

/* Baseline Normalize
	normalize.css v2.1.2 | MIT License | git.io/normalize
--------------------------------------------- */

article,aside,details,figcaption,figure,footer,header,hgroup,main,nav,section,summary{display:block}audio,canvas,video{display:inline-block}audio:not([controls]){display:none;height:0}[hidden]{display:none}html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}a:focus{outline:thin dotted}a:active,a:hover{outline:0}h1{font-size:2em;margin:.67em 0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:bold}dfn{font-style:italic}hr{-moz-box-sizing:content-box;box-sizing:content-box;height:0}mark{background:#ff0;color:#000}code,kbd,pre,samp{font-family:monospace,serif;font-size:1em}pre{white-space:pre-wrap}q{quotes:"\201C" "\201D" "\2018" "\2019"}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-0.5em}sub{bottom:-0.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:0}fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em}legend{border:0;padding:0}button,input,select,textarea{font-family:inherit;font-size:100%;margin:0}button,input{line-height:normal}button,select{text-transform:none}button,html input[type="button"],input[type="reset"],input[type="submit"]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}input[type="checkbox"],input[type="radio"]{box-sizing:border-box;padding:0}input[type="search"]{-webkit-appearance:textfield;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box}input[type="search"]::-webkit-search-cancel-button,input[type="search"]::-webkit-search-results-button{-webkit-appearance:none}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}textarea{overflow:auto;vertical-align:top}table{border-collapse:collapse;border-spacing:0}

/* Box Sizing
--------------------------------------------- */

*,
input[type="search"] {
	-webkit-box-sizing: border-box;
	-moz-box-sizing:    border-box;
	box-sizing:         border-box;
}

/* Float Clearing
--------------------------------------------- */

.archive-pagination:before,
.clearfix:before,
.entry:before,
.entry-pagination:before,
.footer-widgets:before,
.nav-primary:before,
.nav-secondary:before,
.site-container:before,
.site-footer:before,
.site-header:before,
.site-inner:before,
.wrap:before {
	content: " ";
	display: table;
}

.archive-pagination:after,
.clearfix:after,
.entry:after,
.entry-pagination:after,
.footer-widgets:after,
.nav-primary:after,
.nav-secondary:after,
.site-container:after,
.site-footer:after,
.site-header:after,
.site-inner:after,
.wrap:after {
	clear: both;
	content: " ";
	display: table;
}


/*
Defaults
---------------------------------------------------------------------------------------------------- */

/* Typographical Elements
--------------------------------------------- */

html {
	font-size: 62.5%; /* 10px browser default */
}

body {
	background-color: #f5f5f5;
	color: #666;
	font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
	font-size: 16px;
	font-size: 1.6rem;
	font-weight: 300;
	line-height: 1.625;
}

a,
button,
input:focus,
input[type="button"],
input[type="reset"],
input[type="submit"],
textarea:focus,
.button {
	-webkit-transition: all 0.1s ease-in-out;
	-moz-transition:    all 0.1s ease-in-out;
	-ms-transition:     all 0.1s ease-in-out;
	-o-transition:      all 0.1s ease-in-out;
	transition:         all 0.1s ease-in-out;
}

::-moz-selection {
	background-color: #333;
	color: #fff;
}

::selection {
	background-color: #333;
	color: #fff;
}

a {
	color: #666;
	text-decoration: none;
}

a img {
	margin-bottom: -4px;
	margin-bottom: -0.4rem;
}

a:hover {
	color: #333;
}

p {
	margin: 0 0 24px;
	margin: 0 0 2.4rem;
	padding: 0;
}

strong {
	font-weight: 700;
}

ol,
ul {
	margin: 0;
	padding: 0;
}

blockquote,
blockquote::before {
	color: #999;
}

blockquote {
	margin: 40px 40px 24px;
	margin: 4rem 4rem 2.4rem;
}

blockquote::before {
	content: "\201C";
	display: block;
	font-size: 30px;
	font-size: 3rem;
	height: 0;
	left: -20px;
	position: relative;
	top: -10px;
}

.entry-content code {
	background-color: #333;
	color: #ddd;
}

cite {
	font-style: normal;
}

/* Headings
--------------------------------------------- */

h1,
h2,
h3,
h4,
h5,
h6 {
	color: #000000;
	font-family: Lato, sans-serif;
	font-weight: 700;
	line-height: 1.2;
	margin: 0 0 16px;
	margin: 0 0 1.6rem;
}
p{
	 color: #000000;
}
h1 {
	font-size: 36px;
}

h2 {
	font-size: 30px;
}

h3 {
	font-size: 24px;
	font-weight: 600;
}

h4 {
	font-size: 20px;
}

h5 {
	font-size: 18px;
	font-size: 1.8rem;
}

h6 {
	font-size: 16px;
	font-size: 1.6rem;
}

/* Objects
--------------------------------------------- */

embed,
iframe,
img,
object,
video,
.wp-caption {
	max-width: 100%;
}

img {
	height: auto;
	width: auto; /* IE8 */
}

/* Forms
--------------------------------------------- */

input,
select,
textarea {
	background-color: #fff;
	border: 1px solid #ddd;
	border-radius: 3px;
	box-shadow: 1px 1px 3px #eee inset;
	color: #999;
	font-size: 14px;
	font-size: 1.4rem;
	padding: 16px;
	padding: 1.6rem;
	width: 100%;
}

input:focus,
textarea:focus {
	border: 1px solid #999;
	outline: none;
}

::-moz-placeholder {
	color: #999;
	opacity: 1;
}

::-webkit-input-placeholder {
	color: #999;
}

button,
input[type="button"],
input[type="reset"],
input[type="submit"],
.button,
.entry-content .button {
	background-color: #333;
	border: none;
	box-shadow: none;
	color: #fff;
	cursor: pointer;
	padding: 16px 24px;
	padding: 1.6rem 2.4rem;
	text-transform: uppercase;
	width: auto;
}

button:hover,
input:hover[type="button"],
input:hover[type="reset"],
input:hover[type="submit"],
.button:hover,
.entry-content .button:hover {
	background-color: #f15123;
}

.entry-content .button:hover {
	color: #fff;
}

.button {
	border-radius: 3px;
	display: inline-block;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button {
	display: none;
}

/* Tables
--------------------------------------------- */

table {
	border-collapse: collapse;
	border-spacing: 0;
	line-height: 2;
	margin-bottom: 40px;
	margin-bottom: 4rem;
	width: 100%;
}

tbody {
	border-bottom: 1px solid #ddd;
}

th,
td {
	text-align: left;
}

th {
	font-weight: bold;
	text-transform: uppercase;
}

td {
	border-top: 1px solid #ddd;
	padding: 6px 0;
	padding: 0.6rem 0;
}


/*
Structure and Layout
---------------------------------------------------------------------------------------------------- */

/* Site Containers
--------------------------------------------- */

.site-inner{
	width: 100%;
	
}
.wrap {
	margin: 0 auto;
	max-width: 1140px;
}

.site-inner {
	clear: both;
	padding: 0px;
	
}

/* Column Widths and Positions
--------------------------------------------- */

/* Wrapping div for .content and .sidebar-primary */

.content-sidebar-sidebar .content-sidebar-wrap,
.sidebar-content-sidebar .content-sidebar-wrap,
.sidebar-sidebar-content .content-sidebar-wrap {
	width: 920px;
}

.content-sidebar-sidebar .content-sidebar-wrap {
	float: left;
}

.sidebar-content-sidebar .content-sidebar-wrap,
.sidebar-sidebar-content .content-sidebar-wrap {
	float: right;
}

/* Content */

.content {
	float: right;
	width: 740px;
}

.content-sidebar .content,
.content-sidebar-sidebar .content,
.sidebar-content-sidebar .content {
	float: left;
}

.content-sidebar-sidebar .content,
.sidebar-content-sidebar .content,
.sidebar-sidebar-content .content {
	width: 520px;
}

.full-width-content .content {
	width: 100%;
}

/* Primary Sidebar */

.sidebar-primary {
	float: right;
	width: 360px;
}

.sidebar-content .sidebar-primary,
.sidebar-sidebar-content .sidebar-primary {
	float: left;
}

/* Secondary Sidebar */

.sidebar-secondary {
	float: left;
	width: 180px;
}

.content-sidebar-sidebar .sidebar-secondary {
	float: right;
}

/* Column Classes
	Link: http://twitter.github.io/bootstrap/assets/css/bootstrap-responsive.css
--------------------------------------------- */

.five-sixths,
.four-sixths,
.one-fourth,
.one-half,
.one-sixth,
.one-third,
.three-fourths,
.three-sixths,
.two-fourths,
.two-sixths,
.two-thirds {
	float: left;
	margin-left: 2.564102564102564%;
}

.one-half,
.three-sixths,
.two-fourths {
	width: 48.717948717948715%;
}

.one-third,
.two-sixths {
	width: 31.623931623931625%;
}

.four-sixths,
.two-thirds {
	width: 65.81196581196582%;
}

.one-fourth {
	width: 23.076923076923077%;
}

.three-fourths {
	width: 74.35897435897436%;
}

.one-sixth {
	width: 14.52991452991453%;
}

.five-sixths {
	width: 82.90598290598291%;
}

.first {
	clear: both;
	margin-left: 0;
}


/*
Common Classes
---------------------------------------------------------------------------------------------------- */

/* WordPress
--------------------------------------------- */

.avatar {
	float: left;
}

.alignleft .avatar {
	margin-right: 24px;
	margin-right: 2.4rem;
}

.alignright .avatar {
	margin-left: 24px;
	margin-left: 2.4rem;
}

.search-form input[type="submit"] {
	border: 0;
	clip: rect(0, 0, 0, 0);
	height: 1px;
	margin: -1px;
	padding: 0;
	position: absolute;
	width: 1px;
}

.sticky {
}

img.centered,
.aligncenter {
	display: block;
	margin: 0 auto 24px;
	margin: 0 auto 2.4rem;
}

img.alignnone {
	margin-bottom: 12px;
	margin-bottom: 1.2rem;
}

.alignleft {
	float: left;
	text-align: left;
}

.alignright {
	float: right;
	text-align: right;
}

img.alignleft,
.wp-caption.alignleft {
	margin: 0 24px 24px 0;
	margin: 0 2.4rem 2.4rem 0;
}

img.alignright,
.wp-caption.alignright {
	margin: 0 0 24px 24px;
	margin: 0 0 2.4rem 2.4rem;
}

.wp-caption-text {
	font-size: 14px;
	font-size: 1.4rem;
	font-weight: 700;
	text-align: center;
}

.gallery-caption {
}

.widget_calendar table {
	width: 100%;
}

.widget_calendar td,
.widget_calendar th {
	text-align: center;
}

/* Genesis
--------------------------------------------- */

.breadcrumb {
	margin-bottom: 20px;
	margin-bottom: 2rem;
}

.archive-description,
.author-box {
	background-color: #fff;
	margin-bottom: 40px;
	margin-bottom: 4rem;
}

.archive-description {
	padding: 40px 40px 24px;
	padding: 4rem 4rem 2.4rem;
}

.author-box {
	padding: 40px;
	padding: 4rem;
}

.author-box-title {
	color: #333;
	font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
	font-size: 16px;
	font-size: 1.6rem;
	margin-bottom: 4px;
	margin-bottom: 0.4rem;
}

.author-box a {
	border-bottom: 1px solid #ddd;
}

.author-box p {
	margin-bottom: 0;
}

.author-box .avatar {
	margin-right: 24px;
	margin-right: 2.4rem;
}

/* Titles
--------------------------------------------- */

.entry-title {
	font-size: 36px;
	font-size: 3.6rem;
	line-height: 1;
}

.entry-title a,
.sidebar .widget-title a {
	color: #333;
}

.entry-title a:hover {
	color: #666;
}

.widget-title {
	font-size: 16px;
	font-size: 1.6rem;
	margin-bottom: 24px;
	margin-bottom: 2.4rem;
	text-transform: uppercase;
}

.sidebar .widget-title a {
	border: none;
}

.archive-title {
	font-size: 20px;
	font-size: 2rem;
	margin-bottom: 24px;
	margin-bottom: 2.4rem;
}


/*
Widgets
---------------------------------------------------------------------------------------------------- */

/* Featured Content
--------------------------------------------- */

.featured-content .entry {
	border-bottom: 2px solid #f5f5f5;
	margin-bottom: 20px;
	margin-bottom: 2rem;
	padding: 0 0 24px;
	padding: 0 0 2.4rem;
}

.featured-content .entry-title {
	border: none;
	font-size: 24px;
	font-size: 2.4rem;
	line-height: 1.2;
}

.featured-content .entry-title a {
	border: none;
}


/*
Plugins
---------------------------------------------------------------------------------------------------- */

/* Genesis eNews Extended
--------------------------------------------- */

.enews-widget {
	color: #999;
}

.enews-widget .widget-title {
	color: #fff;
}

.enews-widget input {
	margin-bottom: 16px;
	margin-bottom: 1.6rem;
}

.enews-widget input:focus {
	border: 1px solid #ddd;
}

.enews-widget input[type="submit"] {
	background-color: #f15123;
	color: #fff;
	margin: 0;
	width: 100%;
}

.enews-widget input:hover[type="submit"] {
	background-color: #fff;
	color: #333;
}

/* Genesis Latest Tweets
--------------------------------------------- */

.latest-tweets ul li {
	margin-bottom: 16px;
	margin-bottom: 1.6rem;
}

/* Gravity Forms
--------------------------------------------- */

div.gform_wrapper input[type="email"],
div.gform_wrapper input[type="text"],
div.gform_wrapper textarea,
div.gform_wrapper .ginput_complex label {
	font-size: 16px;
	font-size: 1.6rem;
	padding: 16px;
	padding: 1.6rem;
}

div.gform_wrapper .ginput_complex label {
	padding: 0;
}

div.gform_wrapper li,
div.gform_wrapper form li {
	margin: 16px 0 0;
	margin: 1.6rem 0 0;
}

div.gform_wrapper .gform_footer input[type="submit"] {
	font-size: 14px;
	font-size: 1.4rem;
}

/* Jetpack
--------------------------------------------- */

img#wpstats {
	display: none;
}


/*
Site Header
---------------------------------------------------------------------------------------------------- */

.site-header {
	background-color: #fff;
}

.site-header .wrap {
    padding: 10px 0;
    display: flex;
    align-items: center;
}




/* Title Area
--------------------------------------------- */

.title-area {
	float: left;
	font-family: Lato, sans-serif;
	font-weight: 700;
/* 	padding: 16px 0;
	padding: 1.6rem 0; */
	width: 300px;
}
#nav_menu-2{
	 width: 700px;
	 display: flex;
	 justify-content: center;
}

.header-image .title-area {
	padding: 0;
	position: relative;
	left: 30px;
}

.site-title {
	font-size: 28px;
	font-size: 2.8rem;
	line-height: 1;
	margin: 0 0 8px;
	margin: 0 0 0.8rem;
	text-transform: uppercase;
}

.site-title a,
.site-title a:hover {
	color: #333;
}

.site-description {
	color: #999;
	font-size: 16px;
	font-size: 1.6rem;
	font-weight: 300;
	line-height: 1;
	margin-bottom: 0;
}

/* Full width header, no widgets */

.header-full-width .title-area,
.header-full-width .site-title {
	width: 100%;
}

.header-image .site-description,
.header-image .site-title a {
	display: block;
	text-indent: -9999px;
}

/* Logo, hide text */

.header-image .site-header .wrap {
	background: url(images/logo.png) no-repeat left;
	padding: 0;
	background-size: contain;
}

.header-image .site-title a {
	float: left;
	min-height: 92px;
    width: 100%;
    position: relative;
    left: 18px;
}

/* Widget Area
--------------------------------------------- */

.site-header .widget-area {
	display: flex;
    float: right;
    text-align: right;
    width: 1000px;
	align-items: center;
}

.header-image .site-header .widget-area {
	padding: 30px 0;
	
}

.site-header .search-form {
	float: right;
	margin-top: 24px;
	margin-top: 2.4rem;
}


/*
Site Navigation
---------------------------------------------------------------------------------------------------- */

.genesis-nav-menu {
	clear: both;
	color: #999;
	font-family: Lato, sans-serif;
	line-height: 1.5;
	width: 100%;
}

.genesis-nav-menu .menu-item {
	display: inline-block;
	text-align: left;
}

.genesis-nav-menu a {
	border: none;
	display: block;
	padding: 0px 18px;
	position: relative;
	  color: #333; /* Default dark text for readability */
    text-transform: capitalize!important;
    transition: all 0.3s ease;
}

.genesis-nav-menu a:hover,
.genesis-nav-menu .current-menu-item > a,
.genesis-nav-menu .sub-menu .current-menu-item > a:hover {
    color: #a30b18; /* Brand red accent on hover/active */
    border-bottom: 2px solid #a30b18;
}

.genesis-nav-menu .sub-menu .current-menu-item > a {
	color: #999;
}

.genesis-nav-menu > .menu-item > a {
	text-transform: uppercase;
	padding-top: 0px;
	padding-bottom: 0px;
}

.genesis-nav-menu .sub-menu {
	left: -9999px;
	opacity: 0;
	position: absolute;
	-webkit-transition: opacity .4s ease-in-out;
	-moz-transition:    opacity .4s ease-in-out;
	-ms-transition:     opacity .4s ease-in-out;
	-o-transition:      opacity .4s ease-in-out;
	transition:         opacity .4s ease-in-out;
	width: 200px;
	z-index: 99;
}

.genesis-nav-menu .sub-menu a {
	background-color: #fff;
	border: 1px solid #eee;
	border-top: none;
	font-size: 14px;
	font-size: 1.4rem;
	padding: 16px 20px;
	padding: 1.6rem 2rem;
	position: relative;
	width: 200px;
}

.genesis-nav-menu .sub-menu .sub-menu {
	margin: -54px 0 0 199px;
}

.genesis-nav-menu .menu-item:hover {
	position: static;
}

.genesis-nav-menu .menu-item:hover > .sub-menu {
	left: auto;
	opacity: 1;
}

.genesis-nav-menu > .first > a {
	padding-left: 0;
}

.genesis-nav-menu > .last > a {
	padding-right: 0;
}

.genesis-nav-menu > .right {
	display: inline-block;
	float: right;
	list-style-type: none;
	padding: 28px 0;
	padding: 2.8rem 0;
	text-transform: uppercase;
}

.genesis-nav-menu > .right > a {
	display: inline;
	padding: 0;
}

.genesis-nav-menu > .rss > a {
	margin-left: 48px;
	margin-left: 4.8rem;
}

.genesis-nav-menu > .search {
	padding: 14px 0 0;
	padding: 1.4rem 0 0;
}

/* Site Header Navigation
--------------------------------------------- */

.site-header .sub-menu {
	border-top: 1px solid #eee;
}

.site-header .sub-menu .sub-menu {
	margin-top: -55px;
}

/* Primary Navigation
--------------------------------------------- */

.nav-primary {
	background-color: #333;
}

.nav-primary a:hover,
.nav-primary .current-menu-item > a {
	color: #fff;
}

.nav-primary .sub-menu a:hover {
	color: #333;
}

/* Secondary Navigation
--------------------------------------------- */

.nav-secondary {
	background-color: #fff;
}


/*
Content Area
---------------------------------------------------------------------------------------------------- */

/* Entries
--------------------------------------------- */

.entry {
	background-color: #fff;
	border-radius: 3px;
	margin-bottom: 40px;
	margin-bottom: 4rem;
	padding: 40px 40px 24px;
	padding: 4rem 4rem 2.4rem;
}

.entry-content a {
	border-bottom: 1px solid #ddd;
	color: #f15123;
}

.entry-content a:hover {
	color: #333;
}

.entry-content .attachment a,
.entry-content .gallery a {
	border: none;
}

.entry-content ol,
.entry-content p,
.entry-content ul,
.quote-caption {
	margin-bottom: 26px;
	margin-bottom: 2.6rem;
}

.entry-content ol,
.entry-content ul {
	margin-left: 40px;
	margin-left: 4rem;
}

.entry-content ol li {
	list-style-type: decimal;
}

.entry-content ul li {
	list-style-type: disc;
}

.entry-content ol ol,
.entry-content ul ul {
	margin-bottom: 0;
}

.entry-content .search-form {
	width: 50%;
}

.entry-meta {
	color: #999;
	font-size: 14px;
	font-size: 1.4rem;
}

.entry-meta a {
	border-bottom: 1px solid #ddd;
}

.entry-header .entry-meta {
	margin-bottom: 24px;
	margin-bottom: 2.4rem;
}

.entry-footer .entry-meta {
	border-top: 2px solid #f5f5f5;
	margin: 0 -40px;
	margin: 0 -4rem;
	padding: 32px 40px 8px;
	padding: 3.2rem 4rem 0.8rem;
}

.entry-comments-link::before {
	content: "\2014";
	margin: 0 6px 0 2px;
	margin: 0 0.6rem 0 0.2rem;
}

.entry-categories,
.entry-tags {
	display: block;
}

/* Pagination
--------------------------------------------- */

.archive-pagination,
.entry-pagination {
	font-size: 14px;
	font-size: 1.4rem;
	margin: 40px 0;
	margin: 4rem 0;
}

.archive-pagination li {
	display: inline;
}

.archive-pagination li a {
	background-color: #333;
	border-radius: 3px;
	color: #fff;
	cursor: pointer;
	display: inline-block;
	padding: 8px 12px;
	padding: 0.8rem 1.2rem;
}

.archive-pagination li a:hover,
.archive-pagination li.active a {
	background-color: #f15123;
}

.entry-pagination a {
	border-bottom: 1px solid #ddd;
}

/* Comments
--------------------------------------------- */

.comment-respond,
.entry-comments,
.entry-pings {
	background-color: #fff;
	margin-bottom: 40px;
	margin-bottom: 4rem;
}

.entry-comments {
	padding: 40px;
	padding: 4rem;
}

.comment-respond,
.entry-pings {
	padding: 40px 40px 16px;
	padding: 4rem 4rem 1.6rem;
}

.comment-respond a,
.entry-comments a {
	border-bottom: 1px solid #ddd;
}

.comment-content {
	clear: both;
}

.entry-comments .comment-author {
	margin-bottom: 0;
}

.comment-respond input[type="email"],
.comment-respond input[type="text"],
.comment-respond input[type="url"] {
	width: 50%
}

.comment-respond label {
	display: block;
	margin-right: 12px;
	margin-right: 1.2rem;
}

.comment-list li,
.ping-list li {
	list-style-type: none;
}

.comment-list li {
	margin-top: 24px;
	margin-top: 2.4rem;
	padding: 32px;
	padding: 3.2rem;
}

.comment-list li li {
	margin-right: -32px;
	margin-right: -3.2rem;
}

li.comment {
	background-color: #f5f5f5;
	border: 2px solid #fff;
	border-right: none;
}

.comment .avatar {
	margin: 0 16px 24px 0;
	margin: 0 1.6rem 2.4rem 0;
}

.entry-pings .reply {
	display: none;
}

.bypostauthor {
}

.form-allowed-tags {
	background-color: #f5f5f5;
	font-size: 14px;
	font-size: 1.4rem;
	padding: 24px;
	padding: 2.4rem;
}


/*
Sidebars
---------------------------------------------------------------------------------------------------- */

.sidebar {
	color: #999;
}

.sidebar a {
	border-bottom: 1px solid #ddd;
}

.sidebar p:last-child {
	margin-bottom: 0;
}

.sidebar li {
	list-style-type: none;
	margin-bottom: 6px;
	margin-bottom: 0.6rem;
	word-wrap: break-word;
}

.sidebar ul > li:last-child {
	margin-bottom: 0;
}

.sidebar .widget {
	background-color: #fff;
	border-radius: 3px;
	margin-bottom: 40px;
	margin-bottom: 4rem;
	padding: 40px;
	padding: 4rem;
}

.sidebar .enews-widget {
	background-color: #333;
}


/*
Footer Widgets
---------------------------------------------------------------------------------------------------- */

.footer-widgets {
	background-color: #333;
	color: #999;
	clear: both;
	padding: 40px 0 16px;
	padding: 4rem 0 1.6rem;
}

.footer-widgets-1,
.footer-widgets-3 {
	width: 350px;
}

.footer-widgets-2 {
	width: 360px;
}

.footer-widgets-1 {
	margin-right: 40px;
	margin-right: 4rem;
}

.footer-widgets-1,
.footer-widgets-2 {
	float: left;
}

.footer-widgets-3 {
	float: right;
}

.footer-widgets a {
	border-bottom: 1px solid #666;
	color: #999;
}

.footer-widgets a:hover {
	color: #ddd;
}

.footer-widgets .widget {
	margin-bottom: 24px;
	margin-bottom: 2.4rem;
}

.footer-widgets .widget-title {
	color: #fff;
}

.footer-widgets li {
	list-style-type: none;
	margin-bottom: 6px;
	margin-bottom: 0.6rem;
	word-wrap: break-word;
}

.footer-widgets .search-form input:focus {
	border: 1px solid #ddd;
}


/*
Site Footer
---------------------------------------------------------------------------------------------------- */

.site-footer{
	background:#000000;
	text-align: center;
	padding: 15px 0px;
}

.site-footer p {
  color: #ffffff;
  margin: 0;
}


.site-footer a {
	border-bottom: 1px solid #ddd;
}

.site-footer p {
	margin-bottom: 0;
}







/* Legacy PDF Case Styles - Updated for consistency */
.pdf-cases-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem auto;
    max-width: 1200px;
}

.pdf-case-box {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    overflow: hidden;
}

.pdf-case-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.1);
    border-color: #667eea;
}

.case-thumbnail img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.pdf-case-box:hover .case-thumbnail img {
    transform: scale(1.02);
}

.case-title {
    font-weight: 700;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
    letter-spacing: -0.025em;
    text-align: left;
    color: #fff;
}

.case-title a {
    color: #1f2937;
    text-decoration: none;
    transition: color 0.3s ease;
}

.case-title a:hover {
    color: #667eea;
}

.pdf-link {
    text-align: center;
    margin-top: 1rem;
}

.pdf-link a {
    color: #667eea;
    font-weight: 600;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    background: #f3f4f6;
    transition: all 0.3s ease;
    display: inline-block;
}

.pdf-link a:hover {
    background: #667eea;
    color: white;
    transform: translateY(-2px);
}

.case-banner-bg {
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
	height: 609px;
}



.case-content {
    max-width: 800px;
    margin: 40px auto;
    padding: 0 20px;
}

.pdf-list {
    list-style: none;
    padding: 0;
}

.pdf-list li {
    margin-bottom: 10px;
}

.pdf-list a {
    color: #0056b3;
    text-decoration: none;
    font-weight: bold;
}



/* Legacy Search Form Styles - Updated for consistency */
.pdf-search-form {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 600px;
    margin: 0 auto;
}

.pdf-search-form input[type="search"] {
    flex: 1;
    padding: 1rem 1.25rem;
    border: 1px solid #d1d5db;
    border-radius: 12px;
    font-size: 1rem;
    width: 100%;
    max-width: 500px;
    box-sizing: border-box;
    transition: all 0.3s ease;
    background: white;
}

.pdf-search-form input[type="search"]:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.pdf-search-form button[type="submit"] {
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.pdf-search-form button[type="submit"]:hover {
    background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}
.pdf-link{
	 display: none;
}

/*
Media Queries
---------------------------------------------------------------------------------------------------- */

@media only screen and (max-width: 1139px) {

	.site-inner,
	.wrap {
		max-width: 960px;
	}

	.content-sidebar-sidebar .content-sidebar-wrap,
	.sidebar-content-sidebar .content-sidebar-wrap,
	.sidebar-sidebar-content .content-sidebar-wrap {
		width: 740px;
	}

	.content,
	.site-header .widget-area {
		width: 620px;
	}

	.sidebar-content-sidebar .content,
	.sidebar-sidebar-content .content,
	.content-sidebar-sidebar .content {
		width: 400px;
	}

	.footer-widgets-1,
	.footer-widgets-2,
	.footer-widgets-3,
	.sidebar-primary,
	.title-area {
		width: 300px;
	}

}

@media only screen and (max-width: 1023px) {

	body {
		background-color: #fff;
	}
	#nav_menu-2{
		 width: 100%;
	}
	.wrap{
		padding: 0px 20px;
	}
	.content,
	.content-sidebar-sidebar .content,
	.content-sidebar-sidebar .content-sidebar-wrap,
	.footer-widgets-1,
	.footer-widgets-2,
	.footer-widgets-3,
	.sidebar-content-sidebar .content,
	.sidebar-content-sidebar .content-sidebar-wrap,
	.sidebar-primary,
	.sidebar-secondary,
	.sidebar-sidebar-content .content,
	.sidebar-sidebar-content .content-sidebar-wrap,
	.site-header .widget-area,
	.site-inner,
	.title-area,
	.wrap {
		width: 100%;
	}

	.site-header .wrap {
		padding: 20px 0;
		padding: 2rem 0;
	}

	.header-image .site-header .wrap {
		background-position: 16px;
		padding: 0px 20px;
	}

	.site-inner {
		padding-left: 0%;
		padding-right: 0%;
	}

	.archive-description,
	.author-box,
	.comment-respond,
	.entry,
	.entry-comments,
	.entry-footer .entry-meta,
	.header-image .site-header .widget-area,
	.sidebar .widget,
	.site-header {
		padding: 0;
	}

	.genesis-nav-menu li,
	.site-header ul.genesis-nav-menu,
	.site-header .search-form {
		float: none;
	}

	.genesis-nav-menu,
	.site-description,
	.site-header .title-area,
	.site-header .search-form,
	.site-title {
		text-align: center;
	}

	.genesis-nav-menu a,
	.genesis-nav-menu > .first > a,
	.genesis-nav-menu > .last > a {
		padding: 20px 16px;
		padding: 2rem 1.6rem;
	}

	.site-header .search-form {
		margin: 16px auto ;
		margin: 1.6rem auto;
	}

	.genesis-nav-menu li.right {
		display: none;
	}

	.entry-footer .entry-meta {
		margin: 0;
		padding-top: 12px;
		padding-top: 1.2rem;
	}

	.sidebar .widget.enews-widget {
		padding: 40px;
		padding: 4rem;
	}

	.site-footer {
		padding: 24px 0;
		padding: 2.4rem 0;
	}

	.footer-widgets {
		padding: 40px 5% 16px;
	}

	.footer-widgets-1 {
		margin: 0;
	}

}

@media only screen and (max-width: 767px) {

	.five-sixths,
	.four-sixths,
	.one-fourth,
	.one-half,
	.one-sixth,
	.one-third,
	.three-fourths,
	.three-sixths,
	.two-fourths,
	.two-sixths,
	.two-thirds {
		margin: 0;
		width: 100%;
	}

}

/* Modern Home Page Styles */
/* ======================================== */

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(163, 11, 24, 0.9) 0%, rgba(219, 167, 170, 0.9) 100%);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><pattern id="grid" width="50" height="50" patternUnits="userSpaceOnUse"><path d="M 50 0 L 0 0 0 50" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    background-size: 50px 50px;
}


.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    text-align: center;
    color: white;
    padding: 60px 20px;
}

.hero-title {
   color: #ffffff;
}

.hero-subtitle {
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
	color: #ffffff;
}

/* Hero Search */
.hero-search {
    margin-bottom: 4rem;
}

.hero-search-form {
    display: flex;
    max-width: 600px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-search-form:hover {
    transform: translateY(-2px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.search-input-wrapper {
    position: relative;
    flex: 1;
    display: flex;
    align-items: center;
}

.search-icon {
    position: absolute;
    left: 20px;
    color: #6b7280;
    z-index: 2;
}

.hero-search-form input[type="search"] {
    width: 100%;
    padding: 20px 20px 20px 50px;
    border: none;
    font-size: 14px;
    outline: none;
    background: transparent;
	color: #000000;
}

.hero-search-form input[type="search"]::placeholder {
    color: #9ca3af;
}

.search-button {
    background: linear-gradient(135deg, #a30b18 0%, #dba7aa 100%);
    color: #ffffff;
    border: none;
    padding: 20px 30px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.search-button:hover {
   background: linear-gradient(135deg, #dba7aa 0%, #a30b18 100%);
    transform: translateX(2px);
}

.search-button svg {
    transition: transform 0.3s ease;
}

.search-button:hover svg {
    transform: translateX(4px);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem 2rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}




/* Main Content Section */
.main-content-section {
    padding: 70px 0px;
    background: #ffffff;
}

.wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Welcome Section */
.welcome-section {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 2px 8px #7e8080;}

.welcome-section h2 {
    margin-bottom: 1rem;
    font-weight: 700;
}

.welcome-section p {
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* Search Results Header */
.search-results-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.search-results-header h2 {
    font-size: 2rem;
    color: #1f2937;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.search-term {
    color: #667eea;
    font-weight: 700;
}

/* PDF Cases Grid */
.pdf-cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 2rem;
}
 .profile-header .profile-photo{
	width: 300px;
	height 300px;
}

.main-part-profile{
	position: relative;
	display: block;
	padding: 70px 0px;
	background: #ffffff;
}

.main-part-profile .entry{
	padding: 0px!important;
	margin: 0px!important;
}
/* PDF Case Card */
.pdf-case-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
     box-shadow: 0 2px 8px #7e8080;
    border: none;
    position: relative;
    transition: all 0.3s ease; /* <--- moved here for smooth animation */
}

.pdf-case-card:hover {
    border-color: #a30b18; /* brand red accent */
    box-shadow: 0 4px 20px rgba(163, 11, 24, 0.25); /* subtle red glow */
    transform: translateY(-4px);
}



.case-card-header {
    position: relative;
    background: #ffffff;
    padding: 1.25rem;
    border-bottom: 1px solid #e2e8f0;
}

/* Case Number Badge */
.case-number-badge {
    position: absolute;
    top: 0px;
    left: 1.25rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 2;
    border: 3px solid white;
}

.case-number {
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Case Thumbnail */
.case-thumbnail {
    width: 100%;
    height: 160px;
    overflow: hidden;
    border-radius: 8px;
    margin-top: 1rem;
    position: relative;
}

.case-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pdf-case-card:hover .case-thumbnail img {
    transform: scale(1.05);
}

.case-thumbnail-placeholder {
    width: 100%;
    height: 160px;
    border-radius: 8px;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.placeholder-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    color: white;
    z-index: 1;
}

.placeholder-text {
    font-size: 1rem;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
    color: #fff;
}

/* Case Meta */
.case-meta {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    z-index: 2;
}

.case-date,
.case-category {
    background: rgba(255, 255, 255, 0.95);
    color: #475569;
    padding: 0.5rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.case-category {
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
    border-color: rgba(102, 126, 234, 0.2);
}

/* Case Card Content */
.case-card-content {
    padding: 1.25rem;
    background: white;
}

.case-header-info {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    gap: 1rem;
}

.case-title {
    margin: 0;
    line-height: 1.3;
    flex: 1;
    text-align: center;
    width: 100%;
}

.case-title a {
    color: #040707; /* main dark tone for text */
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s ease;
    display: block;
    text-align: center;
}

.case-title a:hover {
    color: #a30b18; /* main red tone on hover */
}

.pdf-count-badge {
    background: #a30b18; /* main red tone from logo */
    color: #ffffff; /* white text for contrast */
    padding: 0.5rem 0.75rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid #dba7aa; /* light red border for depth */
    white-space: nowrap;
    flex-shrink: 0;
    box-shadow: 0 2px 6px rgba(163, 11, 24, 0.25);
    transition: all 0.3s ease;
}

.pdf-count-badge:hover {
    background: #dba7aa;
    color: #040707; /* dark text for contrast on light red */
    border-color: #a30b18;
    box-shadow: 0 4px 10px rgba(163, 11, 24, 0.35);
}


.case-excerpt {
    color: #040707; /* dark text for readability */
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 12px;
    background: #fdf4f4; /* soft tint of red background */
    padding: 1rem;
    border-radius: 20px;
    border-left: 4px solid #a30b18; /* strong red accent */
    text-align: center;
    transition: all 0.3s ease;
}

.case-excerpt:hover {
    background: #f9e6e7; /* slightly deeper red tint on hover */
    border-left-color: #dba7aa; /* soft red border for depth */
}


/* Case Actions */
.case-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
}

/* Enhanced Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, #a30b18 0%, #dba7aa 100%);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(163, 11, 24, 0.3);
    border: none;
    border-radius: 20px;
    padding: 10px 22px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #dba7aa 0%, #a30b18 100%);
    box-shadow: 0 6px 16px rgba(163, 11, 24, 0.4);
    transform: translateY(-2px);
	color: #ffffff;
}


.btn-secondary {
    background: #040707;
    color: #ffffff;
    border: none;
    box-shadow: 0 2px 8px rgba(4, 7, 7, 0.3);
    border-radius: 20px;
    padding: 10px 22px;
    font-weight: 600;
    transition: all 0.3s ease;
	text-transform: capitalize;
}

.btn-secondary:hover {
    background: #7e8080;
    color: #040707;
    border-color: #040707;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(4, 7, 7, 0.4);
}


.btn svg {
    transition: transform 0.3s ease;
}

.btn:hover svg {
    transform: translateX(3px);
}

/* No Results */
.no-results {
    text-align: center;
    padding: 4rem 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.no-results-icon {
    margin-bottom: 1.5rem;
    color: #9ca3af;
}

.no-results h3 {
    font-size: 1.5rem;
    color: #1f2937;
    margin-bottom: 1rem;
    font-weight: 600;
}

.no-results p {
    color: #6b7280;
    font-size: 1.1rem;
}

.welcome-message {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.welcome-message p {
    color: #6b7280;
    font-size: 1.1rem;
}

/* Responsive Design for Cards */
/* @media (max-width: 1200px) {
    .pdf-cases-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
} */

@media (max-width: 768px) {
	.pdf-cases-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
	}
/*     .pdf-cases-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .case-card-header {
        padding: 1rem;
    } */
    
/*     .case-number-badge {
        width: 45px;
        height: 45px;
        top: -12px;
        left: 1rem;
    }
    
    .case-number {
        font-size: 1rem;
    }
    
    .case-thumbnail,
    .case-thumbnail-placeholder {
        height: 140px;
    }
    
    .case-meta {
        top: 1rem;
        right: 1rem;
    }
    
    .case-date,
    .case-category {
        padding: 0.4rem 0.6rem;
        font-size: 0.8rem;
    }
   
    
    .btn {
        justify-content: center;
        width: 100%;
        padding: 0.875rem 1.25rem;
        font-size: 0.95rem;
    } */
}

/* Enhanced Card Spacing and Typography */
.pdf-case-card {
    margin-bottom: 0;
}

.case-card-header {
    min-height: 180px;
}

.case-thumbnail-placeholder {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

/* Improved Typography */
.case-title {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    letter-spacing: -0.025em;
}

.case-excerpt {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
}

/* Enhanced Hover Effects */
.pdf-case-card:hover .case-number-badge {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

/* Better Button States */
.btn:active {
    transform: translateY(-1px);
}

.btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.2);
}

/* Enhanced Meta Badges */
.case-date svg,
.case-category svg {
    flex-shrink: 0;
}

/* Better Placeholder Design */
.placeholder-content svg {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

/* Improved Button Icons */
.btn svg {
    flex-shrink: 0;
}

/* Single PDF Case Page Styles */
/* ======================================== */

/* Single Case Wrapper */
.single-case-wrapper {
    background: #f8fafc;
    min-height: 100vh;
}

/* Hero Section */
.single-case-hero {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(163, 11, 24, 0.9) 0%, rgba(219, 167, 170, 0.9) 100%);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-pattern {
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    background-size: 400px 400px, 300px 300px, 200px 200px;
    background-position: 0 0, 100% 100%, 50% 50%;
}


.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    color: white;
    padding: 3rem 0;
}

.hero-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Left Side - Content */
.hero-content-left {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.case-title {
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
	text-transform: capitalize;
}

.case-description p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin: 0;
    opacity: 0.95;
    max-width: 500px;
}

.case-meta-badges {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
	justify-content: center;
}

.case-date,
.case-category,
.pdf-count {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    padding: 0.75rem 1.25rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.case-date:hover,
.case-category:hover,
.pdf-count:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.case-category {
    background: rgba(255, 255, 255, 0.2);
}

.pdf-count {
    background: rgba(255, 255, 255, 0.25);
}

/* Right Side - Image */
.hero-content-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}
/* 
.hero-image img {
    width: 100%;
    height: auto;
    display: block;
} */

/* .hero-image-placeholder {
    width: 100%;
    max-width: 400px;
    height: 300px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
} */

.placeholder-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    color: white;
    z-index: 1;
    text-align: center;
}

.placeholder-text {
    font-size: 1.1rem;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
    color: #fff;
}

/* Main Content Section */
.single-case-content {
    padding: 70px 0;
	background: #ffffff;
}

.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 25px;
    margin: 0 auto;
}

/* Case Details */
.case-details {
    background: white;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 2px 8px #7e8080;
}

.case-details .case-description p{
	color: #000000!important;
}
.case-details .case-description{
	padding-bottom: 30px;
}
.case-description h2 {
    color: #000000;
    margin: 0 0 1rem 0;
    font-weight: 700;
}

.case-description p {
    font-size: 16px;
    color: #fff;
    line-height: 1.7;
    margin: 0;
}

/* PDF Downloads */
.pdf-downloads {
    margin-top: 0px;
}

.pdf-downloads h2 {
    color: #000000;
    margin: 0 0 1rem 0;
    font-weight: 700;
}

.downloads-subtitle {
  
    margin: 0 0 1.5rem 0;
}

.pdf-grid {
    display: grid;
    gap: 20px;
}

.pdf-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 20px;
    background: transparent;
    border-radius: 20px;
    border: none;
    transition: all 0.3s ease;
    background: transparent !important;
    box-shadow: 0 1px 8px #7e8080 !important;
}

.pdf-item:hover {
     border-color: #a30b18;
    box-shadow: 0 4px 20px rgba(163, 11, 24, 0.25)!important;
    transform: translateY(-4px);
}

.pdf-icon {
    color: #a30b18;
    flex-shrink: 0;
}

.pdf-info {
    flex: 1;
}

.pdf-title {
    font-size: 16px;
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.pdf-size {
    font-size: 12px;
    color: #64748b;
}

.download-btn {
    background: linear-gradient(135deg, #a30b18 0%, #dba7aa 100%);
    color: white;
    padding: 13px 15px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.download-btn:hover {
    background: linear-gradient(135deg, #dba7aa 0%, #a30b18 100%);
    box-shadow: 0 6px 16px rgba(163, 11, 24, 0.4);
    transform: translateY(-2px);
    color: white;
}

.download-btn svg {
    transition: transform 0.3s ease;
}

.download-btn:hover svg {
    transform: translateX(3px);
}

/* No PDFs State */
.no-pdfs {
    text-align: center;
    padding: 3rem 2rem;
    background: #f8fafc;
    border-radius: 8px;
    border: 2px dashed #cbd5e1;
}

.no-pdfs-icon {
    margin-bottom: 1.5rem;
    color: #94a3b8;
}

.no-pdfs h3 {
    font-size: 1.5rem;
    color: #475569;
    margin: 0 0 1rem 0;
    font-weight: 600;
}

.no-pdfs p {
    color: #64748b;
    font-size: 1rem;
    margin: 0;
}

/* Case Sidebar */
.case-sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.sidebar-card {
    background: white;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 2px 8px #7e8080;
}

.sidebar-card h3 {
    color: #000000;
    margin: 0 0 1rem 0;
    font-weight: 600;
}

.info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f1f5f9;
}

.info-item:last-child {
    border-bottom: none;
}

.info-label {
    font-size: 14px;
    color: #7e8080;
    font-weight: 500;
}

.info-value {
    font-size: 12px;
    color: #000000;
    font-weight: 600;
}

/* Full Width Button */
.btn.full-width {
    width: 100%;
    justify-content: center;
	font-size: 14px;
}

.case-profiles h2{
	 padding-bottom: 15px;
}
.case-profiles {
    margin-top: 0px;
	padding-bottom: 70px;
	background: #ffffff;
}

.profiles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 25px;
}
.profile-card {
    text-align: center;
    background: #fff;
	padding: 20px;
    border-radius: 20px;
    box-shadow: 0 2px 8px #7e8080;
    border: none;
    /* transition: all 0.4s 
cubic-bezier(0.175, 0.885, 0.32, 1.275); */
    transition: all 0.3s ease;
}
.profile-card:hover {
        border-color: #a30b18;
    box-shadow: 0 4px 20px rgba(163, 11, 24, 0.25);
    transform: translateY(-4px);
}
.profile-card:hover .profile-name{
	color: #a30b18;
}
.profile-thumb img {
    border-radius: 50%;
    width: 150px;
    height: 150px;
    object-fit: cover;
}
.profile-name {
    margin-top: 10px;
    font-size: 18px;
}







@media (max-width: 768px) {
/*     .single-case-hero {
        min-height: 350px;
    } */
    
  
    
/*     .case-title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    } */
/*     
    .case-description p {
        font-size: 1rem;
        max-width: 100%;
    }
    
    .case-meta-badges {
        justify-content: center;
        gap: 0.75rem;
    } */
    
/*     .case-date,
    .case-category,
    .pdf-count {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    } */
    

    
/*     .content-grid {
        padding: 0 1rem;
    }
     */
/*     .case-details {
        padding: 1.5rem;
    } */
    
/*     .case-description h2,
    .pdf-downloads h2 {
        font-size: 1.5rem;
    } */
    
/*     .case-description p {
        font-size: 1rem;
    } */
    
    .pdf-item {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .pdf-info {
        text-align: center;
    }
    
    .download-btn {
        width: 100%;
        justify-content: center;
    }
}

/* @media (max-width: 480px) {
    .single-case-hero {
        min-height: 300px;
    }
    
    .hero-content {
        padding: 1.5rem 0;
    }
    
    .hero-layout {
        padding: 0 0.75rem;
        gap: 1.5rem;
    }
    
    .case-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .case-description p {
        font-size: 0.95rem;
    }
    
    .case-meta-badges {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
    
    .case-date,
    .case-category,
    .pdf-count {
        padding: 0.5rem 0.75rem;
        font-size: 0.8rem;
        width: fit-content;
    }
    
    .hero-image {
        max-width: 300px;
    }
    
    .hero-image-placeholder {
        height: 200px;
    }
    
    .single-case-content {
        padding: 1.5rem 0;
    }
    
    .content-grid {
        padding: 0 0.75rem;
    }
    
    .case-details {
        padding: 1rem;
    }
    
    .case-description h2,
    .pdf-downloads h2 {
        font-size: 1.25rem;
    }
    
    .case-description p {
        font-size: 0.95rem;
    }
    
    .sidebar-card {
        padding: 1rem;
    }
    
    .sidebar-card h3 {
        font-size: 1.1rem;
    }
} */

/* Video Page Styles */
/* ======================================== */

/* Hero Section */
.video-hero-section {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.twitter-tweet > *:not(iframe) {
  display: none !important;
}
.hero-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-pattern {
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    background-size: 400px 400px, 300px 300px, 200px 200px;
    background-position: 0 0, 100% 100%, 50% 50%;
	  background-image: none!important;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
/* background: linear-gradient(
  135deg, rgba(163, 11, 24, 0.9) 0%, rgba(219, 167, 170, 0.9) 100%);
    z-index: 2;
	opacity: 0.8; */
}

.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    color: white;
    padding: 4rem 0;
}

.hero-text {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    margin: 0 0 1.5rem 0;
}

.video-hero-section .hero-subtitle {
    opacity: 0.9;
    max-width: 100%;
    text-align: center;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.15);
    padding: 1.5rem 2rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-5px);
}

.stat-number {
    display: block;
    font-size: 20px;
    font-weight: 700;
  
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: 16px;
    opacity: 0.8;
    text-transform: uppercase;
}

/* Main Content Section */
.video-main-section {
    padding: 70px 0;
    background: #ffffff;
}

.wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Search Section */
.search-section {
    margin-bottom: 3rem;
}

.search-container {
    background: linear-gradient(135deg, rgba(163, 11, 24, 0.9) 0%, rgba(219, 167, 170, 0.9) 100%);
    border-radius: 20px;
    padding: 3rem;
    border: none;
    position: relative;
    overflow: hidden;
    color: white;
}

.search-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.search-container h2 {
    text-align: center;
    color: white;
}

.search-inputs {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.select-wrapper {
    position: relative;
    min-width: 220px;
}

.select-wrapper select {
    width: 100%;
    padding: 13px 15px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    font-size: 14px;
    background: rgba(255, 255, 255, 0.1);
    appearance: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    color: white;
    backdrop-filter: blur(10px);
}
.single-case-content .entry{
   margin: 0px!important;
	padding: 0px!important;
}
.single-case-content .profile-details p{
	margin-bottom: 16px!important;
}
.select-wrapper select:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.2);
}

.select-wrapper select option {
    background: #667eea;
    color: white;
}

.select-arrow {
    position: absolute;
    right: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.8);
    pointer-events: none;
}

.video-search-form input[type="text"] {
    flex: 1;
    min-width: 350px;
    padding: 13px 15px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    font-size: 14px;
    transition: all 0.3s ease;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    backdrop-filter: blur(10px);
}

.video-search-form input[type="text"]::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.video-search-form input[type="text"]:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.2);
}

.blog-search-form input[type="text"] {
    flex: 1;
    min-width: 350px;
    padding: 13px 15px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    font-size: 14px;
    transition: all 0.3s ease;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    backdrop-filter: blur(10px);
}

.blog-search-form input[type="text"]::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.blog-search-form input[type="text"]:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.2);
}


.search-btn {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.4);
    padding: 13px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    white-space: nowrap;
    backdrop-filter: blur(10px);
}

.search-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.search-results {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 2;
}

.results-count {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

.clear-search-btn {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.clear-search-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    color: white;
    transform: translateY(-2px);
}

/* Enhanced Video Popup - Single Design for All Devices */
.video-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.video-popup.active {
    display: flex;
    animation: popupFadeIn 0.3s ease-out;
}
.goog-te-gadget .goog-te-combo {
    margin: 0px;
    font-size: 16px;
    color: #000000;
	border: 2px solid black;
}
.goog-te-gadget .goog-te-combo:hover{
	    border-color: #667eea;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}
@keyframes popupFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    cursor: pointer;
}

.popup-content {
    position: relative;
    background: #000;
    border-radius: 16px;
    width: 90vw;
    max-width: 1200px;
    height: 80vh;
    max-height: 800px;
    overflow: hidden;
    box-shadow: 0 32px 64px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.popup-header {
    background: linear-gradient(135deg, rgba(163, 11, 24, 0.9) 0%, rgba(219, 167, 170, 0.9) 100%);
    color: white;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.popup-title {
    margin: 0;
	color: #ffffff;
}

.popup-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: white;
    position: relative;
    z-index: 1000;
}

.popup-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.popup-close i {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
}

#popup-video-container {
    width: 100%;
    height: calc(100% - 80px);
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

#popup-video-container iframe,
#popup-video-container blockquote {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 0;
    object-fit: contain;
}

/* Video Gallery */
.video-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

/* Video Card */
.video-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 2px 8px #7e8080;
    border: none;
    /* transition: all 0.4s 
    cubic-bezier(0.175, 0.885, 0.32, 1.275); */
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    width: 100%;
}

.video-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-card:hover::before {
    opacity: 1;
}

.video-card:hover {
     border-color: #a30b18;
    box-shadow: 0 4px 20px rgba(163, 11, 24, 0.25);
    transform: translateY(-4px);
}

.video-thumbnail {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.video-card:hover .video-thumbnail img {
    transform: scale(1.1);
}

.video-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    position: relative;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.video-card:hover .video-overlay {
    opacity: 1;
    background: rgba(0, 0, 0, 0.6);
}
.play-button i{
	font-size: 30px;
	color: #7e8080;
}
.play-button {
    width: 90px;
    height: 90px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.play-button:hover {
    background: white;
    transform: scale(1.1);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.video-duration {
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    background: rgba(0, 0, 0, 0.7);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.video-card-content {
    padding: 20px;
    background: white;
}

.video-title {
    font-size: 20px;
    color: #000000;
    margin: 0 0 10px 0;
    font-weight: 700;
    line-height: 1.4;
    transition: color 0.3s ease;
    margin: 0 0px 10px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
    text-transform: capitalize;
}

.video-card:hover .video-title {
     color: #a30b18;
}
.search-container p{
	text-align: center;
	color: #ffffff;
}
.video-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.video-date {
    color: #64748b;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

/* No Videos State */
.no-videos {
    text-align: center;
    padding: 5rem 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
}

.no-videos-icon {
    margin-bottom: 2rem;
    color: #94a3b8;
}

.no-videos h3 {
    font-size: 1.75rem;
    color: #475569;
    margin: 0 0 1rem 0;
    font-weight: 600;
}

.no-videos p {
    color: #64748b;
    font-size: 1.1rem;
    margin: 0;
}

/* Pagination */
.pagination-wrap {
    margin-top: 3rem;
	display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.pagination-wrap .page-numbers {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: #fff;
    border: 1px solid #7e8080;
    border-radius: 8px;
    color: #374151;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    min-width: 44px;
    justify-content: center
}

.pagination-wrap .page-numbers:hover,
.pagination-wrap .page-numbers.current {
     background: linear-gradient(135deg, #a30b18 0%, #dba7aa 100%);
    border-color: #a30b18;
    color: #fff;
    cursor: default;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
}
.pagination-wrap .page-numbers.current:hover {
    background: linear-gradient(135deg, #dba7aa 0%, #a30b18 100%);
    border-color: #a30b18;
    transform: none;
}
/* Blog Gallery */

.blog-hero-section{
	    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(163, 11, 24, 0.9) 0%, rgba(219, 167, 170, 0.9) 100%);
    overflow: hidden;
}
.blog-gallery{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 0px;
}
.blog-thumbnail {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
}
.blog-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.blog-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}
.blog-card-content {
    padding: 20px;
    background: white;
}
.blog-title {
      margin: 0 0px 10px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
    text-transform: capitalize;
}
.blog-title a{
	font-size: 18px;
	color: #040707;
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s ease;
    display: block;
}

.blog-date {
    color: #64748b;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}
.blog-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.blog-card:hover {
    border-color: #a30b18;
    box-shadow: 0 4px 20px rgba(163, 11, 24, 0.25);
    transform: translateY(-4px);
}
.blog-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 2px 8px #7e8080;
    border: none;
/*     transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); */
     transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    width: 100%;
}
.blog-card p {
	 padding-top: 10px;
}
.blog-card:hover .blog-title a {
    color: #a30b18!important;
}
.blog-main-section {
    padding: 70px 0px;
    background: #ffffff;
}
.blog-search-form input[type="text"]:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.2);
}
.blog-search-form input[type="text"] {
    flex: 1;
    min-width: 350px;
    padding: 13px 15px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    font-size: 14px;
    transition: all 0.3s ease;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    backdrop-filter: blur(10px);
}



/* Single Blog Page */
.single-hero-section {
    position: relative;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
	background: linear-gradient(135deg, rgba(163, 11, 24, 0.9) 0%, rgba(219, 167, 170, 0.9) 100%);
}
.single-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.5);
    z-index: 1;
}
.single-content-section p, li{
	 font-size: 16px;
	 list-style:none;
}
.single-hero-content {
    position: relative;
    z-index: 3;
}
.single-title {
    color: #ffffff;
    margin-bottom: 15px;
}
.single-meta {
    font-size: 12px;
    color: #e2e8f0;
    display: flex;
    justify-content: center;
    gap: 15px;
}

/* Blog Content */
.single-content-section {
    padding: 70px 0px 70px;
    background: #ffffff;
}
.single-article {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 8px 24px #7e8080;
    line-height: 1.7;
    font-size: 1.05rem;
    color: #334155;
	    transition: all 0.3s 
ease;
}
.single-article:hover{
	border-color: #a30b18;
    box-shadow: 0 4px 20px rgba(163, 11, 24, 0.25);
    transform: translateY(-4px);
}

/* Author Box */
/* .author-box {
    padding: 3rem 0;
    background: #f1f5f9;
}
.author-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: white;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}
.author-avatar img {
    border-radius: 50%;
}
.author-info h4 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 700;
}
.author-info p {
    margin: 5px 0 0;
    color: #64748b;
} */

/* Related Blogs */
.related-blogs {
   padding: 0px 0px 70px;
    background: #ffffff;
}

.related-blogs .blog-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
	padding-top: 20px;
}
#menu-main li{
	font-size: 16px;
    font-weight: 600;
    float: left;
    text-transform: lowercase;
}

#prisna-google-website-translator-2{
	position: relative;
    display: block;
    overflow: hidden;
    width: 300px;
    float: right;
}
.goog-te-gadget {
    display: inline-block !important;
}
.goog-te-gadget span,
.goog-te-gadget a,
.goog-te-gadget img {
    display: none !important;
}

.goog-te-gadget {
    font-size: 0 !important;
}
.goog-te-gadget span,
.goog-te-gadget a,
.goog-te-gadget img {
    display: none !important;
}


.gt_selector{
	color: #000000;
}
#gtranslate-3{
	 width: 300px;
}
#gtranslate-3 select{
	width: 200px;
	    box-shadow: 0 2px 8px #7e8080;
    border: none!important;
}
#gtranslate-3 select:hover{
border-color: #a30b18;
    box-shadow: 0 4px 20px rgba(163, 11, 24, 0.25);
}
#gtranslate-3 select:focus{
border-color: #a30b18;
    box-shadow: 0 4px 20px rgba(163, 11, 24, 0.25);
}
#gtranslate-3 select:focus-visible{
border-color: #a30b18;
    box-shadow: 0 4px 20px rgba(163, 11, 24, 0.25);
}

/* Responsive Design */
@media (max-width: 1023px) {
    .video-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
       .blog-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    .hero-stats {
        gap: 2rem;
    }
	    .related-blogs .blog-gallery{
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 767px) {
	
	#menu-main{
        position: absolute;
        top: 155px;
        width: 100%;
        left: 0px;
        padding: 20px;	 
	}
	
	.genesis-nav-menu > .menu-item > a{
		padding: 0px;
	}
	
	    .calendar-dropdown {
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 85vw;
        max-width: 280px;
        margin-top: 0;
    }
    
    .calendar-days {
        padding: 0.25rem;
    }
    
    .calendar-day {
        font-size: 0.7rem;
    }
    
    .calendar-weekdays span {
        font-size: 0.7rem;
        padding: 0.25rem;
    }
    
    .calendar-header {
        padding: 0.5rem;
    }
    
    .calendar-footer {
        padding: 0.5rem;
    }
    
    .calendar-month-year {
        font-size: 0.8rem;
    }
    
    .calendar-nav {
        font-size: 0.7rem;
        padding: 0.2rem;
    }
	.single-case-content{
		padding: 50px 0px;
	}
	.case-profiles {
	   padding-bottom: 50px;
	}
	.main-part-profile{
		 padding: 50px 0px;
	}
		.single-case-content{
		padding: 50px 0px;
	}
	.case-profiles {
	   padding-bottom: 50px;
	}
	.main-part-profile{
		 padding: 50px 0px;
	}
	.single-content-section{
		 padding: 50px 0px;
	}
    .video-hero-section {
        min-height: 400px;
    }
        .blog-hero-section {
        min-height: 400px;
    }
	.single-hero-section{
		min-height:250px;
	}
	.stat-label{
		 font-size: 14px;
	}
	
    .hero-content {
        padding: 3rem 0;
    }
    
/*     .hero-title {
        font-size: 3rem;
    } */
    
/*     .hero-subtitle {
        font-size: 1.2rem;
        margin-bottom: 2rem;
    } */
    
    .hero-stats {
        gap: 1.5rem;
    }
    
    .stat-item {
        padding: 1.25rem 1.5rem;
    }
    
	.main-content-section{
		padding: 50px 0px;
	}
    .video-main-section {
        padding: 50px 0px;
    }
      .blog-main-section {
        padding: 50px 0px;
    }
    .wrap {
        padding: 0px 20px;
    }
    
    .search-container {
        padding: 2rem;
    }
    
/*     .search-container h2 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    } */
    
    .search-inputs {
        flex-direction: column;
        gap: 1rem;
    }
    
    .select-wrapper,
    .video-search-form input[type="text"] {
        min-width: 100%;
    }
    
    .search-btn {
        width: 100%;
        justify-content: center;
    }
    
    .search-results {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .video-gallery {
        grid-template-columns: 1fr;
        gap: 25px;
    }
       .blog-gallery {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .video-thumbnail {
        height: 200px;
    }
    
    .video-card-content {
        padding: 1.5rem;
    }
    
    .video-title {
        font-size: 18px;
    }
    
    .video-popup {
        padding: 1rem;
    }
    
    .popup-content {
        width: 95vw;
        height: 85vh;
        border-radius: 12px;
    }
	
	    .blog-thumbnail {
        height: 200px;
    }
    
    .blog-card-content {
        padding: 1.5rem;
    }
    
    .blog-title {
        font-size: 18px;
    }
	    .select-wrapper, .blog-search-form input[type="text"] {
        min-width: 100%;
    }
	h1 {
    font-size: 28px;
}
	h2 {
    font-size: 24px;
}
	    .related-blogs .blog-gallery{
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Pagination Styles */
.pagination-wrapper {
    margin-top: 3rem;
    text-align: center;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.pagination-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: #fff;
    border: 1px solid #7e8080;
    border-radius: 8px;
    color: #374151;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    min-width: 44px;
    justify-content: center;
}

.pagination-link:hover {
    background: linear-gradient(135deg, #a30b18 0%, #dba7aa 100%);
    border-color: #a30b18;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(163, 11, 24, 0.4);
}


.pagination-link.current {
    background: linear-gradient(135deg, #a30b18 0%, #dba7aa 100%);
    border-color: #a30b18;
    color: #fff;
    cursor: default;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);;
}

.pagination-link.current:hover {
     background: linear-gradient(135deg, #dba7aa 0%, #a30b18 100%);
    border-color: #a30b18;
    transform: none;
}

.pagination-link.prev,
.pagination-link.next {
    padding: 0.75rem 1.25rem;
    font-weight: 600;
}

.pagination-dots {
    padding: 0.75rem 0.5rem;
    color: #6b7280;
    font-weight: 500;
}

.pagination-info {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    color: #6b7280;
    font-size: 0.875rem;
    font-weight: 500;
}

.pagination-info span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
#custom_html-2 {
  position: relative;
    display: block;
    float: right;
	display: none;
}
.trp-language-switcher:focus .trp-ls-shortcode-language, .trp-language-switcher:hover .trp-ls-shortcode-language{
	    width: auto !important;
    z-index: 9999;
	
}

/* Responsive pagination */
@media (max-width: 768px) {
  
}

/* Date Picker Styles */
.search-input-wrapper {
    position: relative;
    width: 100%;
}

.date-picker-wrapper {
    position: relative;
    width: 100%;
}

.date-picker-input {
    position: relative;
    display: flex;
    align-items: center;
}

.date-picker-input input[type="text"] {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    height: auto;
    line-height: 1.5;
    box-sizing: border-box;
}

.date-picker-input input[type="text"]:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

/* Make sure both inputs have the same styling */
.search-input-wrapper input[type="text"],
.date-picker-input input[type="text"] {
      width: 100%;
    padding: 13px 15px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    font-size: 14px;
    background: rgba(255, 255, 255, 0.1);
    appearance: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    color: white;
    backdrop-filter: blur(10px);
}

.search-input-wrapper input[type="text"]:focus,
.date-picker-input input[type="text"]:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.2);
}

/* Search container overflow */
.search-container {
    overflow: visible;
}



.calendar-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    margin-top: 0.25rem;
    display: none;
    max-width: 280px;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem;
    border-bottom: 1px solid #e5e7eb;
    background: #f9fafb;
}

.calendar-month-year {
    font-weight: 600;
    color: #374151;
    font-size: 0.875rem;
}

.calendar-nav {
    background: none;
    border: none;
    color: #6b7280;
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 3px;
    transition: all 0.2s ease;
    font-size: 0.75rem;
}

.calendar-nav:hover {
    color: #667eea;
    background: rgba(102, 126, 234, 0.1);
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    background: #f9fafb;
    border-bottom: 1px solid #e5e7eb;
}

.calendar-weekdays span {
    text-align: center;
    font-weight: 500;
    color: #6b7280;
    font-size: 0.75rem;
    padding: 0.25rem;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    background: #fff;
    padding: 0.25rem;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    cursor: pointer;
    font-size: 0.75rem;
    color: #374151;
    transition: all 0.2s ease;
    border-radius: 3px;
    margin: 1px;
}

.calendar-day:hover {
    background: #f3f4f6;
    color: #667eea;
}

.calendar-day.other-month {
    color: #d1d5db;
}

.calendar-day.today {
    background: #667eea;
    color: #fff;
    font-weight: 600;
}

.calendar-day.selected {
    background: #667eea;
    color: #fff;
    font-weight: 600;
}

.calendar-day.selected:hover {
    background: #5a67d8;
}

.calendar-footer {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem;
    border-top: 1px solid #e5e7eb;
    background: #f9fafb;
    gap: 0.25rem;
}

.calendar-clear,
.calendar-apply {
    padding: 0.25rem 0.5rem;
    border: none;
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.75rem;
}

.calendar-clear {
    background: #e5e7eb;
    color: #6b7280;
}

.calendar-clear:hover {
    background: #d1d5db;
    color: #374151;
}

.calendar-apply {
    background: #667eea;
    color: #fff;
}

.calendar-apply:hover {
    background: #5a67d8;
}

 .menu {
    display: flex;
    gap: 15px;
  }

  .menu-toggle {
    display: none;
    background: none;
    border: 1px solid #333;
    padding: 8px 12px;
    font-size: 16px;
    cursor: pointer;
  }

  @media (max-width: 767px) {
    .menu {
      display: none; /* hidden by default on mobile */
      flex-direction: column;
      background: #fff;
      border: 1px solid #ddd;
      padding: 10px;
      position: absolute;
      top: 60px; /* adjust under header */
      right: 10px;
      width: 200px;
      z-index: 999;
    }

    .menu-toggle {
      display: inline-block;
    }

    .menu-toggle.active {
      background: linear-gradient(135deg, rgba(163, 11, 24, 0.9) 0%, rgba(219, 167, 170, 0.9) 100%);
      color: #fff;
    }
	  button:hover, input:hover[type="button"], input:hover[type="reset"], input:hover[type="submit"], .button:hover, .entry-content .button:hover {
    background-color: linear-gradient(135deg, rgba(163, 11, 24, 0.9) 0%, rgba(219, 167, 170, 0.9) 100%);
}
	  .related-blogs {
   padding: 0px 0px 50px;
    background: #ffffff;
}
	      .single-case-hero {
        min-height: 400px;
    }
	  .case-number-badge {
        width: 40px;
        height: 40px;
        top: -1px;
        left: 0.75rem;
    }
	  .pdf-cases-grid {
        grid-template-columns: repeat(1, 1fr);
    }
	  .content-grid{
		          grid-template-columns: repeat(1, 1fr);

	  }
	  .hero-layout{
		          grid-template-columns: repeat(1, 1fr);
		  
	  }
	  .header-image .site-header .wrap {
        background-position: left;
        padding: 20px 20px;
        background-size: 200px;
	  }
	  .header-image .site-header .widget-area{
		      flex-direction: row-reverse;
	  }
	  #gtranslate-3 {
    width: 100px;
}
	  #gtranslate-3 select {
width: 101px;
        position: relative;
        left: 0px;	  }
	  .menu-toggle{
		      color: #000000;
    font-size: 24px;
    border: none;
	  }
	  #menu-main li{
		  width: 100%;
		         font-size: 16px;
        padding-bottom: 12px;
	  }
	  #nav_menu-2{
		  flex-direction: column;
	  }
	  .header-image .site-title a {
        float: left;
        min-height: 69px;
        width: 100%;
        position: relative;
        left: -30px;
        width: 160px;
}
  }