:root {
    --oxpins-font: 'Manrope', sans-serif;
    --oxpins-font-two: 'Nunito', sans-serif;
    --oxpins-font-three: 'Caveat', cursive;
    --oxpins-gray: #6f7775;
    --oxpins-gray-rgb: 111, 119, 117;
    --oxpins-white: #ffffff;
    --oxpins-white-rgb: 255, 255, 255;
    --oxpins-base: #00715d;
    --oxpins-base-rgb: 0, 113, 93;
    --oxpins-black: #283734;
    --oxpins-black-rgb: 40, 55, 52;
    --oxpins-primary: #f16c31;
    --oxpins-primary-rgb: 251, 212, 90;
    --oxpins-extra: #f9f4e8;
    --oxpins-extra-rgb: 249, 244, 232;
    --oxpins-bdr-color: #eee9db;
    --oxpins-bdr-color-rgb: 238, 233, 219;
    --oxpins-bdr-radius: 20px;

  }



  .faq-onex {
    position: relative;
    display: block;
    background-color: rgb(232, 222, 189);
    padding: 100px 0 160px;
    z-index: 1;

  }

  .faq-one-shape-1x {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-position: center;
    background-size: cover;

    mix-blend-mode: luminosity;
    opacity: .15;
    z-index: -1;
  }




  .faq-one-bgx {
    position: absolute;
    top: 0;
    background-size: cover;
    left: 0;
    width: 807px;
    height: 626px;
    opacity: 0.08;
    z-index: -1;
  }


/*customize*/

.team-one__socials {


    position: absolute;
    bottom: 0;
    left: 50%;
    background-color: var(--oxpins-primary);
    padding: 10px 22px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    transform: scaleY(0.0) translateX(-50%);
    transform-origin: center;
    transform-style: preserve-3d;
    -webkit-transition: all 0.4s linear;
    -o-transition: all 0.4s linear;
    transition: all 0.4s linear;
    transform-origin: bottom center;
    z-index: 2;
  }
  .team-one__single:hover .team-one__socials {
    transform: scaleY(1.0) translateX(-50%);
    -webkit-transition-delay: 500ms;
    -moz-transition-delay: 500ms;
    -ms-transition-delay: 500ms;
    -o-transition-delay: 500ms;
    transition-delay: 500ms;
  }
  .team-one__names a:hover {
    color: #fff;
  }



   img {
    max-width: 100%;
    display: block;
    border-radius: 10px;
  }



  .grid {
    display: grid;
    grid-gap: 10px;
    grid-template-columns: repeat(auto-fill, minmax(250px,1fr));
    grid-auto-rows: 20px;
  }



  .photothumb{
    width: 100%;
  }

  .title {
    padding: 20px;
   }

  .title h3{
    font-size: 1.2em;
    color: #ffffff;
    text-transform: uppercase;
  }

  .project .title{
    background-color: #607D8B;
  }

  .blog .title{
    background-color: #ff9800;
  }

  .photo .title{
    background-color: #f44336;
  }

  .desc{
    padding: 10px 10px 5px 10px;
  }

  .desc img{
    width: 50%;
    margin: 0 10px 10px 0;
    float: left;
  }

  .desc p{
    margin-bottom: 10px;
  }


.btn_custom{

  width: 50px;
  height: 50px;

  border-radius: 50px;
  padding-top: 10px;
  background: #f16c31;
  border-color: #f16c31;
  transition: 0.3s ease all;

}

.btn_custom:hover{


  background:var(--oxpins-base);
  width: 200px;
  transition: 0.3s ease all;
  border-color:var(--oxpins-base);

  /* transform: scale(4); */
}



.btn_custom:after {

  opacity: 0.16;
  z-index: 2;
}



.btn_custom:before,
.btn_custom:after {

  transition: 0.3s ease all;
}

.btn_custom:before {
  content: "+";

  opacity: 1;
  transform: scale(1);
}

.btn_custom:after {
  content: "Voir plus";
  letter-spacing: -10px;
  transform: scale(0);
  opacity: 0;
}


.btn_custom:hover:after {
  letter-spacing: 0;
  opacity: 1;
  transform: scale(1);
}

.made-with {
    background: #fd264f;
    color: #fff;
    display: block;
    font-size: 12px;
    line-height: 1em;
    margin: 0;
    padding: 5px 110px;
    position: fixed;
    top: 20px;
    right: -100px;
    text-align: center;
    text-decoration: none;
    transform: rotate(45deg);
}
.documentation {
    color: #fd264f;
}
button:focus,
input:focus,
textarea:focus,
select:focus {
  outline: none; }



  /* MAKE IT CUTE ----- */
.tabs {
    position: relative;
    display: flex;
    min-height: 200vh;
    border-radius: 8px 8px 0 0;
    overflow: scroll;
  }

  .tabby-tab {
    flex: 1;
  }

  .tabby-tab label {
    display: block;
    box-sizing: border-box;
    /* tab content must clear this */
      height: 40px;

    padding: 10px;
    text-align: center;
    background:  #f3980fc4;
    cursor: pointer;
    transition: background 0.5s ease;

  }

  .tabby-tab label:hover {
    /* background: #7B52AB; */
    background: #306c2d6f;

  }

  .tabby-content {
    position: absolute;

    left: 0; bottom: 0; right: 0;
    /* clear the tab labels */
      top: 40px;

    padding: 20px;
    border-radius: 0 0 8px 8px;
    background: #f18f2dd3;
    /* background:#553285; */
    transition:
      opacity 0.8s ease,
      transform 0.8s ease   ;

    /* show/hide */
      opacity: 0;
      transform: scale(0.1);
      transform-origin: top left;

  }

  .tabby-content img {
    float: left;
    margin-right: 20px;
    border-radius: 8px;
  }


  /* MAKE IT WORK ----- */

  .tabby-tab [type=radio] { display: none; }
  [type=radio]:checked ~ label {
    background:  #2e652bb1;

    z-index: 2;
  }

  [type=radio]:checked ~ label ~ .tabby-content {
    z-index: 1;

    /* show/hide */
      opacity: 1;
      transform: scale(1);
  }

  .date-section{

    width: 40%; height:60px;
     background:#fff;
     display:flex;
    justify-content:center;
     margin:0 auto;
      border-radius:50px;
      padding:15px;
  }



  /* BREAKPOINTS ----- */
  @media screen and (max-width: 767px) {
    .tabs { min-height: 400px;}¨
    .date-section{
        width: 100%;
    }
  }

  @media screen and (max-width: 480px) {
    .tabs { min-height: 580px; }
    .tabby-tab label {
      height: 60px;
    }
    .date-section{
        width: 100%;
    }
    .tabby-content { top: 60px; }
    .tabby-content img {
      float: none;
      margin-right: 0;
      margin-bottom: 20px;
    }
  }
