:root {
  --dark-bg: #1a1a1a;
  --black-bg: black !important;
  --button-blue: #00bfff;
  --text-light-gray: #cccccc;
  --brand-dark-red: #e50000;
  --brand-light-blue: #00bfff;
}

.logo-carousel {
  overflow: hidden;
  width: 100%;
  max-width: 1200px;
  padding: 1rem 0;
  box-sizing: border-box;
  position: relative;
}

.logo-track {
  display: flex;
  align-items: center;
  gap: 3rem;
  width: fit-content;
  animation: scroll-logos 40s linear infinite alternate;
  transition: opacity 0.5s;
}

.logo-track.fade {
  opacity: 0;
  transition: opacity 0.5s;
}

@keyframes scroll-logos {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.logo-track figure {
  margin: 0;
  min-width: 100px;
  max-width: 160px;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-track img {
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  filter: brightness(0.45);
  transition: filter 0.2s;
}

.logo-track img:hover {
  filter: brightness(1.1);
}

@media (max-width: 768px) {
  .logo-track {
    gap: 2rem;
    animation: scroll-logos 25s linear infinite;
  }

  .logo-track figure {
    min-width: 80px;
    max-width: 120px;
  }
}

@media (max-width: 576px) {
  .logo-track {
    gap: 1.5rem;
    animation: scroll-logos 30s linear infinite;
  }

  .logo-track figure {
    min-width: 60px;
    max-width: 100px;
  }
}

html, body {
  overflow-x: hidden !important;
}


.actionable-asm-header {
  background-color: var(--dark-bg);
}

.bg-dark-bg { background-color: var(--dark-bg); }
.black-bg { background-color: var(--black-bg); }
.text-light-gray { color: var(--text-light-gray); }

.btn-blue {
  background-color: var(--button-blue);
  border-radius: 8px;
  color: black;
  border: none;
  transition: all 0.3s ease;
}
.btn-blue:hover {
  background-color: #0099CC;
  color: white;
}

.block-columns.actionable-asm-hero-section {
  background: linear-gradient(98deg, var(--brand-dark-red) 0%, var(--dark-bg) 15%, var(--brand-dark-red) 100%) !important;

  position: relative;
  overflow: hidden;
  padding-top: 8rem !important;
  padding-bottom: 8rem !important;
  color: white;
}

.block-columns.actionable-asm-hero-section::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  background: url("/hero-gear-bg.png") no-repeat right top;
  background-size: cover;
  opacity: 0.05;
  pointer-events: none;
  z-index: 0;
}

.block-columns.actionable-asm-hero-section .block-columns-column-container {
  padding: 0;
}

.block-columns.actionable-asm-hero-section .block-columns-column {
  padding: 0 !important;
}

@media (max-width: 575.98px) {
  .block-columns.actionable-asm-hero-section {
    padding-top: 5rem !important;
    padding-bottom: 2rem !important;
  }
  .block-columns.actionable-asm-hero-section::after {
    width: 80%;
    opacity: 0.04;
  }
}

.actionable-asm-left {
    position: relative;
    z-index: 2;
}

.separator-red {
    width: 90px;
    height: 2px;
    background: #e53935;
    border-radius: 2px;
    display: block;
}

.red-circle-bg {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -55%);
    width: 550px;
    height: 550px;
    background: #e53935;
    border-radius: 50%;
    z-index: 0;
    box-shadow: 0 4px 32px rgba(229,57,53,0.15);
}

.secondary-red-circle-bg {
  position: absolute;
  left: 75%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 550px;
  height: 550px;
  background: #e53935;
  border-radius: 50%;
  z-index: 0;
  box-shadow: 0 4px 32px rgba(229,57,53,0.15);
    margin: 0 auto;

}
.circle-img-wrapper figure img {
  position: relative;
  z-index: 1;
  display: block;
  margin: 0 auto;
  max-width: 90%;
}
.asm-img-wrapper {
    position: relative;
    display: inline-block;
    min-width: 320px;
    min-height: 320px;
}

.asm-cover-img {
    position: relative;
    z-index: 1;
    transform: rotate(10deg);
    max-width: 260px;
    height: auto;
}

.semi-bold {
  font-weight: 500 !important;
}

.isometric-illustration {
  position: relative;
}

.isometric-img {
  max-width: 100%;
  width: 800px;
  height: auto;
  min-width: 300px;
  display: block;
  margin: 0 auto;
}

.content-block {
  position: relative;
  z-index: 2;
}

.benefits-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.benefits-list li {
  padding: 15px 0;
  transition: all 0.3s ease;
  display: flex;
  align-items: flex-start;
  position: relative;
}

.benefits-list li::before {
  content: "–";
  font-weight: bold;
  font-size: 1.2rem;
  margin-right: 1rem;
  margin-top: 0.1rem;
  flex-shrink: 0;
}

.benefits-list li:last-child {
  border-bottom: none;
}

.benefits-list li:hover {
  background-color: rgba(229, 57, 53, 0.05);
  padding-left: 15px;
  border-radius: 8px;
  margin-left: -15px;
  padding-right: 15px;
}

.benefits-list div {
  flex: 1;
}

.benefits-list strong {
  font-weight: 600;
  color: #333;
}

.testimonial-section #testimonialCarousel,
#testimonialCarousel {
  position: relative;
}

.testimonial-section .carousel-inner,
#testimonialCarousel .carousel-inner {
  position: relative;
  overflow: visible;
}

.testimonial-nav-control {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin: 2rem 0;
}

@media (max-width: 768px) {
  .testimonial-nav-control {
    gap: 1rem;
    margin: 1.5rem 0;
  }
  .testimonial-card {
    padding: 1rem !important;
  }
  .testimonial-image {
    width: 120px !important;
    height: 120px !important;
  }
}

@media (max-width: 576px) {
  .testimonial-nav-control {
    flex-direction: column;
    gap: 0.75rem;
    margin: 1rem 0;
  }
  .testimonial-card {
    padding: 0.5rem !important;
  }
  .testimonial-image {
    width: 160px !important;
    height: 160px !important;
  }
  h2.text-white {
    font-size: 1.3rem !important;
  }
  .fs-4, .fs-5, .fs-6 {
    font-size: 1rem !important;
  }
  .custom-nav-btn {
    width: 36px !important;
    height: 36px !important;
    font-size: 1.2rem !important;
  }
}

/* Navigation buttons positioned relative to carousel-inner */
.testimonial-section .carousel-control-prev,
.testimonial-section .carousel-control-next,
#testimonialCarousel .carousel-control-prev,
#testimonialCarousel .carousel-control-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  opacity: 1 !important;
  z-index: 20 !important;
  background: none;
  border: none;
  pointer-events: auto;
}

.testimonial-section .carousel-control-prev,
#testimonialCarousel .carousel-control-prev {
  left: -80px;
}

.testimonial-section .carousel-control-next,
#testimonialCarousel .carousel-control-next {
  right: -80px;
}

.testimonial-section .custom-nav-btn,
#testimonialCarousel .custom-nav-btn {
  width: 50px;
  height: 50px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 21;
  pointer-events: auto;
}

.testimonial-section .custom-nav-btn:hover,
#testimonialCarousel .custom-nav-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(0,0,0,0.2) !important;
  border-color: rgba(220, 53, 69, 0.3);
}

.testimonial-section .testimonial-card,
#testimonialCarousel .testimonial-card {
  border: none;
  transition: transform 0.3s ease;
  position: relative;
  z-index: 1;
}

.testimonial-section .testimonial-card:hover,
#testimonialCarousel .testimonial-card:hover {
  transform: translateY(-3px);
}

.testimonial-section .testimonial-image,
#testimonialCarousel .testimonial-image {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius:3px 0 0 3px;
}

.testimonial-section .position-relative,
.testimonial-section .col-lg-10,
.block-columns .position-relative,
.block-columns .col-lg-10 {
  position: relative;
  overflow: visible !important;
  padding-left: 0;
  padding-right: 0;
}

.block-columns-column {
  overflow: visible !important;
}

.container-default {
  overflow: visible !important;
}

@media (max-width: 992px) {
  .testimonial-section .carousel-control-prev,
  #testimonialCarousel .carousel-control-prev {
    left: -60px;
  }

  .testimonial-section .carousel-control-next,
  #testimonialCarousel .carousel-control-next {
    right: -60px;
  }

  .testimonial-section .col-lg-10,
  .block-columns .col-lg-10 {
    padding-left: 60px;
    padding-right: 60px;
  }
}

@media (max-width: 768px) {
  .testimonial-section .carousel-control-prev,
  #testimonialCarousel .carousel-control-prev {
    left: -40px;
  }

  .testimonial-section .carousel-control-next,
  #testimonialCarousel .carousel-control-next {
    right: -40px;
  }

  .testimonial-section .custom-nav-btn,
  #testimonialCarousel .custom-nav-btn {
    width: 40px !important;
    height: 40px !important;
  }

  .testimonial-section .carousel-control-prev,
  .testimonial-section .carousel-control-next,
  #testimonialCarousel .carousel-control-prev,
  #testimonialCarousel .carousel-control-next {
    width: 50px;
    height: 50px;
  }

  .testimonial-section .col-lg-10,
  .block-columns .col-lg-10 {
    padding-left: 40px;
    padding-right: 40px;
  }
}

@media (max-width: 576px) {
  .testimonial-section .carousel-control-prev,
  #testimonialCarousel .carousel-control-prev {
    left: -25px;
  }

  .testimonial-section .carousel-control-next,
  #testimonialCarousel .carousel-control-next {
    right: -25px;
  }

  .testimonial-section .col-lg-10,
  .block-columns .col-lg-10 {
    padding-left: 25px;
    padding-right: 25px;
  }
}

.post-banner {
  margin: 2rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: auto;
}

h1.display-4.hero-text-title {
  line-height: 1.1 !important;
}

