@charset "utf-8";
/* CSS Document*/
/* ----- Common CSS style ----- */
* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}

video {
    width: 100%;
    height: auto;
}
a {
	color: #000;
	text-decoration: none;
	cursor: pointer;
}
table {
    border-spacing: 0px;
}
strong {
	font-weight: bold;
}
ol,ul {
    list-style: none;
    margin:0;
    padding:0;
}
h1,h2,h3,h4,h5,h6 {
     font-size: 100%;
	 text-align: center;
     color: #FFF;
}
html {
	scroll-behavior: smooth;
}
.clear {
	clear: both;
}

body {
	width: 100%;
	font-family: Helvetica, Tahoma, Arial, STXihei, "华文细黑", "Microsoft YaHei", "微软雅黑", SimSun, "宋体", Heiti, "黑体", sans-serif;
	color: #333;
	font-size: 1em;
	font-weight: 400;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
h1 {
	font-size: 3.0em;
	color: #ff5f15;
	font-style: italic;
	line-height: 2;
	letter-spacing: 1px;
}
h2 {
	font-size: 2.3em;
	line-height: 1;
	color: #ff5f15;
	letter-spacing: 0px;
}
h3 {
	font-size: 1.5625em;
	color: #fff;
	line-height: 1.3;
}
h4 {
	font-size: 1.2em;
	color: rgb(51, 51, 51);
	line-height: 1.3;
	margin: 0px auto;
}
h5 {
	font-size: 0.875em;
	color: #fff;
	line-height: 1.5;
}
h6 {
	font-size: 0.625em;
	color: #fff;
	line-height: 1;
}
p {
	font-size: 1em;
}
img {
	width: 100%;
}

/* ----- First page slider horizontal CSS style ----- */
.horizontal-container {
	position: relative;
	max-width: 100%;
	margin: 50px auto 0;
	border: 1px dashed green; 
	background-color: pink;
}
.sequence-prev, .sequence-next {
	width: 100%;
}


/* ----- First page carousel CSS style ----- */
/* Slideshow container */
.slideshow-container {
	position: relative;
	max-width: 100%;
	margin: 50px auto 0;
}
.slideshow-container a {
	position: absolute;
	left: 50%;
	bottom: 0px;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	width: 45px;
	height: 45px;
	cursor: pointer;
	-webkit-animation: clickdown 6s infinite;
	animation: clickdown 6s infinite;
}
.slideshow-container a:hover {
	opacity: 0.5;
}
@keyframes clickdown {
	0% {bottom: 25px; width: 45px;}
	25% {bottom: 0px; width: 45px;}
	50% {bottom: 0px; width: 45px;}
	75% {bottom: 0px; width: 45px;}
	100% {bottom: 0px; width: 45px;}
}
@media  screen and (max-width: 1199px) {
	.slideshow-container a {
		display: none;
	}
}

/* Next & previous buttons */
.prev, .next {
	cursor: pointer;
	position: absolute;
	top: 50%;
	width: auto;
	margin-top: -22px;
	padding: 16px;
	color: white;
	font-weight: bold;
	font-size: 18px;
	transition: 0.6s ease;
	border-radius: 0 3px 3px 0;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
	background-color: rgba(0,0,0,0.8);
}

/* Number text */
.numbertext {
	color: #fff;
	font-size: 1em;
	font-weight: bold;
	padding: 8px 12px;
	position: absolute;
	bottom: 10px;
	right: 10px;
}

/* Fading animation */
.fade {
	-webkit-animation-name: fade;
	-webkit-animation-duration: 3s;
	animation-name: fade;
	animation-duration: 3s;
}

@-webkit-keyframes fade {
	from {opacity: 0.1} 
	to {opacity: 1}
}

@keyframes fade {
	from {opacity: 0.1} 
	to {opacity: 1}
}

/* ----- Home page Three columns Portfolio, Website & Rotation CSS style ----- */
#portfolio-container, #website-container, #rotation-container {
	width: 100%;
	background: #f1f1f1;
	padding: 50px 0 100px;
}
#photographySlider, #webSlider, #rotationSlider {
	width: 90%;
	position: relative;
	margin: 0 auto;
}
.portfolio-title h4 {
	width: 70%;
	line-height: 1.5;
	color: #999;
	font-size: 1.125em;
	text-align: center;
	padding: 10px 0px 50px;
	margin: 0 auto;
}
#photographySlider, #webSlider, #rotationSlider {
	position: relative;
}
#photographySlider .MS-content, #webSlider .MS-content, #rotationSlider .MS-content {
	overflow: hidden;
	white-space: nowrap;
	margin: 0 4%;
}
#photographySlider .MS-content .item, #webSlider .MS-content .item, #rotationSlider .MS-content .item {
	position: relutive;
	width: 33.3%;
	display: inline-block;
	background: #f1f1f1;
	white-space: normal;
	vertical-align: top;
	border: 0px;
	padding: 0 5px;
	margin: 0px;
} 
.photo-zoom {
	position: relative;
	overflow: hidden;
}
.photo-zoom img {
	width: 100%;
	height: auto;
	margin-bottom: -5px;
	-webkit-transition:all 0.7s ease-in-out;
	-moz-transition:all 0.7s ease-in-out;
	transition:all 0.7s ease-in-out;
}
.photo-zoom:hover img {
	-webkit-transform:scale(1.15,1.15);
	-moz-transform:scale(1.15,1.15);
	-ms-transform:scale(1.15,1.15);
	-o-transform:scale(1.15,1.15);
	transform: scale(1.15,1.15);
}
.portfolio-number, .web-number, .rotation-number {
	position: absolute;
	bottom: 10px;
	right: 10px;
	color: #fff;
	background: rgba(0,0,0,0.5);
	border-radius: 0px 8px;
	padding: 2px 5px;
	font-size: 14px;
	font-weight: bold;
	z-index: 2;
}
.photo-caption, .site-caption, .rotation-caption {
	width: 100%;
	background: #f1f1f1;
}
.photo-caption h2, .site-caption h2, .rotation-caption h2{
	text-align: left;
	font-size: 20px;
	font-style: italic;
	color: #666;
	letter-spacing: 0px;
	padding: 10px 5px 5px;
}
.photo-caption p, .site-caption p, .rotation-caption p {
	text-align: left;
	color: #999;
	letter-spacing: 0px;
	padding: 0 5px 5px;
}
#photoSlider-controls button, #webSlider-controls button, #rotationSlider-controls button {
	position: absolute;
	font-size: 50px;
	border: none;
	color: rgba(0, 0, 0, 0.4);
	background: none;
	cursor: pointer;
	transition: 0.2s linear;
}
#photoSlider-controls button {
	top: 30%;
	-webkit-transform: translate(0, -30%);
	-ms-transform: translate(0, -30%);
	transform: translate(0,-30%);	
}
#webSlider-controls button, #rotationSlider-controls button {
	top: 35%;
	-webkit-transform: translate(0, -35%);
	-ms-transform: translate(0, -35%);
	transform: translate(0,-35%);	
}
#photoSlider-controls button:hover, #webSlider-controls button:hover, #rotationSlider-controls button:hover {
	color: rgba(0,0,0,0.7);
}
.MS-left {
	left: 0;
}
.MS-right {
	right: 0;
}
.carousel-indicator {
	position: absolute;
	right: 20px;
	bottom: 15px;
}
.dot {
	width: 18px;
	height: 4px;
	background-color: #bbb;
	box-shadow: 0.5px 0.5px 1px #fff;
	display: inline-block;
	transition: background-color 0.6s ease;
} 
.active {
	background-color: #ff5f15;
}

@media screen and (max-width: 1199px) {
	#photographySlider, #webSlider,  #rotationSlider {
		width: 95%;
	}
	#photographySlider .MS-content,  #webSlider .MS-content, #rotationSlider .MS-content {
		margin: 0 4%;
	}
	#photographySlider .MS-content .item, #webSlider .MS-content .item,  #rotationSlider .MS-content .item {
		width: 33.3%;
	}
}
@media screen and (max-width: 991px) {
	h1 {
		line-height: 1;
	}
	#portfolio-container, #website-container, #rotation-container {
		padding: 50px;
	}
	#photographySlider,  #webSlider,  #rotationSlider {
		width: 95%;
	}
	#photographySlider .MS-content, #webSlider .MS-content  #rotationSlider .MS-content {
		margin: 0 6%;
	}
	.portfolio-title p {
		width: 80%;
	}
	#photographySlider .MS-content .item, #webSlider .MS-content .item, #rotationSlider .MS-content .item {
		width: 50%;
	}
}
@media screen and (max-width: 767px) {
	#photographySlider, #webSlider,  #rotationSlider {
		width: 100%;
	}
	#photographySlider .MS-content, #webSlider .MS-content, #rotationSlider .MS-content {
		margin: 0 6%;
	}
	.portfolio-title p {
		width: 90%;
		
	}
	#photographySlider .MS-content .item, #webSlider .MS-content .item, #rotationSlider .MS-content .item{
		width: 50%;
	}
}
@media screen and (max-width: 639px) {
	#photographySlider, #webSlider,  #rotationSlider {
		width: 100%;
	}
	#photographySlider .MS-content .item,  #webSlider .MS-content .item,  #rotationSlider .MS-content .item{
		width: 100%;
	}
	#photographySlider .MS-content,  #webSlider .MS-content,  #rotationSlider .MS-content {
		margin: 0 8%;
	}
	.portfolio-title p {
		width: 85%;
		line-height: 1.3;
	}
	#MS-controls button {
		top: 40%;
	}
}
@media screen and (max-width: 479px) {
	#photographySlider, #webSlider, #rotationSlider {
		width: 100%;
	}
	#photographySlider .MS-content, #webSlider .MS-content,  #rotationSlider .MS-content {
		margin: 0 10%;
	}
	.portfolio-title p {
		width: 90%;
		line-height: 1.2;
	}
}

