html, body {
    margin: 0;
    padding: 0;
}
html {
    position: relative;
	min-height:100%;
}

.pos-relative {
	position:relative;
}
.pos-absolute {
	position: absolute;
}
.pos-static {
	position: static !important;
}
.display-block {
	display:block !important;
}
.display-table {
	display:table !important;
}


p {
	margin: 0;
}
a, button {
	text-decoration: none !important;
	outline: none !important;
	border: none;
}
.clear-button {
	background:none;
	border: none;
	padding:0;
	margin:0;
}
input, textarea {
	outline: none !important;
}
.row {
	margin-left: 0;
	margin-right: 0;
}

/* clear */
.clear-fix {
	display: table !important;
	clear: both !important;
	width: 100%;
}
.clear-list-style,
.clear-list-style > li {
	position:relative;
	list-style:none !important;
	padding:0;
	margin:0;
}
.line-height-zero {
	line-height:0 !important;
}

/* display table cell */
.sec-table {
	position:relative;
	display:table !important;
	clear:both;
	width:100%;
}
.sec-table > .sec-row {
	position:relative;
	display:table-row !important;
	width:100%;
	height:100%;
}
.sec-table > .sec-row > .sec-col {
	position:relative;
	display:table-cell !important;
	vertical-align:top;
	/*white-space: nowrap;*/
	width:100%;
}
.sec-table > .sec-row > .sec-col.left {
    text-align: left;
    width: 99%;
}
.sec-table > .sec-row > .sec-col.right {
	text-align: right;
    width: 1%;
}

/* display inline block */
.sec-table.sec-block,
.sec-block {
	display:block !important;
}
.sec-table > .sec-col {
	position:relative;
	display:inline-block;
	float:left;
	width:50%;
	height:100%;
}
.sec-table > .sec-col.pd {
	padding-left:20px;
	padding-right:20px;
}

.vertical-align-top {
	vertical-align:top !important;
}
.vertical-align-middle {
	vertical-align: middle !important;
}
.vertical-align-bottom {
	vertical-align:bottom !important;
}

.word-wrap {
	overflow: hidden;
}
.inline-word-wrap {
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
}

/* img */
img {
	font-size: 15px;
    line-height: 20px;
	color:#ccc !important;
}
.img-responsive {
	position: relative;
	display: block;
	width: 100%;
	max-width: 100%;
}
.img-hover {
    overflow: hidden;
}
.img-hover .this-img-hover {
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
}
.img-hover:hover .this-img-hover {
    transform: scale(1.08);
    -webkit-transform: scale(1.08);
    -moz-transform: scale(1.08);
    -ms-transform: scale(1.08);
    -o-transform: scale(1.08);
}
.img-hover .this-img-hover,
.img-hover:hover .this-img-hover {
    transition: transform 0.3s ease;
    -webkit-transition: -webkit-transform 0.3s ease;
    -moz-transition: -moz-transform 0.3s ease;
    -ms-transition: -ms-transform 0.3s ease;
    -o-transition: -o-transform 0.3s ease;
}

.secimg {
    position: relative;
    display: block;
    width: 100%;
}
.secimg > .secimg-size {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    z-index: 2;
}
.secimg > .secimg-size > img,
.secimg > .secimg-banner > img {
	position:relative;
	display:block;
	width:100%;
	height:auto;
	max-width:100%;	
}
.secimg > .secimg-size + .secimg-banner {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.secimg > .secimg-size + .secimg-banner:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
}
.img-size {
    position: relative;
    width: 100%;
    max-width: 100%;
}
.img-banner-bg {
	position:absolute;
	width:100%;
	height:100%;
	top:0;
	bottom:0;
	left:0;
	right:0;
	background-position:center;
	background-repeat:no-repeat;
	background-size:cover;
}
.img-banner-bg.bg-parallax {
	/*background-size:100% auto;*/
	background-position: center center;
	transition:background 0.5s ease;
	-webkit-transition:background 0.5s ease;
	-moz-transition:background 0.5s ease;
	-ms-transition:background 0.5s ease;
	-o-transition:background 0.5s ease;
}
.iframe-banner-bg {
	position:absolute;
	width:100%;
	height:100%;
	top:0;
	bottom:0;
	left:0;
	right:0;
	z-index: 1;
}

.secimg > [ class*="secimg-" ].index-top {
	z-index:2 !important;
}
.secimg > [ class*="secimg-" ].index-bottom {
	z-index:1 !important;
}

