@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@500;700&display=swap');
body {
  font-family: "Tajawal", Tahoma, sans-serif;
  color: #666;
  font-size: 17px;
  line-height: 1.5;
  overflow-x: hidden;
  word-wrap: break-word;
  text-rendering: optimizeLegibility;
  -webkit-overflow-scrolling: touch;
  -webkit-text-size-adjust: none;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}
a {
  color: #666;
  text-decoration: none;
}
a:hover {
  color: #0d8369;
  text-decoration: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 1rem;
  line-height: 1.4;
}
h1,
h2,
h3,
h4,
h5,
h6,
.navbar a {
  font-family: "Tajawal", Tahoma, sans-serif;
  font-weight: bold;
}
::selection {
  background: #0d8369;
  color: #fff;
}
a {
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease;
}
p:last-child {
  margin-bottom: 0;
}

*:focus,
a:focus,
.select2,
.select2:focus,
button:focus,
.btn:focus,
.btn-close:focus,
input:focus,
select:focus,
.form-select:focus,
.page-link:focus,
textarea.form-control:focus,
input.form-control:focus {
  box-shadow: none;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  outline: none;
  outline-offset: 0;
  -webkit-appearance: none;
  appearance: none;
}
.spinner-wrapper {
  position: fixed;
  z-index: 999999;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #fff;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}
.spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 3.75rem;
  height: 1.25rem;
  margin: -0.625rem 0 0 -1.875rem;
  text-align: center;
}
.spinner>div {
  display: inline-block;
  width: 1rem;
  height: 1rem;
  border-radius: 100%;
  background-color: #0d8369;
  -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
  animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}
.spinner .bounce1 {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}
.spinner .bounce2 {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}
@-webkit-keyframes sk-bouncedelay {
  0%,
  80%,
  100% {
    -webkit-transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1.0);
  }
}
@keyframes sk-bouncedelay {
  0%,
  80%,
  100% {
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1.0);
    -ms-transform: scale(1.0);
    transform: scale(1.0);
  }
}
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  left: 12px;
  bottom: 22px;
  z-index: 996;
  background: #0d8369;
  width: 36px;
  height: 36px;
  border-radius: 100px;
  transition: all 0.4s;
  box-shadow: 0px 4px 10px 4px rgba(38, 38, 38, 0.3);
}
.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}
.back-to-top:hover {
  background: #cf993a;
  color: #fff;
}
.back-to-top.active {
  visibility: visible;
  opacity: 1;
}
#header {
  background: transparent;
  transition: all 0.5s;
  z-index: 997;
  padding: 30px 0;
}
#header.header-scrolled {
  background: #fff;
  padding: 14px 0;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}
#header .logo img {
  padding: 0;
  margin: 0;
  width: 200px;
  padding: 0;
  margin: 0;
  display: inline-block;
  filter: brightness(0) invert(1);
}
#header.header-scrolled .logo img {
  display: inline-block;
  filter: none;
  transition: .5s;
  width: 150px;
}
.navbar {
  padding: 0;
}
.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}
.navbar li {
  position: relative;
}
.navbar>ul>li {
  position: relative;
  white-space: nowrap;
  margin-left: 20px;
}
.navbar>ul>li:last-child {
  margin-left: 0;
}
.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  font-size: 16px;
  color: #fff;
  white-space: nowrap;
  transition: 0.3s;
}
#header.header-scrolled .navbar a,
#header.header-scrolled .navbar a:focus {
  color: #666;
}
.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-right: 5px;
}
li.l-link {
  margin-right: 100px;
}
.login-link {
  position: relative;
}
.login-link:before {
  content: "";
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 4px;
  bottom: 5px;
  right: 0;
  border-radius: 4px;
  background-color: #edaf44;
  transform-origin: bottom left;
  transition: transform 0.25s ease-out;
}
.login-link:hover:before {
  transform: scaleX(1);
  transform-origin: bottom right;
}
.subscribe.sbtn {
  padding: 12px 24px !important;
  color: #fff !important;
  background-color: #18b381;
  border: none;
  border-radius: 100px;
  transition: all 0.3s ease 0s;
  cursor: pointer;
  outline: none;

}
.subscribe.sbtn:hover {
  box-shadow: 0px 15px 20px rgba(24, 179, 129, 0.4);
  transform: translateY(-5px);
}
.apply-btn .subscribe.sbtn {
  white-space: nowrap;
    display: inline-block;
    margin-bottom: 15px;
}
#header.header-scrolled .subscribe.sbtn {
  padding: 8px 18px !important;
}
#header.header-scrolled .subscribe.sbtn:hover {
  box-shadow: 0px 10px 14px rgba(24, 179, 129, 0.4);
  transform: translateY(-3px);
}
.iaeste-page #header.header-scrolled .subscribe.sbtn:hover {
  box-shadow: 0px 15px 20px rgba(15, 64, 92, 0.4);
}
.iaeste-page .apply-btn .subscribe.sbtn:hover {
  box-shadow: 0px 15px 20px rgba(133, 133, 133, 0.4);
}
#header.header-scrolled .subscribe.sbtn:active,
.subscribe.sbtn:active,
.iaeste-page #header.header-scrolled .subscribe.sbtn:active {
  background-color: #0d8168;
  transform: translateY(-1px);
  box-shadow: none !important;
}
#header .container {
  position: relative;
}
.trial-version {
  position: absolute;
  top: -10px;
  right: 212px;
  background: red;
  color: #fff;
  padding: 2px 8px 1px;
  border-radius: 100px;
  font-size: 13px;
}
#header.header-scrolled .trial-version {
  top: -50px;
  transition: .3s all;
}
@media (max-width: 991px) {
  .trial-version {
    right: 51%;
    top: -20px;
  }
}
.navbar .dropdown ul {
  display: block;
  position: absolute;
  right: 0;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 10px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 7px;
}
.navbar .dropdown ul li {
  min-width: 200px;
}
.navbar .dropdown ul a {
  color: #666;
  font-size: 15px;
  padding: 8px 20px;
  text-transform: none;
}
.navbar .dropdown ul a i {
  font-size: 12px;
}
.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a,
.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #18b381;
}
#header.header-scrolled .navbar a:hover,
#header.header-scrolled .active,
#header.header-scrolled .active:focus,
#header.header-scrolled .navbar li:hover>a {
  color: #0d8369;
}
.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}
.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}
.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}
.search a {
  padding: 0 !important;
}
.search a i,
.search a:focus i {
  font-size: 17px;
  font-weight: bold;
  line-height: 0;
  margin-right: 0;
}
.navbar>ul>li.search>a:before {
  display: none;
}
.search a:hover,
.search .active,
.search .active:focus,
li.search:hover>a {
  padding: 0;
  color: #18b381;
}
#header.header-scrolled .search a:hover,
#header.header-scrolled .search .active,
#header.header-scrolled .search .active:focus,
#header.header-scrolled li.search:hover>a {
  color: #0d8369;
}
@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }
  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}
