@viewport {
    width: device-width;
    zoom: 1;
}

*,::before,::after {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    font-family: 'Roboto';
    scroll-behavior: smooth;
}

@font-face {
    font-family: "Roboto";
    src: url("../assets/font/Roboto-Light.ttf");
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

#navbar-taliesin{
    transition: all 250ms;
}

.header-logo {
    max-height: 40px;
    margin: 5px;
}

.navbar-brand a:hover, a:focus {
    outline: none;
}
  
.header-logo {
    max-height: 40px;
    margin: 5px;
}
  
.navbar-nav li a.active {
    color: #f05a42 !important;
    font-weight: bold;
}
  
.navbar-nav li a {
    color: #202724 !important;
    text-transform: capitalize;
    transition: background-color 0.2s, color 0.2s;
}

.navbar-nav li a:hover {
    border-bottom: solid 2px #f05a42;
}
  
.navbar-nav li a:focus {
    outline: none;
}

.shadow-box{
    -webkit-box-shadow: 0px 3px 7px 2px rgba(0,0,0,0.14);
    box-shadow: rgba(0, 0, 0, 0.14) 0px 3px 7px 2px;
    box-shadow: 0px 3px 7px 2px rgba(0,0,0,0.14);
}

.pres-column{
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
}

.block-light {
    position: relative;
    width: 100%;
    padding: 8vw;
    transition-duration: 250ms;
    transition-property: all;
}

h1 {
    color: #2c3645;
    text-align: center;
    font-size: 70;
}

h2 {
   font-family: Metropolis,Inter,X-LocaleSpecific,sans-serif;
}

.block-dark {
    position: relative;
    width: 100%;
    padding: 8vw;
    transition-duration: 250ms;
    transition-property: all;
    background-color: #2c3645;
    color: white;
}

.block-dark h1 {
    color: white;
}

.block-img {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-image: url(../images/annotation.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    filter: grayscale(100%);
    opacity: 0.05;
    width: 100%;    
}

/* @media screen and (max-width: 800px) {
    .block-img{
        background-size: contain;
        top:300;
    }
} */

#pourquoi-grid{
    z-index: 5;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 50px
}

@media screen and (max-width: 1100px) {
    #pourquoi-grid{
        grid-template-columns: 1fr;
    }
}

#pourquoi-grid div{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

#pourquoi-grid div * {
    margin: 10px;
}

.pourquoi-icon{
    font-size: 90px;
}

.hand {
    background-size: contain;
    background-image: url(../images/hand.png);
    opacity: 0.15;
    margin-top: 5vh;
    height: 70%;
}

.team {
    background-size: cover;
    background-image: url(../images/team.png);
    opacity: 0.15;
}

.partos {
    background-size: cover;
    background-image: url(../images/partos.jpg);
    opacity: 0.15;
}

#ecriture {
    opacity: 0.3;
    animation-name: rotate;
    animation-iteration-count: infinite;
    animation-duration: 10s;
    filter: grayscale(100%);
    height: 8em;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(4,1fr);
  }

.partenership {
    display: grid;
    grid-template-columns: repeat(5,1fr);
    text-align: center;
}

@media screen and (max-width: 1100px) {
    .grid-container{
        grid-template-columns: 1fr 1fr 1fr;
    }      
}


@media screen and (max-width: 800px) {
    .grid-container{
        grid-template-columns: 1fr 1fr;
    }      
}

@media screen and (max-width: 450px) {
    .grid-container{
        grid-template-columns: 1fr ;
    }      
}

.imgProfile {
    width: 30%;
    border-top: solid 3px #f15a40;;
    border-radius: 100%;
    position: relative;
    z-index: 3;
}

.imgPart{
    width: 80%;
}

#introduction {
    text-align: center;
    animation: showup 7s infinite;
}

@media screen and (max-width: 800px) {
    #introduction{
        height: 50px;
    }
}

#home {
    position: relative;
    z-index: 5;
    text-align:center;
    color:#555;
    font-family:'Roboto';
    font-weight:300;
    font-size:30px;
    padding-top: 15vh;
    height: 100vh;
    overflow:hidden;
   
}

@media screen and (max-width: 800px) {
   #introduction{
       margin-top: 20vh;
   }
}

