/* _____________________________________________________________ */
/* _ Header  ______________________________________________ */
/* _____________________________________________________________ */
header {
    display: flex;
    width: 100%;
    height: 100vh;
    padding-bottom: 10px;
    justify-content: space-evenly;
    align-items: center;
    flex-direction: row;
    color: white;
    background-image: url("./../images/fondec_02.svg");
    background-size: cover;
    background-repeat: no-repeat;
    filter: grayscale(55%);

}

.imglogo{
    position: absolute;
    top: 25%;
    left: 50%;
    opacity: 0.5;

}

/* _____________________________________________________________ */
/* _ Banner _______________________________________________ */
/* _____________________________________________________________ */

.img_header{
    width: 80px;
}

/* _____________________________________________________________ */
/* _ Canvas _______________________________________________ */
/* _____________________________________________________________ */
header canvas {
    display: block;
    position:absolute;
    top:0;
    left:0;
    z-index: -1;
}

header #plane-canvas{
    opacity: 0.1;
}

/* _____________________________________________________________ */
/* _ Carousel _______________________________________________ */
/* _____________________________________________________________ */
 header label {
      background-image: url("../images/fondec6.png");
 }

header div#carousel label {

    color: #fff;
    transition: transform 400ms ease-out;
    display: inline-block;
    min-height: 100%;
    width: 100vw;
    height: 100vh;
    position: relative;
    z-index: 1;
    text-align: center;
      background-repeat: no-repeat;
      background-size:cover;
      background-blend-mode: luminosity;
}

header div#carousel {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    white-space: nowrap;
    width: 100%;
}
header div#carousel input {
    position: absolute;
    top: 100px;
    left: 100px;
}
header div#carousel .dot {
   visibility: hidden;
    z-index: 10 ;
}

header div#carousel  input:nth-of-type(1):checked ~ label:nth-of-type(1), 
header div#carousel  input:nth-of-type(2):checked ~ label:nth-of-type(2),
header div#carousel  input:nth-of-type(3):checked ~ label:nth-of-type(3),
header div#carousel  input:nth-of-type(4):checked ~ label:nth-of-type(4) {
   z-index: 0;
}

header div#carousel input:nth-of-type(1):checked ~ label {
    transform: translate3d(0, 0, 0);
}

header div#carousel input:nth-of-type(2):checked ~ label {
    transform: translate3d(-100.5%, 0, 0);
}

header div#carousel input:nth-of-type(3):checked ~ label {
    transform: translate3d(-200.75%, 0, 0);
}

header div#carousel  input:nth-of-type(4):checked ~ label {
    transform: translate3d(-301%, 0, 0);
}

header div#carousel label:before,
header div#carousel label:after {
    color: white;
    display: block;
    background: rgba(255,255,255,0.2);
    position: absolute;
    padding: 1rem;
    font-size: 3rem;
    height: 10rem;
    vertical-align: middle;
    line-height: 10rem;
    top: 22%;
    right: 50px;
    transform: translate3d(0, -50%, 0);
    cursor: pointer;
}

header div#carousel  label:before {
    content: "\276D";
    right: 101.5%;
    border-top-left-radius: 50%;
    border-bottom-left-radius: 50%;
}

header div#carousel  label:after {
    content: "\276C";
    left: 100%;
    border-top-right-radius: 50%;
    border-bottom-right-radius: 50%;
}

/* _____________________________________________________________ */
/* _____  grid5  ________________________________________________ */
/* _____________________________________________________________ */
header .grid5  {
    display:  grid;
    margin-top: 400px;
    gap: 100px;
    justify-items: center;
}

header .grid5 a {
    font-size: 40px;
    background-color: #505050;
    z-index:1;   
    display: flex;
    text-decoration: none;
    border-radius: 10px;
    color: #fff;
    align-items: center;
    justify-content: space-evenly;
    box-shadow: inset 1px 1px 2px #1b1b1b, -1px -1px 2px #6d6d6d;
 }

header .grid5 a:hover {
  box-shadow: 0px 2px 5px -2px #bbbbbb;
}

header .grid5 .card1 {
  width: 300px;
  height: 100px;
  background-image: url("../images/header_img1.svg");
  background-repeat: no-repeat;
 }

header .grid5 .card2 {
  width: 300px;
  height: 100px;
  background-image: url("../images/header_img2.svg");
  background-repeat: no-repeat;
}

header .grid5 .card3 {
  width: 300px;
  height: 100px;
  background-image: url("../images/header_img3.svg");
  background-repeat: no-repeat;
 }


