/*
 * jQuery Nivo Slider v3.2
 * http://nivo.dev7studios.com
 *
 * Copyright 2012, Dev7studios
 * Free to use and abuse under the MIT license.
 * http://www.opensource.org/licenses/mit-license.php
 */
 
/* The Nivo Slider styles */

.slider-main{    position: relative; display: inline-block; width: 100%; vertical-align: top;}

.nivoSlider {position:relative; width:100%; height:auto; overflow: hidden; }
.nivoSlider img {
	position:absolute;
	top:0px;
	left:0px;
	max-width: none;
}
.nivo-main-image {
	display: block !important;
	position: relative !important; 
	width: 100% !important;
}

/* If an image is wrapped in a link */
.nivoSlider a.nivo-imageLink {
	position:absolute;
	top:0px;
	left:0px;
	width:100%;
	height:100%;
	border:0;
	padding:0;
	margin:0;
	z-index:6;
	display:none;
	background:white; 
	filter:alpha(opacity=0); 
	opacity:0;
}
/* The slices and boxes in the Slider */
.nivo-slice {
	display:block;
	position:absolute;
	z-index:5;
	height:100%;
	top:0;
}
.nivo-box {
	display:block;
	position:absolute;
	z-index:5;
	overflow:hidden;
}
.nivo-box img { display:block; }

/* Caption styles */
.nivo-html-caption {
    display:none;
}
/* Direction nav styles (e.g. Next & Prev) */
.nivo-directionNav{
	max-width: 1170px;
    padding: 0;
    position: absolute;
    width: auto;
    margin: 0;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.nivo-directionNav a {
	position:relative;
	z-index:9;
	cursor:pointer;
	border-radius:50%;
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	display: flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15), 0 2px 4px rgba(0, 0, 0, 0.1);
	border: 2px solid rgba(255, 255, 255, 0.4);
	overflow: hidden;
	font-size: 0;
	text-indent: -9999px;
	color: transparent;
	line-height: 0;
}
.nivo-directionNav a::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
	opacity: 0;
	transition: opacity 0.3s ease;
	z-index: 1;
}
.nivo-directionNav a:hover::after {
	opacity: 1;
}
.nivo-directionNav a:hover{ 
	transform: scale(1.15);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25), 0 4px 8px rgba(0, 0, 0, 0.15);
	border-color: rgba(255, 255, 255, 0.8);
} 
a.nivo-prevNav{
	left: auto;
	right: 0;
}
a.nivo-nextNav{
	right: 0;
	top: auto;
}
a.nivo-nextNav::before, a.nivo-prevNav::before{ 
	content: '';
	position: absolute; 
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 10;
	display: block;
	width: 0;
	height: 0;
	border-style: solid;
} 
a.nivo-nextNav::before {
	margin-left: 2px;
} 
a.nivo-prevNav::before {
	margin-left: -2px;
}

/* Control nav styles (e.g. 1,2,3...) */
.nivo-controlNav {
	max-width:1170px;
	right:0;
	left:0;
	padding:0;
	position: absolute;
    width:100%;
	bottom:30px;
	text-align:center;
	margin:0 auto;
	z-index:999;
}
.nivo-controlNav a {
	cursor:pointer;
    border: 2px solid;
    display:inline-block;	
    height:12px;
    margin:0 5px;
    text-indent: -9999px;
    width:12px;
	border-radius:50%;
	transition: all 0.3s ease;
	background: transparent;
}
.nivo-controlNav a:hover {
	transform: scale(1.2);
}
.nivo-controlNav a.active { 
	font-weight:bold;
	width: 30px;
	border-radius: 6px;
}
/* Caption styles */
.nivo-caption{ 
	max-width:1170px; 
	position:absolute; 
	left:0; 
	right:0; 
	margin:0 auto; 
	top:50%;
	transform:translateY(-50%);
	z-index:999; 
	padding: 0 20px;
}
.slide_info { 
	-webkit-box-sizing: border-box; 
	-moz-box-sizing: border-box; 
	box-sizing: border-box; 
	z-index:8;
	width:100%; 
	text-align:left;
	display: flex;
	align-items: center;
	justify-content: flex-start;
}
.slide_info_inner {
	max-width: 600px;
	padding: 40px;
	backdrop-filter: blur(3px);
	border-radius: 10px;
	border-left: 4px solid;
	animation: slideInLeft 0.8s ease-out;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}
@keyframes slideInLeft {
	from {
		opacity: 0;
		transform: translateX(-30px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}
.slide_info .slide_title {
	font-weight:700; 
	margin:0 0 15px 0; 
	position:relative; 
	line-height:1.2;
	text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6), 0 0 20px rgba(0, 0, 0, 0.4);
}
.slide_info .slide_title a {
	color: inherit;
	text-decoration: none;
}
.slide_info .slide_description {
	max-width:100%;  
	margin:0 0 25px 0; 
	font-weight:400; 
	text-align: left; 
	display: block;
	line-height: 1.6;
	text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6), 0 0 10px rgba(0, 0, 0, 0.3);
}
.slide_info .sliderreadmore {
	margin-top: 10px;
}
.slide_info .rdmore {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 14px 28px;
	border-radius: 6px;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s ease;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}
.slide_info .rdmore .button-icon {
	transition: transform 0.3s ease;
}
.slide_info .rdmore:hover .button-icon {
	transform: translateX(5px);
}
.slide_info .rdmore span {
	display: inline-block;
}


