﻿.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);
}
.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 section:nth-child(2) > div {
  padding-top: 150px !important;
}
 main section > div {
  padding: 30px 10px;
  max-width: 100%;
}
main section > div h1 {
  font-size: 1.8rem !important;
  color: var(--blackColor);
  opacity: 0.8;
}
 main .profile {
  position: fixed;
  z-index: 10;
  top: var(--headerHeight);
  left: 0;
  width: 100%;
  border-bottom: 2px solid var(--grayColor);
  background-color: var(--whiteColor);
}
 main .profile-navigations {
  display: block;
  max-width: 800px;
  margin: auto;
}
 main .profile-navigations ul {
  display: flex;
  justify-content: space-around;
  margin: 0;
  padding: 20px;
  padding-block: 5px;
  align-items: center;
}
 main .profile-navigations ul li {
  list-style: none;
  opacity: 1;
}
main .profile-navigations ul li a {
  transition: all 0.3s ease-in-out;
  border-radius: 10px 0 0 0;
}
 main .profile-navigations ul li a,
 main .profile-navigations ul li a:visited,
 main .profile-navigations ul li a:focus,
 main .profile-navigations ul li a:active,
 main .profile-navigations ul li a:hover {
  display: block;
  color: var(--redColor);
  padding: 5px 10px;
  position: relative;
  font-family: "MontserratBold";
  font-size: 0.5em;
  text-transform: uppercase;
  text-align: center;
}
 main .profile-navigations ul li a:hover,
 main .profile-navigations ul li a:visited:hover,
 main .profile-navigations ul li a:focus:hover,
 main .profile-navigations ul li a:active:hover,
 main .profile-navigations ul li a:hover:hover {
  background-color: var(--redColor);
  color: var(--whiteColor);
}
 main .profile-navigations ul li a._active,
 main .profile-navigations ul li a:visited._active,
 main .profile-navigations ul li a:focus._active,
 main .profile-navigations ul li a:active._active,
 main .profile-navigations ul li a:hover._active {
  background-color: var(--redColor);
  color: var(--whiteColor);
}
 main .hero > div {
  max-width: 100%;
  margin: 0;
  padding: 0;
}
main .hero img {
  width: 100%;
  object-fit: cover;
  object-position: center;
}
 main .ceo > div {
  text-align: justify;
}
 main .ceo > div a,
 main .ceo > div a:visited,
 main .ceo > div a:focus,
 main .ceo > div a:active,
 main .ceo > div a:hover {
  text-decoration: none;
  font-weight: bold;
}
 main .ceo > div a:hover,
 main .ceo > div a:visited:hover,
 main .ceo > div a:focus:hover,
 main .ceo > div a:active:hover,
 main .ceo > div a:hover:hover {
  text-decoration: underline;
}
 main .ceo span,
 main .ceo p {
  line-height: 1.6em;
  font-size: 0.9em;
  color: var(--blackColor);
  font-weight: 700;
}
 main .ceo-image {
  display: flex;
  justify-content: center;
  align-items: center;
}
 main .ceo-image img {
  border-radius: 50%;
  border: 4px solid #f6f6f6;
  max-width: 300px;
}
 main .ceo-msg {
  line-height: 1.4em;
}
 main .ceo-top {
  text-align: left;
}
 main .ceo-top h1 {
  font-size: 2.3em;
  font-family: "MontserratExtraBold";
  color: var(--redColor);
  opacity: 1;
}
 main .ceo-section1,
 main .ceo-section2 {
  margin: 20px 0;
}
 main .ceo-header {
  margin-top: 5px;
}
 main .ceo-header span:first-child {
  font-family: "MontserratBold";
  font-size: 1.1em;
  margin-bottom: 10px;
  display: block;
  text-align: left;
}
 main .ceo-header span:nth-child(2) {
  margin: 20px 0;
  display: block;
  border-bottom: 5px solid #000;
  border-top: 5px solid #000;
  padding: 7px 0;
  line-height: 1.4em;
}
 main .ceo-header-seperator {
  width: 100%;
  display: flex;
  justify-content: start;
  align-content: center;
  position: relative;
  margin-top: 50px;
}
 main .ceo-header-seperator span:nth-child(1) {
  background: var(--blackColor);
  height: 2px;
  width: 100%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
 main .ceo-header-seperator span:nth-child(2) {
  width: 70px;
  height: 14px;
  margin-left: 50px;
  z-index: 1;
  background-color: var(--redColor);
  border-radius: 0;
}
 main .ceo-bottom {
  color: var(--redColor);
}
 main .ceo-bottom-line {
  position: relative;
  text-align: right;
}
main .ceo-bottom-line span {
  display: inline-block;
}
 main .ceo-bottom-line span:nth-child(1) {
  background: var(--blackColor);
  height: 2px;
  width: 80%;
}
 main .ceo-bottom-line span:nth-child(2) {
  width: 50px;
  height: 11px;
  position: absolute;
  top: 40%;
  right: 20%;
  z-index: 1;
  background-color: var(--redColor);
  border-radius: 0;
}
 main .ceo-bottom-line::before {
  content: "\201C";
  font-size: 80px;
  position: absolute;
  top: -15px;
  left: 0;
}
 main .ceo-bottom-text {
  margin: 20px 0;
  font-size: 1.1em;
}
 main .ceo-bottom-text span {
  color: var(--redColor);
  text-align: left;
  line-height: 1.2em;
  position: relative;
}
 main .ceo-bottom-text span::after {
  content: "\201D";
  font-size: 80px;
  position: absolute;
  bottom: -25px;
  right: -40px;
}
 main .ceo-bottom-signiture {
  margin-top: 10px;
}
 main .ceo-bottom-signiture span {
  font-family: "Bellarina";
  font-size: 24px;
  line-height: 1.2em;
  color: var(--redColor);
}
 main .ceo-bottom-signiture span p {
  font-family: "Bellarina";
  color: var(--blackColor);
  font-size: 24px;
}
 main .stack > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
main .stack-leftcomponent,
 main .stack-rightcomponent {
  width: 100%;
}
 main .stack-leftcomponent h1,
 main .stack-rightcomponent h1 {
  margin-bottom: 10px;
}
 main .stack-leftcomponent .stack-content .stack-title h1 {
  text-align: left;
}
 main .stack-leftcomponent .stack-content p {
  text-align: left;
}
 main .stack-image > div {
  text-align: center;
}
 main .stack-image > div img {
  width: 90%;
}
 main .stack-image {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}
 main .stack-image > div {
  position: relative;
  width: 100%;
}
 main .stack-image > div::before,
 main .stack-image > div::after {
  top: 50%;
  transform: translateY(-50%);
}
 main .stack-image > div img {
  max-width: 700px;
  width: 100%;
}
 main .stack._orange .stack-seperator span:last-child {
  background-color: var(--orangeColor) !important;
}
 main .stack._blue .stack-seperator span:last-child {
  background-color: var(--blueColor) !important;
}
 main .stack._red .stack-image._background > div::before,
 main .stack._red .stack-image._background > div::after {
  position: absolute;
  height: 50%;
  content: '';
  background-color: var(--redColor);
  z-index: 1;
}
 main .stack._red .stack-image._background > div::before {
  width: 100%;
  right: 0;
  opacity: 0.4;
}
main .stack._red .stack-image._background > div::after {
  width: 40px;
}
 main .stack._red .stack-seperator span:last-child {
  background-color: var(--redColor) !important;
}
 main .stack._reverse .stack-seperator {
  justify-content: end;
  margin-bottom: 30px;
  width: 100%;
  display: flex;
  align-content: center;
  position: relative;
}
 main .stack._reverse .stack-seperator span:first-child {
  background: var(--blackColor);
  height: 2px;
  width: 100%;
}
 main .stack._reverse .stack-seperator span:last-child {
  width: 60px;
  height: 14px;
  position: absolute;
  top: 50%;
  right: 10%;
  transform: translateY(-50%);
  z-index: 1;
  background-color: var(--blueColor);
  border-radius: 0;
}
 main .stack._reverse .stack-seperator span:last-child {
  left: auto;
}
 main .stack._reverse .stack-image > div::after {
  right: -40px !important;
  left: auto;
}
 main .stack-seperator {
  justify-content: start;
  margin-bottom: 30px;
  width: 100%;
  display: flex;
  align-content: center;
  position: relative;
}
 main .stack-seperator span:nth-child(1) {
  background: var(--blackColor);
  height: 2px;
  width: 100%;
}
 main .stack-seperator span:nth-child(2) {
  width: 60px;
  height: 14px;
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
  z-index: 1;
  background-color: var(--orangeColor);
  border-radius: 0;
}
 main .stack-image > div::after {
  left: -40px;
}
 main .info-seperator {
  justify-content: end;
  margin-bottom: 30px;
  width: 100%;
  display: flex;
  align-content: center;
  position: relative;
}
 main .info-seperator span:first-child {
  background: var(--blackColor);
  height: 2px;
  width: 100%;
}
 main .info-seperator span:last-child {
  width: 100px;
  height: 14px;
  position: absolute;
  top: 50%;
  right: 10%;
  transform: translateY(-50%);
  z-index: 1;
  background-color: var(--orangeColor);
  border-radius: 0;
}
 main .info-list {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
 main .info-list._alpha ol li {
  list-style: lower-alpha;
  font-size: 0.6em;
  padding: 2px;
}
 main .info-list-item {
  padding: 0 10px;
  margin: 20px;
  width: 100%;
}
 main .info-list-item ol li {
  padding: 20px 0;
}
 main .info-content p {
  margin-block: 30px;
  line-height: 1.5em;
  text-align: left;
}
 main .info-content p b {
  font-family: "MontserratBold";
}
 main .info .stack {
  margin-block: 30px;
}
 main .info .stack-leftcomponent p {
  text-align: left;
}
 main .info .slide {
  height: 400px;
}
 main .info-image {
  position: relative;
  max-width: 1300px;
  width: 100%;
  height: auto;
  margin: 30px auto;
}
 main .info-image img {
  object-fit: cover;
  width: 100%;
}
 main .info-image-next,
 main .info-image-prev {
  position: absolute;
  border-radius: 20px 0;
  line-height: 1;
  text-align: center;
  cursor: pointer;
  background-color: var(--redColor);
  color: var(--lightGray);
  opacity: 0.7;
  transition: all 0.6s;
  font-size: 30px;
  transition: all 0.3s ease-in-out;
  z-index: 5;
  bottom: -10%;
  width: 100px;
  height: 30px;
}
 main .info-image-next:hover,
 main .info-image-prev:hover {
  opacity: 1;
}
 main .info-image-prev {
  left: 0;
}
 main .info-image-prev::before {
  content: '<';
}
 main .info-image-next {
  right: 0;
}
 main .info-image-next::before {
  content: '>';
}
main .info-image ul {
  list-style: none;
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  padding: 0;
  overflow: hidden;
}
 main .info-image ul li {
  overflow: hidden;
  position: absolute;
  z-index: 0;
  left: 377px;
  top: 146px;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  border-radius: 20px;
  transform: scale(0.8);
  transition: all 0.5s ease-in-out, transform 1s linear;
  opacity: 0.7;
  top: 0;
  min-height: 300px;
}
 main .info-image ul li img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
 main .info-image ul li.slide {
  left: 120%;
  z-index: 0;
}
 main .info-image ul li._before {
  left: -20%;
  z-index: 1;
}
 main .info-image ul li._active {
  left: 0%;
  transform: scale(1);
  z-index: 2;
  opacity: 1;
}
 main .info-image ul li._after {
  left: 120%;
  z-index: 1;
}
 main .info-content {
  margin-top: 40px;
}
 main .info._blue .info-seperator span:last-child {
  background-color: var(--blueColor) !important;
}
 main .info._red .info-seperator span:last-child {
  background-color: var(--redColor) !important;
}
 main .accreditations-images {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
}
 main .accreditations-images img {
  max-width: 250px;
  margin-bottom: 10px;
}
html[lang="ar"] body > main .ceo-bottom-line::before {
  display: none;
}
html[lang="ar"] body > main .ceo-bottom-text span::after {
  display: none;
}
html[lang="ar"] body > main .info-image-next::before {
  content: "<";
}
html[lang="ar"] body > main .info-image-prev::before {
  content: ">";
}
html[lang="ar"] body > main .info-list-item ol li {
  font-size: 0.7em;
  letter-spacing: 0;
}
@media only screen and (min-width: 800px) {
   main .profile-navigations ul {
    justify-content: space-around;
  }
   main .profile-navigations ul li a,
   main .profile-navigations ul li a:visited,
   main .profile-navigations ul li a:focus,
   main .profile-navigations ul li a:active,
   main .profile-navigations ul li a:hover {
    font-size: 1em;
  }
   main .accreditations-images {
    flex-direction: row;
  }
   main .accreditations-images img {
    max-width: 250px;
    margin-bottom: 0;
  }
   main .info-image {
    width: 100%;
  }
   main .info-image-prev {
    left: -30px;
    bottom: -5%;
  }
   main .info-image-next {
    right: -30px;
    bottom: -5%;
  }
   main .info-image ul li {
    width: 30%;
  }
   main .info-image ul li.slide {
    left: 120%;
  }
   main .info-image ul li._before {
    left: 0;
  }
   main .info-image ul li._active {
    left: 35%;
  }
   main .info-image ul li._after {
    left: 70%;
  }
}
@media only screen and (min-width: 1100px) {
   main section > div {
    max-width: 85%;
  }
  main .ceo > div {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-areas: 'image top top' 'section1 section2 bottom';
    column-gap: 50px;
  }
   main .ceo-image {
    grid-area: image;
  }
   main .ceo-image img {
    min-width: 400px;
    height: 400px;
  }
   main .ceo-top {
    grid-area: top;
    display: flex;
    flex-direction: column;
    justify-content: start;
    padding-right: 30px;
    text-align: left;
  }
   main .ceo-section1 {
    grid-area: section1;
    padding: 40px 30px;
    margin: 0;
  }
   main .ceo-section2 {
    grid-area: section2;
    padding-top: 40px;
    margin: 0;
  }
   main .ceo-bottom {
    grid-area: bottom;
    padding-top: 60px;
  }
   main .ceo-bottom-text {
    position: relative;
    display: inline-block;
    text-align: left;
  }
   main .ceo-bottom-text span::after {
    content: "\201D";
    font-size: 150px;
    position: absolute;
    bottom: -50px;
    right: -40%;
  }
   main .ceo-bottom-signiture span {
    font-size: 24px;
    line-height: 1.2em;
  }
  main .stack > div {
    flex-direction: row;
  }
   main .stack._reverse > div {
    flex-direction: row-reverse;
  }
   main .stack._reverse > div .stack-content {
    padding-left: 80px;
    padding-right: 0;
  }
   main .stack._reverse > div .stack-content p,
   main .stack._reverse > div .stack-content h1 {
    text-align: left;
  }
   main .stack-leftcomponent,
   main .stack-rightcomponent {
    width: 50%;
  }
   main .stack-leftcomponent ul,
   main .stack-rightcomponent ul {
    margin: 0;
  }
   main .stack-image > div img {
    width: 100%;
  }
   main .stack-content {
    padding-right: 80px;
  }
   main .stack-content p,
   main .stack-content h1 {
    text-align: right;
  }
   main .info-image-prev {
    left: -50px;
  }
   main .info-image-next {
    right: -50px;
  }
  html[lang="ar"] body > main .profile-navigations ul li a,
  html[lang="ar"] body > main .profile-navigations ul li a:visited,
  html[lang="ar"] body > main .profile-navigations ul li a:focus,
  html[lang="ar"] body > main .profile-navigations ul li a:active,
  html[lang="ar"] body > main .profile-navigations ul li a:hover {
    font-size: 1.2em;
  }
}
@media only screen and (min-width: 450px) {
   main section > div {
    padding: 50px;
  }
   main section > div h1 {
    font-size: 3.2em !important;
  }
   main .ceo-top h1 {
    font-size: 3.1em;
  }
   main .ceo-header span:first-child {
    font-size: 1.8em;
  }
   main .ceo-bottom-line::before {
    content: "\201C";
    font-size: 150px;
    position: absolute;
    top: -40px;
    left: 0;
  }
   main .ceo-bottom-text {
    font-size: 2.1em;
  }
   main .ceo-bottom-text span::after {
    content: "\201D";
    font-size: 150px;
    position: absolute;
    bottom: -50px;
    right: -80px;
  }
   main .ceo span,
   main .ceo p {
    font-size: 1.3em;
  }
   main .info-list._row {
    flex-direction: row;
    align-items: start;
    justify-content: space-around;
    flex-wrap: wrap;
  }
   main .info-list._row .info-list-item {
    padding: 0;
    max-width: 25% !important;
  }
   main .info-list._column {
    flex-direction: column;
  }
}