/* ----- Home page Video Work CSS style ----- */
.videowork-bg { 
	width: 100%;
	position: relative;
	overflow: hidden;
}
.videowork-show video {
	width: 100%;
	height: auto;
	margin-bottom: -3px;
}

.video-caption {
	position: absolute;
	top: 30%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	width: 70%;
	margin: 0 auto;
}
.video-caption p {
	color: #f1f1f1;
	font-size: 1.125em;
	text-align: center;	
	text-shadow: 1px 1px 1px rgba(0,0,0,0.6);
	padding: 20px 0 0;
}
.video-button {
	position: absolute;
	top: 65%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	width: 180px;
	height: 45px;
}
.button-overlay {
	width: 100%;
	height: 0;
	transition: .5s ease;
	background: rgba(255,255,255, 0.8);
	border-radius: 3px;
}
.video-button:hover .button-overlay {
	bottom: 0;
	height: 100%;
}
.button-overlay a {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 100%;
	width: 180px;
	height: 45px;
	color: #ff5f15;
	letter-spacing: 0px;
	font-size: 1.2em;
	font-weight: bold;
	padding-top: 12px;
	padding-left: 22px;
	border-radius: 3px;
	border: 1px solid #fff;
}
.vbtn {
	position: absolute;
	top: 50%;
	left: 50%;
}

@media screen and (max-width: 639px) {
	.video-caption {
		width: 100%;
	}
	.video-caption p {
		display: none;
		color: blue;
	}
}

/* --- Portfolio pages title & description style airshow, world, China, pride, sports and portrait -- */
.grid-wrap {
	width: 60%;
	clear: both;
	margin: 0 auto;
	padding: 0;
}
.grid {
	margin: 0 auto 30px;
	padding: 0;
	list-style: none;
	min-height: 500px;
}
.js .grid {
	background: url(../img/loading.gif) no-repeat 50% 100px;
}
.js .grid.loaded {
	background: none;
}
.grid li {
	display: inline-block;
	overflow: hidden;
	width: 260px;
	text-align: left;
	vertical-align: top;
}
.js .grid li {
	display: none;
	float: left;
}

.js .grid.loaded li {
	display: block;
}

/* Anchor and image */
.grid li > a, .grid li img {
	display: block;
	outline: none;
	border: none;
}
.grid li > a {
	position: relative;
	overflow: hidden;
	margin: 7px;
}
.grid .caption {
	position: absolute;
	bottom: 100%;
	left: 0;
	right: 0;
	width: 100%;
	height: 0;
	overflow: hidden;
	background: rgba(255,255,255,0.6);
	transition: .5s ease;
}
.grid li a img {
	width: 100%;
	height: auto;
	-webkit-transition: all 0.7s ease-in-out;
	-moz-transition: all 0.7s ease-in-out;
	transition: all 0.7s ease-in-out;
}
.grid li a:hover img {
	-webkit-transform: scale(1.15,1.15);
	-moz-transform: scale(1.15,1.15);
	-ms-transform: scale(1.15,1.15);
	-o-transform: scale(1.15,1.15);
	transform: scale(1.15,1.15);
}
.grid li a:hover .caption {
	bottom: 0;
	height: 100%;
}
.grid .caption h3 {
	position: absolute;
	top: 40%;
	left: 0;
	width: 100%;
	font-weight: bold;
	font-size: 15px;
	letter-spacing: 0px;
	color: #ff5f15;
	padding: 3px 8px;
	margin: 0;
}

/* Curtain element */
.grid .curtain {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 100;
	width: 100%;
	height: 100%;
	background: #96cdc8;
}
.grid.swipe-down .curtain {
	-webkit-transform: translate3d(0,-100%,0);
	transform: translate3d(0,-100%,0);
}
/* Swipe down */
.grid.swipe-down li.animate .curtain {
	-webkit-animation: swipeDown 1.5s cubic-bezier(0.6,0,0.4,1) forwards;
	animation: swipeDown 1.5s cubic-bezier(0.6,0,0.4,1) forwards;
}

@-webkit-keyframes swipeDown {
	0% {} /* fixes Chrome 35.0.1916.114 issue (easing breaks) */
	50%, 60% { -webkit-transform: translate3d(0,0,0); }
	100% { -webkit-transform: translate3d(0,100%,0); }
}

@keyframes swipeDown {
	0% {}
	50%, 60% { -webkit-transform: translate(0); transform: translate(0); }
	100% { transform: translate3d(0,100%,0); transform: translate3d(0,100%,0); }
}

/* Shadow */
.grid li.animate .curtain::after {
	-webkit-animation: fadeOut 1.5s ease forwards;
	animation: fadeOut 1.5s ease forwards;
	-webkit-animation-delay: inherit;
	animation-delay: inherit;
}

@-webkit-keyframes fadeOut {
	0% {} /* fixes Chrome 35.0.1916.114 issue (easing breaks) */
	50%, 60% { opacity: 1; }
	100% { opacity: 0; }
}

@keyframes fadeOut {
	0% {}
	50%, 60% { opacity: 1; }
	100% { opacity: 0; }
}

/* Hide image and title and show at half time */
.js .grid li img,
.js .grid li h3 {
	visibility: hidden;
}

.grid li.animate img,
.grid li.animate h3 {
	-webkit-animation: showMe 1.5s step-end forwards;
	animation: showMe 1.5s step-end forwards;
}

@-webkit-keyframes showMe {
	from { visibility: hidden; }
	60%, 100% { visibility: visible; }
}

@keyframes showMe {
	from { visibility: hidden; }
	60%, 100% { visibility: visible; }
}

.grid li.shown img,
.grid li.shown h3 {
	visibility: visible;
}

/* Lightbox gallery images zoom style for portfolio pages */
html.lb-disable-scrolling {
	overflow: hidden;
	position: fixed;
	height: 100vh;
	width: 100vw;
}

.lightboxOverlay {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 9999;
	background-color: black;
	filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
	opacity: 0.8;
	display: none;
}

.lightbox {
	position: absolute;
	left: 0;
	width: 100%;
	z-index: 10000;
	text-align: center;
	line-height: 0;
	font-weight: normal;
}

.lightbox .lb-image {
	display: block;
	height: auto;
	max-width: inherit;
	max-height: none;
	border-radius: 3px;

	border: 5px solid white;
}

.lightbox a img {
	border: none;
}
.lb-outerContainer {
	position: relative;
	*zoom: 1;
	width: 250px;
	height: 250px;
	margin: 0 auto;
	border-radius: 4px;
}
.lb-outerContainer:after {
	content: "";
	display: table;
	clear: both;
}

.lb-loader {
	position: absolute;
	top: 43%;
	left: 0;
	height: 25%;
	width: 100%;
	text-align: center;
	line-height: 0;
}

.lb-cancel {
	display: block;
	width: 32px;
	height: 32px;
	margin: 0 auto;
	background: url(../images/icons/loading.gif) no-repeat;
}

.lb-nav {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	z-index: 10;
}

.lb-container > .nav {
	left: 0;
}

.lb-nav a {
	outline: none;
}

.lb-prev, .lb-next {
	height: 100%;
	cursor: pointer;
	display: block;
}

.lb-nav a.lb-prev {
	width: 34%;
	left: 0;
	float: left;
	background: url(../images/icons/prev.png) left 48% no-repeat;
	filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
	opacity: 0;
	-webkit-transition: opacity 0.6s;
	-moz-transition: opacity 0.6s;
	-o-transition: opacity 0.6s;
	transition: opacity 0.6s;
}

.lb-nav a.lb-prev:hover {
	filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
	opacity: 1;
}

.lb-nav a.lb-next {
	width: 64%;
	right: 0;
	float: right;
	background: url(../images/icons/next.png) right 48% no-repeat;
	filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
	opacity: 0;
	-webkit-transition: opacity 0.6s;
	-moz-transition: opacity 0.6s;
	-o-transition: opacity 0.6s;
	transition: opacity 0.6s;
}

.lb-nav a.lb-next:hover {
	filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
	opacity: 1;
}

.lb-dataContainer {
	margin: 0 auto;
	padding-top: 5px;
	*zoom: 1;
	width: 100%;
	border-bottom-left-radius: 4px;
	border-bottom-right-radius: 4px;
}

.lb-dataContainer:after {
	content: "";
	display: table;
	clear: both;
}

.lb-data {
	padding: 0 4px;
	color: #ccc;
}

.lb-data .lb-details {
	width: 85%;
	float: left;
	text-align: left;
	line-height: 1.1em;
}

.lb-data .lb-caption {
	font-size: 13px;
	font-weight: bold;
	line-height: 1em;
}

