p {
  font-family: Poppins, sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 24px;
}
.site-main {
  padding: 0;
}
.banner-container {
  background-color: var(--black);
  background-image: url("/assets/img/vector-bg-bottom-right.svg");
  background-repeat: no-repeat;
  background-position: bottom right;
}
.banner-container h1 {
  margin-bottom: 24px;
}
.banner-container h1 .text-italic {
  padding-bottom: 20px;
  margin-bottom: -20px;
}
.banner-content h1 .title:after {
  display: none;
}
.marketing-labs .marketing-labs-container {
  max-width: 1192px;
  margin: auto;
  padding: 80px 0;
}

.marketing-labs h2 {
  letter-spacing: -3px;
}

.marketing-labs .marketing-labs-container .content{
  display: flex;
  justify-content: space-between;
  gap: 93px;
}

.marketing-labs .marketing-labs-container .content div:first-of-type{
  width: 513px;
}

.marketing-labs .marketing-labs-container .content div:last-of-type{
  width: 586px;
}

.marketing-labs .workshops-wrapper {
  /* display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, 1fr); */
  margin-top: 40px;
}

.workshops-wrapper-child-list {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 600px) {
  .workshops-wrapper-child-list {
    grid-template-columns: repeat(1, 1fr);
  }
}

.marketing-labs .workshops-wrapper .workshop-card{
  padding: 40px 32px;
  box-shadow: 0px 4px 10px 0px #0000001A;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
}

.marketing-labs .workshops-wrapper .workshop-card .btn-group {
  margin-top: auto;
}

.marketing-labs .workshops-wrapper .workshop-card .btn-group .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  /* flex: 1; */
}

h2 {
  margin-top: 0;
  margin-bottom: 24px;
}

h5 {
  margin-top: 0;
}

/* Workshops Registration form */
.workshops-registration-form .container {
  max-width: 1192px;
  margin: auto;
  padding: 80px 0;
  display: flex;
  gap: 98px;
  justify-content: space-between;
  flex-direction: row-reverse;
}

/* Modal */
.modal {
  position: fixed; 
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: none;
  justify-content: center;
  align-items: flex-start; /* or center */
  z-index: 1000; /* depending on what z-index values exist in your page, in order for the modal layer to sit on top of other content */
  overflow: auto; /* enable scrolling if needed - although this is not really necessary since we are going take care of overflow in modal-content */
  background-color: rgba(0,0,0,0.8);
  z-index: 9999;
  padding-bottom: 80px;
}
.workshop-info {
  display: none;
}

.workshop-info p {
  display: block;
}

.workshops-modal .workshop-info {
  display: block;
  grid-column: 1 / -1;
  border-bottom: 1px solid #AEAEAE;
  padding-bottom: 24px;
}
.workshops-modal h3:after{
  content: "";
  position: absolute;
  margin-left: -0.5em; /* Adjust to align with the comma */
  width: 0.5em;
  background-color: white;
}
.workshops-modal .instructor-name{
  display: none;
}
.workshops-modal .workshop-info .btn {
  display: inline-block;
}
.workshops-modal .author-left-panel {
  grid-column: 1 / 2;
}
.workshops-modal .author-right-panel {
  grid-column: 2 / 3;
}
.workshops-modal .modal-content {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto;
  column-gap: 24px;
  row-gap: 40px;
  top: 10%;
}
.workshops-modal .author-left-panel h3{
  font-family: IvyJournal !important;
  font-size: 32px;
  font-style: italic;
  font-weight: 400;
  line-height: 40px;
  letter-spacing: -0.04em;
  color: var(--coral);
  display: none;
}

.modal .instructor-title-container {
  display: none;
}

.workshops-modal .instructor-title-container {
  display: block;
  grid-column: 1 / -1;
  margin-bottom: -40px;
}

.workshops-modal .instructor-title-container h3 {
  
  font-family: IvyJournal !important;
  font-size: 32px;
  font-style: italic;
  font-weight: 400;
  line-height: 40px;
  letter-spacing: -0.04em;
  color: var(--coral);
}
.modal p{
  font-family: Poppins, sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 24px;
}
.modal.modal-show {
  animation: fadeIn 0.1s ease-in-out forwards;
}
.modal.modal-hide {
  animation: fadeOut 0.1s ease-in-out 0.1s forwards;
}
.modal-content {
  position: relative;
  top: 15%;
  display: flex;
  gap: 102px;
  background-color: #fff;
  padding: 80px 124px;
  border-radius: 12px;
  width: 100%;
  max-width: 1192px;
  overflow: auto;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  /* align-items: center; */
  margin-bottom: 80px;
}
.modal-content .profile-picture {
  margin-bottom: 24px;
  display: block;
  width: 323px;
  border-radius: 12px;
  margin-top: 6px;
}
.modal-content .company-logo{
  height: 48px;
}
.modal-content h3, .modal-content h5 {
  margin-top: 0;
}
.modal.modal-show .modal-content {
  animation: fadeInDown 0.3s ease-in-out forwards;
}
.modal.modal-hide .modal-content {
  animation: fadeOutUp 0.2s ease-in-out forwards;
}

