.slideshow {
	position: relative;
	margin-top: 0px;
}

.slides {
	list-style: none;
	padding: 0;
	margin: 0;
	position: relative;
	height: 167px;
	width: 100%;
	overflow: hidden;
	background: #ddd;
	color: #333;
}

.no-js .slides {
	height: auto;
}

.slides > li {
	width: 100%;
	height: 100%;
	position: absolute;
	visibility: hidden;
	-webkit-perspective: 1600px;
	perspective: 1600px;
}

.no-js .slides > li {
	position: relative;
	visibility: visible;
}

.slideshow > nav {
	text-align: center;
	margin-top: -5px;
}

.slideshow > nav span {
	display: inline-block;
	width: 60px;
	height: 5px;
	background-color: #ddd;
	cursor: pointer;
	margin: 0 3px;
	transition: background-color 0.2s;
}

.slideshow > nav span:hover {
	background-color: #333;
}

.slideshow > nav span.current {
	background-color: #aaa;
}

.description {
  width: 44%;
  padding: 30px 10px 10px 17px;
  font-size: 2.5em;
  position: relative;
  z-index: 1000;
  opacity: 0;
  font-size: x-large;
  font-weight: 100;
  
}

.no-js .description {
	opacity: 1;
}

.description h2 {
	font-size: 172%;
}

.tiltview {
    position: absolute;
  
    width: 100%;
    top: 112px;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-transform: translateY(-60%) rotateX(0deg) rotateZ(0deg);
	-o-transform: translateY(-60%) rotateX(0deg) rotateZ(0deg);
    transform: translateY(-60%) rotateX(0deg) rotateZ(0deg);
}

.tiltview a {
	outline: 1px solid transparent;
}

.tiltview a,
.tiltview a img {
	max-width: 100%;
	display: block;
	margin: 0 auto;
}

.tiltview a:first-child {
	margin-bottom: 30px;
}

.tiltview.row a {
	width: 48%;
	width: calc(50% - 15px);
	margin: 0;
}

.tiltview.row a:nth-child(2) {
	left: 50%;
	left: calc(50% + 15px);
	position: absolute;
	top: 0;
}

/* Show/Hide */
.slides > li.current,
.slides > li.show {
	visibility: visible;
}

.description {
	transition: opacity 0.75s;
}

.current .description,
.show .description {
	opacity: 1;
}

.hide .description {
	opacity: 0;
}

/* Individual effects */

/* Move Up, Move Down, Slide Up, Slide Down, Slide Left, Slide Right */
/* For each effect we'll define the incoming and outgoing animation */

/***********************/
/* Move up */
/***********************/
.hide[data-effect-out="moveUpOut"] .tiltview a {
	-webkit-animation: moveUpOut 1.5s both;
	animation: moveUpOut 1.5s both;
}

.hide[data-effect-out="moveUpOut"] .tiltview a:nth-child(2) {
	-webkit-animation-delay: 0.25s;
	animation-delay: 0.25s;
}

@-webkit-keyframes moveUpOut {
	25% {
		-webkit-animation-timing-function: cubic-bezier(1.000, 0.000, 0.000, 1.000);
		-webkit-transform: translateZ(-30px);
	}
	100% {
		-webkit-transform: translateZ(3000px);
	}
}

@keyframes moveUpOut {
	25% {
		-webkit-animation-timing-function: cubic-bezier(1.000, 0.000, 0.000, 1.000);
		animation-timing-function: cubic-bezier(1.000, 0.000, 0.000, 1.000);
		-webkit-transform: translateZ(-30px);
		transform: translateZ(-30px);
	}
	100% {
		-webkit-transform: translateZ(3000px);
		transform: translateZ(3000px);
	}
}

.show[data-effect-in="moveUpIn"] .tiltview a {
	-webkit-animation: moveUpIn 1.5s 0.5s both;
	animation: moveUpIn 1.5s 0.5s both;
}

.show[data-effect-in="moveUpIn"] .tiltview a:nth-child(2) {
	-webkit-animation-delay: 0.75s;
	animation-delay: 0.75s;
}

@-webkit-keyframes moveUpIn {
	0% {
		-webkit-animation-timing-function: cubic-bezier(1.000, 0.000, 0.000, 1.000);
		-webkit-transform: translateZ(-3000px);
	}
	75% {
		-webkit-transform: translateZ(30px);
	}
	100% {
		-webkit-transform: translateZ(0);
	}
}

