:root {
	--text: #000000;
	--hover: #ffc002;
	--highlight: #ffee02;	
	--light: #f7f6f2;
	--font-text: 'Epilogue', Arial, sans-serif;
	--font-header: 'Kanit', 'Times New Roman';
}
body {
	font-family: var(--font-text);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5em;
}
body.blocked {
	overflow: hidden !important;
}
body:not(.start) {
    padding-top: 0px;
}
.parallax-float {
	position: relative;
	transition: transition .15s linear, opacity .5s ease;
	opacity: 0;
}
.parallax-float.moving {
	opacity: 1;
}
a {
	text-decoration: none;
	color: var(--hover);
}
* {
	box-sizing: border-box;
}
b, strong {
	font-weight: 600;
}
img {
	max-width: 100%;
}
h1 {
	font-family: var(--font-header);
}
h2 {
	font-family: var(--font-header);
	font-size: 30px;
	line-height: 36px;
	margin: 0 0 .5em;
	font-weight: 800;
}
h3 {
	font-size: 24px;
	line-height: 30px;
	margin: .25em 0 .5em;
}
h2 + h3 {
    font-size: 18px;
    margin: -10px 0 1em;
    font-weight: 400;
    line-height: 24px;
    color: #ababab;
    text-transform: uppercase;
    letter-spacing: 1px;
}
svg {
	width: 1em;
	height: 1em;
	fill: var(--highlight);
	vertical-align: middle;
	position: relative;
	top: -2px;	
}
.fluid,
.container {
	position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}
.row {
	display:-ms-flexbox;
	display:flex;
	-ms-flex-wrap:wrap;
	flex-wrap:wrap;
	margin-right:-15px;
	margin-left:-15px
}
.row.center {
	align-items: center;
	
}
.col {
	flex: 0 0 auto; padding: 0 15px;
}
.col-2 {
	flex: 0 0 16.666667%; max-width: 16.666667%; padding: 0 15px;
}
.col-3 {
	flex: 0 0 25%; max-width: 20%; padding: 0 15px;
}
.col-4 {
	flex: 0 0 33.333334%; max-width: 33.333334%; padding: 0 15px;
}
.col-5 {
	flex: 0 0 41.666667%; max-width:41.666667%; padding: 0 15px;
}
.col-6 {
	flex: 0 0 50%; max-width: 50%; padding: 0 15px;
}
.col-7 {
	flex: 0 0 58.333334%; max-width: 58.333334%; padding: 0 15px;
}
.col-8 {
	flex: 0 0 66.666667%; max-width: 66.666667%; padding: 0 15px;
}
.col-9 {
	flex: 0 0 75%; max-width: 75%; padding: 0 15px;
}
.col-12 {
	flex: 0 0 100%; max-width: 100%; padding: 0 15px;
}
.text-center {
	text-align: center !important;
}
.text-right {
	text-align: right !important;
}
.my-0 {
	margin-top: 0 !important;
	margin-bottom: 0 !important;
}
.pl-0 {
	padding-left: 0 !important;
}
.pb-5 {
	padding-bottom: 25px;
}
.p-3 {
	padding: 15px;
}
.p-5 {
	padding: 25px;
}
.btn, a.btn {
    background-color: var(--highlight);
    border: 0;
    padding: 17px 45px 17px 20px;
    display: inline-block;
    vertical-align: middle;
    font-size: 17px;
    font-weight: 900;
    color: #000;
	position: relative;
	transition: all .25s ease;
}
.btn:hover {
	background-color: var(--hover);
	transform: scale(1.025);
}
.btn.btn-alt {
	background-color: var(--gray);
}
.btn svg {
	position: relative;
	fill: #FFF;
}
.btn span {
    position: absolute;
    top: 0;
    width: 50px;
    height: 100%;
    right: -30px;
    content: "";
    background-color: #000;
    fill: #FFF;
    margin-left: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: skewX(-20deg);
    border: 1px var(--highlight) solid;
	transition: all .25s ease;
}
.btn span svg {
	transform: skewX(20deg);
	transition: all .25s ease;
}
.btn:hover span {
	border-color: transparent;
}
.btn:hover span svg {
	
}
@media (max-width: 992px) {
	.d-none {
		display: none;
	}
}
@media (min-width: 992px) {
	[class^="col-lg"] {
		padding: 0 15px;
	}
	.col-lg-2 { flex: 0 0 16.7%; width: 16.7%; }
	.col-lg-3 { flex: 0 0 25%; width: 25%; }
	.col-lg-4 { flex: 0 0 33.3%; width: 33.3%; }
	.col-lg-5 { flex: 0 0 41.6%; width: 41.6%; }
	.col-lg-6 { flex: 0 0 50%; width: 50%; }
	.col-lg-7 { flex: 0 0 58.3%; width: 58.3%; }
	.col-lg-8 { flex: 0 0 66.67%; width: 66.67%; }
	.col-lg-9 { flex: 0 0 75%; width: 75%; }
	.offset-lg-2 { margin-left: 16.7%; }
	.offset-lg-3 { margin-left: 25%; }
	.offset-lg-4 { margin-left: 33.3%; } 
}
@media (min-width: 576px) {
	.container {
		max-width: 540px;
	}
}
@media (min-width: 768px) {
	.container {
		max-width: 720px;
	}
}
@media (min-width: 992px) {
	.container-lg, .container {
		max-width: 100%;
	}
	.menucall, .menuclose {
		display: none;
	}
}
@media (min-width: 1200px) {
	.container-lg, .container {
		max-width: 100%;
	}
}
@media (min-width: 1400px) {
	.container-lg, .container {
		max-width: 1320px;
	}
}
@media (min-width: 992px) {
	.delay-lg-1 { transition-delay:  .125s !important; }
	.delay-lg-2 { transition-delay:  .25s !important; }
	.delay-lg-3 { transition-delay:  .375s !important; }
	.delay-lg-4 { transition-delay:  .5s !important; }
	.delay-lg-5 { transition-delay:  .625s !important; }
	.delay-lg-6 { transition-delay:  .75s !important; }
	.delay-lg-7 { transition-delay:  .875s !important; }
	.delay-lg-8 { transition-delay: 1.0s !important; }
	.delay-lg-9 { transition-delay: 1.125s !important; }
	.delay-lg-10{ transition-delay: 1.250s !important; }
}



