/* Start global */
body {
	-webkit-box-sizing : border-box ;
	-moz-box-sizing : border-box ;
	-o-box-sizing : border-box ;
	box-sizing: border-box ;
	background-color: #fff ;
	margin:0;
	padding:0;
	font-family:sans-serif ;
}
.body-index h1, 
.body-index h2, 
.body-index h3, 
.body-index h4, 
.body-index h5, 
.body-index h6 {
	margin:0 ;
	font-weight:bold ;
}
.body-index h1 {
	font-size:49px ;
}
.body-index h2 {
	position: relative ;
   font-size:37px ;
   margin:0 auto 47px auto ;
   width: 74%;
   line-height:1.7em ;
   position: relative ;
}
.body-index h3 {
   font-size:19px ;
}
.body-index h4 {
   font-size:18px ;
}
.body-index h5 {
   font-size:17px ;
}
.body-index h6 {
   font-size:16px ;
   margin-bottom:13px;
}
h6 {
    font-style: italic ;
    font-weight:600;
}
div.code {
    background: #F0F0F0;
    width:90%;
    padding:10px;
    margin-bottom:18px;
}
div.code code {
    color:#000;
}
.language-php {
    padding:0 !important;
    overflow-x: auto;
    padding: 0.5em;
    word-break: normal;
    box-sizing: border-box;
    width:100%;
}
.table {
    width: 90%;
    margin: 0 0 28px;
    border-collapse: collapse;
}
.table td {
    padding: 0.6em 0.8em;
    border: 1px solid #686868;
    border-color: inherit;
}
    @media only screen and (max-width: 992px) {
        iframe { max-width:100%; }
    }
@media screen and (max-width:992px) {
   p, h1, h2, h3, h4, h5, h6 {
    width:100% !important;
   }
}
/* End global */

/* Start loader */
  .loader {
    position: fixed ;
    display: flex ;
    justify-content: center ;
    align-items: center ;
    top:0 ;
    left:0 ;
    right:0 ;
    bottom:0 ;
    width:100% ;
    height: 100% ;
    z-index: 999 ;
    background-color: #fafafa ;
    transition: all 0.2s ;
  }
  .loader .spinner-border {
    display: flex ;
  }
  .loader .spinner-border
/* End loader */

/* Start header */
header {
	border-bottom:1px solid #f1eeee;
}
.body-index header section {
	height:0 ;
}
header section .header-content {
   display: flex;
   flex-direction: column ;
   height: 80px;
   justify-content: center ;
}
header section .header-content .navbar {
/*	background-color: transparent;
	position: relative;*/
	height: 100%;
    padding-top: 0;
    padding-bottom: 0;
}

@media screen and (min-width:992px) {
   header section .header-content .navbar {
    z-index:4;
   }
}
header section .header-content .navbar > .container {
	height:100%;
}

header section .navbar-collapse {
	height:100%;
}

@media screen and (max-width:992px) {
header section .navbar-brand {
  z-index: 5;
 }
}

header section .navbar .navbar-nav {
    height: 100%;
    display: flex;
    align-items: center;
}

header section .navbar .navbar-nav li {
	height: 100%;
}

.body-index header section .navbar .navbar-nav .nav-link {
	color:#fff;
	align-items: center;
    height: 100%;
    display: flex;
}

header section .navbar-toggler-icon {
	position: relative ;
	border:1px solid #fff ;
	background: #fff ;
	width: 40px ;
    height: 34px ;
    border-radius: 6px ;
	padding:1% ;
	display: flex ;
	justify-content: center ;
	visibility: hidden ;
	cursor:pointer ;
}

@media screen and (max-width:992px) {
  header section .navbar-toggler-icon {
   visibility: visible;
   z-index: 5;
 }
}

/*snavbar*/
.snavbar {
    position: fixed;
    width: 100%;
    height: 64px;
    max-height: 80px;
    z-index: 5;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    color: #000;
    border-bottom: 1px solid #f1e9e9;
    transition: .15s;
}
.snavbar .nav-link {
	color:#000 !important;
}
.header-mobile.open {
	opacity: 1;
	transform: translateX(0);
	padding-top:80px;
}

header section span.toggler {
	position: absolute;
	height:2px;
	display: flex;
	background: #000;
	width:58%;
	z-index:4;
}

header section span.toggler:nth-child(1) {
    top:10px;
}

header section span.toggler:nth-child(2) {
    top:15px;
}

