body {
  font-family: "Open Sans", sans-serif;
  color: #444444;
}
body.ar,
body.ar h1,
body.ar h2,
body.ar h3,
body.ar h4,
body.ar h5,
body.ar h6
{
  font-family: "Cairo", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-variation-settings:"slnt" 0;
}
h1 {
  font-size: 18px;
}
body{
  background: #ddd;
}
.content{
  background: #fff;
  padding: 20px;
  border-radius: 5PX;
}
.sticky-ph{
  position:sticky;
  top:80px
}

.section-title h2{
  padding-right:5px;
  padding-left:5px;
}
.section-title h2 img{
  padding: 3px;
  background: #ffffff;
  height: 65px;
  width: 65px;
  object-fit: cover;
  border: 3px #55a5f8 solid;
  border-radius: 50%;
}
a {
  color: rgb(85 165 248);
  font-weight: bold;
  text-decoration: none;
}

a:hover {
  color: #463a3a;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Raleway", sans-serif;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #ffb727;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #1f1f1f;
  line-height: 0;
}

.back-to-top:hover {
  background: rgb(255 181 0);
  color: #fff;
}

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

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  z-index: 997;
  transition: all 0.5s;
  height: 80px;
  background: rgba(25, 28, 31, 0.8);
}

#header.header-transparent {
  background: transparent;
}

#header.header-scrolled {
  height: 60px;
  background: rgba(25, 28, 31, 0.8);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

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

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 15px;
  color: #fff;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 12px;
  font-family: "Raleway", sans-serif;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
}

.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: #ffb727;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 4px;
}

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

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  text-transform: none;
  font-weight: 400;
  color: #3b434a;
  letter-spacing: 1px;
}

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

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #ffb727;
}

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

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

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

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }
  .sticky-ph{
    margin-top: 30px;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(36, 41, 46, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 10px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 14px;
  color: #3b434a;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #ffb727;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  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: #ffb727;
}

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

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  background: url("../img/hero-bg.jpg") top right;
  background-size: cover;
  position: relative;
}

#hero:before {
  content: "";
  background: rgba(0, 0, 0, 0.65);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero .hero-container {
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 0 15px;
}

#hero h1 {
  margin: 0 0 10px 0;
  font-size: 64px;
  font-family: "Satisfy", serif;
  color: #fff;
}

#hero h2 {
  color: #eee;
  margin-bottom: 50px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}

#hero .btn-scroll {
  transition: 0.4s;
  color: rgba(255, 255, 255, 0.6);
  animation: up-down 1s ease-in-out infinite alternate-reverse both;
}

#hero .btn-scroll i {
  font-size: 48px;
}

#hero .btn-scroll:hover {
  color: #ffb727;
}

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}

@media (max-width: 575px) {
  #hero h1 {
    font-size: 40px;
  }

  #hero h2 {
    text-align: center;
    margin-bottom: 30px;
  }
}

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

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

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
}

.section-bg {
  background-color: white;
}

.section-title {
  text-align: center;
  padding: 30px 0;
  position: relative;
}

.section-title h2, .section-title h3, .section-title h4,.section-title h1 {
  font-size: 32px;
  display: inline-block;
  border-bottom: 3px #ffb125 solid;
  /* text-shadow: -1px 1px 1px #00000073; */
  padding-bottom: 10px !important;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: #61aff6;
  position: relative;
  z-index: 2;
}

.section-title.bg-new h2, .section-title.bg-new h3, .section-title.bg-new h4,.section-title.bg-new h1 {
  font-size: 25px;
  padding: 10px 20px !important;
  border-radius: 20px;
  background: #ffbd00;
  color: #1f1f1f;
  border-bottom: 0;
}

.section-title.bg-new.new-blue h2, .section-title.bg-new.new-blue h3, .section-title.bg-new.new-blue h4,.section-title.bg-new.new-blue h1{
background:#61aff6;
}

