@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Serif:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700&family=Playball&display=swap');
body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,font,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td
{background:transparent;border:0;margin:0;padding:0;outline:none;box-sizing:border-box;}
html {
    /* scroll-behavior: smooth; */
    font-size: 62.5%;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeSpeed;
}
body {
	font-family: arial,sans-serif;
	font-size: 2rem;
	font-weight: 400;
	line-height: 1.4;
	color: #000000;
	background-color: #FFD700;
}
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
	font-family: inherit;
	font-size: inherit;
	/**color: inherit;**/
}
h1, h2, h3, h4, h5, h6 {
	font-family: "IBM Plex Serif", serif;
	color: #000000;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: inherit;
	margin: 0 0 20px 0;
	text-transform: uppercase;
}
h1 {
	font-size: 4.5rem;
}
h2 {
	font-size: 3.7rem;
}
h3 {
	font-size: 3rem;
}
h4 {
	font-size: 2.7rem;
}
h5 {
	font-size: 2.7rem;
}
h6 {
	font-size: 2.5rem;
}
p {
    font-family: arial,sans-serif;
    margin: 20px 0;
	font-weight: 400;
	font-size: 2rem;
	line-height: 1.4;
	color: #000000;
}
a {
    color: #6f2f9f;
    text-decoration: none;
	-webkit-transition: all 0.3s ease-out 0s;
	-moz-transition: all 0.3s ease-out 0s;
	-ms-transition: all 0.3s ease-out 0s;
	-o-transition: all 0.3s ease-out 0s;
	transition: all 0.3s ease-out 0s;
	cursor: pointer;
	background-color: transparent;
	outline: none !important;
}
a:focus, a:hover {
	text-decoration: none;
	color: #e1b125;
}
ul {
    list-style-type: disc;
    list-style-position: outside;
    font-size: 2rem;
    line-height: 1.4;
    margin: 10px 0 20px 40px;
}
ol {
    list-style-position: outside;
    font-size: 2rem;
    line-height: 1.4;
    margin: 10px 0 20px 40px;
}
.sppb-btn, .btn,  button[type=submit] {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;    
    line-height: 1.4;
    letter-spacing: 1px;
    text-align: center;
    padding: 14px 30px;
    margin: 8px 0;
    background-color: #000000;
    border: none;
    border-radius: 8px;
    box-shadow: none;
    display: inline-block;
    text-transform: uppercase;
    text-decoration: none;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    white-space: nowrap;
    vertical-align: middle;
    touch-action: manipulation;
    cursor: pointer;
}
.sppb-btn:hover,
.sppb-btn.focus,
.sppb-btn:focus,
.sppb-btn:active,
button[type=submit]:hover,
button[type=submit]:focus,
button[type=submit]:active {
    color: #ffffff;
    background-color: #3b3b3b;
    box-shadow: none;
}
.btn-primary:hover,
.btn-primary:active,
.btn-primary:focus,
button[type=submit]:hover,
button[type=submit]:focus,
button[type=submit]:active,
.btn:first-child:active {
    color: #fff;
    background-color: #3b3b3b;
    border-color: #3b3b3b;
}
.btn.disabled,
.btn:disabled,
.btn:focus-visible,
fieldset:disabled .btn {
    color: #ffffff;
    background-color: #3b3b3b;
    border-color: #3b3b3b;
    box-shadow: none;
}
button[type=submit] {
    width: 100%;
}
/* HEADER & LOGO */
.sticky-header-placeholder {
    display: none;
}
#sp-header {
    background-color: transparent;
    position: absolute;
    z-index: 99;
    box-shadow: none;
   /* -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out*/
	-webkit-animation-duration: 1s;
	-moz-animation-duration: 1s;
	-o-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	-moz-animation-fill-mode: both;
	-o-animation-fill-mode: both;
	animation-fill-mode: both;
}
#sp-header.header-sticky {
    position: fixed;
    background-color: #ffffff;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    box-shadow: 0px 0px 6px 2px rgba(0,0,0,.62);
   /* -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;*/
    -webkit-transition: all .6s;
    -moz-transition: all .6s;
    -o-transition: all .6s;
	transition: all .6s;
	animation-name: menu_sticky;
	animation-duration: 0.60s;
	animation-timing-function: ease-out;    
}
@keyframes menu_sticky {
  0%   {margin-top:-100px;}
  50%  {margin-top: -90px;}
  100% {margin-top: 0;}
}
#sp-header .logo a {
    color: #ffffff;
}
#sp-header .logo,
#sp-header .logo a img {
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
#sp-header.header-sticky .logo a {
    color: #e1b125;
}
#sp-header.header-sticky .logo,
#sp-header.header-sticky .logo a img {
    transform: scale(.9);
}
#sp-header.header-sticky .logo-image {
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;   
}
@media (max-width: 575px) {
    #sp-header .logo {
        height: 50px;
    }
}
@media (max-width: 991px) {
    #sp-header .logo {
        height: 50px;
    }
}
/* END HEADER & LOGO */

