:root {
  --primary: #630094;
  --white: #ffffff;
}
#development_container{
  padding-top: 150px;
}
#development_section {
  width: 100%;
  height: 600px;
  padding: 30px;
  background: #0d0d0df5;
  
  padding-top: 100px;
  position: relative;
  backdrop-filter: blur(20px);
  border-radius: 10px;
  box-shadow: 0px 0px 100px var(--primary);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  margin-bottom: 100px;
}
#development_section:hover .development_image {
  transform: scale(1.05) translateY(-17px);
}
.development_heading h1 {
  color: var(--primary);
  font-size: 80px !important;
  font-weight: 700 !important;
  font-family: 'Oxygen', sans-serif;
  text-align: right;
}
.development_para {
  width: 50%;
}
.development_para p {
  color: #909090;
  font-size: 18px;

  text-align: right;
}
.development_image {
  height: 700px;
  width: 30%;
  /* background: red; */
  position: absolute;
  left: -20px;
  bottom: 0;
  transition: transform 1s ease-in-out;
}
.development_image img {
  height: 100%;
}
@media (max-width: 1400px) {
  .development_heading {
    /* width: 50%; */
  }
  .development_heading h1 {
    font-size: 50px !important;
    text-align: right;
  }
}
@media (max-width: 1200px) {
  .development_image {
    height: 600px;
    width: 40%;
  }
  .development_image img {
    width: 100%;
    object-fit: contain;
    margin-top: 84px;
  }
  #development_section:hover .development_image {
    transform: scale(1) translateY(0px);
  }
}
@media (max-width: 991px) {
  #development_container{
    padding-top: 20px;
  }
  .development_para {
    display: flex;
    justify-content: center;
    width: 90%;
  }
  .development_para p {
    text-align: justify;
  }
  .development_image {
    position: relative;
  }
  #development_section {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: max-content;
    margin-top: 40px;
  }
  .development_heading h1 {
    font-size: 50px !important;
    text-align: center;
    width: 100%;
  }
  #development_section {
    padding-top: 30px;
  }
  .development_image {
    width: 100%;
    display: flex;
    justify-content: center;
    height: 300px;
    top: 0;
    left: 0;
    margin-bottom: 20px;
  }
  .development_image img {
    width: 100%;
    object-fit: contain;
    margin-top: 0px;
  }
  #development_section:hover .development_image {
    transform: scale(1) rotate(0deg) translateY(0px);
  }
}
@media (max-width: 650px) {
  .development_para p {
    font-size: 15px;
  }
  .development_heading h1 {
    font-size: 40px !important;
  }
}