.lb-data .lb-caption a {
	color: #4ae;
}

.lb-data .lb-number {
	display: block;
	clear: left;
	padding-bottom: 1em;
	font-size: 12px;
	 color: #999999;
}

.lb-data .lb-close {
  display: block;
  float: right;
  width: 30px;
  height: 30px;
  background: url(../images/icons/close.png) top right no-repeat;
  text-align: right;
  outline: none;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
  opacity: 0.7;
  -webkit-transition: opacity 0.2s;
  -moz-transition: opacity 0.2s;
  -o-transition: opacity 0.2s;
  transition: opacity 0.2s;
}

.lb-data .lb-close:hover {
  cursor: pointer;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}

/* ----- Call to Action CSS style ----- */
.call-action {
	width: 100%;
	background-image: url(../images/DSC_0273e1.jpg);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	background-attachment: fixed;
}
.call-action-bg {
	width: 80%;
	text-align: center;
	padding: 150px 0;
	margin: 0px auto;
}
.call-action-left {
	width: 70%;
	float: left;
}
.call-action-left h4 {
	font-size: 1.2em;
	font-weight: bold;
	color: #f1f1f1;
	text-shadow: 1px 1px 1px rgba(0,0,0,0.6);
	letter-spacing: 2px;
	padding: 10px;
}
.call-action-right  {
	position: relative;
	width: 180px;
	height: 45px;
	float: left;	
}	
.action-overlay {
	width: 100%;
	height: 0;
	transition: .5s ease;
	background: rgba(255,255,255,0.8);
	border-radius: 3px;
}
.call-action-right:hover .action-overlay {
	bottom: 0;
	height: 100%;
}
.action-overlay a {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 100%;
	width: 180px;
	height: 45px;
	color: #ff5f15;
	letter-spacing: 1px;
	font-size: 1.2em;
	font-weight: bold;
	padding-top: 10px;
	border-radius: 3px;
	border: 1px solid #fff;
}

@media screen and (max-width: 767px) {
	.call-action-bg {
		padding: 50px 0;
	}
	.call-action-left {
		width: 100%;
		float: none;
	}
	.call-action-right {
		float: none;
		margin: 20px auto;
	}
}
@media screen and (max-width: 639px) {
	.call-action-bg {
		padding: 30px 0;
	}
}
@media screen and (max-width: 479px) {
	.call-action-left p {
		letter-spacing: 0;
	}
}

/* ----- Videowork, contact, login, mailsent, register, graphic-design, graphic-login, rotation-view, repassword & signout pages common CSS style ----- */
.videowork-page, .contact-page, .mailsent-page, .graphicdesign-page,
.login-page, .register-page, .signout-page, .repassword-page, .rotation-page,
.loginsys-page, .graphic-login{
	width: 100%;
	margin-top: 50px;
}
.videowork-title, .contact-title, .mailsent-title, .graphicdesign-title, .rotation-title,
.login-title, .register-title, .signout-title, .repassword-title, .graphic-loginTitle {
	position: relative;
	width: 100%;
}
.videowork-title img, .contact-title img, .mailsent-title img, .graphicdesign-title img,
.login-title img, .register-title img, .signout-title img, .repassword-title img,
 .graphic-loginTitle img, .rotation-title h2 {
	width: 100%;
	margin-bottom: -4px;
}
.videowork-title h2, .contact-title h2, .mailsent-title h2, .graphicdesign-title h2, .rotation-title h2,
.login-title h2, .register-title h2, .signout-title h2, .repassword-title h2,   .graphic-loginTitle h2 {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	width: 100%;
	text-shadow: 0 0 5px #000, 1px 1px 1px #000;
}

/* --- Loginsys --- */
.loginsys-container {
	width: 50%;
	background: #fff;
	margin: 50px auto;
	border-radius: 5px;
}
.loginsys-container .tablink {
	width: 33.33%;
	color: #000;
	font-size: 1em;
	cursor: pointer;
	background-color: #fff;
	outline: none;
	float: left;
	border: none;
	padding: 10px;
	margin: 0;
}
.loginsys-container .tablink:hover {
	background: #999;
}

.tabcontent {
	color: #333;
	display: none;
	padding: 50px;
}

#SignIn {
	background-color:#f1f1f1; 
	border-radius: 5px; 
}
#SignUp {
	background-color:#f1f1f1; 
	border-radius: 5px;
}
#ForgotPassword {
	background-color:#f1f1f1; 
	border-radius: 5px;
}

/* mailsent & sinout pages CSS style */
.mailsent-content {
	width: 50%;
	padding: 0;
	margin: 0 auto;
}
.signout-bg, .repassword-bg {
	width: 50%;
	margin: 0 auto;
}
.mailsent-content h2, .signout-bg h2 {
	font-size: 2.0em;
	line-height: 1.3;
	color:#999;
	text-align: left;
	border-bottom: 2px solid #999;
	padding-top: 50px;
}
.mailsent-content p, .signout-bg p {
	font-size: 1.2em;
	font-weight: 500;
	line-height: 2;
	color: #999;
	text-align: left;
	padding-bottom: 150px;
}

@media screen and (max-width: 991px) {
	.mailsent-content, .signout-bg {
		width: 70%;
	}
}
@media screen and (max-width: 639px) {
	.mailsent-content, .signout-bg {
		width: 80%;
	}
	.mailsent-content h2, .signout-bg h2 {
		font-size: 1.5em;
	}
}
@media screen and (max-width: 497px) {
	.mailsent-content h2, .signout-bg h2 {
		font-size: 1.2em;
	}
	.mailsent-content p, .signout-bg p {
		font-size: 1em;
	}
}

/* The Page of Graphic Design  CSS style */
.graphicdesign-content {
	width: 100%;
}
.texteffect-title h3, .infographic-title h3, .graphicposter-title h3, .graphicSRG-title h3 {
	color: rgba(0,0,0,0.7);
	text-align: left;
	font-size: 1.5em;
	padding: 5px 10px;
	margin: 30px 0;
	background: rgba(0,0,0,0.05);	
}
.graphicdesign-content {
	width: 80%;
	margin: 50px auto;
}
#texteffectSlider, #infographicSlider, 
#postergraphicSlider, #SRGgraphicSlider {
	width: 100%;
	position: relative;
	margin-bottom: 80px;
}
#texteffectSlider .MS-content, #infographicSlider .MS-content, 
#postergraphicSlider .MS-content, #SRGgraphicSlider .MS-content {
	overflow: hidden;
	white-space: nowrap;
	margin: 0 4%;
}
#texteffectSlider .MS-content .item, #infographicSlider .MS-content .item,  
#postergraphicSlider .MS-content .item {
  display: inline-block;
  width: 25%;
  position: relative;
  vertical-align: top;
  overflow: hidden;
  height: 100%;
  white-space: normal;
  padding: 5px;
}
#SRGgraphicSlider .MS-content .item {
  display: inline-block;
  width: 33.4%;
  position: relative;
  vertical-align: top;
  overflow: hidden;
  height: 100%;
  white-space: normal;
  padding: 5px;
}
#texteffectSlider .photo-zoom, #infographicSlider .photo-zoom,  
#postergraphicSlider .photo-zoom,  #SRGgraphicSlider .photo-zoom {
	position: relative;
	overflow: hidden;
	cursor: pointer;
}
#texteffectSlider .photo-zoom img, #infographicSlider .photo-zoom img, 
#postergraphicSlider .photo-zoom img,  #SRGgraphicSlider .photo-zoom img {
	width: 100%;
	height: auto;
	margin-bottom: -5px;
	-webkit-transition:all 0.7s ease-in-out;
	-moz-transition:all 0.7s ease-in-out;
	transition:all 0.7s ease-in-out;
}
#texteffectSlider .photo-zoom:hover img, #infographicSlider .photo-zoom:hover img, 
#postergraphicSlider .photo-zoom:hover img, #SRGgraphicSlider .photo-zoom:hover img {
	-webkit-transform:scale(1.15,1.15);
	-moz-transform:scale(1.15,1.15);
	-ms-transform:scale(1.15,1.15);
	-o-transform:scale(1.15,1.15);
	transform: scale(1.15,1.15);
}
#texteffectSlider .portfolio-number, #infographicSlider .portfolio-number, 
#postergraphicSlider .portfolio-number, #SRGgraphicSlider .portfolio-number {
	position: absolute;
	bottom: 10px;
	right: 10px;
	color: #fff;
	background: rgba(0,0,0,0.5);
	border-radius: 0px 8px;
	padding: 2px 5px;
	font-size: 14px;
	font-weight: bold;
	z-index: 2;
}
#texteffectSlider .photo-caption, #infographicSlider .photo-caption,  
#postergraphicSlider .photo-caption, #SRGgraphicSlider .photo-caption {
	width: 100%;
	background: #f1f1f1;
}
#texteffectSlider .photo-caption h2, #infographicSlider .photo-caption h2, 
#postergraphicSlider .photo-caption h2,  #SRGgraphicSlider .photo-caption h2 {
	text-align: left;
	font-size: 18px;
	color: #666;
	letter-spacing: 0px;
	padding: 10px 5px 5px;
}
#texteffectSlider .photo-caption p, #infographicSlider .photo-caption p,  
#postergraphicSlider .photo-caption p, #SRGgraphicSlider .photo-caption p {
	text-align: left;
	color: #999;
	letter-spacing: 0px;
	padding: 0 5px 5px;
}
#texteffectSlider-controls button,  #infographicSlider-controls button, 
#postergraphicSlider-controls button, #SRGgraphicSlider-controls button {
	position: absolute;
	font-size: 50px;
	border: none;
	color: rgba(0, 0, 0, 0.4);
	background: none;
	cursor: pointer;
	transition: 0.2s linear;
}
#texteffectSlider-controls:hover button,  #infographicSlider-controls:hover button, 
#postergraphicSlider-controls:hover button,  #SRGgraphicSlider-controls:hover button {
	padding: 3px;
	background: rgba(0,0,0,0.1);
}
#texteffectSlider-controls button {
	top: 40%;
}
#infographicSlider-controls button  {
	top: 45%;
}
#postergraphicSlider-controls button {
	top: 45%;
}
#SRGgraphicSlider-controls button  {
	top: 30%;
}
#texteffectSlider-controls button, #infographicSlider-controls button,
#postergraphicSlider-controls button,  #SRGgraphicSlider-controls button  {
	-webkit-transform: translate(0, -30%);
	-ms-transform: translate(0, -30%);
	transform: translate(0,-30%);	
}
#texteffectSlider-controls button:hover, #infographicSlider-controls button:hover, 
#postergraphicSlider-controls button:hover, #SRGgraphicSlider-controls  button:hover {
	color: rgba(0,0,0,0.7);
}
#texteffectSlider-controls .MS-left, #infographicSlider-controls .MS-left, 
#postergraphicSlider-controls.MS-left, #SRGgraphicSlider-controls .MS-left {
	left: 0;
}
#texteffectSlider-controls .MS-right, #infographicSlider-controls .MS-right, 
#postergraphicSlider-controls .MS-right, #SRGgraphicSlider-controls .MS-right {
	right: 0;
}
.modal {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background: rgba(0,0,0,0.8);
	display: none;
	z-index: 99;
}
.modal span {
	z-index: 1;
}
.infomodal-content, .postermodal-content, .SRGmodal-content {
	position: relative;
	max-width: 1080px;
	padding-top: 60px;
	margin: auto;	
}
.modal-content {
	position: relative;
	max-width: 1080px;
	padding-top: 100px;
	margin: auto;	
}
.modal-content {
	width: 60%;
}
.infomodal-content {
	width: 50%;
}
.postermodal-content {
	width: 40%;
}
.closeButton {
	position: absolute;
	top: 0px;
	right: 30px;
	color: white;
	font-size: 4em;
}
.closeButton:hover,  .closeButton:focus {
	cursor: pointer;
	color: rgba(255,95,21,0.9);
	-webkit-transition: 0.3s all linear;
	-moz-transition: 0.3s all linear;
	-ms-transition: 0.3s all linear;
	-o-transition: 0.3s all linear;
	transition: 0.3s all linear;	
}
.texteffectSlides, .infoSlides, .posterSlides, .SRGSlides {
	display: none;
	box-shadow: 0px 0px 12px rgba(255,255,255,0.3);
}
#texteffectSlider .photo-caption, #infographicSlider .photo-caption, 
#postergraphicSlider .photo-caption, #SRGgraphicSlider  .photo-caption {
	background: none;
}

