/*************** BANNER HOME ***************/

.home-banner {
    display: flex;
    overflow: visible;
    position: relative;
    width: 100%;
    min-height: calc(100vh - 100px);
	background: var(--blue);
}

.home-banner-animation{
    position: absolute;
    height: 95%;	
	width:100%;
}
.home-banner-animation:after{
    content: "";
    position: absolute;
    left: 0;
    height: 100%;
    width: 100%;
    top: 0;
    background: linear-gradient(to top, var(--blue) 0%, transparent 15%);
    z-index: 1;
}

/* femme & bleue */
.home-banner-img-wrap{
    position: absolute;
    right: 0;
    height: 100%;
    top: 0;
    width: 60%;
	z-index: 0;
}
.home-banner-img-wrap:after {
    content: "";
    position: absolute;
    left: 0;
    height: 100%;
    width: 100%;
    top: 0;
    background: linear-gradient(to right, var(--blue) 0%, transparent 30%);
    z-index: 1;
}
.home-banner-img-wrap::before {
    content: "";
    position: absolute;
    left: 0;
    height: 100%;
    width: 100vw;
    top: 0;
    background: var(--blue);
    z-index: 0;
    transform: translateX(-100%);
}
#home-banner-img {
    position: absolute;
    left: 0;
    height: 100%;
    top: 0;
    width: 100%;
	object-fit:cover;
	object-position:left bottom;
}


/* paysage */
#home-banner-bg {
    position: absolute;
    left: 40%;
    top: 0;
    height: 100%;
    z-index: 0;
    max-width: unset;
	animation-name: defilement;
  	animation-duration: 25s;
	animation-iteration-count: infinite;
	animation-timing-function: ease-in-out;
	animation-direction: alternate-reverse ;
}

/* texte */
.home-banner-content {
    display: flex;
    flex-direction: column;
    height: fit-content;
    align-self: center;
	z-index: 2;
}
.home-banner-content *{
	color:var(--white);
}
.home-banner-txt {
    width: 40%;
	min-width: 400px;
	display: flex;
    flex-direction: column;
    gap: 20px;
	padding-top: 70px;
	padding-bottom: 70px;
}

@keyframes defilement {
  from {
	  	transform: translateX(0);
	}
  to {
	  	transform: translateX(calc(-100% + 60vw));
	}
}

@media screen and (max-width:1200px){
	.home-banner-animation{
		height: 75%;
		bottom:0;
	}
	.home-banner-animation:before{
		content: "";
		position: absolute;
		left: 0;
		height: 100%;
		width: 100%;
		top: -1px;
		background: linear-gradient(to bottom, var(--blue) 0%, transparent 15%);
		z-index: 1;
	}

}
@media screen and (max-width:1000px){
	.home-banner{
		min-height: calc(75vh - 100px);
	}	
}
@media screen and (max-width:767px){
	.home-banner-animation{
		position: relative;
		height:fit-content!important;
	}
	section.home-banner {
		flex-direction: column-reverse;
		height: fit-content;
	}
	.home-banner-txt{
		width: 100%;
		min-width:unset!important;
		padding-top: 50px;
    	padding-bottom: 0px;
	}	
	.home-banner-content *{
		margin-bottom: 0;
	}

	.home-banner-img-wrap{
		width: 125%;
		height: fit-content!important;
		position: relative;
	}
	#home-banner-img {
		height: auto;
		position:relative;
	}
	.home-banner-img-wrap:after{
		background:linear-gradient(to bottom, var(--blue) 0%, transparent 30%);
	}
	
	.home-banner-animation:before{
		background:transparent;
	}
}

