
:root {
  --primary: #630094;
  --white: #ffffff;
}
#porting_container{
 
  padding-top: 200px;
}
#porting_section {
  width: 100%;
  height: max-content;
  padding: 30px;
  background: #0d0d0df5;
  padding-top: 100px;
  position: relative;
  backdrop-filter: blur(20px);
  border-radius: 10px;
  box-shadow: 0px 0px 100px var(--primary);
  margin-bottom: 40px;
}
#porting_section:hover .porting_image {
  transform: scale(1.05);
}
.porting_heading h1 {
  color: var(--primary);
  font-size: 80px !important;
  font-weight: 700 !important;
  font-family: 'Oxygen', sans-serif;
}
.porting_para p {
  color: #909090;
  font-size: 18px;
  width: 70%;
}
.porting_image {
  height: 600px;
  width: 30%;
  position: absolute;
  right: 30px;
  bottom: 0;
  transition: transform 1s ease-in-out;
}
.porting_image img {
  height: 100%;
}

@media (max-width: 991px) {
  #porting_container{
    padding-top: 20px;
  }
  
  .porting_para {
    display: flex;
    justify-content: center;
  }
  .porting_para p {
    width: 90%;
    text-align: justify;
  }

  .porting_image img {
    object-fit: contain;
  }
  #porting_section {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
  }
  .porting_heading h1 {
    font-size: 50px !important;
    text-align: center;
  }
  #porting_section {
    padding-top: 30px;
  }
  .porting_image {
    width: 100%;
    display: flex;
    justify-content: center;
    height: 300px;
    top: 0;
    right: 0;
    position: relative;
    margin-bottom: 20px;
  }
  #porting_section:hover .porting_image {
    transform: scale(1) rotate(0deg) translateY(0px);
  }
}
@media (max-width: 650px) {
  
  .porting_para p {
    font-size: 15px;
  }
  #porting_container{
    padding-top: 5px;
  }
}
