/*
Theme Name: GreenNature Child
Theme URL: https://convergence-durable.ch
Description:  GreenNature Child for the Convergence durable website
Theme Author: Gilston Digital SA
Author URL: https://gilston.digital
Template: greennature
Version: 1.0.0
Text Domain: greennature-child
*/
body{
  font-size: 15px;
  background-color: #191612;
}


/*** custom select ****/
/* class applies to select element itself, not a wrapper element */
.select-css {
  display: block;
  font-size: 15px;
  font-family: 'Lato',sans-serif;
  font-weight: 400;
  color: #797979;
  line-height: 1.3;
  padding: .6em 1.4em .5em .8em;
  width: 100%;
  max-width: 100%; /* useful when width is set to anything other than 100% */
  box-sizing: border-box;
  margin: 0;
  border: 1px solid #ebebeb;
  border-radius: 3px;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-color: #f5f5f5;
  /* note: bg image below uses 2 urls. The first is an svg data uri for the arrow icon, and the second is the gradient.
    for the icon, if you want to change the color, be sure to use `%23` instead of `#`, since it's a url. You can also swap in a different svg icon or an external image reference
  */
  background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23007CB2%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E');
  background-repeat: no-repeat, repeat;
  /* arrow icon position (1em from the right, 50% vertical) , then gradient position*/
  background-position: right .7em top 50%, 0 0;
  /* icon size, then gradient */
  background-size: .65em auto, 100%;
}
/* Hide arrow icon in IE browsers */
.select-css::-ms-expand {
  display: none;
}
/* Hover style */
.select-css:hover {
  border-color: #888;
}
/* Focus style */
.select-css:focus {
  border-color: #aaa;
  /* It'd be nice to use -webkit-focus-ring-color here but it doesn't work on box-shadow */
  box-shadow: 0 0 1px 3px rgba(59, 153, 252, .7);
  box-shadow: 0 0 0 3px -moz-mac-focusring;
  color: #222;
  outline: none;
}

/* Set options to normal weight */
.select-css option {
  font-weight:normal;
}

/* Support for rtl text, explicit support for Arabic and Hebrew */
*[dir="rtl"] .select-css, :root:lang(ar) .select-css, :root:lang(iw) .select-css {
  background-position: left .7em top 50%, 0 0;
  padding: .6em .8em .5em 1.4em;
}

/* Disabled styles */
.select-css:disabled, .select-css[aria-disabled=true] {
  color: graytext;
  background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22graytext%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E'),
    linear-gradient(to bottom, #ffffff 0%,#e5e5e5 100%);
}

.select-css:disabled:hover, .select-css[aria-disabled=true] {
  border-color: #aaa;
}


/*** custom checkbox ***/

/* Customize the label (the container) */
.custom-checkbox-container {
 display: block;
 position: relative;
 padding-left: 35px;
 margin-bottom: 12px;
 cursor: pointer;
 font-size: 15px;
 line-height: 18px;
 -webkit-user-select: none;
 -moz-user-select: none;
 -ms-user-select: none;
 user-select: none;
 min-height: 25px;
}

/* Hide the browser's default checkbox */
.custom-checkbox-container input {
 position: absolute;
 opacity: 0;
 cursor: pointer;
 height: 0;
 width: 0;
}

/* Create a custom checkbox */
.checkmark {
 position: absolute;
 top: 0;
 left: 0;
 height: 25px;
 width: 25px;
 background-color: #eee;
}

/* On mouse-over, add a grey background color */
.custom-checkbox-container:hover input ~ .checkmark {
 background-color: #ccc;
}

/* When the checkbox is checked, add a green background */
.custom-checkbox-container input:checked ~ .checkmark {
 background-color: #5dc269;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
 content: "";
 position: absolute;
 display: none;
}

/* Show the checkmark when checked */
.custom-checkbox-container input:checked ~ .checkmark:after {
 display: block;
}

/* Style the checkmark/indicator */
.custom-checkbox-container .checkmark:after {
 left: 9px;
 top: 5px;
 width: 5px;
 height: 10px;
 border: solid white;
 border-width: 0 3px 3px 0;
 -webkit-transform: rotate(45deg);
 -ms-transform: rotate(45deg);
 transform: rotate(45deg);
}

.excerpt-read-more{
  display: block;
  text-transform: uppercase;
  margin-top: 6px;
}
.greennature-classic-portfolio .portfolio-info{
  min-height: 40px;
}
.greennature-classic-portfolio .portfolio-excerpt .portfolio-description{
  height: 70px;
  overflow: hidden;
}
.portfolio-thumbnail{
  width: 100%;
  padding-bottom: 56%;
  position: relative;
  overflow: hidden;
}
.portfolio-thumbnail img{
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
}
.greennature-portfolio-style2 .greennature-portfolio-thumbnail{
    width: 30%;
}
.greennature-portfolio-style2 .portfolio-info{
  padding-bottom: 4px;
}
.greennature-portfolio-info .portfolio-info .info-head.block{
  margin-bottom: 6px;
  display: block;
}
.greennature-portfolio-info .portfolio-info .info-description{
  margin-bottom:10px;
}
.categoriy-item{
  width: 90px;
  height: 90px;
  float: left;
  margin-right: 15px;
  margin-bottom: 15px;
  background-color: #f5f5f5;
  padding: 15px;
  text-align: center;
}
.categoriy-item:last-child{
  margin-right: 0;
}
.categoriy-item img{
  width: 55px;
  height: 55px;
  display: block;
  margin: 0 auto;
}

.categoriy-item .category-title,.service-item .service-title{
  margin-top: 10px;
  color:#253526;
  font-weight: bold;
  line-height: 16px;
  font-size: 13px;
}
.service-item{
  display: flex;
  margin-bottom: 15px;
  flex-direction:row;
  background-color: #f5f5f5;
  padding: 15px;
}
.service-thumbnail{
  width: 120px;
  height: 120px;
  display: block;
  flex: 0 0 120px;
}
.service-thumbnail img{
  width: 120px;
  height: 120px;
  display: block;
}
.service-icon{
  width: 90px;
  display: block;
  flex:0 0 90px;
  text-align: center;
  display: flex;
  flex-direction:column;
  justify-content: center;
}
.service-icon img{
  width: 55px;
  height: 55px;
  display: block;
  margin: 0 auto;
}

.service-item .service-info{
  padding-left: 25px;
  padding-right: 25px;
  flex:1;
  display: flex;
  flex-direction:column;
  justify-content: center;
}
.service-item .service-info .service-main-title{
  color:#253526;
  font-weight: bold;
  line-height: 18px;
  margin-bottom: 5px;
}
.service-item .service-info .service-title{
  margin-bottom: 10px;
  color:#253526;
  font-weight: bold;
  line-height: 16px;
}
.service-item .service-description{
  line-height: 20px;
  margin-bottom: 5px;
}

.portfolio-left .contact{
  margin-top: 25px;
}
.portfolio-left .contact .portfolio-info,.portfolio-left .contact .info-description{
  text-align: left;
}

.contact .contact-item{
  margin-bottom: 15px;
}

.footer-container{
  padding-top: 50px;
  padding-bottom: 50px;
}

#footer-logo .greennature-logo{
  margin: 0;
}

