* { 
    box-sizing: border-box;
    font-family: "Raleway", sans-serif;
    font-optical-sizing: auto;
}
body {
    margin: 0;
    padding: 0;
    background-color: #101010;
    color: white;
    overflow-x: hidden;
}
p {
    color: #9b9b9b;
}


/* topnav */
.nav_toggler {
    color: white;
    cursor: pointer;
    background-color: black;
    border: 1px solid #b2b2b2;
    padding: 3px 16px !important;
    font-size: 20px !important;
    margin: 10px !important;
    border-radius: 6px !important;
}
a.icon.nav_toggler {
    font-size: 28px;
}

a {
    text-decoration: none;
    color: inherit;
}
iframe {
    max-width: 100%;
  }
  
.topnav {
    overflow: hidden;
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: right;
    flex-wrap: wrap;
    padding: 7px;
    background-color: black;
    max-width: 1240px;
    margin: 0 auto;
}

.topnav a {
    float: left;
    display: block;
    text-align: center;
    padding: 14px 16px;
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 2px;
}


.topnav .icon {
    display: none;
}

.dropdown {
    float: left;
    overflow: hidden;
    
}

.dropdown .dropbtn {
    font-size: 14px;
    border: none;
    cursor: pointer;
    outline: none;
    padding: 14px 16px;
    background-color: inherit;
    color: white;
    font-family: inherit;
    margin: 0;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: black;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 999;
}

.dropdown-content a {
    float: none;
    background-color: #222222;
    font-size: 12px;
    color: white;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}


.dropdown-content a:hover, .topnav a:hover, .active {
    background-color: #222222;
    color: #00c2ff;
}

.dropdown:hover .dropdown-content {
    display: block;
}

footer {
    background-color: #121212;
    min-height: 22vh;
    display: flex;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    padding: 60px 16px;
    color: #999999;
}
iframe {
    max-width: 100%;
}