#home div{
    display:inline-block;
    overflow:hidden;
    /*white-space:nowrap;*/
}

#home #introduction + p {
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}

@keyframes showup {
    0% {opacity:0;}
    20% {opacity:1;}
    80% {opacity:1;}
    100% {opacity:0;}
}

p {
    font-size: 20px;
}

#intro {
  z-index: -1;
  display: block !important;
  position: absolute;
  bottom: 0;
  width: 100%;
}

#roundBackground {
    display: block !important;
    width: 100%;
    background-color: #f15a40;
    text-align: center;
    font-weight: 300;
    color: white;
}

#round {
    display: block !important;
    position: relative;
    background-color: white;
    width: 150vw;
    height: 20vh;
    border-radius: 100%;
    left: -25vw;
    z-index: 0;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.interfaceDisplaying {
  display: grid;
  grid-template-columns: repeat(2,1fr);
}

@media screen and (max-width: 800px) {
   .interfaceDisplaying {
        grid-template-columns: repeat(1,1fr);
        grid-template-rows: repeat(2,1fr);
   }
}

.interfaceImage {
    height: 700px;
    background-image: url("../images/forme.svg");
    background-repeat: no-repeat;
    background-position-x: center;
    background-position-y: center;
    background-size: contain;
}

.pageDisplaying {
    height: 40vh;
    margin-top: 10%;
    margin-left: 5%;
   
}

@media screen and (max-width: 800px) {
    .interfaceImage {
        background-image: none;
        height: 390px;
        position: relative;
        margin-top: 40px;
    }

    .pageDisplaying {
        height: auto;
        width: 100%;
        margin-left: 0%;
    }
}

.first {
    background-image: url("../images/annotation.PNG"); 
    background-size: contain;
    -webkit-box-shadow: 0px 0px 20px -5px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 0px 20px -5px rgba(0,0,0,0.75);
    box-shadow: 0px 0px 20px -5px rgba(0,0,0,0.75);
    background-repeat: no-repeat;
    background-position-x: center;
    background-position-y: center;
}

hr {
    width: 50vw;
    color: #f15a40;
    size: 40vh;
}

#phraseIntro {
    background-color: #f15a40;
    width: 100%;
    padding-top: 0.5em;
    padding-bottom: 0.5em;
    margin: 0;
    color: white;
}
 
@media screen and (max-width: 800px) {
    /*#phraseIntro {
        margin-top: 10vh;
    }*/
    #forme {
        width: 20%;
    }
}

.face-image-wrap {
    position: relative;
    display: inline-block;
    text-align: center;
}

.face-image-wrap:hover > img {
    filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feComponentTransfer color-interpolation-filters="sRGB"><feFuncR type="linear" slope="0.7" /><feFuncG type="linear" slope="0.7" /><feFuncB type="linear" slope="0.7" /></feComponentTransfer></filter></svg>#filter');
    filter: brightness(0.3);
    -webkit-filter: brightness(0.3);
}

.face-image-wrap a:hover {
    color: #007bff;
}

.face-image {
    position: relative;
    border-top: solid 3px #f15a40;;
    max-width: 100px;
    margin: 0 40px;
    border-radius: 100%;
}

.show-on-hover {
    width: 100%;
    height: 100%;
    position: absolute;
    overflow: hidden;
    top: 13%;
    left: 0;
    outline: none;
}

#preloader {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    background-color: #eeeeee;
    z-index: 7;
}

