﻿/* Fonts: Orelo, poppins*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap');

@font-face {
    font-family: 'nichr';
    src: url('../assets/fonts/nichr.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

body {
    padding: 0px;
    margin: 0px;
    background: #f1f4f6 !important;
    font-family: 'Poppins', sans-serif;
}

a {
    cursor: pointer;
    text-decoration: none;
    color: #1e3740;
}

ul {
    padding: 0px;
    margin: 0px;
}

li {
    list-style: none;
}

hr {
    margin: 10px 30px;
    height: 1%;
    border: none;
    height: 1px;
    background-color: #fff;
    opacity: .5;
}

p {
    color: #1e3740 !important;
}

/*  HEADER  */
header {
    border-bottom: 1px solid #b0aeae;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    height: 60px;
    width: 100%;
    top: 0;
    backdrop-filter: blur(5px);
    position: sticky;
    /*animation: adjust-header linear both;
    animation-timeline: scroll();
    animation-range: 0 200px;*/
    z-index: 20;
}


.home-logo {
    font-family: 'nichr', Arial, sans-serif;
    font-variation-settings: "wdth" 160, "wght" 900, "ital" 0, "opsz" 30;
    user-select: none;
    margin-left: 10px;
    font-size: clamp(28px, 2vw, 40px);
    white-space: nowrap;
}

@keyframes adjust-header {
    to {
        background: rgba(29, 37, 48, .1);
        font-size: 12px;
    }
}

nav {
    margin: 0px 20px;
    background-color: transparent;
}

    nav a {
        text-decoration: none;
        font-weight: 500;
        font-size: 20px;
        line-height: 19px;
        color: #1e3740;
    }

    nav > ul {
        display: flex;
    }

        nav > ul > li {
            text-align: center;
            padding: 15px;
            min-width: 100px;
            border-bottom: 4px solid transparent;
            height: 25px;
        }

            nav > ul > li:hover,
            nav > ul > li.active {
                border-bottom: 4px solid #1e3740;
            }

                nav > ul > li:hover > ul {
                    display: block !important;
                }

            nav > ul > li > ul {
                left: 0px;
                top: 60px;
                position: absolute;
                width: 100%;
                display: none !important;
                padding: 20px;
                border-bottom: 1px solid #b0aeae;
                background-color: #fff;
            }


                nav > ul > li > ul > li {
                    display: block;
                    padding: 10px;
                    text-align: center;
                }


.hamburger {
    display: none !important;
    position: absolute;
    top: 5px;
    left: 5px;
}


