

/* Import fonts from fonts.css file */

@import url(./fonts.css);

html, body{
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100vh;
}
/* keyfram for body animation */
.my_body_animation{
    background: url(../img/background.jpg) no-repeat 50% 50% ;
    background-size: cover;
    animation: animatedBackground1 2s cubic-bezier(0.24, 0.48, 0.45, 1);
    animation-delay: 0.3s; 
}
@keyframes animatedBackground1 {
    from {
        background-size: 150%;
      }
      to {
        background-size: 100%;
      }
}

.wrapper {
    width: 100%;
    height: 100vh;
    margin: 0;
    padding: 0;
}

a,
a:hover,
a:focus{
	color: inherit;
	text-decoration: none;
	transition: all 0.3s;
}
h5 {
    color: #000;
}
p{
    font-weight: 200;
    color: rgb(27, 27, 27);
}

/* modal social media */
.social-media {
    font-size: 65px;
    transition: 1s;
    animation: fade-in 1s ease-in-out;
}
.social-media:hover{
    font-size: 70px;
    color: #22459D;
}
.facebook{
    color: #3b5998;
}
.whatsapp{
    color: #25d366;
}
.linkdin{
    color: #0077b5;
}
.instagrame{
    color: #bd081c;
}

/* modale */
.image_modale{
    width: 31%;
}
.card-body{
    padding: 0;
}
.card-text{
    margin-bottom: 2px;
    font-size: 12px;
    transition: 1s;
    animation: fade-in 1s ease-in-out;
}
.card-text:hover{
    font-size: 18px;
    color: #22459D;
}

/* Button css */

.menu-btn{
    position: fixed;
    margin: 1.2em;
    right: 0;
    z-index: 999;
}

button{
    border:none;
    background: none;
}

button:focus{
    outline: none !important;
}

.bar{
    outline: none;
    padding: 1.5em;
    color: #fff;
    border: 1px solid #000;
    background: #000;
    border-radius: 50%;
}


/* Menu   */

.row, .col-lg{
    margin: 0 !important;
    padding: 0 !important;
}

.col-lg{
    height: 100vh;
}
.col-lg .list-overlay{
    height: 100vh;
}

.col-lg.overlay{
    background: #1E1E1E;
    position: absolute;
    top: -100%;
    z-index:99;
}

.overlay ul{
    list-style: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
    padding: 0;
}

.overlay ul li {
    display: inline-block;
    font-family: "Montserrat";
}

.overlay ul li a{ 
    color: white;
    text-decoration: none;
}
.overlay .home{
    list-style: none;
    position: absolute;
    top: 90%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
    padding: 0;
}
.overlay .home i{
    font-size: 24px;
}
.overlay .home li:first-child:hover::before{
    content: "";
    background: none;
    width: 0;
    height: 0;
}
.overlay ul li:not(:last-child){
    margin-right: 120px;
}

.overlay ul li:first-child:hover::before{
    content: "";
    z-index: -1;
    width: 300px;
    height: 400px;
    display: block;
    position: absolute;
    top: -180px;
    left: -110px;
    background: url(../img/menu/360\ PHOTO.jpg) no-repeat 50% 50%;
    transition: 1s;
    animation: fade-in 2s ease-in-out;
}

.overlay ul li:nth-child(2):hover::before{
    content: "";
    z-index: -1;
    width: 300px;
    height: 400px;
    display: block;
    position: absolute;
    top: -180px;
    left: -110px;
    background: url(../img/menu/Photo.jpg) no-repeat 50% 50%;
    transition: 1s;
    animation: fade-in 2s ease-in-out;
}

.overlay ul li:nth-child(3):hover::before{
    content: "";
    z-index: -1;
    width: 300px;
    height: 400px;
    display: block;
    position: absolute;
    top: -180px;
    left: -110px;
    background: url(../img/menu/PDF.jpg) no-repeat 50% 50%;
    transition: 1s;
    animation: fade-in 2s ease-in-out;
}

.overlay ul li:nth-child(4):hover::before{
    content: "";
    z-index: -1;
    width: 300px;
    height: 400px;
    display: block;
    position: absolute;
    top: -180px;
    left: -110px;
    background: url(../img/menu/MAP.jpg) no-repeat 50% 50%;
    transition: 1s;
    animation: fade-in 2s ease-in-out;
}

@keyframes fade-in{
    0%{
        opacity: 0;
        top: -160px;
    }

    50%{
        opacity: 1;
        top: -180px;
    }

    100%{
        opacity: 1;
        top: -180px;
    }
}

/* responsive menu */
@media(max-width: 900px){
    .overlay ul li{
        text-align: center;
        display: block !important;
        margin: 0 !important;
        padding: 20px 0;
    }

    .overlay ul li:hover::before{
        width: 0% !important;
    }

}

/* liste-btn */
.list-overlay ul{
    list-style: none;
    position: fixed;
    bottom: 0;
    margin: 1.2em;
    right: 0;
    z-index: 9;
}

.list-bar {
    outline: none;
    padding: 0.9em;
    color: #000;
    border: 1px solid #fff;
    background: #fff;
    border-radius: 50%;
}

.list-overlay ul li:not(:last-child){
    padding-bottom: 4px;
}

@media(max-width: 900px){
    .list-overlay ul{
        bottom: 2%;
    }
}