@media (max-width: 360px) {
  #header .logo img {
    width: 150px;
  }
}
/**
* Mobile Navigation
*/
.mobile-nav-toggle {
  color: #fff;
  font-size: 32px;
  cursor: pointer;
  display: none;
  line-height: 0;
  z-index: 9999;
  margin-left: 10px;
}
.ls-menu i {
  font-size: 24px;
  color: #fff;
  line-height: 24px;
  padding: 0 10px;
}
.lsmenu.dropdown {
  display: none;
}
header .dropdown-menu {
  font-size: 16px;
  text-align: center;
  font-family: "Tajawal", Tahoma, sans-serif;
  margin-top: 10px !important;
  padding: 10px;
}
header .dropdown-menu:before {
  content: "";
  position: absolute;
  left: 14px;
  top: 0;
  margin-top: -8px;
  width: 0;
  height: 0;
  border-right: 8px solid transparent;
  border-left: 8px solid transparent;
  border-bottom: 8px solid #cccccc;
}
header .dropdown-menu:after {
  content: "";
  position: absolute;
  left: 14px;
  top: 0;
  margin-top: -7px;
  width: 0;
  height: 0;
  border-right: 8px solid transparent;
  border-left: 8px solid transparent;
  border-bottom: 8px solid #fff;
}
#header.header-scrolled .mobile-nav-toggle,
#header.header-scrolled .ls-menu i {
  color: #0d8369;
}
.mobile-nav-toggle.bi-x {
  color: #000 !important;
}
.dropdown-item {
  padding: .25rem .25rem;
  border-radius: 5px;
}
.sb-dd.dropdown-item,
.dropdown-item:focus,
.dropdown-item:hover {
  color: #fff;
  background-color: #18b381;
}
.sb-dd.dropdown-item:focus,
.sb-dd.dropdown-item:hover {
  color: #fff;
  background-color: #0d8168;
}
.dropdown-item.active,
.dropdown-item:active,
.sb-dd.dropdown-item.active,
.sb-dd.dropdown-item:active {
  color: #fff;
  text-decoration: none;
  background-color: #cf993a;
}
.user-panel {
  /* position: relative; */
  margin-right: 10px;
}
.user-panel img {
  height: 40px;
  width: 40px;
  border: 1px solid #a5a5a5 !important;
  border-radius: 100px;
  overflow: hidden;
}
@media (max-width: 991px) {
  .mobile-nav-toggle,
  .lsmenu.dropdown {
    display: block;
  }
  .navbar ul,
  .navbar.navbar-mobile>ul>li.l-link,
  .navbar.navbar-mobile>ul>li.s-link {
    display: none;
  }
}
.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: #3ab18b;
  transition: padding 0.5s;
  z-index: 999;
  opacity: 1;
  visibility: visible;
  height: 100%;
  padding-top: 30px;
}
.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 42px;
  right: 10px;
  font-size: 40px;
}
.navbar-mobile ul {
  display: block;
  padding: 80px 0 20px;
  background: #3ab18b;
  overflow-y: auto;
  width: 100%;
  height: 100%;
  transition: all 0.4s ease-in-out;
  visibility: visible;
  opacity: 1;
}
.navbar.navbar-mobile>ul>li {
  margin: auto;
}
.navbar-mobile a {
  text-align: center;
  display: block !important;
}
.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 19px;
  color: #fff;
}
#header.header-scrolled .navbar-mobile a,
#header.header-scrolled .navbar-mobile a:focus {
  color: #fff;
}
#header.header-scrolled .dropdown-active a,
#header.header-scrolled .dropdown-active a:focus {
  color: #666;
}
.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #054a3b !important;
}
.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}
.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px auto;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}
.navbar-mobile .dropdown ul li {
  min-width: 200px;
}
.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}
.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}
.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #0d8369;
}
.navbar-mobile .dropdown>.dropdown-active {
  display: block;
  width: 95%;
}
@media (max-width: 1200px) {
  .navbar>ul>li {
    margin-left: 15px;
  }
  li.l-link {
    margin-right: 15px;
  }
}
#hero {
  width: 100%;
  height: 100vh;
  background-color: rgba(4, 12, 21, 0.8);
  overflow: hidden;
  position: relative;
}
#hero .carousel,
#hero .carousel-inner,
#hero .carousel-item,
#hero .carousel-item::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}
#hero .carousel-item {
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
}
#hero .carousel-item::before {
  content: "";
  background: rgba(0, 0, 0, 0.5);
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.85) 70%);
}
#hero .carousel-container {
  display: flex;
  align-items: center;
  position: absolute;
  bottom: 0;
  top: 82px;
  left: 50px;
  right: 50px;
}
#hero h2 {
  color: #fff;
  font-size: 44px;
}
#hero p {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
  color: #fff;
  font-size: 14px;
}
#hero .carousel-inner .carousel-item {
  transition-property: opacity;
  background-position: center top;
}
#hero .carousel-inner .carousel-item,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
  opacity: 0;
}
#hero .carousel-inner .active,
#hero .carousel-inner .carousel-item-next.carousel-item-start,
#hero .carousel-inner .carousel-item-prev.carousel-item-end {
  opacity: 1;
  transition: 0.5s;
}
#hero .carousel-inner .carousel-item-next,
#hero .carousel-inner .carousel-item-prev,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
  left: 0;
  transform: translate3d(0, 0, 0);
}
#hero .carousel-control-next-icon,
#hero .carousel-control-prev-icon {
  background: none;
  font-size: 30px;
  line-height: 0;
  width: auto;
  height: auto;
  border-radius: 50px;
  transition: 0.3s;
  color: rgba(255, 255, 255, 0.5);
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#hero .carousel-control-next-icon:hover,
#hero .carousel-control-prev-icon:hover {
  color: rgba(255, 255, 255, 1);
}
.carousel-control-next,
.carousel-control-prev,
.carousel-control-next:focus,
.carousel-control-next:hover,
.carousel-control-prev:focus,
.carousel-control-prev:hover {
  opacity: initial;
}
#hero .carousel-indicators {
  bottom: 150px;
  left: 7%;
}
#hero .carousel-indicators li {
  cursor: pointer;
  background: #fff;
  overflow: hidden;
  border: 0;
  width: 12px;
  height: 12px;
  border-radius: 50px;
  opacity: 0.6;
  transition: 0.3s;
}
#hero .carousel-indicators li.active {
  opacity: 1;
  background: #18b381;
  width: 30px;
}
.btn-read-more,
.btn-all-case {
  font-size: 13px;
  display: inline-block;
  padding: 10px 24px;
  border: 2px solid #fff;
  border-radius: 100px;
  transition: 0.5s;
  line-height: 1;
  color: #fff;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  margin-top: 0;
  z-index: 2;
}
#hero .btn-read-more:hover {
  border-color: #edaf44;
  background: #edaf44;
  color: #fff;
}
#hero .carousel-control-prev,
#hero .carousel-control-next {
  width: 5%;
}
.custom-shape-divider-bottom {
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
  z-index: 2;
}
.custom-shape-divider-bottom svg {
  position: relative;
  display: block;
  width: calc(170% + 1.3px);
  height: 140px;
}
.custom-shape-divider-bottom .shape-fill {
  fill: #FFFFFF;
}
ul.social-links {
  position: absolute;
  left: 8%;
  bottom: 3%;
  z-index: 10;
  list-style: none;
  padding: 0;
}
ul.social-links li {
  display: inline-block;
  margin-left: 10px;
}
ul.social-links li {
  position: relative;
  width: 40px;
  height: 40px;
  font-size: 24px;
  margin: 10px 0;
  text-align: center;
  cursor: pointer;
  border-radius: 100%;
  transition: all 0.5s ease;
}
ul.social-links a {
  color: #000;
}
ul.social-links li i {
  line-height: 40px !important;
  font-size: 24px;
  margin: 0;
}
ul.social-links li:hover.facebook {
  background: #1877F2;
  box-shadow: 0 0 20px 2px #1877F2;
  transition: all 0.5s ease;
}
ul.social-links li:hover.twitter {
  background: #1DA1F2;
  box-shadow: 0 0 20px 2px #1DA1F2;
  transition: all 0.5s ease;
}
ul.social-links li:hover.youtube {
  background: #CD201F;
  box-shadow: 0 0 20px 2px #CD201F;
  transition: all 0.5s ease;
}
ul.social-links li:hover.instagram {
  background: #E4405F;
  box-shadow: 0 0 20px 2px #E4405F;
  transition: all 0.5s ease;
}
ul.social-links li:hover a {
  color: #fff;
}
@media (max-width: 1200px) {
  ul.social-links {
    left: 6%;
  }
}
@media (max-width: 992px) {
  #hero {
    height: 100vh;
  }
}
@media (max-width: 991px) {
  #hero .carousel-indicators {
    left: 0;
    bottom: 110px;
  }
  #hero .carousel-container {
    text-align: center;
  }
  .breadcrumbs .custom-shape-divider-bottom svg {
    height: 80px;
  }
}
@media (max-width: 767px) {
  #hero h2 {
    font-size: 24px;
  }
  #hero p {
    font-size: 12px;
  }
  .btn-read-more {
    font-size: 13px;
    display: inline-block;
    padding: 8px 18px;
  }
  .custom-shape-divider-bottom,
  ul.social-links {
    display: none !important;
  }
  #hero .carousel-indicators {
    bottom: 20px;
  }
  nav ul.social-links {
    display: block !important;
    position: relative;
    overflow-y: initial;
    width: auto;
    left: initial;
    bottom: initial;
    text-align: center;
    margin: 25px auto;
  }
  nav ul.social-links a,
  nav ul.social-links a:hover,
  nav ul.social-links a:focus,
  nav ul.social-links a:active,
  nav ul.social-links a i,
  nav ul.social-links a:focus i {
    padding: 0 !important;
    font-size: 24px !important;
    color: #fff !important;
    margin: 0 !important;
  }
  nav ul.social-links li i {
    line-height: 40px !important;
    margin: 0;
  }
  nav ul.social-links li:hover {
    box-shadow: none !important;
  }
}
@media (max-height: 500px) {
  #hero {
    height: 120vh;
  }
}
section {
  padding: 120px 0;
  overflow: hidden;
}
.section-bg {
  background-color: #f6f9fd;
}
.section-title h2 {
  color: #0d8369;
  position: relative;
  display: inline-block;
}
.section-title h2::after {
  content: '';
  position: absolute;
  width: 60px;
  height: 4px;
  margin: auto;
  background: #cf993a;
  border-radius: 4px;
  bottom: -7px;
  right: 0;
}
.about .content h3 {
  font-weight: 600;
  font-size: 26px;
}
.about .content ul {
  list-style: none;
  padding: 0;
}
.about .content ul li {
  padding-left: 28px;
  position: relative;
}
.about .content ul li+li {
  margin-top: 10px;
}
.about .content ul i {
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 20px;
  color: #0d8369;
  line-height: 1;
}
/* .about .content p:last-child {
  margin-bottom: 0;
} */
.about .content .btn-learn-more {
  font-size: 14px;
  display: inline-block;
  padding: 12px 30px;
  border-radius: 100px;
  transition: 0.3s;
  line-height: 1;
  color: #0d8369;
  margin-top: 6px;
  border: 2px solid #0d8369;
}
.about .content .btn-read-more,
.blog .btn-read-more,
.btn-all-case {
  border: 2px solid #0d8369;
  color: #0d8369;
}
.about .content .btn-read-more:hover,
.blog .btn-read-more:hover,
.btn-all-case:hover {
  background: #0d8369;
  color: #fff;
}
.about-img {
  text-align: center;
}
/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
  padding-top: 0;
}
.counts .counters span {
  font-size: 74px !important;
  display: block;
  color: #0d8369;
  font-weight: 700;
  line-height: 1.2;
}
.counts .counters p {
  padding: 0;
  margin: 0 0 20px 0;
}
.counts .counters span,
.counts .counters p {
  font-family: "Tajawal", Tahoma, sans-serif !important;
}
#services {
  position: relative;
  background: #fff;
  padding: 20px 0 140px;
  z-index: 0;
}
#services:after {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 75%;
  content: '';
  background: #f5f5f5;
  z-index: -1;
}
.services .box {
  background: #fff;
  /*d8efe7*/
  text-align: center;
  padding: 50px 40px;
  border-radius: 14px;
  box-shadow: 0px 0px 20px 0px rgba(181, 181, 181, 0.1);
  transition: all 0.4s;
}
.services .box .sicon {
  display: block;
  font-size: 66px;
  color: #0d8369;
  line-height: 1;
  padding-bottom: 10px;
}
.services .box h3 {
  padding: 0;
  color: #333;
}
.services .box p {
  margin: 0;
  padding: 0;
}
.services .box.programs {
  background: rgb(13, 131, 105) !important;
  background: linear-gradient(180deg, rgba(24, 179, 129, 1) 0%, rgba(13, 131, 105, 1) 100%) !important;
}
.services .box.programs .sicon,
.services .box.programs h3,
.services .box.programs p {
  color: #fff;
}
.services .box.programs:hover {
  box-shadow: 0 15px 30px rgba(13, 131, 105, 0.50);
}
.services .box:hover {
  transform: translate(0px, -4px);
  background: #f5fffd;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}
.services .box .btn-read-more {
  margin-top: 20px;
}
.services .box .btn-read-more,
.apply-btn .btn-read-more,
.newjob-btn .btn-read-more {
  font-family: "Tajawal", Tahoma, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  padding: 15px 26px;
  border: none;
  transition: transform .1s ease-out, color .15s linear;
  transform: scale(1);
}
.services .box .btn-read-more {
  color: #0d8369;
  background: #dbede9;
}
.services .box.programs .btn-read-more {
  color: #0d8469;
  background: #fff;
}
.services .box:hover .btn-read-more,
.apply-btn .btn-read-more,
.newjob-btn .btn-read-more {
  color: #fff;
  background: #0d8369;
}
.services .box .btn-read-more:active {
  background: #0b6d58;
  transform: scale(0.95);
}
.services .box.programs:hover .btn-read-more {
  background: #cf993a;
  color: #fff;
}
.services .box.programs .btn-read-more:active {
  background: #b4832f;
}
.services .box .btn-read-more i {
  color: #fff !important;
  font-size: 21px;
  line-height: 1;
  vertical-align: middle;
  opacity: 0;
  margin-right: -20px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  -moz-transform: translateX(-10px);
  -webkit-transform: translateX(-10px);
  -ms-transform: translateX(-10px);
  -o-transform: translateX(-10px);
  transform: translateX(-10px);
}
.services .box .btn-read-more:hover i {
  opacity: 1;
  margin-right: 10px;
  -moz-transform: translateX(0px);
  -webkit-transform: translateX(0px);
  -ms-transform: translateX(0px);
  -o-transform: translateX(0px);
  transform: translateX(0px);
}
@media (max-width: 1400px) {
  .g-5,
  .gx-5 {
    --bs-gutter-x: 2rem;
  }
}
@media (max-width: 1200px) {
  .g-5,
  .gx-5 {
    --bs-gutter-x: 1.5rem;
  }
}
.features {
  position: relative;
  background-image: url('../img/subs-bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.features:before {
  content: "";
  z-index: -1;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: #045644;
  background: linear-gradient(180deg, rgba(24, 179, 129, 1) 0%, rgba(4, 86, 68, 1) 75%);
}
.feature {
  position: relative;
}
.feature+.feature {
  margin-top: 3rem;
}
.features h1 {
  color: #fff;
  margin-bottom: 40px;
  position: relative;
}
.features h1:after {
  position: absolute;
  content: "";
  bottom: -7px;
  right: 0;
  width: 98px;
  height: 6px;
  background: #cf993a;
  border-radius: 4px;
  z-index: -1;
}
.feature .feature-icon {
  position: absolute;
  right: 0;
  top: 0;
  width: 80px;
  height: 80px;
  /* line-height: 80px; */
  text-align: center;
  border-radius: 50%;
  font-size: 30px;
  color: #0d8369;
  background: #fff;
  /* dbede9 */
  box-shadow: 0px 5px 15px 5px rgba(38, 38, 38, 0.3);
}
.feature [class^="bi-"]::before,
.feature [class*=" bi-"]::before {
  line-height: 80px !important;
}
.feature-content {
  color: #fff;
  padding-right: 100px;
}
.feature-content h4 {
  font-size: 22px;
  margin-bottom: 10px;
}
.feature-content p {
  font-size: 15px;
  margin: 0;
}
.features-btn {
  margin: 60px auto 0;
}
.features-btn .subscribe.sbtn {
  position: relative;
  display: inline-block;
  font-family: "Tajawal", Tahoma, sans-serif;
  font-size: 20px;
  font-weight: bold;
  padding: 16px 60px !important;
  background-color: #cf993a;
  box-shadow: 0 0 0 0 rgba(207, 153, 58, 0.4);
  -moz-animation: pulse 3s infinite;
  -webkit-animation: pulse 3s infinite;
  animation: pulse 3s infinite;
}
.features-btn .subscribe.sbtn:hover {
  box-shadow: 0px 15px 20px rgba(207, 153, 58, 0.4) !important;
}
.features-btn .subscribe.sbtn:active {
  background-color: #cf993a;
  box-shadow: none !important;
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(207, 153, 58, 1);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(207, 153, 58, 0);
  }
  100% {
    box-shadow: 0 0 0 50px rgba(207, 153, 58, 0);
  }
}
@media (max-width: 991px) {
  .features h1 {
    margin-top: 40px;
    margin-bottom: 10px;
  }
}
.blog-big,
.blog-big-image,
.blog .section-title,
.graduation-case .section-title {
  position: relative;
  overflow: hidden;
}
.blog .btn-read-more,
.btn-all-case {
  float: left;
  font-size: 16px;
  font-family: "Tajawal", Tahoma, sans-serif;
}
.blog-big-image a {
  display: block;
  overflow: hidden;
  width: 100%;
  height: 430px;
  -webkit-background-size: cover;
  background-size: cover;
  background-position: center center;
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease;
}
.blog-big-content {
  color: #fff;
  position: absolute;
  bottom: 15px;
  padding: 0 20px;
  z-index: 2;
  width: 100%;
}
.blog-big-content .title {
  margin-bottom: 10px;
}
.blog-big-content .title a {
  color: #fff;
}
.blog-big-content .title a:hover,
.blog-big-content .title a:focus {
  color: #18b381;
}
.blog-big-content .date {
  font-size: 15px;
  display: inline-block !important;
}
.blog-big:after {
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(13, 131, 105, 0.60) 0%, rgba(0, 0, 0, 0.98) 100%);
}
.blog-small {
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
  background: #fff;
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease;
}
.blog-small .small-img {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 200px;
  flex: 0 0 200px;
  background-color: #e6f2f0;
}
.blog-small-content {
  padding: 20px;
  position: relative;
  overflow: hidden;
  width: 100%;
  background: #e6f2f0;
  min-height: 200px;
}
.blog-small-content .date,
.blog-small-content .seen {
  font-size: 15px;
  position: absolute;
}
.blog-small-content .date {
  right: 20px;
  bottom: 20px;
}
.blog-big-content .seen {
  display: inline-block;
  margin-right: 8px;
}
.blog-small-content .seen {
  right: 125px;
  bottom: 20px;
}
.blog-big:hover .blog-big-image a,
.blog-small:hover a.small-img {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}
.page-content .date {
  margin-top: 10px;
}
@media (max-width: 767px) {
  .blog-small .small-img {
    height: 200px;
  }
}
.iaeste {
  position: relative;
  background-color: #e6ebee;
  background-image: url("../img/slide/slide-3.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  z-index: 9;
}
.iaeste:before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  bottom: 0px;
  right: 0px;
  background: rgba(230, 230, 230, 0.92);
}
.btn-iaeste {
  z-index: 9;
}
.btn-iaeste .btn-read-more {
  border-color: #0b3d59;
  color: #0b3d59;
}
.btn-iaeste .btn-read-more:hover,
.btn-iaeste .btn-read-more:hover {
  background: #0b3d59;
  color: #fff;
}
/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact-form {
  width: 100%;
}
.contact-form .form-group {
  padding-bottom: 8px;
}
.contact-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}
.contact-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}
.contact-form .sent-message br+br {
  margin-top: 25px;
}
.contact-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}
.contact-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}
.contact-form input,
.contact-form textarea,
.contact-form select,
.contact-form .form-group input {
  background-color: #dff1eb;
  border-color: #3ab18b;
  box-shadow: none !important;
  font-size: 16px;
  border-radius: 24px;
  color: #054a3b;
  direction: rtl;
  transition: 0.4s;
  padding: .375rem 1.2rem;
  border-width: 2px;
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus,
.contact-form .form-group input:focus {
  background-color: #fff;
  border-color: #054a3b !important;
}
.contact-form input,
.contact-form select {
  height: 44px;
}
.contact-form textarea {
  padding: .7rem 1.2rem;
}
.contact-form button[type=submit] {
  background: #0d8369;
  border: 0;
  padding: 10px 30px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
  font-family: "Tajawal", Tahoma, sans-serif;
  font-size: 16px;
}
.contact-form button[type=submit]:hover {
  background: #0b6d58;
}
.contact-form button[type=submit]:active {
  background: #054a3b;
  transform: scale(0.95);
}
.contact-form .form-group input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.contact-form input::-webkit-input-placeholder,
.contact-form select::-webkit-input-placeholder,
.contact-form textarea::-webkit-input-placeholder {
  color: #054a3b !important;
}
.contact-form input:-moz-placeholder,
.contact-form select:-moz-placeholder .contact-form textarea:-moz-placeholder {
  color: #054a3b !important;
}
.contact-form input:-ms-input-placeholder,
.contact-form select:-ms-input-placeholder .contact-form textarea:-ms-input-placeholder {
  color: #054a3b !important;
}
.breadcrumbs {
  text-align: center;
  padding: 250px 0 100px;
  background-color: #181818;
  min-height: 300px;
  height: auto;
  position: relative;
  z-index: 9;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.breadcrumbs:before {
  content: "";
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: rgba(0, 0, 0, 0.5);
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.85) 70%);
}
.bc-links {
  position: relative;
  z-index: 9;
  color: #fff;
  max-width: 600px;
  margin: auto;
  text-align: center;
}
.breadcrumbs h2 {
  font-size: 25px;
  font-weight: 600;
  color: #18b381;
  margin-bottom: 0;
}
.breadcrumbs ol {
  display: inline-flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 7px 0;
  margin: 0;
  font-size: 13px;
}
.breadcrumbs ol li+li {
  padding-right: 7px;
}
.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-left: 7px;
  color: #ffffff;
  content: "\f284";
  display: inline-block;
  font-family: bootstrap-icons !important;
  font-style: normal;
  font-weight: normal !important;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  vertical-align: -.125em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.breadcrumbs .bc-links a {
  color: #fff;
}
.breadcrumbs .bc-links a:hover,
.breadcrumbs .bc-links a:focus {
  color: #18b381;
}
/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #3ab18b;
  /* 55b395 */
  padding: 0 0 30px 0;
  color: #fff;
}
#footer .footer-top {
  padding: 120px 0 30px 0;
}
#footer .footer-top .footer-info {
  text-align: center;
}
#footer .footer-top .footer-info img {
  margin-bottom: 40px;
  text-align: center;
  max-width: 160px;
  filter: brightness(0) invert(1);
}
#footer .footer-top .footer-info h3 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}
#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
}
#footer .footer-top .social-links a {
  font-size: 20px;
  display: inline-block;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 100px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  background: #0d8369;
}
#footer .footer-top .social-links a:hover {
  color: #fff;
  background: #054a3b;
  text-decoration: none;
}
#footer .footer-top h4 {
  color: #fff;
  position: relative;
  padding-bottom: 12px;
}
#footer .footer-top .footer-links {
  text-align: center;
  /* margin-bottom: 30px; */
}
#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
#footer .footer-top .footer-links ul li {
  padding: 10px 0;
}
#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}
#footer .footer-top .footer-links ul a {
  color: #fff;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}
