h1, h2, h3, h4, h5, h6, p, a {
  margin: 0;
  text-decoration: none;
}

.section-header {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  padding: 0;
}

.left-section {
  position: absolute;
  width: 61%;
  height: 100%;
  clip-path: polygon(0 0, 95% 0%, 75% 100%, 0% 100%);
  background-color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}

.left-section-digiroads {
  background-image: url("/img/digiroads.png");
  position: absolute;
  display: flex;
  width: 100%;
  height: 100%;
  top: 5vh;
  left: 80%;
  background-repeat: no-repeat;
}

.login-section {
  display: flex;
  position: absolute;
  width: 100%;
  height: 100%;
  clip-path: polygon(0% 30%, 100% 30%, 100% 70%, 0% 70%);
  align-items: center;
  justify-content: center;
  background: rgba(177, 177, 177, 0.4);
}


.software-image-section {
  position: absolute;
  display: flex;
  width: 100%;
  height: 100%;
  clip-path: polygon(0% 100%, 45.8% 100%, 49.4% 70%, 0% 70%);
  z-index: 4;
}

@media (max-width:768px),(max-width:300px) {
  .section-header {
    position: relative;
    /*overflow: visible;*/
  }
}

@media (max-width:768px),(max-width:300px) {
  .left-section {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    position: absolute;
    width: 100%;
    left: 0;
    height: 66%;
  }
}

@media (max-width:768px),(max-width:300px) {
  .right-section {
    position: relative;
    top: 486px;
    width: 100%;
    left: 0;
    height: 50%;
  }
}

@media (max-width:768px),(max-width:300px) {
  .right-section img {
    width: 100%;
  }
}

@media (max-width:768px),(max-width:300px) {
  .login-section-content {
    padding: 7px;
  }
}