.section-title span {
  position: absolute;
  top: 30px;
  color: #ffffff29;
  left: 0;
  right: 0;
  z-index: 1;
  font-weight: 700;
  font-size: 52px;
  text-transform: uppercase;
  line-height: 0;
}

.section-title p {
  margin-bottom: 0;
  position: relative;
  z-index: 2;
}

@media (max-width: 575px) {
  .section-title h2 {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .section-title span {
    font-size: 38px;
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 20px 0;
  border-bottom: 2px #cfcfcf solid;
  background-color: #f4f5f6;
  min-height: 40px;
  margin-top: 78px;
}

.mt-fix{
  margin-top:78px;
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 80px;
  }
  
  .mt-fix{
    margin-top:60px;
  }

  #footer .main-footer-links{
    text-align: center !important;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    margin-bottom: 20px !important;
    justify-content: space-evenly;
  }
  #footer .main-footer-links li{
    display: inline-block;
  }

  .footer-logo-h{
    margin-bottom: 25px;
    text-align: center !important;
  }
  .footer-logo-h img{
    width: 80%;
    height: auto;
  }
}

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


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

.breadcrumbs ol li+li {
  /* padding-right: 10px; */
  padding-left: 0px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  padding-left: 10px;
  color: #6c757d;
  content: "/";
}

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

  .breadcrumbs ol {
    display: block;
  }

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

/*--------------------------------------------------------------
# About Me
--------------------------------------------------------------*/
.about .content h3 {
  font-weight: 700;
  font-size: 26px;
  color: #3b434a;
  text-transform: uppercase;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  overflow: hidden;
  white-space: nowrap;
}

.about .content ul strong {
  margin-right: 10px;
}