header.header {
	position: relative;
	padding: 25px 0;
	box-shadow: 0px 5px 15px rgba(0,0,0,.5);
}
header.header a.logo {
	position: absolute;
}
header.header a.logo:hover {
	opacity: .5;
}
header.header nav ul {
	list-style: none;
	padding: 0 0;
	margin: 0px 0 0 230px;
	display: flex;
}
header.header nav ul li {
	
}
header.header nav ul li a {
	font-weight: 800;
	color: var(--text);
	display: block;
	padding: 20px 15px;
	transition: all .25s ease;
}
header.header nav ul li a:hover {
	color: var(--hover);
}
header.header .fast-call {
	position: absolute;
	top: 0;
	right: 0;
}



.slider-wrap,
.slider,
.slider .item {
	height: 650px;
}
.slider .item {
	background-color: #000;
	align-items: center;
	display: flex;
}
.slider .item picture {
    width: 52vw;
    order: 2;
    height: 650px;
    position: absolute;
    display: block;
	top: 0;
    right: 0;
}
.slider .item picture img {
	object-fit: cover;
	height: 100%;
}
.slider .item .text {
	color: #FFF;
	order: 1;
	max-width: 500px;
	font-size: 18px;
	color: rgba(255,255,255,.75);
	line-height: 26px;
}
.slider .item .text h1 {
    color: var(--highlight);
    font-size: 60px;
    line-height: 62px;
    font-weight: 600;
	margin: 0 0 25px 0;
}



.text-wrap {
	position: relative;
	margin: 50px 0;
	padding: 80px 0;
}
.text-wrap .bg-pic-right {
	position: absolute;
	right: 0;
	top: 0;
	width: 50vw;
	height: 100%;
	clip-path: polygon(200px 0%, 100% 0, 100% 100%, 0% 100%);
	overflow: hidden;
}
.text-wrap .bg-pic-left {
    position: absolute;
    left: 0;
    top: 0;
    width: 48vw;
    height: 100%;
    clip-path: polygon(0px 0%, 100% 0%, calc(100% - 200px) 100%, 0% 100%);
    overflow: hidden;
}
.text-wrap a:not(.btn):hover {
	text-decoration: underline;
	color: var(--text);
}




