@import "page-landing-imdb-new.css";
@import "page-landing-imdb-vs-redis-new.css";
@import "page-try-for-free-success-new.css";

:root {
  /* breakpoints */
  --screen-sm: 640px;
  --screen-md: 768px;
  --screen-lg: 1024px;
  --screen-xl: 1280px;
  --screen-2xl: 1536px;

  /* colors */
  --red-600: #cb333b;
  --zinc-600: #595959;
  --zinc-100: #f0f0f0;
  --sky-500: #009cde;
  --sky-600: #0072ce;
  --sky-900: #044b83;
  --stone: #302924;

  /* spacing */
  --container-padding: 0 40px;
  --form-field-spacing: 20px;
}

.sms-container {
  width: 100%;
  margin: 0 auto;
  padding: var(--container-padding);
  font-size: 16px;
  font-family: "proxima-nova", sans-serif;
}

/* negate containment until the xl breakpoint */
.sms-container-xl {
  margin: 0 0;
  padding: 0 0;
}

.sms-container p,
.sms-container input,
.sms-container label,
.sms-container select {
  font-family: "proxima-nova", sans-serif;
}

.sms-container label {
  font-weight: bold;
  font-size: 15px;
  line-height: 18px;
  color: var(--stone);
}

.sms-container p {
  line-height: 19px;
}

.sms-container p:last-child {
  margin-bottom: 0;
}

@media screen and (min-width: 640px) {
  .sms-container {
    max-width: var(--screen-sm);
  }

  .sms-container-xl {
    max-width: none;
  }
}

@media screen and (min-width: 768px) {
  .sms-container {
    max-width: var(--screen-md);
  }

  .sms-container-xl {
    max-width: none;
  }
}

@media screen and (min-width: 1024px) {
  .sms-container {
    max-width: var(--screen-lg);
  }

  .sms-container-xl {
    max-width: none;
  }
}

@media screen and (min-width: 1280px) {
  .sms-container,
  .sms-container-xl {
    max-width: var(--screen-xl);
  }

  .sms-container-xl {
    padding: var(--container-padding);
    margin: 0 auto;
  }

  .sms-container.sms-container-xl .sms-container {
    padding: 0 0;
  }
}

.sms-page-header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 56px 0px;
  text-align: center;
}

.sms-page-header h1 {
  font-size: 37px;
  line-height: 44px;
  margin-bottom: 32px;
}

.sms-page-header h2 {
  font-size: 22px;
  line-height: 26px;
}

@media screen and (min-width: 1280px) {
  .sms-page-header {
    padding: 62px 0px;
  }

  .sms-page-header h1 {
    font-size: 48px;
    line-height: 58px;
  }

  .sms-page-header h2 {
    font-size: 32px;
    line-height: 39px;
    margin-bottom: 0;
    font-weight: 600;
  }
}

.sms-section-content {
  display: flex;
  flex-direction: column;
  background-color: white;
  color: var(--zinc-600);
  padding: 30px 0 40px;
}

.sms-section-content .content h3 {
  color: var(--stone);
  font-size: 23px;
  line-height: 28px;
}

/* ---- primary content styles ---- */
.sms-section-content .content {
  padding-bottom: 40px;
}

@media screen and (min-width: 1280px) {
  .try-for-free.sms-section-content .content h3 {
    font-size: 32px;
    line-height: 39px;
  }
  .try-for-free.sms-section-content .content p {
    font-size: 20px;
    line-height: 24px;
  }
}

@media screen and (min-width: 1280px) {
  .sms-content-and-sidebar {
    display: flex;
    padding: 0 40px;
    grid-gap: 6.16%;
  }
  .try-for-free .sms-content-and-sidebar .sidebar {
    max-width: 475px;
  }

  .sms-content-and-sidebar > .content {
    padding-bottom: 0;
  }

  .sms-content-and-sidebar > .sidebar {
    border: 1px solid var(--sky-500);
  }
}

/* ---- imdb vs redis ---- */

.sms-section-content.imdb-vs-redis .content {
}

.sms-section-content.imdb-vs-redis .content .above-table {
}

.sms-section-content.imdb-vs-redis .content .below-table {
}