.about .content ul i {
  font-size: 16px;
  margin-right: 5px;
  color: #ffb727;
  line-height: 0;
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .content .count-box {
  width: 100%;
}

.about .content .count-box i {
  display: block;
  font-size: 36px;
  color: #ffb727;
  float: left;
  line-height: 0;
}

.about .content .count-box span {
  font-size: 36px;
  line-height: 30px;
  display: block;
  font-weight: 700;
  color: #3b434a;
  margin-left: 50px;
}

.about .content .count-box p {
  padding: 15px 0 0 0;
  margin: 0 0 0 50px;
  font-family: "Raleway", sans-serif;
  font-size: 14px;
  color: #5d6a75;
}

.about .content .count-box a {
  font-weight: 600;
  display: block;
  margin-top: 20px;
  color: #5d6a75;
  font-size: 15px;
  font-family: "Satisfy", serif;
  transition: ease-in-out 0.3s;
}

.about .content .count-box a:hover {
  color: #82909c;
}

.about .image {
  width: 100%;
  object-fit: cover;
  min-height: 500px;
  max-height: 550px;
  background: radial-gradient(circle at 100% 100%, #cbcbcb 0, #cbcbcb 1px, transparent 1px) 0% 0% / 14px 14px no-repeat, radial-gradient(circle at 0 100%, #cbcbcb 0, #cbcbcb 1px, transparent 1px) 100% 0% / 14px 14px no-repeat, radial-gradient(circle at 100% 0, #cbcbcb 0, #cbcbcb 1px, transparent 1px) 0% 100% / 14px 14px no-repeat, radial-gradient(circle at 0 0, #cbcbcb 0, #cbcbcb 1px, transparent 1px) 100% 100% / 14px 14px no-repeat, linear-gradient(#cbcbcb, #cbcbcb) 50% 50% / calc(100% - 10px) calc(100% - 16px) no-repeat, linear-gradient(#cbcbcb, #cbcbcb) 50% 50% / calc(100% - 16px) calc(100% - 10px) no-repeat, radial-gradient(at 100% 100%, #ffb125 0%, transparent 70%), radial-gradient(at 100% 0%, #ffb125 0%, transparent 70%), radial-gradient(at 0% 0%, rgb(186 137 48) 0%, transparent 70%), #ffb125;
  border-top-right-radius: 10px;
  padding: 5px;
  box-sizing: border-box;
  border-top-left-radius: 10px;
}

.xg-border{
background: radial-gradient(circle at 100% 100%, #cbcbcb 0, #cbcbcb 1px, transparent 1px) 0% 0% / 14px 14px no-repeat, radial-gradient(circle at 0 100%, #cbcbcb 0, #cbcbcb 1px, transparent 1px) 100% 0% / 14px 14px no-repeat, radial-gradient(circle at 100% 0, #cbcbcb 0, #cbcbcb 1px, transparent 1px) 0% 100% / 14px 14px no-repeat, radial-gradient(circle at 0 0, #cbcbcb 0, #cbcbcb 1px, transparent 1px) 100% 100% / 14px 14px no-repeat, linear-gradient(#cbcbcb, #cbcbcb) 50% 50% / calc(100% - 10px) calc(100% - 16px) no-repeat, linear-gradient(#cbcbcb, #cbcbcb) 50% 50% / calc(100% - 16px) calc(100% - 10px) no-repeat, radial-gradient(at 100% 100%, #ffb125 0%, transparent 70%), radial-gradient(at 100% 0%, #ffb125 0%, transparent 70%), radial-gradient(at 0% 0%, rgb(186 137 48) 0%, transparent 70%), #ffb125;
  border-top-right-radius: 10px;
  padding: 5px;
  box-sizing: border-box;
  border-radius: 10px;
}

.about .skills-content {
  margin-top: 30px;
}

.about .skills-content .progress {
  height: 60px;
  display: block;
  background: none;
  border-radius: 0;
}

.about .skills-content .progress .skill {
  padding: 10px 0;
  margin: 0 0 6px 0;
  text-transform: uppercase;
  display: block;
  font-weight: 700;
  font-family: "Raleway", sans-serif;
  color: #3b434a;
}

.about .skills-content .progress .skill .val {
  float: right;
  font-style: normal;
}

.about .skills-content .progress-bar-wrap {
  background: #e6e8eb;
}

.about .skills-content .progress-bar {
  width: 1px;
  height: 10px;
  transition: 0.9s;
  background-color: #ffb727;
}

/*--------------------------------------------------------------
# My Resume
--------------------------------------------------------------*/
.resume .resume-title {
  font-size: 26px;
  font-weight: 700;
  margin-top: 20px;
  margin-bottom: 20px;
  color: #3b434a;
}

.resume .resume-item {
  padding: 0 0 20px 20px;
  margin-top: -2px;
  border-left: 2px solid #82909c;
  position: relative;
}

.resume .resume-item h4 {
  line-height: 18px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  color: #ffb727;
  margin-bottom: 10px;
}

.resume .resume-item h5 {
  font-size: 16px;
  background: #eef0f2;
  padding: 5px 15px;
  display: inline-block;
  font-weight: 600;
  margin-bottom: 10px;
}

.resume .resume-item ul {
  padding-left: 20px;
}

.resume .resume-item ul li {
  padding-bottom: 10px;
}

.resume .resume-item:last-child {
  padding-bottom: 0;
}

.resume .resume-item::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50px;
  left: -9px;
  top: 0;
  background: #fff;
  border: 2px solid #82909c;
}

/*--------------------------------------------------------------
# My Services
--------------------------------------------------------------*/
.services .icon-box {
  width:100%;
  padding: 15px;
  position: relative;
  overflow: hidden;
  background: #ffffff;
  box-shadow: -3px 3px 10px 0px rgb(0 0 0 / 20%);
  transition: all 0.3s ease-in-out;
  text-align: center;
  border-radius: 2px;
  border: 1px solid #c7c7c7;
  border-radius: 10px;
}

.services .icon {
  margin: 0 auto 6px auto;
  /* padding-top: 17px; */
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  background: #ffdfdf;
}

.services .icon i {
  font-size: 36px;
  line-height: 1;
  color: #ff0000;
}

.services .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 15px;
  margin-right: 15px;
  margin-left: 15px;
}

.services .title a {
  color: #463a3a;
  transition: 0.3s;
}

.services .description {
  font-size: 15px;
  line-height: 28px;
  margin-bottom: 0;
  margin-right: 15px;
  margin-left: 15px;
  display: none;
  color: #4a4a4a;
}

.services .icon-box:hover {
  border-color: #f3f3f3;
}

.services .icon-box:hover .title a {
  color: #111111;
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials {
  padding: 80px 0;
  background: url("../img/testimonials-bg.jpg") no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
}

.testimonials::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(14, 16, 17, 0.7);
}

.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(255, 255, 255, 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: #ddd;
  margin: 0 0 15px 0;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: rgba(255, 255, 255, 0.4);
  font-size: 26px;
}

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

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

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

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

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #ffb727;
}

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

