/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  color: #000000;
}

a {
  color: #FFD408;
  text-decoration: none;
}

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

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

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #000000;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #FFD408;
  border-top-color: white;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

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

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

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

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

.back-to-top:hover {
  background: #FFD408;
  color: #000000;
}

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

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: rgba(0, 0, 0, 0.70);
  transition: all 0.5s;
  z-index: 997;
  position: relative;
  height: 75px;
}

@media (max-width: 992px) {
  #header {
    height: 70px;
  }
}

#header.fixed-top,
#header.header-inner-pages {
  background: rgba(21, 5, 23, 1);
}

#header.fixed-top {
  position: fixed;
}

#header .logo {
  font-size: 30px;
  margin: 0 0 0 40px;
  padding: 0;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

#header .logo a {
  color: #fff;
}

#header .logo img {
  max-height: 40px;
}

.scrolled-offset {
  margin-top: 70px;
}
@media (max-width: 425px) {
  #header .logo {
    margin-top: -11px;
    margin-left: 10px;
  }
}
@media (max-width: 768px) {
  #header .logo {
    margin-top: -11px;
    margin-left: 10px;
  }
}
@media (max-width: 991px) {
  .scrolled-offset {
    margin-top: 60px;
  }
}

/* Countdown */
#main .countdown {
  margin-bottom: 80px;
}

#main .countdown div {
  text-align: center;
  border: 5px solid rgba(0, 0, 0, 0.8);
  border-radius: 8px;
  margin: 100px 10px;
  width: 100px;
  padding: 15px 0;
}

#main .countdown div h3 {
  font-weight: 700;
  font-size: 32px;
  margin-bottom: 15px;
}

#main .countdown div h4 {
  font-size: 16px;
  font-weight: 600;
}

@media (max-width: 768px) {
  #main .countdown div {
    width: 150px;
    padding: 10px 0;
    margin: 50px 8px;
  }

  #main .countdown div h3 {
    font-size: 28px;
    margin-bottom: 10px;
  }

  #main .countdown div h4 {
    font-size: 14px;
    font-weight: 500;
  }
}

/*--------------------------------------------------------------
# Header Social Links
--------------------------------------------------------------*/
.header-social-links {
  padding-left: 20px;
}

.header-social-links a {
  color: rgba(255, 255, 255, 0.6);
  margin-left: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  font-size: 20px;
}

.header-social-links a:last-child {
  margin-right: 15px;
}

.header-social-links a i {
  line-height: 0;
}

.header-social-links a:hover {
  color: #fff;
}

/*--------------------------------------------------------------
# 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>ul>li {
  white-space: nowrap;
  padding: 10px 12px;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3px;
  font-size: 15px;
  font-weight: 600;
  white-space: nowrap;
  transition: 0.3s;
  color: white;
  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: -7px;
  left: 0;
  background-color: #FFD408;
  visibility: hidden;
  width: 0px;
  transition: all 0.3s ease-in-out 0s;
}

.navbar a:hover:before,
.navbar li:hover>a:before,
.navbar .active:before {
  visibility: visible;
  width: 100%;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #fff;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 12px;
  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;
}

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

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  text-transform: none;
  font-weight: 500;
  color: #150517;
}

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

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

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 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;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #150517;
}

.navbar-mobile>ul>li {
  padding: 0;
}

.navbar-mobile a:hover:before,
.navbar-mobile li:hover>a:before,
.navbar-mobile .active:before {
  visibility: hidden;
}

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

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

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

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

@media (max-width: 992px) {
  #hero {
    margin-bottom: -60px;
  }
}

#hero:before {
  content: "";
  /*background: rgba(21, 5, 23, 0.5) linear-gradient(rgba(26, 0, 33, 0.5) 0%, rgba(26, 0, 33, 0.5) 5%, rgba(38, 6, 51, 0.5) 40%, rgba(147, 47, 69, 0.7) 76%, rgba(236, 97, 93, 0.7) 94%, rgba(236, 97, 93, 0.5) 100%) repeat scroll 0% 0%;*/
  background-color: #FFF; /*Backgroudn header color*/
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

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

.hero-container {
  background-image: url(../img/title-img.png);
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-color: ghostwhite;
 }
 
#hero h1 {
  margin: 0;
  font-size: 64px;
  font-weight: 700;
  line-height: 56px;
  text-transform: uppercase;
  color: #000000;
}

