html {
	scroll-behavior: smooth;
}

body * {
	box-sizing: border-box;
}
body {
	margin: 0;
	min-height: 100vh;
	width: 100%;
	transition: all .5s ease-in-out;
	font-family: "indivisible", sans-serif;
	font-size: 16px;
	color: RGB(var(--var03color));
}

body::-webkit-scrollbar {
	display: none;
}

a {
	text-decoration: none;
}

a:-webkit-any-link {
	color: inherit;
}

section {
	width: 100vw;
	position: relative;
}

ul {
	margin: 0;
	padding: 0;
	list-style: none !important;
}

img {
	width: 100%;
	height: 100%;
	object-fit: inherit;
}
.img-wrp.cover img {
	object-fit: cover;
}

button {
	cursor: pointer;
}

:root {
	--basecolor: 255, 255, 255; /* #ffffff Pure White */
	--primarycolor: 223, 0, 0; /* #df0000 Dark RED */
	--secondarycolor: 255, 212, 0; /* #ffd400 Spain Yellow */
	--var01color: 241, 241, 241; /* #f1f1f1 Soft Grey */
	--var02color: 220, 220, 220; /* #DCDCDC Dark Grey */
	--var03color: 33, 33, 33; /* #212121 Dark Matter */
	--var04color: 15, 15, 15; 
	--backup-font: sans-serif;
	--primaryfont: "indivisible", var(--backup-font);
	--secondaryfont: 'Titillium Web', var(--backup-font);
	--arabicfont: "Cairo",  var(--backup-font);
}

.hide {
	display: none;
}

.mobile {
	display: none;
}

.desktop {
	display: block;
}

.container {
	width: 100%;
	box-sizing: border-box;
}

.full-page {
	width: 100vw;
	height: 100vh;
}

.col-70 {
	width: 70%;
}
.col-60 {
	width: 60%;
}
.col-50 {
	width: 50%;
}
.col-40 {
	width: 40%;
}
.col-30 {
	width: 30%;
}
.col-25 {
	width: 25%;
}
.col-20 {
	width: 20%;
}
.right-auto {
	margin-right: auto;
}
.overlay-black {
	background-color: RGBA(0, 0, 0, 0.5);
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.italic {
	font-style: italic;
}
red {
	color: RGB(var(--primarycolor));
}
yellow {
	color: RGB(var(--secondarycolor));
}

.title {
	font-size: 1.8em;
}
.subtitle {
	font-size: 1.5em;
}
note {
	font-size: 0.6em;
}
.titillium-web-semibold {
	font-family: "Titillium Web", sans-serif;
	font-weight: 600;
	font-style: normal;
}

.redfill-strock {
	background-color: RGB(var(--primarycolor));
	border: 1px solid RGB(var(--basecolor));
	color: RGB(var(--basecolor));
	padding: 15px 30px;
	text-transform: uppercase;
}

.transfill-redstrock {
	background-color: transparent;
	border:  1px solid RGB(var(--primarycolor));
	color: RGB(var(--basecolor));
	padding: 15px 30px;
	text-transform: uppercase;
}
.whitefill-greystrok {
	background-color: RGB(var(--basecolor));
	border:  1px solid RGB(var(--var02color));
	color: RGB(var(--var03color));
	padding: 15px 30px;
	text-transform: uppercase;
}

.redfill-redstrock {
	background-color: RGB(var(--primarycolor));
	border:  1px solid RGB(var(--primarycolor));
	color: RGB(var(--basecolor));
	padding: 15px 30px;
	text-transform: uppercase;
}


/* HEADER */
#navbar.active #main-menu {
	opacity: 1;
	display: block;
	transition: all 0.3s ease-in-out;
}
#brgr-menu {
	margin-left: auto;
}
.burger-menu {
	color: RGB(var(--basecolor));
}
.burger-menu .lines-wrp {
	line-height: 0;
}
#header-wrp {
	z-index: 999;
	position: relative;
}
#contactBar {
	height: 35px;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background-color: RGB(var(--var02color));
	transition: transform 0.3s ease-in-out;
}
.contact-wrp {
	height: 100%;
	gap: 20px;
	display: flex;
	align-items: center;
	justify-content: flex-start;
}
.contact-wrp > div {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 10px;
}
.account-menu {
	margin-left: auto;
}
#language-menu {
	display: flex;
	flex-direction: row;
	align-items: center;
	color: RGB(var(--basecolor));
	margin-left: auto;
	margin-right: 20px;
}
#language-menu .language-icon {
	width: 30px;
	height: 30px;
	background-color: RGB(var(--var01color));
	color: RGB(var(--primarycolor));
	border-radius: 40px;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
}
#language-menu .language-icon span{
	font-size: 20px;
}
#language-menu .language-optns {
	padding-left: 0px;
	max-width: 0;
	opacity: 0;
	white-space: nowrap;
	overflow: hidden;
	transition: all 0.3s ease-out;
}
.hover .language-optns {
	padding-left: 10px !important;
	max-width: 500px !important;
	opacity: 1 !important;
	transition: all 0.3s ease-in;
}
#navbar {
	font-family: var(--secondaryfont);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 2px;
	position: fixed;
	top: 35px;
	left: 0;
	width: 100%;
	transition: transform 0.3s ease-in-out;
}
#navbar #logo, #navbar #logo a {
	height: 100%;
	object-fit: contain;
}
#navbar #logo {
	padding: 10px;
	box-sizing: border-box;

}
#navbar #logo a {
	display: block;
	box-sizing: border-box;
}