#footer .footer-top .footer-links ul a:hover,
#footer .copyright {
  color: #054a3b;
}
#footer .copyright-wrap {
  padding-top: 30px;
  border-top: 1px solid #0d8369;
}
#footer .copyright {
  font-size: 14px;
}
#footer .copyright.dd-text {
  text-align: left !important;
}
#footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
  color: #fff;
}
@media (max-width: 767px) {
  #footer .footer-top .footer-info {
    margin-bottom: 3rem;
  }
  #footer .footer-top h4 {
    margin-bottom: 0;
  }
  #footer .footer-top .footer-links ul li {
    padding: 7px 0;
  }
  #footer .copyright {
    font-size: 13px;
  }
  #footer .footer-top h4,
  #footer .copyright.dd-text,
  #footer .copyright {
    text-align: center !important;
  }
}
/* Inner pages */
body.login-page {
  height: 100vh;
  min-height: 100%;
  background-color: #f1f1f1;
}
body.login-page {
  padding: 120px 0 70px;
  position: relative;
}
body.login-page #footer {
  background: transparent;
  margin-top: 75px;
}
body.login-page #footer .copyright {
  border-top: none;
}
.login-box,
.register-box {
  margin: 3% auto;
  max-width: 460px;
}
.form-control,
.form-select {
  line-height: 26px;
  border-radius: 20px;
  padding: .375rem 1.2rem;
}
.form-control:focus,
.form-select:focus {
  border-color: #054a3b !important;
}
.input-group-text {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
  font-size: 19px;
  color: #555;
}
.input-group-append,
.input-group-prepend {
  display: -ms-flexbox;
  display: flex;
}
.mybtn-primary {
  background: #0d8369;
  border: 0 !important;
  padding: 9px 20px;
  color: #fff !important;
  transition: 0.4s;
  font-size: 14px;
  width: 100%;
}
.mybtn-primary.btn:hover,
.mybtn-primary.btn:focus {
  background: #0b6d58 !important;
}
.mybtn-primary.btn:active {
  background: #054a3b;
  transform: scale(0.95);
}
[class*=icheck-]>label {
  padding-right: 29px !important;
  padding-left: 0 !important;
  color: #666;
}
[class*=icheck-]>input:first-child+input[type=hidden]+label::before,
[class*=icheck-]>input:first-child+label::before {
  border-radius: 0;
  margin-left: 0 !important;
  margin-right: -29px;
  border: 1px solid #D3CFC8;
  border-radius: 3px;
}
.icheck-primary>input:first-child:checked+label::before,
.icheck-primary>input:first-child:checked+input[type="hidden"]+label::before {
  background-color: #cf993a;
  border-color: #cf993a;
}
.icheck-primary>input:first-child:not(:checked):not(:disabled):hover+label::before,
.icheck-primary>input:first-child:not(:checked):not(:disabled):hover+input[type="hidden"]+label::before {
  border-color: #cf993a;
}
[class*=icheck-]>input:first-child:checked+input[type=hidden]+label::after,
[class*=icheck-]>input:first-child:checked+label::after {
  left: initial;
  right: 15px;
}
.reg-lnk {
  color: #0d8369;
}
.reg-lnk:hover {
  color: #cf993a;
}
.create-account {
  background: #dbede9;
  border-radius: 0 0 7px 7px;
  padding: 20px;
  text-align: center;
  font-size: 14px;
  width: 100%;
  font-family: "Tajawal", Tahoma, sans-serif;
}
.icheck-primary {
  margin: 0 !important;
}
.forgetpass {
  color: #666;
}
.forgetpass:hover {
  text-decoration: underline;
}
.register-card {
  padding: 0;
}
.register-card .tab-content,
.register-card .nav-pills .nav-link {
  padding: 20px;
}
.register-card .nav-fill .nav-item,
.register-card .nav-fill>.nav-link {
  width: 50%;
}
.register-card .nav-pills .nav-link#pills-grad-tab,
.register-card .nav-pills>.nav-link#pills-grad-tab {
  border-radius: 0;
  border-top-right-radius: 7px;
}
.register-card .nav-pills .nav-link#pills-company-tab,
.register-card .nav-pills>.nav-link#pills-company-tab {
  border-radius: 0;
  border-top-left-radius: 7px;
}
.register-card .nav-pills .nav-link.active,
.register-card .nav-pills .show>.nav-link {
  color: #0d8369 !important;
  background-color: #fff !important;
}
.register-card .nav-fill .nav-item .nav-link,
.register-card .nav-justified .nav-item .nav-link {
  color: #7c7c7c;
  background-color: #f1f1f1;
}
.register-card .input-group-text,
.input-group>.form-control,
.input-group>.form-select,
.custom-file-button label {
  font-size: 14px;
  color: #777;
  height: 40px;
  border-radius: .25rem;
}
.custom-file-button input[type=file]::-webkit-file-upload-button {
  display: none;
}
.custom-file-button input[type=file]::file-selector-button {
  display: none;
}
.register-card label,
#careerModal label {
  color: #666;
  border-top-right-radius: .25rem;
  border-bottom-right-radius: .25rem;
}
.custom-file-button:hover label {
  color: #3a3a3a;
  background-color: #dde0e3;
  cursor: pointer;
}
/* input[type='file'] {
  text-indent: -9999px;
} */
/* .page-content {
  background-color: #f5f5f5;
} */
.page-content section {
  padding: 80px 0 100px;
  overflow: initial;
}
.page-content p,
.page-content span {
  font-family: "Tajawal", Tahoma, sans-serif !important;
  font-size: 17px !important;
  color: #666;
}
.pagination {
  margin-top: 35px;
  padding: 0;
  margin-bottom: 0;
}
.page-link {
  color: #151515;
  border: none;
  width: 40px;
  height: 40px;
  text-align: center;
  margin: 0 2px !important;
  font-weight: 400;
  padding: 0;
  line-height: 40px;
}
.pagination .page-link {
  padding: 7px 12px !important
}
.page-link,
.page-item:last-child .page-link,
.page-item:first-child .page-link {
  border-radius: 100px;
}
.page-item.active .page-link {
  z-index: 3;
  color: #fff !important;
  background-color: #18b381;
  border-color: #18b381;
}
.page-link:hover,
.page-link:active {
  background-color: #e6f2f0;
}
.page-link:hover,
.page-link:active,
.page-link:focus {
  color: #151515 !important;
}
.page-item.disabled .page-link {
  background-color: #fff;
}
.img-content img {
  width: auto;
  max-width: 750px;
  margin: 1rem auto;
}
@media (max-width: 991px) {
  .img-content img {
    width: auto;
    max-width: 100%;
  }
}
.share {
  display: flex;
  float: left;
  margin: 0;
}
.share p {
  display: flex;
  align-items: center;
  font-size: 17px;
  margin-bottom: 0;
  margin-left: 7px;
}
.course-wrap .share {
  display: block;
    float: initial;
}
ul.share2socials {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
ul.share2socials li {
  display: inline-block;
}
ul.share2socials a {
  text-align: center;
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  font-size: 24px;
  margin: 0 0 0 3px;
  border: 1px solid #666;
  border-radius: 100%;
}
ul.share2socials a i {
  line-height: 40px;
}
ul.share2socials a {
  color: #666;
}
ul.share2socials a:hover {
  color: #fff;
}
ul.share2socials a.facebook:hover {
  border: 1px solid #1877F2;
  background-color: #1877F2;
}
ul.share2socials a.twitter:hover {
  border: 1px solid #1DA1F2;
  background-color: #1DA1F2;
}
ul.share2socials a.whatsapp:hover {
  border: 1px solid #25D366;
  background-color: #25D366;
}
ul.share2socials a.linkedin:hover {
  border: 1px solid #0A66C2;
  background-color: #0A66C2;
}
ul.share2socials a.email:hover {
  border: 1px solid #3ab18b;
  background-color: #3ab18b;
}
ul.share2socials a.website:hover {
  border: 1px solid #0d8369;
  background-color: #0d8369;
}
body.jobs-page .custom-shape-divider-bottom .shape-fill,
body.jobs-page, body.pages {
  fill: #f5f5f5;
  background-color: #f5f5f5;
}
.jobs-section {
  max-width: 992px;
  margin: auto;
  padding-left: 15px !important;
  padding-right: 15px !important;
}
.jobs-section .section-title {
  text-align: center;
}
.jobs-section .section-title h2::after {
  left: 0;
}
.job-blk {
  margin: 1rem auto;
  border: 1px solid #e1e1e1;
  transition: all 0.4s;
}
.w-blk {
  overflow: hidden;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0px 0px 15px 0px rgba(151, 151, 151, 0.2);
  background-color: #fff;
}
.job-detail-wrap .job-title {
  margin-bottom: 20px;
  line-height: 1.4;
}
.job-detail-wrap .share {
  margin: 20px auto;
  text-align: center;
}
.job-detail-wrap ul.share2socials a {
  width: 34px;
  height: 34px;
  line-height: 34px;
  font-size: 21px;
  /* margin: 0; */
}
.job-detail-wrap ul.share2socials a i {
  line-height: 34px;
}
#all-jobs-wrap .job-blk:hover {
  background-color: #fdfdfd;
  border-color: #18b381;
}
.job-details {
  line-height: 1.9;
}
.job-meta {
  display: flex;
  -webkit-box-align: center;
  align-items: center;
}
.job-title {
  margin-bottom: 10px;
  line-height: 1.2;
  margin-left: 20px;
}
.job-title,
.co-name,
.job-title a {
  color: #0d8369;
}
.job-title a:hover,
.job-title a:focus {
  color: #18b381;
}
.job-date {
  color: #666;
  font-size: 12px;
  white-space: nowrap;
  padding: 2px 14px;
  border-radius: 100px;
  background-color: #f1f1f1;
  margin-bottom: 10px;
}
.job-details i,
.company-details .co-location i,
.company-details .co-want i {
  display: inline-block;
  margin-left: 5px;
  width: 18px;
  height: 20px;
  color: #888;
  font-size: 16px;
  text-align: center;
}
.job-details span {
  color: #777;
  margin-left: 3px;
}
.job-deadline {
  white-space: nowrap;
}
.job-deadline,
.job-deadline i,
.job-deadline span {
  color: #eb0000;
}
.job-desc {
  color: #777;
  /* font-size: 13px; */
  margin-bottom: 0;
}
.j-description {
  margin-top: 25px;
  padding-top: 25px;
  border-top: 1px solid #d5d5d5;
}
.j-description p,
.j-description li {
  font-size: 15px;
}
.j-description li {
  padding: 2px 0;
}
/* .j-description .company-logo a, */
.company-logo img {
  float: left;
}
.company-info p,
.about-co p {
  font-size: 14px;
}
.company-info img {
  margin: 0 auto 15px;
}
.company-info .co-lnk {
  color: #0d8369;
  font-weight: bold;
}
.company-info .co-lnk:hover {
  text-decoration: underline;
}
.company-details ul.share2socials {
  margin-top: 10px;
}
.about-co {
  margin-top: 25px;
  padding-top: 20px;
  border-top: 1px solid #d5d5d5;
}
.other-jobs h5 {
  margin-bottom: 2rem;
}
.other-jobs .job-title {
  margin-bottom: 10px
}
.other-jobs .job-details {
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid #d5d5d5;
}
.other-jobs .job-details:last-child {
  border-bottom: 0;
  margin-bottom: 0;
  padding-bottom: 0;
}
.apply-btn .btn-read-more {
  margin-top: 15px;
}
.newjob-btn .btn-read-more {
  border-radius: 12px;
}
.apply-btn .btn-read-more,
.newjob-btn .btn-read-more {
  background: #3ab18b;
  font-size: 19px;
  padding: 16px 30px;
  transition: all 0.4s;
}
.apply-btn .btn-read-more:hover,
.apply-btn .btn-read-more:focus,
.newjob-btn .btn-read-more:hover,
.newjob-btn .btn-read-more:focus {
  background: #cf993a;
}
.apply-btn .btn-read-more:active,
.newjob-btn .btn-read-more:active {
  transform: scale(0.95);
}
.newjob-btn {
  margin: 15px auto;
}
.newjob-btn i {
  display: table;
  margin: 4px auto;
  font-size: 27px;
  line-height: 27px;
}
.company-logo a img {
  width: 125px;
  max-height: 125px;
  margin: auto;
  background-color: #f9f9f9;
  border-radius: 9px;
  display: block;
}
@media (max-width: 575px) {
  .jobs-section .job-blk {
    padding: 20px;
    position: relative;
  }
  .company-logo a,
  .company-logo img {
    float: initial;
    text-align: center;
    margin-bottom: 15px;
  }
  .company-logo a img {
    margin: 0 0 15px;
  }
  .job-title {
    margin-left: 0;
  }
  .job-details span.job-date {
    position: absolute;
    top: 20px;
    left: 15px;
    line-height: 1.4 !important;
    padding: 4px 10px 0 !important;
  }
}
.video-wrap {
  text-align: center;
  position: relative;
  /* min-height: 300px; */
  border-radius: 14px;
  overflow: hidden;
  transition: all ease-in-out 0.4s;
  box-shadow: 0px 0px 20px 0px rgba(90, 90, 90, 0.2);
}
.video-wrap:hover {
  box-shadow: 0px 0px 20px 0px rgba(90, 90, 90, 0.5);
}
.video-wrap a {
  font-size: 30px;
  background: #0b3d59;
  color: #ffffff;
  height: 64px;
  width: 64px;
  border-radius: 100%;
  text-align: center;
  line-height: 70px;
  padding-left: 6px;
  display: block;
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  font-family: serif;
  z-index: 9;
}
.video-wrap:after {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: 1;
  border-radius: 14px;
  background-color: rgba(11, 61, 89, 0.5);
}
.video-wrap a:hover {
  color: #fff;
  background: #cf993a;
}
.video-wrap img {
  width: 100%;
  overflow: hidden;
  max-height: max-content;
  border-radius: 14px;
  transition: all ease-in-out 0.4s;
}
.video-wrap:hover img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}
.video-wrap a:before,
.video-wrap a:after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  border: 1px solid #fff;
  border-radius: 100%;
}
.glightbox-clean .gprev {
  right: 30px;
  left: initial;
}
.glightbox-clean .gnext {
  left: 30px;
  right: initial;
}
.glightbox-clean .gclose:hover path {
  fill: #eb0000;
  transition: 0.3s all ease-in-out;
}
.video-wrap a:before {
  -webkit-animation: scaling 1s linear 0s infinite;
  -o-animation: scaling 1s linear 0s infinite;
  animation: scaling 1s linear 0s infinite;
}
.video-wrap a:after {
  -webkit-animation: scaling 1s linear 0.3s infinite;
  -o-animation: scaling 1s linear 0.3s infinite;
  animation: scaling 1s linear 0.3s infinite;
}
@keyframes scaling {
  0% {
    opacity: 0;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
  15% {
    opacity: 0.7;
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
    transform: scale(1.05);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(2);
    -ms-transform: scale(2);
    -o-transform: scale(2);
    transform: scale(2);
  }
}
body.iaeste-page .page-content section {
  padding-bottom: 0;
}
.tes-blk {
  margin-top: 80px;
  padding: 90px 0px;
  background: #e6ebee;
}
.tes-blk .counts .counters span {
  color: #0b3d59;
}
.jobs-slider .job-blk {
  margin: 1rem;
}
.jobs-block,
.testimonials,
.gcase-block {
  position: relative;
  overflow: hidden;
  padding: 0 0 50px 0;
}
.testimonials .testimonial-wrap {
  padding-right: 30px;
}
.testimonials .testimonial-item {
  box-sizing: content-box;
  padding: 30px 60px 30px 30px;
  margin: 20px;
  min-height: 250px;
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  position: relative;
  background: #fff;
}
.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  height: 90px;
  border-radius: 100%;
  border: 6px solid #fff;
  position: absolute;
  right: -45px;
  top: 20px;
}
.testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #065b89;
}
.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #707070;
  margin: 0;
}
.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: #cf993a;
}
.testimonials .testimonial-item .quote-icon-right {
  font-size: 26px;
}
.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
}
.testimonials .testimonial-item .quote-icon-left {
  left: 10px;
  position: absolute;
  bottom: -15px;
  font-size: 180px;
  opacity: 0.1;
}
.testimonials .testimonial-item p {
  color: #585858;
  margin: 15px auto 15px auto;
  font-size: 14px;
  z-index: 9;
  display: block;
}
.testimonials .swiper-pagination,
.jobs-slider .swiper-pagination {
  margin-top: 15px;
}
.swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #0b3d59;
}
.swiper-pagination .swiper-pagination-bullet-active {
  background-color: #0b3d59;
}
@media (max-width: 767px) {
  .testimonials .testimonial-wrap {
    padding-right: 0;
  }
  .testimonials .testimonial-item {
    padding: 30px;
    margin: 15px;
    height: 500px;
  }
  .testimonials .testimonial-item .testimonial-img {
    position: static;
    right: auto;
  }
}
.gcase-block {
  padding: 5px 15px 40px;
  margin: 30px auto;
}
.download-card {
  max-width: 340px;
  margin: 15px auto;
  overflow: hidden;
  background-color: #ededed;
  border-radius: 14px;
  padding: 15px;
  transition: all 0.4s;
  min-height: 280px;
}
.download-card:hover {
  background-color: #fff;
  box-shadow: 0px 0px 15px rgb(0 0 0 / 15%);
}
.card-img {
  width: 100%;
}
.card-img img {
  border-radius: 10px;
}
.card-title {
  margin: 1rem 0;
}
.ctype {
  font-size: 15px;
  padding: 3px 0;
}
.ctype i {
  font-size: 17px;
}
.cdl .btn-read-more {
  color: #fff;
  background-color: #0d8369;
  font-size: 14px;
}
.cdl .btn-read-more:hover,
.cdl .btn-read-more:focus {
  color: #fff;
  background-color: #cf993a;
}
.custom-shape-divider-bottom {
  display: none;
}
.contact-form .form-group img.captcha {
  border-radius: 7px;
  margin: -2px 7px 0;
}

