﻿.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: "GEFlowBold";
        transition: all 0.5s ease-in-out;
    }
    .ColorItem-content span {
        font-size: 0.7rem;
        display: block;
        font-family: "GEFlowBold";
        transition: all 0.5s ease-in-out;
        color: #626366;
    }
        .ColorItem-content span:last-child {
            font-family: "GEFlowMedium";
        }
.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: "GEFlowLight";

		&: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: "GEFlowLight";
		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%;
}




/*Montserrat-Black */
@font-face {
    font-family: 'MontserratBlack';
    src: url('/AR/assets/fonts/Montserrat-Black.ttf');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}
/*Montserrat-Bold */
@font-face {
    font-family: 'MontserratBold';
    src: url('/AR/assets/fonts/Montserrat-Bold.ttf');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}
/*Montserrat-ExtraBold */
@font-face {
    font-family: 'MontserratExtraBold';
    src: url('/AR/assets/fonts/Montserrat-ExtraBold.ttf');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}
/*Montserrat-Light */
@font-face {
    font-family: 'MontserratLight';
    src: url('/AR/assets/fonts/Montserrat-Light.ttf');
    font-weight: 900;
    font-style: italic;
    font-display: swap;
}
/*Montserrat-Medium */
@font-face {
    font-family: 'MontserratMedium';
    src: url('/AR/assets/fonts/Montserrat-Medium.ttf');
    font-weight: bold;
    font-style: italic;
    font-display: swap;
}
/*Montserrat-Regular */
@font-face {
    font-family: 'MontserratRegular';
    src: url('/AR/assets/fonts/Montserrat-Regular.ttf');
    font-weight: 800;
    font-style: italic;
    font-display: swap;
}
/*Montserrat-SemiBold */
@font-face {
    font-family: 'MontserratSemiBold';
    src: url('/AR/assets/fonts/Montserrat-SemiBold.ttf');
    font-weight: bold;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Bellarina';
    src: url('/AR/assets/fonts/Bellarina.otf');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}




/*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;
}



/*Montserrat-Black */
/*@font-face {
  font-family: 'MontserratBlack';
  src: url('/assets/fonts/Montserrat-Black.ttf');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}*/
/*Montserrat-Bold */
/*@font-face {
    font-family: 'GEFlowBold';
    src: url('/assets/fonts/Montserrat-Bold.ttf');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}*/
/*Montserrat-ExtraBold */
/*@font-face {
    font-family: 'GEFlowExtraBold';
    src: url('/assets/fonts/Montserrat-ExtraBold.ttf');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}*/
/*Montserrat-Light */
/*@font-face {
    font-family: 'GEFlowLight';
    src: url('/assets/fonts/Montserrat-Light.ttf');
    font-weight: 900;
    font-style: italic;
    font-display: swap;
}*/
/*Montserrat-Medium */
/*@font-face {
    font-family: 'GEFlowMedium';
    src: url('/assets/fonts/Montserrat-Medium.ttf');
    font-weight: bold;
    font-style: italic;
    font-display: swap;
}*/
/*Montserrat-Regular */
/*@font-face {
    font-family: 'GE-Flow-Regular';
    src: url('/assets/fonts/Montserrat-Regular.ttf');
    font-weight: 800;
    font-style: italic;
    font-display: swap;
}*/
/*Montserrat-SemiBold */
/*@font-face {
    font-family: 'GEFlowSemibold';
    src: url('/assets/fonts/Montserrat-SemiBold.ttf');
    font-weight: bold;
    font-style: italic;
    font-display: swap;
}
@font-face {
    font-family: 'Bellarina';
    src: url('/assets/fonts/Bellarina.otf');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}*/
