@charset "utf-8";
/* CSS Document */

/*media*/

		/* Small screens - スマホ */
@media only screen { } /* スマホ用のスタイル -モバイルファースト */
 
@media only screen and (max-width: 40em) { } /* 最大幅640px、スマホ専用のスタイル */
 
/* Medium screens - タブレット */
@media only screen and (min-width: 40.063em) { 
	/*top*/

	
  

	
	.content {
	position: relative;
	width: 100%;
	/*display: flex;*/
	justify-content: space-between;
	align-items: center;
    }

	.textBox {
	position: relative;
	max-width: 100%;
	padding-right: 20px;
    }
	.textBox h2 {
	font-size: 2.5em;
    }
	.textBox a {
	font-size: 14px;
	padding: 8px 20px;
    }
	.content .imgBox1 {
	width: 100%;
	display: flex;
	padding-left: 10px;
	margin-top: 250px;
	justify-content: center;
    }
	
	.content .imgBox1 img {
	max-width: 450px;
    }
	
	.content .imgBox2 {
	width: 100%;
	display: flex;
	padding-left: 10px;
	margin-top: 230px;
	justify-content: center;
    }

    .content .imgBox2 img {
	max-width: 650px;
    }
	
	.content .bg1 {
	width: 100%;
	display: inline-block;
	padding-right: 0;
	justify-content: center;
	bottom: 10px;
	background-image: url("../img/road.png");
	animation: animate 25s linear infinite;
}
	
	
	
	.content1 {
	position: relative;
	width: 100%;
	/*display: flex;*/
	justify-content: space-between;
	align-items: center;
}
	
	.content1 .bg2 {
	width: 100%;
	display: inline-block;
	padding-right: 0;
	justify-content: center;
	bottom: 10px;
	background-image: url("../img/bg2.png");
}
	
	.content2 {
	position: relative;
	width: 100%;
	/*display: flex;*/
	justify-content: space-between;
	align-items: center;
}
	
	.content2 .bg3 {
	width: 100%;
	display: inline-block;
	padding-right: 0;
	justify-content: center;
	bottom: 10px;
	background-image: url("../img/bg3.png");
}
	
	.content3 {
	position: relative;
	width: 100%;
	/*display: flex;*/
	justify-content: space-between;
	align-items: center;
}
	
	.content3 .bg4 {
	width: 100%;
	display: inline-block;
	padding-right: 0;
	justify-content: center;
	bottom: 10px;
	background-image: url("../img/bg4.png");
}
		
	
	.thumb li img {
	max-width: 70px;
    }
	.sci {
	position: absolute;
	top: 50%;
	right: 0px;
	width: 50px;
	background: rgba(0,0,0,0.2);
	transform: translateY(-50%);
	justify-content: center;
	align-items: center;
    }
	
	
	.tooltip {
  position: relative;
  display: inline-block;
  
  /*border-bottom: 1px dotted black;*/
}

.tooltip .tooltiptext {
  visibility: hidden;
  width: auto;
  font-size: 20px;
 /* background-color: #888888;*/
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;
  position: absolute;
  z-index: 2;
  bottom: 100%;
  left: 40%;
  margin-left: -60px;
  opacity: 0;
  transition: opacity 0.3s;
}

.tooltip .tooltiptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 40%;
  margin-left: -5px;
  border-width: 10px;
  border-style: solid;
  border-color: #888888 transparent transparent transparent;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}
	
	.textBox1 {
	position: relative;
	max-width: 600px;
	left: 50%;
	margin-bottom: 10px;
	bottom: 20px;
}
	
	
	


.textBox1 a {
	display: inline-block;
	margin-top: 20px;
	padding: 8px 20px;
	background: #fff;
	color: #111;
	border-radius: 40px;
	font-weight: 500;
	letter-spacing: 1px;
	text-decoration: none;
	text-transform: uppercase;
}
	
	.textBox2 {
	position: relative;
	max-width: 600px;
	left: 70%;
	margin-bottom: 10px;
	bottom: 40px;
}


.textBox2 a {
	display: inline-block;
	margin-top: 20px;
	padding: 8px 20px;
	background: #fff;
	color: #111;
	border-radius: 40px;
	font-weight: 500;
	letter-spacing: 1px;
	text-decoration: none;
	text-transform: uppercase;
}
	
	
	.page_wrapper {
	position: relative;
	width: 100%;
	/*min-height: 100vh;*/
	bottom: 10px;
	/*padding: 100px;*/
	display: flex;
	justify-content: space-between;
	align-items: center;
	/*background: #0062be;*/
	transition: 0.5s;
}
	
	.page_wrapper1 {
	position: relative;
	width: 100%;
	/*min-height: 100vh;*/
	bottom: 10px;
	/*padding: 100px;*/
	display: flex;
	justify-content: space-between;
	align-items: center;
	/*background: #0062be;*/
	transition: 0.5s;
}
	
	.slider-list {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
  margin-top: 25px;
  padding: 0;
  list-style-type: none;
}
.slider-list::before {
  content: '';
  display: block;
  padding-top: calc(9 / 16 * 100%);
}
.slider-list__item {
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16vw;
  color: #000;
  will-change: transform;
  z-index: 1;
}
.slider-list__item .back__element {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 1;
}
.slider-list__item .back__element img {
  position: relative;
  display: block;
  width: 100%;
  max-width: 640px;
  height: auto;
  top: 50%; left: 50%;
  transform: translate( -50%, -50% );
}
.slider-list__item .main__element {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 3;
}
.slider-list__item .main__element img {
  position: relative;
  display: block;
  width: 100%;
  max-width: 500px;
  height: auto;
  top: 50%; left: 50%;
  transform: translate( -50%, -50% );
}
.slider-list__item .front__element {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 4;
  /* transform: scale(0); */
}
.slider-list__item .front__element img {
  position: relative;
  display: block;
  width: 100%;
  max-width: 640px;
  height: auto;
  top: 50%; left: 50%;
  transform: translate( -50%, -50% );
}
.slider-list__item .title__element {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 2;
}
.slider-list__item .title__element .title {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  top: 50%; left: 50%;
  transform: rotate(-15deg) translate( -45%, -125% );
  font-family: 'Molle', cursive;
  color: #eef2f3;
  text-align: center;
}
.slider-list__item .more__element {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 10;
}
.slider-list__item .more__element .content {
  position: relative;
  display: block;
  width: 100%;
  max-width: 1200px;
  height: auto;
  margin: 64px auto;
  padding: 0 32px;
  color: #2e3131;
  text-align: left;
}
.slider-list__item .more__element .content .headline {
  position: relative;
  display: block;
  max-width: 500px;
  font-family: 'Molle', cursive;
  font-size: 38px;
  line-height: 46px;
}
.slider-list__item .more__element .content .excerpt {
  position: relative;
  display: block;
  max-width: 240px;
  font-family: 'Open Sans Condensed', sans-serif;
  font-size: 16px;
  line-height: 24px;
  padding: 8px 0 16px;
}
.slider-list__item .more__element .content .link {
  position: relative;
  display: block;
  font-family: 'Open Sans Condensed', sans-serif;
  width: 180px;
  height: 48px;
  border-radius: 24px;
  font-size: 16px;
  line-height: 24px;
  box-shadow: 0 14px 28px rgba(0,0,0,0.05), 0 10px 10px rgba(0,0,0,0.06);
  transition: all 0.4s ease;
}
.slider-list__item .more__element .content .link .fill {
  position: absolute;
	background-image: linear-gradient(to right, #d43325, #f36e67);
	background-size: 150% 150%;
	height: 48px;
	width: 180px;
	border-radius: 24px;
	margin: 0;
	z-index: -1;
  transition: all 0.4s ease;
  -webkit-animation: gradient 3s ease infinite;
	-moz-animation: gradient 3s ease infinite;
	animation: gradient 3s ease infinite;
}
.slider-list__item .more__element .content .link .fill.fill-dark {
  background-image: linear-gradient(to right, #252228, #848f9e);
} 
.slider-list__item .more__element .content .link a {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  color: #dde3e6;
  font-weight: 700;
  text-align: center;
  line-height: 48px;
  text-decoration: none;
  outline: 0px none;
  outline: 0px;
  z-index: 2;
}
.slider-list__item .more__element .content .link:hover {
  box-shadow: 0 19px 38px rgba(0,0,0,0.05), 0 15px 12px rgba(0,0,0,0.06);
}
.slider-list__item_active {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  z-index: 2;
}

.boxes {
	position: relative;
	width: 100%;
	background-image: url("../img/bgtop2.png");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

	
	
	

} /* 最小幅641px、Mediumスクリーン */
 
@media only screen and (min-width: 40.063em) and (max-width: 64em) { } /* 最小幅641pxおよび最大幅1024px、タブレット専用のスタイル */
 
/* Large screens - デスクトップ */
@media only screen and (min-width: 64.063em) { } /* 最小幅1025px、Largeスクリーン */
 
@media only screen and (min-width: 64.063em) and (max-width: 90em) { } /* 最小幅1025pxおよび最大幅1440px、Largeスクリーン専用のスタイル */
 
/* XLarge screens */
@media only screen and (min-width: 90.063em) { } /* 最小幅1441px、XLargeスクリーン */
 
@media only screen and (min-width: 90.063em) and (max-width: 120em) { } /* 最小幅1441pxおよび最大幅1920px、XLargeのスクリーン専用のスタイル */
 
/* XXLarge screens */
@media only screen and (min-width: 120.063em) { } /* 最小幅1921px、XXLargeスクリーン */



/*media phone*/
@media (max-width: 991px){
	section{
		padding: 60px;
		padding-bottom: 100px;
	}
	header .logo {
		position: relative;
		max-width: 150px;
		right: 0;
	}
	header ul {
		position: fixed;
		top: 0;
		left: 70%;
		width: 30%;
		/*height: 30%;*/
		background: #bbb;
		z-index: 1;
		flex-direction: column;
		border-radius: 20px;
		align-items: center;
		justify-content: center;
		transition: 0.2s;
		visibility: hidden;
		opacity: 0;
	}
	
	header ul.active{
		visibility: visible;
		opacity: 1;
	}
	header ul li a {
		display: inline-block;
		color: #111;
		font-weight: 400;
		margin-left: 0;
		text-decoration: none;
		font-size: 0.7em;
		margin: 5px 0;
	}
	header ul li a:hover {
		color: #2347BB;
	}
	.toggleMenu {
		position: relative;
		width: 40px;
		height: 40px;
		left: 85px;
		background: url("../img/open.png");
		background-position: center;
		background-repeat: no-repeat;
		background-size: 30px;
		z-index: 2;
		cursor: pointer;
	}
	.toggleMenu.active {
		background: url("../img/close.png");
		background-position: center;
		background-repeat: no-repeat;
		background-size: 25px;
		filter: invert(1);
	}
	.content {
	flex-direction: column;
	margin-top: 80px;
    }
	.textBox {
	position: relative;
	max-width: 100%;
	padding-right: 20px;
    }
	.textBox h2 {
	font-size: 1.5em;
    }
	.textBox a {
	font-size: 14px;
	padding: 8px 20px;
    }
	.content .imgBox1 {
	width: 100%;
	display: flex;
	padding-left: 10px;
	margin-top: 250px;
	justify-content: center;
    }
	
	.content .imgBox1 img {
	max-width: 500px;
    }
	
	.content .imgBox2 {
	width: 100%;
	display: flex;
	padding-left: 10px;
	margin-top: 270px;
	justify-content: center;
    }

    .content .imgBox2 img {
	max-width: 600px;
    }
	
	
	
	.content .bg1 {
	width: 100%;
	display: inline-block;
	padding-right: 0;
	justify-content: center;
	bottom: 10px;
	background-image: url("../img/road.png");
	animation: animate 25s linear infinite;
}
	
	.content1 {
	position: relative;
	width: 100%;
	/*display: flex;*/
	justify-content: space-between;
	align-items: center;
}
	
	.content1 .bg2 {
	width: 100%;
	display: inline-block;
	padding-right: 0;
	justify-content: center;
	bottom: 10px;
	background-image: url("../img/bg2.png");
}
	
	
	.content2 {
	position: relative;
	width: 100%;
	/*display: flex;*/
	justify-content: space-between;
	align-items: center;
}
	
	.content2 .bg3 {
	width: 100%;
	display: inline-block;
	padding-right: 0;
	justify-content: center;
	bottom: 10px;
	background-image: url("../img/bg3.png");
}
	
	.content3 {
	position: relative;
	width: 100%;
	/*display: flex;*/
	justify-content: space-between;
	align-items: center;
}
	
	.content3 .bg4 {
	width: 100%;
	display: inline-block;
	padding-right: 0;
	justify-content: center;
	bottom: 10px;
	background-image: url("../img/bg4.png");
}
	
	
	
	.thumb li img {
	max-width: 70px;
    }
	.sci {
	position: absolute;
	top: 50%;
	right: 0px;
	width: 50px;
	background: rgba(0,0,0,0.2);
	transform: translateY(-50%);
	justify-content: center;
	align-items: center;
    }
	
	
	/*media2*/
	.modal-wrap {
  width: auto;
  height: auto;
  position: fixed;
  left: 10%;
  top: 50%;
  transform: translate(-50%, -50%);
  padding: 0px;
  /*border: dashed thin #666;*/
  opacity: 0;
  animation: fadeIn 0.3s 0.3s ease-in-out forwards;
}

.modal__inner-wrap {
  transition: left 0s ease-in-out;
  position: absolute;
  display: flex;
  flex-wrap: no-wrap;
  width: 100%;
}
.modal {
  height: 20vh;
  width: 30vw;
  margin: 50px;
  display: inline-block;
  align-items: center;
 /* justify-content: center;
  background-color: #eaeaea;
  flex-grow: 0;
  flex-shrink: 0;*/
  opacity: 0.6;
  border-radius: 2vw;
  cursor: move;
  transform: scale(0.7);
  transition: all 0.3s ease-in;
}

.modal .modal__card-inner {
	width: 100%;
	display: flex;
	padding-left: 5px;
}

.modal .modal__card-inner img {
	max-width: 250px;
}

.modal > div {
  flex-shrink: 0;
  flex-grow: 0;
  width: 90%;
}
.modal.active {
  transform: scale(1);
  opacity: 1;
}
.modal.active:hover {
 /* box-shadow: 0 0 60px -20px darkblue;*/
}
	
	.tooltip {
  position: relative;
  display: inline-block;
  
  /*border-bottom: 1px dotted black;*/
}

.tooltip .tooltiptext {
  visibility: hidden;
  width: auto;
  font-size: 20px;
 /* background-color: #888888;*/
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;
  position: absolute;
  z-index: 2;
  bottom: 100%;
  left: 40%;
  margin-left: -60px;
  opacity: 0;
  transition: opacity 0.3s;
}

.tooltip .tooltiptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 40%;
  margin-left: -5px;
  border-width: 10px;
  border-style: solid;
  border-color: #888888 transparent transparent transparent;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}
	
	.textBox1 {
	position: relative;
	max-width: 600px;
	left: 50%;
	margin-bottom: 10px;
	bottom: 20px;
}
	
	
	.tooltip2 {
  position: relative;
  display: inline-block;
  
  /*border-bottom: 1px dotted black;*/
}

.tooltip2 .tooltiptext2 {
  visibility: hidden;
  width: auto;
  font-size: 30px;
 /* background-color: #888888;*/
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;
  position: absolute;
  z-index: 2;
  bottom: 100%;
  left: 50%;
  margin-left: -60px;
  opacity: 0;
  transition: opacity 0.3s;
}

.tooltip2 .tooltiptext2::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 40%;
  margin-left: -5px;
  border-width: 10px;
  border-style: solid;
  border-color: #888888 transparent transparent transparent;
}

.tooltip2:hover .tooltiptext2 {
  visibility: visible;
  opacity: 1;
}


.textBox1 a {
	display: inline-block;
	margin-top: 20px;
	padding: 8px 20px;
	background: #fff;
	color: #111;
	border-radius: 40px;
	font-weight: 500;
	letter-spacing: 1px;
	text-decoration: none;
	text-transform: uppercase;
}
	
	.textBox2 {
	position: relative;
	max-width: 600px;
	left: 70%;
	margin-bottom: 10px;
	bottom: 40px;
}


.textBox2 a {
	display: inline-block;
	margin-top: 20px;
	padding: 8px 20px;
	background: #fff;
	color: #111;
	border-radius: 40px;
	font-weight: 500;
	letter-spacing: 1px;
	text-decoration: none;
	text-transform: uppercase;
}
	
	.slider_p2 {
	width: 100%;
	margin-top: 230px;
}
	
	.testimonials .item img {
	width: 320px;
}
	

	/*slider_page3*/

#tabs {
  width: 300px;
  display: flex;
  position: relative;
  margin: 0 auto;
  margin-top: 50px;
  height: auto;
  min-height: 800px;
  max-height: 800px;
  overflow: hidden;
}

#tabs ul {
  position: relative;
  display: inline-block;
  margin: 0;
  padding: 0;
  list-style-type: none;
  vertical-align: top;
  width: 30%;
}

#tabs ul li a {
  position: relative;
  display: block;
  width: 100%;
  text-decoration: none;
  color: #fff;
  border-top: solid 1px #e9e9e9;
  padding: 10px 5px;
  z-index: 1;
  opacity: .5;
  -webkit-transition: 0.3s ease;
  -moz-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
}

