* {
	margin: 0;
	padding: 0;
	font-family: 'Montserrat', serif;
}

body {
    background-color: #26282B;
}

.centerCointainer {
	width: 100%;
	max-width: 1200px;
	display: block;
	margin-left: auto;
	margin-right: auto;
	box-sizing: border-box;
}

@media (max-width: 1200px) {
	.centerCointainer {
		padding: 0 10px;
	}
}

.middleHeader01 {
	font-size: 50px;
	font-weight: bold;
	text-align: center;
	color: white;
	margin-bottom: 40px;
}

img {
	image-rendering: -webkit-optimize-contrast;
}

.unselectable {
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.notransition {
	-o-transition: none !important;
	-ms-transition: none !important;
	-moz-transition: none !important;
	-webkit-transition: none !important;
	transition: none !important;
}

.invisible {
	visibility: hidden;
}


.toTopIcon {
	position: fixed;
	right: -50px;
	bottom: 180px;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 50px;
	height: 50px;
	font-size: 18px;
	color: rgb(197, 197, 197);
	background-color: rgba(0, 0, 0, 0.4);
	cursor: pointer;
	border-top-left-radius: 5px;
	border-bottom-left-radius: 5px;
	opacity: 0;
	transition: 400ms;
	z-index: 300;
}

.toTopIcon.active {
	right: 0;
	opacity: 1;
}

.lock-scroll {
    overflow: hidden;
}

.blueHoverButtonEffect {
	position: relative;
	background-color: rgb(50, 139, 65);
	padding:  10px 30px;
	font-size: 25px;
	font-weight: 600;
	transform: skew(-5deg);
	width: max-content;
	display: block;
	box-shadow: 6px 6px 2px rgba(0, 0, 0, 0.308);
	cursor: pointer;
	text-decoration: none;
	color: white;
	overflow: hidden;
	transition: 200ms;
	border: none;
}

.blueHoverButtonEffect::after {
    background: #fff;
    content: "";
    height: 155px;
    left: -75px;
    opacity: 0.3;
    position: absolute;
    top: -50px;
    transform: rotate(35deg);
    transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
    width: 50px;
    z-index: -10;
}

.blueHoverButtonEffect:hover {
    box-shadow: 8px 8px 2px rgba(0, 0, 0, 0.308);
    transform: translate(-1px, -1px) skew(-5deg) !important;
    background-color: rgb(37, 160, 197) !important;
}

.blueHoverButtonEffect:hover::after {
    left: 120%;
    transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
}




.inputBoxLabelMove {
	position: relative;
	margin: 0 0 35px 0;
}

.inputBoxLabelMove input,
.inputBoxLabelMove textarea {
	width: 100%;
	resize: none;
	padding: 5px 0;
	font-size: 18px;
	font-weight: 300;
	color: white;
	border: none;
	outline: none;
	border-bottom: 1px solid rgba(167, 167, 167, 0.438);
	background: transparent;
}

.inputBoxLabelMove textarea {
	min-height: 120px;
}

.inputBoxLabelMove span {
	position: absolute;
	left: 0;
	padding: 5px 0;
	pointer-events: none;
	font-size: 18px;
	font-weight: 300;
	transition: 0.3s;
	color: #63c2ee;
}

.inputBoxLabelMove.withIcon input {
	box-sizing: border-box;
	padding-left: 30px;
}


.inputBoxLabelMove.withIcon input::placeholder {
	color: #63c2ee;
	opacity: 1;
}

.inputBoxLabelMove.withIcon span {
	padding-left: 26px;
	display: none;
}

.inputBoxLabelMove.withIcon i {
	font-size: 18px;
	position: absolute;
	color: #63c2ee;
	opacity: 0.85;
	top: 50%;
	left: 5px;
	transform: translate(0, -50%);
}

.inputBoxLabelMove span i {
	font-size: 16px;
	margin-right: 3px;
	margin-left: 5px;
}

.inputBoxLabelMove input:focus ~ span,
.inputBoxLabelMove input:valid ~ span,
.inputBoxLabelMove textarea:focus ~ span,
.inputBoxLabelMove textarea:valid ~ span {
	transform: translateY(-20px);
	font-size: 14px;
	color: #63c2eed3;
}


/* inputBoxWithBorder */
.inputBoxWithBorder {
    margin-bottom: 20px;
    margin-top: 30px;
    position: relative;
}

.inputBoxWithBorder input {
    width: 100%;
    resize: none;
    padding: 11px 16px;
    font-size: 20px;
    font-weight: 400;
    color: white;
    background-color: unset;
    border: 2px solid rgba(223, 223, 223, 0.35);
    border-radius: 6px;
    outline: none;
    box-sizing: border-box;
    z-index: 2;
    position: relative;
    transition: 200ms;
}

.inputBoxWithBorder .label {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%) translateX(18px);
    transition: 250ms;
    padding: 0 0;
    background-color: #1f252e;
    z-index: 2;
    pointer-events: none;
    font-size: 18px;
}