/* MENU */
.sp-megamenu-parent>li>a,
.sp-megamenu-parent>li>span a {
    display: inline-block;
    position: relative;
    font-size: 2.5rem;
    font-family: "IBM Plex Serif", serif;
    letter-spacing: 3px;
    color: #ffffff;
    margin: 0;
    text-transform: uppercase;
    font-weight: 400;
}
.sp-megamenu-parent>li.active>a {
    color: #ffffff;
}
.sp-megamenu-parent>li>a:hover,
.sp-megamenu-parent>li>span a:hover {
    color: #e1b125;
    text-decoration: none;
}
.sp-megamenu-parent .sp-dropdown .sp-dropdown-inner {
    background-color: #3c1a56;
    box-shadow: 3px 3px 6px 0 rgba(0, 0, 0, 0.3);
    padding: 18px;
    border-radius: 0 0 10px 10px;
}
.sp-megamenu-parent>li {
    display: inline-block;
    position: relative;
    padding: 0;
    font-size: 2.5rem;
    letter-spacing: 3px;
}
.sp-megamenu-parent .sp-dropdown li.sp-menu-item {
    margin: 0;
}
.sp-megamenu-parent .sp-dropdown li.sp-menu-item>a,
.sp-megamenu-parent .sp-dropdown li.sp-menu-item span:not(.sp-menu-badge) {
    color: #ffffff;
    font-size: 2rem;
    font-family: "IBM Plex Serif", serif;
    line-height: 1.3;
    padding: 8px 0;
    text-transform: uppercase;
}
.sp-megamenu-parent .sp-dropdown li.sp-menu-item>a:hover,
.sp-megamenu-parent .sp-dropdown li.sp-menu-item span:not(.sp-menu-badge):hover {
    color: #e1b125;
    padding-left: 10px;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
}
#sp-header.header-sticky .sp-megamenu-parent>li>a,
#sp-header.header-sticky .sp-megamenu-parent>li>span a {
    color: #e1b125;
}
#sp-header.header-sticky .sp-megamenu-parent>li>a,
#sp-header.header-sticky .sp-megamenu-parent>li>span {
    color: #e1b125;
    font-size: 2.5rem;
    font-family: "IBM Plex Serif", serif;
    text-transform: uppercase;
    letter-spacing: 3px;
}
#sp-header.header-sticky .sp-megamenu-parent>li>a:hover,
#sp-header.header-sticky .sp-megamenu-parent>li>span a:hover {
    color: #e1b125;
    text-decoration: none;
}
#sp-header.header-sticky .sp-megamenu-parent>li.active>a {
    color: #e1b125;
}
.offcanvas-overlay {
    background: rgb(0, 0, 0, .75);
}
body.ltr.offcanvs-position-right .offcanvas-menu {
    right: -90%;
    top: 0;
}
.offcanvas-menu {
    width: 90%;
}
#offcanvas-toggler {
	display: block;
	height: 60px;
	line-height: 60px;
	font-size: 2rem;
}
body.ltr.offcanvs-position-right.offcanvas-active .offcanvas-menu {
    right: 0;
    background-color: transparent;
}
#offcanvas-toggler > .fa {
	color: #fff;
}
.burger-icon>span {
    background-color: #ffffff; 
}
.offcanvas-active .burger-icon>span, #modal-menu-toggler.active .burger-icon>span {
    background-color: #eaddf3; 
}
.offcanvas-menu.border-menu .offcanvas-inner ul.menu>li {
    border: 0;
}
.offcanvas-menu .offcanvas-inner ul.menu>li>a,
.offcanvas-menu .offcanvas-inner ul.menu>li>span,
.offcanvas-menu .offcanvas-inner ul.menu>li>ul li a {
    font-size: 2.5rem;
    font-family: "IBM Plex Serif", serif;
    color: #eaddf3;
    opacity: .9;
}
.offcanvas-menu .offcanvas-inner ul.menu li.active a {
    color: #eaddf3;
}
.header-sticky .burger-icon>span {
    background-color: #e1b125; 
}
/* BOTTOM MENU */
#sp-bottom .sp-module ul.nav {
    display: block;
}
#sp-bottom .sp-module ul>li {
    display: block;
    margin-bottom: 8px;
}
#sp-bottom .sp-module ul.mod-menu__sub {
    margin-left: 20px;
}
#sp-bottom .sp-module ul.mod-menu__sub .nav-item {
    margin-bottom: 5px;
}
/* END BOTTOM MENU */
@media (max-width: 1070px) {
    .sp-megamenu-parent>li>a,
    .sp-megamenu-parent>li span {
        font-size: 1.7rem;
    }
}
@media (max-width: 1130px) {
    #sp-header.header-sticky .sp-megamenu-parent>li>a, 
    #sp-header.header-sticky .sp-megamenu-parent>li>span {
        font-size: 1.7rem;
    }
}
@media only screen and (max-width: 575px) {
    #sp-header,
    #sp-logo {
        height: 60px;
    }
    #sp-header .logo {
        height: 60px;
    }
    #sp-header .logo a img {
        transform: scale(.5);
    }
    #sp-header.header-sticky .logo a img {
        transform: scale(.5);
    }    
}
@media only screen and (max-width: 991px) {
    #sp-header,
    #sp-logo {
        height: 60px;
    }
    #sp-header .logo {
        height: 60px;
        transform: translateX(-15px);
    }
    #sp-header .logo a img {
        transform: scale(.5);
    }
    #sp-header.header-sticky .logo a img {
        transform: scale(.5);
    }
}
/* END MENU */