#content-section-categories .category-item{
  margin-bottom: 45px;
}
#content-section-categories .category-icon{
  width: auto;
  height:auto;
}
#content-section-categories .icon-circle{
  padding: 10px;
  width: 25px;
  height:25px;
  border:1px solid #253526;
  border-radius: 30px;
}
#content-section-categories .column-service-read-more{
  margin-top: 20px;
}
#content-section-carte #carte-interactive-wrapper{
  min-height: 600px;
  background-color: #eef5ef;
}
.gm-style-iw {
  padding: 20px!important;
}
.gm-ui-hover-effect{
  top:0!important;
  right:0!important;
}

.gmnoprint a, .gmnoprint span {
    display:none;
}
.gmnoprint div {
    background:none !important;
}
img[src="http://maps.gstatic.com/mapfiles/api-3/images/google_white2.png"], a[href^="http://maps.google.com/maps"]{
    display:none !important;
}
.list-with-icon .list-with-icon-title{
  margin: 0!important;
}
.list-with-icon.greennature-left{
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.list-with-icon.greennature-left .list-with-icon-image, .list-with-icon.greennature-left .list-with-icon-icon{
  float: none;
  width: 28px;
  height: 28px;
  flex:0 0 28px;
  margin: 0;
  margin-right: 20px;
  color: #91d549;
  border-color: #91d549;
}
.list-with-icon .list-with-icon-title{
  margin: 0;
  flex:1;

  text-transform: none;
  font-weight: 400;
}
#nos-valeurs .greennature-box-with-icon-item{
  background: transparent;
}
#nos-valeurs .greennature-box-with-icon-item .box-with-icon-title{
  color: #FFF;
}
.greennature-item-start-content{
  padding-top:0;
}
#alternatives-filters{
  padding-right: 15px;

}
#alternatives-filters h5{
  font-size: 15px;
}
#alternatives-filters .form-item{
  margin-bottom: 20px;
}
#social-network{
  font-size: 20px;

}
#footer-content-menu ul{
  list-style:none;
}

.page-template-carte #alternatives-filter-form .input-item{
  display: inline-block;
  margin-right: 10px;
}

.btn{
  padding: 10px 15px;
  background-color: #5dc269;
  color: #FFF;
  text-align: center;
  margin-top: 15px;
  display: inline-block;
  cursor: pointer;
}
.btn:hover{
  color: #17561e;
}
#go_on_map,#go_on_list{
  margin-bottom: 40px;
  margin-top: 0;
}

.greennature-page-title-wrapper{
  background-size: 100%;
  overflow: hidden;
   background-size: cover;
   background-position: center;
}
#content-section-slogan .greennature-parallax-wrapper{
  padding-top: 60px;
  padding-bottom: 60px;
  background-size: 100%;
  overflow: hidden;
   background-size: cover;
   background-position: center;
}
.greennature-classic-portfolio .portfolio-title{
  color:#5dc269;
}
.greennature-classic-portfolio .portfolio-title .ville{
  color:#808080;
  font-size: 11px!important;
}
.portfolio-description{
  color: #808080;
}