/*--------------------------------------------------------------
# My Portfolio
--------------------------------------------------------------*/
.portfolio #portfolio-flters {
  list-style: none;
  margin-bottom: 20px;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  margin: 0 10px 10px 10px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  padding: 7px 10px;
  text-transform: uppercase;
  color: #444444;
  transition: all 0.3s ease-in-out;
  border: 2px solid #fff;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
  color: #f3a200;
  border-color: #ffb727;
}

.portfolio .portfolio-item {
  margin-bottom: 30px;
}

.portfolio .portfolio-item .portfolio-img {
  overflow: hidden;
}

.portfolio .portfolio-item .portfolio-img img {
  transition: all 0.8s ease-in-out;
}

.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  left: 15px;
  bottom: 0;
  z-index: 3;
  right: 15px;
  transition: all ease-in-out 0.3s;
  background: rgba(0, 0, 0, 0.5);
  padding: 10px 15px;
}

.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  color: #fff;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0px;
}

.portfolio .portfolio-item .portfolio-info p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  margin-bottom: 0;
}

.portfolio .portfolio-item .portfolio-info .preview-link,
.portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  right: 40px;
  font-size: 24px;
  top: calc(50% - 18px);
  color: #fff;
  transition: 0.3s;
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover,
.portfolio .portfolio-item .portfolio-info .details-link:hover {
  color: #ffc041;
}

.portfolio .portfolio-item .portfolio-info .details-link {
  right: 10px;
}

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

.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 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 #ffb727;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #ffb727;
}

.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(59, 67, 74, 0.08);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

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

/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing .box {
  padding: 20px;
  background: #fff;
  text-align: center;
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.12);
  border-radius: 5px;
  position: relative;
  overflow: hidden;
}

.pricing h3 {
  font-weight: 400;
  margin: -20px -20px 20px -20px;
  padding: 20px 15px;
  font-size: 16px;
  font-weight: 600;
  color: #777777;
  background: #f8f8f8;
}

.pricing h4 {
  font-size: 36px;
  color: #ffb727;
  font-weight: 600;
  font-family: "Open Sans", sans-serif;
  margin-bottom: 20px;
}

.pricing h4 sup {
  font-size: 20px;
  top: -12px;
  left: -3px;
}

.pricing h4 span {
  color: #bababa;
  font-size: 16px;
  font-weight: 300;
}

.pricing ul {
  padding: 0;
  list-style: none;
  color: #444444;
  text-align: center;
  line-height: 20px;
  font-size: 14px;
}

.pricing ul li {
  padding-bottom: 16px;
}

.pricing ul i {
  color: #ffb727;
  font-size: 18px;
  padding-right: 4px;
}

.pricing ul .na {
  color: #ccc;
  text-decoration: line-through;
}

.pricing .btn-wrap {
  margin: 20px -20px -20px -20px;
  padding: 20px 15px;
  background: #f8f8f8;
  text-align: center;
}

.pricing .btn-buy {
  background: #ffb727;
  display: inline-block;
  padding: 8px 35px;
  border-radius: 4px;
  color: #fff;
  transition: none;
  font-size: 14px;
  font-weight: 400;
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  transition: 0.3s;
}

.pricing .btn-buy:hover {
  background: #ffc85a;
}

.pricing .featured h3 {
  color: #fff;
  background: #ffb727;
}

