:root {
    --primary-color: #0cb1ff;
    --secondary-color: #9c08ff;
    --breakpoint: 600px;
}

* {
    font-family: 'Nunito', sans-serif;
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
    padding: 60px 0 0;
    margin: 0;
}

.container {
    width: 100vw;
}

h1 {
    margin: 80pt 0;
    font-weight: 900;
    font-size: 64pt;
    line-height: 1;
    background-image: linear-gradient(to right, #0cb1ff, #9c08ff);
    background-clip: text;
    color: transparent;
}

.shadow-long {
    text-shadow: 1px 1px 0 #98ffab,
    2px 2px 0 #98ffab,
    3px 3px 0 #98ffab,
    4px 4px 0 #98ffab,
    5px 5px 0 #98ffab,
    6px 6px 0 #98ffab,
    7px 7px 0 #98ffab,
    8px 8px 0 #98ffab;
}

h2 {
    font-weight: 900;
    font-size: 32pt;
}

h3 {
    font-weight: 900;
    font-size: 24pt;
    font-style: normal;
}

.gradient-pink {
    background-image: linear-gradient(to right, #e60cff, #9c08ff);
}

.clipped-text {
    background-clip: text;
    color: rgba(0, 0, 0, 0);
}

xh2 {
    font-weight: 900;
    font-size: 32pt;
    background-image: linear-gradient(to right, #e60cff, #9c08ff);
    display: inline-block;
    background-position-x: 0px;
    background-position-y: 38px;
    background-repeat: repeat-x;
    background-size: 2px 8px;
}

.important {
    font-weight: 900;
    background-image: linear-gradient(to right, #e60cff, #9c08ff);
    background-position-x: 0;
    background-position-y: 110%;
    background-repeat: repeat-x;
    background-size: 100% 8px;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style-type: none;
    padding: 0;
}

li {
    margin-bottom: 10pt;
    padding: 10pt;
}

li .list-item {
    display: flex;
    justify-content: start;
}

li .list-item .icon {
    width: 50pt;
    margin-right: 20pt;
}

li .info h3 {
    padding: 0;
    margin: 0;
}

li .info .description {
    margin-top: 10pt;
    font-size: 14pt;
}

i {
    margin-right: 10pt;
    margin-left: 10pt;
}

i.large {
    font-size: 40pt;
}

.header {
    display: flex;
}

.logo {
    flex: 1;
    height: 80px;
}
.logo img {
    height: 100%;
}

.width-1000-centered {
    width: 80vw;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.hero {
    background: rgb(238, 255, 224);
    margin-bottom: 50pt;
    width: 100vw;
}

.hero img {
    width: 100%;
}

.badge {
    background-image: url("../images/badge-best-choice.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right;
    flex: 1;
    height: auto;
    display: inline-block;
    text-align: right;
}

.padding-left-6 {
    padding-left: 6%;
}

.content {
    font-size: 22px;
    font-family: "Barlow Condensed", sans-serif;
}

.intro {
    margin-bottom: 100pt;
}
.copy {
    font-style: italic;
    margin-bottom: 60pt;
}

.social-links {
    display: flex;
    justify-content: center;
    margin-bottom: 50pt;
}

.social-links li {
    display: inline-block;
}

.cta {
    text-align: center;
}

.cta .button {
    height: 70px;
    display: inline-block;
    border-radius: 35px;
    padding: 0 40px;
    background-color: #000000;
    color: white;
    line-height: 70px;
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    font-size: 24px;
    margin-left: auto;
    margin-right: auto;
}

.footer {
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
    font-size: 14px;
    color: #999;
    padding: 100pt 0;
}

.footer .copyright {
    flex: 1;
}

.footer .links {
    flex: 1;
    text-align: right;
}

.copyable {
    cursor: pointer;
}


.pulsing {
    animation: pulse 1.2s infinite ease-in-out;
}

 .checkbox .switch {
     display: inline-block;
     height: 34px;
     position: relative;
     width: 60px;
 }

.checkbox .switch input {
    display:none;
}

.checkbox .slider {
    background-color: #ccc;
    bottom: 0;
    cursor: pointer;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    transition: .4s;
}

.checkbox .slider:before {
    background-color: #fff;
    bottom: 4px;
    content: "";
    height: 26px;
    left: 4px;
    position: absolute;
    transition: .4s;
    width: 26px;
}

.checkbox input:checked + .slider {
    background-image: linear-gradient(to right, #e60cff, #9c08ff);
}

.checkbox input:checked + .slider:before {
    transform: translateX(26px);
}

.checkbox .slider.round {
    border-radius: 34px;
}

.checkbox .slider.round:before {
    border-radius: 50%;
}


@keyframes pulse
{
    0%
    {
        transform: scale( 1 );
    }
    50%
    {
        transform: scale( 0.95 );
    }
    100%
    {
        transform: scale( 1 );
    }
}
