@font-face {
  font-family: AdobeArabic;
  src: url("../assets/fonts/ArbFONTS-22016-adobearabic.ttf");
}

@font-face {
  font-family: Poppins;
  src: url("../assets/fonts/Poppins-Regular.ttf");
}

*,
::before,
::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h6,
h5 {
  margin: 0;
}

/**[dir="rtl"] {*/
/*  font-family: AdobeArabic,  serif;*/
/*  !*font-size: 22px !important;*!*/
/*  font-size: 20px !important;*/
/*}*/

body {
  font-family: Poppins, serif;
  overflow-x: hidden;
}

a,
a:hover,
a:focus {
  text-decoration: none;
  color: inherit;
}

.boxContainerContact {
  padding: 20px !important;
  border-radius: 10px;
}

.boxContainerContact i {
  color: #05796b;
}

.boxContainerContact .locationIcon {
  font-size: 4rem;
  justify-self: center;
  text-align: center;
}
.boxContainerContact .locationIcon[dir="rtl"] {
  font-size: 8rem;
  justify-self: center;
  text-align: center;
}

.boxContainerContact .locationIconContainer {
  justify-content: center;
  text-align: center;
  display: flex;
 }

.imageAbout {
  width: 100%;
  height: 80%;
  object-fit: cover;
}

.sidebar.show ~ .page-content {
  margin-left: 250px;
}

.boxContainerContact {
  background-color: #f4f4f4;
}

.registerForm {
  background-color: #f1f1f1;
  box-shadow: 0 7px 10px #ccc;
  margin: 20px 0;
  border-radius: 10px;
}
.registerForm .headerContainer {
  background-color: #110F12;
  padding: 5px 10px;
  color: #FBE274;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.registerForm .headerContainer h2 {
  margin: 0;
}
.registerForm .row {
  padding: 20px;
}

.submitBtn {
  display: block;
  background-color: #2d3132;
  color: #fff;
  margin: 30px auto;
}
.submitBtn:hover {
  color: #fff;
}

nav .subNavAuth a {
  font-size: 0.75rem !important;
  color: #fff;
}

.dropdown-menu {
  background-color: #05796b;
}
.dropdown-menu a {
  color: white;
  text-align: center;
}
.dropdown-menu a.adobe {
  font-family: AdobeArabic;
  font-size: 1.3rem;
}
.dropdown-menu a:hover {
  background-color: #2d3132;
}

.btnn {
  position: absolute;
  top: 10px;
  left: 45px;
  height: 37px;
  width: 37px;
  text-align: center;
  background: #2d3132;
  border-radius: 3px;
  cursor: pointer;
  transition: left 0.4s ease;
}

.btnn.click {
  left: 260px;
}

.btnn span {
  color: white;
  font-size: 1rem;
  line-height: 36px;
}

.btnn.click span:before {
  content: "\f00d";
}

.sidebar {
  position: fixed;
  width: 250px;
  height: 100%;
  left: -250px;
  background: #2d3132;
  transition: left 0.4s ease;
}

.sidebar.show {
  left: 0px;
}

.sidebar .text {
  color: white;
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 65px;
  text-align: center;
  background: #1e1e1e;
  letter-spacing: 1px;
}

nav {
  background-color: #2d3132;
}
nav .nav-item a {
  color: white !important;
  cursor: pointer;
  font-size: 1rem;
}

nav.sidebar ul {
  background: #1b1b1b;
  height: 100%;
  width: 100%;
  list-style: none;
  padding-left: 10px;
}

nav.sidebar ul li {
  line-height: 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

nav.sidebar ul li:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

nav.sidebar ul li a {
  position: relative;
  color: white;
  text-decoration: none;
  font-size: 0.85rem;
  padding-left: 14px;
  font-weight: 500;
  display: block;
  width: 100%;
  border-left: 3px solid transparent;
}

nav.sidebar ul li.active a {
  color: #05796b;
  background: #1e1e1e;
  border-left-color: #05796b;
}

nav.sidebar ul li a:hover {
  background: #1e1e1e;
}

.feat-show {
  transition: all 0.5s;
}

nav.sidebar ul li.active ul {
  transition: all 0.5s;
}

nav.sidebar ul ul {
  position: static;
  display: none;
}

nav.sidebar ul.show {
  display: block;
  transition: all 0.5s;
}

nav.sidebar ul ul li {
  line-height: 42px;
  border-top: none;
}

nav.sidebar ul ul li a {
  font-size: 0.8rem;
  color: #e6e6e6;
}

nav.sidebar ul li.active ul li a {
  color: #e6e6e6;
  background: #1b1b1b;
  border-left-color: transparent;
}

nav.sidebar ul ul li a:hover {
  color: #05796b !important;
  background: #1e1e1e !important;
}

nav.sidebar a:hover {
  color: #05796b;
}

nav.sidebar ul li a span {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  font-size: 1rem;
  transition: transform 0.4s;
}

nav.sidebar ul li a span.rotate {
  transform: translateY(-50%) rotate(-180deg);
}

.content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #202020;
  z-index: -1;
  text-align: center;
}