.block-hero .text-contents p {
  max-width: 1000px !important;
}

@media (max-width: 768px) {
  #hsForm_6ac0b780-13d9-4983-bfb6-7091a8f324c2 .hs-error-msg {
    margin-top: 10px;
  }

  #hsForm_6ac0b780-13d9-4983-bfb6-7091a8f324c2 .hs-email {
    margin-bottom: 20px;
  }

  #hsForm_6ac0b780-13d9-4983-bfb6-7091a8f324c2 .hs-submit {
    margin-top: 20px;
  }
}

/* CTEM Interactive Diagram */

.ctem-container {
  padding: 0 1rem;
  color: #FFF;
}

.ctem-container h1 {
  margin-bottom: 1.5rem;
}

.ctem-container p {
  margin-bottom: 2rem;
}

.ctem-interactive-wrapper {
  transform-style: preserve-3d;
  transition: transform 0.3s ease-out;
  padding-top: 37.25%;
  position: relative;
  overflow: visible;
}

.ctem-interactive-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 10px;
  z-index: 1;
}

.ctem-overlay-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  transform-style: preserve-3d;
  z-index: 2;
}

.ctem-overlay-item {
  position: absolute;
  transition: all 0.3s ease;
  pointer-events: auto;
  transform-style: preserve-3d;
}

.asm-overlay {
  top: 43%;
  left: 4.5%;
}

.cpt-overlay {
  top: 53%;
  left: 48%;
}

.adsim-overlay {
  top: 67%;
  left: 71%;
}

.platform-overlay {
  top: 84%;
  left: 98%;
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  }
  50% {
    box-shadow: 0 0 10px 5px rgba(235, 69, 69, 1);
  }
}

.asm-dot,
.cpt-dot,
.adsim-dot,
.platform-dot {
  position: absolute;
  width: 30px;
  height: 30px;
  background-color: #EB4545;
  border-radius: 50%;
  transform: translateZ(20px);
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  animation: pulse 1.5s infinite;
  top: 0;
  left: 0;
}

.asm-dot:hover,
.cpt-dot:hover,
.adsim-dot:hover,
.platform-dot:hover {
  animation: none;
  box-shadow: 0 0 10px 5px rgba(235, 69, 69, 1);
}

.ctem-tooltip {
  position: absolute;
  top: 45px;
  left: 50%;
  transform: translateX(-50%) translateY(10px) translateZ(100px);
  width: 220px;
  text-align: center;
  background-color: #AD2725;
  color: #FFFFFF;
  padding: 10px;
  border-radius: 8px;
  font-size: 14px;
  opacity: 0;
  transition: all 0.3s ease;
  pointer-events: none;
  z-index: 20;
}

.asm-dot:hover .ctem-tooltip,
.cpt-dot:hover .ctem-tooltip,
.adsim-dot:hover .ctem-tooltip,
.platform-dot:hover .ctem-tooltip {
  opacity: 1;
  transform: translateX(-50%) translateY(0) translateZ(100px);
}

.asm-dot .ctem-tooltip {
  transform: translateX(0) translateY(10px) translateZ(100px);
  text-align: center;
}

.asm-dot:hover .ctem-tooltip {
  transform: translateX(0) translateY(0) translateZ(100px);
}

.platform-dot .ctem-tooltip {
  left: auto;
  right: 0;
  transform: translateX(0) translateY(10px) translateZ(100px);
  text-align: center;
}

.platform-dot:hover .ctem-tooltip {
  transform: translateX(0) translateY(0) translateZ(100px);
}

.ctem-alt-image {
  display: flex;
  justify-content: center;
  margin: 2rem 0;
}

.ctem-alt-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

@media (max-width: 992px) {
  .asm-dot,
  .cpt-dot,
  .adsim-dot,
  .platform-dot,
  .ctem-tooltip {
    display: none !important;
  }

  .asm-overlay {
    top: 22%;
    left: 10%;
  }

  .cpt-overlay {
    top: 45%;
    left: 38%;
  }

  .adsim-overlay {
    top: 55%;
    left: 62%;
  }

  .platform-overlay {
    top: 60%;
    left: 85%;
  }
}

@media (max-width: 768px) {
  .ctem-container h1 {
    width: 100%;
  }
}

/* CPT Benefits Section */
.cpt-container {
  border: 1px solid #dee2e6;
  padding: 1.5rem;
  margin: 0;
  background-color: #fff;
}

.cpt-container h1 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-align: center;
}

.ctem-quote-container {
  background-color: rgba(0, 0, 0, 0.5);
  border: 1px solid transparent;
  border-radius: 10px;
}

.ctem-title {
  border-bottom: 2px solid rgba(0, 0, 0, 0.5);
}

.check-item {
  display: flex;
  margin-bottom: 1.25rem;
  align-items: flex-start;
}

.check-item:last-child {
  margin-bottom: 0;
}

.check-icon {
  color: #212529;
  margin-right: 0.75rem;
  min-width: 20px;
  padding-top: 3px;
}

.benefit-title {
  font-weight: 700;
  margin-right: 0.25rem;
}

@media (max-width: 767px) {
  .cpt-container h1 {
    font-size: 1.5rem;
  }

  .cpt-container {
    padding: 1.25rem;
  }
}

/* Solves pixelation for our logo in certain browsers in mobile mode */
a.navbar-brand.navbar-brand-img img {
  image-rendering: crisp-edges; /* Safari */
}

#ebook-hubspot-web-form input[type="submit"] {
  color: white;
  background-color: #EB4545;
  padding: 1rem;
  border-radius: 0.25rem;
  margin: 0;
  border: none;
  margin-top: 1rem;
}

#ebook-hubspot-web-form .hs-error-msg {
  color: #EB4545;
  margin-top: 0.5rem;
  list-style: none;
}

#ebook-hubspot-web-form input.hs-input {
  width: 100%;
  margin: 0.5rem 0;
}

.asm-cover-img {
  height: 700px;
}

@media (max-width: 1200px) {
  .asm-cover-img {
    height: 650px;
  }
}

@media (max-width: 992px) {
  .asm-cover-img {
    height: 500px;
  }
}

/* Blog Archive Styles */

/* General Layout */
.blog-archive-container {
  padding: 4rem 0;
}

@media (max-width: 991px) {
  .blog-archive-container {
    padding-top: 0.5rem;
    padding-bottom: 1.5rem;
  }
}

/* Featured Section */
.featured-section {
  padding-bottom: 4rem;
}

@media (max-width: 991px) {
  .featured-section {
    padding-bottom: 2rem;
  }
}

