:root{
	--input-border:1px solid #A2A2A2;
	--input-focus-shadow:0px 0px 2px  2px RGBA(27, 118, 196, .3);
	--input-focus-border:1px solid RGB(27, 118, 196);
	--max-width:1500px;
}

@font-face {
  font-family: 'Roboto';
  src: url('src.do?nm=Roboto-Regular&tp=ttf&v=1.0') format('truetype'); 
}

html,body{
	width:100%;
	height:100%;
	padding:0;
	margin:0;
}

*{
	font-family:'Roboto';
	color:#3C3C3C;
	box-sizing: border-box;
}

.input-wrapper{
	margin-top:15px;	
	width:90%;
	padding:5px 0px;
}

.input-label{
	font-size:14px;
	color:#202020;
	margin-bottom:5px;
}

input, textarea{
	border:var(--input-border);
	padding:3px;
	font-size:14px;
	outline:none;
	color:#202020;
	border-radius:3px;
}

.input-wrapper > input, textarea, select{
	width:calc(100% - 30px);
}

.input-wrapper .required{
	vertical-align:top;
}

textarea{
	resize:none;
}

input:not(input [role=icon]):focus{
	box-shadow:var(--input-focus-shadow);
	border:var(--input-focus-border);
}

textarea:not([role=icon]):focus{
	box-shadow:0px 0px 2px  2px RGBA(27, 118, 196, .3);
	border:1px solid RGB(27, 118, 196);
}

select{
	height:30px;
	border-radius:3px;
	background-color:#FFF;
}

select:focus{
	box-shadow:var(--input-focus-shadow);
	border:var(--input-focus-border);
}


button{
	background-color:#3470D5;
	color:#FFF;
	border-radius:3px;
	border:0px;
	padding:10px 25px;
	font-size:14px;
	cursor:pointer;
}

input[type="text"]{
	height:30px;
}

input[type="checkbox"]{
	background-color:#FFF;
	font-size:16px;
}


.input-wrapper-icon{
	border:var(--input-border);
	border-radius:3px;
	margin:10px 0px;
	background-color:#FFF;
	overflow:hidden;
}

.input-wrapper-icon > input{
	border:0px;
	width:calc(100% - 30px);
}

.input-wrapper-icon:focus-within{
	box-shadow:var(--input-focus-shadow);
	border:var(--input-focus-border);
}

.input-icon{
	width:20px;
	height:30px;
	text-align:right;
} 

.input-icon:before{
	line-height:30px;
	color:#4768D3;
}


.red-color{
	color:red;
}

.yellow-color{
	color:yellow;
}

.blue-color{
	color:#3470D5;
}

.required{
	color:#3470D5;
}

.disabled{
	color:#616161;
	background-color:#D7D7D7;
}

.header{
	background-color:#E7E7E7;
	padding:5px 10px;
	position:fixed;
	top:0px;
	left:0;
	width:100%;
	height:80px;
	z-index:1000;
}

.container{
	
	display: flex;
    justify-content: center;
}

.content{
	padding:3% 0px;
	max-width:var(--max-width);
	background-color:#F3F3F3;
	margin:20px 0px;
}

.footer{
	min-height:100px;
	background-color:#222526;
	position:relative;
	color:#FFF;
	font-size:14px;
	padding:15px 25px;
}

/* Larger than mobile */
@media (min-width: 300px) {
	
}

/* Larger than phablet */
@media (min-width: 550px) {

	
	.input-wrapper{
		width:95%;
	}
	
}

/* Larger than tablet */
@media (min-width: 750px) {
	
	.input-wrapper{
		width:95%;
	}
	
}

/* Larger than desktop */
@media (min-width: 1000px) {
}

/* Larger than Desktop HD */
@media (min-width: 1200px) {
	
}

:root{
	--slide-bg-color:#FFF;
}

@font-face {
  font-family: 'Kanit-Bold';
  src: url('src.do?nm=Kanit-Bold&tp=ttf&v=1.0') format('truetype'); 
}

#slider-wrapper{
	height:60%;
	margin-top:100px;
	/*background: #F3F3F3;*/
    display: flex;
    justify-content: space-around;
}

.slider{
	max-width:var(--max-width);
	height:100%;
	min-height:300px;
	position:relative;
	background-color:var(--slide-bg-color);
	width: -webkit-fill-available;
	width: -moz-available;
}

.slide-view{
	height:100%;
	white-space:nowrap;
	margin-bottom:10px;
	overflow:hidden;
	position:relative;
	scroll-behavior: smooth;
	background-color:#000;
}

.slide-arrow{
	position:absolute;
	z-index:100;
	height:100px;
	top:0;
	bottom:0;
	margin-top:auto;
	margin-bottom:auto;
	cursor:pointer;
	/*opacity:.3;*/
}

.slide-arrow:hover{
	opacity:1;
}

