/* -------------------------------- 

Primary style

-------------------------------- */

html * {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

*,
*:after,
*:before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    font-size: 100%;
    font-family: "Helvetica Neue","微軟正黑體","Microsoft JhengHei" sans-serif;
    background-color: white;
}

body,
html {
    height: 100%;
	font-family: "Helvetica Neue","微軟正黑體","Microsoft JhengHei" sans-serif;
}

a {
    color: #3e3947;
    text-decoration: none;
}

h1 {
    font-size: 54px;
    line-height: 1.4em;
    font-weight: bold;
	font-family: "Helvetica Neue","微軟正黑體","Microsoft JhengHei" sans-serif;
}

h2 {
    font-size: 48px;
    line-height: 1.4em;
    font-weight: bold;
	font-family: "Helvetica Neue","微軟正黑體","Microsoft JhengHei" sans-serif;
}

h3 {
    font-size: 36px;
    line-height: 1.4em;
    font-weight: bold;
	font-family: "Helvetica Neue","微軟正黑體","Microsoft JhengHei" sans-serif;
}

h4 {
    font-size: 21px;
    font-weight: bold;
	font-family: "Helvetica Neue","微軟正黑體","Microsoft JhengHei" sans-serif;
}

@media only screen and (max-width: 1280px) {
    h1 {
        font-size: 48px;
    }

    h2 {
        font-size: 36px;
    }

    h3 {
        font-size: 21px;
    }
}

@media only screen and (max-width: 991px) {
    h1 {
        font-size: 2em;
    }

    h2 {
        font-size: 1.5em;
    }

    h3 {
        font-size: 1.2em;
    }
}

header {
    height: 80px;
    width: 100%;
    float: left;
    background: #fff;
    position: fixed;
    z-index: 15;
    padding: 10px 15px;
    -webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.5);
}

header .logo {
    width: 200px;
    height: 50px;
    float: left;
	margin-top:7px;
}

header .logo img {
    width: auto;
    height: 100%;
    float: left;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0px auto;
    padding: 0px 20px;
}

.container2 {
    width: 100%;
    max-width: 800px;
    margin: 0px auto;
    padding: 0px 20px;
}

.grid1 {
    width: 100%;
    height: auto;
    float: left;
    margin-bottom: 30px;
    margin-top: 30px;
}

.grid1-2 {
    width: 50%;
    height: auto;
    float: left;
}

.grid1-3 {
    width: 33.333%;
    height: auto;
    float: left;
    padding: 10px;
}

.button-container {
    width: 100%;
    height: auto;
    float: left;
}

.button {
    width: 260px !important;
    min-width: 200px !important;
    height: 80px;
    padding: 30px 20px;
    display: block;
    background: #FF6A5D;
    color: #fff !important;
    font-size: 20px;
    margin: 40px auto 0px auto;
    -webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.5);
    -webkit-transition: background 0.2s ease-in-out;
    -moz-transition: background 0.2s ease-in-out;
    -ms-transition: background 0.2s ease-in-out;
    -o-transition: background 0.2s ease-in-out;
    transition: background 0.2s ease-in-out;
}

.button:hover {
    background: #E53935;
}

/* -------------------------------- 

Modules - reusable parts of our design

-------------------------------- */

.cd-img-replace {
    /* replace text with a background-image */
    display: inline-block;
    overflow: hidden;
    text-indent: 100%;
    white-space: nowrap;
}

/* --------------------------------

Main components 

-------------------------------- */

.cd-section {
    min-height: 100%;
    height: 100%;
    position: relative;
    padding: em 0;
    overflow: hidden;
    background: #5FD9E5;
}

.cd-section h2 {
    color: #323335 !important;
}

.cd-section-over {
    position: absolute;
    height: 100%;
    width: 100%;
    background: #729AF4;
    opacity: 0;
    z-index: 2;
}

.cd-section-ani {
    position: absolute;
    left: 50%;
    top: 50%;
    bottom: auto;
    right: auto;
    color: #fff;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    -o-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    width: 100%;
    height: 100%;
    z-index: 1;
    text-align: center;
}