.blocks {
	margin: 40px 0;
	padding: 40px 0;
}
.blocks .content {
	text-align: center;
}
.blocks .list {
	display: flex;
	flex-wrap: wrap;
	margin: 50px 0 30px;
}
.blocks .list .item {
	border: 1px #e6e6e6 solid;
	padding: 20px 35px 120px;
	flex: 0 0 33.3%;
	position: relative;
	transition: all .25s ease;
}
.blocks .item .ico {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 95px;
	transition: all .25s ease;
}
.blocks .item .ico:before {
    background-color: #e6e6e6;
    width: 100px;
    height: 100px;
    content: "";
    position: absolute;
    bottom: 0;
    left: 18px;
    z-index: 5;
    transform: skewX(-20deg);
}
.blocks .item .ico img {
	width: 48px;
	height: 48px;
	object-fit: scale-down;
	position: relative;
	z-index: 10;
}
.blocks .item:not(.nolink):hover {
	background-color: var(--highlight);
	color: var(--text);
	cursor: pointer;
}
.blocks .item:not(.nolink):hover .ico {
	transform: scale(0);
	opacity: 0;
}


.top-banner {
    background-color: var(--highlight);
    padding: 25px 0 50px;
    text-align: center;
}
.top-banner h1 {
	font-size: 50px;
}



.single-col {
	margin: 25px 0;
	padding: 25px 0;
}
.two-cols {
	margin: 25px 0;
	padding: 25px 0;
}
.single-col + .two-cols {
	margin-top: 0;
	padding-top: 0;
}


.download-btn {
    display: block;
    max-width: 400px;
    border: 1px #dfdfdf solid;
    padding: 25px;
    color: var(--text);
    position: relative;
    box-shadow: inset -70px 0px var(--hover);
	transition: all .25s ease;
}
.download-btn:before {
    content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.2.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2022 Fonticons, Inc. --><path d="M288 32c0-17.7-14.3-32-32-32s-32 14.3-32 32V274.7l-73.4-73.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l128 128c12.5 12.5 32.8 12.5 45.3 0l128-128c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L288 274.7V32zM64 352c-35.3 0-64 28.7-64 64v32c0 35.3 28.7 64 64 64H448c35.3 0 64-28.7 64-64V416c0-35.3-28.7-64-64-64H346.5l-45.3 45.3c-25 25-65.5 25-90.5 0L165.5 352H64zM432 456c-13.3 0-24-10.7-24-24s10.7-24 24-24s24 10.7 24 24s-10.7 24-24 24z"/></svg>');
    width: 20px;
    height: 20px;
    display: block;
    position: absolute;
    right: 23px;
    top: 40px;
}
.download-btn:hover {
	box-shadow: inset -400px 0 var(--hover);
	color: #FFF;
}


.mod-45 .download-btn {
	
	max-width: 450px;
	
	height: 120px;
	padding-left: 180px;
}
.mod-45 .download-btn img {
    width: 150px;
    display: block;
    position: absolute;
    top: 10px;
    left: 10px;
    height: 100px;
    object-fit: cover;
}
.mod-45 .download-btn strong {
	display: block;
	margin-top: 5px;
	font-size: 20px;
}
.mod-45 .download-btn:hover {
	box-shadow: initial;
	color: var(--hover);
}





.gallery {
	margin: 25px 0;
	padding: 25px 0;
}
.gallery .images {
	margin: 25px 0 0;
}
.gallery .images .item {
	
}
.gallery .images .item img {
	height: 350px;
	object-fit: cover;
	filter: grayscale(0.5);
	transition: all .25s ease;
	position: relative;
	z-index: 5;
}
.gallery .images .item:hover img {
	filter: grayscale(0);
	z-index: 10;
	transform: scale(1.03);
}


.gallery-round {
	margin: 25px 0;
	padding: 25px 0;
}
.gallery-round .images {
	margin: 25px 0;
    display: flex;
    flex-wrap: wrap;
}
.gallery-round .images a.item {
    flex: 0 0 50%;
    height: 400px;
    margin: 0 0;
	transition: all .25s ease;
	position: relative;
	z-index: 3;
}
.gallery-round .images a.item img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}
.gallery-round .images a.item:hover {
	z-index: 5;
	
	filter: contrast(1.15);
	box-shadow: 0px 5px 15px rgba(0,0,0,.25);
}