.pricing .advanced {
  width: 200px;
  position: absolute;
  top: 18px;
  right: -68px;
  transform: rotate(45deg);
  z-index: 1;
  font-size: 14px;
  padding: 1px 0 3px 0;
  background: #ffb727;
  color: #fff;
}

/*--------------------------------------------------------------
# Contact Me
--------------------------------------------------------------*/
.contact .info-box {
  color: #444444;
  text-align: center;
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 20px 0 30px 0;
}

.contact .info-box i.bx {
  font-size: 24px;
  color: #ffb727;
  border-radius: 50%;
  padding: 15px;
  background: #fff6e4;
}

.contact .info-box h3 {
  font-size: 20px;
  color: #777777;
  font-weight: 700;
  margin: 10px 0;
}

.contact .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.contact .social-links {
  margin-top: 15px;
  display: flex;
  justify-content: center;
}

.contact .social-links a,.contact .social-links span.social-tag {
  font-size: 18px;
  display: inline-block;
  color: #687683;
  line-height: 1;
  margin: 0 8px;
  transition: 0.3s;
  padding: 8px;
  border-radius: 50px;
  border: 1px solid #dde1e4;
}

.contact .social-links a:hover,.contact .social-links span.social-tag:hover {
  color: #fff;
  border-color: #ffb727;
  background: #ffb727;
}

.contact .php-email-form {
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 27px;
}

.contact .php-email-form .validate {
  display: none;
  color: red;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br+br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-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;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}

.contact .php-email-form input::focus,
.contact .php-email-form textarea::focus {
  background-color: #ffb727;
}

.contact .php-email-form input {
  padding: 10px 15px;
}

.contact .php-email-form textarea {
  padding: 12px 15px;
}

.contact .php-email-form button[type=submit] {
  background: #ffb727;
  border: 0;
  padding: 10px 24px;
  color: #fff;
  transition: 0.4s;
  border-radius: 5px;
}

.contact .php-email-form button[type=submit]:hover {
  background: #ffc85a;
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer .top {
  color: #000;
  background: #f3f3f3;
  /* border-top: 5px #edebeb solid;
  border-bottom: 5px #edebeb solid; */
  font-size: 14px;
  text-align: center;
  padding: 80px 0;
  position: relative;
}

#footer .container {
  position: relative;
}

body:not(.ar) #footer h3 {
  margin: 0 0 15px 0;
}

#footer p {
  font-size: 13px;
  padding: 0;
  font-weight: 600;
  margin: 20px 0;
}


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

#footer .social-links a:hover {
  background: #f3a200;
  color: #fff;
  text-decoration: none;
}

#footer .copyright {
  margin: 0 0 5px 0;
}

#footer .credits {
  font-size: 13px;
}


/*CUSTOM*/
.icon img {
  width: 80px;
  MAX-HEIGHT: 80PX;
  border-radius: 4px;
}

.profile .icon img{
  width: 100%;
  height: 180px;
  max-height: initial;
  background: #000;
  border-radius: 10px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  object-fit: scale-down;
}

.medical-verified .profile .icon img{
  background: #00a1e9;
}

.profile .icon{
  width: 100%;
  padding: 0;
  background: none;
  height: 180px;
  margin-bottom: 20px;
}

.icon-box.profile {
    background: #fff;
    width: 100%;
    padding: 0px 0px 15px 0px;
}

.category .icon {
  background: transparent;
}

.icon-box.profile {
    border-radius: 10px;
    color: #000;
}
.active>.page-link, .page-link.active {
  border-color: rgb(85 165 248);
  color: #fff;
  background-color: rgb(85 165 248);
}

.page-link {
  color: #000;
}

a.page-link:hover {
  color: red;
}

.profile-social {
  background: #55a5f8;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
}
.profile-social .profile .social-links{
  margin: 0;
  padding: 10px;
}

.profile-social .profile .social-links a,.profile-social .profile .social-links span.social-tag{
  color: #fff;
  border: 2px solid #fff;
}
.ar .about .content ul strong {
  margin-right: 0;
  margin-left: 10px;
}

