/* --Fonts-- */
@font-face {
    font-family: Lato;
    src: url(../fonts/Lato-Regular.ttf);
    font-weight: 400;
}

@font-face {
    font-family: Lato;
    src: url(../fonts/Lato-Italic.ttf);
    font-weight: 400;
    font-style: italic;
}

@font-face {
    font-family: Lato;
    src: url(../fonts/Lato-Regular.otf);
}

@font-face {
    font-family: Lato;
    src: url(../fonts/Lato-Bold.ttf);
    font-weight: 700;
}

@font-face {
    font-family: Lato;
    src: url(../fonts/Lato-BoldItalic.ttf);
    font-weight: 700;
    font-style: italic;
}


/* --Variables-- */
:root {
    --teal: #068587;
    --mint: #A0D3CB;
    --lightmint: #E0F1EE;
    --dark: #191A1E;
    --lightgrey-25: rgba(217, 217, 217, .2);
    --white: #FFFFFF;
}


/* --Foundation-- */
* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    position: relative;
    margin: 0;
    font-family: Lato;
    font-style: normal;
    font-size: 16px;
    box-sizing: border-box;
}

#wrapper {
    overflow: hidden;
}

figure {
    box-sizing: border-box;
    line-height: 0;
    border-radius: 4px;
    overflow: hidden;
}

img {
    width: 100%;
    line-height: 0;
    border-radius: 4px;
}

em, i {
    font-style: italic;
}

strong, b {
    font-weight: bold;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    font-weight: 700;
}

h1 {
    font-weight: 600;
    min-height: 50px;
    display: flex;
    align-items: center;
}

h2 {
    font-size: 2.25em;
    margin: 50px 0 20px 0;
}

h3 {
    font-size: 1.65em;
    line-height: 1;
    opacity: .9;
    margin-bottom: 30px;
}

h4 {
    font-size: 1.3em;
    margin-bottom: 5px;
}

h5 {
    margin-bottom: 20px;
    font-weight: 600;
}

h6 {
    margin-bottom: 20px;
}

p {
    line-height: 1.5;
    opacity: .7;
    font-weight: 300;
    margin-bottom: 20px;
}

li {
    list-style: disc;
    opacity: .7;
    margin-bottom: 5px;
    margin-left: 20px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color .2s, transform .3s;
    font-weight: 700;
}

a:hover {
    color: var(--teal);
}

a.list-link {
    font-weight: 700;
    text-decoration: underline;
}

button {
    padding: 15px 30px;
    border-radius: 100px;
    border: none;
    font-family: Lato;
    font-size: 1em;
    background-color: var(--teal);
    color: var(--white);
    cursor: pointer;
    transition: all .3s;
}

button span {
    display: inline-block;
    transition: transform .3s;
}

button:hover span {
    transform: translateX(5px);
}

button:hover {
    background-color: var(--mint);
    color: var(--dark);
    border: none;
}

.btn-secondary {
    position: relative;
    margin: 20px 0 0 0;
    padding: 0;
    background: transparent;
    color: var(--dark);
    opacity: .9;
    border-radius: none;
    font-weight: 600;
    border: none;
}

.btn-secondary::after {
    content: '';
    border-bottom: 1px solid var(--dark);
    width: 0;
    position: absolute;
    bottom: -5px;
    left: 0;
    transition: all .2s;
}

.btn-secondary:hover {
    background-color: transparent;
    color: var(--dark);
    border: none;
}

.btn-secondary:hover span {
    transform: translateX(5px);
}

.btn-secondary:hover::after {
    width: 104%;
}

section {
    position: relative;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    padding: 25px 10%;
}

section:first-of-type {
    padding-top: inherit;
}

article {
    box-sizing: border-box;
}

@media only screen and (min-width: 1024px) {
    body {
        font-size: 16px;
    }

    h2 {
        font-size: 3.525em;
    }

    h3 {
        font-size: 2.25em;
    }
}