#detail {
  position: relative;
  z-index: 10;
  padding: 50px;
  max-width: 992px;
  border-radius: 30px;
  box-shadow: 0px 0px 15px 0px rgb(151, 151, 151, .2);
  background-color: #fff;
  margin: auto;
  margin-top: -8em;
}
#detail img {
  width: 100% !important;
  max-width: 100% !important;
  border-radius: 20px !important;
}
.publisher {
  display: inline-block;
  background: #ebebeb;
  padding: 5px 17px;
  border-radius: 100px;
  margin-bottom: 10px;
  font-size: 15px;
}
.btn {
  font-size: 13px;
  color: #777;
  border-radius: 100px;
  margin: 0 5px;
}
.btn-success {
  background-color: #dbede9;
  border-color: #dbede9;
}
.btn-danger {
  color: #fff;
  background-color: #ed9aa2;
  border-color: #ed9aa2;
}
.blogs {
  margin-top: 25px;
  padding: 0 !important;
  overflow: hidden;
  cursor: pointer;
}
.blogs img {
  width: 100%;
  height: 260px;
}
.blogs-c {
  padding: 30px;
}
.oop_name {
  height: 64px !important;
  overflow: hidden;
  font-size: 22px;
}

.box-program {
  padding: 0 !important;
}
.box-program img {
  width: 100%;
  padding: 10px;
  height: 260px;
  /* border-radius: 20px; */
}
.box-prog-wrap {
  padding: 25px;
  padding-top: 15px;
}
.box-program .btn-read-more {
  margin-top: 20px;
}
.program_icons {
  margin: 0 5px;
  padding: 6px 0;
  color: #cf993a;
  background-color: #ffffff;
  border-radius: 20px;
  width: 30px;
  height: 30px;
  display: inline-block;
  line-height: 1;
  text-align: center;
  float: right;
}
.program-detail {
  position: relative;
  padding: 50px;
  max-width: 992px;
  border-radius: 14px;
  background-color: #fff;
  min-height: 400px;
  margin: auto;
}
.sec-program-name {
  color: #054a3b;
  font-size: 15px;
  width: 100%;
  background-color: #d4ebe3;
  text-align: right;
  height: inherit;
  padding: 20px;
  border-radius: 14px;
}
.program_detail_icons {
  background-color: #efe7d9;
  color: #151515;
  padding: 20px;
  border-radius: 14px;
}
.program_detail_icons .mb-3 div {
 padding-right: 40px;
}
.he {
  width: 100% !important;
  margin-bottom: 40px;
  border-radius: 14px;
}
i.att {
  font-size: 21px;
  color: #3ab18b;
  padding: 7px 20px;
  font-weight: bold;
  margin: 15px 2px 15px !important;
  display: inline-block;
  background: #d8efe8;
  border-radius: 100px;
  min-width: 125px;
}
i.att span {
  padding-right: 6px;
  font-style: normal;
}
.progress span {
  color: #fff;
}
.job-details ul {
  padding-right: 2rem;
}
.oppor {
  padding: 30px !important;
}
.oppor img {
  width: 100%;
  height: 200px;
  border-radius: 14px;
}
.blogs,
.box-program, .oppor {
  max-width: 410px;
  margin-left: auto;
  margin-right: auto;
}
/* .sb-dd {
  width: 100px;
  font-size: inherit;
  margin: auto;
} */
.opportunity .section-title h2::after {
  left: 0;
}
i.bi.bi-pencil-fill,i.bi.bi-link-45deg, i.bi.bi-trash-fill, i.bi-plus-circle-fill {
  font-size: 17px !important;
  border-radius: 100px;
  height: 40px;
  width: 40px;
  display: inline-block;
  line-height: 42px;
  text-align: center;
}
/* i.bi.bi-pencil-fill ,i.bi.bi-link-45deg {
  background: #f5ebd8;
} */