.cd-section-ani img {
    height: 100%;
    width: auto;
    position: absolute;
    top: 25%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-animation: mymove 50s infinite;
    /* Safari 4.0 - 8.0 */
    animation: mymove 50s infinite;
}

/* Safari 4.0 - 8.0 */

@-webkit-keyframes mymove {
    from {
        -webkit-transform: translateX(-500px);
    }
    to {
        -webkit-transform: translateX(-2000px);
    }
}

@keyframes mymove {
    from {
        transform: translateX(-500px);
    }
    to {
        transform: translateX(-2000px);
    }
}

.cd-section-in {
    position: absolute;
    left: 50%;
    top: 50%;
    bottom: auto;
    right: auto;
    color: #fff;
    padding: 20px;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    -o-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    height: auto;
    width: 100%;
    max-width: 1600px;
    text-align: center;
    z-index: 3;
}

.cd-section-in2 {
    position: absolute;
    left: 50%;
    top: 50%;
    bottom: auto;
    right: auto;
    color: #fff;
    padding: 20px;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    -o-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    height: 100%;
    width: auto;
    max-width: 1200px;
    text-align: center;
    z-index: 3;
}

.cd-section-in2 img {
    width: auto;
    height: 100%;
}

.cd-section-in-icon {
    width: 100%;
    max-width: 150px;
    height: auto;
    margin: 0px auto 20px auto;
}

.cd-section-in h1 {
    width: 100%;
    height: auto;
    float: left;
	text-shadow: 2px 2px #000;
}

.section-title {
    width: 100%;
    height: auto;
    float: left;
}

.cd-section2 {
    height: auto;
    min-height: 500px;
    width: 100%;
    position: relative;
    text-align: center;
    padding: 60px 0px;
    background: #fff;
}

.pic {
    width: 100%;
    max-width: 160px;
    min-width: 160px;
    height: 160px;
    border-radius: 50%;
    margin: 0px auto;
    border: 10px solid #f2f3f5;
}

.pic img {
    width: 100%;
    height: auto;
}

.grid1-2 h4,
.grid1-3 h4 {
    width: 100%;
    height: auto;
    font-weight: bold !important;
    padding-bottom: 10px !important;
}

.grid1-2 p,
.grid1-3 p {
    width: 100%;
    height: auto;
}

.bg1 {
    background: #fff;
}

.bg2 {
    background: #E2E3E6;
}

.section3 {
    margin-top: 60px;
}

.click {
    cursor: pointer;
    margin-bottom: 0px;
}

#show {
    opacity: 0;
    height: 0px;
    min-height: 0px;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

#show.show {
    opacity: 1;
    height: 780px;
    min-height: 780px;
    display: block !important;
}

table {
    border-collapse: collapse;
    width: 100%;
}

th,
td {
    text-align: left;
    padding: 20px;
    line-height: 1.4em;
    width: 33.3333%;
}

th:nth-child(2) {
    background: #ffffff;
    border-bottom: 1px solid #e2e3e5;
    font-size: 1.2em;
    font-weight: bold;
    min-height: 40px;
}

th:nth-child(3) {
    background: #FF6A5D;
    color: #ffffff;
    font-size: 1.2em;
    font-weight: bold;
    border-bottom: 1px solid #e2e3e5;
    min-height: 40px;
}

td:first-child {
    color: #FF6A5D;
    background: #ffffff;
}

tr:first-child > th:first-child {
    color: #FF6A5D;
    background: transparent !important;
}

tr:nth-child(2) > th:nth-child(2) {
    color: #FF6A5D;
    background: #fff !important;
}

td:nth-child(2) {
    background: #ffffff;
    border-bottom: 1px solid #e2e3e5;
}

td:last-child {
    background: #FF6A5D;
    color: #ffffff;
    border-bottom: 1px solid #e2e3e5;
}

.cd-scroll-down {
    position: absolute;
    left: 50%;
    right: auto;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    bottom: 20px;
    width: 38px;
    height: 44px;
    z-index: 3;
    background: url("../img/cd-arrow-bottom.svg") no-repeat center center;
}

/* No Touch devices */

.cd-nav-trigger {
    display: none;
}

