#fw-section-custom-html-617d1c87-ad13-43af-a7e2-8623d74fefaa {

.card-container {
  width: 300px;
  height: 300px;
  position: relative;
  border-radius: 10px;
}

.card-container::before {
  content: "";
  z-index: -1;
  position: absolute;
  inset: 0;
  background: linear-gradient(-45deg, #fc00ff 0%, #00dbde 100% );
  transform: translate3d(0, 0, 0) scale(0.95);
  filter: blur(20px);
}

.card {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  overflow: hidden;
}

.card .img-content {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(-45deg, #fc00ff 0%, #00dbde 100% );
  transition: scale 0.6s, rotate 0.6s, filter 1s;
}

.card .img-content svg {
  width: 50px;
  height: 50px;
  fill: #212121;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
}

.card .content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  color: #e8e8e8;
  padding: 20px 24px;
  line-height: 1.5;
  border-radius: 5px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(50px);
  transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
}

.card .content .heading {
  font-size: 32px;
  font-weight: 700;
}

.card:hover .content {
  opacity: 1;
  transform: translateY(0);
}

.card:hover .img-content {
  scale: 2.5;
  rotate: 30deg;
  filter: blur(7px);
}

.card:hover .img-content svg {
  fill: transparent;
}

}


















#fw-section-custom-html-79c29c3b-887e-4b21-9bd7-31f3a55714f5 {

.button-becomeamember {
    position: relative;
    margin: auto;
    padding: 12px 18px;
    transition: all 0.2s ease;
    border: none;
    background: none;
    cursor: pointer;
    color: #FCF1EA;
    white-space: nowrap;
}

.button-becomeamember:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    border-radius: 50px;
    background-image: conic-gradient(from 180deg at 50% 50%, #d886f1 0deg, #f1c886 47.07deg, #fab67a 100deg, #fd6464 129.52deg, #ff7ba0 221.65deg, #c17bff 299.6deg, #7434e1 360deg);
    filter: blur(10px);
    width: 45px;
    height: 45px;
    transition: all 0.3s ease;
}

.button-becomeamember span {
    position: relative;
    font-family: "Ubuntu", sans-serif;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #FCF1EA;
}

.button-becomeamember svg {
    position: relative;
    top: 0;
    margin-left: 10px;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke: #FCF1EA;
    stroke-width: 2;
    transform: translateX(-5px);
    transition: all 0.3s ease;
}

.button-becomeamember:hover:before {
    width: 100%;
    filter: blur(10px);
}

.button-becomeamember:hover span {
    text-shadow: 0 0 5px #d69494;
}

.button-becomeamember:hover svg {
    transform: translateX(0);
}

.button-becomeamember:active {
    transform: scale(0.95);
}

blockquote {
    position: relative;
    margin: 0em;
    padding: 0em 0em 0em 0em;
    text-align: center;
}
blockquote:before {
    font-family: Georgia, serif;
    position: absolute;
    font-size: 6em;
    line-height: 1;
    top: 0;
    left: 0;
    content: "\201C";
}
blockquote:after {
    font-family: Georgia, serif;
    position: absolute;
   /* display: block; don't use this, it raised the quote too high from the bottom - defeated line-height? */
    float:right;
    font-size:6em;
    line-height: 1;
    right:0;
    bottom:-0.5em;
    content: "\201D";
}
}









#fw-section-custom-html-9e4fbea7-0751-48a5-aa2a-d57c57447ca4 {

.card {
  width: 300px;
  height: 200px;
  perspective: 1000px;
}

.card-inner {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.999s;
}

.card:hover .card-inner {
  transform: rotateY(180deg);
}

.card-front,
.card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
}

.card-front {
  background-color: #6A2C70;
  color: #fff;
  display: flex;
  align-items: center;
  border: 10px solid #6A2C70;
  border-radius: 10px;
  justify-content: center;
  font-size: 24px;
  transform: rotateY(0deg);
}