#tabs ul li:focus, a:focus {
  outline: none;
}

#tabs ul li:nth-child(1) a {
  border-top: none;
}

#tabs ul li a.active {
  opacity: 1;
}

.para-a {
  font-weight: bold;
  margin-top: 1px;
  padding: 0;
  text-transform: uppercase;
  font-size: 6px;
  letter-spacing: 1px;
  border: none;
  font-family: 'Montserrat';
  color: #2b2b2b;
}

.tag {
  position: relative;
  width: 100%;
}

.icon {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  /*background: #c7c7c7;
  border-radius: 100%;*/
  vertical-align: middle;
}

.block {
  position: absolute;
  width: 10px;
  height: 10px;
  vertical-align: middle;
  border: solid 2px #7b7b7b;
  border-radius: 5px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.circle {
  position: absolute;
  padding: 2px;
  border: solid 2px #7b7b7b;
  border-radius: 100%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.title {
  display: inline-block;
  text-transform: uppercase;
  font-weight: bold;
  padding: 0 10px;
  font-size: 15px;
  width: 10pc;
  height: auto;
  background: #fff;
  border-radius: 10px;
  vertical-align: middle;
  color: #000;
}

	.addon {
	position: relative;
    width: 100%;
	font-size: 10px;
    margin-left: 10px;
}



.addon h2:hover {
	background: #64BBAF;
	width: 70px;
	border-radius: 10px;
}

/*.addon {
  position: relative;
  width: 100%;
  top: -25px;
  margin-left: 10px;
  letter-spacing: 0;
  font-size: 10px;
  color: #9b9b9b;
  opacity: 0;
  font-family: 'Open Sans';
}

.addon.fadein {
  opacity: 2;
}*/

.browser {
  width: 100%;
  height: 95%;
  position: absolute;
  /*border-style: solid;
  border-width: 2px 0 2px 2px;
  border-color: #7b7b7b transparent #7b7b7b #7b7b7b;*/
  right: 0;
  border-radius: 10px 0 0 10px;
  overflow: hidden;
}

.top-bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 20px;
  line-height: 20px;
  /*background: #fff;
  border-bottom: solid 2px #7b7b7b;*/
  z-index: 2;
}

/*.dot {
  position: relative;
  display: inline-block;
  padding: 4px;
  background: #c7c7c7;
  border-radius: 100%;
}

.dot:nth-child(1) {
  margin-left: 7px;
}*/

#tabs-1, #tabs-2, #tabs-3 {
  position: absolute;
  background: no-repeat;
  top: 240px;
  right: 0;
  width: 100%;
  height: 100%;
}