.slide-arrow-left{
	left:5px;
	transform:rotate(180deg);
}

.slide-arrow-right{
	right:5px;
}

.slide-image{
	width:100%;
	height:100%;
	background-size:cover;
	background-repeat:no-repeat;
	display:inline-flex;
	position:relative;
	text-align:center;
    padding: 0px 30px;
    align-content: center;
}

.slide-text{
	font-family: 'Kanit-Bold';
	font-size:3rem;
	color:#303030;
	content:attr(text);	
	display:inline-block;
	width:100%;
	white-space:normal;
	vertical-align:middle;
	text-shadow: 1px 1px rgba(0,0,0,.9);
	text-transform: uppercase;
	transition:filter .5s ease-out;
	-webkit-transition:filter .5s ease-out;
	z-index:200;
	position:absolute;
	bottom: 50px;
	left:0px;
    background: rgba(255, 255, 255, .5);
}

.slide {
  position: absolute;
  transition: 0.6s ease;
  transform: translate(-100%, 0);
}

.slide.active {
  transform: translate(0, 0);
}    

.slide.active ~ .slide {
  transform: translate(100%, 0);
}

.slide-indexes{
	padding:5px 0px;
	text-align:center;
	position: absolute;
    bottom: 0px;
    left: 0px;
    width: 100%;
}

.slide-index{
	display:inline-block;
	border-radius:50%;
	width:25px;
	height:25px;
	margin:0px 5px;
	background-color:#E3E3E3;
}

.slide-index-selected{
	background-color:#414141;
}

.slide-page{
	display:none;
	padding:0px 5%;
	margin:50px 0px;
}

.slide-content-wrapper{
	display:table;
	width:100%;
	table-layout:fixed;
}

.slide-content-inner{
	display:flex;
}

.slide-content-title{
	display:flex;
}

.slide-content-title > h2{
	color:#414141;
	display:inline-block;	
	text-transform: uppercase;
	margin-left:15px;
}


.slide-content-item:last-child{
	border-right:0px;
}

.slide-content-box{
	width:100%;
	height:100%;
	border:1px solid #E3E3E3;
	border-radius:.3em;
	background-color:#FFF;
	padding:25px;
}

.slide-content-text{
	color:#414141;
	font-size:1.1rem;
	text-align: justify;
	line-height: 25px;
	padding: 5% 3% 3% 10%;
}

.slide-content-item{
	display:table-cell;
	vertical-align:top;
	margin-right:20px;
	width:45%;
}

.slide-content-item:last-child{
	margin-right:0px;
}


.slide-icon svg{
	width:50px;
	height:50px;
	margin-right:10px;
	fill:#2080D0;
}

/*@media screen and (max-width: 999px) {
	.slide-content-item{
		display:inline-block;
		width:45%;
		margin-bottom:25px;
		border-right:0px;
	}
}*/

/*@media screen and (max-width: 800px) {

	.slide-content-item{
		display:inline-block;
		width:100%;
		margin-bottom:25px;
		border-right:0px;
	}
	
}*/

@media screen and (max-width: 1200px) {
	
	.slide-content-wrapper{
		display:block;
		padding:0px;
	}

	.slide-content-inner{
		display:block;
	}
	
	.slide-content-item{
		display:inline-block;
		width:100%;
		margin-bottom:25px;
		border-right:0px;
	}
	
	.slide-content-item:last-child{
		margin-bottom:0px;
	}
	
	.slide-page{
		margin: 20px 2%;
	}

}

@media (hover: none) {
   .slide-arrow{
  	 display:none
   }
}
.dialog-container{
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	background-color:rgba(255,255,255,.4);
}

.dialog-context{
	position:relative;
	width:100%;
	height:100%;
}

.dialog-window{
	position:absolute;
	margin:auto;
	top:0;
	left:0;
	bottom:0;
	right:0;
	border-radius:5px;
	overflow:hidden;
	box-shadow:0px 0px 5px 5px rgba(0,0,0,.3);
}

.dialog-handler{
	height:25px;
	background-color:#3470D5;
}

.dialog-title{
	display:inline-block;
	margin-left:5px;
	font-size:14px;
	color:#FFF;
	line-height:25px;
}

.dialog-buttons{
	float:right;
	margin-top:2px;
	margin-right:5px;
}

.dialog-icon{
	color:#FFF;
	cursor:pointer;
}

.dialog-content{
	height:calc(100% - 25px);
	background-color:#FFF;	
}

.message-box{
	width:250px;
	height:100px;
}

.message-box-content{
	padding:5px;
}

.message-box-icon{
	font-size:25px;
}

.message-box-text{
	font-size:14px;
	display:inline;
	margin-left:5px;
}


:root{
	--menu-color-hover:#2080D0;
}

.menu-button{
	display:inline-block;
	color:#414141;
}

.menu-close{
	display:block;
	text-align:right;
	padding:10px 15px 10px 5px;
}

