@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Cairo:wght@200..1000&display=swap");
/* Start Default */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Cairo", sans-serif;
}

::-moz-selection {
  color: #fff;
  background: #d1291c;
}

::selection {
  color: #fff;
  background: #d1291c;
}

body {
  width: 100%;
  direction: rtl;
  overflow-x: hidden !important;
  background-color: #fff;
}
body::-webkit-scrollbar {
  width: 5px;
}
body::-webkit-scrollbar-track {
  background: #fff;
}
body::-webkit-scrollbar-thumb {
  background: #d1291c;
}

@media (max-width: 900px) {
  body::-webkit-scrollbar {
    width: 0px;
  }
}
html {
  width: 100%;
  scroll-behavior: smooth;
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: #000;
}

button {
  border: none;
  outline: none;
  background-color: transparent;
  cursor: pointer;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* clears the ‘X’ from Internet Explorer */
input[type=search]::-ms-clear {
  display: none;
  width: 0;
  height: 0;
}

input[type=checkbox] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 20px;
  height: 20px;
  border: 1px solid #d1291c; /* Border color */
  border-radius: 4px;
  outline: none;
  transition: 0.3s;
}

/* Change the color of the checkbox when checked */
input[type=checkbox]:checked {
  border-color: #d1291c; /* Border color when checked */
  background-color: #d1291c; /* Background color when checked */
}

/* Style the checkmark inside the checkbox */
input[type=checkbox]::before {
  content: "✓"; /* Unicode character for checkmark */
  display: block;
  width: 16px;
  height: 16px;
  margin: 2px;
  font-size: 16px;
  color: #fff; /* Checkmark color */
  line-height: 16px;
  text-align: center;
  visibility: hidden;
}

/* Show the checkmark when the checkbox is checked */
input[type=checkbox]:checked::before {
  visibility: visible;
}

input[type=search]::-ms-reveal {
  display: none;
  width: 0;
  height: 0;
}

/* clears the ‘X’ from Chrome */
input[type=search]::-webkit-search-decoration,
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-results-button,
input[type=search]::-webkit-search-results-decoration {
  display: none;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
}

.js-scroll {
  opacity: 0;
}

.js-scroll.scrolled {
  opacity: 1;
}

.scrolled.fade-left {
  animation: fadeleft 800ms cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
}

.scrolled.fade-right {
  animation: faderight 800ms cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
}

.scrolled.fade-top {
  animation: fadetop 800ms cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
}

.scrolled.fade-btm {
  animation: fadebtm 800ms cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
}

