:root {
  --white: white;
  --black: black;
}

.container {
  background-image: url('../images/TM_IMAGE.jpg');
  background-position: 50%;
  background-size: cover;
  width: 100%;
  height: 100vh;
}

.left-panel {
  background-color: #1a2031;
  justify-content: center;
  align-items: flex-start;
  width: 40%;
  display: flex;
  position: absolute;
  inset: 0% auto 0% 0%;
}

.logo {
  width: 70%;
  margin-top: 100px;
}

.text-div {
  color: #fff;
  background-color: #1a2031;
  margin-bottom: 100px;
  padding: 10px 10px 20px;
  position: absolute;
  inset: auto 0% 0%;
}

.heading {
  text-align: center;
  font-family: Montserrat, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 18px;
}

@media screen and (max-width: 991px) {
  .left-panel {
    width: 50%;
  }

  .heading {
    font-size: 15px;
  }
}

@media screen and (max-width: 767px) {
  .container {
    min-height: 500px;
  }

  .left-panel {
    background-color: #1a2031cc;
  }

  .logo {
    margin-top: 10vh;
  }

  .text-div {
    margin-bottom: 10vh;
  }
}

@media screen and (max-width: 479px) {
  .left-panel {
    width: 70%;
  }

  .heading {
    font-size: 10px;
  }
}


