:root {
	--Bcolor: #6940ff;
	--Hcolor: #245639;
	--Fcolor: #231932;
	--FBcolor: #222;
}

@font-face {
	font-family: 'CustomFont';
	src: url('../fonts/Poppins-Regular.ttf');
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'CustomFontBold';
	src: url('../fonts/Poppins-Bold.ttf');
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'DINBold';
	src: url('../fonts/D-DIN-Bold.otf') format('opentype');
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}

HTML,
body,
div,
section,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd,
p,
blockquote,
pre,
form,
fieldset,
table,
th,
td,
textarea,
input {
	border: none;
	font-family: 'CustomFont', sans-serif;
}

html,
body {
	height: 100%;
	width: 100%
}

input::-ms-clear {
	display: none
}

input::-ms-reveal {
	display: none
}

input {
	-webkit-appearance: none;
	appearance: none;
	margin: 0;
	outline: none;
	padding: 0
}

input[type=submit],
input[type=button] {
	cursor: pointer
}

button[disabled],
input[disabled] {
	cursor: not-allowed
}

img {
	border: none
}

img[src=""],
img:not([src]) {
	opacity: 0
}

ul,
ol,
li {
	list-style-type: none;
	padding: 0;
	margin: 0
}

i {
	font-style: normal
}

a {
	text-decoration: none;
	color: inherit
}

* {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	padding: 0;
	margin: 0
}

*:before,
*:after {
	-webkit-box-sizing: border-box;
	box-sizing: border-box
}

html {
	font-size: 16px;
}

@media only screen and (max-width: 768px) {
	html {
		font-size: 14px;
	}
}


.wd-center {
	max-width: 1140px;
	margin: 0 auto;
	width: 92%;
	position: relative;
	height: 100%;
}

a,
article,
aside,
audio,
b,
body,
canvas,
caption,
dd,
details,
div,
dl,
dt,
em,
fieldset,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
html,
i,
img,
label,
li,
menu,
nav,
ol,
p,
pre,
q,
s,
samp,
small,
span,
strong,
sub,
sup,
table,
tbody,
td,
tfoot,
th,
thead,
tr,
tt,
u,
ul,
var,
video {
	margin: 0;
	padding: 0;
	border: 0;
	vertical-align: baseline;
}

.zoom-in:hover {
	transform: scale(1.05);
}

.zoom-in {
	-webkit-transition: -webkit-transform .3s ease;
	transition: -webkit-transform .3s ease;
	-o-transition: transform ease .3s;
	transition: transform .3s ease;
	transition: transform .3s ease, -webkit-transform .3s ease;
	-ms-transition: -ms-transform ease .3s;
	-moz-transition: -moz-transform ease .3s;
	-o-transition: -o-transform ease .3s;
}

div,
input,
button {
	outline: none;
}

button,
html [type=button],
[type=reset],
[type=submit] {
	cursor: pointer;
	-webkit-appearance: button;
}

button {
	border: none;
	background: none;
	padding: 0px;
	margin: 0px;
}

body {
	margin: 0;
	padding: 0;
	color: var(--Fcolor);
}
.btn {
	background-color: var(--Bcolor);
	color: white;
	padding: 16px 20px;
	border-radius: 10px;
	text-decoration: none;
	font-size: 14px;
	min-width: 140px;
	text-align: center;
	display: inline-block;
	transition: all .5s ease;
}
.btn:hover{
	background: #0d0239;
}
.btn-border {
	background: #fff;
	    border: 1px solid var(--Bcolor);
	    border-radius: 30px;
	    color: var(--Bcolor);
	    padding: 14px 20px;
}
.btn-border:hover{
	background:var(--Bcolor);
	color: #fff;
}
/* PC header */
header {
	background-color: white;
	padding: 0 40px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	    position: fixed;
	    width: 100%;
	    top: 0;
	    left: 0;
	    z-index: 10000;
}

.logo {
	height: 30px;
	display: block;
}

nav a {
	display: inline-block;
	margin: 0 24px;
	padding: 28px 0;
	text-decoration: none;
	color: var(--Fcolor);
	transition: all .5s ease;
	border-bottom: 2px solid #fff;
	font-size: .9rem;
}
nav a:hover{
	color: var(--Bcolor);
	border-color: var(--Bcolor);
}