/* i.bi.bi-trash-fill {
  background: #fadbdb;
} */
i.bi-plus-circle-fill {
  background: #d8efe8;
}
i.bi-plus-circle-fill {
  color: #0d8369;
}
.alumni-details .section-title h2 {
  padding: 10px 22px;
    background: #d8efe8;
    border-radius: 100px;
    font-size: 20px;
}
.alumni-details .section-title h2::after {
  display: none;
}
.alumni-wrap {
  border: 2px solid #3ab18b;
    background: #f5fbf9;
    border-radius: 14px;
    padding: 20px;
}
.card-body .btn-success {
  font-size: 17px;
  border-radius: 100px;
  padding: 10px 20px;
}

.control-group {
  margin-bottom: 10px;
}
.program_bio {
  height: 84px !important;
  overflow: hidden;
}
#reg_now {
  text-align: center;
  position: -webkit-sticky;
    position: -moz-sticky;
    position: -ms-sticky;
    position: -o-sticky;
    position: sticky;
    height: auto;
    top: 105px;
    bottom: auto;
}
.glightbox-gallery {
  position: relative;
  overflow: hidden;
}
.glightbox-gallery a {
  display: block;
  width: 100%;
  height: auto;
  position: relative;
  overflow: hidden;
}
.glightbox-gallery img {
  width: 100%;
  transition: all ease-in-out 0.4s;
}
.glightbox-gallery:hover img {
  transform: scale(1.1);
}
.glightbox-gallery a::before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #000;
  z-index: 99;
  opacity: 0;
  transition: opacity 0.4s;
}
.glightbox-gallery:hover a::before {
  opacity: 0.3;
  transition: opacity 0.4s;
}
@media (max-width: 1200px) {
  .counts .counters span {
    font-size: 55px !important;
  }
}
@media (max-width: 767px) {
  .w-blk {
    padding: 15px;
}
}
@media (max-width: 575px) {
  .counts .row>* {
    text-align: center;
  }
  #detail,
  .blogs-c {
    padding: 15px;
  }
  .program-detail {
    padding: 20px !important;
  }
  .blogs .btn-read-more {
    padding: 10px 20px !important;
    margin-top: 20px !important;
  }
}
/* css added */
.grad-case-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #0d8369;
}
.grad-case-slider .swiper-pagination .swiper-pagination-bullet {
  border-color: #0d8369;
}
.profile-card {
  border-radius: 24px;
  box-shadow: 0px 0px 15px 0px rgb(151 151 151 / 20%);
  background-color: #fff;
  margin-bottom: 1.5rem;
}
.profile-username {
  color: #0d8369;
}
.profile-box {
  padding: 30px;
}
.profile-img {
  margin: 0 auto 24px;
  width: 200px;
  height: 200px;
  border-radius: 100%;
}
.user-title {
  font-size: 16px !important;
  color: #888;
  padding: 7px 18px;
  display: inline-block;
  background: #f5f5f5;
  border-radius: 100px;
  font-weight: bold;
  margin: 0 3px 20px;
}
.user-title.member i {
  color: #edaf44;
}
.user-title i {
  color: #3ab18b;
}
.user-title i,
.profile-info i {
  margin-left: 5px;
}
.pslinks i {
  font-size: 23px;
  margin: 0 3px;
  line-height: 1;
}
.pslinks a {
  color: #777;
}
.pslinks a:hover {
  color: #0d8369;
}
.profile-info {
  padding: 20px 30px;
  background-color: #f5fbf9;
}
.info-txt {
  margin: 10px 0;
  color: #888;
}
.info-txt span {
  padding: 0 3px;
  font-weight: bold;
  color: #777;
}
.profile-update button, .profile-update a {
  display: block;
  color: #0d8369;
  text-align: center;
  font-weight: bold;
  padding: 20px 30px;
  background-color: #c2e0d9;
  border-bottom-right-radius: 24px;
  border-bottom-left-radius: 24px;
  width: 100%;
  border: none;
}
.profile-update button:hover,.profile-update a:hover {
  color: #fff;
  background-color: #3ab18b;
}