/* secimg slide */
.secimg.secimg-slide > .secimg-size {
    z-index: 1 !important;
}
.secimg.secimg-slide > .secimg-banner {
    z-index: 2 !important;
}
.secimg.secimg-slide > .secimg-size + .secimg-banner:before {
	display:none !important;
}
.secimg.secimg-slide .secimg-banner > .owl-carousel {
	position:relative;
    z-index: 2 !important;
}

/* img on device */
.img-on-laptop,
.img-on-tablet,
.img-on-mobile {
	display:none !important;
}
.img-on-desktop {
	display:block !important;
}

/* padding */

/* left */
.pd-left-5 {
	padding-left: 5px !important;
}
.pd-left-10 {
	padding-left: 10px !important;
}
.pd-left-15 {
	padding-left: 15px !important;
}
.pd-left-20 {
	padding-left: 20px !important;
}
.pd-left-25 {
	padding-left: 25px !important;
}
.pd-left-30 {
	padding-left: 30px !important;
}
.pd-left-35 {
	padding-left: 35px !important;
}
.pd-left-40 {
	padding-left: 40px !important;
}
.pd-left-45 {
	padding-left: 45px !important;
}
.pd-left-50 {
	padding-left: 50px !important;
}

/* right */
.pd-right-5 {
	padding-right: 5px !important;
}
.pd-right-10 {
	padding-right: 10px !important;
}
.pd-right-15 {
	padding-right: 15px !important;
}
.pd-right-20 {
	padding-right: 20px !important;
}
.pd-right-25 {
	padding-right: 25px !important;
}
.pd-right-30 {
	padding-right: 30px !important;
}
.pd-right-35 {
	padding-right: 35px !important;
}
.pd-right-40 {
	padding-right: 40px !important;
}
.pd-right-45 {
	padding-right: 45px !important;
}
.pd-right-50 {
	padding-right: 50px !important;
}

/* top */
.pd-top-5 {
	padding-top: 5px !important;
}
.pd-top-10 {
	padding-top: 10px !important;
}
.pd-top-15 {
	padding-top: 15px !important;
}
.pd-top-20 {
	padding-top: 20px !important;
}
.pd-top-25 {
	padding-top: 25px !important;
}
.pd-top-30 {
	padding-top: 30px !important;
}
.pd-top-35 {
	padding-top: 35px !important;
}
.pd-top-40 {
	padding-top: 40px !important;
}
.pd-top-45 {
	padding-top: 45px !important;
}
.pd-top-50 {
	padding-top: 50px !important;
}

/* bottom */
.pd-bottom-5 {
	padding-bottom: 5px !important;
}
.pd-bottom-10 {
	padding-bottom: 10px !important;
}
.pd-bottom-15 {
	padding-bottom: 15px !important;
}
.pd-bottom-20 {
	padding-bottom: 20px !important;
}
.pd-bottom-25 {
	padding-bottom: 25px !important;
}
.pd-bottom-30 {
	padding-bottom: 30px !important;
}
.pd-bottom-35 {
	padding-bottom: 35px !important;
}
.pd-bottom-40 {
	padding-bottom: 40px !important;
}
.pd-bottom-45 {
	padding-bottom: 45px !important;
}
.pd-bottom-50 {
	padding-bottom: 50px !important;
}

/* all */
.pd-all-5 {
	padding: 5px;
}
.pd-all-10 {
	padding: 10px;
}
.pd-all-15 {
	padding: 15px;
}
.pd-all-20 {
	padding: 20px;
}
.pd-all-25 {
	padding: 25px;
}
.pd-all-30 {
	padding: 30px;
}
.pd-all-35 {
	padding: 35px;
}
.pd-all-40 {
	padding: 40px;
}
.pd-all-45 {
	padding: 45px;
}
.pd-all-50 {
	padding: 50px;
}

/* left - right */
.pd-left-right-5 {
	padding-left: 5px !important;
	padding-right: 5px !important;
}
.pd-left-right-10 {
	padding-left: 10px !important;
	padding-right: 10px !important;
}
.pd-left-right-15 {
	padding-left: 15px !important;
	padding-right: 15px !important;
}
.pd-left-right-20 {
	padding-left: 20px !important;
	padding-right: 20px !important;
}
.pd-left-right-25 {
	padding-left: 25px !important;
	padding-right: 25px !important;
}
.pd-left-right-30 {
	padding-left: 30px !important;
	padding-right: 30px !important;
}
.pd-left-right-35 {
	padding-left: 35px !important;
	padding-right: 35px !important;
}
.pd-left-right-40 {
	padding-left: 40px !important;
	padding-right: 40px !important;
}
.pd-left-right-45 {
	padding-left: 45px !important;
	padding-right: 45px !important;
}
.pd-left-right-50 {
	padding-left: 50px !important;
	padding-right: 50px !important;
}