@media (width < 768px) {
    header {
        flex-direction: row-reverse;
        justify-content: left;
        padding-left: 50px;
    }

    nav {
        display: none !important;
        position: absolute;
        width: 100%;
        text-align: left;
        left: 0px;
        margin: 0px;
        top: 60px;
    }

        nav.is-active {
            display: block !important;
        }

        nav > ul {
            display: block;
            width: 100%;
            background: #fff;
            top: 72px;
            left: 0px;
            padding: 10px 0;
            border-bottom: 1px solid #b0aeae;
        }

        nav ul > li {
            text-align: left !important;
            font-weight: bold !important;
            height: 100%;
            padding-bottom: 5px;
        }

        nav ul li:hover {
            background-color: #1e374011;
            border-color: transparent;
        }

        nav > ul > li.active {
            border-bottom: 0px;
        }

        nav > ul > li > ul {
            width: 100%;
            text-align: left;
            display: block !important;
            position: relative;
            box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.15);
            border-radius: 0px;
            border: 0px;
            top: 0;
            text-transform: none !important;
            background-color: transparent !important;
            border-left: 1px solid #6ec59c;
            margin-left: 10px;
            padding: 0 0 0 5px;
        }

            nav > ul > li > ul > li {
                padding-left: 0px;
                margin: 5px;
            }

                nav > ul > li > ul > li a {
                    font-size: 16px;
                }

    .hamburger {
        display: inline-block !important;
        cursor: pointer;
        transition-property: opacity, filter;
        transition-duration: 0.15s;
        transition-timing-function: linear;
        font: inherit;
        color: inherit;
        text-transform: none;
        background-color: transparent;
        border: 0;
        margin: 0;
        overflow: visible;
    }

        .hamburger:hover {
            opacity: 0.7;
        }

        .hamburger.is-active:hover {
            opacity: 0.7;
        }

        .hamburger.is-active .hamburger-inner,
        .hamburger.is-active .hamburger-inner::before,
        .hamburger.is-active .hamburger-inner::after {
            background-color: #000;
        }

    .hamburger-box {
        width: 30px;
        height: 50px;
        display: inline-block;
        position: relative;
    }

    .hamburger-inner {
        display: block;
        top: 50%;
        margin-top: -2px;
    }

        .hamburger-inner,
        .hamburger-inner::before,
        .hamburger-inner::after {
            width: 35px;
            height: 3px;
            background-color: #000;
            border-radius: 4px;
            position: absolute;
            transition-property: transform;
            transition-duration: 0.15s;
            transition-timing-function: ease;
        }

            .hamburger-inner::before,
            .hamburger-inner::after {
                content: "";
                display: block;
            }

            .hamburger-inner::before {
                top: -8px;
            }

            .hamburger-inner::after {
                bottom: -8px;
            }

    .hamburger--stand .hamburger-inner {
        transition: transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19), background-color 0s 0.075s linear;
    }

        .hamburger--stand .hamburger-inner::before {
            transition: top 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
        }

        .hamburger--stand .hamburger-inner::after {
            transition: bottom 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
        }

    .hamburger--stand.is-active .hamburger-inner {
        transform: rotate(90deg);
        background-color: transparent !important;
        transition: transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1), background-color 0s 0.15s linear;
    }

        .hamburger--stand.is-active .hamburger-inner::before {
            top: 0;
            transform: rotate(-45deg);
            transition: top 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
        }

        .hamburger--stand.is-active .hamburger-inner::after {
            bottom: 0;
            transform: rotate(45deg);
            transition: bottom 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
        }
}

/*MAIN TITLE*/
.s-mainTitle {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
    flex-direction: column;
    margin: 20px;
}

    .s-mainTitle h1 {
        color: #1e3740;
        font-size: 38px;
        line-height: 39px;
        margin-top: 30px;
        letter-spacing: 1px;
        text-align: center;
        font-weight: 500;
    }

    .s-mainTitle p {
        font-size: 20px;
        text-align: center;
        padding: 0px 20px;
        justify-content: center;
        line-height: 35px;
        max-width: 1200px;
    }


/*IDESCRIPTION*/
.s-idescription {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
    margin: 0 0 40px 0;
}

    .s-idescription.reverse {
        flex-direction: row-reverse;
    }

    .s-idescription h1,
    .s-idescription h2 {
        color: #1e3740;
        font-weight: 500;
        font-size: 28px;
        line-height: 39px;
    }

    .s-idescription img {
        border-radius: 30px;
        max-width: 400px;
    }

    .s-idescription div {
        max-width: 550px;
        padding: 10px;
    }

        .s-idescription div p {
            font-size: 18px;
            line-height: 26px;
        }


/*Link Section*/
.s-link {
    padding: 8px;
}

    .s-link a {
        display: flex;
        align-items: stretch;
        justify-content: center;
        margin: 0 0 40px 0;
        text-decoration: none;
    }

.lk-pre {
    width: 180px;
    background-size: 90px 90px !important;
    background: url(../assets/icons/idea.svg) center center no-repeat;
    background-color: #1e3740;
    border-radius: 0 0 0 20px;
    flex-shrink: 0;
}