#navbar .nav-wrp {
	position: relative;
	box-sizing: border-box;
	height: 70px;
	display: flex;
	flex-direction: row;
	align-items: center;
	padding: 0 20px;
	background-color: RGB(var(--primarycolor));
}

#navbar #main-menu {
	height: 100%;
}

#navbar #main-menu ul.mainmenu {
	height: 100%;
	display: flex;
	flex-direction: row;
	align-items: center;
}

#main-menu ul.mainmenu li {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	position: relative;
	margin: 0 15px;
	color: RGB(var(--basecolor));
	text-transform: uppercase;
}
#main-menu ul.mainmenu li.hover {
	color: RGB(var(--secondarycolor));
}
#main-menu ul.submenu {
	padding: 10px;
	visibility: hidden;
	display: none;
	opacity: 0;
	width: 225px;
	bottom: 0;
	left: 50%;
	transform: translate(-50%, 100%);
	position: absolute;
	flex-direction: column;
	align-items: center;
	transition: all 0.3s ease-in-out;
	box-sizing: border-box;
}

#main-menu ul.submenu li {
	width: 100%;
	text-align: center;
	padding-bottom: 5px;
	text-transform: capitalize;
	margin: 5px 0;
	border-bottom: 1px solid RGBA(var(--var02color), 0.5);
	letter-spacing: 1px;
}
#main-menu ul.submenu li:last-child {
	border: none;
}

#main-menu ul.submenu li :hover {
	color: RGB(var(--secondarycolor));
}

.hover ul.submenu {
	visibility: visible!important;
	opacity: 1!important;
	display: flex !important;
	transition: all 0.3s ease-in-out;
}

/* CAROUSEL */
.carousel-container {
	width: 100%;
	height: 100vh;
	overflow: hidden;
	position: relative;
}
.carousel-headline {
	font-size: 2.5em;
	text-transform: uppercase;
	font-weight: 600;
	font-family: var(--primaryfont);
}
.carousel-subheadline {
	font-size: 1.5em;
	font-family: var(--secondaryfont);
}
/* Carousel Track */
.carousel-track {
	display: flex;
	width: max-content;
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
}

