.pro-tips-page {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  overflow: hidden;
}

/* TUTORIAL VIDEO */

.pro-tips-page .tutorial-overlay {
  top: 0;
  left: 0;
  position: fixed;
  height: 100vh;
  width: 100vw;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99;
}

.pro-tips-page .tutorial-video {
  position: relative;
  width: 100%;
  max-width: 800px;
  padding: 30px;
  z-index: 2;
  box-shadow: rgba(23, 40, 94, 0.08) 0px 4px 24px;
}

.pro-tips-page .tutorial-close-button {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 15px;
  right: 15px;
  width: 30px;
  height: 30px;
  background: #ffffff;
  border-radius: 50%;
  transition: all 250ms;
  cursor: pointer;
  z-index: 10;
}

.pro-tips-page .tutorial-close-icon {
  width: 24px;
  height: 24px;
}

.pro-tips-page .tutorial-close-button:hover {
  background: #D0D7E8;
}

/* TIPS INTRO CSS */

.pro-tips-page .tips-intro {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  width: 100%;
  padding: 120px 0px 160px;
  max-width: 1440px;
  background-image: url(https://cdn.brief.vet/plumbs/marketing-site/images/tips/Tips_Hero_Desktop.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
}

@media only screen and (max-width: 500px) {
  .pro-tips-page .tips-intro {
    padding: 80px 0px 100px;
  }
}

.pro-tips-page .tips-intro-text-wrapper {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.pro-tips-page .tips-intro-tag {
  margin: 0 0 30px;
}

.pro-tips-page .tips-intro-text {
  width: 100%;
  max-width: 700px;
}

.pro-tips-page .jump-links-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
}

@media only screen and (max-width: 500px) {
  .pro-tips-page .jump-links-wrapper {
    flex-direction: column;
  }
}

.pro-tips-page .jump-link {
  font-family: 'Source Sans Pro', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  text-transform: uppercase;
  color: #ffffff;
  font-weight: 700;
  line-height: 1;
  font-size: 14px;
  transition: all 250ms;
  cursor: pointer;
}

.pro-tips-page .jump-link:hover {
  color: #F4F6FC;
}

.pro-tips-page .jump-link-line {
  width: 2px;
  height: 16px;
  background-color: #FFFFFF;
  margin: 0 10px;
  opacity: 0.25;
}

@media only screen and (max-width: 500px) {
  .pro-tips-page .jump-link-line {
    width: 100%;
    height: 1px;
    margin: 10px 0;
  }
}

/* INFO BLOCKS CSS */

.pro-tips-page .help-blocks-container {
  position: relative;
  width: 100%;
  max-width: 1570px;
  padding: 15px;
  margin: -80px 0 0;
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-direction: row;
  flex-wrap: wrap;
  z-index: 1;
}

.pro-tips-page .help-block-wrapper {
  width: 33.33%;
  padding: 15px;
  display: flex;
}

@media only screen and (max-width: 1000px) {
  .pro-tips-page .help-block-wrapper {
    width: 50%;
  }
}

@media only screen and (max-width: 700px) {
  .pro-tips-page .help-block-wrapper {
    width: 100%;
  }
}

.pro-tips-page .help-block {
  position: relative;
  width: 100%;
  min-height: 420px;
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 60px 0px 40px;
  background-color: #ffffff;
  box-shadow:  rgba(7, 142, 227, 0.15) 0px 0px 40px;
}

@media only screen and (max-width: 700px) {
  .pro-tips-page .help-block {
    min-height: auto;
  }
}

.pro-tips-page .help-block-tag {
  position: absolute;
  top: 0;
  left: 0;
}

.pro-tips-page .help-text {
  width: 100%;
  max-width: 370px;
  padding: 0 30px 30px;
}

.pro-tips-page .get-started-icon {
  margin: -2px 0 17px;
  width: 66px;
  height: 73px;
}

.pro-tips-page .tutorial-icon {
  width: 82px;
  margin: 0 0 20px;
}

.pro-tips-page .explore-icon {
  width: 96px;
  margin: 0 0 20px;
}

/* TOUR SECTION CSS */

.pro-tips-page .get-help-container {
  width: 100%;
  max-width: 1440px;
  margin: 60px 0 0;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
}

@media only screen and (max-width: 1100px) {
  .pro-tips-page .get-help-container {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 60px 0 0;
  }
}

.pro-tips-page .get-help-image {
  width: 60%;
  max-width: 790px;
}

@media only screen and (max-width: 1100px) {
  .pro-tips-page .get-help-image {
    width: 100%;
    max-width: 790px;
    order: 1;
  }
}

.pro-tips-page .get-help-text-wrapper {
  width: 40%;
  padding: 140px 30px 180px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  order: 0;
}

@media only screen and (max-width: 1100px) {
  .pro-tips-page .get-help-text-wrapper {
    width: 100%;
    max-width: 700px;
    padding: 0 0 30px;
    order: 0;
  }
}

.pro-tips-page .get-help-tag {
  margin: 0 30px 20px;
}

@media only screen and (max-width: 1100px) {
  .pro-tips-page .get-help-tag-mobile {
    display: block;
    margin: -80px 30px 20px;
  }
}

@media only screen and (max-width: 760px) {
  .pro-tips-page .get-help-tag-mobile {
    margin: -60px 30px 20px;
  }
}

/* WHATS NEW SECTION CSS */

.pro-tips-page .whats-new-container {
  width: 100%;
  max-width: 1440px;
  z-index: 1;
}

.pro-tips-page .whats-new-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
}