.lk-content {
    background-color: #fff;
    padding: 15px 10px 15px 20px;
    width: 700px;
    border-radius: 0 20px 0 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

    .lk-content h2 {
        color: #1e3740;
        font-weight: 900;
        font-size: 28px;
        line-height: 24px;
        margin: 8px 0
    }

    .lk-content p {
        font-size: 18px;
        line-height: 24px;
        margin: 8px 0
    }


/*RIBBET*/
.s-ribbet {
    background: linear-gradient(97.72deg, #1e3740 45.04%, #1e3740bb 108.89%);
    padding-top: 45px;
    padding-bottom: 120px;
    color: #FFFFFF;
}

/*STATS*/
.s-stats {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: 20px 0;
}

    .s-stats .title {
        font-weight: bold;
        font-size: 20px;
        width: 300px;
        display: block;
        align-content: center;
    }

    .s-stats .items {
        display: flex;
        align-items: center;
    }

        .s-stats .items div {
            width: 200px;
            padding-left: 10px;
        }

    .s-stats h3 {
        color: #1e3740;
        font-size: 40px;
        font-weight: bold;
        margin: 0px;
    }

/*SEARCH*/
.s-search {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: 20px 0;
}

#searchInput {
    padding-left: 40px;
    padding-right: 12px;
    height: 40px;
    width: 100%;
    border-radius: 20px;
    border: 1px solid #ddd;
    font-size: 16px;
    background: #fafafa;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    transition: box-shadow 0.2s,border-color 0.2s;
}

.search-input-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
    max-width: 400px;
}

.search-input-wrapper span {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}


/*CHIMPS*/
.s-chimp-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin: 32px 0;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(30,55,64,0.07);
    padding: 24px 12px;
}

.chimp {
    display: inline-flex;
    align-items: center;
    background: #f1f4f6;
    border-radius: 50px;
    padding: 8px 22px;
    font-size: 16px;
    margin: 4px 0;
    box-shadow: 0 1px 4px rgba(30,55,64,0.05);
    transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
    border: 1px solid #e3e9ed;
    cursor: pointer;
}

    .chimp:hover {
        background: #eaf6f3;
        box-shadow: 0 4px 12px rgba(30,55,64,0.13);
        transform: scale(1.05);
    }

    .chimp a {
        color: #1e3740;
        font-size: 16px;
        font-weight: 500;
        text-decoration: none;
        transition: color 0.2s;
        padding: 0;
    }

        .chimp a:hover {
            color: #6ec59c;
            text-decoration: underline;
        }

.s-chimp-list h2 {
    width: 100%;
    text-align: center;
    font-size: 24px;
    color: #1e3740;
    margin-bottom: 18px;
    font-weight: 700;
    letter-spacing: 1px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
}

/*FEAUTES*/
.s-features {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 20px;
    padding-bottom: 50px;
}

    .s-features .title {
        font-size: 24px !important;
        display: block;
        text-align: center;
        color: #1e3740;
        margin-bottom: 30px;
        padding: 0px 10px;
    }

    .s-features .items {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        align-items: stretch;
        justify-content: center;
        gap: 30px;
    }

        .s-features .items div {
            background: #FFFFFF;
            text-align: center;
            border-radius: 30px;
            max-width: 300px;
            font-size: 18px;
            padding: 20px;
            position: relative;
            margin-top: 20px;
        }

            .s-features .items div h3 {
                color: #1e3740;
                font-size: 22px;
                letter-spacing: 0.2px;
                margin: 35px 0 25px 0;
            }

        .s-features .items .icon {
            width: 80px;
            height: 80px;
            position: absolute;
            background-size: 80px 80px !important;
            background: url(../assets/icons/ic1.svg) top left no-repeat;
            position: absolute;
            top: -40px;
            right: 130px;
        }

        .s-features .items div:nth-child(2) .icon {
            background-image: url(../assets/icons/ic2.svg);            
        }

        .s-features .items div:nth-child(3) .icon {
            background-image: url(../assets/icons/ic3.svg);
        }

        .s-features .items div:nth-child(4) .icon {
            background-image: url(../assets/icons/ic4.svg);
        }

        .s-features .items div:nth-child(5) .icon {
            background-image: url(../assets/icons/ic5.svg);
        }

        .s-features .items div:nth-child(7) .icon {
            background-image: url(../assets/icons/ic6.svg);
        }

        .s-features .items div:nth-child(8) .icon {
            background-image: url(../assets/icons/ic1.svg);
        }

        .s-features .items div:nth-child(9) .icon {
            background-image: url(../assets/icons/ic2.svg);
        }

        .s-features .items div:nth-child(10) .icon {
            background-image: url(../assets/icons/ic3.svg);
        }

        .s-features .items div:nth-child(11) .icon {
            background-image: url(../assets/icons/ic4.svg);
        }

        .s-features .items div:nth-child(12) .icon {
            background-image: url(../assets/icons/ic5.svg);
        }

        .s-features .items div:nth-child(13) .icon {
            background-image: url(../assets/icons/ic6.svg);
        }


