/* HEADER */

.large-header {
  background-image: url(../images/headers/webP/select-vs-custom.webp);
  background-position: 50% 0%;
  height: 60vh;
  margin-bottom: 0rem;
}

.gradient {
  background-image: linear-gradient(to right, #212529ad, #2125299a, #2125297b, #21252943, #21252900, #21252900);
  height: 100%;
  width: 100%;
}

@media only screen and (max-width: 992px) {
  .gradient {
    background-image: linear-gradient(to right, #212529c9, #2125298d, #21252952, #2125291f);
  }
}

/* Jump to section buttons */

.title .jump .sections{
  flex-wrap: wrap;
  justify-content: center;
}

  .title .jump .sections a{
    min-width: 150px ;
    flex-wrap: wrap;
  }

  .title .jump .sections .vs-btn {
    border-top-left-radius: .5rem;
    border-bottom-left-radius: .5rem;
  } 
    .title .jump .sections .vs-btn p{
      border-left: 2px var(--text-light) solid;
    } 

    .title .jump .sections .features-btn p{
      border-left: 2px var(--text-light) solid;
    } 

.title .jump .sections .info-btn {
  border-top-right-radius: .5rem;
  border-bottom-right-radius: .5rem;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
} 
  .title .jump .sections .info-btn p{
    border-right: 2px var(--text-light) solid;
  } 

@media only screen and (min-width: 768px) and (max-width: 992px) {
  .title .jump .sections .features-btn p{
    border-right: 2px var(--text-light) solid;
    border-left: 2px var(--text-light) solid;
  } 

  .title .jump .sections .info-btn {
    border-top-right-radius: .5rem;
    border-bottom-right-radius: .5rem;
    border-top-left-radius: .5rem;
    border-bottom-left-radius: .5rem;
  } 

  .title .jump .sections .features-btn {
    border-top-right-radius: .5rem;
    border-bottom-right-radius: .5rem;
  } 
}

/* SECTION 1 */

.section-1 {
  margin: 0rem;
  padding-bottom: 2rem;
}

.section-1 .options{
  display: flex;
  justify-content: space-evenly;
  padding: 0rem 1rem;
}

.section-1 .card {
  padding: 0rem;
  border: none;
  height: auto;
  margin: 0rem;
  border-radius: 0.5rem;
  box-shadow: 0px 10px 20px hsl(0, 0%, 20%);
}

.section-1 .card-title {
  margin: 0rem;
  height: 4rem;
  color: var(--text-light);
  background-color: var(--dusty-blue);
  font-size: 2rem;
  padding: 0.5rem 1.5rem;
  text-align: center;
  align-content: center;
  border-top-left-radius: .4rem;
  border-top-right-radius: .4rem;
}

.section-1 .card-img-top {
  height: 26rem;
  object-fit: cover;
}

.section-1 .card-body {
  height: max-content;
  padding: 0rem 1rem 1rem 1rem;
  display: flex;
  flex-direction: column;
  align-content: center;
}

.section-1 .card-body .card-text {
  height: max-content;
  padding: .5rem;
  /* align-content: center; */
}

.section-1 .card-body .btn-grey {
  height: 3.5rem;
  align-content: center;
  font-size: 1.2rem;
  display: inline;
}


@media only screen and (min-width: 992px) {
  .section-1 .card-body .card-text{
    height: 21rem;
  }
}

@media only screen and (min-width: 1103px) {
  .section-1 .card-body .card-text{
    height: 18.5rem;
  }
}

@media only screen and (min-width: 1176px) {
  .section-1 .card-body .card-text{
    height: 17rem;
  }
}

@media only screen and (min-width: 1463px) {
  .section-1 .card-body .card-text{
    height: 16.5rem;
  }
}

@media only screen and (min-width: 1947px) {
  .section-1 .card-body .card-text{
    height: 14.5rem;
  }
}

@media only screen and (min-width: 2351px) {
  .section-1 .card-body .card-text{
    height: 11rem;
  }
}


/* FEATURES SECTION */

.features {
  padding: 2rem 1rem;
  background-image: linear-gradient(to top, #212529a2, #212529a2), url(../images/background-images/webp/wood-2-background.webp);
}

.features svg.check {
  color: green;
}

.features svg.min {
  color: #eab700;
}

.features svg.x {
  color: #d00000;
}

/* Features Comparison Table */

.compare {
  margin: 0rem;
}

.compare .respon-table {
  width: 95%;
  color: var(--bg-dark);
  background-color: var(--bg-grey);
  margin: 0rem auto;
  text-align: center;
  font-size: 1.5rem;
  letter-spacing: 0.05rem;
  border-radius: 0.5rem;
  display: flex;
  flex-direction: column;
}

@media only screen and (min-width: 1400px) {
  .compare .respon-table {
    width: 80%;
  }
}

.compare .respon-row.end {
  border-bottom-left-radius: .5rem;
  border-bottom-right-radius: .5rem;
  overflow: hidden;
}

.compare .respon-table .cell p.bold {
  font-weight: 500;
}

.compare .thead {
  width: 100%;
  color: var(--text-light);
  background-color: var(--dusty-blue);
  font-size: 2rem;
  margin: 0rem;
  position: sticky;
  border-top-left-radius: .5rem;
  border-top-right-radius: .5rem;
  display: flex;
}

  .compare .t-heading {
    font-size: 2rem;
    font-weight: 500;
    padding: 1rem 0.5rem;
    width: 35%;
    display: flex;
    justify-content: center;
  }

    .compare .t-heading.item{
      width: 30%;
    }

.compare .respon-row {
  display: flex;
  flex-direction: row;
  width: 100%;
}

  .compare .tbody .respon-row:hover {
    background-color: var(--table-hover);
  }

.compare .respon-table .cell {
  border: var(--table-border) 1px solid;
  padding: .75rem 0.5rem;
  width: 35%;
  align-content: center;
}

.compare .respon-table .cell.item {
  width: 30%;
  font-size: 1.5rem;
  text-align: left;
  padding: 0.8rem .5rem 0.8rem 2rem;
}


  .compare .respon-table .cell.flex {
    display: flex;
    flex-direction: row;
    align-items: center;
  }

    .compare .respon-table .cell.flex svg {
      width: 10%;
      display: inline-block;
      overflow: visible;
    }

    .compare .respon-table .cell.flex p {
      width: 90%;
      padding: .5rem;
      line-height: 1.7rem;
      display: inline-block;
    }

@media only screen and (max-width: 768px) {
  .compare .respon-table {
    width: 100%;
    font-size: 1.5rem;
  }

  .compare .t-heading {
    font-size: 1.7rem;
    font-weight: 500;
    align-items: center;
    padding: 1rem 0rem;
  }

  .compare .respon-table .cell.item {
    padding-left: 1rem;
  }
}

@media only screen and (min-width: 768px) and (max-width: 985px) {
  .compare .thead  {
    top: -.5rem;
    height: 7rem;
  }

  .compare .t-heading {
    font-size: 1.5rem;
    align-content: end;
    align-items: end;
  }
}

@media only screen and (min-width: 985px) and (max-width: 1105px) {
  .compare .thead  {
    top: -5px;
    height: 4rem;
  }

  .compare .t-heading {
    font-size: 1.5rem;
    align-items: center;
  }
}

@media only screen and (min-width: 1105px) and (max-width: 1226px){
  .compare .thead  {
    top: 70px;
  }
}

@media only screen and (min-width: 1226px) {
  .compare .thead  {
    top: 43px;
  }
}

@media only screen and (min-width: 1500px) {
  .compare .respon-table .cell.item {
    padding-left: 3rem;
  }
}

/* MOBILE VERSION OF FEATURES TABLE */

.features .resp-table-features .pricing {
  display: none;
}

.pricing{
  background-image: none;
}

@media only screen and (max-width: 576px) {
  .features {
  padding: 2rem .2rem;
  }

  .features .resp-table-features .pricing {
    display: block;
  }
}

.key {
  display: flex;
  flex-direction: column;
  padding: 0rem 1rem;
}

.key .option {
  display: flex;
  flex-direction: row;
  margin: 0.5rem 0rem;
  background-color: #1d2e434f;
}

.key .option p {
  width: 90%;
  align-content: center;
  font-size: 1rem;
}

.key .option svg {
  width: 10%;
  align-content: center;
}

.resp-table-features .pricing {
  padding: 0rem;
}

.resp-table-features .pricing .t-heading {
  width: 30%;
  font-size: 1.2rem;
  font-weight: 400;
  padding: 1rem 0.5rem;
  color: var(--text-light);
  margin: 0rem;
  position: sticky;
  top: 10%;
  align-content: center;
  border: var(--table-border) 0.01rem solid;
}

.resp-table-features .pricing .respon-row.start {
  background-color: var(--dusty-blue);
  overflow: hidden;
  border-top-left-radius: .5rem;
  border-top-right-radius: .5rem;
}

.resp-table-features .pricing .t-heading.feature {
  width: 40%;
}

.resp-table-features .pricing .cell {
  padding: 0.5rem;
  width: 30%;
  align-content: center;
}

.resp-table-features .pricing .cell.feature {
  width: 40%;
  font-size: 1.2rem;
}

.resp-table-features .pricing .cell svg {
  display: block;
  margin: 0rem;
  width: 100%;
  overflow: visible;
}

.resp-table-features .pricing .tbody {
  height: 100%;
}

/* SECTION 3 */

.section-3 {
  display: flex;
  background-image: url(../images/select-vs-custom/webp/bg-intro.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  background-blend-mode: darken;
  background-color: #212529aa;
  padding: 2rem 1rem;
}

.section-3 .option {
  display: flex;
  flex-wrap: wrap;
  padding: 0.5rem;
  margin: 1rem 0rem;
  background-color: #1d2e4380;
  justify-content: space-between;
  box-shadow: inset 0 5px 5px #16223186, inset 0 -5px 5px #16223186;
  border-radius: .5rem;
}

.section-3 .option p {
  padding: 0.5rem 1.5rem;
}
.section-3 .option .btn-grey{
  background-color: var(--btn-light-grey);
  color: var(--btn-text);
  box-shadow: inset 0 2px 0px hsl(210, 22%, 43%), 0 3px 2px hsl(210, 24%, 22%);
}

.section-3 .option .btn-grey:hover{
  color: var(--btn-text-hover);
  background-color: var(--btn-light-grey-hover);
  box-shadow: inset 0 2px 2px hsl(210, 24%, 36%), 0 1.5px 2px hsl(210, 24%, 22%);
}

.section-3 .option a {
  display: flex;
  align-items: center;
  font-size: 1.1rem;
  overflow-wrap: break-word;
  height: 58px;
}

.section-3 .option a p {
  width: 80%;
  padding: 0rem;
}

.section-3 .option .arrow {
  font-size: 2.1rem;
  margin: 0;
  padding: 0;
  width: 20%;
}

@media only screen and (max-width: 1105px) {
  .section-3 {
    background-attachment: unset;
    background-position: 75% 50%;
  }
}