
@font-face {
    font-family: 'DM-Bold';
    src: url('Fonts/DM_Sans/DMSans-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'DM-BoldItalic';
    src: url('Fonts/DM_Sans/DMSans-BoldItalic.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'DM-Italic';
    src: url('Fonts/DM_Sans/DMSans-Italic.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'DM-Medium';
    src: url('Fonts/DM_Sans/DMSans-Medium.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'DM-Regular';
    src: url('Fonts/DM_Sans/DMSans-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'DM-Medium-Italic';
    src: url('Fonts/DM_Sans/DMSans-MediumItalic.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}


html, body {
  padding: 0;
  margin: 0;
  background-color: #f8f8fa;
  text-shadow: 0 0 0 transparent; /* Set shadow color to transparent */
  text-rendering: optimizeLegibility;
  -webkit-text-rendering: optimizeLegibility; /* For WebKit browsers like Chrome and Safari */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased;
}

body::-webkit-scrollbar {
  display: none;
}

body b, body i {
  font-weight: normal;
  font-style: normal;
}

a {
    text-decoration: none;
    cursor: pointer;
}

a:visited {
    text-decoration: none;
}

.logo {
  position: fixed;
  top: 25px;
  left: 25px;
  height: 50px;
  width: auto;
  z-index: 2;
}

.logoP, .productsP {
  position: absolute!important;
}

.logo img {
  max-height: 100%;
}

.products {
  position: fixed;
  top: 25px;
  right: 40px;
  height: 30px;
  width: auto;
  cursor: pointer;
  z-index: 2;
}

.products img {
  max-height: 100%;
}

.products:hover {
  cursor: pointer;
  transform: rotate(-45deg);
}


.container {
  position: relative;
  float: left;
  /* position: absolute; */
  top: 0;
  left: 0;
  width: 100%;
  min-height: 100vh;
  height: fit-content;
  background: url('img/granulated-pattern.png');
  background-repeat: repeat-y;
  background-size: auto auto;
  padding-bottom: 40px;
}

.row {
  float: left;
  width: 90vw;
  margin-left: 5vw;
  height: fit-content;
  margin-top: 50px;
  margin-bottom: 50px;
  display: flex;
}

.row img {
  width: auto;
  height: 22.2vw;
}

.container .row:nth-child(1) img {
  height: 26vw; /* Adjust height for the image in the fifth row */
}
.container .row:nth-child(2) img {
  height: 15vw; /* Adjust height for the image in the fifth row */
}

.container .row:nth-child(5) img {
  height: 55vw; /* Adjust height for the image in the fifth row */
}

.container .row:nth-child(6) img {
  height: 28vw; /* Adjust height for the image in the fifth row */
}


.text {
  width: 22.2vw;
  height: fit-content;
  padding: 10px;
  background-color: white;
  font-family: 'DM-Regular', sans-serif;
  font-style: normal;
  border: 0.5px solid black;
}

.text b {
  font-family: 'DM-Medium', sans-serif;
  font-style: normal;
}


/* PRODUCTS PAGE */
.box {
  float: left;
  margin-top: 125px;
  width: 58vw;
  margin-left: 5vw;
  position: relative;
}
.box img{
  height: auto;
  max-height: 90%;
  max-width: 94%;
  margin: auto;
  position: absolute;
  top: 2%;
  left: 0;
  right: 1%;
  bottom: 0;
}

.boxLeft {
  float: left;
  display: flex; /* Use flexbox */
  flex-direction: column; /* Stack children vertically */
  max-width: 30vw;
  margin-top: 125px;
  min-height: calc(100vh - 200px);
  height: fit-content;
  background-color: white;
  border: 0.5px solid black;
  margin-left: 25px;
  overflow: hidden;
}

.boxtextBIG {
  width: fit-content;
  margin-top: 10px;
  margin-bottom: 5px;
  overflow-y: scroll;
  margin-left: 25px;
  direction: rtl;
}

.bold {
  opacity: 1!important;
}

.inner {
  direction: ltr;
}

.BoxDecBIG {
  width: calc(100% - 50px);
  max-height: 40%;
  text-align: left;
  overflow: auto;
  margin-left: 25px;
  margin-top: auto; /* Push to the bottom */
  margin-bottom: 20px; /* Add space below */
}

.BoxDecBIG p {
  font-family: 'DM-Regular', sans-serif;
  font-style: normal;
  font-size: 18px;
}

.BoxDecBIG b {
  font-family: 'DM-Medium', sans-serif;
}

.boxtextBIG::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 0px black ;
	border-radius: 10px;
	background-color: transparent;
  border-left: 2.25px solid transparent;
  border-right: 2.25px solid transparent;
  margin-top: 1%;
  margin-bottom: 18px;
  display: none;
}
.boxtextBIG::-webkit-scrollbar {
	width: 5px;
	background-color: transparent;
  display: none;
}
.boxtextBIG::-webkit-scrollbar-thumb {
	background-color: black;
  border-radius: 10px;
  border-bottom: solid 15px black;
  display: none;
}

.boxtext{
  float: left;
  width: auto;
  height: auto;
  clear: left;
  margin-top: 1.5vh;
  /* margin-left: 10px; */
  line-height: 0;
  border-bottom: 0.5px solid gray ;
  opacity: 0.7;
}

.bottom {
  float: left;
  width: auto;
  height: auto;
  clear: left;
  margin-top: 5px;
  margin-left: 10px;
}

.boxtext:hover {
  cursor: pointer;
  font-family: 'DM-Medium', sans-serif;
  border-bottom: 1px solid gray ;
}

.boxtext p {
  float: left;
  left: 0;
  top:0;
  font-family: 'DM-Regular', sans-serif;
  font-size: 19px;
  z-index: 24;
  line-height: 0px;
  text-align: left;
}

.bottom p {
  float: left;
  left: 0;
  top:0;
  font-family: Roboto;
  font-size: 0.5vw;
  font-weight: 200;
  z-index: 24;
  line-height: 0px;
  text-align: left;
}

.hide {
  display:none;
}

/* PRODUCTS PAGE END */


.footer {
  position: fixed;
  left: 0;
  bottom: 0;
  width: calc(100vw - 60px);
  margin-left: 30px;
  height: 35px;
  z-index: 2;
  opacity: 0.7;
}

.footerP {
  margin-top: 70px;
  height: 0px;
  position: relative!important;
  float: left;
  padding-bottom: -20px;
}


.contactOUT, .copyright {
  font-family: 'DM-Regular', sans-serif;
  font-style: normal;
}
.contactOUT {
  float: right;
  font-size: 16px;
}
.copyright {
  float: left;
  font-size: 14px;
  margin-top: 1.5px;
}
.contactIN {
  font-size: 14px;
  margin-right: 15px;
  margin-top: 1.5px;
  float: right;
  width: fit-content;
  font-family: "DM-Regular", sans-serif;
  font-style: normal;
}

 .contact {
  float: right;
  width: 50%;
  cursor: pointer;
}


@media (min-width: 1880px) {


}

@media (min-width: 1600px) {


}

@media (min-width: 1180px) and (max-width: 1280px) {

  .row img {
    width: auto;
    height: 27.2vw;
  }

  .container .row:nth-child(1) img {
    height: 31vw; /* Adjust height for the image in the fifth row */
  }
  .container .row:nth-child(2) img {
    height: 20vw; /* Adjust height for the image in the fifth row */
  }

  .container .row:nth-child(5) img {
    height: 65vw; /* Adjust height for the image in the fifth row */
  }

  .container .row:nth-child(6) img {
    height: 32vw; /* Adjust height for the image in the fifth row */
  }

  .boxtext p {
    font-size: 17px;
  }
  .BoxDecBIG p {
    font-size: 16px;
  }

}

@media (min-width: 885px) and (max-width: 1180px) {


    .row img {
      width: auto;
      height: 32.2vw;
    }

    .container .row:nth-child(1) img {
      height: 36vw; /* Adjust height for the image in the fifth row */
    }
    .container .row:nth-child(2) img {
      height: 25vw; /* Adjust height for the image in the fifth row */
    }

    .container .row:nth-child(5) img {
      height: 75vw; /* Adjust height for the image in the fifth row */
    }

    .container .row:nth-child(6) img {
      height: 37vw; /* Adjust height for the image in the fifth row */
    }

    .boxtext p {
      font-size: 16px;
      overflow-wrap: break-word;
    }
    .BoxDecBIG p {
      font-size: 15px;
    }

    .boxLeft {
      max-width: 34vw;
      min-height: calc(100vh - 300px);
    }
    .box {
      width: 52vw;
      /* margin-left: 3vw; */
    }


}

@media (min-width: 100px) and (max-width: 884px) {

  .boxLeft {
    max-width: calc(100vw - 55px);
    min-height: calc(50vh - 300px);
    clear: both;
    display: initial;
  }
  .boxtextBIG {
    float: left;
    border-right: 0.5px solid gray;
    padding-right: 25px;
  }
  .box {
    width: calc(100vw - 55px);
    clear: both;
    margin-top: 50px;
    height: calc(50vh - 75px)!important;
    margin-left: 25px;
  }
  .box img {
    max-width: 100%;
    max-height: 100%;
    top: 0;
  }

}


@media (min-width: 600px) and (max-width: 884px)  {

  .boxLeft {
    min-width: calc(100vw - 65px);
  }

  .row img {
    width: auto;
    height: 37.2vw;
  }

  .container .row:nth-child(1) img {
    height: 41vw; /* Adjust height for the image in the fifth row */
  }
  .container .row:nth-child(2) img {
    height: 30vw; /* Adjust height for the image in the fifth row */
  }

  .container .row:nth-child(5) img {
    height: 80vw; /* Adjust height for the image in the fifth row */
  }

  .container .row:nth-child(6) img {
    height: 42vw; /* Adjust height for the image in the fifth row */
  }

  .text {
    width: 42vw;
  }

  .boxtext p {
    font-size: 16px;
    overflow-wrap: break-word;
  }
  .BoxDecBIG {
    width: calc(50% - 50px);
    margin-top: 15px;
  }
  .BoxDecBIG p {
    font-size: 15px;
    margin-left: 25px;
  }


}

@media (min-width: 100px) and (max-width: 600px) {

  .logo {
    left: 15px;
  }

  .products {
    right: 20px;
    height: 25px;
  }

  .logo {
    height: 40px;
  }

  .row img {
    width: auto;
    height: 42.2vw;
  }

  .container .row:nth-child(1) img {
    height: 46vw; /* Adjust height for the image in the fifth row */
  }
  .container .row:nth-child(2) img {
    height: 35vw; /* Adjust height for the image in the fifth row */
  }

  .container .row:nth-child(5) img {
    height: 85vw; /* Adjust height for the image in the fifth row */
  }

  .container .row:nth-child(6) img {
    height: 47vw; /* Adjust height for the image in the fifth row */
  }

  /* PRODUCTSPAGE */
  .boxtext p {
    font-size: 15px;
    overflow-wrap: break-word;
  }
  .boxtext b {
    display: none;
  }
  .BoxDecBIG {
    width: auto;
    margin-top: 12px;
    padding-right: 10px;
  }
  .BoxDecBIG p {
    font-size: 14px;
    margin-left: 15px;
  }
  .boxtextBIG {
    margin-left: 15px;
    padding-right: 15px;
  }
/*
  .boxtextBIG::-webkit-scrollbar-track {
    margin-bottom: 0px;
  } */

  .text {
    width: 62vw;
    font-size: 14px;
  }

  .contact, .copyright {
    font-size: 12px;
  }

  .copyright {
    margin-right: 0px;
    margin-top: 3px;
  }

  .footer {
    width: calc(100vw - 30px);
    margin-left: 15px;
  }

  .contact {
    margin-right: 0px;
  }

  .contactOUT {
    font-size: 14px;
  }

  .contactIN {
   font-size: 13px;
   float: left;
   margin-left: 0px;
   margin-right: 0px;
   margin-top: 1.2px;
   letter-spacing: -0.5px;
  }


}