@media only screen and (min-width: 1500px) {
    body {
        font-size: 18px;
    }
}


/* --Heading & Navigation-- */
header {
    box-sizing: border-box;
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 10px 30px;
    z-index: 998;
    font-size: 1.1em;
    border-radius: 20px;
    min-height: 80px;
}

header img {
    height: 30px;
    width: auto;
}

#header-blur {
    position: fixed;
    top: 0;
    height: 80px;
    padding: 10px 30px;
    width: 100%;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    background-color: rgba(255, 255, 255, .75);
    z-index: 996;
    box-sizing: border-box;
}

/*Mobile menu button animation*/
.mobile-nav-input {
    display: none;
}

.menu--1 label {
    display: block;
    cursor: pointer;
    position: fixed;
    width: 25vw;
    height: 25vw;
    max-width: 80px;
    max-height: 80px;
    top: 0;
    right: 0;
    z-index: 998;
    padding: 0 10px;
    mix-blend-mode: difference;
}

.menu--1 path {
    fill: none;
    stroke: var(--white);
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
    --length: 24;
    --offset: -38;
    stroke-dasharray: var(--length) var(--total-length);
    stroke-dashoffset: var(--offset);
    transition: all .8s cubic-bezier(.645, .045, .355, 1);
}

.menu--1 circle {
    fill: #fff3;
    opacity: 0;
}

.menu--1 label:hover circle {
    opacity: 1;
}

.cross input:checked+svg .line--1,
.cross input:checked+svg .line--3 {
    --length: 22.627416998;
}

.cross input:checked+svg .line--2 {
    --length: 0;
}

.back input:checked+svg .line--1,
.back input:checked+svg .line--3 {
    --length: 8.602325267;
}


.menu--1 .line--1,
.menu--1 .line--3 {
    --total-length: 126.64183044433594;
}

.menu--1 .line--2 {
    --total-length: 70;
}

.menu--1 input:checked+svg .line--1,
.menu--1 input:checked+svg .line--3 {
    --offset: -94.1149185097;
}

.menu--1 input:checked+svg .line--2 {
    --offset: -50;
}

nav a {
    margin-right: 0;
    margin-bottom: 35px;
}

nav a:last-of-type {
    margin-right: 0;
}

nav {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    right: -110%;
    flex-direction: column;
    z-index: 997;
    height: 100vh;
    width: 100vw;
    background-color: #191A1E;
    transition: right 1s;
    font-size: 2em;
    opacity: 1;
    color: white;
    font-weight: 700;
}

.show-nav-mob {
    right: 0;
}

.overflow-mob {
    width: 110%;
}

@media screen and (min-width: 1024px) {
    header {
        min-height: 50px;
    }

    #header-blur {
        min-height: 50px;
    }

    header img {
        height: 50px;
        width: auto;
    }

    .menu--1 {
        display: none;
    }

    nav {
        min-height: 50px;
        right: 0;
        padding: 10px 30px;
        background-color: transparent;
        z-index: 999;
        height: auto;
        width: auto;
        flex-direction: row;
        font-size: 1em;
        color: #191A1E;
    }

    .show-nav-mob {
        right: 0;
    }

    nav a {
        margin-right: 35px;
        margin-bottom: 0;
    }

    nav a:last-of-type {
        margin-right: 0;
    }

    .overflow-mob {
        width: 40%;
    }
}

/* -- LANDING PAGE -- */
/* -- Hero Section -- */
#hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100vh;
    padding-bottom: 0;
}

#hero article {
    width: 100%;
    max-width: 650px;
}

#circle-wrapper {
    width: 70%;
    aspect-ratio: 1/1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    right: -15%;
    bottom: -25%;
    border-radius: 100%;
    z-index: -1;
}

