
:root {
  scroll-behavior: smooth;
}

body{
  direction: rtl;
  font-family: 'Tajawal', sans-serif;
  background: #f9fafc;

}
/* start header */
header{
  background-color:#f4f6f6;
  padding: 0;
  direction: ltr;
}
#myHeader{display: flex;
justify-content: space-between;
align-items: center;

height: 70px;
}
header.fixed {
    position: fixed;
    top: 0;
    width: 100%;
}
header .navbar-part {
    
    padding: 5px;
    display: flex;
    justify-content: space-between;
  
    width: 20%;

  }
  
  header #burger-btn {
    font-size: 25px;
    background: none;
    border: none;
    color:var(--light);
    cursor: pointer;
    font-family:var(--font)
  }
  
  .navbar-part .menu {
      padding: 20px;
    display: none;
    flex-direction: column;
    position: absolute;
    left: 0;
    width: 100%;
    background-color: var(--light);
    box-shadow: 0px 1px 14px #0a58ca2e;
    z-index:55;
    top: 70px;
    animation-name: topmenu;
    animation-duration: 2s;
    animation-fill-mode: forwards;
    opacity: 0; 
 flex-direction: column;
 font-size: 16px;
 font-weight: 600;
  }
  
  @keyframes topmenu {
    0% {
      opacity: 0;
      transform: translateY(-100%);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  header {
    padding: 5px 0;
    transition: all 0.5s;
    z-index: 997;
  }
  
  header.sticked {
    background:#fff;
    box-shadow: 0px 2px 20px #eee;
  }
 
a {
  color: #ffffff;
  text-decoration: none;
}

a:hover {
  /* color: #ffffff; */
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-primary);
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff  ;
  transition: all 0.6s ease-out;
  width: 100%;
  height: 100vh;
  
}

#preloader:before,
#preloader:after {
  content: "";
  position: absolute;
  border: 4px solid var(--color-primary);
  border-radius: 50%;
  animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;

}

#preloader:after {
  animation-delay: -0.5s;
  
}