.modal-close {
  position: absolute;
  top: 29px;
  right: 27px;
  cursor: pointer;
}
.modal-close:before {
  content: url("/assets/img/close.svg");
}

/* About Membership*/

#about-membership .container{
  max-width: 1192px;
  margin: auto;
  padding: 80px 0;
}

#about-membership h5{
  margin-top: 0;
  margin-bottom: 0;
}

#about-membership h2 {
  margin-bottom: 0;
}

table.about-membership-table tr td:first-of-type{
  padding-left: 0 !important;
  padding-right: 24px;
}

table.about-membership-table tr td:nth-child(2) {
  padding-right: 40px;
}

table.about-membership-table {
  width: 991px;
}

table.about-membership-table small {
  font-family: Poppins, sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 24px;
}

table.about-membership-table tr {
  position: relative;
  border-bottom: 1px solid #D4D4D4;
}
table.about-membership-table tr:after {
  content: " ";
  width: 100%;
  border-bottom:1px solid #D4D4D4;
  position: absolute;
  bottom:0;
  left: 0;
}

table.about-membership-table tr:not(:first-of-type) p{
  margin-top: 24px;
}

#about-membership .col-content {
  position: relative;
}

#about-membership .col-content:after {
  content: url("/assets/img/curly-arrow-left-2.svg");
  position: absolute;
  top: 5%;
  right: -80px;
}

.about-membership-section > .container > .col-group > .col > p {
  font-family: Poppins, sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 32px;
}

.about-membership-table p{
  font-family: Poppins, sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 24px;
}

.group-logo-grid img:nth-last-child(-n+4) {
  margin-left: 410px;
}

.post-title {
  display: flex;
  flex-direction: column;
  margin: 0;
}

.post-title h1{
  order: -1;
}

.post-title p {
  width: 80%;
}

.site-main {
  margin: 0;
  max-width: unset;
}

.logo-partners.bg-black {
  background-color: var(--black);
}

.logo-partners.bg-black .content-wrap {
  padding: 48px 0;
  margin: auto;
  text-align: center;
}

.logo-partners.bg-black p {
  color: var(--white);
}

.group-logo-grid.six-per-row {
  grid-template-columns: repeat(6, 11%);
}

.group-logo-grid {
  display: grid;
  grid-template-columns: repeat(5, 11%);
  justify-content: center;
  /* column-gap: 35px; */
  row-gap: 24px;
  justify-items: center;
}

.marketers-section {
  background-color: var(--black);
  background-image: url(/assets/img/eclipse-left.svg);
  background-position: left bottom;
  background-repeat: no-repeat;
  padding: 80px 0;
}

.marketers-section .marketers-content {
  max-width: 1192px;
  margin: auto;
  display: flex;
  flex-direction: column;
}

.marketers-section .title-with-cta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 24px;
}

.marketers-section .title-with-cta h2 {
  margin-bottom: 0;
  margin-top: 0;
  color: var(--white);
}

.marketers-section .btn {
  display: inline-block;
  margin-top: 0;
  align-self: flex-end;
}

.marketers-list {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, 1fr);
}

.marketers-list .marketer-card {
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background-color: var(--white);
  border-radius: 12px;
  cursor: pointer;
}

.marketers-list .marketer-card .instructor-profile {
  width: 100%;
  height: 266px;
  border-radius: 12px;
}

.marketers-list .marketer-card .instructor-logo {
  height: 48px;
  align-self: flex-start;
}

.marketers-list .marketer-card p {
  margin-bottom: 0;
  position: relative;
  font-family: Poppins, sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 24px;
}

.partners-ratings {
  background-color: var(--black);
  text-align: center;
  padding-bottom: 80px;
}

.partners-ratings p {
  color: var(--white);
  margin-bottom: 32px;
  font-family: Poppins, sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 24px;
}

.partners-ratings .logos {
  display: flex;
  gap: 221.25px;
  justify-content: center;
}