#outer-circle {
    width: 100%;
    aspect-ratio: 1/1;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    background-color: var(--lightmint);
    box-shadow: inset -5px -5px 9px rgba(240, 240, 240, 0.35), inset 5px 5px 9px rgba(94,104,121,0.2);
}

#middle-circle {
    width: 90%;
    aspect-ratio: 1/1;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    background-color: var(--mint);
}

#inner-circle {
    width: 90%;
    aspect-ratio: 1/1;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    background-color: var(--teal);
}

#circle-wrapper figure {
    width: 90%;
    aspect-ratio: 1/1;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    overflow: hidden;
}

#circle-wrapper video {
    height: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    overflow: hidden;
}

@media screen and (min-width: 380px) {
    #circle-wrapper {
        width: 80%;
        right: -15%;
        bottom: -15%;
    }
}

@media screen and (min-width: 700px) {
    #hero {
        min-height: 75vh;
    }

    #hero article {
        width: 50%;
    }

    #circle-wrapper {
        width: 55%;
        right: -15%;
        top: 200px;
    }
}

@media handheld and (min-width: 1024px), (orientation: landscape)  {
    #hero {
        min-height: 85vh;
    }

    #hero article {
        width: 50%;
    }
}

@media screen and (min-width: 1025px) {
    #hero {
        min-height: 85vh;
    }

    #hero article {
        width: 50%;
    }
}


/* --Projects Section--*/
#projects {
    padding-right: 0;
    padding-top: 0;
}

#projects .glide__track, .glide, .glide__slides{
    overflow-y: visible !important;
    padding-top: 10px !important;
}

#projects .glide__slide {
    padding: 30px;
    background-color: var(--lightgrey-25);
    border-radius: 4px;
    height: auto !important;
    transition: .3s;
}

#projects .glide__slide li {
    display: flex;
    flex-direction: column;
    height: 100%;
    margin: 0;
    opacity: 1;
}

#projects .glide__slide p:last-of-type {
    flex: 1;
    display: flex;
    align-items: flex-end;
    margin: 0;
}

#projects a.glide__slide:hover {
    color: inherit;
    transform: translateY(-10px);
}

#projects a.glide__slide:hover .projects-learn-more span {
    transform: translateX(5px);
}

#projects .glide__slide img {
    margin-bottom: 15px;
}

#projects .glide__slide h4 {
    margin-bottom: 20px;
}

#projects .glide__slide h4 span {
    display: block;
    font-size: .85em;
    margin-top: 7px;
}

.projects-learn-more {
    font-weight: bold;
}

.projects-learn-more span {
    margin-left: 5px;
    display: inline-block;
    transition: .3s;
}

.glide__arrow {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    color: var(--dark);
    padding: 0;
    font-size: 1.85em;
    line-height: 0;
    position: absolute;
    top: 0;
    bottom: 0;
    background-color: white;
    border-radius: 100%;
    height: 50px;
    width: 50px;
    box-shadow: -5px -5px 9px rgba(240,240,240,0.35), 5px 5px 9px rgba(94,104,121,0.2);
}

.glide__arrow--left {
    left: -5%;
}

.glide__arrow--left:hover span {
    transform: translate(-5px);
}

.glide__arrow--right {
    right: 5%;
}


/* --Spaces Section --*/
#spaces {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

#spaces article {
    width: 100%;
}

#spaces h4 {
    margin: 10px 0;
}

@media screen and (min-width: 1024px) {
    #spaces {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    #spaces h3 {
        width: 100%;
    }

    #spaces article {
        width: 30%;
    }
}

/* --History Section --*/
#history {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#history iframe {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 4px;
    overflow: hidden;
}

#history article {
    width: 100%;
}

@media screen and (min-width: 1024px) {
    #history {
        flex-direction: row-reverse;
    }

    #history iframe {
        width: 50%;
        margin-right: 2%;
    }

    #history article {
        width: 50%;
        padding-left: 2%;
    }
}


/* --News Section --*/
#news {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

