:root{
    --pc: #3399FF;
    --sc: #008A00;
    --lc: #f3f3f3;
    --dc: #00040f;
    --mw: 1100px;
    --ss: 450px;
}

.category{
    --sports-color: #008A00;
    --ent-color: #F0A30A;
    --tech-color: #E51400;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
   /* font-family: 'Lato', sans-serif;*/
    font-family: 'Titillium Web', sans-serif;
    line-height: 1.5;
    background: #00040f;
}

a{
    color: #333;
    text-decoration: none;
}

ul{
    list-style: none;
}

p{
    margin: 0.5rem 0;
    line-height: 1.7rem;
    /*padding: 0 1.5rem;*/
}
img{
    width: 100%;
}

h1, h2, h3, h4, h5, h6, th{
    /*font-family: 'Staatliches', cursive;*/
    margin-bottom: .55rem;
    line-height: 1.3;
}

/* Utility */
.container{
    max-width: var(--mw);
    margin: auto;
    padding: 0 1rem;
    overflow: hidden;
}

.category{
    display: inline-block;
    color: #fff;
    font-size: 0.55rem;
    text-transform: uppercase;
    padding: 0.4rem 0.6rem;
    border-radius: 15px;
    margin-bottom: 0.5rem;
}

.category-indus{background: var(--sports-color);}
.category-ent{background: var(--ent-color);}
.category-tech{background: var(--tech-color);}

.btn{
    display: inline-block;
    border: none;
    background: var(--dc);
    color: #fff;
    padding: 0.5rem 1.5rem;
}

.btn-light{background: var(--lc);}
.btn-primary{background: var(--pc);}
.btn-secondary{background: var(--sc);}

.btn-block{
    display: block;
    width: 100%;
    text-align: center;
}
.btn:hover{
    opacity: 0.9;
}

.card{
    background: #fff;
    padding: 1rem;
}

.bg-dark{
    background: var(--dc);
    color: #fff;
}

.bg-primary{
    background: var(--pc);
    color: #fff;
}

.bg-secondary{
    background: var(--sc);
    color: #fff;
}

.bg-dark h1,
.bg-dark h2,
.bg-dark h3,
.bg-dark a,
.bg-primary h1,
.bg-primary h2,
.bg-primary h3,
.bg-primary a,
.bg-secondary h1,
.bg-secondary h2,
.bg-secondary h3,
.bg-secondary a{
    color: #fff;
}


.py-1{padding: 1.5rem 0;}
.py-2{padding: 2rem 0;}
.py-3{padding: 3rem 0;}
.py-4{padding: 4rem 0;}
.py-5{padding: 5rem 0;}

.p-1{padding: 1.5rem;}
.p-2{padding: 2rem;}
.p-3{padding: 3rem;}

.l-heading{
    font-size: 3rem;
}

.list li{
    padding: 0.5rem 0;
    border-bottom: #555 dotted 1px;
    width: 90%;
}

.list li a:hover{
    color: var(--pc) !important;

}

/* Inner Page Grid Container */
.page-container{
    display: grid;
    grid-template-columns: 5fr 2fr;
    margin: 2rem 0;
    grid-gap: 1.5rem;
}

.page-container > *:first-child{
    grid-row: 1 / span 3;
}
/* Navigation */
#main-nav{
    background: #00040f;
    position: sticky;
    top: 0;
    z-index: 2;
}

#main-nav .container{
    display: grid;
    grid-template-columns: 6fr 3fr 2fr;
    padding: 1rem;
    align-items: center;
}

#main-nav .logo{
    width: 160px;
}

#main-nav ul{
    justify-self: end;
    display: flex;
}

#main-nav ul li a{
    padding: 0.75rem;
    font-weight: normal;
    font-size: 18px;
}

#main-nav ul li a.current{
    /*background: var(--pc);*/
    color: #fff;
}

#main-nav ul li a:hover{
    /*background: var(--lc);*/
    color: var(--pc);
}

#main-nav .social{
    justify-self: center;
}

#main-nav .social i{
    color: #fff;
    margin-right: 0.5rem;
}

/* Showcase */
#showcase{
    color: #fff;
    background: #00040f; /*#f4f4f4;*/
    padding: 2rem;
    position: relative;
}

/*#showcase:before{
    content: '';
    background: url('https://www.bondaf.com/media/images/pictures/Articles/AI and Blockchain Technology.svg') no-repeat center center/cover;
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 1.5;
    float: flex;
    border-radius: 15px;
}*/

#showcase .showcase-container{
    display: grid;
    grid-template-columns: 1fr;
    justify-content: center;
    height: 52vh;
}

