
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

.roboto-thin {
    font-family: "Roboto", sans-serif;
    font-weight: 100;
    font-style: normal;
  }
  
  .roboto-light {
    font-family: "Roboto", sans-serif;
    font-weight: 300;
    font-style: normal;
  }
  
  .roboto-regular {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-style: normal;
  }
  
  .roboto-medium {
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    font-style: normal;
  }
  
  .roboto-bold {
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    font-style: normal;
  }
  
  .roboto-black {
    font-family: "Roboto", sans-serif;
    font-weight: 900;
    font-style: normal;
  }
  
  .roboto-thin-italic {
    font-family: "Roboto", sans-serif;
    font-weight: 100;
    font-style: italic;
  }
  
  .roboto-light-italic {
    font-family: "Roboto", sans-serif;
    font-weight: 300;
    font-style: italic;
  }
  
  .roboto-regular-italic {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-style: italic;
  }
  
  .roboto-medium-italic {
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    font-style: italic;
  }
  
  .roboto-bold-italic {
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    font-style: italic;
  }
  
  .roboto-black-italic {
    font-family: "Roboto", sans-serif;
    font-weight: 900;
    font-style: italic;
  }
  





















*{
    margin: 0;
    padding: 0;
}
body{
    font-family: 'Inter', sans-serif;
}

.slider{
    width: 100%;
    min-height: 80vh;
    aspect-ratio: 16/9;
    background:#000;
    position: relative;
}

.slider-background{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-content{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%);
    text-align: center;
}

h1{
    color: #fff;
    font-size: 5rem;
    font-weight: 300;
}
h2{
 font-size: 3rem; 
 margin-bottom: 20px;  
}

p{
    font-size: 1.5rem;
    line-height: 1.5em;
}

.slider-content p{
    color: #fff;
    font-size: 2rem;
    font-weight: 300;
}


.section{
    padding:100px ;
}

.boxed{
    max-width: 1280px;
    margin-inline: auto;
}

.flex{
    display: flex;
}
.dark{
    background:url(../images/geek.jpg);
    background-size: cover;
    background-position-y: 50%;
    color: #fff;
}
.w40{
    width: 40%;
}

.w60{
    width: 60%;
}
.text-center{
    text-align: center;
}
.w25{
    width: 25%;
}
.w32{
    width: 32%;
}
.space-between{
    justify-content:space-between ;
}
.gap20{
    gap: 20px;
}
.wrap{
    flex-wrap: wrap;
}
.skill{
background: #333;
border-radius: 15px;
padding: 20px;
box-sizing: border-box;
}

.skill img{
width: 100px;
height: 100px;
aspect-ratio:1/1 ;
object-fit: cover;
}

.skill h3{
    margin-top: 10px;
    color: #000;
}

.realisation{
    height: auto;
    aspect-ratio:1/1 ;
    position: relative;
}
.realisation h3{
    position: absolute;
    top: 50% ;
    left: 50%;
    transform: translate(-50%);
    font-size: 2rem;
    width: max-content;
    opacity: 0;
    transition: 4s ease ;
}
.realisation a{
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: #fff;
}

.realisation img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(40%);
    transition: 4s ease;
}

.realisation:hover img {
    filter: brightness(60%);
}

.realisation:hover h3{
    opacity: 1;
}
.icon{
    display: block;
    font-size: 40px;
}
.label{
    display: block;
    font-weight: 700;
    text-transform:uppercase ;
    margin:10px
    font-size
}

.value{
    display: block;
    font-size: 1.5rem;
}

.contact{
    border: 2px dashed #514f4f;
    border-radius: 15px;
    padding: 30px;
    box-sizing: border-box;
}