/* Individual Slide */
.carousel-slide {
	position: relative;
	flex: 0 0 100vw;
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
}
.carousel-bg {
	z-index: -1;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

/* Slide Colors (Example) */
.slide {
	display: flex;
	flex-direction: column;
}

.slide-wrp {
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	width: 60%;
}

.buttons-wrp-inline {
	margin-top: 40px;
	display: flex;
	flex-direction: row;
	gap: 20px;
}

.left-align {
	align-items: flex-start;
}

/* Bullet Navigation */
.bullet-nav {
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 10px;
}

.bullet {
	width: 12px;
	height: 12px;
	background: white;
	border-radius: 50%;
	opacity: 0.5;
	transition: opacity 0.3s ease-in-out;
	cursor: pointer;
}

.bullet.active {
	opacity: 1;
}

/* FAST BRIEF */
#fast-brief {
	padding-top: 50px;
	padding-bottom: 50px;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.briefing {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
	margin-top: 20px;
}
.brief-block {
	display: flex;
	flex-direction: row;
}
.brief-image {
	width: 50%;
	object-fit: cover;
}
.briefing > div {
	background-color: RGB(var(--primarycolor));
	color: white;
}
.brief-paragraph {
	width: 50%;
	padding: 30px;
	display: flex;
	flex-direction: column;
}
.brief-paragraph button {
	margin-right: auto;
}
.brief-paragraph p {
	margin-top: 5px;
	line-height: 1;
}
.brief-paragraph .title i {
	font-size: 2em;
}

.brief-paragraph .title {
	font-size: 1.3em;
	font-weight: 600;
	line-height: 1;
	display: inline-block;
	text-transform: uppercase;
}
.brief-paragraph .title span {
}

.fast-search {
	padding: 40px 30px;
	display: flex;
	flex-direction: row;
	gap: 20px;
}

.fast-search > div {
	flex: 1;
}

.dropdown-field select{
	width: 100%;
	background-color: RGB(var(--basecolor));
	border:  1px solid RGB(var(--var02color));
	color: RGB(var(--var03color));
	padding: 15px 30px;
	text-transform: uppercase;
}

#about-us {
	text-align: center;
	padding-top: 50px;
	padding-bottom: 50px;
	display: flex;
	flex-direction: column;
	align-items: center;
}
#about-us p {
	text-align: justify;
	text-align-last: center;
}
.colaborate {
	font-family: "Titillium Web";
	font-weight: 600;
	font-size: 30px;
	color: #115640;
	margin: 30px 0;
}
.colaborate .icons {
	display: flex;
	flex-direction: row;
	gap: 10px;
}
.colaborate .icons div {
	max-width: 150px;
	max-height: 150px;
	width: 100%;
	height: 100%;
}

#courses {
	background-color: RGB(var(--var01color))
}
.courses-wrapper {
	width: 100%;
	position: relative;
}
.courses-box {
	overflow: hidden;
}

.elements-container {
	display: flex;
	box-sizing: border-box;
	transition: transform 0.5s ease-in-out;
}

.element {
	box-sizing: border-box;
	flex: 0 0 calc(100%/10); /* Show 3 items on desktop */
	padding: 20px;
	text-align: center;
	font-size: 18px;
}

#contact-us {
	background-color: RGB(var(--var03color));
	width: 100%;
	padding: 50px 0;
}

#contact-us .title {
	text-transform: uppercase;
	color: RGB(var(--basecolor));
	text-align: center;
	width: 100%;
	font-weight: 600;
}
#contact-us .subtitle {
	text-align: center;
	color: RGB(var(--basecolor));
}
#contact-us span {
	margin: 10px 0;
	display: block;
}

.contact-us-wrp {
	padding: 50px 0;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	align-items: center;
}


/* Testimonials - FAQ */
#faq, #testimonials {
	padding: 50px 0;
}
#testimonials-faq > div {
	color: RGB(var(--var03color));
}

