
.card__title {
    font-size: 59px !important;
  }

  .production_header_video_overlay a {

    background-color: #00714B;

  }

  .production_header_video_overlay a:hover {

    color: #00714B;
    border: 2px solid#00714B;
  }
  .prod_button {
  --background-color: black;
  --border-color: #007148;
  --border-width: 0.25em;
  --edge-size: 1em;
  cursor: pointer;
  background: var(--background-color);
  padding: 0.5em 1.5em;
  border: 0;
  position: relative;
  isolation: isolate;
  display: inline-grid;
  place-content: center;
  -webkit-clip-path: polygon(var(--edge-size) 0%, 100% 0, 100% calc(100% - var(--edge-size)), calc(100% - var(--edge-size)) 100%, 0 100%, 0% var(--edge-size));
  clip-path: polygon(var(--edge-size) 0%, 100% 0, 100% calc(100% - var(--edge-size)), calc(100% - var(--edge-size)) 100%, 0 100%, 0% var(--edge-size));
  transition: color 250ms;
  text-decoration: none;
  color: white;
  width: 10rem;
  padding: 1rem;
}
.production_container header{
    height: 100vh;
  }
  
  .production_container video{
      width: 99.5vw;
      height: 100vh;
      object-fit: cover;
      z-index: 0;
      /* transform: translateY(-1rem); */
  }
  
  .production_header_video_overlay{
      position: absolute;
      z-index: 1;
          height: 100vh;
          width: 90vw;
          display: flex;
          flex-direction: column;
          justify-content: center;
          transform: translateX(10rem);
      
  }
  
  .production_header_video_overlay h1{
      font-size: 4rem;
      width: 40rem;
          margin-bottom: 3rem;
          color: #fff;
  }
  
  .production_header_video_overlay p{
      margin-bottom: 2rem;
          width: 38rem;
          letter-spacing: 2px;
      font-size: 1.1rem;
      color: white;
  }
  
  .production_header_video_overlay a{
      text-decoration: none;
      color: black;
      padding: 1rem;
      background-color: #00714B;
      border-radius: 2rem;
          width: 17.4rem;
      font-size: 1.1rem;
      font-weight: 700;
  }
  
  .production_header_video_overlay a:hover{
    background: black;
    color: #00714B;
    border: solid #00714B .1rem;
  }
  