.no-touch #cd-vertical-nav {
    position: absolute;
    right: 0px;
    top: 50%;
    bottom: auto;
    margin-right: 20px;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 1;
}

.no-touch #cd-vertical-nav li {
    text-align: left;
    color: #000;
    width: auto;
    height: 80px;
    float: left;
    padding: 30px 20px;
    position: relative;
    border-bottom: 4px solid #fff;
}

.no-touch #cd-vertical-nav li:hover {
    border-bottom: 4px solid #FF6A5D;
}

/* Touch devices */

.touch .cd-nav-trigger {
    display: block;
    z-index: 2;
    position: fixed;
    bottom: 30px;
    right: 5%;
    height: 44px;
    width: 44px;
    border-radius: 0.25em;
    background: rgba(255, 255, 255, 0.9);
}

.touch .cd-nav-trigger span {
    position: absolute;
    height: 4px;
    width: 4px;
    background-color: #3e3947;
    border-radius: 50%;
    left: 50%;
    top: 50%;
    bottom: auto;
    right: auto;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    -o-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}

.touch .cd-nav-trigger span::before,
.touch .cd-nav-trigger span::after {
    content: '';
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    background-color: inherit;
    border-radius: inherit;
}

.touch .cd-nav-trigger span::before {
    top: -9px;
}

.touch .cd-nav-trigger span::after {
    bottom: -9px;
}

.touch #cd-vertical-nav {
    position: fixed;
    z-index: 1;
    right: 5%;
    bottom: 30px;
    width: 90%;
    max-width: 400px;
    max-height: 90%;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    -webkit-transform-origin: right bottom;
    -moz-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    -o-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    -webkit-transition-property: -webkit-transform;
    -moz-transition-property: -moz-transform;
    transition-property: transform;
    -webkit-transition-duration: 0.2s;
    -moz-transition-duration: 0.2s;
    transition-duration: 0.2s;
    border-radius: 0.25em;
    background-color: rgba(255, 255, 255, 0.9);
}

.touch #cd-vertical-nav a {
    display: block;
    padding: 1em;
    border-bottom: 1px solid rgba(62, 57, 71, 0.1);
}

.touch #cd-vertical-nav a span:first-child {
    display: none;
}

.touch #cd-vertical-nav a.is-selected span:last-child {
    color: #d88683;
}

.touch #cd-vertical-nav.open {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}

.touch #cd-vertical-nav.open + .cd-nav-trigger {
    background-color: transparent;
}

.touch #cd-vertical-nav.open + .cd-nav-trigger span {
    background-color: rgba(62, 57, 71, 0);
}

.touch #cd-vertical-nav.open + .cd-nav-trigger span::before,
.touch #cd-vertical-nav.open + .cd-nav-trigger span::after {
    background-color: #3e3947;
    height: 3px;
    width: 20px;
    border-radius: 0;
    left: -8px;
}

.touch #cd-vertical-nav.open + .cd-nav-trigger span::before {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 1px;
}

.touch #cd-vertical-nav.open + .cd-nav-trigger span::after {
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    transform: rotate(135deg);
    bottom: 0;
}

.touch #cd-vertical-nav li:last-child a {
    border-bottom: none;
}

