/*--------------------------------------------------------------------------
[Table of contents]

01 Base CSS
02 Desktop CSS
03 Mobile CSS
--------------------------------------------------------------------------*/
/*--------------------------------------------------------------------------
|  01  Base CSS 
--------------------------------------------------------------------------*/

/*
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@500&display=swap');

@font-face {
	font-family: gentona;
	src: url(../../assets/gentona-font/Gentona-Book.otf) format("truetype");
	font-style: normal;
}

@font-face {
	font-family: gentona;
	src: url(/resources/assets/gentona-font/Gentona-Book-Bold.otf) format("truetype");
	font-style: italic
}


@font-face {
	font-family: gentona;
	src: url(/resources/assets/gentona-font/Gentona-Book-Italic.otf) format("truetype");
	font-style: italic
}
*/

.wsfullmain html,
.wsfullmain body,
.wsfullmain iframe,
.wsfullmain h1,
.wsfullmain h2,
.wsfullmain h3,
.wsfullmain h4,
.wsfullmain h5,
.wsfullmain h6 {
	margin: 0px;
	padding: 0px;
	border: 0px;
	font: inherit;
	vertical-align: baseline;
	font-weight: normal;
	font-size: 12px;
	line-height: 18px;
	font-family: Helvetica, Arial, sans-serif;
	-webkit-font-smoothing: subpixel-antialiased;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	-webkit-font-smoothing: subpixel-antialiased !important;
}

.wsfullmain .cl {
	clear: both;
}

.wsfullmain .clearfix:before,
.wsfullmain .clearfix:after {
	content: "";
	display: table;
}

.wsfullmain .clearfix:after {
	clear: both;
}

.wsfullmain .clearfix {
	zoom: 1;
}

.wsfullmain textarea {
	font-family: Helvetica, Arial, sans-serif;
}

.wsfullmain img,
object,
embed,
video {
	border: 0 none;
	max-width: 100%;
}

.wsfullmain a:focus {
	outline: none !important;
}

.wsfullmain:before,
.wsfullmain:after {
	content: "";
	display: table;
}

.wsfullmain:after {
	clear: both;
}

/*--------------------------------------------------------------------------
|  02 Desktop CSS
--------------------------------------------------------------------------*/

.ani01 {
	transition: 1s;
	-webkit-transition: 1s;
	-moz-transition: 1s;
}

#wstoggle {
	display: block;
	width: 91px;
	height: 40px;
	position: fixed;
	right: 45px;
	top: 36px;
	font-size: 24px;
	line-height: 34px;
	z-index: 9999999;
	text-align: center;
	cursor: pointer;
	background-color: #e4002b;
}

#wstoggle:before {
	content: "MENU";
	font-size: 14px;
	font-style: normal;
	text-indent: 29px;

	/*font-family: 'Raleway', sans-serif;*/
	font-family: 'IBM Plex Sans', sans-serif;
	font-weight: 500;
	color: #fff;
}

#wstoggle span {
	position: relative;
	display: inline-block;
	width: 26px;
	height: 2px;
	background-color: #fff;
	vertical-align: middle;
	-webkit-transition-duration: .3s, .3s;
	-moz-transition-duration: .3s, .3s;
	-ms-transition-duration: .3s, .3s;
	-o-transition-duration: .3s, .3s;
	transition-duration: .3s, .3s;
	-webkit-transition-delay: .3s, 0s;
	-moz-transition-delay: .3s, 0s;
	-ms-transition-delay: .3s, 0s;
	-o-transition-delay: .3s, 0s;
	transition-delay: .3s, 0s;
	margin-top: 1px;
	margin-left: 6px;
	width: 22px;
}

