/*
	Theme Name: Ino By Inova-Web
	Version: 1.0
	Description: Thème enfant de Divi propulsé par INOVA-WEB
	Template: Divi
	Author: Inova-Web
	Author URI: https://www.inova-web.fr
*/

@import url("../Divi/style.css");


/*------------------------------------------------------------*/
/*------------------------  CSS  -----------------------------*/
/*------------------------------------------------------------*/

#menu-menu-principal .devis {
	padding:10px !important;
	background:#5d8927 !important;
	transition: all 0.5s linear !important;
}
#menu-menu-principal .devis a {
	color:#ffffff !important;
	transition: all 0.5s linear !important;
}
#menu-menu-principal .devis:hover {
	padding:10px !important;
	background:#ffffff !important;
}
#menu-menu-principal .devis a:hover {
	color:#5d8927 !important;
}
/* STYLES */

body, #page-container {
    overflow-x: hidden;
}

h1, h2 {
    margin-bottom: 40px;
}

.number {
    color: #000000;
    font-size: 3rem;
    font-weight: 700;
}

.underlined {
    position: relative !important;
    z-index: 1;
/* 	text-decoration: underline #b2e3af; */
/* 	border-bottom:  10px solid #b2e3af; */
	display: inline-block
}

.underlined::before {
    content: '';
    background: #b2e3af;
    border-radius: 5px;
    position: absolute;
    width: 100%;
    height: 10px;
    bottom: 13px;
    z-index: -1;
}


/* ANIMATIONS */

.float {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
	0% {
		box-shadow: 0 5px 15px 0px rgba(0,0,0,0.6);
		transform: translatey(0px);
	}
	50% {
		box-shadow: 0 25px 15px 0px rgba(0,0,0,0.2);
		transform: translatey(20px);
	}
	100% {
		box-shadow: 0 5px 15px 0px rgba(0,0,0,0.6);
		transform: translatey(0px);
	}
}


/* HEADER MOBILE */

.mob-menu-header-holder {
    -webkit-box-shadow: 0px 6px 18px 0px rgba(0,0,0,0.1); 
    box-shadow: 0px 6px 18px 0px rgba(0,0,0,0.1);
}


/* SECTION MERIT */
.et_pb_blurb_position_left .et_pb_main_blurb_image, .et_pb_blurb.et_pb_text_align_left .et_pb_blurb_content .et_pb_blurb_container {
    vertical-align: middle;
}


/* CAROUSEL */

.dica_divi_carouselitem, .dica-item-content {
    transition: all 350ms;
}

.dica_divi_carouselitem:not(.swiper-slide-active) {
    filter: saturate(0);
}

.dica_divi_carousel_0.dica_divi_carousel .dica_divi_carouselitem .dica-item-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.dica-item-content {
    position: absolute;
    width: 90%;
    bottom: 5%;
    height: 100px;
    background: rgba(178, 227, 175, 0.5);
    backdrop-filter: blur(9px);
    -webkit-backdrop-filter: blur( 9px );
    vertical-align: middle;
    border-radius: 20px;
    opacity: 1;
}

.dica_divi_carouselitem .dica-item-content:not(.swiper-slide-active .dica-item-content) {
    opacity: 0;
}

/* SECTION BRAND */
.swiper-button-next, .swiper-button-prev {
    border-radius: 10px;
}



/* FOOTER */

@media all and (max-width:768px) {
    .row_footer {
        display: flex;
        flex-wrap: wrap;
    }

    .column-footer {
        width: 100% !important;
        margin-bottom: 30px !important;
        margin-right: 0 !important;
    }

}

@media (min-width: 981px) and (max-width: 1300px) {
	.row_footer, .row-merit {
        display: flex;
        flex-wrap: wrap;
    }

    .column-footer, .column-merit {
        width: 47.25% !important;
        margin-bottom: 30px !important;
        margin-right: 5.5% !important;
    }
	
	.column-footer:nth-child(2n), .column-merit:nth-child(2n) {
		margin-right: 0 !important;
	}
}



/*------------------------------------------------------------*/
/*-----------------CLASSE DE VISIBILITE-----------------------*/
/*------------------------------------------------------------*/

.hidden {
	display: none !important;
}

/*------------------------------------------------------------*/
/*-------------CENTRAGE VERTICAL DANS DIV---------------------*/
/*------------------------------------------------------------*/

.d-flex {
	display: flex;
}

.justify-content-start {
	justify-content: start;
}