/*************** REASSURANCE ***************/
.reassurance{
    background: var(--light-blue);	
}
.reassurance-wrap {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding-top: 70px;
    padding-bottom: 120px;
}
.reassurance-item {
    display: flex;
    gap: 15Px;
    align-items: start;
}
.reassurance-title {
    margin-bottom: 16px;
    color: var(--blue);
}
.reassurance-item .reassurance-txt {
    margin-bottom: 0;
}
.reassurance-img-wrap {
    width: 40px;
}
.reassurance-img {
    height: 40px;
	width:auto;
}
.reassurance-img-wrap img {
    max-height: 40px;
}
.reassurance-content {
    width: calc(100% - 55px);
}
@media screen and (min-width:1000px) and (max-width:1300px){
	.reassurance-item {
		flex-direction: column;
	}
	.reassurance-content {
		width: 100%;
	}
	.reassurance-wrap{
		padding-bottom: 70px;
	}
}
@media screen and (max-width:1000px){
	.reassurance-wrap {
		grid-template-columns: repeat(2, 1fr);
		padding-top: 60px;
		padding-bottom: 60px;
	}
}
@media screen and (max-width:767px){
	.reassurance-wrap {
		grid-template-columns: repeat(1, 1fr);
		padding-top: 50px;
		padding-bottom: 50px;
	}
}
@media screen and (max-width:300px){
	.reassurance-item {
		flex-direction: column;
	}
	.reassurance-content {
		width: 100%;
	}
}
/*************** NOUVEAUTES ***************/

.new-vehicules{
	margin-top: -70px !important;
	margin-bottom: -10vh !important;
	z-index: 2;
    position: relative;
}

/* Liste véhicules */
.news-vehicules-wrap {
    display: flex;
    gap: 40px;
    align-items: end;
}
.vehicule-card span.btn-light-orange {
    pointer-events: none;
}
.news-vehicules-title{
	margin-top:100px;
	min-width: 260px;
}
.news-vehicules-list {
    display: flex;
    gap: 20px;
}

/* Card véhicule */
/*.vehicule-card {
    width: 33.3%;
}*/
.news-vehicules-list .vehicule-card {
    width: 33.3%;
}

.vehicule-card-img-wrap {
    position: relative;
	margin-bottom: 20px;
	display: flex;
}

img.vehicule-card-img {
	width:100%;
    aspect-ratio: 4 / 3;
    border-radius: 20px;
    box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.16);
	object-fit: cover;
	min-height: 100px;
}
.tag-nouveau {
    position: absolute;
    right: 0;
    z-index: 2;
    background: var(--orange);
    top: 25px;
    padding: 2px 15px;
    border-radius: 6px 0 0 6Px;
    color: var(--white);
    font-weight: 700;
    font-size: 14px;
}

.vehicule-card-title {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    align-items: start;
	margin-bottom: 5px;
}
.vehicule-card-title * {
    margin-bottom: 0;
}
.vehicule-card-title a {
    width: calc(100% - 40px);
	color:var(--blue);
}
.a-partir-de {
    font-size: 14px;
}
.wishlist {
    width: 30px;
	cursor: pointer;
	transition:0.3s ease-in-out;
}
.wishlist *{
	transition:0.3s ease-in-out;	
}
.wishlist:hover{
    fill:var(--blue)!important;
}

.wishlist-btn.in-wishlist svg path {
    fill: var(--blue);
}
.wishlist-btn.not-in-wishlist {
    height: fit-content;
    display: flex;
}
.wishlist-btn.not-in-wishlist svg path {
    fill: none;
}

/*
.wishlist-button-wrap {
	margin: 0!important;
}
.wishlist-button-wrap .wishlist_save {
    margin: 0!important;
}
span.wishlist_save_icon i {
    font-size: 26px!important;
}*/


@media screen and (max-width:1300px){
	.new-vehicules{
		margin-top: 0px !important;
	}
	.news-vehicules-wrap{
		flex-direction: column;
		align-items: start;
	}
	.news-vehicules-title{
		margin-top: 60px;
	}
}
@media screen and (max-width:900px){

	.news-vehicules-container{
		overflow-x: scroll;
		scrollbar-width: none;
		width: calc(100% + 60px);
        margin-left: -20px;
        padding-left: 20px;
	}
	.news-vehicules-container::-webkit-scrollbar {
		display: none; 
	}
	.news-vehicules-wrap {
        gap: 25px;
    }
	.news-vehicules-list{
		width:max-content;
		padding-right: 20px;
        margin-right: 20px;
		padding-top: 20px;
	}
	.vehicule-card, .news-vehicules-list .vehicule-card {
		flex-shrink: 0;
        width: 260px;
	}
	.vehicules-grid  .vehicule-card{
		width: 100%!important;
	}
}

