
body {
  background: #240f02;
  font-family: "Raleway", lucida console, arial, "Open Sans", sans-serif;
}

a {
  color: #f2f4f8;
  transition: 0.5s;
}

a:hover,
a:active,
a:focus {
  color: #bf1a06;
  outline: none;
  text-decoration: none;
}

p {
  padding: 0;
  margin: 0 0 30px 0;
  color: #f2f4f8;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Raleway", sans-serif;
  font-weight: 400;
  margin: 0 0 20px 0;
  padding: 0;
  color: #f2f4f8; 
}

.main-page {
  margin-top: 140px;
}


/* Prelaoder 
--------------*/

#preloader {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 999;
  width: 100%;
  overflow: visible;
  background: #fff url("../img/preloader.svg") no-repeat center center;
}

/* Back to top button 
----------------------------*/

.back-to-top {
  position: fixed;
  display: none;
  background: #bf1a06;
  color: #f2f4f8;
  width: 40px;
  height: 40px;
  text-align: center;
  border-radius: 0px;
  right: 15px;
  bottom: 15px;
  transition: background 0.5s ease-in-out;
}

.back-to-top i {
  font-size: 24px;
  padding-top: 6px;
}

.back-to-top:focus {
  background: #bf1a06;
  color: #f2f4f8;
  outline: none;
}

.back-to-top:hover {
  background: #bf1a06;
  color: #f2f4f8;
}


/* Sections Header
--------------------------------*/

.section-header {
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 20px;
}

.section-header h2 {
  font-size: 32px;
  text-align: center;
  font-weight: 700;
  margin-bottom: 10px;
}

.section-header h3 {
  font-size: 24px;
  text-align: center;
  font-weight: 500;
  margin-bottom: 10px;
}

.section-header p {
  text-align: center;
  padding: 0;
  margin: 0;
  font-size: 18px;
  font-weight: 500;
  }


/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

#header {
  background: #190000;
  height: 120px;
  padding: 25px 0;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  transition: all 0.5s;
  z-index: 997;
}


#header #logo img {
  padding: 0;
  margin: 0;
  max-height: 90px;
}



/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/

/* Nav Menu Essentials */

.nav-menu,
.nav-menu  {
  margin: 0; 
  padding: 0; 
  list-style: none;
}

.nav-menu ul {
  position: absolute;
  display: none;
  top: 100%;
  left: 0;
  z-index: 99;
}

.nav-menu li {
  position: relative;
  white-space: nowrap;
}


.nav-menu > li {
  float: left;
}

.nav-menu li:hover > ul,
.nav-menu li.sfHover > ul {
  display: block;
  
}

.nav-menu ul ul {
  top: 0;
  left: 100%;
}

.nav-menu ul li {
  min-width: 180px;
}


.nav-menu a {
  padding: 10px; padding-top: 15px;
  text-decoration: none;
  display: inline-block;
  color: rgba(242, 244, 248, 0.7);
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 16px;
  outline: none;
}

.nav-menu .menu-active a,
.nav-menu a:hover {
  color: #f2f4f8; 
  
}

.nav-menu > li {
  margin-left: 28px;
}

.nav-menu > li > a:before {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #bf1a06 ; 
  visibility: hidden;
  transition: all 0.5s ease-in-out 0s;
}

.nav-menu a:hover:before,
.nav-menu li:hover > a:before {
  visibility: visible;
  width: 100%; 
  
}

.nav-menu ul {
  margin: 4px 0 0 0;
  padding: 10px;
  box-shadow: 0px 0px 30px ;
  background: #f2f4f8;
  border-radius: 3px;
}

.nav-menu ul li {
  transition: 0.3s;
}

.nav-menu ul li a {
  padding: 10px;
  color:  #190000;
  transition: 0.3s;
  display: block;
  font-size: 13px;
  text-transform: none;
  border-radius: 3px;
}

.nav-menu ul li:hover > a {
  background: #bf1a06;
  color: #f2f4f8;
}

.nav-menu ul ul {
  margin: 0;
}

/* Dropdown Nav Toggle */



li.dropdown {
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background: #190000;
  padding-left: 0px;

}

.dropdown-content a {
  padding: 10px;
  text-decoration: none;
  display: inline-block;
  color: rgba(242, 244, 248, 0.7);
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 16px;
  outline: none;
  margin-left: 10px;
  
  
}
.dropdown-content a:hover{
color: #bf1a06;

}
	
.dropdown:hover .dropdown-content {
  display: block;
  
}