@keyframes animate-preloader {
  0% {
    width: 10px;
    height: 10px;
    top: calc(50% - 5px);
    left: calc(50% - 5px);
    opacity: 1;
  }

  100% {
    width: 72px;
    height: 72px;
    top: calc(50% - 36px);
    left: calc(50% - 36px);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Sections & Section Header
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-header {
  text-align: center;
  padding-bottom: 20px;
}

.section-header h2 {
  font-size: 20px;
  font-weight: 300;
  margin-bottom: 20px;
  
  color: var(--color-primary);
}
@media(min-width:776px){
  .section-header h2 {
    font-size: 40px;}
}

.section-header p {
  margin: 0 auto;
  color: var(--color-secondary-light);
  font-size: 16px;
}
.navbar ul form input{
  border: 1px solid #eee;
  outline: none;
  height: 40px;
}

@media (min-width: 990px) {
  .section-header p {
    width: 70%;
    font-size: 16px;
    line-height: 32px;
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 5px 0;
  background: rgba(var(--color-secondary-rgb), 0.05);
  min-height: 40px;
  margin-top: 76px;
}

.breadcrumbs h2 {
  font-size: 30px;
  font-weight: 300;
  margin: 0;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: var(--color-secondary-light);
  content: "/";
}

@media (max-width: 992px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs h2 {
    margin-bottom: 10px;
    font-size: 24px;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# Scroll top button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 995;
  background: var(--color-primary);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: #fff  ;
  line-height: 0;
}

.scroll-top:hover {
  
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
  padding: 15px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header.sticked {
  background:#fff;
  box-shadow: 0px 2px 20px rgba(var(--color-secondary-rgb), 0.1);
}

.header .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.header .logo h1 {
  font-size: 32px;
  font-weight: 300;
  color: var(--color-secondary);
  font-family: var(--font-secondary);
}

.header .logo h1 span {
  color: var(--color-primary);
  font-weight: 500;
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  font-size: 16px;

  background: var(--color-primary);
  padding: 8px 23px;
  border-radius: 4px;
  transition: 0.3s;
  font-family: var(--font-secondary);
  border: 1px solid transparent;
  transition: .5s ease;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--color-primary) !important;
  background:transparent;
  border: 1px solid var(--color-primary)
}

@media (max-width: 1279px) {

  .header .btn-getstarted,
  .header .btn-getstarted:focus {
    margin-right: 50px;
  }
}

/*--------------------------------------------------------------
# Desktop Navigation 
--------------------------------------------------------------*/
@media (min-width: 1280px) {
  .navbar {
    padding: 0;
    position: relative;
    width: 80%;
  }

  .navbar ul {
    margin: 0;
    width: 100%;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navbar li {
    position: relative;
  }

  .navbar>ul>li {
    white-space: nowrap;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    font-family: var(--font-secondary);
    font-size: 16px;
    font-weight: 400;
    color: rgba(var(--color-secondary-dark-rgb), 0.7);
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  .navbar>ul>li>a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--color-primary);
    visibility: hidden;
    transition: all 0.3s ease-in-out 0s;
    transform: scaleX(0);
    transition: all 0.3s ease-in-out 0s;
  }

  .navbar a:hover:before,
  .navbar li:hover>a:before,
  .navbar .active:before {
    visibility: visible;
    transform: scaleX(0.7);
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover>a {
    color: var(--color-primary);
  }

  .navbar .dropdown a:hover:before,
  .navbar .dropdown:hover>a:before,
  .navbar .dropdown .active:before {
    visibility: hidden;
  }

  .navbar .dropdown a:hover,
  .navbar .dropdown .active,
  .navbar .dropdown .active:focus,
  .navbar .dropdown:hover>a {
    color: #fff  ;
    background: var(--color-primary);
  }

  .navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 0;
    top: 100%;
    margin: 0;
    padding: 0 0 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: var(--color-secondary);
    transition: 0.3s;
  }

  .navbar .dropdown ul li {
    min-width: 200px;
  }

  .navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    font-weight: 400;
    color: rgba(var(--color-white-rgb), 0.5);
  }

  .navbar .dropdown ul a i {
    font-size: 12px;
  }

  .navbar .dropdown ul a:hover,
  .navbar .dropdown ul .active,
  .navbar .dropdown ul .active:hover,
  .navbar .dropdown ul li:hover>a {
    color: #fff  ;
    background: var(--color-primary);
  }

  .navbar .dropdown:hover>ul {
    opacity: 1;
    visibility: visible;
  }

  .navbar .megamenu {
    position: static;
  }

  .navbar .megamenu ul {
    right: 0;
    padding: 10px;
    display: flex;
  }

  .navbar .megamenu ul li {
    flex: 1;
  }

  .navbar .megamenu ul li a,
  .navbar .megamenu ul li:hover>a {
    color: rgba(var(--color-white-rgb), 0.5);
    background: none;
  }

  .navbar .megamenu ul li a:hover,
  .navbar .megamenu ul li .active,
  .navbar .megamenu ul li .active:hover {
    color: #fff  ;
    background: var(--color-primary);
  }

  .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;
  }
}

@media (min-width: 1280px) and (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/*--------------------------------------------------------------
# Mobile Navigation
--------------------------------------------------------------*/
@media (max-width: 1279px) {
  .navbar {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    bottom: 0;
    transition: 0.3s;
    z-index: 9997;
  }

  .navbar ul {
    position: absolute;
    inset: 0;
    padding: 10px 0;
    margin: 0;
    background: rgba(var(--color-secondary-rgb), 0.9);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: 500;
    color: rgba(var(--color-white-rgb), 0.7);
    white-space: nowrap;
    transition: 0.3s;
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover>a {
    color: var(--color-primary);
  }

  .navbar .dropdown ul,
  .navbar .dropdown .dropdown ul {
    position: static;
    display: none;
    padding: 10px 0;
    margin: 10px 20px;
    transition: all 0.5s ease-in-out;
    border: 1px solid rgba(var(--color-secondary-light-rgb), 0.3);
  }

  .navbar .dropdown>.dropdown-active,
  .navbar .dropdown .dropdown>.dropdown-active {
    display: block;
  }

  .mobile-nav-toggle {
    display: block !important;
    color: var(--color-gray);
    font-size: 28px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    position: fixed;
    top: 20px;
    z-index: 9999;
    right: 20px;
  }

  .mobile-nav-toggle.bi-x {
    color: #fff;
  }

  .mobile-nav-active {
    overflow: hidden;
    z-index: 9995;
    position: relative;
  }

  .mobile-nav-active .navbar {
    left: 0;
  }

  .mobile-nav-active .navbar:before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0,0,0, 0.8);
    z-index: 9996;
  }
}

/*--------------------------------------------------------------
# Index Page
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Animated Hero Section
--------------------------------------------------------------*/
.hero-animated {
  width: 100%;
  min-height: 50vh;
  background: url("../img/hero-bg.png") center center;
  background-size: cover;
  position: relative;
  padding: 0px 0 0px;
}

.hero-animated h2 {
  margin: 0 0 10px 0;
  font-size: 48px;
  font-weight: 300;
  color: var(--color-primary);
  font-family: var(--font-secondary);
  line-height: 40px;
}

.hero-animated h2 span {
  color: var(--color-primary);
}

.hero-animated p {
 font-family: var(--color-default);
text-align:center;
  font-size: 18px;
  font-weight: 400;
  width: 80%;
  margin:10px  auto 30px auto;
  line-height: 32px;
}

.hero-animated .animated {
  margin-bottom: 60px;
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (min-width: 992px) {
  .hero-animated .animated {
    max-width: 45%;
  }
}

@media (max-width: 991px) {
  .hero-animated .animated {
    max-width: 60%;
  }
}

@media (max-width: 575px) {
  .hero-animated .animated {
    max-width: 80%;
  }
}

.hero-animated .btn-get-started {
  font-size: 16px;
  font-weight: 400;
  display: inline-block;
  padding: 10px 28px;
  border-radius: 4px;
  transition: 0.5s;
  color: #fff  ;
  background: var(--color-primary);
  font-family: var(--font-secondary);
  color:#ffffff;
  border: 1px solid transparent;
}

.hero-animated .btn-get-started:hover {
  background:var(--color-primary);
  color: #fff;
  border: 1px solid var(--color-primary);
}

.hero-animated .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  margin-left: 25px;
  font-family: var(--font-secondary);
  color: var(--color-secondary);
  font-weight: 600;
}

.hero-animated .btn-watch-video i {
  color: var(--color-primary);
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}

.hero-animated .btn-watch-video:hover {
  color: var(--color-primary);
}

.hero-animated .btn-watch-video:hover i {
  color: rgba(var(--color-primary-rgb), 0.8);
}

@media (max-width: 640px) {
  .hero-animated h2 {
    font-size: 32px;
  }

  .hero-animated p {
    font-size: 18px;
    margin-bottom: 30px;
    width: 100%;
    text-align: justify;
  }

  .hero-animated .btn-get-started,
  .hero-animated .btn-watch-video {
    font-size: 14px;
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

/*--------------------------------------------------------------
# Carousel Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  padding: 0;
  background: var(--color-black);
  background: url("../img/hero-bg.png") center center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px 0 60px 0;
}

.hero .carousel-item {
  overflow: hidden;
}

@media (max-width: 640px) {
  .hero .container {
    padding: 0 60px;
  }
}

.hero h2 {
  color: var(--color-secondary);
  margin-bottom: 25px;
  font-size: 48px;
  font-weight: 300;
  animation: fadeInDown 1s both 0.2s;
}

@media (max-width: 768px) {
  .hero h2 {
    font-size: 30px;
  }
}

.hero p {
  color: var(--color-secondary-light);
  animation: fadeInDown 1s both 0.4s;
  font-weight: 500;
  margin-bottom: 30px;
}

.hero .img {
  margin-bottom: 40px;
  animation: fadeInDownLite 1s both;
}

.hero .btn-get-started {
  font-family: var(--font-secondary);
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 32px;
  border-radius: 5px;
  transition: 0.5s;
  animation: fadeInUp 1s both 0.6s;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.hero .btn-get-started:hover {
  background: var(--color-primary);
  color: #fff  ;
}

.hero .carousel-control-prev {
  justify-content: start;
}

@media (min-width: 640px) {
  .hero .carousel-control-prev {
    padding-left: 15px;
  }
}

.hero .carousel-control-next {
  justify-content: end;
}

@media (min-width: 640px) {
  .hero .carousel-control-next {
    padding-right: 15px;
  }
}

.hero .carousel-control-next-icon,
.hero .carousel-control-prev-icon {
  background: none;
  font-size: 26px;
  line-height: 0;
  background: rgba(var(--color-secondary-rgb), 0.4);
  color: rgba(var(--color-white-rgb), 0.98);
  border-radius: 50px;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero .carousel-control-next-icon {
  padding-left: 3px;
}

.hero .carousel-control-prev-icon {
  padding-right: 3px;
}

.hero .carousel-control-prev,
.hero .carousel-control-next {
  transition: 0.3s;
}

.hero .carousel-control-prev:focus,
.hero .carousel-control-next:focus {
  opacity: 0.5;
}

.hero .carousel-control-prev:hover,
.hero .carousel-control-next:hover {
  opacity: 0.9;
}

.hero .carousel-indicators li {
  list-style-type: none;
  cursor: pointer;
  background: rgba(var(--color-secondary-rgb), 0.5);
  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: var(--color-primary);
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInDownLite {
  from {
    opacity: 0;
    transform: translate3d(0, -10%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

/*--------------------------------------------------------------
# Fullscreen Hero Section
--------------------------------------------------------------*/
.hero-fullscreen {
  width: 100%;
  min-height: 100vh;
  background: url("../img/hero-fullscreen-bg.jpg") center center;
  background-size: cover;
  position: relative;
  padding: 120px 0 60px;
}

.hero-fullscreen:before {
  content: "";
  background: rgba(var(--color-white-rgb), 0.85);
  position: absolute;
  inset: 0;
}

@media (min-width: 1365px) {
  .hero-fullscreen {
    background-attachment: fixed;
  }
}

.hero-fullscreen h2 {
  margin: 0 0 10px 0;
  font-size: 48px;
  font-weight: 300;
  color: var(--color-secondary);
  font-family: var(--font-secondary);
}

.hero-fullscreen h2 span {
  color: var(--color-primary);
}

.hero-fullscreen p {
  color: rgba(var(--color-secondary-rgb), 0.8);
  margin: 0 0 30px 0;
  font-size: 20px;
  font-weight: 400;
}

.hero-fullscreen .btn-get-started {
  font-size: 16px;
  font-weight: 400;
  display: inline-block;
  padding: 10px 28px;
  border-radius: 4px;
  transition: 0.5s;
  color: #fff  ;
  background: var(--color-primary);
  font-family: var(--font-secondary);
}

.hero-fullscreen .btn-get-started:hover {
  background: rgba(var(--color-primary-rgb), 0.8);
}

.hero-fullscreen .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  margin-left: 25px;
  font-family: var(--font-secondary);
  color: var(--color-secondary);
  font-weight: 600;
}

.hero-fullscreen .btn-watch-video i {
  color: var(--color-primary);
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}

.hero-fullscreen .btn-watch-video:hover {
  color: var(--color-primary);
}

.hero-fullscreen .btn-watch-video:hover i {
  color: rgba(var(--color-primary-rgb), 0.8);
}

@media (max-width: 640px) {
  .hero-fullscreen h2 {
    font-size: 32px;
  }

  .hero-fullscreen p {
    font-size: 18px;
    margin-bottom: 30px;
  }

  .hero-fullscreen .btn-get-started,
  .hero-fullscreen .btn-watch-video {
    font-size: 14px;
  }
}

/*--------------------------------------------------------------
# Static Hero Section
--------------------------------------------------------------*/
.hero-static {
  width: 100%;
  min-height: 50vh;
  background: url("../img/hero-bg.png") center center;
  background-size: cover;
  position: relative;
  padding: 120px 0 60px;
}

.hero-static h2 {
  margin: 0 0 10px 0;
  font-size: 48px;
  font-weight: 300;
  color: var(--color-secondary);
  font-family: var(--font-secondary);
}

.hero-static h2 span {
  color: var(--color-primary);
}

.hero-static p {
  color: rgba(var(--color-secondary-rgb), 0.8);
  margin: 0 0 30px 0;
  font-size: 20px;
  font-weight: 400;
}

.hero-static .btn-get-started {
  font-size: 16px;
  font-weight: 400;
  display: inline-block;
  padding: 10px 28px;
  border-radius: 4px;
  transition: 0.5s;
  color: #fff  ;
  background: var(--color-primary);
  font-family: var(--font-secondary);
}

.hero-static .btn-get-started:hover {
  background: rgba(var(--color-primary-rgb), 0.8);
}

.hero-static .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  margin-left: 25px;
  font-family: var(--font-secondary);
  color: var(--color-secondary);
  font-weight: 600;
}

.hero-static .btn-watch-video i {
  color: var(--color-primary);
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}

.hero-static .btn-watch-video:hover {
  color: var(--color-primary);
}

.hero-static .btn-watch-video:hover i {
  color: rgba(var(--color-primary-rgb), 0.8);
}

@media (max-width: 640px) {
  .hero-static h2 {
    font-size: 32px;
  }

  .hero-static p {
    font-size: 18px;
    margin-bottom: 30px;
  }

  .hero-static .btn-get-started,
  .hero-static .btn-watch-video {
    font-size: 14px;
  }
}

/*--------------------------------------------------------------
# Featured Services Section
--------------------------------------------------------------*/

.featured-services{
padding: 0;
}
.featured-services .service-item {
  padding: 30px;
  transition: all ease-in-out 0.4s;
  background: #fff  ;
  height: 100%;
text-align: center;
border-radius: 15px;
    box-shadow: 0 7px 10px 1px #0000000c;
    background-color: #ffffff;
   padding: 40px 30px 20px
 
}
.gy-4{
  margin: 10px;
}
.service-item .number{
  border-radius: 50%;
  height: 40px;
  width: 40px;
  border: 1px solid #b8b8b8;;
  position: absolute;
  top: 15px;
  left: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #b8b8b8;
  line-height: 2;
  
}
.service-item .icon img{
  width: 56px;
    height: 56px;
    padding: 12px;
    border-radius: 5px;
    box-shadow: 7px 7px 12px 1px #00000015;
    background: rgb(184, 184, 184);
}

.featured-services .service-item .icon {
  margin-bottom: 10px;
}

.featured-services .service-item .icon i {
  color: var(--color-primary);
  font-size: 36px;
  transition: 0.3s;
}

.featured-services .service-item h4 {
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 24px;
}

.featured-services .service-item h4 a {
  color: var(--color-secondary);
  transition: ease-in-out 0.3s;
}

.featured-services .service-item p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.featured-services .service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0px 0 60px 0 rgba(var(--color-secondary-rgb), 0.1);
}

.featured-services .service-item:hover h4 a {
  color: var(--color-primary);
}






.features .nav-tabs {
  border: 0;
}

.features .nav-link {
  border: 0;
  padding: 25px 20px;
  color: var(--color-secondary);
  box-shadow: 5px 5px 25px rgba(var(--color-secondary-rgb), 0.15);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: 0s;
  cursor: pointer;
  height: 100%;
}

.features .nav-link i {
  font-size: 32px;
  line-height: 0;
}

.features .nav-link h4 {
  font-size: 20px;
  font-weight: 600;
  margin: 10px 0 0 0;
  color: var(--color-secondary);
}

.features .nav-link:hover {
  color: var(--color-primary);
}

.features .nav-link.active {
  transition: 0.3s;
  background: var(--color-secondary) linear-gradient(rgba(var(--color-primary-rgb), 0.95), rgba(var(--color-primary-rgb), 0.6));
  border-color: var(--color-primary);
}

.features .nav-link.active h4 {
  color: #fff  ;
}

.features .nav-link.active i {
  color: #fff   !important;
}

.features .tab-contents {
  margin-top: 30px;
}

.features .tab-pane.active {
  animation: fadeIn 0.5s ease-out;
}

.features .tab-pane h3 {
  font-weight: 600;
  font-size: 36px;
  color: var(--color-secondary);
}

.features .tab-pane ul {
  list-style: none;
  padding: 0;
}

.features .tab-pane ul li {
  padding-bottom: 10px;
}

.features .tab-pane ul i {
  font-size: 24px;
  margin-right: 4px;
  color: var(--color-primary);
}

.features .tab-pane p:last-child {
  margin-bottom: 0;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}
.active-button{   
   
 background-color: var(--color-primary) !important;
 transform: translateY(-5px);
 box-shadow: 0 5px 10px 1px #00000050;
color: #fff;
font-size: 16px;
border-radius:10px;
line-height: 32px;
font-family: var(--font-primary);
}
.tabs-part .accordation{
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  justify-content: center;

  /* box-shadow: 0px 20px 60px 6px rgba(0,0,0,0.05); */
  border-radius: 20px;
  padding:5px 20px;
}
.portfolio .tabs-part{
  margin: 20px 0;
}
.portfolio .tabs-part .class-link{
  padding:5px 10px;
  color: #ffffff;
  line-height: 28px;
  font-size: 16px;
  border-radius: 6px;
 border: 1px solid var(--color-primary);
  color: var(--color-primary);
  margin: 10px auto;
  text-align: center;
}

@media (min-width:992px) {
  .portfolio .tabs-part{
   /* display: flex; */
   justify-content: space-between;
  }
  .tabs-part .accordation{
    width: 100%;
  }
  .tabs-part .all-text,.all-class{
    width: 100%;
  }

}

#sec-6 .tabs-part.new button{
  display: block;

}
  #sec-6 .tabs-part .text-container{
      width: 100%;
      transition:  .8s ease-in-out;
     
      
  }
  .portfolio .all-text{

  }