.custom-form-checkout-title {
  font-weight: 500;
  line-height: 20px;
  display: block;
  margin-bottom: 4px !important;
}

.custom-form-checkout-label {
  display: flex;
  align-items: flex-start;
}
.custom-form-checkout-label span {
  font-family: Poppins, sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 24px;
}
.custom-form-checkout-label span:nth-child(2){
  width: 504px;
  padding-right: 48px;
}

.custom-form-checkout-label:not(:last-of-type) {
  margin-bottom: 8px;
}

.custom-form-checkout-label input {
  margin: 6px 8px 3px 0px;
  cursor: pointer;
}

.custom-form-checkout-button {
  display: inline-block;
  margin-top: 24px;
}

.selected-count {
  display: block;
  margin-bottom: 0;
  margin-top: 24px;
}

.selected-count:empty {
  display: none;
}
@media (min-width: 1201px) and (max-width: 1300px) {
  .group-logo-grid.six-per-row {
    grid-template-columns: repeat(6, 16%);
  }
}
@media (min-width: 601px) and (max-width: 1200px) {
  .banner-content h1 .title {
    font-size: 56px;
    font-weight: 400;
    line-height: 58px;
    letter-spacing: -0.04em;
  }
  .banner-content h1 .text-italic{
    font-size: 56px;
    line-height: 52px;
  }
  .banner-content {
    padding: 80px 56px;
    flex-direction: column;
    align-items: center;
  }
  .post-title p {
    width: unset;
  }
  .partners-ratings .logos {
    gap: unset;
    justify-content: space-between;
  }
  .partners-ratings {
    padding-left: 56px;
    padding-right: 56px;
    padding-bottom: 56px;
  }
  .slider-section {
    padding: 60px 56px;
  }
  .slider-section .slider-controller {
    top: unset;
    bottom: 0;
  }
  .bg-coral-gradient {
    background-size: cover;
  }
  #about-membership .container {
    padding: 80px 56px;
  }
  table.about-membership-table {
    width: 100%;
  }
  #about-membership .col-content:after {
    display: none;
  }
  .group-logo-grid.six-per-row {
    grid-template-columns: repeat(3, 28%);
  }
  .marketing-labs .marketing-labs-container {
    padding: 80px 56px;
  }
  .marketing-labs .workshops-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
  .marketers-list {
    grid-template-columns: 49% 49%;
  }
  .marketers-section {
    padding: 80px 56px;
  }
  .modal-content {
    width: 95%;
    padding: 70px 114px;
    gap: 60px;
    top: 5%;
  }
  .modal-content {
    flex-direction: column;
    align-items: flex-start;
  }
  .workshops-registration-form .container {
    flex-direction: column-reverse;
    padding: 80px 56px;
    gap: 24px;
  }
  .marketing-labs .workshops-wrapper .workshop-card .btn-group {
    flex-direction: column;
  }
  .marketing-labs .marketing-labs-container .content {
    gap: 36px;
  }
  .workshops-modal .author-left-panel {
    grid-column: 1 / -1;
  }
  .workshops-modal .author-right-panel {
    grid-column: 1 / -1;
  }
  .group-logo-grid img:nth-last-child(-n+4) {
    margin-left: unset;
  }
  .marketers-list .marketer-card .instructor-profile {
    height: unset;
  }
}

