@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
    --corners:10px;
}
h1,h2,h3,h4,h5 {
    letter-spacing: -0.025em;
    line-height: 105%!important;
}

/* Nav & Stuff */

.wrapper{
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
    height: 100%;
    width: 100%;
}
nav{
    top: 0;
    width: 100%;
    z-index: 101;
}
.main-logo{
    height: 65px;
}
.main-menu {
    display: flex;
    list-style-type: none;
    margin: 0;
    padding: 0;
    justify-content: end;
    gap: 2em;
    align-items: center;
    transition: all 0.5s ease;
}
.main-menu li a {
    text-decoration: none;
    font-weight: 700;
    color: var(--bs-dark);
    letter-spacing: -0.025em;
}
.action-button i{
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    color: white;
}
.mobile-buttons {
    position: relative;
    z-index: 100;
}
.action-button{
    border: 0px;
    background: blue;
    display: inline-block;
    margin: 0;
    padding: 0;
    text-align: center;
    border-radius: 5px;
    box-shadow: 3px 4px 8px rgba(0,0,0,0.2);
}
@media screen and (max-width: 768px){
    nav {
        position: fixed;
        background-color: #ffffff;
    }
    nav + *{
        margin-top: 110px;
    }
    .main-logo{
        height: 50px;
    }
    .main-menu{
        position: absolute;
        height: 130vh;
        top: -15vh;
        right: 0;
        justify-content: center;
        align-items: end;
        z-index: 99;
        background: #232323;
        flex-direction: column;
        gap: unset;
        padding: 0 2em 0 3em;
        transform: translateX(100%);
        isolation: isolate;
    }
    .main-menu.active {
        transform: translateX(0%);
        right: -1em;
    }
    .main-menu li {
        padding: 2.5px 0px;
        text-align: right;
    }
    .main-menu li a {
        font-size: 22px;
        font-weight: 800;
        color: white
    }
}

/* Header / Hero */

.home-header h1 {
    position: relative;
}
.home-header h1:before {
    content: '';
    position: absolute;
    top: -25px;
    left: -100px;
    width: 300px;
    height: 300px;
    background-color: var(--bs-secondary);
    opacity: 0.15;
    border-radius: 52% 48% 26% 74% / 40% 68% 32% 60% ;
    z-index: -1;
}
.hero-section .hero-img-container {
    border-radius: var(--corners);
    overflow: hidden;
    position: relative;
    display: block;
}
.hero-section .hero-img-container img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.hero-section .hero-img-container.big {
    height: 475px;
}
.hero-section .hero-img-container.small {
    height: 175px;
}
.hero-img-container.small + .small {
    margin-top: 16px;
}
@media screen and (max-width: 768px){
.hero-section .hero-img-container.big {
    height: 175px;
}
.hero-section .hero-img-container.small {
    height: 175px;
    width: calc(50% - 8px);
    float: left;
    margin: 0;
}
.hero-img-container.small + .small {
    margin-left: 16px;
}
}
.hero-img-container p {
    position: absolute;
    padding: 1em;
    z-index: 10;
    bottom: 0;
    left: 0;
    margin: 0;
    font-weight: 800;
    font-size: 20px;
    line-height: 24px;
    letter-spacing: -0.025em;
    color: #ffffff;
}
.hero-img-container p:after {
    position: absolute;
    width: 100%;
    height: 100%;
    content: '';
    background-color: #000000;
    filter: blur(15px);
    top: 0;
    left: 0;
    z-index: -1;
    opacity: 0.7;
}
.logo-carousel {
    position:relative;
    overflow:hidden;
    --offset: 20vw;
    --move-initial: calc(-25% + var(--offset));
    --move-final: calc(-50% + var(--offset))
}
.logos-inner {
    width:fit-content;
    position:relative;
    transform:translate3d(var(--move-initial),0,0);
    animation:marquee 50s linear infinite;
    animation-play-state:running;
    display:flex
}
.all-logos {
    display:flex
}
@keyframes marquee{
    0%{
        transform:translate3d(var(--move-initial),0,0)
    }
    100%{
        transform:translate3d(var(--move-final),0,0)
    }
}
.logo-carousel {
    padding:1.65rem 0
}
.logo-carousel img{
    background-color: #ffffff;
    height:80px;
    margin: 0 10px;
    padding: 0.5em;
    border-radius: var(--corners);
}
@media screen and (max-width:960px){
    .logo-carousel img{
        max-height: 62px;
        padding: 0.15em;
    }
}

/* Reviews Section */