@media screen and (max-width:767px){
	.vehicule-card, .news-vehicules-list .vehicule-card{
        width: 245px;
	}
	.vehicules-grid  .vehicule-card{
		width: 100%!important;
	}
	.news-vehicules-list img.vehicule-card-img {
		aspect-ratio: 4 / 5;
	}
	.new-vehicules{
		margin-bottom: 0vh !important;
	}
	.wishlist {
		width: 25px;
	}
}


/*************** RECHERCHE ***************/

/* fond */
.vehicules-search{
	position:relative;
	display: flex;
}
.vehicules-search:before{
	content:"";
	position:absolute;
	left:0;
	top:0;
	width:100%;
	height:100%;
	background: linear-gradient(0deg, transparent 50%, #F9F9F9 85%), url(/wp-content/uploads/2025/02/nouveautes-camping-car.jpeg);
	background-size:cover;
	background-repeat:no-repeat;
	background-position:50% 70%;
	opacity:0.7;
	z-index:-1;
}
.ccpap-logo{
    position: absolute;
    bottom: 0;
    right: 0;
    height: calc(100% + 10vh);
    max-width: 60%;
    mix-blend-mode: hard-light;
    object-fit: contain;
    object-position: bottom right;
	z-index:-1;
}

/* recherche */
.search-container {
    margin-top: 250px !important;
    margin-bottom: 100px !important;
}

.search-wrap-content{
	border-radius: 32px;
	background: linear-gradient(78deg, rgba(249, 249, 249, 0.30) 71.2%, rgba(249, 249, 249, 0.70) 100%), linear-gradient(246deg, rgba(249, 249, 249, 0.30) 52.12%, rgba(249, 249, 249, 0.70) 100%);
	box-shadow: 0px 4px 36px 0px rgba(249, 249, 249, 0.25) inset, 0px 170px 48px 0px rgba(40, 35, 92, 0.00), 0px 109px 44px 0px rgba(40, 35, 92, 0.01), 0px 61px 37px 0px rgba(40, 35, 92, 0.05), 0px 27px 27px 0px rgba(40, 35, 92, 0.09), 0px 7px 15px 0px rgba(40, 35, 92, 0.10);
	backdrop-filter: blur(4px);
	padding: 70px 60px;
}
.search-wrap-content h2 {
    text-align: center;
}
.search-forms-wrap {
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.search-type-wrap, .search-map-wrap {
	position:relative;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.16);
	justify-content: end;
	flex-direction:column;
    display: flex;
}
.search-type-wrap{
    background: var(--white);	
}
.search-type-wrap, .search-map-wrap * {
    margin-bottom: 0;
	text-align: center;
}
.search-map {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: linear-gradient(0deg, white 50%, transparent);
	border-radius: 8px;
	overflow:hidden;
}

.search-map img {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    z-index: -1;
}
.search-form{
	z-index:2;
	margin-top: 100px;
}

.search-type-wrap .btn-plein, .search-map-wrap .btn-plein{
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 50%);
	box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.16);
	min-width: 185px;
}


/* recherche rayon */
.search-map-wrap{
	width:40%;	
}
.search-map-wrap h3 {
    margin-bottom: 10px;
}
.search-rayon-tags {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin: 6px 0 15Px;	
}
.search-rayon-tag.p {
    padding: 6Px 14px;
    border: 1px solid var(--blue);
    border-radius: 30px;
		cursor:pointer;
}
.cp_search {
    display: flex;
    flex-wrap: nowrap;
}
.cp_search:hover {
    background:var(--yellow)!important;
	border-color:var(--yellow)!important;
	color:var(--white)!important;
}
.cp_search svg{
	cursor:pointer;
}
.cp_input {
    height: 22px!important;
    border-width: 0 0 1px 0 !important;
    color: var(--white) !important;
    border-color: white !important;
    border-radius: 0 !important;
}
.cp_input::placeholder {
    color: var(--white)!important;
    opacity: 1!important;
}

