/*
 * Colors
 *
 * blue:	#312783 / rgb(49, 39, 131)
 * yellow:	#fbbb21 / rgb(251, 187, 33)
 *
 */

@keyframes fadeIn {
	from { opacity: 0; }
	to { opacity: 1; }
}

@keyframes fadeOu {
	from { opacity: 1; }
	to { opacity: 0; }
}
 
html,
body {
	margin: 0;
	padding: 0;
	display: flex;
	min-height: 100vh;
	flex-direction: column;
}
  
body {
	font-size: 1.125rem !important;
	font-family: 'Roboto', sans-serif !important;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	color: #202020 !important;
	background-image: url(/typo3conf/ext/gold_sitepackage/Resources/Public/Images/mitzvah_bg.png);
	background-size: cover;
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-position: center top;
	position: relative;
}

h1 {
	font-weight: 600 !important;
	font-family: 'Glory', sans-serif !important;
} 

h2 {
	font-weight: 600 !important;
	font-family: 'Glory', sans-serif !important;
}

h3 {
	font-weight: 600 !important;
	font-family: 'Glory', sans-serif !important;
}

h4 {
	font-weight: 600 !important;
	font-family: 'Glory', sans-serif !important;
}

@media (min-width: 768px) {
	h1 {
	}
	h2 {
	}
	h3 {
	}
}
 
@media (min-width: 992px) {
	h1 {
	}
	h2 {
	}
	h3 {
	}
}

@media (min-width: 1200px) {
	h1 {
		font-size: 3rem !important;
	}
	h2 {
		font-size: 2.25rem !important;
	}
	h3 {
	}
}

a {
	color: #312783 !important;
	text-decoration: none!important;
	outline: 0;
	transition: all 0.2s ease-in-out;
}
 
a:hover, 
a:active {
	color: #fbbb21 !important;
	text-decoration: none!important;
}

a.more::before {
	font-family: "bootstrap-icons";
	content: "\F285";
	-webkit-text-stroke: 1px;
	margin-right: .25rem;
	vertical-align: bottom;
}

a.file::before {
	font-family: "bootstrap-icons";
	font-size: 1.25rem !important;
	content: "\F392";
	margin-right: .25rem;
	vertical-align: bottom;
}

a.file-pdf::before {
	font-family: "bootstrap-icons";
	font-size: 1.25rem !important;
	content: "\F63E";
	margin-right: .25rem;
	vertical-align: bottom;
}

.text-upper {
	text-transform: uppercase;
}

.text-small {
	font-size: 0.75rem !important;
}


/* Header */
header#top nav {
	background: #fff;
	box-shadow: 0 8px 8px -6px rgba(0,0,0,0.3);
}

header#top nav .navbar-brand {
	padding-top: .5rem;
	padding-bottom: .5rem;
}

header#top nav .navbar-brand img {
	height: 80px;
	transition: all 0.2s ease-in-out;
}

@media (min-width: 992px) {
	header#top nav .navbar-brand img {
		height: 120px;
	}
}

header#top nav .dropdown-toggle::after {
	border: none;
	font-family: "bootstrap-icons";
	font-size: 1rem !important;
	content: "\F282";
	-webkit-text-stroke: 1px;
	margin-left: .5rem;
	vertical-align: middle;
}

header#top nav .dropdown:hover > .dropdown-menu {
	display: block;
}

header#top nav .dropdown-menu {
	border: none;
	border-radius: 0;
	padding: 0 1rem .5rem 1rem;
}

header#top nav .dropdown-menu .dropdown-item {
	padding-left: 0;
	padding-right: 0;
}

header#top nav .dropdown-menu .dropdown-item:hover {
	background: none;
}

@media (min-width: 992px) {
	header nav .dropdown-menu {
		box-shadow: 0 4px 4px 0 rgba(0, 40, 87, 0.1);
		margin: -0.25rem 0 0 -0.5rem;
		padding: .5rem 1rem;
	}		
}

header#top nav.navbar .navbar-toggler {
	width: 30px;
	height: 28px;
	cursor: pointer;
	border: none;
	position: relative;
	z-index: 1000;
	outline: none;
}
 
header#top nav.navbar .navbar-toggler:focus {
	box-shadow: none;
}
 
header#top nav.navbar .navbar-toggler span {
	display: block;
	position: absolute;
	height: 5px;
	width: 100%;
	background: #312783;
	opacity: 1;
	left: 0;
	-webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-o-transform: rotate(0deg);
	transform: rotate(0deg);
	-webkit-transition: .25s ease-in-out;
	-moz-transition: .25s ease-in-out;
	-o-transition: .25s ease-in-out;
	transition: .25s ease-in-out;
}
 
header#top nav.navbar .navbar-toggler span:nth-child(1) {
	top: 0px;
}
 
