@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;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

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

.navbar .navbar-container .brand {
    text-decoration: none;
}

.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: 919px) {
    .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 100px 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 {
    color: #fff;
    width: 100%;
    max-width: 1280px;
    z-index: 3;
}

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

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

.hero_content {
    margin-top: 34px;
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 20px;
}

.hero_description {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.hero_buttons__button {
    width: 172px;
}

.hero_buttons a {
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    background-color: var(--sea_storm);
    border: none;
    border-radius: 2px;
    /* width: 172px; */
    padding: 10px 20px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    transition: .2s ease;
}

.hero_buttons a:hover {
    background-color: var(--ocean_storm);
}

@media(max-width: 919px) {
    .hero_content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero_buttons {
        align-items: center;
        width: 100%;
        max-width: 560px;
        margin: auto;
    }

    .hero_buttons__button {
        width: 100%;
    }

    .hero_buttons a {
        width: 100% !important;
    }
}

@media(max-width: 400px) {
    .hero_buttons button {
        width: 100%;
    }
}

/* HERO <- */

/* DOWNLOAD -> */

.download {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
}

.download_container {
    width: 100%;
    max-width: 1280px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.download_container__item h2 {
    font-family: 'Manrope', sans-serif;
    font-size: 36px;
    font-weight: 600;
    color: #333333;
}

.download_release__box {
    margin-top: 15px;
}

.download_release__content ul {
    color: #444444;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.download_release__content ul p {
    font-size: 16px;
    color: var(--ocean_storm) !important;
}

.download_release__content ul li {
    /* margin-left: 20px; */
    /* list-style-type: square; */
    list-style: none;
}

.download_release__button1 {
    font-size: 16px;
    font-weight: 600;
    color: var(--ocean_storm);
    background-color: transparent;
    border: none;
    cursor: pointer;
}

.download_release__content1 {
    margin-top: 10px;
    padding-left: 24px;
    display: none;
}

.download_release__content1 ul li p {
    position: relative;
    font-size: 14px;
    color: var(--ocean_dark) !important;
    margin-left: 30px;
}

.download_release__content1 ul li p::before {
    position: absolute;
    left: -15px;
    top: 6px;
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 100%;
    background-color: var(--ocean_dark);
}

.download_release__content1.active {
    display: flex !important;
}

.download_container__item p {
    font-size: 15px;
    font-weight: 400;
    margin-top: 15px;
    color: #444444;
}

.download_container__item p a {
    color: #444444;
}

.download_table table {
    font-family: Roboto;
    font-size: 15px;
    font-weight: 600;
    width: 100%;
    margin-top: 30px;
    border-spacing: 0;
}

.download_table .view_all_releases {
    margin-top: 20px;
    font-size: 16px;
    font-weight: 600;
    color: var(--ocean_storm);
    background-color: transparent;
    border: none;
    display: flex;
    cursor: pointer;
}

.download_table__trp {
    background-color: #D9D9D9;
}

.download_table table tr th {
    text-align: left;
    padding: 10px 30px;
}

.download_table table tr th:nth-child(2),
.download_table table tr th:nth-child(3) {
    padding-left: 80px;
}

.download_table__tr_bordered td {
    border-top: 1px solid var(--light_stone);
}

.download_table table tr td {
    font-weight: 400;
    white-space: nowrap;
    padding: 10px 30px;
}

.download_table table tr td a {
    color: #0066DD;
}

.download_table table tr td:nth-child(2),
.download_table table tr td:nth-child(3) {
    padding-left: 80px;
}

/* .download_table table tr th:nth-child(4) {
    text-align: right;
}

.download_table table tr td:nth-child(4) {
    text-align: right;
} */

@media(max-width: 860px) {
    .download_table {
        overflow-x: scroll;
        padding-bottom: 5px;
    }

    .download_table::-webkit-scrollbar {
        height: 4px;
    }

    /* Handle */
    .download_table::-webkit-scrollbar-thumb {
        background: rgb(136, 136, 136, .5);
        border-radius: 5px;
    }
}

/* DOWNLOAD <- */

/* INTRO -> */

.intro {
    font-family: Roboto;
    width: 100%;
    padding: 40px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.intro_container {
    width: 100%;
    max-width: 1280px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.intro_container__item h1 {
    font-size: 36px;
    font-weight: 600;
    color: #333333;
}

.intro_container__item p {
    font-size: 15px;
    font-weight: 400;
    color: #444444;
    margin-top: 20px;
}

.intro_item__installation .tutorial {
    margin-top: 20px;
}

.intro_item__installation .tutorial a {
    color: #0066DD;
}

.intro_item__installation ul {
    padding-left: 50px;
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.intro_item__installation ul li {
    font-size: 15px;
    font-weight: 400;
    color: #444444;
    list-style-type: square;
}

.intro_item__installation ul li a {
    color: #0066DD;
}

/* INTRO <- */

/* 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 <- */