.pro-status {
  text-align: center;
  background-color: #fbfffe;
  border-radius: 40px;
  padding: 7px;
  max-width: 350px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 20px;
  border: 1px solid #def2eb;
}
.aboutme.section-title h2 {
  font-size: 22px;
  margin-bottom: 24px;
}
.aboutme.section-title h2::after {
  width: 40px;
  height: 4px;
}
.info-title {
  font-size: 21px !important;
  color: #0d8369;
  display: inline-block;
  font-weight: bold;
  margin: 0 0 1.5rem !important;
}
.profile-info.edu {
  padding: 30px 30px 40px;
}
.profile_view .profile-info.edu {
  border-bottom-right-radius: 24px !important;
  border-bottom-left-radius: 24px !important;
}
.edu-block {
  padding: 18px 30px;
  background-color: #fff;
  border-radius: 24px;
}
.edu-block .info-txt {
  margin: 5px 0;
}
.timeline {
  padding-right: 160px;
  margin: 0;
}
.pro-title {
  font-size: 19px;
  margin-bottom: 5px;
}
.timeline .timeline-item {
  position: relative;
  padding-bottom: 20px;
  padding-right: 40px;
  border-right: 2px solid #dee2e6;
}
.timeline .timeline-item .timeline-date {
  position: absolute;
  right: -160px;
  background-color: #f5f5f5;
  padding: 2px 10px;
  border-radius: 100px;
}
.timeline .timeline-item:after {
  content: "";
  display: block;
  position: absolute;
  top: 5px;
  right: -11px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #ddd;
}
.timeline .timeline-item:first-child:after {
  border: 2px solid #3ab18b;
  background: #def2eb;
}
.timeline .timeline-item .info-txt,
.timeline .timeline-item .info-txt span {
  margin: 0;
  color: #919191;
  font-size: 15px;
  font-weight: normal;
  display: inline-block;
  margin-left: 5px;
}
.edit-block {
  margin-bottom: 1.5rem;
  display: inline-block;
}
@media (max-width: 767px) {
  .timeline {
    padding-right: 0;
  }
  .timeline .timeline-item {
    padding-right: 20px;
  }
  .timeline .timeline-item .timeline-date {
    position: relative;
    right: 0;
    margin-bottom: 15px;
    display: inline-block;
  }
  .edit-block {
    margin-bottom: 0;
    margin-top: 1rem;
}
.profile-info.edu {
  padding: 15px;
}
.profile-info.edu .info-title {
  padding-right: 15px;
}
.edu-block {
  padding: 14px 20px;
  margin: 20px 0;
}
.info-txt span {
  display: block;
}
}
.skill {
  margin-bottom: 1.5rem;
}
.skill:last-child {
  margin-bottom: 0;
}
.progress {
  height: 8px;
  margin-top: 6px;
}
.progress-bar {
  background-color: #cf993a;
}