.nav-menu .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #240f02;
  color: #eee;
  line-height: 1;
  padding: 8px; 
  margin-right: 4px; margin-top: 7px;
  border-radius: 0%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  margin-left: 28px
}

.nav-menu .social-links a:hover {
  background: #bf1a06;
  color: #f2f4f8;
  

}



/* Mobile Nav Toggle */

#mobile-nav-toggle {
  position: fixed;
  right: 0;
  top: 0;
  z-index: 999;
  margin: 15px 15px 0 0;
  border: 0;
  background: none;
  font-size: 24px;
  display:none; 
  transition: all 0.4s;
  outline: none;
  cursor: pointer;
}

#mobile-nav-toggle i {
  color: #f2f4f8;
}

/* Mobile Nav Styling */

#mobile-nav {
  position: fixed;
  top: 0;
  padding-top: 18px;
  bottom: 0;
  z-index: 998;
  background: rgba(22, 0, 0, 0.7);
  left: -260px;
  width: 260px;
  overflow-y: auto;
  transition: 0.4s;
}

#mobile-nav ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

#mobile-nav ul li {
  position: relative;
}

#mobile-nav ul li a {
  color: #f2f4f8;
  font-size: 17px;
  overflow: hidden;
  padding: 10px 22px 10px 15px;
  position: relative;
  text-decoration: none;
  width: 100%;
  display: block;
  outline: none;
}

  
#mobile-nav ul li a:hover {
  color: #bf1a06;
}

#mobile-nav ul li li {
  padding-left: 30px;
}

#mobile-nav .dropdown-content {
  display: none;
}

#mobile-nav ul .menu-has-children i {
  position: absolute;
  right: 0;
  z-index: 99;
  padding: 15px;
  cursor: pointer;
  color: #f2f4f8;
}

#mobile-nav ul .menu-has-children i.fa-chevron-up {
  color: #bf1a06;
}

#mobile-nav ul .menu-item-active {
  color: #bf1a06;
  
}

#mobile-body-overly {
  width: 100%;
  height: 100%;
  z-index: 997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(22, 0, 0, 0.7);
  display: none;
}

/* Mobile Nav body classes */


body.mobile-nav-active {
  overflow: hidden;
}

body.mobile-nav-active #mobile-nav {
  left: 0;
}

body.mobile-nav-active #mobile-nav-toggle {
  color: #f2f4f8;
}



/*--------------------------------------------------------------
# Intro Section
--------------------------------------------------------------*/

#intro {
  width: 100%;
  background-size: cover;
  overflow: hidden;
  position: relative;
}

#intro:before {
  content: "";
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}


/*--------------------------------------------------------------
# Products Section
--------------------------------------------------------------*/

#products {
  padding: 20px 0 30px 0;
}

#products .products {
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
  margin: 20px; 
 }

#products .products .details {
  background:  rgba(22, 0, 0, 0.7); 
  position: absolute;
  left: 0;
  bottom: -10px;
  right: 0;
  text-align: center;
  
  transition: all 300ms cubic-bezier(0.6, 0.05, 0.5, 1);
}

#products .products .details h3 {
  color: #f2f4f8;
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 5px;
}
#products .products .details h4 {
  color: #f2f4f8;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 5px;
}

#products .products .details p {
  color: #c51b07;
  font-size: 22px;
  margin-bottom: 10px;font-weight: 500;
  }

#products .products .details h5 {
  color: #f2f4f8;
  font-size: 18px;
  margin-bottom: 10px;font-weight: 500;
  text-decoration:line-through;
  }

#products .products .details a {
  color: #f2f4f8;
}

#products .products .details a:hover {
  color: #c51b07;
}


#products .products:hover .details {
  bottom: 0;
}

/*bouton Prix dans product */

#products .price  {
  color: #f2f4f8;
  text-align: center;font-weight: 500;font-size: 18px;
  }


#products .price a {
  background: #bf1a06;
  border:0px solid #f2f4f8; 
  line-height: 1;
  border-radius: 20px;
  padding: 10px 15px;
  }

#products .price a:hover,
  a:active,
  a:focus {
  color:#f2f4f8;
  }

#products .price h5 {
  color: #f2f4f8;
  font-size: 18px;
  margin-bottom: 10px;font-weight: 500;
  text-decoration:line-through;
  }

/*bouton BUY dans product */