/* recherche type */
.search-type-wrap{
	width:60%;
}
.search-type-tag img {
    height: 45px;
}
.search-type-tag {
    display: flex;
    flex-direction: column;
    gap: 10px;
	cursor:pointer;
}
.home .search-type-tag, .configurateur-search-type-wrap .search-type-tag {
    border: 3px solid transparent;
    padding: 13px;
    border-radius: 7px;
    box-sizing: border-box;
	/*background:white;
	box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.16);*/
}
.search-type-tags {
    display: flex;
    justify-content: center;
    gap: 15px;
	margin-bottom: 12px;
}
.search-type-wrap .btn-plein{
	cursor:pointer;
	width: max-content;
}

.sep-dashed{
	height:auto;
	width:1px;
	background-image: repeating-linear-gradient(-36deg, #e94f1c, #e94f1c 10px, transparent 10px, transparent 25px, #e94f1c 25px), repeating-linear-gradient(54deg, #e94f1c, #e94f1c 10px, transparent 10px, transparent 25px, #e94f1c 25px), repeating-linear-gradient(144deg, #e94f1c, #e94f1c 10px, transparent 10px, transparent 25px, #e94f1c 25px), repeating-linear-gradient(234deg, #e94f1c, #e94f1c 10px, transparent 10px, transparent 25px, #e94f1c 25px);
	background-size: 1px 100%, 100% 1px, 1px 100% , 100% 1px;
	background-position: 0 0, 0 0, 100% 0, 0 100%;
	background-repeat: no-repeat;
	flex-shrink: 0;
}

@media screen and (max-width:1300px){
	.search-wrap-content{
		padding: 60px 30px;
	}
	.search-type-tag span {
		font-size: 18Px !important;
	}
	.search-forms-wrap{
		gap: 20px;
	}
}
@media screen and (max-width:1000px){
	.search-wrap-content{
		padding: 60px 20px;
	}
	.search-rayon-tags{
		flex-wrap: wrap;
	}
	.search-type-wrap, .search-map-wrap{
		padding: 20px;
	}
}
@media screen and (max-width:900px){
	.search-forms-wrap {
		flex-direction: column;
		gap: 40px;
	}
	.search-type-wrap, .search-map-wrap{
		width:100%;
	}
}
@media screen and (max-width:767px){
	.search-container{
		margin-top: 70px !important;
		margin-bottom: 270px !important;
	}
	.search-wrap-content {
        padding: 40px 20px 60px 20px;
    }
	.vehicules-search:before{
		bottom: 0;
		top:unset;
		height: 500px;
	}
}

@media screen and (max-width:600px){
	.search-type-tags{
		flex-wrap: wrap;
		gap: 30px 15px;
	}
	.search-type-tag {
		width: calc(50% - 16px);
	}
	span.sep-dashed:nth-of-type(even){
		    display: none;
	}
	.cp_search {
		padding: 4px 20px;
	}
}

/*************** SELECTION DU MOIS ***************/

.vehicules-selection{
	background-color:var(--orange);
	position:relative;
}
.vehicules-selection:after{
	content:"";
	position:absolute;
	left:0;
	right:0;
	top:0;
	bottom:0;
	background-image:url(/wp-content/uploads/2025/03/geographe.png);
	background-size:cover;
	background-repeat:no-repeat;
	background-position:center;
	opacity:0.15;
}
.selection-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 70px;
    padding-bottom: 70px;
	z-index: 1;
    position: relative;
	gap: 40px;
	width:100%;
	position:relative;
}
.vehicules-selection .selection-container:before{
	content:"";
	position:absolute;
	left:0;
	right:0;
	top:0;
	bottom:0;
	background: radial-gradient(50% 50% at 50% 50%, #E94F1C 46.5%, rgba(233, 79, 28, 0.00) 100%);
	background-size:cover;
	background-repeat : no-repeat;
	z-index: -1;
}
.vehicules-selection-row {
    display: flex;
    gap: 40px;
	width:100%;
}

.selection-container h2{
	color:var(--white);	
	margin-bottom:0;
}

.vehicules-selection-img {
    max-width: calc(67% - 40px);
    height: auto;
	
}
.vehicule-slider-for, .vehicule-slider-nav, .vehicules-selection-thumbnails{
    width: 100%;	
}
.vehicule-slider-nav .slick-track{
	margin-left:0;
	margin-right:0;
	margin-bottom: 8px;
}
.vehicule-slider-nav .slick-slide>div {
    margin-right: 8px;
	cursor:pointer;
}
.vehicule-slider-nav .slick-track img {
    aspect-ratio: 4 / 3;
    object-fit: cover;
	border-radius: 8px;
}
.vehicules-selection-img img{
    width: 100%;
    height: auto;
    border-radius: 16px;
    overflow: hidden;
	aspect-ratio: 5 / 3;
    object-fit: cover;
}

.vehicules-selection-infos{
	width:33%;
	min-width: 300px;
}
.vehicules-selection-textes {
    background: var(--white);
    border-radius: 8px;
	height: 100%;
    padding: 20px;
}
.vehicules-selection-txt {
	padding: 10px;
    background: var(--light-blue);
    border-radius: 8px;
    margin: 20px 0;
}
.vehicules-selection-txt span, .vehicules-selection-txts span {
    display: block;
}
.selection-container a{
	box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.16);
}
.vehicules-selection-thumbnails-mobile{
	display:none!important;
}
@media screen and (max-width:1000px){
	.vehicules-selection-img{
		max-width: calc(100% - 330px);
	}
	.vehicules-selection-row{
		gap: 30px;
	}
	.vehicules-selection-thumbnails-mobile{
		display:flex!important;
		margin-top: 8px;
	}
	.vehicules-selection-thumbnails{
		display:none!important;
	}
}
@media screen and (max-width:1000px){
	.vehicules-selection-row {
		flex-direction: column;
		gap: 10px;
	}
	.selection-container{
		gap: 30px;
	}
	.vehicules-selection-img, .vehicules-selection-infos {
        max-width: 100%;
        width: 100%;
		min-width:unset;
    }
	.vehicules-selection-thumbnails-mobile{
		margin-top: 18px;
	}
	.vehicules-selection-txt{
		width: fit-content;
	}
}