@keyframes moveUpIn {
	0% {
		-webkit-animation-timing-function: cubic-bezier(1.000, 0.000, 0.000, 1.000);
		animation-timing-function: cubic-bezier(1.000, 0.000, 0.000, 1.000);
		-webkit-transform: translateZ(-3000px);
		transform: translateZ(-3000px);
	}
	75% {
		-webkit-transform: translateZ(30px);
		transform: translateZ(30px);
	}
	100% {
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
	}
}

/***********************/
/* Move down */
/***********************/
.hide[data-effect-out="moveDownOut"] .tiltview a {
	-webkit-animation: moveDownOut 1.5s both;
	animation: moveDownOut 1.5s both;
}

.hide[data-effect-out="moveDownOut"] .tiltview a:nth-child(2) {
	-webkit-animation-delay: 0.25s;
	animation-delay: 0.25s;
}

@-webkit-keyframes moveDownOut {
	25% {
		-webkit-animation-timing-function: cubic-bezier(1.000, 0.000, 0.000, 1.000);
		-webkit-transform: translateZ(30px);
	}
	100% {
		-webkit-transform: translateZ(-3000px);
	}
}

@keyframes moveDownOut {
	25% {
		-webkit-animation-timing-function: cubic-bezier(1.000, 0.000, 0.000, 1.000);
		animation-timing-function: cubic-bezier(1.000, 0.000, 0.000, 1.000);
		-webkit-transform: translateZ(30px);
		transform: translateZ(30px);
	}
	100% {
		-webkit-transform: translateZ(-3000px);
		transform: translateZ(-3000px);
	}
}

.show[data-effect-in="moveDownIn"] .tiltview a {
	-webkit-animation: moveDownIn 1.5s 0.5s both;
	animation: moveDownIn 1.5s 0.5s both;
}

.show[data-effect-in="moveDownIn"] .tiltview a:nth-child(2) {
	-webkit-animation-delay: 0.75s;
	animation-delay: 0.75s;
}

@-webkit-keyframes moveDownIn {
	0% {
		-webkit-animation-timing-function: cubic-bezier(1.000, 0.000, 0.000, 1.000);
		-webkit-transform: translateZ(3000px);
	}
	75% {
		-webkit-transform: translateZ(-30px);
	}
	100% {
		-webkit-transform: translateZ(0);
	}
}

@keyframes moveDownIn {
	0% {
		-webkit-animation-timing-function: cubic-bezier(1.000, 0.000, 0.000, 1.000);
		animation-timing-function: cubic-bezier(1.000, 0.000, 0.000, 1.000);
		-webkit-transform: translateZ(3000px);
		transform: translateZ(3000px);
	}
	75% {
		-webkit-transform: translateZ(-30px);
		transform: translateZ(-30px);
	}
	100% {
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
	}
}

/***********************/
/* Slide up */
/***********************/
.hide[data-effect-out="slideUpOut"] .tiltview a {
	-webkit-animation: slideUpOut 1.5s both;
	animation: slideUpOut 1.5s both;
}

.hide[data-effect-out="slideUpOut"] .tiltview a:nth-child(2) {
	-webkit-animation-delay: 0.25s;
	animation-delay: 0.25s;
}

@-webkit-keyframes slideUpOut {
	25% {
		-webkit-animation-timing-function: cubic-bezier(1.000, 0.000, 0.000, 1.000);
		-webkit-transform: translateY(30px);
	}
	100% {
		-webkit-transform: translateY(-3000px);
	}
}

@keyframes slideUpOut {
	25% {
		-webkit-animation-timing-function: cubic-bezier(1.000, 0.000, 0.000, 1.000);
		animation-timing-function: cubic-bezier(1.000, 0.000, 0.000, 1.000);
		-webkit-transform: translateY(30px);
		transform: translateY(30px);
	}
	100% {
		-webkit-transform: translateY(-3000px);
		transform: translateY(-3000px);
	}
}

.show[data-effect-in="slideUpIn"] .tiltview a {
	-webkit-animation: slideUpIn 1.5s 0.5s both;
	animation: slideUpIn 1.5s 0.5s both;
}