.last-gallery {
	margin: 25px 0;
	padding: 50px 0;
	text-align: center;
	background-color: var(--light);
}
.last-gallery .carousel {
	margin: 25px 0 0;
}
.last-gallery .carousel .owl-stage-outer {
	padding-bottom: 100px;
}
.last-gallery .carousel .item {
	max-width: 600px;
	position: relative;
	display: inline-block;
}
.last-gallery .carousel .item img {
	width: 100%;
	height: 450px;
	object-fit: cover;	
}
.last-gallery .carousel .item .caption {
    position: absolute;
    bottom: -70px;
    background: #FFF;
    clip-path: polygon(0% 0%, 0% 100%, 90% 100%, 100% 0%);
    text-align: left;
    padding: 15px 50px 15px 25px;
    font-size: 14px;
    color: rgba(0,0,0,.5);
    left: 30px;
    max-width: 80%;
    border: 1px #ccc solid;
}
.last-gallery .carousel .item .caption h3 {
	color: #000;
	font-family: var(--font-header);
}
.owl-theme .owl-dots .owl-dot span {
    border: 1px #ccc solid;
    width: 50px;
    border-radius: 0;
    background: transparent;
    margin: 0 0;
}
.owl-theme .owl-dots .owl-dot span {
    border: 1px #ccc solid;
    width: 50px;
    border-radius: 0;
    background: transparent;
    margin: 0 0;
	height: 10px;
}
.owl-theme .owl-dots .owl-dot:hover span {
	background-color: var(--highlight);
}
.owl-theme .owl-dots .owl-dot.active span {
	background-color: #000;
}



.overfooter {
	background-color: #232222;
	padding: 50px 0;
	color: #FFF;
}
footer.footer {
	background-color: #000;
	color: #b7b7b7;
	padding: 50px 0;
}
footer.footer h4 {
	color: #FFF;
}
footer a {
	color: rgba(255,255,255,.75);
}
footer a:hover {
	color: var(--highlight);
}
.footer .right-side {
	text-align: right;
}
.footer .middle {
	padding-left: 100px;
}
.footer .middle p {
	position: relative;
	padding-left: 32px;
}
.footer .middle p svg {
	margin: 0 5px 0 0;
	position: absolute;
	top: 0;
	left: 0;
}
.footer .lower {
	font-size: 11px;
}

.contact-form {
    background: var(--light);
    padding: 25px;
}
form#contactFormSend {
    margin: 20px auto 50px;
    max-width: 900px;
}
form.contactForm label {
	display: block;
	text-transform: uppercase;
	margin: 5px 0 2px;
	font-size: 12px;
	letter-spacing: .5px;
}
form.contactForm input,
form.contactForm select,
form.contactForm textarea {
	padding: 12px;
	font-size: 15px;
	font-weight: 600;
	border-radius: 6px;
	border: 1px #bababa solid;
	width: 100%;
	display: block;
}
form.contactForm textarea {
	height: 100px;
}
p.agreement {
    font-size: 12px;
    line-height: 16px;
    text-align: justify;
}
.ajaxInfo {
    display: none;
    padding: 20px;
    font-size: 1.1em;
    font-weight: 600;
    background-color: var(--hover);
    border-radius: 5px;
}

.sl-overlay {
	opacity: 1 !important;
}
.plans {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-start;
	margin: 25px auto 35px;
}
.plans a  {
	flex: 0 0 27%;
	max-width: 27%;
}
table.build-table {
	border: 2px var(--hover) solid;
	margin: 0 auto;
	border-collapse: collapse;
}
table.build-table th {
	background-color: var(--hover);
	color: #000;
	padding: 5px 10px;
}
table.build-table tbody td {
	padding: 5px 10px;
	text-align: center;
}
table.build-table tbody tr:not(:last-of-type) td {
	border-bottom: 1px #dfdfdf solid;
}
table.build-table tbody tr:nth-of-type(even) td {
	background-color: #f2f2f2;
}
.build-table tr td {
	transition: all .25s ease;
	
}
.build-table tr:hover td {
	background-color: #dfdfdf !important;
}
.build-table a {
	transition: all .25s ease;
	font-weight: 600;
}
.build-table a:hover {
	text-decoration: underline;
	color: #333;
}

@media (max-width: 992px) {
	.table-wrap {
		overflow: auto;
	}
}
@media (min-width: 992px) {
	.table-wrap {
		flex: 0 0 100%;
		max-width: 100%;
		padding: 0 15px;
	}
}