*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body{
    font-family: 'Montserrat', sans-serif !important;
}

.production_container header{
  height: 100vh;
}

.production_container video{
    width: 99.5vw;
    height: 100vh;
    object-fit: cover;
    z-index: 0;
}

.production_header_video_overlay{
    position: absolute;
    z-index: 1;
	height: 100vh;
	width: 99.5vw !important;
	display: flex;
	flex-direction: column;
	justify-content: center;
	transform: translateX(0rem) !important;
    /* background-color: #ffffff63; */
    /* border-top-right-radius: 8rem;
    border-bottom-right-radius: 8rem; */
}

.production_header_video_overlay h1{
    font-size: 4rem;
    width: 40rem;
	margin-bottom: 3rem;
	color: #008080;
    transform: translateX(8rem);
}

.production_header_video_overlay p{
    margin-bottom: 2rem;
	width: 38rem;
    font-weight: 800 !important;
	letter-spacing: 2px;
    color: #008080;
    transform: translateX(8rem);
}

.production_header_video_overlay a{
    text-decoration: none;
    color: white;
    padding: 1rem;
    background-color: #A5489E;
    border-radius: 2rem;
	width: 16rem;
	font-weight:700;
    transform: translateX(8rem);
}

.production_header_video_overlay a:hover{
  background: #00000000;
  color: #008080;
  font-weight:700;
  border: solid #a5489e .1rem;
}

/* ============================================== Services SECTION ====================================== */

.cardimg {
    position: absolute;
    display: flex;
    justify-content: center;
    z-index: 0;
  }
  
  .cardimg img {
    width: 85rem;
    height: 42rem;
  }
  
  .services_card {
    position: sticky;
    width: 85rem;
    top: 100px;
    border: none !important;
    transform: translateX(15rem);
  }
  
  .card__inner {
    display: flex;
    width: 80vw;
    height: 40rem;
  }
  
  .servicesContainer {
    display: flex;
    width: 99.5vw;
    background: black;
    padding-top: 5rem;
    padding-bottom: 10rem;
  }
  
  .card2 {
    top: 130px;
  }
  .card3 {
    top: 145px;
  }
  .card4 {
    top: 170px;
  }
  .card5 {
    top: 187px;
  }
  .card6 {
    top: 215px;
  }
  .card7 {
    top: 232px;
  }
  .card8 {
    top: 290px;
  }
  
  .services_cards {
    width: 99.5vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0;
    gap: 40px 0;
  }
  .card__content {
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    max-width: 900px;
    z-index: 1;
  }
  
  .card__content h1 {
    margin-bottom: 3rem;
  }
  
  .card__title {
    padding: 0;
    margin: 0;
    font-size: 60px;
    font-weight: 600;
    color: #dfe7f1;
  }
  
  .card__description {
    line-height: 1.4;
    font-size: 18px;
    color: #d8dee6;
    height: 40vh;
    text-align: justify;
  }
  
  .space {
    height: 20vh;
  }
  
  .space--small {
    height: 10vh;
  }
  
  .prod,
  .graph,
  .tech,
  .acad {
    width: 37rem;
    height: 8rem;
    margin-top: 2rem;
    margin-left: 2rem;
  }
  
  .med,
  .manage,
  .advert {
    width: 37rem;
    height: 8rem;
    transform: translate(35rem, 1rem);
  }
  
  .flickering_title {
    animation: flicker 2s infinite;
    text-align: center;
  }
  
  
@keyframes flicker {
    0% {
      opacity: 0;
    }
    9% {
      opacity: 0;
    }
    10% {
      opacity: 0.5;
    }
    13% {
      opacity: 0;
    }
    20% {
      opacity: 0.5;
    }
    25% {
      opacity: 1;
    }
  }

  /*=============================================================================== typwriter seciton */

	.typewriter{
		background-color: #A5489E;
		display: flex;
		flex-direction: column;
		align-items: center;
		height: 80vh;
		justify-content: center;
	}
	.typewriter h2 {
		color: #000;
		width: 75rem;
		transform: translateX(-8rem);
	}
  
