/*------------------------------------------------------------------
Project:  Pato
Version:  
Last change:  
Assigned to:  Kevin Nguyen
Primary use:  Company
-------------------------------------------------------------------*/
/*------------------------------------------------------------------
[LAYOUT]

* body
  + Header / header
  + Page Content / .page-content .name-page
        + Section Layouts / section .name-section
        ...
  + Footer / footer

-------------------------------------------------------------------*/
/*------------------------------------------------------------------
[COLOR CODES]

# Text Color      :  
# Primary Color 01:  
# Primary Color 02:   
# Primary Color 03:  

------------------------------------------------------------------*/
/*------------------------------------------------------------------
[TYPOGRAPHY]

Body            : 16px/1.6 '', Arial, sans-serif;
Title           : 18px/1.6 '', Arial, sans-serif;
Paragrap        : 18px/1.6 '', Arial, sans-serif;
Input, textarea : 14px/1.6 '', Arial, sans-serif;
-------------------------------------------------------------------*/


@font-face {
  font-family: "Raleway";
  src: url('../fonts/Raleway-Thin.ttf') format('truetype');
  font-weight: 100;
  font-style: normal;
}
/* Raleway ExtraLight*/
@font-face {
  font-family: "Raleway";
  src: url('../fonts/Raleway-ExtraLight.ttf') format('truetype');
  font-weight: 200;
  font-style: normal;
}
/* Raleway Light*/
@font-face {
  font-family: "Raleway";
  src: url('../fonts/Raleway-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
}
/* Raleway Regular*/
@font-face {
  font-family: "Raleway";
  src: url('../fonts/Raleway-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}
/* Raleway Medium*/
@font-face {
  font-family: "Raleway";
  src: url('../fonts/Raleway-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
}
/* Raleway SemiBold*/
@font-face {
  font-family: "Raleway";
  src: url('../fonts/Raleway-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
}
/* Raleway Bold*/
@font-face {
  font-family: "Raleway";
  src: url('../fonts/Raleway-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}
/* Raleway ExtraBold*/
@font-face {
  font-family: "Raleway";
  src: url('../fonts/Raleway-ExtraBold.ttf') format('truetype');
  font-weight: 800;
  font-style: normal;
}
/* Raleway Heavy*/
@font-face {
  font-family: "Raleway";
  src: url('../fonts/Raleway-Heavy.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
}


@font-face {
  font-family: Poppins-Regular;
  src: url('../fonts/Poppins-Regular.ttf'); 
}

@font-face {
  font-family: Poppins-Medium;
  src: url('../fonts/Poppins-Medium.ttf'); 
}

@font-face {
  font-family: Poppins-Bold;
  src: url('../fonts/Poppins-Bold.ttf'); 
}

@font-face {
  font-family: Poppins-Light;
  src: url('../fonts/Poppins-Light.ttf'); 
}

@font-face {
  font-family: NotoSans-Regular;
  src: url('../fonts/NotoSans-Regular.ttf'); 
}


/*[ RESTYLE TAG ]
///////////////////////////////////////////////////////////
*/
* {
	margin: 0px; 
	padding: 0px; 
	box-sizing: border-box;
}

body, html {
	height: 100%;
	font-family: "Raleway", sans-serif;
  font-weight: 400;
}

/* ------------------------------------ */
a {
	font-family: "Raleway", sans-serif;
  font-weight: 400;
	font-size: 15px;
	line-height: 1.7;
	color: #666666;
	margin: 0px;
  text-decoration:none;
	transition: all 0.4s;
	-webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
}

a:focus {
	outline: none !important;
}

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

/* ------------------------------------ */
h2,h3,h4 {
	margin: 0px;
}

h5 {
  font-size:1.2rem;
  font-weight: 500;
  padding:15px 0 15px 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  word-spacing: 1px;
  line-height:2rem;
}

p {
	font-family: "Raleway", sans-serif;
  font-weight: 400;
	font-size: 15px;
	line-height: 1.7;
	color: #666666;
	margin: 0px;
}

ul, li {
	margin: 0px;
	list-style-type: none;
}


/* ------------------------------------ */
input {
	outline: none;
	border: none !important;
}

textarea {
  outline: none;
}

textarea:focus, input:focus {
  border-color: transparent !important;
  box-shadow: 0 0 0px 2px #5c1520;
  -moz-box-shadow: 0 0 0px 2px #5c1520;
  -webkit-box-shadow: 0 0 0px 2px #5c1520;
  -o-box-shadow: 0 0 0px 2px #5c1520;
  -ms-box-shadow: 0 0 0px 2px #5c1520;
}

input:focus::-webkit-input-placeholder { color:transparent; }
input:focus:-moz-placeholder { color:transparent; }
input:focus::-moz-placeholder { color:transparent; }
input:focus:-ms-input-placeholder { color:transparent; }

textarea:focus::-webkit-input-placeholder { color:transparent; }
textarea:focus:-moz-placeholder { color:transparent; }
textarea:focus::-moz-placeholder { color:transparent; }
textarea:focus:-ms-input-placeholder { color:transparent; }

input::-webkit-input-placeholder { color: #aaaaaa; }
input:-moz-placeholder { color: #aaaaaa; }
input::-moz-placeholder { color: #aaaaaa; }
input:-ms-input-placeholder { color: #aaaaaa; }

textarea::-webkit-input-placeholder { color: #aaaaaa; }
textarea:-moz-placeholder { color: #aaaaaa; }
textarea::-moz-placeholder { color: #aaaaaa; }
textarea:-ms-input-placeholder { color: #aaaaaa; }

/* ------------------------------------ */
button {
	outline: none !important;
	border: none;
	background: transparent;
}

button:hover {
	cursor: pointer;
}

iframe {
	border: none !important;
}

blockquote {
  margin:0 !important;
}


/* ------------------------------------ */

.container {
	max-width: 1200px;
}

.container-header-menu {
  max-width: 1400px !important;
}

.pointer {
  cursor: pointer;
}

.select_js{
  border: 1px solid #cfcabd !important;
  line-height: 26px;
  height:55px;
}
.select_js:focus{
  border-color: #767676 !important;
}

/*[ LOADDING ]
///////////////////////////////////////////////////////////
*/

.animsition-loading-1 {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.cp-spinner {
    width: 40px;
    height: 40px;
    display: inline-block;
    box-sizing: border-box;
    position: relative
}

.cp-meter {
    border-radius: 50%;
    border-top: solid 6px #000;
    border-right: solid 6px #000;
    border-bottom: solid 6px #000;
    border-left: solid 6px #000;
    width: 48px;
    height: 48px;
    display: inline-block;
    box-sizing: border-box
}

.cp-meter:before {
    border-radius: 3px;
    content: " ";
    width: 6px;
    height: 12px;
    display: inline-block;
    box-sizing: border-box;
    background-color: #000;
    position: absolute;
    top: 5px;
    left: 16px;
    transform-origin: center bottom;
    animation: cp-meter-animate-before 1s linear infinite
}

@keyframes cp-meter-animate-before {
    0% {
        transform: rotate(-45deg)
    }

    100% {
        transform: rotate(315deg)
    }
}

/*[ BACK TO TOP ]
///////////////////////////////////////////////////////////
*/
.btn-back-to-top {
  display: none;
  position: fixed;
  width: 40px;
  height: 40px;
  bottom: 20px;
  right: 20px;
  background-color: #1e0a0d;
  opacity: 0.5;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  border-radius: 4px;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
}

.symbol-btn-back-to-top {
  font-size: 22px;
  color: white;
  line-height: 1em;
}

.btn-back-to-top:hover {
  opacity: 1;
  cursor: pointer;
}

@media (max-width: 576px) {
  .btn-back-to-top {
    bottom: 15px;
    right: 15px;
  }
}
/*[ CONTACT RAPIDE ]
///////////////////////////////////////////////////////////
*/
.btn-contact-rapide {
  display: none;
  color:#fff;
  position: fixed;
  width: 40px;
  height: 40px;
  bottom: 20px;
  right: 70px;
  background-color: #5c1520;
  opacity: 0.8;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  border-radius: 4px;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
}

.symbol-btn-contact-rapide {
  font-size: 22px;
  color: white;
  line-height: 1em;
}

.btn-contact-rapide:hover {
  opacity: 1;
  cursor: pointer;
}

.btn-contact-rapide a {
  color:#fff;
 } 


/*[ Calendar ]
///////////////////////////////////////////////////////////
*/

input[type="date" i] {
  padding: 14px;
}
.daterangepicker {
    width: 339px;
    box-shadow: 0px 3px 25px rgba(0,0,0,0.1);
    border: none;
    margin-top: 10px;
}



/*[ Select2 ]
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>*/

/*[ width select ]
===========================================================*/

/*[ Select ]
===========================================================*/


/*[ in select ]
===========================================================*/


/*[ dropdown option ]
===========================================================*/



/*[ Header ]
///////////////////////////////////////////////////////////
*/

.wrap-menu-header {
  position: absolute;
  width: 100%;
  height: 120px;
  top: 0;
  left: 0;
  z-index: 100;
}

.wrap_header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  height: 100%;
  background-color: transparent;
  justify-content: space-between;
  align-items: center;
}

.header-fixed .wrap-menu-header {
  position: fixed;
  height: 100px;
  background: rgba(32,5,7,0.9);
  box-shadow: 0px 2px 5px rgba(0,0,0,0.1);
}

/*[ Logo ]
-----------------------------------------------------------
*/
.logo {
  height: 80px;
  padding-bottom:7px;
}

.logo > a{
  display: block;
  height: 100%;
}

.logo > a > img {
  width: auto;
  max-height: 100%;
  vertical-align: middle;
}


/*[ Menu ]
-----------------------------------------------------------
*/
.wrap_menu {
  height: 100%;
}

.menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.main_menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
}

.main_menu li {
  display: block;
  position: relative;
}

.main_menu > li {
  padding-top: 10px;  
  padding-bottom: 10px; 
  margin-left: 6px;
  margin-right: 6px;
}

.main_menu > li > a {
  font-family: "Raleway", sans-serif;
  font-weight: 400;
  font-size: 14px;
  text-transform: uppercase;
  color: white;
  padding: 15px;
}

.header-fixed .main_menu > li > a {
  color: #bcbcb4;
}

.main_menu > li:hover > a {
  color: #ffffff;
  text-decoration: none;
}

/* ------------------------------------ */


/*[ Social ]
-----------------------------------------------------------
*/
.social a {
  font-size: 15px;
  color: white;
}

.header-fixed .social a {
  color: #bcbcb4;
}

.social a:hover {
  color: #ffffff;
}

.btn-show-sidebar {
  width: 26px;
  height: 15px;
  border-top: 2px solid white;
  border-bottom: 2px solid white;
  display:none;
}
@media (max-width: 992px) {
  .btn-show-sidebar {display:inline;}
}


.header-fixed .btn-show-sidebar {
  border-top: 2px solid #bcbcb4;
  border-bottom: 2px solid #bcbcb4;
}

.btn-show-sidebar:hover {
  border-top: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
}

@media (max-width: 1200px) {
  .wrap-video-mo-01 {
    width: 980px;
  }

  .main_menu > li {
    margin-left: 4px;
    margin-right: 4px;
  }

  .social {padding-right: 0px;}

  .logo {
    height: 45px;
  }
}

@media (max-width: 992px) {
  .wrap_menu {
    display: none;
  }

  .wrap_header {
    height: 100px;
  }

  .wrap-video-mo-01 {
    width: 800px;
  }
}

/*[ Wrap Gallery ]
///////////////////////////////////////////////////////////
*/

.section-gallery {
  padding-top:80px;
  padding-bottom:20px;
}

.wrap-label-gallery {
  margin: auto;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  gap:16px;
  margin-bottom:30px;
}

/*[ Sidebar ]
///////////////////////////////////////////////////////////
*/
.sidebar {
  position: fixed;
  z-index: 1200;
  width: 390px;
  height: 100%;
  overflow: auto;
  background-color: white;
  top: 0;
  right: -390px;
}
.sidebar ul {
  padding-left:0px;
}

@media (max-width: 768px) {
  .sidebar {width: 300px;}
  .wrap-video-mo-01 {
    width: 600px;
  }
}

@media (max-width: 576px) {
  .sidebar {width: 300px;}
  .wrap-video-mo-01 {
    width: 450px;
  }
}

.show-sidebar {
  right: 0px;
}

.btn-hide-sidebar {
  position: absolute;
  font-size: 20px;
  color: #111111;
  padding: 10px;
  top: 20px;
  right: 20px;
}

.overlay-sidebar {
  position: fixed;
  z-index: 1150;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  visibility: hidden;
}

.show-overlay-sidebar {
  visibility: visible;
  background-color: rgba(0,0,0,0.65);
}

/* ------------------------------------ */
.item-gallery-sidebar {
  display: block;
  position: relative;
  width: calc((100% - 30px) / 3 );
  margin: 5px;
}

.item-gallery-sidebar::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}

.item-gallery-sidebar:hover:after {
  background-color: rgba(14,42,41,0.55);
}

@media (max-width: 576px) {
  .wrap_header {
    height: 80px;
  }

  .gallery-sidebar {
    padding-left: 20px;
    padding-right: 20px;
  }
}



/*[ Slide1 ]
///////////////////////////////////////////////////////////
*/

/*[ Slick1 ]
-----------------------------------------------------------
*/
.wrap-slick1,
.wrap-slick2,
.wrap-slick3 {
  position: relative;
}

.item-slick1,
.item-slick2,
.item-slick3 {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.item-slick1 {
  height: 100vh;
}

.arrow-slick1, .arrow-slick2, .arrow-slick3 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  font-size: 18px;
  color: white;
  position: absolute;
  background-color: #8d8b88;
  opacity: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  border-radius: 50%;
  z-index: 200;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}

.wrap-slick1:hover .arrow-slick1,
.wrap-slick2:hover .arrow-slick2,
.wrap-slick3:hover .arrow-slick3 {
  opacity: 0.5;
}

.arrow-slick1:hover,
.arrow-slick2:hover,
.arrow-slick3:hover {
  background-color: #5c1520;
}

.next-slick1,
.next-slick2,
.next-slick3 {
  right: 50px;
  left: auto;
}

.prev-slick1,
.prev-slick2,
.prev-slick3 {
  left: 50px;
  right: auto;
}

@media (max-width: 576px) {
  .next-slick1 {
    right: 15px;
  }

  .prev-slick1 {
    left: 15px;
  }
}

/* ------------------------------------ */
.wrap-slick1-dots {
  position: absolute;
  width: 100%;
  height: 65px;
  left: 0;
  bottom: 0;
}

.slick1-dots {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.slick1-dots li {
  padding-left: 3px;
  padding-right: 3px;
}

.slick1-dots li button {
  display: block;
  color: transparent;
  background-color: #958e88;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid transparent;
  background-clip: padding-box;

  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}


.slick1-dots li button:hover {
    border: 3px solid white;
    background-color: #d41b22;
}

.section-slide .overlay {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #070b28;
    opacity: .6;
} 

/*[ Caption ]
-----------------------------------------------------------
*/

.wrap-content-slide1  
{
    margin:auto;
    text-align:center;
    width:70%;
}

.section-ourmenu .item-ourmenu img {
  opacity:0.6;
}

.section-ourmenu .item-ourmenu img:hover {
  opacity:1;
}

@media (max-width: 768px) {

  .wrap-content-slide1 {
    width:95% !important; 
  }

  .wrap-content-slide1 .tit1 {
    font-size: 24px !important;
  }

  .wrap-content-slide1 .txt1 {
    font-size: 22px !important;
  }

  .section-ourmenu .item-ourmenu img {
    /*height:120px !important;*/
    object-fit: cover !important;
  }

  .btn1-interest {
    font-size: 20px !important;
  } 

}

/*[ Contact Form ]
///////////////////////////////////////////////////////////
*/
.form-control {
  border: 1px solid #cfcabd !important;
  font-family: "Raleway", sans-serif;
  outline: 0;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  font-size: 16px;
  line-height: 26px;
  border-radius:10px;
  padding: 14px 16px;
  width: 100%;
  background: #ffffff;
  color: #1a140b;
  font-weight: 400;
}
.form-control:focus {
  box-shadow: unset;
  border-color: #767676 !important;
}
.form-control.style-1 {
  padding: 10px 16px;
}
.input_captcha_image {
  width:162px !important;
  border: 1px solid #1a140b !important;
  border-radius: 0 !important;
  height: 58px !important;
  font-weight:bold !important;
  font-size:20px !important;
  margin-top:4px !important;
}
.contact_map_visuel{
  padding-top:35px;
  margin-left:-5px;
}
.contact_map_visuel img{
  object-fit: cover;
  max-width:100%;
}
/*[ Button1 ]
///////////////////////////////////////////////////////////
*/
.btn1 {
  background: #e9e6de;
  border-radius: 99px;
  padding:20px 60px;
  font-size:18px;
  font-weight:400;
  color: #5c1520;
}

.btn1:hover {
  background-color: #5c1520;
  color: #ffffff;
}

.btn1-reverse {
  background: #5c1520;
  border-radius: 99px;
  padding:20px 60px;
  font-size:18px;
  font-weight:400;
  color: #e9e6de;
}
.btn1-reverse:hover {
  color: #ffffff;
}

.btn1-interest {
  background: #5c1520;
  border-radius: 10px;
  padding:20px;
  font-size:30px;
  color: #ffffff;
}

.btn1-interest:hover {
  background-color: #ffffff;
  color: #5c1520;
}

/*[ Button3 ]
///////////////////////////////////////////////////////////
*/
.btn3 {
  background: #111111;
  border-radius: 10px;
}

.btn3:hover {
  background-color: #5c1520;
  color: white;
}


/*[ Button2 ]
///////////////////////////////////////////////////////////
*/
.btn2 {
  background-color: white;
  border-radius: 10px;
  opacity: 0.9;
  color: #5c1520;
}

.btn2:hover {
  background-color: #5c1520;
  color: white;
}
.btn2 a {
  color: #5c1520;
  padding:15px 20px 15px 20px;
}

.btn2 a:hover {
  color: white;
}

.btn2-selected{
  background-color: #5c1520 !important;
  color: white;
}



/*[ Intro ]
///////////////////////////////////////////////////////////
*/
.header-intro {
  background-attachment: fixed;
  background-position: center 0;
  background-repeat: no-repeat;
  background-size: cover;
}



/*[ Slide2 ]
///////////////////////////////////////////////////////////
*/

/*[ Slick2 ]
-----------------------------------------------------------
*/

.arrow-slick2 {
  top: 53%;
}


@media (max-width: 576px) {
  .next-slick2 {
    right: 15px;
  }

  .prev-slick2 {
    left: 15px;
  }
}

/* ------------------------------------ */
.wrap-slick2-dots {
  position: absolute;
  width: 100%;
  height: 128px;
  left: 0;
  bottom: 0;
}

.slick2-dots {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.slick2-dots li {
  padding-left: 5px;
  padding-right: 5px;
}

.slick2-dots li button {
  display: block;
  color: transparent;
  background-color: #cccccc;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid transparent;
  background-clip: padding-box;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}


.slick2-dots li button:hover {
  border: 1px solid #d41b22;
  background-color: #d41b22;
} 


/*[ Slide3 ]
///////////////////////////////////////////////////////////
*/

/*[ Slick3 ]
-----------------------------------------------------------
*/


.arrow-slick3 {
  top: 40%;
}


@media (max-width: 576px) {
  .next-slick3 {
    right: 15px;
  }

  .prev-slick3 {
    left: 15px;
  }
}

/* ------------------------------------ */
.wrap-slick3-dots {
  width: 100%;
  height: 128px;
}

.slick3-dots {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.slick3-dots li {
  padding-left: 5px;
  padding-right: 5px;
}

.slick3-dots li button {
  display: block;
  color: transparent;
  background-color: #cccccc;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid transparent;
  background-clip: padding-box;

  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}


.slick3-dots li button:hover {
  border: 1px solid #d41b22;
  background-color: #d41b22;
} 





/*[ Block2 ]
///////////////////////////////////////////////////////////
*/
.blo2 {
  border-radius: 10px;
  overflow: hidden;
}

.wrap-pic-blo2 {
  display: block;
  width: 50%;  
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.wrap-text-blo2 {
  background-color: white;
  width: 50%;
  height: 470px;
}

/* ------------------------------------ */
.effect1 {
  background-color: #cf2227;
  opacity: 0.9;
  position: relative;
}
.effect1 .txt-effect1 {
  width: 390px;
  height: 50px;
  transform-origin: center center;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotateZ(90deg);
  -moz-transform: translate(-50%, -50%) rotateZ(90deg);
  -ms-transform: translate(-50%, -50%) rotateZ(90deg);
  -o-transform: translate(-50%, -50%) rotateZ(90deg);
  transform: translate(-50%, -50%) rotateZ(90deg);
}

@media (max-width: 992px) {
  .blo2 {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }

  .wrap-pic-blo2 {
    width: 100%;
    height: 390px;
  }

  .wrap-text-blo2 {
    width: 100%;
    height: 530px;
  }

  .time-event {
    width: 100%;
    height: auto;
  }

  .effect1 .txt-effect1 {
    width: 100%;
    height: 50px;
    padding: 10px;
    transform-origin: center center;
    position: unset;
    -webkit-transform: rotateZ(0deg);
    -moz-transform: rotateZ(0deg);
    -ms-transform: rotateZ(0deg);
    -o-transform: rotateZ(0deg);
    transform: rotateZ(0deg);
  }
}

@media (max-width: 576px) {
  .blo2 {
    width: 100%;
  }

  .wrap-pic-blo2 {
    width: 100%;
    height: 364px;
  }

}


/*[ Video ]
///////////////////////////////////////////////////////////
*/
.section-video {
  background-attachment: fixed;
  background-position: center 0;
  background-repeat: no-repeat;
  background-size: cover;
}

.content-video {
  background-color: rgba(20,7,9,0.5);
}

/*[ Modal video 01 ]
-----------------------------------------------------------
*/
body {padding-right: 0px !important;}
.modal {
  padding: 0px !important;
  z-index: 1160;
  overflow-x: hidden;
  overflow-y: auto !important;
}

/* ------------------------------------ */

#modal-video-01 {
  background-color: rgba(0,0,0,0.8);
  z-index: 1250;
}

#modal-video-02 {
  background-color: rgba(0,0,0,0.8);
  z-index: 1250;
}

#modal-survey-details {
  background-color: rgba(234,230,221,0.96);
  z-index: 1250;
}

#modal-survey-details .modal-dialog {
  max-width: 100% !important;
  height: 100% !important;
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  position: relative;
}
.close-modal-survey {
  color: #571621 !important;
  font-size:6rem !important;
  right:10px !important;
}
.close-modal-survey:hover {
  color: #000 !important;
}


#modal-video-01 .modal-dialog {
  pointer-events: auto !important;
  max-width: 100% !important;
  height: 100% !important;
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  position: relative;
}

#modal-video-02 .modal-dialog {
  max-width: 100% !important;
  vertical-align:middle;
  padding: 30px 0 0 0;
  margin: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  position: relative;
}

.wrap-video-mo-01 {
  width: 1200px;
  height: auto;
  position: relative;
  margin: 15px;
}

.wrap-video-mo-02 {
  width: 480px;
  height: auto;
  position: relative;
  margin: 15px;
}

.video-mo-01 {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 1;
  -webkit-transition: all 2s;
  -o-transition: all 2s;
  -moz-transition: all 2s;
  transition: all 2s;
}

.video-mo-01 iframe {
  width: 100%;
  height: 100%;
}

.close-mo-video-01 {
  font-size: 50px;
  color: white;
  opacity: 0.6;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  z-index: 1250;
  width: 60px;
  height: 60px;
  top: 0;
  right: 0;
}

.close-mo-video-01:hover {
  cursor: pointer;
  opacity: 1;
}



/*[ Blog ]
///////////////////////////////////////////////////////////
*/
.time-blog {
  position: absolute;
  left: 14px;
  bottom: 11px;
  background-color: rgba(0,0,0,0.5);
  padding: 3px 15px;

  font-family: "Raleway", sans-serif;
  font-weight: 400;
  font-size: 12px;
  color: white;
  border-radius: 4px;

}


/*[ Gallery footer ]
///////////////////////////////////////////////////////////
*/
.item-gallery-footer {
  display: block;
  position: relative;
  width: calc((100% - 50px) / 4 );
  margin-right: 10px;
  margin-bottom: 10px;
}

.item-gallery-footer::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}

.item-gallery-footer:hover:after {
  background-color: rgba(92,21,32,0.55);
}

.wd-social {
    display: flex;
    align-items: center
}

.wd-social span {
    font-weight: 600;
    font-size: 14px;
    line-height: 24px;
    color: #fff;
    margin-right: 16px
}

.list-social {
    flex-wrap: wrap;
    gap: 12px;
}

.list-social a {
    padding-top:12px;
}


/*[ BG Title Page ]
///////////////////////////////////////////////////////////
*/
.bg-title-page {
  width: 100%;
  min-height: 545px;
  padding-left: 15px;
  padding-right: 15px;
  background-repeat: no-repeat;
  background-position: center 0;
  background-size: cover;
}
.bg-title-page.MyAccount {
  width: 100%;
  height: 220px !important;
  max-height: 220px !important;
  min-height: auto !important;
}


/*[ Item mainmenu ]
///////////////////////////////////////////////////////////
*/

.line-item-mainmenu {
  flex-grow: 1;
  height: 2px;
  margin-bottom: 5px;
  margin-right: 10px;
  margin-left: 10px;
}

@media (max-width: 576px) {
  .line-item-mainmenu {
    display: none;
  }

  .price-item-mainmenu {
    padding-top: 5px;
  }

  .name-item-mainmenu {
    width: 100%;
  }
}


/*[ Block3 ]
///////////////////////////////////////////////////////////
*/

@media (max-width: 576px) {
  .text-blo3 {
    width: 100%;
  }
}



/*[ Gallery ]
///////////////////////////////////////////////////////////
*/

.label-gallery {
  border-radius: 10px;
  padding: 2px 11px;
  margin: 5px 0;
}

.label-gallery:hover {
  background-color: #5c1520;
  color: white;
}

.is-actived {
  background-color: #5c1520;
  color: white;
}

/* ------------------------------------ */
.wrap-gallery {
  width: 100%;
  box-sizing: border-box;
}

.item-gallery {
  width: calc( (100% - 140px) / 3 ) ;
  margin: 15px;
  position: relative;
}

.overlay-item-gallery {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(92,21,32,0.8);
  opacity: 0;
}

.overlay-item-gallery:hover {
  opacity: 1;
}

.wrap-gallery .wrap-gallery-overlay {
  position:absolute;
  width:100%;
  bottom:0;
  background:linear-gradient(266deg, rgb(249 244 244 / 30%) 10%, rgb(6 6 6 / 55%) 80%);
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size:15px;
  color:#fff;
  text-transform: uppercase;
  letter-spacing: 3px;
  word-spacing: 3px;
  padding:10px 15px;
}

.wrap-gallery .wrap-gallery-overlay .texte-bio p {
  width:80%;
  font-family: "Raleway", sans-serif;
  font-weight: 200;
  color:#fff;
  text-transform: none;
  letter-spacing: 1px;
  word-spacing: 1px;
  padding:0px 5px;
  line-height:19px;
}
.wrap-gallery .wrap-gallery-overlay .texte-bio p:hover {
  color:#f5ebdc;
  cursor:pointer;
}

.wrap-gallery .wrap-gallery-overlay.active {
  border:6px solid #fbd05c;
  color:#fbd05c;
  background:linear-gradient(9deg, rgb(51 25 27) 40%, rgb(235 208 208 / 25%) 80%);
}

.wrap-gallery .wrap-gallery-overlay.active .w-75 {
  width: 100% !important;
}

.wrap-gallery .wrap-gallery-overlay.active.animation {
  animation: wave-46 0.4s ease;
}

.wrap-gallery .wrap-gallery-overlay-shop {
  position:absolute;
  top:20px;
  left:20px;
  z-index:90;
}
.wrap-gallery .wrap-gallery-overlay-shop a {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size:13px;
  letter-spacing: 3px;
  word-spacing: 3px;
  color:#fff;
}
.wrap-gallery .wrap-gallery-overlay-shop a:hover {
  font-size:15px;
  background-color:#5c1520;
  padding:10px 20px;
  border-radius:99px;
}

.wrap-gallery .wrap-gallery-overlay-shop .actif {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  letter-spacing: 3px;
  word-spacing: 3px;
  color:#fff;
  font-size:13px;
  background-color:#5c1520;
  padding:10px 20px;
  border-radius:99px;
}

.wrap-gallery .wrap-gallery-overlay-shop .actif:hover {
  font-size:15px;
}

.wrap-gallery .item-gallery-rad {
    border-top-right-radius:10px;
    border-bottom-right-radius:10px;
}


.btn-show-gallery {
  font-size: 18px;
  color: #222222;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: white;
}

@media (max-width: 768px) {
  .item-gallery {
    width: calc((100% - 110px) / 2);
  }
}

@media (max-width: 576px) {
  .item-gallery {
    width: calc((100% - 30px) / 1);
  }
  .wrap-gallery {
    padding-left: 0;
    padding-right: 0;
  }
}


/*[ Pagination ]
///////////////////////////////////////////////////////////
*/
.item-pagination {
  font-family: "Raleway", sans-serif;
  font-weight: 400;
  font-size: 13px;
  color: #808080;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #e6e6e6;
  margin: 6px;
}

.item-pagination:hover {
  background-color: #333333;
  color: white;
}

.active-pagination {
  background-color: #333333;
  color: white;
}



/*[ Sidebar2 ]
///////////////////////////////////////////////////////////
*/

/*[ Search sidebar2 ]
-----------------------------------------------------------
*/
.btn-search-sidebar2 {
  position: absolute;
  top: 0;
  right: 0;
  width: 46px;
  height: 46px;
  background-color: #571621;
  color: white;
  font-size: 18px;

  box-shadow: 0 0 0px 1px #333333;
  -moz-box-shadow: 0 0 0px 1px #333333;
  -webkit-box-shadow: 0 0 0px 1px #333333;
  -o-box-shadow: 0 0 0px 1px #333333;
  -ms-box-shadow: 0 0 0px 1px #333333;

  -webkit-transform: rotateY(180deg);
  -moz-transform: rotateY(180deg);
  -ms-transform: rotateY(180deg);
  -o-transform: rotateY(180deg);
  transform: rotateY(180deg);
}


.input-search-sidebar2 {
  width: 100%;
  padding:13px;
}



/*[ Block4 ]
///////////////////////////////////////////////////////////
*/
.date-blo4 {
  position: absolute;
  padding:10px;
  top: 20px;
  left: 20px;
  border-radius: 10px;
  background-color: #5c1520;
}

/* ---------------------------------------------------------
    * APG FOREST CUSTOM
 ----------------------------------------------------------- */

/* editeur wysiwyg */

.margin-auto{
  height:100%;
  margin:auto;
}

 .btn {
  padding:14px 55px;
  border-radius:99px !important;
  font-size:14px;
  line-height:20px;
  text-align:center;
  font-weight:600;
  text-transform:uppercase;
  letter-spacing: .2rem;
}
 .btn.disabled, .btn:disabled, fieldset:disabled .btn{
    background-color:#a3988a !important;
    border-color:#a3988a !important;
  }
.wysiwyg-wrapper {
  margin-bottom:60px;
 }

.wysiwyg-wrapper p {
  font-size:18px;
  line-height:32px;
  margin-bottom:20px !important;
  color:#5c6368;
 }
.wysiwyg-wrapper img {
  padding-bottom:10px;
 }
 .wysiwyg-wrapper .visuel-illusration {
  width:100%;
  margin-bottom:30px !important;
 }
 .wysiwyg-wrapper a {
  color:#5c1520;
 }

 .wysiwyg-wrapper h3 {
  font-size:24px;
  line-height:38px;
  margin-bottom:15px;
  font-weight:400;
 }
  .wysiwyg-wrapper h4, h5 {
  color:#5c1520;
 }

.wysiwyg-wrapper-high-size p {
  font-size:18px;
  color:#40403f;
  line-height:28px;
  margin-bottom:24px !important;
 }

 .wysiwyg-wrapper-high-size h3 {
  font-size:24px;
  line-height:28px;
  margin-bottom:15px;
 }

.wysiwyg-wrapper ul {
    margin-bottom: 2.5rem;
    color: #808080;
    line-height: 1.8rem;
    margin-left:20px;
    font-size: 18px;
}    

.wysiwyg-wrapper ol {
    margin-bottom: 2.5rem;
    color: #808080;
    line-height: 1.8rem;
    padding-left:20px;
    font-size: 18px;
}

 .wysiwyg-wrapper  ul > li {
  list-style: square;
  font-size: 18px;
  margin-left:20px;
 }

 .wysiwyg-wrapper  ol > li {
  list-style: auto;
  font-size: 18px;
  margin-left:20px;
 }

.other-pics-news{
  width:100px !important;
  height:70px !important;
  border-radius:0px !important;
  padding-bottom:0px !important;
}

/* blocs libres */

.bloc-text-libre-1 img {width:auto !important;height:100%;object-fit: scale-down !important;vertical-align:middle;max-height:600px;}
.bloc-text-libre-1 .content-left {padding:30px 0 30px 30px;}
.bloc-text-libre-1 .content-right {padding:60px 60px 60px 0;}
.bloc-text-libre-1 {background:transparent;}
.bloc-text-libre-2 {background:#EAE6DD;}
.bloc-text-libre-1 img {width:100% !important;height:100% !important;vertical-align:middle !important;object-fit: cover !important;max-height:600px !important;padding:30px 0 30px 0;}
.bloc-text-libre-3 {background:#1d1d1b;color:#fff;}
.bloc-text-libre-3 h1 {color:#fff;}
.bloc-text-libre-3 h2 {color:#fff;}
.bloc-text-libre-3 h3 {color:#fff;}
.bloc-text-libre-3 p {color:#f7f3f2;}


 .sm-gutter{
  padding:10px 2px 10px 2px;
 }

.contact__form .contact__help {
  color:#a8abb5;
}

.font-light {
  font-weight:300;
  color:#6e6b66;
}
.font-light-xs {
  font-weight:300;
  font-size:11px;
  color:#6e6b66;
}

.footer_bar {
    background: #000;
    color:#a3abb0;
}

.footer_bar_content {
    height: 100%;
    padding:15px 0 15px 0;

}

.copyright {
    font-size: 12px !important;
}

.link-apg-system {
    color: #fff;
}

.link-apg-system:hover {
    color: #5c1520;
}

#social-side {
    display: none;
} 

.grecaptcha-badge {
    visibility: hidden !important;
}

.cookie-alert-conteneur {
    z-index:999;
    position:fixed;
    bottom:0;
    bottom:0;
    margin: auto;
    border: 1px solid #FFF;
    max-width: 700px;
    background: #FAFAFA;
    margin-top: 200px;
}
.hover-scale-5
{
 transition: transform .1s;
}
.hover-scale-5:hover
{
 -ms-transform: scale(1.05); /* IE 9 */
 -webkit-transform: scale(1.05); /* Safari 3-8 */
 transform: scale(1.05); 
}

.footer-link{
 color:#5c1520; 
}

.conteneur_shadow {
 color:#5c6368;
 font-size:17px;
 line-height:26px;  
 padding:30px;
 box-shadow:0px 8px 20px 0px rgba(0, 0, 0, 0.0509803922);
 border-radius:30px;
 background-color:#ffffff;
 margin:30px 0 60px 0; 
}

.conteneur_shadow h1 {text-transform: capitalize;font-weight: 500;padding:40px 0 20px 0;}
.conteneur_shadow h2 {text-transform: capitalize;font-weight: 500;padding:40px 0 20px 0;}
.conteneur_shadow h3 {text-transform: capitalize;font-weight: 500;padding:40px 0 20px 0;}
.conteneur_shadow h4 {text-transform: capitalize;font-weight: 500;padding:40px 0 20px 0;}
.conteneur_shadow h5 {text-transform: capitalize;font-weight: 500;padding:40px 0 20px 0;}

.conteneur_shadow a {
  color:#5c1520;
}

.SwitchFlagCurrency{
padding-right:30px !important;
}
.SwitchFlagCurrency ul {
  width:170px !important;
}
.SwitchFlagCurrency  ul > li > a {
  font-size: 14px !important;
  line-height:14px !important;
  padding:8px 18px !important;
  font-weight:300 !important;
}

.SwitchFlagCurrency ul > li > a:before {
  position: absolute;
  content: "\ea3d";
  left: 0px !important;
  top: 0px !important;
  width: 0px !important;
  height: 0px !important;
  opacity: 0;
  font-size: 8px;
  left: 1px !important;
  top: 8px !important;
  display: inline-block;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  font-family: "icomoon";
  color: #5c1520;
}

.images-style {
  height:290px;
}

.images-style img {
  height:100%;
  object-fit: cover;
}

.images-style-large {
  height:390px !important;
}

.images-style-large-map {
  height:390px !important;
}

.property-detail-desc{
  font-size:17px;
  line-height:26px;
}

.modal-dialog.large {
    width: 96% !important;
    max-width: 80rem !important;
}

.modal-dialog.x-large {
    width: 80% !important;
    max-width: 80% !important;
}

.x-large-background {
    background: #000 !important;
    padding: 0px !important;
}

.iframe_vv {
    width: 100%;
    height: 800px;
}

.map_detailbien {
    width: 100%;
    height: 500px;
    z-index: 2;
    border-radius:16px;
    border:1px solid #e4e4e4;
}

@media (max-width: 768px) {
    .map_detailbien {
        height: 350px;
    }
}

.contact_map {
    width: 100%;
}

.contact_google_map {
    width: 100%;
    height: 685px;
}

.contact_map_container {
    width: 100%;
    overflow: hidden;
    pointer-events: none;
}

#contact_map {
    width: 100%;
    height: 685px;
}


.img_border {
    border-radius: 10px;
}

.ouverture_progressive {
    opacity: 0;
    -webkit-transition: opacity 0.5s ease-in;
    -moz-transition: opacity 0.5s ease-in;
    -o-transition: opacity 0.5s ease-in;
    -ms-transition: opacity 0.5s ease-in;
    transition: opacity 0.5s ease-in;
}

.ouverture_progressive.load {
    opacity: 1;
}
.img-cover {height: 100% !important;-o-object-fit: cover !important;object-fit: cover;font-family: 'object-fit: cover';width: 100% !important;}
.img-contain {height: 100%;-o-object-fit: contain;object-fit: contain;font-family: 'object-fit: contain';width: 100%;}
.img-cover-paragraphe {height: 100% !important;-o-object-fit: cover !important;object-fit: cover;font-family: 'object-fit: cover';width: 100%;display:inline-block;width:200px !important;float:left;padding-right:30px}
.font-text-libre {
  /*font-family: 'Dancing Script', cursive;*/
}

.click-action-wrap {
  position: fixed;
  bottom: 30px;
  right: 85px;
  height: 44px;
  width: 44px;
  cursor: pointer;
  display: block;
  border-radius: 50%;
  box-shadow: 0px 10px 25px 0px rgba(54, 95, 104, 0.1019607843);
  z-index: 400;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(20px);
  -ms-transform: translateY(20px);
  transform: translateY(20px);
  -webkit-transition: all 400ms linear;
  -o-transition: all 400ms linear;
  transition: all 400ms linear;
  background: #bc1237;
}
.click-action-wrap.active-progress {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}
.click-action-wrap span {
  color: #ffffff;
  padding: 13px 12px 12px 12px;
  font-size: 1.3rem;
}
.progress-wrap {
  position: fixed;
  bottom: 30px;
  right: 30px;
  height: 44px;
  width: 44px;
  cursor: pointer;
  display: block;
  border-radius: 50%;
  box-shadow: 0px 10px 25px 0px rgba(54, 95, 104, 0.1019607843);
  z-index: 400;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(20px);
  -ms-transform: translateY(20px);
  transform: translateY(20px);
  -webkit-transition: all 400ms linear;
  -o-transition: all 400ms linear;
  transition: all 400ms linear;
  background: #ffffff;
}
.progress-wrap.active-progress {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}
.progress-wrap::after {
  position: absolute;
  content: "\ea3d";
  font-family: "icomoon";
  text-align: center;
  line-height: 44px;
  font-size: 14px;
  font-weight: 900;
  color: #5c1520;
  left: 0;
  top: 0;
  height: 44px;
  width: 44px;
  cursor: pointer;
  display: block;
  z-index: 1;
  transform: rotate(223deg);
  -webkit-transition: all 400ms linear;
  -o-transition: all 400ms linear;
  transition: all 400ms linear;
}
.progress-wrap svg path {
  fill: #ffffff;
  box-sizing: border-box;
  stroke: #5c1520;
  stroke-width: 5;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
  transition-duration: 0.4s;
  transition-timing-function: linear;
}
.btn-primary{
  border:1px solid #5c1520;
  background-color:#5c1520;
  border-radius:20px;
  color:#fff !important;
}
.btn-primary:hover{
  border:1px solid #5c1520;
  background-color:#5c1520 !important;
}
.btn-secondary{
  border:1px solid #e9e6de;
  background-color:#e9e6de;
  border-radius:20px;
  color:#5c1520 !important;
}
.btn-secondary:hover{
  border:1px solid #5c1520;
  background-color:#5c1520 !important;
  color:#fff !important;
}
.btn:hover{
  border:1px solid #5c1520;
  background-color:#5c1520 !important;
}
.text-primary{
  color:#5c1520 !important;
  letter-spacing: 2px;
  word-spacing: 4px;
}
.dropdown-lang .dropdown-toggle-lang {
  color:#bcbcb4;
}
.dropdown-lang .dropdown-toggle-lang:hover {
  color:#fff;
}
.dropdown-lang .dropdown-link-lang {
  color:#222222 !important;
}
.presentation-service {
  color:#5c1520;
}
.presentation-service:hover {
  color:#fff;
}
.presentation-service-img-height-0, .presentation-service-img-height-1 {
  max-height:584px;
}
.presentation-service-img-height-2 {
  max-height:296px;
}
.presentation-service-img-height-3, .presentation-service-img-height-4, .presentation-service-img-height-5 {
  max-height:274px;
}
.flat-quote {
    margin: 20px 0 20px 0;
    padding: 30px;
    border-radius: 10px;
    background-color: #eae6dd;
    border-left: 4px solid #5c1520;
    line-height: 1.8rem
}

.flat-quote .quote {
    font-size: 17px;
    padding-left: 20px
}

.flat-quote .quote .quote-sigle {
    position: absolute;
    font-size: 66px;
    margin: 14px 0 0 -30px;
    color:#571621;
}

.flat-quote .author {
    margin-top: 20px;
    display: block;
    font-size: 16px;
    font-weight: 600!important;
    padding-left: 20px
}

.single-property-video .title {
  margin-bottom: 20px;
}
.single-property-video .img-video {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
}
.single-property-video .img-video img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.single-property-video .img-video .btn-video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.single-property-video .img-video .btn-video .icon {
  color: #C70A33;
  font-size: 14px;
  margin-left: 4px;
}
.single-property-video .img-video .btn-video::after, .single-property-video .img-video .btn-video::before {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  border-radius: 9999px;
  animation: ripple 3s infinite;
}
.single-property-video .img-video .btn-video::after {
  animation-delay: 0.5s;
}
.single-property-video .img-video .btn-video::before {
  animation-delay: 0.9s;
}
.single-property-video .img-video::before {
  content: "";
  inset: 0;
  position: absolute;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 1;
}
.easy-autocomplete-container ul {
    margin-top: 5px !important;
    margin-left: 0 !important;
    top: -1px;
}
.easy-autocomplete-container ul li, .easy-autocomplete-container ul .eac-category {
    font-size: 13px;
    margin-left: 0 !important;
}

.custom-dropdown .dropdown-item {
  font-size: 14px;
  border-bottom: 1px solid #efefef;
  padding-top: 10px;
  padding-left: 35px;
  padding-bottom: 10px;
  position: relative; }
  .custom-dropdown .dropdown-item strong {
    display: block;
    font-weight: bold;
    color: #000; }
  .custom-dropdown .dropdown-item span {
    font-size: 13px;
    color: #999; }
  .custom-dropdown .dropdown-item:before {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    top: 50%;
    left: 10px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    background: #efefef;
    -webkit-transition: .3s all ease;
    -o-transition: .3s all ease;
    transition: .3s all ease; }
  .custom-dropdown .dropdown-item:hover {
    color: #000; }
    .custom-dropdown .dropdown-item:hover:before {
      top: 50%;
      background: #5c1520; }

.dropdown-item.active, .dropdown-item:active {
  background-color:#5c1520 !important;
  color:#fff !important;
}
.share-social-icons ul  {
 margin: 0px !important;
 line-height: 0px !important;
}
.share-social-icons ul > li {
 list-style: none !important;
 margin-bottom: 0px !important;
 padding-left: 0px !important;
 margin-left: 0px !important;
}

.btn-share {
    padding: 13px 15px;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    font-size: 24px;
    line-height: 34px;
    text-align: center;
    font-weight: 600;
}

.btn-share.btn-share--messenger {
    color: #2978f2
}

.btn-share.btn-share--whatsapp {
    color: #59ba57
}

.btn-share.btn-share--mail {
    color: #696663
}

.btn-share.btn-share--facebook {
    color: #3d5893
}

.btn-share.btn-share--x {
    color: #000
}

.btn-share.btn-share--linkedin {
    color: #327fb0
}

.input-search-collection {
  width:400px;
}

/* ---------------------------------------------------------
    * ZOOM IMAGE EFFECT
 ----------------------------------------------------------- */

figure.containerZoom{background-position:50% 50%;position:relative;width:100%;overflow:hidden;cursor:zoom-in;margin:auto;max-width:230px;height:100%;}
figure.containerZoom img{transition:opacity .5s;display:block;width:100%}
figure.containerZoom.active img{opacity:0}

/* ---------------------------------------------------------
    * APG ESPACE CLIENT
 ----------------------------------------------------------- */

.modal-account .modal-dialog .modal-content {
    border-radius: 20px;
    border: 0;
    background: #fff;
    overflow: hidden
}

.flat-account {
    display: flex
}

.flat-account {
  display: flex;
}
.flat-account .banner-account {
  max-width: 380px;
  width: 100%;
  flex-shrink: 0;
}
.flat-account .banner-account img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.flat-account .form-account {
  flex-grow: 1;
  padding: 40px;
  min-height:570px;
}
.flat-account .form-account .box:not(:last-child) {
  margin-bottom: 30px;
}
.flat-account .form-account .title-box {
  margin-bottom: 40px;
  display: flex;
  justify-content: space-between;
}
.flat-account .form-account .title-box .icon {
  font-size: 24px;
  cursor: pointer;
}
.flat-account .form-account .box-fieldset:not(:last-child) {
  margin-bottom: 24px;
}
.flat-account .form-account .box-fieldset label {
  margin-bottom: 10px;
}
.flat-account .form-account .box-fieldset .text-forgot {
  margin-top: 18px;
}
.flat-account .form-account .ip-field {
  position: relative;
}
.flat-account .form-account .ip-field .icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
}
.flat-account .form-account .ip-field input {
  padding-left: 46px;
}
.flat-account .box-btn .text {
  margin-top: 18px;
}
.flat-account .group-btn {
  display: flex;
  gap: 10px;
}
.flat-account .group-btn .btn-social {
  width: 50%;
  font-weight: 600;
  color: #3a3a3c;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px;
  border: 1px solid #e4e4e4;
  border-radius: 999px;
}
.flat-account .group-btn .btn-social img {
  width: 20px;
  height: 20px;
}
.flat-account .group-btn .btn-social:hover {
  border-color: #C70A33;
}
.form-answers {
    margin-top: -10px;
    min-height: 60px;
    padding-bottom: 20px;
    color: #c70a33;
    text-transform: uppercase
}

.modal-content-beauty {
    position: relative;
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-clip: padding-box;
    outline: 0;
    height:100%;
}

.flat-account-form-collection{
  padding:50px 35px;
}


.box-floor-property {
    padding: 30px;
    background-color: #f5f3ee;
    border-radius: 16px
}

.box-floor-property .box-floor-img {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    padding: 38px 30px;
    background-color: #fff;
    border-radius: 12px;
    margin-bottom: 0
}

.bloc_service_presentation a {font-size:21px;font-weight:500;line-height:30px;padding:30px;letter-spacing:0.15rem;}
.item-ourmenu .pres_service_pix0{height:480px;}
.item-ourmenu .pres_service_pix1{height:480px;}
.item-ourmenu .pres_service_pix2{height:307px;}
.item-ourmenu .pres_service_pix3{height:260px;}
.item-ourmenu .pres_service_pix4{height:260px;}
.item-ourmenu .pres_service_pix5{height:260px;}
.item-ourmenu .pres_service_pix6{height:260px;}
.item-ourmenu .pres_service_pix7{height:260px;}


.element-clignote  {
   animation-duration: 0.3s;
   animation-name: clignoter;
   animation-iteration-count: 4;
   transition: none;
}
@keyframes clignoter {
  0%   { opacity:1; }
  40%   {opacity:0.4; }
  100% { opacity:1; }
}

/* ---------------------------------------------------------
    * MEDIA QUERIES APG
 ----------------------------------------------------------- */

@media all and (min-width: 768px) and (min-height:500px) {
    #social-side {
        display: block;
        position: fixed;
        z-index: 1100;
        top: 50%;
        right: 0;
        font-size: 22px;
        transform: translate(0, -50%);
        box-shadow: 0px 15px 25px rgba(0,0,0,0.085);
        padding: 2px 8px 2px 8px;
    }

    #social-side a {
        display: block;
        padding: 2px;
        font-size:18px;
    }

    #social-side i {
        color: #958d8e;
        padding: 5px 0 5px 0;
    }

    .social-side-active {
        color: #992035 !important;
    }

    #social-side a:hover i {
        color: #5c1520;
    }
}


@media (min-width: 992px) {

    .modal-account {
        --bs-modal-width: 920px
    }
}  

@media only screen and (max-width: 991px) {

  .btn1 {
    padding:10px 20px;
    font-size:14px;
  }
  .btn1-reverse {
    padding:10px 20px;
    font-size:14px;
  }
  .modal-account .modal-dialog .modal-content {
    border-radius: 10px;
  }
  .flat-account {
    display: flex;
  }
  .flat-account .banner-account {
    display: none;
  }
  .flat-account .form-account {
    padding: 15px;
  }
  .flat-account .form-account .box:not(:last-child) {
    margin-bottom: 20px;
  }
  .flat-account .form-account .title-box {
    margin-bottom: 30px;
  }
  .flat-account .form-account .box-fieldset:not(:last-child) {
    margin-bottom: 20px;
  }
  .flat-account .form-account .box-fieldset label {
    margin-bottom: 8px;
  }
  .flat-account .form-account .box-fieldset .text-forgot {
    margin-top: 10px;
  }
  .flat-account .form-account .ip-field {
    position: relative;
  }
  .flat-account .form-account .ip-field .icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
  }
  .flat-account .form-account .ip-field input {
    padding-left: 46px;
  }
  .flat-account .box-btn .text {
    margin-top: 10px;
  }
}



@media (max-width: 768px) {

  .bg-title-page {min-height: 345px;}
  .bg-title-page .tit6 {font-size: 30px;}

  .share-social-icons ul  {
   margin-top: 20px !important;
   padding-left: 0px !important;
  }
  .btn-contact-rapide {
    bottom: 15px;
    right: 65px;
  }
  .flat-quote .quote{
    font-size:14px;
    letter-spacing:2px;
    word-spacing:2px;
  }
  .btn-share{
    padding:13px 10px;
  }
  .input-search-collection {
    width:300px;
  }
  .wrap-gallery .wrap-gallery-overlay {
    font-size:13px;
  }

  .wrap-gallery .wrap-gallery-overlay .texte-bio p {
    font-size:12px;
    line-height:16px;
  }
  .item-ourmenu .pres_service_pix0{height:200px;}
  .item-ourmenu .pres_service_pix1{height:200px;}
  .item-ourmenu .pres_service_pix2{height:200px;}
  .item-ourmenu .pres_service_pix3{height:200px;}
  .item-ourmenu .pres_service_pix4{height:200px;}
  .item-ourmenu .pres_service_pix5{height:200px;}
  .item-ourmenu .pres_service_pix6{height:200px;}
  .item-ourmenu .pres_service_pix7{height:200px;}
  .img-cover-paragraphe {width: 100%  !important;padding-right:0px !important}
  .wysiwyg-wrapper h3 {font-size:1.2rem}
  .section-gallery {padding-top:30px;}
  .wrap-label-gallery {gap:8px;}

}