.inputBoxWithBorder input:focus {
    border-color: rgb(104, 160, 197);
}



.inputBoxWithBorder input:focus ~ .label,
.inputBoxWithBorder input:valid ~ .label,
.inputBoxWithBorder textarea:focus ~ .label,
.inputBoxWithBorder textarea:valid ~ .label {
    top: 0;
	transform: translateY(-8px) translateX(20px);
	font-size: 14px;
    padding: 0 7px;
}

.inputBoxWithBorder.withIcon .icon {
	position: absolute;
	right: 12px;
    top: 50%;
    transform: translateY(-50%) translateX(0px);
	color: #fff;
}

.inputBoxWithBorder.withIcon input {
	padding-right: 35px;
}








.checkbox-container {
    display: block;
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    cursor: pointer;
    font-size: 19px;
    line-height: 25px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    color: white;
}

.checkbox-container.normal-size {
	font-size: 14px;
	line-height: normal;
}


.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkbox-container .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #eee;
    border-radius: 2px;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;

    transition: 100ms;
}

.checkbox-container.normal-size .checkmark {
	transform: translateY(4px);
}

.checkbox-container .checkmark i {
    font-size: 12px;
    color: white;
    transition: 150ms;
    transform: scale(0);
    transition-timing-function: cubic-bezier(.68,-0.55,.27,1.55);
}

.checkbox-container:hover input ~ .checkmark {
    background-color: #ccc;
}

.checkbox-container input:checked ~ .checkmark {
    background-color: #2196F3;
}

.checkbox-container input:checked ~ .checkmark i {
    transform: scale(1);
}


@media (max-width: 1000px) {
	.toTopIcon {
		display: none;
	}
}



/* ---------------------------- */
/* --- Floating Label Input --- */
/* ---------------------------- */
.flLabelInputBox {
    margin-bottom: 20px;
    margin-top: 30px;
    position: relative;
}

.flLabelInputBox input {
    width: 100%;
    resize: none;
    padding: 11px 16px;
    font-size: 20px;
    font-weight: 400;
    color: white;
    background-color: unset;
    border: 2px solid rgba(223, 223, 223, 0.35);
    border-radius: 6px;
    outline: none;
    box-sizing: border-box;
    z-index: 2;
    position: relative;
    transition: 200ms;
}

.flLabelInputBox .label {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%) translateX(18px);
    transition: 250ms;
    padding: 0 0;
    background-color: #1f252e;
    z-index: 2;
    pointer-events: none;
    font-size: 18px;
}

.flLabelInputBox input:focus {
    border-color: rgb(104, 160, 197);
}

.flLabelInputBox input:focus ~ .label,
.flLabelInputBox input:valid ~ .label,
.flLabelInputBox textarea:focus ~ .label,
.flLabelInputBox textarea:valid ~ .label {
    top: 0;
	transform: translateY(-8px) translateX(20px);
	font-size: 14px;
    padding: 0 7px;
}

.flLabelInputBox .rightIcon {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
}



