@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');

*{
    font-family: 'Raleway', sans-serif;
    box-sizing: border-box;
}

a {
  text-decoration: none;
}

: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 60px;
}

.font a {
  cursor: pointer;
  color: var(--color-black);
  transition: 0.1s;
  font-size: 18px;
}

.font a:hover {
  color: var(--color-lightseagreen);
  padding: 0px;
}

.left-font i ,.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,
.navbar a.active {
  color: var(--color2-lightseagreen);
 margin-left: 0px;
 margin-right: 0px;
}

.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 25px;
  border-radius: 5px;
  transition: 0.2s;
}

.hamburger div {
  width: 30px;
  height: 2px;
  margin: 6px 0px;
  background: var(--color-black)
}
.midData{
    background: linear-gradient(to right , white ,  rgba(63, 201, 171, 0.323));
    width: 100%;
    height: 70vh;
    padding: 0px 10px;
    display: flex;
    justify-content: center;
}
.leftText{
    width: 50%;
    padding-top: 100px;
}
.leftText h2{
    font-weight: 900;
    font-style: oblique;
}
.rightText{
    width: 50%;
}
.rightText img{
    width: 100%;
    margin-top: 60px;
}
.lastData{
    display: flex;
    width: 100%;
    padding: 0px 15px;
}
.lastData >  .text{
    padding-top: 90px;
    width: 80%;
}
.text h3{
    font-size: 30px;
    font-weight: 600;
    font-style: italic;
    margin-top: 30px;

}
.text p{
    font-style: normal;
    font-weight: lighter;
    margin-top: 30px;
}
.lastData .img img{
    width: 80%;
    margin-left: 50px;
    margin-top: 50px;
}
.footer{
    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) {
    .fotter{
      margin-top: 4100px;
     }
      .header {
        padding: 0px 25px;
      }
    
      .hamburger {
        display: block;
        position: fixed;
        top: 45px;
        right: 30px;
    }
    .navbar {
      width: 120px;
      height: 500px;
      position: fixed;
      left: -250px;
      top: 85px;
      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: 65px;
        padding: 0px 0px 0px 10px;
        font-size: 17px;
        color: var(--color-white);
      }
    
      .navbar a:hover{
        padding-left: 10px;
       }
       .navbar a::after {
        margin-top: 15px;
        position: absolute;
        width: 60%;
        left: 05px;
      }
      .navbar a:hover::after {
        transform: scaleX(1.5);
      }
      .midData{
        position: absolute;
        top: 100px;
        height: 800px;
      flex-direction: column;
      box-sizing: border-box;
    }
    .leftText{
        width: 100%;
        margin-top: 50px;
        height: 100%;
        padding-top: 100px;
        padding-left: 20px;
    }
    .leftText h2{
        font-weight: 900;
        font-style: oblique;
    }
    .rightText{
        width: 100%;
    }
    .rightText img{
        width: 100%;
        margin-top: 60px;
    }
    .lastData{
        padding: 0px 5px;
        margin-top: 300px;
    }
    .lastData >  .text{
        padding-top: 90px;
        width: 100%;
    }
    .text h3{
        font-size: 25px;
        font-weight: 400;
        margin-top: 20px;
    }
    .text p{
        margin-top: 20px;
    }
    .lastData .img img{
        width: 80%;
        margin-left: 50px;
        margin-top: 150px;
    }
    }
    @media screen and (max-width :768px) {
        .lastData{
            padding: 0px 5px;
            flex-direction: column;
        }
        .text h3{
            font-size: 25px;
        }
        .lastData .img img{
            width: 50%;
            margin-left: 120px;
            margin-top: 10px;
        }
    }
    @media (max-width: 880px) {
        .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;
        }
      }
      @media screen and (max-width : 505px) {
       .midData .rightText img{
        position: absolute;
        top: 300px;
       }
       .midData{
        height: 600px;
    }
    .lastData{
      margin-top: 200px;
    }
        .font{
            padding: 10px 0px;
        }
        .font a{
            font-size: 15px;
        }
        .left-font i ,.right-font i  {
            padding: 0px 2px;
          }
          .header {
            padding: 0px 0px;
          }
          .logo {
            font-size: 20px;
          }
    
        .navbar {
            width: 90px;
            height: 400px;
            left: -250px;
          }
            #nav_check:checked~nav {
              left: 0px;
            }
          .navbar a {
            font-size: 15px;
          }
          .navbar a::after {
            top: 30px;
            width: 60%;
            left: 10px;
          }
          .navbar a:hover::after {
            transform: scaleX(1.5);
          }
          .hamburger div {
            width: 20px;
            height: 1px;
          }
           
        .hamburger {
            position: fixed;
            top: 45px;
            right: 05px;
        }
        .text h3{
            font-size: 22px;
        }
        .text p{
            font-size: 15px;
            font-weight: 100;
        }
    }
    @media screen and (max-width : 578px) {
        .leftText{
            margin-top: 0px;
            padding-top: 70px;
        }
        .rightText img{
            margin-top: 0px;
            margin-bottom: 150px;
        }
        .leftText h2{
            font-size: 25px;
            font-weight: 400;
        }
    }