@font-face {
  font-family: "font_bold";
  src: url("../fonts/IBMPlexSansArabic-Bold.ttf");
}

@font-face {
  font-family: "font_medium";
  src: url("../fonts/IBMPlexSansArabic-Medium.ttf");
}

@font-face {
  font-family: "font_SemiBold";
  src: url("../fonts/IBMPlexSansArabic-SemiBold.ttf");
}

@font-face {
  font-family: "font_main";
  src: url("../fonts/IBMPlexSansArabic-Regular.ttf");
}

html.has-scroll-smooth {
  overflow: hidden;
}

html.has-scroll-dragging {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.has-scroll-smooth body {
  overflow: hidden;
}

.has-scroll-smooth [data-scroll-container] {
  min-height: 100vh;
}

[data-scroll-direction="horizontal"] [data-scroll-container] {
  height: 100vh;
  display: inline-block;
  white-space: nowrap;
}

[data-scroll-direction="horizontal"] [data-scroll-section] {
  display: inline-block;
  vertical-align: top;
  white-space: nowrap;
  height: 100%;
}

.c-scrollbar {
  position: absolute;
  right: 0;
  top: 0;
  width: 11px;
  height: 100%;
  transform-origin: center right;
  transition: transform 0.3s, opacity 0.3s;
  opacity: 0;
}

.c-scrollbar:hover {
  transform: scaleX(1.45);
}

.c-scrollbar:hover,
.has-scroll-scrolling .c-scrollbar,
.has-scroll-dragging .c-scrollbar {
  opacity: 1;
}

[data-scroll-direction="horizontal"] .c-scrollbar {
  width: 100%;
  height: 10px;
  top: auto;
  bottom: 0;
  transform: scaleY(1);
}

[data-scroll-direction="horizontal"] .c-scrollbar:hover {
  transform: scaleY(1.3);
}

.c-scrollbar_thumb {
  position: absolute;
  top: 0;
  right: 0;
  background-color: black;
  opacity: 0.5;
  width: 7px;
  border-radius: 10px;
  margin: 2px;
  cursor: -webkit-grab;
  cursor: grab;
}

.has-scroll-dragging .c-scrollbar_thumb {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

[data-scroll-direction="horizontal"] .c-scrollbar_thumb {
  right: auto;
  bottom: 0;
}

.c-scrollbar {
  position: absolute;
  right: 0;
  top: 0;
  width: 11px;
  height: 100%;
  transform-origin: center right;
  transition: transform 0.3s, opacity 0.3s;
  opacity: 0;

  &:hover {
    transform: scaleX(1.45);
  }

  &:hover,
  .has-scroll-scrolling &,
  .has-scroll-dragging & {
    opacity: 1;
  }

  [data-scroll-direction="horizontal"] & {
    width: 100%;
    height: 10px;
    top: auto;
    bottom: 0;
    transform: scaleY(1);

    &:hover {
      transform: scaleY(1.3);
    }
  }
}

.c-scrollbar_thumb {
  position: absolute;
  top: 0;
  right: 0;
  background-color: black;
  opacity: 0.5;
  width: 7px;
  border-radius: 10px;
  margin: 2px;
  cursor: grab;

  .has-scroll-dragging & {
    cursor: grabbing;
  }

  [data-scroll-direction="horizontal"] & {
    right: auto;
    bottom: 0;
  }
}

html {
  --scrollbarBG: #d3d0d05b;
  --thumbBG: #2f42c0;
}

* {
  text-decoration: none;
  outline: none;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

html,
body {
  height: 100%;
}

*:focus {
  outline: none;
}

button:focus,
a {
  outline: none;
}

a {
  color: #3b3b3b;
  text-decoration: none !important;
  font-family: "font_main";
}

ul {
  margin: auto;
  padding: 0;
}

img {
  max-width: 100%;
}

input,
button {
  font-family: "font_main";
}

h1 {
  font-size: 40px;
  font-family: "font_bold";
}

h2 {
  font-size: 19px;
  font-family: "font_SemiBold";
  line-height: 33px;
  margin: 0;
}

h3 {
  font-size: 16px;
  margin: 0;
  font-family: "font_main";
}

h4 {
  font-size: 15px;
}

p {
  font-size: 16px;
  margin: 0;
  line-height: 35px;
  color: #414141;
}

a,
button,
img,
.form-control {
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

::selection {
  color: #fff !important;
  background-color: #232323 !important;
}

body {
  background: #fff;
  font-family: "font_main";
  font-weight: 400;
  padding: 0;
  margin: auto;
  position: relative;
  z-index: 1;
  color: #232323;
  overflow-x: hidden;
}

.main-container {
  width: 90%;
  margin: auto;
}

.mr-section {
  margin-top: 90px;
  margin-bottom: 90px;
}
.br-section {
  padding: 90px 0;
}

.color {
  color: #fff;
}

/* .item {
    margin: 5px;
}  */

.row-gap {
  row-gap: 15px;
}