.sms-section-content.imdb-vs-redis .content .table {
}

.sms-section-content.imdb-vs-redis .content .table .table-row {
}

.sms-section-content.imdb-vs-redis .content .table .table-row .row-header {
}

.sms-section-content.imdb-vs-redis .content .table .table-row .column-header {
}

/* ---- resources repeater (imdb vs redis and try for free success) ---- */
.sms-section-content .content .resources {
  display: block;
}

.sms-section-content .content .resources .resource {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
}

.sms-section-content .content .resources .resource .icon a {
  display: block;
}

.sms-section-content .content .resources .resource .icon a img {
  display: block;
  object-fit: cover;
}

.sms-section-content .content .resources .resource .content {
}

/* ---- try for free ---- */

.try-for-free-form {
  margin-top: 20px;
}

.try-for-free-form label > .req {
  display: none;
}

.try-for-free-form input[type="text"],
.try-for-free-form input[type="email"] {
  margin-bottom: 0;
  height: 38px;
}

.try-for-free-form .row + .row {
  margin-top: var(--form-field-spacing);
}

.try-for-free-form input[type="submit"] {
  width: 100%;
  font-size: 27px;
  line-height: 32px;
  padding: 13px 20px;
}

.try-for-free-form input[type="hidden"] + br {
  display: none;
}

.try-for-free-form input::placeholder {
  visibility: hidden;
}

.try-for-free-form .wpcf7-spinner {
  position: absolute;
  bottom: 22px;
  right: 0;
}

/* BEGIN request quote checkbox */
.try-for-free-form .wpcf7-checkbox .wpcf7-list-item {
  margin-left: 0;
}

.try-for-free-form .wpcf7-checkbox label {
  margin-top: 6.4px;
}

.try-for-free-form .wpcf7-checkbox input {
  position: absolute;
  opacity: 0;
  width: 10px;
  height: 10px;
}

.try-for-free-form .wpcf7-checkbox input + span {
  display: flex;
  align-items: center;
}

.try-for-free-form .wpcf7-checkbox input + span:before {
  content: "";
  display: block;
  width: 35px;
  height: 35px;
  background-color: var(--zinc-100);
  flex: 0 0 35px;
  padding-top: 11px;
  padding-left: 2px;
  font-size: 38px;
  margin-right: 14px;
}

.try-for-free-form .wpcf7-checkbox input:checked + span:before {
  content: "✓";
}

.try-for-free-form .wpcf7-checkbox input:focus + span:before {
  border-color: #cb333b;
  box-shadow: inset 0 1px 3px rgb(0 0 0 / 6%), 0 0 5px rgb(183 46 53 / 70%);
  outline: none;
}

.try-for-free.sms-section-content
  .col-2-form-row
  .col-2-form-field
  + .col-2-form-field {
  margin-top: var(--form-field-spacing);
}

/* END request quote checkbox */

@media screen and (min-width: 1280px) {
  .try-for-free.sms-section-content .try-for-free-form {
    margin-top: 28px;
    border: 1px solid var(--zinc-100);
    padding: 41px 42px 53px;
    box-shadow: 0px 7px 15px #00000029;
  }

  .try-for-free.sms-section-content .try-for-free-form label {
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
  }

  .try-for-free.sms-section-content .try-for-free-form input[type="text"],
  .try-for-free.sms-section-content .try-for-free-form input[type="email"] {
    height: 50px;
  }

  .try-for-free.sms-section-content .try-for-free-form input[type="submit"] {
    width: auto;
    padding: 17px 34px 16px;
    font-size: 22px;
    line-height: 27px;
  }

  .try-for-free.sms-section-content .col-2-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 20px;
  }

  .try-for-free.sms-section-content
    .col-2-form-row
    .col-2-form-field
    + .col-2-form-field {
    margin-top: 0;
  }

  .try-for-free.sms-section-content .try-for-free-form .request-quote-row {
    margin-top: 35px;
  }

  .try-for-free.sms-section-content .try-for-free-form .submit-row {
    margin-top: 30px;
  }
}

.try-for-free-cloud {
  margin-top: 45px;
}

.try-for-free-cloud .cloud-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 3px;
  margin-top: 16px;
}

