@font-face {
    font-family: 'Songer Grotesque';
    src: url('assets/songer.grotesque-bold.woff2') format('woff2'),
        url('assets/songer.grotesque-bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    border: 0;
    font: inherit;
    font-size: 100%;
    margin: 0;
    padding: 0;
    vertical-align: baseline;
    box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    cursor: default;
}
h1,
h2 {
    font-family: 'Songer Grotesque', sans-serif;
    font-weight: bold;
}
:root
{
    --font-default: 'Montserrat', 'Arial', 'Helvetica', sans-serif;
}
body
{
    background: #131313;
}
header
{
    max-width:1040px;
    margin-inline: auto;
    display: grid;
    grid-template-columns: 213px 1fr 180px;
    align-items: center;
    margin-top:30px;
    padding-block:10px;
    padding-inline:20px;
    gap:15px;
    transition: all .3s;
    position: sticky;
    top: 0px;
    z-index: 10;
    background: #131313;
}
@media screen and (max-width: 990px)
{
    header
    {
        grid-template-columns: 1fr 40px;
        padding-top:10px;
        margin-top:0;
    }
}
header a[logo]
{
    cursor:pointer;
    text-decoration: none;
    display: grid;
    align-items: center;
}
header a[logo] svg
{
    width:213px;
    height:48px;
}
header a[btn]
{
    display: flex;
    width: 180px;
    height: 60px;
    padding: 16px 28px;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
    border: 1px solid #FFF;
    color:  #FFF;
    font-family: var(--font-default);
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
    text-transform: capitalize;
    text-decoration: none;
    transition: all .3s;
}
@media (hover: hover)
{
    header a[btn]:hover
    {
        background-color: #fff;
        color:#1A1A1A;
    }
}
header ul
{
    list-style: none;
    text-align: center;
}
header ul li
{
    display: inline-block;
    padding:0 12px;
}
header ul li a
{
    color:#FFF;
    font-family: var(--font-default);
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
    text-decoration: none;
    transition: all .3s;
}
@media (hover: hover)
{
    header ul li a:hover
    {
        color:#ADF711;
    }
}
header a[hamburger] 
{
    display: none;
}
@media screen and (max-width: 990px)
{
    header ul,
    header a[btn]
    {
        display: none;
    }
    header a[hamburger]
    {
        display: block;
        width: 30px;
        height:30px;
    }
    header a[hamburger] svg:last-child,
    body.menu header a[hamburger] svg
    {
        display: none;
    }
    body.menu header a[hamburger] svg:last-child
    {
        display: block;
    }
}
header a[hamburger] svg
{
    width:30px;
    height:30px;
}
header a[hamburger] svg path
{
    fill:#fff;
    stroke:#fff;
}
@media (hover: hover)
{
    header a[hamburger]:hover svg path
    {
        fill: #ADF711;
        stroke: #ADF711;
    }
}
body.menu,
body.faq
{
    overflow: hidden;
}
body.menu header ul
{
    display: block;
    position:fixed;
    top:58px;
    left:0;
    bottom:0;
    right:0;
    background-color: #1A1A1A;
    padding-top:40px;
    z-index: 2;
}
body.menu header ul li
{
    display: block;
    max-width:450px;
    margin-inline:auto;
    margin-block: 20px;
}
body.menu header ul li a
{
    font-family: 'Songer Grotesque', sans-serif;
    font-weight: bold;
    font-size:30px;
}
body.menu li[social] a
{
    display: inline-block;
    height:40px;
    width:40px;
    margin: 10px;
}
body.menu ul li[social] a svg
{
    width: 100%;
    height: 100%;
}
body ul li[hidden]
{
    display: none;
}
@media screen and (max-width: 990px)
{
    body ul li[hidden]
    {
        display: block;
    }
}
body.menu ul li[hidden] a[btn]
{
    display: block;
    width: 100%;
}
section.hero
{
    max-width: 1200px;
    margin-inline: auto;
    margin-top:83px;
    margin-bottom:110px;
}
section.hero .content
{
    display: grid;
    grid-template-columns: 5fr 4fr;
    gap:20px;
    align-items: center;
    max-width: 1040px;
    margin-inline: auto;
    padding-inline: 20px;
    margin-bottom: 64px;
}
section.hero .content svg
{
    width: 100%;
    height: auto;
}
section.hero .content h1
{
    color:#FFF;
    font-size: 56px;
    font-style: normal;
    font-weight: 700;
    line-height: 70px;
    margin-bottom: 13px;
}
section.hero .content h1 span
{
    display: inline-block;
    white-space: nowrap;
}
section.hero .content p
{
    color:#FFF;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
    font-family: var(--font-default);
    opacity: 0.5;
    margin-bottom: 27px;
}
a[btn-primary]
{
    min-width: 256px;
    height:60px;
    color: var(--1, #1A1A1A);
    font-family: var(--font-default);
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
    background: linear-gradient(0deg, #11F759 -4.81%, #ADF711 98.95%);
    text-align: center;
    display: inline-block;
    text-decoration: none;
    transition: all .3s;
}
@media screen and (max-width: 760px) 
{
    a[btn-primary]
    {
        min-width: 100%;
    }
}
a[btn-primary] span
{
    display: grid;
    align-items: center;
    height:100%;
}
@media (hover: hover)
{
    a[btn-primary]:hover
    {
        background: linear-gradient(180deg, #11F759 -4.81%, #ADF711 98.95%);
    }
}
@media screen and (max-width: 990px)
{
    section.hero .content
    {
        grid-template-columns: 1fr;
    }
    section.hero .content div:first-child
    {
        order:1;
    }
    section.hero .content div:last-child
    {
        order:0;
    }
    section.hero .content svg
    {
        max-width: 500px;
        display: block;
        height: auto;
        margin-inline: auto;
    }
    section.hero .content h1
    {
        font-size: 31px;
        line-height: 40px;
    }
    section.hero .content p
    {
        font-size: 16px;
        line-height: 22px;
    }
    a[btn-primary]
    {
        display: block;
        margin-inline: auto;
        max-width: fit-content;
    }
    section.hero
    {
        margin-top:40px;
        margin-bottom: 50px;
    }
    section.hero .content
    {
        margin-bottom:40px;
    }
}
.counters
{
    max-width: 1040px;
    padding-inline: 20px;
    margin-inline: auto;
}
.counters ul
{
    list-style: none;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: start;
    gap: 20px 0;
}
@media screen and (max-width: 990px)
{
    .counters ul
    {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media screen and (max-width: 500px)
{
    .counters ul
    {
        grid-template-columns: 1fr;
    }
}
.counters ul span
{
    height:100%;
    border-left:4px solid #fff;
    padding-left:20px;
    display: block;
    padding-right: 20px;
}
@media screen and (min-width: 991px)
{
    .counters ul li:first-child span 
    {
        border: 0;
        padding: 0;
    }
}
.counters ul span b
{
    color: #FFF;
    font-family: var(--font-default);
    font-style: normal;
    font-weight: 700;
    line-height: 36px;
    font-size: 30px;
    display: inline-block;
    margin-bottom: 15px;
}
.counters ul span i
{
    display: block;
    opacity: .5;
    color: #FFF;
    font-family: var(--font-default);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
    letter-spacing: 0.2px;
}
section.info
{
    padding-block: 90px;
    max-width:1040px;
    margin-inline: auto;
    padding-inline: 20px;
    display: grid;
    grid-template-columns: 3fr 6fr;
    align-items: center;
    gap:70px;
}
@media screen and (max-width: 990px)
{
    section.info
    {
        grid-template-columns: 1fr;
    }
}
@media screen and (min-width: 991px)
{
    section.info[reverse]
    {
        grid-template-columns: 6fr 3fr;
    }
    section.info[reverse] div:first-child
    {
        order:1;
    }
    section.info[reverse] div:last-child
    {
        order:0;
    }
    section.info[alignend]
    {
        align-items: end;
    }
}
@media screen and (max-width: 990px)
{
    section.info
    {
        padding-block: 40px;
    }
}
section.info svg
{
    display: block;
    max-width: 100%;
    height:auto;
}
@media screen and (max-width: 990px)
{
    section.info svg
    {
        max-width: 500px;
        margin-inline: auto;
    }
}
@media screen and (max-width: 550px)
{
    section.info svg
    {
        max-width:100%;
    }
}
section.info span[subtitle]
{
    color: #ADF711;
    font-family: var(--font-default);
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
    letter-spacing: 2.88px;
    text-transform: uppercase;
}
@media screen and (max-width: 760px)
{
    section.info span[subtitle] 
    {
        color: #ADF711;
        font-size: 14px;
        line-height: 16px;
        letter-spacing: 1.44px;
    }
}
section.info h2
{
    color: #FFF;
    font-size: 56px;
    font-style: normal;
    font-weight: 700;
    line-height: 70px;
    margin-bottom: 20px;
}
@media screen and (max-width: 990px)
{
    section.info h2
    {
        font-size: 31px;
        line-height: 40px;
    }
}
section.info div[block]
{
    margin-bottom: 32px;
}
@media screen and (max-width: 990px)
{
    section.info div[block]
    {
        margin-bottom: 24px;
    }
}
section.info div[block]:last-child
{
    margin-bottom: 0;
}
section.info div[block] b
{
    display: block;
    color: #FFF;
    font-family: var(--font-default);
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px;
    margin-bottom: 12px;
}
section.info div[block] b::before
{
    content: '';
    display: inline-block;
    width:12px;
    height: 12px;
    border-radius:50%;
    background: linear-gradient(0deg, #11F759 -4.81%, #ADF711 98.95%);
    margin-right: 20px;
}
@media screen and (max-width: 760px)
{
    section.info div[block] b
    {
        font-size: 16px;
        line-height: 22px;
        padding-left: 20px;
        position: relative;
    }
    section.info div[block] b::before
    {
        width: 10px;
        height: 10px;
        margin-right: 0;
        position: absolute;
        left:0px;
        top:6px;
    }
}
section.info p
{
    opacity: .5;
    color:#FFF;
    font-family: var(--font-default);
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
    margin-bottom: 32px;
}
@media screen and (max-width: 760px)
{
    section.info p
    {
        font-size: 16px;
        line-height: 22px;
    }
}
section.info div[block] p:last-child,
section.info p:last-child
{
    margin-bottom: 0;
}
section.info div[block] span
{
    display: grid;
    gap:15px;
    grid-template-columns: 48px 1fr;
    align-items: center;
    margin-bottom: 24px;
}
section.info div[block] span i
{
    display: grid;
    background: linear-gradient(0deg, #11F759 -4.81%, #ADF711 98.95%);
    width:48px;
    height: 48px;
    text-align: center;
    align-items: center;
    border-radius: 50%;
    color: var(--1, #1A1A1A);
    font-family: var(--font-default);
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px;
}
section.info div[block] span em
{
    color: var(--2, #FFF);
    font-family: var(--font-default);
    font-size: 26px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px;
}
section.faq
{
    max-width: 1040px;
    padding-inline: 20px;
    margin-inline: auto;
    padding-block: 90px;
}
@media screen and (max-width: 990px)
{
    section.faq
    {
        padding-block: 40px;
    }
}
section.faq span[subtitle]
{
    color: #ADF711;
    font-family: var(--font-default);
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
    letter-spacing: 2.88px;
    text-transform: uppercase;
    margin-bottom: 5px;
}
@media screen and (max-width: 760px)
{
    section.faq span[subtitle]
    {
        color: #ADF711;
        font-size: 14px;
        line-height: 16px;
        letter-spacing: 1.44px;
    }
}
section.faq h2
{
    color: #FFF;
    font-size: 56px;
    font-style: normal;
    font-weight: 700;
    line-height: 70px;
    margin-bottom: 20px;
}
@media screen and (max-width: 990px)
{
    section.faq h2
    {
        font-size: 31px;
        line-height: 40px;
    }
}
section.faq em
{
    display: block;
}
section.faq em svg
{
    width:48px;
    height:48px;
}
section.faq em svg *
{
    transition: all .3s;
}
@media (hover: hover)
{
    section.faq em:hover svg circle
    {
        fill:#fff;
    }
    section.faq em:hover svg path
    {
        fill:#131313;
    }
}
section.faq div[list]
{
    display: grid;
    gap:26px;
    grid-template-columns: 1fr 1fr 1fr;
}
@media screen and (max-width: 990px)
{
    section.faq div[list]
    {
        grid-template-columns: 1fr 1fr;
    }
}
@media screen and (max-width: 760px)
{
    section.faq div[list]
    {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}
section.faq div[list] > div
{
    cursor: pointer;
    background-color: rgba(255,255,255,0.1);
    padding:13px 20px;
    display: grid;
    gap:15px;
    grid-template-columns: 1fr 48px;
    align-items: center;
    color: #DADADA;
    /* Text */
    font-family: var(--font-default);
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
}
@media screen and (max-width: 760px)
{
    section.faq div[list] > div
    {
        font-size: 16px;
        line-height: 22px;
    }
}
section.faq div[list] aside
{
    display: none;
}
section.faq div[list] aside.open
{
    position: fixed;
    display: block;
    top:0;
    left:0;
    right:0;
    bottom:0;
    background: #131313;
    z-index: 100;
    padding-block: max(100px, 8vh);
    overflow-x: hidden;
    overflow-y: auto;
}
section.faq div[list] aside.open > div
{
    max-width:1000px;
    padding-inline:20px;
    margin-inline: auto;
}
section.faq aside div[title]
{
    display: grid;
    gap:150px;
    grid-template-columns: 1fr 68px;
    align-items: start;
}
@media screen and (max-width: 990px)
{
    section.faq aside div[title]
    {
        gap: 8vw;
        grid-template-columns: 1fr 40px;
    }
}
section.faq aside div[title] em
{
    padding-top:13px;
    width: 68px;
    height: 68px;
}
@media screen and (max-width: 990px)
{
    section.faq aside div[title] em
    {
        width: 40px;
        height: 40px;
    }
}
section.faq aside div[title] em svg path
{
    transition: all .3s;
}
section.faq aside div[title] em svg
{
    width: 100%;
    height: auto;
}
@media (hover: hover)
{
    section.faq aside div[title] em:hover svg path
    {
        stroke: #ADF711;
    }
}
section.faq aside::before
{
    content: '';
    position: absolute;
    width:540px;
    height:540px;
    top:-270px;
    left:-270px;
    border-radius: 50%;
    opacity: 0.2;
    background: #00D1FF;
    filter: blur(150px);
}
section.faq aside::after
{
    content: '';
    position: absolute;
    width:540px;
    height:540px;
    top:270px;
    right:270px;
    border-radius: 50%;
    opacity: 0.2;
    background: #ADF711;
    filter: blur(150px);
}
@media screen and (max-width: 990px)
{
    section.faq aside::before,
    section.faq aside::after
    {
        width:16vh;
        height:16vh;
        opacity: 1;
    }
    section.faq aside::before
    {
        top:-8vh;
        left:-8vh;
    }
    section.faq aside::after
    {
        top:45vh;
        right:1vh;
    }
}
section.reviews
{
    max-width:1040px;
    padding-inline:20px;
    margin-inline:auto;
    padding-block: 90px;
}
@media screen and (max-width: 990px)
{
    section.reviews
    {
        padding-block: 40px;
    }
}
section.reviews span[subtitle]
{
    color: #ADF711;
    font-family: var(--font-default);
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
    letter-spacing: 2.88px;
    text-transform: uppercase;
    margin-bottom: 5px;
}
@media screen and (max-width: 760px)
{
    section.reviews span[subtitle]
    {
        color: #ADF711;
        font-size: 14px;
        line-height: 16px;
        letter-spacing: 1.44px;
    }
}
section.reviews h2
{
    color: #FFF;
    font-size: 56px;
    font-style: normal;
    font-weight: 700;
    line-height: 70px;
    margin-bottom: 32px;
}
@media screen and (max-width: 990px)
{
    section.reviews h2
    {
        font-size: 31px;
        line-height: 40px;
    }
}
section.reviews div[list]
{
    display: grid;
    gap:100px;
    grid-template-columns: 5fr 4fr;
}
@media screen and (max-width: 760px)
{
    section.reviews div[list]
    {
        grid-template-columns: 1fr;
        gap:20px;
    }
    section.reviews div[list] div.img
    {
        order:0;
    }
    section.reviews div[list] div.bq
    {
        order:1;
    }
}
section.reviews div[list] div.bq blockquote,
section.reviews div[list] div.img > div,
section.reviews div[names] > div
{
    display: none;
}
section.reviews div[list] div.bq blockquote.active,
section.reviews div[list] div.img > div.active,
section.reviews div[names] > div.active
{
    display: block;
}
section.reviews div[list] div.bq blockquote b
{
    display: block;
    color: #fff;
    font-family: var(--font-default);
    font-size: 26px;
    font-style: normal;
    font-weight: 600;
    line-height: 40px;
    margin-bottom: 12px;
}
@media screen and (max-width: 990px)
{
    section.reviews div[list] div.bq blockquote b
    {
        font-size: 18px;
        line-height: 28px;
    }
}
section.reviews div[list] div.bq blockquote p
{
    color: #fff;
    font-family: var(--font-default);
    opacity: .5;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
}
@media screen and (max-width: 990px)
{
    section.reviews div[list] div.bq
    {
        display: grid;
        grid-template-columns: 1fr;
    }
    section.reviews div[list] div.bq blockquote p
    {
        font-size: 16px;
        line-height: 22px;
    }
}
@media screen and (max-width: 760px)
{
    section.reviews div[list] div.bq blockquote b
    {
        font-size: 18px;
        line-height: 28px;
    }
    section.reviews div[list] div.bq blockquote p
    {
        font-size: 16px;
        line-height: 22px;
    }
}
section.reviews div[list] div.bq blockquote
{
    position:relative;
}
section.reviews div[list] div.bq blockquote > em,
section.reviews div[list] div.bq blockquote > i
{
    position: absolute;
    width: 62px;
    height: 48px;
}
@media screen and (max-width: 990px)
{
    section.reviews div[list] div.bq blockquote > em,
    section.reviews div[list] div.bq blockquote > i
    {
        display: none !important;
    }
}
section.reviews div[list] div.bq blockquote > em
{
    top:-20px;
    left: -90px;
}
section.reviews div[list] div.bq blockquote > i
{
    bottom:-80px;
    right: -50px;
}
section.reviews div[list] div.bq blockquote > em svg,
section.reviews div[list] div.bq blockquote > i svg
{
    width:100%;
    height: auto;
    display:block;
}
section.reviews div[list] div[switch]
{
    margin-top:30px;
}
@media screen and (max-width: 760px)
{
    section.reviews div[list] div[switch]
    {
        text-align: center;
        margin-top: 0;
        margin-bottom: 30px;
    }
}
section.reviews div[list] div[switch] span
{
    display:inline-block;
    margin-right:8px;
    width:30px;
    height:30px;
    border-radius:50%;
    overflow:hidden;
    transition: all .3s;
    opacity: .4;
    cursor: pointer;
}
section.reviews div[list] div[switch] span.active
{
    transition: all .3s;
    width:40px;
    height:40px;
    opacity: 1;
    position: relative;
    top:5px;
}
section.reviews div[list] div[switch] span img
{
    width:100%;
    height:100%;
}
section.reviews div[list] div.img
{
    position: relative;
}
@media screen and (max-width: 760px)
{
    section.reviews div[list] div.img
    {
        max-width:100%;
        margin-inline: auto;
    }
}
section.reviews div[list] div.img img
{
    display: block;
    max-width: 400px;
    height: auto;
    border-radius:50%;
    border: 4px solid #FFF;
}
@media screen and (max-width: 990px)
{
    section.reviews div[list] div.img img
    {
        max-width:300px;
    }
}
section.reviews div[list] div.img i
{
    position: absolute;
    width: 100px;
    height:114px;
    top:-10%;
    left:-10%;
}
@media screen and (max-width: 990px)
{
    section.reviews div[list] div.img i
    {
        width: 50px;
        height: 60px;
        top: -2%;
        left: -2%;
    }
}
section.reviews div[list] div.img i svg
{
    widtH:100%;
    height: auto;
    display: block;
}
section.reviews div[names]
{
    margin-top:25px;
}
section.reviews div[names] span
{
    display: block;
    color: #fff;
    font-family: var(--font-default);
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px;
    text-transform: capitalize;
    cursor: default;
}
@media screen and (max-width: 990px)
{
    section.reviews div[names] span
    {
        font-size: 16px;
        line-height: 22px;
    }
}
section.reviews div[names] a
{
    color: #ADF711;
    font-family: var(--font-default);
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px;
    text-decoration: none;
}
@media (hover: hover)
{
    section.reviews div[names] a:hover
    {
        text-decoration: underline;
    }
}
@media screen and (max-width: 760px)
{
    section.reviews div[list] div[switch]
    {
        order:0;
    }
    section.reviews div[list] div.bq blockquote
    {
        order:1;
    }
    section.reviews div[names]
    {
        order:2;
    }
}
section.timeline
{
    max-width:1040px;
    padding-inline: 20px;
    margin-inline: auto;
    padding-block: 90px;
}
section.timeline .timeline-item
{
    display: grid;
    grid-template-columns: 130px 48px 1fr;
    gap:0 15px;
    overflow: hidden;
}
@media screen and (max-width: 760px)
{
    section.timeline
    {
        padding-block: 40px;
    }
    section.timeline .timeline-item
    {
        grid-template-columns: 48px 1fr;
    }
}
section.timeline .timeline-item .date
{
    opacity:.5;
    color:  #FFF;
    font-family: var(--font-default);
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
    padding-top: 10px;
}
@media screen and (max-width: 760px)
{
    section.timeline .timeline-item > .date
    {
        display: none;
    }
    section.timeline .timeline-item .date
    {
        font-size: 16px;
        line-height: 22px;
        margin-bottom: 18px;
    }
}
section.timeline .timeline-item .circle
{
    width: 48px;
    height: 48px;
    border-radius:50%;
    background-color: #8F8F8F;
    color:  #1A1A1A;
    font-family: var(--font-default);
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px;
    display: grid;
    align-items: center;
    text-align: center;
    position: relative;
}
section.timeline .timeline-item .circle span
{
    position: absolute;
    top:0;
    left:0;
    right:0;
    bottom:0;
    display: grid;
    align-items: center;
    z-index: 2;
    background: inherit;
    border-radius:50%;
}
section.timeline .timeline-item .circle::after
{
    content: '';
    width:2px;
    position: absolute;
    height:600px;
    background: rgba(255,255,255,0.5);
    left:50%;
    transform: translateX(-1px);
    top:10px;
    z-index: 1;
}
section.timeline .timeline-item .circle[line]::after
{
    background: #11F759;
    width: 4px;
    transform: translateX(-2px);
}
section.timeline .timeline-item .circle[active]
{
    background: linear-gradient(0deg, #11F759 -4.81%, #ADF711 98.95%);
}
section.timeline .timeline-item .content
{
    padding-top: 10px;
}
section.timeline .timeline-item .content b
{
    color:  #FFF;
    font-family: var(--font-default);
    font-size: 26px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px;
    margin-bottom: 32px;
    display: block;
}
@media screen and (max-width: 760px)
{
    section.timeline .timeline-item .content b
    {
        font-size: 22px;
        line-height: 24px;
        margin-bottom: 18px;
    }
}
section.timeline .timeline-item .content p
{
    opacity: .5;
    color: #FFF;
    font-family: var(--font-default);
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
    margin-bottom: 75px;
}
@media screen and (max-width: 760px)
{
    section.timeline .timeline-item .content p
    {
        font-size: 16px;
        line-height: 22px;
        margin-bottom: 45px;
    }
}
section.timeline .timeline-item:last-child .circle::after
{
    display: none;
}

section.timeline span[subtitle]
{
    color: #ADF711;
    font-family: var(--font-default);
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
    letter-spacing: 2.88px;
    text-transform: uppercase;
    margin-bottom: 5px;
}
@media screen and (max-width: 760px)
{
    section.timeline span[subtitle]
    {
        color: #ADF711;
        font-size: 14px;
        line-height: 16px;
        letter-spacing: 1.44px;
    }
}
section.timeline h2
{
    color: #FFF;
    font-size: 56px;
    font-style: normal;
    font-weight: 700;
    line-height: 70px;
    margin-bottom: 60px;
}
@media screen and (max-width: 990px)
{
    section.timeline h2
    {
        font-size: 31px;
        line-height: 40px;
        margin-bottom: 40px;
    }
}
section.cta
{
    max-width:1040px;
    margin-inline: auto;
    padding-block:90px;
}
@media screen and (max-width: 1080px)
{
    section.cta
    {
        max-width: calc(100% - 40px);
    }
}
@media screen and (max-width: 760px)
{
    section.cta
    {
        padding-block: 40px;
    }
}
section.cta > div
{
    border: 4px solid #FFF;
    padding:62px 54px;
}
@media screen and (max-width: 760px)
{
    section.cta > div
    {
        padding:30px 25px;
    }
}
section.cta h2
{
    color: #FFF;
    font-size: 56px;
    font-style: normal;
    font-weight: 700;
    line-height: 70px;
    margin-bottom: 20px;
    text-align: center;
}
@media screen and (max-width: 990px)
{
    section.cta h2
    {
        font-size: 31px;
        line-height: 40px;
    }
}
section.cta p
{
    max-width:580px;
    margin-inline: auto;
    color: #FFF;
    text-align: center;
    font-family: var(--font-default);
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
    opacity: .5;
    margin-bottom: 37px;
}
@media screen and (max-width: 760px)
{
    section.cta p
    {
        font-size: 16px;
        line-height: 22px;
    }
}
section.cta i
{
    display: block;
    text-align: center;
}
section.cta a[btn-default]
{
    margin-inline: auto;
}
footer
{
    max-width: 1200px;
    margin-inline: auto;
    padding-inline: 20px;
    padding-top: 120px;
}
@media screen and (max-width: 760px)
{
    footer
    {
        padding-top: 60px;
    }
}
footer picture img
{
    display: block;
    max-width: 100%;
    height:auto;
    margin-inline: auto;
}
@media screen and (max-width: 760px) and (min-width: 500px)
{
    footer picture img
    {
        max-width: 60%;
    }
}
footer div[social]
{
    margin-bottom: 45px;
    text-align: center;
}
footer div[social] strong
{
    color: #FFF;
    font-family: var(--font-default);
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
    letter-spacing: 2.88px;
    text-transform: uppercase;
    margin-bottom: 34px;
    display: block;
}
@media screen and (max-width: 760px)
{
    footer div[social] strong
    {
        font-size: 16px;
        line-height: 22px;
        letter-spacing: 1.4px;
    }
}
footer div[social] a
{
    display: inline-block;
    height:56px;
    width:56px;
    margin-inline: 12px;
    border-radius: 50%;
    overflow: hidden;
}
footer div[social] a svg
{
    width: 100%;
    height: 100%;
}
@media screen and (max-width: 760px)
{
    footer div[social] a
    {
        height:40px;
        width:40px;
        margin-inline: 8px;
    }
}
@media (hover: hover)
{
    footer div[social] a:hover svg
    {
        filter: invert(1);
        background-color: #000;
    }
}
@media screen and (min-width: 400px)
{
    section[red],
    section[blue]
    {
        position:relative;
    }
    section[red]::before
    {
        content:'';
        width: 180px;
        height: 180px;
        border-radius: 1000px;
        opacity: 0.2;
        background: #F00;
        filter: blur(90px);
        position:absolute;
        top: 0;
        left: 0;
        /*transform: translate(-20%, -30%);*/
        z-index:-1;
    }
    section[blue]::before
    {
        content:'';
        width: 180px;
        height: 180px;
        border-radius: 1000px;
        opacity: 0.2;
        background: #00D1FF;
        filter: blur(90px);
        position:absolute;
        bottom: 0;
        right: 0;
        /*transform: translate(20%, 30%);*/
        z-index:-1;
    }
}
@media screen and (min-width: 760px)
{
    section[red]::before,
    section[blue]::before
    {
        width: 280px;
        height: 280px;
        filter: blur(140px);
    }
}
@media screen and (min-width: 1100px)
{
    section[red]::before,
    section[blue]::before
    {
        width: 480px;
        height: 480px;
        filter: blur(150px);
    }
}
@media screen and (min-width: 1300px)
{
    section[red]::before
    {
        transform: translate(-20%, -30%);
    }
    section[blue]::before
    {
        transform: translate(20%, 30%);
    }
}