#hero h2 {
  color: #50575d;
  margin: 15px 0;
  font-size: 24px;
}

span.Title_Style_2{
  font-family: "fantasy";
  text-decoration: underline;
}

/*--------------------------------------------------------------
# + - Separateur des options 
--------------------------------------------------------------*/
.opt:before{
  content: "+";
  font-size: 35px;
  font-weight: bolder;
  color: #000000;
  position: absolute;
  top: 35%;
  left: -20px;    
}
.opt:nth-first-child(-n + 3):before {
  content: "";
}

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

@media (max-width: 768px) {
  #hero h1 {
    font-size: 30px;
    line-height: 36px;
  }

  #hero h2 {
    font-size: 18px;
    line-height: 24px;
  }
}

@media (max-width: 425px) {
  .add-on:after{
    display: none;
  }

  .add-on:last-child::after {
    display: none;
  }  
}

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

.section-bg {
  /*background-color: #fafafa;*/
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: #FFD408;
  bottom: 0;
  left: calc(50% - 25px);
}

.section-title p {
  margin-bottom: 0;
  color: #919191;
  font-size: 14px;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .content h3 {
  font-weight: 600;
  font-size: 26px;
}

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

.about .content ul li {
  padding-left: 28px;
  position: relative;
}

.about .content ul li+li {
  margin-top: 10px;
}

.about .content ul i {
  font-size: 20px;
  color: #ffd408;
  line-height: 1;
}

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

.about .content .btn-learn-more {
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 5px;
  transition: 0.3s;
  line-height: 1;
  color: #ff7f5d;
  animation-delay: 0.8s;
  margin-top: 6px;
  border: 2px solid #ff7f5d;
}

.about .content .btn-learn-more:hover {
  background: #ff7f5d;
  color: #fff;
  text-decoration: none;
}

.alignBloc{
  display: ruby !important;
}

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

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

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
  color: #ff7f5d;
}

.portfolio #portfolio-flters li.filter-active::before,
.portfolio #portfolio-flters li.filter-active::after {
  color: #ff7f5d;
}

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

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

.portfolio .portfolio-item .portfolio-img img {
  transition: all 0.5s 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: white;
  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: #ff7f5d;
}

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

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

.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(21, 5, 23, 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;
}

/*--------------------------------------------------------------
# Options
--------------------------------------------------------------*/
.Options .member {
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
}

.Options .member .member-img {
  position: relative;
  overflow: hidden;
}

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

.Options .member .member-info {
  padding: 25px 15px;
}

.Options .member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
  color: #150517;
}

.Options .member .member-info span {
  display: block;
  font-size: 15px;
  font-weight: 400;
  color: #aaaaaa;
}

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

a.title_link {
  font-size: 25px;
  color: #000000;
}

.Options .member .member-info-alt {
  padding: 25px 15px;
  background-color: #000000;
}

.Options .member .member-info-alt h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
}

.Options .member .member-info-alt span {
  display: block;
  font-size: 15px;
  font-weight: 400;
  color: #ffffff;
}

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

a.title_link-alt {
  font-size: 25px;
  color: #ffffff;
}


/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
  width: 100%;
  background: #fff;
}

.contact .info i {
  font-size: 20px;
  color: #ff7f5d;
  float: left;
  width: 44px;
  height: 44px;
  background: #fff8f6;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}

.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #150517;
}

.contact .info p {
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-size: 14px;
  color: #62176b;
}

.contact .info .email,
.contact .info .phone {
  margin-top: 40px;
}

.contact .info .email:hover i,
.contact .info .address:hover i,
.contact .info .phone:hover i {
  background: #ff7f5d;
  color: #fff;
}

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

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

input#con_submit.nok {
    color: white;
    background-color: red;
}

input#con_submit.ok {
    color: white;
    background-color: green;
    border-color: green;
}

.form-control.invalid {
    box-shadow: 0 0 10px 4px #ff0000;
}

.form-control.ok {
    box-shadow: 0 0 10px 4px #008000;
}

.contact-form .btn.btn-primary {
    margin-top: 15px;
}

.contact-form .btn.btn-primary {
    padding-right: 35px;
}

.btn-primary {
    color: #000000;
    background-color: #FFD408;
    border-color: #FFD408;
}