#testimonials-faq .title {
	margin-bottom: 30px;
	display: block;
	text-transform: uppercase;
}
.testimonials-wrp {
	display: flex;
	gap: 40px;
}
.testimonials-wrp > div {
	flex: 1;
}
.testimonial-box {
	padding: 20px;
	margin-bottom: 20px;
	background-color: RGB(var(--var01color));
	border: 1px solid RGB(var(--var02color));
	display: flex;
	gap: 20px;
	flex-direction: row;
}
.testimonial {
	color: RGB(var(--var03color));
	font-size: 13px;
}
.testimonial .position {
	text-transform: uppercase;
	font-weight: 600;
	font-size: 1.2em;
	margin-bottom: 10px;
	margin-bottom: 10px;
	display: block;
}
.testimonial .position note {
	margin: 0 10px;
	font-weight: 200;
}
.testimonial p {
	line-height: 1.5;
}
.avatar {
	max-width: 50px;
	max-height: 50px;
	overflow: hidden;
	border-radius: 100px;
}

.faq-item {
	margin-bottom: 10px;
	overflow: hidden;
	color: RGB(var(--var03color));
}
.faq-item:last-of-type.active {
	border-bottom: solid 1px RGB(var(--var02color)) ;
}
.faq-question {
	background: RGB(var(--var01color));
	padding: 15px 50px;
	font-size: 16px;
	cursor: pointer;
	position: relative;
}
.faq-icon {
	padding: 1px;
	border: solid 1px RGB(var(--primarycolor));
	color: RGB(var(--primarycolor));
	border-radius: 4px;
	font-size: 10px !important;
	position: absolute;
	top: 50%;
	left: 25px;
	transform: translate(-50%, -50%);
}
.faq-icon.plus {

}

.faq-icon.minus {
	display: none;
}
.active .faq-icon.plus {
	display: none;
}
.active .faq-icon.minus {
	display: block;
	border: solid 1px RGB(var(--var03color));
	color: RGB(var(--var03color));
}

.faq-answer {
	padding: 20px 50px;
	background: #fff;
	display: none; /* Initially hidden */
}

.faq-item.active .faq-answer {
	display: block; /* Show answer when active */
}

.faq-item.active .plus {
	transform: rotate(45deg); /* Change + to × when active */
}

#newsletter {
	background-color: RGB(var(--primarycolor));
	padding: 50px 0;
}
.newsletter-wrp {
	display: flex;
	flex-direction: column;
	align-items: center;
	color: RGB(var(--basecolor));
}
form#newsletter-form {
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: center;
	gap: 20px;
	margin: 02px 0;
} 
form#newsletter-form input {
	width: 35%;
} 


.page-text {
	display: flex;
	flex-direction: row;
	gap: 40px;
}
.page-text .image {
	height: fit-content;
	object-fit: cover;
}
.page-text .headline {
	font-size: 2em;
	font-weight: 700;
	text-transform: uppercase;
	font-family: var(--secondaryfont);
	line-height: 1;
}

.headline {
	font-size: 2em;
	font-weight: 700;
	text-transform: uppercase;
	font-family: var(--secondaryfont);
	line-height: 1;
}

.page-text .sub-headline {
	font-size: 1.5em;
	font-weight: 700;
	text-transform: uppercase;
	font-family: var(--secondaryfont);
	line-height: 1;
}
.page-text .sub-paragraph {
	font-size: 1.2em;
}
.page-text .subjects::before {
	content: "•";
	margin-right: 10px;
}
.check-mark {
	margin-top: 10px;
}
.check-mark::before {
	content: "\2713"!important;
	color: RGB(var(--primarycolor));
	margin-right: 10px;
	font-size: 1.2em;
}

.page-text ul.subjects-list {
	margin-top: 10px;
}
.fullpage-content {
	display: flex;
	flex-direction: row;
	gap: 40px;
	margin-top: 50px;
	padding-top: 30px;
	border-top: solid 1px RGBA(var(--var03color),0.3);
}

.fullpage-content .sub-headline {
	font-size: 1.5em;
	font-weight: 700;
	text-transform: uppercase;
	font-family: var(--secondaryfont);
	line-height: 1;
	text-align: right;
}