.card-back {
  background-color: #F08A5D;
  color: #fff;
  display: flex;
  align-items: center;
  border: 10px solid #F08A5D;
  border-radius: 10px;
  justify-content: center;
  font-size: 24px;
  transform: rotateY(180deg);
}

}














#fw-section-custom-html-1c5863fb-e884-4300-af38-7292d3a82be1 {

.flex-container {
    display: grid;
    gap: 5px;
    /* grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); */
    grid-template-columns: 100%;
}

@media only screen and (min-width: 642px) {
    .flex-container {
        grid-template-columns: 48% 48%;
    }
}

@media only screen and (min-width: 1234px) {
    .flex-container {
        grid-template-columns: 20% 20% 20% 20% 20%;
    }

}


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

.tier-section {
    /* background-color: #ffffff; */
    /* border: 1px solid #ddd; */
    /* padding: 15px; */
    /* padding: 3.75%; */
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    margin-bottom: 20px;
}

.tier-section .title {
    text-align: left;
    display: flex;
    /* align-items: center; */
    gap: 6px;
    justify-content: start;
    font-size: 1.1rem;
    margin-bottom: 4px;
    font-weight: var(--font-weight-base-bold);
}

.tiers__tier-members-count {
    font-size: .875rem;
    opacity: 0.6;
    margin-bottom: 8px;
    margin-top: -2px
}

.tiers__tier-content {
    text-align: left
}

.tiers__tier-features {
    display: grid;
    gap: 8px;
    align-content: flex-start;
    width: 100%;
    font-size: 0.5em;
}

.tier-section p {
    font-size: 0.8rem;
}

ul.benefits {
    display: grid;
    gap: 5px;
    align-content: flex-start;
    width: 100%;
    font-size: 0.675em;
    margin-top: 10px;
}

.tier-section ul li {
    /* list-style-type: disc;
    margin-bottom: 5px; */
    display: flex;
    align-items: baseline;
    align-self: flex-start;
}

/* Hover effect */
.tier-section:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Responsive layout */
/* @media (max-width: 1024px) {
    .flex-column {
        width: 48%;
    }
}

@media (max-width: 768px) {
    .flex-column {
        width: 100%;
    }
} */

/* @media (min-width: 35em) {
    grid-auto-flow: column;
    grid-auto-columns: 1fr;
} */

li.prev-benefit::before {
    content: "♡ ┆ "; 
}

li.new-benefit::before {
    content: "♥︎ ┆ "; 
}
}





#fw-section-custom-html-7f258ba0-24bb-45cb-b5bc-b29053d170d9 {

.card {
  --lime-500: #bdd910;
  --violet-700: #8a07b8;

  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.75rem;

  padding: 1rem;
  width: 14rem;
  height: auto;
  min-height: 16rem;
  background-color: var(--lime-500);

  border-radius: 0.5rem;
}

.card::before {
  content: "";
  position: absolute;
  top: 7rem;
  right: 2rem;

  width: 1.25rem;
  aspect-ratio: 1 / 1;
  background-color: var(--violet-700);

  border-radius: 9999px;
}

.card::after {
  content: "";
  position: absolute;
  top: 8.75rem;
  right: -0.5rem;

  width: 3rem;
  aspect-ratio: 1 / 1;
  background-color: var(--violet-700);

  border-radius: 9999px;
}

.card .carousel {
  position: absolute;
  left: 0;

  animation: carousel 10s linear var(--carousel_direction, normal) infinite;
}

.card .carousel[data-direction="right"] {
  --carousel_direction: reverse;
}
.card .carousel[data-position="top"] {
  top: 0.75rem;
}
.card .carousel[data-position="bottom"] {
  bottom: 0.75rem;
}

.card .carousel .carousel__text {
  font-size: 0.75rem;
  color: black;
  text-wrap: nowrap;
}

@keyframes carousel {
  to {
    transform: translate(-50%);
  }
}

.card .image {
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;

  padding: 0.25rem;
  margin-bottom: 0.5rem;
  width: fit-content;
  aspect-ratio: 1 / 1;
  background-color: black;

  border-radius: 0.25rem;
}