html {
  --headerHeight: 70px;
}
header {
    font-size: 0.9em;
    font-family: "GEFlowBold";
}
header .header {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--lightGray);
  width: 100%;
  padding: 0 20px;
}
 header .header-logo {
  width: 200px;
 /* text-align: left;*/
  text-align: right;
  padding-right: 10px;
  height: auto;
}
 header .header-logo img {
  max-width: 60px;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
 header .header-navigation {
  display: none;
  text-transform: uppercase;
}
 header .header .menu {
  display: block !important;
  width: 40px;
  /*margin-left: auto;
  margin-right: 20px;*/

margin-left: 20px;
  margin-right: auto;
}
 header .header .menu-fill {
  fill: var(--blackColor);
  transition: all 0.3s ease-in-out;
}
 header .header .menu:hover .menu-fill {
  fill: var(--redColor);
}
 header .header #languageMobile {
  font-size: 1em;
  border: none;
  background-color: transparent;
  position: relative;
  cursor: pointer;
  margin-left: 20px;
  letter-spacing: 0.01em;
  font-family: "MontserratBold";
}
header .header #languageMobile,
header .header #languageMobile:visited,
 header .header #languageMobile:focus,
header .header #languageMobile:active,
header .header #languageMobile:hover {
  display: block;
  color: var(--blackColor);
  padding: 5px 10px;
  position: relative;
  border-radius: 10px 0 0 0;
  transition: background-color 300ms, color 400ms;
}
 header .header #languageMobile:hover,
 header .header #languageMobile:visited:hover,
 header .header #languageMobile:focus:hover,
 header .header #languageMobile:active:hover,
 header .header #languageMobile:hover:hover {
  background-color: var(--redColor);
  color: var(--whiteColor);
}
 header .header #languageMobile._active,
 header .header #languageMobile:visited._active,
 header .header #languageMobile:focus._active,
 header .header #languageMobile:active._active,