.page-tags{
  margin:10px 0;
}

.page-tags a span{
  font-size: 15px;
  margin-inline-end: 5px;
  margin-bottom: 5px;
}
section.category a {
    color: #000;
}
section.category a p{
    font-weight:normal;
}

section#search{
  /* margin: 0px 60px; */
  margin-top: 80px;
  padding: 0;
  transition: inherit;
  box-shadow: -3px 3px 10px 0px rgb(0 0 0 / 20%);
  max-height: 160px;
  overflow: hidden;
  transition-duration: .3s,.3s;
}

.search-wrapper{
  background-color: #004482fa;
  padding-top: 50px;
  padding-bottom: 50px;
  /* border-radius: 30px; */
}
.search-btn {
    background: #ffb201;
    border-color: #000000;
    color: #1f1f1f;
    padding: 10px 30px;
}

.home-search-text{
  color: #fff;
  text-shadow: 1px 1px 1px #000;
}
.section-title h1.white,.section-title h2.white, .section-title h3.white, .section-title h4.white{
    display: inline-block;
    border-bottom: 3px #fff solid;
    text-shadow: 1px 1px 1px #00000073;
    padding-bottom: 5px !important;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: #fff;
    position: relative;
    z-index: 2;
}


.search-btn:hover,.search-btn:focus{
    background: #ffb201e8;
    border-color: #1f1f1f;
    color: #1f1f1f;
}

.section-title.main-title {
    margin-top: 80px;
}

.section-title.main-title h1 {
  font-size: 40px;
}

@media (max-width: 575px) {
  section#search{
    margin: 0px 10px;
    margin-top:90px;
  }

  
}

@media screen and ( max-width: 767px ){
  li.page-item {
    display: none;
  }

  section#search{
    max-height: 100px;
  }

  .page-item:first-child,
  .page-item:nth-child( 2 ),
  .page-item:nth-last-child( 2 ),
  .page-item:last-child,
  .page-item.active,
  .page-item.disabled {

    display: block;
  }

  #search{
    margin-top: 130px;
  }
  #search  .section-title{
    padding-bottom: 0;
  }

  #search  .section-title h1{
    font-size: 24px;
  }

  #search  .home-search-text{
    font-size: 18px;
  }

  #search .search-wrapper{
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .search-page .section-title h4{
    font-size: 20px;
  }
  #search .search-btn{
    padding: 7px 15px;
  }
}

.special{
  border-radius: 50%;
  width: 28px;
  border: 3px #e7a60f solid;
}

.ar .questions .accordion-button::after{
  margin-left: inherit;
}
.questions .accordion-button:not(.collapsed) {
  color: #fff;
  background-color: #3476b2;
}

.questions .accordion-body{
  color: #585858;
  font-family: "Cairo", sans-serif;
}

.questions .accordion-button{
  color: #fff;
  background-color: #61aff6;
}

.h-tag{
  display: none;
}

.content iframe {
  max-width: 100%;
  min-height: 300px;
  max-height: 450px;
}

@media (max-width: 360px) {
  .contact .social-links a, .contact .social-links span.social-tag{
    padding: 7px;
  }
}

#footer .bottom {
    color: #1f1f1f;
    background: #61aff6;
    font-size: 14px;
    text-align: center;
    padding: 20px 0;
}

#footer .bottom a {
    color: white;
}

#footer .bottom a:hover {
    color: #ffb727;
}
.ar .page-item:last-child .page-link {border-top-right-radius: 0;  border-bottom-right-radius: 0;}


.join-us{
  background: #ffbd00;
}

.join-us .footer-cta{
  background: #ffbd00;
  color: #1f1f1f;
  /* margin: 30px; */
  border-radius: 0.25rem;
  padding: 30px 20px 0 20px;
}

.join-us p {
  font-size: 18px;
  font-weight: 700;
}

.join-us-img{
  margin-bottom: -31px;
}

#footer h3 {
  color: #61aff6;
  text-align: start;
}

