:root {
  --primary: #fefdff;
  --primary-alt: #e4c9ff;
  --primary-alt2: #faf6ff;
  --secondary: #08040b;
  --secondary-alt: #382f3d;
  --secondary-alt2: #bcbcbc;
  --accent: #732e9b;
  --accent-alt: #b270d7;
  --content-width: 1600px;
  --xxl: 200px;
  --xl: 100px;
  --l: 50px;
  --m: 30px;
  --s: 20px;
  --xs: 10px;
  --gutter: 30px;
}
@media (max-width: 875px) {
  :root {
    --xxl: 100px;
    --xl: 50px;
    --l: 25px;
    --m: 15px;
    --s: 10px;
    --xs: 5px;
    --gutter: 15px;
  }
}

.purple-section {
  position: relative;
  padding: var(--xl) var(--gutter);
  overflow: hidden;
}
.purple-section .content-width {
  position: relative;
  z-index: 2;
  display: grid;
}
.purple-section .content-width .image-container {
  width: 100%;
  max-width: 650px;
  height: 100%;
  display: grid;
  place-items: center;
}
.purple-section .content-width .image-container .image {
  width: 100%;
  max-width: 650px;
  height: 100%;
  max-height: 650px;
}
.purple-section .content-width .image-container .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: var(--m);
  box-shadow: 0px 0px 30px -25px black;
}
.purple-section .content-width .image-container .default-image {
  width: auto;
  height: auto;
  max-width: 100%;
}
.purple-section .content-width .image-container .default-image img {
  width: auto;
  height: auto;
  max-width: 100%;
}
.purple-section .content-width .text-container {
  width: 100%;
  padding: var(--xl) var(--l);
  display: grid;
  place-items: center;
}
.purple-section .content-width .text-container .text-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.purple-section .content-width .text-container .text-content .heading {
  color: var(--primary);
  margin-bottom: var(--l);
  max-width: 90%;
}
.purple-section .content-width .text-container .text-content .text {
  color: var(--primary);
}
.purple-section .content-width .text-container .text-content .button-container {
  margin-top: var(--l);
}
.purple-section.left .content-width {
  grid-template-columns: 13fr 19fr;
}
.purple-section.left .content-width .text-container {
  order: 2;
}
.purple-section.left .content-width .image-container {
  order: 1;
}
.purple-section.right .content-width {
  grid-template-columns: 19fr 13fr;
}
.purple-section.right .content-width .text-container {
  order: 1;
}
.purple-section.right .content-width .image-container {
  order: 2;
}
@media (max-width: 875px) {
  .purple-section .content-width {
    grid-template-columns: 1fr !important;
    place-items: center;
  }
  .purple-section .content-width .text-container,
  .purple-section .content-width .image-container {
    max-width: 500px;
  }
  .purple-section .content-width .text-container {
    order: 1;
    padding-bottom: var(--l);
    width: calc(100% - var(--gutter));
  }
  .purple-section .content-width .text-container .text-content .heading {
    max-width: 100%;
    font-size: 23px;
  }
  .purple-section .content-width .image-container {
    order: 2;
  }
  .purple-section.left .content-width .text-container {
    margin-right: auto;
  }
  .purple-section.right .content-width .text-container {
    margin-left: auto;
  }
}

/*
#ambassadors {
    padding: var(--xxl) var(--gutter);

    .content-width {
        .text {
            width: 100%;
            height: auto;
            margin-bottom: var(--l);

            .heading {
                color: var(--secondary);
                margin-bottom: var(--s);
                text-align: center;
            }

            .body {
                color: var(--secondary-alt);
                text-align: center;
                max-width: 50em;
                margin: 0px auto;
            }
        }

        .ambassadors {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 1em;
            flex-wrap: wrap;
            font-size: 14px;
            max-width: 85em;
            margin: 0px auto;

            @media(max-width: variables.$mobile) {
                font-size: 12px;
            }

            .ambassador {
                position: relative;
                display: block;
                font-size: inherit;
                width: 12em;
                max-width: 47%; // maintains two per line on mobile
                height: auto;
                aspect-ratio: 1;
                border-radius: 1em;
                overflow: hidden;
                box-shadow: 0px 0px 1em -0.85em black;

                span {
                    position: absolute;
                    z-index: 3;
                    left: 50%;
                    bottom: 1em;
                    translate: -50% 50%;
                    width: 95%;
                    height: auto;
                    text-align: center;
                    color: var(--primary);
                    font-size: inherit;
                    text-transform: capitalize;
                    font-weight: 600;
                    opacity: 0;
                    transform: translateY(1em);
                    transition: opacity 0.3s, transform 0.3s;
                }

                &::after {
                    content: "";
                    position: absolute;
                    z-index: 2;
                    top: 0px;
                    left: 0px;
                    width: 100%;
                    height: 100%;
                    background-image: linear-gradient(to bottom, transparent 50%, var(--accent) 100%);
                    opacity: 0;
                    transition: opacity 0.3s;
                    pointer-events: none;
                }

                .photo {
                    position: relative;
                    z-index: 1;
                    display: block;
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                    object-position: center;
                }

                &:hover {
                    span {
                        opacity: 1;
                        transform: translateY(0px);
                    }

                    &::after {
                        opacity: 0.5;
                    }
                }

                @media(max-width: variables.$sm_mobile) {
                    span {
                        opacity: 1;
                        transform: translateY(0px);
                    }

                    &::after {
                        opacity: 0.5;
                    }
                }
            }
        }
    }
}
*//*# sourceMappingURL=about.css.map */