@media (max-width: 600px) {
  .banner-container.bg-coral-gradient {
    background-size: 200% 100%;
  }
  .post-title p {
    width: unset;
  }
  .banner-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .banner-content img{
    max-width: 234px;
  }
  .marketing-labs .marketing-labs-container .content {
    flex-direction: column;
    gap: 0;
  }
  .marketing-labs .marketing-labs-container .content div:first-of-type, .marketing-labs .marketing-labs-container .content div:last-of-type {
    width: 100%;
  }
  .marketing-labs .marketing-labs-container {
    padding: 56px 32px;
  }
  .marketing-labs .workshops-wrapper {
    grid-template-columns: 1fr;
  }
  .workshop-card .btn-group{
    flex-direction: column;
  }

  .marketers-section {
    padding: 56px 32px;
  }
  .marketers-section .title-with-cta h2 {
    margin-bottom: 24px;
  }
  .marketers-section .title-with-cta {
    flex-direction: column;
  }
  .marketers-section .btn {
    align-self: flex-start;
  }
  .marketers-list {
    grid-template-columns: repeat(1, 1fr);
  }
  .marketers-section .marketers-content h2 {
    font-family: Poppins, sans-serif;
    font-size: 42px;
    font-weight: 400;
    line-height: 40px;
    letter-spacing: -0.04em;
  }

  .partners-ratings {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .partners-ratings .logos {
    gap: 24px;
  }
  .partners-ratings .logos img {
    width: 88px;
  }

  .slider-section {
    padding: 48px 32px;
  }
  .slider-section .slide-item {
    width: 100%;
    flex-direction: column;
  }
  .slider-section .auth-img {
    width: 100%;
  }
  .slider-section .slide-content {
    padding-right: 0;
  }
  .slide-item .slide-content img.testimonial-logo {
    margin-bottom: 24px;
  }
  .slider-section .slider-controller {
    position: unset;
  }

  #about-membership .container {
    padding: 56px 32px;
  }
  .about-membership-section .col-group {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
  }
  .about-membership-section h2 {
    font-family: Poppins, sans-serif;
    font-size: 42px;
    font-weight: 400;
    line-height: 40px;
    letter-spacing: -0.02em;
    display: inline-block;
  }
  section:not(.page-banner) h2 span {
    line-height: 40px !important;
    margin-bottom: -10px;
  }
  table.about-membership-table {
    width: 100%;
  }
  table.about-membership-table tbody {
    display: flex;
    flex-direction: column;
  }
  table.about-membership-table tr {
    display: grid;
    grid-template-columns: 10% 90%;
    margin-bottom: 24px;
    align-items: center;
    row-gap: 16px;
  }
  table.about-membership-table h5 {
    margin-bottom: 0;
  }
  #about-membership .col-content:after {
    display: none;
  }
  table.about-membership-table tr td:last-of-type {
    grid-column: span 2;
  }
  table tr td:not(:first-of-type) {
    padding-right: 0 !important;
  }

  .group-logo-grid {
    grid-template-columns: repeat(2, 47%);
    justify-content: center;
    column-gap: 24px;
    row-gap: 24px;
    justify-items: center;
  }
  .logo-partners .group-logo-grid img {
    height: 32px;
  }
  .group-logo-grid.six-per-row {
    grid-template-columns: repeat(2, 46%);
  }
  .logo-partners.bg-black .content-wrap {
    padding: 56px 32px;
  }

  .workshops-registration-form .container {
    padding: 56px 32px;
    flex-direction: column-reverse;
    gap: 24px;
  }
  .workshops-registration-form .form img {
    width: 100%;
  }
  .workshops-registration-form .content h2, .marketing-labs .content h2{
    font-family: Poppins, sans-serif;
    font-size: 42px;
    font-weight: 400;
    line-height: 40px;
    letter-spacing: -0.04em;
    text-align: left;
  }

  .modal-content {
    flex-direction: column;
    padding: 56px 32px;
    gap: 46px;
    width: 95%;
  }
  .modal-content .profile-picture {
    width: 100%;
  }
  .modal-content .company-logo {
    display: block;
  }

  .workshops-modal .author-left-panel {
    grid-column: 1 / -1;
  }
  .workshops-modal .author-right-panel {
    grid-column: 1 / -1;
  }

  .group-logo-grid img:nth-last-child(-n+4) {
    margin-left: unset;
  }

  br {
    display: none;
  }

  .marketers-list .marketer-card .instructor-profile {
    height: 100%;
  }

  .custom-form-checkout-label {
    width: 100%;
  }
}
.limit-display .marketer-card:nth-child(n+7) {
  display: flex;
}

.limit-display .marketer-card:nth-child(n+13) {
  display: none;
}

.workshop-badge {
  width: 275px;
}

#registrationForm .container > div {
  flex: 1;
}

.modal-container {
  background-color: var(--white);
  padding: 56px;
  width: 780px;
  height: 300px;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
  position: absolute;
  left: 0;
  right: 0;
  top: 30%;
  background-image: url("/assets/img/eclipse-top-left.svg");
  background-repeat: no-repeat;
  background-position: left top;
}

.custom-modal-close {
  position: absolute;
  top: 29px;
  right: 27px;
  cursor: pointer;
}
.custom-modal-close:before {
  content: url("/assets/img/close.svg");
}

.container.recap {
  padding: 80px 0;
  max-width: 1192px;
  margin: auto;
  display: flex;
  gap: 100px;
}

.toc:before {
  content: "";
}

.left-siderbar {
  width: 202.5px;
}

.session-item .tag {
  padding: 8px 12px;
  border-radius: 40px;
  border: 1px solid var(--black);
  font-family: Poppins, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 17px;
  display: inline-block;
  margin-bottom: 16px;
}

