/* Search icon by IcoMoon, made with http://icomoon.io/app/ */
@font-face {
	font-family: 'icomoon';
	src:url('../fonts/icomoon/icomoon.eot');
	src:url('../fonts/icomoon/icomoon.eot?#iefix') format('embedded-opentype'),
		url('../fonts/icomoon/icomoon.woff') format('woff'),
		url('../fonts/icomoon/icomoon.ttf') format('truetype'),
		url('../fonts/icomoon/icomoon.svg#icomoon') format('svg');
	font-weight: normal;
	font-style: normal;
}
/* Container for the entire search element */
.sb-search {
	position: relative;
	margin-top: 10px;
	width: 0%;
	min-width: 60px;
	height: 60px;
	float: right;
	overflow: hidden;
	-webkit-transition: width 0.4s;
	-moz-transition: width 0.4s;
	transition: width 0.4s;
	-webkit-backface-visibility: hidden;
}
/* The input element on the search element  */
.sb-search-input {
	position: absolute;
	top: 0;
	left: 15px;
	right: 0%;
	border: none;
	outline: none;
	background: #fff;
	width: 75%;
	height: 36px;
	margin: 0 0px 0 0px;
	z-index: 10;
	padding: 15px 20px 15px 20px;
	font-family: inherit;
	font-size: 14px;
	color: #2c3e50;
}


input[type="search"].sb-search-input {
	/* remove special webkit formatting on the search input */
	-webkit-appearance: none;
	-webkit-border-radius: 0px;
 	text-indent: 45px;
}

/* browser specific placholder text color */
.sb-search-input::-webkit-input-placeholder {
	color: #32353C;
}

.sb-search-input:-moz-placeholder {
	color: #32353C;
}

.sb-search-input::-moz-placeholder {
	color: #32353C;
}

.sb-search-input:-ms-input-placeholder {
	color: #32353C;
}

/* format the search button and submit to share the same size and space */
.sb-icon-search,
.sb-search-submit  {
	width: 45px;
	height: 40px;
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	padding: 0 0px 0 0px;
	margin: 0 0px 0 15px;
	line-height: 35px;
	text-align: center;
	cursor: pointer;;
}

.sb-icon-search:hover,
.sb-search-submit:hover  {
color: #E43F21;
}


/* hide the submit but leave it clickable */
.sb-search-submit {
	background: #fff; /* IE needs this */
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; /* IE 8 */
    filter: alpha(opacity=0); /* IE 5-7 */
    opacity: 0;
	color: transparent;
	border: none;
	outline: none;
	z-index: -1;
}

/* format the search icon */
.sb-icon-search {
	color: #fff;
	float:right;
	background: #32353C;
	z-index: 90;
	font-size: 16px;
	font-family: 'icomoon';
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	-webkit-font-smoothing: antialiased;
}

/* add the magnifying glass character from the icomoon font as a before pseudo element */
.sb-icon-search:before {
	content: "\e000";
}

/* Open state */
.sb-search.sb-search-open,
.no-js .sb-search {
	width: 100%;
}

/* add the "active" color on the search button */
.sb-search.sb-search-open .sb-icon-search,
.no-js .sb-search .sb-icon-search {
	background: #32353C;
	color: #fff;
	z-index: 11;
}

/* adjust z-index to make sure the search submit is clikacble and not below any other elements */
.sb-search.sb-search-open .sb-search-submit,
.no-js .sb-search .sb-search-submit {
	z-index: 90;
}




/* Picture slider

/* Split the screen in half */
.parent {
	display: table;
	width: 100%;
	height: 40px;
}
#left, #right {
	display: table-cell;
	vertical-align: top;
	width: 50%;
	height: 100%;
}
#left {
	width: 50%;
	background: #e43f21;
}
#right {
	width: 50%;	
	background: #e43f21;
}



.slider-container {
    max-width: 700px;
    position: relative;
    overflow: hidden;
}

.slider {
    display: flex;
    position: relative;
	align-items: center; /* Vertically centers the image */
}

.slide {
    min-width: 400px;
    height: 566px;
    margin: 25px 10px 10px 10px;
    position: relative;
    transform: scale(0.8);
    opacity: 0; /*0.6;*/
    transition: all 0.3s ease-in-out;
    border-radius: 5px;
    overflow: hidden;
    flex-shrink: 0;
}

.slide.active {
    transform: scale(1);
    opacity: 1;
}

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

.custom-cursor {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid #e43f21;
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #e43f21;
    font-size: 20px;
    opacity: 0;
    transition: transform 0.1s ease;
    backdrop-filter: blur(4px);
    z-index: 1000;
}

.custom-cursor.left::before {
    content: "←";
}

.custom-cursor.right::before {
    content: "→";
}

.custom-cursor.active {
    transform: scale(1.5);
}

.divider-100 {
	margin-top: 200px;
}


