: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.left .content-width {
  grid-template-columns: 13fr 19fr;
}
.purple-section.right .content-width {
  grid-template-columns: 19fr 13fr;
}
@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;
  }
}

/*
// Introduction Section //
#introduction {
    position: relative;

    .purple-background {
        top: unset;
        bottom: 0px;
        transform: unset;
        height: 35%;
    }

    .content-width {
        position: relative;
        z-index: 2;
        padding: var(--xl) var(--gutter) var(--l);
        max-width: 1000px;

        .heading {
            position: relative;
            z-index: 2;
            text-align: center;
            margin: 0px auto 1em;
            color: var(--secondary);
        }

        svg {
            position: absolute;
            z-index: 1;
            top: -15%;
            right: -15%;
            transform: translateY(var(--xl));
            width: 100%;
            height: auto;
            pointer-events: none;

            // stops horizontal overflow - adding overflow: hidden to the section breaks the placement of purple background
            @media(max-width: 1300px) {
                right: unset;
                left: 40%;
                width: 60% !important;
            }
        }

        .columns {
            position: relative;
            z-index: 2;
            display: grid;
            grid-template-columns: 2fr 3fr;
            gap: var(--l) var(--m);
            width: 100%;
            max-width: 800px;
            margin: 0px auto;
            padding: 0px var(--gutter);

            .image {
                display: block;
                width: 100%;
                height: auto;
                min-height: 100%;

                img {
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                    object-position: center;
                    border-radius: var(--s);
                    box-shadow: 0px 0px 30px -20px black;
                }
            }

            .card {
                position: relative;
                background-color: var(--primary);
                border-radius: var(--s);
                padding: var(--m);
                width: 100%;
                height: auto;
                min-height: 100%;
                box-shadow: 0px 0px 30px -20px black;
                display: grid;
                place-items: center;

                .body {
                    width: 100%;
                    color: var(--secondary);
                }
            }

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

            @media(max-width: variables.$sm_mobile) {
                grid-template-columns: 1fr;
                padding: 25% 0px 0px;
                margin: 0px var(--gutter);
                width: calc(100% - (var(--m) * 2));

                .image {
                    position: absolute;
                    z-index: 1;
                    top: 0px;
                    left: 0px;
                    width: 100%;
                    height: 100%;
                }

                .card {
                    position: relative;
                    z-index: 2;
                    height: auto;
                    min-height: auto;
                    width: 100%;
                    padding: var(--m);
                    display: flex;
                    flex-direction: column;
                    justify-content: flex-end;
                    background-color: transparent;
                    background-image: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.75));
                    box-shadow: none;
                    padding-top: 25%;

                    .body {
                        color: var(--primary);
                    }
                }
            }

            @media(max-width: 410px) {
                margin-left: 0px;
                width: calc(100% - var(--m));
            }
        }

        .text {
            position: relative;
            z-index: 2;
            width: 100%;
            max-width: 800px;
            display: grid;
            place-items: center;
            margin: var(--l) auto var(--m);
            padding: 0px var(--gutter);

            .body {
                color: var(--primary);
            }
        }

        @media(max-width: variables.$mobile) {
            svg {
                width: 80%;
                max-width: 400px;
            }
        }
    }
}
*/
#four-blocks {
  padding-bottom: var(--xl);
}
#four-blocks .content-width .columns {
  max-width: 1400px;
}
#four-blocks .content-width .columns .card .content .subheading {
  min-height: 1em;
}
#four-blocks .content-width .columns .card .content .body {
  font-size: 14px;
}
@media (max-width: 875px) {
  #four-blocks .content-width .columns .card .content .body {
    font-size: 12px;
  }
}

#newsletter {
  padding: var(--xl) var(--gutter) var(--xxl);
}
#newsletter .content-width .heading {
  color: var(--secondary);
  text-align: center;
  margin-bottom: 0.5em;
}
#newsletter .content-width .desc {
  color: var(--secondary-alt);
  margin: 0px auto var(--l);
  text-align: center;
  max-width: 550px;
}
#newsletter .content-width .form-container .form .contact-form .row {
  grid-template-columns: 1fr;
}/*# sourceMappingURL=get-involved.css.map */