#news h3 {
    width: 100%;
}

#news figure {
    width: 100%;
}

#news article {
    width: 100%;
}

@media screen and (min-width: 1024px) {
    #news {
        flex-direction: row;
    }

    #news figure {
        width: 50%;
        padding-left: 2%;
    }

    #news article {
        width: 50%;
        padding-right: 2%;
    }
}



/* --Research Section --*/
#output {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#output div {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#output div #bg-decoration {
    position: absolute;
    width: 70%;
    aspect-ratio: 1/1;
    background-color: var(--lightgrey-25);
    z-index: -1;
    border-radius: 50px;
    transform: rotate(-32deg);
    box-shadow: inset -5px -5px 9px rgba(240, 240, 240, 0.35), inset 5px 5px 9px rgba(94,104,121,0.2);
}

#output div figure {
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

#output article {
    width: 100%;
}

@media screen and (min-width: 1024px) {
    #output {
        flex-direction: row-reverse;
    }

    #output div {
        width: 50%;
        flex-direction: row;
        padding-right: 2%;
    }

    #output div figure {
        width: 50%;
        box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    }

    #output div figure:first-of-type {
        transform: translate(10%, -30%);
    }

    #output div figure:last-of-type {
        transform: translate(-10%, 30%);
    }

    #output article {
        width: 50%;
        padding-left: 2%;
    }
}


/* --Team Section --*/
#team {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    color: var(--white);
    margin-top: 10%;
    background-image: url(../img/ell-team.jpg);
    background-size: cover;
    background-position: center right;
    padding: 5% 10%;
}

#team .btn-secondary {
    color: var(--white);
}

#team .btn-secondary::after {
    border-bottom: 1px solid var(--white);
}

#team div {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-image: linear-gradient(to right, rgba(0,0,0,.95), rgba(0,0,0,.6));
}

#team article {
    width: 100%;
    max-width: 700px;
}


/* --Fact Blocks-- */
.fact-cont img {
    width: 80px;
  }

  .fact-container {
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    box-sizing: border-box;
    padding: 60px 24px;
    transform: scale(0);
    transition: all 0.5s ease 0.25s;
  }

  .fact-container:last-of-type {
    margin-bottom: 100px;
  }

  .fact-text {
    width: 100%;
    max-width: 1000px;
    text-align: center;
    line-height: 1.5;
    padding: 10px;
    color: rgba(0,0,0,.4)
  }

  .burst {
    width: 100%;
    max-width: 900px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
  }

  .burst img {
    width: 80px;
    border-radius: 100%;
    background-color: var(--dark);
    padding: 16px;
    animation: pulse 3s infinite;
  }

  .line {
    height: 1px; 
    flex: 1;
    background-color: #191A1E;
    margin: 0 24px;
  }

  .fact-container.animate {
    transform: scale(1);
  }



/* -- PROJECTS PAGE -- */
#projects-page {
    padding-top: 50px;
}

#projects-page #sub-nav {
    margin-top: 20px;
    margin-bottom: 50px;
}

#projects-page #sub-nav a {
    display: inline-block;
    margin-right: 5%;
    margin-bottom: 20px;
}

#projects-page #sub-nav a span {
    display: inline-block;
    position: relative;
    top: -2px;
    color: var(--teal);
}

#projects-page article {
    padding: 5%;
    margin-bottom: 100px;
    border-radius: 20px;
    box-shadow: inset -5px -5px 9px rgba(240, 240, 240, 0.35), inset 5px 5px 9px rgba(94,104,121,0.2);
}

#projects-page h5 {
    font-size: 1.4em;
}

#projects-page p, #projects-page ul {
    max-width: 900px;
}

#projects-page article ul {
    list-style-type: disc;
}

#projects-page article a {
    font-weight: 400;
    opacity: .7;
}

#projects-page article ul li {
    margin-left: 25px;
    margin-bottom: 10px;
}