@media only screen and (min-width: 768px) {
    .touch .cd-nav-trigger,
    .touch #cd-vertical-nav {
        bottom: 40px;
    }

    th,
    td {
        text-align: left;
        padding: 20px;
        line-height: 1.4em;
        width: auto;
    }
}
@media only screen and (max-width: 768px) {
.menu{
	width:80px;
	height:80px;
	float:right;
	position:relative;
	left:0;
	margin-top:-10px;
	margin-right:-15px;
	opacity:0.8;
	cursor: pointer;
}
.menu:hover{
	opacity:1;
}
.menu:after{
	width:40px;
	height:2px;
	position:absolute;
	left:20px;
	right:20px;
	content:'';
	top:30px;
	background:#000;
	-moz-transform: rotate(0deg);
-webkit-transform: rotate(0deg);
-o-transform: rotate(0deg);
-ms-transform: rotate(0deg);
transform: rotate(0deg);
	-webkit-transition: transform 0.3s ease-in-out;
-moz-transition: transform 0.3s ease-in-out;
-ms-transition: transform 0.3s ease-in-out;
-o-transition: transform 0.3s ease-in-out;
transition: transform 0.3s ease-in-out;
}
.menu:before{
	width:40px;
	height:2px;
	position:absolute;
	left:20px;
	right:20px;
	content:'';
	background:#000;
	top:45px;
		-moz-transform: rotate(0deg);
-webkit-transform: rotate(0deg);
-o-transform: rotate(0deg);
-ms-transform: rotate(0deg);
transform: rotate(0deg);
	-webkit-transition: transform 0.3s ease-in-out;
-moz-transition: transform 0.3s ease-in-out;
-ms-transition: transform 0.3s ease-in-out;
-o-transition: transform 0.3s ease-in-out;
transition: transform 0.3s ease-in-out;
}
	.menu.clicked.menu:before{
		top:40px;
	-moz-transform: rotate(45deg);
-webkit-transform: rotate(45deg);
-o-transform: rotate(45deg);
-ms-transform: rotate(45deg);
transform: rotate(45deg);
	}
		.menu.clicked.menu:after{
			top:40px;
	-moz-transform: rotate(-45deg);
-webkit-transform: rotate(-45deg);
-o-transform: rotate(-45deg);
-ms-transform: rotate(-45deg);
transform: rotate(-45deg);
	}
	#cd-vertical-nav{
		display:none;
		-webkit-transition: opacity 0.3s ease-in-out;
-moz-transition: opacity 0.3s ease-in-out;
-ms-transition: opacity 0.3s ease-in-out;
-o-transition: opacity 0.3s ease-in-out;
transition: opacity 0.3s ease-in-out;
	}
	#cd-vertical-nav ul li{
		width:100%!important;
		height:auto;
		float:left;
		padding:0px!important;
		position:relative;
	}
	#cd-vertical-nav ul li a{
		width:100%!important;
		height:80px;
		background:;
		padding:30px 20px;
		margin-top:0px;
		position:absolute;
	}
	#cd-vertical-nav.visible{
		display:block!important;
		position:fixed!important;
		margin-top:240px!important;
		top:0;
		background:#fff;
		z-index:200;
		width:100%;
		right:-20px;
		-webkit-box-shadow: 0px 7px 15px 0 rgba(0,0,0,0.125);
				box-shadow: 0px 7px 15px 0 rgba(0,0,0,0.125);
	}
}
.clear-both {
    clear: both;
}

.clear-both.mob-open {
    display: none;
}

.fon-wei-bold {
    font-weight: bold !important;
}

p {
    font-weight: lighter;
}

/* ==============================
ALL
============================== */

.title {
    padding: 0px 0 40px 0px;
    text-align: center;
    max-width: 1020px;
    margin: 0px auto;
}

.max-1600 {
    max-width: 1600px;
    margin: auto;
}

.max-1200 {
    max-width: 1020px;
    margin: auto;
}

/* ==============================
section 2
============================== */

.section-2 {
    height: auto;
}

.section-2 p {
    color: #95989a;
    font-size: 20px;
    width: 100%;
    float: left;
    line-height: 1.6em;
}

.section-2 .fon-wei-bold {
    padding: 10px 0 5px 0;
}

/* ---------- box style ---------- */

.section-2 .box-sty-1 {
    width: 100%;
    margin: auto;
}

.section-2 .box-sty-1 .sma-box {
    width: 25%;
    height: 260px;
    float: left;
    text-align: center;
    padding: 0 20px;
}

.section-2 .box-sty-2 {
    width: 75%;
    margin: 0px auto;
}

.section-2 .box-sty-2 .sma-box {
    width: 33.333%;
    float: left;
    text-align: center;
    padding: 0 20px;
}

.section-2 .box2 .size {
    padding: 50px 20px;
}

.section-2 .box2 .w50p {
    width: 50%;
}

.section-2 .inner-left {
    padding: 0 0 0 33%;
}

.section-2 .inner-right {
    padding: 0 33% 0 0;
}

/* ==============================
section 3
============================== */
.item-test {
    width: 100%;
    height: auto;
    float: left;
}

