@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+Arabic:wght@100..900&display=swap");
:root {
  --primary: #b0984f;
  --secondary: #1d8e5a;
  --gold-light: #efeadc;
  --grey: #727170;
  --grey-light: rgb(102 124 144 / 10%);
  --dark: #111928;
  --purple: #912df5;
  --filterPrimary: invert(0%) sepia(100%) saturate(19%) hue-rotate(19deg)
    brightness(101%) contrast(106%);
  --filterSecondary: invert(0%) sepia(100%) saturate(19%) hue-rotate(19deg)
    brightness(101%) contrast(106%);
  --filterWhite: invert(99%) sepia(0%) saturate(4787%) hue-rotate(41deg)
    brightness(127%) contrast(96%);
}

* {
  margin: 0px;
  box-sizing: border-box;
  text-decoration: none;
  font-family: "Noto Sans Arabic", sans-serif;
  scroll-behavior: smooth;
}
*::-moz-selection {
  background-color: var(--primary);
  color: #fff;
}
*::selection {
  background-color: var(--primary);
  color: #fff;
}
*::-webkit-scrollbar {
  width: 7px;
}
*::-webkit-scrollbar-track {
  background-color: #eee;
}
*::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 8px;
}

body {
  direction: rtl;
  overflow-x: hidden;
}

div::-webkit-scrollbar,
ul::-webkit-scrollbar,
nav::-webkit-scrollbar {
  height: 5px;
}

.font_lexend {
  font-family: "Lexend", sans-serif;
}

.font_cinzel {
  font-family: "Cinzel Decorative", serif;
}

.font_roboto {
  font-family: "Roboto Slab", serif;
}

.font_inter {
  font-family: "Inter", sans-serif;
}

/**********************************************
   Start Global Style
**********************************************/
.color-gray {
  color: #ccc;
}

.color-grey {
  color: var(--grey);
}

.color-gray2 {
  color: #888;
}

.color-primary {
  color: var(--primary);
}

.color-secondary {
  color: var(--secondary);
}

.color-purple {
  color: var(--purple);
}

.color-dark {
  color: var(--dark);
}

.filterPrimary {
  filter: var(--filterPrimary);
}

.filterSecondary {
  filter: var(--filterSecondary);
}

.filterWhite {
  filter: var(--filterWhite);
}

p,
.p {
  font-size: 15px;
  color: #555;
  line-height: 1.7rem;
  margin-bottom: 0;
}

a {
  color: #000;
  transition: all 0.3s ease-in-out;
  text-decoration: none !important;
}
a:hover {
  color: var(--primary) !important;
}
a:focus {
  outline: 0;
}

del,
.del {
  text-decoration: line-through;
  color: #888;
  font-size: 80%;
}

ul {
  list-style-type: none;
  padding: 0;
}

button {
  border: none;
  padding: 0;
  transition: all 0.3s linear;
  background-color: transparent;
}
button:focus {
  border: none;
  box-shadow: transparent;
  outline: 0;
}

button:active,
button:active:focus,
button:active:hover,
button:focus,
button:hover,
button:not(:disabled):not(.disabled).active,
button:not(:disabled):not(.disabled):active {
  transition: all 0.3s ease;
  outline: 0;
  box-shadow: none;
}

form .form-group {
  position: relative;
}
form .form-control {
  font-size: 14px;
}
form .form-control:focus {
  outline: none !important;
  box-shadow: none !important;
  border: 1px solid var(--primary) !important;
}
form input,
form select {
  height: 60px !important;
}
form .form-check-input:checked {
  background-color: var(--primary);
  border-color: var(--primary);
  box-shadow: none;
}
form textarea {
  resize: none;
}
form .form-check-input {
  height: 1em !important;
}