header#top nav.navbar .navbar-toggler span:nth-child(2) {
	top: 10px;
}
 
header#top nav.navbar .navbar-toggler span:nth-child(3) {
	top: 10px;
}
 
header#top nav.navbar .navbar-toggler span:nth-child(4) {
	top: 20px;
}
 
header#top nav.navbar .navbar-toggler.open span:nth-child(1) {
	top: 16px;
	width: 0%;
	left: 50%;
}
 
header#top nav.navbar .navbar-toggler.open span:nth-child(2) {
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
}
 
header#top nav.navbar .navbar-toggler.open span:nth-child(3) {
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
 
header#top nav.navbar .navbar-toggler.open span:nth-child(4) {
	top: 14px;
	width: 0%;
	left: 50%;
}

header#top nav.navbar-open .navbar-toggler span {
	background: #312783 !important;
}

@media (min-width: 992px) {
	header#top nav.navbar-scroll .navbar-brand img {
		height: 80px;
	}
}


/* Main */
main {
	padding-top: 110px;
}

@media (min-width: 992px) {
	main {
		padding-top: 150px;
	}	
}

main .frame-type-text p,
main .frame-type-text ul {
	max-width: 900px;
	font-weight: 300 !important;
}

main .frame-type-text p.text-center {
	margin: 0 auto 1rem auto;
}


/* Section */
section {
	padding: 3rem 0;
}

section.grey {
	background: rgba(219, 219, 219, .8);
}

section.blue {
	background: rgba(49, 39, 131, .9);
	color: #fff;
}

section.yellow {
	background: rgba(251, 187, 33, .8);
}

section.yellow-light {
	background: rgba(251, 187, 33, .4);
}

section.blue a {
	color: #fff !important;
}

section.blue a:hover, 
section.blue a:active {
	color: #fbbb21 !important;
}

section.blue a i.bi {
	color: #fbbb21 !important;
}

section.blue h1,
section.blue h2,
section.blue h3 {
	color: #fbbb21 !important;
}

section.blue .frame-layout-13 {
	color: #312783 !important;
}

section.blue .frame-layout-13 h1,
section.blue .frame-layout-13 h2,
section.blue .frame-layout-13 h3 {
	color: #312783 !important;
}

section.blue .btn,
section.blue .btn:hover {
	background: rgba(251, 187, 33, .8);
	border-color: rgba(251, 187, 33, .8);
}

section.grey .frame-layout-20 {
	background: rgba(49, 39, 131, .9);
	color: #fff;
	padding: 1.5rem;
}

section.yellow-light .frame-layout-20 {
	background: rgba(255, 255, 255, .8);
	padding: 1.5rem;
}


/* Images */
.ce-gallery .image {
	position: relative;
	transition: transform .2s ease;
}

.ce-gallery .image figcaption {
	position: absolute;
	text-align: center;
	display: block;
	width: calc(100% - 4rem);
	color: #202020;
	bottom: 2rem;
	margin: 0 2rem;
	background: rgba(255, 255, 255, .75);
}

.ce-gallery .image figcaption a {
	padding: 1rem;
	color: #312783 !important;
}

.ce-gallery .image img {
	transition: transform .2s ease;
}

.ce-gallery .image:hover img {
	transform: scale(1.1);
}


/* Tile */
.ce-tile {
	background-color: transparent;
	width: 300px;
	height: 300px;
	perspective: 1000px;
}

@media (min-width: 768px) {
	.ce-tile {
		width: 216px;
		height: 216px;
	}
}

@media (min-width: 1200px) {
	.ce-tile {
		width: 296px;
		height: 296px;
	}
}

@media (min-width: 992px) {
	.ce-tile {
		width: 356px;
		height: 356px;
	}
}

@media (min-width: 1400px) {
	.ce-tile {
		width: 416px;
		height: 416px;
	}
}

.ce-tile-inner {
	position: relative;
	width: 100%;
	height: 100%;
	text-align: center;
	transition: transform 0.8s;
	transform-style: preserve-3d;
}

.ce-tile:hover .ce-tile-inner {
	transform: rotateY(180deg);
}

