/* Start varibles */

:root {
  --main-color-gradient: linear-gradient(
    to left,
    #000000,
    #666666 70%
  );

  --white-color: #fff;
  --black-color: #000;
  --main-color: #213448;
  --second-color: #547792;
  --third-color: #94B4C1;
  --shdow-ligh-color: rgb(255, 255, 255,0.4);
  --shdow-dark-color: rgb(0, 0, 0, 0.25);


}

/* End varibles */


/* Start fonts */

@font-face {
  font-family: "arslan";
  src: url("../fonts/arslan.woff2") format("woff2");
  font-style: normal;
  font-display: swap;
}


/* End fonts */

/* Start Global rules */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  transition: 0.3s;
  scroll-behavior: smooth;

}

body {
  user-select: none;
  cursor: default;
  font-family: "Cairo";
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* Internet Explorer 10+ */
  background-color: #fff;


}


body::after {
  content: "";
  background-image: url(../img/bg-body.svg);
  background-size: cover;
  background-position: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -50;
}

@media only screen and (max-width: 935px) {
  body::after {
    background-size: contain;
  }
}

body > *:not(script) {
  flex-shrink: 0;
}


/* Start special-heading */

.special-heading {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 40px;
}

.special-heading h2 {
  font-family: "arslan";
  font-size: 50px;
  text-align: center;
  margin-bottom: 0 !important;
  color: var(--main-color);
}

.special-heading span {
  display: block;
  width: 7px;
  height: 40px;
  border-radius: 30px;
  background-color: var(--third-color);
}

/* End special-heading */