/*  ==== Reset CSS ====   */
*{
	margin: 0px;
	padding: 0px;
	box-sizing: border-box;
}

a{
	text-decoration: none;
	transition: color 0.25s;
}

ul{
	list-style: none;
}
/* ==== End Reset CSS ==== */

.marq{
	display: block;
	width: 100%;
	padding:20px auto;
	margin: auto;
	background: #F2DEDE;
	color:#f00;
	border-top: 1px solid #f00;
	border-bottom: 1px solid #f00;
	font-size:1.5rem;
}

html{
	background-color: rgba(0, 0, 0, 0.9);
	padding: 0px;
	margin:0px;
	scroll-behavior: smooth;

    font-family: "Poppins", sans-serif;
    font-weight: normal;
    font-size: 12px;
}

.error{
	display: block;
	width: fit-content;
	background: #F2DEDE;
	color:#900;
	border:1px solid #900;
	padding: 5px;
	border-radius: 5px;
	margin: 5px auto;

	animation:msg-fade-out 0.5s 1;
	-webkit-animation:msg-fade-out 0.5s 1;
	animation-fill-mode: forwards;

	animation-delay:5s;
	-webkit-animation-delay:5s; /* Safari and Chrome */
	-webkit-animation-fill-mode: forwards;
}

.warning{
	display: block;
	width: fit-content;
	background: #ffe597;
	color:#ff4d00;
	border:1px solid #ff4d00;
	padding: 5px;
	border-radius: 5px;
	margin: 5px auto;

	animation:msg-fade-out 0.5s 1;
	-webkit-animation:msg-fade-out 0.5s 1;
	animation-fill-mode: forwards;

	animation-delay:5s;
	-webkit-animation-delay:5s; /* Safari and Chrome */
	-webkit-animation-fill-mode: forwards;
}

.success{
	display: block;
	width: fit-content;
	background: #ecf8d4;
	color:#060;
	border:1px solid #060;
	padding: 5px;
	border-radius: 5px;
	margin: 5px auto;

	animation:msg-fade-out 0.5s 1;
	-webkit-animation:msg-fade-out 0.5s 1;
	animation-fill-mode: forwards;

	animation-delay:5s;
	-webkit-animation-delay:5s; /* Safari and Chrome */
	-webkit-animation-fill-mode: forwards;
}

body{
	display:flex;
	flex-direction: column;
    justify-content: center;
	align-items: center;
	background-position:center;

	width: 100%;
    max-width: 1080px;
	height: fit-content;
	margin: 0px auto;
	padding: 0px;

	animation: fadeInAnimation ease 0.25s;
	animation-iteration-count: 1;
	animation-fill-mode: forwards;
}

.btn{
	border-radius: 2px;
	box-shadow: 2px 2px 5px var(--3rd_clr);
	background: linear-gradient(90deg, #666, #333);
	text-align: center;
	outline: 1px var(--prim_clr) solid;
	outline-offset: 2px;
	margin: auto;
	padding: 2px 5px;
	color: var(--prim_clr);
	cursor: pointer;
}

.btn:hover{
	color: var(--sec_clr);
	outline: 1px var(--sec_clr) solid;
	background: linear-gradient(90deg, #333, #666);
}

.t_right{
	text-align: right;
	padding-right: 50px;
}
.t_left{
	text-align: left;
	padding-left: 50px;
}
.t_center{
	text-align: center;
}

#smallSec{
	display: block;
	/*width: 850px;*/
	width:95vw;
	max-width: 1080px;
	height: auto;
	margin: auto;
	padding: 10px 0px;
}
#DivSecCal1{
	display: block;
	max-width: 1080px;

	width:95vw;
	height: fit-content;
	margin: auto;
	padding: 50px 0px;
}
#DivSecCal2{
	display: block;
	max-width: 1080px;
	width:95vw;
	height: fit-content;
	margin: auto;
	padding: 50px 0px;
}
#DivSec{
	display: block;
	max-width: 1080px;
	width:95vw;
	height: fit-content;
	margin: auto;
	padding: 50px 0px;
}
#DivSecEdit{
	display: block;
	max-width: 1080px;
	width:95vw;
	height: fit-content;
	margin: auto;
	padding: 20px 0px;
}

h1{
	font-size: 2.25rem;
	font-weight: 600;
	width: 60%;
	display: block;

	text-align: center;
	margin:auto auto 20px auto;

	padding-bottom:20px;
	color: #666;
	border-bottom: solid #666 2px;
}

h2{	
	font-size: 1.5rem;
	font-weight: bolder;
}

h3{  
	font-size: 1.25rem;
	font-weight: normal;
}

h4, h5, h6{
	font-size: 1.15rem;
	font-weight: normal;
}

.dark{
	background-color: var(--3rd_clr);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	color: var(--sec_clr);
}
.iF1{
	background-image: url("../gfx/bglight5.jpeg");
	background-color: white;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}
.mT1{
	background-image: url("../gfx/bgf.jpg");
	background-repeat:no-repeat;
	background-size: cover;
	background-position: center;
}

