body {
  overflow: hidden;
}

.marketing-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.marketing-container .flex-container {
  width: 70%;
  display: flex;
  padding: 10% 0;
}
@media only screen and (max-width: 768px) {
  .marketing-container .flex-container {
    flex-direction: column;
    width: 90%;
  }
}
.marketing-container .flex-container .info {
  line-height: normal;
  width: 30%;
  margin-right: 5%;
  color: white;
}
@media only screen and (max-width: 768px) {
  .marketing-container .flex-container .info {
    width: 90%;
  }
}
.marketing-container .flex-container .info .title {
  font-size: 60px;
  text-shadow: 0 0 10px white;
}
@media only screen and (max-width: 768px) {
  .marketing-container .flex-container .info .title {
    font-size: 40px;
  }
}
.marketing-container .flex-container .info .title .highlight {
  font-weight: bold;
}
.marketing-container .flex-container .info .subtitle {
  font-size: 24px;
  color: #cccccc;
  font-style: italic;
}
.marketing-container .flex-container .info .demo-button {
  border: 6px solid #024080;
  color: white;
  padding: 30px;
  background: #00000000;
  font-size: 2rem;
  margin: 40px;
  cursor: pointer;
  transition: box-shadow 0.5s;
  position: relative;
  width: fit-content;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media only screen and (max-width: 768px) {
  .marketing-container .flex-container .info .demo-button {
    margin: 0px;
    padding: 20px;
  }
}
.marketing-container .flex-container .info .demo-button::before {
  border: 2px solid white;
  background: #00000000;
  padding: 30px;
  font-size: 2rem;
  content: "Demo for Free ";
  transform: translate(-32px, -32px);
  transition: box-shadow 0.25s;
  position: absolute;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media only screen and (max-width: 768px) {
  .marketing-container .flex-container .info .demo-button::before {
    padding: 20px;
    transform: translate(-22px, -22px);
  }
}
.marketing-container .flex-container .info .demo-button:hover {
  box-shadow: 0px 0px 20px 10px #024080, inset 0px 0px 20px 10px #024080;
}
.marketing-container .flex-container .img-cont {
  border-radius: 20px;
  background: white;
  padding: 5%;
  width: 55%;
  box-shadow: 5px 5px 5px #aaaaaa;
  display: flex;
  align-items: center;
  height: fit-content;
}
@media only screen and (max-width: 768px) {
  .marketing-container .flex-container .img-cont {
    width: 90%;
    margin-top: 40px;
    display: block;
  }
}
.marketing-container .flex-container .img-cont img {
  width: 100%;
  object-fit: contain;
}
.marketing-container .flex-container .vid-cont {
  border-radius: 20px;
  background: white;
  padding: 5%;
  width: 70%;
  box-shadow: 5px 5px 5px #aaaaaa;
  height: fit-content;
}
@media only screen and (max-width: 768px) {
  .marketing-container .flex-container .vid-cont {
    width: 90%;
    margin-top: 40px;
  }
}
.marketing-container .flex-container .vid-cont video {
  width: 100%;
}
.marketing-container:nth-child(even) .flex-container {
  flex-direction: row-reverse;
}
@media only screen and (max-width: 768px) {
  .marketing-container:nth-child(even) .flex-container {
    flex-direction: column;
  }
}
.marketing-container:nth-child(even) .flex-container .info {
  margin: 0 0 0 5%;
}
@media only screen and (max-width: 768px) {
  .marketing-container:nth-child(even) .flex-container .info {
    margin: 0 0 0 0;
  }
}
.marketing-container:nth-child(even) .flex-container .info .title {
  color: #00911d;
}
.marketing-container:nth-child(even) .flex-container .info .subtitle {
  color: #666666;
}
.marketing-container:nth-child(even) .flex-container .info .demo-button {
  border: 6px solid #024080;
  color: black;
}
.marketing-container:nth-child(even) .flex-container .info .demo-button::before {
  border: 2px solid white;
}
.marketing-container:nth-child(even) .flex-container .info .demo-button:hover {
  box-shadow: 0px 0px 20px 10px #024080, inset 0px 0px 20px 10px #024080;
}
.marketing-container:nth-child(even) .flex-container .img-cont {
  padding: 0;
  width: 60%;
  overflow: hidden;
}
@media only screen and (max-width: 768px) {
  .marketing-container:nth-child(even) .flex-container .img-cont {
    width: 90%;
  }
}