.addPage {
  background-color: #f7f7f7;
  color: #05796b;
  padding: 5px 8px;
  border-radius: 4px;
}
.addPage:hover {
  color: #05796b;
}

.loginContentContainer.admin {
  background-color: #f4970a;
}

.loginContentContainer {
  background-color: #05796b;
  padding: 10px 30px;
  color: #fff;
}
.loginContentContainer img.logo {
  align-self: flex-start;
  width: 80px;
  height: 80px;
  object-fit: cover;
}
.loginContentContainer .loginContent {
  text-align: center;
}
.loginContentContainer .loginContent h5 {
  font-size: 1.1rem;
}
.loginContentContainer .loginContent p {
  font-size: 0.9rem !important;
}
.loginContentContainer span {
  font-size: 0.9rem;
}
.loginContentContainer .logoLoginContainer {
  width: 100%;
}

.login {
  width: 50%;
}
.login h4 + span {
  color: #2d3132;
}

.submitForm.admin {
  background-color: #f4970a;
}

.submitForm {
  background-color: #05796b;
  color: white;
  display: block;
  width: 100% !important;
  margin-top: 30px;
}
.submitForm:hover {
  color: #fff;
}

.page-content {
  transition: all 0.4s ease;
}
.page-content h4 {
  margin-bottom: 10px;
}
.page-content .headingBar {
  background-color: #2d3132;
  color: #fff;
  padding: 15px 20px;
}
.page-content .cvContainer {
  padding: 10px;
}
.page-content .cvContainer .imgOfAttach {
  box-shadow: 0 4px 8px #c1c1c1;
  max-width: 500px;
  max-height: 500px;
  object-fit: contain;
  text-align: center;
}
.page-content .form {
  margin: 30px 0;
}
.page-content .form .inputField {
  margin: 20px 0;
}
.page-content .form .inputField .box {
  background: linear-gradient(260.03deg, #05796b 29.17%, #33010f 100%);
  box-shadow: 5px 10px 5px rgba(204, 204, 204, 0.25);
  border-radius: 10px;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
}
.page-content .form .inputField .box .icon {
  width: 30%;
  text-align: center;
}
.page-content .form .inputField .box .icon i {
  font-size: 2rem;
}
.page-content .form .inputField .box .info {
  width: 70%;
  padding-left: 10px;
}
.page-content .form .inputField .box .info h4 {
  font-weight: bold;
}
.page-content .form .inputField .box .info h6 {
  font-size: 1rem;
  word-break: break-all;
}

@media screen and (min-width: 769px) {
  .sidebar.show + .page-content {
    padding-left: 250px;
  }
}

.header {
  position: relative;
}
.header img {
  width: 100%;
  height: 90vh;
  object-fit: cover;
}
.header .title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}
.header .title label {
  font-size: 0.9rem;
  color: white;
}
.header .bgFade {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #333;
  opacity: 0.5;
  z-index: 2;
}

table tr th {
  font-size: 1rem;
}

table tr td {
  font-size: 0.9rem;
}

.jobSection .jobBorder {
  padding: 0;
}
.jobSection .jobBorder .latestJobs {
  position: relative;
  height: 200px;
  width: 95%;
}
.jobSection .jobBorder .latestJobs img {
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.jobSection .jobBorder .latestJobs h5 {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 10;
  color: white;
  background: linear-gradient(260.03deg, #05796b 29.17%, #33010f 100%);
  text-align: center;
  padding: 5px 0;
}

.ads {
  position: relative;
  height: 94%;
  width: 95%;
}
.ads img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ads .bgFade {
  background-color: #2d3132;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.5;
  z-index: 6;
}
.ads h4 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  text-align: center;
  color: white;
  z-index: 10;
}

.headingTitle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  white-space: nowrap;
  color: #05796b;
}
.headingTitle::after {
  content: "";
  height: 2px;
  width: 100%;
  background-color: #05796b;
}