.skill-link.info-txt i,
.edit-link i {
  border-radius: 100px;
  background-color: #f5f5f5;
  display: inline-block;
  text-align: center;
  line-height: 1;
  vertical-align: middle;
}
.skill-link.info-txt i {
  width: 30px;
  height: 30px;
  font-size: 21px;
  color: #00956f;
  padding: 5px;
}
.edit-link {
  display: inline-block;
}
.edit-link i {
  width: 40px;
  height: 40px;
  color: #666;
  transition: all 0.4s;
  padding: 11px;
}
.edit-link.add:hover i {
  color: #0d8369;
  background: #c2e0d9;
}
.edit-link.update:hover i {
  color: #cf993a;
  background: #f3e5ce;
}
.edit-link.delete:hover i {
  color: #e30b0b;
  background: #f9cece;
}
/* change profile pic */
.profile-pic {
  color: transparent;
  transition: all 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  transition: all 0.3s ease;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 20px;
  max-width: 200px;
}
.profile-pic input {
  display: none;
}
.profile-pic img {
  position: absolute;
  object-fit: cover;
  width: 200px;
  height: 200px;
  border-radius: 100px;
  z-index: 0;
  margin: 0;
}
.profile-pic .pic-label {
  cursor: pointer;
  height: 200px;
  width: 200px;
  text-align: center;
    padding-top: 5%;
}
.profile-pic:hover .pic-label {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgb(0 0 0 / 50%);
  z-index: 10000;
  color: #fafafa;
  transition: background-color 0.2s ease-in-out;
  border-radius: 100px;
  margin-bottom: 0;
}
.profile-pic i {
  font-size: 19px;
}
.profile-pic span {
  display: inline-flex;
  padding: 0 0.3em;
  color: #fff;
}
/* end pic */
.control-group {
  margin-bottom: 16px;
}
.form-control, .form-select {
  line-height: 26px;
  border-radius: 20px;
  padding: .375rem 1.2rem;
}
.asteriskField {
  font-size: 21px;
  color: red;
  line-height: 1;
}
.input-group-append {
  cursor: pointer;
}
.datepicker.datepicker-rtl table {
  width: 260px;
}
.datepicker.datepicker-rtl table tr td span {
  float: right !important;
  font-size: 14px;
}
.datepicker-rtl.dropdown-menu.datepicker-orient-bottom {
  margin-top: 45px;
}
.datepicker.date {
  margin: 0;
  padding: 0;
  direction: rtl;
}
.form-control {
  color: #666;
}
.form-control:focus,
.form-select:focus {
  border-color: #cf993a !important;
}
.select2-container {
  background-color: #fff;
  width: 100% !important;
}
.select2-container--bootstrap4 .select2-selection--single .select2-selection__arrow {
  right: initial;
  left: 3px;
}
.select2-container--bootstrap4 .select2-results__option--highlighted,
.select2-container--bootstrap4 .select2-results__option--highlighted.select2-results__option[aria-selected=true] {
  background-color: #cf993a;
}
.select2-container--bootstrap4.select2-container--focus .select2-selection {
  border-color: #cf993a !important;
  box-shadow: none !important;
}
.switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 30px;
}
/* Hide default HTML checkbox */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
/* The slider */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}
.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 2px;
  bottom: 2px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}
input:checked+.slider {
  background-color: #cf993a;
}
input:focus+.slider {
  box-shadow: 0 0 1px #cf993a;
}
input:checked+.slider:before {
  -webkit-transform: translateX(20px);
  -ms-transform: translateX(20px);
  transform: translateX(20px);
}
.slider.round {
  border-radius: 34px;
}
.slider.round:before {
  border-radius: 50%;
}
.apply-btn .btn-read-more {
  padding: 10px 24px !important;
}
.be_member {
  margin: auto;
  text-align: center;
}
.be_member .features-btn {
  margin: 20px auto 0;
  text-align: center;
}
.be_member .features-btn .subscribe.sbtn {
  padding: 10px 22px !important;
}
.be_member .features-btn .subscribe.sbtn:active {
  background-color: #0d8168;
  transform: translateY(0);
  box-shadow: none;
}
.profile_view textarea.form-control {
  background-color: #ccc;
}
.info-txt span.work-color {
  color: #00956f !important;
}
.info-txt span.no-work-color {
  color: #bbb !important;
}
@media (max-width: 1199px) {
  .profile_view .profile-update a {
    border-radius: 22px !important;
    border: 1px solid #3ab18b;
  }
  .profile_view .profile-info {
    border-bottom-left-radius: 22px;
    border-bottom-right-radius: 22px;
  }
}
@media (max-width: 530px) {
  .edit-link i {
    width: 36px;
    height: 36px;
    padding: 10px;
  }
}
.update_profile_form textarea.form-control {
  background: #f9f9f9;
}
.freelance_section:before,
.jobs_section:before,
.grads_section:before,
.courses_section:before,
.ex_jobs_section:before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 500px;
  width: 100%;
  background-repeat: repeat-x;
  background-position: top;
  background-size: contain;
  z-index: -1 !important;
  background-color: #f5f5f5;
}
.freelance_section:before {
  background-image: url(../img/flance_bg.png);
}
.jobs_section:before {
  background-image: url(../img/jobs_bg.png);
}
.grads_section:before {
  background-image: url(../img/grads_bg.png);
  height: 700px;
}
.courses_section:before {
  background-image: url(../img/courses_bg.png);
}
.ex_jobs_section:before {
  background-image: url(../img/ex_jobs_bg.png);
}
.search-div.search-flance {
  margin-top: 15px;
  text-align: center;
}
.search-flance .sb-dd {
  padding: 12px 30px;
  font-size: 17px;
  text-align: center;
  margin: auto !important;
  max-width: 200px;
}
.searchblk {
  max-width: 767px;
  padding: 40px;
  border-radius: 22px;
  margin: 50px auto 150px;
  background: rgb(250 254 253 / 95%);
  box-shadow: 0 5px 10px rgb(96 96 96 / 35%);
  transition: all 400ms;
}
.searchblk:hover {
  background: #fafefd;
}
.jobsearchblk {
  margin: 30px auto 100px;
}
.flance-blk {
  position: relative;
  margin-bottom: 20px;
  transition: all 400ms;
  border: 1px solid #fff;
}
.flance-blk:hover {
  background-color: #fcfefe;
  border-color: #6aceae;
}
.flancer {
  width: 125px;
    height: 125px;
    margin-bottom: 15px;
  display: inline-block;
}
.flancer img {
  width: 125px;
  height: 125px;
  background-color: #f9f9f9;
  border-radius: 9px;
  margin-bottom: 14px;
} 
.section-title.text-center h2::after {
  left: 0;
}
.flancer_name, .flancer_name a {
  color: #0d8369;
  font-size: 20px;
}
.flance_label {
  position: absolute;
  left: 30px;
  top: 30px;
  color: #fff;
  background-color: #cc9638;
  border-radius: 30px;
}
.flance_label a {
  padding: 3px 10px 4px;
  display: block;
  color: #fff;
}
.exp_jobs {
  margin: 120px auto 0;
}
.exp_jobs a img {
  width: 100%;
  display: block;
  border-radius: 30px;
  border: 2px solid transparent;
  transition: all 400ms;
}
.exp_jobs a:hover img {
  border-color: #cf993a;
  box-shadow: 0px 10px 20px 0px rgb(195 195 195 / 30%);
}
.courseblk {
  margin: 15px auto;
  overflow: hidden;
  background-color: #fff;
  border-radius: 14px;
  padding: 15px;
  transition: all 0.4s;
  min-height: 310px;
  max-width: 350px;
}
.courseblk a {
  display: block;
}
.courseblk:hover {
  box-shadow: 0px 0px 15px rgb(0 0 0 / 15%);
  background-color: #fafefd;
}
.courseblk .card-title {
  font-size: 17px;
  margin: 1rem 0 1.5rem;
  min-height: 50px;
  max-height: 50px;
  overflow: hidden;
}
.courseblk .card-img img {
  border-radius: 10px;
  width: 100%;
  max-height: 150px;
}
.instructor img {
  width: 40px;
  height: 40px;
  border-radius: 100%;
  margin-left: 5px;
  border: 1px solid #c1c1c1;
}
.instructor span {
  font-size: 14px;
}
.course_rating {
  color: #fff;
  background-color: #cf993a;
  padding: 8px 10px 7px;
  margin: 5px;
  border-radius: 100px;
  font-size: 14px;
  display: flex;
  line-height: 16px;
  height: 30px;
}
.course_rating span {
  margin: 0 3px;
  line-height: 1 !important;
  color: #fff;
}
.course-wrap .course_rating {
  margin: 0;
}
.course-wrap .c-title {
  /* display: block; */
  margin-bottom: 0 !important;
}
.course-wrap .c-title, .course-wrap h5,
.instructor-img h5 {
  color: #0d8369;
}
.instructor-img img {
  border-radius: 100%;
  margin-bottom: 20px;
  border: 1px solid #c1c1c1;
  width: 120px;
}
.course-wrap .features-btn .subscribe.sbtn {
  padding: 10px 30px !important;
}
.course-wrap .regest {
  background-color: #fffbf5;
}
.course-wrap .instructor-img {
  background-color: #f7fcfa;
}
.course_part {
  border: 1px solid #e6e6e6;
  background: #fff;
  margin-top: 1rem;
}
.course-name {
  background: #f9f9f9;
  padding: 5px 0;
}
.course-title {
  display: flex;
  justify-content: space-between;
  padding: 7px 12px;
}
.ccount {
  display: block;
  font-weight: bold;
  text-align: left;
}
.course-title i {
  display: flex;
  float: right;
}
.lessons {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid #ddd;
}
.lessons li {
  border-bottom: 1px solid #ddd;
}
.lessons li:last-child {
  border-bottom: none;
}
.lessons .course-title {
  background-color: #fff
}
.lessons a.course-title:hover {
  background-color: #edf8f5;
}