/*************** VÉHICULES DE TOUS LES HORIZONS ***************/

.vehicules-horizons{
	background-image:url(/wp-content/uploads/2025/03/horizons-1.jpeg);
	background-size:cover;
	background-repeat:no-repeat;
	background-position:center;	
}
.vehicules-horizons-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 100px;
    padding-bottom: 70px;
	z-index: 1;
    position: relative;
	gap: 40px;
}
.vehicules-horizons-container h2{
	margin-bottom:0;
}
.vehicules-horizons-row {
    display: flex;
    gap: 40px;
}
.vehicules-horizons-single {
    width: 50%;
}
.vehicules-horizons-single img {
    border-radius: 16px;
    margin-bottom: 20px;
    aspect-ratio: 5 / 3;
    object-fit: cover;
}
.vehicules-horizons-single-main {
    display: flex;
    gap: 30px;
    justify-content: space-between;
}
.vehicules-horizons-single span.btn-light-orange {
    max-width: 170px;
	height: fit-content;
}
.vehicules-horizons-single h3{
	text-transform:uppercase;
	margin-bottom:0px;
}
.vehicules-horizons-title{
	margin-bottom:10px;
}
.financable{
	color:var(--orange);
}
.vehicules-horizons-single a {
    margin: 30px auto;
}

.vehicules-caracteristiques {
    background: var(--light-blue);
    padding: 20px;
    margin-top: 20px;
    border-radius: 8px 8px 0 0;
}
.vehicules-caracteristiques-occupants {
    padding: 20px;
    background: var(--white);
    margin: 20px -17px -17px -17px;
}
.vehicules-caracteristiques p {
    margin-bottom: 10px;
}
 .liste-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 10px;
}
.tag{
	border-radius: 24px;
	border: 0.5px solid var(--blue);
	padding: 4px 20px;
	display: inline-flex;
	min-width: 64px;
	justify-content:center;
}
@media screen and (max-width:1300px){
	.vehicules-horizons-single-main {
		flex-direction: column;
		gap: 0;
	}
	
	.vehicules-horizons-single span.btn-light-orange{
		    max-width: unset;
	    margin-bottom: 10px;
	}
	.vehicules-horizons-single img{
		aspect-ratio: 4 / 3;
	}
}