.inputField {
  margin: 0;
  padding: 0;
}
.inputField label {
  margin-bottom: 5px;
  font-size: 1rem;
}
.inputField .wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 5px;
}
.inputField .wrapper .option {
  height: 100%;
  width: 48%;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  border-radius: 5px;
  cursor: pointer;
  padding: 0 10px;
  border: 2px solid lightgrey;
  transition: all 0.3s ease;
}
.inputField .wrapper .option .dot {
  height: 20px;
  width: 20px;
  background: #d9d9d9;
  border-radius: 50%;
  position: relative;
}
.inputField .wrapper .option .dot::before {
  position: absolute;
  content: "";
  top: 4px;
  left: 4px;
  width: 12px;
  height: 12px;
  background: #2d3132;
  border-radius: 50%;
  opacity: 0;
  transform: scale(1.5);
  transition: all 0.3s ease;
}
.inputField input[type="radio"] {
  display: none;
}
.inputField #male:checked:checked ~ .option-1,
.inputField #female:checked:checked ~ .option-2 {
  border-color: #2d3132;
  background: #2d3132;
}
.inputField #male:checked:checked ~ .option-1 .dot,
.inputField #female:checked:checked ~ .option-2 .dot {
  background: #FBE274;
}
.inputField #male:checked:checked ~ .option-1 .dot::before,
.inputField #female:checked:checked ~ .option-2 .dot::before {
  opacity: 1;
  transform: scale(1);
}
.inputField .wrapper .option span {
  font-size: 1.1rem;
  color: #808080;
}
.inputField #male:checked:checked ~ .option-1 span,
.inputField #female:checked:checked ~ .option-2 span {
  color: #FBE274;
}
@media screen and (max-width: 350px) {
  .inputField .wrapper {
    flex-direction: column;
  }
  .inputField .option {
    margin: 5px 0 !important;
  }
}

.footer-basic {
  padding: 40px 0;
  background-color: #2d3132;
  color: #fff;
}

.footer-basic ul {
  padding: 0;
  list-style: none;
  text-align: center;
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 0;
}

.footer-basic li {
  padding: 0 10px;
}

.footer-basic ul a {
  color: inherit;
  text-decoration: none;
  opacity: 0.8;
}

.footer-basic ul a:hover {
  opacity: 1;
}

.footer-basic .social {
  text-align: center;
  padding-bottom: 25px;
}

.footer-basic .social > a {
  font-size: 24px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  border: 1px solid #ccc;
  margin: 0 8px;
  color: inherit;
  opacity: 0.75;
}

.footer-basic .social > a:hover {
  opacity: 0.9;
}

.footer-basic .copyright {
  margin-top: 15px;
  text-align: center;
  font-size: 13px;
  color: #aaa;
  margin-bottom: 0;
}

.objectFitCover {
  object-fit: cover;
  width: 100px;
  height: 100px;
}

.pagination li a {
  color: #fff;
  background-color: #2d3132;
}

.pagination li a:hover {
  color: #fff;
  background-color: #2d3132;
}

/* Credit to https://epicbootstrap.com/snippets/footer-basic */

.header-text{
  font-family: Poppins, serif;
  font-size: 32px !important;
}

.content-text{
  font-family: Poppins, serif;
  font-size: 16px !important;
}

.form-control-text{
  font-family: Poppins, serif;
  font-size: 16px !important;
}


body[dir="rtl"] .header-text {
  font-family: AdobeArabic,  serif;
  font-size: 34px !important;
}


body[dir="rtl"] .content-text {
  font-family: AdobeArabic,  serif;
  font-size: 24px !important;
}

body[dir="rtl"] .form-control-text {
  font-family: AdobeArabic,  serif;
  font-size: 20px !important;
}

.section-btn{
  height: 38px !important;
  width: 100%;
}


body[dir="rtl"] .section-btn{
  height: 44px !important;
  width: 100%;
}

/*!* Media query for ltr direction *!*/
/*@media (min-width: 0) {*/
/*  !* If the direction is ltr, apply this font *!*/
/*  :root {*/
/*    direction: ltr;*/
/*  }*/

/*  .header-text {*/
/*    font-family: Poppins, serif;*/
/*    font-size: 20px !important;*/
/*  }*/
/*}*/

/*!* Media query for rtl direction *!*/
/*@media (min-width: 0) {*/
/*  !* If the direction is rtl, apply this font *!*/
/*  :root {*/
/*    direction: rtl;*/
/*  }*/

/*  .header-text {*/
/*    font-family: AdobeArabic,  serif;*/
/*    font-size: 34px !important;*/
/*  }*/
/*}*/