.show[data-effect-in="slideUpIn"] .tiltview a:nth-child(2) {
	-webkit-animation-delay: 0.75s;
	animation-delay: 0.75s;
}

@-webkit-keyframes slideUpIn {
	0% {
		-webkit-animation-timing-function: cubic-bezier(1.000, 0.000, 0.000, 1.000);
		-webkit-transform: translateY(3000px);
	}
	75% {
		-webkit-transform: translateY(-30px);
	}
	100% {
		-webkit-transform: translateY(0);
	}
}

@keyframes slideUpIn {
	0% {
		-webkit-animation-timing-function: cubic-bezier(1.000, 0.000, 0.000, 1.000);
		animation-timing-function: cubic-bezier(1.000, 0.000, 0.000, 1.000);
		-webkit-transform: translateY(3000px);
		transform: translateY(3000px);
	}
	75% {
		-webkit-transform: translateY(-30px);
		transform: translateY(-30px);
	}
	100% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
}

/***********************/
/* Slide down */
/***********************/
.hide[data-effect-out="slideDownOut"] .tiltview a {
	-webkit-animation: slideDownOut 1.5s both;
	animation: slideDownOut 1.5s both;
}

.hide[data-effect-out="slideDownOut"] .tiltview.row a:nth-child(2),
.hide[data-effect-out="slideDownOut"] .tiltview.col a:first-child {
	-webkit-animation-delay: 0.25s;
	animation-delay: 0.25s;
}

@-webkit-keyframes slideDownOut {
	25% {
		-webkit-animation-timing-function: cubic-bezier(1.000, 0.000, 0.000, 1.000);
		-webkit-transform: translateY(-30px);
	}
	100% {
		-webkit-transform: translateY(3000px);
	}
}

@keyframes slideDownOut {
	25% {
		-webkit-animation-timing-function: cubic-bezier(1.000, 0.000, 0.000, 1.000);
		animation-timing-function: cubic-bezier(1.000, 0.000, 0.000, 1.000);
		-webkit-transform: translateY(-30px);
		transform: translateY(-30px);
	}
	100% {
		-webkit-transform: translateY(3000px);
		transform: translateY(3000px);
	}
}

.show[data-effect-in="slideDownIn"] .tiltview a {
	-webkit-animation: slideDownIn 1.5s 0.5s both;
	animation: slideDownIn 1.5s 0.5s both;
}

.show[data-effect-in="slideDownIn"] .tiltview.row a:nth-child(2),
.show[data-effect-in="slideDownIn"] .tiltview.col a:first-child {
	-webkit-animation-delay: 0.75s;
	animation-delay: 0.75s;
}

@-webkit-keyframes slideDownIn {
	0% {
		-webkit-animation-timing-function: cubic-bezier(1.000, 0.000, 0.000, 1.000);
		-webkit-transform: translateY(-3000px);
	}
	75% {
		-webkit-transform: translateY(30px);
	}
	100% {
		-webkit-transform: translateY(0);
	}
}

@keyframes slideDownIn {
	0% {
		-webkit-animation-timing-function: cubic-bezier(1.000, 0.000, 0.000, 1.000);
		animation-timing-function: cubic-bezier(1.000, 0.000, 0.000, 1.000);
		-webkit-transform: translateY(-3000px);
		transform: translateY(-3000px);
	}
	75% {
		-webkit-transform: translateY(30px);
		transform: translateY(30px);
	}
	100% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
}

/***********************/
/* Slide left */
/***********************/
.hide[data-effect-out="slideLeftOut"] .tiltview a {
	-webkit-animation: slideLeftOut 1.5s both;
	animation: slideLeftOut 1.5s both;
}

.hide[data-effect-out="slideLeftOut"] .tiltview a:nth-child(2) {
	-webkit-animation-delay: 0.25s;
	animation-delay: 0.25s;
}

@-webkit-keyframes slideLeftOut {
	25% {
		-webkit-animation-timing-function: cubic-bezier(1.000, 0.000, 0.000, 1.000);
		-webkit-transform: translateX(30px);
	}
	100% {
		-webkit-transform: translateX(-5000px);
	}
}