.progress-wrap {
  position: fixed;
  inset-inline-end: 15px;
  bottom: 15px;
  height: 45px;
  width: 45px;
  cursor: pointer;
  display: block;
  border-radius: 50px;
  box-shadow: inset 0 0 0 2px rgba(51, 51, 51, 0.2);
  opacity: 0;
  overflow: hidden;
  visibility: hidden;
  transform: translateY(130%);
  z-index: 99;
  transition: all 200ms linear;
}
.progress-wrap::after {
  background: url(../images/icons/top-arrow.png);
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  position: absolute;
  color: var(--primary);
  left: 10.5px;
  top: 10.5px;
  height: 25px;
  width: 25px;
  display: block;
  filter: var(--filterPrimary);
}
.progress-wrap svg path {
  fill: #f8f8f8;
}
.progress-wrap svg.progress-circle path {
  stroke: var(--primary);
  stroke-width: 4;
  box-sizing: border-box;
}
.progress-wrap.active-progress {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.container,
.container-fluid,
.zi-5 {
  position: relative;
  z-index: 5;
}

.secImg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.text-end {
  text-align: end;
}

.overflow_hidden {
  overflow: hidden !important;
}

.bg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.w-fit {
  width: -moz-fit-content;
  width: fit-content;
}

.position-unset {
  position: unset;
}

.underline {
  text-decoration: underline !important;
}

.trans_3 {
  transition: all 0.3s linear;
}

/**********************************************
   Start Loader
**********************************************/
#preloader {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  position: fixed;
  z-index: 9999999;
  pointer-events: none;
  /*----------- upload loader ------------*/
}
#preloader::after, #preloader::before {
  content: "";
  position: fixed;
  left: 0;
  height: 50%;
  width: 100%;
  background: linear-gradient(to right, #0d1a36, #132650, #0a152e);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
#preloader::before {
  top: 0;
}
#preloader::after {
  bottom: 0;
}
#preloader .logo_img {
  width: 300px;
  max-width: 70%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 20;
  opacity: 0.5;
}
#preloader #loading-wrapper {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 999;
  background-color: rgba(0, 0, 0, 0.3333333333);
  display: none;
  transition: all 0.5s ease;
}
#preloader #loading-wrapper.show {
  display: block;
}
#preloader #loading-wrapper #loading-text {
  display: block;
  position: absolute;
  top: calc(50% - 38px);
  left: 50%;
  color: #fff;
  width: 100px;
  height: 100px;
  margin: -7px 0 0 -45px;
  text-align: center;
  font-size: 20px;
}
#preloader #loading-wrapper img {
  width: 100px;
  height: 100px;
  -o-object-fit: contain;
  object-fit: contain;
}
#preloader #loading-wrapper #loading-content {
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 170px;
  height: 170px;
  margin: -85px 0 0 -85px;
  border: 3px solid #f00;
}
#preloader #loading-wrapper #loading-content::after {
  content: "";
  position: absolute;
  border: 3px solid #0f0;
  left: 15px;
  right: 15px;
  top: 15px;
  bottom: 15px;
}
#preloader #loading-wrapper #loading-content::before {
  content: "";
  position: absolute;
  border: 3px solid #00f;
  left: 5px;
  right: 5px;
  top: 5px;
  bottom: 5px;
}
#preloader #loading-wrapper #loading-content {
  border: 3px solid transparent;
  border-top-color: #3659a3;
  border-bottom-color: #3659a3;
  border-radius: 50%;
  animation: loader 2s linear infinite;
}
#preloader #loading-wrapper #loading-content::before {
  border: 3px solid transparent;
  border-top-color: #0aafde;
  border-bottom-color: #0aafde;
  border-radius: 50%;
  animation: loader 3s linear infinite;
}
#preloader #loading-wrapper #loading-content::after {
  border: 3px solid transparent;
  border-top-color: #e33f74;
  border-bottom-color: #e33f74;
  border-radius: 50%;
  animation: loader 1.5s linear infinite;
  -moz-animation: loader 2s linear infinite;
  -o-animation: loader 2s linear infinite;
}
#preloader.isdone {
  visibility: hidden;
  transition-delay: 1.5s;
}
#preloader.isdone #loading-wrapper {
  opacity: 0;
  transform: scale(3);
  filter: blur(2px);
}
#preloader.isdone::after, #preloader.isdone::before {
  height: 0;
  transition: all 0.7s cubic-bezier(1, 0, 0.55, 1);
  transition-delay: 1s;
}
#preloader #content-wrapper {
  color: #fff;
  position: fixed;
  left: 0;
  top: 20px;
  width: 100%;
  height: 100%;
}
#preloader #header {
  width: 800px;
  margin: 0 auto;
  text-align: center;
  height: 100px;
  background-color: #666;
}
#preloader #content {
  width: 800px;
  height: 1000px;
  margin: 0 auto;
  text-align: center;
  background-color: #888;
}
@keyframes loader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/**********************************************
   Start Animations
**********************************************/
@keyframes floating-y {
  0% {
    transform: translateY(2px);
  }
  100% {
    transform: translateY(-2px);
  }
}
@keyframes floatingX {
  0% {
    transform: translateX(2px);
  }
  100% {
    transform: translateX(-2px);
  }
}
.slide_ltr {
  transform: scale(1.05);
  transition: all 1s ease-in-out;
  transition-delay: 0.1s;
  -webkit-clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
          clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
}
.slide_ltr.animated {
  transform: scale(1);
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
          clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}
.slide_ltr.no_scale {
  transform: scale(1);
}

.slide_rtl {
  transform: scale(1.05);
  transition: all 1s ease-in-out;
  transition-delay: 0.1s;
  -webkit-clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
          clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
}
.slide_rtl.animated {
  transform: scale(1);
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
          clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}
.slide_rtl.no_scale {
  transform: scale(1);
}

@keyframes puff-in {
  0% {
    transform: scale(1.2);
    filter: blur(4px);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    filter: blur(0px);
    opacity: 1;
  }
}
.puff-in {
  animation: puff-in 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) both;
}

@keyframes text-focus-in {
  0% {
    filter: blur(12px);
    opacity: 0;
  }
  100% {
    filter: blur(0px);
    opacity: 1;
  }
}
.text-focus-in {
  animation: text-focus-in 1s cubic-bezier(0.55, 0.085, 0.68, 0.53) both;
}

.img-cover {
  -o-object-fit: cover;
     object-fit: cover;
}

.img-contain {
  -o-object-fit: contain;
     object-fit: contain;
}

.no-border {
  border: 0px;
}

.bg-gold-light {
  background-color: var(--gold-light);
}

.bg-grey-light {
  background-color: var(--grey-light);
}

.bg-grey-2 {
  background-color: #F8F8F8;
}

.radius-24 {
  border-radius: 24px;
}

/**********************************************
    Start Public Classes
**********************************************/
.section {
  position: relative;
  padding: 70px 0;
  overflow: hidden;
}

.swiper-container .swiper-pagination {
  bottom: 0;
}
.swiper-container .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  border-radius: 25px;
  border: 2px solid #161515;
  background-color: transparent;
}
.swiper-container .swiper-pagination .swiper-pagination-bullet-active {
  border-color: var(--primary);
  background: var(--primary);
}
.swiper-container .swiper-button-next,
.swiper-container .swiper-button-prev {
  background-image: unset;
  width: 40px;
  height: 40px;
  border: 1px solid transparent;
  border-radius: 50%;
  background-image: unset;
  background-color: #f5f5f5;
  transition: all 0.3s linear;
}
.swiper-container .swiper-button-next::before,
.swiper-container .swiper-button-prev::before {
  font-family: "Font Awesome 6 Pro";
  font-weight: 900;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 15px;
  color: var(--secondary);
  transition: all 0.3s linear;
}
.swiper-container .swiper-button-next:hover,
.swiper-container .swiper-button-prev:hover {
  background-color: var(--primary);
  opacity: 1;
}
.swiper-container .swiper-button-next:hover::before,
.swiper-container .swiper-button-prev:hover::before {
  color: #fff;
}
.swiper-container .swiper-button-next,
.swiper-container .swiper-container-rtl .swiper-button-prev {
  right: 2%;
  left: auto;
}
.swiper-container .swiper-button-next::before,
.swiper-container .swiper-container-rtl .swiper-button-prev::before {
  content: "\f0da";
}
.swiper-container .swiper-button-prev,
.swiper-container .swiper-container-rtl .swiper-button-next {
  left: 2%;
  right: auto;
}
.swiper-container .swiper-button-prev::before,
.swiper-container .swiper-container-rtl .swiper-button-next::before {
  content: "\f0d9";
}