.featured-section h2 {
  font-size: 1.45rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.featured-items-column {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.featured-item {
  overflow: hidden;
  border: 1px solid #D4D4D4;
  transition: transform 0.3s ease;
}

.featured-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.featured-item-inner {
  display: flex;
  flex-direction: row;
}

.featured-image {
  flex: 0 0 55%;
  max-width: 55%;
  position: relative;
}

.featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.featured-item:hover .featured-image img {
  transform: scale(1.05);
}

.featured-content {
  flex: 0 0 45%;
  max-width: 45%;
  padding: 2rem;
  display: flex;
  flex-direction: column;
}

/* Meta Information */
.meta {
  display: flex;
  align-items: center;
  font-size: 0.875rem;
  color: #666;
  margin-bottom: 10px;
}

.article-separator {
  margin: 0 0.5rem;
}

/* Meta Tier Lists */
.meta-tier-list {
  display: flex;
  margin-top: auto;
  flex-wrap: wrap;
  font-variant: small-caps;
  padding: 0;
  margin: 0;
  list-style: none;
  gap: 0.5rem;
}

.meta-tier-list .list-inline-item {
  margin-right: 10px;
  margin-bottom: 10px;
}

.meta-tier-list .classification-item a {
  background-color: #646870;
  color: white;
  padding: 5px 10px;
  display: block;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.meta-tier-list .classification-item a:hover {
  background-color: #4e5259;
}

.meta-tier-list .category-item a {
  background-color: #C6CCD7;
  color: #1E232D;
  padding: 5px 10px;
  display: block;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.meta-tier-list .category-item a:hover {
  background-color: #b5bbc6;
}

.meta-tier-list .typeCat-item a {
  background-color: #DEE3EC;
  color: #1E232D;
  padding: 5px 10px;
  display: block;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.meta-tier-list .typeCat-item a:hover {
  background-color: #cdd2db;
}

.meta-tier-list .topic-item {
  background-color: #C6CCD7;
  color: #1E232D;
  padding: 5px 10px;
  display: block;
  text-decoration: none;
  cursor: default;
  transition: background-color 0.3s ease;
}

.featured-title-container .article-title {
  font-size: 1.9rem;
}


/* Article Title and Content */
.article-title-container {
  margin-bottom: 1rem;
  overflow: hidden;
}

.article-title {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.article-excerpt-container {
  margin-bottom: 10px;
  overflow: hidden;
}

.article-excerpt {
  font-size: 0.95rem;
  color: #444;
  margin-bottom: 10px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.featured-excerpt-container {
  height: 6rem;
  margin-bottom: 10px;
  overflow: hidden;
}

.featured-article-excerpt {
  font-size: 0.95rem;
  color: #444;
  margin-bottom: 10px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;

}

/* Read More, Watch Buttons */
.article-read-more, .webcast-card__watch {
  display: inline-flex;
  align-items: center;
  font-weight: 800;
  font-size: 15px;
  color: #B5231D;
  text-transform: uppercase;
  text-decoration: none !important;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.article-read-more svg,
.article-read-more i,
.webcast-card__watch svg,
.webcast-card__watch i {
  transition: transform 0.3s ease;
  margin-left: 5px;
}

.article-read-more:hover, .webcast-card__watch:hover {
  opacity: 1;
  text-decoration: none !important;
  color: #791713;
}

.article-read-more:hover svg,
.article-read-more:hover i,
.webcast-card__watch:hover svg,
.webcast-card__watch:hover i {
  transform: translateX(5px);
}

/* Article Footer */
.article-footer {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Article Grid Section */
.article-grid-section {
  padding-top: 2rem;
}

.article-section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.45rem;
  font-weight: 400 !important;
  margin-bottom: 2rem;
}

/* Filter Controls */
.filter-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.filter-controls .search-form {
  width: 45%;
  margin: 0;
}

.filter-controls .search-form input {
  flex: 1;
  border: 1px solid #D4D4D4;
  background: rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.11) inset;
  border-radius: 0 !important;
}

.filter-controls .filter-dropdown {
  width: 20%;
  border-bottom: 1px solid black;
}

.filter-dropdown select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: transparent;
  border: none;
  color: inherit;
  font-size: 1rem;
  font-weight: 500;
  padding: 0.5rem;
  outline: none;
  width: 100%;
  cursor: pointer;
}

.search-form-container {
  position: relative;
  display: flex;
  align-items: center;
}

.search-form-container input {
  text-indent: 5px;
  padding-right: 102px;
}

.search-form-container input[type="search"]::-webkit-search-cancel-button {
    -webkit-appearance: none;
}

.search-form-container .search-clear-button {
  position: absolute;
  right: 54px;
  text-transform: uppercase;
  font-weight: 800;
  font-size: 15px;
}

.search-form-container .search-clear-button a:hover {
  color: #791713;
}

.search-form-container .search-icon-button {
  position: absolute;
  right: 0;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  height: 45px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  background: #b5231d;
  width: 40px !important;
  border-radius: 0;
  transition: all .3s ease;
}

.search-form-container .search-icon-button:hover {
  background: #791713;
}

.search-form-container .search-icon-button svg {
  left: 8px;
  opacity: 1;
}

.search-form-container input.form-control::-webkit-search-cancel-button,
.search-form-container input.form-control::-ms-clear {
  display: none;
}

/* Articles Grid */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}

.article-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background-color: white;
  overflow: hidden;
  border: 1px solid #D4D4D4;
  transition: transform 0.3s ease;
}

.article-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.article-image {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  overflow: hidden;
}

.article-image a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.article-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.article-image:hover img {
  transform: scale(1.09);
}

.article-content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding: 1.2rem;
}

.article-card .meta, .featured-content .meta {
  font-family: "Geist Mono", monospace;
  letter-spacing: 1px;
  font-weight: 400;
  text-transform: uppercase;
}

.article-card .category-item a, .article-card .topic-item, .featured-item .topic-item  {
  background-color: #F4F4F4;
  font-weight: 600;
}

.article-card .article-author, .featured-item .featured-item-author {
  font-family: "Geist Mono", monospace;
  letter-spacing: 1px;
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.article-card .article-author__name, .featured-item .featured-item-author__name {
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 8px;
}

/* Pagination */
.pagination-control {
  display: flex;
  align-items: baseline;
  justify-content: flex-end;
  gap: 1.5rem;
  margin-top: 2rem;
}

.pagination-control a {
  display: inline-block;
  color: #b5231d;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  transition: border-color 0.3s ease;
}

.pagination-control a.active {
  border-bottom: 1px solid #b5231d;
}

.pagination-control a:hover, .pagination-arrow:hover {
  color: #791713;
  border-color: #791713;
}

.pagination-control--testing-lab {
  padding-bottom: 2rem;
}

.pagination-arrow {
  border: 1px solid #b5231d;
  padding: 5px;
}

/* Responsive */
@media (max-width: 1024px) {
  .articles-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .filter-controls .filter-dropdown {
    width: 25%;
  }
}

@media (max-width: 1399px) {
  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .filter-controls {
    width: 100%;
    flex-wrap: wrap;
  }
}

@media (max-width: 991px) {
  .featured-item-inner {
    flex-direction: column;
  }

  .featured-image,
  .featured-content {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .filter-controls {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
  }

  .filter-controls .search-form,
  .filter-controls .filter-dropdown {
    width: 100%;
  }

  .filter-controls .filter-dropdown:last-child {
    margin-left: 0;
  }

  .filter-controls .filter-dropdown select {
    font-size: 0.85rem;
  }

  .articles-grid {
    grid-template-columns: 1fr;
  }
}

/* Post Layout Styles */
.post-container {
  padding: 3rem 0;
  background-color: #fff;
}

.post-layout {
  padding-top: 2rem;
  display: grid;
  grid-template-columns: 60px 1fr 300px;
  gap: 30px;
}

/* Social Share Column */
.social-share-column {
  position: sticky;
  top: 90px;
  max-height: calc(100vh - 40px);
  overflow-y: auto;
}

.social-share {
  display: flex;
  flex-direction: column;
}

.social-share.sticky {
  position: fixed;
  top: 100px;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: #757575;
  border: 1px solid #D4D4D4;
  transition: all 0.3s ease;
  border-bottom: none;
}

.social-icon:last-child {
  border-bottom: 1px solid #D4D4D4;
}

/* Main Content Column */
.main-content-column {
  max-width: 895px;
  width: 100%;
  box-sizing: border-box;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 1rem;
}

.post-tag {
  display: inline-block;
  padding: 4px 12px;
  border: 1px solid #e0e0e0;
  font-size: 0.8rem;
  font-weight: 500;
  color: #666;
  background-color: #f9f9f9;
}

.post-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: #252b3a;
}

.post-description {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #404040;
  margin-bottom: 1.5rem;
}

.post-meta {
  font-size: 1rem;
  color: #7C7C7D;
  margin-bottom: 2rem;
}

.post-featured-image {
  margin-bottom: 2rem;
  border-radius: 8px;
  overflow: hidden;
}

.post-featured-image img {
  width: 100%;
  height: auto;
  display: block;
}

.post-content {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #333;
}

.post-content h2 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: #252b3a;
}

.post-content h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: #252b3a;
}

.post-content p {
  margin-bottom: 1.5rem;
}

.post-content ul,
.post-content ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.post-content li {
  margin-bottom: 0.5rem;
}

.post-content blockquote {
  border-left: 4px solid #e74c3c;
  padding-left: 1.5rem;
  margin-left: 0;
  margin-right: 0;
  font-style: italic;
  color: #555;
}

.post-content img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
  margin: 1.5rem 0;
}

.post-content .video-full-width {
  width: 100%;
  margin: 2rem 0;
}

/* Sidebar Column */
.sidebar-column {
  width: 300px;
}

.post-sidebar {
  position: sticky;
  top: 90px;
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  padding: 15px;
  border: 1px solid #D4D4D4;
}

.sidebar-heading {
  border-top: 5px solid black;
  font-family: 'Inter', sans-serif;
  text-align: center;
  padding: 15px;
}

/* Related Posts List */
.related-posts-list {
  display: flex;
  flex-direction: column;
}

.related-post-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px;
  border-top: 1px solid #D4D4D4;
}

.categories-module {
  padding: 15px;
}

.categories-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.categories-item {
  font-size: 1rem;
}

.categories-item a {
  text-decoration: none;
  color: #292a2c;
  transition: color 0.2s ease;
}

.categories-item a:hover {
  color: #EB4545;
  font-weight: bold;
}

.categories-item a.active {
  font-weight: bold;
  color: #EB4545;
}

#sidebar-banner {
  border-top: 1px solid #D4D4D4;
  padding: 15px 0;
}

.post-sidebar:only-child #sidebar-banner {
  border-top: none;
}


.related-post-image {
  flex: 0 0 100px;
  height: 70px;
  overflow: hidden;
  border-radius: 6px;
}

.related-post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.related-post-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.related-post-title {
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 5px 0;
  color: #252b3a;
}

.related-post-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.related-post-title a:hover {
  color: #EB4545;
}

.related-post-date {
  font-size: 0.85rem;
  color: #757575;
  margin-top: 5px;
}

/* Responsive Adjustments */
@media (max-width: 1399px) {
  .sidebar-column {
    display: none;
  }
}

@media (max-width: 1199px) {
  .post-layout {
    grid-template-columns: 50px 1fr 250px;
    gap: 20px;
  }

  .social-share {
    flex-direction: row;
    border-bottom: 1px solid #D4D4D4;
  }

  .social-icon:last-child {
    border-bottom: none;
  }

  .social-share-column {
    position: relative;
    top: 0;
  }
}

@media (max-width: 992px) {
  .post-layout {
    padding-top: 6rem;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .social-share-column {
    order: -1;
    flex: 0 0 auto;
    margin-bottom: 1rem;
  }

  .main-content-column {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .post-title {
    font-size: 2rem;
  }

  .social-share {
    flex-direction: row;
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .post-container {
    padding: 1.5rem 0;
  }

  .post-title {
    font-size: 1.8rem;
  }

  .post-content {
    font-size: 1rem;
  }

  .post-layout {
    padding-top: 4rem;
    grid-template-columns: 1fr;
  }

  .social-share-column {
    flex: 0 0 auto;
    max-width: 100%;
    margin-bottom: 1rem;
  }
}

.code-inline {
  word-wrap: break-word;
  overflow-wrap: break-word;
  white-space: pre-wrap;
  max-width: 100%;
  overflow: hidden;
}

.pixel-data-section-1 {
  position: relative;
  overflow: hidden;
  background-color: #343642;
}

.pixel-data-section-1::before,
.pixel-data-section-1::after {
  content: "";
  position: absolute;
  top: 0;
  width: 20%;
  height: 100%;
  background-image: url('https://assets.sprocketsecurity.com/PC-BG.webp');
  background-repeat: no-repeat;
  pointer-events: none;
  image-rendering: -webkit-optimize-contrast; /* Improve rendering quality */
}

.pixel-data-section-1::before {
  left: 0;
  mask-image: linear-gradient(to right, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 70%);
  -webkit-mask-image: linear-gradient(to right, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 70%);
}

.pixel-data-section-1::after {
  right: 0;
  mask-image: linear-gradient(to left, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 70%);
  -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 70%);
}

.pixel-data-section-2 {
  position: relative;
  overflow: hidden;
  background-color: #343642;
}

.pixel-data-section-2::before,
.pixel-data-section-2::after {
  content: "";
  position: absolute;
  top: -10px;
  width: 20%;
  height: 110%;
  background-image: url('https://assets.sprocketsecurity.com/PC-BG.webp');
  background-repeat: no-repeat;
  pointer-events: none;
  image-rendering: -webkit-optimize-contrast; /* Improve rendering quality */
}

.pixel-data-section-2::before {
  left: 0;
  transform: scaleX(-1);
  mask-image: linear-gradient(to left, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 70%);
  -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 70%);
}

.pixel-data-section-2::after {
  right: 0;
  transform: scaleX(-1);
  mask-image: linear-gradient(to right, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 70%);
  -webkit-mask-image: linear-gradient(to right, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 70%);
}

@media (max-width: 767px) {
  .pixel-data-section-1::before,
  .pixel-data-section-1::after,
  .pixel-data-section-2::before,
  .pixel-data-section-2::after {
    display: none;
  }
}

.lab-logos-section .block-columns-column img {
  padding: 20px;
  margin: 20px;
}

@media (min-width: 768px) {
  .block-columns-column img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
    margin: 0;
  }
}