.justify-content-center {
	justify-content: center;
}

.justify-content-end {
	align-items: end;
}

.align-items-start {
	align-items: start;
}

.align-items-center {
	align-items: center;
}

.align-items-end {
	align-items: end;
}

.ds-vertical-align {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ds-vertical-align-bottom {
    display: flex;
    align-items: flex-end;
}

.align-center {
    margin: auto !important;
}


/*------------------------------------------------------------*/
/*LES COLONNES NE SE METTENT PAS SOUS LES AUTRES EN PH ET TAB-*/
/*------------------------------------------------------------*/

@media (min-width: 768px) and (max-width: 980px) {
    .row-nowrap {
        display:flex;
        flex-wrap:nowrap;
        align-items:center;
    }

    .last-column-number {
        margin-bottom: 30px !important;
    }
}

/*------------------------------------------------------------*/
/*----------------ORDRE MOBILE et TABLETTES--------------------*/
/*------------------------------------------------------------*/
@media all and (max-width: 980px) {
	/*** wrap row in a flex box ***/
	.custom_row {
		display: -webkit-box;
		display: -moz-box;
		display: -ms-flexbox;
		display: -webkit-flex;
		display: flex;
		-webkit-flex-wrap: wrap; /* Safari 6.1+ */
		flex-wrap: wrap;
	}
	 
	/*** custom classes that will designate the order of columns in the flex box row ***/
	.first-on-mobile {
		-webkit-order: 1;
		order: 1;
	}
	 
	.second-on-mobile {
		-webkit-order: 2;
		order: 2;
	}
	 
	.third-on-mobile {
		-webkit-order: 3;
		order: 3;
	}
	 
	.fourth-on-mobile {
		-webkit-order: 4;
		order: 4;
	}
	/*** add margin to last column ***/
	.custom_row:last-child .et_pb_column:last-child {
		margin-bottom: 30px;
	}	 
}

/*------------------------------------------------------------*/
/*-------------------  BACK-OFFICE  --------------------------*/
/*------------------------------------------------------------*/

#wpadminbar #adminbarsearch::before,
#wpadminbar .ab-icon::before,
#wpadminbar .ab-item::before {
  color: #174788 !important;
}

#wpadminbar .quicklinks .menupop ul li a,
#wpadminbar .quicklinks .menupop ul li a strong,
#wpadminbar .quicklinks .menupop.hover ul li a,
#wpadminbar.nojs .quicklinks .menupop:hover ul li a {
  color: #174788 !important;
}

#wpadminbar .ab-item::before {
  color: #174788 !important;
}

.login h1 a {
  height: 250px !important;
}

body.login {
  background: rgb(23, 71, 136) !important;
  background: linear-gradient(
    90deg,
    rgba(23, 71, 136, 1) 0%,
    rgba(9, 9, 121, 1) 50%,
    rgba(131, 59, 150, 1) 100%
  ) !important;
}

/*------------------------------------------------------------*/
/*------------------------FOOTER------------------------------*/
/*------------------------------------------------------------*/

@font-face{
    font-family: 'Roboto Condensed';
    src: url("assets/webfonts/RobotoCondensed-Light.ttf");
}

#containercopy #copyrightrocket:hover {
    background-image:url('assets/img/footer/rocketColor.svg') !important;
}

#containercopy{
    font-family:"Roboto Condensed"; 
	font-weight:700; 
	font-size:12px;
	padding: 25px 0px 25px 0px;
	border-top:1px solid #ffffff; 
	line-height: 2em;
}

#containercopy a.div3 { 
	height: 50px;
	width: 50px;
	display: block;
    height: 50px;
    width: 50px;
    transition: all ease-in-out .5s;
}

#containercopy .cell1 {
	display:inline-block;
	width:50%;
	text-align:left
}

#containercopy .cell2 {
	display:inline-block;
	width:49%;
	text-align:right
}

#containercopy .copyinova {
	display: inline-block; 
	height: 100%
}

#containercopy .copylogo {
	 width: 50px;   
	display: inherit;   
	height: 50px; 
	float: right;  
	margin-left: 25px;
}

@media all and (max-width: 767px) {

	#containercopy .cell1 {
		display:block;
		width:100%;
		text-align:center
	}

	#containercopy .cell2 {
		display:block;
		width:100%;
		text-align:center
	}

	#containercopy .copyinova {
		display: block; 
	}

	#containercopy .copylogo {
		display: block;
		float: none;
		margin:auto;
	}	
}