.card .image svg {
  width: 1.5rem;
  fill: white;
}

.card .title {
  position: relative;
  z-index: 10;

  font-size: 1rem;
  color: black;
  font-weight: bold;
}

.card .paragraph {
  position: relative;
  z-index: 10;

  padding-right: 0.25rem;

  font-size: 0.75rem;
  color: black;
}

}



#fw-section-custom-html-4162fedf-6f47-4dd9-a3c6-3e5d6737e94f {

.card {
    position: relative;
    display: flex;
    width: 350px;
    background-color: #242824;
    padding: 10px;
    border-radius: 6px;
    gap: 0.5rem;
    height: max-content;
  }
  .bar {
    width: 10px;
    border-radius: 5px;
    background-color: #9147ff;
    transition: all 0.5s ease-in-out;
  }
  .card:hover .bar {
    margin-right: 5px;
  }
  .card_form {
    position: relative;
    min-width: 5em;
    min-height: 5em;
    border-radius: 4px;
    background-color: #9147ff;
    transition: 0.2s ease-in-out;
    overflow: hidden;
  }
  .card_data {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .card_data span {
    color: #9147ff;
    margin-top: auto;
    font-size: 0.9em;
    transition: 0.2s ease-in-out;
    cursor: pointer;
  }
  .card_data span:hover {
    color: #28aea5;
    text-decoration: underline;
  }
  .text {
    display: flex;
    justify-content: center;
    flex-direction: column;
    margin-left: 0.5em;
    color: white;
  }
  .text_m {
    font-size: 0.9em;
  }
  .text_s {
    color: #9147ff;
    font-size: 0.6em;
  }
  .text_d {
    font-size: 0.7em;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
  }
  .cube {
    width: max-content;
    height: 10px;
    transition: all 0.2s;
    transform-style: preserve-3d;
  }
  .card:hover .cube {
    transform: rotateX(90deg);
  }
  .side {
    width: max-content;
    height: 1em;
    display: flex;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: bold;
  }
  .top {
    transform: rotateX(-90deg) translate3d(0, 0, 0em);
  }
  .front {
    transform: translate3d(0, 0, 1em);
  }
}


#fw-section-custom-html-1724341879 {

.cta {
    position: relative;
    margin: auto;
    padding: 12px 18px;
    transition: all 0.2s ease;
    border: none;
    background: none;
    cursor: pointer;
    color: #004e3e;
    white-space: nowrap;
}

.cta:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    border-radius: 50px;
    background: #bcd7cd;
    width: 45px;
    height: 45px;
    transition: all 0.3s ease;
}

.cta span {
    position: relative;
    font-family: "Ubuntu", sans-serif;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #004e3e;
}

.cta svg {
    position: relative;
    top: 0;
    margin-left: 10px;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke: #004e3e;
    stroke-width: 2;
    transform: translateX(-5px);
    transition: all 0.3s ease;
}

.cta:hover:before {
    width: 100%;
    background: #bcd7cd;
}

.cta:hover svg {
    transform: translateX(0);
}

.cta:active {
    transform: scale(0.95);
}

.flex-container {
    display: flex;
    flex-flow: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
}
.flex-column-left {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 48%;
    justify-content: space-between;
    flex: 0 1 35%;
}

.flex-column-right {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 48%;
    justify-content: space-between;
    flex: 1 0 auto
}

.flex-item {
    margin: auto;
}

@media (max-width: 600px) {
    .flex-container {
        /* On small screens, we are no longer using row direction but column */
        flex-direction: column;
    }
    .flex-column-left, .flex-column-right{
        width: 100%;
        justify-content: space-around;
    }
}
}
#fw-section-custom-html-fc5b455c-4ab1-447c-8621-c0827f3a5dfe {