.item-test2 {
    width: 100%;
    height: auto;
    float: left;
}

.section-3 {
    padding: 120px 0px 120px 0px;
    text-align: left;
    width: 100%;
    height: auto;
    line-height: 1.4em;
    -webkit-transition: background 0.3s ease-in-out;
    -moz-transition: background 0.3s ease-in-out;
    -ms-transition: background 0.3s ease-in-out;
    -o-transition: background 0.3s ease-in-out;
    transition: background 0.3s ease-in-out;
}

.section-3 .title h3 {
    border-bottom: 2px solid #222325;
    padding-bottom: 20px;
    max-width: 600px;
    margin: 0px auto;
    margin-bottom: 20px;
}

.section-3 .form1 {
    width: 100%;
    max-width: 800px;
    height: auto;
    display: block;
    margin: 60px auto 60px auto;
    padding-top: 60px;
}

.open-close {
    width: 100px;
    height: 100px;
    margin: 0px auto;
    background: #FF6A5D;
    position: relative;
    border-radius: 50%;
    z-index: 5;
    -webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.5);
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.open-close:hover {
    background: #E53935;
}

.open-close:after {
    position: absolute;
    height: 60px;
    content: '';
    width: 2px;
    background: #fff;
    margin: 0px auto;
    left: 0;
    right: 0;
    top: 20px;
}

.open-close:before {
    position: absolute;
    height: 2px;
    content: '';
    width: 60px;
    background: #fff;
    margin: 0px auto;
    left: 0;
    right: 0;
    top: 49px;
}

.rotate {
    -moz-transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    transform: rotate(135deg);
}

/* ---------- sub title ---------- */

.section-3 .form1 .sub-title,
.section-3 .form2 .sub-title {
    background: #E2E3E6;
}

.section-3 .sub-title {
    height: 55px;
}

.section-3 .sub-title p {
    font-size: 20px !important;
    line-height: 55px;
    text-align: center;
}

/* ---------- form all ---------- */

.section-3 .form .box {
    padding: 15px;
}

.section-3 .form .hei-1 {
    height: 120px;
    border-bottom: 1px solid #E2E3E6;
}

.section-3 .form .hei-2 {
    height: 105px;
    border-bottom: 1px solid #E2E3E6;
}

.section-3 .form .hei-3 {
    height: 55px;
    border-bottom: 1px solid #E2E3E6;
}

.section-3 .form .hei-4 {
    height: 75px;
}

/* ---------- form 1 ---------- */

.section-3 .form1 .hei-1,
.section-3 .form1 .hei-2,
.section-3 .form1 .hei-3 {
    border-bottom: none;
}

.section-3 .form1 .box p {
    color: #FF6A5D;
    font-size: 21px;
}

/* ---------- form 2 ---------- */

.section-3 .form2 .box p {
    color: #95989A;
    font-size: 16px;
}

/* ---------- form 3 ---------- */
.fon-wei-bold {
    font-size: 21px;
    font-weight: bold;
}

.section-3 .form3 p,
.section-3 .form3 li {
    color: #fff;
    font-size: 16px;
    font-weight: lighter;
}

/* ==============================
section 3-1
============================== */

.section3-1 {
    width: 100%;
    height: auto;
    position: relative;
    background: #d2d3d5;
    padding: 60px 0 60px 0;
}

.section3-1 .title {
    padding: 0 0 60px 0;
    margin-bottom: -0px;
}

/* ==============================
section 5
============================== */

.section-5 {
    width: 100%;
    height: auto;
    padding: 60px 25px 60px 25px;
}

.section-5 .title {
    color: #ffffff;
}

.section-5 .message {
    max-width: 600px;
    margin: auto;
    background: #fff;
}

.section-5 .message .sub-title {
    height: 66px;
    border-bottom: 2px solid #FF6A5D;
}

.section-5 .message .sub-title p {
    line-height: 66px;
    text-align: center;
}

/* ---------- form ---------- */

.section-5 .message .form {
    background: #fff;
    padding: 40px 20px 20px 20px;
}

.section-5 .form {
    padding-bottom: 40px;
    width: 100%;
    height: auto;
    float: left;
}