.butn {
  position: relative;
  padding: 0.7rem 2rem;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 17px;
  font-weight: bold;
  border: 1px solid transparent;
  border-radius: 5px;
  min-width: 150px;
}
.butn i {
  margin-inline-end: 7px;
}
.butn.sm_butn {
  padding: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  min-width: unset;
}
.butn.gray_butn {
  background-color: #f1f1f1;
  color: #161515;
}
.butn.primary_butn {
  background-color: var(--primary);
  color: #fff;
}
.butn.primary_border_butn {
  border: 1px solid var(--primary);
  color: var(--primary);
  background-color: transparent;
}
.butn.secondary_butn {
  background-color: var(--secondary);
  color: #fff;
}
.butn.secondary_border_butn {
  border: 1px solid var(--secondary);
  color: var(--secondary);
  background-color: transparent;
}
.butn.white_butn {
  background-color: #fff;
  color: #333;
}
.butn.white_border_butn {
  background-color: #fff;
  border: 1px solid #d6d3d3;
}
.butn:hover {
  background-color: #202020;
  border: 1px solid #202020;
  color: #fff !important;
}
.butn:hover .icon {
  filter: var(--filterWhite);
}

.icon18 {
  width: 18px;
  height: 18px;
  -o-object-fit: contain;
     object-fit: contain;
}

.icon15 {
  width: 15px;
  height: 15px;
  -o-object-fit: contain;
     object-fit: contain;
}

/**********************************************
   Start Edit Navbar & Footer
**********************************************/
.navs-container .navbar {
  padding: 0.1rem 1rem;
  box-shadow: 0 10px 15px 0 rgba(93, 92, 92, 0.067);
}
.navs-container .navbar .logo {
  width: 60px;
  -o-object-fit: contain;
     object-fit: contain;
}
.navs-container .navbar .nav-link {
  color: #161515;
  font-size: 16px;
  padding-inline: 15px;
}
.navs-container .navbar .nav-link.active {
  font-weight: bold;
}
.navs-container .navbar .has_dropdown {
  position: relative;
}
.navs-container .navbar .has_dropdown .nav-link {
  position: relative;
  padding-inline-end: 30px;
  border-radius: 10px 10px 0 0;
  transition: all 0.3s linear;
}
.navs-container .navbar .has_dropdown .nav-link::after {
  content: "+";
  font-family: "Font Awesome 6 Pro";
  font-weight: 900;
  display: inline-block;
  position: absolute;
  inset-inline-end: 10px;
  top: 15px;
  color: #888;
  transition: all 0.3s linear;
  font-size: 12px;
}
.navs-container .navbar .has_dropdown .dropdown_box {
  position: absolute;
  background-color: #f9f9f9;
  min-width: 190px;
  z-index: 9;
  border-radius: 10px 0 10px 10px;
  overflow: hidden;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s linear;
  visibility: hidden;
  opacity: 0;
}
.navs-container .navbar .has_dropdown .dropdown_box a {
  display: block;
  padding: 15px 15px;
  font-size: 13px;
}
.navs-container .navbar .has_dropdown .dropdown_box a i {
  color: var(--secondary);
  font-size: 18px;
  margin-inline-end: 10px;
}
.navs-container .navbar .has_dropdown .dropdown_box a:hover {
  background-color: #f5f5f5;
}
.navs-container .navbar .has_dropdown:hover .nav-link {
  background-color: #f9f9f9;
}
.navs-container .navbar .has_dropdown:hover .nav-link::after {
  content: "\f068";
}
.navs-container .navbar .has_dropdown:hover .dropdown_box {
  visibility: visible;
  opacity: 1;
}
.navs-container .navbar .navbar-toggler {
  width: 40px;
  height: 40px;
  cursor: pointer;
  background-color: rgba(221, 221, 221, 0.3);
  border: none;
  position: relative;
}
.navs-container .navbar .navbar-toggler.active .navbar-toggler-icon {
  box-shadow: 0px 0px 0px grey;
  background: rgba(0, 0, 0, 0);
}
.navs-container .navbar .navbar-toggler.active .navbar-toggler-icon::before {
  top: 0px !important;
  transform: rotate(45deg);
}
.navs-container .navbar .navbar-toggler.active .navbar-toggler-icon::after {
  top: 0px !important;
  transform: rotate(135deg);
}
.navs-container .navbar .navbar-toggler .navbar-toggler-icon {
  width: 25px;
  height: 2px;
  background: var(--primary);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.5s;
}
.navs-container .navbar .navbar-toggler .navbar-toggler-icon::after, .navs-container .navbar .navbar-toggler .navbar-toggler-icon::before {
  content: "";
  position: absolute;
  width: 25px;
  height: 2px;
  background: var(--primary);
  transition: 0.5s;
}
.navs-container .navbar .navbar-toggler .navbar-toggler-icon::after {
  top: -6px;
  right: 0px;
}
.navs-container .navbar .navbar-toggler .navbar-toggler-icon::before {
  top: 6px;
  right: 0px;
}

