body,
body * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-family: "Inter", Helvetica, Arial, sans-serif;
}

body,
.container,
.row {
  margin: 0;
  padding: 0;
  width: 100vw;
}

.logo{
  width:45%;
  margin-left:-3rem;
}

@media screen and (max-width: 768px) {
  .logo{
    margin-left:0;
  }
}

.container .row .left-wrap {
  padding-right: 0;
  padding-left: 0;
  -webkit-filter: drop-shadow(10px 0px 5px rgba(50, 50, 0, 0.5));
  filter: drop-shadow(10px 0px 5px rgba(50, 50, 0, 0.5));
}

.container .row .left-wrap .left {
  background:#000;
  height: 100vh;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-clip-path: polygon(0 0, 100% 0%, 75% 100%, 0% 100%);
  clip-path: polygon(0 0, 100% 0%, 75% 100%, 0% 100%);
}

@media screen and (max-width: 768px) {
  .container .row .left-wrap .left {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 95%, 0% 100%);
    clip-path: polygon(0 0, 100% 0, 100% 95%, 0% 100%);
    height: 30vh;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column wrap;
    flex-flow: column wrap;
  }
}

.container .right {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

@media screen and (max-width: 768px) {
  .container .right {
    height: 50vh;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

.container .right .mainInfo {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding:2em;
}

@media screen and (max-width: 768px) {
  .container .right .mainInfo {
    text-align: center;
  }
}

.container .right .mainInfo h1 {
  font-size: 2em;
  font-weight: 700;
}


.button{
  cursor: pointer;
  outline: 0;
  color: #fff !important;
  background-color: #000;
  border-color: #000;
  display: inline-block;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
  border: 1px solid transparent;
  padding: 12px 24px;
  font-size: 16px;
  border-radius: .25rem;
  transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

    .button.btn-status {
        background-color: #62cb32;
        border-color: #62cb32;
        margin-left: 12px;
    }

    .button:hover {
        color: #fff !important;
        background-color: #61CA31;
        border-color: #61CA31;
        text-decoration: none;
    }

    .button.btn-status:hover {
        color: #ffffff;
        background-color: #000;
        border-color: #000;
    }    

.right,
.mainInfo,
.left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

