* {
  direction: rtl;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--mainFontFamily);
}
:root {
  --mainColor: #10276a;
  --secondColor: #ffffff;
  --thirdColor: #f4a825;
  --mainFontFamily: "Cairo", sans-serif;
  --mainFontSize: 15px;
  --borderRadius: 5px;
}
/* start nav */
nav .nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
}
nav .dataNav {
  display: flex;
  gap: 20px;
  margin-bottom: 10px;
}
nav .dataNav img {
  width: 80px;
}
nav .dataNav .text h5 {
  font-size: 15px;
}
nav .dataNav .text p {
  color: #979797;
  font-size: 12px;
  margin-bottom: 5px;
}
nav .buttons button {
  background-color: #3485b9;
  width: 177px;
  height: 44px;
  color: #fff;
  border: none;
  border-radius: 6px;
}
nav .buttons button i {
  margin-left: 5px;
}
nav .buttons .btn-danger {
  background-color: #ef1d1d;
  width: 133px;
}
/* end nav */
/* start result */
.result {
  padding-top: 80px;
}
.result h4 {
  margin-bottom: 30px;
  font-weight: 700;
}
.result p {
  font-weight: 700;
}
.result .tables {
  display: flex;
  justify-content: space-between;
}
/* end result */
/* start GeneralSectionPreparation */
.GeneralSectionPreparation {
  margin-top: 40px;
}
.GeneralSectionPreparation h4 {
  margin-bottom: 30px;
  font-weight: 700;
}
.GeneralSectionPreparation .tables {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
.GeneralSectionPreparation .tables .background {
  padding:40px 20px;
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0px 20px 60px #0000000f;
  margin-bottom: 20px;
}
.GeneralSectionPreparation .btnTables {
  direction: ltr;
  margin-top: 15px;
}
.GeneralSectionPreparation .btnTables button {
  width: 200px;
  height: 40px;
  border: none;
  border-radius: 6px;
  color: #fff;
  background-color: #52ff42;
}
.GeneralSectionPreparation .btnTables .second {
  width: 140px;
  background-color: #1215aa94;
  margin-left: 5px;
}
.GeneralSectionPreparation .btnTables .second i {
  margin-left: 5px;
}

/* end .GeneralSectionPreparation */
/* ================= Start Footer ================= */
footer {
  margin-top: 80px;
  background-color: #3485b9;
  padding: 10px;
}
.one,
.two,
.three,
.four {
  margin-top: 20px;
}

footer .location {
  margin-top: 10px;
  width: 50%;
}
footer i {
  color: var(--thirdColor);
  margin-left: 5px;
}
footer .location span {
  color: #fff;
  line-height: 1.7;
}
footer a {
  text-decoration: none;
  color: #fff;
}
footer .data h5 {
  color: white;
  line-height: 2;
  font-size: 15px;
}
footer .ff img {
  padding: 5px;
  position: relative;
  right: 50%;
  transform: translate(50%);
}

/*================= End Footer ================= */
