@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200;300;400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400&display=swap');

:root {
    --ocean: #222741;
    --ocean_dark: #202942;
    --ocean_fossil: #333852;
    --stone: #6E7478;
    --light_stone: #ADB5BD;
    --sea_storm: #4AC4F3;
    --ocean_storm: #0592d3;
    --blue_snow: #EDF5FF;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth !important;
    font-family: Roboto;
}

body {

    overflow-x: hidden;
    background-color: #fff;
}

/* NAVBAR -> */

.navbar {
    font-family: 'Manrope', sans-serif;
    /* width: 100%; */
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    display: flex;
    justify-content: center;
    padding: 20px 20px;
    z-index: 999;
    border-radius: 0;
    transition: all .1s ease;
}

.navbar.scrolled {
    background: #fff;
    box-shadow: rgba(88, 88, 88, 0.199) 0px 1px 4px;
}

.navbar .navbar-container .brand {
    font-size: 30px;
    font-weight: 800;
    color: #fff;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.navbar.scrolled .navbar-container .brand {
    color: var(--stone);
}

.navbar .navbar-container .brand img {
    width: 30px;
}

.navbar .navbar-container {
    max-width: 1280px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.navbar .navbar-container .navbar-toggler {
    display: none;
}

.navbar .navbar-container .navbar-right {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin: 0;
}

.navbar .navbar-container .navbar-right ul {
    display: flex;
    gap: 20px;
    list-style: none;
}

.navbar .navbar-container .navbar-right ul li a {
    text-decoration: none;
    font-size: 15px;
    color: #fff;
    font-weight: 600;
}

.navbar.scrolled .navbar-container .navbar-right ul li a {
    color: var(--ocean_dark);
}

.navbar .navbar-container .navbar-right ul li a.active {
    color: #4ac4f3;
    transition: .1s ease;
}

@media(max-width: 1020px) {
    .navbar .navbar-container .navbar-right ul {
        display: none;
    }

    .navbar .navbar-container .navbar-right ul li a {
        color: #232323;
    }

    .navbar .navbar-container .navbar-toggler {
        color: #fff;
        width: 30px;
        display: flex;
        justify-content: center;
        align-items: center;
        border: none;
        background-color: transparent;
        font-size: 20px;
    }

    .navbar.scrolled .navbar-container .navbar-toggler {
        color: var(--ocean_dark);
    }

    .navbar .navbar-container .navbar-right .navbar-menu {
        position: fixed;
        top: 89px;
        right: 0;
        left: 0;
        padding: 20px 50px;
        background-color: #fff;
        display: flex;
        flex-direction: column;
        box-shadow: rgba(88, 88, 88, 0.199) 0px 1px 4px;
        z-index: 999;
    }
}

/* Color mode switcher */

.switcher-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.switcher-container label {
    width: 35px;
    height: 35px;
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
}

.switcher-container label input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.switcher-container label .toggle {
    position: absolute;
    display: block;
    width: 35px;
    height: 35px;
    background: #e2e3e3;
    border-radius: 5px;
    z-index: -1;
}

.switcher-container label input:checked~.toggle {
    background: #1b1d23;
}

.switcher-container label .sun {
    width: 20px;
    position: absolute;
    transition: 1s ease;
}

.switcher-container label .moon {
    width: 20px;
    position: absolute;
    transition: 1s ease;
    scale: 0;
}

.switcher-container label input:checked~.sun {
    filter: invert(1) hue-rotate(180deg);
    transform: rotate(360deg) scale(1);
    scale: 0;
}

.switcher-container label input:checked~.moon {
    filter: invert(1) hue-rotate(180deg);
    transform: rotate(360deg) scale(1);
    scale: 1;
}

/* NAVBAR <- */

/* HERO -> */

.hero {
    font-family: 'Manrope', sans-serif;
    width: 100%;
}

.hero_first {
    position: relative;
    background-color: var(--ocean);
    padding: 160px 20px 140px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.hero_first__background_container {
    position: absolute;
    width: 100%;
}

.hero_first__background {
    width: 100%;
}

.hero_first__background .shape1 {
    position: absolute;
    z-index: 1;
    right: 50px;
    top: 90px;
    opacity: 30%;
}

.hero_first__background .shape2 {
    position: absolute;
    right: -300px;
    bottom: -360px;
    z-index: 1;
    opacity: 30%;
}

.hero_first__background .shape3 {
    position: absolute;
    right: 0;
    bottom: -50px;
    z-index: 1;
    opacity: 100%;
}

.hero_first__container {
    width: 100%;
    max-width: 1280px;
    z-index: 3;
}

.hero_first__container h1 {
    font-size: 45px;
    font-weight: 500;
    color: #fff;
}

.hero_first__container h1 span {
    font-weight: 800;
    background: linear-gradient(184deg, #95D7F6 21.85%, #389DCF 78.88%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero_first__description {
    margin-top: 35px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.hero_first__description p {
    font-size: 16px;
    font-weight: 400;
    color: #fff;
}

.hero_first__node_setup {
    margin-top: 35px;
    color: #fff;
}

.hero_first__node_setup h2 {
    font-size: 24px;
    font-weight: 600;
    color: #fff;
}

.hero_first__node_setup p {
    font-size: 16px;
    font-weight: 400;
}

.hero_first__node_setup p:first-of-type {
    margin-top: 24px;
    margin-bottom: 12px;
}

/* HERO <- */

/* SETUP -> */

.setup {
    position: relative;
    width: 100%;
    padding: 140px 20px 40px 20px;
    display: flex;
    justify-content: center;
    background-color: #fff;
}

.setup h1,
h2,
h3 {
    color: var(--ocean_dark);
}

.setup p {
    font-size: 14px;
    font-weight: 400;
    color: var(--stone);
}

.setup_container {
    width: 100%;
    max-width: 1280px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.setup_logo {
    position: absolute;
    top: -120px;
}

.setup_container .testnet_dashboard {
    width: 100%;
    max-width: 950px;
    text-align: center;
}

.setup_container .testnet_dashboard h2 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
}

.gui_setup {
    margin-top: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.gui_setup__left h1 {
    font-size: 36px;
    font-weight: 700;
}

.gui_setup__left_content {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.gui_setup__left_content ul {
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.gui_setup__left_content ul li {
    font-size: 16px;
    font-weight: 400;
    color: var(--stone);
}

.gui_setup__left_content ul li span {
    margin-left: 5px;
}

.gui_setup__right {
    display: flex;
}

.gui_setup__right img {
    width: 100%;
}

@media(max-width: 920px) {
    .gui_setup {
        grid-template-columns: 1fr;
    }
}

/* SETUP <- */

/* CODE -> */

.code_wrapper {
    background-color: var(--blue_snow);
    width: 100%;
    white-space: nowrap;
    display: flex;
    overflow-x: auto;
    border-radius: 2px;
}

.code_wrapper code {
    width: 100%;
    color: var(--ocean_fossil);
    padding: 5px 15px;
    border-radius: 2px;
}

.code_wrapper button {
    position: absolute;
    right: 0;
    font-size: 16px;
    color: var(--ocean_dark);
    background-color: var(--blue_snow);
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.code_wrapper button:focus {
    color: #adbbcc;
}

@media(max-width: 720px) {
    .code_wrapper code {
        padding-left: 30px;
    }

    .code_wrapper button {
        left: 0;
        right: auto;
    }
}

/* CODE <- */

/* SNAPSHOT -> */
.snapshot {
    position: relative;
    width: 100%;
}

.snapshot h1 {
    font-size: 36px;
    font-weight: 700;
}

.snapshot_content {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.snapshot_item p {
    margin-bottom: 10px;
}

/* SNAPSHOT <- */

/* REPLAY -> */

.replay {
    position: relative;
    width: 100%;
    margin-top: 30px;
}

.replay h1 {
    font-size: 36px;
    font-weight: 700;
}

.snapshot_item__sh {
    color: var(--ocean_dark);
    display: flex;
    overflow-x: auto;
}

.snapshot_item__sh_save {
    margin-top: 20px;
}

/* REPLAY <- */

/* SCROLL TO TOP -> */

#scrollToTopBtn {
    width: 40px;
    height: 40px;
    display: none;
    justify-content: center;
    align-items: center;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99;
    font-size: 26px;
    border: none;
    outline: none;
    background: rgb(149, 215, 246);
    background: linear-gradient(180deg, rgba(149, 215, 246, 1) 0%, rgba(56, 157, 207, 1) 100%);
    color: white;
    cursor: pointer;
    border-radius: 5px;
    scroll-behavior: smooth;
}

#scrollToTopBtn:hover {
    background-color: #555;
}

/* SCROLL TO TOP <- */

/* FOOTER -> */

.footer {
    font-family: 'Manrope', sans-serif;
    width: 100%;
    padding: 0 20px;
    background-color: var(--ocean);
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer_container {
    width: 100%;
    max-width: 1280px;
}

.footer_top {
    display: grid;
    grid-template-columns: 290px 290px 290px auto;
    padding: 50px 0 30px 0;
}

.footer_top__item1 {
    display: flex;
    flex-direction: column;
    gap: 58px;
    padding-right: 40px;
    border-right: 1px solid var(--ocean_fossil);
}

.footer_top__item1 p {
    font-size: 15px;
    font-weight: 400;
    color: var(--light_stone);
}

.footer_brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer_brand a {
    font-size: 30px;
    font-weight: 800;
    color: #fff;
    text-decoration: none;
}

.footer_brand img {
    height: 48px;
}

.footer_top__item2 {
    display: flex;
    flex-direction: column;
    gap: 50px;
    padding-right: 40px;
    padding-left: 40px;
    border-right: 1px solid var(--ocean_fossil);
}

.footer_top__item2 h3 {
    font-size: 20px;
    font-weight: 500;
    color: #fff;
}

.footer_top__item2 h3 span {
    font-weight: 700;
}

.footer_top__item2 a {
    font-size: 15px;
    font-weight: 600;
    color: var(--sea_storm);
    text-decoration: none;
    width: fit-content;
}

.footer_top__item3 {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-right: 40px;
    padding-left: 40px;
}

.footer_top__item3 h3 {
    font-size: 12px;
    font-weight: 700;
    color: #fff;
}

.footer_top__item3 ul {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.footer_top__item3 ul li {
    font-size: 12px;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer_top__item3 ul li p {
    font-weight: 400;
}

.footer_top__item3 ul li a {
    font-weight: 700;
    text-decoration: none;
    color: #fff;
}

.footer_top__item4 {
    padding-left: 40px;
    display: flex;
    flex-direction: column;
    align-items: end;
}

.footer_top__item4 h3 {
    font-size: 20px;
    font-weight: 500;
    color: #fff;
}

.footer_top__item4 form {
    width: 100%;
    background: #283353;
    border: 1px dashed rgba(255, 255, 255, 0.1);
    padding: 5px 10px;
    margin: 50px 0 20px 0;
    border-radius: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer_top__item4 form input {
    background: #283353;
    color: #ffffff;
    border: none;
    outline: none;
    font-size: 14px;
}

.footer_top__item4 form input::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: #adb5bd;
}

.footer_top__item4 form input::-moz-placeholder {
    /* Firefox 19+ */
    color: #adb5bd;
}

.footer_top__item4 form input:-ms-input-placeholder {
    /* IE 10+ */
    color: #adb5bd;
}

.footer_top__item4 form button {
    font-size: 25px;
    color: var(--sea_storm);
    background-color: transparent;
    border: none;
    padding-left: 15px;
    border-left: 1px solid var(--stone);
    cursor: pointer;
}

.footer_top__item4 #newsletter-response {
    display: none;
}

.footer_top__item4 #newsletter-response p {
    font-size: 14px;
    margin: 0;
    right: 15px;
    color: var(--sea_storm);
}

.newsletter-response-show {
    display: block !important;
}

.footer_bottom {
    padding: 20px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid var(--ocean_fossil);
    align-items: center;
}

.footer_bottom__item1 p {
    font-size: 14px;
    font-weight: 400;
    color: var(--light_stone);
}

.footer_bottom__item1 p a {
    font-weight: 800;
    color: var(--sea_storm);
    text-decoration: none;
}

.footer_bottom__item2 {
    display: flex;
    flex-direction: column;
    align-items: end;
    gap: 20px;
}

.footer_bottom__item2 h3 {
    font-size: 14px;
    font-weight: 500;
    color: #fff;
}

.footer_bottom__item2 ul {
    display: flex;
    gap: 14px;
    list-style: none;
}

.footer_bottom__item2 ul li a img {
    height: 16px;
}

@media(max-width: 1200px) {
    .footer_top {
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }

    .footer_top__item1 {
        gap: 20px;
        padding-right: 0;
        padding-bottom: 20px;
        border-right: none;
    }

    .footer_top__item2 {
        gap: 20px;
        padding-left: 0;
        padding-right: 0;
        padding-bottom: 20px;
        border-right: none;
    }

    .footer_top__item3 {
        gap: 20px;
        padding-left: 0;
        padding-right: 0;
        padding-bottom: 20px;
    }

    .footer_top__item4 {
        gap: 20px;
        padding-left: 0;
        padding-right: 0;
        padding-bottom: 20px;
        align-items: start;
    }

    .footer_top__item4 form {
        margin-top: 0;
        width: 100%;
        max-width: 380px;
    }
}

@media(max-width: 620px) {
    .footer_top {
        grid-template-columns: 1fr;
    }

    .footer_top__item1 {
        border-bottom: 1px solid var(--ocean_fossil);
    }

    .footer_top__item2 {
        border-bottom: 1px solid var(--ocean_fossil);
    }

    .footer_bottom {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer_bottom__item1 {
        order: 2;
    }

    .footer_bottom__item1 p {
        text-align: center;
    }

    .footer_bottom__item2 {
        order: 1;
        align-items: center;
    }
}

/* FOOTER <- */