.more-informations-form {
	display: flex;
	flex-direction: row;
	gap: 40px;
	margin-top: 50px;
	padding-top: 30px;
	border-top: solid 1px RGBA(var(--var03color),0.3);
}
.more-informations-form .headline {
	font-size: 2em;
	font-weight: 700;
	text-transform: uppercase;
	font-family: var(--secondaryfont);
	line-height: 1;
}
.more-informations-form .sub-headline {
	font-size: 1.5em;
	font-weight: 700;
	text-transform: uppercase;
	font-family: var(--secondaryfont);
	line-height: 1;
	text-align: right;
}
.inputs-list {
	display: flex;
	flex-direction: row;
	gap: 10px;
	margin: 30px 0;
}
.input-block {
	flex: 1;
}
.input-block label {
	display: block;
	font-family: var(--primaryfont);
	font-weight: 600;
	font-size: 1.1;
}
form#more-info .input-block input {
	margin-top: 10px;
	font-size: 16px;
	padding: 8px;
	width: 100%;
	border: solid 1px RGBA(var(--var03color), 0.2);
}
form#more-info {
	background-color: RGBA(var(--primarycolor), 0.1);
	padding: 30px;
}
form#more-info button {
	background-color: RGBA(var(--primarycolor));
	padding: 10px 20px;
	border: unset;
	text-transform: uppercase;
	font-weight: 800;
	font-size: 16px;
	color: RGB(var(--basecolor));
}
form#more-info button:hover {
	background-color: RGB(var(--secondarycolor));
	color: RGB(var(--primarycolor));
}

.description-wrapper {
	display: flex;
	flex-direction: column;
	gap: 20px;
	margin-bottom: 20px;
	margin-top: 20px;
}
.description-wrapper .two-columns-wrapper {
	display: flex;
	flex-direction: row;
	gap: 20px;
}

.description-block {
	display: flex;
	gap: 10px;
	flex-direction: column;
	margin-top: ;
	padding: 20px;
	background-color: RGBA(var(--var03color),0.1);
}
.description-block p.bullet-point {
	margin-left: 20px;
	margin-top: 0;
}
.description-block .modules-wrapper {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}

.description-block .text-img {
	display: flex;
	flex-direction: row;
	gap: 20px;
	margin-bottom: 20px;
}

.grid-3 {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px; /* optional spacing between items */
}

footer {
	background-color: RGB(var(--var04color));
	min-height: 200px;
	font-size: 12px;
	color: RGB(var(--basecolor));
	padding: 50px;
}
.footer-wrp {
	width: 100%;
	display: flex;
	flex-direction: row;
	gap: 40px;
}
.footer-wrp > div {
	width: 25%;
}

footer li:hover {
	color: RGB(var(--primarycolor));
}
footer li::before {
	content: "\e5df"; /* Codepoint for arrow_forward */
	font-family: "Material Symbols Outlined"; /* Google icon font */
	font-size: 18px;
	margin-right: 8px;
	vertical-align: middle;
}
footer p {
	margin: 0 0 10px 0;
}
footer .subtitle {
	margin-bottom: 20px;
}
#social-media {
	display: flex;
	flex-direction: row;
	gap: 20px;
	margin: 20px 0;
}

#social-media .icon {
	max-width: 30px;
	max-height: 30px;
}
footer .contact-elmnt {
	display: flex;
	flex-direction: column;
}

footer #contact .contact-detail {
	box-sizing: border-box;
	border: solid 1px RGB(var(--var03color));
	padding: 30px 20px 20px 20px;
	margin: 15px 0;
	position: relative;
	text-align: center;
}
footer #contact .contact-detail .icon {
	position: absolute;
	top: 0;
	left: 50%;
	width: 100%;
	height: 100%;
	max-width: 40px;
	max-height: 40px;
	transform: translate(-50%, -50%);
	background-color: RGB(var(--var02color));
	display: flex;
	align-items: center;
	justify-content: center;
	color: RGB(var(--primarycolor));
	border: solid 1px RGB(var(--var01color));
	border-radius: 200px;
}

.copyright-details {
	background-color: RGB(var(--var03color));
	padding: 10px;
	font-size: 12px;
	display: flex;
	flex-direction: row;
	justify-content: center;
}