/* content */

.content_row{
text-align: center;
}

.content{
    height: 58%;
    width: 40%;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index : 1;
}

.content_img{
    padding-bottom: 35px;
}

.content_paragraph{
    padding-bottom: 10px;
    color: white;
    font-weight: 400 !important;
}

.content_button{
    outline: none;
    padding: 7px 37px 7px 37px;
    border: 2px solid #fff;
    border-radius: 30px;
    /* transition: 1s;
    animation: fade-in 2s ease-in-out; */
}

.content_button:hover{
    background: #22459D;
}

.content_button a{
    color: white;
    text-decoration: none;
}

/* responsive menu */
@media(max-width: 900px){
    .content{
        width: 85%;
    }
}

/* FOOTER */
.footer{
    color: white;
    bottom: 2%;
    position: fixed;
    z-index: -1;
}

.footer .credits{
    font-size: 13px;
    font-weight: 100;
}

.footer .credits i{
    color: #b91111;
}

@media(max-width: 900px){
    .footer{
    width: 100%;
    bottom: 1%;
    text-align: center;
    }

    .footer .credits{
        font-size: 9px;
        font-weight: 600;
    }
}

/* content pdf  */
.content_pdf{
    height: 100%;
    width: 100%;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}



/* Project Area */ 
.project-area{
    position: absolute;
    top: 10%;
    right: 10%;
}
@media(max-width: 900px){
    .project-area{
        right: 0%;
    }
}

.title-h1{
    font-weight: 700;
    margin: auto;
}

.pb-5{
    padding-bottom: 3rem!important;
}

.button-group button{
    background: transparent;
    border: none;
    text-transform: uppercase;
    font-weight: 500;
}

.button-group button + button{
    padding: 1rem;
}
.button-group{
    padding: 0rem 0px 4rem;
}
.text-uppercase{
    margin: auto;
}

button:focus,
button:active
button:hover
.btn:active,
.btn:active{
  outline: 0px !important;
  box-shadow: none !important;
}

.img a:hover img{
    filter: brightness(1.1) drop-shadow(1px 8px 30px #b1afaf);
}

/* menu left */
.navbar{
	padding: 15px 10px;
	background: #fff;
	border: none;
	border-radius: 0;
	margin-bottom: 40px;
	box-shadow: 1px 1px 3px rgba(0,0,0,0.1);
}

.navbar-btn{
	box-shadow: none;
	outline: none!important;
	border: none;
}

.line{
	width: 100%;
	height: 1px;
	border-bottom: 1px dashed #ddd;
}

#sidebar {
	height: 100%;
    min-width: 250px;
    max-width: 250px;
	background: #000000cf;
    color: #fff;
    transition: 1s; 
    position: fixed;
    z-index: 9;
}
.components li a{
    font-family: 'montserrat';
}
.btn-bar{
	position: absolute;
    left: 250px;
    height: 100%;
	width: 20%;
	border-radius: 0 !important;
    background: #22459D;
    border: 0;
}

.btn-bar:hover{
	background-color: #2B65AE;
}

.fa-align-justify{
	position: absolute;
    top: 5%;
    left: 30%;
    color: #fff;
}

.title_span{
    color: #fff;
    position: absolute;
    transform: rotate(270deg);
    right: -33px;
    width: 120px;
    font-weight: 600;

}

#sidebar.active{
	margin-left: -250px;
}

#sidebar .sidebar-header{
	padding: 20px;
    text-align: center;
}
.sidebar-header img{
	width: 80%;
}
#sidebar ul.components{
	padding: 20px 0px;
}

#sidebar ul p{
	padding: 10px;
	font-size: 1.1em;
	display: block;
}

#sidebar ul li a{
	padding: 10px;
	font-size: 1.1em;
    display: block;
    font-size: 15px;
    font-weight: 600;
}
#sidebar ul li .sous_title{
	padding: 10px;
	font-size: 1.1em;
    display: block;
    font-size: 15px;
    font-weight: 400;
}

.a0{
	padding-left: 45px !important;
    font-weight: 300 !important;
    font-size: 14px !important;
}
#sidebar ul li a:hover {
    color: #22459D;
    background: #fff;
}



#sidebar ul li.active>a,
a[aria-expanded="true"] {
    color: #fff !important;
    background: #22459da6 !important;
}
a[data-toggle="collapse"] {
    position: relative;
}
.dropdown-toggle::after {
    display: block;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}

ul ul a {
    font-size: 0.9em !important;
    padding-left: 30px !important;
}



@media(maz-width:768px){
	#sidebar{margin-left: -250px;}
	#sidebar.active{
		margin-left: 0px;
	}
	#sidebarCollapse span{
		display: none;
	}
}


/* ifram content */
.content_ifram{
    position: absolute;
    top: 0;
    height: 100vh;
    width: 100%;
    right: 0;
}
/* map um6p */
.content_ifram_map {
    position: absolute;
    top: 0;
    height: 100vh;
    width: 100%;
    right: 0;
}
.content_ifram, .content_ifram_map iframe{
    border: 0;
}

.i4ewOd-pzNkMb-haAclf {
    background-color: #22459D !important;
}

/* butto content */
@media (max-width: 900px){
    .content_button{
        display: none;
    }
    
}