@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&display=swap");
/* Start Default */
* {
  /* margin: 0;
  padding: 0; */
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
}

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

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

/* body {
  width: 100%;
  overflow-x: hidden !important;
} */
body::-webkit-scrollbar {
  width: 7px;
}

body::-webkit-scrollbar-thumb {
  background: #B69B79;
}

@media (max-width: 900px) {
  body::-webkit-scrollbar {
    width: 0px;
  }
}
html {
  /* width: 100%;
  scroll-behavior: smooth; */
  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 #eb683f;
  border-radius: 4px;
  outline: none;
  transition: 0.3s;
} */

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

/* Style the checkmark inside the checkbox
input[type=checkbox]::before {
  content: "✓";
  display: block;
  width: 16px;
  height: 16px;
  margin: 2px;
  font-size: 16px;
  color: #fff; 
  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;
} */


.clients {
  display: flex;
  justify-content: center;
}
.clients .btn img {
  width: 7px;
}

.mySwiper {
  width: 100%;
  height: 100%;
}
.mySwiper .swiper-slide {
  border-radius: 5px;
  overflow: hidden;
  width: 265px !important;
  margin-right: 20px;
}

.client {
  width: 265px;
  height: 265px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid;
  border-image-slice: 1;
  border-width: 5px;
  /* background-image: linear-gradient(to left, #dbcdbc, #b69b79); */
  border-image-source: linear-gradient(to bottom, #dbcdbc, #b69b79);
}
.client img {
  width: 99%;
  height: 99%;
  /* -o-object-fit: contain;
  object-fit: contain; */
}