body {
	--main-color: #5f263e;
	--gray-color: #a8aaac;
	--other-color: #202c45;
	--green-color: #008d58;
	--main-color-rgb: 95, 38, 62;
	--other-color-rgb: 32, 44, 69;
	background-color: #f8f9fa;
	font-family: 'Open Sans', sans-serif;
}

/* loading animation */
.loading-overlay {
	position: fixed;
	background: #fff;
	width: 100%;
	height: calc(100% + 90px);
	z-index: 1040;
	display: none;
	margin-top: -90px;
}

.loading-container {
	position: fixed;
	top: 50%;
	z-index: 1050;
	text-align: center;
	left: 50%;
	transform: translate(-50%, -50%);
	display: none;
}

.loading-container .loader-body {
	width: 48px;
	height: 48px;
	display: inline-block;
	position: relative;
	background: var(--main-color);
	box-sizing: border-box;
	animation: flipX 1s linear infinite;
}

@keyframes flipX {
	0% {
		transform: perspective(200px) rotateX(0deg) rotateY(0deg);
	}

	50% {
		transform: perspective(200px) rotateX(-180deg) rotateY(0deg);
	}

	100% {
		transform: perspective(200px) rotateX(-180deg) rotateY(-180deg);
	}
}

body.load {
	overflow: hidden;
}

body.load .loading-container,
body.load .loading-overlay {
	display: block;
}

/* back to top button */
.back-to-top {
	position: fixed;
	bottom: 30px;
	right: 30px;
	z-index: 100;
	color: #fff;
	width: 40px;
	height: 40px;
	line-height: 37px;
	text-align: center;
	font-size: 22px;
	background-color: var(--main-color);
	cursor: pointer;
	border-radius: 50%;
}

.back-to-top:hover {
	color: #fff;
}

/* helpful class */
.arabic-font {
	font-family: 'Cairo', sans-serif;
}

.nice-shadow {
	box-shadow: 0 3px 15px rgba(22, 41, 124, 0.1);
}

.dashed-border {
	border-bottom: 1px dashed #6f6f6f;
}

.text-aurora {
	color: var(--main-color);
}

.text-green {
	color: var(--green-color);
}

.border-aurora {
	border-color: var(--main-color) !important;
}

.bg-aurora {
	background-color: var(--main-color);
}

.bg-semi-light {
	background-color: #f9fbfd;
}

.hovered {
	color: #adb5bd;
}

.hovered:hover {
	color: var(--main-color);
}

.dropdown-menu {
	border: none;
	box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175);
	animation-name: DropDownSlide;
	animation-duration: 0.3s;
	animation-fill-mode: both;
}

.dropdown-menu .dropdown-item .active,
.dropdown-menu .dropdown-item:active {
	background-color: var(--main-color);
}

.dropdown-menu .dropdown-item:hover,
.dropdown-menu .dropdown-item:focus {
	color: #fff;
	background-color: rgba(var(--main-color-rgb));
}

.dropdown-menu .dropdown-divider {
	height: 0;
	opacity: 1;
	border-top: 1px solid #eff2f7;
}

@keyframes DropDownSlide {
	100% {
		transform: translateY(0);
	}

	0% {
		transform: translateY(10px);
	}
}

/* utilities */

a {
	text-decoration: none;
	color: var(--main-color);
	transition: 0.3s;
}

a.hovered {
	color: #adb5bd;
}

a:hover {
	color: #adb5bd;
}

a.hovered:hover {
	color: var(--main-color);
}

a.text-white:hover {
	opacity: 0.5;
}

.form-control {
	border: none;
	outline: 1px solid #ced4da;
	border-radius: 0;
}

.form-control:focus {
	box-shadow: none;
	outline: 2px solid var(--main-color);
}

/* main button */
.btn-aurora {
	padding: 10px 20px;
	transition: none 0s ease 0s;
	line-height: 23px;
	border-width: 1px 6px 1px 1px;
	letter-spacing: 1px;
	font-weight: 400;
	font-size: 14px;
	color: #fff;
	background-color: var(--other-color);
	border-color: var(--other-color);
	display: inline-block;
	border-left: 6px solid var(--green-color);
}