@media screen and (max-width: 1199px) {
	.graphicdesign-content {
		width: 90%;
	}
	#texteffectSlider .MS-content .item, #infographicSlider .MS-content .item,  
	#postergraphicSlider .MS-content .item, SRGgraphicSlider  .MS-content .item {
		width: 33.33%;
	}
	.modal-content, .infomodal-content, .postermodal-content {
		width: 75%;
		padding-top: 100px;
	}	
}
@media screen and (max-width: 991px) {
	.graphicdesign-content {
		width: 90%;
	}
	#texteffectSlider .MS-content .item, #infographicSlider .MS-content .item,  
	#postergraphicSlider .MS-content .item, #SRGgraphicSlider .MS-content .item {
		width: 50%;
	}
}
@media screen and (max-width: 767px) {
	#texteffectSlider .MS-content, #infographicSlider .MS-content, 
	#postergraphicSlider .MS-content, #SRGgraphicSlider  .MS-content {
		margin: 0 auto;
		width: 80%;		
	}
	#texteffectSlider .MS-content .item,#infographicSlider .MS-content .item,  
	#postergraphicSlider .MS-content .item, #SRGgraphicSlider  .MS-content .item {
		width: 100%;
		margin: 0 auto;
	}
	.modal-content, .infomodal-content, .postermodal-content, .SRGmodal-content {
		width: 85%;
		padding-top: 100px;
	}	
}
@media screen and (max-width: 639px) {
	.modal-content, .infomodal-content, .postermodal-content, .SRGmodal-content {
		width: 90%;
	}
}
@media screen and (max-width: 479px) {
	#texteffectSlider .MS-content, #infographicSlider .MS-content, 
	#postergraphicSlider .MS-content, #SRGgraphicSlider  .MS-content {
		width: 75%;		
	}
}



/* Videowork Page CSS style */
.section-title h3 {
	color: rgba(0,0,0,0.7);
	text-align: left;
	font-size: 1.5em;
	padding: 5px 10px;
	background: rgba(0,0,0,0.05);
	
}
.videoworkpage-content {
	width: 1092px;
	margin: 0px auto;
}
.video-img {
	width: 100%;
	cursor: pointer;
	z-index: 1;
}
.video-img i {
	padding: 7px 14px 7px 16px;
	background: rgba(255,255,255,0.6);
	border-radius: 2.5em / 0.5em;	
}
.total-number {
	position: absolute;
	top: 5px;
	right: 15px;
	color: #fff;
	font-size: 14px;
	font-weight: bold;
	background: rgba(0,0,0,0.9);
	z-index: 2;
	padding: 2px 5px;
	border-radius: 3px;
}
#videoGowithme, 
#videoscene,
#videoPerformance {
	position: relative;
}
#videoGowithme .MS-content, 
#videoscene .MS-content, 
#videoPerformance .MS-content {
	white-space: nowrap;
	overflow: hidden;
}
#videoGowithme .MS-content .item, 
#videoscene .MS-content .item,
#videoPerformance .MS-content .item {
	position: relative;
	display: inline-block;
	width: 25%;
	white-space: normal;
	vertical-align: top;
	padding-left: 10px;
	padding-right: 10px;
	margin: 30px 0;
}
#videoGowithme .videobtn-controls button,
#videoscene .videobtn-controls button,
#videoPerformance .videobtn-controls button {
	position: absolute;
	font-size: 35px;
	border: none;
	cursor: pointer;
	padding: 15px 6px;
}
#videoGowithme .videobtn-controls button,
#videoscene .videobtn-controls button,
#videoPerformance .videobtn-controls button{
	top: 30%;
	background: none;
}
#videoGowithme .videobtn-controls:hover button,
#videoscene .videobtn-controls:hover button,
#videoPerformance .videobtn-controls:hover button{
	background: rgba(0,0,0,0.2);
	-webkit-transition: 0.3s all linear;
	-moz-transition: 0.3s all linear;
	-ms-transition: 0.3s all linear;
	-o-transition: 0.3s all linear;
	transition: 0.3s all linear;	
	padding: 15px 5px;
}
#videoGowithme .videobtn-controls .MS-left,
#videoscene .videobtn-controls .MS-left,
#videoPerformance .videobtn-controls .MS-left {
	left: -25px;
}
#videoGowithme .videobtn-controls .MS-right,
#videoscene .videobtn-controls .MS-right,
#videoPerformance .videobtn-controls .MS-right {
	right: -25px;
}
#videoGowithme .player-logo,
#videoscene .player-logo,
#videoPerformance .player-logo {
	position: absolute;
	top: 27%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	text-shadow: 1px 1px 0px rgba(255,255,255,0.9);
	font-size: 1.0em;
	color: #ff5f15;
	opacity: 0;
	padding: 56px 103px;
}
#videoGowithme .player-logo:hover, 
#videoscene .player-logo:hover,
#videoPerformance .player-logo:hover {
	opacity: 1;
}
.video-description h3 {	
	font-weight: 500;
	font-size: 1.125em;
	letter-spacing: -1px;
	color: #666;
	text-align: left;
	padding: 5px 0;	
	width: 100%;	
	line-height: 20px;
	max-height: 44px;
	text-overflow: -o-ellipsis-lastline;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}
.video-description p {
	width: 100%;
	color: #999;
	font-size: 0.875em;
	padding: 0 0 20px;
}

@media screen and (min-width: 1200px) {
	.videoworkpage-content {
		width: 1091px;
		margin: 50px auto;
	
	}
}
@media screen and (max-width: 1199px) {
	.videoworkpage-content {
		width: 816px;
		margin-top: 50px;
	}
}