@keyframes fadeleft {
  0% {
    transform: translateX(-100px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes faderight {
  0% {
    transform: translateX(100px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes fadetop {
  0% {
    transform: translateY(-100px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fadebtm {
  0% {
    transform: translateY(100px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
.opacity {
  opacity: 0;
}

.opacity-ani {
  opacity: 0;
  animation: opacityani 800ms ease 500ms forwards;
}

@keyframes opacityani {
  100% {
    opacity: 1;
  }
}
/* End Default */
.box {
  max-width: 1200px;
  width: 100%;
  padding: 0 20px;
}

.box2 {
  max-width: 1300px;
  width: 100%;
  padding: 0 20px;
}

/* End Default */
nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 90px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: transparent;
  transition: 0.2s;
  z-index: 5;
  background-color: #36353d;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.251);
}

.f-s {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
}
.logo img {
  width: 65px;
  -o-object-fit: contain;
     object-fit: contain;
}

.links {
  display: flex;
}

.mainLinks {
  display: flex;
  list-style: none;
  gap: 25px;
}

.link {
  width: -moz-fit-content;
  width: fit-content;
  font-size: 0.9em;
  color: #fff;
  font-weight: 500;
  text-transform: uppercase;
}
.link img {
  width: 7px;
}

.link {
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
  height: 90px;
  gap: 5px;
  transition: 0.2s;
}
.link::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 3px;
  bottom: 25px;
  background-color: #d1291c;
  border-radius: 3px;
  left: -101%;
  transition: 0.2s;
}

.link.active::after {
  left: 0;
}

.menu {
  display: none;
  flex-direction: column;
  position: relative;
  height: 80px;
  width: 35px;
  border: none;
  outline: none;
  background-color: transparent;
}
.menu span {
  height: 2px;
  width: 30px;
  border-radius: 2px;
  background-color: #fff;
  position: absolute;
  transition: 0.3s;
}
.menu span:nth-child(1) {
  top: 28px;
}
.menu span:nth-child(2) {
  top: 40px;
}
.menu span:nth-child(3) {
  top: 52px;
}

.activeMenu .box .menu span:nth-child(1) {
  transform: rotate(45deg);
  top: 40px;
  background-color: red;
}

.activeMenu .box .menu span:nth-child(2) {
  width: 0;
  opacity: 0;
}

.activeMenu .box .menu span:nth-child(3) {
  transform: rotate(-45deg);
  background-color: red;
  top: 40px;
}

.ls {
  display: flex;
  gap: 20px;
}
.ls .mLinks {
  display: none;
}

.home {
  width: 100%;
  height: calc(100vh - 90px);
  margin-top: 90px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.home .home-line {
  position: absolute;
  width: -moz-fit-content;
  width: fit-content;
  -o-object-fit: contain;
     object-fit: contain;
  height: 100%;
  position: absolute;
  right: 10%;
  z-index: 3;
}

.mLinks {
  display: flex;
  align-items: center;
  gap: 20px;
}
.mLinks .fa-magnifying-glass {
  font-size: 1.3em;
  color: #d1291c;
}
.mLinks a {
  display: flex;
  align-items: center;
  gap: 10px;
}
.mLinks a img {
  width: 25px;
  height: 25px;
  -o-object-fit: contain;
     object-fit: contain;
}
.mLinks a .ll {
  display: flex;
  flex-direction: column;
}
.mLinks a .ll span {
  line-height: 1.1;
  color: #fff;
}
.mLinks a .ll span:nth-child(1) {
  font-size: 0.8em;
  text-transform: uppercase;
}

.drop {
  display: flex;
  align-items: center;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
}
.drop .dropMenu {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100vw;
  left: 0;
  display: none;
  height: 43px;
  height: 70px;
  position: absolute;
  top: 90px;
  background-color: #36353d;
}
.drop .dropMenu .box {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.drop .dropMenu a {
  transition: 0.2s all ease;
  color: #fff;
}
.drop .dropMenu a:hover {
  color: #d1291c !important;
}
.drop a {
  font-weight: 400;
  color: #fff;
}
.drop a .lang {
  width: 20px;
  -o-object-fit: contain;
     object-fit: contain;
}
.drop a .drop-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 7px;
  transform: translateX(4px);
  transition: 0.2s;
}

.ba-t {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ba-t h3 {
  font-size: 1em;
  color: #d1291c;
  line-height: 1;
  font-weight: 500;
}

.drop.active .dropMenu {
  display: flex;
}
.drop.active .drop-icon {
  transform: translateX(4px) rotate(-90deg);
}

@media (max-width: 1000px) {
  .menu {
    display: flex;
  }
  .ls {
    display: flex;
    flex-direction: column;
    position: fixed;
    width: 100%;
    height: calc(100vh - 80px);
    overflow-y: scroll;
    top: 80px;
    left: -100%;
    gap: 0;
    transition: 0.4s;
    background-color: #36353d;
    padding: 0 0 70px 0;
  }
  .ls .mLinks {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-left: 5%;
  }
  .ls::-webkit-scrollbar {
    width: 0px;
  }
  .mainLinks {
    display: flex;
    flex-direction: column;
    padding: 20px 0;
    width: 100%;
    gap: 20px;
  }
  .link {
    margin-left: 5%;
  }
  .link {
    height: 40px;
  }
  .link::after {
    bottom: 0;
  }
  .activeMenu .f-s .links .ls {
    left: 0;
  }
  .layer {
    display: none;
  }
}
.homeSwiper {
  width: 100%;
  height: calc(100vh - 90px);
  display: flex;
  justify-content: center;
  align-items: center;
}
.homeSwiper .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.home-swiper-pagination {
  position: absolute;
  z-index: 3;
  bottom: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding: 0;
  margin: 0;
  left: 0;
  padding-bottom: 10px;
}
.home-swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  opacity: 1;
  transition: 0.2s all ease;
  background-color: #fff;
}
.home-swiper-pagination .swiper-pagination-bullet-active {
  width: 25px;
  border-radius: 5px;
  background-color: #d1291c;
}

@media (max-width: 1000px) {
  .home,
  .homeSwiper {
    height: 40vh;
  }
  .home-line {
    display: none;
  }
}
.container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 30px 0;
  position: relative;
  height: -moz-fit-content;
  height: fit-content;
}

.container-line {
  position: absolute;
  left: 10%;
  z-index: -1;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.aSw {
  width: 100%;
  border-radius: 10px;
}
.aSw .swiper-slide img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}
.aSw .swiper-pagination .swiper-pagination-bullet {
  background-color: #fff;
  opacity: 1;
  transition: 0.3s all ease;
}
.aSw .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #d1291c;
}

@media (max-width: 700px) {
  .aSw .swiper-pagination {
    display: none;
  }
}
.section {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  padding: 30px 0;
  flex-direction: column;
}

.aboutus {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
}

.aText {
  width: 100%;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}
.aText .lines7 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  line-clamp: 5;
  font-size: 1rem !important;
  -webkit-box-orient: vertical;
}
.aText h1 {
  color: #d1291c;
  font-weight: 600;
  display: flex;
  flex-direction: column;
  gap: 5px;
  line-height: 1.5;
  text-transform: uppercase;
}
.aText h1::after {
  content: "";
  width: 110px;
  height: 2px;
  background-color: #d1291c;
}
.aText h1 span {
  content: attr(data-title);
  font-size: 0.9rem;
  font-weight: 400;
  color: #272727;
  padding-bottom: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.aText h1 span i {
  font-size: 1.1rem;
}
.aText h2 {
  color: #000;
  text-transform: capitalize;
}
.aText h3 {
  text-transform: capitalize;
}
.aText span {
  color: #d1291c;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  font-weight: 600;
}
.aText p {
  font-weight: 400;
  font-size: 1.2rem !important;
  color: #333;
}
.aText p q {
  text-transform: uppercase;
}
.aText .btn {
  margin-top: 5px;
}
.aText h1 span.fw500 {
  font-weight: 600 !important;
}

@media (max-width: 600px) {
  .aText p {
    font-size: 1rem !important;
  }
}
.flex-shrink {
  width: 700px;
}

.btn {
  padding: 0 40px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: #d1291c;
  transition: 0.3s all ease;
  border-radius: 10px;
  border: 1px solid #d1291c;
  text-transform: uppercase;
  font-weight: 600;
}
.btn:hover {
  background-color: #d1291c;
  color: #fff;
}
.btn .fa-arrow-right-long {
  transform: rotate(180deg);
}

.image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  border-radius: 10px;
  width: 500px;
  height: 300px;
  position: relative;
}
.image img {
  border-radius: 10px;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  transition: 0.3s all ease;
}
.image img:hover {
  width: 110%;
  height: 110%;
}

@media (max-width: 1100px) {
  .aboutus {
    flex-direction: column;
  }
  .aboutus .aText {
    width: 100%;
  }
}
@media (max-width: 700px) {
  .aboutus .image {
    width: 100%;
  }
}
@media (max-width: 600px) {
  .aboutus .image {
    height: 250px;
  }
  .aText h1 {
    font-size: 1.7em;
  }
  .aText p {
    font-size: 0.9em;
  }
  .btn {
    padding: 0 20px;
    font-size: 0.9em;
  }
}
@media (max-width: 400px) {
  .aboutus .image {
    height: 200px;
  }
}
.produtsCats {
  width: 100%;
  padding-bottom: 5px;
}

.product-cat {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.product-cat .aText {
  gap: 10px;
}
.product-cat .aText h3 {
  font-weight: 500;
}
.product-cat .aText p,
.product-cat .aText span {
  font-weight: 400;
}

.product-image {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 300px;
  position: relative;
  overflow: hidden;
  border-radius: 0 5px 5px 5px;
}
.product-image span {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  color: #fff;
  background-color: #d1291c;
  padding: 10px 20px;
  font-weight: 600;
}
.product-image span img {
  position: relative;
  width: 90px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 0;
}
.product-image .img {
  width: 100%;
  height: 100%;
  position: absolute;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0 5px 5px 5px;
  transition: 0.3s all ease;
}
.product-image .img:hover {
  width: 110%;
  height: 110%;
}

.category-span {
  text-transform: uppercase;
  font-weight: 400;
}

@media (max-width: 500px) {
  .product-image {
    height: 250px;
  }
}
.conatctHome {
  display: flex;
  justify-content: space-between;
  gap: 50px;
}
.conatctHome iframe {
  width: calc(50% - 25px);
  height: 280px;
  border-radius: 5px;
  outline: 1px solid #d1291c;
}
.conatctHome form {
  width: calc(50% - 25px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 25px;
}
.conatctHome form button {
  border: none;
  outline: none;
  background-color: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #d1291c;
  width: 200px;
  border-radius: 10px;
  color: #fff;
  font-weight: 600;
  height: 40px;
}
.conatctHome form input:not([type=checkbox]),
.conatctHome form textarea,
.conatctHome form select,
.conatctHome form .label {
  width: 100%;
  border: none;
  outline: none;
  background-color: transparent;
  background-color: #faeae8;
  color: #333;
  border: 1px solid #d1291c;
  padding: 0 15px;
  overflow: hidden;
  height: 45px;
  border-radius: 5px;
  font-size: 1em;
  font-weight: 500;
}
.conatctHome form input:not([type=checkbox])::-moz-placeholder, .conatctHome form textarea::-moz-placeholder, .conatctHome form select::-moz-placeholder, .conatctHome form .label::-moz-placeholder {
  font-weight: 500;
  color: rgba(51, 51, 51, 0.3333333333);
  text-transform: uppercase;
}
.conatctHome form input:not([type=checkbox])::placeholder,
.conatctHome form textarea::placeholder,
.conatctHome form select::placeholder,
.conatctHome form .label::placeholder {
  font-weight: 500;
  color: rgba(51, 51, 51, 0.3333333333);
  text-transform: uppercase;
}
.conatctHome form textarea {
  height: 140px;
  padding: 15px;
  resize: none;
}
.conatctHome form .label {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 100%;
  height: 140px;
  border-radius: 10px;
  border: 1px dashed #d1291c;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  padding: 15px;
}
.conatctHome form .label i {
  font-size: 1.3em;
}
.conatctHome .select {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
}
.conatctHome .select i {
  position: absolute;
  left: 20px;
  color: #d1291c;
}
.conatctHome .newsForm {
  width: 600px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}
.conatctHome .newsForm button {
  height: 45px;
  border-radius: 5px;
}

@media (max-width: 900px) {
  .conatctHome {
    flex-direction: column;
  }
  .conatctHome iframe,
  .conatctHome form {
    width: 100%;
  }
}
@media (max-width: 650px) {
  .conatctHome .newsForm {
    width: 100%;
  }
}
@media (max-width: 600px) {
  .conatctHome iframe {
    height: 250px;
  }
}
.fw500 {
  font-weight: 500;
}

.backaldrin {
  margin: 0 auto;
  padding-top: 30px;
}
.backaldrin img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  transform: translateY(35px);
}

footer {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 50px 0;
  background-color: #36353d;
  flex-direction: column;
  gap: 30px;
}

.footer {
  display: flex;
  justify-content: space-between;
}

.footerLogo {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 20px;
}
.footerLogo img {
  width: 130px;
}
.footerLogo .aboutText {
  width: 400px;
}
.footerLogo .aboutText p {
  font-size: 0.9em;
  color: #fff;
}

.footerLinkGroup {
  display: flex;
  gap: 100px;
}

.linkGroup {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.linkGroup h2 {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 5px;
  text-transform: uppercase;
  white-space: nowrap;
  color: #fff;
  font-weight: 600;
  font-size: 1.3em;
  width: -moz-fit-content;
  width: fit-content;
}
.linkGroup h2::after {
  content: "";
  width: 100%;
  height: 3px;
  border-radius: 3px;
  background-color: #d1291c;
}
.linkGroup ul {
  display: flex;
  flex-direction: column;
  list-style: none;
}
.linkGroup ul li a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1em;
  line-height: 1.7;
  color: #fff;
  text-transform: uppercase;
  transition: 0.2s all ease;
  font-weight: 500;
}
.linkGroup ul li a img {
  width: 8px;
  transform: rotate(180deg);
  -o-object-fit: contain;
     object-fit: contain;
}
.linkGroup ul li a:hover {
  color: #d1291c;
}

.cont {
  width: 290px;
}
.cont ul li:nth-child(1) a {
  line-height: 1.5;
}
.cont ul li a {
  line-height: 2;
}
.cont ul li a img {
  width: 20px;
  transform: rotate(0deg);
}

.media {
  display: flex;
  gap: 10px;
  transform: translateY(-10px);
}
.media a {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  text-decoration: none;
  background-color: #fff;
}
.media a i {
  color: #d1291c;
  font-size: 1.3em;
  transition: 200ms all ease;
}
.media a:hover i {
  color: #d1291c;
}

@media (max-width: 1001px) {
  .footer {
    flex-direction: column;
    gap: 30px;
  }
}
@media (max-width: 601px) {
  .backaldrin {
    padding: 0 20px;
  }
  .footerLinkGroup {
    flex-direction: column;
    gap: 30px;
  }
  .linkGroup {
    width: 100%;
  }
  .cont {
    width: 100%;
  }
}
@media (max-width: 421px) {
  .footerLogo .aboutText {
    width: 100%;
  }
}
.cart {
  position: relative;
}
.cart span {
  position: absolute;
  right: -7px;
  top: -7px;
  padding: 2.5px 5px;
  border-radius: 50%;
  line-height: 1;
  background-color: #d1291c;
  color: #fff;
  font-size: 0.6em;
}
.cart i {
  font-size: 1.5em;
  color: #fff;
}

.header {
  height: 50vh;
}
.header .homeSwiper {
  height: 50vh;
}

@media (max-width: 1000px) {
  .header {
    height: 40vh;
  }
  .header .homeSwiper {
    height: 40vh;
  }
}
.squares {
  position: absolute;
  bottom: -3vw;
  z-index: 4;
  width: 100%;
}

.aboutPage {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-top: 3vw;
}
.aboutPage .backaldrin img {
  transform: translateY(65px) !important;
}
.aboutPage .aText p {
  font-size: 1.1em;
  font-weight: 400;
}

@media (max-width: 700px) {
  .aboutPage .aText p {
    font-size: 0.9em;
  }
}
.timeline {
  width: 100%;
  position: relative;
  padding-top: 50px;
}

.timeline-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  padding: 20px 0;
}

.timeline-year {
  background-color: #d1291c;
  color: white;
  font-size: 1.1em;
  font-weight: 500;
  padding: 7px 25px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  top: 0;
}

.timeline-content {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
  align-items: flex-start;
}

.timeline-image img {
  width: 450px;
  height: 250px;
  border-radius: 10px;
  -o-object-fit: cover;
     object-fit: cover;
}

.timeline-text {
  width: 45%;
  padding: 0 20px;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.timeline-text h2 {
  padding-top: 30px;
  padding-bottom: 10px;
}
.timeline-text p {
  text-align: right;
}

.timeline .timeline-item:nth-child(even) .timeline-content {
  flex-direction: row-reverse !important;
}

@media (max-width: 1000px) {
  .timeline .timeline-item:nth-child(even) .timeline-content {
    gap: 30px;
    flex-direction: column !important;
  }
  .timeline .timeline-item:last-child {
    padding-bottom: 0;
  }
  .timeline-content {
    gap: 30px;
    flex-direction: column;
    text-align: center;
  }
  .timeline-text {
    width: 100%;
  }
  .timeline-image {
    width: calc(100% - 20px);
  }
  .timeline-image img {
    width: 100%;
    margin-left: 0;
  }
  .timeline-year {
    left: -2px;
    transform: none;
  }
  .timeline::before {
    left: 0;
    height: 99%;
    top: 0;
  }
}
@media (max-width: 700px) {
  .timeline-image img {
    height: 200px;
  }
  .timeline-text {
    padding-right: 0;
  }
  .timeline-text h2 {
    font-weight: 600;
    font-size: 1.4em;
  }
}
.seeDist {
  width: 100%;
  height: 150px;
  background-color: #d1291c;
  border-radius: 15px;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  font-weight: 600;
  font-size: 1.3em;
  text-transform: uppercase;
  color: #fff;
}
.seeDist img {
  width: 40px;
  height: 40px;
  -o-object-fit: contain;
     object-fit: contain;
}

@media (max-width: 700px) {
  .seeDist {
    height: 100px;
    border-radius: 10px;
    font-size: 0.9em;
    font-weight: 500;
    gap: 15px;
  }
  .seeDist img {
    width: 30px;
    height: 30px;
    -o-object-fit: contain;
       object-fit: contain;
  }
}
@media (max-width: 375px) {
  .seeDist {
    height: 80px;
    font-size: 0.8em;
    font-weight: 500;
    gap: 10px;
  }
  .seeDist img {
    width: 25px;
    height: 25px;
  }
}
.mapCont {
  width: 100%;
  height: 100vh;
  margin-top: 60px;
  z-index: 1;
}

@media (max-width: 700px) {
  .mapCont {
    height: 70vh;
  }
}
.pageHeader {
  height: 250px;
}
.pageHeader img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.productsContainer {
  display: flex;
  justify-content: center;
  align-items: center;
  -moz-column-gap: 20px;
       column-gap: 20px;
  row-gap: 30px;
  flex-wrap: wrap;
}
.productsContainer .product-cat {
  width: 370px;
}

@media (max-width: 800px) {
  .productsContainer .product-cat {
    width: 370px;
    flex-grow: 1;
  }
}
.logos {
  padding: 50px 0 30px 0;
}
.logos .swiper-wrapper {
  transition-timing-function: linear !important;
}
.logos .swiper-slide img {
  height: 50px;
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
}

.cards {
  width: 100%;
  display: flex;
  gap: 30px;
  padding-top: 50px;
}
.cards .card {
  width: calc(33.3333333333% - 10px);
  height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 20px;
  background-color: #d1291c;
  color: #fff;
  font-size: 1.2em;
  font-weight: 600;
  border-radius: 10px;
  transition: 0.4s all ease;
  border: 1px solid #d1291c;
}
.cards .card svg path {
  transition: 0.4s all ease;
}
.cards .card:hover {
  background-color: #fff;
  border: 1px solid #d1291c;
  color: #d1291c;
}
.cards .card:hover svg path {
  fill: #d1291c;
}

@media (max-width: 1000px) {
  .cards {
    flex-wrap: wrap;
  }
  .cards .card {
    min-width: 350px;
    flex-grow: 1;
  }
}
@media (max-width: 500px) {
  .cards {
    flex-wrap: wrap;
  }
  .cards .card {
    min-width: 100%;
    height: 250px;
  }
  .cards .card svg {
    scale: 0.7;
  }
}
.paginations {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 7px;
  direction: ltr;
  flex-wrap: wrap;
  padding-top: 50px;
}
.paginations li a {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 7px;
  border: 1px solid #272727;
  text-align: center;
  transition: 0.2s all ease;
  font-weight: 500;
}
.paginations li .p-link.active {
  color: #d1291c;
  border: 1px solid #d1291c;
}
.paginations li:nth-child(1) a {
  background-color: #272727;
  color: #fff;
}
.paginations li:nth-child(1) a:hover {
  background-color: #d1291c;
  border: 1px solid #d1291c;
}
.paginations li:last-child a {
  background-color: #272727;
  color: #fff;
}
.paginations li:last-child a:hover {
  background-color: #d1291c;
  border: 1px solid #d1291c;
}

.btns {
  display: flex;
  gap: 20px;
  padding-top: 20px;
  flex-wrap: wrap;
}
.btns .btn:nth-child(1) {
  background-color: #d1291c;
  color: #fff;
}

.product img {
  width: 100%;
  height: 450px;
  border-radius: 10px;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 700px) {
  .product img {
    height: 350px;
  }
}
@media (max-width: 500px) {
  .product img {
    height: auto;
  }
  .btns .btn {
    flex-grow: 1;
  }
}
#sbtn {
  cursor: pointer;
}

.s-n {
  position: fixed;
  top: -100px;
  left: 0;
  width: 100%;
  height: 90px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.2s;
  z-index: 6;
  background-color: #36353d;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.251);
}
.s-n .box {
  display: flex;
  justify-content: center;
  align-items: center;
}
.s-n .box .search {
  display: flex;
  gap: 10px;
  align-items: center;
}
.s-n .box .search button i {
  font-size: 1.5em;
  color: #d1291c;
}
.s-n .box .search input {
  border: none;
  outline: none;
  background-color: transparent;
  height: 45px;
  border-radius: 10px;
  padding: 0 15px;
  font-size: 1em;
  color: #d1291c;
  background-color: #fff;
  width: 600px;
  font-weight: 500;
}
.s-n .box .search input::-moz-placeholder {
  color: #000;
  color: #d1291c;
}
.s-n .box .search input::placeholder {
  color: #000;
  color: #d1291c;
}

.s-n.showSN {
  top: 0;
}

@media (max-width: 800px) {
  .s-n .box .search {
    width: 100%;
  }
  .s-n .box .search input {
    width: 100%;
  }
}
@keyframes shownav {
  100% {
    top: 0;
  }
}
#close2 {
  display: none;
  position: fixed;
  top: 90px;
  left: 0;
  width: 100%;
  height: 100%;
}

.hlk {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
  position: relative;
}

.homeMedia {
  display: flex;
  flex-direction: column;
  position: fixed;
  direction: ltr;
  left: 0;
  bottom: 10%;
  z-index: 5;
}
.homeMedia a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 45px;
  height: 45px;
  border-radius: 0 5px 5px 0;
  transition: 0.2s;
  box-shadow: 0px 0px 5px #1c1e22;
}
.homeMedia a:hover {
  width: 55px;
}
.homeMedia a:nth-child(odd) {
  background-color: #d1291c;
}
.homeMedia a:nth-child(even) {
  background-color: #d1291c;
}
.homeMedia a img {
  width: 25px;
}

.icon {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  z-index: 5;
  background-color: #d1291c;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.251);
  color: #fff;
  font-size: 1.5em;
  display: none;
  cursor: pointer;
}

@media (max-width: 1301px) {
  .hm {
    padding-left: 100px;
  }
}
@media (max-width: 1000px) {
  .goTop {
    bottom: 40px;
  }
  .homeMedia {
    display: flex;
    justify-content: center;
    align-items: center;
    left: 20px;
    bottom: 40px;
    padding: 20px;
  }
  .icon {
    display: flex;
  }
  .hlk a {
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 50%;
  }
  .fadeL {
    opacity: 0;
    transform: translateX(0);
    animation: none;
  }
  .fadeL200 {
    opacity: 0;
    transform: translateX(0);
    animation: none;
  }
  .fadeL400 {
    opacity: 0;
    transform: translateX(0);
    animation: none;
  }
  .fadeL600 {
    opacity: 0;
    transform: translateX(0);
    animation: none;
  }
  .homeMedia a {
    width: 35px;
    height: 35px;
    animation: none;
    opacity: 0;
    left: 0;
    bottom: -10px;
  }
  .homeMedia a:hover {
    width: 35px;
  }
  .homeMedia a:nth-child(1) {
    transition: 0.2s all ease 150ms;
  }
  .homeMedia a:nth-child(2) {
    transition: 0.2s all ease 300ms;
  }
  .homeMedia a:nth-child(3) {
    transition: 0.2s all ease 450ms;
  }
  .homeMedia a:nth-child(4) {
    transition: 0.2s all ease 600ms;
  }
  .homeMedia a img {
    width: 17px;
  }
  .homeMedia.active .hlk a {
    opacity: 1;
  }
  .homeMedia.active .hlk a:nth-child(1) {
    bottom: 45px;
    left: -10px;
  }
  .homeMedia.active .hlk a:nth-child(2) {
    bottom: 20px;
    left: 30px;
  }
  .homeMedia.active .hlk a:nth-child(3) {
    bottom: -30px;
    left: 40px;
  }
  .homeMedia.active .hlk a:nth-child(4) {
    bottom: -45px;
    left: 40px;
  }
  .hm {
    padding-left: 20px;
  }
  .homeImg {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
  }
  .homeImg a {
    position: absolute;
  }
}
.counter i {
  font-size: 3em;
}

#closer,
#closer2 {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 90px;
  left: 0;
  z-index: -1;
  display: none;
  background-color: rgba(0, 0, 0, 0.7411764706);
}

.drop.active #closer,
.drop.active #closer2 {
  display: block;
}

.drop2 .dropMenu {
  position: absolute;
  top: 100%;
  left: auto;
  width: -moz-fit-content;
  width: fit-content;
  padding: 10px 30px;
  border-radius: 0 0 7px 7px;
  height: auto;
}

.drop2.active .link.active::after {
  display: none;
}

@media (max-width: 1000px) {
  .drop {
    flex-direction: column;
    align-items: flex-start;
    margin-left: 5%;
  }
  .drop .link {
    margin-left: 0;
    padding-left: 0;
  }
  .drop .dropMenu {
    height: -moz-fit-content;
    height: fit-content;
    padding-top: 30px;
    position: relative;
    border: none;
    top: 0;
  }
  .drop .dropMenu .box {
    gap: 20px;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    width: -moz-fit-content;
    width: fit-content;
    margin-right: auto;
  }
  .drop .dropMenu .ba-t {
    display: none;
  }
  .drop.active #closer {
    display: none;
  }
  .mLinks .drop {
    margin-left: 0;
  }
  .drop2.active .dropMenu {
    top: 100%;
    width: -moz-fit-content;
    width: fit-content;
    position: absolute;
    padding: 10px 30px;
  }
}
.last {
  display: flex;
  gap: 20px;
}

.counters {
  padding-top: 0;
}

.pb50 {
  padding-bottom: 50px;
}

.location {
  padding-top: 50px;
  padding-bottom: 30px;
}
.location iframe {
  width: 100%;
  height: 400px;
}

.contactInfoCard {
  width: calc(50% - 10px);
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  padding: 40px;
  border-radius: 15px;
  background-color: #d1291c;
  position: relative;
}
.contactInfoCard h2 {
  color: #fff;
  font-weight: 500;
}
.contactInfoCard img {
  position: absolute;
  width: 100px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  bottom: 20px;
  right: 20px;
}

.ciLinks {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding-top: 20px;
}

@media (max-width: 900px) {
  .contactInfoCard {
    width: 100%;
    padding-bottom: 80px;
  }
}
.cicl {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: left;
  gap: 15px;
  color: #fff;
  font-size: 1.2em;
  font-weight: 400;
}
.cicl a {
  display: inline;
  font-size: 1em;
  width: -moz-fit-content;
  width: fit-content;
}
.cicl i {
  font-size: 1.2em;
}

@media (max-width: 600px) {
  .cicl {
    font-size: 1em;
    font-weight: 400;
  }
  .cicl i {
    font-size: 1.2em;
  }
  .location iframe {
    height: 250px;
  }
}
.w500Form {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 50px;
}
.w500Form form {
  width: 500px;
}

@media (max-width: 550px) {
  .w500Form form {
    width: 100%;
  }
}
.regNow {
  width: 100%;
  display: flex;
  gap: 30px;
  align-items: center;
}
.regNow p {
  max-width: 700px;
}

@media (max-width: 1000px) {
  .regNow {
    flex-direction: column;
    align-items: flex-start;
  }
  .regNow p {
    max-width: 100%;
  }
}
.accept {
  display: flex;
  gap: 10px;
}
.accept label {
  font-size: 0.9em;
  white-space: wrap;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: 500;
}

.leaflet-popup-content {
  display: flex;
  flex-direction: column;
  gap: 0 !important;
}
.leaflet-popup-content p {
  padding: 0 !important;
  margin: 5px 0 !important;
}

#searchCountry {
  position: fixed;
  right: 20px;
  top: 120px;
  z-index: 2;
}
#searchCountry .pr {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
#searchCountry .pr input, #searchCountry .pr select {
  border: none;
  outline: none;
  background-color: transparent;
  height: 40px;
  color: #d1291c;
  width: -moz-fit-content;
  width: fit-content;
  border: 1px solid #d1291c;
  padding: 0 40px 0 20px;
  border-radius: 5px;
  background-color: #fff;
}
#searchCountry .pr input::-moz-placeholder, #searchCountry .pr select::-moz-placeholder {
  color: rgba(209, 40, 28, 0.5490196078);
}
#searchCountry .pr input::placeholder, #searchCountry .pr select::placeholder {
  color: rgba(209, 40, 28, 0.5490196078);
}
#searchCountry .pr button {
  position: absolute;
  right: 15px;
  color: #d1291c;
  font-size: 1.2rem;
}/*# sourceMappingURL=style.css.map */