/*PART TABLE*/

.s-table {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
    flex-direction: column;
    margin: 20px;
}

    .s-table h1,
    .s-table h2 {
        color: #1e3740;
        font-weight: 500;
        font-size: 28px;
        line-height: 39px;
    }



.t-comparer {
    background: #fff;
    display: flex;
    flex-direction: column;
}



.t-comparer-head {
    background-color: rgba(0, 0, 0, .1);
    border-bottom-width: 1px;
    border-color: rgba(0, 0, 0, .15);
    border-top-width: 1px;
    padding: .25rem .75rem;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 10px;
}

    .t-comparer-head div {
        flex: 1;
    }

        .t-comparer-head div:first-child {
            /*flex: 0 0 260px !important;*/
        }

.t-comparer-body div:first-child {
    width: 260px;
    font-weight: bold;
}

.t-comparer-body {
    flex-direction: row;
    display: flex;
}

    .t-comparer-body div {
        border-bottom-width: 1px;
        border-color: #ccc;
        padding: .25rem .75rem;
        flex: 1;
        border-top: 1px solid rgba(0, 0, 0, .15);
        align-content: center;
    }

@media screen and (max-width: 600px) {

    .t-comparer {
        width: 100%;
    }

    .t-comparer-head div {
        text-align: center;
    }

        .t-comparer-head div:first-child {
            display: none;
        }

    .t-comparer-body {
        flex-wrap: wrap;
    }

        .t-comparer-body div:first-child {
            flex: 0 0 90% !important;
            font-weight: bold;
            text-align: center;
        }
}


/*Text List*/

.s-textList {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
    flex-direction: column;
    margin: 20px;
}

    .s-textList h1,
    .s-textList h2 {
        color: #1e3740;
        font-weight: 500;
        font-size: 28px;
        line-height: 39px;
    }

    .s-textList h3 {
        color: #1e3740;
        font-weight: 500;
        font-size: 26px;
        line-height: 39px;
    }

    .s-textList ul {
        max-width: 800px
    }

    .s-textList li {
        margin: 20px 10px;
        list-style: circle !important;
    }


