
    
    * {
      /* outline: 2px solid red; */
      box-sizing: border-box;
      margin: 0;
      padding: 0;
      font-weight: 600;
      text-decoration: none;
      list-style: none;
      
    }

    /* .logo {
      margin-left: 15%;
      width: auto;
      border-radius: 25px;
      padding: 15px;
    } */

    .slider {
      margin-left: 100px;
      margin-right: 100px;

    }
.quote-btn{
  right: 100px;
}

    /* ------------------------ */

    /* ------------------------ */
    .top-nav {

      display: inline-flex;
      width: 100%;
      justify-content: space-around;
    }

    .nav-menu {
      margin: auto;
      width: 100%;
      height: 50px;
      display: flex;

    }

    .nav-menu ul {
      margin-left: 20%;

    }

    .nav-menu ul li {
      display: inline-flex;
      margin: auto;
      padding: 10px;

    }

    .nav-menu ul li:hover {

      background-color: lightblue;
      /* text-decoration: underline; */
      border-bottom: 3px solid black;
      transition: 0.2s ease-in-out;
      border-radius: 0 14px 12px 3px;

    }

    .nav-menu ul li a {
      color: black;
      font-weight: 100px;
      font-family: serif;
      text-decoration: none;
      font-size: 24px;
    }


    /* ------------------------ */
    .grey {
      background-color: lightgrey;
      height: 400px;
      width: 100%;
      top: 40px;
      box-shadow: 10px 10px 30px white inset;
    }



    #quote {
      height: 50px;
      width: 170px;
      font-family: serif;
      color: black;
      background-color: white;
      border: 1px solid black 20px 30px;
      border-radius: 2px;
      padding: 15px;
      margin: auto;
      margin-left: 20%;
    }

    #quote:hover {
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
      transition: 0.1s ease-in-out;
    }

    /* service section */
    .services {
      padding: 60px 20px;
      text-align: center;
      background-color: lightskyblue;
      box-shadow: 10px 10px 30px white inset;
    }
    

    .services h2 {
      font-size: 32px;
      margin-bottom: 40px;
    }

    .service-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 50px;
      max-width: 1200px;
      margin: auto;
    }

    .s-box {
      background: white;
      border: 2px solid black;
      padding: 30px 20px;
      border-radius: 10px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
      transition: transform 0.3s ease;
    }

    .s-box:hover {
      transform: translateY(-5px);
    }

    .s-box image {
      width: 60px;
      margin-bottom: 20px;
    }

    .service-box h3 {
      font-size: 20px;
      margin-bottom: 10px;
    }

    .service-box p {
      font-size: 15px;
      color: #555;
    }

    .banner {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      text-align: center;
      padding: 4px;
      padding-top: 10px;
      background-color: black;
      color: wheat;
      font-weight: 300;
      margin-bottom: 10px;
      margin-top: 5px;
      
    }
    .tick-list{
      margin-top: 100px;
      font-size: 18px;
    }
.tick-list li{
  margin-bottom: 10px;
}
    .box-over {
      background-color: black; 
/* it doesnt even work - there might be another link */
      position: absolute;
      top: 300px;
      left: 200px;
      height: 700px;
      width: 600px;
      color: white;
      -webkit-mask-image: linear-gradient(to right, black 80%, transparent);
      mask-image: linear-gradient(to right, black 80%, transparent);
      padding: 40px 50px;
      z-index: 1;
      border-radius: 22px;
    }
     
.s-box img{
  width: 70px;
  height: 70px;
  margin-bottom: 10px;
}

