@import url('https://fonts.googleapis.com/css2?family=Kanit:ital,wght@0,100;1,200&family=Raleway:ital,wght@0,100;0,200;0,300;&display=swap');
*{
    margin: 0%;
    padding: 0%;
    font-family: 'Kanit', sans-serif;
    font-family: 'Raleway', sans-serif;
}
a{
    text-decoration: none;
}
body{
  background-color: rgba(128, 128, 128, 0.17);;
}
:root{
  --color-black:black;
  --color-purple-light: rgba(158, 42, 158, 0.641);
  --color-lightseagreen :lightseagreen;
  --color2-lightseagreen :rgb(63, 201, 171);
  --color-white : white;
  --color-black-light :rgba(0, 0, 0, 0.26) ;
  --color-g:rgba(255, 255, 255, 0.379);
   }
  .font{
      display: flex;
      justify-content: space-between;
      padding: 10px 100px;
      font-size: 20px;
  }
  .font a{
    cursor: pointer;
    color: var(--color-black);
    transition: 0.1s;
  }
  .font a:hover{
    color: var(--color-lightseagreen);
    padding: 0px;
  }
  
  .left-font i{
     padding: 0px 5px;
     transition: 0.3s;
  }
  
  .right-font i{
      padding: 0px 5px;
      transition: 0.3s;
   }
   header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 50px;
  }
  
  .logo {
    color: var(--black);
    font-size: 35px;
    text-transform: uppercase;
    font-weight: bold;
    text-decoration: none;
  }
  
  .logo:hover {
    padding: 0px;
  }
  
  .navbar a {
    position: relative;
    padding: 0px 20px;
    color: var(--color-black) ;
    text-decoration: none;
    text-transform: capitalize;
    font-size: 20px;
    letter-spacing: 0.5px;
    transition: 0.9s;
  }
  .navbar a:hover{
    padding: 0px 20px;
  
  }
  .navbar a:hover,
  .navbar a.active {
    color: var(--color2-lightseagreen);
  }
  .navbar a::after {
    content: '';
    position: absolute;
    width: 62%;
    transform: scaleX(0);
    height: 2px;
    top: 30px;
    left: 20px;
    background-color: var(--color2-lightseagreen);
    transform-origin: bottom right;
    transition: transform 0.25s ease-out;
  }
  
  .navbar a:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
  }
  
  .hamburger {
    display: none;
    height: fit-content;
    cursor: pointer;
    padding: 3px 8px;
    border-radius: 5px;
    transition: 0.2s;
  }
  .hamburger div {
    width: 30px;
    height: 2px;
    margin: 6px 0px;
    background: var(--color-black)
  }
    .data{
      width: 100%;
      height: 550px;
      display: flex;
      justify-content: space-between;
  }
  .text{
      width: 100%;
      padding: 150px 20px;
      border-radius: 10px;
      border: 1px solid rgba(0, 0, 0, 0.055);
  }
  .text h2{
     font-weight: 550;
     text-align: center;
     letter-spacing: 1px;
     font-size: 25px;
     text-transform: capitalize;
  }
  /* .text a{
      background-color: var(--color2-lightseagreen);
      padding: 10px 15px;
      border-radius: 10px;
      letter-spacing: 2px;
      color: var(--color-white);
      position: relative;
      top: 30px;
      font-weight: 300;
      text-transform: uppercase;
      font-size: 20px;
      transition: 0.5s linear;
  }
  .text a:hover{
      padding-left: 13px;
      letter-spacing: 5px;
      background-color: var(--color-white);
      color: #33383b;
      box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.392) , -10px -10px -10px  rgba(0, 0, 0, 0.392) ;
  } */
  .img{
      width: 100%;
  }
  .img img{
      width: 100%;
      margin-top: 150px;
  }
  .cards{
    width: 100%;
    display: flex;
    margin-top: 150px;
    cursor: progress;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .card{
  width: 29%;
  height: 580px;
  background-color: var(--color-white);
  border-radius: 20px;
  margin: 0px 6px;
  box-shadow: 05px 05px 10px rgba(0, 0, 0, 0.301);
  }
  .img2{
    width: 100%;
  }
  .img2 img{
    width: 100%;
    border-radius: 20px 20px 0px 0px;
  }
  .text2{
    padding: 20px;
  }
  .text2 h2{
    text-transform: capitalize;
    font-size: 25px;
  }
  .text2 h6{
    font-size: 15px;
  }
  .text2   h6 , .text2 p , .text2 i{
    margin-top: 30px;
  }
  .text2 i{
    padding-left:  5px;
    font-size: 17px;
  }
  .text2 p{
    opacity: 0.5;
    font-size: 13px;
  }
    .footer{
        margin-top: 150px;
        width: 100%;
    }
    .footer-distributed{
      background: var(--color-black-light);
      box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.12);
      box-sizing: border-box;
      width: 100%;
      text-align: left;
      font: bold 16px sans-serif;
      padding: 55px 50px;
    }
    
    .footer-distributed .footer-left,
    .footer-distributed .footer-center,
    .footer-distributed .footer-right{
      display: inline-block;
      vertical-align: top;
    }
    
    /* Footer left */
    
    .footer-distributed .footer-left{
      width: 40%;
    }
    
    /* The company logo */
    
    .footer-distributed h3{
      color:  var(--black);
      font: normal 36px 'Open Sans', cursive;
      margin: 0;
    }
    
    .footer-distributed h3 span{
      color:  var(--color-lightseagreen);
    }
    
    /* Footer links */
    
    .footer-distributed .footer-links{
      color:  var(--color-purple-light);
      margin: 20px 0 12px;
      padding: 0;
    }
    .footer-distributed .footer-links a{
      display:inline-block;
      line-height: 1.8;
      font-weight:400;
      text-decoration: none;
      color:  inherit;
      transition: 0.5s;
    }
    
    .footer-distributed .footer-company-name{
      color: var(--color-black-mid);
      font-size: 14px;
      font-weight: normal;
      margin: 0;
    }
    
    /* Footer Center */
    
    .footer-distributed .footer-center{
      width: 35%;
    }
    
    .footer-distributed .footer-center i{
      background-color:  #33383b;
      color: var(--color-white);
      font-size: 25px;
      width: 38px;
      height: 38px;
      border-radius: 50%;
      text-align: center;
      line-height: 42px;
      margin: 10px 15px;
      vertical-align: middle;
    }
    
    .footer-distributed .footer-center i.fa-envelope{
      font-size: 17px;
      line-height: 38px;
    }
    
    .footer-distributed .footer-center p{
      display: inline-block;
      color: var(--black);
      font-weight:400;
      vertical-align: middle;
      margin:0;
      transition: 0.5s;
    }

    .footer-center p , 
    span ,
     a{
    cursor: grab;
    }
    
    
    .footer-distributed .footer-center p span{
      display:block;
      font-weight: normal;
      font-size:14px;
      line-height:2;
    }
    
    .footer-distributed .footer-center p a{
      color:  var(--black);
      text-decoration: none;;
    }
    
    .footer-distributed .footer-links a:before {
      content: "|";
      font-weight:300;
      font-size: 20px;
      left: 0;
      color: var(--black);
      display: inline-block;
      padding-right: 5px;
    }
    
    .footer-distributed .footer-links .link-1:before {
      content: none;
    }
    
    /* Footer Right */
    
    .footer-distributed .footer-right{
      width: 20%;
    }
    
    .footer-distributed .footer-company-about{
      line-height: 20px;
      color:var(--black);
      font-size: 13px;
      font-weight: normal;
      margin: 0;
    }
    
    .footer-distributed .footer-company-about span{
      display: block;
      color:  rgba(0, 0, 0, 0.973);
      font-size: 16px;
      font-weight: bold;
      text-transform: capitalize;
      margin-bottom: 20px;
    }
    .footer-distributed .footer-company-about .next{
    text-transform: uppercase;
    }
    .footer-distributed .footer-company-about a{
      position: relative;
      left: 35px;
      color:var(--color-purple-light);
      font-size: 15px;
    }
    .footer-distributed .footer-icons{
      margin-top: 25px;
    }
    
    .footer-distributed .footer-icons a{
      display: inline-block;
      width: 35px;
      height: 35px;
      cursor: pointer;
      background-color:  #33383b;
      border-radius: 2px;
      font-size: 20px;
      color: var(--color-white);
      text-align: center;
      line-height: 35px;
      margin-right: 3px;
      margin-bottom: 5px;
    }
   
    @media only screen and (max-width: 992px) {
      .header {
        padding: 0px 25px;
      }
    
      .hamburger {
        display: block;
        position: absolute;
        top: 60px;
        right: 20px;
    }
    .navbar {
      width: 120px;
      height: 500px;
      position: fixed ;
      left: -250px;
      top: 70px;
      background: rgba(0, 0, 0, 0.664);
      transition: 0.2s;
      box-shadow: 2px 0px 20px 0px rgba(9, 0, 0, 0.5);
      display: block;
      justify-content: center;
      align-items: center;
      z-index: 1;
    }
      #nav_check:checked~nav {
        left: -25px;
      }
    
      .logo {
        position: absolute;
        top: 45px;
        font-size: 25px;
      }  
      .navbar a {
        line-height: 20px;
        padding: 0px 0px 0px 10px;
        font-size: 17px;
        color: var(--color-white);
      }
    
      .navbar a:hover{
        padding-left: 10px;
       }
       .navbar a::after {
        margin-top: 0px;
        position: absolute;
        width: 50%;
        left: 05px;
      }
      .navbar a:hover::after {
        transform: scaleX(1.5);
      }
      .data{
        width: 100%;
        height: 100%;
        position: absolute;
        top: 100px;
        flex-direction: column;
    }
    .text{
        width: 90%;
        padding: 100px 0px 0px 20px;
    }
    .text h2{
       font-weight: 600;
       letter-spacing: 1px;
    }
    .text a{
        padding: 10px 10px;
        letter-spacing: 1px;
        font-size: 15px;
    }
    .text a:hover{
        letter-spacing: 3px;
    }
     .img{
         width: 80%;
     }
     .img img{
         width: 100%;
         position: absolute;
         top: 550px;
         margin-left: -30px;
        }
        .card{
        width: 40%;
        margin-left: 40px;
        margin-top: 300px;  
        }
        .cards{
          margin-top: 650px;
          justify-content: center;
        }
        .footer{
          width: 105%;
      }
      }
    @media      (max-width: 880px) {
      
      .img{
          width: 90%;
      }
      .img img{
          margin-top: 80px;
        
      }
      .services{
          flex-direction: column;
      }
      .services .text2{
          width: 90%;
          padding: 15px;
      }
      .text2 h2{
          font-size: 28px;
          font-weight: 600;
      }
      .text2 p{
          font-size: 16px;
          width: 90%;
      }   
      .footer-distributed .footer-left,
      .footer-distributed .footer-center,
      .footer-distributed .footer-right{
          display: block;
          width: 100%;
          margin-bottom: 40px;
          text-align: center;
      }
  
      .footer-distributed .footer-center i{
          margin-left: 0;
      }
      .card{
        width: 40%;
        margin-left: 20px;
        margin-top: 100px;  
        }
        .cards{
          margin-top: 500px;
          justify-content: center;
        }
        .text2{
          padding: 10px;
        }
        .text2 h2  , p ,i{
       margin-top: 5px;
        }
        .text2 h2{
          text-transform: capitalize;
          font-size: 22px;
          font-weight: lighter;
        } 
  }
  @media screen and (max-width : 678px) {
    .cards{
      flex-direction: column;
    }
    .card{
      width: 70%;
      margin-left: 100px;
      }
  }
  @media screen and (max-width : 505px) {
    .cards{
      flex-direction: column;
    }
    .card{
      width: 70%;
      margin-left: 100px;
      }
    .img img{
      margin-left: -30px;
    width: 100%;
  }
    .card{
      margin-left: 30px;
      }
  }