/* top - bottom */
.pd-top-bottom-5 {
	padding-top: 5px !important;
	padding-bottom: 5px !important;
}
.pd-top-bottom-10 {
	padding-top: 10px !important;
	padding-bottom: 10px !important;
}
.pd-top-bottom-15 {
	padding-top: 15px !important;
	padding-bottom: 15px !important;
}
.pd-top-bottom-20 {
	padding-top: 20px !important;
	padding-bottom: 20px !important;
}
.pd-top-bottom-25 {
	padding-top: 25px !important;
	padding-bottom: 25px !important;
}
.pd-top-bottom-30 {
	padding-top: 30px !important;
	padding-bottom: 30px !important;
}
.pd-top-bottom-35 {
	padding-top: 35px !important;
	padding-bottom: 35px !important;
}
.pd-top-bottom-40 {
	padding-top: 40px !important;
	padding-bottom: 40px !important;
}
.pd-top-bottom-45 {
	padding-top: 45px !important;
	padding-bottom: 45px !important;
}
.pd-top-bottom-50 {
	padding-top: 50px !important;
	padding-bottom: 50px !important;
}

/* none padding */
.none-pd {
	padding: 0 !important;
}
.none-pd-top {
	padding-top: 0 !important;
}
.none-pd-bottom {
	padding-bottom: 0 !important;
}
.none-pd-left {
	padding-left: 0 !important;
}
.none-pd-right {
	padding-right: 0 !important;
}

/* margin */

.mg-auto {
	margin-left:auto !important;
	margin-right:auto !important;
}

/* top */
.mg-top-3 {
	margin-top: 3px !important;
}
.mg-top-5 {
	margin-top: 5px !important;
}
.mg-top-10 {
	margin-top: 10px !important;
}
.mg-top-15 {
	margin-top: 15px !important;
}
.mg-top-20 {
	margin-top: 20px !important;
}
.mg-top-25 {
	margin-top: 25px !important;
}
.mg-top-30 {
	margin-top: 30px !important;
}
.mg-top-35 {
	margin-top: 35px !important;
}
.mg-top-40 {
	margin-top: 40px !important;
}
.mg-top-45 {
	margin-top: 45px !important;
}
.mg-top-50 {
	margin-top: 50px !important;
}

/* bottom */
.mg-bottom-3 {
	margin-bottom: 3px !important;
}
.mg-bottom-5 {
	margin-bottom: 5px !important;
}
.mg-bottom-10 {
	margin-bottom: 10px !important;
}
.mg-bottom-15 {
	margin-bottom: 15px !important;
}
.mg-bottom-20 {
	margin-bottom: 20px !important;
}
.mg-bottom-25 {
	margin-bottom: 25px !important;
}
.mg-bottom-30 {
	margin-bottom: 30px !important;
}
.mg-bottom-35 {
	margin-bottom: 35px !important;
}
.mg-bottom-40 {
	margin-bottom: 40px !important;
}
.mg-bottom-45 {
	margin-bottom: 45px !important;
}
.mg-bottom-50 {
	margin-bottom: 50px !important;
}

/* left */
.mg-left-5 {
	margin-left: 5px !important;
}
.mg-left-10 {
	margin-left: 10px !important;
}
.mg-left-15 {
	margin-left: 15px !important;
}
.mg-left-20 {
	margin-left: 20px !important;
}
.mg-left-25 {
	margin-left: 25px !important;
}
.mg-left-30 {
	margin-left: 30px !important;
}
.mg-left-35 {
	margin-left: 35px !important;
}
.mg-left-40 {
	margin-left: 40px !important;
}
.mg-left-45 {
	margin-left: 45px !important;
}
.mg-left-50 {
	margin-left: 50px !important;
}