.testing-important {
  background: linear-gradient(to left, rgba(0,0,0,0) 0%, rgba(235,69,69,0.25) 100%);
}

.wim {
  background: linear-gradient(to right, rgba(0,0,0,0) 0%, rgba(235,69,69,0.25) 100%);
  font-weight: 600;
  font-size: 24px;
}

.wim p {
  cursor: pointer;
  padding: 8px;
  margin: 0;
  transition: color 0.2s;
}

.wim p.active-item {
  font-weight: bold;
  color: #eb4545 !important;
}

.wim-content-container {
  position: relative;
  min-height: 100px;
}

.wim-content {
  font-size: 24px;
  opacity: 0;
  visibility: hidden;
  height: 0;
  overflow: hidden;
  transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out, transform 0.5s ease-in-out;
  transform: translateY(10px);
}

.wim-content.active {
  opacity: 1;
  visibility: visible;
  height: auto;
  overflow: visible;
}

@media (min-width: 576px) {
  .w-sm-100 {
    width: 100% !important;
  }
}

@media (min-width: 768px) {
  .w-md-35 {
    width: 35% !important;
  }

  .w-md-75 {
    width: 75% !important;
  }
}

.global-popup-banner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.global-popup-banner.is-active {
  opacity: 1;
}

.global-popup-banner__inner {
  position: relative;
  max-width: 90%;
  max-height: 90%;
}

.global-popup-banner__close {
  position: absolute;
  top: -15px;
  right: -15px;
  width: 30px;
  height: 30px;
  background-color: #fff;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.global-popup-banner__link {
  display: block;
}

.global-popup-banner__image {
  max-width: 100%;
  max-height: 80vh;
  height: auto;
  display: block;
  border-radius: 4px;
}

.sidebar-banner {
  margin-bottom: 2rem;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sidebar-banner__link {
  display: block;
}

.sidebar-banner__image {
  width: 100%;
  height: auto;
  display: block;
}

.related-content-icon {
  color: #b5241d;
  margin-right: 16px;
}

h1.display-4.custom-line-height {
  line-height: 1.25 !important;
}

.integration-list {
  max-width: 100%;
  padding: 0 1rem;
  box-sizing: border-box;
}

.integration-item {
  margin-bottom: 0.5rem;
  overflow: hidden;
  background-color: white;
}

.integration-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  background-color: #fff;
  max-width: 100%;
  box-sizing: border-box;
  height: 100px;
  overflow: hidden;
}

.toggle-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  margin-right: 1rem;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.toggle-icon {
  font-size: 1.5rem;
  line-height: 1;
  transition: transform 0.3s ease-in-out;
}

.integration-item.expanded .toggle-icon {
  transform: rotate(180deg);
}

.integration-title {
  flex: 1;
}

.integration-title h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
}

.category {
  font-size: 0.875rem;
  color: #64748b;
}

.integration-status {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 150px;
  box-sizing: border-box;
}

.integration-status img.integration-logo {
  max-height: 100%;
  max-width: 100%;
  width: 150px;
  object-fit: contain;
}

@media (max-width: 768px) {
  .integration-status img.integration-logo {
    max-width: 80%;
  }
}

@media (max-width: 576px) {
  .integration-header {
    flex-wrap: wrap;
    height: 150px !important;
  }

  .integration-title h3 {
    font-size: 0.875rem;
  }

  .category {
    font-size: 0.75rem;
  }

  .integration-status {
    height: 120px;
  }

  .integration-status img.integration-logo {
    max-width: 80%;
  }

  .integration-content {
    width: 90%;
    margin-left: 5%;
  }
}

.integration-status figure {
  margin-left: 15px;
}

.integration-logo {
  max-height: 100%;
  max-width: 250px !important;
  object-fit: contain;
}

span.coming-soon {
  font-size: 0.875rem;
  border-radius: 12px;
  background-color: #f5f5ff;
  padding: 5px;
}

.integration-item.coming-soon {
  margin-bottom: 5px;
}

.integration-list .integration-item .integration-status .integration-logo {
  object-fit: contain;
  max-height: 80px !important;
  max-width: 250px !important;
}

.integration-content {
  padding: 0;
  max-height: 0;
  overflow: hidden;
  width: 65%;
  margin-left: 12%;
  transition: all 0.3s ease-in-out;
}

.integration-item.expanded .integration-content {
  padding: 1rem;
  max-height: 500px;
}

.integration-content p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.5;
}

#cookie-banner {
  display: none;
  visibility: hidden;
}

/* Brand colors */
.brand-dark-red { color: #b5241d !important; }
.brand-red { color: #eb4545 !important; }
.brand-blue { color: #32c4e9 !important; }
.brand-light-blue { color: #81DCF3 !important;}
.brand-light-blue-bg { background-color: #81DCF3 !important; }
.actionable-asm-dark-blue-bg  { background-color: #172028 !important; }
.actionable-asm-whats-inside-bg {
  background: linear-gradient(90deg, #f2efe8 0%, #f2efe8 66.5%, #9aa094 66.5%, #9aa094 100%) !important;
}

/* Letter Spacing */
.subhead-letter-spacing { letter-spacing: 2.08px; }
.lg-letter-spacing { letter-spacing: 4.16px; }

.dropdown-menu-columns {
  display: none;
  flex-direction: column;
  background-color: #343642;
}

.dropdown-menu-columns.show {
  display: flex;
  justify-self: center;
}

.dropdown-menu-columns .dropdown-item {
  width: 100%;
  text-align: left;
  background-color: #212529;
  color: white;
  padding: 10px 20px;
  margin: 0;
  transition: background-color 0.3s ease;
}

@media (max-width: 576px) {
  .dropdown-menu-columns .dropdown-item {
    text-align: center;
  }
}

.dropdown-menu-columns .dropdown-item:first-child {
  border-radius: 10px 10px 0 0;
}

.dropdown-menu-columns .dropdown-item:last-child {
  border-radius: 0 0 10px 10px;
}

.dropdown-menu-columns .dropdown-item:hover {
  background-color: #0f1117;
}

.interactive-wrapper {
  transform-style: preserve-3d;
  transition: transform 0.3s ease-out;
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  height: auto;
  margin-bottom: 100px;
}

.interactive-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.overlay-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  transform-style: preserve-3d;
}

.overlay-item {
  position: relative;
  transition: all 0.3s ease;
  pointer-events: auto;
  transform-style: preserve-3d;
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  }
  50% {
    box-shadow: 0 0 10px 5px rgba(235, 69, 69, 1);
  }
}

.new-assets-dot {
  animation: pulse 1.5s infinite;
}

.new-assets-dot,
.feed-dot,
.origins-dot {
  position: absolute;
  width: 20px;
  height: 20px;
  background-color: #EB4545;
  border-radius: 50%;
  transform: translateZ(20px);
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}

.new-assets-dot {
  top: -2%;
  left: 5%;
}

.feed-dot {
  top: -2%;
  left: -4%;
}

.origins-dot {
  top: -2%;
  left: -4%;
}

.new-assets-dot:hover,
.feed-dot:hover,
.origins-dot:hover {
  animation: none;
  box-shadow: 0 0 10px 5px rgba(235, 69, 69, 1);
}

.tooltip {
  position: absolute;
  top: -125px;
  left: 50%;
  transform: translateX(-50%) translateY(10px) translateZ(100px);
  width: 250px;
  text-align: center;
  background-color: #1a1a1e;
  color: #FFFFFF;
  padding: 10px;
  border-radius: 8px;
  font-size: 14px;
  opacity: 0;
  transition: all 0.3s ease;
  pointer-events: none;
  z-index: 20;
}

.tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -10px;
  border-width: 10px;
  border-style: solid;
  border-color: #1a1a1e transparent transparent transparent;
}

.new-assets-dot:hover .tooltip,
.feed-dot:hover .tooltip,
.origins-dot:hover .tooltip {
  opacity: 1;
  transform: translateX(-50%) translateY(0) translateZ(100px);
}

.new-assets-overlay,
.feed-overlay,
.origins-overlay {
  transform: translateZ(40px);
}

.new-assets-overlay {
  top: 27%;
  left: 23%;
  width: 140px;
}

.feed-overlay {
  top: 6%;
  left: 69%;
  width: 240px;
}

.origins-overlay {
  top: -23%;
  left: 47%;
  width: 220px;
}

.new-assets-overlay img,
.feed-overlay img,
.origins-overlay img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.3)) brightness(1.1);
  transition: all 0.3s ease;
  transform-style: preserve-3d;
}

.new-assets-overlay:hover img,
.feed-overlay:hover img,
.origins-overlay:hover img {
  transform: translateZ(20px);
}

.new-assets-overlay:hover img {
  transform: translateZ(20px) scale(1.1);
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.4)) brightness(1.2);
}

