/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  background: linear-gradient(45deg, #3f403f, #3f403f, #747574, #3f403f);
  color: #fff;
}

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

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

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #1e1e1e;
}

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

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

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

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

@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;
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
  border: 2px solid #cda45e;
}

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

.back-to-top:hover {
  background: #cda45e;
  color: #1a1814;
}

.back-to-top:hover i {
  color: #444444;
}

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

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
  height: 40px;
  font-size: 14px;
  transition: all 0.5s;
  z-index: 996;
}

#topbar.topbar-scrolled {
  top: -40px;
}

#topbar .contact-info i {
  font-style: normal;
  color: #fff;
  font-weight: 500;
}

#topbar .photoAlb i {
  font-style: normal;
  color: #000000;
  font-weight: 500;
}

#topbar .contact-info i span {
  padding-left: 5px;
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.80px;
}

#topbar .photoAlb i span {
  padding-left: 5px;
  color: #000000;
  font-weight: 500;
  letter-spacing: 0.80px;
}

#topbar .photoAlb i {
  padding-left: 5px;
  color: #000000;
  font-weight: 500;
  letter-spacing: 0.80px;
}

#topbar .photoAlb i span {
  padding-left: 5px;
  color: #000000;
  font-weight: 500;
  letter-spacing: 0.80px;
}

#topbar .contact-info i a {
  padding-left: 5px;
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.80px;
}

#topbar .photoAlb i a {
  padding-left: 5px;
  color: #000000;
  font-weight: 500;
  letter-spacing: 0.80px;
}

#topbar .languages ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  color: #cda45e;
}

#topbar .languages ul a {
  color: white;
}

#topbar .languages ul li+li {
  padding-left: 10px;
}

#topbar .languages ul li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: rgba(255, 255, 255, 0.5);
  content: "/";
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: linear-gradient(#E8D2DC, #FFFCF3, #FFFCF3, #FFFCF3, #FFFCF3, #FFFCF3, #FFFCF3, #E8D2DC);
  border-bottom: 1px solid rgba(80, 2, 2, 0.6);
  transition: all 0.5s;
  z-index: 997;
  padding: 15px 0;
  top: 40px;
}

#header.header-scrolled {
  top: 0;
  background: linear-gradient(#E8D2DC, #FFFCF3, #FFFCF3, #FFFCF3, #FFFCF3, #FFFCF3, #FFFCF3, #E8D2DC);
  border-bottom: 1px solid #000000;
}

#header .logo {
  font-size: 28px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 300;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
}

#header .logo a {
  color: #fff;
  font-weight: 400;
}

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

/*--------------------------------------------------------------
# Book a table button Menu
--------------------------------------------------------------*/
.book-a-table-btn {
  margin: 0 0 0 15px;
  border: 2px solid #cda45e;
  color: #fff;
  border-radius: 50px;
  padding: 8px 25px;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  transition: 0.3s;
}

.book-a-table-btn:hover {
  background: #cda45e;
  color: #fff;
}

@media (max-width: 992px) {
  .book-a-table-btn {
    margin: 0 15px 0 0;
    padding: 8px 20px;
  }
}