.home-reviews {
    z-index: 5;
    position: relative;
}
.home-reviews .card {
    box-shadow: 0px 8px 28px -6px rgba(24, 39, 75, 0.12),
    0px 18px 88px -4px rgba(24, 39, 75, 0.14);
}
.review i {
    color: var(--bs-secondary);
}

/* Join FP Section */

.join-fp {
    position: relative;
    margin-top: -300px;
}
.join-fp .container {
    position: relative;
    margin-top: -200px;
}
.join-fp > img {
    width: 100%;
}
.join-fp img {
    pointer-events: none;
}
@media screen and (max-width: 1400px){
    .join-fp {
        margin-top: -100px;
    }
    .join-fp .container {
        margin-top: -50px;
    }
}
@media screen and (max-width: 768px){
    .join-fp {
        margin-top: 0;
    }
    .join-fp .container {
        margin-top: 0;
    }
}

/* Footer & Copyright */

footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
footer ul li a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 700;
    line-height: 180%;
}
footer ul li a:hover {
    color: #ffffff;
}
footer i {
    color: var(--bs-secondary);
    margin-top: 30px;
    margin-left: 15px;
    transition: ease-in-out 0.2s;
}
@media screen and (max-width: 768px){
    footer i {
        margin: 0;
        margin-top: 15px;
        margin-right: 15px;
    }
}
footer i:hover {
    color: #ffffff;
}
.copy-bar {
    background-color: #000000;
}
.copy-bar a {
    text-decoration: none;
    color: #ffffff;
}
.copy-bar a:hover {
    color: #ffffff;
}
.extra-links a:after {
    content: '|';
    padding: 0px 7px 0px 11px;
}
.extra-links a:last-of-type:after {
    display: none;
}

/* Consumer Rewards */

.consumer-header .card {
    padding: 4em;
    z-index: 1;
}
.sick-phones {
    height: 100%;
    position: absolute;
    width: auto;
    left: 50%;
    transform: translateX(-50%) scale(1.3);
}
.consumer-header ul {
	list-style-type: none;
	text-decoration: none;
	padding: 0;
}
.consumer-header ul li {
    line-height: 1.1em;
    font-weight: 600;
    position: relative;
    padding-right: 25px;
    margin: 10px 0px;
}
.consumer-header ul li:after {
    position: absolute;
    right: 0;
    top: 5px;
    font-size: 8px!important;
    content: '\f111';
    font: var(--fa-font-solid);
    display: inline-block;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    color: var(--bs-secondary);
    margin-left: 15px;
}
@media screen and (max-width: 1200px){
    .sick-phones {
        transform: translateX(-50%) scale(1);
        width: 33%;
        height: auto
    }

}
@media screen and (max-width: 992px){
    .sick-phones {
        transform: translateX(0%) scale(1.6);
        width: 25%;
        height: auto;
        left: 75%;
        top: 40px;
        z-index: -1;
    }
    .consumer-header{
        overflow: hidden;
    }
}
@media screen and (max-width: 768px){
    .consumer-header .card {
        padding: 2em;
    }
    .sick-phones {
        opacity: 0.1;
        transform: translateX(0%) scale(1.2);
        width: 55%;
        height: auto;
        left: 50%;
        top: 40px;
        z-index: -1;
    }
    .consumer-header ul li {
        padding-left: 25px;
    }
    .consumer-header ul li:after {
        left: 0;
        margin-right: 15px;
        margin-left: 0;
    }
}

/* Login Page */

.login-container a {
    text-decoration: none;
}
.login-container img {
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
    max-height: 70vh;
}
.login-container ul {
	list-style-type: none;
	text-decoration: none;
	padding: 0;
}
.login-container ul li {
    line-height: 1.1em;
    font-weight: 600;
    position: relative;
    padding-left: 25px;
    margin: 10px 0px;
}
.login-container ul li:after {
    position: absolute;
    left: 0;
    top: 5px;
    font-size: 8px!important;
    content: '\f111';
    font: var(--fa-font-solid);
    display: inline-block;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    color: var(--bs-dark);
    margin-right: 15px;
}

/* Members Area */

.members-nav ul li {
    list-style-type: none;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: -0.025em;
    border-radius: 5px;
}
.members-nav i {
    font-size: 18px;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    margin-right: 10px;
}
.nav-pills .nav-link {
    background-color: #F0F0F0;
    margin-right: 20px;
}
table {
    border-radius: 5px;
}
table tbody {
    background-color: #F0F0F0;
}
table td {
    font-weight: 600;
}