.w-layout-blockcontainer {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

@media screen and (max-width: 991px) {
  .w-layout-blockcontainer {
    max-width: 728px;
  }
}

@media screen and (max-width: 767px) {
  .w-layout-blockcontainer {
    max-width: none;
  }
}

body {
  color: #333;
  background-color: #313c98;
  background-image: url('../images/opspro-cover2.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  font-family: Outfit, sans-serif;
  font-size: 14px;
  line-height: 20px;
}

h1 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 54px;
  font-weight: 400;
  line-height: 1.1;
}

.coming-soon {
  width: 100svw;
  position: relative;
  overflow: hidden;
}

.container {
  flex-flow: column;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  max-width: 1280px;
  height: 100svh;
  padding: 40px 20px 120px;
  display: flex;
}

.logo {
  background-image: url('../images/ops-pro-logotype_white.svg');
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: contain;
  width: 240px;
  height: 60px;
  position: relative;
}

.info {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  color: #fff;
  flex-flow: column;
  flex: 1;
  justify-content: flex-end;
  align-items: flex-start;
  max-width: 640px;
  display: flex;
  position: relative;
}

.heading {
  text-transform: uppercase;
}

.div-block {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  justify-content: space-between;
  align-items: flex-start;
  padding-top: 20px;
  display: flex;
}

.button {
  border-radius: 6px;
  padding: 16px 36px;
  font-size: 18px;
}

.button:hover {
  background-color: #1f81d7;
}

.text-block {
  color: #ccd1fa;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.5;
}

.exclamation {
  background-color: #5f76fd7d;
  background-image: url('../images/excl.svg');
  background-position: 10px;
  background-repeat: no-repeat;
  background-size: 18px 18px;
  border: 1px solid #5671ff8f;
  border-radius: 8px;
  padding: 6px 10px 6px 36px;
  font-size: 16px;
  position: relative;
}

@media screen and (max-width: 991px) {
  .heading {
    font-size: 36px;
  }

  .button {
    padding-top: 12px;
    padding-bottom: 12px;
    font-size: 16px;
  }

  .text-block {
    font-size: 16px;
  }
}

@media screen and (max-width: 767px) {
  .heading {
    font-size: 32px;
  }
}

@media screen and (max-width: 479px) {
  .container {
    height: auto;
    min-height: 100svh;
    padding-top: 20px;
    padding-bottom: 40px;
  }

  .logo {
    width: 160px;
    height: 40px;
  }
}