#wstoggle span:after,
#wstoggle span:before {
	content: "";
	position: absolute;
	display: inline-block;
	width: 26px;
	height: 2px;
	left: 0;
	background-color: #fff;
	-webkit-transition-duration: .3s, .3s;
	-moz-transition-duration: .3s, .3s;
	-ms-transition-duration: .3s, .3s;
	-o-transition-duration: .3s, .3s;
	transition-duration: .3s, .3s;
	-webkit-transition-delay: .3s, 0s;
	-moz-transition-delay: .3s, 0s;
	-ms-transition-delay: .3s, 0s;
	-o-transition-delay: .3s, 0s;
	transition-delay: .3s, 0s
}

#wstoggle span:before {
	top: -8px;
	-webkit-transition-property: top, transform;
	-moz-transition-property: top, transform;
	-ms-transition-property: top, transform;
	-o-transition-property: top, transform;
	transition-property: top, transform
}

#wstoggle span:after {
	bottom: -8px;
	-webkit-transition-property: bottom, transform;
	-moz-transition-property: bottom, transform;
	-ms-transition-property: bottom, transform;
	-o-transition-property: bottom, transform;
	transition-property: bottom, transform
}

#wstoggle.active span {
	background-color: transparent;
	-webkit-transition-delay: 0s, 0s;
	-moz-transition-delay: 0s, 0s;
	-ms-transition-delay: 0s, 0s;
	-o-transition-delay: 0s, 0s;
	transition-delay: 0s, 0s
}

#wstoggle.active span:after,
#wstoggle.active span:before {
	-webkit-transition-delay: 0s, .3s;
	-moz-transition-delay: 0s, .3s;
	-ms-transition-delay: 0s, .3s;
	-o-transition-delay: 0s, .3s;
	transition-delay: 0s, .3s
}

#wstoggle.active span:before {
	top: 0;
	background: #fff;
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg)
}

#wstoggle.active span:after {
	bottom: 0;
	background: #fff;
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	transform: rotate(-45deg)
}

@media (max-width: 576px) {
	#wstoggle {
		right: 25px;
	}
	#wstoggle:before {
		content: '';
	}
	#wstoggle {
		width: 60px;
	}

	#wstoggle span {
		margin-left: -6px;
	}

}

/*=================== END Menu toggle ===================*/


.main,
body.wsfopen {
	overflow: hidden;
}



.wsfmain {
	bottom: 0;
	height: 100%;
	left: 0;
	/*overflow-y: auto;*/
	pointer-events: none;
	position: fixed;
	right: 0;
	top: 0;
	width: 100%;
	z-index: 1000;
	display: block;
	/*font-family: 'Raleway', sans-serif;
	font-family: 'IBM Plex Sans', sans-serif;*/
}

.wsfmenufull {
	width: 100%;
	height: 100%;
	/*overflow: hidden;*/
	overflow-x: auto;
	left: 0;
	position: absolute;
	top: 0;
	transform: scaleX(0);
	transition: transform 0.4s ease 0.07s;
}

.wsfmenufull .wsfwrap {
	display: block;
	height: 100%;
	width: 100%;
}

.wsfmenufull .wsfwrapinner {
	display: block;
	width: 100%;

	margin: 0 auto;
	padding: 10px 35px 25px 105px;
}

.wsfopen .wsfmenufull {
	transform: scaleX(1);
}

.wsfopen .wsfmain {
	pointer-events: auto;
}

.wslogo {
	width: 128px;
	margin: 0 auto;
	display: block;
	padding-bottom: 35px;
}

.wsfulllinksty {
	width: 25%;
	margin: 0;
	padding: 45px 0px;
	list-style: none;
	float: left;

}

.wsfulllinksty.second-col {
	width: 50%;
}

.wsfulllinksty li:first-child {
	padding-bottom: 15px;
	letter-spacing: 1px;
}

.wsfulllinksty li {
	font-size: 16px;
	font-weight: 700;
	color: #ce181e;
	display: block;
	text-transform: uppercase;
	line-height: 25px;


	border-bottom: 1px solid #b8b8b8;
	margin-right: 1.875em;
	-webkit-column-break-inside: avoid;
	page-break-inside: avoid;
	break-inside: avoid;
}