.d3{
	background-image: url("../gfx/bg3d.png");
}

.d5{
	background-image: url("../gfx/bg5d.jpg");
}

.light{
	background-color: var(--sec_clr);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	color: var(--3rd_clr);
}


.l1{
	background-image: url("../gfx/bglight1.jpg");
}

.inputBox{
	position: relative;
	width:100%;
	text-align: left;
	margin: 10px auto;
}
.inputBox input{
	width:100%;
	padding:10px;
	border-radius: 5px;
	outline: none;
	font-size: 1rem;
	transition: border 0.5s;
}

.dark .inputBox input{
	border: 1px solid rgba(255,255,255,0.25);
	color:var(--sec_clr);
	background-color: var(--3rd_clr);
}
.light .inputBox input{
	border: 1px solid rgba(0,0,0,0.25);
	color:var(--3rd_clr);
	background-color: var(--sec_clr);
}

.inputBox span{
	position:absolute;
	left:20px;
	padding: 10px;
	pointer-events: none;
	font-size: 1rem;
	text-transform: uppercase;
	transition: 0.25s;
}
.dark .inputBox span{
	color: rgba(255,255,255,0.25);
}
.light .inputBox span{
	color: rgba(0,0,0,0.25);
}

.inputBox input:valid ~ span,.inputBox input:focus ~ span {
	transform:translate-x(10px);
	transform: translateY(-4px);
	font-size: 0.65rem;
	padding: 0 20px;
	letter-spacing: 0.3rem;
}
.dark .inputBox input:valid ~ span,.dark .inputBox input:focus ~ span {
	border-left:1px solid var(--prim_clr);
	border-right:1px solid var(--prim_clr);
	color:var(--prim_clr);
	background-color: var(--3rd_clr);
}
.light .inputBox input:valid ~ span,.light .inputBox input:focus ~ span {
	border-left:1px solid var(--3rd_clr);
	border-right:1px solid var(--3rd_clr);
	color:var(--3rd_clr);
	background-color: var(--sec_clr);
}

.dark .inputBox input:valid, .dark .inputBox input:focus{
	border: 1px solid var(--prim_clr);
}
.light .inputBox input:valid, .light .inputBox input:focus{
	border: 1px solid var(--3rd_clr);
}

.inputBox span{
	position:absolute;
	left:20px;
	padding: 10px;
	pointer-events: none;
	font-size: 1rem;
	text-transform: uppercase;
	transition: 0.25s;
}
.inputBox label{
	display:inline-block;
}
.dark .inputBox span{
	color: rgba(255,255,255,0.25);
}
.light .inputBox span{
	color: rgba(0,0,0,0.25);
}
.inputBox textarea{
	width:100%;
	resize:none;
	height: 100px;
	padding:10px;
	border-radius: 5px;
	outline: none;
	font-size: 1rem;
	transition: border 0.5s;
}
.dark .inputBox textarea{
	color:var(--sec_clr);
	border: 1px solid rgba(255,255,255,0.25);
	background-color: var(--3rd_clr);
}
.light .inputBox textarea{
	color:var(--3rd_clr);
	border: 1px solid rgba(0,0,0,0.25);
	background-color: var(--sec_clr);
}
.inputBox textarea:valid ~ span,.inputBox textarea:focus ~ span {
	transform:translate-x(10px);
	transform: translateY(-4px);
	font-size: 0.65rem;
	padding: 0 20px;
	letter-spacing: 0.3rem;
}
.dark .inputBox textarea:valid ~ span,.dark .inputBox textarea:focus ~ span {
	border-left:1px solid var(--prim_clr);
	border-right:1px solid var(--prim_clr);
	color:var(--prim_clr);
	background-color: var(--3rd_clr);
}
.light .inputBox textarea:valid ~ span,.light .inputBox textarea:focus ~ span {
	border-left:1px solid var(--3rd_clr);
	border-right:1px solid var(--3rd_clr);
	color:var(--3rd_clr);
	background-color: var(--sec_clr);
}
.dark .inputBox textarea:valid, .dark .inputBox textarea:focus{
	border: 1px solid var(--prim_clr);
}
.light .inputBox textarea:valid, .light .inputBox textarea:focus{
	border: 1px solid var(--3rd_clr);
}
.disclaimer{
	display: block;
	margin: auto 50px;
	width: fit-content;
}

.sub_title{
	font-size: 1.35rem;
	font-weight: 200;
}
.showUser{
	color: var(--3rd_clr);
}
/* if img src is empty, then don't display image  */
img[src=""] {
   display: none;
}


@media only screen and (max-width:600px){
	#DivSec{
		width:100vw;
	}
	#DivSecEdit{
		width:100vw;
	}
	#smallSec{
		width:100vw;
	}
	#DivSecCal1{
		width: 100vw;
	}
	#DivSecCal2{
		width: 100vw;
	}
	.t_right{
	text-align: center;
	padding-right: unset;
	}
	.t_left{
		text-align: center;
		padding-left: unset;
	}
	.t_center{
		text-align: center;
	}
}