@media screen and (max-width:1000px){
	.vehicules-horizons-row {
		gap: 20px;
	}
	.vehicules-selection-txts * {
		margin: 5px 0px;
		line-height: normal;
	}
	.vehicules-caracteristiques{
		padding: 15px;
	}
	.tag {
		padding: 2px 15px;
	}
	.vehicules-caracteristiques-occupants {
		padding: 15px;
		margin: 15px -13px -13px -13px;
	}
}
@media screen and (max-width:900px){
	.vehicules-horizons-wrap {
        overflow-x: scroll;
        scrollbar-width: none;
		width: calc(100% + 60px);
		padding-left:20px;
		margin-left:-20px;
    }
	.vehicules-horizons-row{
		width:max-content;
		padding-right:20px;
		margin-right:20px;
	}
	.vehicules-horizons-single{
		width: 390px;
		flex-shrink: 0;
	}

	.vehicules-horizons-container{
		align-items: start;
	}
}
@media screen and (max-width:767px){

	.vehicules-caracteristiques{
		padding: 10px;
	}
	.tag {
        font-size: 14px; 
	}
	.vehicules-caracteristiques-occupants {
        padding: 10px;
        margin: 15px -8px -8px -8px;
    }
	.vehicules-horizons-container{
		padding-top: 60px;
		padding-bottom: 60px;
		gap: 30px;
	}
	.vehicules-horizons-container h2 {
		text-align: center;
		width: 100%;
	}
	.vehicules-horizons-single a{
		margin: 22px auto 0;
	}
	
}
@media screen and (max-width:600px){
	.vehicules-horizons-single{
		width: 350px;
		max-width: 72vw;
	}
}

/*************** INSPIRATION VOYAGES ***************/

section.paysage-horizon img{
	max-width:unset;
	width: 100%;
}

section.inspiration-voyages{
	background:var(--light-orange);
}
.inspiration-voyages-container{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 100px;
    padding-bottom: 70px;
    position: relative;
	gap: 40px;
}
.inspiration-voyages-container h2{
	margin-bottom:0;
}
.inspiration-voyages-row{
    display: flex;
    gap: 30px;
}

.inspiration-single img {
    border-radius: 16px;
    margin-bottom: 20px;
    aspect-ratio: 4 / 1;
    object-fit: cover;
}

.inspiration-single a {
    margin-right: 0;
    margin-left: auto;
}

.inspiration-voyages-container h2{
	text-align:center;
}
.inspi-home h3{
	font-size: 20px;
}
@media screen and (max-width:1000px){
	.inspiration-voyages-container{
		padding-top: 60px;
    	padding-bottom: 50px;
	}
}
@media screen and (min-width:901px){
	.inspiration-single.inspi-home {
		max-width: 50%;
		width: 100%;
	}	
}

@media screen and (max-width:900px){
	.inspiration-voyages-wrap {
        overflow-x: scroll;
        scrollbar-width: none;
		width: calc(100% + 60px);
		padding-left:20px;
		margin-left:-20px;
    }
	.inspiration-voyages-home{
		width:max-content;
		padding-right:20px;
		margin-right:20px;
	}
	.inspi-home{
		width: 260px;
		flex-shrink: 0;
	}

	.inspiration-voyages-container{
		align-items: start;
	}
	.inspiration-voyages-container h2{
		width:100%;
		text-align:center;
	}
	.inspi-home h3{
		font-size: 19px;
	}
}
@media screen and (max-width:767px){
	.inspiration-voyages-container h2 br {
		display: none;
	}
	.inspi-home{
		width: 245px;
	}
		.inspi-home h3{
		font-size: 18px;
	}
}