.skew-btn {
	text-transform: uppercase;
	text-decoration: none;
	text-align: center;
	display: inline-block;
	background-color: transparent;
	padding: 12px 32px 10px;
	font-weight: 700;
	transition: 0.35s ease;
	color: var(--main-color);
	min-width: 140px;
	border: 2px solid var(--main-color);
	box-sizing: border-box;
	border-radius: 0;
	letter-spacing: 0.1em;
	overflow: hidden;
	position: relative;
	z-index: 2;
}

.skew-btn span {
	position: relative;
	z-index: 1;
}

.skew-btn::before {
	content: '';
	position: absolute;
	width: 0;
	height: 100%;
	z-index: -1;
	top: 0;
	left: 50%;
	transition: 0.35s ease;
	background-color: var(--main-color);
	transform: translate(-50%, 0) skew(25deg);
	background-image: var(--main-color);
}

.skew-btn.sm {
	padding: 7px 10px 5px;
	min-width: auto;
	font-size: 14px;
}

.skew-btn:hover,
.skew-btn.skew {
	color: #fff;
}

.skew-btn:hover::before,
.skew-btn.skew::before {
	width: 150%;
}

.skew-btn.skew:hover {
	color: var(--main-color);
}

.skew-btn.skew:hover::before {
	width: 0;
}

/* navbar styles */

nav.navbar {
	height: 120px;
	padding: 0;
}

nav.navbar .navbar-brand .img-brand {
	width: 300px;
	height: 80px;
	object-fit: contain;
}

nav.navbar .navbar-toggler {
	box-shadow: none;
}

nav.navbar .nav-link {
	font-size: 17px;
	transition: 0.5s;
	border-radius: 5rem;
	padding: 5px 10px !important;
}

nav.navbar .nav-link.active,
nav.navbar .nav-link:hover {
	background-color: var(--main-color);
	color: #fff !important;
}

nav.navbar .dropdown-item.active,
nav.navbar .dropdown-item:active {
	background-color: var(--main-color);
	color: #fff;
}

nav.navbar .ham-svg {
	cursor: pointer;
	transition: transform 400ms;
	user-select: none;
}

nav.navbar .ham-svg.active {
	transform: rotate(45deg);
}

nav.navbar .ham-svg .line {
	fill: none;
	transition: stroke-dasharray 400ms, stroke-dashoffset 400ms;
	stroke: var(--main-color);
	stroke-width: 5.5;
	stroke-linecap: round;
}

nav.navbar .ham-svg.ham-8 .top {
	stroke-dasharray: 40 160;
}

nav.navbar .ham-svg.ham-8 .middle {
	stroke-dasharray: 40 142;
	transform-origin: 50%;
	transition: transform 400ms;
}

nav.navbar .ham-svg.ham-8 .bottom {
	stroke-dasharray: 40 85;
	transform-origin: 50%;
	transition: transform 400ms, stroke-dashoffset 400ms;
}

nav.navbar .ham-svg.ham-8.active .top {
	stroke-dashoffset: -64px;
}

nav.navbar .ham-svg.ham-8.active .middle {
	transform: rotate(90deg);
}

nav.navbar .ham-svg.ham-8.active .bottom {
	stroke-dashoffset: -64px;
}



nav.navbar .dropdown-toggle::after {
	width: 8px;
	height: 8px;
	border-bottom: 2px solid;
	border-right: 2px solid;
	transform: rotate(45deg);
	border-top: 0;
	border-left: 0;
	margin-left: 5px;
	margin-right: 5px;
}

nav.navbar .dropdown-menu::after {
	content: '';
	position: absolute;
	width: 20px;
	height: 20px;
	background: #fff;
	border-left: 1px solid #e6e7eb;
	border-top: 1px solid #e6e7eb;
	top: -8px;
	left: 30px;
	transform: rotate(45deg);
	z-index: -1;
	border-radius: 2px;
}



/* about us */
.el-sisi-section,
.school_history-section {
	position: relative;
}