/* FORMS */
.formControlLabel {
    color: #100917;
    margin: 0 0 2px 0;
}
.formDescription {
    margin: 0;
}
.form-check-label {
    color: #100917;
}
.formError {
    color: #da0400;
    padding-left: 5px;
    vertical-align: middle;
    font-size: 1.7rem;
    font-weight: 400;
    margin: -5px 0 10px 0;
    display: block;
}
.form-control, 
input[type="text"]:not(.form-control),
input[type="email"]:not(.form-control),
input[type="url"]:not(.form-control),
input[type="date"]:not(.form-control),
input[type="password"]:not(.form-control),
input[type="search"]:not(.form-control),
input[type="tel"]:not(.form-control),
input[type="number"]:not(.form-control),
select:not(.form-select):not(.form-control),
select.form-control:not([multiple]),
select.inputbox:not([multiple]),
select:not([multiple]),
input[type=email],
input[type=number],
input[type=password],
input[type=tel],
input[type=text],
input[type=url],
textarea {
    display: block;
    width: 100%;
    height: auto;
    padding: 13px 8px;
    margin: 0 0 20px 0;
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 1.25;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #cccccc;
    border-radius: 5px;
    transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
    box-sizing: border-box;
}
.form-control:hover, 
input[type="text"]:not(.form-control):hover,
input[type="email"]:not(.form-control):hover,
input[type="url"]:not(.form-control):hover,
input[type="date"]:not(.form-control):hover,
input[type="password"]:not(.form-control):hover,
input[type="search"]:not(.form-control):hover,
input[type="tel"]:not(.form-control):hover,
input[type="number"]:not(.form-control):hover,
select:not(.form-select):not(.form-control):hover,
select.form-control:not([multiple]):hover,
select.inputbox:not([multiple]):hover,
select:not([multiple]):hover,
input[type=email]:hover,
input[type=number]:hover,
input[type=password]:hover,
input[type=tel]:hover,
input[type=text]:hover,
input[type=url]:hover,
textarea:hover {
    color: #292669;
    background-color: #ebebeb;
    border-color: #9a7b1f;
    outline: 0;
    box-shadow: 2px 2px 5px 0px rgba(0, 0, 0, .25) !important;
}
button[type=reset], 
button[type=submit], 
button[type=button],
input[type=reset], 
input[type=submit], 
input[type=button] {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;    
    line-height: 1.4;
    letter-spacing: 1px;
    text-align: center;
    width: 100%;
    padding: 14px 30px;
    margin: 15px 0;
    background-color: #000000;
    border: none;
    border-radius: 8px;
    box-shadow: none;
    display: inline-block;
    text-transform: uppercase;
    text-decoration: none;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    white-space: nowrap;
    vertical-align: middle;
    touch-action: manipulation;
    cursor: pointer;
}
button[type=reset]:hover,
button[type=submit]:hover,
button[type=button]:hover,
input[type=reset]:hover,
input[type=submit]:hover,
input[type=button]:hover {
    color: #ffffff;
    background-color: #3b3b3b;
    box-shadow: none;
}
#contactForm button[type=submit] {
    margin: 0 0 15px 0;
}
#contactForm .input-group {
    margin-bottom: 15px;
}
.input-group>:not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
    margin-left: -1px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    margin-bottom: 0;
}
.rsform-captcha-refresh-button {
    margin: 0;
}
/* END FORMS */

