<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.container {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-bottom: 32px;
}

@media (max-width: 900px) {
  .container {
    flex-direction: column;
  }
}

.imageWrapper {
  width: 50%;
  text-align: left;
}

@media (max-width: 900px) {
  .imageWrapper {
    width: 100%;
    text-align: center;
  }
}

.responsiveImage {
  max-width: 100%;
  height: auto;
}

.textContainer {
  width: 1030px;
  height: 301px;
  background: #ffffffb2;
  border-radius: 5px;
  padding: 45px;
  position: absolute;
  top: 49%;
  left: 62%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  z-index: 1;
  box-shadow: 0px 1px 6px 0px #00000040;
  margin: 0;
}

@media (max-width: 900px) {
  .textContainer {
    position: relative;
    margin: -50px auto 0;
    padding: 30px;
    width: auto;
    height: auto;
    top: auto;
    left: auto;
    transform: none;
  }
}

.heading {
  font-weight: 700;
  font-size: 40px;
  line-height: 61px;
  letter-spacing: 0;
  vertical-align: middle;
  width: 665px;
  height: 84px;
}

.description {
  font-size: 14px;
  font-weight: 400;
  line-height: 24.4px;
  letter-spacing: 0;
  width: 959px;
  height: 245px;
}

.polygon{
  position: absolute;
  top: 0;
  left: 323px;
  height: 100%;
}


@media screen and (min-width: 320px) and (max-width: 1360px){
  .container{
    width: 95%!important; 
    margin: auto!important;
  }

  .textContainer{
    width: 90%!important;
    left: 55%!important;
  }

  .description{
    width: unset !important;
  }
  .polygon{
    left: 323px;
    width: 27%;
  }
}
@media screen and (min-width: 320px) and (max-width: 900px){
  .textContainer{
    position: unset;
  }
  .imageWrapper img{
    width: 100%;
}
.description{
  height: unset;
}
.heading {
  width: unset;
  height: unset;
}
.polygon{
  display: none;
}
}</pre></body></html>