#portfolio .tabs-part{

}

 .accordation .accordionbtn{
text-align: center;
border: none;
outline: none;
margin:10px ;
padding: 10px 20px;

width: 100%;
font-size: 16px;
transition: .5s ease;
color: #fff;
min-height:40px;
margin: 10px ;
border-radius: 15px;
background-color: #8b8b8d;

}
@media (min-width:776px) {
  .accordation .accordionbtn{
    width: 12%;
  }
  }

.accordation .accordionbtn:hover{
 
}


.portfolio .portfolio-flters {
  padding: 0;
  margin: 0 auto 30px auto;
  list-style: none;
  text-align: center;
}

.portfolio .portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 0;
  font-size: 18px;
  font-weight: 300;
  margin: 0 10px;
  line-height: 1;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

.portfolio .portfolio-flters li:hover,
.portfolio .portfolio-flters li.filter-active {
  color: var(--color-primary);
}

.portfolio .portfolio-flters li:first-child {
  margin-left: 0;
}

.portfolio .portfolio-flters li:last-child {
  margin-right: 0;
}

@media (max-width: 575px) {
  .portfolio .portfolio-flters li {
    font-size: 14px;
    margin: 0 5px;
  }
}

.portfolio .port{
  position: relative;
  border: 1px solid #fff  ;
  overflow: hidden;
  z-index: 1;
border: 1px solid #e1e1e1;
margin: 10px auto;
width: 95%;
display: flex;
align-items: center;
flex-direction: column;
justify-content: space-between;
background-color: #ffffff;
min-height: 300px;
border-radius: 4px;
transition: filter 300ms;
padding: 5px;
}
.port .portfolio-item {
  display: flex;
  height: 80%;
  flex-direction: column;
  align-items: center;
  justify-content: end;
  width: 100%;
}
.portfolio-part h6{
  padding: 10px;
  font-family: var(--font-primary);
  line-height: 28px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
}
.portfolio .portfolio-container{

}
.about  .portfolio-part{
  position: relative;
  border: 1px solid #fff  ;
  overflow: hidden;
  z-index: 1;
border: 1px solid #e1e1e1;
margin: 10px auto;
width: 95%;
display: flex;
align-items: center;
flex-direction: column;
justify-content: space-between;
background-color: #ffffff;
min-height: 300px;
border-radius: 10px;
transition: filter 300ms;
padding: 15px;
box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
}
@media (min-width:776px) {
  .portfolio .portfolio-container{
    display: flex;
    justify-content: center;
    

  }
  .portfolio .portfolio-container .port{
    width: 45%;
    margin: 10px auto;
  }
}
@media (min-width:992px) {
  .portfolio .portfolio-container .port{
    width: 32%;
    margin: 10px auto;
  }
}
.tabs-part .choose{
  background-color: var(--color-primary);
  color: #ffffff;
  border-radius: 5px;
  text-align: start;
  border: 1px solid #e5e5e5;
  padding: 10px 20px;
  transition: 5s ease;
  min-height: 70px;
  margin-bottom: 10px;
  
}.first_p{
  font-size: 20px;
  margin: 20px auto !important;
  line-height: 32px;
  font-weight: 600;
  font-family: var(--font-primary);
  border-bottom: 5px solid var(--color-primary);
  padding-bottom: 20px ;
  width: 200px!important;
  color: var(--color-primary);

}
.tabs-part .choose img,.accordionbtn img{
  width: 30px;
  height: 30px;
  margin:0 10px;
}
.portfolio .portfolio-part .about-img{
  transition: all 0.3s;
  
  padding: 20px;
  margin: auto;
  mix-blend-mode: multiply;
  height: auto;
  width: 70%;
}
.portfolio .portfolio-part .text-part{
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.portfolio-container:has(.port:hover)
.port:not(:hover){
  filter:grayscale(100%) blur(2px);
}

.portfolio .portfolio-item:before {
  content: "";
  inset: 0;
  position: absolute;
  background: rgba(0,0,0, 0.1);
  z-index: 2;
  transition: 0.5s;
  visibility: hidden;
  opacity: 0;
}

.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  inset: auto 40px 40px 40px;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  padding: 10px;
  background-color: var(--color-primary);
  color: #ffffff;
  text-align: center;
}

.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  font-weight: 600;

  /* padding-right: 50px; */
  width: 100%;
}

.portfolio .portfolio-item .portfolio-info .preview-link,
.portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  left: 80px;
  font-size: 24px;
  top: calc(50% - 14px);
  color: rgba(var(--color-white-rgb), 0.7);
  transition: 0.3s;
  line-height: 0;
}
.portfolio .portfolio-item .portfolio-info .preview-link {
  margin: 0 20px;
  left: 10px;
}
.portfolio .portfolio-item .portfolio-info .preview-link:hover,
.portfolio .portfolio-item .portfolio-info .details-link:hover {
  color: #fff  ;
}

.portfolio .portfolio-item .portfolio-info .details-link {
  /* right: 14px; */
  font-size: 28px;
}

.portfolio .portfolio-item:hover:before {
  visibility: visible;
  opacity: 1;
}