#products .buy  {
	text-align: center;
	color: #f2f4f8;
	font-weight: 500;font-size: 16px;
	margin-bottom: 50px;
	
}
#products .buy a {
  background: none;
  color: #f2f4f8;
  border:1px solid #f2f4f8; 
  transition: all ease-in-out 0.3s;
  margin-top: 2px;
  line-height: 1;
  font-weight: 500;
  border-radius: 5px;
  padding: 10px 10px;
  
}

#products .buy a:hover {
  background: #bf1a06;border:1px solid #bf1a06;
}

#products .buy:hover a:before,
#products .buy .menu-active a:before {
  visibility: hidden;
}


/*bouton BUY dans product detail */
/*

#products-details .buy  {
	text-align: center;
	color: #fff;
	font-weight: 500;font-size: 20px;
}
#products-details .buy a {
  
  background: none;
  color: #fff;
  border:2px solid #f82249; 
  transition: all ease-in-out 0.3s;
  margin-top: 2px;
  line-height: 1;
  font-weight: 600;
  border-radius: 4px;
  padding: 2px 10px;
}

#products-details .buy a:hover {
  background: #f82249;
}

#products-details .buy:hover a:before,
#products-details .buy .menu-active a:before {
  visibility: hidden;
}


/*photo product detail*/
/*
#products-details .head {
  padding: 60px;
  background: url(../img/subscribe-bg.jpg) center center no-repeat;
  background-size: cover;
  overflow: hidden;
  position: relative;
}

#products-details .head:before {
  content: "";
  background: rgba(6, 12, 34, 0.6);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}


#products-details {
  padding: 60px 0; 
}

#products-details .products-details {
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
}

#products-details .details h2 {
  color: #112363;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
}

#products-details .details .social {
  margin-bottom: 15px;
}

#products-details .details .social a {
  background: #e9edfb;
  color: #112363;
  line-height: 1;
  display: inline-block;
  text-align: center;
  border-radius: 4%;
  width: 36px;
  height: 36px;
  padding-top: 9px;
}

#products-details .details .social a:hover {
  background: #f82249;
  color: #fff;
}

#products-details .details .social a i {
  font-size: 18px;
}

#products-details .details p {
  color: #112363;
  font-size: 15px;
  margin-bottom: 10px;
}



/*--------------------------------------------------------------
# Feature Section
--------------------------------------------------------------*/

#feat {
  padding: 60px 0;
  
}



/*--------------------------------------------------------------
# Feature Details Section 
--------------------------------------------------------------*/
/
#featdetails {
  padding: 60px 0;
  
}

#feat #featdetails-list {
  padding: 6px;
  list-style: square;
  color:#f2f4f8;
}

#feat #featdetails-list a {
  padding: 18px 0;
  display: block;
  position: relative;
  font-family: "Raleway", sans-serif;
  font-size: 18px;
  font-weight: 600;
  padding-right: 20px;
}



/*--------------------------------------------------------------
# F.A.Q Section
--------------------------------------------------------------*/

#faq {
  padding: 60px 0;
  
}

#faq #faq-list {
  padding: 6px;
  list-style: none;
}

#faq #faq-list li {
  border-bottom: 1px solid #bf1a06;
}

#faq #faq-list a {
  padding: 18px 0;
  display: block;
  position: relative;
  font-family: "Raleway", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  padding-right: 20px;
}

#faq #faq-list i {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 16px;
}

#faq #faq-list p {
  margin-bottom: 20px;
}

#faq #faq-list a.collapse {
  color: #f82249;
}

#faq #faq-list a.collapsed {
  color: #fff;
}

#faq #faq-list a.collapsed i::before {
  content: "\f055" !important;
}


/*--------------------------------------------------------------
# Subscribe Section
--------------------------------------------------------------*/