/* PRIVACY NOTICE */
.privacy-notice #sp-header {
    display: none;
}
.privacy-notice h2 {
    font-size: 3.5rem;
    color: #291948;
    text-transform: uppercase;
}
.privacy-notice p {
    color: #100917;
}
.privacy-notice .small-text {
    font-size: 1.5rem;
}
.privacy-notice a {
    color: #594b8b;
    text-decoration: none;
}
.privacy-notice .article-details ul {
    color: #100917;
    margin: 10px 0 20px 60px;
    list-style-type: disc;
    list-style-position: outside;
}
.privacy-notice .article-details ol {
    color: #100917;
    margin: 10px 0 20px 60px;
    list-style-position: outside;    
}
.privacy-notice .article-details .article-info {
    display: block;
    margin: 0;
}
.privacy-notice .article-info>span {
    color: #100917;
    font-size: 2.1rem;
    margin: 20px 0;
}
.collection-table {
	display: flex;
	flex-direction: column;
	width: 100%;
	border-collapse: collapse;
}
.table-row-header {
	display: flex;
	flex-wrap: wrap;
	border-top: 1px solid #000000;
	border-right: 1px solid #000000;
	border-bottom: 0 solid #000000;
	border-left: 1px solid #000000;
	font-weight: 700;
	background-color: #cfcfcf;
}
.table-cell-header-col1 {
	flex: 2;
	border-top: 1px solid #000000;
	border-right: 1px solid #000000;
	border-bottom: 0 solid #000000;
	border-left: 1px solid #000000;
	padding: 5px;
	color: #100917;
	text-align: center;
}
.table-cell-header-col2 {
	flex: 3;
	border-top: 1px solid #000000;
	border-right: 1px solid #000000;
	border-bottom: 0 solid #000000;
	border-left: 1px solid #000000;
	padding: 5px;
	color: #100917;
	text-align: center;
}
.table-cell-header-col3 {
	flex: 1;
	border-top: 1px solid #000000;
	border-right: 1px solid #000000;
	border-bottom: 0 solid #000000;
	border-left: 1px solid #000000;
	padding: 5px;
	color: #100917;
	text-align: center;
}
.table-row {
	display: flex;
	flex-wrap: wrap;
	border-top: 1px solid #000000;
	border-right: 1px solid #000000;
	border-bottom: 0 solid #000000;
	border-left: 1px solid #000000;
}