/*--------------------------------------------------------------
# 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 0 10px 30px;
  color: #BA7896;
  font-weight: 500;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 16px;
}

.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: #000000;
  font-weight: 600;
  font-size: 18px;
}

.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: linear-gradient(45deg, rgba(248,242,245), rgba(248,242,245), rgba(248,242,245), #FFFCF3, rgba(248,242,245), rgba(248,242,245), rgba(248,242,245));
  border-radius: 20px 50px;
  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;
  color: #151515;
  font-weight: 400;
}

.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: #84213C;
  font-weight: 500;
}

.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: #84213C;
  font-size: 28px;
  font-weight: 500;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
	background: url("../../assets/img/magasin_lingerie_pontivy_anik'boutique.png") top center;
  }
}

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

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 18px;
  font-weight: 700;
  color: #E8D2DC;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #fff;
  font-weight: 700;
}

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

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

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
	  width: 100%;
	  height: 100vh;
	  background: url("../img/magasin_lingerie_pontivy_anikboutique.png") top center;
	  background-size: cover;
	  position: relative;
	  padding: 0;
	}
	
@media (max-width: 912px) {
	#hero {
	  width: 100%;
	  height: 100vh;
	  background: url("../img/magasin_lingerie_pontivy_anik'boutique.png") top center;
	  background-size: cover;
	  position: relative;
	  padding: 0;
	}
}

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

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

@media (max-width: 992px) {
  #hero .container {
    padding-top: 48px;
  }
}

#hero h1 {
  margin: 0;
  text-align:center;
  font-size: 50px;
  font-weight: 700;
  line-height: 56px;
  color: #fff;
  text-shadow:2px 2px 2px #000;
  font-family: "Calisto MT", sans-serif;
}

#hero h2 {
  margin: 0;
  text-align:center;
  font-size: 40px;
  font-weight: 600;
  line-height: 56px;
  color: #fff;
  text-shadow:2px 2px 2px #000;
  font-family: "Calisto MT", sans-serif;
}

#hero h3 {
  margin: 0;
  text-align:center;
  font-size: 40px;
  font-weight: 600;
  line-height: 56px;
  color: #FFFCF3;
  text-shadow: #6B1B30 20px 0 10px;
  font-family: "Calisto MT", sans-serif;
}

#hero h1 span {
  color: #8f4368;
}

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

@media (max-height: 500px) {
  #hero {
    height: auto;
  }
  #hero .container {
    padding-top: 130px;
    padding-bottom: 60px;
  }
}

@media (max-width: 992px) {
  #hero h1 {
    font-size: 30px;
    line-height: 36px;
  }
  
  #hero h2 {
    font-size: 24px;
    line-height: 36px;
  }
  
  #hero h3 {
    font-size: 26px;
    line-height: 36px;
  }
}

#hero .btn-get-started {
    font-size: 50px;
    display: inline-block;
    padding: 10px 0;
    border-radius: 50px;
    transition: 0.3s ease-in-out;
    margin: 50px;
    width: 70px;
    height: 70px;
    text-align: center;
    border: 5px solid #fff;
	color: #ff0000;
}

#hero .btn-get-started:hover {
    padding-top: 8px;
    background: rgba(0, 0, 0, 0.5);
}

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

.section-bg {
  background-color: #4ECA5A;
}

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

.section-title h2 {
  font-size: 38px;
  margin-bottom: 15px;
  padding-bottom: 0;
  text-shadow: -1px 2px 2px #fff;
  color:#000;
  font-weight:600;
}

.section-title p {
	text-align:center;
	margin-bottom: 0;
	color:#84213C;
	font-weight:600;
	padding: 2px 5px;
	/*border: solid #000;*/
	background: #E8D2DC;
  border-radius: 15px 150px;
	/*background: linear-gradient(#535457, #535457, #67686C, #898A8C, #898A8C, #9FA0A1, #9FA0A1, #898A8C, #898A8C, #67686C, #535457, #535457);*/
}

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

.section-title-service h2 {
	font-size: 38px;
	margin-bottom: 15px;
	padding-bottom: 0;
	text-shadow: -1px 2px 2px #fff;
	color:#5ad450;
	font-weight:600;
}

.section-title-service p {
	text-align:center;
	margin-bottom: 0;
	color:#84213C;
	font-weight:600;
	padding: 2px 5px;
	/*border: solid #000;*/
	background: #E8D2DC;
	border-radius: 15px 150px;
}

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

.section-title-contact h2 {
	font-size: 38px;
	margin-bottom: 15px;
	padding-bottom: 0;
	text-shadow: -1px 2px 2px #fff;
	color:#5ad450;
	font-weight:600;
}

.section-title-contact p {
	text-align:center;
	margin-bottom: 0;
	color:#84213C;
	font-weight:600;
	padding: 2px 5px;
	/*border: solid #000;*/
	background: #E8D2DC;
	border-radius: 15px 150px;
}

/*--------------------------------------------------------------
# Presentation Section
--------------------------------------------------------------*/
#portfolio .title-b {
	padding: 100px;font-size: 28px;
	margin-bottom: 15px;
	padding-bottom: 0;
	text-shadow: -1px 2px 2px #fff;
	color:#000000;
	font-weight:600;
}

#portfolio .subtitle-a {
  padding-bottom: 40px;
  text-decoration: none;
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
  text-decoration: underline;
  /*padding-bottom: 10px;*/
  color: #E57D0B;
  text-shadow: 2px 1px 1px #000000;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: #1d1b16;
  margin-top: 110px;
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 98px;
  }
}