.header {
 
    color: #ffffff;
    background: url(../media/repair_bg1.jpg) no-repeat center center;
    background-size: cover;
    min-height: 79vh;
    position: relative;
    transition: background 1s ease-in-out;
}
.feats {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}
.feats div {
    max-width: 404px;
    text-align: center;
    border: 1px solid #32323200;
    color: #b1b1b1;
    padding: 0 6px;
    margin: 3px;
    padding-top: 31px;
    border-radius: 2px;
    background-color: #101010;
    min-height: 258px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.feattitle 
{
  font-size: 2rem;
}

.fa-solid {
    color: #00c2ff;
}

.charm {
    font-size: 2rem;
    margin-bottom: 25px;
}
h4 {
    color: white;
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 0.5rem;
    margin-top: 0;
}
button {
    outline: none;
    border: 1px solid #009fff;
    font-size: 1.3rem;
    background-color: #009fff;
    padding: 8px 10px;
    cursor: pointer;
    color: white;
    padding: 0.5rem 1rem;
    font-size: 1.25rem;
    line-height: 1.5;
    border-radius: 1.25rem;
}
.block {
    padding: 68px 16px;
    max-width: 1238px;
    margin: 0 auto;

}



.reveal {
    position: relative;
    transform: translateY(150px);
    opacity: 0;
    transition: all 2s ease;
  }


  .loadIn {
    transform: translateY(0px);
    opacity: 1;
  }
  .sidereveal {
    position: relative;
    transform: translateX(150px);
    opacity: 0;
    transition: all 2s ease;
  }
  .sideloadIn {
    transform: translateX(0px);
    opacity: 1;
  }
  
.center {
    text-align: center;
}


.container {
    max-width: 980px;
    padding: 0 32px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    height: 100%;
    transform: perspective(60px);
    transform-style: preserve-3d;
  }
  
  .product-card {
    max-width: 360px;
  }
  
  .product-card img {
    width: 100%;
    max-width: 212px;
  }
  
  .product-card:nth-child(1) {
    transform: translate3d(0, 0, -15px);
    animation-name: rotate-left;
    animation-duration: 14s;
    animation-iteration-count: infinite;
    animation-delay: .5s;
    animation-timing-function: ease-in-out;
    filter: drop-shadow(4px 4px 4px rgba(0, 0, 0, .2));
  }
  
  .product-card:nth-child(2) {
    transform: translate3d(0, 0, 5px);
    animation-name: rotate-center;
    animation-duration: 14s;
    animation-iteration-count: infinite;
    animation-delay: .5s;
    animation-timing-function: ease-in-out;
    filter: drop-shadow(4px 10px 10px rgba(0, 0, 0, .6));
  }
  
  .product-card:nth-child(3) {
    transform: translate3d(0, 0, -15px);
    animation-name: rotate-right;
    animation-duration: 14s;
    animation-iteration-count: infinite;
    animation-delay: .5s;
    animation-timing-function: ease-in-out;
    filter: drop-shadow(4px 4px 4px rgba(0, 0, 0, .2));
  }
  
  @keyframes rotate-left {
    0%, 100% {
      transform: translate3d(0, 0, -15px);
      filter: blur(0.8px) drop-shadow(4px 4px 4px rgba(0, 0, 0, .2));
    }
  
    33.33% {
      transform: translate3d(100%, 0, 5px);
      filter: blur(0) drop-shadow(4px 10px 10px rgba(0, 0, 0, .6));
    }
  
    66.66% {
      transform: translate3d(200%, 0, -15px);
      filter: blur(0.8px) drop-shadow(4px 4px 4px rgba(0, 0, 0, .2));
    }
  }
  
  @keyframes rotate-center {
    0%, 100% {
      transform: translate3d(0, 0, 5px);
      filter: blur(0) drop-shadow(4px 10px 10px rgba(0, 0, 0, .6));
    }
  
    33.33% {
      transform: translate3d(100%, 0, -15px);
      filter: blur(0.8px) drop-shadow(4px 4px 4px rgba(0, 0, 0, .2));
    }
  
    66.66% {
      transform: translate3d(-100%, 0, -15px);
      filter: blur(0.8px) drop-shadow(4px 4px 4px rgba(0, 0, 0, .2));
    }
  }
  
  @keyframes rotate-right {
    0%, 100% {
      transform: translate3d(0, 0, -15px);
      filter: blur(0.8px) drop-shadow(4px 4px 4px rgba(0, 0, 0, .2));
    }
  
    33.33% {
      transform: translate3d(-200%, 0, -15px);
      filter: blur(0.8px) drop-shadow(4px 4px 4px rgba(0, 0, 0, .2));
    }
  
    66.66% {
      transform: translate3d(-100%, 0, 5px);
      filter: blur(0) drop-shadow(4px 10px 10px rgba(0, 0, 0, .6));
    }
  }
  
  @media (max-width: 480px) {
    .container {
      flex-direction: column;
    }
  
    .product-card:nth-child(1) {
      transform: translate3d(0, 0, -15px);
    }
  
    .product-card:nth-child(2) {
      transform: translate3d(0, 0, 0);
    }
  
    .product-card:nth-child(3) {
      transform: translate3d(0, 0, -15px);
    }
  
    @keyframes rotate-left {
      0%, 100% {
        transform: translate3d(0, 0, -15px);
        filter: blur(0.8px) drop-shadow(4px 4px 4px rgba(0, 0, 0, .2));
      }
  
      33.33% {
        transform: translate3d(0, 100%, 5px);
        filter: blur(0) drop-shadow(4px 10px 10px rgba(0, 0, 0, .6));
      }
  
      66.66% {
        transform: translate3d(0, 200%, -15px);
        filter: blur(0.8px) drop-shadow(4px 4px 4px rgba(0, 0, 0, .2));
      }
    }
  
    @keyframes rotate-center {
      0%, 100% {
        transform: translate3d(0, 0, 5px);
        filter: blur(0) drop-shadow(4px 10px 10px rgba(0, 0, 0, .6));
      }
  
      33.33% {
        transform: translate3d(0, 100%, -15px);
        filter: blur(0.8px) drop-shadow(4px 4px 4px rgba(0, 0, 0, .2));
      }
  
      66.66% {
        transform: translate3d(0, -100%, -15px);
        filter: blur(0.8px) drop-shadow(4px 4px 4px rgba(0, 0, 0, .2));
      }
    }
  
    @keyframes rotate-right {
      0%, 100% {
        transform: translate3d(0, 0, -15px);
        filter: blur(0.8px) drop-shadow(4px 4px 4px rgba(0, 0, 0, .2));
      }
  
      33.33% {
        transform: translate3d(0, -200%, -15px);
        filter: blur(0.8px) drop-shadow(4px 4px 4px rgba(0, 0, 0, .2));
      }
  
      66.66% {
        transform: translate3d(0, -100%, 5px);
        filter: blur(0) drop-shadow(4px 10px 10px rgba(0, 0, 0, .6));
      }
    }
  }
  



  @keyframes fadeInDown {
    0% {
      opacity: 0;
      transform: translateY(-20px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .fade-in-down {
    animation: fadeInDown 0.5s ease-in-out;
  }


/* responsive tweaks */
@media screen and (max-width: 1262px) {
    .topnav {
        display: block;
        padding: 0;
    }

    .topnav a:not(:first-child),
    .dropdown .dropbtn {
        display: none;
    }

    .topnav a.icon {
        float: right;
        display: block;
    }

    .topnav.responsive {
        position: relative;
    }

    .topnav.responsive .icon {
        position: absolute;
        right: 0;
        top: 0;
    }

    .topnav.responsive a {
        float: none;
        display: block;
        text-align: left;
    }

    .topnav.responsive .dropdown {
        float: none;
    }

    .topnav.responsive .dropdown-content {
        position: relative;
    }

    .topnav.responsive .dropdown .dropbtn {
        display: block;
        width: 100%;
        text-align: left;
    }
}

@media screen and (max-width: 840px) {


}

@media screen and (max-width: 700px) {
 
}

@media screen and (max-width:420px) {
    .topnav a img {
        max-height: 51px !important;
    }
    .checklist div {
        width: 100%;
    }

    .im2 {
        margin-left: 0;
    }

}