#content-section-join-us .greennature-parallax-wrapper{
  padding-top: 90px;
  padding-bottom: 65px;
  background-position: center -50.193px;
  background-size: 100%;
  overflow: hidden;
   background-size: cover;
   background-position: center;
}

.section-title{
  text-align: center;
  font-size: 52px;
  letter-spacing: 3px;
  margin-bottom: 0px;
  font-weight: 800;
  margin-bottom: 40px;
}

#content-section-join-us .overlay-bg{
  height: 100%;
  width: 100%;
  position: absolute;
  top:0;
  left: 0;
  background-color: rgba(0,0,0,0.7);
}
#content-section-join-us .greennature-item.greennature-action-ads-item{
  padding: 0;

}

#content-section-join-us .item-content{
  z-index:2;
  position: relative;
}
#content-section-join-us .content-wrapper{
  position: relative;
  padding: 50px 40px 37px;
  min-height:320px;
}
.quote-slider li{
  display: table-cell;
  vertical-align: middle;
}
.quote-slider .quote{
  text-align: center;
}
.quote-slider .author{
  text-align: center;
  font-size: 22px;
  font-weight: 200;
}
.margin-top{
  margin-top: 60px;
}

#newsletter-form .wpcf7-form p,#newsletter-form .wpcf7 input[type="submit"]{
    margin: 0;
}
#content-section-services .portfolio-thumbnail{
  background-color: #f5f5f5;
}
#content-section-services .portfolio-thumbnail img{
  height: 80%;
  margin-top:5%;
}
.no-padding-top{
  padding-top: 0;
}

#content-section-news .greennature-blog-thumbnail{

}
#content-section-news .greennature-blog-info{
  font-weight: 400;
  color: rgb(128, 128, 128);
}
#content-section-news  a.excerpt-read-more {
    display:none;
 }
.greennature-blog-thumbnail{
  background-color: #f5f5f5;
}
.greennature-parallax-wrapper.greennature-background-image .greennature-title-item{
  margin-bottom: 0;
}
.margin-bottom{
  margin-bottom: 40px;
}

#content-section-forces-objectifs .greennature-color-wrapper{
  background-color: #f5f5f5;
}

#gilston-digital-link{
  background-image: url('assets/images/gd.svg');
  background-repeat: no-repeat;
  background-size: 100% auto;
  width: 15px;
  height: 89px;
  display: block;
  right: 10px;
  top: 15px;
  position: absolute;
}

#content-section-slider{

}

.home-top-slider-item{
  height: 900px;
  overflow: hidden;
   background-size: cover;
   background-position: center;
}



#section-home-top-slider a.alternative-link{
  position: relative;
  z-index: 2;
}


.home-top-slider-item .container-block{
  height: 900px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.home-top-slider-item .item-content{
  padding: 100px;
  background-color: rgba(0,0,0,0.8);
  max-width: 600px;
  text-align: center;
  color:#FFFFFF;
}
.home-top-slider-item a .item-content{
  color: #FFFFFF;
  font-size: 18px;
}
.home-top-slider-item h2{
  color:#FFFFFF;
  text-align: center;
  margin-bottom: 0;
}
.home-top-slider-item .portfolio-tag{
  text-transform: uppercase;
  margin-bottom: 20px;
}
.home-top-slider-item h2 .ville{
  color:#b0b0b0;
  font-size: 18px;
}
.quote-slider-item-content{
  padding-left: 40px;
  padding-right: 40px;
}

.filter-tag-item{
  padding: 4px 12px;
  display: inline-block;
  margin-right: 5px;
  margin-bottom: 5px;
  background-color: #f5f5f5;
  cursor: pointer;
  border: 1px solid #ebebeb ;
}
.filter-tag-item:hover{
  border: 1px solid #888;
}
.filter-tag-item .remove-tag{
  margin-left: 5px;
}
.filter-tag-item .remove-tag .fa{
  margin: 0;
}

#content-section-carte #alternatives-filters .columns,#content-section-carte #alternatives-filters .column{
  width: 100%!important;
}

header .greennature-header-inner .greennature-logo{
  height: 100px;
  width: auto;
}
header .greennature-header-inner .greennature-logo img{
  max-height: 100px;
}


/* ===== RESET DU THEME SUR LES IMAGES DU FOOTER ===== */
#footer-logo img {
  height: auto !important;
  max-height: none !important;
}

/* ===== LOGO PRINCIPAL ===== */
.footer-main-logo img {
  max-height: 70px;
  width: auto;
}

/* LOGO INFOMANIAK (solution propre et isolée) */
.infomaniak-logo {
  width: 60px;   /* ajuste ici */
  height: 20px;  /* ajuste ici */
  margin-left: 15px;

  background-image: url('https://convergence-durable.ch/wp-content/uploads/2026/03/vertical-white-infomaniak.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;

  flex-shrink: 0;
}

/* ===== ALIGNEMENT ===== */
#footer-logo {
  display: flex;
  align-items: center;
  gap: 18px;
}