header section span.toggler:nth-child(3) {
    top:20px;
}

header section .dropdown {
	position: absolute;
    background: #FFF;
    padding: 20px;
    list-style: none;
    border-radius: 4px;
    visibility: hidden;
    border:1px solid #f1e9e9;
}
header section .dropdown::before {
    content: '';
    width: 10px;
    height: 10px;
    background: #fff;
    z-index: 4;
    position: absolute;
    top: -5px;
    transform: rotate(45deg);
    border-left:1px solid #f1e9e9;
    border-top:1px solid #f1e9e9;
}
header section .dropdown .nav-link {
	color:#000!important;
}
header section ul.navbar-nav li:hover > ul.dropdown {
	visibility: visible!important;
}

.header-mobile {
	display: flex;
    flex-direction: row;
    max-width: 530px;
    z-index: 4;
    right: auto;
    left: 0;
    width:100%;
    position: fixed;
    top: 0;
    height: 100%;
    background-color: #fff;
    transform: translateX(-100%);
    overflow: hidden;
    opacity: 0;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.header-mobile .header-content {
	height:50%;
}

@media screen and (min-width:992px) {
.header-mobile {
  	opacity: 0;
  	transform: translateX(-100%);
  	visibility: hidden;
  }
}
.header-mobile .navbar-brand {
	padding-left:0px;
	width:100%;
}
.header-mobile .nav-link {
	color:#000!important;
}

.header-mobile .navbar-nav {
	display: block;
	height:auto;
}
/* End header */

/* Start slider */
.slider {
	position: relative;
	width:100%;
	height:360px;
	background-image:url('assets/img/banner.jpg');
	background-attachment: fixed;
	background-repeat: no-repeat;
	background-position: top;

}
.overlay {
	position: absolute;
	top:0;
	left:0;
	right:0;
	bottom:0;
	z-index: 2;
	background-color: rgb(28 30 34 / 90%) ;
}
.slider img {
	width:100%;
	height:auto;
}

.slider-content {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    display: flex;
    align-content: center;
    text-align: left;
    justify-content: center;
    align-items: center;
    color: #fff;
    letter-spacing: 0.10em; 
    color:#fff;
}

.slider-content h1 {
    color:#fff;
}

.slider-content h6 {
    text-align: center;
    color: #fff;
}

.slider-content .my-span {
	color: cyan;
	letter-spacing: 0.10em;
}
/* End slider */

/* Start my services */
.my-services {
padding:60px 0;
}
.my-services h1 {
	text-align: center ;
	padding:40px 0 60px ;
}
.body-index p {
    text-align: center;
    width: 68%;
    line-height: 2.5rem;
    margin: 0 auto;
}
/* End my secrvices */

/* Start my information */
.autre-information.row {
	text-align: center; 
}
.information,
.phone {
	padding:29px 0;
	position: relative;
}
.information h2,
.phone h2 {
   margin-bottom:20px !important;
   z-index:2;
}
.information {
    background: #0167ff;
    color: #fff;
    position: relative;
}
.information::after {
	content:"";
	position: absolute;
    top:0;
    left:0;
    right:0;
    bottom:0;
    width:100%;
    height:100%;
	background-image:url('assets/img/pub.jpg');
	background-attachment: fixed;
	background-repeat: no-repeat;
	background-position: top left;
}
/* End my information */

/* Start my boutique */
.my-boutique {
	padding:60px 0;
	background-color:#fdfbfb;
}
.my-boutique h6 {
  padding:60px 0;
  text-align: center;
  color:#0167ff;
}

.theme-item {
	box-shadow: 0px 5px 30px -5px rgb(0 0 0 / 15%);
    margin-bottom: 2rem;
    border-right: 1px solid #fff;
}
.themes p {
	width:100%;
	margin:0;
	text-align: left;
}
.themes button {
	margin-top:30px;
}

.themes .theme-item > .item-img {
    position: relative;
    overflow: hidden;
    background-color: #fff;
    display: flex;
}

.themes .theme-item > .item-img img {
	top: 0;
    left: 0;
    width: 100%;
    height: 100% !important;
    object-fit: cover;
    transform: none;
}

.themes .item-content {
	padding: 35px;
    background-color: #fff;
}

.themes .item-content span {
	color: #555555;
    list-style: none;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-bottom: 1px solid #ebebeb;
    display: block;
    margin-bottom: 25px;
    padding-bottom: 0.25em;
}

.themes .item-content h3 {
	line-height: 1.5;
    font-size: 32px;
    font-weight: 600 !important;
    margin-top: 0;
}

.themes .item-content p {
	width: 100%;
    margin: 0;
    text-align: left;
    margin: 1rem 0;
    max-width: 100%;
}

.themes .item-content a {
	display: inline-block;
    padding: 0.5625rem 1rem;
    outline: 0;
    border: none;
    background: #ff1493;
    color: #fff;
    text-align: center;
    font-weight: 700;
    line-height: inherit;
    cursor:pointer;
    text-decoration: none;
}

.themes .item-content a.aper {
	margin-right: 1rem;
    background-color: #f8412c !important;
}

.themes .item-content a.doc {
    background-color: #2a39d6 !important;
}
/* End my boutique */

/* Start documentation */
        .body-documentation header section .navbar .navbar-nav .nav-link {
	        color:#000;
	        align-items: center;
            height: 100%;
            display: flex;
        }
 		.main-title {
			border:1px solid #ddd;
			background: #f8f8f8;
			padding:10px;
			text-align: center;
		}
		.doc.main-content h2 {
			margin:40px 0 !important;
            font-weight: 700;
		}
		.doc p {
			line-height: 1.9rem ;
			font-size: 14px;
			text-align: justify;
			width: 100%;
			margin-left: 0;
			margin-top:20px ;
			margin-bottom:20px ;
		}
		.doc h2 {
			font-size: 18px;
			color: #000;
		}
		.document h4 {
			margin-bottom:20px ;
		}
		.doc h5 {
			font-size: 16px;
			color: #f200ff;
			margin-bottom:18px ;
		}
		.doc h5 + .doc p,
		.doc .zone {
			width:70%;
			border-radius:5px;
			padding:5px;
			background-color: #000 ;
			color:#ddd;
		}
		.menu-content {
	        padding:20px 0;
			width:100%;
			position: sticky ;
			top:0;
			left:0;
			margin-right: 10px;
			margin-top: 40px;
		}
		.menu {
			background: #f8f8f8 ;
			margin-bottom:30px ;
			padding:10px ;
			/*box-shadow: 1px 1px 6px #ddd ;*/
		}
		.menu > h2 {
			margin-bottom:41px ;
			position: relative ;
			font-size:20px ;
		}
		.menu > h2:before {
            content: "";
            position: absolute;
            width: 44px;
            height: 1px;
            background-color: #000;
            bottom: -16px;
		}
        .menu-content ul {
        	list-style: none ;
        	margin:0 ;
        	padding:0 ;
        	margin-bottom:10px;
        }
        .menu-content li {
        	margin-bottom: 20px ;
        }
        .menu-content a {
        	color:#000 ;
        	text-decoration: none ; 
        }
		.doc.main-content {
			padding-top:20px;
			padding-bottom: 40px ;
			width:100% ;
			/*background-color: #ddd ;*/
			margin-left:10px;
			flex:1;
		}
		.important {
			background-color: mistyrose ;
			padding:20px ;
			margin:20px 0;
		}
		.remarque {
			background-color: aliceblue ;
			padding:20px ;
			margin:45px 0 20px 0;
		}
/* End documentation */

/* Start customize */
.no-scroll {
    overflow-y: auto !important;
    height:200px!important;
}
.general {
    background-color: #eaeaea ;
}
/* End customize */

/* Start contact */
.contact {
    background-color: #d9d9d9 ;
    padding:60px 0 ;
} 
/* End contact */

/* Start img custom */
.Custome .row h2 {
    background-color: #ddd ;
    padding: 10px;
    width:80%;
    margin:40px auto !important;
    text-align: center; 
}
.img-custom {
    position: relative;
    width: 100%;
    height:400px;
    overflow-y: scroll;
}
.img-custom img {
    position: absolute;
    width:100%;
}
/* End img custom */

/* Start footer */
footer {
	background-color: #000 ;
	color: #e8e8e8;
	padding:16px 0;
} 
footer h4 {
	font-size:13px!important;
}
footer p {
   line-height: 1.5em!important;
    width: 100%!important;
    text-align: left!important;

}
footer .social-media {
	padding:20px 0;
}
footer svg {
	margin-right:15px;
}
footer .col-12:last-child p {
    text-align: right !important ;
}
/* End footer */