.button-64 {
align-items: center;
background-image: linear-gradient(144deg,#c988f7, #f1cd9d 50%,#f897c8);
border: 0;
border-radius: 36px;
box-shadow: rgba(151, 65, 252, 0.2) 0 15px 30px -5px;
box-sizing: border-box;
color: #FFFFFF;
display: flex;
font-family: Phantomsans, sans-serif;
font-size: 20px;
justify-content: center;
line-height: 1em;
max-width: 100%;
min-width: 140px;
padding: 2px;
text-decoration: none;
user-select: none;
-webkit-user-select: none;
touch-action: manipulation;
white-space: nowrap;
cursor: pointer;
}

.button-64:active,
.button-64:hover {
outline: 0;
}

.button-64 span {
background-color: rgb(5, 6, 45);
padding: 16px 48px;
border-radius: 36px;
width: 100%;
height: 100%;
transition: 300ms;
}

.button-64:hover span {
background: none;
color: rgb(5, 6, 45);
}

@media (min-width: 768px) {
.button-64 {
    font-size: 18px;
    min-width: 196px;
}
.center {
    display: flex;
    justify-content: center;
    align-items: center;
    }
}
}
#fw-section-custom-html-f004399c-4002-4b51-bc7d-9225b1518f7a {

:root,
::after,
::before {
    --primary-color: #212121;
    --background-color: #111;
    --border-color: rgba(255, 255, 255, 0.45);
    --accent-color: #004e3e;
    --text-color: #1c1c1f;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: var(--background-color);
    display: flex;
    justify-content: center;
}

/* Timeline Container */
.timeline {
    background: var(--primary-color);
    margin: 20px auto;
    padding: 20px;
}

/* cyoa-timeline-card container */
.cyoa-timeline-card {
    position: relative;
    max-width: 80%;
}

/* setting padding based on even or odd */
.cyoa-timeline-card:nth-child(odd) {
    padding: 30px 0 30px 30px;
}

.cyoa-timeline-card:nth-child(even) {
    padding: 30px 30px 30px 0;
}

/* Global ::before */
.cyoa-timeline-card::before {
    content: "";
    position: absolute;
    width: 50%;
    border: solid #FCF1EA;
}

/* Setting the border of top, bottom, left */
.cyoa-timeline-card:nth-child(odd)::before {
    left: 0px;
    top: -4.5px;
    bottom: -4.5px;
    border-width: 5px 0 5px 5px;
    border-radius: 50px 0 0 50px;
}

/* Setting the top and bottom to "-5px" because earlier it was out of a pixel in mobile devices */
@media only screen and (max-width: 400px) {
    .cyoa-timeline-card:nth-child(odd)::before {
        top: -5px;
        bottom: -5px;
    }
}

/* Setting the border of top, bottom, right */
.cyoa-timeline-card:nth-child(even)::before {
    right: 0;
    top: 0;
    bottom: 0;
    border-width: 5px 5px 5px 0;
    border-radius: 0 50px 50px 0;
}

/* Removing the border if it is the first cyoa-timeline-card */
.cyoa-timeline-card:first-child::before {
    border-top: 0;
    border-top-left-radius: 0;
}

/* Removing the border if it is the last cyoa-timeline-card  and it's odd */
.cyoa-timeline-card:last-child:nth-child(odd)::before {
    border-bottom: 0;
    border-bottom-left-radius: 0;
}

/* Removing the border if it is the last cyoa-timeline-card  and it's even */
.cyoa-timeline-card:last-child:nth-child(even)::before {
    border-bottom: 0;
    border-bottom-right-radius: 0;
}

.info {
    display: flex;
    flex-direction: column;
    padding: 10px;
}

.cyoa-title {
    color: var(--border-color);
    position: relative;
    padding: 10px;
    margin-bottom: 20px;
    text-align: left;
}

/* timeline dot  */
.cyoa-title::before {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--border-color);
    border-radius: 999px;
    border: 5px solid var(--border-color);
    backdrop-filter: blur(15px);
}

.cyoa-timeline-card:nth-child(even)>.info>.cyoa-title {
    text-align: right;
}

.cyoa-timeline-card:nth-child(odd)>.info>.cyoa-title::before {
    left: -52.5px;
}

.cyoa-timeline-card:nth-child(even)>.info>.cyoa-title::before {
    right: -52.5px;
}