.el-sisi-section .shapes .town-shape,
.school_history-section .shapes .town-shape {
	position: absolute;
	right: 0;
	bottom: 0;
	opacity: 0.1;
	z-index: -1;
}

.el-sisi-section .video-player,
.school_history-section .video-player {
	position: relative;
}

.el-sisi-section .video-player::before,
.school_history-section .video-player::before,
.our_vision::before {
	content: '';
	height: 100%;
	width: 62%;
	background-color: var(--main-color);
	position: absolute;
	bottom: 0;
	left: 0;
	clip-path: polygon(0 0, 70% 0%, 100% 100%, 0% 100%);
	z-index: -1;
	transition: all 0.3s ease-in-out;
}

.el-sisi-section .video-player .shapes .wave-shape,
.school_history-section .video-player .shapes .wave-shape {
	position: absolute;
	left: 15px;
	bottom: 25px;
}

.el-sisi-section .video-player .shapes .points-shape,
.school_history-section .video-player .shapes .points-shape {
	position: absolute;
	top: -30px;
	left: -30px;
}

/* special header */
.special-header {
	position: relative;
	text-transform: uppercase;
}

.special-header::before {
	content: '';
	bottom: -1px;
	height: 4px;
	left: 0;
	position: absolute;
	width: 65px;
	background-color: var(--green-color);
}

/* hero header */

header.hero-slider-container {
	margin-top: 90px;
}

header.hero-slider-container .single-slide {
	height: calc(100vh - 90px);
	width: 100%;
	position: relative;
	z-index: 1;
}

header.hero-slider-container .single-slide::before {
	content: '';
	display: block;
	background-color: #0000002e;
	width: 100%;
	position: absolute;
	height: 100%;
	z-index: -1;
}

header.hero-slider-container .single-slide .header-title {
	text-transform: uppercase;
	font-weight: 600;
	background-color: rgba(var(--main-color-rgb), 0.5);
	padding: 5px 10px;
	border-left: 5px solid var(--main-color);
	display: inline-block;
}

header.hero-slider-container .single-slide .header-subtitle {
	text-transform: uppercase;
	background: rgba(var(--other-color-rgb), 0.4);
	padding: 10px;
	display: inline-block;
}

/* school languages */
.school-languages .language-item {
	position: relative;
	background-color: var(--main-color);
	overflow: hidden;
}

.school-languages .language-item:after {
	content: '';
	display: block;
	background-color: inherit;
	opacity: 0.9;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	transform: scale(2) translateX(-75%) translateY(-75%) translateZ(0) rotate(-28deg);
	transition: transform 3s cubic-bezier(0.23, 1, 0.32, 1);
}

.school-languages .language-item:hover:after {
	transform: scale(2) translateX(0%) translateY(0%) translateZ(0) rotate(-28deg);
}

.school-languages .language-item:hover .language-image {
	transform: scale(1.2) translateZ(0);
}

.school-languages .language-item:hover .language-info {
	opacity: 1;
	transform: translateY(0);
}

.school-languages .language-image {
	height: auto;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	transform: translateZ(0);
	transition: transform 750ms cubic-bezier(0.23, 1, 0.32, 1);
}

.school-languages .language-image::before {
	content: '';
	display: block;
	height: 300px;
	overflow: hidden;
}

.school-languages .language-image img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 300px;
	max-width: 100%;
	object-fit: cover;
	line-height: 0;
}

.school-languages .language-info {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	opacity: 0;
	text-align: center;
	z-index: 1;
	color: #ffffff;
	transition: opacity 500ms cubic-bezier(0.23, 1, 0.32, 1),
		transform 500ms cubic-bezier(0.23, 1, 0.32, 1);
	transition-delay: 300ms;
	transform: translateY(-20%);
}

.school-languages .language-wrapper {
	width: 100%;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}

.school-languages .language-title {
	font-weight: normal;
	font-style: 16px;
	padding: 0 15px;
	margin: 5px 0 0 0;
}

.school-languages .language-link {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 2;
	line-height: 0;
	overflow: hidden;
	text-indent: -9999px;
}