.breadcrumbs h2 {
  font-size: 26px;
  font-weight: 300;
}

.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: #37332a;
  content: "/";
}

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

  .breadcrumbs ol {
    display: block;
  }

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

/*--------------------------------------------------------------
# About Us
--------------------------------------------------------------*/
#about{
	background: url('../img/présentationlingeriefine.png');
	background-size:cover;
	background-position:center;
}

#about .container {
	background: linear-gradient(45deg, rgba(248,242,245,0.9), rgba(248,242,245,0.9), rgba(248,242,245,0.9), #FFFCF3, rgba(248,242,245,0.9), rgba(248,242,245,0.9), rgba(248,242,245,0.9));
	padding-top:20px;
	padding-bottom:20px;
	box-shadow: 0px 2px 55px rgba(132, 33, 60, 0.8);
}

.about h2 {
	font-size: 28px;
}

/*.about .image {
	padding: 20px;
	box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.8);
	background: url('../img/boutiquelingerie.png');
	background-size:cover;
	background-position:center;
}*/

.about .content h3 {
  font-weight: 600;
  font-size: 26px;
}

.imgAbout img {
	height: 300px;
	width: 690px;
}

/*.about .content img {
	padding:20px;
	box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.8);
	background: url('../img/plaque-metallique-structuremetal.png');
	background-size:cover;
	background-position:center;
}*/

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

.about .content ul li {
  padding-bottom: 10px;
  display: flex;
  align-items: flex-start;
}

.about .content ul i {
  font-size: 24px;
  padding: 2px 6px 0 0;
  color: #4ECA5A;
}

.about .content p {
  padding: 10px;
  line-height: 20px;
  margin-bottom: 20px;
  color:#000;
  font-weight:600;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
#services{
	background: url('../img/noel_cadeaux_lingerie_femme_salon_magasin_ lengerie_pontivy.png');
	background-size:cover;
	background-position:center;
}

#services h2 {
	font-size: 28px;
	color: #000000;
	font-weight: none;
}

.services .container {
	background: linear-gradient(45deg, rgba(248,242,245,0.8), rgba(248,242,245,0.8), rgba(248,242,245,0.8), #FFFCF3, rgba(248,242,245,0.8), rgba(248,242,245,0.8), rgba(248,242,245,0.8));
	background-size:cover;
	background-position:center;
	padding-top:20px;
	padding-bottom:20px;
	box-shadow: 10px 5px 5px 10px rgba(132, 33, 60, 0.4);
}

.services .icon-box h4 {
  font-size: 18px;
  font-weight: 600;
  color:#000;
  text-align:center;
  padding:5px 15px 5px 15px;
  border: solid #000;
  border-width:2px;
  background-color:#fff;
}

.services .icon-box p {
  font-size: 16px;
  color: #000;
  font-weight: 600;
}

.imgServices img {
	height: 500px;
	width: 750px;
}

.services img {
	border: solid #000;
	border-width:2px;
}

@media (max-width: 580px) {
  .imgServices img {
    height: 350px;
	width: 520px;
  }
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio {
	background: url('../img/couleurbandeau.png');
}

.portfolio p {
    margin: 15px 0 30px 10px;
    line-height: 20px;
	font-weight: 500;
    color: #000000;
	/*text-justify: auto;*/
}

.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 auto 25px auto;
  list-style: none;
  text-align: center;
  border-radius: 50px;
}

.img img {
	width: 500px;
	height: 400px;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  margin: 0 3px 10px 3px;
  transition: all ease-in-out 0.3s;
  background: #2F8A11;
  border-radius: 64px 25px;
}

.portfolio #portfolio-flters li:hover, .portfolio #portfolio-flters li.filter-active {
  color: #fff;
  font-weight: 700;
  background: #000000;
}

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

.portfolio .portfolio-item {
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 60px;
}

.portfolio .portfolio-item img {
  position: relative;
  top: 0;
  transition: all 0.6s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  left: 15px;
  right: 15px;
  bottom: -50px;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  background: linear-gradient(135deg, #84213C, #E8D2DC, #F8F2F5, #000000, #000000);
  padding: 15px 20px;
}

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

.portfolio .portfolio-item .portfolio-info p {
  color: #fff;
  font-size: 14px;
  margin-bottom: 0;
}

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

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

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

.portfolio .portfolio-item:hover img {
  top: -30px;
}

.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
  bottom: 0;
}

