
.gradient-orange {
	background: linear-gradient(45deg, #FA4C20, #FF559D, #EA89FF, #47C9FF);
	background-size: 400% 400%;
	animation: gradient 15s ease infinite;
}

.gradient-blue {
	background: linear-gradient(190deg, #1EE5DA, #47C9FF, #EA89FF, #FF559D);
	background-size: 400% 400%;
	animation: gradient 15s ease infinite;
}

@keyframes gradient {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}


/* DESIGN TOKENS & VARIABLES */

:root {
     overscroll-behavior: none;
}



/* BASE & TYPOGRAPHY */

html, body {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.3;
    font-family: "Poppins", sans-serif;
    scroll-behavior: smooth;
}

p {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 16px;
}

h1 {
    font-size: 72px;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
    margin: 0 0 32px 0;
}

h2 {
    font-size: 48px;
    font-weight: 600;
    line-height: 1.2;
    margin: 0 0 24px 0;
}

h3 {
    font-size: 32px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 24px;
    margin: 0 0 16px 0;
}

h4 {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.3;
    margin: 0 0 12px 0;
}

h5 {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.3;
    margin: 0 0 0 0;
}

h6 {
    font-size: 12px;
    font-weight: 600;
    line-height: 1.3;
    margin: 0 0 0 0;
}

.dark {
    color: #fff;
    fill: #fff;
    background-color: #000;
}



/* LAYOUT & GRID */

header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    padding: 16px 32px;
    z-index:9999;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    background-color: transparent!important;
}

.logo {
    filter: invert(1);
}

section, footer {
    width: 100%;
    max-width: 100%;

    display: flex;
    flex-flow: column wrap;
    justify-content: center;
    align-items: center;
    gap: 72px;
    padding: 120px 32px;
}

footer {
    background-color: #000;
    padding: 16px 32px;
    background-position: center top;
    background-repeat: repeat-x;
}

.bg-top {
    background-position: center top;
    background-repeat: repeat-x;
}

.bg-bottom {
    background-position: center bottom;
    background-repeat: repeat-x;
}

.row {
    width: 100%;
    max-width: 1200px;

    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
    gap: 24px;
}

.col {
    flex: 1 1 0;
}


footer .row {
    align-items: flex-start;
}


/* COMPONENTS */

.hero {
    min-height: 100vh;
    background-position: center bottom;
    background-repeat: repeat-x;
}

section img {
    border-radius: 8px;
}

.button-container {
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    align-items: center;
    gap: 24px;
    margin-top: 32px;
}

.button {
    min-height: 44px;
    display: inline-flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    gap: 8px;
    background-color: #000;
    border: solid 1px #000;
    color: #fff;
    fill: #fff;
    border-radius: 4px;
    text-transform: uppercase;
    font-weight: 700;
    padding: 8px 16px;
    line-height:  1;
}

.btn-icon {
    width: 24px;
    height: 24px;
    overflow: hidden;
    display: inline-block;
    flex: 0 0 auto;
}

.btn-icon__track {
    display: flex;
    flex-flow: row nowrap;
    width: 48px;
    height: 24px;
}

.btn-icon__track svg {
    flex: 0 0 24px;
    display: block;
}

.button-inverse {
    background-color: transparent;
    border: solid 1px #000;
    color: #000;
    fill: #000;
}

.dark .button {
    background-color: #fff;
    border: solid 1px #fff;
    color: #000;
    fill: #000;
}

.dark .button-inverse {
    background-color: transparent;
    border: solid 1px #fff;
    color: #fff;
    fill: #fff;
}

.gallery-container {
    width: 100%;
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
    gap: 24px;
}

.gallery-item {
    flex: 1 1 calc(20% - 24px);
}

.gallery-item .gallery-image {
    display: block;
    width: 100%;
}

@media (max-width: 966px) {
    .gallery-item {
        flex: 1 1 calc(50% - 24px);
    }

    .gallery-item:nth-child(n + 5) {
        display: none;
    }
}

details {
    border-bottom: solid 0.5px #000;
    padding: 32px 0;
}

details svg {
  transition: transform 0.3s ease-out;
}

details:open svg {
  transform: rotate(45deg);
}

.dark details {
    border-bottom: solid 0.5px #fff;
}

summary {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

summary h3 {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin: 0;
}

details div {
    padding: 24px 0 0 0;
}



.card-containter {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: stretch;
    gap: 24px;
}

.card {
    flex: 1 1 0;
    display: flex;
    flex-flow: column wrap;
    justify-content: space-between;
    gap: 24px;

    background-color: #f7f7f7;
    padding: 24px;
    border-radius: 8px;
    box-shadow: 0 6px 12px 0 rgba(0, 0, 0, 0.15);
}


.card h3 {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 48px;
    margin-bottom: 24px;
}

.g-list-container {
    margin: 32px 0;
}

.g-list-container li {
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.g-list-container li img {
    border-radius: 0!important;
}

blockquote {
    font-size: 24px;
    text-align: center;
}

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

.quote-tag {
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-top: 32px;
    text-transform: uppercase;
    font-weight: 700; 
}

.quote-nav {
    height: 44px;
    width: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    cursor: pointer;
    background-color: #f7f7f7;
}



/* UTILITIES */

.text-center {
    text-align: center;
}

.text-underline{
    border-bottom: solid 5px #000;
}

.text-uppercase{
    font-weight: 700;
    text-transform: uppercase;
}

.content-center {
    justify-content: center;
}

.button-full {
    width: 100%;
    display: flex;
}

/* OVERRIDES */
.block-override {
    display: block;
    margin: auto;
}

.slick-track
{
    display: flex !important;
    align-items: center;
}

.slick-slide
{
    height: inherit !important;
}

.slick-list {
    max-width: calc(100% - 170px);
}


.box {
    display: block;
    color: #000;
    background-color: #f15f23;
    height: 100px;
    width: 100px;
}



.large-gap {
    gap: 64px;
}

.quote-tag img {
    border-radius: 0;
    height: 44px;
}

.image-overlay {
    position: relative;
    display: inline-block;
    cursor: pointer;


}

.swipe-hover-image {
  position: fixed;
  top: 0;
  left: 0;
  width: 400px;
  height: 250px;
  background-size: cover;
  background-position: center;
  z-index: 9;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  border-radius: 8px;
  transform: rotate(5deg)
}

.flair {
    position: fixed;
    opacity: 0;
    width: 50px;
    pointer-events: none;
}


.large-text {
    font-size: 24px;
}

.text-small {
    font-size: 12px;
}




.mobile {
    display: none;
}

footer .row {
    border-top: solid 0.5px #fff;
    padding-top: 32px;
}

@media (max-width: 769px) {
    section, footer, .row, .card-containter {
        flex-flow: column nowrap;
        gap: 32px;
    }

    .card  {
        margin-bottom: 24px;
    }

    section {
        padding: 64px 16px;
    }

    h1 {
        font-size: 48px;
        font-weight: 700;
        line-height: 1.2;
        text-transform: uppercase;
        margin: 0 0 32px 0;
    }

    h2 {
        font-size: 32px;
        font-weight: 600;
        line-height: 1.2;
        margin: 0 0 24px 0;
    }

    h3 {
        font-size: 32px;
        font-weight: 600;
        line-height: 1.2;
        margin-bottom: 24px;
        margin: 0 0 16px 0;
    }

    h4 {
        font-size: 16px;
        font-weight: 600;
        line-height: 1.3;
        margin: 0 0 12px 0;
    }

    h5 {
        font-size: 16px;
        font-weight: 600;
        line-height: 1.3;
        margin: 0 0 0 0;
    }

    h6 {
        font-size: 12px;
        font-weight: 600;
        line-height: 1.3;
        margin: 0 0 0 0;
    }

    .card h3 {
        text-transform: uppercase;
        font-weight: 700;
        font-size: 32px;
        margin-bottom: 24px;
    }

    summary h3 {
        font-size: 16px;
    }

    .button-container {
        flex-flow: column nowrap;
        gap: 16px;
    }

    .button {
        width: 100%;
    }

    .large-text {
        font-size: 16px;
    }

    blockquote {
        font-size: 16px;
        text-align: center;
    }
    
    .quote-nav {
        display: none!important;
    }

    .slick-list {
        max-width: 100%;
    }


    .desktop {
         display:none;
    }

    .mobile {
        display: block;
    }

    .col {
        width: 100%;
    }

    .card {
        display: block!important;
    }


}


.headshot-container .gallery-item {
    flex: 1 1 calc(16.6% - 24px);
}

.headshot-container {
    align-items: flex-start;
}

@media (max-width: 966px) {
    .headshot-container .gallery-item {
        display: block!important;
    }

     .headshot-container .gallery-item {
        flex: 1 1 calc(33.3% - 24px);
    }
}