/* feature products */
.honor-board-section .single-slide .image {
	position: relative;
	z-index: 1;
	display: block;
}

.honor-board-section .single-slide .image::before {
	content: '';
	height: 100%;
	position: absolute;
	transition: 0.4s;
	width: 100%;
	background-image: -webkit-linear-gradient(bottom,
			rgba(var(--main-color-rgb), 0.7) 20%,
			transparent);
	opacity: 0;
}

.honor-board-section .single-slide:hover .image::before {
	opacity: 0.8;
}

.honor-board-section .single-slide:hover .honor-title {
	opacity: 1;
}

.honor-board-section .single-slide .image img {
	width: 100%;
	height: 300px;
	object-fit: cover;
}

.honor-board-section .single-slide .honor-title {
	position: absolute;
	width: 100%;
	z-index: 3;
	bottom: 15px;
	left: 0;
	text-align: center;
	font-size: 2rem;
	color: #fff;
	opacity: 0;
}

.honor-board-section .slider__arrow.slider__arrow--next.glide__arrow.glide__arrow--next {
	right: 0;
}

.honor-board-section .slider__arrow.slider__arrow--next.glide__arrow.glide__arrow--next i {
	position: relative;
	top: -2px;
	left: 2px;
}

.honor-board-section .slider__arrow.slider__arrow--prev.glide__arrow.glide__arrow--prev i {
	position: relative;
	top: -2px;
	right: 2px;
}

.honor-board-section .glide__arrow {
	border-radius: 50%;
	background-color: var(--main-color);
	border-color: var(--main-color);
	padding: 0;
	width: 50px;
	height: 50px;
	font-size: 20px;
	line-height: 48px;
	color: #fff;
}

.honor-board-section .glide__arrow:hover {
	opacity: 0.8;
}

/* events-section */

.events-section .single-event {
	border-left: 3px solid var(--main-color);
}

.events-section .single-event .event-image img {
	width: 120px;
	height: 120px;
	object-fit: cover;
}

/* news */

.news-section .single-feed .img img {
	height: 250px;
	width: 100%;
	object-fit: cover;
}

.news-section .single-feed .wrapper {
	border-bottom: 4px solid var(--main-color);
	background-color: #fff;
}

/* latest news */

.latest-news-section .single-feed .img {
	position: relative;
	overflow: hidden;
}

.latest-news-section .single-feed .img img {
	transition: 0.4s;
}

.latest-news-section .single-feed:hover .img img {
	transform: scale(1.4) rotate(15deg);
}

/* partners */

.our-partners-section .single-slide {
	position: relative;
	overflow: hidden;
}

.our-partners-section .single-slide .images-shapes img {
	position: absolute;
}

.our-partners-section .single-slide .images-shapes img.rounded-shape {
	width: 50px;
	height: 50px;
	transform: rotate(180deg);
	top: 0;
	left: 0;
}

.our-partners-section .single-slide .images-shapes img.website-logo {
	width: 100px;
	height: 50px;
	right: 0;
	bottom: 0;
	opacity: 0.2;
	object-fit: contain;
}

.our-partners-section .single-slide .img-container img {
	width: 180px;
	height: 180px;
	object-fit: cover;
}

.our-team .owl-item {
	padding: 10px;
}

/* footer styles */
footer.footer {
	color: #fff;
	background: var(--main-color);
	position: relative;
	z-index: 1;
	overflow: hidden;
}

footer.footer .shapes img.hex-shape {
	position: absolute;
	z-index: -1;
	width: 186px;
	bottom: 0;
	transform: rotate(-100deg);
	opacity: 0.5;
	right: -6px;
}

footer.footer .widget a {
	color: #fff;
	transition: 0.5s;
	text-decoration: none;
}

footer.footer .widget a:hover {
	color: rgb(187, 185, 185);
}

footer.footer .widget .widget-link {
	position: relative;
}

footer.footer .widget .widget-link:hover:before {
	opacity: 0.5;
}

footer.footer .widget .widget-link::before {
	position: absolute;
	content: '\f292';
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	color: #fff;
	left: -17px;
	opacity: 0;
}