.asm-alt-image {
  display: none;
  width: 100%;
  height: auto;
}

@media (max-width: 1200px) {
  .interactive-container {
    display: none;
  }
  .interactive-wrapper {
    display: none;
  }
  .interactive-image {
    display: none;
  }
  .asm-alt-image {
    display: flex;
  }
}

.icon-x path,
.icon-x-footer path {
  transition: fill 0.3s;
}

.icon-x:hover path {
  fill: #0d6efd;
}

.icon-x-footer:hover path {
  fill: #32c4e9;
}

.asm-content-why-choose .block-columns-column-container {
  display: flex;
  flex-wrap: wrap;
}

.asm-content-why-choose .block-columns-column:nth-child(1),
.asm-content-why-choose .block-columns-column:nth-child(2) {
  width: 50%;
  flex: 0 0 65%;
}

.asm-content-why-choose .block-columns-column:nth-child(3) {
  width: 50%;
  flex: 0 0 35%;
}

.asm-content-why-choose .block-columns-column:nth-child(1) {
  margin-bottom: 20px;
}

.asm-content-why-choose .block-columns-column:nth-child(2) {
  overflow: hidden;
  align-self: flex-end;
}

.asm-section {
  counter-reset: my-counter-name;
  padding-left: 20px;
}

.asm-section .asm-bold {
  color: #EB4545;
  font-family: Roboto;
  font-size: 17.6px;
  font-weight: 900;
  line-height: 28px;
}

.asm-section li {
  list-style-type: none;
  padding-left: 35px;
  position: relative;
  font-size: 16px;
  line-height: 20px;
  counter-increment: my-counter-name;
  margin-top: 30px;
}

.asm-section li::before {
  content: '';
  display: block;
  height: 40px;
  width: 40px;
  border-radius: 30%;
  position: absolute;
  left: -27px;
  top: -33px;
  border: 2px solid #eb4545;
  z-index: -1;
}

.asm-section li::after {
  content: counter(my-counter-name);
  position: absolute;
  left: -14px;
  top: -23px;
  font-size: 20px;
  font-weight: bold;
  color: black;
}

.asm-p {
  margin: 0;
  padding-left: 10px;
  position: relative;
  top: -40px;
  color: black !important;
}

@media (max-width: 991px) {
  .asm-content-why-choose .block-columns-column:nth-child(1),
  .asm-content-why-choose .block-columns-column:nth-child(2),
  .asm-content-why-choose .block-columns-column:nth-child(3) {
    width: 100%;
    flex: 0 0 100%;
    margin-top: 0;
  }

  .asm-content-why-choose .block-columns-column:nth-child(3) {
    margin-top: 30px;
  }

  .asm-content-why-choose .col-count-3 > *,
  .asm-content-why-choose .col-count-4 > * {
    flex: initial !important;
    flex-grow: initial !important;
  }
}

.asm-content-watch-demo {
  padding: 60px 0;
}

.asm-content-watch-demo .block-columns-column-container {
  display: grid !important;
  grid-template-areas:
    "title title"
    "video content";
  grid-template-columns: 1fr 1fr;
  grid-gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
}

.asm-content-watch-demo .block-columns-column:nth-child(1) {
  grid-area: title;
  text-align: center;
}

.asm-content-watch-demo .block-columns-column:nth-child(2) {
  grid-area: video;
}

.asm-content-watch-demo .block-columns-column:nth-child(3) {
  grid-area: content;
}

.asm-content-watch-demo .block-columns-column:nth-child(2) iframe {
  width: 100%;
  height: 100%;
  min-height: 315px;
}

.demo-content {
  text-align: left;
}

.asm-check-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.asm-check-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 20px;
  line-height: 1.5;
}

.asm-check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: black;
  font-weight: bold;
}

.asm-download-btn {
  display: inline-block;
  background-color: #eb4545;
  color: white;
  padding: 12px 24px;
  border-radius: 16px;
  text-decoration: none;
  font-weight: 400;
  transition: background-color 0.3s ease;
}

.asm-download-btn:hover {
  background-color: #d63030;
  color: white;
  text-decoration: none;
}

@media (max-width: 991px) {
  .asm-content-watch-demo .block-columns-column-container {
    grid-template-areas:
      "title"
      "video"
      "content";
    grid-template-columns: 1fr;
    justify-items: center;
  }
}

@media (max-width: 575px) {
  .asm-download-btn {
    width: 100%;
    text-align: center;
  }
}

.resources-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 100px;
}

.resources {
  padding: 75px;
}

.resources__title {
  font-family: 'Poppins', sans-serif;
  font-size: 51px;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.resources__subtitle {
  color: #666;
  margin-bottom: 2rem;
}

.resources__grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
}

.resource-card {
  position: relative;
  border-radius: 1rem;
  padding: 1.5rem;
  text-decoration: none;
  overflow: hidden;
  transition: transform 0.2s ease-in-out, color 0.2s ease-in-out;
  height: 180px;
  display: flex;
  color: white;
}

.resource-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 1rem;
  background: inherit;
  z-index: 1;
  opacity: 0.25;
  transition: opacity 0.2s ease-in-out;
}

.resource-card:hover::before {
  opacity: 0;
}

.resource-card__content {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  flex: 1;
  transform: translateY(-4px);

}

.resource-card--teal .resource-card__content,
.resource-card--red .resource-card__content {
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
}

.resource-card__title {
  font-size: 2rem;
  font-weight: 600;
  color: white;
  margin: 0;
}

.resource-card__icon svg {
  width: 100px;
  height: 100px;
  color: white;
  transition: color 0.8s ease, transform 0.2s ease;
}

.resource-card--teal {
  grid-column: span 4;
  background: linear-gradient(270deg, rgba(56, 131, 162, 0.20) 0%, rgba(32, 74, 91, 0.76) 38%, rgba(26, 61, 75, 0.88) 51.5%, #15313C 70.5%);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.15);
  height: 250px;
}

.resource-card--teal:hover {
  transform: translateY(-4px);
}

.resource-card--burgundy,
.resource-card--burgundy-2 {
  grid-column: span 2;
  background: linear-gradient(180deg, #421414 28%, rgba(110, 32, 32, 0.20) 100%);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.15);
  height: 400px;
}

.resource-card--burgundy:hover,
.resource-card--burgundy-2:hover {
  transform: translateY(-4px);
}

.resource-card--navy,
.resource-card--navy-2 {
  grid-column: span 2;
  background: linear-gradient(180deg, #3D516C 29%, rgba(119, 157, 210, 0.20) 100%);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.15);
  height: 400px;
  margin-top: -150px;
}

.resource-card--navy:hover,
.resource-card--navy-2:hover {
  transform: translateY(-4px);
}

.resource-card--red {
  grid-column: span 4;
  background: linear-gradient(270deg, rgba(231, 67, 67, 0.20) 0%, rgba(137, 34, 34, 0.85) 48.5%, #741B1B 67%);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.15);
  height: 250px;
}

.resource-card--red:hover {
  transform: translateY(-4px);
}

@media (max-width: 1024px) {
  .resources__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .resource-card--teal,
  .resource-card--burgundy,
  .resource-card--burgundy-2,
  .resource-card--red,
  .resource-card--navy,
  .resource-card--navy-2 {
    grid-column: span 2;
    height: 200px;
  }

  .resource-card--navy,
  .resource-card--navy-2 {
    margin-top: 0;
  }
}

@media (max-width: 575px) {
  .resources-container {
    margin-top: 0;
  }

  .resources {
    margin: 75px 10px 75px 10px;
    padding: 0;
  }
}

@media (max-width: 480px) {
  .resources__grid {
    grid-template-columns: 1fr;
  }

  .resource-card {
    grid-column: span 1 !important;
  }
}

.no-scroll-animation [data-sal] {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

/* Partners Page */
.gear-bg-hero.partners-section {
  padding-top: 175px;
}
#hero-form-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  color: white;
  gap: 5vw;
  padding: 0;
}
#hero-form-container .left-column {
  width: 50%;
}
#hero-form-container .with-form-title {
  color: white;
  font-size: 4.4rem;
}
#hero-form-container .with-form-subtitle {
  color: white;
  font-size: 4.4rem;
  font-weight: semibold;
}
#hero-form-container .with-form-content {
  padding: 40px 0 40px 0;
  color: white;
  font-family: 'Roboto', sans-serif;
  line-height: 1.8;
}
#hero-form-container .right-column {
  width: 45%;
  padding: 0;
}
.text-gray {
  color: #4d5861;
  max-width: 800px;
}
.key-benefits-container-1 {
  padding: 200px 200px 0 200px;
}
.key-benefits-container-2 {
  padding: 20px 200px 200px 200px;
}
@media (max-width: 991px) {
  .key-benefits-container-1 .container .block-columns-column-container,
  .key-benefits-container-2 .container .block-columns-column-container {
    display: flex;
    flex-direction: column;
  }
  .key-benefits-container-1 {
    padding: 200px 0 0 0;
  }
  .key-benefits-container-2 {
    padding: 20px 0 200px 0;
  }
}
@media (max-width: 767px) {
  .key-benefits-container-1 {
    padding: 100px 0 0 0;
  }
  .key-benefits-container-2 {
    padding: 20px 0 100px 0;
  }
}
@media (max-width: 768px) {
  #hero-form-container {
    flex-direction: column;
    margin-bottom: 0;
  }
  #hero-form-container .left-column,
  #hero-form-container .right-column {
    width: 100%;
  }
  #hero-form-container .right-column {
    width: 100vw;
    margin-left: -50vw;
    left: 50%;
    position: relative;
    padding: 0;
  }
}
@media (max-width: 575px) {
  #hero-form-container .right-column {
    width: 100vw;
    margin-left: -50vw;
    left: 50%;
    position: relative;
    padding: 0;
    justify-items: center;
    border-radius: 0 !important;
  }
  #hero-form-container .with-form-title,
  #hero-form-container .with-form-subtitle {
    font-size: 3.5rem;
  }
  .gear-bg-hero.partners-section {
    padding-top: 125px;
  }
}

