body {
  padding: 0px !important;
    font-family: Nunito, Cantarell, Calibri;
    overflow-x: hidden;
    display: grid;
    /* grid-template-rows: auto auto 70px; */
}
.svg{
  width: 20px;
  height: 20px;
}


#carruselGalery{
    height: 600px;
    margin: 0;
    display: grid;
    grid-template-rows: 500px 100px;
    grid-template-columns: 1fr 30px 30px 30px 30px 30px 1fr;
    align-items: center;
    justify-items: center;
}

#carousel {
    grid-row: 1 / 2;
    grid-column: 1 / 8;
    width: 100vw;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transform-style: preserve-3d;
    perspective: 600px;
    --items: 5;
    --middle: 3;
    --position: 1;
    pointer-events: none;
}

div.item {
    position: absolute;
    width: 300px;
    height: 400px;
    background-color: coral;
    --r: calc(var(--position) - var(--offset));
    --abs: max(calc(var(--r) * -1), var(--r));
    transition: all 0.25s linear;
    transform: rotateY(calc(-10deg * var(--r)))
      translateX(calc(-300px * var(--r)));
    z-index: calc((var(--position) - var(--abs)));
  }
  
  div.item:nth-of-type(1) {
    --offset: 1;
    background-color: #90f1ef;
  }
  div.item:nth-of-type(2) {
    --offset: 2;
    background-color: #ff70a6;
  }
  div.item:nth-of-type(3) {
    --offset: 3;
    background-color: #ff9770;
  }
  div.item:nth-of-type(4) {
    --offset: 4;
    background-color: #ffd670;
  }
  div.item:nth-of-type(5) {
    --offset: 5;
    background-color: #e9ff70;
  }
  
  input:nth-of-type(1) {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
  }
  input:nth-of-type(1):checked ~ #carousel {
    --position: 1;
  }
  
  input:nth-of-type(2) {
    grid-column: 3 / 4;
    grid-row: 2 / 3;
  }
  input:nth-of-type(2):checked ~ #carousel {
    --position: 2;
  }
  
  input:nth-of-type(3) {
    grid-column: 4 /5;
    grid-row: 2 / 3;
  }
  input:nth-of-type(3):checked ~ #carousel {
    --position: 3;
  }
  
  input:nth-of-type(4) {
    grid-column: 5 / 6;
    grid-row: 2 / 3;
  }
  input:nth-of-type(4):checked ~ #carousel {
    --position: 4;
  }
  
  input:nth-of-type(5) {
    grid-column: 6 / 7;
    grid-row: 2 / 3;
  }
  input:nth-of-type(5):checked ~ #carousel {
    --position: 5;
  }



#menu a, span {
    font-size: large;
    font-weight: bold 300;
    color: #fff;
    height: 2.5rem;
    
}

.dropdown-item{
    color: #000 !important;
}

.navbar{
    transition: all 0.7s;
}

.bg-image{
    width: 100vw !important;
    padding: 0% !important;
    max-height: 50vh;
    object-fit: cover;
    top: 0;
    left: 0;
    z-index: -1;
    filter: brightness(0.6);
}

.img-header{
  height: 30px;
  width: 30px;
}

.nav-scrolled{
    background-color: #0080FE;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}


p {
    color: #1B036D !important;
}

h1,h2, h3, h4, h5 {
    color: #1B036D !important	;
}


.carousel-inner {
    max-height: 45rem;
}


hr {
    max-width: 80%;
    margin: auto;
    margin-top: 1%;
}

@media (max-widht: 768px) {
    #intro {
        width: 90 !important;
    }
    .preview {
        width: 100%;
        text-align: center !important;
    }
}

footer{
  background-color: #b6dadf;
  color: rgb(60, 60, 60);
}

footer p, footer h3 {
  color: rgb(60, 60, 60) !important;
}

footer a {
  color: rgb(60, 60, 60);
  text-decoration: none !important;
}

footer a:hover {
  color: #1B036D;
  font-weight: bold;
}

.imgSpecsSup {
  margin-top: auto;
  margin-bottom: auto;
}