/* right */
.mg-right-5 {
	margin-right: 5px !important;
}
.mg-right-10 {
	margin-right: 10px !important;
}
.mg-right-15 {
	margin-right: 15px !important;
}
.mg-right-20 {
	margin-right: 20px !important;
}
.mg-right-25 {
	margin-right: 25px !important;
}
.mg-right-30 {
	margin-right: 30px !important;
}
.mg-right-35 {
	margin-right: 35px !important;
}
.mg-right-40 {
	margin-right: 40px !important;
}
.mg-right-45 {
	margin-right: 45px !important;
}
.mg-right-50 {
	margin-right: 50px !important;
}

/* all */
.mg-all-5 {
	margin: 5px !important;
}
.mg-all-10 {
	margin: 10px !important;
}
.mg-all-15 {
	margin: 15px !important;
}
.mg-all-20 {
	margin: 20px !important;
}
.mg-all-25 {
	margin: 25px !important;
}
.mg-all-30 {
	margin: 30px !important;
}
.mg-all-35 {
	margin: 35px !important;
}
.mg-all-40 {
	margin: 40px !important;
}
.mg-all-45 {
	margin: 45px !important;
}
.mg-all-50 {
	margin: 50px !important;
}

/* left - right */
.mg-left-right-5 {
	margin-left: 5px !important;
	margin-right: 5px !important;
}
.mg-left-right-10 {
	margin-left: 10px !important;
	margin-right: 10px !important;
}
.mg-left-right-15 {
	margin-left: 15px !important;
	margin-right: 15px !important;
}
.mg-left-right-20 {
	margin-left: 20px !important;
	margin-right: 20px !important;
}
.mg-left-right-25 {
	margin-left: 25px !important;
	margin-right: 25px !important;
}
.mg-left-right-30 {
	margin-left: 30px !important;
	margin-right: 30px !important;
}
.mg-left-right-35 {
	margin-left: 35px !important;
	margin-right: 35px !important;
}
.mg-left-right-40 {
	margin-left: 40px !important;
	margin-right: 40px !important;
}
.mg-left-right-45 {
	margin-left: 45px !important;
	margin-right: 45px !important;
}
.mg-left-right-50 {
	margin-left: 50px !important;
	margin-right: 50px !important;
}

/* top - bottom */
.mg-top-bottom-5 {
	margin-top: 5px !important;
	margin-bottom: 5px !important;
}
.mg-top-bottom-10 {
	margin-top: 10px !important;
	margin-bottom: 10px !important;
}
.mg-top-bottom-15 {
	margin-top: 15px !important;
	margin-bottom: 15px !important;
}
.mg-top-bottom-20 {
	margin-top: 20px !important;
	margin-bottom: 20px !important;
}
.mg-top-bottom-25 {
	margin-top: 25px !important;
	margin-bottom: 25px !important;
}
.mg-top-bottom-30 {
	margin-top: 30px !important;
	margin-bottom: 30px !important;
}
.mg-top-bottom-35 {
	margin-top: 35px !important;
	margin-bottom: 35px !important;
}
.mg-top-bottom-40 {
	margin-top: 40px !important;
	margin-bottom: 40px !important;
}
.mg-top-bottom-45 {
	margin-top: 45px !important;
	margin-bottom: 45px !important;
}
.mg-top-bottom-50 {
	margin-top: 50px !important;
	margin-bottom: 50px !important;
}

/* none margin */
.none-mg {
	margin: 0 !important;
}
.none-mg-top {
	margin-top: 0 !important;
}
.none-mg-bottom {
	margin-bottom: 0 !important;
}
.none-mg-left {
	margin-left: 0 !important;
}
.none-mg-right {
	margin-right: 0 !important;
}

/* lg more */
@media (min-width:1200px) and (max-width:1649px) {
}

/* md */
@media (min-width:992px) and (max-width:1199px) {
/* img on device */
.img-on-desktop,
.img-on-tablet,
.img-on-mobile {
	display:none !important;
}
.img-on-laptop {
	display:block !important;
}
}

/* sm - xs */
@media (max-width:991px) {
}

/* sm */
@media (min-width:768px) and (max-width:991px) {
/* img on device */
.img-on-desktop,
.img-on-laptop,
.img-on-mobile {
	display:none !important;
}
.img-on-tablet {
	display:block !important;
}
}

/* xs */
@media (max-width:767px) {
/* img on device */
.img-on-desktop,
.img-on-laptop,
.img-on-tablet {
	display:none !important;
}
.img-on-mobile {
	display:block !important;
}
}

/* xs more */
@media (max-width:350px) {
}