.typewriter p{
	width: 40rem;
	transform: translateX(-25.5rem);
	margin-top: 3rem;
	color: #fff;
	letter-spacing: 2px;
}

.typewriter a{
	text-decoration: none;
	color: white;
	background: black;
	padding: 1rem;
	border-radius: 3rem;
	transform: translateX(-40rem);
	margin-top: 2rem;
	font-weight: 600;
}

.typewriter a:hover{
	background-color: white;
	color: black;
	font-weight: 600;
}
	
	.typed-text {
		color: white;
	}
	
	.cursor {
		display: inline-block;
		width: 3px;
		margin-left: 4px;
		background: white;
	}
	
	.cursor.blink {
		animation: blink 0.8s ease-in-out infinite;
	}
	
	@keyframes blink {
		0%, 100% {
			background: var(--teal);
		}
		40%, 50% {
			background: transparent;
		}
	}

/* Contact Form */


   /* 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;
  }
  
  .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: rgb(165,72,158);
    position: relative;
  }
  
  
  .title1234 {
    color: rgb(241, 245, 245);
    font-weight: 500;
    font-size: 2.5rem;
    line-height: 1;
    margin-bottom: 0.7rem;
  }
  
  .contact-form:before {
    content: "";
    position: absolute;
    width: 26px;
    height: 26px;
    background-color: #A5489E;
    transform: rotate(45deg);
    top: 50px;
    left: -13px;
  }
  
  form {
    padding: 2.3rem 2.2rem;
    z-index: 10;
    overflow: hidden;
    position: relative;
  }
  
  
  .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: #A5489E;
    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: #A5489E !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;
  }
  
  
  
  
  
  .information i {
    color: #A5489E;
  }
  
  .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: #A5489E;
  }
  
  .social-media p {
    color: #333;
    padding-top: 0.2rem;
  }
  .social_media2{
    display: flex;
    transform: translateY(3rem);
    padding-bottom: 1.5rem;
  }
  
  .social-icons {
    display: flex;
    margin-top: 0.5rem;
  
    
  }
  
  .social-icons a {
    width: 35px;
    height: 35px;
    border-radius: 5px;
    background: linear-gradient(45deg, #A5489E, #a5489e);
    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 #e20017;
    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,  #A5489E, #a5489e);
    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: 1rem;
  }
  
  .text321 h2{
  font-weight: 700;
  transform: translateY(1rem);
  }
  
  .text321 p{
    transform: translateY(1.5rem);
    }
  


      /* ============================================================================= Scroll bar */


/* width */
::-webkit-scrollbar {
  width: 10px;
  background-color: #000000;
}

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px #008080; 
}
 
/* Handle */
::-webkit-scrollbar-thumb {
  background: #a5489e; 

}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #008080; 
}


	
/* ============================ Laptop ================================== */

@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;
    }

	  /* laptop services section  */

    .cardimg {
      width: 69rem;
    }
  
    .services_cards {
      width: 97vw;
      transform: translateX(-3rem);
    }

    .services_card{
      width: 60rem;
    }
  
    .med,
    .manage,
    .advert,
    .realty {
      transform: translate(30rem, 1rem);
    }

    .servicesContainer{
      width: 99.5vw;
    }

    /* typewriter section */

    .typewriter{
      width: 99.5vw;
    }
    .typewriter h2{
      transform: translateX(-2rem);
    }
    .typewriter p{
      transform: translateX(-19rem);
    }
    .typewriter a{
      transform: translateX(-33rem);
    }
}