.example-selection {
    display: flex;
    flex-direction: column-reverse;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 5%;
    margin: 7% 0;
    background-color: var(--lightgrey-25);
    border-radius: 20px;
    box-shadow: inset -5px -5px 9px rgba(240, 240, 240, 0.35), inset 5px 5px 9px rgba(94,104,121,0.2);
}

.example-selection div {
    width: 100%;
}

.example-selection figure {
    width: 100%;
    margin-bottom: 25px;
}

@media screen and (min-width: 1025px) {
    .example-selection {
        flex-direction: row;
        padding: 3%;
        margin: 3% 0;
    }

    .example-selection div {
        width: 47.5%;
    }
    
    .example-selection figure {
        width: 47.5%;
        margin-bottom: 0;
    }
}



/* -- HISTORY PAGE -- */
#history-page {
    padding-top: 50px;
    padding-bottom: 3%;
}

#history-page section {
    padding-bottom: 0;
}

#timeline {
    margin: 30px 0;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

#line {
    width: 100%;
    background-color: #B0B0B0;
    height: 5px;
    position: absolute;
    z-index: -1;
}

#fill-line {
    width: 0%;
    background-color: var(--teal);
    height: 5px;
    position: absolute;
    z-index: 0;
    transition: .3s linear;
}

.dot {
    height: 15px;
    width: 15px;
    border-radius: 100%;
    background-color: #B0B0B0;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.dot span {
    position: absolute;
    bottom: -35px;
    font-size: 16px;
}

.active-dot {
    background-color: var(--teal);
}

.current-dot {
    animation: pulse 3s infinite;
}

.current-dot span {
    color: var(--teal);
    font-weight: 600;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0px rgba(160, 211, 203, 1);
      }
      100% {
        box-shadow: 0 0 0 20px rgba(160, 211, 203, 0);
      }
}

.current-dot::before {
    display: block;
    content: '';
    height: 35px;
    width: 35px;
    border-radius: 100%;
    background-color: var(--lightmint);
    position: absolute;
    z-index: -1;
}

.current-dot::after {
    display: block;
    content: '';
    height: 25px;
    width: 25px;
    border-radius: 100%;
    background-color: var(--mint);
    position: absolute;
    z-index: -1;
    animation: pulse2 3s infinite;
}

@keyframes pulse2 {
    0% {
        box-shadow: 0 0 0 0px rgba(224, 241, 238, 1);
      }
      100% {
        box-shadow: 0 0 0 20px rgba(224, 241, 238, 0);
      }
}

#info-wrapper {
    position: relative;
}

.timeline-info {
    display: flex;
    flex-direction: column-reverse;
    padding: 0;
    margin: 0;
    padding-top: 50px;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.timeline-info:first-of-type {
    opacity: 1;
    padding-top: 50px;
}

.position-relative {
    position: relative;
}

.timeline-info h3 {
    font-size: 1em;
    color: var(--teal);
    margin: 0;
}

.timeline-info h4 {
    font-size: 1.2em;
    margin: 20px 0;
}

.timeline-info .timeline-carousel {
    padding: 0;
    border-radius: 4px;
}

.timeline-carousel div {
    border-radius: 4px;
}

.timeline-carousel ul li {
    margin: 0 !important;
    opacity: 1 !important;
    border-radius: 4px;
}

.timeline-carousel .glide__track, .glide, .glide__slides{
    padding-top: 0 !important;
}

.timeline-info figure {
    overflow: visible;
    margin-bottom: 30px;
}

.timeline-info figure img {
    border-radius: 4px;
    border: 1px solid lightgray;
}

.timeline-info article {
    margin-bottom: 20px;
}

.timeline-info figcaption {
    margin-top: 20px;
    font-size: .8em;
    color: var(--dark);
    opacity: .75;
}

.timeline-info ul li {
    list-style-type: none;
    margin: 10px 0;
}

.timeline-info ul li span {
    font-weight: 600;
    font-size: .9em;
}

#progress-btns {
    position: absolute;
    right: 10%;
    bottom: -1%;
}