header .header #languageMobile:hover._active {
  background-color: var(--redColor);
  color: var(--whiteColor);
  cursor: default !important;
}
 header .header #languageMobile._active::after,
 header .header #languageMobile:visited._active::after,
 header .header #languageMobile:focus._active::after,
 header .header #languageMobile:active._active::after,
 header .header #languageMobile:hover._active::after {
  content: '';
  margin-top: 1px;
  height: 2px;
  width: 100%;
  left: 0;
  background-color: var(--redColor);
  position: absolute;
  top: 100%;
}
header .header #languageMobile:hover {
  color: #fff !important;
}
@media only screen and (min-width: 1100px) {
  html {
    --headerHeight: 100px;
  }
  /* header .header-logo {
    text-align: center;
  }*/
   header .header-navigation {
    display: block;
  }
   header .header-navigation nav ul {
    display: flex;
    justify-content: center;
    height: auto;
  }
  header .header-navigation nav ul li {
    margin-right: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
   header .header-navigation nav ul li button {
    background-color: transparent;
    border: none;
    outline: none;
    cursor: pointer;
  }
   header .header-navigation nav ul li a,
   header .header-navigation nav ul li button {
    display: block;
    padding: 5px 10px;
    position: relative;
  }
   header .header-navigation nav ul li a span,
   header .header-navigation nav ul li button span {
    position: relative;
    color: var(--blackColor);
    transition: color 1s;
  }
   header .header-navigation nav ul li a::before,
   header .header-navigation nav ul li button::before {
    content: "";
    position: absolute;
    right: 0;
    width: 0;
    top: 0;
    height: 100%;
    transition: width 0.5s ease-in-out;
    background-color: var(--redColor);
    border-radius: 10px 0 0 0;
  }
   header .header-navigation nav ul li a::after,
   header .header-navigation nav ul li button::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 1px;
    height: 2px;
    background-color: var(--redColor);
    width: 0;
    transition: width 0.5s ease-in-out;
  }
   header .header-navigation nav ul li a:hover span,
   header .header-navigation nav ul li button:hover span {
    color: var(--whiteColor);
  }
   header .header-navigation nav ul li a:hover::before,
   header .header-navigation nav ul li button:hover::before {
    width: 100%;
  }
   header .header-navigation nav ul li a:hover::after,
   header .header-navigation nav ul li button:hover::after {
    width: 100%;
  }
   header .header-navigation nav ul li a._active span,
   header .header-navigation nav ul li button._active span {
    color: var(--whiteColor);
  }
   header .header-navigation nav ul li a._active::before,
   header .header-navigation nav ul li button._active::before {
    width: 100%;
  }
   header .header-navigation nav ul li a._active::after,
   header .header-navigation nav ul li button._active::after {
    width: 100%;
  }
   header .header .menu,
   header .header #languageMobile {
    display: none !important;
  }

  /*html[lang="ar"] .header-logo {
    text-align: left !important;
  }*/
  html[lang="ar"] .header nav {
    /*margin-right: 100px;*/
    margin-left: 100px;

  }
  html[lang="ar"] .header nav ul .lang {
    font-size: 0.8em !important;
    margin-left: 0;
    margin-right: 20px;
  }
  html[lang="ar"]  .header nav ul li a,
  html[lang="ar"]  .header nav ul li button {
    font-size: 1.3em;
    letter-spacing: 0em;
    /*   &::before {
                                    right: initial;
                                    left: 0;
                                    top: 0;
                                    border-radius: 0 10px 0 0;
                                }
                                &::after{
                                    left:initial;
                                    right:1px;
                                }*/
  }
}
footer .footer {
  margin-top: 50px;
  margin-bottom: 20px;
  border-top: 2px solid var(--redColor);
}
footer .footer-top {
  text-align: center;
  flex-wrap: wrap;
  color: var(--redColor);
  padding: 20px 10px;
  max-width: var(--maxWidth);
  margin: auto;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
}
footer .footer-top-item {
  padding-bottom: 20px;
  width: fit-content;
  margin: 0 auto;
}
footer .footer-top-item span {
  font-family: 'GEFlowExtraBold';
  position: relative;
  display: block;
  text-align: center;
  margin: 0 auto;
}
footer .footer-top-item span::after {
  position: absolute;
  bottom: -10px;
  width: 50%;
  left: 24%;
  height: 1px;
  background-color: var(--redColor);
  content: "";
}
footer .footer-top-item a,
footer .footer-top-item a:hover,
footer .footer-top-item a:active,
footer .footer-top-item a:focus,
footer .footer-top-item a:visited {
  color: var(--redColor);
}
footer .footer-top-item ul {
  margin-top: 30px;
  text-align: center;
}
footer .footer-top-item ul li {
  font-size: 0.8em;
  font-family: 'GE-Flow-Regular';
  padding: 10px 5px;
  align-items: center;
}
footer .footer-top-item ul li a:hover {
  border-bottom: 1px solid var(--redColor);
}
footer .footer-top-item:last-child ul {
  margin-top: 10px;
}
footer .footer-top-item.products ul {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}
footer .footer-top-item.products ul li a,
footer .footer-top-item.products ul li a:visited,
footer .footer-top-item.products ul li a:focus,
footer .footer-top-item.products ul li a:active,
footer .footer-top-item.products ul li a:hover {
  line-height: 2em;
}
footer .footer-bottom {
  border-top: 2px solid var(--redColor);
}
footer .footer-bottom > div {
  display: flex;
  flex-direction: column-reverse;
}
footer .footer-bottom > div .parentcompany {
  flex: 1;
  font-size: 0.8rem;
  color: #000;
  padding: 20px;
  display: flex;
  align-items: flex-end;
  text-align: center;
}
footer .footer-bottom > div .parentcompany span {
  margin: auto;
}
footer .footer-bottom > div .parentcompany a,
footer .footer-bottom > div .parentcompany a:visited,
footer .footer-bottom > div .parentcompany a:focus,
footer .footer-bottom > div .parentcompany a:active,
footer .footer-bottom > div .parentcompany a:hover {
  font-size: 0.8rem;
  color: var(--redColor);
}
footer .footer-bottom > div .parentcompany a:hover,
footer .footer-bottom > div .parentcompany a:visited:hover,
footer .footer-bottom > div .parentcompany a:focus:hover,
footer .footer-bottom > div .parentcompany a:active:hover,
footer .footer-bottom > div .parentcompany a:hover:hover {
  text-decoration: underline;
}
footer .footer-bottom > div .links {
  display: flex;
  justify-content: center;
  padding-right: 20px;
}
footer .footer-bottom > div .links svg {
  width: 2em;
  height: 2em;
  margin: 5px;
}
footer .footer-bottom > div .links svg .--svg-fill-background {
  fill: transparent;
  transition: all 0.3s ease-in-out;
  r: 0;
}
footer .footer-bottom > div .links svg .--svg-fill {
  fill: var(--redColor);
  transition: all 0.3s ease-in-out;
}
footer .footer-bottom > div .links a:hover svg .--svg-fill-background {
  fill: var(--redColor);
  r: 20;
}
footer .footer-bottom > div .links a:hover svg .--svg-fill {
  fill: #fff;
}
@media only screen and (min-width: 800px) {
  footer .footer-top {
    text-align: left;
  }
  footer .footer-top-item {
    /*  &:nth-child(5) {
                    width: 20%;
                }*/
  }
  footer .footer-top-item:nth-child(2) {
    width: 50%;
  }
  footer .footer-top-item.products ul {
    flex-direction: row;
  }
  footer .footer-top-item.products ul li {
    width: 50%;
  }
    footer .footer-top-item.products ul li:nth-child(even) {
        /*text-align: end;*/
        text-align: start;
    }
  footer .footer-top-item.products ul li:last-child {
    width: 100%;
    text-align: center;
  }
  footer .footer-bottom > div {
    max-width: var(--maxWidth);
    margin: auto;
    flex-direction: row;
  }
  footer .footer-bottom > div .parentcompany {
    text-align: left;
            font-family: 'MontserratMedium';
   
  }
  footer .footer-bottom > div .parentcompany span {
    margin-left: 0;
  }
  footer .footer-bottom > div .links {
    justify-content: flex-end;
  }
}
@media only screen and (min-width: 1100px) {
  footer .footer-top {
    grid-template-columns: repeat(3, auto);
    column-gap: 10px;
  }
  footer .footer-top-item span {
    width: fit-content;
  }
  footer .footer-top-item span::after {
    content: none;
  }
    footer .footer-top-item ul li {
        /*text-align: left;*/
        text-align: right;
    }
  footer .footer-top-item:nth-child(2) {
    width: 50%;
  }
  footer .footer-top-item:last-child ul {
    /*margin-top: 50px;*/
   margin-top: 30px;
  }
}
html[lang="ar"] footer .footer a,
html[lang="ar"] footer .footer a:focus,
html[lang="ar"] footer .footer a:active,
html[lang="ar"] footer .footer a:visited,
html[lang="ar"] footer .footer a:hover {
  font-size: 1.2em;
}
:root {
  --maxWidth: 1300px;
}
* {
  margin: 0;
  padding: 0;
}
html:lang(en) *:lang(ar) {
  display: none;
}
html:lang(ar) *:lang(en) {
  display: none;
}
html > body {
    overflow: hidden;
    background-image: url('/assets/img/background.png');
    background-size: cover;
    background-attachment: fixed;
    background-repeat: repeat-y;
}
html[lang="ar"] a,
html[lang="ar"] a:focus,
html[lang="ar"] a:active,
html[lang="ar"] a:visited,
html[lang="ar"] a:hover {
  letter-spacing: 0.01em;
}
html[lang="ar"] p,
html[lang="ar"] h1,
html[lang="ar"] h2,
html[lang="ar"] h3,
html[lang="ar"] span {
  letter-spacing: 0.01em;
}
html[lang="ar"] h1 {
  font-size: 3em !important;
}
main section > div {
  max-width: var(--maxWidth);
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
main section > div ul {
  padding-left: 30px;
  margin: 30px 0;
}
main section > div ul li {
  font-family: "GEFlowMedium";
  letter-spacing: 0.08em;
  list-style: disc;
  color: var(--blackColor);
  opacity: 0.8;
}
svg .--dot-fill {
  fill: var(--whiteColor);
}
svg .--dot-out {
  fill: none;
  stroke: #FFFFFF;
  stroke-miterlimit: 10;
}
.--hide {
  display: none!important;
}
a,
a:visited,
a:focus,
a:active,
a:hover {
  text-decoration: none;
  cursor: pointer;
}
ul li {
  list-style: none;
  padding: 3px 0;
}
html,
button,
textarea,
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "GEFlowMedium";
  letter-spacing: 0.08em;
}
h1 {
  font-size: 3.2em;
  font-weight: 800;
  font-family: "GEFlowBold";
  text-transform: uppercase;
}
h2 {
  font-size: 2rem;
  font-weight: 800;
  font-family: "GEFlowSemibold";
}
h3 {
  font-family: "GEFlowExtraBold";
  font-weight: 800;
  font-size: 1.1rem;
}
h4 {
  font-size: 0.8em;
}
p {
  font-size: 1em;
  font-weight: 500;
  line-height: 1.5em;
  text-align: left;
  color: var(--blackColor);
  opacity: 0.8;
  font-family: "GEFlowLight";
}
.media {
  width: fit-content;
  margin-inline: auto;
}
.media-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--blackColor);
}
.media-title span {
  width: 30%;
  height: 2px;
  background-color: var(--blackColor);
}
.media-title h1 {
  text-align: center;
  font-size: 2em;
}
.media-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
  align-items: center;
}
.media-content-link {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.media-content-link > div a {
  display: flex;
  gap: 10px;
  align-items: center;
  color: var(--blackColor);
}
.media-content-link > div a:hover {
  color: var(--redColor);
  text-decoration: underline;
}
.media-content-link > div a svg {
  width: 40px;
}
.media-content-link > div a svg .--svg-fill-background {
  fill: var(--redColor);
}
.media-content-link > div a svg .--svg-fill {
  fill: var(--whiteColor);
}
.media-content-qr {
  position: relative;
  display: flex;
  flex-direction: column;
  align-content: center;
}
.media-content-qr img {
  width: 200px;
}
.media-content-qr span {
  position: relative;
  border-radius: 10px 0 0 0;
  font-size: 1rem;
  transition: all 0.5s;
  color: var(--blackColor);
  background-color: transparent;
  padding: 10px;
  text-align: center;
  cursor: pointer;
}
@media only screen and (min-width: 800px) {
  body main .media {
    width: 100%;
  }
  body main .media-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
@keyframes loading {
  to {
    background-position-x: -20%;
  }
}
body .sidebar {
  text-align: center;
}
body .sidebar-void {
  display: none;
}
body .sidebar-load {
  flex: 1;
  margin: 0 !important;
  background-color: var(--grayColor) !important;
  max-width: 100vw !important;
}
body .sidebar-back,
body .sidebar-title {
  display: none !important;
}
body .sidebar-close {
  flex: 1;
}
body .sidebar-close svg {
  margin-bottom: 0 !important;
}
body .sidebar a,
body .sidebar a:focus,
body .sidebar a:active,
body .sidebar a:visited,
body .sidebar a:hover {
  color: var(--blackColor);
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  display: inline-block;
  font-family: "GEFlowBold";
}
body .sidebar .links ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
body .sidebar .links ul .lang {
  display: none;
}
body .sidebar .links a,
body .sidebar .links a:focus,
body .sidebar .links a:active,
body .sidebar .links a:visited,
body .sidebar .links a:hover {
  padding: 15px 10px;
  width: 100%;
}
body .sidebar .links a:hover,
body .sidebar .links a:focus:hover,
body .sidebar .links a:active:hover,
body .sidebar .links a:visited:hover,
body .sidebar .links a:hover:hover {
  background-color: var(--redColor);
  color: #fff;
}
body .sidebar .links a._active {
  background-color: var(--redColor);
  color: #fff;
}
html[lang="ar"] body .sidebar .links a,
html[lang="ar"] body .sidebar .links a:focus,
html[lang="ar"] body .sidebar .links a:active,
html[lang="ar"] body .sidebar .links a:visited,
html[lang="ar"] body .sidebar .links a:hover {
  font-size: 1.2em;
  letter-spacing: 0.01em;
}
.popup {
  background-color: rgba(36, 48, 50, 0.5);
}
 .popup-content {
  width: 100%;
  max-width: 600px;
}
@media only screen and (min-width: 450px) {
  body .sidebar-void {
    display: block;
  }
  body .sidebar-load {
    width: 450px !important;
  }
}
@media only screen and (min-width: 1100px) {
  body .sidebar .links ul .lang {
    display: block!important;
  }
}
.--fadein {
  transform: translateY(50px);
  opacity: 0;
}
.--fadein-animate {
  transform: none;
  opacity: 1;
  transition: opacity 800ms ease-in-out, transform 800ms ease-in-out;
}
.--fadein-animate:nth-child(2n+1) {
  transition-delay: 40ms;
}


header .header nav ul .lang {
    font-family: "MontserratBold";
}