footer ul.footer-social-media li a {
	width: 40px;
	height: 40px;
	display: inline-block;
	background-color: #fff;
	border: 1px solid #fff;
	color: var(--main-color);
	text-align: center;
	line-height: 40px;
	font-size: 20px;
	border-radius: 50%;
	transition: 0.5s;
}

footer ul.footer-social-media li a:hover {
	color: #fff;
	background-color: var(--main-color);
}

/* about us */

.banner,.maps_banner,.contactUs_banner,.gallery_banner {
	background-image: url(/images/background/1977499365REM_00671.jpg);
	width: 100%;
	height: 500px;
	position: relative;
	display: flex;
	align-items: center;
}

.banner_overlay,.achievements_banner_overlay ,.maps_banner_overlay,.contact_banner_overlay,.gallery_banner_overlay{
	background-color: #000;
	opacity: .4;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
}
.banner h2 ,.achievements_banner h2,.maps_banner h2,.contactUs_banner h2  ,.gallery_banner h2{
	position: relative;
	color: #FFF;
	font-weight: 700;
	text-transform: uppercase;
	font-size: 80px;
	z-index: 8;

}

.school_vision .our_vision,
.school_vision .our_mission,
.school_vision .why_mes,
.school_vision .our_value {
	position: relative;
	border: 1px solid #CCC;
	padding: 28px;
	background: #FFF;
	border-radius: 1px 35px 1px 20px;
	margin: 46px 43px;
}

.our_vision::before,
.our_mission::before,
.why_mes::before,
.our_value::before {
	content: '';
	height: 117%;
	width: 62%;
	background-color: var(--main-color);
	position: absolute;
	bottom: -29px;
	left: -28px;
	clip-path: polygon(0 0, 70% 0%, 100% 100%, 0% 100%);
	z-index: -1;
	transition: all 0.3s ease-in-out;
}

.school_vision .our_vision::after ,
.school_vision .our_mission::after,
.school_vision .why_mes::after,
.school_vision .our_value::after{
	content: "";
	background-color: var(--main-color);
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: 999;
	border-radius: 1px 35px 1px 20px;
	opacity: .3;
	width: 0;
	height: 0;
	transition: all .5s ease-in-out;
}

.school_vision .our_vision:hover::after,
.school_vision .our_mission:hover:after ,
.school_vision .why_mes:hover:after,
.school_vision .our_value:hover:after{
	width: 100%;
	height: 100%;
	transition: all .5s ease-in-out;
}
/* achievements */
.achievements_banner{
	background-image: url(/images/background/Our-Achievements.jpg);
	width: 100%;
	height: 500px;
	position: relative;
	display: flex;
	align-items: center;

}
.achievements_box {
	position: relative;
}
.achievements_title {
    padding: 20px;
    text-align: center;
    border: 1px solid #ccc;
    margin: 20px 0;
    background-color: var(--main-color);
    color: #FFF;
   
}
.achievements_item {
	margin: 20px;
}
.center-line {
	height: 100%;
     width: 4px;
	background-color: var(--main-color);
	position: absolute;
	top: 0;
	left: 50%;
}
.center-line::after{
	content: "";
	width: 20px;
	height: 20px;
	position: absolute;
	top: -15px;
    left: -8px;
	background-color: #FFF;
	border: 4px solid var(--main-color);
	border-radius: 50%
}
.achievements_title_left {
	border-radius: 1px 51px 1px 15px;
}
.achievements_title_right{
	border-radius: 51px 1px 15px 1px;
}
.center-line::before{
	content: "";
	width: 20px;
	height: 20px;
	position: absolute;
	bottom: -15px;
    left: -8px;
	background-color: #FFF;
	border: 4px solid var(--main-color);
	border-radius: 50%
}
.achievements_content {
	background-color: #ffffff;
	padding: 30px;
	position: relative;
}
.achievements_content::before{
	content: "";
	background-color: var(--main-color);
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: 999;
	border-radius: 1px 35px 1px 20px;
	opacity: .3;
	width: 0;
	height: 0;
	transition: all .5s ease-in-out;
}