.cyoa-image {
    height: 100%;
    width: 100%;
    border-radius: 20px;
}

.flex-container {
    display: flex;
    align-items: center;
    gap: 25px;
}

.left-column {
    width: 45%;
    justify-content: space-between;
    flex: 0 1 40%;
}

.right-column {
    display: flex;
    flex-direction: column;
    /* justify-content: right; */
    justify-content: space-between;
    width: 65%;
    flex: 0 1 auto;
    gap: 15px;
}


.cyoa-description {
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: left;

    height: 100%;
    width: 100%;
    padding: 35px;

    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 20px;
    background-color: rgba(255, 255, 255, 0.45);
    box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.25);

    backdrop-filter: blur(15px);
}

.cyoa-description-title{
    color: var(--text-color);
}

.cyoa-description-text{
    color: var(--text-color);
    line-height: 1.2;
}

.cyoa-footer {
    color: var(--text-color);
    font-size: 0.85em;
}

/* Media query for narrow screens (e.g., less than 768px width) */
@media (max-width: 768px) {
    .flex-container {
        flex-direction: column;
        align-items: center;
    }

    .left-column,
    .right-column {
        flex: none;
        width: 100%;
    }

    .left-column {
        order: 1;
    }

    .right-column {
        order: 2;
    }

    .box {
        width: 80%;
        margin: 10px auto;
    }

    .cyoa-description {
        width: 80%;
        margin: 10px auto;
    }
}
}
#fw-section-custom-html-dbe9f24c-bc57-4b7b-86ea-888eca8a3269 {

.project-info {
  padding: 100px 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  top: -50px;
}

.project-title {
  font-weight: 500;
  font-size: 1.5em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: black;
}

.lighter {
  font-size: 0.9em;
}

.flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.tag {
  font-weight: lighter;
  color: grey;
}

/*DELETE THIS TWO LINE*/
.delete {
  background-color: #b2b2fd;
}

.card-img div {
  width: 90%;
}
/*IF USING IMAGES*/

.card {
  background-color: white;
  color: black;
  width: 300px;
  max-height: 330px;
  border-radius: 8px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px,
    rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
}

.card-img {
  position: relative;
  top: -20px;
  height: 100px;
  display: flex;
  justify-content: center;
}

/* Change the .card-img div to .card-img img to use img*/
.card-img a,
.card-img div {
  height: 150px;
  width: 90%;
  /* Change this width here to change the width of the color/image */
  object-fit: cover;
  border-radius: 8px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.card-imgs {
  transition: all 0.5s;
}

}
#fw-section-custom-html-3e2d9951-b93a-44e6-b9c5-889960038c19 {