.footer {
  padding-top: 120px;
}
.footer .content {
  margin-bottom: 35px;
}
.footer .content .logo {
  width: 60px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  margin-bottom: 25px;
}
.footer .content .social_links a {
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background-color: #123030;
  color: #fff;
  font-size: 17px;
  margin-inline-end: 7px;
}
.footer .content .social_links a:hover {
  background-color: var(--primary);
  color: #fff !important;
}
.footer .content .title {
  color: #fff;
  font-weight: bold;
  font-size: 30px;
  margin-bottom: 25px;
}
.footer .content .links a {
  display: block;
  font-size: 16px;
  color: #fff;
  margin-bottom: 18px;
}
.footer .content .form-group {
  background-color: #121b14;
  border-radius: 10px;
  position: relative;
  padding: 30px 15px;
}
.footer .content .form-group .form-control {
  background-color: transparent;
  color: #fff;
  border: none !important;
  border-bottom: 1px solid #888 !important;
  border-radius: 0;
}
.footer .content .form-group .form-control::-moz-placeholder {
  color: #888;
}
.footer .content .form-group .form-control::placeholder {
  color: #888;
}
.footer .content .form-group .form-control:focus {
  border-bottom-color: var(--primary) !important;
}
.footer .content .form-group .submit_butn {
  width: 40px;
  height: 40px;
  background-color: #ffd050;
  color: #000;
  border-radius: 50%;
  position: absolute;
  inset-inline-end: 15px;
  top: 38px;
}
.footer .foot {
  padding: 25px 0;
  position: relative;
  z-index: 5;
}
.footer .foot .links a {
  font-size: 14px;
  margin-inline-end: 2vw;
  color: rgba(255, 255, 255, 0.6);
}
.footer .foot .copyright_p {
  color: #fff;
  font-size: 16px;
}
.footer .foot .copyright_p .alyom_logo {
  width: 70px;
  -o-object-fit: contain;
     object-fit: contain;
}