.btn.btn-primary {
    color: #000000;
    text-transform: uppercase;
    font-size: 14px;
    text-align: center;
    border-color: #FFD408;
    background-color: #FFD408;
    padding-top: 10px;
    padding-bottom: 15px;
    padding-left: 35px;
    padding-right: 60px;
    position: relative;
}

.btn-primary:hover {
    color: #000000;
    border-color: #FFD408;
    background-color: #FFD408;
}
.pull-right {
    float: right;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: #fafafa;
  min-height: 40px;
}

.breadcrumbs h2 {
  font-size: 28px;
  font-weight: 500;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 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: #3b0e41;
  content: "/";
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  color: #fff;
  font-size: 14px;
  position: relative;
}

#footer::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: #000000;
  z-index: 1;
}

#footer .footer-bottom {
  border-top: 1px solid #3b0e41;
  z-index: 2;
  position: relative;
  padding-top: 40px;
  padding-bottom: 40px;
}

#footer .copyright {
  float: left;
}

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

@media (max-width: 768px) {

  #footer .copyright,
  #footer .credits {
    float: none;
    text-align: center;
  }

  #footer .credits {
    padding-top: 5px;
  }
}


/*--------------------------------------------------------------
# Detail Pages
--------------------------------------------------------------*/
.extra-margin-all {
  margin-left: 35px;
  margin-right: 35px;
  overflow: hidden;
}

.inner-spacer {
  position: relative;
  padding: 0 15px;
  margin: 0;
  overflow: hidden;
}

.section-subheading-wrapper-all {
  position: relative;
  margin: -4px 0 -6px 0;
}

h2.section-subheading {
  position: relative;
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: normal;
  color: #111;
}
.section-subheading {
  margin: 0 auto -6px auto;
}

h2.section-subheading span {
  position: relative;
  display: inline-block;
  padding-right: 0;
  line-height: 1;
}

h2.section-subheading::after {
  content: "";
  position: absolute;
  width: 25px;
  height: 1px;
  top: 50%;
  left: 100%;
  background-color: #111;
  margin-left: 25px;
}

.divider-s {
  height: 25px;
}

.divider-m {
height: 25px;
}

.divider-l {
  height: 100px;
}

.divider-s, .divider-m, .divider-l {
  position: relative;
  width: 100%;
  margin: 0 auto;
  background: none;
  z-index: -1;
}

.post-title {
  position: relative;
  top: 0;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  text-align: left;
  letter-spacing: -0.04em;
  color: #111;
  line-height: 1;
  font-size: 48px;
  margin: -5px 0 0 0;
  z-index: 10;
}