.section-5 .box {
    margin: 0 0 10px 0;
    positon: relative;
    width: 100%;
    height: auto;
    float: left;
}

.section-5 label {
    width: 100px;
    font-size: 14px;
    color: #3c3c3c !important;
    right: 0;
    left: 0;
    font-weight: normal;
    position: absolute;
}

.section-5 label.ver-top {
    vertical-align: top;
    padding: 5px 0 0 0;
}

.input-holder {
    width: 100%;
    height: auto;
    padding-left: 120px;
    position: relative;
}

.section-5 input[type=text] {
    width: 100%;
    height: 40px;
    font-size: 16px;
    padding: 10px 0;
    background: #F0F0F0;
    text-indent: 5px;
    border: none;
    position: relative;
}

.section-5 textarea {
    width: 100%;
    height: 100px;
    font-size: 16px;
    padding: 10px 0;
    background: #F0F0F0;
    text-indent: 5px;
    border: none;
    resize: none;
}

.section-5 button.submit {
    width: 100%;
    background: #f26a5f;
    padding: 20px 0;
    border: none;
    color: white;
}

/* ==============================
Footer
============================== */

.footer {
    background: #FF6A5D;
    padding: 25px 25px;
    font-size:10pt;
    letter-spacing:1px;
}

.footer p {
    color: #fff;
    text-align: center;
    font-weight:400;
}

@media screen and (max-width: 1023px) {
    .clear-both.mob-open {
        clear: both;
        display: block;
    }

    /* ==============================
    section 2
    ============================== */
    .section-2 .box-sty-1 {
        width: 100%;
    }

    .section-2 .box-sty-1 .sma-box {
        width: 50%;
        height: 280px;
    }

    .section-2 .box-sty-2 {
        width: 100%;
        margin: 0px auto;
    }

    .section-2 .box-sty-2 .sma-box {
        width: 50%;
    }

    .section-2 .box2 .size {
        padding: 25px 20px;
    }

    .section-2 .box2 .w50p {
        padding: 25px 0;
    }

    .section-2 .inner-left {
        padding: 0 0 0 0%;
    }

    .section-2 .inner-right {
        padding: 0 0% 0 0;
    }

    .section-2 .sma-box.w50p.tex-ali-cen {
        float: none;
        margin: auto;
        padding: 25px 0 0 0;
    }

    /* ==============================
    section 3
    ============================== */
    .section-3 .form {
        width: 50%;
    }
	
	


}

.visible-xs {
    display: none;
    height: 0;
    visibility: hidden;
    overflow: hidden;
}

/* ######################################################## */
@media screen and (max-width: 991px) {
		.grid1-3 {
    width: 50%;
    height: auto;
    float: left;
    padding: 10px;
}
}
@media screen and (max-width: 767px) {
    /* ==============================
    section 2
    ============================== */
    .section-2 .box-sty-1 {
        width: 100%;
    }

    .section-2 .box-sty-1 .sma-box {
        width: 100%;
        float: none;
        padding: 20px 20px;
        height: 280px;
    }

    .section-2 .box-sty-2 .sma-box {
        width: 100%;
        float: none;
        padding: 20px 20px;
        height: 280px;
    }

    .section-2 .box2 .size {
        padding: 20px 20px;
    }

    .section-2 .box2 .w50p {
        width: 100%;
    }

    .section-2 .inner-left {
        padding: 0 0 0 0%;
    }

    .section-2 .inner-right {
        padding: 0 0% 0 0;
    }

    /* ==============================
    section 3
    ============================== */
    .section-3 .form {
        width: 100%;
        float: none;
    }

    /* ---------- form all ---------- */
    .section-3 .form .hei-1,
    .section-3 .form .hei-2,
    .section-3 .form .hei-3,
    .section-3 .form .hei-4 {
        height: auto;
        border-bottom: none;
    }
	.grid1-3 {
    width: 100%;
    height: auto;
    float: left;
    padding: 10px;
}
    /* ==============================
    section 5
    ============================== */
    .hidden-xs {
        display: none;
        height: 0;
        visibility: hidden;
        overflow: hidden;
    }

    .visible-xs {
        display: block;
        height: auto;
        visibility: visible;
        overflow: hidden;
    }
	#show.show {
    opacity: 1;
    height: 1020px;
    min-height: 1020px;
    display: block !important;
}
	.section-5 label {
    width: 100%;
		height:auto;
		float:left;
		margin-bottom:10px;
    font-size: 14px;
    color: #3c3c3c !important;
    right: 0;
    left: 0;
    font-weight: normal;
    position: relative;
    text-align:left!important;
}