#showcase .showcase-content{
    z-index: 1;
    text-align: center;
}

#showcase .showcase-content p{ 
    margin-bottom: 1rem;
}

/* Home Articles */
#home-articles .articles-container{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 1rem;
}

/*#home-articles .articles-container > *:first-child,
#home-articles .articles-container > *:last-child{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 1rem;
    grid-column: 1 / span 2;
    align-items: center;
}

#home-articles .articles-container > *:last-child{
    grid-column: 2 / span 2;
}*/

#article .meta{
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #eee;
    padding: 0.5rem;
}

#article .meta .category{
    margin-top: 0.4rem;
}
/* Footer */
#main-footer{
    background: var(--dc);
    color: #fff;
}

#main-footer img{
    width: 150px;
}

#main-footer a{
    color: #fff;
}

#main-footer .footer-container{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 1.5rem;
    padding-top: 1rem;
}

#main-footer .footer-container > *:last-child{
    /*background: #444;*/
    grid-column: 1 / span 4;
    padding: .5rem;
    text-align: center;
    font-size: 0.75rem;
    border-radius: 0px;
}

#main-footer .footer-container input[type='email']{
    width: 100%;
    padding: 0.5rem;
    margin-bottom: 0.5rem;
}

#main-footer .footer-container input[type='submit']{
    width: 100%;
}
#main-footer .social{
    justify-self: center;
}

#main-footer .social i{
    color: #fff;
    margin-right: 0.5rem;
    margin-top: 0.5rem;
}
#main-footer .social img{
    width: 25px;
    height: 25px;
    color: #fff;
    margin-right: 0.5rem;
    margin-top: 0.5rem;
}
.font-normal {
    font-weight: 400;
}
.text-size {
    font-size: 18px;
}
.text-size-2 {
    font-size: 26px;
}
.text-to-footer-color{
    opacity: 1;
    color: white;
}
.text-to-footer-color:hover{
    opacity: 1;
    color: var(--pc) !important;
}
figure-left {
    width: max(290px, 300px);
    float: left;
    padding: 0 1rem;
    margin: 0;
}
figure-right {
    width: max(290px, 300px);
    float: right;
    padding: 0 1rem;
    margin: 0;
}
figure-center {
    width: max(100%, 450px);
    padding: 0 1rem;
    margin: 0;
}
figcaption {
    font-size: 0.75rem;
    text-align: center;
    font-style: italic;
}
.figcaption-1 {
    margin-top: -15px;
}
.figcaption-2 {
    margin-top: -25px;
}
.figcaption-3 {
    margin-top: 0px;
}
table {
  border-collapse: collapse;
  width: 100%;
}

th, td {
  text-align: left;
  padding: 8px;
}

