body {
    font-family: "filson-soft",sans-serif !important;
    letter-spacing: initial;
    -webkit-font-smoothing: antialiased;
}

.cf:before, .cf:after {
    content: " ";
    display: table;
}

.cf:after {
    clear: both;
}

.container {
    margin: 0 auto;
    max-width: 1340px;
}

.button {
    padding: 16px 32px;
    color: white;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    font-size: 0.825em;
}

    .button i {
        font-style: italic;
        font-weight: 200;
    }

.button_green {
    background: #13ce66;
    border-radius: 4px;
}

.button_shadow {
    box-shadow: 0px 0px 29px -9px rgba(0,0,0,0.68);
}

header ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

@media (min-width: 768px) {
    .button_large {
        font-size: 1.125em;
        padding: 16px 32px;
    }
}

.button_outline_blue {
    border: 2px solid #1fb6ff;
    color: #1fb6ff;
    background: #fff;
    border-radius: 4px;
    padding: 8px 16px;
    font-weight: normal;
    text-decoration: none;
    font-size: 0.875em;
}

.button_grey {
    background: #567183;
    color: #fff;
    border-radius: 6px;
}

input.button {
    box-shadow: none;
    border: none;
}

.site-wrapper {
    display: flex;
    min-height: 100vh;
    flex-direction: column;
}

    .site-wrapper main {
        flex: 1;
    }

header {
    position: relative;
    border-bottom: 1px solid #e8ebed;
    top: 0;
    background: #fff;
    z-index: 99;
}

.sticky {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
}

    .sticky:before, .sticky:after {
        content: '';
        display: table;
    }

@media (min-width: 1024px) {
    header {
        position: -webkit-sticky;
        position: sticky;
    }
}

.header__container {
    display: -ms-flexbox;
    display: flex;
    position: relative;
    flex-wrap: wrap;
}

