.alternating-content {
  padding: 1rem 0;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 5rem;
}
.alternating-content * {
  box-sizing: border-box;
}
.alternating-content .content-item.full-width.odd.style-a,
.alternating-content .content-item.full-width.odd.style-b {
  position: relative;
  align-items: center;
  border: 1px solid #B1B3B6;
  border-bottom-right-radius: 100px;
  background-color: white;
}
.alternating-content .content-item.full-width.odd.style-a:before,
.alternating-content .content-item.full-width.odd.style-b:before {
  content: "";
  position: absolute;
  z-index: 999;
  top: -7.5px;
  right: -7.5px;
  width: 15px;
  height: 30px;
  background-color: #F47735;
}
.alternating-content .content-item.full-width.odd.style-a:after,
.alternating-content .content-item.full-width.odd.style-b:after {
  content: "";
  position: absolute;
  z-index: 999;
  top: -15px;
  right: 0;
  width: 15px;
  height: 30px;
  background-color: #F47735;
  transform: rotate(90deg);
}
.alternating-content .content-item.full-width.odd.style-a .content,
.alternating-content .content-item.full-width.odd.style-b .content {
  position: relative;
  z-index: 1;
  align-items: center;
  transform: translateX(2rem);
  padding: 4rem 5rem;
  text-align: center;
}
.alternating-content .content-item.full-width.odd.style-a .content .subheading,
.alternating-content .content-item.full-width.odd.style-b .content .subheading {
  margin: 0 0 0.5rem;
  padding: 0;
  color: #696a6d;
}
.alternating-content .content-item.full-width.odd.style-a .content .heading,
.alternating-content .content-item.full-width.odd.style-b .content .heading {
  margin: 0 0 0.5rem;
  padding: 0;
  font-size: 38px;
}
.alternating-content .content-item.full-width.odd.style-a .content p,
.alternating-content .content-item.full-width.odd.style-b .content p {
  margin: 0 0 1.5rem;
}
.alternating-content .content-item.full-width.odd.style-a .content .buttons,
.alternating-content .content-item.full-width.odd.style-b .content .buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  row-gap: 1rem;
}
.alternating-content .content-item.full-width.even.style-a,
.alternating-content .content-item.full-width.even.style-b {
  position: relative;
  align-items: center;
  border: 1px solid #B1B3B6;
  border-bottom-left-radius: 100px;
  background-color: white;
}
.alternating-content .content-item.full-width.even.style-a:before,
.alternating-content .content-item.full-width.even.style-b:before {
  content: "";
  position: absolute;
  z-index: 999;
  top: -7.5px;
  right: -7.5px;
  width: 15px;
  height: 30px;
  background-color: #F47735;
}
.alternating-content .content-item.full-width.even.style-a:after,
.alternating-content .content-item.full-width.even.style-b:after {
  content: "";
  position: absolute;
  z-index: 999;
  top: -15px;
  right: 0;
  width: 15px;
  height: 30px;
  background-color: #F47735;
  transform: rotate(90deg);
}
.alternating-content .content-item.full-width.even.style-a .content,
.alternating-content .content-item.full-width.even.style-b .content {
  position: relative;
  z-index: 1;
  align-items: center;
  transform: translateX(2rem);
  padding: 4rem 5rem;
  text-align: center;
}
.alternating-content .content-item.full-width.even.style-a .content .subheading,
.alternating-content .content-item.full-width.even.style-b .content .subheading {
  margin: 0 0 0.5rem;
  padding: 0;
  color: #696a6d;
}
.alternating-content .content-item.full-width.even.style-a .content .heading,
.alternating-content .content-item.full-width.even.style-b .content .heading {
  margin: 0 0 0.5rem;
  padding: 0;
  font-size: 38px;
}
.alternating-content .content-item.full-width.even.style-a .content p,
.alternating-content .content-item.full-width.even.style-b .content p {
  margin: 0 0 1.5rem;
}
.alternating-content .content-item.full-width.even.style-a .content .buttons,
.alternating-content .content-item.full-width.even.style-b .content .buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  row-gap: 1rem;
}
.alternating-content .content-item.odd.style-a:not(.full-width) {
  position: relative;
  background-size: 50% auto;
  background-repeat: no-repeat;
  display: grid;
  grid-template-columns: 3fr 5fr 0fr;
  align-items: center;
}
.alternating-content .content-item.odd.style-a:not(.full-width) .video-space {
  position: absolute;
  z-index: 9;
  cursor: pointer;
  width: 37%;
  height: 100%;
  left: 0;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: url("/wp-content/themes/granger/assets/images/icon-play.png") no-repeat center;
  background-size: 100px;
  background-repeat: no-repeat;
  background-position: center;
}
.alternating-content .content-item.odd.style-a:not(.full-width) .content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  transform: translateX(2rem);
  padding: 4rem 5rem;
}
.alternating-content .content-item.odd.style-a:not(.full-width) .content .subheading {
  margin: 0 0 0.5rem;
  padding: 0;
  color: #696a6d;
}
.alternating-content .content-item.odd.style-a:not(.full-width) .content .heading {
  margin: 0 0 0.5rem;
  padding: 0;
  font-size: 38px;
}
.alternating-content .content-item.odd.style-a:not(.full-width) .content p {
  margin: 0 0 1.5rem;
}
.alternating-content .content-item.odd.style-a:not(.full-width) .content .buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  row-gap: 1rem;
}
.alternating-content .content-item.odd.style-a:not(.full-width) .white-background {
  background-image: url("/wp-content/themes/granger/assets/images/semicircle-detail.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center right;
  position: absolute;
  top: -3rem;
  right: -1.5rem;
  width: 100%;
  height: calc(100% + 5rem);
}
.alternating-content .content-item.even.style-a:not(.full-width) {
  position: relative;
  background-size: 50% auto;
  background-repeat: no-repeat;
  background-position: center right;
  display: grid;
  grid-template-columns: 5fr 3fr 0fr;
  align-items: center;
}
.alternating-content .content-item.even.style-a:not(.full-width) .image-space {
  order: 2;
  background-repeat: no-repeat;
  background-position: center;
}
.alternating-content .content-item.even.style-a:not(.full-width) .video-space {
  position: absolute;
  z-index: 9;
  cursor: pointer;
  width: 37%;
  height: 100%;
  right: 0;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: url("/wp-content/themes/granger/assets/images/icon-play.png") no-repeat center;
  background-size: 100px;
  background-repeat: no-repeat;
  background-position: center;
}
.alternating-content .content-item.even.style-a:not(.full-width) .content {
  order: 1;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  transform: translateX(2rem);
  padding: 4rem 5rem;
}
.alternating-content .content-item.even.style-a:not(.full-width) .content .subheading {
  margin: 0 0 0.5rem;
  padding: 0;
  color: #696a6d;
}
.alternating-content .content-item.even.style-a:not(.full-width) .content .heading {
  margin: 0 0 0.5rem;
  padding: 0;
  font-size: 38px;
}
.alternating-content .content-item.even.style-a:not(.full-width) .content p {
  margin: 0 0 1.5rem;
}
.alternating-content .content-item.even.style-a:not(.full-width) .content .buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  row-gap: 1rem;
}
.alternating-content .content-item.even.style-a:not(.full-width) .white-background {
  background-image: url("/wp-content/themes/granger/assets/images/semicircle-detail-right.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center left;
  position: absolute;
  top: -3rem;
  left: -1.5rem;
  width: 100%;
  height: calc(100% + 5rem);
}
.alternating-content .content-item.odd.style-b:not(.full-width) {
  position: relative;
  background-size: auto 100%;
  background-repeat: no-repeat;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  border: 1px solid #B1B3B6;
  border-bottom-right-radius: 100px;
}
.alternating-content .content-item.odd.style-b:not(.full-width):before {
  content: "";
  position: absolute;
  z-index: 999;
  top: -7.5px;
  right: -7.5px;
  width: 15px;
  height: 30px;
  background-color: #F47735;
}
.alternating-content .content-item.odd.style-b:not(.full-width):after {
  content: "";
  position: absolute;
  z-index: 999;
  top: -15px;
  right: 0;
  width: 15px;
  height: 30px;
  background-color: #F47735;
  transform: rotate(90deg);
}
.alternating-content .content-item.odd.style-b:not(.full-width) .image-space {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.alternating-content .content-item.odd.style-b:not(.full-width) .image-space.contain {
  background-size: contain;
}
.alternating-content .content-item.odd.style-b:not(.full-width) .video-space {
  position: absolute;
  z-index: 9;
  cursor: pointer;
  width: 50%;
  height: 100%;
  left: 0;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: url("/wp-content/themes/granger/assets/images/icon-play.png") no-repeat center;
  background-size: 100px;
  background-repeat: no-repeat;
  background-position: center;
}
.alternating-content .content-item.odd.style-b:not(.full-width) .content {
  padding: 5rem;
}
.alternating-content .content-item.odd.style-b:not(.full-width) .content .heading {
  margin: 0 0 1rem;
  padding: 0;
  font-size: 38px;
}
.alternating-content .content-item.odd.style-b:not(.full-width) .content .buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  row-gap: 1rem;
}
.alternating-content .content-item.even.style-b:not(.full-width) {
  position: relative;
  background-size: auto 100%;
  background-repeat: no-repeat;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  border: 1px solid #B1B3B6;
  border-bottom-left-radius: 100px;
}
.alternating-content .content-item.even.style-b:not(.full-width):before {
  content: "";
  position: absolute;
  z-index: 999;
  top: -7.5px;
  right: -7.5px;
  width: 15px;
  height: 30px;
  background-color: #F47735;
}
.alternating-content .content-item.even.style-b:not(.full-width):after {
  content: "";
  position: absolute;
  z-index: 999;
  top: -15px;
  right: 0;
  width: 15px;
  height: 30px;
  background-color: #F47735;
  transform: rotate(90deg);
}
.alternating-content .content-item.even.style-b:not(.full-width) .image-space {
  order: 2;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.alternating-content .content-item.even.style-b:not(.full-width) .image-space.contain {
  background-size: contain;
}
.alternating-content .content-item.even.style-b:not(.full-width) .video-space {
  position: absolute;
  z-index: 9;
  cursor: pointer;
  width: 50%;
  height: 100%;
  right: 0;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: url("/wp-content/themes/granger/assets/images/icon-play.png") no-repeat center;
  background-size: 100px;
  background-repeat: no-repeat;
  background-position: center;
}
.alternating-content .content-item.even.style-b:not(.full-width) .content {
  padding: 5rem;
  order: 1;
}
.alternating-content .content-item.even.style-b:not(.full-width) .content .heading {
  margin: 0 0 1rem;
  padding: 0;
  font-size: 38px;
}
.alternating-content .content-item.even.style-b:not(.full-width) .content .buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  row-gap: 1rem;
}
@media screen and (min-width: 1001px) {
  .alternating-content .content-item.odd.style-a:not(.full-width) .image-space {
    background-image: none !important;
  }
  .alternating-content .content-item.odd.style-a:not(.full-width) .content {
    min-height: 400px;
  }
  .alternating-content .content-item.even.style-a:not(.full-width) .image-space {
    background-image: none !important;
  }
  .alternating-content .content-item.even.style-a:not(.full-width) .content {
    min-height: 400px;
  }
  .alternating-content .content-item.odd.style-b:not(.full-width) .content.reduce-padding {
    padding-left: 0;
  }
  .alternating-content .content-item.even.style-b:not(.full-width) .content.reduce-padding {
    padding-right: 0;
  }
}
@media screen and (max-width: 1300px) {
  .alternating-content .content-item.odd.style-a:not(.full-width) {
    grid-template-columns: 1fr 2fr 0fr;
  }
  .alternating-content .content-item.even.style-a:not(.full-width) {
    grid-template-columns: 3fr 2fr 0fr;
  }
}
@media screen and (max-width: 1100px) {
  .alternating-content .content-item.odd.style-a:not(.full-width) {
    grid-template-columns: 1fr 3fr 0fr;
  }
  .alternating-content .content-item.even.style-a:not(.full-width) {
    grid-template-columns: 3fr 2fr 0fr;
  }
}
@media screen and (max-width: 1000px) {
  .alternating-content {
    padding: 0;
    gap: 2rem;
  }
  .alternating-content .content-item.full-width.odd.style-a,
  .alternating-content .content-item.full-width.odd.style-b {
    border-bottom-right-radius: 25px;
  }
  .alternating-content .content-item.full-width.odd.style-a .content,
  .alternating-content .content-item.full-width.odd.style-b .content {
    min-height: 0;
    transform: unset;
    padding: 2rem;
  }
  .alternating-content .content-item.full-width.even.style-a,
  .alternating-content .content-item.full-width.even.style-b {
    border-bottom-left-radius: 25px;
  }
  .alternating-content .content-item.full-width.even.style-a .content,
  .alternating-content .content-item.full-width.even.style-b .content {
    min-height: 0;
    transform: unset;
    padding: 2rem;
  }
  .alternating-content .content-item.odd.style-a:not(.full-width) {
    display: flex;
    flex-direction: column;
    background-size: 100% auto;
    background-image: none !important;
    border: 1px solid #B1B3B6;
  }
  .alternating-content .content-item.odd.style-a:not(.full-width) .image-space {
    width: 100%;
    aspect-ratio: 4/3;
    background-size: cover;
  }
  .alternating-content .content-item.odd.style-a:not(.full-width) .video-space {
    width: 100%;
    height: unset;
    aspect-ratio: 4/3;
    right: unset;
  }
  .alternating-content .content-item.odd.style-a:not(.full-width) .content {
    min-height: 0;
    transform: unset;
    padding: 2rem;
    background-color: white;
    border-top: 1px solid #B1B3B6;
  }
  .alternating-content .content-item.odd.style-a:not(.full-width) .white-background {
    display: none;
  }
  .alternating-content .content-item.even.style-a:not(.full-width) {
    display: flex;
    flex-direction: column;
    background-size: 100% auto;
    background-image: none !important;
    border: 1px solid #B1B3B6;
  }
  .alternating-content .content-item.even.style-a:not(.full-width) .image-space {
    width: 100%;
    height: 100%;
    background-size: cover;
    order: 1;
    aspect-ratio: 4/3;
  }
  .alternating-content .content-item.even.style-a:not(.full-width) .image-space.contain {
    background-size: contain;
  }
  .alternating-content .content-item.even.style-a:not(.full-width) .video-space {
    width: 100%;
    height: unset;
    aspect-ratio: 4/3;
    right: unset;
  }
  .alternating-content .content-item.even.style-a:not(.full-width) .content {
    min-height: 0;
    transform: unset;
    padding: 2rem;
    background-color: white;
    order: 2;
    border-top: 1px solid #B1B3B6;
  }
  .alternating-content .content-item.even.style-a:not(.full-width) .white-background {
    display: none;
  }
  .alternating-content .content-item.odd.style-b:not(.full-width) {
    grid-template-columns: 1fr;
    border-bottom-right-radius: 24px;
  }
  .alternating-content .content-item.odd.style-b:not(.full-width) .image-space {
    width: 100%;
    height: unset;
    min-height: unset;
    aspect-ratio: 4/3;
  }
  .alternating-content .content-item.odd.style-b:not(.full-width) .video-space {
    width: 100%;
    height: unset;
    aspect-ratio: 4/3;
    right: unset;
  }
  .alternating-content .content-item.odd.style-b:not(.full-width) .content {
    padding: 2rem;
  }
  .alternating-content .content-item.even.style-b:not(.full-width) {
    grid-template-columns: 1fr;
    border-bottom-left-radius: 24px;
  }
  .alternating-content .content-item.even.style-b:not(.full-width) .image-space {
    aspect-ratio: 4/3;
    height: unset;
    min-height: unset;
    order: 1;
  }
  .alternating-content .content-item.even.style-b:not(.full-width) .video-space {
    width: 100%;
    height: unset;
    aspect-ratio: 4/3;
    right: unset;
  }
  .alternating-content .content-item.even.style-b:not(.full-width) .content {
    padding: 2rem;
    order: 2;
  }
}
@media screen and (max-width: 768px) {
  .alternating-content .content-item.full-width.odd.style-a .content,
  .alternating-content .content-item.full-width.odd.style-b .content {
    font-size: 16px;
  }
  .alternating-content .content-item.full-width.odd.style-a .content .subheading,
  .alternating-content .content-item.full-width.odd.style-b .content .subheading {
    font-size: 18px;
  }
  .alternating-content .content-item.full-width.odd.style-a .content .heading,
  .alternating-content .content-item.full-width.odd.style-b .content .heading {
    font-size: 28px;
  }
  .alternating-content .content-item.full-width.even.style-a .content .subheading,
  .alternating-content .content-item.full-width.even.style-b .content .subheading {
    font-size: 16px;
  }
  .alternating-content .content-item.full-width.even.style-a .content .heading,
  .alternating-content .content-item.full-width.even.style-b .content .heading {
    font-size: 28px;
  }
  .alternating-content .content-item.odd.style-a:not(.full-width) .content .subheading {
    font-size: 16px;
  }
  .alternating-content .content-item.odd.style-a:not(.full-width) .content .heading {
    font-size: 28px;
  }
  .alternating-content .content-item.even.style-a:not(.full-width) .content .subheading {
    font-size: 16px;
  }
  .alternating-content .content-item.even.style-a:not(.full-width) .content .heading {
    font-size: 28px;
  }
  .alternating-content .content-item.odd.style-b:not(.full-width) .content .heading {
    font-size: 28px;
  }
  .alternating-content .content-item.even.style-b:not(.full-width) .content .heading {
    font-size: 28px;
  }
}