.achievements_content:hover:before {
	width: 100%;
	height: 100%;

}
.achievements_content.right::after{
	content: "";
	position: absolute;
	background-color: var(--main-color);
	width: 90px;
	height: 90px;
	clip-path: polygon(72% 54%, 100% 36%, 100% 70%);
	top: 0;
	left: -92px;
}
.achievements_content.left::after{
	content: "";
	position: absolute;
	background-color: var(--main-color);
	width: 90px;
	height: 90px;
	clip-path: polygon(30% 53%, 0 36%, 0 70%);
    top: 1.5px;
    right: -94px;
}
.img-wrapper{
	position: relative;
	overflow: hidden;
}

.img-wrapper::after{
	content: "";
	position: absolute;
	width: 0;
	height: 0;
	top: 0;
	left: 0;
	z-index: 999;
	opacity: .3;
	background-color: var(--main-color);
	transform: translate(-50%, 0) skew(-35deg);
	transition: all .5s ease-in-out;
}
.img-wrapper::before{
	content: "";
	position: absolute;
	width: 0;
	height: 0;
	bottom: 0;
	right: 0;
	z-index: 999;
	opacity: .3;
	background-color: var(--main-color);
	transform: translate(50%,0) skew(145deg);
	transition: all .5s ease-in-out;
}
.img-wrapper:hover:after{
	width: 100%;
    height: 100%;
	transition: all .5s ease-in-out;
}
.img-wrapper:hover:before{
	width: 100%;
    height: 100%;
	transition: all .5s ease-in-out;
}
.loginbutton{
	color: #FFF;
    display: flex;
    justify-content: flex-end;
}
.nav_top{
	position: absolute;
    top: 0;
    z-index: 9999;
    background: var(--main-color);
    width: 100%;
    margin-bottom: 13px;
    /*padding: 9px 0;*/
    height: 40px;
}
.login_section {
	position: relative;
    overflow: hidden;
    z-index: 1;
}
.login_section .shape img {
    position: absolute;
    z-index: -1;
    max-width: 100%;
    left: 0;
    bottom: 0;
}
@media (max-width: 991px) {
	nav.navbar .nav-item {
		margin: 5px 0;
	}

	nav.navbar .navbar-collapse {
		background-color: #f8f9fa;
		border: 1px solid #dddd;
	}

	nav.navbar .navbar-collapse .navbar-nav {
		padding: 20px 30px;
	}

	nav.navbar .navbar-collapse .navbar-nav .nav-item {
		transition: 0.5s;
	}
	.banner h2, .achievements_banner h2, .maps_banner h2, .contactUs_banner h2, .gallery_banner h2{
		font-size: 54px;
	}
}

@media (min-width: 991px) {
	nav.navbar .nav-item {
		margin: 0 5px;
	}
}

/* single school */

.bg-green {
	background-color: var(--green-color);
}

.single-school-banner {
	height: 300px;
	margin-top: 90px;
	display: flex;
	align-items: center;
	z-index: 1;
	position: relative;
}

.single-school-banner:before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: #00000069;
	z-index: -1;
}

.rainbow-border {
	background: linear-gradient(
		to right,
		#74cee4 0%,
		#66ce9c 16%,
		#edbf47 32%,
		#ec774b 49%,
		#74cee4 65%,
		#66ce9c 83%,
		#edbf47 100%
	);
	padding: 2px 0;
}

.school-curriculum-section .school-curriculum-btn.active {
	background-color: var(--green-color);
	border-color: var(--green-color);
	border-right: 6px solid var(--green-color);
	border-left: 6px solid var(--other-color);
}

.contact-us-section {
	position: relative;
	overflow: hidden;
	z-index: 1;
}
.contact-us-section .shape img {
	position: absolute;
	z-index: -1;
	max-width: 100%;
	left: 0;
	bottom: 0;
}
.contact-us-section .contact-us-desc .single-desc {
	display: flex;
	align-items: center;
	margin-bottom: 30px;
}
.contact-us-section .contact-us-desc .single-desc .info {
	flex-grow: 1;
}
.contact-us-section .contact-us-desc .single-desc .icon {
	width: 50px;
	height: 50px;
	line-height: 50px;
	color: #fff;
	font-size: 22px;
	border-radius: 50%;
	text-align: center;
	background-color: var(--main-color);
}

