﻿.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 .hero > div {
  max-width: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  height: 250px;
}
main .hero img {
  width: 100%;
  object-fit: cover;
  object-position: center;
  height: 100%;
}
 main .hero-container {
  position: relative;
  height: 100%;
}
 main .hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: translateX(100%);
  opacity: 0;
  transition: transform 0.5s ease-out, opacity 0.5s ease-in-out;
  transform-origin: left bottom;
  background: linear-gradient(100deg, rgba(255, 255, 255, 0) 40%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0) 60%) var(--lightGray);
  background-size: 200% 100%;
  background-position-x: 180%;
  animation: 1s loading ease-in-out infinite;
}
 main .hero-slide._active {
  transform: translateX(0);
  opacity: 1;
}
 main .hero-slide._before {
  transform: translateX(-100%);
}
main .hero-dots {
  position: absolute;
  bottom: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  width: 100%;
}
 main .hero-dots-dot {
  cursor: pointer;
  margin: 5px;
}
 main .hero-dots-dot svg {
  width: 15px;
}
 main .hero-dots-dot._active svg .--dot-fill {
  fill: var(--redColor);
}
 main .hero-dots-dot._active svg .--dot-out {
  stroke: var(--redColor);
}
 main .work > div {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  padding-block: 50px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  place-items: center;
  gap: 10px;
}
 main .work-item {
  margin-bottom: 50px;
  border-radius: 10px 0 0 0;
  width: 300px;
  max-height: 200px;
  overflow: hidden;
  position: relative;
}
 main .work-item-title {
  background-color: var(--lightGray);
  border-radius: 10px 0 0 0;
  padding: 20px 10px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1;
  height: 50px;
  transition: all 0.5s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 5px solid var(--redColor);
}
 main .work-item-title h3 {
  font-family: "MontserratExtraBold";
  text-align: center;
  color: var(--blackColor);
  margin: 0;
  text-transform: uppercase;
}
 main .work-item-image {
  opacity: 1;
  transition: opacity 800ms ease-in-out;
  margin: auto;
  background: linear-gradient(100deg, rgba(255, 255, 255, 0) 40%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0) 60%) var(--lightGray);
  background-size: 200% 100%;
  background-position-x: 180%;
  animation: 1s loading ease-in-out infinite;
}
 main .work-item-image img {
  border-radius: 10px 0 0 0;
  width: 100%;
}
 main .work-item-title,
 main .work-item-image {
  margin: auto;
}
 main .work-item-image {
  position: relative;
}
 main .work-item:hover > .work-item-title {
  height: 100%;
  background-color: #d5d6d687;
}
 main .inspiration-popup {
  display: none;
}
 main .popupColor {
  display: none;
}
 main .colors > div {
  border-top: 5px solid var(--redColor);
  padding: 0;
  margin-bottom: 30px;
}
 main .colors-leftside {
  padding: 20px;
  text-align: center;
  background-color: var(--mediumGray);
  color: var(--whiteColor);
}
 main .colors-leftside h1 {
  margin-bottom: 10px;
  letter-spacing: 0em;
}
 main .colors-leftside p {
  color: var(--whiteColor);
  margin-bottom: 20px;
  text-align: center;
}
 main .colors-leftside 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;
}
 main .colors-leftside 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;
}
 main .colors-leftside 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;
}
 main .colors-leftside a:hover span {
  color: var(--whiteColor);
}
 main .colors-leftside a:hover::before {
  height: 100%;
}
 main .colors-rightside {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: auto;
  padding: 20px;
  width: 100%;
  column-gap: 15px;
}
 main .colors-item {
  max-width: 200px;
  margin-bottom: 20px;
  box-shadow: var(--shadow);
  position: relative;
  width: 100%;
  max-height: 230px;
  height: 200px;
  cursor: pointer;
}
 main .colors-item-content {
  padding: 5px;
  position: absolute;
  width: 100%;
  bottom: 0;
  height: 40px;
  background-color: transparent;
  display: flex;
  flex-direction: column;
  justify-content: end;
}
 main .colors-item-content h4 {
  margin: 0;
  font-weight: 800;
  font-family: "MontserratBold";
  transition: all 0.5s ease-in-out;
}
 main .colors-item-content span {
  font-size: 0.5em;
  display: block;
  font-family: "MontserratBold";
  transition: all 0.5s ease-in-out;
}
 main .colors-item-content span:last-child {
  font-family: "MontserratMedium";
}
 main .colors-item-image {
  height: 150px;
  transition: all 0.5s ease-in-out;
}
 main .colors-item:hover .colors-item-image {
  height: 100%;
}
 main .colors-item:hover .colors-item-content {
  color: var(--whiteColor);
  mix-blend-mode: difference;
}
 main .colors-item:hover .colors-item-content h4 {
  font-size: 1rem;
}
 main .colors-item:hover .colors-item-content span {
  font-size: 0.7em;
}
 main .colors-item::after {
  content: '✓';
  color: var(--redColor);
  font-weight: bold;
  height: 30px;
  width: 30px;
  border-radius: 50%;
  position: absolute;
  top: 10px;
  left: 10px;
  padding-top: 2px;
  padding-left: 6.5px;
  border: 2px solid var(--redColor);
  opacity: 0;
  transition: all 0.5s ease-in-out;
}
 main .colors-item._selected {
  position: relative;
}
 main .colors-item._selected::after {
  opacity: 1;
  background-color: var(--redColor);
  color: #fff;
  box-shadow: var(--shadow);
}
 main .colors-item:hover {
  outline: 2px solid var(--redColor);
}
main .colors-item:hover::after {
  opacity: 1;
}
 main .colors-item:hover .inspiration-item-image {
  height: 100%;
}
 main .colors-item:hover .inspiration-item-content {
  color: var(--whiteColor);
}
 main .colors-item:hover .inspiration-item-content h4 {
  font-size: 1rem;
}
 main .colors-item:hover .inspiration-item-content span {
  font-size: 0.7em;
}
 main .products > div {
  display: grid;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 0;
}
 main .products-product {
  width: 100%;
  height: auto;
  margin-block: 60px;
  position: relative;
  display: grid;
  grid-template: "left" "center" "right";
  text-align: left;
}
 main .products-product:first-child {
  margin-top: 100px;
}
 main .products-product-image {
  width: 100%;
  height: auto;
  overflow: hidden;
  max-height: 500px;
  background: linear-gradient(100deg, rgba(255, 255, 255, 0) 40%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0) 60%) var(--lightGray);
  background-size: 200% 100%;
  background-position-x: 180%;
  animation: 1s loading ease-in-out infinite;
}
 main .products-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
 main .products-product-image._left {
  grid-area: left;
}
 main .products-product-image._right {
  grid-area: center;
}
 main .products-product-colors {
  display: flex;
  flex-direction: column;
  align-items: baseline;
  padding: 10px;
  grid-area: right;
  place-self: center;
}
 main .products-product-colors > span {
  align-self: center;
  text-transform: uppercase;
  font-size: 2rem;
  color: white;
}
 main .products-product-colors-items {
  display: flex;
  row-gap: 5px;
  column-gap: 20px;
  align-items: center;
  margin-top: 20px;
  flex-wrap: wrap;
  justify-content: center;
}
 main .products-product-colors-items .color {
  border-radius: 20px;
  box-shadow: var(--shadow);
  width: 100px;
  height: 140px;
  border-top: none;
  background-color: white;
  align-items: end;
  overflow: hidden;
  position: relative;
}
 main .products-product-colors-items .color-image {
  height: 95px;
  transition: all 0.5s ease-in-out;
}
 main .products-product-colors-items .color-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: end;
  height: fit-content;
  padding: 5px;
  background-color: transparent;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}
 main .products-product-colors-items .color-content span {
  font-size: 0.6rem;
  color: var(--blackColor);
  align-self: baseline;
  transition: all 0.5s ease-in-out;
}
 main .products-product-colors-items .color:hover .color-image {
  height: 100%;
}
 main .products-product-colors-items .color:hover .color-content span {
  color: white;
  font-size: 0.8rem;
  mix-blend-mode: hard-light;
}
 .popupColor {
  position: fixed;
  bottom: 0;
  height: auto;
  background-color: transparent;
  padding-bottom: 10px;
  display: block;
  width: min(90%, 800px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
}



 .popupColor-items {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  margin: auto;
}
 .popupColor-item {
  width: fit-content;
  padding: 5px;
  margin: 5px;
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: flex-start;
}
 .popupColor-item::before {
  content: "";
  width: 30px;
  height: 30px;
  border-radius: 5px;
  margin-right: 5px;
  cursor: pointer;
  background-color: var(--color);
  position: relative;
  box-shadow: 1px 1px 1px black;
}
 .popupColor-item > span {
  position: relative;
  color: var(--blackColor);
  cursor: pointer;
  display: none;
}
 .popupColor-selected {
  box-shadow: var(--shadow);
  padding: 10px;
  margin: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  border-radius: 5px;
  transition: all 0.5s ease-in-out;
  max-width: 800px;
  z-index: 20;
}
 .popupColor-selected._arrow {
  height: auto;
  align-items: center;
  flex-direction: column;
}
 .popupColor-selected._arrow .popupColor-items {
  flex-direction: column;
  width: fit-content;
  justify-content: center;
  align-items: flex-start;
}
 .popupColor-selected._arrow .popupColor-item::before {
  width: 20px;
  height: 20px;
  border-radius: 50%;
}
 .popupColor-selected._arrow .popupColor-item span {
  display: block;
}
 .popupColor-selected._arrow .popupColor-item span sub {
  position: relative;
  top: -10px;
}
 .popupColor-selected._arrow .popupColor-button {
  flex-direction: row;
  align-items: center;
}
 .popupColor-selected._arrow .popupColor-button #arrow {
  transform: rotate(180deg);
}
 .popupColor-button {
  display: flex;
  gap: 5px;
  flex-flow: wrap;
}
 .popupColor-button button,
 .popupColor-button a {
  background-color: var(--redColor);
  border: none;
  border-radius: 5px;
  color: #fff;
  padding: 5px 5px;
  cursor: pointer;
  width: 90px;
}
 .popupColor-button svg {
  width: 20px;
}
 .popupColor-button svg .--amc-fill {
  fill: var(--blackColor);
}
 .popupColor-button button:last-child {
  width: fit-content;
  background-color: transparent;
  color: var(--blackColor);
}
@media only screen and (min-width: 800px) {
 .popupColor-selected._arrow {
    align-items: center;
  }
}
._colorselection html[lang="ar"] > main .popupColor-selected._arrow {
  direction: ltr;
}
 .popup {
  background-color: rgba(36, 48, 50, 0.5);
}
 .popup-content {
  width: 100vw;
  height: 100vh;
  max-width: 100%;
  cursor: default;
}
 .popup-items {
  width: 100vw;
  height: 100vh;
  display: grid !important;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
}
 .popup-item {
  width: 100%;
  height: 100%;
}
 .popup-item:nth-child(1) {
  grid-row: 1;
  grid-column: 1;
}
 .popup-item:nth-child(2) {
  grid-row: 1;
  grid-column: 2;
}
 .popup-item:nth-child(3) {
  grid-row: 2;
  grid-column: 1;
}
 .popup-item:nth-child(4) {
  grid-row: 2;
  grid-column: 2;
}
 .popup-button {
  position: fixed;
  width: 100%;
  z-index: 10;
  bottom: 2%;
  left: 0;
  right: 0;
  text-align: center;
}
 .popup-button button {
  background-color: var(--redColor);
  border: none;
  border-radius: 5px;
  color: #fff;
  padding: 5px 20px;
  cursor: pointer;
}
 .popup .inspiration-popup._1 .popup-items {
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
}
 .popup .inspiration-popup._2 .popup-items {
  grid-template-columns: 1fr;
}
 .popup .inspiration-popup._2 .popup-item:nth-child(2) {
  grid-column: 1;
  grid-row: 2;
}
 .popup .inspiration-popup._3 .popup-item:nth-child(1) {
  grid-column-start: 1;
  grid-column-end: 3;
}
 .popup .inspiration-popup._3 .popup-item:nth-child(2) {
  grid-column: 1;
  grid-row: 2;
}
 .popup .inspiration-popup._3 .popup-item:nth-child(3) {
  grid-column: 2;
  grid-row: 2;
}
@media only screen and (min-width: 700px) {
   main .hero > div {
    height: 350px;
  }
   main .work > div {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (min-width: 800px) {
   main .products-product {
    grid-template-areas: "left right" "center center";
  }
  main .products-product-image._left {
    width: 100%;
    grid-area: left;
  }
  main .products-product-image._right {
    width: 100%;
    grid-area: right;
  }
  main .products-product-colors {
    grid-area: center;
    align-items: center;
  }




  .popupColor-selected {
    width: 80%;
    margin: auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
@media only screen and (min-width: 1100px) {
   main .products-product {
    height: 50%;
    grid-template-areas: "left center right";
    margin-block: 100px;
  }
   main .products-product-image {
    height: 400px;
  }
   main .products-product-image._left {
    height: 500px;
    grid-area: left;
  }
   main .products-product-image._right {
    height: 600px;
    position: relative;
    top: -15%;
    grid-area: right;
  }
   main .products-product-colors {
    grid-area: center;
  }
   main .products-product-colors > span {
    align-self: baseline;
  }
   main .products-product:nth-child(even) {
    grid-template-areas: "right center left";
  }
}
@media only screen and (min-width: 1300px) {
  body > main {
    /*   .products {
                &-content {
                    flex-direction: row;
                    justify-content: space-between;
                }

                &-item {
                    width: 50%;
                }
            }*/
  }
   main .hero > div {
   /* height: 550px;*/
    height: 88vh;
  }
   main .work > div {
    grid-template-columns: repeat(4, 1fr);
  }
  main .colors > div {
    display: flex;
  }
   main .colors-leftside {
    text-align: left;
    width: 40%;
    padding: 20px 120px 80px 40px;
  }
   main .colors-leftside p {
    text-align: left;
  }
  main .colors-leftside a {
    margin: 0;
  }
   main .colors-rightside {
    display: grid !important;
    grid-template-columns: repeat(4, 170px);
    margin: 0;
    gap: 20px;
    padding: 20px 10px 0 50px;
    width: 60%;
  }
   main .colors-item {
    width: auto;
    max-width: 200px;
    margin-right: 0px;
  }
}
/*@media @break-small {
    body {
        > main {

            .hero {
                &-dots {
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    padding: 10px;
                    position: absolute;
                    bottom: 0;
                    width: 100%;
                }
            }

            .work {
                > div {
                    flex-direction: row;
                }
            }
        }
    }
}*/
html[lang="ar"] body > main p,
html[lang="ar"] body > main h1,
html[lang="ar"] body > main h2,
html[lang="ar"] body > main h3,
html[lang="ar"] body > main span {
  letter-spacing: 0.01em;
}
html[lang="ar"] body > main .colors-leftside p {
  font-size: 1.4em !important;
}
@keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}