.preloader {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.preloader span {
    display: inline-block;
    background-color: #f05a42;
    width: 25px;
    height: 25px;
    -webkit-animation: 1s preload ease-in-out infinite;
    animation: preload 1s ease-in-out infinite;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    border-radius: 50%;
}

.preloader span:nth-child(1) {
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
}

.preloader span:nth-child(2) {
    -webkit-animation-delay: 0.1s;
    animation-delay: 0.1s;
    background-color: #2f5d77;
}

.preloader span:nth-child(3) {
    -webkit-animation-delay: 0.15s;
    animation-delay: 0.15s;
}

.preloader span:nth-child(4) {
    -webkit-animation-delay: 0.2s;
    animation-delay: 0.2s;
    background-color: #2f5d77;
}

@-webkit-keyframes preload {
    0% {
      -webkit-transform: scale(0);
      transform: scale(0);
    }
    50% {
      -webkit-transform: scale(1);
      transform: scale(1);
    }
    100% {
      -webkit-transform: scale(0);
      transform: scale(0);
    }
  }

@keyframes preload {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    50% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
}

.container {
  padding: 0px 40px;
}

.card {
  /* Add shadows to create the "card" effect */
  box-shadow: 0 16px 24px 2px rgba(29,17,51,.04),0 6px 32px 4px rgba(9,32,77,.12),0 8px 12px -5px rgba(29,17,51,.12);
  transition: 0.3s;
  background-color: #d3d9df;
  border-radius: 10px 10px 10px 10px;
  width:  70%;
}

@media screen and (max-width: 800px) {
    .card{
        margin-top: 10%;
        margin-left: auto;
        margin-right: auto;
    }
}

.carousel {
    position: relative;
}

.carousel.pointer-event {
    touch-action: pan-y;
}

.carousel-inner {
    position: relative;
    width: 100%;
    overflow: hidden;
}
.carousel-inner::after {
    display: block;
    clear: both;
    content: "";
}

.carousel-item {
    position: relative;
    display: none;
    float: left;
    width: 100%;
    margin-right: -100%;
    backface-visibility: hidden;
    transition: transform 0.6s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
    .carousel-item {
        transition: none;
    }
}

.carousel-item.active,
.carousel-item-next,
.carousel-item-prev {
    display: block;
}

.carousel-item-next:not(.carousel-item-left),
.active.carousel-item-right {
    transform: translateX(100%);
}

.carousel-item-prev:not(.carousel-item-right),
.active.carousel-item-left {
    transform: translateX(-100%);
}

.carousel-fade .carousel-item {
    opacity: 0;
    transition-property: opacity;
    transform: none;
}
.carousel-fade .carousel-item.active,
.carousel-fade .carousel-item-next.carousel-item-left,
.carousel-fade .carousel-item-prev.carousel-item-right {
    z-index: 1;
    opacity: 1;
}
.carousel-fade .active.carousel-item-left,
.carousel-fade .active.carousel-item-right {
    z-index: 0;
    opacity: 0;
    transition: opacity 0s 0.6s;
}
@media (prefers-reduced-motion: reduce) {
.carousel-fade .active.carousel-item-left,
.carousel-fade .active.carousel-item-right {
    transition: none;
    }
}

.carousel-control-prev,
.carousel-control-next {
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 15%;
    color: #fff;
    text-align: center;
    opacity: 0.5;
    transition: opacity 0.15s ease;
}
@media (prefers-reduced-motion: reduce) {
    .carousel-control-prev,
    .carousel-control-next {
        transition: none;
    }
}
.carousel-control-prev:hover, .carousel-control-prev:focus,
.carousel-control-next:hover,
.carousel-control-next:focus {
    color: #fff;
    text-decoration: none;
    outline: 0;
    opacity: 0.9;
}

.carousel-control-prev {
    left: 0;
}

.carousel-control-next {
    right: 0;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    background: no-repeat 50%/100% 100%;
}

.carousel-indicators {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 6;
    display: flex;
    justify-content: center;
    padding-left: 0;
    margin-right: 15%;
    margin-left: 15%;
    list-style: none;
}
.carousel-indicators li {
    box-sizing: content-box;
    flex: 0 1 auto;
    width: 30px;
    height: 3px;
    margin-right: 3px;
    margin-left: 3px;
    text-indent: -999px;
    cursor: pointer;
    background-color: #2f5d77;
    background-clip: padding-box;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    opacity: 0.5;
    transition: opacity 0.6s ease;
}
@media (prefers-reduced-motion: reduce) {
    .carousel-indicators li {
        transition: none;
    }
}
    .carousel-indicators .active {
    opacity: 1;
}

.carousel__title {
    color: #ffffff;
    font-size: 1.5em;
    font-weight: bold;
}

.carousel__description{
    font-size: 1.1em;
    margin-top: 0.25em;
    text-align: center;
    margin-left: 5em;
    margin-right: 5em;
}

.caption-overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    opacity: 0;
    transition: opacity 0.25s;
    display: none;
}