/* New Contact From   Page css start  */
.container2 {
    position: relative;
    width: 100%;
    min-height: 100vh;
    padding: 2rem;
    background-color: #fafafa;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    /* margin-top: 1rem; */
  }
  
  .form {
    width: 100%;
    max-width: 1100px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 20px 1px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    overflow: hidden;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  
  .contact-form {
    background-color: #00714B;
    position: relative;
  }
  
  
  
  
  .contact-form:before {
    content: "";
    position: absolute;
    width: 26px;
    height: 26px;
    background-color: #00714B;
    transform: rotate(45deg);
    top: 50px;
    left: -13px;
  }
  
  form {
    padding: 2.3rem 2.2rem;
    z-index: 10;
    overflow: hidden;
    position: relative;
  }
  
  
  .title1234 {
    color: rgb(241, 245, 245);
    font-weight: 500;
    font-size: 2.5rem;
    line-height: 1;
    margin-bottom: 0.7rem;
  }
  .input-container {
    position: relative;
    margin: 1rem 0;
  }
  
  .input {
    width: 100%;
    outline: none;
    border: 2px solid #faf3f3 !important;
    background: none;
    padding: 0.6rem 1.2rem;
    color: #fff;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    border-radius: 5px;
    transition: 0.3s;
    
  }
  
  textarea.input {
    padding: 0.8rem 1.2rem;
    min-height: 100px;
    border-radius: 5px;
    resize: none;
    overflow-y: auto;
  }
  
  .input-container label {
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    padding: 0 0.4rem;
    color: #fafafa;
    font-size: 0.9rem;
    font-weight: 400;
    pointer-events: none;
    z-index: 1000;
    transition: 0.5s;
    
  }
  
  
  .input-container.textarea label {
    top: 1rem;
    transform: translateY(0);
  }
  
  .btn123 {
    padding: 0.6rem 1.3rem;
    background-color: #fff;
    border: 2px solid #fafafa;
    font-size: 1rem;
    color: #1abc9c;
    line-height: 1;
    border-radius: 5px;
    outline: none;
    cursor: pointer;
    transition: 0.3s;
    margin: 0;
    width: 100%;
    font-weight: 700;
  }
  
  .btn123:hover {
    background-color: transparent;
    color: #fff;
  }
  
  .input-container span {
    position: absolute;
    top: 0;
    left: 25px;
    transform: translateY(-50%);
    font-size: 0.8rem;
    padding: 0 0.4rem;
    color: transparent;
    pointer-events: none;
   
  
    
  }
  
  .input-container span:before,
  .input-container span:after {
    content: "";
    position: absolute;
    width: 10%;
    opacity: 0;
    transition: 0.3s;
    height: 5px;
    background-color: #00714B !important;
    top: 50%;
    transform: translateY(-50%);
   
   
    
  }
  
  .input-container span:before {
    left: 50%;
   
  }
  
  .input-container span:after {
    right: 50%;
  }
  
  .input-container.focus label {
    top: 0 !important;
    transform: translateY(-50%) !important;
    left: 25px !important;
    font-size: 0.8rem !important;  
   
  }
  
  .input-container.focus span:before,
  .input-container.focus span:after {
    width: 50%;
    opacity: 1;
  
  
  }
  
  .contact-info {
    padding: 2.3rem 2.2rem;
    position: relative;
  }
  
  .contact-info .title {
    color: #00714B;
  }
  
  .text1 {
    color: #333;
    margin: 1.5rem 0 2rem 0;
    transform: translateY(4rem);
    margin-bottom: 3rem;
  }
  
  .information {
    display: flex;
    color: #555;
    margin: 0.1rem 0;
    align-items: center;
    font-size: 0.95rem;
    
   
  }
  .information p a{
    text-decoration: none;
    color: #555;
  }
  
  .information i {
    color: #00714B;
  }
  
  .icon {
    width: 28px;
    margin-right: 0.7rem;
  }
  
  .social-media {
    padding: 2rem 0 0 0;
     
  }
  .info{
    transform: translateY(3.5rem);
  }
  .information2 {
    display: flex;
    color: #555;
    margin: 2.1rem 5rem;
    align-items: center;
    font-size: 0.95rem;
   
  }
  .information2 i {
    color: #00714B;
  }
  
  .social-media p {
    color: #333;
    padding-top: 0.2rem;
  }
  .social_media2{
    display: flex;
    transform: translateY(4rem);
  }
  
  .social-icons {
    display: flex;
    margin-top: 0.5rem;
  
    
  }
  
  .social-icons a {
    width: 35px;
    height: 35px;
    border-radius: 5px;
    background: linear-gradient(45deg, #00714B, #00714B);
    color: #fff;
    text-align: center;
    line-height: 35px;
    margin-right: 0.5rem;
    transition: 0.3s;
  }
  
  .social-icons a:hover {
    transform: scale(1.05);
  }
  
  .contact-info:before {
    content: "";
    position: absolute;
    width: 110px;
    height: 100px;
    border: 22px solid #00714B;
    border-radius: 50%;
    bottom: -77px;
    right: 50px;
    opacity: 0.3;
  }
  
  .big-circle {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: linear-gradient(to bottom, #00714B, #00714b);
    bottom: 50%;
    right: 50%;
    transform: translate(-40%, 38%);
  }
  
  .big-circle:after {
    content: "";
    position: absolute;
    width: 360px;
    height: 360px;
    background-color: #fafafa;
    border-radius: 50%;
    top: calc(50% - 180px);
    left: calc(50% - 180px);
  }
  
  .square {
    position: absolute;
    height: 400px;
    top: 50%;
    left: 50%;
    transform: translate(181%, 11%);
    opacity: 0.2;
  }
  .corporation{
  margin-top: 0.5rem !important;
  }
  
  .text321 h2{
  font-weight: 700;
  transform: translateY(1.5rem);
  }
  .text321 p{
  
  transform: translateY(2rem);
  }
  @media screen and (max-width: 1600px) {
    /* laptop header section */

    .production_header_video_overlay{
      width: 85vw;
      transform: translateX(8rem);
    }

    .production_container{
      width: 99.5vw;
    }
    .production_container video{
      width: 99.5vw;
    }
  
    
}

@media screen and (max-width: 430px) {

    /* Header section */
  
    .production_header_video_overlay{
      background-color: #00000031;
      width: 100vw !important;
      transform: translateX(0rem) !important;
    }
  
    .production_header_video_overlay h1{
      width: 20rem;
      font-size: 2rem;
      transform: translate(1rem,-7rem);
    }
  
    .production_header_video_overlay p{
      width: 15rem;
      transform: translate(1rem,-7rem);
      color: white;
    }
  
    .production_header_video_overlay a{
      transform: translate(1rem,-7rem);
    }
  
    .production_container header{
      height: 100vh;
    }
    .production_container header video{
      height: 100vh;
      width: 100vw;
      object-fit: cover;
    }
    .card__title {
        font-size: 30px !important;
      }
      
      .prod{
        margin-top: 5.2rem;
      }
      .graph{
        margin-top: 5.2rem;
      }
      .manage{
        margin-top: 5.2rem;
      }
   
    /* mobile  */
  
    .container {
      padding: 0;
      padding-left: 0px;
  }
  
  .contact-info:before {
      display: none;
  }
  
  .square,
  .big-circle {
      display: none;
  }
  
  form,
  .contact-info {
      padding: 1.7rem 1.6rem;
  }
  
  .text1,
  .information,
  .social-media p {
      font-size: 0.8rem;
  }
  
  .title {
      font-size: 1.15rem;
  }
  
  .social-icons a {
      width: 30px;
      height: 30px;
      line-height: 30px;
  }
  
  .icon {
      width: 23px;
  }
  
  .input {
      padding: 0.45rem 1.2rem;
  }
  
  .btn123 {
      padding: 0.45rem 1.2rem;
  }
  .social_media2{
    flex-direction: column;
    margin-bottom: 3.2rem;
  }
  .social-media p {
      color: #333;
      padding-top: 0.2rem;
  }
  .information2 {
  
      margin: 1.8rem 0rem;
      align-items: center;
      font-size: 0.9rem;
     
  }
  .text1 {
      
      transform: translateY(5rem);
      margin-bottom: 3rem;
  }
  .info {
      transform: translateY(3.5rem);
  }
  .corporation{
    margin-bottom: 0.5rem;
    }
     
      .text321 h2{
      font-weight: 700;
      transform: translateY(1rem);
      }
      
      .text321 p{
          font-size: 13px;
        transform: translateY(1.5rem);
        }
  }


  
    
    @media (max-width: 850px) {
        .form {
            grid-template-columns: 1fr;
           
        }
    
        .contact-info:before {
            bottom: initial;
            top: -75px;
            right: 65px;
            transform: scale(0.95);
        }
    
        .contact-form:before {
            top: -13px;
            left: initial;
            right: 70px;
        }
    
        .square {
            transform: translate(140%, 43%);
            height: 350px;
        }
    
        .big-circle {
            bottom: 75%;
            transform: scale(0.9) translate(-40%, 30%);
            right: 50%;
        }
    
        .text1 {
            margin: 1rem 0 1.5rem 0;
        }
    
        .social-media {
            padding: 1.5rem 0 0 0;
        }
    }
    