.partner-cards-container {
  text-align: center;
}

.section-title {
  text-align: center;
}

.cards-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.card-container {
  perspective: 1000px;
  margin: 10px;
  }

.partner-card {
  width: 324px;
  height: 324px;
  position: relative;
  border-radius: 10px;
  color: #243543;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.6s;
  transform-style: preserve-3d;
}

.card-container.flipped .partner-card {
  transform: rotateY(180deg);
}

.gradient-background {
  background:
    linear-gradient(
      to bottom,
      rgba(255, 255, 255, 1) 0%,
      rgba(235, 69, 69, 0.4) 50%,
      rgba(0, 0, 0, 1) 100%
    ),
    rgba(245, 248, 250, 0.7);
  background-blend-mode: lighten;
}

.partner-card-front, .partner-card-back {
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
  padding: 10px;
}

.partner-card-front svg {
  margin-bottom: 10px;
}

.partner-card-front p, .partner-card-back p {
  max-width: 90%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  word-wrap: break-word;
  text-align: justify;
  text-align-last: center;
}

.partner-card-front p {
  font-size: 1em;
}

.partner-card-back p {
  font-size: 0.9em;
}

.partner-card-front {
  z-index: 2;
}

.partner-card-back {
  transform: rotateY(180deg);
  background-color: #fff;
  border-radius: 10px;
}

.details-button, .back-button {
  margin-top: 10px;
  padding: 5px 10px;
  border: none;
  background-color: #EB4545;
  color: #fff;
  cursor: pointer;
  border-radius: 5px;
  text-transform: uppercase;
  font-weight: bold;
  transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out, border-color 0.3s ease-in-out;
}

.details-button:hover {
  background-color: #d43d3d;
}

.back-button {
  border: 2px solid #EB4545;
  background-color: transparent;
  color: #EB4545;
}

.back-button i {
  color: #EB4545;
}

.back-button:hover {
  background-color: rgba(235, 69, 69, 0.1);
}