.caption-overlay:hover {
    opacity: 1;
}

.caption-overlay > * {
    transform: translateY(20px);
    transition: transform 0.25s;
}

.caption-overlay:hover > * {
    transform: translateY(0);
}

.carousel-control-prev-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23f05a42' viewBox='0 0 8 8'%3E%3Cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3E%3C/svg%3E") !important;
}
  
.carousel-control-next-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23f05a42' viewBox='0 0 8 8'%3E%3Cpath d='M1.5 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3E%3C/svg%3E") !important;
}

.carousel-indicators li {
    width: 20px !important;
    height: 20px !important;
    border-radius: 100%;
}

.carousel-indicators .active {
    background-color: #f05a42;
}

.brands {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .brands__item {
    flex: 0 0 50%;
  }
  
  @media (min-width: 700px) {
    .brands__item {
      flex: 0 0 33.33%;
    }
  }
  
  @media (min-width: 1100px) {
    .brands__item {
      flex: 0 0 25%;
    }
  }

.grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-gap: 25px;
}

@media screen and (max-width: 1600px) {
    .grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (max-width: 1100px) {
    .grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media screen and (max-width: 700px) {
    .grid {
        grid-template-columns: 1fr;
    }
}

.grid > div {
    background: rgb(255, 255, 255);
    padding: 1 rem;
    position: relative;
    border-radius: 10px;
    -webkit-box-shadow: 0px 0px 20px -5px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 0px 20px -5px rgba(0,0,0,0.75);
    box-shadow: 0px 0px 20px -5px rgba(0,0,0,0.75);
}

.grid > div::before {
    content: "";
    display: block;
    padding-bottom: 100%;
}

.grid > div img {
    position: absolute;
    max-width: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.image {
    position: relative;
}
  
.image__img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 75%;
    -moz-border-radius:7px;
    -webkit-border-radius:7px;
    border-radius:10px;
    
}

.image__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.25s;
}

.image__overlay--blur {
    backdrop-filter: blur(5px);
}

.image__overlay > * {
    transform: translateY(20px);
    transition: transform 0.25s;
}

.image__overlay:hover{
    opacity: 1;
}

.image__overlay:hover > * {
    transform: translateY(0);
}
  
.image__title{
    color: #ffffff;
    font-size: 1.5em;
    font-weight: bold;
    text-decoration-color: #f15a40;
}

.image__title:hover{
    color: #f15a40;
    text-decoration: underline;
}

.image__description{
    font-size: 1em;
    margin-top: 0.25em;
    text-align: center;
}

.wrapper {
    width: 100%;
    height: 50%;
    background: #f15a40;
    padding: 20px;
}

.wrapper .carousel {
    max-width: 1200px;
    margin: auto;
    padding: 0 30px;
}

.carouselTechno .card{
    background: white;
    line-height: 250px;
    border-radius: 10px;
    padding:10px;
    box-shadow: 0px 1px 5px rgba(0,0,0,0.1);
}

.owl-dots{
    text-align: center;
    margin-top: 40px;
}

.owl-dot{
    height: 15px;
    width: 45px;
    border-radius: 25px;
    cursor: pointer;
    outline: none;
    margin: 0 5px;
    border: 2px solid #ffffff!important;
    transition: all 0.3s ease;
}

.owl-dot:hover,
.owl-dot.active{
    background: #ffffff!important;

}

.owl-centered .owl-wrapper {
    display: table !important;
}
.owl-centered .owl-item {
    display: table-cell;
    vertical-align: middle;
}
.owl-centered .owl-item div {
    text-align: center;
}

.owl-item .active {
    margin-right: 0px;
}

.owl-stage {
    display: flex;
    align-items: center;
}

#image-pourquoi {
    -webkit-box-shadow: 0px 0px 20px -5px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 0px 20px -5px rgba(0,0,0,0.75);
    box-shadow: 0px 0px 20px -5px rgba(0,0,0,0.75);
    display: block;
    width: 100%;
    border-radius: 10px;
}

#footer{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    grid-gap: 50px
}

#footer div{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#footer img{
    width: 300px;
}

#footer #cross{
    width: 80px;
}

@media screen and (max-width: 1100px) {
    #footer{
        grid-template-columns: 1fr;
    }
}