#progress-btns button {
    display: inline-block;
    padding: 0;
    height: 40px;
    width: 40px;
    margin-top: 20px;
}

#progress-btns button.inactive {
    pointer-events: none;
    opacity: .3;
}



@media screen and (min-width: 1024px) {


    .timeline-info {
        flex-direction: row;
        justify-content: space-between;
    }

    .timeline-info .timeline-carousel {
        width: 43%;
    }
    
    .timeline-info article {
        width: 55%;
    }

    #history-page img {
        display: inline;
    }
}



/* -- RESEARCH OUTPUT PAGE -- */
#output-page {
    padding-top: 50px;
}

#output-page #sub-nav {
    margin-top: 20px;
    margin-bottom: 50px;
}

#output-page #sub-nav a {
    display: inline-block;
    margin-right: 5%;
    margin-bottom: 20px;
}

#output-page #sub-nav a span {
    display: inline-block;
    position: relative;
    top: -2px;
    color: var(--teal);
}

#output-page article {
    padding: 5%;
    margin-bottom: 100px;
    border-radius: 20px;
    box-shadow: inset -5px -5px 9px rgba(240, 240, 240, 0.35), inset 5px 5px 9px rgba(94,104,121,0.2);
}

#output-page article h4 {
    margin-top: 50px;
    margin-bottom: 15px;
}



/* -- PEOPLE PAGE -- */
#people-page {
    padding-top: 50px;
}

#people-page article {
    padding: 0 5%;
    max-width: 2000px;
    margin: 20px auto;
    width: 100%;
}

#people-page .matey {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    margin: 100px 0;
}

#people-page .matey:first-of-type {
    margin: 50px 0 100px 0;
}

#people-page #circle-wrapper {
    width: 100%;
    aspect-ratio: 1/1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: initial;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    margin-bottom: 25px;
}

#people-page .matey p {
    width: 100%;
}

#people-page .matey p span {
    font-weight: bold;
    font-size: 1.25em;
    color: var(--teal);
}

#people-page .people-flex {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin-bottom: 50px;
}

#people-page .people-flex img {
    max-width: 200px;
    margin-bottom: 25px;
}

#people-page .people-flex p {
    flex: 1;
}

@media only screen and (min-width: 1024px) {
    #people-page .matey {
        flex-direction: row;
    }

    #people-page #circle-wrapper {
        width: 35%;
        margin-bottom: 0;
    }
    
    #people-page .matey p {
        width: 60%;
    }

    #people-page .people-flex {
        flex-direction: row;
    }

    #people-page .people-flex img {
        margin-right: 50px;
        margin-bottom: 0;
    }
}


/* -- SUPPORT PAGE -- */
#support-page {
    padding-top: 50px;
    overflow: hidden;
    width: 100%;
}

#support-page article p {
    margin-bottom: 50px;
    max-width: 900px;
}

#support-page div {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

#support-page article section {
    padding: 0;
    width: 30%;
    border-radius: 20px;
    box-shadow: inset -5px -5px 9px rgba(240, 240, 240, 0.35), inset 5px 5px 9px rgba(94,104,121,0.2);
    padding: 40px;
    background-color: #ffffff;
}

#support-page article section h3 {
    font-size: 1.5em;
}

#support-page article section p {
    margin-bottom: 15px;
    font-size: .95em;
}

#support-page #circle-wrapper * {
    justify-content: center;
    align-items: center;
    z-index: -9;
}

#support-page #outer-circle, #support-page #middle-circle, #support-page #inner-circle {
    opacity: .5;
}

#support-page #circle-wrapper #white-circle {
    background-color: white;
    height: 90%;
    width: 90%;
    border-radius: 100%;
    opacity: 1;
}
