@charset "utf-8";

/* CSS Document */
#fixed-target {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	pointer-events: none;
}

header {
	position: sticky;
	background: #fff;
	width: 100%;
	z-index: 100
}

#header a {
	background: transparent;
	margin: 0;
	padding: 0;
	font-size: 100%;
	vertical-align: baseline;
	text-decoration: none;
}

#header nav {
	height: 80px;
	margin: 0px auto;
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

#header ul {

	display: -webkit-flex;
	display: flex;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;

	list-style: none;
	margin-bottom: 0px;
}

#header ul li a {
	font-family: 'Roboto', sans-serif;
	color: #434343;
	margin: 0px 10px;
	padding: 10px;
	border-radius: 5px;
	font-size: 1.3rem;
}

@media(min-width:1024px) {
	#header ul li span {
		display: none
	}
}

@media(max-width:1200px) {
	#header ul li a {
		margin: 0px 10px;
		padding: 5px;
		border-radius: 5px;
		font-size: 1.2rem;
	}

	#header nav {
		height: 70px;
	}
}

#header ul li a:hover,
#header ul li a.active {
	color: rgba(155, 36, 42, 1.00);
	text-decoration: none
}

#header .nav__icon,
#header .nav__icon span {
	display: none;
}

#header .nav__icon {
	width: 26px;
	height: 28px;
	/*  margin-right: 10px;*/
	position: relative;
	cursor: pointer;
}

#header .nav__icon span {
	background: #fff;
	position: absolute;
	left: 0;
	width: 100%;
	height: 2px;
	border-radius: 4px;
}

#header .nav__icon span:nth-of-type(1) {
	top: 6px;
}

#header .nav__icon span:nth-of-type(2) {
	top: 13px;
}

#header .nav__icon span:nth-of-type(3) {
	bottom: 6px;
}

#header .nav__icon.active span:nth-of-type(1) {
	-webkit-transform: translateY(8px) rotate(-45deg);
	transform: translateY(8px) rotate(-45deg);
}

#header .nav__icon.active span:nth-of-type(2) {
	display: none;
}

#header .nav__icon.active span:nth-of-type(3) {
	-webkit-transform: translateY(-6px) rotate(45deg);
	transform: translateY(-6px) rotate(45deg);
}


#header ul li.social {
	display: none
}

@media(max-width:1200px) {

	#header .logo a,
	#header .logo img {
		width: 115px
	}
}

@media(max-width:575px) {

	#header .logo a,
	#header .logo img {
		width: 110px
	}
}

@media only screen and (max-width: 1024px) {
	header {
		position: relative;
		z-index: 999;
	}

	#header nav {
		height: 60px;
	}

	#header ul {
		-webkit-flex-direction: column;
		flex-direction: column;
		-webkit-justify-content: center;
		justify-content: center;
		backdrop-filter: blur(6px);
		-webkit-backdrop-filter: blur(6px);
		background-color: rgba(0, 0, 0, 0.6);
		position: absolute;
		top: 60px;
		left: 0px;
		width: 100%;
		z-index: 980;
		padding-left: 0px;
		height: calc(93vh - 60px);
	}

	#header ul li {
		/*    padding: 10px;*/
		text-align: center;
	}

	#header ul li a {
		display: block;
		background: transparent;
		margin: 0px;
		color: #fff;
		font-size: 2.0rem;
		padding-top: 0px;
		padding-bottom: 20px;
		margin-top: -15px;
		letter-spacing: 1px;
	}

	#header ul li span {
		display: inline;
		color: #fff;
		font-style: normal;
	}

	#header ul li.social {
		position: absolute;
		bottom: 25px;
		left: 0;
		right: 0;
		margin-left: auto;
		display: block;
	}

	#header ul li.social a {
		display: inline
	}

	#header ul li.social .bi {
		font-size: 24px
	}

	#header ul li a:hover {
		color: #fff;
	}

	#header .nav__icon,
	#header .nav__icon span {
		display: inline-block;
		transition: all .4s;
		box-sizing: border-box;
		z-index: 999;
	}

	#header .bkg {
		background-color: #336a55;
		width: 60px;
		height: 60px;
		margin-right: -4.5%
	}

	#header ul li {
		display: inline-block;
		will-change: transform;
		transform: translate3d(0, 100%, 0);
		transition: all 2s cubic-bezier(.15, .61, .16, .97);
		opacity: 0;
		/*         transition-delay: 0.5s !important;*/
	}

	#header ul.active li {
		transform: none;
		opacity: 1
	}

	#header ul li:nth-of-type(1) {
		transition-delay: 0.6s;
	}

	#header ul li:nth-of-type(2) {
		transition-delay: 0.65s;
	}

	#header ul li:nth-of-type(3) {
		transition-delay: 0.7s;
	}

	#header ul li:nth-of-type(4) {
		transition-delay: 0.75s;
	}

	#header ul li:nth-of-type(5) {
		transition-delay: 0.8s;
	}

	#header ul li:nth-of-type(6) {
		transition-delay: 0.9s;
	}
}

.phone-xs {
	position: absolute;
	top: 50%;
	bottom: auto;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	right: 80px
}

.phone-xs .bi {
	font-size: 20px
}

#header .color-link {
	background-color: #880000;
	border-radius: 4px;
}

#header .color-link:hover {
	background-color: #333;

}

#header .next-rst .bi {
	color: #fff
}

#header .color-link a {
	color: #fff;
	margin-top: -13px;
	padding-top: 13px;
	padding-bottom: 13px;
	font-weight: 700
}

#header .color-link a:hover {
	color: #fff;
}

#header .color-link a .kind {
	display: block;
	font-size: 12px;
	text-align: center;
	line-height: 6px;
	font-style: italic !important;
	font-weight: 100
}


@media(max-width:1024px) {
	#header .color-link {
		padding-left: 20px;
		padding-right: 20px;
		margin-top: 25px
	}
}