@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,-3rem);
  }

  .production_header_video_overlay p{
    width: 15rem;
    transform: translate(1rem,-3rem);
    color: white;
  }

  .production_header_video_overlay a{
    transform: translate(1rem,-3rem);
  }

  .production_container header{
    height: 100vh;
  }
  .production_container header video{
    height: 100vh;
    width: 100vw;
    object-fit: cover;
  }

  /* mobile Services section */

  .cardimg img {
    width: 21.5rem;
  }

  .cardimg {
    transform: translateX(-15rem);
    width: 100vw;
  }

  .services_card {
    margin-bottom: 5rem;
    width: 30vw;
    transform: translateX(18rem);
  }

  .servicesContainer {
    width: 100vw;
  }

  .card__content h1 {
    transform: translateY(16rem);
  }

  .card__content p {
    transform: translateY(15rem);
    font-size: 0.8rem;
  }

  .card__inner{
    width: 5rem;
  }

  .prod{
    transform: translate(-14.5rem,5rem) !important;
  }

  .graph, .manage{
    transform: translate(-14.5rem,5rem) !important;
  }

  .tech p{
    transform: translate(-1rem,20rem) !important;
  }
  .tech h1{
    transform: translate(-1rem,21rem) !important;
  }

  .med h1 {
    margin-bottom: 2rem;
  }

  .med h1,
  .med p {
    transform: translateY(20rem);
  }

  .tech h1 {
    margin-bottom: 2rem;
    font-size: 1.7rem;
  }

  .tech h1,
  .tech p {
    transform: translateY(22rem);
  }

  .advert h1 {
    margin-bottom: 2rem;
  }

  .advert h1,
  .advert p {
    transform: translateY(21rem);
  }

  .realty h1 {
    margin-bottom: 2rem;
  }

  .realty h1,
  .realty p {
    transform: translateY(21rem);
  }

  .prod,
  .graph,
  .tech,
  .acad {
    width: 20rem;
    margin-top: 0;
    margin-left: 0;
    transform: translate(-11.5rem, 5rem) !important;
  }

  .med,
  .manage,
  .advert,
  .tech {
    width: 20rem;
    height: 8rem;
    transform: translate(-11.5rem, 1rem) !important;
  }

  .manage{
    transform: translate(-11.5rem,5rem) !important;
  }

  .tech{
    transform: translate(-11rem,0) !important;
  }

  .card1 {
    margin-bottom: 5rem;
  }

  .card2 {
    margin-bottom: 5rem;
  }

  .card3,
  .card4 {
    margin-bottom: 5rem;
  }

  .card5.card6,
  .card8 {
    margin-bottom: 10rem;
  }

  .card7 {
    margin-bottom: 5rem;
  }

  .card8 {
    margin-bottom: 0;
  }

  /* mobile typewriter section */

  .typewriter{
    width: 100vw;
  }

  .typewriter h2{
    font-size: 2rem !important;
    transform: translateX(-2rem) !important;
    width: 15rem;
  }

  .typewriter p{
    transform: translateX(-2rem) !important;
    width: 15rem;
  }

  .typewriter a{
    transform: translateX(-3.5rem);
  }

   /* =============================================mobile contact form */

   .container {
    padding: 1.5rem;
    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: 1rem;
}
.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);
      }

}

    /* ================================= sm mobile ====================================== */

    @media only screen and (max-width: 390px) {

      /* sm mobile services section */
      .navbar{
        width: 100vw;
      }
      
      .prod,
      .graph,
      .tech,
      .acad {
        transform: translate(-13.5rem, 6rem) !important;
      }
      
      .med,
      .advert,
      .realty {
        transform: translate(-14rem, 1rem) !important;
      }
      
      .manage{
        transform: translate(-14rem,6rem) !important;
      }
      
      .tech{
        transform: translate(-13rem, .8rem) !important;
      }
      
      }

  @media (max-width: 600px) {
    .card__inner {
      flex-direction: column;
    }
  
    .card__image-container {
      width: 100%;
    }
  
    .card__image {
      aspect-ratio: 16 / 9;
    }
  
    .card__title {
      font-size: 32px;
    }
  
    .card__description {
      font-size: 16px;
    }
  
    .card__content {
      padding: 30px 20px;
    }

   
  }





@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;
  }
}