/*
#subscribe {
  padding: 60px;
  background-size: auto;
  
  position: relative;
}

#subscribe:before {
  content: "";
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#subscribe .section-header h2,
#subscribe p {
  /*color: #fff;
}

#subscribe input {
  background: #f2f4f8;
  color: #bf1a06;
  border: 0;
  outline: none;
  margin: 0;
  padding: 9px 20px;
  border-radius: 0px;
  font-size: 14px;
}

#subscribe button {
  border: 0;
  padding: 9px 25px;
  cursor: pointer;
  background: #bf1a06;
  color: #f2f4f8;
  transition: all 0.3s ease;
  outline: none;
  font-size: 14px;
  border-radius: 0px;
}

#subscribe button:hover {
  background: #e0072f;
}

*/

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
/*
#contact {
  padding: 60px 0;
}

#contact .contact-info {
  margin-bottom: 20px;
  text-align: center;
}

#contact .contact-info i {
  font-size: 48px;
  display: inline-block;
  margin-bottom: 10px;
  color: #f82249;
}

#contact .contact-info address,
#contact .contact-info p {
  margin-bottom: 0;
  color: #112363;
}

#contact .contact-info h3 {
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: bold;
  color: #112363;
}

#contact .contact-info a {
  color: #4869df;
}

#contact .contact-info a:hover {
  color: #f82249;
}

#contact .contact-address,
#contact .contact-phone,
#contact .contact-email {
  margin-bottom: 20px;
}

#contact .form #sendmessage {
  color: #f82249;
  border: 1px solid #f82249;
  display: none;
  text-align: center;
  padding: 15px;
  font-weight: 600;
  margin-bottom: 15px;
}

#contact .form #errormessage {
  color: red;
  display: none;
  border: 1px solid red;
  text-align: center;
  padding: 15px;
  font-weight: 600;
  margin-bottom: 15px;
}

#contact .form #sendmessage.show,
#contact .form #errormessage.show,
#contact .form .show {
  display: block;
}

#contact .form .validation {
  color: red;
  display: none;
  margin: 0 0 20px;
  font-weight: 400;
  font-size: 13px;
}

#contact .form input,
#contact .form textarea {
  padding: 10px 14px;
  border-radius: 0;
  box-shadow: none;
  font-size: 15px;
}

#contact .form button[type="submit"] {
  background: #f82249;
  border: 0;
  padding: 10px 40px;
  color: #fff;
  transition: 0.4s;
  border-radius: 10px;
  cursor: pointer;
}

#contact .form button[type="submit"]:hover {
  background: #e0072f;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

#footer {
  background: #190000;
  padding: 0 0 25px 0;
  color: #eee;
  font-size: 14px;
  
}

#footer .footer-top {
  padding: 60px 0 30px 0;
}

#footer .footer-top .footer-info {
  margin-bottom: 30px;
}

#footer .footer-top .footer-info img {
  
  margin-bottom: 10px;
}

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

#footer .footer-top .social-links a:hover {
  background: #bf1a06;
  color: #f2f4f8;
}

#footer .footer-top h4 {
  font-size: 14px;
  font-weight: bold;
  color: #f2f4f8;
  position: relative;
  padding-bottom: 12px;
  border-bottom: 1px solid #f2f4f8;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

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


#footer .copyright {
  text-align: center;
  padding-top: 30px;
}
#footer #logo img {
  padding: 0;
  margin: 0;
  max-height: 90px;
}


/*--------------------------------------------------------------
# Responsive Media Queries
--------------------------------------------------------------*/

@media (min-width: 767px) {
  #subscribe input {
    min-width: 400px;
  }
}

@media (min-width: 768px) {
  #contact .contact-address,
  #contact .contact-phone,
  #contact .contact-email {
    padding: 20px 0;
  }

  #contact .contact-phone {
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
  }
}

@media (min-width: 991px) {
  #schedule .sub-heading {
    width: 75%;
  }
}

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

  #about {
    background-attachment: fixed;
  }

  #subscribe {
    background-attachment: fixed;
  }
}

@media (max-width: 1199px) {
  #header .container {
    max-width: 100%;
  }

  .nav-menu a {
    padding: 8px 4px;
  }
}

@media (max-width: 991px) {
  #header {
    background: #190000;
    height: 120px;
    padding: 15px 0;
    transition: all 0.5s;
  }

  #nav-menu-container {
    display: none;
  }

  #mobile-nav-toggle {
    display: inline;
  }

  #intro .intro-container {
    top: 70px;
  }

  #intro h1 {
    font-size: 34px;
  }

  #intro p {
    font-size: 16px;
  }

  #schedule .nav-tabs a {
    padding: 8px 60px;
  }
}

@media (max-width: 768px) {
  .back-to-top {
    bottom: 15px;
  }

  #faq #faq-list a {
    font-size: 18px;
  }

  #faq #faq-list i {
    top: 13px;
  }
}

@media (max-width: 767px) {
  #schedule .nav-tabs a {
    padding: 8px 50px;
  }
}

@media (max-width: 574px) {
  #venue .venue-info h3 {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  #schedule .nav-tabs a {
    padding: 8px 30px;
  }
}

@media (max-width: 460px) {
  #subscribe button {
    margin-top: 10px;
  }
}