.portfolio .portfolio-item:hover img {
  /* transform: scale(1.2); */
}

.portfolio .portfolio-item:hover .portfolio-info {
  /* opacity: 1;
  inset: auto 0px 0 0px; */
}



/*--------------------------------------------------------------
# Recent Blog Posts
--------------------------------------------------------------*/
.recent-blog-posts .post-box {
  transition: 0.3s;
  height: 100%;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}

.recent-blog-posts .post-box .post-img {
  overflow: hidden;
  position: relative;
  border-radius: 10px;
}

.recent-blog-posts .post-box .post-img img {
  transition: 0.5s;
}

.recent-blog-posts .post-box .meta {
  margin-top: 15px;
}

.recent-blog-posts .post-box .meta .post-date {
  font-size: 15px;
  font-weight: 400;
  color: var(--color-primary);
}

.recent-blog-posts .post-box .meta .post-author {
  font-size: 15px;
  font-weight: 400;
  color: var(--color-secondary);
}

.recent-blog-posts .post-box .post-title {
  font-size: 24px;
  color: var(--color-secondary);
  font-weight: 700;
  margin: 15px 0 0 0;
  position: relative;
  transition: 0.3s;
}

.recent-blog-posts .post-box p {
  margin: 15px 0 0 0;
  color: rgba(var(--color-secondary-dark-rgb), 0.7);
}

.recent-blog-posts .post-box .readmore {
  display: flex;
  align-items: center;
  font-weight: 600;
  line-height: 1;
  transition: 0.3s;
  margin-top: 15px;
}

.recent-blog-posts .post-box .readmore i {
  line-height: 0;
  margin-left: 4px;
  font-size: 18px;
}

.recent-blog-posts .post-box:hover .post-title {
  color: var(--color-primary);
}

.recent-blog-posts .post-box:hover .post-img img {
  transform: scale(1.1);
}



/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 40px;
}

.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff  ;
  opacity: 1;
  border: 1px solid var(--color-primary);
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--color-primary);
}

.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(var(--color-secondary-rgb), 0.15);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--color-secondary-light);
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
}

/*--------------------------------------------------------------
# Blog Stylings
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Blog Home Posts List
--------------------------------------------------------------*/
.blog .posts-list article {
  box-shadow: 0 4px 16px rgba(var(--color-black-rgb), 0.1);
  padding: 30px;
  height: 100%;
}

.blog .posts-list article+article {
  margin-top: 60px;
}

.blog .posts-list .post-img {
  max-height: 240px;
  margin: -30px -30px 0 -30px;
  overflow: hidden;
}

.blog .posts-list .title {
  font-size: 24px;
  font-weight: 700;
  padding: 0;
  margin: 20px 0 0 0;
}

.blog .posts-list .title a {
  color: var(--color-secondary);
  transition: 0.3s;
}

.blog .posts-list .title a:hover {
  color: var(--color-primary);
}

.blog .posts-list .meta-top {
  margin-top: 20px;
  color: var(--color-gray);
}

.blog .posts-list .meta-top ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}

.blog .posts-list .meta-top ul li+li {
  padding-left: 20px;
}

.blog .posts-list .meta-top i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
  color: rgba(var(--color-primary-rgb), 0.8);
}

.blog .posts-list .meta-top a {
  color: var(--color-gray);
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}

.blog .posts-list .content {
  margin-top: 20px;
}

.blog .posts-list .read-more a {
  display: inline-block;
  background: var(--color-primary);
  color: #fff  ;
  padding: 8px 30px;
  transition: 0.3s;
  font-size: 14px;
  border-radius: 4px;
}

.blog .posts-list .read-more a:hover {
  background: rgba(var(--color-primary-rgb), 0.8);
}

/*--------------------------------------------------------------
# Blog Details Page
--------------------------------------------------------------*/
.blog .blog-details {
  box-shadow: 0 4px 16px rgba(var(--color-black-rgb), 0.1);
  padding: 30px;
}

.blog .blog-details .post-img {
  margin: -30px -30px 20px -30px;
  overflow: hidden;
}

.blog .blog-details .title {
  font-size: 28px;
  font-weight: 700;
  padding: 0;
  margin: 20px 0 0 0;
  color: var(--color-secondary);
}

.blog .blog-details .content {
  margin-top: 20px;
}

.blog .blog-details .content h3 {
  font-size: 22px;
  margin-top: 30px;
  font-weight: bold;
}

.blog .blog-details .content blockquote {
  overflow: hidden;
  background-color: rgba(var(--color-secondary-rgb), 0.06);
  padding: 60px;
  position: relative;
  text-align: center;
  margin: 20px 0;
}

.blog .blog-details .content blockquote p {
  color: var(--color-default);
  line-height: 1.6;
  margin-bottom: 0;
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
}

.blog .blog-details .content blockquote:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: var(--color-secondary);
  margin-top: 20px;
  margin-bottom: 20px;
}

.blog .blog-details .meta-top {
  margin-top: 20px;
  color: var(--color-gray);
}

.blog .blog-details .meta-top ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}

.blog .blog-details .meta-top ul li+li {
  padding-left: 20px;
}

.blog .blog-details .meta-top i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
  color: rgba(var(--color-primary-rgb), 0.8);
}

.blog .blog-details .meta-top a {
  color: var(--color-gray);
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}

.blog .blog-details .meta-bottom {
  padding-top: 10px;
  border-top: 1px solid rgba(var(--color-secondary-rgb), 0.15);
}

.blog .blog-details .meta-bottom i {
  color: var(--color-secondary-light);
  display: inline;
}

.blog .blog-details .meta-bottom a {
  color: rgba(var(--color-secondary-rgb), 0.8);
  transition: 0.3s;
}

.blog .blog-details .meta-bottom a:hover {
  color: var(--color-primary);
}

.blog .blog-details .meta-bottom .cats {
  list-style: none;
  display: inline;
  padding: 0 20px 0 0;
  font-size: 14px;
}

.blog .blog-details .meta-bottom .cats li {
  display: inline-block;
}

.blog .blog-details .meta-bottom .tags {
  list-style: none;
  display: inline;
  padding: 0;
  font-size: 14px;
}

.blog .blog-details .meta-bottom .tags li {
  display: inline-block;
}

.blog .blog-details .meta-bottom .tags li+li::before {
  padding-right: 6px;
  color: var(--color-default);
  content: ",";
}

.blog .blog-details .meta-bottom .share {
  font-size: 16px;
}

.blog .blog-details .meta-bottom .share i {
  padding-left: 5px;
}

.blog .post-author {
  padding: 20px;
  margin-top: 30px;
  box-shadow: 0 4px 16px rgba(var(--color-black-rgb), 0.1);
}

.blog .post-author img {
  max-width: 120px;
  margin-right: 20px;
}

.blog .post-author h4 {
  font-weight: 600;
  font-size: 22px;
  margin-bottom: 0px;
  padding: 0;
  color: var(--color-secondary);
}

.blog .post-author .social-links {
  margin: 0 10px 10px 0;
}

.blog .post-author .social-links a {
  color: rgba(var(--color-secondary-rgb), 0.5);
  margin-right: 5px;
}