th{
  background-color: #3399FF;
}
tr:nth-child(even) {
  background-color: #D0E2FB;
}
.paragraph-overflow-1{
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.paragraph-overflow-2{
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
}
.shadow{
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  text-align: left; 
}
.float-x{
    float: center;
}
.blox-img{
    width: 400px;
    height: 50vh;
    padding-left: 3.5rem;
    padding-right: 3.5rem;
}
   .bg-block-gradient .bg-block-gradient-tech .bg-block-gradient-indus{
      content: '';
      display: flexbox; 
      border-radius: 15px;
      opacity: 5.5;
      background: linear-gradient(
        157.81deg,
        #2463B7 -43.27%,
        #1E4F79 -21.24%,
        #173731 12.19%,
        #2463B7 29.82%,
        #1E4F79 51.94%,
        #173731 100%
      );
    }
.blox-size{
    width: 100%;
    height: 50vh;
}
@media only screen and (min-width: 450px) {
  .float-x {
    float: right;
  }
  .blox-img{
    width: 100%;
    height: 100%;
    margin-right: 1.5rem;
    margin-top: -1rem;
    padding-left: 3.5rem;
    padding-right: 3.5rem;
   }

    .blox-size{
      width: 100%;
      height: 100%;
    }
}
@media only screen and (min-width: 600px) {
    .bg-block-gradient{
      background: url('https://www.bondaf.com/media/images/pictures/Articles/Pourquoi faire un Prototype - smart watering pipe test.svg') no-repeat center center/cover;
      
    }
    .bg-block-gradient-tech{
      background: url('https://www.bondaf.com/media/images/pictures/Articles/IoRT.svg') no-repeat center center/cover;
      
    }
    .bg-block-gradient-indus{
      background: url('https://www.bondaf.com/media/images/pictures/Articles/Pourquoi faire un Prototype - smart watering pipe test.svg') no-repeat center center/cover;
      
    }
    .text-background-color {
        background-color: #212368;
    }
    .text-size-2 {
        font-size: 36px;
    }
    figure-left {
    width: max(50%, 350px);
    float: left;
    padding: 0 1rem;
    margin: 0;
    }
    figure-right {
        width: max(50%, 350px);
        float: right;
        padding: 0 1rem;
        margin: 0;
    }
    figure-center {
        width: max(100%, 450px);
        padding: 0 1rem;
        margin: 0;
    }
}
.float-right{
    float: right;
}
.float-left{
    float: left;
}
.float-auto{
    float: auto;
}
.float-center{
    float: center;
}
.flex {
    display: center;
}
.text-blue{
  color: #3399FF;
}
.text-white{
    color: #ffffff;
}
.text-italic {
    font-size: 0.75rem;
    font-style: italic;
}
.text-background-color {
   /*background-color: ;*/
}
.border-t {
    border-width: 1px;
    border-top-style: solid; 
    border-color: #3399FF;
}
video {
  position: relative;
  min-width: 100%;
  min-height: 100%;
}
.video-ml{
    margin-left: -14px;
}
.rounded{
    border-radius: 15px;
}
.relative {
    position: relative;
}
   .depth{
        padding-top: 15%;
        padding-left: 15%;
        padding-right: 15%;
        margin-bottom: 0px;
    }
.w-x{
    width: 90%;
}
.h-x{
    height: 100%;
}
.hy{
    /*height: ;*/
}
.my{
    top: -45%;
}
.m-l{
    padding-left: 1.5rem;
}
.px{
    padding-left: 10px;
    padding-right: 10px;
}
.char{
    font-size: 24px;
    font-weight: bold;
}
.text-decoration{
    text-decoration-color:var(--sc);
    text-decoration: underline;
}
.alert {
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid transparent;
  border-radius: 4px;
}
.alert h4 {
  margin-top: 0;
  color: inherit;
}
.alert .alert-link {
  font-weight: bold;
}
.alert > p,
.alert > ul {
  margin-bottom: 0;
}
.alert > p + p {
  margin-top: 5px;
}
.alert-dismissable,
.alert-dismissible {
  padding-right: 35px;
}
.alert-dismissable .close,
.alert-dismissible .close {
  position: relative;
  top: -2px;
  right: -21px;
  color: inherit;
}
.alert-success {
  color: #3c763d;
  background-color: #dff0d8;
  border-color: #d6e9c6;
}
.alert-success hr {
  border-top-color: #c9e2b3;
}
.alert-success .alert-link {
  color: #2b542c;
}
.alert-info {
  color: #31708f;
  background-color: #d9edf7;
  border-color: #bce8f1;
}
.alert-info hr {
  border-top-color: #a6e1ec;
}
.alert-info .alert-link {
  color: #245269;
}
.alert-warning {
  color: #8a6d3b;
  background-color: #fcf8e3;
  border-color: #faebcc;
}
.alert-warning hr {
  border-top-color: #f7e1b5;
}
.alert-warning .alert-link {
  color: #66512c;
}
.alert-danger {
  color: #a94442;
  background-color: #f2dede;
  border-color: #ebccd1;
}
.alert-danger hr {
  border-top-color: #e4b9c0;
}
.alert-danger .alert-link {
  color: #843534;
}

/*0000000000000000000000000000000000000000*/

.References{
  width: 100%;
  height: 100%;
}

#body {
  margin: 0;
}
#body img{
     width: 100%;
     height: 100%;
     vertical-align: middle;
}
.scroll {
  position: relative;
  width: 100%;
  background-color: $boxify-bg-light-dark;
  overflow: hidden;
  z-index: 1;
  margin: 0;
  padding: 0;
}

.m-scroll {
  overflow: hidden;
  height: 100%;
  white-space: nowrap;
  animation: scrollText 0s infinite linear;
  margin: 0;
  font-size: 0;
  display: flex;
  justify-content: space-between;
  width: fit-content;
}

/*span {
  display: inline-block;
  margin: 0;
  padding: 0;
  color: white;
}*/

@keyframes scrollText {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(-50%);
  }
}

* {box-sizing: border-box}

.mySlides {display: none}

/* Slideshow container */
.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .dot:hover {
  background-color: #717171;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 768px) {
  .prev, .next,.text {font-size: 11px}
  .prev{
    left: 0;
   }
}

.weDo {
    margin: 0;
    /*padding: 0.4rem 0.6rem;*/
}