/**********************************************
    Start Edit Home Page 
**********************************************/
.about_sec .txt_box {
  position: relative;
  padding-inline-end: 2vw;
}
.about_sec .txt_box .subtitle {
  font-size: 16px;
}
.about_sec .txt_box .title {
  font-size: 48px;
  line-height: 1.4;
}
.about_sec .txt_box .label_box {
  padding: 10px 20px;
  font-size: 24px;
  color: #fff;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 7% 50%);
          clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 7% 50%);
  background-image: linear-gradient(to left, #8a9352, #b0984f);
}
.about_sec .txt_box .label_box i {
  margin-inline-end: 10px;
}
.about_sec .txt_box .p {
  color: #727170;
}
.about_sec .txt_box .item {
  position: relative;
  margin-bottom: 25px;
}
.about_sec .txt_box .item .sm_title {
  font-size: 15px;
}
.about_sec .txt_box .item .p {
  font-size: 13px;
  line-height: 1.7;
}
.about_sec .txt_box .item::before {
  content: "";
  width: 45px;
  height: 7px;
  background-image: linear-gradient(to left, #8a9352, #b0984f);
  display: block;
}
.about_sec .txt_box .vector {
  position: absolute;
  inset-inline-end: 20%;
  top: -25px;
}
.about_sec .img_box {
  position: relative;
  height: 650px;
}
.about_sec .img_box .about1 {
  height: 600px;
  border-radius: 0 75px 75px 0;
  border: 1px solid #fff;
  width: 80%;
}
.about_sec .img_box .about2 {
  height: 415px;
  width: 350px;
  position: absolute;
  bottom: 0;
  inset-inline-end: 0;
  border-radius: 75px;
  border: 2px solid #fff;
}
.about_sec .img_box .vector {
  position: absolute;
  inset-inline-end: 100px;
  top: -25px;
}
.about_sec .img_box .vector2 {
  position: absolute;
  top: -40px;
  inset-inline-end: 10px;
  width: 240px;
  -o-object-fit: contain;
     object-fit: contain;
  z-index: -1;
}
.about_sec .img_box::before {
  content: "";
  width: 166px;
  height: 320px;
  background-color: #8a9352;
  border-radius: 10px;
  position: absolute;
  inset-inline-start: -10px;
  bottom: 40px;
  z-index: -1;
}
.about_sec .img_box::after {
  background-image: linear-gradient(to left, #8a9352, #b0984f);
  width: 15px;
  height: 320px;
  content: "";
  position: absolute;
  top: 0;
  z-index: -1;
  inset-inline-end: 50px;
}

.header .txt_box .title {
  font-size: 62px;
}
.header .txt_box .p {
  font-size: 18px;
  margin: 30px 0 !important;
}
.header .img_box {
  height: 540px;
  border-radius: 60px;
  position: relative;
}
.header .img_box .secImg {
  border-radius: 60px;
  width: 90%;
}
.header .img_box .logo_tl {
  width: 95px;
  height: 95px;
  background-color: #fff;
  border-radius: 50%;
  position: absolute;
  top: 0;
  inset-inline-end: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.header .img_box .logo_tl .logo {
  width: 50px;
  height: 50px;
  -o-object-fit: contain;
     object-fit: contain;
}
.header .img_box .logo_br {
  width: 110px;
  height: 110px;
  background-color: #fff;
  border-radius: 50%;
  position: absolute;
  bottom: -30px;
  inset-inline-start: -30px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.header .img_box .logo_br .logo {
  width: 100px;
  height: 100px;
  -o-object-fit: contain;
     object-fit: contain;
}
.header .img_box::before {
  content: "";
  width: 40%;
  height: calc(100% - 50px);
  position: absolute;
  top: 25px;
  inset-inline-end: 0px;
  background-image: linear-gradient(to right, #8a9352, #bba457);
  border-radius: 140px;
  z-index: -1;
}
.header .swiper-pagination {
  width: -moz-fit-content;
  width: fit-content;
  bottom: 0;
  inset-inline-end: 25%;
  transform: translateX(-75%);
}

.muslims_live {
  background-color: #f8f9f5;
}
.muslims_live .sec_title {
  font-size: 58px;
}
.muslims_live .item {
  background-color: #fff;
  border-radius: 15px;
  position: relative;
  margin-bottom: 25px;
  height: calc(100% - 25px);
  border: 1px solid #eee;
  display: flex;
  padding: 25px 15px;
  box-shadow: 0 10px 15px 0 rgba(137, 137, 137, 0.067);
}
.muslims_live .item .flag_box {
  position: relative;
  width: 55px;
  height: 55px;
  margin-inline-end: 15px;
}
.muslims_live .item .flag_box .flag {
  width: 55px;
  height: 55px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}
.muslims_live .item .flag_box::before {
  content: "";
  width: 16px;
  height: 16px;
  border: 3px solid #fff;
  background-color: #66cb9f;
  position: absolute;
  bottom: 0;
  inset-inline-start: -3px;
  border-radius: 50%;
}
.muslims_live .item .txt_cont {
  width: calc(100% - 70px);
}
.muslims_live .item .txt_cont .title {
  font-size: 23px;
  line-height: 1.4;
}
.muslims_live .item .txt_cont .p {
  color: #db9e30;
}
.muslims_live .logo {
  width: 140px;
  -o-object-fit: contain;
     object-fit: contain;
  position: absolute;
  bottom: 30px;
  left: 10px;
}

.statics_sec {
  background-color: #302e2b;
}
.statics_sec .item {
  margin-bottom: 25px;
  position: relative;
}
.statics_sec .item .circle_box {
  width: 150px;
  height: 150px;
  background-color: #21201d;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
}
.statics_sec .item .circle_box .content {
  width: 130px;
  height: 130px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #302e2b;
  padding: 2px;
  overflow: hidden;
  border-radius: 50%;
  position: relative;
}
.statics_sec .item .circle_box .content .icon_box {
  background-color: #21201d;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 5;
}
.statics_sec .item .circle_box .content .icon_box .icon {
  width: 90px;
  height: 90px;
  -o-object-fit: contain;
     object-fit: contain;
}
.statics_sec .item .circle_box .content::before {
  content: "";
  width: 45px;
  height: 40px;
  border-radius: 0 25px 0 0;
  background-color: var(--primary);
  position: absolute;
  top: -1px;
  right: -5px;
}
.statics_sec .item .circle_box .content::after {
  content: "";
  width: 100px;
  height: 20px;
  background-color: var(--secondary);
  position: absolute;
  top: -1px;
  right: 40px;
}
.statics_sec .item .circle_box .counter {
  font-size: 30px;
  font-weight: bold;
  background: -webkit-linear-gradient(#b0984f, #1d8e5a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.statics_sec .item .title {
  text-align: center;
  color: #fff;
  font-size: 18px;
  margin-top: 25px;
}

.guided_Sec .inner {
  background-color: #ffd050;
  padding: 10px 2vw 0 2vw;
  position: relative;
  border-radius: 5px;
}
.guided_Sec .inner .country_box {
  background-color: #fff;
  padding: 65px 45px 75px 45px;
  border-radius: 45px;
  margin-bottom: -15px;
  position: relative;
}
.guided_Sec .inner .country_box .title {
  font-size: 32px;
  font-weight: bold;
}
.guided_Sec .inner .country_box .title .icon_box {
  width: 55px;
  height: 55px;
  margin-inline-end: 15px;
  background-color: #ffd050;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  border: 1px solid #161515;
}
.guided_Sec .inner .country_box .title .icon_box .icon {
  width: 35px;
  height: 35px;
  -o-object-fit: contain;
     object-fit: contain;
}
.guided_Sec .inner .country_box .item {
  margin: 15px 0;
  text-align: center;
}
.guided_Sec .inner .country_box .item .counter {
  font-size: 60px;
}
.guided_Sec .inner .country_box .item .country {
  font-size: 17px;
  font-weight: bold;
  margin-top: 15px;
}
.guided_Sec .inner .country_box .item .country .flag {
  width: 25px;
  height: 16px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-inline-end: 5px;
}
.guided_Sec .inner .country_box::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  background-color: rgba(18, 56, 100, 0.3);
  background-color: #ffd050;
  z-index: -1;
  height: 200px;
  inset-inline-start: unset;
  border-radius: 0 45px;
  bottom: 0;
  inset-inline-end: -15px;
  top: unset;
  transform: rotate(-2deg);
}
.guided_Sec .inner .lang_box {
  position: relative;
  padding: 65px 45px 75px 45px;
}
.guided_Sec .inner .lang_box .title {
  font-size: 32px;
  font-weight: bold;
}
.guided_Sec .inner .lang_box .title .icon_box {
  width: 55px;
  height: 55px;
  margin-inline-end: 15px;
  background-color: #1d8e5a;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  border: 1px solid #161515;
}
.guided_Sec .inner .lang_box .title .icon_box .icon {
  width: 35px;
  height: 35px;
  -o-object-fit: contain;
     object-fit: contain;
}
.guided_Sec .inner .lang_box .item {
  margin: 15px 0;
  text-align: center;
}
.guided_Sec .inner .lang_box .item .counter {
  font-size: 60px;
  color: #fff !important;
}
.guided_Sec .inner .lang_box .item .country {
  font-size: 17px;
  font-weight: bold;
  margin-top: 15px;
}
.guided_Sec .inner .lang_box .item .country .flag {
  width: 25px;
  height: 16px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-inline-end: 5px;
}

.stories_sec .item {
  position: relative;
  margin-bottom: 25px;
}
.stories_sec .item .img_box {
  height: 205px;
  position: relative;
}
.stories_sec .item .img_box .secImg {
  border-radius: 5px 5px 0 0;
}
.stories_sec .item .img_box .vid_link {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: rgba(0, 0, 0, 0.8039215686);
  font-size: 65px;
}
.stories_sec .item .card-body {
  position: relative;
}
.stories_sec .item .card-body .title {
  font-size: 30px;
}
.stories_sec .item .card-body .p {
  font-size: 16px;
  margin: 15px 0;
  color: #727170;
}
.stories_sec .item .card-body::before {
  content: "";
  width: 80px;
  height: 85px;
  background: url(../images/stories_vector.svg) no-repeat center;
  background-size: contain;
  position: absolute;
  top: 2px;
  right: 2px;
  z-index: -1;
}

.stories_feedback .item {
  background-image: linear-gradient(to right, #fbefd0, #d8efe4);
  position: relative;
  padding: 40px 30px;
}
.stories_feedback .item .title {
  font-size: 28px;
  font-weight: bold;
}
.stories_feedback .item .p {
  font-size: 24px;
  color: #525150;
  margin: 20px 0 25px 0 !important;
  line-height: 1.7;
}
.stories_feedback .item .prof_data .avatar {
  width: 100px;
  height: 100px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  margin-inline-end: 15px;
}
.stories_feedback .item .prof_data .name {
  font-size: 24px;
  font-weight: bold;
}
.stories_feedback .item::before {
  content: "";
  width: 190px;
  height: 190px;
  background: url(../images/vector-1.svg) no-repeat center;
  background-size: contain;
  position: absolute;
  bottom: 0px;
  left: 0px;
  z-index: 1;
}

.certi_sec .certi_card {
  border-radius: 45px;
  border: 1px solid #000000;
  padding: 45px;
  position: relative;
  text-align: center;
  background-color: #f5f5f5;
  margin-bottom: 25px;
  transition: all 0.3s linear;
  transform: scale(0.93);
}
.certi_sec .certi_card .secImg {
  height: 225px;
}
.certi_sec .certi_card .card-body {
  padding-bottom: 0;
  padding-top: 20px;
}
.certi_sec .certi_card .card-body .title {
  font-size: 30px;
}
.certi_sec .certi_card .card-body .p {
  font-size: 16px;
  margin: 20px 0 !important;
  color: #727170;
}
.certi_sec .certi_card:hover {
  background-color: #e9f3ef;
}

.mostCountry_sec .img_box {
  position: relative;
}
.mostCountry_sec .img_box .secImg {
  background-color: #f8f8f8;
  height: 780px;
}
.mostCountry_sec .img_box .country_box {
  background-color: #fff;
  padding: 10px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  position: absolute;
  top: 35%;
  left: 55%;
}
.mostCountry_sec .img_box .country_box .flag_box {
  position: relative;
  width: 35px;
  height: 35px;
  margin-inline-end: 10px;
}
.mostCountry_sec .img_box .country_box .flag_box .flag {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}
.mostCountry_sec .img_box .country_box .flag_box::before {
  content: "";
  width: 16px;
  height: 16px;
  border: 3px solid #fff;
  background-color: #66cb9f;
  position: absolute;
  bottom: 0;
  inset-inline-start: -3px;
  border-radius: 50%;
}

.about_cards .item {
  border-radius: 45px;
  border: 1px solid #000000;
  padding: 55px 35px;
  position: relative;
  text-align: center;
  background-color: #f5f5f5;
  margin-bottom: 25px;
  transition: all 0.3s linear;
  transform: scale(0.93);
}
.about_cards .item .icon_box {
  width: 105px;
  height: 105px;
  background-color: #f3b815;
  border-radius: 50%;
  margin: 0 auto 25px auto;
  border: 2px solid #000000;
  display: flex;
  justify-content: center;
  align-items: center;
}
.about_cards .item .icon_box .icon {
  width: 70px;
  height: 70px;
  -o-object-fit: contain;
     object-fit: contain;
}
.about_cards .item .title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 15px;
}
.about_cards .item .p {
  font-size: 17px;
  color: #727170;
  line-height: 1.8;
}
.about_cards .item:hover {
  background-color: #e9f3ef;
}

/**********************************************
    Start Edit pg-header
**********************************************/
/**********************************************
    Start Edit another Page 
**********************************************/
/**********************************************
    Start Edit another Page 
**********************************************/
/**********************************************
    Start Edit another Page 
**********************************************/
/**********************************************
    Start Edit Media screens 
**********************************************/
@media screen and (max-width: 991px) {
  .order_md_1 {
    order: -1;
  }
  .about_sec .txt_box .title {
    font-size: 35px;
  }
  .about_sec .txt_box .label_box {
    font-size: 15px;
  }
  .about_sec .img_box .vector {
    inset-inline-end: 10%;
  }
  .muslims_live .sec_title {
    font-size: 30px;
  }
  .muslims_live .item .txt_cont .title {
    font-size: 20px;
  }
  .section .text-center.mb-5 .p {
    font-size: 13px !important;
  }
  .guided_Sec .inner .country_box .title,
  .guided_Sec .inner .lang_box .title {
    font-size: 19px;
  }
  .mostCountry_sec .img_box .country_box {
    top: 30%;
    left: 25%;
  }
  .header .txt_box {
    margin-bottom: 25px;
  }
  .header .txt_box .title {
    font-size: 40px;
  }
  .footer .foot .copyright_p {
    font-size: 11px;
    justify-content: center !important;
    margin-top: 15px;
  }
}
/**********************************************
    Start Edit EN direction 
**********************************************/
html[dir=ltr] {
  @import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");
}
html[dir=ltr] body {
  direction: ltr;
  font-family: "Poppins", sans-serif;
}

/************pages******************* */
.inner-hero-section {
  background-image: url("../images/pages/hero.png");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  width: 100%;
  height: 170px;
}
.inner-hero-section .icon {
  background-color: rgba(102, 124, 144, 0.1411764706);
  width: 42px;
  height: 42px;
  border-radius: 100%;
  line-height: 42px;
  text-align: center;
  color: var(--dark);
}

.breadcrumb {
  font-size: 17px;
}

.breadcrumb-item + .breadcrumb-item::before {
  transform: rotate(180deg);
  margin-left: 15px;
}

.view-details-section .img_box {
  position: relative;
  padding-top: 60%;
  border-radius: 8px;
  overflow: hidden;
}
.view-details-section .img_box img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  -o-object-position: top;
     object-position: top;
}
.view-details-section .details-content .user-img {
  width: 64px;
  height: 64px;
  border-radius: 100%;
}
.view-details-section .details-content .label,
.view-details-section .details-content .label2 {
  border-radius: 30px;
  margin: 0 8px;
  padding: 12px 25px;
}
.view-details-section .details-content .label:hover {
  background-color: var(--primary);
  color: white !important;
}
.view-details-section .details-content .label2 {
  background-color: rgba(145, 45, 245, 0.2);
  color: var(--purple) !important;
}
.view-details-section .text-content {
  display: -webkit-box;
  -webkit-line-clamp: 3; /* Limit to 3 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal; /* Ensure proper wrapping for Arabic */
}
.view-details-section .text-content.expanded {
  -webkit-line-clamp: unset; /* Remove line clamp */
  overflow: visible; /* Allow full content display */
}
.view-details-section .left-column .card-title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
}
.view-details-section .left-column .card-text {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
}
.view-details-section .left-column img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
}

.max-height-column {
  max-height: 865px;
  overflow-y: auto;
}

.certi_sec .certi_card.cert-inner {
  padding: 15px;
  transform: none;
}

.pagination .page-item.active .page-link {
  background-color: rgba(176, 152, 79, 0.2);
  border-color: var(--primary);
  color: black;
  font-weight: bold;
}
.pagination .page-link {
  margin: 10px;
  border-radius: 4px;
  border: 1px solid var(--primary);
  color: black;
}

/*------------files------------*/
.files-content {
  border: 1px solid #dbdbdb;
  border-bottom: 0px;
  border-radius: 8px;
  color: #3d3d3d;
  font-weight: 500;
  overflow: hidden;
}
.files-content .content .item span {
  font-size: 14px;
}
.files-content .col-md-2.col-lg-2 {
  border-bottom: 1px solid #dbdbdb;
  border-left: 1px solid #dbdbdb;
}
.files-content .mobile {
  display: none;
}

.bg-green {
  background-color: #e7f6ea;
  color: #0ba02c;
}

.bg-gold-light {
  background-color: rgba(176, 152, 79, 0.1019607843);
  color: #b0984f;
}

.jobs-section .jobs-card {
  background: rgb(255, 246, 230);
  background: linear-gradient(90deg, rgb(255, 246, 230) 61%, rgb(255, 255, 255) 82%);
  border-radius: 8px;
  border: 1px solid #e4e5e8;
  padding: 5px;
  box-shadow: 0 10px 15px 0 rgba(137, 137, 137, 0.067);
}
.jobs-section .jobs-card .label {
  border-radius: 50px;
  padding: 4px 13px;
  font-size: 14px !important;
  margin-left: 5px;
}
.jobs-section .jobs-card .job-img {
  width: 100%;
  height: 72px;
  -o-object-fit: contain;
     object-fit: contain;
}

.apply-section .label {
  border-radius: 50px;
  padding: 4px 13px;
  font-size: 14px !important;
  margin-left: 5px;
}

.apply-card {
  border-radius: 24px;
}
.apply-card .apply-content {
  display: -webkit-box;
  -webkit-line-clamp: 18; /* Limit to 18 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal; /* Ensure proper wrapping for Arabic */
}
.apply-card .apply-content.expanded {
  -webkit-line-clamp: unset; /* Remove line clamp */
  overflow: visible; /* Allow full content display */
}
.apply-card ul {
  list-style: disc;
  margin-right: 40px;
}

.apply-form-section .apply-form {
  background-image: url("../images/pages/apply-bg.png");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  width: 100%;
  height: 100%;
}
.apply-form-section .apply-form .apply-card-form {
  border-radius: 14px;
  background-color: white;
  padding: 70px;
}
.apply-form-section .apply-form .apply-card-form .form-control {
  background-color: rgba(209, 213, 219, 0.2);
  border: 0px;
  border-radius: 8px;
}
.apply-form-section .input-group > .form-control,
.apply-form-section .input-group > .form-select {
  text-align: right;
}
.apply-form-section .iti, .apply-form-section .iti input.iti__tel-input, .apply-form-section .iti input.iti__tel-input[type=text], .apply-form-section .iti input.iti__tel-input[type=tel] {
  width: 100%;
  margin-bottom: 15px;
  border: 0px;
  background-color: rgba(209, 213, 219, 0.2);
  border-radius: 8px;
}
.apply-form-section .drop_box {
  overflow: hidden;
  background-color: rgba(209, 213, 219, 0.2);
  position: relative;
  display: flex;
  border-radius: 8px;
  align-items: center;
  cursor: pointer;
}
.apply-form-section .drop_box .kwt-file {
  width: 100%;
}
.apply-form-section .drop_box .kwt-file__drop-area {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  padding: 24px 10px;
  transition: 0.3s;
  height: 170px;
  padding-inline-start: 50px;
  font-size: 14px;
}
.apply-form-section .drop_box .kwt-file__drop-area.is-active {
  background-color: rgba(48, 104, 157, 0.0862745098);
}
.apply-form-section .drop_box .kwt-file__choose-file {
  flex-shrink: 0;
  background-color: transparent;
  color: var(--orange);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  inset-inline-end: 0;
}
.apply-form-section .drop_box .kwt-file__choose-file.kwt-file_btn-text {
  border-radius: 4px;
  width: auto;
  height: auto;
  padding: 10px 20px;
  font-size: 14px;
}
.apply-form-section .drop_box .kwt-file__choose-file svg {
  display: none;
}
.apply-form-section .drop_box .kwt-file__msg {
  /* color: #666; */
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  white-space: nowrap;
  position: absolute;
  right: 14px;
  z-index: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  left: 14px;
  text-align: center;
  padding-top: 50px;
}
.apply-form-section .drop_box .kwt-file__msg::after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  content: "";
  background-image: url("../images/pages/icons/cv_icon.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 38px;
  height: 25px;
  margin: auto;
}
.apply-form-section .drop_box .kwt-file__input {
  position: absolute;
  left: 0;
  top: 0;
  height: 170px !important;
  width: 100%;
  z-index: 10;
  cursor: pointer;
  opacity: 0;
}
.apply-form-section .drop_box .kwt-file__input:focus {
  outline: none;
}
.apply-form-section .drop_box .kwt-file__delete {
  display: none;
  position: absolute;
  inset-inline-end: 10px;
  width: 18px;
  height: 18px;
  cursor: pointer;
  margin: auto;
  left: 0;
  right: 0;
  z-index: 100;
}
.apply-form-section .drop_box .kwt-file__delete:before {
  content: "";
  position: absolute;
  inset-inline-end: 45px;
  transition: 0.3s;
  top: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg fill='%231d3557' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 438.5 438.5'%3e%3cpath d='M417.7 75.7A8.9 8.9 0 00411 73H323l-20-47.7c-2.8-7-8-13-15.4-18S272.5 0 264.9 0h-91.3C166 0 158.5 2.5 151 7.4c-7.4 5-12.5 11-15.4 18l-20 47.7H27.4a9 9 0 00-6.6 2.6 9 9 0 00-2.5 6.5v18.3c0 2.7.8 4.8 2.5 6.6a8.9 8.9 0 006.6 2.5h27.4v271.8c0 15.8 4.5 29.3 13.4 40.4a40.2 40.2 0 0032.3 16.7H338c12.6 0 23.4-5.7 32.3-17.2a64.8 64.8 0 0013.4-41V109.6h27.4c2.7 0 4.9-.8 6.6-2.5a8.9 8.9 0 002.6-6.6V82.2a9 9 0 00-2.6-6.5zm-248.4-36a8 8 0 014.9-3.2h90.5a8 8 0 014.8 3.2L283.2 73H155.3l14-33.4zm177.9 340.6a32.4 32.4 0 01-6.2 19.3c-1.4 1.6-2.4 2.4-3 2.4H100.5c-.6 0-1.6-.8-3-2.4a32.5 32.5 0 01-6.1-19.3V109.6h255.8v270.7z'/%3e%3cpath d='M137 347.2h18.3c2.7 0 4.9-.9 6.6-2.6a9 9 0 002.5-6.6V173.6a9 9 0 00-2.5-6.6 8.9 8.9 0 00-6.6-2.6H137c-2.6 0-4.8.9-6.5 2.6a8.9 8.9 0 00-2.6 6.6V338c0 2.7.9 4.9 2.6 6.6a8.9 8.9 0 006.5 2.6zM210.1 347.2h18.3a8.9 8.9 0 009.1-9.1V173.5c0-2.7-.8-4.9-2.5-6.6a8.9 8.9 0 00-6.6-2.6h-18.3a8.9 8.9 0 00-9.1 9.1V338a8.9 8.9 0 009.1 9.1zM283.2 347.2h18.3c2.7 0 4.8-.9 6.6-2.6a8.9 8.9 0 002.5-6.6V173.6c0-2.7-.8-4.9-2.5-6.6a8.9 8.9 0 00-6.6-2.6h-18.3a9 9 0 00-6.6 2.6 8.9 8.9 0 00-2.5 6.6V338a9 9 0 002.5 6.6 9 9 0 006.6 2.6z'/%3e%3c/svg%3e");
}

.contact .apply-card-form {
  padding: 30px !important;
  min-height: 610px;
}
.contact .apply-card-form .socials {
  text-align: center;
}
.contact .apply-card-form .socials .social_links {
  margin-top: 30px;
}
.contact .apply-card-form .socials .social_links a {
  font-size: 20px;
  margin: 10px;
}

.full-height {
  height: 100%;
}

.vertical-middle {
  vertical-align: middle;
}

@media screen and (max-width: 1366px) {
  .max-height-column {
    max-height: 788px;
  }
}
@media screen and (max-width: 768px) {
  .contact .apply-card-form {
    min-height: auto;
    margin-bottom: 20px;
  }
  .mobile {
    display: block !important;
  }
  .desktop {
    display: none;
  }
  .files-content .d-flex {
    display: block !important;
  }
  .files-content .ps-0 {
    padding-right: 10px !important;
  }
  .apply-form-section .apply-form {
    background-size: cover;
  }
}
@media screen and (max-width: 640px) {
  .view-details-section .left-column img {
    width: 100%;
    height: 200px;
    -o-object-fit: cover;
       object-fit: cover;
    margin-bottom: 15px;
  }
  .inner-hero-section {
    background-size: cover;
  }
  .view-details-section .details-content .label,
  .view-details-section .details-content .label2 {
    border-radius: 30px;
    margin: 0 5px;
    padding: 12px 10px;
    margin-bottom: 15px;
  }
  .details-content .d-flex {
    display: block !important;
  }
}
@media screen and (max-width: 375px) {
  .pagination .page-link {
    margin: 3px;
  }
}/*# sourceMappingURL=style.css.map */