/*
Theme Name: Feredeco
Author: Wooops
Version: 1.0
*/
header {
    width: 100%;
}
html, body {
    font-family: 'Prompt', sans-serif;
    color: #236e69;
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
}

/*TEXT AND TITLES*/
@media only screen and (max-width: 1200px) {
    h1, h2 {
        font-size: 25px;
        line-height: 30px;
    }
    h3, h4 {
        font-size: 17px;
    }
}
@media only screen and (min-width: 1201px) {
    h1, h2 {
        font-size: 35px;
        font-weight: 900;
        line-height: 43px;
        letter-spacing: 7px;
    }
    h3, h4 {
        font-size: 17px;
    }
}
p,
ul {
    font-size: 17px;
}
.highlight-text {
    font-size: 20px;
    font-weight: bold;
    color: #6bb894;
}
.text-link:hover {
    text-decoration: none;
}
.list li a {
    text-decoration: underline;
}
.list li a:hover {
    text-decoration: none;
}
.wpgmp_map_container {
    height: 700px;
}
.wpgmp_map_parent {
    height: 700px;
}
.gm-style {
    height: 700px;
}
.bold {
    font-weight: bold;
}
.uppercase {
    text-transform: uppercase;
}
.text-center {
    text-align: center;
}
.text-right {
    text-align: right;
}
.list {
    list-style: none;
    padding-left: 0;
}
.section-title {
    padding: 50px 0;
}
.big-text {
    font-size: 25px;
    font-weight: 500;
}
.sized-text {
    max-width: 50%;
    margin: 0 15px;
}


/*POSITION*/
.relative {
    position: relative;
}
.absolute {
    position: absolute;
}


/*COLORS*/
.very-light-grey {
    color: #ebf5f6;
}
.very-light-green {
    color: #d8eceb;
}
.light-green {
    color: #c7dec4;
}
.mid-green {
    color: #65bb94;
}
.dark-green {
    color: #236e69;
}
.very-dark-green {
    color: #306b67;
}
.text-mid-green {
    color: #6bb894;
}
.white {
    color: #ffffff;
}

/*BACKGROUNDS*/
.background-very-light-grey {
    background-color: #ebf5f6;
}
.background-very-light-green {
    background-color: #d8eceb;
}
.background-light-green {
    background-color: #c7dec4;
}
.background-mid-green {
    background-color: #65bb94;
}
.background-dark-green {
    background-color: #236e69;
}
.background-very-dark-green {
    background-color: #306b67;
}


/*BUTTONS*/
button:hover {
    background-color: #ebf5f6;
    color: #306b67;
}
.button-dark {
    background-color: #236e69;
    color: #ffffff;
}
.button-light {
    background-color: #d8eceb;
}
.button-mid {
    background-color: #65bb94;
    color: #ffffff;
}
.button-thin {
    background-color: #65bb9400;
    color: #236e69;
    border: solid 1px;
    font-weight: 400;
    display: flex;
    align-items:center;
}
.button-link {
    text-decoration: none;
}
.mail-button:hover {
    text-decoration: underline;
}
.linkedin-link:hover {
    text-decoration: none;
}

@media only screen and (max-width: 1200px) {
    
    /*FLEX*/
    .flex-horizontal {
        display: block;
    }
    .flex-vertical {
        display: flex;
        flex-direction: column;
    }
    .align-center {
        align-items: center;
    }
    .justify-right {
        justify-items: end;
    }
    .justify-end {
        justify-content: baseline;
    }
    .justify-center {
        justify-content: center;
    }
    .space-between {
        justify-content: space-between;
    }
    .space-evenly {
        justify-content: space-evenly;
    }
}
    
@media only screen and (min-width: 1201px) {
        
    /*FLEX*/
    .flex-horizontal {
        display: flex;
        flex-direction: row;
    }
    .flex-vertical {
        display: flex;
        flex-direction: column;
    }
    .align-center {
        align-items: center;
    }
    .justify-right {
        justify-items: end;
    }
    .justify-end {
        justify-content: baseline;
    }
    .justify-center {
        justify-content: center;
    }
    .space-between {
        justify-content: space-between;
    }
    .space-evenly {
        justify-content: space-evenly;
    }
}

/*PLACEMENT*/
.center {
    margin: auto;
    width: 50%;
}
.margins-auto {
    margin: auto;
}
.width-100 {
    width: 100%;
}
.inline {
    display: inline;
}
  

/*BUTTONS*/
button {
    border: none;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    font-size: 15px;
    border-radius: 30px;
    font-weight: 1000;
    letter-spacing: 2px;
    font-size: 15px;
}
.arrow {
    width: 15px;
    height: auto;
}
.left-button {
    margin-right: 30px;
}
.top-button {
    margin-bottom: 20px;
}


/**/
.produits-rec-img {
    width: 70%;
    padding: 0 15%;
}





  @media only screen and (max-width: 1200px) {
    /*GRIDS*/
    .columns {
        display: block;
    }
    .columns-3-4 {
        display: block
    }
    .img-column {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .align-right {
        display: block;
        margin-left: auto; 
        margin-right: 0;
    }
    .text-column {
        margin: 0 10%;
        width: auto;
    }
    .columns-3 {
        display: block
    }
}

@media only screen and (min-width: 1201px) {
    /*GRIDS*/
    .columns {
        display: grid;
        grid-template-columns: 50% 50%;
        grid-template-rows: auto;
    }
    .columns-3-4 {
        display: grid;
        grid-template-columns: 70% 30%;
        grid-template-rows: auto;
    }
    .img-column {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .align-right {
        display: block;
        margin-left: auto; 
        margin-right: 0;
    }
    .text-column {
        margin: auto;
        width: 50%;
    }
    .columns-3 {
        display: grid;
        grid-template-columns: 33% 33% 33%;
        grid-template-rows: auto;
        justify-content: center;
        justify-items: center;
    }
}



/*TABS*/

  .tabs {
    position: relative;
    background: #236e69;
  }
  .tabs::before,
  .tabs::after {
    content: "";
    display: table;
  }
  .tabs::after {
    clear: both;
  }
  
  .tab-label {
    position: relative;
    display: inline-block;
    line-height: 2.75em;
    height: 3em;
    padding: 0 1.618em;
    background: #236e69;
    color: #fff;
    top: 0;
    text-decoration: none;
  }
  .tab-label:hover {
    background: #65bb94;
  }
.b-tab {
    padding: 20px;
    display: none;
  }
  
  .b-tab.active {
    display: block;
  }
  .b-nav-tab.active {
    background: #65bb94;
  }