.register-by-mobile{
  background: #cf993a;
  color: #fff;
  border: none;
  top: 8px;
  position: relative;
  left: 10px;
}

/* added 24-10 */
.sidebar-wrapper {
  height: 100%;
  position: relative;
  background: #fff;
  padding: 10px 20px;
  border-radius: 12px;
  z-index: 10;
}
.course-wrap .c-title,
.course-wrap h5,
.instructor-img h5 {
  color: #0d8369;
}
.side-content .t-title {
  color: #0d8369;
}
@media (min-width: 992px) {
  .sidebar {
    position: -webkit-sticky;
    position: -moz-sticky;
    position: -ms-sticky;
    position: -o-sticky;
    position: sticky;
    height: auto;
    top: 94px;
    bottom: auto;
    display: block !important;
  }
  .sidebar-wrapper {
    padding: 20px 6px;
  }
}
.sidebar-wrapper .sidebar-nav {
  position: relative;
  font-size: 15px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.sidebar-wrapper .sidebar-nav li {
  padding: 0;
  margin: 0;
}
.sidebar-wrapper .sidebar-nav li>ul {
  list-style: none;
  list-style-type: none;
  padding: 0px;
  background-color: #fafafa;
  margin: 4px 0;
  border-radius: 12px;
}

.sidebar-wrapper .sidebar-nav li>ul>li>ul {
  border-bottom-color: transparent;
}

.sidebar-wrapper .sidebar-nav li>ul>li:last-child {
  margin-bottom: 4px;
}

.sidebar-wrapper .sidebar-nav li a {
  font-size: 19px;
  display: block;
  text-decoration: none;
  border-radius: 12px;
  padding: 10px;
  min-height: 54px;
  margin-bottom: 4px;
}
.sidebar-wrapper .sidebar-nav li a,
.sidebar-wrapper .sidebar-nav li a.active {
  font-weight: bold;
}
.sidebar-wrapper .sidebar-nav li>ul>li>a {
  border-right: none !important;
  border-radius: 10px;
  padding: 0 26px 0 0;
  min-height: 40px !important;
  font-size: 15px;
  line-height: 40px;
}
.sidebar-wrapper .sidebar-nav li>ul>li>ul>li>a {
  padding-right: 16px;
  margin: 0 4px;
}
.sidebar-wrapper .sidebar-nav i::before {
  margin-left: 2px;
  transition: transform 0.35s ease;
}
.sidebar-wrapper .sidebar-nav li a.active {
  background-color: #f1f9f7;
  color: #18b381;
}
.sidebar-wrapper .sidebar-nav li a[aria-expanded="true"] {
  background-color: #f9f9f9;
  color: #000 !important;
}
.sidebar-wrapper .sidebar-nav li a[aria-expanded="true"] .bi-chevron-left::before {
  transform: rotate(90deg);
}
.sidebar-wrapper .sidebar-nav li a[aria-expanded="false"]:hover {
  background-color: #f9f9f9;
  color: #555555;
}
.sidebar-wrapper .sidebar-nav li a:hover,
.sidebar-wrapper .sidebar-nav li a:active {
  color: #18b381;
}
a.sidebar-toggle {
  font-size: 19px;
  padding: 5px 0px;
  color: #555555;
  display: inline-block;
}
a.sidebar-toggle[aria-expanded="true"] {
  color: #8d8d8d;
  margin-bottom: 10px;
}
a.sidebar-toggle i {
  margin-left: 2px;
  height: 19px;
}
a.sidebar-toggle[aria-expanded="true"] .show-x,
a.sidebar-toggle[aria-expanded="false"] .show-m {
  display: inline-block !important;
}
a.sidebar-toggle[aria-expanded="true"] .show-m {
  display: none !important;
}
a.sidebar-toggle[aria-expanded="true"] .show-x {
  color: #555555;
}
.sidebar-title i {
  font-size: 15px;
  line-height: 1;
}
/* vid */
.videobox {
  position: relative;
  background: #fff;
  border-radius: 14px;
  margin: 1.5rem auto .5rem;
}
.videobox a {
  display: block;
  width: 100%;
  height: auto;
  position: relative;
  overflow: hidden;
  border-radius: 14px;
}
.videobox img {
  margin: -12% auto;
  width: 100%;
  min-height: 300px;
}
.vid-overlay {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgb(0 0 0 / 35%);
  background: radial-gradient(circle, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 1) 90%);
  opacity: 0.5;
}
.video-title {
  text-align: center;
  padding: 20px 15px;
  border-radius: 0 10px 0;
}
.video-title h4 {
  margin-bottom: 0;
}
.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.outer_circle {
  stroke-width: 3px;
  stroke-dasharray: 410;
  stroke-dashoffset: 0;
  stroke-linecap: square;
  transition: all .4s ease-out;
}
.video-lightbox:hover .outer_circle,
.video-lightbox:focus .outer_circle,
.video-lightbox:active .outer_circle {
  stroke-dashoffset: 410;
  transition: stroke .7s .4s ease-out, stroke-dashoffset .4s ease-out
}
.video-lightbox:hover .inner-circle,
.video-lightbox:focus .inner-circle,
.video-lightbox:active .inner-circle {
  fill: #18b381;
  transition: fill .4s .3s ease-out;
}
.video-lightbox:hover .play,
.video-lightbox:focus .play,
.video-lightbox:active .play {
  fill: white;
  transition: fill .4s .3s ease-out;
}

.tut-vids a {
  font-size: 14px;
  color: #fff !important;
  background: #18b381;
  min-width: 80px;
  padding: 11px 15px;
  text-align: center;
  border: none;
  margin: 2px;
}
.tut-vids .disabled a {
  cursor: default;
  background: #b5b5b5;
  color: #fff !important;
}
.plyr__control--overlaid,
.plyr__menu__container .plyr__control[role=menuitemradio][aria-checked=true]:before,
.plyr--video .plyr__control.plyr__tab-focus,
.plyr--video .plyr__control:hover,
.plyr--video .plyr__control[aria-expanded=true] {
  background: #18b381;
}
.plyr--full-ui input[type=range] {
  color: #18b381;
}

.pslinks a.facebook {
  color: #1877F2 !important;
}
.pslinks a.linkedin {
  color: #0A66C2 !important;
}
.lables_free {
  position: absolute !important;
  left: -10px !important;
  top: -15px !important;
}
.flance_label {
  position: relative !important;
  margin: 6px 0px;
}
.program-detail-bio {
  line-height: 24px;
    text-align: justify;
}
.page-content p, .page-content span {
  line-height: 1.7;
}
.login-box .input-group-text,
.register-box .input-group-text {
  padding: .375rem 1.2rem;
  border-bottom-left-radius: 20px;
    border-top-left-radius: 20px;
}
.register-card .input-group-text, .input-group>.form-control, .input-group>.form-select, .custom-file-button label {
  border-radius: 20px;
}
body.login-page #footer .copyright {
  text-align: center;
}
.jobs-section .w-blk {
  padding: 20px;
}
.company-logo a img {
  width: 100px;
  max-height: 100px;
}

/* profile modal and tabs */
.card-header {
  padding: 1rem;
  border-bottom: 0;
  border-radius: 12px !important;
}

.profile-card .nav-link {
  color: #666;
  margin: 0 2px;
}

.nav-pills .nav-link:focus,
.nav-pills .nav-link:hover {
  color: #0d8369;
  background-color: #f5fbf9;
}

.nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
  color: #fff;
  background-color: #3ab18b;
}

.select2-container,
.select2-container--bootstrap4 .select2-selection {
  border-radius: 20px !important;
}

.select2-container[dir="rtl"] .select2-selection--single .select2-selection__rendered {
  padding-right: 1.2rem;
  padding-left: 2rem;
}

.select2-container--bootstrap4 .select2-selection--single .select2-selection__arrow {
  right: initial;
  left: 10px;
}

.edit-link {
  margin: 2px;
}

.edit-link.add:hover i {
  color: #0d8369;
  background: #c2e0d9;
}

.edit-link.add {
  color: #666;
  border-radius: 100px;
  background-color: #f5f5f5;
  padding-left: 15px;
  margin: 0;
  margin-bottom: 1rem;
}

.tab-content .edu-block {
  background-color: #fbfbfb;
  margin-bottom: 1rem;
}