.session-item h2 {
  font-family: Poppins, sans-serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 40px;
  letter-spacing: -0.05em;
}

.session-item p {
  margin-bottom: 41px;
}

.session-item .video-container {
  margin-bottom: 32px;
}

.session-item .bibliography-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.session-item .bibliography-container h5 {
  margin-bottom: 0;
}

.session-item .bibliography-container a {
  font-family: Poppins, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  display: flex;
  gap: 16px;
  align-items: center;
  color: var(--black);
}

.session-item .bibliography-container a .hover-img {
  display: none;
}

.session-item .bibliography-container a:hover .hover-img {
  display: block;
}

.session-item .bibliography-container a:hover .regular-img {
  display: none;
}

.session-item .bibliography-container a:hover {
  text-decoration: none;
  color: var(--coral);
}

.toc {
  left: 0;
  top: 0;
}

.toc-container {
  margin: 0;
}

.workshop-content {
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.sticky-container {
  top: 0;
  position: sticky;
}

.wistia_responsive_padding .w-chrome {
  border-radius: 12px !important;
}

a.toc-link {
  font-family: Poppins, sans-serif;
  font-size: 12px;
  font-weight: 300;
  line-height: 20px;
  color: #6C6C6C;
}

a.toc-link:hover {
  color: var(--black) !important;
}

a.is-active-link {
  color: var(--black) !important;
}

.custom-float-navigation .float-header{
  display: flex;
  justify-content: space-between;
  background-color: var(--black);
  height: 80px;
  padding: 24px;
}

.custom-float-navigation {
  position: fixed;
  top: 0;
  z-index: 99999999999;
  width: 100%;
}

/* .float-cta .btn-outline-white:after {
  content: url("/assets/img/arrow-down.svg");
  margin-left: 7.4px;
} */

.float-cta .btn{
  font-family: Poppins, sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 20px;
  padding: 6px 10px;
}

.float-cta .btn-tertiary:hover {
  color: var(--black);
  background: var(--white);
}

.float-header .site-logo{
  width: 54.61px;
}

.float-cta .btn-outline-white{
  margin-right: 16px;
}

.custom-float-navigation .side-links h5{
  color: var(--black);
}

.custom-float-navigation .side-links a{
  color: var(--black);
  display: flex;
  justify-content: center;
}

.custom-float-navigation .float-dropdown {
  background-color: var(--white);
  padding: 32px 40px;
  box-shadow: 0px 4px 10px 0px #0000001A;
  border-radius: 0px 0px 12px 12px;
}

.custom-float-navigation .float-dropdown .btn-outline:after{
  content: url("/assets/img/arrow-top.svg");
  margin-left: 8.67px;
  transform-style: preserve-3d;
  transition: transform 0.6s;
}

#openDropdown:hover {
  background: none;
  border-color: var(--white);
}

#openDropdown .float-arrow {
  margin-left: 7.4px;
}

#openDropdown.opened .float-arrow {
  transform: rotate(180deg);
}

.side-links h5 {
  color: var(--white);
  border-bottom: 1px solid var(--black);
  padding-bottom: 16px;
  margin-bottom: 24px;
  margin-top: 0;
}

.side-links .arrow-link {
  color: var(--white);
  font-family: Poppins, sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 20px;
  text-decoration: none;
  display: block;
}

.side-links .arrow-link:after {
  content: url(/assets/img/arrow-right-coral.svg);
  float: right;
  filter: invert(78%) sepia(9%) saturate(17%) hue-rotate(358deg) brightness(88%) contrast(91%);
  margin-right: 8px;
}

.side-links .arrow-link:hover:after {
  filter: none;
  margin-right: 0;
}

.side-links .arrow-link:not(:last-of-type) {
  margin-bottom: 16px;
  justify-content: space-between;
}
@media (min-width: 601px) and (max-width: 1200px) {
  .container.recap {
    padding: 80px 56px;
  }
  .left-sidebar {
    display: none;
  }
}
.post-content .post-upgrade-cta {
  width: 600px;
}

@media (max-width: 600px) {
  .container.recap {
    padding: 56px 32px !important;
  }
  .left-sidebar {
    display: none;
  }

  .post-content .post-upgrade-cta {
    width: 100%;
  }
}

#workshopData > .session-item:not(:last-of-type) {
  margin-bottom: 48px;
}
.btn.btn-outline-disabled {
  border-color: #aeaeae;
  color: #aeaeae;
}