.custom-form-input {
	width: 100%;
	height: 52px;
	background-color: #ffffff;
	outline: none;
	border: 0;
	padding-left: 20px;
	padding-right: 20px;
	color: #333;
	transition: 0.3s;
	line-height: 52px;
	border-bottom: solid 2px var(--main-color);
	box-shadow: none;
}

.custom-form-input .current {
	color: #868383;
}
textarea.custom-form-input {
	height: auto;
	padding-top: 10px;
}

select.custom-form-input {
	border-radius: 0;
}
input[type='file'].custom-form-input {
	color: #868383;
}
input[type='file'].custom-form-input::file-selector-button {
	display: none;
}

.fc .fc-button-primary {
	background-color: var(--main-color);
	border-color: var(--main-color);
}

.fc .fc-button-primary:hover {
	background-color: var(--green-color);
	border-color: var(--green-color);
}

.facility-section .single-facility .facility-image{
	width: 100%;
	height: 300px;
	-o-object-fit: cover;
	   object-fit: cover;
}


.moved-label {
  position: relative;
  font-size: 14px;
  padding-top: 20px;
}
.moved-label input {
  border: none;
  -webkit-appearance: none;
  -ms-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  background-color: #f2f2f2;
  padding: 12px;
  border-radius: 3px;
  width: 250px;
  font-size: 14px;
}
.moved-label .placeholder {
  position: absolute;
  left: 12px;
  top: calc(50% + 10px);
  transform: translateY(-50%);
  color: #aaa;
  transition: top 0.3s ease-in-out, font-size 0.3s ease-in-out, color 0.3s ease-in-out;
}
.moved-label input:valid + .placeholder,
.moved-label input:focus + .placeholder {
  top: 10px;
  font-size: 12px;
  color: #aaa;
}

label.moved-checkbox {
  font-size: 0.8rem;
  color: #9e9e9e;
}
label.moved-checkbox input[type=checkbox] {
  box-sizing: border-box;
  padding: 0;
}
label.moved-checkbox input[type=checkbox] + span {
  position: relative;
  padding-left: 35px;
  cursor: pointer;
  display: inline-block;
  height: 25px;
  line-height: 25px;
  font-size: 1rem;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
label.moved-checkbox input[type=checkbox]:not(:checked) {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
label.moved-checkbox input[type=checkbox]:checked {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
label.moved-checkbox input[type=checkbox]:checked + span::before {
  top: -4px;
  left: -5px;
  width: 12px;
  height: 22px;
  border: 2px solid transparent;
  border-bottom-color: var(--green-color);
  border-right-color: var(--green-color);
  transform: rotate(40deg);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform-origin: 100% 100%;
}
label.moved-checkbox input[type=checkbox] + span::before,
label.moved-checkbox input[type=checkbox] + span::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 18px;
  border-radius: 3px;
  height: 18px;
  z-index: 0;
  border: 2px solid #5a5a5a;
  margin-top: 3px;
  transition: 0.2s;
}
label.moved-checkbox input[type=checkbox] + span::after {
  transform: scale(0);
}


.input-table{
    border: 0;
    outline: 0;
    width: 100%;
    font-size: 17px;
    background: transparent;
}

input[type='file'].input-table {
	color: #868383;
}

input[type='file'].input-table::file-selector-button {
	display: none;
}
.process-card {
    display:flex;
    align-items: start;
}
.process-card .step {
    margin-right: 20px;
    font-size: 45px;
    margin-bottom: 24px;
    color: var(--main-color);
    font-weight: bold;
}
.proccess-card-title {
    font-size: 18px;
    text-transform: none;
    color: #192f59;
    font-weight: 700;
}
.process-card-content {
    padding-top: 10px;
}
#application-process-title {
    font-size: 27px;
    font-weight: 700;
    letter-spacing: 0px;
    text-transform: none;
    color: #001d60;
    padding-bottom: 45px;
}
