#main-content {
  background-color: #f4f4f5;
}
.dark #main-content {
  background-color: rgb(59 59 68);
}
.section-hero-demo {
  padding-top: 30px;
}
section .content-container {
  max-width: 1216px;
  margin: 0 auto;
}

h1.hero-demo-title {
  font-size: 72px;
  font-weight: 600;
  line-height: 1;
  border-bottom: dashed rgb(201 201 207) 1px;
  padding-bottom: 32px;
  margin-bottom: 50px;
}
.dark h1.hero-demo-title {
  border-bottom: dashed rgb(97 97 107) 1px;
}


.content-demo-grid {
  display: grid;
  grid-template-columns: 600px 1fr;
  gap: 120px;
  justify-content: center;
  align-items: start;
  padding-bottom: 7rem;
}

.content-demo-text {
  font-family: "Space Grotesk", sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.25;
  margin-bottom: 70px;
  color: rgb(11, 11, 14);
}
.dark .content-demo-text{
    color: #fff;
}

.bullet-title-group {
  display: flex;
  gap: 20px;
}

.cd-single-bullet {
  margin-bottom: 50px;
}

.bullet-title-group img {
  width: 30px;
  height: 30px;
  /*filter: brightness(0) invert(1);*/
}

h3.bullet-title,
h3.bullet-title-url {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 15px;
}

h3.bullet-title-url {
  position: relative;
}

h3.bullet-title-url a {
  padding-right: 21px;
}

h3.bullet-title-url:after {
  position: absolute;
  content: "";
  width: 20px;
  height: 10px;
  background-image: url("../images/demo/arrow.svg");
  background-repeat: no-repeat;
  background-size: cover;
  top: 10px;
}

h3.bullet-title-url:hover a {
  padding-right: 40px;
  color: inherit;
}

.bullet-text {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.5;
}

.content-demo-form {
  background: white;
  color: rgb(11 11 14);
  padding: 44px 30px 34px;
  text-align: center;
}

h3.form-title {
  font-size: 30px;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 20px;
}

.form-text {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 30px;
}

.agreement-text {
    font-family: "Space Grotesk", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
  display: flex;
  flex-wrap: wrap;
  max-width: 330px;
  margin: 20px auto;
  gap: 5px;
}

.agreement-text a,
.dark.agreement-text a {
  color: rgb(25 140 255);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
}

@media screen and (max-width: 1535px) {
  h1.hero-demo-title {
    font-size: 56px;
    line-height: 1;
  }

  .content-demo-text {
    font-size: 18px;
  }

  .content-demo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    justify-content: center;
    align-items: start;
  }
}

@media screen and (max-width: 1279px) {
    section .content-container{
        padding-left: 2.5rem;
        padding-right: 2.5rem; 
    }
}



@media screen and (max-width: 1024px) {
  
  .content-demo-grid {
    grid-template-columns: 1fr;
  }

  h1.hero-demo-title {
    font-size: 48px;
    line-height: 1;
  }

  .content-demo-text {
    font-size: 16px;
  }
}

/* Demo Bullets - wait confirmation if required */
.content-demo-bullets .bullet-title-text a {
  text-decoration: underline;
  transition: color ease .2s;
}
.dark .content-demo-bullets .bullet-title-text a {
  text-decoration: underline;
  transition: color ease .2s;
}

.content-demo-bullets .bullet-title-text a:hover,
.content-demo-bullets .bullet-title-text a:focus {
  color: #198cff;
}


