﻿.Selectable {
  -webkit-touch-callout: initial;
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text;
}
.UnSelectable {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.HorizontalScrolling {
  -webkit-overflow-scrolling: touch;
  overflow-y: auto;
  overflow-x: hidden;
}
@keyframes FadeIn {
  from {
    opacity: 0.3;
  }
  to {
    opacity: 1;
  }
}
@keyframes FadeInLeft {
  from {
    opacity: 0.1;
    -webkit-transform: translateX(20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
}
@keyframes FadeInTop {
  from {
    opacity: 0.1;
    -webkit-transform: translateY(10px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}
@keyframes AppearHeight {
  from {
    -webkit-transform: translateY(20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}
.TransitionFaster {
  -webkit-transition: all 0.1s ease;
  -moz-transition: all 0.1s ease;
  -o-transition: all 0.1s ease;
  transition: all 0.1s ease;
}
.TransitionFast {
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.TransitionMedium {
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.TransitionSlow {
  -webkit-transition: all 0.8s ease;
  -moz-transition: all 0.8s ease;
  -o-transition: all 0.8s ease;
  transition: all 0.8s ease;
}
:root {
  --redColor: #A41733;
  --whiteColor: #f5f5f5;
  --yellowColor: #ffd600;
  --orangeColor: #d55a29;
  --blackColor: #231f20;
  --grayColor: #cacbcc;
  --lightGray: #d5d6d6;
  --mediumGray: #a69981;
  --blueColor: #43b6ee;
  --shadow: 1px 0 10px rgba(0, 0, 0, 0.3);
}


/*Montserrat-Black */
@font-face {
    font-family: 'GEFLOWBLACK';
    src: url('/AR/assets/fonts/GE Flow Regular.otf');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}
/*Montserrat-Bold */
@font-face {
    font-family: 'GEFlowBold';
    src: url('/AR/assets/fonts/GE Flow Regular.otf');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}
/*Montserrat-ExtraBold */
@font-face {
    font-family: 'GEFlowExtraBold';
    src: url('/AR/assets/fonts/GE Flow Regular.otf');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}
/*Montserrat-Light */
@font-face {
    font-family: 'GEFlowLight';
    src: url('/AR/assets/fonts/GE Flow Regular.otf');
    font-weight: 900;
    font-style: italic;
    font-display: swap;
}
/*Montserrat-Medium */
@font-face {
    font-family: 'GEFlowMedium';
    src: url('/AR/assets/fonts/GE Flow Regular.otf');
    font-weight: bold;
    font-style: italic;
    font-display: swap;
}
/*Montserrat-Regular */
@font-face {
    font-family: 'GE-Flow-Regular';
    src: url('/AR/assets/fonts/GE Flow Regular.otf');
    font-weight: 800;
    font-style: italic;
    font-display: swap;
}
/*Montserrat-SemiBold */
@font-face {
    font-family: 'GEFlowSemibold';
    src: url('/AR/assets/fonts/GE Flow Regular.otf');
    font-weight: bold;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Bellarina';
    src: url('/AR/assets/fonts/GE Flow Regular.otf');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}




.ColorItem {
  max-width: 150px;
  /*margin-bottom: 20px;*/
  /*box-shadow: var(--shadow);*/
  position: relative;
  width: 100%;
  height: 100px;
  cursor: pointer;
}
.ColorItem-content {
  padding: 5px;
  position: absolute;
  width: 100%;
  bottom: 0;
  height: 40px;
  background-color: #f6f6f6;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.ColorItem-content h4 {
  margin: 0;
  font-weight: 800;
  font-family: "MontserratBold";
  transition: all 0.5s ease-in-out;
}
.ColorItem-content span {
  font-size: 0.7rem;
  display: block;
  font-family: "MontserratBold";
  transition: all 0.5s ease-in-out;
  color: #626366;
}
.ColorItem-content span:last-child {
  font-family: "MontserratMedium";
}
.ColorItem-image {
  /*height: 50px;*/
  height: 100%;
  transition: all 0.5s ease-in-out;
}
.ColorItem:hover {
  /*.colors-item-image {
            height: 100%;
        }*/
}
.ColorItem:hover .colors-item-content {
  /* color: var(--whiteColor);
            mix-blend-mode: difference;*/
}
.ColorItem:hover .colors-item-content h4 {
  font-size: 1rem;
}
.ColorItem:hover .colors-item-content span {
  /*font-size: .7em;*/
}
.ButtonTheme a {
  /*font-size: 1.6em;
		border: 3px solid var(--redColor);
		color: var(--redColor);
		padding: 3px 15px 6px 15px;
		border-radius: 30px;
		font-weight: 700;
		font-family: "Montserratlight";

		&:hover {
			background-color: var(--redColor);
			color: var(--whiteColor);
		}*/
  /*position: relative;
		display: flex;
		justify-content: center;
		max-width: 150px;
		width: 100%;
		padding: 5px 10px;
		font-size: 1.2rem;
		border: 2px solid var(--redColor);
		color: var(--redColor);
		border-radius: 20px;
		font-weight: 700;
		font-family: "Montserratlight";
		transition: color .3s ease-in-out;
		margin: 0 auto;*/
  position: relative;
  display: inline-block;
  width: 100%;
  height: auto;
  background-color: transparent;
  border: none;
  cursor: pointer;
  margin: 0px 25px 15px;
  max-width: 150px;
  outline: none;
}
.ButtonTheme a span {
  color: var(--redColor);
  border: 1px solid var(--redColor);
  transition: 0.2s;
  width: 100%;
  padding: 10px;
  display: flex;
  justify-content: center;
  border-radius: 10px;
  contain: paint;
}
.ButtonTheme a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 0%;
  width: 100%;
  background-color: var(--redColor);
  transition: height 0.3s ease-out;
  border-radius: 10px;
}
.ButtonTheme a:hover span {
  color: var(--whiteColor);
}
.ButtonTheme a:hover::before {
  height: 100%;
}
:active,
:hover,
:focus {
  outline: 0 !important;
  outline-offset: 0;
}
.NavigationLink,
.NavigationLink:visited,
.NavigationLink:focus,
.NavigationLink:active,
.NavigationLink:hover {
  display: block;
  color: var(--blackColor);
  padding: 5px 10px;
  position: relative;
  border-radius: 10px 0 0 0;
  transition: background-color 300ms, color 400ms;
}
.NavigationLink:hover,
.NavigationLink:visited:hover,
.NavigationLink:focus:hover,
.NavigationLink:active:hover,
.NavigationLink:hover:hover {
  background-color: var(--redColor);
  color: var(--whiteColor);
}
.NavigationLink._active,
.NavigationLink:visited._active,
.NavigationLink:focus._active,
.NavigationLink:active._active,
.NavigationLink:hover._active {
  background-color: var(--redColor);
  color: var(--whiteColor);
  cursor: default !important;
}
.NavigationLink._active::after,
.NavigationLink:visited._active::after,
.NavigationLink:focus._active::after,
.NavigationLink:active._active::after,
.NavigationLink:hover._active::after {
  content: '';
  margin-top: 1px;
  height: 2px;
  width: 100%;
  left: 0;
  background-color: var(--redColor);
  position: absolute;
  top: 100%;
}
 main .hero > div {
  margin: 0;
  padding: 0;
  max-width: 100%;
}
 main .hero > div img {
  width: 100%;
  object-fit: cover;
  object-position: center;
  max-height: 70vh;
}
 main .info > div {
  display: flex;
  flex-direction: column;
  padding-top: 50px;
  padding-bottom: 100px;
  justify-content: center;
  align-items: center;
}
 main .info-item {
  max-width: 330px;
  margin-bottom: 50px;
}
 main .info-item h3 {
  font-family: "GEFlowSemibold";
  border-bottom: 1px solid var(--blackColor);
  padding-bottom: 10px;
  line-height: 1.5em;
}
 main .info-item p {
  padding-top: 10px;
  font-weight: 800;
  font-size: 0.8em;
  font-family: "GEFlowSemibold";
  text-align:right;
}
 main .form {
  z-index: 1;
  background-color: var(--blackColor);
  /* &-select {
                position: relative;
                z-index: 1;

                select {
                    background-color: transparent;
                    background-image: url('/img/careers/12.png');
                    background-position: right 50px;
                    background-size: 20px;
                    background-repeat: no-repeat;
                    font-family: "MontserratSemiBold";
                    color: white;
                    padding: 10px;
                    width: 100%;
                    color: var(--grayColor);
                    font-size: 1em;
                    font-variant: small-caps;
                    cursor: pointer;
                    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
                    -webkit-appearance: button;
                    appearance: none;
                    outline: none;
                    border-radius: 30px;
                    border: 3px solid var(--grayColor);


                    option:not(:first-child) {
                        background-color: var(--grayColor);
                        color: var(--whiteColor);
                        text-align: center;
                    }
                }

                &::before {
                    content: '';
                    position: absolute;
                    background-image: url('/img/contact/down.svg');
                    background-repeat: no-repeat;
                    background-position: center;
                    background-size: 10px;
                    top: 0px;
                    right: 0;
                    width: 8%;
                    height: 100%;
                    background-color: var(--grayColor);
                    border-radius: 0px 30px 30px 0px;
                    cursor: pointer;
                    z-index: -1;
                }
            }*/
}
main .form > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 100px;
}
main .form-rightside {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  justify-content: start;
  width: 100%;
  position: relative;
}
 main .form-image img {
  max-width: 500px;
  width: 100%;
}
 main .form-title {
  color: var(--yellowColor);
  margin-bottom: 20px;
}
 main .form-title h2 {
  font-size: 2.2em !important;
}
 main .form-seperator {
  justify-content: end;
  margin-bottom: 50px;
  width: 100%;
  display: flex;
  align-content: center;
  position: relative;
}
 main .form-seperator span:first-child {
  background: var(--blackColor);
  height: 2px;
  width: 100%;
}
 main .form-seperator span:last-child {
  width: 60px;
  height: 14px;
  position: absolute;
  top: 50%;
  right: 20%;
  transform: translateY(-50%);
  z-index: 1;
  background-color: var(--yellowColor);
  border-radius: 0;
}
 main .form-seperator span:first-child {
  background: var(--whiteColor);
}
 main .form input[type=text],
 main .form input[type=file],
 main .form input[type=date],
 main .form textarea {
  border-radius: 20px 0 0 0;
  background-color: transparent;
  border: 3px solid var(--grayColor);
  color: var(--grayColor);
  margin-bottom: 20px;
  padding: 10px 20px;
  width: 100%;
  height: 50px;
  font-family: "MontserratSemiBold";
}
 main .form input[type=date] {
  cursor: pointer;
}
 main .form input[type=date]::-webkit-calendar-picker-indicator {
  cursor: pointer;
  border-radius: 4px;
  margin-right: 2px;
  opacity: 0.6;
  filter: invert(0.8);
}
 main .form label {
  color: var(--whiteColor);
  font-family: "MontserratLight";
  padding-left: 15px;
  padding-bottom: 5px;
}
 main .form label span {
  font-size: 0.8em;
}
 main .form-inputs {
  flex-direction: column;
  display: flex;
  height: 550px;
  transition: opacity 1s ease-in-out, height 0.5s 0.5s ease-in-out;
  overflow: hidden;
}
 main .form-inputs .cv > div {
  position: relative;
  width: 100%;
  height: 50px;
}
 main .form-inputs .cv > div label {
  position: absolute;
  left: 0px;
  top: 0px;
  cursor: pointer;
  background: var(--redColor);
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 15px 0 0 0;
  padding: 10px !important;
  transition: all 0.5s ease-in-out;
}
 main .form-inputs .cv > div label:hover {
  opacity: 0.8;
}
 main .form-inputs .cv > div input {
  padding-left: 125px;
}
 main .form-inputs-input {
  display: flex;
  flex-direction: column;
  align-items: start;
  width: min(90%, 500px);
  margin: 0 auto;
  /*    #cv {
                        &::before {
                            cursor: pointer;
                            text-shadow: 1px 1px #fff;
                            font-weight: 700;
                            font-size: 10pt;
                            display: inline-block;
                            background: linear-gradient(top, #f9f9f9, #e3e3e3);
                            border: 1px solid #999;
                            border-radius: 3px;
                            border: none;
                        }
                    }*/
}
 main .form-button {
  width: 79%;
  overflow: hidden;
  text-align: end;
  transition: all 0.5s ease-in-out;
}
 main .form-button button {
  padding: 10px 50px;
  border: 2px solid var(--lightGray);
  border-radius: 20px 0 0 0;
  background-color: transparent;
  color: var(--lightGray);
  font-family: "MontserratLight";
  cursor: pointer;
  margin-top: 30px;
  transition: all 0.5s ease-in-out;
  width: 160px;
}
 main .form-button button:hover {
  background-color: var(--lightGray);
  color: var(--whiteColor);
}
 .form-button button span:first-child {
  display: block;
}
 main .form-button button span:last-child {
  display: none;
}
 main .form-button button span:last-child svg {
  width: 10px;
  fill: var(--whiteColor);
}
 .form-button:has(._loading) button {
  pointer-events: none;
}
 .form-button:has(._loading) button span:first-child {
  display: none;
}
 .form-button:has(._loading) button span:last-child {
  display: block;
}
 .form input._valid {
  border-color: var(--redColor);
}
 .form .cv > div:has(._valid) {
  border-color: var(--redColor);
}
 main .form-message {
  margin-top: 30px;
  text-align: center;
  color: var(--whiteColor);
  font-size: 0.9em;
  font-family: "MontserratSemiBold";
  position: absolute;
  bottom: -60px;
  right: 0;
  width: 100%;
  opacity: 0;
}
 main .form-message p {
  display: none;
  display: block;
  font-size: 1rem;
  color: white;
  text-align: center;
  opacity: 1;
}
 main .form-done {
  opacity: 0;
  margin: 0 auto;
  width: fit-content;
  transition: all 1s 1s ease-in-out;
}
 main .form-done svg {
  width: 0;
  transition: all 1s 1s ease-in-out;
}
 main .form-done svg .--svg-fill-background {
  fill: var(--redColor);
}
 main .form-done svg .--svg-fill {
  fill: var(--whiteColor);
}
 main .form-done svg .--svg-fill1 {
  fill: var(--lightGray);
}
 main .form-done svg .--svg-fill2 {
  fill: var(--grayColor);
}
 .form ._done .form-inputs {
  opacity: 0;
  height: 0;
}
 main .form ._done .form-button {
  opacity: 0;
}
 main .form ._done .form-done {
  opacity: 1;
}
 main .form ._done .form-done svg {
  width: 100px;
}
 main .form ._done .form-message {
  bottom: -25%;
}
 main .meeting > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 100px;
}
 main .meeting-detials {
  border-radius: 50px;
}
 main .meeting-detials p {
  background-color: var(--whiteColor);
  padding: 10px 20px 10px 15px;
  font-size: 0.8em;
}
 main .meeting-detials img {
  width: 100%;
}
 main .meeting-leftside {
  max-width: 500px;
  margin-bottom: 20px;
}
 main .meeting-rightside {
  max-width: 400px;
}
 .meeting-rightside .meeting-detials:first-child {
  margin-bottom: 20px;
}
@media only screen and (min-width: 800px) {
   main .form > div {
    flex-direction: row;
  }
  main .form-leftside {
    width: 40%;
    margin-right: 100px;
  }
   main .form-rightside {
    margin-top: 0px;
    width: 50%;
  }
   main .meeting > div {
    flex-direction: row;
  }
   main .meeting-leftside {
    width: 60%;
    margin-right: 30px;
    margin-bottom: 0px;
  }
   main .meeting-rightside {
    width: 40%;
  }
}
@media only screen and (min-width: 1000px) {
   main .info > div {
    flex-direction: row;
    align-items: stretch;
  }
    main .info-item {
        width: 30%;
        margin-bottom: 0px;
        /* margin-right: 50px;*/
        margin-left: 50px;
        margin-right: initial;
    }
        main .info-item:last-child {
            /*margin-right: 0;*/
            margin-left: 0;
        }
}
html[lang="ar"]  main .form .cv > div input {
  text-align: left;
  padding-left: 65px!important;
}




.loading-button {
    padding: 10px 50px;
    border: 2px solid var(--lightGray);
    border-radius: 20px 0 0 0;
    background-color: transparent;
    color: var(--lightGray);
    font-family: "MontserratLight";
    cursor: pointer;
    margin-top: 30px;
    transition: all .5s ease-in-out;
    width: 160px;
}




.fake-upload-btn {
    display: none;
}

/* Success Container Styles */
.success-container {
    text-align: center;
    padding: 40px 20px;
    animation: fadeIn 0.5s ease-in;
}

    .success-container .form-done {
        margin-bottom: 30px;
    }

        .success-container .form-done svg {
            width: 100px;
            height: 100px;
            animation: bounceIn 0.8s ease-in;
        }

.success-message h3 {
    color: #28a745;
    font-size: 2rem;
    margin-bottom: 15px;
}

.success-message p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.new-application-btn {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

    .new-application-btn:hover {
        background-color: #0056b3;
    }
html[dir="rtl"] {
    direction: rtl;
}

/* Success Container Styles */
/*.success-container {
    text-align: center;
    padding: 40px 20px;
    animation: fadeIn 0.5s ease-in;
}

    .success-container .form-done {
        margin-bottom: 30px;
    }

        .success-container .form-done svg {
            width: 100px;
            height: 100px;
        }

.success-message h3 {
    color: #28a745;
    font-size: 2rem;
    margin-bottom: 15px;
}

.success-message p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.new-application-btn {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}*/