.blog .post-author p {
  font-style: italic;
  color: rgba(var(--color-gray-rgb), 0.8);
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Blog Sidebar
--------------------------------------------------------------*/
.blog .sidebar {
  padding: 30px;
  box-shadow: 0 4px 16px rgba(var(--color-black-rgb), 0.1);
}

.blog .sidebar .sidebar-title {
  font-size: 20px;
  font-weight: 700;
  padding: 0;
  margin: 0;
  color: var(--color-secondary);
}

.blog .sidebar .sidebar-item+.sidebar-item {
  margin-top: 40px;
}

.blog .sidebar .search-form form {
  background: #fff  ;
  border: 1px solid rgba(var(--color-secondary-rgb), 0.3);
  padding: 3px 10px;
  position: relative;
}

.blog .sidebar .search-form form input[type=text] {
  border: 0;
  padding: 4px;
  border-radius: 4px;
  width: calc(100% - 40px);
}

.blog .sidebar .search-form form input[type=text]:focus {
  outline: none;
}

.blog .sidebar .search-form form button {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 15px;
  margin: -1px;
  background: var(--color-primary);
  color: #fff  ;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
  line-height: 0;
}

.blog .sidebar .search-form form button i {
  line-height: 0;
}

.blog .sidebar .search-form form button:hover {
  background: rgba(var(--color-primary-rgb), 0.8);
}

.blog .sidebar .categories ul {
  list-style: none;
  padding: 0;
}

.blog .sidebar .categories ul li+li {
  padding-top: 10px;
}

.blog .sidebar .categories ul a {
  color: var(--color-secondary);
  transition: 0.3s;
}

.blog .sidebar .categories ul a:hover {
  color: var(--color-default);
}

.blog .sidebar .categories ul a span {
  padding-left: 5px;
  color: rgba(var(--color-default-rgb), 0.4);
  font-size: 14px;
}

.blog .sidebar .recent-posts .post-item {
  display: flex;
}

.blog .sidebar .recent-posts .post-item+.post-item {
  margin-top: 15px;
}

.blog .sidebar .recent-posts img {
  width: 80px;
  margin-right: 15px;
}

.blog .sidebar .recent-posts h4 {
  font-size: 18px;
  font-weight: 400;
}

.blog .sidebar .recent-posts h4 a {
  color: var(--color-secondary);
  transition: 0.3s;
}

.blog .sidebar .recent-posts h4 a:hover {
  color: var(--color-primary);
}

.blog .sidebar .recent-posts time {
  display: block;
  font-style: italic;
  font-size: 14px;
  color: rgba(var(--color-default-rgb), 0.4);
}

.blog .sidebar .tags {
  margin-bottom: -10px;
}

.blog .sidebar .tags ul {
  list-style: none;
  padding: 0;
}

.blog .sidebar .tags ul li {
  display: inline-block;
}

.blog .sidebar .tags ul a {
  color: var(--color-secondary-light);
  font-size: 14px;
  padding: 6px 14px;
  margin: 0 6px 8px 0;
  border: 1px solid rgba(var(--color-secondary-light-rgb), 0.8);
  display: inline-block;
  transition: 0.3s;
}

.blog .sidebar .tags ul a:hover {
  color: #fff  ;
  border: 1px solid var(--color-primary);
  background: var(--color-primary);
}

.blog .sidebar .tags ul a span {
  padding-left: 5px;
  color: rgba(var(--color-secondary-light-rgb), 0.8);
  font-size: 14px;
}

/*--------------------------------------------------------------
# Blog Comments
--------------------------------------------------------------*/
.blog .comments {
  margin-top: 30px;
}

.blog .comments .comments-count {
  font-weight: bold;
}

.blog .comments .comment {
  margin-top: 30px;
  position: relative;
}

.blog .comments .comment .comment-img {
  margin-right: 14px;
}

.blog .comments .comment .comment-img img {
  width: 60px;
}

.blog .comments .comment h5 {
  font-size: 16px;
  margin-bottom: 2px;
}

.blog .comments .comment h5 a {
  font-weight: bold;
  color: var(--color-default);
  transition: 0.3s;
}

.blog .comments .comment h5 a:hover {
  color: var(--color-primary);
}

.blog .comments .comment h5 .reply {
  padding-left: 10px;
  color: var(--color-secondary);
}

.blog .comments .comment h5 .reply i {
  font-size: 20px;
}

.blog .comments .comment time {
  display: block;
  font-size: 14px;
  color: rgba(var(--color-secondary-rgb), 0.8);
  margin-bottom: 5px;
}

.blog .comments .comment.comment-reply {
  padding-left: 40px;
}

.blog .comments .reply-form {
  margin-top: 30px;
  padding: 30px;
  box-shadow: 0 4px 16px rgba(var(--color-black-rgb), 0.1);
}

.blog .comments .reply-form h4 {
  font-weight: bold;
  font-size: 22px;
}

.blog .comments .reply-form p {
  font-size: 14px;
}

.blog .comments .reply-form input {
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
}

.blog .comments .reply-form input:focus {
  box-shadow: none;
  border-color: rgba(var(--color-primary-rgb), 0.8);
}

.blog .comments .reply-form textarea {
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
}

.blog .comments .reply-form textarea:focus {
  box-shadow: none;
  border-color: rgba(var(--color-primary-rgb), 0.8);
}

.blog .comments .reply-form .form-group {
  margin-bottom: 25px;
}

.blog .comments .reply-form .btn-primary {
  border-radius: 4px;
  padding: 10px 20px;
  border: 0;
  background-color: var(--color-secondary);
}

.blog .comments .reply-form .btn-primary:hover {
  background-color: rgba(var(--color-secondary-rgb), 0.8);
}

/*--------------------------------------------------------------
# Blog Home Pagination
--------------------------------------------------------------*/
.blog .blog-pagination {
  margin-top: 30px;
  color: var(--color-secondary-light);
}

.blog .blog-pagination ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}

.blog .blog-pagination li {
  margin: 0 5px;
  transition: 0.3s;
}