@media screen and (max-width: 991px) {
	.videoworkpage-content {
		width: 676px;
	}
	#videoGowithme .MS-content .item,
	#videoscene .MS-content .item,
	#videoPerformance .MS-content .item {
		width: 338px;
		height: 330px;
	}
	#videoGowithme .player-logo,  
	#videoscene .player-logo, 
	#videoPerformance .player-logo {
		padding: 74px 136px;
		margin-top: 20px;
	}
	.video-work-content {
		width: 100%;		
	}
}
@media screen and (max-width: 767px) {
	.videoworkpage-content {
		width: 546px;
	}
	#videoGowithme .MS-content .item, 
	#videoscene .MS-content .item, 
	#videoPerformance .MS-content .item {
		width: 273px;
		height: 273px;
		margin-top: 10px;
	}
	#videoGowithme .player-logo, 
	#videoscene .player-logo,  
	#videoPerformance .player-logo {
		padding: 55px 104px;
		margin-top: -5px;
	}
}
@media screen and (max-width: 639px) {
	.videoworkpage-content {
		width: 410px;
	}
	#videoGowithme .MS-content .item, 
	#videoscene .MS-content .item,
	#videoPerformance .MS-content .item {
		width: 410px;
		height: 320px;
	}
	#videoGowithme .player-logo, 
	#videoscene .player-logo, 
	#videoPerformance .player-logo {
		padding: 105px 168px;
		margin-top: 10px;
	}
}
@media screen and (max-width: 479px) {
	.videoworkpage-content {
		width: 288px;
	}
	#videoGowithme .MS-content .item, 
	#videoscene .MS-content .item, 
	#videoPerformance .MS-content .item {
		width: 287px;
		height: 285px;
	}
	#videoGowithme .player-logo,  
	#videoscene .player-logo, 
	#videoPerformance .player-logo {
		padding: 65px 110px;
		margin-top: -6px;
	}
}

/* ----- Contact me page CSS style ----- */
input, textarea {
	font-family: Helvetica, Tahoma, Arial, STXihei, "华文细黑", "Microsoft YaHei", "微软雅黑", SimSun, "宋体", Heiti, "黑体", sans-serif;
	font-size: 1em;
	color: #999;
	padding: 5px;
	border-style: none;
}
.mail-sent-bg {
	width: 100%;	
	padding: 80px 0;
}
.contact-mail {
	width: 40%;
	margin: 0 auto;
}
.contact-mail h4 {
	font-size: 1.25em;
	color: #999;
}
.required {
	color: #ff5f15;
	font-size: 1em;
	padding: 10px 0 20px;
}
.mailinfo-font {
	color: #666;	
}
.mailinfo-gender {
	position: relative;
	color: #666;
	margin-top: 5px;
}
.mail-gender {
	color: #999;
	cursor: pointer;
	padding: 0 15px 0 0px;
	margin-top: 5px;
	margin-right: 5px;
}
.mail-gender:hover {
	color: #ff5f15;
}

#name, #email, #subject {
	width: 100%;
	height: 35px;
	color: #666;
	border: 1px solid #ccc;
	margin-top: 2px;
	margin-bottom: 10px;
}
#name:hover, #email:hover, #subject:hover, #message:hover, 
#name:focus, #email:focus, #subject:focus, #message:focus {
	background-color: rgba(222,237,255,0.5);
	border-bottom: 2px solid #ff5f15;
	border-top: 0;
	border-left: 0;
	border-right: 0;
}
#message{
	width: 100%;
	height:100px;
	color: #666;
	border: 1px solid #ccc;
	margin-top: 2px;
	margin-bottom: 10px;
}
.contact-btn {
	width: 180px;
	height: 45px;
	font-size: 1.25em;
	color: #999;
	background: rgba(255,255,255, 0);
	border: 1px solid #999;
	border-radius: 3px;
	cursor: pointer;
	margin: 20px 0;
}
.contact-btn:hover {
	color: #ff5f15;
	font-weight: bold;
	border: 1px solid #ff5f15;
}

@media screen and (max-width: 1199px) {
	.contact-mail {
		width: 50%;
	}
}
@media screen and (max-width: 991px) {
	.mail-sent-bg {
		padding: 50px 0;
	}
	.contact-mail {
		width: 60%;
	}
}

@media screen and (max-width: 639px) {
	.contact-mail {
		width: 85%;
	}
}

/* ----- About me page CSS style ----- */
.about-bg {
	width: 100%;
	margin-top: 50px;
}
.about-title {
	position: relative;
	width: 100%;
}
.about-title h2 {
	position: absolute;
	top: 50%; 
	left: 50%;
	max-width: 100%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	text-shadow: 0 0 5px #000, 1px 1px 1px #000;
}
.about-title img {
	width: 100%;
}
.about-content {
	width: 60%;
	margin: 0px auto;
	background-color: white;
}
.about-content:after {
	content: "";
	clear: both;
	display: table;
}
.content-left {
	width: 25%;
	float: left;
	margin: 50px auto;
	position: -webkit-sticky;
	position: sticky;
	top: 0px;
}
.content-left img {
	width: 60%;
	display: block;
	border-radius: 50%;
	box-shadow: 1px 1px 3px #000, 2px 2px 6px #313131;
	margin-left: auto;
	margin-right: auto;
}
.content-right {
	width: 65%;
	float: left;
	font-size: 1.125em;
	color: #999;
	line-height: 1.5;
	padding: 0 30px 0;
	margin: 50px 0;
}
.wgimages {
	max-width: 100%;
	width: 75%;
	margin: 30px auto 50px;
}
@media screen and (max-width: 1280px) {	
	/*.about-content {
		width: 85%;
	}
	.wgimages {
		width: 65%;
	}*/
	.wgimages {
		width: 65%;
	}

}

@media screen and (max-width: 1199px) {	
	.about-content {
		width: 85%;
	}
	.wgimages {
		width: 65%;
	}
	.wgimages {
		width: 70%;
	}

}
@media screen and (max-width: 991px) {	
	.about-content {
		width: 85%;
	}
	.content-left img {
		width: 100%;
	}
	.wgimages {
		width: 80%;
	}
}
@media screen and (max-width: 767px) {
	.about-content {
		width: 100%;
	}
	.content-left {
		width: 25%;
		float: none;
		position: initial;
		margin: 30px auto;
	}
	.content-right {
		width: 100%;
		margin: 0;
	}
	.wgimages {
		width: 85%;
	}

}
@media screen and (max-width: 479px) {
	.content-left {
		width: 30%;
	}
	.wgimages {
		width: 95%;
	}

}

/* ----- Four columns footer width collapsible CSS style ----- */
.footer-bg {
	width: 100%;
	background: #333;
}
.footer-top {
	max-width: 80%;
	padding: 10px 0;
	margin: 0px auto;
}
.footer-top:after{
	content: "";
	clear: both;
	display: table;
}
.footer-menu {
	width: 25%;
	float: left;	
}
.footer-menu a {
	width: 100%;
	float: left;
}
.footer-menu .submenubtn, .footer-menu .menubtn {
	width: 100%;
	font-size: 1.125em;
	font-weight: 400;
	letter-spacing: 1px;
	text-align: left;
	padding: 5px 10px;
	color: #f1f1f1;
	background: none;
	cursor: pointer;
	border: none;
}
.footer-menu .submenubtn:hover, .footer-menu .menubtn:hover {
	color: #ff5f15;
}
.dropdownmenu {
	display: block;
	padding: 0 10px;
}
.dropdownmenu a {
	text-decoration: none;
	color: #999;
	font-size: 1em;
	float: none;
	display: block;
	padding: 4px 0;
}
.dropdownmenu a:hover {
	color: #f1f1f1;
	text-decoration: underline;
}
.active, .menubtn:hover {
	color: #f1f1f1;
}
.footer-bottom {
	width: 100%;
	background-color: #000;
	padding-left: 20px;
	padding-right: 20px;
}
.footer-right {
	float: left;
	color: #666;
	font-size: 0.75em;
	font-style: italic;
	padding: 18px 20px;
}
.favorite-link {
	float: right;
	padding: 13px 20px;
}
.favorite-link a {
	color: #a3a3a3;
	font-size: 1.5em;
	padding: 10px 10px;
}
.favorite-link a:hover {
	color: #ff5f15;
}

@media screen and (max-width: 991px) {
	.footer-top {
		max-width: 95%;
	}
}
@media screen and (max-width: 639px) {
	.footer-menu {
		width: 100%;
	}
	.footer-menu .active, .footer-menu .submenubtn:hover {
		background: #555;
	}
	.footer-menu .submenubtn, .footer-menu .menubtn {
		padding-left: 20px;
	}
	.footer-menu .submenubtn:hover, .footer-menu .menubtn:hover {
		background: #555;
	}
	.footer-menu .submenubtn:after {
		content: "\002B";
		float: right;
		padding-right: 10px;
	}
	.footer-menu .active:after {
		content: "\2212"; 
	}	
	.dropdownmenu {
		max-height: 0;
		overflow: hidden;		
		transition: max-height 0.3s ease-out;
		text-decoration: none;
		padding: 0 20px;
	}
	.dropdownmenu a {
		padding: 6px 20px;
	}
	.dropdown-menu a:hover {
		text-decoration: none;
		background: #555;
	}
	.footer-right {
		padding: 20px 0 10px;
		float: none;
	}
	.footer-right p {
		width: 255px;
		padding: 0;
		margin: 0 auto;
	}	
	.favorite-link {
		width: 168px;
		float: none;
		padding: 0 10px 20px;
		margin: 0 auto;
	}
	.favorite-link a {
		padding: 0 10px;
	}
}