#footer .top ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: start;
}

#footer .top ul li a {
  color: #646464;
}

#footer .top ul li a.no-icon-link{
  padding-bottom: 5px;
  display: inline-block;
  margin-bottom: 5px;
  border-bottom: 3px #61aff6 solid;
  letter-spacing: 1px;
}

#footer .top ul li {
  margin-top: 6px;
}
#footer .footer-link-icon{
  object-fit: cover;
  margin-inline-end:10px;
  border-radius:50%;
  width: 30px;
  height: 30px;
  border: 3px #61aff6  solid;
}

.btn.btn-mc{
  color: #fff;
  background-color: #61aff6;
  border-color: #477eb1;
}

.btn-mc:hover {
  color: #fff;
  background-color: #477eb1;
  border-color: #2f506e;
}

.join-form-container .form-control{
  background: #efefef;
}

.help-block{
  color: red;
}

.form-group.has-error{
  margin-bottom: 0 !important;
}
.form-group .has-error .form-control{
  border-color: red;
}

.map-image-wrapper{
  background: #000;
  border-radius: 10px;
  overflow: hidden;
  margin-top: 30px;
}

.map-image-wrapper img{
  width: 100%;
  height: 350px;
  opacity: .6;
  object-fit: cover;
}

.icon-box.category .description {
  display: none;
}

.profile .title {
  font-size: 18px;
}

.contact-profile{
  color: #fff;
  display: block;
  font-size: 18px;
  font-weight: bold;
  /* margin: 5px 15px 5px 15px; */
  padding: 5px 15px 5px 10px;
  border-bottom: 1px #fff solid;
  padding-bottom: 5px;
}

.profile-content-heading{
  display: inline-block;
  font-size: 15px;
  padding: 5px 10px;
  border-radius: 15px;
  background: #ffbd00;
  color: #fff;
  margin-bottom: 10px;
}
.divider {
  border: 0;
  border-top: 1px solid #ddd;
  margin: 1px 0;
}
.rating-box {
  border-right: 1px solid white;
}
.stars {
  font-size: 20px;
  color: #ffc107;
}
body.ar .rating-box {
  border-right: none;
  border-left: 1px solid white; 
}
.location {
  font-size: 14px;
  color: #666;
  margin-top: 6px;
  padding: 0px 10px;
  text-align: start;
  margin-bottom: 0;
}

.location b{
  color: #1f1f1f;
}

.location .review-count{
  color:#fff;
}

.profile .box-head .icon,.profile .box-head .location {display: inline-block;height: auto;width: auto;vertical-align: middle;margin-bottom: 0;}

.profile .box-head .icon img {
    border-radius: 50%;
    width: 100px;
    height: 100px;
}

.profile .box-head .title {
    display: inline-block;
    margin-left: 0;
    margin-right: 5px;
}

.profile .box-head {
    padding: 10px;
    text-align: start;
    background: #1E3A8A;
    color: #fff;
}

.reservation-days{
  margin:auto 10px;
}

.reservation-days .badge{
  min-width: 60px;
}

.reservation-days .badge.bg-primary {
  background: #1E3A8A !important;
}

.profile .box-head .name-box{
  vertical-align: middle;
}

.profile .box-head  .speciality-text{
  padding: 0 5px;
}

.profile-box{
  font-weight: bold;
}

.profile-box a{
  color: inherit;
}

.profile-box a.text-primary{
  text-decoration:underline;
}

.btn-reserve{
  font-weight: bold;
}

.btn-reserve:active,.btn-reserve:focus,.btn-reserve:hover{
  /* background: #ffb727; */
  color: #fff !important;
}

@media (max-width: 575px) {
  .box-head{
    text-align: center !important;
  }
  .box-head .icon,.box-head .location,.profile .box-head .title {
    display: inline-block !important;
    width: 100%;
    text-align: center;
    margin-bottom: 0px;
  }
  .box-head .icon{
    height: auto;
    margin-bottom: 5px;
  }

  
  
}