/*---------bounce right icon css---------*/

.icon-bar-footer {
  padding: 10px;
    position: fixed;
    top: 70%;
    transform: translateY(-50%);
    z-index: 99999999;
    right: 0;
}

.icon-bar-footer a {
    display: block;
    text-align: center;
    padding: 8px 1px 0px 10px;
    transition: all 0.3s ease;
    color: white;
    font-size: 20px;
}

.order {
   padding: 15px;
    text-align: center;
    /*opacity: 1;*/
    background: #ff3000;
    color: #fff;
    border-radius: 50%;
    animation: bounce 2s infinite alternate;
}

.whatsapp_footer {
    padding: 15px;
    text-align: center;
    opacity: 1;
    background: green;
    color: #fff;
    border-radius: 50%;
}

.footer_facebook {
    background: #3B5998;
    padding: 15px;
    text-align: center;
    opacity: 1;
    color: #fff;
    border-radius: 50%;
}

/*---------bounce right icon css---------*/


/*----------back-to-top-----------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background: #428bca;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}
.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}
.back-to-top:hover {
  background: #629fd3;
  color: #fff;
}
.back-to-top.top_active {
  text-decoration: none;
  visibility: visible;
  opacity: 1;
}
/*----------back-to-top-----------*/



#topbar {
  background: #fff;
  border-bottom: 1px solid #eee;
  font-size: 15px;
  height: 40px;
  padding: 0;
}
#topbar .contact-info a {
  line-height: 0;
  color: #444;
  transition: 0.3s;
}
#topbar .contact-info a:hover {
  color: #428bca;
}
#topbar .contact-info i {
  color: #428bca;
  line-height: 0;
  margin-right: 5px;
}
#topbar .contact-info .phone-icon {
  margin-left: 15px;
}
#topbar .social-links a {
  color: #5c768d;
  padding: 4px 12px;
  display: inline-block;
  line-height: 1px;
  transition: 0.3s;
}
#topbar .social-links a:hover {
  color: #428bca;
}

/*------------------------------*/

/*Card hover animation */

.custom_con {
  position: relative;
  
}

.middle {
  transition: .5s ease;
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  text-align: center;
}

.image {
  opacity: 1;
  display: block;
  width: 100%;
  height: auto;
  transition: .5s ease;
  backface-visibility: hidden;
}

.custom_con:hover .image {
  opacity: 0.3;
}

.custom_con:hover .middle {
  opacity: 1;
}
.text {

  /*background-color: #04AA6D;*/
  color: white;
  font-size: 16px;
  /*padding: 16px 32px;*/
}

/*Card hover animation */

.bg_color{
  background: #428bca;
}
.text_color{
  color: #428bca;
}


/*------Card hover zoom-------*/

.zoom {
  
  background-color: green;
  transition: transform .8s;
  /*width: 200px;*/
  /*height: 200px;*/
  margin: 0 auto;
}

.zoom:hover {
  transform: scale(1.1);
  cursor: pointer;
}

/*------Card hover zoom-------*/



/*--------------------------*/
.custom_p{
  padding: 40px;
}
/*--------------------------*/





/*---------------------*/
    .slider{
  max-width: 1100px;
  display: flex;
}
.slider .card{
  flex: 1;
  margin: 0 10px;
  background: #fff;
}
.slider .card .img{
  height: 400px;
  width: 100%;
}
.slider .card .img img{
  height: 80%;
  width: 80%;
}
.slider .card .content{
  padding: 10px 20px;
}

.card .content p{
  text-align: justify;
  margin: 10px 0;
}

/*---------------------*/

.anmtn img:hover{
    border: 4px solid #bba99d !important;
    }
/*--------------------*/




/*---------sidebar form------------*/

.sidebar-contact{
  position:fixed;
  top:50%;
  left:-350px;
  transform:translateY(-50%);
  width:350px;
  height:auto;
  padding:40px;
  background:#ededed;
  box-shadow: 0 10px 20px rgba(0,0,0,.5);
  box-sizing:border-box;
  transition:0.5s;
  z-index: 9999;
}
.sidebar-contact.active{
  left:0;
}
.sidebar-contact input,
.sidebar-contact textarea{
  width:100%;
  height:36px;
  padding:5px;
  margin-bottom:10px;
  box-sizing:border-box;
  border:1px solid rgba(0,0,0,.5);
  outline:none;
}
.sidebar-contact h2{
  margin:0 0 20px;
  padding:0;
}
.sidebar-contact textarea{
  height:60px;
  resize:none;
}
.sidebar-contact input[type="submit"]{
  /*background:black;*/
  background: #428bca;;
  color:#fff;
  cursor:pointer;
  border:none;
  font-size:18px;
}
.toggle{
  position:absolute;
  height:48px;
  width:48px;
    align:center;
  cursor:pointer;
  /*background: #4e5051;*/
  background: #428bca;
  top:350px;
  right:-48px;
  line-height:48px;
}
.toggle:before{
  content:'\f003';
  font-family:fontAwesome;
  font-size:18px;
  color:#fff;
  margin-left: 11px;
}
.toggle.active:before{
  content:'\f00d';
  margin-left: 15px;
}
@media(max-width:768px)
{
  .sidebar-contact{
    width:100%;
    height:100%;
    left:-100%;
  }
  .sidebar-contact .toggle{
    top:50%;
    transform:translateY(-50%);
    transition:0.5s;
  }
  .sidebar-contact.active .toggle
  {
    top:0;
    right:0;
    transform:translateY(0);
  }
  .scroll{
    width:100%;
    height:100%;
    overflow-y:auto;
  }
  .content{
    padding:50px 50px;
  }
}

/*---------sidebar form------------*/


/*-----------------crousal---------------------*/
@media(min-width:768px)
  {
   .carousel-caption {
        left: 50%;
      top: 55%;
      transform: translate(-50%, -50%);
  } 
  }

  .ombre-externe {
      background-color: white;
      padding: 1rem;
      -moz-box-shadow: 20px 20px 36px rgba(0,0,0,0.2);
      -webkit-box-shadow: 20px 20px 36px rgba(0,0,0,0.2);
      box-shadow: 20px 20px 36px rgba(0,0,0,0.2);
  }

  .ombre-interne {
      padding: 5vw;
      background-color: white;
      -webkit-box-shadow: inset 8px 0px 14px -1px rgba(0,0,0,0.4);
      -moz-box-shadow: inset 8px 0px 14px -1px rgba(0,0,0,0.4);
      box-shadow: inset 8px 0px 14px -1px rgba(0,0,0,0.4);
  }