/* ----- advertisement CSS style ----- */
.aboutpage-adver, .contactpage-adver, .adver3-white {
	width: 100%;
	padding: 35px 0;
}
.aboutpage-adver, .contactpage-adver {
	background: #f1f1f1;
}
.advertisement-Graphic, .advertisement-videowork {
	width: 100%;
	background: #f1f1f1;
	padding: 10px 0 30px;
	margin: 0;
}
.advertisement-portfolio {
	width: 100%;
	padding: 30px 0 60px;
	margin: 50px 0 0;
	background: #f1f1f1;
}

.adver1-content h3 {
	position: absolute;
	top: 10px;
	left: 20px;
	color: #fff;
	font-weight: bold;
	font-size: 2.5vw;
	font-style: italic;
	letter-spacing: 0;
	text-shadow: 1px 1px 1px rgba(255, 95, 21, 1.0);
}
.adver3-content h3 {
	position: absolute;
	top: 15px;
	right: 25px;
	color: #fff;
	font-weight: bold;
	font-size:2.5vw;
	font-style: italic;
	letter-spacing: 8px;
	text-shadow: 1px 1px 2px rgba(255,95,21,1);
}
.adver1-content p {
	position: absolute;
	bottom: 15px;
	right: 30px;
	font-weight: bold;
	font-size: 1.5vw;
	font-style: italic;
	color: green;
	letter-spacing: 1px;
	text-shadow: 0px 0px 3px rgba(255, 255, 255, 1.0), 0px 0px 5px rgba(255, 255, 255, 1.0);
}
.adver3-content p {
	position: absolute;
	top: 55px;
	right: 35px;
	font-weight: bold;
	font-size: 1.125vw;
	font-style: italic;
	color: rgba(255,255,255,0.9);
	letter-spacing: 1px;
	text-shadow: 1px 1px 1px #000;
}
.adver1-content, .adver3-content {
	width: 50%;
	position: relative;
	overflow: hidden;
	padding: 0;
	margin: 0 auto;
}
.adver1-content img, .adver3-content img {
	width: 100%;
	padding: 0;
	margin-bottom: -5px;
	-webkit-transition: all 0.7s ease-in-out;
	-moz-transition: all 0.7s ease-in-out;
	transform: all 0.7s ease-in-out;	
}
.adver1-content:hover img, .adver3-content:hover img {	
	-webkit-transform: scale(1.15,1.15);
	-moz-transform: scale(1.15,1.15);
	-ms-transform: scale(1.15,1.15);
	-o-transform: scale(1.15,1.15);
	transform: scale(1.15,1.15);
}

@media screen and (max-width: 1199px) {
	.adver3-content h3 {
		top: 10px;
	}
	.adver3-content p {
		top: 40px;
	}
}
@media screen and (max-width: 991px) {
	.adver1-content, .adver3-content {
		width: 70%;
	}
	.adver3-content h3 {
		right: 10px;
	}
	.adver3-content p {
		top: 38px;
		right: 20px;
	}
}
@media screen and (max-width: 767px) {
	.adver1-content, .adver3-content {
		width: 80%;
	}
	.adver1-content h3 {
		letter-spacing: 4px;
	}
	.adver3-content h3 {
		top: 10px;
		right: 10px;
		letter-spacing: 3px;
	}	
	.adver3-content p {
		top: 30px;
		right: 15px;
	}
}
@media screen and (max-width: 639px) {
	.adver1-content,  .adver3-content {
		width: 90%;
	}
	.adver1-content h3 {
		letter-spacing: 2px;
	}
	.adver1-content p {
		display: none;
	}
	.adver3-content p {
		display: none;
	}
}
/*---*/
.imagesModal {
	display: none;
	position: fixed;
	z-index: 99;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background: rgba(0,0,0,0.8);
}
.closeYears {
	font-size: 3em;
	color: white;
}
.qpart1-left:after {
	content: "";
	display: table;
	clear: both;
}
.quebec-bg .prev, .quebec-bg .next, .photodes-bg .prev, .photodes-bg .next,{
	position: absolute;
	font-size: 3em;
	width: auto;
	top: 50%;
	background: none;
	cursor: pointer;
}
.quebec-bg .prev, .photodes-bg .prev {
	left: 0;
}
.quebec-bg .next, .photodes-bg .next {
	right: 0;
}
.quebec-bg .prev:hover, .quebec-bg .next:hover, .photodes-bg .prev:hover, .photodes-bg .next:hover  {
	color: rgba(255,255,255,0.3);
}
.years-content, .montreal-content {
	position: relutive;
	max-width: 680px;
	width: 100%;
	margin: 50px auto 0;
}
.years-content img, .montreal-content img {
	width: 100%;
	height: auto;
}
.quebec-bg .closeBtn,  .photodes-bg .closeBtn {
	color: white;
	position: absolute;
	top: 10px;
	right: 25px;
	font-size: 3.5em;
	font-weight: bold;
	cursor: pointer;
	z-index: 1;
}
.quebec-bg .closeBtn:hover, .photodes-bg .closeBtn:hover {
	color: rgba(255,255,255,0.3);
}
.yearsSlides, .montrealSlides {
	position: absolute;
	max-width: 680px;
	color: white;
	padding: 10px 5px;
	border: 1px dashed white;
}
.yearsSlides p, .montrealSlides p {
	/*position: absolute;*/
	color: white;
	padding: 10px 5px;
}


/* --- Portfolio pages title & description style - A trip in Quebec & TTpark --- */
.ttpark-bg, .quebec-bg, .photodes-bg {
	width: 80%;
	padding-top: 10px;
	margin: 0 auto;
}
.ttpark-bg h2, .quebec-bg h2, .photodes-bg h2 {
	font-family: "Georgia", serif;
	font-size: 3.5em;
	font-weight: bold;
	letter-spacing: 1px;
	padding: 80px 0;
}
.ttpark-content, .quebec-content {
	max-width: 980px;
	width: 100%;
	padding-bottom: 50px 0;
	margin: 0px auto;
}
#ttpark-part1,  #ttpark-part2,  #ttpark-part3,  #ttpark-part5,
#quebec-part1,  #quebec-part2,  #quebec-part3, #quebec-part5 {
	position: relative; 
	display: table;
	padding: 30px 0;
	border-bottom: 1px solid rgba(0,0,0,0.1); 
}
#ttpark-part4 {
	position: relative;
	width: 60%;
	overflow: hidden;
	margin: 50px auto;
}
#quebec-part5 {
	border-top: 1px solid rgba(0,0,0,0.1); 
	border-bottom: none;
}
#ttpark-part5 {
	border-bottom: none;
}
.quebec-content:after,  #quebec-part1:after,  #quebec-part2:after,  #quebec-part3:after,
.ttpark-content:after,  #ttpark-part1:after,  #ttpark-part2:after,  #ttpark-part3:after {
	content: "";
	clear: both;
	display: table;
}
/* Text Content area */
.tpart1-right, .tpart2-left, .tpart3-right,
.qpart1-right, .qpart2-left, .qpart3-right, .qpart5-left {
	width: 50%;
	float: left;
	padding: 20px 0 30px;
}
.imagesBtn {
	color: #999;
	font-weight: bold;
	font-size: 1.2em;
	letter-spacing: 0px;
	cursor: pointer;
	padding: 5px;
}
.imagesBtn:hover {
	color: #ff5f15;
	-webkit-transition: 0.5s all linear;
	-moz-transition: 0.5s all linear;
	-ms-transition: 0.5s all linear;
	-o-transition: 0.5s all linear;
	transition: 0.5s all linear;
}
.tpart2-left a, .tpart3-right a, 
 .qpart1-right a, .qpart2-left a, .qpart3-right a,  .qpart5-left a {
	color: #999;
	font-weight: bold;
	font-size: 1.3em;
	letter-spacing: 1px;
	cursor: pointer;
	padding: 5px;
}
.tpart2-left a:hover, .tpart3-right a:hover,
.qpart1-right a:hover, .qpart2-left a:hover,  
.qpart3-right a:hover, .qpart5-left a:hover {
	color: #ff5f15;
	-webkit-transition: 0.5s all linear;
	-moz-transition: 0.5s all linear;
	-ms-transition: 0.5s all linear;
	-o-transition: 0.5s all linear;
	transition: 0.5s all linear;
}
/* Images area */
.tpart1-left, .tpart3-left, .tpart2-right,
.qpart1-left, .qpart3-left,  .qpart2-right, .qpart5-right {	
	width: 46%;
	height: auto;
	float: left;
	overflow: hidden;
	margin: 15px;
	box-shadow: 2px 3px 2px #333, 5px 6px 5px #666;
}
.qpart1-left img, .qpart2-right img, .qpart3-left img, .qpart5-right img,
.tpart1-left img, .tpart2-right img, .tpart3-left img {
	width: 100%;
	height: auto;
	margin-bottom: -5px;
}
.tpart2-right img,  .tpart3-left img,
 .qpart1-left img, .qpart2-right img, .qpart3-left img, .qpart5-right img {
	-webkit-transition:all 0.7s ease-in-out;
	-moz-transition:all 0.7s ease-in-out;
	transition:all 0.7s ease-in-out;
}
.tpart2-right:hover img, .tpart3-left:hover img,
.qpart1-left:hover img, .qpart2-right:hover img, 
.qpart3-left:hover img, .qpart5-right:hover img {
	-webkit-transform:scale(1.15,1.15);
	-moz-transform:scale(1.15,1.15);
	-ms-transform:scale(1.15,1.15);
	-o-transform:scale(1.15,1.15);
	transform: scale(1.15,1.15);
}
.qpart1-right p, .qpart2-left p, .qpart3-right p, .qpart5-left p,
.tpart1-right p, .tpart2-left p, .tpart3-right p {
	width: 100%;
	line-height: 1.2;
	font-size: 1em;
	color: #999;
	padding-bottom: 30px;
}
.tpart1-right, .tpart2-left, .tpart3-right, .tpart5-left,
.qpart1-right, .qpart2-left, .qpart3-right, .qpart5-left {
	width: 46%;
	margin: 15px;
}
.tpart1-right h3, .tpart2-left h3, .tpart3-right h3, .tpart5-left h3,
.qpart1-right h3, .qpart2-left h3, .qpart3-right h3, .qpart5-left h3 {
	font-size: 2em;
	padding-bottom: 10px;
}
.quebec-content h3, .ttpark-content h3 {
	color: #999;
	text-align: left;
}
#quebec-part4, #ttpark-part5 {
	position: relative;
	width: 90%;
	padding: 0 10px;
	margin: 50px auto;
}
#quebec-part4 p, #ttpark-part5 p {
	color: #999;
	font-size: 18px;
}
#quebec-part4 audio {
	width: 39%;
	position: absolute;
	left: 30.5%;
	bottom: 0;
}
#quebec-part4 img {
	max-width: 40%;
	display: block;
	padding: 30px 0 0;
	margin-left:  auto;
	margin-right: auto;
}