#tabs-1 {
  background-image: url("../img/ic.png");
  background-size: 300px;
}

#tabs-2 {
  background-image: url("../img/75mv.png");
  background-size: 300px;
}

#tabs-3 {
  background-image: url("../img/f8.png");
  background-size: 300px;
}

	
	
	
	 body header .header-inner {
    padding: 12px 1.5%;
  }
   
  body header .header-inner .logo {
    position: relative;
    display: inline;
    width: auto;
    height: auto;
    float: left;
  }
  body header .header-inner .logo a {
    position: relative;
    display: inline;
    width: auto;
    height: auto;
    color: #FFFFFF;
    outline: 0px none;
    outline: 0px;
    text-decoration: none;
    transition: all 0.35s ease-in-out;
    text-transform: uppercase;
  }
  body header .header-inner .logo a:hover {
    color: rgba(255, 255, 255, 0.45);
  }
  body header .header-inner .logo a span {
    font-weight: 700;
  }
  body header .header-inner nav {
    position: relative;
    display: inline;
    margin: 0;
    padding: 0;
    list-type-style: none;
    float: right;
  }
  body header .header-inner nav li {
    position: relative;
    display: inline;
    margin-left: 16px;
  }
 
  body header .header-inner nav li a {
   font-family: 'Oswald', sans-serif;
    position: relative;
    font-size: 13px;
    color: #FFFFFF;
    text-decoration: none;
    line-height: 24px;
    transition: all 0.35s ease-in-out;
  }
  
  body header .header-inner nav li a span {
    position: relative;
    z-index: 2;
  }
  body header .header-inner nav li a:hover {
    color: rgba(255, 255, 255, 0.45);
  }
  body section.slideshow {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    height: 100vh;
    margin: 0 auto;
    visibility: hidden;
    overflow: hidden;
  }
  body section.slideshow ul.navigation {
    position: absolute;
    display: block;
    width: 640px;
    height: 640px;
    padding: 0;
    margin: 0;
    left: -230px;
    top: 50%;
    margin-top: -320px;
    z-index: 10;
  }
  
  body section.slideshow ul.navigation li.navigation-item {
    position: absolute;
    display: inline-block;
    overflow: hidden;
    width: 120px;
    height: 120px;
    padding: 10px;
    text-align: center;
    cursor: pointer;
    border-radius: 50%;
    transition: border 0.6s ease-in-out;
  }
  
  body section.slideshow ul.navigation li.navigation-item .rotate-holder {
    position: fixed;
    display: block;
    width: 0;
    height: 0;
    left: -9999px;
    top: -9999px;
  }
  body section.slideshow ul.navigation li.navigation-item .background-holder {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border-radius: 50%;
    background-repeat: no-repeat;
    background-position: center center;    
    background-size: cover;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.6s ease-in-out, visibility 0.6s ease-in-out;
  }
  body section.slideshow ul.navigation li.navigation-item:hover .background-holder {
    opacity: 0.75;
  }
  body section.slideshow ul.navigation li.navigation-item.active .background-holder {
    opacity: 0;
    visibility: hidden;
  }
  body section.slideshow .detail {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 8;
  }
  body section.slideshow .detail .detail-item {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
  }
  body section.slideshow .detail .detail-item .headline {
    position: absolute;
    display: block;
    width: 100%;
    max-width: calc(100% - 480px);
    height: 126px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    overflow: visible;
    white-space: nowrap;
    box-sizing: border-box;
    z-index: 2;
  }
 
  body section.slideshow .detail .detail-item .headline .letter {
    font-family: 'Oswald', sans-serif;
    position: relative;
    display: inline-block;
    opacity: 0;

    visibility: hidden;
    color: #FFFFFF;
    font-size: 132px;
    line-height: 110px;
    font-weight: 900;
    font-kerning: none;
    white-space: nowrap;
    box-sizing: border-box;
      text-transform: uppercase;
  }
  
  body section.slideshow .detail .detail-item .background {
    position: absolute;
    display: block;
    width: 100%;
    width: calc(100% + 100px);
    height: 100%;
    height: calc(100% + 100px);
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    overflow: visible;
    background-repeat: no-repeat;
    background-position: center center;     
    background-size: cover;
    z-index: 1;
  }
  body section.slideshow .detail .detail-item .background::before {
    content: ""; 
    background: linear-gradient(to right, black 0%, rgba(0, 0, 0, 0) 90%);   
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
      
  }
  body section.slideshow .detail .detail-item.active {
    opacity: 1;
    visibility: visible;
  }

	
	
	/*page4*/
	
	.slider {
  position: relative;
  display: block;
  width: 700px;
  width: 150vw;
  height: 100%;
  height: 77vh;
  bottom: -7px;
  overflow: hidden;
}
.slider__nav-bar {
  position: absolute;
  width: 160px;
  height: 160px;
  bottom: -100px;
  left: 50%;
  transform: translateX( -50% );
  border-radius: 90px;
  text-align: center;
 /* background: #ccc;*/
  z-index: 100;
}
.slider__arrow {
  position: absolute;
  top: 50%;
  transform: translateY( -50% );
  width: 64px;
  height: 64px;
  transition: 0.2s;
  cursor: pointer;
  z-index: 100;
  opacity: 0.8;
}
.slider__arrow:hover {
  opacity: 1;
}
.slider__arrow_prev {
  left: 5px;
  width: 20px;
  height: 30px;
  background-image:url("../img/left.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: auto 30px;
}
.slider__arrow_next {
  right: 5px;
  width: 20px;
  height: 30px;
  background-image: url("../img/right.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: auto 30px;
}
.nav-control {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  opacity: 0.5;
  width: 10px;
  height: 10px;
  transition: 0.2s;
  cursor: pointer;
  background-image: url("../assets/img/dot.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 20px 20px;
  margin-top: 50px;
  z-index: 3;
}
.nav-control:hover {
  opacity: 0.8;
}
.nav-control_active {
  opacity: 1;
}
.slider-list {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
  margin-top: 190px;
  padding: 0;
  list-style-type: none;
}
.slider-list::before {
  content: '';
  display: block;
  padding-top: calc(9 / 16 * 100%);
}
.slider-list__item {
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16vw;
  color: #000;
  will-change: transform;
  z-index: 1;
}
.slider-list__item .back__element {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 1;
}
.slider-list__item .back__element img {
  position: relative;
  display: block;
  width: 100%;
  max-width: 640px;
  height: auto;
  top: 40%; left: 50%;
  transform: translate( -50%, -50% );
}
.slider-list__item .main__element {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 3;
}
.slider-list__item .main__element img {
  position: relative;
  display: block;
  width: 100%;
  max-width: 450px;
  height: auto;
  top: 40%; left: 50%;
  transform: translate( -50%, -50% );
}
.slider-list__item .front__element {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 4;
  /* transform: scale(0); */
}
.slider-list__item .front__element img {
  position: relative;
  display: block;
  width: 100%;
  max-width: 590px;
  height: auto;
  top: 40%; left: 50%;
  transform: translate( -50%, -50% );
}
.slider-list__item .title__element {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 2;
}
.slider-list__item .title__element .title {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  top: 50%; left: 50%;
  transform: rotate(-15deg) translate( -45%, -125% );
  font-family: 'Molle', cursive;
  color: #eef2f3;
  text-align: center;
}
.slider-list__item .more__element {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 10;
}
.slider-list__item .more__element .content {
  position: relative;
  display: block;
  width: 100%;
  max-width: 1000px;
  height: auto;
  margin-bottom: 100px;
  margin: 0 auto;
  padding: 0 0;
  font-weight: 600;
  color: #FFFFFF;
  text-align: left;
}
.slider-list__item .more__element .content .headline {
  position: relative;
  display: block;
  max-width: 500px;
  font-family: 'Molle', cursive;
  font-size: 25px;
  line-height: 46px;
}
.slider-list__item .more__element .content .excerpt {
  position: relative;
  display: block;
  max-width: 240px;
  font-family: 'Open Sans Condensed', sans-serif;
  font-size: 16px;
  line-height: 24px;
  padding: 8px 0 16px;
}
.slider-list__item .more__element .content .link {
  position: relative;
  display: block;
  font-family: 'Open Sans Condensed', sans-serif;
  width: 120px;
  height: 48px;
  border-radius: 24px;
  font-size: 14px;
  line-height: 24px;
  box-shadow: 0 14px 28px rgba(0,0,0,0.05), 0 10px 10px rgba(0,0,0,0.06);
  transition: all 0.4s ease;
}
.slider-list__item .more__element .content .link .fill {
  position: absolute;
	background-image: linear-gradient(to right, #d43325, #f36e67);
	background-size: 150% 150%;
	height: 48px;
	width: 120px;
	border-radius: 24px;
	margin: 0;
	z-index: -1;
  transition: all 0.4s ease;
  -webkit-animation: gradient 3s ease infinite;
	-moz-animation: gradient 3s ease infinite;
	animation: gradient 3s ease infinite;
}
.slider-list__item .more__element .content .link .fill.fill-dark {
  background-image: linear-gradient(to right, #252228, #848f9e);
} 
.slider-list__item .more__element .content .link a {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  color: #dde3e6;
  font-weight: 700;
  text-align: center;
  line-height: 48px;
  text-decoration: none;
  outline: 0px none;
  outline: 0px;
  z-index: 2;
}
.slider-list__item .more__element .content .link:hover {
  box-shadow: 0 19px 38px rgba(0,0,0,0.05), 0 15px 12px rgba(0,0,0,0.06);
}
.slider-list__item_active {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  z-index: 2;
}
	
	#wrapMe {
  width: 100%;
  height: 80vh;
  top: 30px;
  min-height: 450px;
  background-image:linear-gradient(180deg, var(--colorOne) 0%, var(--colorTwo) 70%);
  position: relative;
  overflow: hidden;
  display: flex;
  font-family:var(--fontFamily);
}
	
	.slide h1 {
  font-size:25px;
  color: #fff;
  line-height:100%;
  letter-spacing:2px;
  margin:0;
}
	
/*	.containertop {
	position: relative;
	width: auto;
	left: 10px;
	top: 25px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	transform: skewY(-1deg);
}

.containertop .card {
	position: relative;
	width: 250px;
	height: 270px;
	background: #fff;
	transition: 0.5s;
}

.containertop .card:before{
	content: '';
	position: absolute;
	top: -33px;
	left: 0;
	width: 100%;
	height: 20px;
	background: #00c0f6;
	transform-origin: bottom;
	transform: skewX(45deg);
	transition: 0.5s;
}

.containertop .card:after{
	content: '';
	position: absolute;
	top: -33px;
	left: -20px;
	width: 20px;
	height: 86%;
	background: #00c0f6;
	transform-origin: left;
	transform: skewY(45deg);
	transition: 0.5s;
	border-bottom: 52px solid #d9d9d9;
}

.containertop .card:hover {
	transform: translateY(-30px);
}

.containertop .card .imgBx {
	position: relative;
	width: 250px;
	height: 250px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}

.containertop .card .imgBx img {
	max-width: 250px;
}

.containertop .card .imgBx h3 {
	position: relative;
	color: #000;
	margin-top: 15px;
}

.containertop .card .contenttop {
	position: relative;
	width: 100%;
	height: 20px;
	right: 100px;
	padding: 10px;
	color: #777;
	text-align: center;
}

.containertop .card .contenttop:before {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 200px;
	background: linear-gradient(transparent,transparent,rgba(0,0,0,.1));
	transform: skewX(45deg);
	transition: 0.5s;
	pointer-events: none;
	z-index: -1;
}

.containertop .card:hover .contenttop:before {
	transform: translateY(40px) skewX(45deg);
	filter: blur(5px);
	opacity: 0.5;
}

.containertop .card:nth-child(1){
	z-index: 4;
}

.containertop .card:nth-child(2){
	z-index: 3;
}

.containertop .card:nth-child(3){
	z-index: 2;
}

.containertop .card:nth-child(4){
	z-index: 1;
}


.containertop .card2 {
	position: relative;
	width: 250px;
	height: 270px;
	background: #fff;
	transition: 0.5s;
}

.containertop .card2:before{
	content: '';
	position: absolute;
	top: -33px;
	left: 0;
	width: 100%;
	height: 20px;
	background: #00c0f6;
	transform-origin: bottom;
	transform: skewX(45deg);
	transition: 0.5s;
}

.containertop .card2:after{
	content: '';
	position: absolute;
	top: -33px;
	left: -20px;
	width: 20px;
	height: 86%;
	background: #00c0f6;
	transform-origin: left;
	transform: skewY(45deg);
	transition: 0.5s;
	border-bottom: 52px solid #d9d9d9;
}

.containertop .card2:hover {
	transform: translateY(-40px);
}

.containertop .card2 .imgBx {
	position: relative;
	width: 250px;
	height: 250px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}

.containertop .card2 .imgBx img {
	max-width: 250px;
}

.containertop .card2 .imgBx h3 {
	position: relative;
	color: #000;
	margin-top: 15px;
}

.containertop .card2 .contenttop {
	position: relative;
	width: 100%;
	height: 20px;
	right: 100px;
	padding: 10px;
	color: #777;
	text-align: center;
}

.containertop .card2 .contenttop:before {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 200px;
	background: linear-gradient(transparent,transparent,rgba(0,0,0,.1));
	transform: skewX(45deg);
	transition: 0.5s;
	pointer-events: none;
	z-index: -1;
}

.containertop .card2:hover .contenttop:before {
	transform: translateY(40px) skewX(45deg);
	filter: blur(5px);
	opacity: 0.5;
}

.containertop .card2:nth-child(1){
	z-index: 4;
}

.containertop .card2:nth-child(2){
	z-index: 3;
}

.containertop .card2:nth-child(3){
	z-index: 2;
}

.containertop .card2:nth-child(4){
	z-index: 1;
}


.containertop .card3 {
	position: relative;
	width: 250px;
	height: 270px;
	background: #fff;
	transition: 0.5s;
}

.containertop .card3:before{
	content: '';
	position: absolute;
	top: -33px;
	left: 0;
	width: 100%;
	height: 20px;
	background: #00c0f6;
	transform-origin: bottom;
	transform: skewX(45deg);
	transition: 0.5s;
}

.containertop .card3:after{
	content: '';
	position: absolute;
	top: -33px;
	left: -20px;
	width: 20px;
	height: 86%;
	background: #00c0f6;
	transform-origin: left;
	transform: skewY(45deg);
	transition: 0.5s;
	border-bottom: 52px solid #d9d9d9;
}

.containertop .card3:hover {
	transform: translateY(30px);
}

.containertop .card3 .imgBx {
	position: relative;
	width: 250px;
	height: 250px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}

.containertop .card3 .imgBx img {
	max-width: 250px;
}

.containertop .card3 .imgBx h3 {
	position: relative;
	color: #000;
	margin-top: 15px;
}

.containertop .card3 .contenttop {
	position: relative;
	width: 100%;
	height: 20px;
	right: 100px;
	padding: 10px;
	color: #777;
	text-align: center;
}

.containertop .card3 .contenttop:before {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 200px;
	background: linear-gradient(transparent,transparent,rgba(0,0,0,.1));
	transform: skewX(45deg);
	transition: 0.5s;
	pointer-events: none;
	z-index: -1;
}

.containertop .card3:hover .contenttop:before {
	transform: translateY(40px) skewX(45deg);
	filter: blur(5px);
	opacity: 0.5;
}

.containertop .card3:nth-child(1){
	z-index: 4;
}

.containertop .card3:nth-child(2){
	z-index: 3;
}

.containertop .card3:nth-child(3){
	z-index: 2;
}

.containertop .card3:nth-child(4){
	z-index: 1;
}


.containertop .card4 {
	position: relative;
	width: 250px;
	height: 270px;
	background: #fff;
	transition: 0.5s;
}

.containertop .card4:before{
	content: '';
	position: absolute;
	top: -33px;
	left: 0;
	width: 100%;
	height: 20px;
	background: #00c0f6;
	transform-origin: bottom;
	transform: skewX(45deg);
	transition: 0.5s;
}

.containertop .card4:after{
	content: '';
	position: absolute;
	top: -33px;
	left: -20px;
	width: 20px;
	height: 86%;
	background: #00c0f6;
	transform-origin: left;
	transform: skewY(45deg);
	transition: 0.5s;
	border-bottom: 52px solid #d9d9d9;
}

.containertop .card4:hover {
	transform: translateY(30px);
}

.containertop .card4 .imgBx {
	position: relative;
	width: 250px;
	height: 250px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}

.containertop .card4 .imgBx img {
	max-width: 250px;
}

.containertop .card4 .imgBx h3 {
	position: relative;
	color: #000;
	margin-top: 15px;
}

.containertop .card4 .contenttop {
	position: relative;
	width: 100%;
	height: 20px;
	right: 100px;
	padding: 10px;
	color: #777;
	text-align: center;
}

.containertop .card4 .contenttop:before {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 200px;
	background: linear-gradient(transparent,transparent,rgba(0,0,0,.1));
	transform: skewX(45deg);
	transition: 0.5s;
	pointer-events: none;
	z-index: -1;
}

.containertop .card4:hover .contenttop:before {
	transform: translateY(40px) skewX(45deg);
	filter: blur(5px);
	opacity: 0.5;
}

.containertop .card4:nth-child(1){
	z-index: 4;
}

.containertop .card4:nth-child(2){
	z-index: 3;
}

.containertop .card4:nth-child(3){
	z-index: 2;
}

.containertop .card4:nth-child(4){
	z-index: 1;
}*/
	
.boxes {
	position: relative;
	width: 100%;
	height: 100vh;
	background-image: url("../img/bgtop2.png");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}
	

	
}





@media screen and (max-width:1110px) {
  #layMe:before {
    width:75%;
    height:50%;
    left: 0%; 
    transform:none;
    border-top-left-radius:0;
    border-bottom-left-radius:0;
  }
  #layMe:after {
    height:40%;
    top:10%;
    transform:none;
    border-top-right-radius:0;
    border-bottom-right-radius:0;
  }
   
  .showing {
    flex-direction:column;
    margin:0 auto;
  }
  
  .slide img {
    display:flex;
    width:100%;
    max-width:100%;
    margin:0 auto;
  }
  .slide .vehicle-details {
    display:block;
    margin: 0 auto;
    text-align:center;
  }
  .slide .btn {
    margin:25px auto;
  }
  .swapBtn:nth-child(2) {
    top:25%;
    transform:translateX(0%) scale(.75);
  }
  .swapBtn:nth-child(3) {
    right:0;
    top:25%;
    transform:translateX(0%) scale(.75);
  }
  @keyframes imgMove {
    0% { margin-left:0; margin-top:-10%; opacity:0; }
  }

  @keyframes deetsMove {
    0% { margin:0 auto; opacity:0; }
  }
	
}

@media screen and (max-width:520px) {
  .v-info-item {
    border-bottom:1px dotted var(--colorOne);
    border-right:0 !important;
  }
  .swapBtn {
    top:15% !important;
  }
  #layMe:before {
    display:none;
  }
  #layMe:after {
    display:none;
  }
	
		#wrapMe {
  width: 100%;
  height: 80vh;
  top: 290px;
  min-height: 450px;
  background-image:linear-gradient(180deg, var(--colorOne) 0%, var(--colorTwo) 70%);
  position: relative;
  overflow: hidden;
  display: flex;
  font-family:var(--fontFamily);
}
	
	.content .imgBox1 {
	width: 100%;
	display: flex;
	padding-left: 10px;
	margin-top: 350px;
	justify-content: center;
    }
	
	.content .imgBox1 img {
	max-width: 290px;
    }
	.content .imgBox2 {
	width: 100%;
	display: flex;
	padding-left: 10px;
	margin-top: 380px;
	justify-content: center;
    }
	.content .imgBox2 img {
	max-width: 290px;
    }
	
	
	.slider-list__item .back__element {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 1;
}
.slider-list__item .back__element img {
  position: relative;
  display: block;
  width: 100%;
  max-width: 440px;
  height: auto;
  top: 45%; left: 50%;
  transform: translate( -50%, -50% );
}
.slider-list__item .main__element {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 3;
}
.slider-list__item .main__element img {
  position: relative;
  display: block;
  width: 100%;
  max-width: 220px;
  height: auto;
  top: 45%; left: 50%;
  transform: translate( -50%, -50% );
}
.slider-list__item .front__element {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 4;
  /* transform: scale(0); */
}
.slider-list__item .front__element img {
  position: relative;
  display: block;
  width: 100%;
  max-width: 300px;
  height: auto;
  top: 45%; left: 50%;
  transform: translate( -50%, -50% );
}
	
	
	



	

}