/* Importing Google font - Open Sans */
@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&family=Roboto:wght@300;400;500;700;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Quicksand', sans-serif;
}

  .sectionss {
    height: 100vh;
    width: 100%;
    display: grid;
    place-items: center;
    margin-top: 20px;
  }
  .rows {
    display: flex;
    flex-wrap: wrap;
    margin-top: 8px;
  }
  .columns {
    width: 100%;
    padding: 0 1em 1em 1em;
    text-align: center;
  }
  .card {
    width: 100%;
    height: 100%;
    padding: 2em 1.5em;
    background: linear-gradient(#ffffff 50%, #F73032 50%);
    background-size: 100% 200%;
    background-position: 0 2.5%;
    border-radius: 5px;
    box-shadow: 0 0 35px rgba(0, 0, 0, 0.12);
    cursor: pointer;
    transition: 0.5s;
  }
  h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1f194c;
    margin: 1em 0;
  }
  p {
    color: #575a7b;
    font-size: 15px;
    line-height: 1.6;
    letter-spacing: 0.03em;
  }
  .icon-wrapper {
    background-color: #F73032;
    position: relative;
    margin: auto;
    font-size: 30px;
    height: 2.5em;
    width: 2.5em;
    color: #ffffff;
    border-radius: 50%;
    display: grid;
    place-items: center;
    transition: 0.5s;
  }
  .card:hover {
    background-position: 0 100%;
  }
  .card:hover .icon-wrapper {
    background-color: #ffffff;
    color: #F73032;
  }
  .card:hover h3 {
    color: #ffffff;
  }
  .card:hover p {
    color: #f0f0f0;
  }



  section.constraction {
    height: 100px;
    background-size: cover;
    text-align: center;
    color: #fff;
    font-size: 22px;
    padding: 150px 0 40px;
    font-weight: 400;
    background-position: center;
  }
  
  section.constraction::before{
  
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
   
    filter: blur(2px);
    -webkit-filter: blur(2px);
    z-index: -1;
    animation: backanimates 15s forwards infinite;
  
  }
  
  @keyframes backanimates {
  
    0% {
      background: url('../images/9881608_4296179.jpg') no-repeat left top #0D0E0E;
      background-size: cover;
     z-index: -1;
    }
    65%{
      
      background: url('../images/33770859_2209.i032.003.P.m005.c33.isometric\ mining\ set.jpg') no-repeat left top #0D0E0E;
      background-size: cover;
     z-index: -1;
    }
    100%{
      background: url('../images/33770859_2209.i032.003.P.m005.c33.isometric\ mining\ set.jpg') no-repeat left top #0D0E0E;
      background-size: cover;
     z-index: -1;
  
    }
   
    
  }
  




















  @media screen and (min-width: 768px) {
    section {
      padding: 0 2em;
    }
    .columns {
      flex: 0 50%;
      max-width: 50%;
    }
  }
  @media screen and (min-width: 992px) {
    section {
      padding: 1em 3em;
    }
    .columns {
      flex: 0 0 33.33%;
      max-width: 33.33%;
    }
  }