.blog .blog-pagination li a {
  color: var(--color-secondary);
  padding: 7px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog .blog-pagination li.active,
.blog .blog-pagination li:hover {
  background: var(--color-primary);
}

.blog .blog-pagination li.active a,
.blog .blog-pagination li:hover a {
  color: #fff  ;
}
.tab-contents {
  line-height:32px;
  font-family: 'Tajawal', sans-serif;
  font-size: 18px;
/* display: flex; */
}
.tab-contents .image-part{
  background: #fff;
    box-shadow: 0 12px 15px 1px #0000000a;
    padding: 30px;
    position: relative;
    border-radius: 15px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.tab-contents .section-header h4{
  font-size: 20px;
  font-weight: 600;
  line-height: 40px;
  color: var(--color-primary);
}
.tab-contents .section-header p{
  width: 90%;

  margin: 20px 0 0 20px;
  text-align: justify;
  font-size: 18px;
  font-family: var(--font-primary);
  line-height: 32px;
  padding-right: 20px;
  color: #000;

}
.bi-check2{
  font-size: 20px;}
  .about .portfolio-part{
width: 100%;
min-height: 400px;
  }
  .portfolio a{
    cursor: pointer;
  }
@media (min-width:776px) {
  .about .portfolio-container{
    display: flex;
    justify-content: center !important;
    flex-wrap: wrap;
    

  }
  .about .portfolio-container .portfolio-part{
    width: 40%;
    margin: 10px ;
  }
}
@media (min-width:992px) {
  .about .portfolio-container .portfolio-part{
    width: 30%;
    margin: 10px ;
  }
  .tab-contents {
    display: flex;
    justify-content: space-between;
    align-items: start;
    border: 2px solid rgba(170, 170, 170,.7);
    /* padding: 20px ; */
    border-radius: 10px;
    box-shadow: 1px 1px  1px rgba(170, 170, 170,.7);
  }
  .tab-contents  .image-part{
    width: 50%;
    /* margin: 0 10px; */
  }
  .tab-contents .section-header{
    width: 45%;
    order: 0;
    text-align: start;
    padding: 20px;
  }
  .tab-contents .section-header p{
    width: 90%;
    
 
    text-align: justify;

  }
}
.search-part{
  width: 100%;
  margin: auto;
  text-align: start;
  z-index: 20000
}

.search-part form{
width: 100%;
  padding: 0px 20px;
  display: flex;
  align-items: center;
justify-content: center;
flex-direction: column;

  border: none;
  outline: none;
  width: 100%;
}
.search-part form input{

padding: 10px;
width: 100%;
  

    height: 50px;
    padding-right: 15px;
    padding-left: 15px;
    margin: 10px 10px;
    outline: none;
    font-size: 18px;
   
    font-weight: 400;
    color: #3A3A41;
    border-radius: 5px;
    border: 2px solid rgba(211, 216, 226, 0.5);
}
.search-part form .discovery-button{
  min-width: 100%;
    min-height: 45px;
    margin: 10px 10px;
    background-color: var(--color-primary);
    border-radius:5px;
    border: 0px;
    outline: none;
    cursor: pointer;
    font-size: 18px;
    color: #FFFFFF;
    font-weight: 500;
   
    display: flex !important;
    justify-content: center;
    align-items: center;
}
.search-part label{
  font-size: 16px;
  font-weight: 600;
  line-height: 32px;
  opacity: .8;

}
.search-part form .hidden {
  display: none;
}
.detaials-one .details{

  border: 1px solid #cacaca;
  padding: 10px;
  border-radius: 15px;
  box-shadow: 0 12px 15px 1px #0000000a;
width: 100%;
margin: auto;
}
@media (min-width:776px) {
  
.detaials-one .details{
  width: 65%;
  padding: 2rem;
  min-height: 350px;
}
  
}
.details .nav{
  text-align: center!important;
  box-shadow: 0 12px 15px 1px #0000000a;
padding: 10px;
width: 100%;

height: 100%;
margin-right: 0 !important;
  border-radius: 15px;
  background: #fff;}
  .details .nav button:not(:last-child){
    border-bottom: 1px solid #f0f0f0;
    border-radius: 0;
   
  }
  .details .nav button{
    margin: 5px 0;
  }
  .details .nav-link{
    color: var(--color-secondary-light);
    font-size: 14px;
    font-weight: normal;
    text-align: center !important;
    display: flex;
    justify-content: space-between;
  }
  .details .nav-link.active{
    background-color: transparent;
    color: var(--color-primary) !important;
    font-family: 'Tajawal', sans-serif;
    line-height: 32px;
    font-size: 14px;
    font-weight: 700;
  }
  .details .tab-contents{
    width: 0;
    display: none;

  }
 .condition ul{
   padding: 0!important;
   list-style: inside;
  }
  .condition ul p, .condition ul li{
    font-size: 18px;
    font-family: 'Tajawal', sans-serif;
    line-height: 32px;
    font-weight: 700;
  }
  .condition ul li{
    font-weight: normal;
    margin: 5px 0;
    font-size: 14px;
  }
 
    
    
    @media (min-width:1200px){
     
    }
    .about .portfolio-part .values {
      display: flex;
      width: 100%;
      align-items: center;
      justify-content:space-evenly ;
    }
    .about .portfolio-part .values img{
      width:40px;
      height: 40px;
      
    }
    .about .text-container .goal{
      position: absolute;
      background: #fff;
      transform: rotate(-60deg);
      left: -65px;
      width: 50%;
      top: 1%;
      text-align: center;
      height: 30px;
      color: #fff;
   z-index: 6;
   padding-right: 20px;
   /* border-radius: 4px; */
   border: 1px solid #eee;
   box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
   color: #621310;
   font-size: 14px;
   vertical-align: bottom;
   padding-top: 5px;
   font-weight: 800;
  
    }
    .about .text-container .goal img{
      width: 40px;
      height: auto;
     
    }
    .about .portfolio-part .details-btn{
      color: #fff;
      background-color: var(--color-primary);
      margin: 0px  auto 20px auto;
      padding:5px  20px ;
      border-radius: 20px;
      font-family: var(--font-primary);
      line-height: 28px;
    }
    .about .portfolio-part .price{
      margin: 10px 0;
      text-align: start;
      width: 100%;
      padding: 10px;
      font-family: var(--font-primary);
    }
    .about .portfolio-part .price span{
   display: block;
      font-weight: 600;
      font-size: 16px;
      text-align: center;
      
    }
    .about .portfolio-part .price  div{
      font-size: 16px;
    }
    .certificate-details{
      padding: 40px 0;
     
    }

    .certificate-details .two-parts{
      /* border: 1px solid rgba(170, 170, 170,.7); */
      border-radius: 10px;
    }
.certificate-details .two-parts .part-one .image{
  padding: 40px;
  background-color: #fff;
  box-shadow: 3px 5px 15px 1px #00000015;
  border-radius: 20px;
  margin: 20px 0;
  
  
}
.certificate-details .two-parts .part-one p{
  font-family: var(--font-primary);
  line-height: 32px;
  margin-bottom: 10px;
}
.certificate-details .two-parts .part-one .five{
  margin: 5px;
}
.certificate-details .two-parts .part-one .image img{

  height: 60px;

}

.certificate-details .two-parts .part-one .icons-part{
  width: 100%;
}
.certificate-details .two-parts .part-one .icons-part svg{

  padding: 5px;
  width: 30px;
  border-radius: 50%;
  height: 30px;
margin: 5px;
color: #fff;

}
section .intronow{
  border: none;
  outline: none;
  padding: 10px;
  color: #fff;
  background-color: var(--color-primary);
 min-width: 200px;
  border-radius: 40px;
  margin: 20px;
  font-size: 16px;
  cursor: pointer;
  line-height: 28px;
  font-weight: 600;
}
.certificate-details .two-parts .part-one .icons-part span{
  display: inline-block;
  font-size: 16px;
  line-height: 28px;
}
.certificate-details .two-parts .part-one {
  background-color: #fff;
  box-shadow: 3px 5px 15px 1px #00000015;
  display: flex;
  flex-direction: column;
  padding: 20px;
  border-radius: 10px;
  align-items: start;
}
.certificate-details .two-parts .part-two div{
  margin: 10px 0;
}
.certificate-details .two-parts .part-two div strong{
color: var(--color-primary);
margin-bottom: 20px;
display: block;
font-size: 20px;
}
.certificate-details .two-parts .part-two p{
  font-size: 18px;
  color: var(--color-primary);
}
.certificate-details .two-parts .part-two div  li{list-style: unset !important;
line-height: 28px;
font-size: 16px;
padding-right: 20px;}
.why .why-parts div{
  background-color: #fff;
  margin: 10px;
  padding: 20px;
  font-size: 18px;
  line-height: 32px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  border-radius: 10px;
  font-weight: 600;
  transition: .5s ease;
  text-align: center;
}
.why .why-parts div:hover{
  /* border: 1px solid #eee; */
  transform: translateY(-10px);


}
.certificate-details .two-parts .part-two .goal-image{
  display: none;}
@media (min-width: 776px) {
.why .why-parts{
  display: flex;
  justify-content: center;
}
.why .why-parts div{
  width: 25%};
}
@media (min-width: 992px) {
  .certificate-details .two-parts {
    display: flex;
    align-items: start;
    justify-content: space-between;

  }
  .search-part form .discovery-button{
    min-width: 100px;
  }
  .search-part form input{
    width: 70%;}
  .search-part form{
    flex-direction: row;
  align-items: center;}
  .certificate-details .two-parts .part-one {
    width: 30%;

  }
  .certificate-details .two-parts .part-two{
    width: 65%;
    display: flex;
    justify-content: start;
    align-items: center;
  }
  .certificate-details .two-parts .part-two .goal-image{
    width: 40%;
    margin-left: 20px;
    display: block;
  }
}
.testimonials {
  padding: 40px 0;
  background: url("../img/testimonials-bg.jpg") no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
  /* background-color: #621310; */
}

.testimonials::before {
  content: "";
  position: absolute;
  inset: 0;
  background:rgb(98 19 16 / 70%);
}

.testimonials .section-header {
  margin-bottom: 40px;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  text-align: center;
  color: #fff;
}

.testimonials .testimonial-item .testimonial-img {
  width: 100px;
  border-radius: 50%;
  border: 6px solid rgba(250,250,250, 0.15);
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #fff  ;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: rgba(var(--color-white-rgb), 0.6);
  margin: 0 0 15px 0;
}

.testimonials .testimonial-item .stars {
  margin-bottom: 15px;
}

.testimonials .testimonial-item .stars i {
  color: #fff;
  margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: rgba(var(--color-white-rgb), 0.6);
  font-size: 26px;
  line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: rgba(250,250,250, 0.4);
  opacity: 0.5;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #fff;
  opacity: 1;
}

@media (min-width: 992px) {
  .testimonials .testimonial-item p {
    width: 80%;
  }
}

.learn h6{
  font-size: 18px;
  line-height: 32px;
  font-weight: 600;
text-align: center;
  /* border-bottom: 3px solid var(--color-primary); */
}
.learn a{
  border: 1px solid var(--color-primary);
  padding:5px 10px;
  border-radius: 20px;
  font-size: 16px;
  background-color:  var(--color-primary);
  font-weight: 500;
margin:10px ;
  color: #fff !important;
  display: block;
  text-align: center;

}
.list-part{
  padding: 10px;
}
 .list-part .list-text .check{
  background-color: #fff;
  padding: 20px;
  border: 1px solid #aaa;
  border-radius: 10px;
  margin: 10px 0;

}
 .list-part .list-text .check span{
  display: inline-block;
  font-weight: 600;
  font-size: 18px;
}
 .list-part .list-text .check img{
  width: 20px;
  height: auto;

}
.list-part .list-image {
  display: none;
  height:400px;
}
.same-parts .same{
  width: 100%;
  border: 1px solid #aaa;
  border-radius: 10px;
  overflow: hidden;
  position: relative;

}
.same-parts .same{
  display: block;
  font-size: 14px;
  line-height: 28px;
  margin-bottom: 10px;
}
.same-parts .same .same-image{
  border-radius: 10px;
}
.same-parts .same  .rating img{
  width: 100px;
  height: auto;
  mix-blend-mode: multiply;
}
.same-parts .same a{
  width: 50%;
  border-radius: 25px;
  margin: 10px auto;
}
.btn-cssbuttons {
  --btn-color: var(--color-primary);
  position: relative;
  padding: 16px 32px;
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 16px;
  line-height: 1;
  color: #fff;
  background: none;
  border: none;
  outline: none;
  overflow: hidden;
  cursor: pointer;
  filter: drop-shadow(0 2px 8px #eee);
  transition: 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  min-width: 200px;
  margin: 20px auto;
  display: block;
 }
 
 .btn-cssbuttons::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background: var(--btn-color);
  border-radius: 24px;
  transition: 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
 }
 
 .btn-cssbuttons span,
 .btn-cssbuttons span span {
  display: inline-flex;
  vertical-align: middle;
  transition: 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
 }
 
 .btn-cssbuttons span {
  transition-delay: 0.05s;
 }
 
 .btn-cssbuttons span:first-child {
  padding-right: 7px;
 }
 
 .btn-cssbuttons span span {
  margin-left: 8px;
  transition-delay: 0.1s;
 }
 
 .btn-cssbuttons ul {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  display: flex;
  margin: 0;
  padding: 0;
  list-style-type: none;
  transform: translateY(-50%);
 }
 
 .btn-cssbuttons ul li {
  flex: 1;
 }
 
 .btn-cssbuttons ul li a {
  display: inline-flex;
 
  vertical-align: middle;
  transform: translateY(55px);
  transition: 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
 }
 
 .btn-cssbuttons ul li a:hover {
  opacity: 0.5;
 }
 
 .btn-cssbuttons:hover::before {
  transform: scale(1.2);
 }
 
 .btn-cssbuttons:hover span,
 .btn-cssbuttons:hover span span {
  transform: translateY(-55px);
 }
 
 .btn-cssbuttons:hover ul li a {
  transform: translateY(0);
 }
 
 .btn-cssbuttons:hover ul li:nth-child(1) a {
  transition-delay: 0.15s;
 }
 
 .btn-cssbuttons:hover ul li:nth-child(2) a {
  transition-delay: 0.2s;
 }
 
 .btn-cssbuttons:hover ul li:nth-child(3) a {
  transition-delay: 0.25s;
 }
 .certification{
  background: linear-gradient(to bottom, #fff 50%, #eee 50%);
  padding: 20px 0;
 }
 .certification .certification-parts .one-1 .nav-tabs .nav-link{
padding: 5px;
font-size: 14px;
margin: 0 4px;
color: #000;
 }
 ul{
  padding-right: 0;
 }
 .certification .certification-parts{
  border: 1px solid #aaa;
  padding: 10px;
  border-radius: 10px;
  margin: 20px 0;
  background-color: #fff;
 }
 .certification .certification-parts  .nav-tabs {
  border-bottom: none !important;
  padding: 10px;
 }
 .certification .certification-parts .one-1 .nav-tabs .nav-link.active{
border: 2px solid var(--color-primary) !important;
color: var(--color-primary) !important;
border: none;
padding:5px  10px;
font-weight: bold;
border-radius: 5px;
 }
 .certification .certification-parts  .tab-content{
margin: 20px 0;
border: 2px solid #eee;
padding: 10px;
border-radius: 10px;
box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
 }
 .certification .certification-parts  .tab-content li{
  line-height: 28px;
  font-size: 16px;
  margin: 5px;
 }




 .footer-legal {
  padding: 30px 0;
  background: var(--color-primary);
}

 .footer-legal .credits {
  padding-top: 4px;
  font-size: 13px;
  color:#fff;
}

 .footer-legal .credits a {
  color: var(--color-primary);
}

 .footer-legal .social-links a {
  font-size: 18px;
  display: inline-block;
background-color: #fff;
  color:var(--color-primary);
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

 .footer-legal .social-links a:hover {
  background: var(--color-primary);
  text-decoration: none;
  color: #fff;
}
.question .div-border{
  border: 1px solid var(--color-primary);
  margin: 10px 0;
  transition: 0.4s ease-in-out;
  border-radius: 5px;
 
}
.question .accordion {

  font-size: 18px;
  font-weight: 800;
   cursor: pointer;
   padding: 10px;
   width: 100%;
   border: none;
  text-align: center;
   outline: none;
 border-radius: 5px;
   transition: 0.4s;
   position: relative;
   transition: 2s;
   color: var(--color-primary);
   line-height: 32px;
background-color: transparent;
   font-family:var(--font-primary) ;
  
 }
 .question .accordion.activ{
  border-top-right-radius: 5px ;
  border-top-left-radius: 5px ;
  border-bottom-right-radius: 0px ;
  border-bottom-left-radius: 0px ;
 }
 .question  li{
  list-style: none;
 }
 .question .activ, .accordion:hover {
   background-color: var(--color-primary); 
   color: #fff;
 }
 
 .question .panel {
   padding: 10px 18px;
   display: none;
   margin: 10px 0;
   font-size: 18px;
   line-height: 32px;
  transition: .5s;
   overflow: hidden;
   padding: 10px;
 }
 

 .question .accordion::before {
   content: '+';
   position: absolute;
  left: 10px;
   transition: transform 0.3s ease-in-out;
 }
 
 .question .activ::before {
   
   content: '-';
 }
.last-sec{
  background-image: repeating-linear-gradient(45deg, #aaaaaa 0, #aaaaaa 0.5px, transparent 0, transparent 50%);
  background-size: 65px 65px;
  background-color: #eeeeee;
  border-radius: 10px;
  padding: 10px;
  text-align: center;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}
.last-sec h3{
  line-height: 32px;
  font-size: 20px;
  font-weight: 600;
}
.para_section p{
  border: 1px solid #eee;
  background-color: #fff;
padding: 10px;
border-radius: 5px;
cursor: pointer;
}
 .hidden-content{
  display: none;
}

.para_section .allbtn{
  display: none;
  border: none;
  outline: none;
  padding: 10px 10px;
  background-color: var(--color-primary);
  color: #fff;
  min-width: 10%;
border-radius: 5px;
font-family: var(--font-primary);
}
.new_part{
  border: 1px solid #aaa;
  border-radius: 5px;
  padding: 10px;
  margin: 20px;
}
.new_part .tab {
  cursor: pointer;
  padding: 10px 20px;
margin: 5px 0;
  border-bottom: none;
  font-weight: 600;
}
.new_part .section-tabs{
  background-color: #fff;
  border-radius: 5px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}
.new_part .tab.active {
  background-color: var(--color-primary);
  color: #fff;
  font-weight: 800;
  border: 1px solid var(--color-primary);
  border-radius: 5px ;

}
.portfolio-part {
  cursor: pointer;
}

.portfolio-part.active {
  border: 2px solid blue; /* Add a border or any other styling to indicate active item */
}


/* CSS for tab content */
.new_part .tab-content {
  display: none;
  

  border-top: none;
}
.new_part .tab-content .all-tab h5{
  font-size: 16px;
  font-family: var(--font-primary);
  line-height: 32px;
  color: rgba(0, 0, 0,.8);
  font-weight: 600;
  display: flex;
  flex-direction: column;
}
.new_part .tab-content .all-tab h5 i{
  font-size: 20px;
}
.new_part .tab-content .all-tab span{
  font-family: var(--font-primary);
  line-height: 28px;
  display: block;
}
.new_part .tab-content.active {
  display: block;
}

.team .team-member .member-img {
  border-radius: 8px;
  overflow: hidden;
}
.team .team-member img{
  height: 350px;
  width: 350px;
}

.team .team-member .social {
  position: absolute;
  left: 0;
  top: -18px;
  right: 0;
  opacity: 0;
  transition: ease-in-out 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team .team-member .social a {
  transition: color 0.3s;
  color: #fff;
  background: var(--color-primary);
  margin: 0 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  transition: 0.3s;
}

.team .team-member .social a i {
  line-height: 0;
  font-size: 16px;
}

.team .team-member .social a:hover {
  background: #fff;
  color: #621310;
}

.team .team-member .social i {
  font-size: 18px;
  margin: 0 2px;
}

.team .team-member .member-info {
  padding: 30px 15px;
  text-align: center;
  box-shadow: 0px 2px 15px rgba(0,0,0, 0.1);
  background: #fff;
  margin: -50px 20px 0 20px;
  position: relative;
  border-radius: 8px;
}

.team .team-member .member-info h4 {
  font-weight: 400;
  margin-bottom: 5px;
  font-size: 24px;
  color: var(--color-primary);
}

.team .team-member .member-info span {
  display: block;
  font-size: 16px;
  font-weight: 400;
  color: #000;
}

.team .team-member .member-info p {
  font-style: italic;
  font-size: 14px;
  line-height: 26px;
  color: #eee;
}

.team .team-member:hover .social {
  opacity: 1;
}
.trainer-part{
  margin: 30px 0;
  padding: 25px ;
}
.trainer-part .swiper-slide{
  background-color: #fff;
  text-align: center;
  border-radius: 10px;
  position: relative;
  margin: 5px;
  border: 1px solid #eee;
  padding: 10px;
}
.trainer-part .swiper-slide img{
  border: 4px solid #eee;
  border-radius: 50%;
  margin-bottom: 10px;
  position: relative;

}
.trainer-part .swiper-slide {
font-size: 16px;
line-height: 32px;
color: rgba(0, 0, 0,.7);
}
.trainer-part .swiper-slide p{
  margin-bottom: 10px;
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .img {
  border-radius: 8px;
  overflow: hidden;
  height: 0;
}

.services .img img {
  transition: 0.6s;
}

.services .details {
  padding: 50px 30px;
  margin: -100px 30px 0 30px;
  transition: all ease-in-out 0.3s;
  background: #fff  ;
  position: relative;
  background: #ffff;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0px 0 25px #dcd6d6;
  margin: 20px;
  height: 250px;
}

.services .details .icon {
  margin: 0;
  width: 100px;
  height: 100px;
  background: var(--color-primary);
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: #fff  ;
  font-size: 28px;
  transition: ease-in-out 0.3s;
  position: absolute;
  top: -50px;
  left: calc(50% - 50px);
  border: 6px solid #fff  ;
}
.services .details img{
  background-color: transparent;
  height:65px;
  width: 85%;
}
.services .details h3 {
  color: #000;
  font-weight: 700;
  margin: 10px 0 15px 0;
  font-size: 22px;
  transition: ease-in-out 0.3s;
}

.services .details p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}
.services .details .button{
  border: 1px solid var(--color-primary);
  outline: none;
  display: block;
  background-color: transparent;
  border-radius: 20px;
  color: var(--color-primary);
  margin: 20px auto;
  width: 120px;

}
.services .service-item:hover .details h3 {
  color: var(--color-primary);
}

.services .service-item:hover .details .icon {
 /* background-color: #fff; */
  border: 2px solid var(--color-primary);
}

.services .service-item:hover .details .icon i {
  color: var(--color-primary);
}


.services  .details span{
  font-weight: 600;
  line-height: 32px;
  font-size: 16px;
}
.services  a.stretched-link::after{
  position: relative !important;
}

     /* start popup */
     .record{
      /* background: linear-gradient(to bottom, #fff 50%, #eee 50%); */
padding: 20px 0;
/* margin-top: 100px; */

  }
  .order-section {
      direction: rtl;
  }
.order-section   .button {
min-width: 200px;
height: 45px;
border-radius: 20px;
position: relative;
overflow: hidden;
color: #fff;

font-weight: 600;
font-size: 15px;
line-height: 1;
cursor: pointer;
z-index: 1;
background: #621310;
border: 1px solid transparent;

transition: 0.6s ease-in;
}



.order-section .button .two {
display: none;
}

.order-section .button.act::before {
width: 200px;
transition: 3s linear;
}



.order-section .button::before {
content: "";
width: 0;
height: 50px;

position: absolute;
top: 0;
left: 0;
background-image: linear-gradient(to right, #3d3a3b 0%, #4e494a 100%);
transition: 0.5s ease;
display: block;
z-index: -1;
}

/* start popup */
/* Add your popup styling here */
#popup {

position: relative;
border: none;
z-index:5;
text-align: center;
padding: 40px 0;
width: 95%;
display: none;
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);

z-index: 20;

box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
border-radius: 10px;
color:#ffffff;
background-color: #fff;

}
#popup p{font-size: 18px;
line-height: 32px;
font-weight: bold;
color: #000;}
#popup form input{width: 40%;
line-height: 32px;
border: none;
outline: none;
padding:5px 5px;
margin:0 5px;
border: 1px solid #d0d3d5;
border-radius: 4px;
}
#popup form  label{display: inline-block;
width: 40%;
margin: 5px 0;
font-size: 16px;
color: #000;
font-weight: bold;}
#popup .buttons{margin-top: 20px ;
}
#popup .buttons input{
background-color: #621310;
color: #fff;
border-radius: 20px;
}
/* Close button styling */
.close {
position: absolute;
top: 10px;
right: 20px;
cursor: pointer;
font-size: 20px;
font-weight: bold;
color: #000;
}
.popupbutton {
position: relative;
display: inline-block;
margin: 20px 0;
padding: 5px 10px;
text-align: center;
font-size: 16px;
letter-spacing: 1px;
text-decoration: none;
color: #620c22d4;
background: transparent;
cursor: pointer;
transition: ease-out 0.5s;
border: 2px solid #620c22d4;
border-radius: 10px;
box-shadow: inset 0 0 0 0 #620c22d4;
font-family: var(--font);
line-height: 32px;
font-weight: 800;
background-color: #ff135a;

}

.popupbutton:hover {
color: white;
box-shadow: inset 0 -100px 0 0 #620c22d4

}
.button.act .one {
display: none;
}

.button.act .two {
display: inline;
}


.recording-sec{
  margin-top: 60px;
}

.recording-sec .section-header {
 
  position: relative;
}
.recording-sec .section-header::after{
position: absolute;
content: "";
width: 20%;
height: 3px;
background: #621310;
left: calc(50% - 10%);
right: calc(50% - 10%);
}


.recording-sec .all-class .portfolio-part .about-img{
  width: 70%;
  margin: 10px auto;
}
.recording-sec .another-certificate {
  margin: 20px 0;
  padding: 10px;
}
.recording-sec .another-certificate h5{
  line-height: 32px;
  font-size: 20px;
  font-weight: 800;
  margin: 20px 0;
  color: var(--color-primary);

}
.mySwiper.about .portfolio-part{
  width: 100%;
  margin: auto !important;
}
.mySwiper .swiper-pagination{
  position: relative !important;
  margin: 20px;
}


.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet.active{
  background-color: var(--color-primary);
}
@media (min-width:776px) {
  .learn .pdf{
   display: flex;
   justify-content: space-between;
   align-items: center;
 
 }
 .mySwiper .portfolio-part{
  width: 100%;
}
.same-parts .same{
  width: 40%;
  margin: 5px;
}
 .same-parts {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 20px 0;
 }
 .question .div-border {
  width: 80%;
  margin:15px  auto;
}
.last-sec{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
}
.about .portfolio-part{
  width: 40%;
  margin: 5px 10px;
}
.new_part .section-content .tab-content .all-tab{
  display:flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  text-align: center;
 }
 .new_part .section-content .tab-content .all-tab div{
  width: 48%;
  background-color: #fff;
  margin: 5px 0;
  padding: 10px;
  text-align: center;
  border: 2px solid #eee;
  border-radius: 5px;

 
 }
 #popup {
  width: 60%;}
}


@media (min-width: 992px) {

  .mySwiper.about .portfolio-part{
    width: 100%;
  }
   .list-part{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
  }
   .list-part .list-image {
    width: 45%;
    display: inline;
  }
   .list-part .list-text{
    width: 50%;
  }
  
.same-parts .same{
  width: 30%;
}
.certification .certification-parts{
  display: flex;
  justify-content: space-between;
 
}
.certification .certification-parts .one-1{
  width: 72%;
}
.certification .certification-parts .two-2{
  width: 25%;
}
.para_section{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
 }
 .para_section p{
  width: 15%;
  margin: 10px;
 }
 .about .portfolio-part{
  width: 30%;
  
 }
 .new_part {
display: flex;
justify-content: space-between;
/* align-items: center; */
 }
 .new_part .section-image{
  width: 25%;
}
.new_part .section-image img{
  mix-blend-mode: multiply;
}
 .new_part .section-tabs{
  width: 25%;
 }
 .new_part .section-content{
  width: 70%;
 }
 #popup {
  width: 70%;}


  }
  .wrapper {
    display: inline-flex;
    list-style: none;
    /* height: 120px; */
    width: 100%;
    padding-top: 10px;
    justify-content: space-evenly;
  }
  
  .wrapper .icon {
    position: relative;
    /* background: #aaa; */
    border-radius: 50%;
    margin: 10px;
    width: 40px;
    height: 40px;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
   
    /* box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1); */
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  }
  
  .wrapper .tooltip {
    position: absolute;
    top: 0;
    font-size: 14px;
    background: #fff;
    color: #fff;
    padding: 5px 8px;
    border-radius: 5px;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  }
  
  .wrapper .tooltip::before {
    position: absolute;
    content: "";
    height: 8px;
    width: 8px;
    background: #fff;
    bottom: -3px;
    left: 50%;
    transform: translate(-50%) rotate(45deg);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  }
  
  .wrapper .icon:hover .tooltip {
    top: -45px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  
  .wrapper .icon:hover span,
  .wrapper .icon:hover .tooltip {
    text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.1);
  }
  .wrapper li img{
    width: 40px;
    height: 40px;
  }
  .wrapper .facebook:hover,
  .wrapper .facebook:hover .tooltip,
  .wrapper .facebook:hover .tooltip::before {
    background: #621310;
    color: #fff;
  }
  
  .wrapper .twitter:hover,
  .wrapper .twitter:hover .tooltip,
  .wrapper .twitter:hover .tooltip::before {
    background: #621310;
    color: #fff;
  }
  
  .wrapper .instagram:hover,
  .wrapper .instagram:hover .tooltip,
  .wrapper .instagram:hover .tooltip::before {
    background: #621310;
    color: #fff;
  }
  
  ul{padding: 0 !important;
  margin-bottom: 0 !important;}
   .play-btn {
    width: 94px;
    height: 94px;
    background: radial-gradient(var(--color-primary) 50%, rgba(98, 19, 16,.7) 5%);
    border-radius: 50%;
    display: block;
    position: absolute;
    left: calc(50% - 47px);
    top: calc(50% - 47px);
    overflow: hidden;
  }
  
   .play-btn:before {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    animation-delay: 0s;
    animation: pulsate-btn 2s;
    animation-direction: forwards;
    animation-iteration-count: infinite;
    animation-timing-function: steps;
    opacity: 1;
    border-radius: 50%;
    border: 5px solid #fff;
    top: -15%;
    left: -15%;
    
  }
  
   .play-btn:after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-40%) translateY(-50%);
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #fff;
    z-index: 100;
    transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  
   .play-btn:hover:before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-40%) translateY(-50%);
    width: 0;
    height: 0;
    border: none;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #fff;
    z-index: 200;
    animation: none;
    border-radius: 0;
    
  }
  
   .play-btn:hover:after {
    border-left: 15px solid #621310;
    transform: scale(20);
  }
  
  @keyframes pulsate-btn {
    0% {
      transform: scale(0.6, 0.6);
      opacity: 1;
    }
  
    100% {
      transform: scale(1, 1);
      opacity: 0;
    }
  }