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

:root {
  --color-white: #fff;
  --color-black: #000;
  --color-primary: #121212;
  --color-second: #caab66;
  --color-text2: #e1bb64;
  --color-text: #5f5f5f;
  --color-text3: #9c9ea3;
  --color-border: #dfe3e8;
}
li {
  display: block;
}

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

html {
  --scrollbarBG: #fff;
  --thumbBG: var(--color-second);
}

html,
body {
  height: 100%;
}
*:focus {
  outline: none;
}
button:focus,
a {
  outline: none;
}

a {
  text-decoration: none !important;
  color: var(--color-main);
  font-size: 17px;
}

ul {
  margin: auto;
  padding: 0;
}

img {
  max-width: 100%;
  user-select: none;
}

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

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

h2 {
  font-size: 20px;
  margin: 0;
}

h3 {
  font-size: 18px;
  margin: 0;
}

h4 {
  font-size: 16px;

  margin: 0;

  line-height: 30px;
}

p {
  font-size: 19px;
  margin: 0;
  line-height: 30px;
  color: var(--color-text);
}
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: var(--color-white) !important;
  background-color: var(--color-second) !important;
}

body {
  background: #f5f5f5;
  font-family: "font_main";
  font-weight: 400;
  padding: 0;
  margin: auto;
  position: relative;
  z-index: 1;
  color: var(--color-main);
  overflow-x: hidden;
}

body {
  scrollbar-width: thin;
  scrollbar-color: var(--thumbBG) var(--scrollbarBG);
}

body::-webkit-scrollbar-track {
  background: var(--scrollbarBG);
}

body::-webkit-scrollbar-thumb {
  background-color: var(--thumbBG);
  border-radius: 0;
  border: 0 solid var(--scrollbarBG);
}

body::-webkit-scrollbar {
  width: 11px;
}

.pg_none {
  padding: 0;
  margin: 0;
}

#app {
  flex: 1 0 auto;
  overflow: hidden;
}

.not_found {
  text-align: center;
  margin: 50px 0;
  font-size: 25px;
  color: var(--color-text);
}
.menu-div {
  display: none;
}
.navicon {
  color: var(--color-primary);
  cursor: pointer;
  height: 18px;
  transform: rotate(0deg) scaleX(-1);
  transition: 0.2s ease-in-out;
  width: 27px;
}

.navicon__item {
  background: var(--color-primary);
  border-radius: 70px;
  display: block;
  height: 2px;
  left: 0;
  opacity: 1;
  position: absolute;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
  width: 100%;
}

.navicon__item:nth-child(1) {
  top: 0;
}
.navicon.is-active .navicon__item:nth-child(1) {
  left: 50%;
  top: 8px;
  width: 0;
}
.navicon:hover .navicon__item:nth-child(2),
.navicon:hover .navicon__item:nth-child(3) {
  width: 75%;
}
.navicon__item:nth-child(2) {
  top: 8px;
}
.navicon.is-active .navicon__item:nth-child(2) {
  transform: rotate(45deg);
  width: 100%;
}
.navicon__item:nth-child(3) {
  top: 8px;
}
.navicon.is-active .navicon__item:nth-child(3) {
  transform: rotate(-45deg);
  width: 100%;
}
.navicon__item:nth-child(4) {
  top: 16px;
}

.navicon.is-active .navicon__item:nth-child(4) {
  left: 50%;
  top: 8px;
  width: 0;
}

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

/* mune_respossive */

.menu_responsive {
  position: fixed;
  box-shadow: 0 0 4px #23232359;
  z-index: 99999;
  width: 310px;
  justify-content: center;
  display: flex;
  flex-wrap: wrap;
  height: 100%;
  overflow: auto;
  background: var(--color-white);

  align-items: center;
  gap: 20px;
  overflow-x: hidden;
  top: 0;
  right: 0;
  transition: all 0.3s linear;
  padding: 25px 0;
  transform: translateX(102%);
}

.element_menu_responsive > ul {
  margin: 0 auto 0 0;
  padding: 30px 50px 0 0;
}

.element_menu_responsive {
  width: 100%;
}
.element_menu_responsive > ul > li {
  display: block;
  margin: 35px 0;
  position: relative;
}
.element_menu_responsive > ul > li > a {
  font-size: 20px;
  font-family: "font_main";
  color: var(--color-main);
  display: flex;
  gap: 15px;
}
.element_menu_responsive ul li:hover a {
  color: var(--color-main);
}

.menu_responsive.active {
  transform: translateX(0);
}

.media_responsive ul li {
  display: inline-block;
}

.media_responsive {
  text-align: center;
}

.media_responsive ul li {
  margin: 0 10px;
}

.logo_menu {
  width: 100%;
  margin: 0 auto;
}

.logo_menu img {
  max-width: 50%;
}
.title_personal_data i {
  vertical-align: text-bottom;
  display: inline-block;
  margin: 0 0 0 10px;
}

.input-form {
  margin: 15px 0;
}
.input-form > label {
  color: var(--color-text);
  margin-bottom: 10px;
  font-size: 18px;
  width: 100%;
  text-align: right;
}
.mt-10 {
  margin-top: 60px;
}
.form-control {
  height: 52px;
  border-radius: 5px;
  padding-right: 20px;
  padding-left: 20px;
  background-color: #f5f5f559;
  border: 1px solid #e0e4ecf3;
}

.form-control::placeholder {
  color: #939393;
}
.form-control:focus {
  box-shadow: none;
  border-color: var(--color-second);
  color: var(--color-text);
}

textarea {
  height: 170px !important;
  resize: none;
  border: 1px solid #e0e4ecf3;
}

.mr-section {
  margin: 90px 0;
}

.pg-section {
  padding: 90px 0;
}
.bg_menu {
  background-color: var(--color-white);
  width: 100%;
  z-index: -1;
}
.bg_menu {
  background-color: #23232338;
  width: 100%;
  height: 100vh;
  position: fixed;
  z-index: 27;
  top: 0;
  transition: all 0.3s linear;
  transform: translateX(-100%);
}

.bg_menu.active {
  transform: translateX(0%);
}

.dropdowm-language-mune ul li,
.dropdowm-element-mune ul li {
  margin: 20px 0;
}
.dropdowm-element-mune ul li a {
  font-size: 16px;
}
.dropdowm-language-mune ul li a,
.dropdowm-element-mune ul li {
  padding-right: 25px;
  position: relative;
  font-size: 17px;
}
.dropdowm-language-mune ul li a::after,
.dropdowm-element-mune ul li::after {
  content: "";
  position: absolute;
  width: 20px;
  background-image: url(../images/arrow.png);
  height: 20px;
  background-position: center;
  background-size: contain;
  right: 0;
  background-repeat: no-repeat;
  top: 60%;
  transform: translateY(-50%);
}

.dropdowm-language-mune,
.dropdowm-element-mune {
  display: none;
}
select {
  appearance: none;
}
.arrow-select {
  position: relative;
}
.arrow-select::after {
  content: "";
  width: 17px;
  height: 17px;
  background-image: url(../images/arrow-d.png);
  background-size: contain;
  position: absolute;
  background-repeat: no-repeat;
  background-position: center;
  top: 18px;
  left: 20px;
}

.not-found {
  height: 550px;
  width: 100%;
  display: flex;
  display: none;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  align-content: center;
}

.not-found h2 {
  text-align: center;
  width: 100%;
}

.not-found.active {
  display: block;
}