.wsfulllinksty li a {
	font-size: 1em;
	line-height: 30px;
	font-weight: 400;
	color: #000;
	text-transform: none;
	text-decoration: none;

}

.wsfulllinksty li a:hover {

	color: #ffc845;
}


.wsbottompart {
	width: 100%;
	display: block;
	border-top: solid 1px rgba(255, 255, 255, 0.25);
	color: #fff;
	font-size: 12px;
	text-align: center;
	padding: 25px 0px 35px 0px;
	position: fixed;
	bottom: 0px;

}

.wsbottompart a {
	color: #000;
	text-decoration: none
}

.wsbottompart span {
	padding: 0px 4px;
}

.wsbottompart a:hover {
	text-decoration: underline
}

.wsfulllinksty.featured a {

	font-size: 16px;
	font-weight: 600;
	color: #ce181e;
	display: block;
	text-transform: uppercase;
	line-height: 30px;

}

/*Color Animation*/

.wsfanimatedcolors {
	background: #fff; /*linear-gradient(180deg, #fb5f65, #f7c66d, #6fce6f, #49a5ea, #9b6de3);*/
	background-size: 1000% 1000%;
	/*
	-webkit-animation: wsgdrcolors 10s ease infinite;
	-moz-animation: wsgdrcolors 10s ease infinite;
	animation: wsgdrcolors 10s ease infinite;*/
}

@-webkit-keyframes wsgdrcolors {
	0% {
		background-position: 0% 90%
	}

	50% {
		background-position: 100% 11%
	}

	100% {
		background-position: 0% 90%
	}
}

@-moz-keyframes wsgdrcolors {
	0% {
		background-position: 0% 90%
	}

	50% {
		background-position: 100% 11%
	}

	100% {
		background-position: 0% 90%
	}
}

@keyframes wsgdrcolors {
	0% {
		background-position: 0% 90%
	}

	50% {
		background-position: 100% 11%
	}

	100% {
		background-position: 0% 90%
	}
}

/*Color Animation*/



/*--------------------------------------------------------------------------
|  03 Mobile CSS
--------------------------------------------------------------------------*/

@media only screen and (max-width: 880px) {
	.wsfulllinksty {
		width: 100%;
		padding: 10px 0px;
	}
	.wsfulllinksty.second-col {
		width: 100%;
	}
	.wsfopen .wsfmain {
		position: fixed; /* static;*/
		overflow: auto;
	}

	.wsfmenufull {
		position: static;
		overflow: auto;
	}

	.main,
	body.wsfopen {
		overflow: auto;
	}

	.wsfmenufull .wsfwrapinner {

		padding: 45px 25px;
	}

	.wsbottompart {
		position: static;
		line-height: 25px;
		padding: 35px 20px;
	}

	#wstoggle {
		/*right: 15px;*/
	}
}

@media (min-width: 1921px) {
	#wstoggle {
		width: 91px;
		height: 40px;

		right: 100px;
		top: 71px;
	}

}
@media (max-width: 1920px) {
	#wstoggle {
		width: 91px;
		height: 40px;

		right: 100px;
		top: 74px;
	}
}
@media (max-width: 1440px) {
	#wstoggle {
		width: 91px;
		height: 40px;

		right: 5.6rem;
		top: 70px;
	}

}
@media (max-width: 1200px) {

	#wstoggle {
		width: 91px;
		height: 40px;

		right: 5.63rem;
		top: 70px;
	}
}
@media (max-width: 768px) {

	#wstoggle {
		width: 91px;
		height: 40px;

		right: 2.5rem;
		top: 49px;
	}
}
@media (max-width: 576px) {
	/*.logo-left {
        width: 114px;
    	height: 100px;
    	top: 8px;
    	left: 35px;
    	background-size: 115px auto;
    }*/
	#wstoggle {
		width: 45px;
		top: 45px;
	}
}