.menu-close span-icon[role=close] svg{
	width:32px;
	height:32px;
	fill:#FFF;
}


.menu-button svg{
	width:32px;
	height:32px;
}

.menu {
	position:fixed;
	top:0;
	left:0;
	width:100%;
	height:100%;
	background-color:#000;
	display:none;
	z-index:10000;
}
	
.menu-item{
	display:block;
	padding:15px 10px;
	text-align:left;
	border-bottom:1px solid #FFF;
	margin-right: 0px;
	text-decoration:none;
	color:#FFF;
}

.menu-item span{
	color:#FFF;
	font-size:25px;
}

.menu-icon svg{
	width:25px;
	height:25px;
	fill:#FFF;
}

.menu-icon {
	font-size: 18px;
	cursor: pointer;
	color: #303030;
	font-size: 18px;
	margin-right:10px;
}

.menu-item:hover{
	color:var(--menu-color-hover);
	text-decoration:underline;
}

.menu-item:hover .menu-icon:before{
	color:var(--menu-color-hover);
}

.menu-item:hover .menu-text{
	color:var(--menu-color-hover);
}

@media screen and (min-width: 600px) {
	.menu {
		position:relative;
		background-color:transparent;
		display:block !important;
	}

	.menu-item{
		display:inline-flex;
		padding:0;
		text-align:left;
		border-bottom:0px solid #FFF;
		margin-right: 20px;
		font-size:16px;
		align-items: center;
	}
	
	.menu-item svg{
		fill:#404040;
	}
	
	.menu-button{
		display:none;
	}
	
	.menu-close{
		display:none;
	}
	
	.menu-item span{
		color:#414141;
		font-size:16px;
	}	
	
	
}


@media screen and (min-width: 900px){
	.menu {
		position:relative;
		background-color:transparent;
		display:block !important;
	}
	
	.menu-item{
		display:inline-flex;
		padding:0;
		text-align:left;
		border-bottom:0px solid #FFF;
		margin-right: 20px;
		font-size:16px;
		align-items: center;
	}
	.menu-item svg{
		fill:#404040;
	}
	.menu-button{
		display:none;
	}
	.menu-close{
		display:none;
	}
	.menu-item span{
		color:#414141;
		font-size:16px;
	}	
	
	
}

@media screen and (min-width: 1200px){
	.menu {
		position:relative;
		background-color:transparent;
		display:block !important;
	}
	
	.menu-item{
		display:inline-flex;
		padding:0;
		text-align:left;
		border-bottom:0px solid #FFF;
		margin-right: 20px;
		font-size:16px;
		align-items: center;
	}
	
	.menu-item svg{
		fill:#404040;
	}
	
	.menu-button{
		display:none;
	}
	.menu-close{
		display:none;
	}
	.menu-item span{
		color:#414141;
		font-size:16px;
	}	
	
}
:root{
	--menu-color-hover:#CB003C;
}

@font-face {
  font-family: 'Fredoka';
  src: url('src.do?nm=FredokaOne-Regular&tp=ttf&v=1.0') format('truetype'); 
}

@font-face {
  font-family: 'Roboto';
  src: url('src.do?nm=Roboto-Regular&tp=ttf&v=1.0') format('truetype'); 
}


.color-1 svg{
	fill:#D51665;
}

.color-2 svg{
	fill:#F1B22D;
}

.color-3 svg{
	fill:#9A56BD;
}

.color-4 svg{
	fill:#5FAD8F;
}

.color-5 svg{
	fill:#647B8B;
}

.color-6 svg{
	fill:#87A8D7;
}

.color-7 svg{
	fill:#F5581E;
}

.color-8 svg{
	fill:#439585;
}

.color-9 svg{
	fill:#6E87EB;
}



.menu-bar{
	margin-top: 20px;
	height: 20px;
	text-align: right;
	padding-right: 10px;
	float: right;
}

.logo{
	display:inline-flex;
	margin-left:20px;
}

.logo-text{
	font-size:35px;
	font-weight:600;
	color:#566573;
	font-family:'Fredoka';
	line-height:80px;
}

.logo-plus svg{
	display:inline-block;
	fill:#D9194B;
	width:22px;
	height:22px;
}

.logo .logo-plus{
	vertical-align:top;
	margin-top:20px;
} 



.powered-by{
	display:inline-block;
}

.powered-by span{
	color:#FFF;
	font-size:14px;
}

.gradient-shadow{
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	z-index:100;
}

.gradient-shadow:before{
	position:absolute;
	content:"";
	top:0;
	left:0;
	width:100%;
	height:100%;
	z-index:1;
	background-image: radial-gradient(circle, transparent, transparent, #000 90%);
}


.slide-page{
	margin: 25px 0px;
}

.slide-gray .slide-text{
	/*color:#D9194B;*/
	text-shadow:none;
}

.slide-icon svg{
	width:80px;
	height:80px;
}