/*--------------------------------------------------------------
# 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 #ff4a17;
}

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

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

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
#contact{
	background: url('../img/anikboutique-lingerie-body-pontivy.png');
	background-size:cover;
	background-position:center;
}

.contact .container {
	box-shadow: 10px 5px 5px 10px rgba(132, 33, 60, 0.4);
	background: linear-gradient(45deg, rgba(248,242,245,0.9), rgba(248,242,245,0.9), rgba(248,242,245,0.9), #FFFCF3, rgba(248,242,245,0.9), rgba(248,242,245,0.9), rgba(248,242,245,0.9));
	background-size:cover;
	background-position:center;
	padding-top:20px;
	padding-bottom:20px;
}

#contact h2 {
	font-size: 28px;
	color: #000000;
	font-weight: none;
}

.contact .info {
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(248,242,245), rgba(248,242,245), rgba(248,242,245), #FFFCF3, rgba(248,242,245), rgba(248,242,245), rgba(248,242,245));
  padding: 20px;
  border-radius: 5px;
	border: solid #000;
  font-weight:600;
}

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

.contact .address i {
	color: #FAA610;
}

.contact .email i {
	color: #67686C;
}

.contact .phone i {
	color: #67686C;
}

.contact .facebook i {
	color: #0070C0;
}

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

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

.contact .info a {
  padding: 0 0 0 20px;
  margin-bottom: 0;
  font-size: 14px;
  color:#000;
}
.contact .info .facebook a {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #151515;
}
.contact .logo{
	margin-top:0;
	margin-bottom:40px;
  /*border: solid #000;*/
  border-width:2px;
  border-radius:20px;
}
.contact .info .email, .contact .info .phone, .contact .info .facebook {
  margin-top: 40px;
}

.contact .info .email i, .contact .info .address i, .contact .info .phone i, .contact .info .facebook i{
  border: solid #000;
  border-width:1px;
}

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

.contact .php-email-form {
  width: 100%;
  background: #fff;
  padding: 20px;
  border-radius: 5px;
	border: solid #000;
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.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;
  -webkit-animation: animate-loading 1s linear infinite;
  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 {
  height: 44px;
}

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

.contact .php-email-form button[type="submit"] {
  background: #BA7896;
  padding: 10px 24px;
  color: #fff;
  font-weight: 500;
  transition: 0.4s;
  border-radius: 4px;
	border: solid #000;
	border-width:2px;
}

.contact .php-email-form button[type="submit"]:hover {
  background: linear-gradient(#535457, #ECE3DA, #535457);
  color:#000000;
}

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

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

.contact img {
	height: 50px;
	width: 360px;
}

.map {
    height: 450px;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
footer {
    position: relative;
	text-align: center;
    color: #fff;
    padding: 30px;
    background: linear-gradient(90deg, #84213C, #F1E3E9, #000000, #000000, #000000, #000000, #000000, #000000, #000000, #F1E3E9, #84213C);
    font-weight: 600;
}

footer .container a {
    color: #9e8773;    
    font-weight: 600;
}

footer .cook h6 {
	color: #fff;
}

#footer color1 {
	color: #2863ed;
}

#footer color2 {
	color: #fff;
}

#footer color3 {
	color: #db1f28;
}

#footer color4 {
	color: #00B0F0;
}

#footer color5 {
	color: #FFC000;
}

/*.fdecran {
	background: #b7c793;
}*/

.remix {
	background: #a1a39d;
}

.logImg img {
	height: 48px;
	width: 54px;
}

.texte h2 {
	font-size: 22px;
	color: #000000;
	text-decoration: underline;
}

.texte h5 {
	font-size: 18px;
	color: #000000;
	text-align: justify;
}

.btn-color {
	background: #BA7896;
	color: #fff;
	font-weight: 600;
}

.texte small {
	font-size: 16px;
	font-weight: 600;
	color: #000000;
}

footer .copyright {
    margin-bottom: .3rem;
}

footer .credits {
    margin-bottom: 0;
}

footer .credits a {
    color: #fff;
}

.card-body h2{
	color:#000000;
	font-size:20px;
}

.card-body h5{
	color:#000000;
	font-size:14px;
}

#video-full { 
    position: fixed;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -1000;
    transform: translateX(-50%) translateY(-50%);
  background-size: cover;
  transition: 1s opacity;
}