.input-holder {
    width: 100%;
    height: auto;
    padding-left: 0px;
    position: relative;
	margin-top:0px;
}


}

/* ==============================
    Fade In
    ============================== */

.animation-element.fade-in {
    opacity: 0;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.animation-element.fade-in.in-view {
    opacity: 1;
    -webkit-transition-delay: 0.25s;
    /* Safari */
    transition-delay: 0.25s;
    transition-delay: 0.25s;
}

/*animation slide left styled for testimonials*/

.animation-element.move-in {
    opacity: 0;
    -webkit-transition: all 0.7s ease-in-out;
    -moz-transition: all 0.7s ease-in-out;
    -ms-transition: all 0.7s ease-in-out;
    -o-transition: all 0.7s ease-in-out;
    transition: all 0.7s ease-in-out;

    -moz-transform: translateY(100px);
    -webkit-transform: translateY(100px);
    -o-transform: translateY(100px);
    -ms-transform: translateY(100px);
    transform: translateY(100px);
}

.animation-element.move-in.in-view {
    opacity: 1;
    -webkit-transition-delay: 0.25s;
    /* Safari */
    transition-delay: 0.25s;

    -moz-transform: translateY(0px);
    -webkit-transform: translateY(0px);
    -o-transform: translateY(0px);
    -ms-transform: translateY(0px);
    transform: translateY(0px);
}
@media screen and (max-width: 767px) {
	.animation-element.fade-in {
    opacity: 1;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.animation-element.fade-in.in-view {
    opacity: 1;
    -webkit-transition-delay: 0.25s;
    /* Safari */
    transition-delay: 0.25s;
    transition-delay: 0.25s;
}

/*animation slide left styled for testimonials*/

.animation-element.move-in {
    opacity: 1;

    -moz-transform: translateY(0px);
    -webkit-transform: translateY(0px);
    -o-transform: translateY(0px);
    -ms-transform: translateY(0px);
    transform: translateY(0px);
}

.animation-element.move-in.in-view {
    opacity: 1;
    -webkit-transition-delay: 0.25s;
    /* Safari */
    transition-delay: 0.25s;

    -moz-transform: translateY(0px);
    -webkit-transform: translateY(0px);
    -o-transform: translateY(0px);
    -ms-transform: translateY(0px);
    transform: translateY(0px);
}
}
.swiper-button-next {
    width: 60px;
}

.parallax-window {
    min-height: 100%;
    background: transparent;
}

.parallax-window2 {
    min-height: auto;
    display: block;
    background: transparent;
}

.parallax-window3 {
    min-height: auto;
    background: transparent;
}

.item-hover {
    width: 100%;
    height: 500px;
    float: left;
    overflow: hidden;
    background: #fff;
    border: 10px solid #fff;
    cursor: pointer;
    position: relative
}

.item-hover img {
    width: 100%;
    height: auto;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    -webkit-transition: transform 0.5s ease-in-out;
    -moz-transition: transform 0.5s ease-in-out;
    -ms-transition: transform 0.5s ease-in-out;
    -o-transition: transform 0.5s ease-in-out;
    transition: transform 0.5s ease-in-out;
    -moz-transform: translateY(0%);
    -webkit-transform: translateY(0%);
    -o-transform: translateY(0%);
    -ms-transform: translateY(0%);
    transform: translateY(0%);
}

.item-hover:hover .item-hover img {
    -moz-transform: translateY(-100%);
    -webkit-transform: translateY(-100%);
    -o-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    transform: translateY(-100px);
}

/* ==============================
    small font
    ============================== */

h1.small-font {
    font-size: 48px;
}