.try-for-free-cloud .cloud-buttons .button {
  padding: 20px;
  display: block;
  background-color: #f0eff0;
}

.try-for-free-cloud .cloud-buttons .button img {
  display: block;
}

@media screen and (min-width: 1280px) {
  .try-for-free.sms-section-content .try-for-free-cloud h3 {
    margin-top: 75px;
  }
}

/* ---- sidebar styles ---- */
.sms-section-content .sidebar {
}

.sms-section-content .sidebar .sidebar-link {
}

.sms-section-content .sidebar a.black {
  color: var(--stone);
}

.imdb-landing.sms-section-content .sidebar h4 a::after:hover,
.sms-section-content .sidebar .sidebar-link a:after:hover,
.sms-section-content .sidebar a.black:hover p{
 color: #8e2429 !important; 
}

.sms-section-content .sidebar .sidebar-link a h4 {
}
.sms-section-content .sidebar .sidebar-link p {
}

/* ---- try for free -sidebar ---- */
.sms-section-content .sidebar .section-blue {
  background-color: var(--sky-500);
  color: white;
  padding: 26px 0 34px;
}

.sms-section-content .sidebar .section-blue p {
  font-size: 17px;
  line-height: 21px;
}

.sms-section-content .sidebar .section-blue p {
  margin-bottom: 28.55px;
}

.sms-section-content .sidebar .section-blue p:last-child {
  margin-bottom: 0;
}

@media screen and (min-width: 1280px) {
  .sms-section-content .sidebar .section-blue h3 {
    font-size: 28px;
    line-height: 34px;
  }

  .sms-section-content .sidebar .section-blue p {
    font-size: 20px;
    line-height: 24px;
  }
}

.sms-section-content .sidebar .section-white .sms-container {
  padding-top: 29px;
}

.sms-section-content .sidebar .section-white h4 {
  margin-bottom: 23.18px;
  font-size: 15px;
  line-height: 18px;
  color: var(--stone);
}

.sms-section-content .sidebar .section-white .title {
  margin-bottom: 0;
  font-weight: bold;
  font-size: 17px;
  line-height: 21px;
  color: var(--sky-600);
}
.sms-section-content .sidebar .section-white .title a {
  color: var(--sky-600);
}

.sms-section-content .sidebar .section-white .title a:hover {
  color: var(--sky-900);
}
.sms-section-content .sidebar .section-white .benefit-details {
  margin-bottom: 18.83px;
  font-size: 14px;
  line-height: 17px;
}

.sms-section-content .sidebar .section-white .benefits-footer {
  margin-top: 35.68px;
}

.sms-section-content .sidebar .section-white .benefits-footer p {
  font-size: 17px;
  line-height: 21px;
}

.sms-section-content .sidebar .section-white .benefits-footer p + p {
  margin-top: 23px;
}

.sms-section-content .sidebar .section-white .benefits-footer p > b {
  display: block;
  color: var(--stone);
  font-size: 15px;
  line-height: 18px;
}

.sms-section-content .sidebar .section-white .benefits-footer p > a {
  font-weight: bold;
  /* color: var(--red-600); */
}

@media screen and (min-width: 1280px) {
  .sms-section-content .sidebar .sms-container {
    padding: 0 29px;
  }

  .sms-section-content .sidebar .section-white .title {
    font-size: 18px;
    line-height: 22px;
  }

  .sms-section-content .sidebar .section-white h4 {
    font-size: 18px;
    line-height: 22px;
  }

  .sms-section-content .sidebar .section-white .sms-container {
    padding-bottom: 23px;
  }

  .sms-section-content .sidebar .section-white .benefit-details {
    font-size: 16px;
    line-height: 22px;
  }

  .sms-section-content .sidebar .section-white .benefits-footer p > b {
    font-size: 18px;
    line-height: 22px;
  }

  .sms-section-content .sidebar .section-white .benefits-footer p {
    font-size: 18px;
    line-height: 22px;
  }
}

/* ---- cta footer styles ---- */
.sms-cta-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-bottom: 46.62px;
  padding-top: 33.8px;
  border-top: 2px solid var(--zinc-100);
}

.sms-cta-footer h3 {
  font-size: 23px;
  line-height: 28px;
}