.ce-tile-front, .ce-tile-back {
	position: absolute;
	width: 100%;
	height: 100%;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

.ce-tile-front {
	background-color: #bbb;
	color: black;
}

.ce-tile-back {
	background: rgba(49, 39, 131, .9);
	color: #fff;
	transform: rotateY(180deg);
}

.ce-tile .image {
	position: relative;
	transition: transform .2s ease;
}

.ce-tile .image figcaption {
	position: absolute;
	text-align: center;
	display: block;
	width: calc(100% - 4rem);
	font-family: 'Roboto', sans-serif !important;
	color: #202020;
	bottom: 2rem;
	margin: 0 2rem;
	padding: 1rem;
	background: rgba(255, 255, 255, .75);
	color: #312783 !important;
}


/* Database */
.tx-gold-directory {
	font-size: 1rem !important;
}

.tx-gold-directory .dt-paging .page-link {
	color: #202020;
}

.tx-gold-directory .dt-paging .active > .page-link {
	color: #202020;
	background: #e9ecef;
	border-color: #dee2e6;
}

.tx-gold-directory .dt-paging .disabled > .page-link {
	background: #fff;
}

.tx-gold-directory .dt-column-order::before {
	margin: 3px 0;
}

.tx-gold-directory table.table.dataTable>:not(caption)>*>* {
	background-color: rgba(255, 255, 255, .6);
}

/* Forms */
.btn,
.btn:hover {
	background: #fbbb21;
	border-color: #fbbb21;
	color: #202020 !important;
	border-radius: 0 !important;
}


/* container */
.container-grey {
	padding: 1rem 0;
	background: rgba(219, 219, 219, .8);
}

.container-blue {
	padding: 1rem 0;
	background: rgba(49, 39, 131, .9);
	color: #fff;
}

.container-blue a {
	color: #fff !important;
}

.container-blue a:hover, 
.container-blue a:active {
	color: #fbbb21 !important;
}

.container-blue a i.bi {
	color: #fbbb21 !important;
}

.container-blue h1,
.container-blue h2,
.container-blue h3 {
	color: #fbbb21 !important;
}

.container-blue .frame-layout-13 {
	color: #312783 !important;
}

.container-blue .frame-layout-13 h1,
.container-blue .frame-layout-13 h2,
.container-blue .frame-layout-13 h3 {
	color: #312783 !important;
}

.container-blue .btn,
.container-blue .btn:hover {
	background: rgba(251, 187, 33, .8);
	border-color: rgba(251, 187, 33, .8);
}
	
.container-yellow {
	padding: 1rem 0;
	background: rgba(251, 187, 33, .8);
}

.container-yellow-light {
	padding: 1rem 0;
	background: rgba(251, 187, 33, .4);
}


/* Boxes */
.frame-layout-11 {
	background: rgba(219, 219, 219, .8);
	padding: 1rem;
}

.frame-layout-12 {
	background: rgba(49, 39, 131, .9);
	color: #fff;
	padding: 2rem;
}

.frame-layout-13 {
	background: rgba(251, 187, 33, .8);
	padding: 1rem;
}

.frame-layout-14 {
	background: rgba(251, 187, 33, .4);
	padding: 1rem;
}

.frame-layout-15 {
	background: rgba(255, 255, 255, .8);
	padding: 1rem;
}

/* .frame-layout-15 h2,
.frame-layout-15 h3 {
	color: #fbbb21 !important;
} */


/* Scrollspy */
.nav-scrollspy {
	position: sticky !important;
	top: 9rem;
	height: calc(100vh - 11rem);
	overflow-y: auto;
}

.nav-scrollspy .active {
	color: #fbbb21 !important;
}


/* FAQs */
.ce-faq .faq-question {
	color: #fff !important;
	padding: .5rem 1rem;
	background: rgba(49, 39, 131, .9);
}

.ce-faq .faq-answer {
	background: rgba(255, 255, 255, .8);
	padding: 1rem;
}

.ce-faq .faq-answer ul {
	padding-left: 1rem;
}

/* Footer */
footer {
	padding: 3rem 0;
	background: #fff;
	font-size: 1rem !important;
	margin-top: auto;
}


/* Top link */
#toplink {
	position: fixed;
	bottom: 1.5rem;
	right: 1.5rem;
	opacity: 0;
	transition: 0.8s;
}

#toplink:hover {
	cursor: pointer;
}

#toplink.show-top {
	opacity: 1;
	transition: 0.8s;
}


main ul li {
	margin-bottom: .5rem !important;
}

main ul li p {
	margin: 0 !important;
}

/* Quiz */
.ce-quiz .accordion {
	--bs-accordion-bg: transparent;
}

.ce-quiz .accordion-item {
	border: 1px solid rgba(255, 255, 255, .5) !important;
}

.ce-quiz .accordion-item:hover {
	background-color: rgba(255, 255, 255, .3);
}

.ce-quiz .accordion-button {
	font-size: 1.125rem !important;
	font-family: 'Roboto', sans-serif !important;
}

.ce-quiz .accordion-button::after {
	background-image: none;
}

.ce-quiz .accordion-button:focus {
	box-shadow: none !important;
}

.ce-quiz .accordion-button:not(.collapsed) {
	background-color: rgba(255, 255, 255, .3);
	color: #202020 !important;
}

.ce-quiz .accordion-item .accordion-collapse {
	background-color: rgba(255, 255, 255, .3);
}