@font-face {
  font-family: "din";
  font-style: normal;
  font-weight: 400;
  src: url(../fonts/DINNextLTArabic-Regular-3.ttf) format("truetype");
}

@font-face {
  font-family: "din";
  font-style: normal;
  font-weight: 500;
  src: url(../fonts/DINNextLTArabic-Regular-3.ttf) format("truetype");
}

@font-face {
  font-family: "din";
  font-style: normal;
  font-weight: 700;
  src: url(../fonts/DINNextLTArabic-Bold-4.ttf) format("truetype");
}

:root {
  --whiteColor: #fff;
  --darkblueColor: #232a50;
  --primary1: #1d5375;
  --primary2: #2f6c89;
  --primary3: #184157;
  --lightGray: #efefef;
  --lightBlue: rgba(204, 229, 242, 0.412);
}

* {
  scrollbar-width: thin;
  scrollbar-color: #c6cdde;
}

*,
::after,
::before {
  box-sizing: border-box;
}

::-webkit-scrollbar {
  width: 7px;
  background: #fff;
}

::-webkit-scrollbar-thumb {
  background-color: #c6cdde;
  border-radius: 46px;
}

b,
strong {
  font-weight: 700;
}
a {
  color: var(--primary);
}

html {
  position: relative;
  min-height: 100%;
}

body {
  font-family: "din", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 20px;
  line-height: 26px;
  background: var(--whiteColor);
  overflow-x: hidden;
}

html[lang="ar"] body {
  direction: rtl;
  text-align: right;
}

::-moz-selection {
  color: var(--whiteColor);
  background: var(--primary2);
}

::selection {
  color: var(--whiteColor);
  background: var(--primary2);
}

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background: url(../images/icons/white-logo.png) 50% 50% no-repeat
    var(--darkblueColor);
  background-size: 100px;
}

img {
  max-width: 100%;
}

a,
button {
  text-decoration: none;
  transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
}

button:active,
button:focus,
button:hover,
input:active,
input:focus,
input:hover,
textarea:active,
textarea:focus,
textarea:hover,
select:hover,
select:focus,
input[type="checkbox"]:hover,
input[type="checkbox"]:focus {
  box-shadow: none !important;
  outline: 0 !important;
}

.form-control {
  height: auto;
}

a:focus {
  outline: 0;
  border: none;
}

.nav {
  font-family: "din", sans-serif;
  color: var(--primary);
}

h1 {
  font-family: "din", sans-serif;
  font-size: 54px;
  line-height: 68px;
  font-weight: 700;
  color: var(--primary);
}

h2 {
  font-family: "din", sans-serif;
  font-size: 45px;
  line-height: 56px;
  font-weight: 700;
  color: var(--primary);
}

h3 {
  font-family: "din", sans-serif;
  font-size: 30px;
  line-height: 38px;
  color: var(--primary);
}

h4 {
  font-family: "din", sans-serif;

  font-size: 24px;
  line-height: 28px;
  font-weight: bold;
  color: var(--primary);
}

h5 {
  font-family: "din", sans-serif;

  font-size: 22px;
  line-height: 28px;
  margin-bottom: 1.2rem;
  font-weight: bold;
  color: var(--primary);
}

p,
li {
  line-height: 180%;
  font-size: 14px;
}

.clear {
  clear: both;
}

.container-fluid {
  width: 95%;
  max-width: 1500px;
}
.form-control {
  display: block;
  width: 100%;
  height: auto;
  padding: 0.375rem 1.5rem;
  font-size: 1rem;
  font-weight: 400;
  color: var(--primary);
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #e5e7eb;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
