﻿.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 .products-title {
  text-align: center;
  margin-top: 50px;
  position: relative;
  color: var(--blackColor);
}
 main .products-title::after {
  content: '';
  width: 35%;
  height: 4px;
  background-color: var(--redColor);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -10px;
}
 main .products-title > span {
  font-size: 1.6em;
  font-family: "MontserratBold";
  text-transform: uppercase;
}
 main .products-sub {
  display: flex;
  justify-content: center;
  column-gap: 60px;
  align-items: center;
  margin-block: 50px;
  margin-inline: auto;
  /*  ._active {
                &::before {
                    width: 50%;
                }

                &::after {
                    width: 50%;
                }
            }*/
}
 main .products-sub button {
  background-color: transparent;
  outline: none;
  border: none;
  width: 130px;
  cursor: pointer;
  display: block;
  padding: 10px 0px;
  position: relative;
  /*  &::before {
                    content: "";
                    position: absolute;
                    bottom: -10px;
                    right: 50%;
                    width: 00%;
                    height: 3px;
                    background-color: var(--redColor);
                    transition: all .3s ease-in-out;
                }

                &::after {
                    content: "";
                    position: absolute;
                    bottom: -10px;
                    left: 50%;
                    width: 00%;
                    height: 3px;
                    background-color: var(--redColor);
                    transition: all .3s ease-in-out;
                }*/
}
 main .products-sub button span {
  position: relative;
  color: var(--blackColor);
  transition: color 1s;
  font-size: 1rem;
}
 main .products-sub 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;
}
 main .products-sub button::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 1px;
  height: 2px;
  background-color: var(--redColor);
  width: 0;
  transition: width 0.5s ease-in-out;
}
 main .products-sub ._active span {
  color: var(--whiteColor);
}
 main .products-sub ._active::before {
  width: 100%;
}
 main .products-sub ._active::after {
  width: 100%;
}
 main .products-categories {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  flex-direction: column;
  max-width: 800px;
  margin: auto;
  margin-top: 50px;
}
 main .products-categories a,
 main .products-categories a:visited,
 main .products-categories a:focus,
 main .products-categories a:active,
 main .products-categories a:hover {
  width: 80%;
  border-radius: 20px 0 0 0;
  margin-bottom: 20px;
  text-align: center;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  padding: 50px;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  transition: all 0.5s ease-in-out;
}
 main .products-categories a h3,
 main .products-categories a:visited h3,
 main .products-categories a:focus h3,
 main .products-categories a:active h3,
 main .products-categories a:hover h3 {
  position: absolute;
  left: 0%;
  top: 0;
  width: 100%;
  padding-inline: 5px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  /*                        transform: translate(-50%,-50%);
*/
  font-size: 0.8em;
  text-transform: uppercase;
  color: var(--whiteColor);
  transition: all 0.5s ease-in-out;
}
 main .products-categories a::before,
 main .products-categories a:visited::before,
 main .products-categories a:focus::before,
 main .products-categories a:active::before,
 main .products-categories a:hover::before {
  content: '';
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 20px 0 0 0;
}
 main .products-categories a::after,
 main .products-categories a:visited::after,
 main .products-categories a:focus::after,
main .products-categories a:active::after,
 main .products-categories a:hover::after {
  content: '';
  width: 100%;
  height: 5px;
  background-color: var(--redColor);
  position: absolute;
  bottom: 0;
  left: 0;
  transform: scaleX(0);
  transform-origin: bottom right;
  transition: transform 0.75s ease-out;
}
 main .products-categories a:hover {
  background-size: 120%;
}
 main .products-categories a:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}
 main .products .services {
  width: 300px;
  padding: 9px 5px;
  margin: 50px auto;
  display: flex;
  appearance: auto;
  background-color: transparent;
  border: 1px solid var(--redColor);
  color: var(--blackColor);
  cursor: pointer;
}
 main .industrial {
  margin-block: 30px;
}
 main .industrial-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--blackColor);
}
 main .industrial-title span {
  width: 30%;
  height: 2px;
  background-color: var(--blackColor);
}
 main .industrial-title h1 {
  text-align: center;
  font-size: 2em;
}
@media only screen and (min-width: 800px) {
   main .products-categories {
    flex-direction: row;
    justify-content: space-around;
  }
  main .products-categories a,
   main .products-categories a:visited,
   main .products-categories a:focus,
   main .products-categories a:active,
   main .products-categories a:hover {
    width: 45%;
  }
   main .products-categories a h3,
   main .products-categories a:visited h3,
   main .products-categories a:focus h3,
   main .products-categories a:active h3,
   main .products-categories a:hover h3 {
    font-size: 1em;
  }
}
html[lang="ar"] body > main a h3,
html[lang="ar"] body > main a:focus h3,
html[lang="ar"] body > main a:active h3,
html[lang="ar"] body > main a:visited h3,
html[lang="ar"] body > main a:hover h3 {
  font-size: 1.2em;
  line-height: 1.2em;
  width: 100%;
}




.horizontal-box {
    display: flex;
    gap: 20px;
    padding: 20px;
    box-sizing: border-box;
}

.box-item {
    flex: 1;
    background: #ccc;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    border: 2px solid #a41d35;
   /* width: 300px;*/
}


h3.indu-con {
    white-space: normal;
    /* color: white;*/
    font-family: "MontserratExtraBold";
    font-weight: 800;
    font-size: 1rem;
    /* font-size: 15px; */
}

a.industory-contact:before {
    background: none!important;
}
 
a.industory-contact:after {
    background: none!important;
}