@media (max-width: 991px) {
  .cards-container {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 576px) {
  .partner-card {
    width: 275px;
    height: 275px;
  }

  .partner-card-front p, .partner-card-back p {
    font-size: 85%;
  }

  .details-button, .back-button {
    font-size: 85%;
    padding: 4px 8px;
  }
}

.nav-link.dropdown-toggle.btn.bg-primary.btn-outline-primary.btn-outline-primary:hover{ background-color: transparent !important; }
.block-columns.hero-center p {
  margin-left: auto;
  margin-right: auto;
}
.block-columns.center-img figure img{
  margin: 0 auto;
  display: block;
  max-width:900px;
}
.block-columns.cta-cols{
  padding: 4vh 0;
}
.block-columns.cta-cols p,
.block-columns.text-dark .block-columns-column-container.col-count-2 p:not(.subhead){ max-width: 9999px;}
.block-columns.cta-cols h2{
  font-size: 20px;
}
.block-columns.cta-cols .flex-66{
  flex:75%;
}
.block-columns.cta-cols .block-columns-column .icon-style-small svg {
  margin-right: 14px;
}
.content .block-columns a:not(.btn):last-child:after, .content .block-columns a:not(.btn):nth-last-child(2):after {
  content: '';
}
.text-cta:after{  content: '\2192' !important; }

/* Hubspot Form - Full Section styling */
@media (min-width: 769px) {
  .form-block-form:has(.full-form-container) {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .full-form.p-section {
    padding: 0;
  }

  .full-form .container {
    max-width: 100%;
    padding: 0;
  }

  .rouded-3 {
    border-radius: 0;
  }

  .form-block-form:has(.full-form-container) {
    width: 100%;
  }

  .full-form-container {
    max-height: none;
    height: auto;
    overflow-y: visible;
  }
}

@media (max-width: 575px) {
  .full-form .form-container {
    margin: auto 0 auto 0;
  }

  .form-block-form:has(.full-form-container) {
    width: 100%;
  }

  .full-form-container {
    max-height: none;
    height: auto;
    overflow-y: visible;
  }
}

/* Home page logos */
.block-columns.logos-section.p-section {
  padding: 3vh;
}
.logos-section .block-columns-column img {
  max-width: 180px;
  max-height: 80px;
  padding: 0;
  margin: 0;
}
@media (max-width: 1399px) {
  .logos-section .block-columns-column img {
    max-width: 150px;
    max-height: 70px;
  }
}

/*** Styles for AOTB Landing Page ***/
h2.wyl {
  border-radius: 25px;
  border: 2px solid #f11102;
  height: 190px;
  padding: 30px 40px;
  max-width: min-content;
  margin-left: 35%;
  margin-right: auto;
/*  width: 200px;*/

  @media (max-width:991px){
    margin-left: 5%;
  }
}

.gear-bg-hero.aotb::before {
  content: url(https://assets.sprocketsecurity.com/BG.webp);
  display: none;
}

.gear-bg-hero.aotb {
  background-image: url(https://assets.sprocketsecurity.com/BG.webp);
  padding-top: 150px;
  background-size: cover;
  background-repeat: no-repeat;
  text-align: center;
}

h1.display-4.mastering {
  color: red;
  margin-top: 20px;
}

h3.sharpen, p.gain{
  color: white;
}

p.left-line {
  margin: 8px;
  overflow: hidden;
  color: white;
  text-align: left;
  line-height: 1.6em;
  &:before {
    display: block;
    float: left;
    margin-top: 0.8em;
    border-top: 2px solid red;
    width: 30%;
    content: "";
  }
}

p.left-line span {
  padding-left: 15px;
}

/* Layout for the AOB episode collection */
.episodes .episode-container {
  display: grid !important;
  grid-gap: 16px;
  grid-template-columns: repeat(5, 1fr);
}

@media (min-width: 1024px) {
  .episodes .episode-container.episode-count-6,
  .episodes .episode-container.episode-count-10 {
    grid-template-columns: repeat(3, 1fr);
  }

  .episodes .episode-container.episode-count-7 {
    grid-template-columns: repeat(4, 1fr);
  }

  .episodes .episode-container.episode-count-8,
  .episodes .episode-container.episode-count-9 {
    grid-template-columns: repeat(4, 1fr);
  }

  .episodes .episode-container.episode-count-7 {
    grid-template-columns: repeat(4, 1fr);
  }

  .episodes .episode-container.episode-count-8 {
    grid-template-columns: repeat(4, 1fr);
  }

  .episodes .episode-container.episode-count-9 {
    grid-template-columns: repeat(5, 1fr);
  }

  .episodes .episode-container.episode-count-many {
    grid-template-columns: repeat(5, 1fr);
  }
}

/* Tablet and smaller screens */
@media (max-width: 1023px) {
  .episodes .episode-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile screens */
@media (max-width: 767px) {
  .episodes .episode-container {
    grid-template-columns: 1fr;
  }
}

.block-form.formRight.bg-light.text-dark.hubspot-1 {
  background-image: url(https://assets.sprocketsecurity.io/uploads/BG.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-color: #ff1302 !important;
  position: static;

  .container-default{
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .sal.d-flex.flex-row-reverse-mobile.align-items-center.sal-animate {
    display: flex;
    justify-content: center;
  }
  &.p-section {
    padding: 5vh 4vh 0 0;
    @media (max-width:576px){
      padding: 8vh 0 0 0;
    }
  }
}

.block-columns.equal.bg-darkest.text-white.p-section.wyl-content {
  &.p-section {
    padding: 3vh 12vh 3vh 0;
  }
}

.company-guests {
  background: linear-gradient(9deg, rgb(0, 0, 0) 10.6%, rgb(255, 0, 0) 98%);
}

.block-columns.equal.bg-darkest.text-white.p-section.wyl-content div div:nth-child(2) {
  position: fixed;
  left: 631px;
  width: 580px;
  top: 7px;
  @media (max-width:1399px){
    left: 563px;
  }
  @media (max-width:1199px){
    left: 500px;
  }
  @media (max-width:991px){
    left: 207px;
  }
  @media (max-width:768px){
    left: 167px;
  }
}

.hubspot-1 > .p-4.p-md-5.rounded-3.light-form.form-container.sal.sal-animate {
  background-color: rgba(0, 0, 0, 0);
}

form#hsForm_fd92f623-ccfc-434a-8d60-277cb117563a fieldset div label,
form#hsForm_1c2d1ccb-e19e-4c5c-a98d-1b5bd25d7c22 fieldset div label {
  color: white !important;
}

.hubspot-1 div div div div.p-4.p-md-5.rounded-3.light-form.form-container.sal.sal-animate {
  background-color: rgba(0, 0, 0, 0);
  width: 800px;
  @media (max-width:768px){
    width: 100%;
  }
}

.hubspot-2 .container .sal.d-flex .block-columns-column div div.p-4.p-md-5.dark-form {
  background-color: rgba(0, 0, 0, 0) !important;
  width: 800px;
  @media (max-width:768px){
    width: 100%;
  }
}

.hubspot-2 div .sal.d-flex.flex-row-reverse-mobile.align-items-start.sal-animate {
  display: flex;
  justify-content: center;
}

.hubspot-2.p-section {
  padding: 2vh 0 2vh 0;
}

h2.guests {
  left: 300px;
  position: relative;
  margin-bottom: 35px;
  @media (max-width:1399px){
    left: 180px;
  }

  @media (max-width:991px){
    left: 10px;
  }
  @media (max-width:768px){
    left: 0px;
  }
}

ol.alternating-colors {
  counter-reset: my-counter-name;
}

ol.alternating-colors li {
  padding-left: 35px;
  margin-top: 24px;
  position: relative;
  font-size: 16px;
  line-height: 20px;
  counter-increment: my-counter-name;
  border: solid 2px red;
  border-radius: 20px;
  padding-top: 30px;
  strong {
    color: white;
    padding-left: 10px;
    position: relative;
    top: -10px;
  }
  p {
    padding-left: 10px;
    position: relative;
    top: -10px;
  }
}

ol.alternating-colors li::marker {
  content: counter(my-counter-name);
  font-size: 20px;
  font-weight: bolder;
}

ol.alternating-colors li:before {
  content: '';
  display: block;
  height: 42px;
  width: 42px;
  border-radius: 30%;
  position: absolute;
  left: -27px;
  top: 20px;
  background-color: red;
  z-index: -100;
}

.block-columns.equal.bg-lightest.text-dark.p-section.about-host {
  background: rgb(241,0,0);
  background: linear-gradient(16deg, rgba(241,0,0,0.9094231442577031) -35%, rgba(0,0,0,0.89) 53%, rgba(241,0,0,1) 141%);
  h2 {
    color: white;
    &.about-host-header {
      color: #eb4545;
    }
  }
}

.about-host.p-section {
  padding: 0;
}

.about-host .container.container-default .sal.block-columns-column-container .block-columns-column.px-4:nth-child(2) {
    margin-top: 75px;
    p {
      color: white;
    }
  }

ul.subscribe {
  list-style: none;
  li {
    line-height: 70px;
    border-top: 2px solid red;
    &:nth-child(4) {
      border-bottom: 2px solid red;
    }
  }
}

ul.subscribe li:before {
  content: "\25BA";
  float: left;
  color: red;
  display: inline;
  width: 165px;
}

@media (max-width:1199px){
  ul.subscribe li:before {
    width: 85px;
  }
}

@media (max-width:999px){
  ul.subscribe {
    width: 330px;
  }
  ul.subscribe li:before {
    width: 20px;
  }
}

@media (max-width:768px){
  ul.subscribe {
    width: 100%;
  }
  ul.subscribe li:before {
    width: 20px;
  }
}

ul.subscribe li:after {
  content: "\25C0";
  float: right;
  color: red;
}

.why-security .container.container-default .block-columns-column-container .block-columns-column:nth-child(2) {
  background-color: #343642;
  padding:  37px;
  height: 530px;
  border-radius: 10px;

}

h2.subscribe-for {
  margin-bottom: 30px;
}

.block-columns.equal.bg-dark.text-white.p-section.episodes p {
  color: white;
}

img.ahead-img {
  width: 50%;
}

.circle_bg {
  float: left;
  margin-left: 125px;
  margin-top: 12px;
  border-radius: 50%;
  background-color: #eb4545;
}

/* Expert tips module */

.expert-tips-module {
  margin: 0 auto;
}

.expert-details-container {
  display: flex;
  background:
    linear-gradient(to top, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0) 20%),
    linear-gradient(to right, #FAFAFA, #E4E4E4 100%);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  gap: 20px;
  height: 232px;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.expert-picture {
  width: 242px;
  height: 210px;
  object-fit: contain;
  filter: brightness(1.2) contrast(1.2) saturate(1.2) grayscale(0.8);
}

.expert-details {
  flex: 1;
  align-content: center;
  max-width: 465px;
}

.expert-details .expert-heading {
  font-family: 'Poppins', sans-serif;
  font-size: 2.625rem;
  font-weight: 600;
  color: #252B3A;
}

.expert-details .expert {
  font-family: 'Roboto', sans-serif;
  font-size: 0.938rem;
  font-weight: 700;
  color: #333333;
  margin-bottom: 15px;
}

.expert-details .expert-bio {
  font-size: 1.063rem;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  color: #333333;
  margin: 0;
  padding: 0 10px 10px 0;
  line-height: normal;
}

.expert-tips {
  margin-left: 70px;
  position: relative;
  padding-top: 40px;
}

.expert-tips ul {
  padding: 0;
  margin: 0;
  list-style: disc;
  position: relative;
}

.expert-tips li {
  font-family: 'Poppins', sans-serif;
  font-size: 1.24rem;
  font-weight: 600;
  color: #252B3A;
  position: relative;
  margin-bottom: 0 !important;
}

.expert-tip {
  position: relative;
  padding: 0 0 24px 0;
}

.expert-tips .expert-tip:not(:last-child)::after {
  content: '';
  position: absolute;
  left: -19px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: repeating-linear-gradient(to bottom, #B3B3B3 0px, #B3B3B3 4px, transparent 4px, transparent 8px);
  z-index: -1;
}

.expert-tips li::after {
  content: '';
  position: absolute;
  left: -19px;
  width: 3px;
  background: repeating-linear-gradient(
    to bottom,
    #B3B3B3 0px,
    #B3B3B3 4px,
    transparent 4px,
    transparent 8px
  );
}

.expert-tips .expert-tip:first-child li::after {
  height: 16px;
  bottom: 100%;
}

.expert-tips .expert-top:first-child li::before {
  border: 2px dashed #252B3A;
}

.border-bottom {
  bottom: 54px;
  width: 10%;
  height: 4px;
  background-color: #E52D24;
}

.expert-tip p {
  font-size: 14px;
  line-height: 1.6;
  color: #666666;
  margin: 10px 0 0 0;
}

.expert-tips::before {
  content: '';
  position: absolute;
  left: -19px;
  top: 23px;
  width: 323px;
  height: 0px;
  border-bottom: 3px dashed #B3B3B3;
}

.expert-tips::after {
  content: '';
  position: absolute;
  left: 293px;
  top: 8px;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 12px solid #B3B3B3;
}

.expert-tips li:last-child::after {
  display: none;
}

/* Media queries for the experts tips module */
@media (max-width: 1199px) {
  .expert-tips-module .expert-details-container {
    width: 100%;
  }

  .expert-tips-module .expert-details .expert-heading {
    font-size: 2.1rem;
  }

  .expert-tips-module .expert-details .expert {
    font-size: 0.7504rem;
  }

  .expert-tips-module .expert-details .expert-bio {
    font-size: 0.8504rem;
  }

  .expert-tips-module .expert-tips::before {
    width: calc(22vw + 20px);
  }

  .expert-tips-module .expert-tips::after {
    left: calc(19vw + 26px);
  }
}

@media (max-width: 1100px) {
  .expert-tips-module .expert-tips::before {
    width: calc(23vw + 23px);
  }

  .expert-tips-module .expert-tips::after {
    left: calc(20vw + 26px);
  }
}

@media (max-width: 991px) {
  .expert-tips-module .expert-tips::before {
    width: calc(29vw + 17px);
  }

  .expert-tips-module .expert-tips::after {
    left: calc(25vw + 26px);
  }
}

@media (max-width: 925px) {
  .expert-tips-module .expert-tips::before {
    width: calc(31vw + 18px);
  }

  .expert-tips-module .expert-tips::after {
    left: calc(27vw + 25px);
  }
}

@media (max-width: 850px) {
  .expert-tips-module .expert-tips::before {
    width: calc(34vw + 21px);
  }

  .expert-tips-module .expert-tips::after {
    left: calc(30vw + 25px);
  }
}

@media (max-width: 768px) {
  .expert-tips-module .expert-details-container {
    flex-direction: column;
    align-items: center;
    height: auto;
  }

  .expert-tips-module .expert-picture {
    width: 342px;
    height: 310px;
    object-fit: contain;
  }

  .expert-tips-module .expert-details {
    text-align: center;
    margin-bottom: 20px;
  }

  .expect-tips-module .expert-tips {
    margin-left: 50px;
  }

  .expert-tips-module .expert-tips::before {
    width: calc(21vw + 25px);
  }

  .expert-tips-module .expert-tips::after {
    left: calc(17vw + 25px);
  }
}

@media (max-width: 650px) {
  .expert-tips-module .expert-tips::before {
    width: calc(24vw + 27px);
  }

  .expert-tips-module .expert-tips::after {
    left: calc(20vw + 23px);
  }
}

@media (max-width: 575px) {
  .expert-tips-module .expert-tips::before {
    width: calc(31vw + 24px);
  }

  .expert-tips-module .expert-tips::after {
    left: calc(26vw + 23px);
  }
}

@media (max-width: 500px) {
  .expert-tips-module .expert-tips::before {
    width: calc(27vw + 28px);
  }

  .expert-tips-module .expert-tips::after {
    left: calc(22vw + 23px);
  }
}

@media (max-width: 450px) {
  .expert-tips-module .expert-tips::before {
    width: calc(25vw + 25px);
  }

  .expert-tips-module .expert-tips::after {
    left: calc(19vw + 22px);
  }
}

@media (max-width: 320px) {
  .expert-tips-module .expert-picture {
    width: 242px;
    height: 210px;
    object-fit: contain;
    filter: grayscale(100%);
  }

  .expert-tips-module .expert-tips::before {
    width: calc(17vw + 24px);
  }

  .expert-tips-module .expert-tips::after {
    left: calc(8vw + 23px);
  }
}

/* VOPT styles */

.gear-bg-hero.vopt {
  padding-top: 175px;
}

.vopt-h2 {
  color: white;
  font-size: 90px;
}

.report-h4 {
  color: #eb4545;
  font-weight: 600;
  font-size: 30px;
}

div.inside-report .top-div:before {
  content: "\25BA";
  float: left;
  color: red;
  display: inline;
  width: 60px;
  margin-top: 50px;
}

div.inside-report .top-div:after {
  content: "\25C0";
  float: right;
  color: red;
  display: inline;
  margin-top: -90px;
}

.sub-div {
  border: solid 2px red;
  margin: 20px;
  border-radius: 0.3rem;
}

p.report-p {
  margin: 5px 0 0 38px;
  padding: 0 0 15px 0;
}

.inside-report-h4, h4.inside-report-h4 {
  color: #eb4545;
  font-weight: bold;
  font-size: 20px;
  padding: 15px 0px 0 0;
}

ol.wyl-section {
  counter-reset: my-counter-name;
}

ol.wyl-section li {
  padding-left: 35px;
  position: relative;
  font-size: 16px;
  line-height: 20px;
  counter-increment: my-counter-name;
  margin-top: 30px;
  color: white;
  strong {
    color: white;
    padding-left: 10px;
    position: relative;
    top: -10px;
  }
  p {
    padding-left: 10px;
    position: relative;
    top: -10px;
  }
  p.wyl-p {
    top: -40px;
    color: white !important;
  }
}

ol.wyl-section li::marker {
  content: counter(my-counter-name);
  font-size: 20px;
  font-weight: bolder;
  color: white;
}

ol.wyl-section li:before {
  content: '';
  display: block;
  height: 40px;
  width: 40px;
  border-radius: 30%;
  position: absolute;
  left: -27px;
  top: -8px;
  border: 2px solid #eb4545;
  z-index: -100;
}

h2.wyl-vopt {
  border-radius: 25px;
  border: 2px solid #f11102;
  height: 460px;
  padding: 160px 95px;
  max-width: min-content;
  margin-left: 35%;
  margin-right: auto;
  color: white;
  margin-top: 27px;
  font-size: 45px;
}

span.left-line {
  margin: 8px;
  overflow: hidden;
  color: white;
  text-align: left;
  line-height: 1.6em;
  position: relative;
  left: -183px;
  margin-left: -120px;
  &:before {
    display: block;
    float: left;
    margin-top: 0.8em;
    border-top: 2px solid red;
    width: 24%;
    content: "";
  }
}

img.vopt-img {
  border-radius: 18rem;
  height: 300px;
  margin-top: -25px;
}

h2.inside-report-h4 {
  color: #eb4545;
  margin-top: 40px;
}

.img-wrapper {
  max-height: 495px;
  overflow: hidden;
  top: -60px;
  position: relative;
}

img.vopt-cover-img {
  height: 500px;
  width: 445px;
}

.vopt-download {
  padding: 14px 55px;
  font-size: 20px;
  font-weight: 500;
  margin-top: 15px;
}

h2.inside-the-report {
  max-width: 100%;
  text-align: center;
}

.block-columns.equal.bg-darkest.text-white.p-section.vopt-about-us {
  margin-bottom: -17vh;
}

@media (max-width:1399px){
  span.left-line {
    left: -118px;
    &:before {
      width: 12%;
    }
  }
  h2.wyl-vopt {
    height: 495px;
    margin-top: 20px;
  }
}

@media (max-width:1199px){
  div.inside-report .top-div:nth-child:after {
    margin-top: -120px;
  }
  div.inside-report .top-div:nth-child(4):after {
    margin-top: -100px;
  }
  div.inside-report .top-div:before {
    margin-top: 55px;
  }

  span.left-line {
    left: -116px;
    &:before {
      width: 15%;
    }
  }
}

@media (max-width:991px){
  .vopt-h2 {
    font-size: 60px;
  }

  .report-h4 {
    font-size: 20px;
  }

  div.inside-report .top-div:after {
    margin-top: -130px;
  }
  div.inside-report .top-div:nth-child(4):after {
    margin-top: -130px;
  }
  div.inside-report .top-div:before {
    margin-top: 80px;
  }

  span.left-line {
    left: -115px;
    &:before {
      width: 22%;
    }
  }

  h2.wyl-vopt {
    height: 640px;
    margin-top: 20px;
    padding: 225px 30px;
  }

  img.vopt-cover-img {
    height: 100%;
    width: 100%;
  }
}

@media (max-width:768px){
  .vopt-h2 {
    font-size: 50px;
  }

  .report-h4 {
    font-size: 18px;
  }

  div.inside-report .top-div:after {
    margin-top: -125px;
  }
  div.inside-report .top-div:nth-child(4):after {
    margin-top: -175px;
  }

  span.left-line {
    display: none;
  }

  h2.wyl-vopt {
    max-width: 500px;
    margin-left: 0;
    height: 0;
    padding: 15px 0 50px 0;
    font-size: 30px;
  }

  img.vopt-cover-img {
    height: 80%;
    width: 80%;
  }
}

@media (min-width: 320px) {
  h2.wyl-vopt {
    font-size: 25px;
  }
}

.block-columns.equal.bg-dark.text-white.p-section.tos-column {
  margin-top: -165px;
}

.quote-area {
  background-color: #161414;
}

.block-columns.equal.bg-dark.text-white.p-section.episodes {
  h2.aob-episode-collection {
    text-align: center;
    max-width: 100%;
    color: #eb4545;
  }

  h4.episode-collection-h4 {
    color: #eb4545;
    font-weight: 700;
  }

  p.episode-collection-p {
    font-weight: 700;
  }
}

.block-columns.equal.bg-lightest.text-dark.p-section.gear-bg-hero p.vopt-cover-p {
  color: white;
}

h2.download-report {
  max-width: 100%;
  text-align: center;
  padding-top: 60px;
}

.video-full-width iframe {
  width: 100% !important;
  height: 340px;
}

/* Free ASM Styles */

.asm-container {
  display: flex;
  align-items: center;
  justify-content: center;
}

.block-columns.equal.bg-lightest.text-dark.p-section.about-host {
  background: rgb(241,0,0);
  background: linear-gradient(16deg, rgba(241,0,0,0.9094231442577031) -35%, rgba(0,0,0,0.89) 53%, rgba(241,0,0,1) 141%);
  h2 {
    color: white;
    &.about-host-header {
      color: #eb4545;
    }
  }
}

/* Related ASM Content */
.asm-related-content-container {
  align-items: center;
}
.asm-related-content-container .post-meta {
  margin-top: 15px;
  font-weight: 500;
}
.asm-related-content-container .post-meta svg {
  color: #eb4545;
  margin-right: 15px;
}
.asm-related-content-container .related-contant .flex-45 .related-content p {
  margin-left: 45px;
}
.flex-45 h3,
.flex-45 p,
.flex-55 h3,
.flex-55 p {
  margin-left: 45px;
}
.related-asm-content-query .flex-45 {
  display: flex;
  flex-direction: column;
  max-width: 600px;
}
.related-asm-content-query .flex-45 .loop-img {
  max-width: 588px;
  min-width: 420px;
  margin-right: 2rem;
}
.related-asm-content-query .flex-55{
  background: #272832;
  border-radius: 30px;
  padding: 2rem;
  margin-left: 2rem;
  max-width: 600px;
}
.related-asm-content-query .flex-55 h3{
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5rem;
  margin-left: 45px;
  color: #fff;
  opacity: 0.8;
}
.related-asm-content-query .flex-55 h3 a { color: white; text-decoration: underline; }
.related-asm-content-query .flex-45 h3 a{ color: white; text-decoration: underline; }
.related-asm-content-query .flex-45 p { color: white; }
.related-asm-content-query .flex-55 p { color: white; }
.related-asm-content-query .flex-55 h3 a:hover{ color: #ff352c !important; opacity: 1 !important; }
.related-asm-content-query .flex-45 h3 a:hover{ color: #ff352c !important; opacity: 1 !important; }
.related-asm-content-query p{
  color: #c2c3c3;
  font-size: 0.9rem;
}
.related-asm-content-query .flex-55 .meta-condensed {
  margin-bottom: 0.2rem;
}

@media (max-width:991px){
  .related-asm-content-query {
    display: block !important;
  }
  .related-asm-content-query .flex-55,
  .related-asm-content-query .flex-45{
    width: 100%;
    max-width: 100%;
    margin: 1rem 0 0 0;
  }
  .related-asm-content-query .flex-55 {
    margin-left: -2rem !important;
    margin-right: -2rem !important;
    display: block;
    width: auto;
    max-width: 9999px !important;
    border-radius: 0 !important;
    margin-bottom: -2rem !important;
  }
}

/* Free ASM Cta Content */
.free-asm-cta-columns .cta-list ul {
  padding-left: 15px;
  font-size: 1.15rem;
}
.free-asm-cta-columns h3 {
  color: #FFF;
}
.free-asm-cta-columns a {
  color: #FFF;
}
.free-asm-cta-columns h4 {
  font-size: 1.75rem;
  font-weight: 500;
}
.asm-cta {
  max-width: 65%;
}

@media (max-width:991px){
  .free-asn-cta-container {
    display: block !important;
  }

  .free-asn-cta-container .block-columns-column {
    margin-bottom: 1rem;
  }
}
/** AOB hubspot Form **/
label#label-email-1c2d1ccb-e19e-4c5c-a98d-1b5bd25d7c22 {
  color: white;
}

.block-form.formCenter.bg-darkest.text-white.p-section.hubspot-aob {
  max-height: 0;
  padding: 0;
  @media (max-width:768px){
    max-height: 200px;
    padding: 10px;
  }
}

.hubspot-aob .container .sal.d-flex .block-columns-column div div.p-4.p-md-5.dark-form {
  background-color: rgba(0, 0, 0, 0) !important;
  width: 685px;
  left: 655px;
  position: relative;
  top: -265px;
  @media (max-width:1399px){
    left: 565px;
    width: 590px;
    margin-top: 25px;
  }
  @media (max-width:1199px){
    left: 475px;
    width: 500px;
    margin-top: 0;
  }
  @media (max-width:999px){
    left: 340px;
    width: 400px;
    margin-top: -120px;
  }
  @media (max-width:768px){
    width: 200%;
    margin-top: 170px;
    left: 15px;
  }
  @media (max-width:575px){
    width: 300%;
    left: 15px;
    top: -50px;
  }
}