@media (min-width: 768px) {
    .header__container {
        -ms-flex-align: center;
        align-items: stretch;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
}

.header__logo {
    padding: 5px 13px;
    text-decoration: none;
    color: #5d5d5d;
    font-size: 2em;
    font-weight: 500;
}

.logo-blue {
    color: #1fb6ff;
    font-weight: bold;
    display: inline-block;
}

@media (min-width: 1024px) {
    a.header__logo {
        transition: color ease-out 0.5s;
    }

        a.header__logo:hover {
            color: #1fb6ff
        }

    .logo-blue {
        transition: color ease-out 0.5s;
    }

    a.header__logo:hover .logo-blue {
        color: #2a3d54;
        -webkit-transform: rotate(30deg);
        transform: rotate(30deg);
        -webkit-animation: roll 3s infinite;
        animation: roll 3s infinite;
        transform: rotate(360deg);
        animation: roll 3s;
    }

    @-webkit-keyframes roll {
        0% {
            -webkit-transform: rotate(0);
            transform: rotate(0);
        }

        100% {
            -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
        }
    }

    @keyframes roll {
        0% {
            -webkit-transform: rotate(0);
            transform: rotate(0);
        }

        100% {
            -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
        }
    }
}

@media (min-width: 768px) {
    .header__logo {
        font-size: 2.5em;
    }
}

.header__logo__img {
    max-width: 122px;
    height: 30px;
    width: 100%;
}

@media (min-width: 800px) {
    .header__logo__img {
        max-width: 135px;
        height: 35px;
    }
}

@media (min-width: 1024px) {
    .header__logo__img {
        max-width: 150px;
        height: 40px;
    }
}

@media (min-width: 1400px) {
    .header__logo__img {
        max-width: 180px;
        height: 44px;
        margin: 10px;
    }
}

.header__nav__list {
    display: none;
}

@media (min-width: 768px) {
    .burger-menu {
        display: none;
    }
}

.burger-menu {
    position: absolute;
    width: 20px;
    height: 27px;
    cursor: pointer;
    right: 12px;
    top: 5px;
}

.burger {
    position: absolute;
    background: #7e9bae;
    width: 100%;
    height: 3px;
    top: 6px;
    right: 0px;
    top: 13px;
    opacity: 1;
    border-radius: 4px;
}

    .burger::before {
        position: absolute;
        background: #7e9bae;
        width: 20px;
        height: 3px;
        top: 7px;
        content: "";
        display: block;
        border-radius: 4px;
    }

    .burger::after {
        position: absolute;
        background: #7e9bae;
        width: 20px;
        height: 3px;
        bottom: 7px;
        content: "";
        display: block;
        border-radius: 4px;
    }

    .burger::after, .burger::before, .burger {
        transition: all .3s ease-in-out;
        -webkit-transition: all .3s ease-in-out;
    }

.burger-menu.menu-on .burger::after {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    bottom: 0px;
}

.burger-menu.menu-on .burger::before {
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    top: 0px;
}

.burger-menu.menu-on .burger {
    background: rgba(111,111,111,0);
}

.header__nav {
    display: flex;
}

.header__nav__ul {
    display: flex;
    font-size: 14px;
}

    .header__nav__ul a {
        text-decoration: none;
        padding: 10px;
    }

    .header__nav__ul ul a {
        line-height: 1.4;
        padding: 10px 10px 2px;
    }

    .header__nav__ul > li {
        display: flex;
    }

        .header__nav__ul > li > a {
            color: #515151;
            border-left: 1px solid white;
            border-right: 1px solid white;
            height: 100%;
            display: flex;
            align-items: center;
        }

.has-sub {
    display: none;
}

    .has-sub svg {
        width: 15px;
        color: #1fb6ff;
    }

.customer-logos {
    filter: drop-shadow(1px 1px 1px #0000001a);
    max-width: 100%;
    width: auto;
    width: 100%;
    height: auto;
}

@media (min-width: 1100px) {
    .header__nav__ul > li > a {
        padding: 1rem 1.2rem;
        font-size: 1rem;
    }
}

@media (min-width: 1400px) {
    .header__nav__ul > li > a {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }

    .has-sub svg {
        width: 25px;
        margin-right: -10px;
    }
}


.header__actions {
    display: inline-flex;
    padding: 8px;
}

@media (min-width: 1400px) {
    .header__actions {
        display: inline-flex;
        padding: 20px;
    }
}

.button_login {
    display: inline-flex;
    border: 1px solid #EEF0F1;
    border-radius: 6px;
    padding: 4px 10px;
    text-decoration: none;
    align-items: center;
    margin-right: 10px;
    font-size: 14px;
}

    .button_login svg {
        width: 20px;
        height: 20px;
        color: #DDDDDD;
        margin-right: 5px;
    }

    .button_login span {
        color: #535353
    }

.header .button_green {
    font-size: 14px;
    padding: 12px 14px;
    display: inline-flex;
    align-items: center;
}

    .header .button_green span {
        display: none;
    }

@media(min-width: 1200px) {
    .header .button_green span {
        display: inline-block;
        padding-left: 6px;
    }
}

.resource-menu {
    background: #fcfcfd;
    border-bottom: 1px solid #e8ebed;
}

    .resource-menu nav {
        display: flex;
        flex-wrap: wrap;
        align-items: stretch;
        justify-content: center;
        align-content: stretch;
        width: 100%;
        max-width: 1325px;
        margin: 0 auto;
    }

        .resource-menu nav a {
            display: flex;
            flex: 1;
            padding: 0.5em 2em 1.5em;
            flex-direction: column;
            justify-content: flex-end;
            align-items: center;
            border-left: 1px solid #e8ebed;
            text-decoration: none;
            color: #898b8c;
            text-align: center;
        }

            .resource-menu nav a:last-child {
                border-right: 1px solid #e8ebed;
            }

            .resource-menu nav a:hover {
                background: white;
                color: #1fb6ff;
                box-shadow: inset 0 0 20px #e8ebed;
            }

        .resource-menu nav img {
            max-width: 60px;
            padding: 10px;
        }

.header__section ul .header__view-all {
    display: inline-flex;
    align-items: flex-start;
    width: auto;
    margin: 0.5rem 1.5rem;
}

    .header__section ul .header__view-all a {
        background: rgba(255, 206, 31, 0.12);
        border-radius: 18px;
        padding: 5px 1rem;
        color: #525252;
        display: inline-flex;
        font-size: 13px;
    }

@media (max-width: 767px) {
    .header ul {
        width: 100%;
    }

    .mobile-menu-on {
        background: #FCFCFD;
    }

        .mobile-menu-on > *:not(.header) {
            display: none;
        }

        .mobile-menu-on header {
            border-bottom: none;
        }

    .header__nav__ul {
        display: none;
    }

    .header__nav {
        width: 100%;
    }

    .burger-menu.menu-on ~ .header__nav__ul {
        display: flex;
        width: 100%;
        top: 100%;
        flex-direction: column;
        background: #FCFCFD;
        padding: 1rem;
        border-top: 1px solid #e8ebed;
    }

    .header__nav__ul li {
        width: 100%;
        border-left: 1px solid #E8EBED;
        border-right: 1px solid #E8EBED;
        display: flex;
        overflow: hidden;
        flex-wrap: wrap;
    }

    .header__nav__ul > li:first-child {
        border-top: 1px solid #E8EBED;
        border-radius: 12px 12px 0 0;
    }

    .header__nav__ul > li:last-child {
        border-bottom: 1px solid #E8EBED;
        border-radius: 0 0 12px 12px;
    }

    .header__nav__ul a {
        background: white;
        padding: 1rem 1.5rem;
        width: 100%;
        font-size: 16px;
        display: flex;
    }

    .header__nav__ul > li:first-child > a {
        padding-top: 1.5rem;
    }

    .header__nav__ul > li:last-child a {
        padding-bottom: 1.5rem;
    }

    .header__nav__ul a span {
        flex: 1;
    }

    .header__nav__ul a svg {
        width: 25px;
        transition: 0.5s;
    }

    .has-sub_open svg {
        transform: rotate(180deg);
    }

    a.has-sub_open {
        padding-bottom: 0;
    }

    .has-sub_open ~ .header__sub {
        display: flex;
        flex-direction: column;
        width: 100%;
        border-bottom: 1px solid #E8EBED;
        padding-bottom: 1rem;
        background: white;
    }

        .has-sub_open ~ .header__sub a {
            padding: 0.5rem 1.5rem;
            font-size: 14px;
        }

    .header__feature {
        display: none;
    }

    .header__section, .header__section li {
        width: 100%;
        border: none;
    }

        .header__section h2 {
            font-size: 0.825rem;
            padding-left: 1.5rem;
            padding-top: 1rem;
        }

    .header .button_green {
        display: none;
    }

    .header__actions {
        margin-left: auto;
    }

    .button_login {
        border: none;
        padding: 0;
        margin: 5px 2rem 0 0;
        display: block;
        position: absolute;
        top: 4px;
        right: 7px;
    }

        .button_login span {
            display: none;
        }

    .header__actions {
        display: block;
        padding: 0;
    }
}

@media(min-width:768px) {

    .header__section ul .header__view-all {
        margin: 0.5rem 0;
    }

    .header__nav__ul {
        height: 100%;
    }

        .header__nav__ul > li {
            height: 100%;
            display: flex;
        }

        .header__nav__ul li:hover .header__sub {
            display: flex;
            width: 100vw;
            position: absolute;
            width: 100vw;
            background: white;
            left: 50%;
            right: 50%;
            margin-left: -50vw;
            margin-right: -50vw;
            top: 100%;
            justify-content: center;
            border: 1px solid #E8EBED;
            padding: 1rem;
            box-shadow: 0px 4px 10px rgba(182, 183, 183, 0.1);
        }

        .header__nav__ul li:hover .header__sub__inner {
            max-width: 1312px;
            width: 100%;
            display: flex;
            justify-content: space-around;
        }

        .header__nav__ul > li:hover > a {
            border-color: #E8EBED;
            position: relative;
        }

            .header__nav__ul > li:hover > a.has-sub:after {
                width: 100%;
                content: "";
                height: 3px;
                position: absolute;
                bottom: -2px;
                z-index: 2;
                display: block;
                left: 0;
                right: 0;
                background: white;
            }

    .header__section {
        /* padding: 1rem 3rem; */
        flex: 1;
        max-width: 280px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

        .header__section ul {
            margin: 0;
        }

            .header__section ul a {
                display: block;
                padding-left: 0;
            }

    .header h2 {
        font-size: 24px;
        padding: 0;
        font-weight: 500;
        color: #567183;
        text-align: left;
    }


    .header .button {
        width: 100%;
        text-align: center;
        justify-content: center;
        font-size: 14px !important;
        border-radius: 6px;
        padding: 12px 14px;
        display: inline-flex;
        align-items: center;
        text-decoration: none !important;
    }

    .header__success {
        display: none;
        max-width: 28ch;
        background: #FAFAFA;
        border-radius: 17px;
        padding: 1rem;
        flex-direction: column;
        justify-content: space-between;
    }

        .header__success svg {
            width: 100%;
        }

    svg.tech_icon__svg {
        max-width: 100%;
        color: #1fb6ff;
        padding: 13px;
        max-height: 100%;
        background: #e4f6ff;
        border-radius: 120px;
        overflow: visible;
    }

    .button_blue {
        background: #1FB6FF;
    }

    .header__recap {
        border: 2px solid rgba(31, 182, 255, 0.25);
        text-align: left;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding: 1rem;
        max-width: 34ch;
        border-radius: 6px;
        padding-left: 52px;
        position: relative;
        margin-left: 30px;
    }

        .header__recap h2 {
            color: #1FB6FF;
        }

        .header__recap a {
            color: #13709c;
            display: inline-flex;
            background: rgba(31, 182, 255, 0.12);
            border-radius: 18px;
            margin-top: auto;
        }

            .header__recap a svg {
                width: 20px;
                margin-right: 5px;
                color: #1fb6ff;
                fill: #1FB6FF;
            }

    .header__js {
        background: #FFFFFF;
        border: 2px solid rgba(255, 154, 2, 0.25);
        box-sizing: border-box;
        border-radius: 6px;
        padding: 1rem;
        display: none;
        flex-direction: column;
        max-width: 34ch;
        align-items: flex-start;
        position: relative;
        padding-left: 52px;
    }

        .header__js h2 {
            color: #FF9A02;
        }

    .header__icon {
        width: 66px;
        height: 66px;
        position: absolute;
        left: -33px;
        top: 50%;
        transform: translateY(-50%);
    }

        .header__icon svg, .header__icon svg path {
            fill: #1FB6FF;
        }

    .header__js p {
        color: #8094A2;
    }

    .header__js a {
        color: #525252;
        display: inline-flex;
        background: rgba(255, 206, 31, 0.12);
        border-radius: 18px;
    }

        .header__js a svg {
            width: 20px;
            margin-right: 5px;
            color: #FF9A02;
        }
}

@media(min-width:1200px) {
    .header__js, .header__success {
        display: flex;
    }
}


/* user area nav*/

.header__nav {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
}

.header__nav__list {
    position: absolute;
    left: 0;
    top: 100%;
    background: #f6f8f9;
    width: 100%;
    border-top: 1px solid #e8ebed;
    border-bottom: 1px solid #e8ebed;
    padding: 1em;
}

@media (min-width: 768px) {
    .header__nav__list {
        position: static;
        display: block;
        background: none;
        display: -ms-flexbox;
        display: flex;
        border: none;
        -ms-flex-align: center;
        align-items: center;
        -ms-flex-pack: center;
        justify-content: center;
        padding: 0;
    }
}

.header__nav__list_active {
    display: block;
    overflow-y: scroll;
    height: 100vh;
    padding-bottom: 32px;
}

.header__nav__li__a {
    display: block;
    padding: 16px;
    color: #515151;
    text-decoration: none;
    display: flex;
}

@media (min-width: 768px) {

    .header__nav__li.mobile-only {
        display: none;
    }

    .header__nav__li__a {
        font-size: 0.825em;
        padding: 10px;
    }
}

@media (min-width: 1024px) {
    .header__nav__li__a {
        padding: 16px;
        font-size: 0.925em;
    }
}

@media (min-width: 1024px) {
    .header__nav__li {
        margin-left: 16px;
    }
}

.header__nav__sub-menu {
    display: none;
}

.header__case-study {
    max-width: 100%;
    border: 1px solid #1fb6ff;
    border-radius: 6px;
    padding: 1rem;
    display: none;
}

@media(min-width:900px) {
    .header__case-study:first-child {
        display: block;
        width: 400px;
    }
}

@media(min-width:1200px) {
    .header__case-study {
        display: block;
        width: 400px;
    }
}

.header__case-study a {
    display: grid;
    grid-template-columns: minMax(30px,66px) 1fr;
    gap: 1rem;
}

.header__case-study__img {
    width: 100%;
    aspect-ratio: 1/1;
    background: red;
    border-radius: 100px;
    grid-column: 1/2;
    grid-row: 2/3;
    overflow: hidden;
}

    .header__case-study__img img {
        display: block;
    }

.header__case-study__title {
    color: #1fb6ff;
    grid-column: 2/3;
    font-weight: bold;
    line-height: 1.4rem;
    font-size: clamp(0.725rem, 3vw, 1rem)
}

.header__case-study__sub-text {
    color: #8094A2;
    grid-column: 2/3;
}

.header__case-study__button {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border-radius: 18px;
    background: rgba(31, 182, 255, 0.12);
    justify-self: start;
    padding: 0.5rem 1rem;
    grid-column: 2/3;
}

    .header__case-study__button svg.thin-arrow-right {
        width: 20px;
        height: 18px;
    }

/* user area nav*/
.footer {
    background: #242424;
}

.footer__columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minMax(200px, 1fr));
    gap: 2rem;
}

.footer__cotainer {
    padding: 4rem 1rem 3rem;
}

.footer h3 {
    color: white;
    font-size: 22px;
    margin-bottom: 1.6rem;
    padding: 0;
}

.footer__col ul {
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
}

.footer a {
    text-decoration: none;
    color: white;
    font-weight: 300;
    font-size: 16px;
    letter-spacing: 0.5px;
    opacity: 0.75;
    transition: 0.25s;
}

.footer a:hover {
    opacity: 1;
}

.footer__col {
    display: flex;
    flex-direction: column;
    container-type: inline-size;
}


@media(min-width:1000px) {
    .footer__list {
        align-self: center;
    }
}


.footer__col:first-child {
    align-items: flex-start;
}

.footer__col {
}

.footer__logo {
    max-width: 156px;
    width: 100%;
    margin-bottom: 1.9rem;
}

address.footer-address {
    color: white;
    opacity: 0.75;
    font-weight: 300;
    display: flex;
    flex-direction: column;
    padding: 0;
    gap: 0.25rem;
}

address.footer-address span {
    color: white;
    font-weight: 300;
    font-size: 16px;
    opacity: 0.75;
    letter-spacing: 0.5px;
}

.footer__social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

small.footer__small {

    display: block;
    color: white;
    opacity: 0.45;
    font-weight: 300;
    font-size: 14px;
}

.footer__end {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    padding-top: 3rem;
}


.footer__end img  {
    max-width: 125px;
    filter: grayscale(1);
    opacity: 0.8;
} 

@media (min-width: 768px) {
    .footer__end {
        flex-direction: row;
        justify-content: space-between;
    }
}

.climate-positive {
    margin: 1rem auto;
}

@media(min-width:768px) {
    .climate-positive {
        margin: 0;
    }
}

.dual-cta {
    width: 100%;
    display: grid;
    justify-content: center;
    background: #f3f3f3;
}

    .dual-cta .container {
        max-width: 1320px;
        display: grid;
        gap: clamp(0.825rem, 3vw, 2.5rem);
        margin: 0 auto;
        padding: clamp(0.825rem, 4vw, 3rem) 1rem;
        justify-content: center;
    }

@media(min-width:768px) {
    .dual-cta .container {
        grid-template-columns: repeat(auto-fit,minmax(300px,1fr));
    }
}


.dual-cta__item {
    border: 1px solid #E8EBED;
    padding: clamp(0.825rem, 2.5vw, 2rem);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    border-radius: 12px;
    background: white;
}

    .dual-cta__item h2 {
        margin: 0;
        padding: 0;
    }

    .dual-cta__item p {
        font-size: clamp(0.825rem, 2.5vw, 1rem);
        margin: 0;
        padding: 0;
    }

.dual-cta a {
    font-size: clamp(0.825rem, 2.5vw, 1rem);
}

.dual-cta h2 {
    color: #1fb6ff;
    font-weight: bold;
}

.dual-cta .bold {
    font-weight: bold;
    font-size: clamp(0.825rem, 3vw, 1.4rem);
}


.dual-cta .button_blue {
    background: #1FB6FF;
}

.dual-cta .button {
    border-radius: 6px;
    margin-top: auto;
}