/* Quebec & ttp pages  phSlideshow CSS style */
.imagesshow-bg {
	width: 100%;
	padding: 50px 0 80px;
	margin-top: 50px;
	background: rgba(0,0,0,0.7);
}
.slideshow {
	text-align: center;
	position: relative;
	max-width: 55%;
	margin: 30px auto 0;	
}
.slideshow p {
	position: absolute;
	top: 10px;
	right: 30px;
	width: 10%;
	color: #fff;
}
.slideshow img {
	width: 100%;
}
.slideshow-prev, .slideshow-next {
	display:none;
	position:absolute;
	top:50%;
	width: 65px;
	opacity:1.0;
	z-index:1000;
	height:65px;
	cursor:pointer;
	cursor:hand;
	-webkit-transform: translate(0%, -50%);
	-ms-transform: translate(0%, -50%);
	transform: translate(0%, -50%);
}
.slideshow-prev {
	left: 0;
	background: url(../images/icons/prev.png) left 50% no-repeat;
}
.slideshow-next {
	right:0;
	background: url(../images/icons/next.png) right 50% no-repeat;
}
.slideshow-controls {
	display: none;
	position: absolute;
	top: 50%;
	left: 50%;
	width:10%;
	z-index:1000;
	width: 65px;
	height: 65px;
	cursor: pointer;
	cursor: hand;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}
.slideshow-resume {
	width:100%;
	height:100%;
	display:none;
	opacity:0.5;
	background: url(../images/icons/play.png) right 50% no-repeat;
}
.slideshow-pause {
	width:100%;
	height:100%;
	opacity:0.5;
	background: url(../images/icons/pause.png) right 50% no-repeat;
}
.slideshow-caption {
	display:none;
	font-size:1em;
	padding:0px;
	position:absolute;
	bottom:0;
	left:0;
	width:100%;
	min-height:20px;
	letter-spacing: 1px;
	background-color:rgba(0, 0, 0, 0.7);
	color: #f1f1f1;
	line-height: 20px;
}
.slideshow-caption a, .slideshow-caption a:visited {
	color: #000000;
	text-decoration: none;
}
.slideshow-caption a:hover {
	color: #000000;
	text-decoration: underline;
}
.slidershow-return {
	position: absolute;
	top: 65px; 
	right: 30px;
	width: 30px;
	height: 30px;
	background: url(../images/icons/close.png) right 50% no-repeat;
	cursor: pointer;
}
@media screen and (max-width: 1280px) {
	.ttpark-content, .quebec-content {
		
	}
	.tpart1-right, .tpart3-right, .tpart2-left,
	.qpart1-right, .qpart3-right, .qpart2-left, .qpart5-left {
		width: 45%;
		padding: 0px 0px 0px;
		margin-top: 15px;
	}
	.tpart1-left, .tpart3-left, .tpart2-right,
	.qpart1-left, .qpart3-left,  .qpart2-right, .qpart5-right {	
		width: 45%;		
	}
	
	.qpart2-left, .qpart5-left, .tpart2-left {
		padding-left: 20px;
		padding-right: 40px;
	}
	#quebec-part4 {
		width: 90%;
	}
	#quebec-part4 img {
		max-width: 50%;
	}
	#quebec-part4 audio {
		width: 48%;
		left: 26%;
	}
	.ttp-video {
		width: 70%;
	}
}

@media screen and (max-width: 1199px) {
	.ttpark-content, .quebec-content {
		
	}
	.tpart1-right, .tpart3-right, .tpart2-left,
	.qpart1-right, .qpart3-right, .qpart2-left, .qpart5-left {
		width: 45%;
		padding: 0px 0px 0px;
		margin-top: 15px;
	}
	.tpart1-left, .tpart3-left, .tpart2-right,
	.qpart1-left, .qpart3-left,  .qpart2-right, .qpart5-right {	
		width: 45%;		
	}
	
	.qpart2-left, .qpart5-left, .tpart2-left {
		padding-left: 20px;
		padding-right: 40px;
	}
	#quebec-part4 {
		width: 90%;
	}
	#quebec-part4 img {
		max-width: 50%;
	}
	#quebec-part4 audio {
		width: 48%;
		left: 26%;
	}
	.ttp-video {
		width: 70%;
	}
}
@media screen and (max-width: 1024px) {
	.ttpark-content, .quebec-content {
		
	}
	.ttpark-bg, .quebec-bg, .photodes-bg {
		width: 90%;
	}
	.ttpark-content, .quebec-content {
		background: none;
	}
	/* Content Session */
	.tpart1-right, .tpart2-left, .tpart3-right, 
	.qpart1-right, .qpart2-left, .qpart3-right, .qpart5-left {
		width: 100%;
		height: auto;
		overflow: none;
		padding: 20px 0;
		margin: 0;
	}
	/* Images session */
	.tpart1-left, .tpart2-right, .tpart3-left,
	.qpart1-left, .qpart2-right, .qpart3-left, .qpart5-right {
		width: 100%;
		padding: 0;
		margin: 0;
	}
	.quebec-part4 {
		width: 100%;
	}
	.quebec-part4 img {
		max-width: 60%;
	}
	.quebec-part4 audio {
		width: 58%;
		left: 21%;
	}
	.ttp-video {
		width: 100%;
		margin: 30px auto;
	}
	.slideshow {
		max-width: 90%;	
	}
	
}

@media screen and (max-width: 991px) {
	.ttpark-content, .quebec-content {
		
	}

	.ttpark-bg, .quebec-bg, .photodes-bg {
		width: 90%;
	}
	.ttpark-content, .quebec-content {
		background: none;
	}
	/* Content Session */
	.tpart1-right, .tpart2-left, .tpart3-right, 
	.qpart1-right, .qpart2-left, .qpart3-right, .qpart5-left {
		width: 100%;
		height: auto;
		overflow: none;
		padding: 20px 0;
		margin: 0;
	}
	/* Images session */
	.tpart1-left, .tpart2-right, .tpart3-left,
	.qpart1-left, .qpart2-right, .qpart3-left, .qpart5-right {
		width: 100%;
		padding: 0;
		margin: 0;
	}
	.quebec-part4 {
		width: 100%;
	}
	.quebec-part4 img {
		max-width: 60%;
	}
	.quebec-part4 audio {
		width: 58%;
		left: 21%;
	}
	.ttp-video {
		width: 100%;
		margin: 30px auto;
	}
	.slideshow {
		max-width: 90%;	
	}
}
@media screen and (max-width: 767px) {
	.ttpark-content, .quebec-content {
		
	}

	.ttpark-bg, .quebec-bg, .photodes-bg {
		width: 90%;
	}
	.ttpark-content, .quebec-content {
		background: none;
	}
	/* Content Session */
	.tpart1-right, .tpart2-left, .tpart3-right, 
	.qpart1-right, .qpart2-left, .qpart3-right, .qpart5-left {
		width: 100%;
		height: auto;
		overflow: none;
		padding: 20px 0;
		margin: 0;
	}
	/* Images session */
	.tpart1-left, .tpart2-right, .tpart3-left,
	.qpart1-left, .qpart2-right, .qpart3-left, .qpart5-right {
		width: 100%;
		padding: 0;
		margin: 0;
	}
	.quebec-part4 {
		width: 100%;
	}
	.quebec-part4 img {
		max-width: 60%;
	}
	.quebec-part4 audio {
		width: 58%;
		left: 21%;
	}
	.ttp-video {
		width: 100%;
		margin: 30px auto;
	}
	.slideshow {
		max-width: 90%;	
	}
}
@media screen and (max-width: 639px) {
	.ttpark-content, .quebec-content {
		width: 100%;
	}
	.ttpark-bg, .quebec-bg, .photodes-bg {
		width: 100%;
	}
	.quebec-part4 audio {
		width: 80%;
		left: 21.5%;
	}
}