.table-cell-col1 {
	flex: 2;
	border-top: 1px solid #000000;
	border-right: 1px solid #000000;
	border-bottom: 0 solid #000000;
	border-left: 1px solid #000000;
	padding: 5px;
	text-align: left;
	color: #100917;
}
.table-cell-col2 {
	flex: 3;
	border-top: 1px solid #000000;
	border-right: 1px solid #000000;
	border-bottom: 0 solid #000000;
	border-left: 1px solid #000000;
	padding: 5px;
	text-align: left;
	color: #100917;
}
.table-cell-col3 {
	flex: 1;
	border-top: 1px solid #000000;
	border-right: 1px solid #000000;
	border-bottom: 0 solid #000000;
	border-left: 1px solid #000000;
	padding: 5px;
	text-align: left;
	color: #100917;
}
.cell-center {
    text-align: center;
}
.table-cell-last, .table-row-last {
    border-bottom: 1px solid #000000;
}
/* CONTROL HEIGHT OF ANCHOR LINKS */
    :target:before {
    content:"";
    display:block;
    height:150px; /* fixed header height*/
    margin-top:-150px; /* negative fixed header height */
}
/* END PRIVACY NOTICE */

/* SCROLL UP */
.fas, .fa-angle-up {
    color: #ffffff;
}
.sp-scroll-up {
    background: #8142a8;
}
.sp-scroll-up:hover {
    background: #6f2f9f;
}
/* END SCROLL */

/* FOOTER */
#sp-footer .container-inner,
#sp-bottom .sp-module {
    padding: 10px;
    border: 0;
    margin: 0;
}
#sp-footer {
    background-color: #000000;
}
#sp-footer a:hover,
#sp-bottom a:hover {
    color: #e1b125;
}
.sp-copyright p {
    font-size: 1.6rem;
    color: #ffffff;
    text-align: center;
}
.sp-copyright a {
    color: #e1b125;
}
.sp-copyright .fas,
.sp-copyright .fa-external-link-alt {
    color: #e1b125;
}
/* END FOOTER */

/* OFFLINE PAGE */
.offline {
    width: 100%;
    height: 100%;
    min-height: 100%;
}
.offline body {
    width: 100%;
    height: 100%;
    min-height: 100%;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    -ms-flex-align: center;
    -ms-flex-pack: center;
    -webkit-box-align: center;
    -webkit-box-pack: center;
    padding-top: 40px;
    padding-bottom: 40px;
    text-align: center;
    background-repeat: no-repeat;
    background-position: 50% 40%;
}
.offline-wrapper {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}
.offline img {
    display: inline-block;
    width: 325px;
}
.offline .login-wrapper {
    display: inline-block;
    width: 300px;
    align-items: center;
}
.offline .login-form {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 20px;
}
.offline .form-input {
    width: 100%;
    margin-bottom: 10px;
}
.offline-label label {
    display: none;
}
.offline .input-group {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    width: 100%;
}
.input-group:not(.has-validation)>.dropdown-toggle:nth-last-child(n+3),
.input-group:not(.has-validation)>:not(:last-child):not(.dropdown-toggle):not(.dropdown-menu) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}
.input-group>:not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
    margin-left: -1px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    margin-bottom: 0;
}
.offline .input-group-text {
    display: flex;
    align-items: center;
    padding: 16px;
    font-size: 1.3rem;
    font-weight: 400;
    line-height: 1.5;
    color: #292669;
    text-align: center;
    white-space: nowrap;
    background-color: #e9ecef;
    border: 1px solid #3c1361;
    border-radius: 0.25rem;
}
.offline .fa-user:before {
    color: #292669;
    margin: 0;
}
.offline .login-icon {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    padding: .375rem .75rem;
    margin-bottom: 0;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    text-align: center;
    white-space: nowrap;
    background-color: #e9ecef;
    border: 1px solid #ced4da;
    border-radius: .25rem;
}
.offline .form-control {
	font-size: 1.5rem;
}
.offline .form-control:focus {
	font-size: 1.5rem;
	box-shadow: none;
}
.offline .login-form input[type="submit"],
.offline .login-form button[type="submit"] {
    width: 100%;
	font-size: 1.5rem;
    padding: 14px 40px;
    margin: 0 0 10px 0;
}
.offline .login-buttons {
    margin: 0 0 10px 0;
    width: 100%;
}
button[class*=plg_system_webauthn_login_button] {
    max-height: inherit;
    padding: 0;
}
.login-buttons .offline-webauth {
    display: block;
    padding: 7px 0px;
    margin: 0;
    width: 100%;
    white-space: nowrap;
}
/* END OFFLINE PAGE */