/*PROPERTIES*/
.s-properties {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(97.72deg, #005FA9 45.04%, #56B9E5 108.89%);
    padding-top: 45px;
    padding-bottom: 60px;
    color: #FFFFFF;
}

    .s-properties .title {
        font-weight: bold;
        font-size: 30px;
        display: block;
        text-align: center;
    }

    .s-properties .items {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        align-items: baseline;
        justify-content: center;
        font-size: 30px;
    }

        .s-properties .items div {
            padding: 15px;
            width: 250px;
            text-align: center;
        }

        .s-properties .items h5 {
            margin: 15px 0;
        }

/*SECTION ITEMS*/



.s-items {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: baseline;
    justify-content: center;
    margin: -88px 0 40px 0;
}

    .s-items h2,
    .s-items h1 {
        color: #1e3740;
        font-weight: 500;
        font-size: 28px;
        line-height: 39px;
    }

    .s-items .item {
        border: 1px solid #b0aeae;
        box-shadow: 0px 10px 14px rgba(0, 0, 0, 0.15);
        width: 300px;
        border-radius: 0px 0px 5px 5px;
    }

.item-header {
    height: 200px;
    position: relative;
}

    .item-header .item-state {
        position: absolute;
        top: 23px;
        left: 23px;
        background-color: #6ec59c;
        border-radius: 2px;
        font-size: 14px;
        line-height: 19px;
        color: #FFFFFF;
        padding: 10px 12px;
    }

    .item-header .item-price {
        position: absolute;
        bottom: 0px;
        right: 0px;
        font-weight: bold;
        background-color: rgb(45, 80, 92);
        border-radius: 2px;
        font-size: 16px;
        line-height: 19px;
        color: #FFFFFF;
        padding: 10px 12px;
    }

.item-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 10px;
}

    .item-body .title {
        font-size: 18px;
        margin: 5px 0;
        padding: 5px;
        text-align: center;
    }

    .item-body .specs {
        font-size: 12px;
        line-height: 14px;
        color: #303538;
    }

        .item-body .specs ul {
            font-size: 12px;
            line-height: 14px;
            color: #303538;
        }

            .item-body .specs ul li {
                padding: 18px 0px 18px 30px;
                background-repeat: no-repeat;
                background-size: 20px 20px !important;
                background: url(../assets/icons/cl-check.svg) center left no-repeat;
            }


                .item-body .specs ul li:not(:last-child) {
                    border-bottom: 1px solid #B7BDC0;
                }


    .item-body .other {
        font-size: 14px;
        line-height: 20px;
        color: #6ec59c;
        text-align: center;
        border: 2px solid #6ec59c;
        padding-top: 8px;
        padding-bottom: 8px;
        width: 100%;
    }

.button-link {
    display: inline-block;
    margin: 5px 0px;
    font-size: 16px;
    line-height: 20px;
    color: #FFFFFF;
    letter-spacing: 0.592626px;
    text-align: center;
    padding: 10px 24px;
    background-color: rgb(45, 80, 92);
    ;
    border-radius: 35px;
    cursor: pointer;
}



/*FOOTER STYLES*/

footer {
    background-color: #1e3740;
}

    footer a {
        color: #fff;
    }

        footer a:hover {
            text-shadow: 0.5px 0.5px #ddd;
        }

.footer-navigation {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

    .footer-navigation section {
        padding: 20px;
        text-align: center;
        flex: 1 1 120px;
    }

    .footer-navigation h3 {
        font-size: 12px;
        line-height: 19px;
        color: #FFFFFF;
        text-transform: uppercase;
        opacity: .5;
        margin-bottom: 15px;
    }

    .footer-navigation ul li {
        font-size: 12px;
        line-height: 19px;
        margin-bottom: 10px;
    }

.footer-docs {
    display: flex;
    flex-direction: row;
    text-align: center;
    justify-content: center;
    flex-wrap: wrap;
    height: 40px;
    align-items: center;
    padding-bottom: 5px;
}

    .footer-docs a {
        color: #ddd;
        font-size: 14px;
    }

    .footer-docs div {
        margin: 0px 10px;
    }

@media (width < 950px) {

    .s-stats .title {
        text-align: center;
    }
}

/* CSS for mobile devices */
@media (width < 768px) {

    .s-mainTitle h1 {
        margin-top: 6px;
    }

    .s-mainTitle h2 {
        font-size: 28px;
    }

    .s-mainTitle p {
        padding: 0 5px;
        text-align: left;
    }

    .s-idescription {
        background: #fff;
        margin: 10px;
        border-radius: 10px;
    }

        .s-idescription figure {
            padding: 0px;
            margin: 0px;
        }

        .s-idescription img {
            border-radius: 10px 10px 0 0;
            width: 100%;
        }

        .s-idescription div {
            /*text-align: center !important;*/
            padding: 0px 20px;
        }

    .s-stats .items {
        flex-direction: column;
        text-align: center;
    }

    .s-items .item {
        width: 80%;
    }

    .item-header {
        height: 200px;
        position: relative;
    }


    .lk-pre {
        width: 60px;
        background-size: 30px 30px !important;
    }

    .lk-content h2 {
        font-size: 20px;
        margin: 0px;
    }

    .lk-content p {
        font-size: 14px;
        margin: 10px 0;
    }
}