/* ----- Portfolio pages title & description style such as AirShow, AmazingWorld, 
BeautifulChina, PrideParade, Sports, Portrait, photodes ----- */
.page-description {
	padding: 0;
}
.page-description a, .page-description p {
	color: #999;
	padding: 3px;
}
.page-description a:hover {
	color: #ff5f15;
}
.portfolio-bg {
	max-width: 100%;
	width:60%;
	padding: 10px 10px 30px;
	margin: 0 auto;
}
.portfolio-bg h2 {
	font-family: "Georgia", serif;
	font-size: 2.5em;
	font-weight: bold;
	letter-spacing: 0px;
	text-align: center;
	padding: 50px 0px;
}
.portfolio-bg p {
	width: 85%;
	line-height: 1.5;
	color: #666;
	letter-spacing: 1px;
	padding: 10px 10px 10px;
	margin: 0 auto;
}

@media screen and (max-width: 991px) {
	.portfolio-bg p {
		width: 100%;
	}
}
@media screen and (max-width: 767px) {
	.portfolio-bg h2 {
		padding: 30px 0px;
	}
	.portfolio-bg, .footer-top {
		max-width: 100%;
	}
}

/* ----- Sign in/up system & graphic-login system CSS style ----- */
.login-content, .register-content, .repassword-content, .graphic-loginContent {
	padding: 0px 0;
}
.login-container, .register-container, .repassword-container,
.reset-newpwd-container, .graphic-loginContainer {
	width: 50%;
	padding: 50px 0 100px;
	margin: 0px auto;
}
.login-container input[type=text], .login-container input[type=password],
.register-container input[type=text],  .register-container input[type=password],
.repassword-container input[type=text],  .reset-newpwd-container input[type=password], 
.graphic-loginContainer input[type=text], .graphic-loginContainer input[type=password] {
	width: 100%;
	height: 35px;
	color: #666;
	border: 1px solid #ccc;
	margin-top: 2px;
	margin-bottom: 15px;
}

.login-container input:hover,  .register-container input:hover,
.login-container input:focus,  .register-container input:focus,
.repassword-container input:hover, .repassword-container input:focus,
.reset-newpwd-container input:hover, .reset-newpwd-container input:focus,
.graphic-loginContainer input:hover {
	border-bottom: 2px solid #ff5f15;
	background: #f1f1f1;
	border-top: none;
	border-left: none;
	border-right: none;
}
.login-container button, .register-container button,
.repassword-container button, .reset-newpwd-container button,
.graphic-loginContainer button {
	box-sizing: border-box;
	width: 49%;
	height: 35px;
	line-height: 25px;
	font-size: 1.25em;
	color: #ff5f15;
	background: rgba(255,255,255, 0);
	border: 1px solid #ff5f15;
	border-radius: 3px;
	margin: 30px 0; 
}
.login-container button:hover, .register-container button:hover,
.repassword-container button:hover, .reset-newpwd-container button:hover,
.graphic-loginContainer button:hover {
	color: #fff;
	cursor: pointer;
	background: #ff5f15;
	font-weight: bold;
	border: 1px solid #ff5f15;
}
.registerbtn {
	width: 100%;
	font-size: 1.0em;
	float: left;
	color: #999;
	background: #f1f1f1;
	text-align: center;
	border: 1px solid #f1f1f1;
	border-radius: 3px;
	padding: 15px 0;
	margin: 30px 0px 0 0;	
}
.registerbtn a {
	color: #ff5f15;
	text-decoration: underline;
}
.registerbtn a:hover{
	color: #ff5f15;
	font-weight: bold;
	text-decoration: none;
}
.login-container span a, .graphic-loginContainer span a {
	color: #999;
	text-decoration: underline;
}
.login-container span a:hover , .graphic-loginContainer span a:hover {
	color: #999;
	font-weight: bold;
	text-decoration: none;
}
.register-content a {
	float: right;
	color: #999;
	text-decoration: underline;
	margin: 20px 10px;
}
.register-content a:hover {
	color: #000;
}
.signout-content{
	height: 500px;
}
.error-info {
	font-size: 1.2em;
	font-weight: bold;
	color: #ff5f15;
	background: #f1f1f1;
	text-align: center;
	padding: 10px;
	margin-bottom: 30px;
	border: 1px solid #999;
	border-radius: 3px;
}
.signin-success, .signup-success, .newpwd-success, .request-pwd  {
	font-size: 1.2em;
	font-weight: bold;
	color: green;
	background: #f1f1f1;
	text-align: center;
	padding: 10px;
	margin-bottom: 30px;
	border: 1px solid #999;
	border-radius: 3px;
}
.error-report {
	text-align: center;
	font-size: 2em;
	color: #999;
	padding: 100px 0;
}
.login-username {
	font-size: 0.8125em;
	font-weight: bold;
	text-transform: uppercase;
	padding-top: 3px;
}
span .login-username {
	color: #ff5f15;
}
.error-message {
	padding: 50px 0;
}

@media screen and (max-width: 991px) {
	.login-container, .register-container,
	.repassword-container, .reset-newpwd-container {
		width: 60%;
	}
	.repassword-content p {
		width: 100%;
		padding: 20px;
	}
}
@media screen and (max-width: 480px) {
	.login-container, .register-container,
	.repassword-container, .reset-newpwd-container {
		width: 80%;
	}
	.login-container button, .register-container button, 
	.repassword-container button, .reset-newpwd-container button {
		width: 100%;
	}
	.register-content a { 
		width: 100%;
		text-align: center;
		padding: 5px 0;
	}
}


/*  ----- 360 Degree Rotation main page ---- */

*, *:before, *:after {
  box-sizing: border-box;
}
.aos-all {
  max-width: 1080px;
  width: 100%;
  margin: 30px auto 120px;
  /*border: 1px solid green;*/
}
.aos-item {
  position: relative;
  display: inline-block;
  float: left;
  width: 33.3333%;
  /*border: 1px solid Black;*/
}
.aos-item__inner {
  width: 100%;
  /*height: 100%;*/
  height: auto;
  float: left;
  text-align: center;
  color: #fff;
}
.aos-item__inner .image {
	display: block;
	/*max-width: 400px;*/
	width: 100%;
	height: auto;
} 
.caption-text {
  position: absolute;
  bottom: 100%;
  left: 0;
  right: 0;
  background-color: rgba(255,255,255,0.75);
  overflow: hidden;
  width: 100%;
  height:0;
  transition: .5s ease;
}
.aos-item:hover .caption-text {
  bottom: 0;
  height: 100%;
  cursor: pointer;
}
.text-title {
  top: 40%;
  left: 50%;
}
.text-content{
  top: 50%;
  left: 50%;
}
.text-content, .text-title {
  color: #ff5f15;
  font-size: 0.8750em;
  font-weight: bold;
  position: absolute;
  width: 100%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
}
.autorotate{
	display:block;
	background-color: #ff5f15;
	padding: 0 5px;
	color:#fff;
	text-decoration:none;
	text-transform:uppercase;
}
.note {
	width: 100%;
	color: #fff;
	text-align: center;
	background: gray;
	padding: 5px 0;
	margin: 0;
}
.close {
	position: absolute;
	top: 60px; 
	right: 60px;
	width: 40px;
	height: 40px;
	background: url(../images/close.png) right 50% no-repeat;
	cursor: pointer;
}

/* 360 Degree Rotation view sub pages */
.threesixty-wrapper {
	position: relative;
	width: 100%;
	height: auto;
	margin: 0 auto;
}
.threesixty-wrapper .threesixty {
	display: block;
	max-width: 980px;
	width: 100%;
	height: auto;
	margin: 30px auto 0;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
	background-image: url(../images/rotation/background.jpg);
	z-index: 1;
}
.threesixty-wrapper .text-name {
	max-width: 980px;
	width: 100%;
	color: black;
	margin: 0 auto;
	padding: 10px 0;
}
.threesixty-wrapper .text-name p {
	font-size: 1.5em;
}
.threesixty-wrapper .text-name img {
	width: 10%;
	float: right;
}
.close-btn {
	position: absolute;
	top: 0;
	right: 50px;
	font-size: 4em;
	color: black;
	z-index: 2;
	margin: 0;
	padding: 0 10px 0 5px;
}
.close-btn:hover {
	color: #ff5f15;
}


@media screen and (min-width: 1200px) {
	.aos-all {
		width: 98%;
	}
}
@media screen and (max-width: 1199px) {	
	.aos-all {
		width: 95%;
	}
}
@media screen and (max-width: 991px) {
	.aos-all {
		width: 95%;
	}
	.aos-item {
		width: 50%;
	}
	.threesixty-wrapper {
		width: 95%;
	}
}
@media screen and (max-width: 767px) {
	.aos-all {
		width: 75%;
	}
	.aos-item {
		width: 100%;
	}
	.threesixty-wrapper {
		width: 95%;
	}
}
@media screen and (max-width: 639px) {
	.aos-all {
		width: 95%;
	}
	.aos-item {
		width: 100%;
	}
	.threesixty-wrapper {
		width: 95%;
	}
}