.card {
  position: relative;
  display: flex;
  width: 350px;
  background-color: #242824;
  padding: 10px;
  border-radius: 6px;
  gap: 0.5rem;
  height: max-content;
}
.bar {
  width: 10px;
  border-radius: 5px;
  background-color: #9147ff;
  transition: all 0.5s ease-in-out;
}
.card:hover .bar {
  margin-right: 5px;
}
.card_form {
  position: relative;
  min-width: 5em;
  min-height: 5em;
  border-radius: 4px;
  background-color: #9147ff;
  transition: 0.2s ease-in-out;
  overflow: hidden;
}
.card_data {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.card_data span {
  color: #9147ff;
  margin-top: auto;
  font-size: 0.9em;
  transition: 0.2s ease-in-out;
  cursor: pointer;
}
.card_data span:hover {
  color: #28aea5;
  text-decoration: underline;
}
.text {
  display: flex;
  justify-content: center;
  flex-direction: column;
  margin-left: 0.5em;
  color: white;
}
.text_m {
  font-size: 0.9em;
}
.text_s {
  color: #9147ff;
  font-size: 0.6em;
}
.text_d {
  font-size: 0.7em;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
.cube {
  width: max-content;
  height: 10px;
  transition: all 0.2s;
  transform-style: preserve-3d;
}
.card:hover .cube {
  transform: rotateX(90deg);
}
.side {
  width: max-content;
  height: 1em;
  display: flex;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: bold;
}
.top {
  transform: rotateX(-90deg) translate3d(0, 0, 0em);
}
.front {
  transform: translate3d(0, 0, 1em);
}

}

#fw-section-custom-html-c1e53f94-cd19-4d88-8e47-7e1fc09f3bf1 {

/* @media (min-width: 768px) {
    .center {
        display: flex;
        justify-content: center;
        align-items: center;
    }
} */


.button-becomeamember {
    position: relative;
    margin: auto;
    padding: 12px 18px;
    transition: all 0.2s ease;
    border: none;
    background: none;
    cursor: pointer;
    color: #FCF1EA;
    white-space: nowrap;
}

.button-becomeamember:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    border-radius: 50px;
    background-image: conic-gradient(from 180deg at 50% 50%, #d886f1 0deg, #f1c886 47.07deg, #fab67a 100deg, #fd6464 129.52deg, #ff7ba0 221.65deg, #c17bff 299.6deg, #7434e1 360deg);
    filter: blur(10px);
    width: 45px;
    height: 45px;
    transition: all 0.3s ease;
}

.button-becomeamember span {
    position: relative;
    font-family: "Ubuntu", sans-serif;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #FCF1EA;
}

.button-becomeamember svg {
    position: relative;
    top: 0;
    margin-left: 10px;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke: #FCF1EA;
    stroke-width: 2;
    transform: translateX(-5px);
    transition: all 0.3s ease;
}

.button-becomeamember:hover:before {
    width: 100%;
    filter: blur(10px);
}

.button-becomeamember:hover span {
    text-shadow: 0 0 5px #d69494;
}

.button-becomeamember:hover svg {
    transform: translateX(0);
}

.button-becomeamember:active {
    transform: scale(0.95);
}
}
#fw-section-custom-html-8ce73e5d-7c3c-40b5-9e90-699722709b8b {

$font-stack: 'Source Sans Pro', sans-serif;

$transition: 500ms;

$window-width: 400px;

$window-height: 250px;

$button-color: #ED6A5A;

#age-verify {

  position: fixed;

  top: 0;

  left: 0;

  right: 0;

  bottom: 0;

  background-color: rgba(#000, 0.6);

  transition: $transition;

  .window {

    position: absolute;

    top: 50%;

    left: 50%;

    width: $window-width;

    height: $window-height;

    overflow: hidden;

    padding: 40px;

    margin-left: -($window-width/2);

    margin-top: -($window-height/2);

    background-color: #fff;

    border:6px solid $button-color;

    box-sizing: border-box;

    box-shadow: 0 20px 60px rgba(#000,0.2);

    transition: $transition;

    span {

      display: block;

      text-align: center;

      margin-bottom: 10px;

      font-family: $font-stack;

      &.title {

        color: $button-color;

        font-size: 24px;

      }

    }

    button {

      border: 0;

      margin: 0;

      padding: 0;

      width:48%;

      height:60px;

      color:#FFF;

      font-size: 18px;

      background-color: $button-color;

      margin-top:20px;

      font-family: $font-stack;

      transform:scale(1);

      transition: .2s;

      &.back {

        display:block;

        float:none;

        margin:auto;

        background-color: #fff;

        color:$button-color !important;

        margin-top:20px;

      }

      &.yes {

        float:left;

      }

      &.no {

        float:right;

      }

      &:hover {

        transform:scale(1.1);

        box-shadow: 0 20px 60px rgba(#000,0.2);

        background-color: lighten($button-color,10%);

      }

    }

    .underBox {

      position:absolute;

      width: $window-width;

      height: $window-height;

      padding: 40px;

      top:100%;

      left:0;

      right:0;

      background-color: $button-color;

      transition: $transition;

      box-sizing:border-box;

      * {

        color:#FFF !important;

      }

    }

  }

  &.hidden {

    opacity:0;

    visibility: hidden;

    .window {

      transform:scale(0.5);

    }

  }

  &.under {

    .window .underBox {

      top:0%;

    }

  }

}
}