@keyframes slideLeftOut {
	25% {
		-webkit-animation-timing-function: cubic-bezier(1.000, 0.000, 0.000, 1.000);
		animation-timing-function: cubic-bezier(1.000, 0.000, 0.000, 1.000);
		-webkit-transform: translateX(30px);
		transform: translateX(30px);
	}
	100% {
		-webkit-transform: translateX(-5000px);
		transform: translateX(-5000px);
	}
}

.show[data-effect-in="slideLeftIn"] .tiltview a {
	-webkit-animation: slideLeftIn 1.5s 0.5s both;
	animation: slideLeftIn 1.5s 0.5s both;
}

.show[data-effect-in="slideLeftIn"] .tiltview a:nth-child(2) {
	-webkit-animation-delay: 0.75s;
	animation-delay: 0.75s;
}

@-webkit-keyframes slideLeftIn {
	0% {
		-webkit-animation-timing-function: cubic-bezier(1.000, 0.000, 0.000, 1.000);
		-webkit-transform: translateX(3000px);
	}
	75% {
		-webkit-transform: translateX(-30px);
	}
	100% {
		-webkit-transform: translateX(0);
	}
}

@keyframes slideLeftIn {
	0% {
		-webkit-animation-timing-function: cubic-bezier(1.000, 0.000, 0.000, 1.000);
		animation-timing-function: cubic-bezier(1.000, 0.000, 0.000, 1.000);
		-webkit-transform: translateX(3000px);
		transform: translateX(3000px);
	}
	75% {
		-webkit-transform: translateX(-30px);
		transform: translateX(-30px);
	}
	100% {
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
}

/***********************/
/* Slide right */
/***********************/
.hide[data-effect-out="slideRightOut"] .tiltview a {
	-webkit-animation: slideRightOut 1.5s both;
	animation: slideRightOut 1.5s both;
	
}

.hide[data-effect-out="slideRightOut"] .tiltview.col a:nth-child(2),
.hide[data-effect-out="slideRightOut"] .tiltview.row a:first-child {
	-webkit-animation-delay: 0.25s;
	animation-delay: 0.25s;
}

@-webkit-keyframes slideRightOut {
	25% {
		-webkit-animation-timing-function: cubic-bezier(1.000, 0.000, 0.000, 1.000);
		-webkit-transform: translateX(-30px);
	}
	100% {
		-webkit-transform: translateX(3000px);
	}
}

@keyframes slideRightOut {
	25% {
		-webkit-animation-timing-function: cubic-bezier(1.000, 0.000, 0.000, 1.000);
		animation-timing-function: cubic-bezier(1.000, 0.000, 0.000, 1.000);
		-webkit-transform: translateX(-30px);
		transform: translateX(-30px);
	}
	100% {
		-webkit-transform: translateX(3000px);
		transform: translateX(3000px);
	}
}

.show[data-effect-in="slideRightIn"] .tiltview a {
	-webkit-animation: slideRightIn 1.5s 0.5s both;
	animation: slideRightIn 1.5s 0.5s both;
}

.show[data-effect-in="slideRightIn"] .tiltview.col a:nth-child(2),
.show[data-effect-in="slideRightIn"] .tiltview.row a:first-child {
	-webkit-animation-delay: 0.75s;
	animation-delay: 0.75s;
}

@-webkit-keyframes slideRightIn {
	0% {
		-webkit-animation-timing-function: cubic-bezier(1.000, 0.000, 0.000, 1.000);
		-webkit-transform: translateX(-5000px);
	}
	75% {
		-webkit-transform: translateX(30px);
	}
	100% {
		-webkit-transform: translateX(0);
	}
}

@keyframes slideRightIn {
	0% {
		-webkit-animation-timing-function: cubic-bezier(1.000, 0.000, 0.000, 1.000);
		animation-timing-function: cubic-bezier(1.000, 0.000, 0.000, 1.000);
		-webkit-transform: translateX(-5000px);
		transform: translateX(-5000px);
	}
	75% {
		-webkit-transform: translateX(30px);
		transform: translateX(30px);
	}
	100% {
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
}

/* Fallback for no 3D Transforms and no preserve-3d */
.no-csstransformspreserve3d .show .tiltview a,
.no-csstransformspreserve3d .hide .tiltview a,
.no-csstransforms3d .show .tiltview a,
.no-csstransforms3d .hide .tiltview a {
	-webkit-animation: none !important;
	animation: none !important;
}

.no-csstransforms3d .tiltview.col {
	top: -50%;
}

.no-csstransforms3d .tiltview.row {
	top: 20px;
}

/* Some media queries */
@media screen and (max-width:1199px){
	.tiltview {
    position: absolute;
    left: 0px;
    width: 100%;
    top: 100px ;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-transform: translateY(-60%) rotateX(0deg) rotateZ(0deg);
	-o-transform: translateY(-60%) rotateX(0deg) rotateZ(0deg);
    transform: translateY(-60%) rotateX(0deg) rotateZ(0deg);
}
.slides {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    height: 145px;
    width: 100%;
    overflow: hidden;
    background: #ddd;
    color: #333;
}
}
@media screen and (max-width:1079px){
	.tiltview {
    position: absolute;
    left: 0px ;
    width: 100%;
    top: 100px;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-transform: translateY(-60%) rotateX(0deg) rotateZ(0deg);
	-o-transform: translateY(-60%) rotateX(0deg) rotateZ(0deg);
    transform: translateY(-60%) rotateX(0deg) rotateZ(0deg);
}
.slides {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    height: 145px;
    width: 100%;
    overflow: hidden;
    background: #ddd;
    color: #333;
}
}
@media screen and (max-width:990px) {
	.tiltview {
    position: absolute;
    left: 0px !important;
    width: 100%  !important;
    top: 100px !important;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-transform: translateY(-60%) rotateX(0deg) rotateZ(0deg);
	-o-transform: translateY(-60%) rotateX(0deg) rotateZ(0deg);
    transform: translateY(-60%) rotateX(0deg) rotateZ(0deg);
}
.exp-right {
    margin: -13px 0 0 135px;
    width: 476px;
    text-align: center;
}
.exp-left {
    padding: 0px 16px 0 16px;
}
.exp-left a{
	margin-left:0px;
	}
	.slides {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    height:155px !important;
    width: 100%;
    overflow: hidden;
    background: #ddd;
    color: #333;
}

}
@media screen and (max-width: 991px){
	.splitlayout.open-right .page-right,
.splitlayout.open-left .page-left {
	position: relative;
	overflow: hidden !important;
	height: auto;
	width: 76%;

}
	.btnn {
    display: inline-block;
    padding: 6px 0px;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: normal;
    line-height: 1.42857143;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-image: none;
    border: 1px solid rgba(140, 87, 87, 0);
    border-radius: 2px;
    width: 49%;
    color: #fff !important;
    background-color: #f04e30;
}
.btn {
    display: inline-block;
    padding: 6px 0px;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: normal;
    line-height: 1.42857143;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-image: none;
    border: 1px solid rgba(241, 234, 234, 0);
    border-radius: 2px;
    width: 49%;
    color: #507E3B !important;
}
	.slides {
    list-style: none;
    padding: 0;
    margin: 0px;
    position: relative;
    height: 140px !important;
    width: 100%;
    overflow: hidden;
    background: #ddd;
    color: #333;
}
.slideshow {
    position: relative;
    margin-bottom: 30px !important;
    margin-top: -33px !important;
	height: 141px;
}
.slideshow > nav {
    text-align: center;
    margin-top: -5px;
    margin-bottom: 20px;
}
.tiltview {
    position: absolute;
    left: 0px !important;
    width: 100% !important;
    top: 100px !important;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-transform: translateY(-60%) rotateX(0deg) rotateZ(0deg);
	-o-transform: translateY(-60%) rotateX(0deg) rotateZ(0deg);
    transform: translateY(-60%) rotateX(0deg) rotateZ(0deg);
}
.page {
    position: absolute !important;
    top: 0;
    overflow-y: scroll !important;
    min-height: 100%;
    width: 74% !important;
    height: auto;
    -webkit-backface-visibility: hidden;
}
}
@media screen and (max-width:943px){
	.tiltview {
    position: absolute;
    left: 0px  !important;
    width: 100% !important;
    top: 100px !important;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
	-o-transform: translateY(-60%) rotateX(0deg) rotateZ(0deg);
    -webkit-transform: translateY(-60%) rotateX(0deg) rotateZ(0deg);
    transform: translateY(-60%) rotateX(0deg) rotateZ(0deg);
}
.slides {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    height:150px;
    width: 100%;
    overflow: hidden;
    background: #ddd;
    color: #333;
}
.exp-right {
    margin: -13px 0 0 135px;
    width: 476px;
    text-align: center;
}
}

@media screen and (max-width:893px){
	.description,.tiltview{
	width:100% !important;
	}
	.tiltview{
		left:0px !important;
		top:83px !important;
	}
	.slides {
    height: 118px !important;
}
.exp-left {
    padding:15px;
}
.exp-right {
    margin: -13px 0 0 135px;
    width: 476px;
    text-align: center;
}
}
@media screen and (max-width:830px){
.exp-right {
    margin: -16px 0 0 134px;
    width: 484px;
    text-align: center;
}
.splitlayout {
    overflow: hidden;
    width: 100%;
    position: relative;
    margin-top: 0px;
    height: 450px !important;
}
}
@media screen and (max-width: 789px) {
	.tiltview {
    position: absolute;
    left: 0px ;
    width: 100% ;
    top: 90px !important;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
	-0-transform: translateY(-60%) rotateX(0deg) rotateZ(0deg);
    -webkit-transform: translateY(-60%) rotateX(0deg) rotateZ(0deg);
    transform: translateY(-60%) rotateX(0deg) rotateZ(0deg);
}

	.slides{
    height: 140px !important;
		}
	.description {
	padding: 3em 16px;}
	.exp-left h2{
		padding-left:0px;}
		

}

@media screen and (max-width: 768px){
	.tiltview a:first-child {
		margin-bottom:5px;
		}
	.slides{
    height: 350px !important;
		}
		.splitlayout {
    overflow: hidden;
    width: 100%;
    position: relative;
    margin-top: 0px;
    height: 755px !important;
}
	.tiltview {
    position: absolute;
    left: 0px ;
    width: 100% ;
    top: 268px !important;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
	-0-transform: translateY(-60%) rotateX(0deg) rotateZ(0deg);
    -webkit-transform: translateY(-60%) rotateX(0deg) rotateZ(0deg);
    transform: translateY(-60%) rotateX(0deg) rotateZ(0deg);
}

	.slides{
    height: 445px !important;
		}
	}

@media screen and (max-width: 671px){

.tiltview {
    left: 0px !important;
    top: 488px !important;
}
.slides {
    height: 691px !important;
}
}
@media screen and (max-width: 540px){
	.splitlayout {
    overflow: hidden;
    width: 100%;
    position: relative;
    margin-top: 0px;
    height: 605px !important;
}
.tiltview {
    left: 0px !important;
    top: 532px !important;
	margin-top: -130px;
}
.slides {
    height: 563px !important;
}}
@media screen and (max-width: 400px){
	.splitlayout {
    overflow: hidden;
    width: 100%;
    position: relative;
    margin-top: 0px;
    height: 500px !important;
}
.tiltview {
    left: 0px !important;
    top: 253px !important;
	margin-top: -130px;
}
.tiltview a:first-child {
    margin-bottom: 10px !important;
}
.slides {
    height: 563px !important;
}
	}
@media screen and (max-width: 33.75em) {
	.description {
		font-size: 1.4em;
		padding: 3em 1em;
	}

	.slideshow > nav span {
		width: 28px;
		height: 5px;
		margin: 0 5px;
	}
	.slideshow{
		margin-top: 99px;
		}
	.tiltview {
    left: 0px;
    width: 100% !important;
	margin-top: -130px;
	margin-bottom:9px;
	
}
.slides{
	height:534px;
	}
}

@media screen and (max-width: 24em) {
	.slides {
		height: 443px;
	}

	.description {
		font-size: 20px;
		padding: 0.2em;
	}
	.description ul span h4 p{
		margin:0 0 0 0 !important;
	}
	.no-csstransforms3d .tiltview.col,
	.no-csstransforms3d .tiltview.row {
		top: 0;
	}
}

@media screen and (max-width: 320px){
.description {
    font-size: 16px;
    padding: 1em;
	line-height: 22px;
}

.tiltview {
    left: 0px !important;
    top: 509px !important;
	
}
.slides {
    height: 425px !important;
	top: 24px;
}
.slideshow > nav {
    text-align: center;
    margin-top: 19px;
}
}