/*mobile header*/
.header2{display: none; height: 80px;}
.header2 .main-wrap {position: fixed; top: 0; left: 0; right: 0; z-index: 999; background-color: #fff;box-shadow: 0px 0px 8px 0 rgb(0 0 0 / 10%); -webkit-transition: all .5s ease; transition: all .5s ease; padding: 0 3%; box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1); display: flex; justify-content: space-between;align-items: center;height: 60px;}
.header2 .nav-btn { width: 25px; height: 16px; position: relative; cursor: pointer; margin-left: 15px;}
.header2 .nav-btn .line { display: block; width: 100%; height: 2px; border-radius: 5px; background-color: #0d0239; position: absolute; left: 50%; margin-left: -15px;}
.header2 .nav-btn .line1 { -webkit-transform-origin: 4px 0; -ms-transform-origin: 4px 0;  transform-origin: 4px 0;}
.header2 .nav-btn .line2 { top: 7px;}
.header2 .nav-btn .line3 { bottom: 0px; -webkit-transform-origin: 1px center; -ms-transform-origin: 1px center; transform-origin: 1px center;}
.header2 .sub-menu { 
	width: 90%;
	    padding: 0 3%;
	    display: block;
	    position: fixed;
	    left: 100%;
	    top: 60px;
	    z-index: 2;
	    overflow-y: auto;
	    background-color: #0d0239;
		height: 100%;
		transition: all .3s ease;
		z-index: 1000;
}
.breadcrumb{
	    text-align: left;
	    padding: 8px 0;
	    color: #877fa5;
}
.breadcrumb a{
	    display: inline-block;
	    transition: all .5s ease;
	    font-size: 13px;
	    text-transform: capitalize;
}
.breadcrumb a::after{
	content: ">";
	padding: 0 .3em;
}
.breadcrumb a:hover{
	color: var(--Bcolor);
}
.breadcrumb a:last-child::after{display: none;}
/* footer */
footer {
	background-color: #0d0239;
	padding: 60px 0;
	color: white;
	font-weight: 100;
	font-size: 1rem;
}

footer .footbox {
	display: flex;
	justify-content: space-between;

}

footer .copyright {
	color: #ffffff80;
	font-size: 13px;
	margin: 20px 0;
}

footer .link img {
	width: 22px;
	margin-right: 20px;
}

footer .menu-column ul {
	margin-top: 16px;
}

footer .menu-column li a {
	color: #ffffff80;
	font-size: 14px;
	margin-right: 20px;
	text-decoration: none;
	padding: 8px 0;
	display: flex;
	align-items: center;
}
footer .menu-column li a .icon{
	    margin-right: 5px;
	    width: 16px;
}
footer .menu-column li a:hover {
	color: white;
}
footer .menu-column li .cord{
	width: 88px;
	    border-radius: 2px;
	    padding: 4px;
	    background: #fff;
	    margin-top: 8px;
}

/*static*/
.static{
	    background: #0d0239;
	    text-align: center;
	    color: white;
	    font-size: 1.3rem;
	    font-weight: 600;
	    padding: 12px;
	    position: fixed;
	    bottom: 0;
	    width: 100%;
	    border-top: 1px solid #ffffff17;
	        z-index: 999;
}
.static .btn{
	    width: 200px;
	    margin-left: 28px;
	    padding: 10px 20px;
	    font-size: 15px;
		border:1px solid var(--Bcolor);
		border-radius: 12px;
}
.static .btn:hover{
	color: var(--Bcolor);
}

@keyframes animation-3bburb{
	2% {
	    transform: translateX(3px) rotate(2deg);
	}
	4% {
	    transform: translateX(-3px) rotate(-2deg);
	}
	6% {
	    transform: translateX(3px) rotate(2deg);
	}
	8% {
	    transform: translateX(-3px) rotate(-2deg);
	}
	10% {
	    transform: translateX(2px) rotate(1deg);
	}
	12% {
	    transform: translateX(-2px) rotate(-1deg);
	}
	14% {
	    transform: translateX(2px) rotate(1deg);
	}
	16% {
	    transform: translateX(-2px) rotate(-1deg);
	}
	18% {
	    transform: translateX(1px) rotate(0deg);
	}
	20% {
	    transform: translateX(-1px) rotate(0deg);
	}
}
.swing-shake {
  animation: 5s linear 2s infinite normal none running animation-3bburb;
      transform: translateZ(0px);
}

/*All */

.norcolor {
	color: var(--Bcolor);
}

.flex-box {
	display: flex;
	align-items: center;
}

.justify-between {
	justify-content: space-between;
}

.titleh2 {
	font-size: 2.8rem;
	margin-bottom: 32px;
}

.titleh3 {
	font-size: 2.4rem;
	margin-bottom: 24px;
}
.titleh4 {
	font-size: 1.8rem;
	margin-bottom: 16px;
}
.titlep {
	font-size: .95rem;
	line-height: 1.7rem;
	color: #938f99;
	text-align: left;
}

@media only screen and (max-width: 1200px){
	.header2 {display: block;height: 60px; }
	.header2.active .sub-menu{left: 10%;}
	
	header{display: none;}
	nav a {
	    width: 100%;
	    font-size: 16px;
	   padding: 20px;
	       margin: 0;
	       font-size: 16px;
	       color: #fff;
	       border-bottom: 1px solid #ffffff1f;
	}
}
@media only screen and (max-width: 768px){
	footer .footbox {
	    flex-wrap: wrap;
	}
	footer .menu-column{
		width:50%;
		margin-top: 30px;
	}
	.breadcrumb a{
		    font-size: 12px;
	}
}
@media only screen and (max-width: 640px){
	.static {
	    display: flex;
	    align-items: center;
		text-align: left;
		font-size: 16px;
		justify-content: space-between;
	}
	.static .btn {
	    margin: 0 0 0 4px;
		width: auto;
	}
	.titleh2 {
	    font-size: 2rem;
	    margin-bottom: 20px;
	}
	.titleh4 {
		font-size: 1.45rem;
		margin-bottom: 16px;
	}
	
}