@media only screen and (max-width: 1100px) {
  .pro-tips-page .whats-new-wrapper {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 0 0;
  }
}

@media only screen and (max-width: 540px) {
  .pro-tips-page .whats-new-wrapper {
    align-items: flex-start;
  }
}

.pro-tips-page .whats-new-image {
  position: absolute;
  left: -209px;
  bottom: -70px;
  width: 100%;
  max-width: 1158px;
  pointer-events: none;
}

@media only screen and (max-width: 1350px) {
  .pro-tips-page .whats-new-image {
    position: relative;
    left: unset;
    bottom: unset;
    width: 60%;
    max-width: 1158px;
  }
}

@media only screen and (max-width: 1100px) {
  .pro-tips-page .whats-new-image {
    width: 100%;
    order: 1;
    margin: 0 0 -60px;
  }
}

@media only screen and (max-width: 540px) {
  .pro-tips-page .whats-new-image {
    min-width: 600px;
  }
}

.pro-tips-page .whats-new-text-wrapper {
  width: 40%;
  min-width: 40%;
  padding: 150px 30px 80px;
  margin: 0 4% 0 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

@media only screen and (max-width: 1100px) {
  .pro-tips-page .whats-new-text-wrapper {
    width: 100%;
    max-width: 700px;
    padding: 0;
    margin: 0;
    order: 0;
  }
}

.pro-tips-page .thin-header-container {
  width: 100%;
  max-width: 700px;
  padding: 30px;
  margin: -90px 0 0;
}

.pro-tips-page .whats-new-tag {
  margin: 0 30px 20px;
}

@media only screen and (max-width: 1100px) {
  .pro-tips-page .whats-new-tag-mobile {
    display: block;
    margin: -80px 30px 20px;
  }
}

@media only screen and (max-width: 760px) {
  .pro-tips-page .whats-new-tag-mobile {
    margin: -60px 30px 20px;
  }
}

/* VIDEO SECTION CSS */

.pro-tips-page .video-section-container {
  width: 100%;
  max-width: 1440px;
}

.pro-tips-page .video-section-wrapper {
  position: relative;
  width: 100%;
  padding: 120px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

@media only screen and (max-width: 1100px) {
  .pro-tips-page .video-section-wrapper {
    padding: 80px 0 0;
  }
}

.pro-tips-page .video-section-tag {
  margin: 0 30px 30px;
}

.pro-tips-page .video-section-header {
  max-width: 700px;
}

.pro-tips-page .video-section-copy {
  max-width: 500px;
}

.pro-tips-page .video-section-video {
  width: 100%;
  max-width: 800px;
  margin: 0 0 -60px;
  z-index: 2;
  box-shadow: rgba(23, 40, 94, 0.08) 0px 4px 24px;
}

/* CTA SECTION */

.pro-tips-page .cta-section-header {
  max-width: 700px;
}

.pro-tips-page .cta-section-copy {
  max-width: 500px;
  padding: 0 30px 10px;
}

/* WHAT'S NEW SECTION CSS */

.pro-tips-page .news-block-one-container {
  width: 100%;
  max-width: 1440px;
  margin: 60px 0;
  display: flex;
  flex-direction: row;
}

@media only screen and (max-width: 1100px) {
  .pro-tips-page .news-block-one-container {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
  }
}

.pro-tips-page .news-block-one-image {
  position: relative;
  display: flex;
  align-items: center;
  width: 50%;
  /* order: 1; */ /* this places the image on the right side */
  /* box-shadow: rgba(23, 40, 94, 0.08) 0px 4px 24px; */
}

.pro-tips-page .news-block-one-image img {
  width: 100%;
  max-height: 591px; /* this is for IE 11 lol */
}

@media only screen and (max-width: 1100px) {
  .pro-tips-page .news-block-one-image {
    width: 100%;
    height: auto;
    order: 0;
    box-shadow: none;
  }

  .pro-tips-page .news-block-one-image img {
    max-width: 700px;
    width: 100%;
    margin: 0 auto;
  }
}

.pro-tips-page .news-block-one-overlayed-image {
  position: absolute;
  width: 100%;
  max-width: 621px;
  left: -60px;
  bottom: 60px;
  box-shadow:  rgba(7, 142, 227, 0.15) 0px 0px 40px;
}

@media only screen and (max-width: 1100px) {
  .pro-tips-page .news-block-one-overlayed-image {
    display: none;
  }
}

.pro-tips-page .news-block-one-text-wrapper {
  width: 50%;
  padding: 140px 30px 180px 100px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  order: 0;
}

@media only screen and (max-width: 1440px) {
  .pro-tips-page .news-block-one-text-wrapper {
    padding: 140px 65px 180px 65px;
  }
}

@media only screen and (max-width: 1100px) {
  .pro-tips-page .news-block-one-text-wrapper {
    width: 100%;
    max-width: 700px;
    padding: 60px 0 80px;
    order: 1;
  }
}

@media only screen and (max-width: 1100px) {
  .pro-tips-page .news-block-one-mobile-header {
    display: block;
    z-index: 1;
  }
}

.pro-tips-page .news-block-one-desktop-header {
  display: block;
}

.pro-tips-page .news-block-one-tag {
  margin: 0 30px 20px;
}

@media only screen and (max-width: 1100px) {
  .pro-tips-page .news-block-one-tag-mobile {
    display: flex;
    margin: -80px 30px 20px;
  }
}

@media only screen and (max-width: 760px) {
  .pro-tips-page .news-block-one-tag-mobile {
    margin: -60px 30px 20px;
  }
}

/* TOUR SECTION CSS */

.pro-tips-page .tour-container {
  width: 100%;
  max-width: 1440px;
  margin: 60px 0 -60px;
  display: flex;
  flex-direction: row;
  z-index: 2;
}

@media only screen and (max-width: 1100px) {
  .pro-tips-page .tour-container {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
  }
}

.pro-tips-page .tour-image {
  position: relative;
  display: flex;
  align-items: center;
  width: 50%;
  background-image: url(https://cdn.brief.vet/plumbs/marketing-site/images/pro-tips/ProTips_WhatsNew_Desktop_v3.0.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top left;
  order: 1;
  box-shadow: rgba(23, 40, 94, 0.08) 0px 4px 24px;
}

@media only screen and (max-width: 1100px) {
  .pro-tips-page .tour-image {
    width: 100%;
    height: 0;
    padding-bottom: 50%;
    background-image: url(https://cdn.brief.vet/plumbs/marketing-site/images/pro-tips/ProTips_WhatsNew_Mobile_v3.0.png);
    background-position: top;
    order: 0;
    box-shadow: none;
    max-width: 700px;
  }
}

@media only screen and (max-width: 700px) {
  .pro-tips-page .tour-image {
    padding-bottom: 70%;
  }
}

.pro-tips-page .tour-notes-image {
  position: absolute;
  width: 100%;
  max-width: 482px;
  left: -60px;
  margin: auto;
  top: 0;
  bottom: 0;
  box-shadow:  rgba(7, 142, 227, 0.15) 0px 0px 40px;
}

@media only screen and (max-width: 1100px) {
  .pro-tips-page .tour-notes-image {
    display: none;
  }
}

.pro-tips-page .tour-text-wrapper {
  width: 50%;
  padding: 140px 100px 180px 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  order: 0;
}

@media only screen and (max-width: 1440px) {
  .pro-tips-page .tour-text-wrapper {
    padding: 140px 65px 180px 65px;
  }
}

@media only screen and (max-width: 1100px) {
  .pro-tips-page .tour-text-wrapper {
    width: 100%;
    max-width: 700px;
    padding: 60px 0 80px;
    order: 1;
  }
}

@media only screen and (max-width: 1100px) {
  .pro-tips-page .tour-mobile-header {
    display: block;
    z-index: 1;
  }
}

.pro-tips-page .tour-desktop-header {
  display: block;
}


.pro-tips-page .tour-tag {
  margin: 0 30px 20px;
}

@media only screen and (max-width: 1100px) {
  .pro-tips-page .tour-tag-mobile {
    display: flex;
    margin: -80px 30px 20px;
  }
}

@media only screen and (max-width: 760px) {
  .pro-tips-page .tour-tag-mobile {
    margin: -60px 30px 20px;
  }
}

/* FAQs */

.pro-tips-page .faq-container.content-around {
  padding-top: 100px;
}


/* LINK */
.pro-tips-page .light-coral-to-coral-to-red-gradient-grain .color-white:hover {
  color: #fff;
}

.pro-tips-page .whats-new-text-wrapper .footnote {
  color: #fff;
  text-align: left;
  margin: 80px 30px 0 0;
  padding: 0 30px 0;
  font-weight: 300;
}

.pro-tips-page .whats-new-text-wrapper .footnote p {
  padding: 0 0 20px;
}

.pro-tips-page .whats-new-text-wrapper .footnote p:first-of-type {
  border-top: 1px solid rgba(255,255,255,.3);
  padding: 30px 0 20px;
}

.pro-tips-page .whats-new-text-wrapper .footnote p:last-of-type {
  padding: 0;
}