p {
  text-align: left;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #5f5f5f;
  line-height: 2;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

span.link-effect, .link-effect-2, .link-effect-3 {
  position: relative;
  display: inline-block;
  text-decoration: none;
  color: inherit;
  font-weight: bold;
}

span.link-effect::after{
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 1px;
  left: 0;
  bottom: 0;
  padding: 0;
  background-color: #5f5f5f;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -ms-transform-origin: left center;
  transform-origin: left center;
  -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  -moz-transition: -moz-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  -ms-transition: -ms-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: -o-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.link-effect-2:hover{
  color: #5f5f5f;
}

.link-effect-2:hover::after{
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 1px;
  left: 0;
  bottom: 0;
  padding: 0;
  background-color: #5f5f5f;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -ms-transform-origin: left center;
  transform-origin: left center;
  -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  -moz-transition: -moz-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  -ms-transition: -ms-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: -o-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);  
}
.visible-mobile-devices, .visible-mobile-devices-xs {
  display: none;
  visibility: hidden;
}

/*--------------------------------------------------------------
# Detail Pages - Picture
--------------------------------------------------------------*/
.item-about-01 {
  background-image: url(../img/services/service-2.jpg);
}

.item-about-02 {
  background-image: url(../img/services/service-3.jpg);
}

.item-about-03 {
  background-image: url(../img/services/service-4.jpg);
}

.item-about-04 {
  background-image: url(../img/services/service-5.jpg);
}

.circle-wrapper-full {
  position: relative;
  display: block;
  overflow: hidden;
  width: 100%;
  padding-bottom: 100%;
  height: auto;
  left: 0;
  right: 0;
  margin-left: auto; 
  margin-right: auto;
  z-index: 0;
}

.circle-wrapper-full .carousel-item-all {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-border-radius: 50%;
     -moz-border-radius: 50%;
      -ms-border-radius: 50%;
       -o-border-radius: 50%;
          border-radius: 50%;
  z-index: 0;
}

.circle-wrapper-full .carousel-item-all {
  position: absolute;
  width: -webkit-calc(100% - 40px);
  width: -moz-calc(100% - 40px);
  width: calc(100% - 40px);
  height: -webkit-calc(100% - 40px);
  height: -moz-calc(100% - 40px);
  height: calc(100% - 40px);
  top: 20px;
  right: 20px;
  bottom: 20px;
  left: 20px;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  background-repeat: no-repeat;
  background-position: center center;
      -webkit-background-size: cover;
         -moz-background-size: cover;
          -ms-background-size: cover;
           -o-background-size: cover;
              background-size: cover;
}

@media only screen and (max-width: 768px) {
  .circle-wrapper-full .carousel-item-all {
    width: -webkit-calc(100% - 20px);
    width: -moz-calc(100% - 20px);
    width: calc(100% - 20px);
    height: -webkit-calc(100% - 20px);
    height: -moz-calc(100% - 20px);
    height: calc(100% - 20px);
    top: 10px;
    right: 10px;
    bottom: 10px;
    left: 10px;
  }
}

.gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: -moz-linear-gradient(bottom, rgba(0, 0, 0, .25) 0%, rgba(0, 0, 0, .1) 100%);
  background: -webkit-linear-gradient(bottom, rgba(0, 0, 0, .25) 0%, rgba(0, 0, 0, .1) 100%);
  background: linear-gradient(to top, rgba(0, 0, 0, .25) 0%, rgba(0, 0, 0, .1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#a6000000', endColorstr='#00000000', GradientType=0);
  -webkit-pointer-events: none;
  -moz-pointer-events: none;
  pointer-events: none;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  z-index: 0;
}

.circle-spinner {
  position: absolute;
  width: 100%!important;
  height: 100%;
  left: 0; 
  right: 0; 
  margin-left: auto; 
  margin-right: auto; 
  margin: 0 auto;
  text-align: center;
  background: none;
  -webkit-pointer-events: none;
     -moz-pointer-events: none;
          pointer-events: none;
  z-index: 10;
}

.circle-spinner-inner {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  background-clip: content-box;
  -webkit-animation: spin 150s linear infinite;
     -moz-animation: spin 150s linear infinite;
      -ms-animation: spin 150s linear infinite;
       -o-animation: spin 150s linear infinite;
          animation: spin 150s linear infinite;
  -webkit-border-radius: 50%;
     -moz-border-radius: 50%;
      -ms-border-radius: 50%;
       -o-border-radius: 50%;
          border-radius: 50%;   
  border: 3px dashed #5f5f5f;
}

@-webkit-keyframes spin {
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes spin {
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}


/*--------------------------------------------------------------
# Detail Pages - Songs
--------------------------------------------------------------*/
.album_playlist_single {
    padding: 10px 0;
    border-bottom: 1px solid #efefef
}

.album_playlist_single:last-child {
    border-bottom: 0
}

.album_playlist_single .audio-play-btn {
    display: inline-block;
    margin: 0 20px
}

.album_playlist_single .playlist_actions {
    float: right;
    display: inline-block;
    margin: 17px 0
}

.album_playlist_title {
    display: inline-block
}

.album_playlist_title p {
    line-height: 1
}

.album_playlist_title span {
    margin-top: 7px;
    display: block
}

.playlist_btn {
    font-size: 20px;
    padding: 10px 8px;
    color: #ccc
}

.album_playlist_single .audio-play-btn {
    display: inline-block;
    margin: 0 20px 0 0;
}
.audio-play-btn {
    font-weight: 100;
    text-align: left;
}

.audio-play-btn a {
    color: #a89fb1;
    text-decoration: none;
}

[class^=flaticon-]:before, [class*=" flaticon-"]:before, [class^=flaticon-]:after, [class*=" flaticon-"]:after {
    font-family: Flaticon;
    font-size: 50px;
    font-style: normal;
    margin-left: 20px;
}


/*--------------------------------------------------------------
# Detail Pages - AUDIO PLAYER
--------------------------------------------------------------*/
.audio-player {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  -webkit-transition: 3s all ease;
  -o-transition: 3s all ease;
  transition: 3s all ease; }
  .audio-player a,
  .audio-player a:hover {
    text-decoration: none; }
  .audio-player.is_hidden {
    top: 100%; }
    .audio-player.is_hidden .hide_player {
      bottom: 100%; }
  .audio-player:hover .hide_player {
    bottom: 100%; }

.hide_player {
  position: absolute;
  bottom: -25px;
  right: 0;
  background: #333;
  color: #CCC;
  padding: 6px 10px;
  line-height: 1;
  display: inline-block;
  text-transform: uppercase;
  font-size: 12px;
  -webkit-transition: 0.3s all ease;
  -o-transition: 0.3s all ease;
  transition: 0.3s all ease; }
  .hide_player:hover {
    color: #FFF; }
  .hide_player:active, .hide_player:focus {
    color: #CCC; }

.touchevents .hide_player {
  bottom: 100% !important; }

.no-flexbox .audio-player {
  display: none; }

.flex-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center; }

.jp-controls.flex-item {
  -ms-flex-preferred-size: 150px;
  flex-basis: 150px; }

.jp-progress-container.flex-item {
  -ms-flex-preferred-size: 350px;
  flex-basis: 350px;
  -webkit-box-flex: 2;
  -ms-flex-positive: 2;
  flex-grow: 2;
  -ms-flex-negative: 2;
  flex-shrink: 2; }

.jp-now-playing.flex-item {
  -ms-flex-preferred-size: 145px;
  flex-basis: 145px; }

.jp-toggles.flex-item {
  -ms-flex-preferred-size: 130px;
  flex-basis: 130px; }

.jp-volume-controls.flex-item {
  -ms-flex-preferred-size: 155px;
  flex-basis: 155px; }

.jp-audio,
.jp-audio-stream,
.jp-video {
  background: rgba(0, 0, 0, 0.95);
  padding: 15px;
  position: relative; }

/*Controls*/
.jp-playlist {
  display: none; }

.jp-interface .jp-controls button,
.jp-interface .jp-toggles button,
.jp-interface .jp-volume-controls button {
  background: none;
  border: none;
  outline: none;
  color: #7b7c8b;
  line-height: 24px;
  font-weight: 600;
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0;
  -webkit-transition-property: all;
  -webkit-transition-duration: 0.2s;
  -webkit-transition-timing-function: ease-in-out;
  -o-transition-property: all;
  transition-property: all;
  -o-transition-duration: 0.2s;
  transition-duration: 0.2s;
  -o-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
  font-size: 20px;
  padding: 0 5px; }

.jp-interface .jp-controls .jp-play i,
.jp-interface .jp-controls .jp-previous i,
.jp-interface .jp-controls .jp-next i {
  font-size: 23px;
  color: #FFF; }

.jp-interface .jp-controls .jp-play {
  border: solid 3px #FFF;
  border-radius: 50%;
  width: 52px;
  height: 52px;
  margin: 0 10px; }

.jp-interface .jp-controls .jp-play i {
  padding-left: 5px;
  padding-top: 5px; }

.jp-audio.jp-state-playing .jp-play i {
  padding-left: 0px; }

.jp-audio.jp-state-playing .jp-play i:before {
  content: "\f04c" !important; }

/*Progress bars*/
.jp-progress-container,
.jp-volume-bar-container {
  height: 30px;
  padding: 10px; }

.jp-progress,
.jp-seek-bar,
.jp-play-bar,
.jp-volume-bar,
.jp-volume-bar-value {
  height: 8px;
  -webkit-border-radius: 1px;
  -moz-border-radius: 1px;
  border-radius: 1px; }

.jp-progress {
  margin: 0 50px;
  background-color: #2b2b2b;
  border-radius: 5px; }

.jp-seek-bar,
.jp-volume-bar {
  cursor: pointer;
  background-color: #2b2b2b;
  border-radius: 5px; }

.jp-play-bar {
  float: left;
  position: relative;
  background-color: #00c85f;
  border-radius: 5px;
  overflow: visible !important; }

.jp-volume-bar-value {
  float: left;
  position: relative;
  background-color: #aaaaaa; }

.jp-progress .bullet,
.jp-volume-bar .bullet {
  position: absolute;
  content: "";
  top: -5px;
  right: -7px;
  height: 18px;
  width: 18px;
  background: #ffffff;
  border-radius: 50%; }

.jp-time-holder {
  position: relative;
  top: 0;
  color: #979797;
  font-size: 12px; }

.jp-time-holder .jp-current-time {
  position: absolute;
  left: 0;
  top: -3px; }

.jp-time-holder .jp-duration {
  position: absolute;
  right: 0;
  top: -3px; }

/* Track & Artist */
.jp-now-playing {
  padding: 0 10px; }

.jp-track-name {
  color: #c9c9c9;
  font-size: 16px;
  overflow: hidden;
  white-space: nowrap;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  max-width: 145px; }

.jp-artist-name {
  color: #6d6d6d;
  font-size: 14px;
  overflow: hidden;
  white-space: nowrap;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  max-width: 140px; }

/* Toggles */
.jp-toggles button {
  margin: 0 3px; }

.jp-toggles button:hover {
  color: #FFF; }

.jp-state-looped .jp-toggles .jp-repeat,
.jp-state-shuffled .jp-toggles .jp-shuffle,
.jp-interface .jp-toggles .playlist-is-visible.jp-show-playlist {
  color: #00c85f; }

/* Volume Controls */
.jp-volume-controls button {
  float: left; }

.jp-volume-controls .jp-volume-bar {
  margin-left: 40px;
  margin-top: 8px; }

.jp-state-muted .jp-mute i:before {
  content: "\f026" !important; }

.jp-volume-bar,
.jp-volume-bar-value {
  border-radius: 5px; }

.jp-state-no-volume .jp-volume-controls {
  display: none; }

/* Playlist  */
.jp-playlist {
  position: absolute;
  right: 65px;
  bottom: 100%;
  background: rgba(0, 0, 0, 0.8);
  padding: 20px 25px;
  width: 400px; }

.jp-playlist ul {
  padding: 0;
  margin: 0;
  max-height: 200px;
  overflow: auto; }

.jp-playlist li {
  list-style: none; }

.jp-playlist li a {
  color: #c9c9c9;
  display: block;
  padding: 10px 0;
  outline: none;
  border-bottom: 1px solid #1F1F1F; }

.jp-playlist li:last-child a {
  border-bottom: 0; }

.jp-playlist li a:hover,
.jp-playlist li a:focus,
.jp-playlist li a:active {
  color: #00c85f;
  text-decoration: none; }

.jp-playlist li a span {
  color: #6d6d6d; }

/* ==================== Media Query ==================== */
@media (max-width: 992px) {
  .jp-now-playing {
    display: none; } }

@media (max-width: 767px) {
  .jp-volume-bar,
  .jp-volume-bar .bullet,
  .jp-time-holder {
    display: none !important; }
  .jp-progress-container.flex-item {
    -ms-flex-preferred-size: 140px;
    flex-basis: 140px;
    padding: 12px 15px; }
  .jp-progress .bullet {
    right: -10px; }
  .jp-volume-controls.flex-item {
    -ms-flex-preferred-size: 33px;
    flex-basis: 33px; }
  .jp-progress {
    margin: 0; }
  .jp-interface .jp-controls .jp-play {
    margin: 0 3px; }
  .jp-interface .jp-controls .jp-play i,
  .jp-interface .jp-controls .jp-previous i,
  .jp-interface .jp-controls .jp-next i {
    font-size: 16px; }
  .jp-interface .jp-controls .jp-play {
    width: 42px;
    height: 42px; }
  .jp-interface .jp-controls .jp-play i {
    padding-left: 3px;
    padding-top: 0; }
  .jp-state-playing .jp-interface .jp-controls .jp-play i {
    padding-left: 0; }
  .jp-controls.flex-item {
    -ms-flex-preferred-size: 100px;
    flex-basis: 100px; } }

@media (max-width: 480px) {
  .jp-toggles,
  .jp-playlist {
    display: none !important; }
}

/*--------------------------------------------------------------
# Detail Pages - VIDEO PLAYER
--------------------------------------------------------------*/
.video-play-btn {
    position: absolute;
    top: 35%;
    left: 35%;
    color: #ffffff;
}

.mt-ol {
  margin-top: 6.2rem !important;
}

.lead2 {
    font-size: 1rem;
    font-weight: 300;
}
.subTitle {
  font-style: normal;
  font-weight: bold;
}