.sms-cta-footer h3 > a {
  color: var(--stone);
}

.sms-cta-footer p {
  font-size: 17px;
  line-height: 21px;
  color: var(--zinc-600);
}

.sms-cta-footer a.btn {
  display: block;
  width: 100%;
  margin-top: 27.61px;
  padding: 13px 20px;
  background-color: var(--red-600);
  color: white;
  font-size: 27px;
  line-height: 32px;
  font-weight: bold;
}

@media screen and (min-width: 1280px) {
  .sms-cta-footer {
    border-top-width: 0;
    padding-top: 37px;
    padding-bottom: 74px;
  }

  .sms-cta-footer h3 {
    font-size: 32px;
    line-height: 39px;
    margin-bottom: 11px;
  }

  .sms-cta-footer p {
    font-size: 20px;
    line-height: 24px;
  }

  .sms-cta-footer a.btn {
    display: inline-block;
    width: auto;
    min-width: 250px;
    margin-top: 15px;
  }
}

/* BEGIN Resource Links */
.sms-section-content .content .resources {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(348px, 1fr));
  grid-gap: 29.85px;
}

.sms-section-content .content .resources .resource {
  display: block;
}

.sms-section-content .content .resources .resource .icon {
  width: 100%;
  aspect-ratio: 5 / 2;
}

.sms-section-content .content .resources .resource .icon a {
  height: 100%;
}

.sms-section-content .content .resources .resource .icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sms-section-content .content .resources .resource .icon img.icon-img--desktop {
  display: none;
}

.sms-section-content .content .resources .resource {
  background-color: var(--zinc-100);
}

.sms-section-content .content .resources .resource .content {
  padding: 23px 28px 26px;
}

.sms-section-content .content .resources .resource .content h4 {
  font-size: 22px;
  line-height: 30px;
}

.sms-section-content .content .resources .resource .content h4 a,
.sms-section-content .content .resources a .resource .content h4  {
  color: var(--sky-600);
}

.sms-section-content .content .resources a:hover .resource .content h4  {
  color: var(--sky-900) !important; 
}

.sms-section-content .content .resources .resource .content p {
  font-size: 18px;
  line-height: 24px;
  color: var(--stone);
}

@media screen and (min-width: 850px) {
  .sms-section-content .content .resources {
    display: flex;
    flex-direction: column;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
  }

  .sms-section-content .content .resources .resource {
    display: grid;
    grid-template-columns: 190px 1fr;
    align-items: center;
    min-height: 152px;
  }

  .sms-section-content .content .resources .resource .content h4 {
    font-size: 24px;
    line-height: 29px;
    margin-bottom: 15px;
  }

  .sms-section-content .content .resources .resource .content p {
    font-size: 20px;
    line-height: 24px;
  }

  .sms-section-content .content .resources .resource .icon {
    width: 100%;
    height: 100%;
  }

  .sms-section-content
    .content
    .resources
    .resource
    .icon
    img.icon-img--desktop {
    display: block;
  }

  .sms-section-content
    .content
    .resources
    .resource
    .icon
    img.icon-img--mobile {
    display: none;
  }

  .sms-section-content .content .resources .resource .content {
    padding: 27px 31px 30px;
  }
}
/* END Resource Links */



/* Contact Form Restyling */
.try-for-free-form .wpcf7-form-control {
  border: 2px solid transparent;
}
.try-for-free-form .wpcf7-form-control:focus {
  box-shadow: inset 0 1px 3px rgb(0 0 0 / 6%), 0 0 5px #009cde;
  border-color: transparent;
}
.try-for-free-form .wpcf7-not-valid {
  border-color: var(--red-600);
}
.try-for-free-form .wpcf7-not-valid-tip {
  display: none;
}
.try-for-free-form .wpcf7-response-output {
  background-color: #fff!important;
  border: 0!important;
  height: auto;
  left: unset;
  /* margin: 0!important; */
  padding: 0px!important;
  position: relative;
  right: unset;
  text-align: left;
  color: var(--red-600);
  font-weight: 600;
  top: unset;
  font-size: 16px;
  margin-top: 5px !important;
  margin-bottom: -28px !important;
}

