/* ------------------------------------------------------------------------ */
/*  BASE STYLE
/* ------------------------------------------------------------------------ */
@font-face {
    font-family: "Manrope";
    src: url("fonts/manrope-regular.woff2") format("woff2"),
         url("fonts/manrope-regular.woff") format("woff");
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: "Manrope";
    src: url("fonts/manrope-semibold.woff2") format("woff2"),
         url("fonts/manrope-semibold.woff") format("woff");
    font-weight: 600;
    font-style: normal;

}
@font-face {
    font-family: "Manrope";
    src: url("fonts/manrope-extrabold.woff2") format("woff2"),
         url("fonts/manrope-extrabold.woff") format("woff");
    font-weight: 800;
    font-style: normal;
}

body,
html {
    height: 100%;
    font-family: "Manrope", sans-serif;
}

h1, h2 {
    line-height: 130%;
}

p {
    line-height: 160%;
}

a {
    transition: all .3s ease-in-out;
}

main a {
    color: #239F72;
}

main a:not([class]) {
    border-bottom: 2px solid #E7EDF8;
}

main a:not([class]):hover {
    border-bottom: 2px solid #39BB8C;
}

p:last-child {
    margin-bottom: 0;
}


.container {
    max-width: 1160px;
    padding-left: 20px;
    padding-right: 20px;
    margin-left: auto;
    margin-right: auto;
}


.container-half {
    max-width: 580px;
}

.img-2x {
    max-width: 50%;
}

.img-header {
    max-width: 680px;
}

@media (min-width: 770px) {
    .header-main {
        min-height: 600px;
    }
}

@media (min-width: 1160px) {
    .container {
        margin-left: auto;
        margin-right: auto;
        padding-left: 0;
        padding-right: 0;
    }
    /* .py-lg {
        padding: 128px 0;
    }
    .p-lg {
        padding: 128px;
    }
    .pb-lg {
        padding-bottom: 128px;
    }
    .pt-lg {
        padding-top: 128px;
    } */
}



a {
    text-decoration: none;
}

a:focus {
    outline: 2px solid rgba(66, 153, 225, 0.5);
    outline-offset: 2px;
    border-color: transparent;
}

.nav-top > nav > a:first-child:focus {
    outline-offset: 8px;
}

a[href^="tel"] {
    color: inherit;
    text-decoration: none;
}

.border-none:hover {
    border: none;
}

.img-sq {
    height: 0;
    width: 100%;
    padding-bottom: 100%;
}
.img-wide {
    height: 0;
    width: 100%;
    padding-bottom: 66%;
}

.multiply {
    mix-blend-mode: multiply;
}

main ul {
    padding-left: 16px;
}

main ul li {
    list-style: initial;
}

ol:not([class]) {
    list-style: none;
    counter-reset: my-awesome-counter;
    padding-left: 1rem;
    padding-bottom: 1rem;
}
ol:not([class]) li {
    counter-increment: my-awesome-counter;
    padding-bottom: 6px;
}
ol:not([class]) li::before {
    content: counter(my-awesome-counter) ". ";
    color: #39BB8C;
    font-weight: bold;
}


ul.list-reset {
    padding: 0;
}

.list-reset li {
    list-style: none;

}

.list-check,
.list-error {
    padding-left: 0;
} 

.list-check li,
.list-error li {
    padding: 4px 0 4px 36px;
    list-style: none;
}

.list-check li {
    background: url("../images/list-check.svg") no-repeat left 12px;
}

.list-error li {
    background: url("../images/list-error.svg") no-repeat left 8px;
    background-size: 22px;
}

.text-xl a {
    color: #239F72;
    border-bottom: 2px solid #E7EDF8;
}

.transition {
    transition: all .2s ease-in-out;
}

.transition:hover {
    /* transform: scale(1.01); */
    
    /* box-shadow: 0 24px 32px -16px rgba(0,0,0,.32); */
}


.bg-black-pattern {
    background: #031b4e url(../images/bg-city.svg) no-repeat bottom center;
    background-size: cover;
}


footer.footer-main {
    background-color: #F8F9FC;
    background-image: url(../images/cta-l.svg), url(../images/cta-right.svg);
    background-repeat: no-repeat;
    background-position: -160px 0px, 380px 0px;
}

@media (min-width: 770px) {
    footer.footer-main {
        background-position: top left, top right;
    }
}

.absolute-center {
    left: 50%;
    transform: translateX(-50%);
}


footer ul li {
padding: 6px 0;
}

span.wpcf7-list-item {
    margin: 0 0 0.5em 0 !important;
}

.wpcf7-list-item label {
    display: flex;
    font-size: 14px;
    line-height: 110%;
    padding-bottom: 1em;
}

.wpcf7-list-item  input {
    margin-right: 4px;
}

.bg-black .wpcf7-list-item-label {
    color: #fff;
}

.p-dark p {
    color: #012464;
}

.table-responsive {
    min-height: .01%;
    overflow-x: auto;
}
.table-responsive {
    width: 100%;
    margin-bottom: 15px;
    overflow-y: hidden;
    border: 1px solid #ddd;
    padding: 12px;
}

@media (min-width: 770px) {
    .table-responsive {
        padding: 0;
        border: none;
    }
}


/* grids */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 16px;
}
.grid-3 {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 16px;
}

.grid-6 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 16px;
}


@media (min-width: 770px) {
    .grid-3 {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        grid-gap: 32px;
    }
    .grid-6 {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
        grid-gap: 32px;
    }
    .grid-2 {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-gap: 32px;
    }

    .grid-approach {
        display: grid;
        grid-template-columns: 460px 1fr;
        grid-gap: 32px;
    }
    .container-small {
        max-width: 580px;
    }

}

.release-notes ul {
    margin-bottom: 1.5rem;
}


/* ------------------------------------------------------------------------ */
/*  BUTTONS
/* ------------------------------------------------------------------------ */


.btn-arrow {
    padding-right: 32px;
    display: inline-block;
    position: relative;
    border: none;
}

.btn-arrow::after {
    content: "";
    background: url("../images/arrow.svg") no-repeat;
    background-position:  0 center;
    position: absolute;
    top: 0px;
    right: 0px;
    height: 24px;
    width: 24px;
    line-height: 0;
    margin-left: 12px;
    transition: all .2s ease-in-out;
    transform: translateY(50%);
    margin-top: -10px;

}

.btn-arrow.text-white::after {
    background: url("../images/arrow-white.svg") no-repeat 0 center;
}

.btn-arrow:hover {
    border: none;
}

.btn-arrow:hover::after {
    transform: translateY(50%) translateX(3px);
}

main .btn-primary,
main .btn-primary:hover {
    border: none;
}

.btn-primary:hover {
    background: #29A577;
}

.btn-primary:disabled {
    opacity: 50%;
}

/* Custom utilities */
.element-center {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
}

.img-responsive {
    max-width: 100%;
    height: auto;
}

/* Tabs */
.tab-target {
    display: none;
    /* visibility: hidden; */
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.2s ease-in-out;
}

.tab-target.is-active {
    display: block;
    /* visibility: initial; */
    opacity: 1;
    transform: translateY(0px);
}

.tab-title {
    border: 2px solid transparent;
}
.tab-title.is-active {
    border: 2px solid #39BB8C;
}


/* ------------------------------------------------------------------------ */
/*  DECO
/* ------------------------------------------------------------------------ */
.deco-trans {
    position: absolute;
    top: 0;
    left: 50%;
    margin-left: -1px;
    height: 18px;
    width: 2px;
    background: #39BB8C;
}

.map-bg {
    background: url(../images/map.png) no-repeat center;
    background-size: contain;
}

.solution-slider-box {
    width: 360px;
    /* opacity: 0; */
    transition: all .3s ease-in-out;
}

.testimonial-box {
    /* opacity: 0; */
    transition: all .2s ease-in-out;
}

.testimonial-box.is-selected {
    opacity: 1;
}

.bg-dark-overlay {
    background: rgba(0,0,0,0.15);
}
/* ------------------------------------------------------------------------ */
/*  NAVIGATION
/* ------------------------------------------------------------------------ */
.nav-logo {
    width: auto;
    height: 30px;
    /* background: url(../images/logo-white.svg) no-repeat left center; */
    background-size: contain;
    /* height: auto; */
}

@media (min-width: 770px) {
 .nav-logo {
     height: 36px;
 }
}


/* 04. Submenu */
.has-dropdown {
    position: relative;
}

.has-dropdown::after {
    content: "";
    margin-left: 6px;
    background: url("../images/dropdown.svg") no-repeat right center;
    width: 12px;
    height: 8px;
    display: inline-block;
}

.has-dropdown:hover::after {
    background: url("../images/dropdown-green.svg") no-repeat right center;
}


.nav-main .has-dropdown .sub-menu {
    width: 260px;
    padding: 32px;
    margin: 0px 0 0 0;
    background-color: #fff;
    font-size: 16px;
    text-align: left;
    position: absolute;
    left: 0;
    top: 100%;
    z-index: 3;
    transform: translateX(-10px) translateY(0px);
    transform-origin: 50% 0;
    border-radius: 4px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(.23, 1, .32, 1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.nav-main .has-dropdown .sub-menu-wide {
    width: 440px;
}

.nav-main .has-dropdown .sub-menu:not(:target) a[aria-label][href="#"] {
    display: none;
}

/* keyboard focus close button (no JS) */
.nav-main .has-dropdown .sub-menu:target a[aria-label][href="#"] {
    position: absolute;
    top: 0.2em;
    right: 0;
    width: 1.5em;
    text-align: center;
    font-size: 1.5em;
}

.nav-main .has-dropdown > a[aria-expanded="true"] + .sub-menu,
.nav-main .has-dropdown .sub-menu:target,
.nav-main:not([data-expanded="true"]) .has-dropdown:hover .sub-menu {
    opacity: 1;
    pointer-events: inherit;
    overflow: inherit;
    height: auto;
    visibility: inherit;
    transform: translateX(-10px) translateY(15px);
}

.nav-main .has-dropdown .sub-menu li {
    display: block;
    margin: 0;
    padding: 2px 0;
    opacity: 0;
    transition: all 0.3s ease-out;
}

.nav-main .has-dropdown > a[aria-expanded="true"] + .sub-menu li,
.nav-main .has-dropdown .sub-menu:target li,
.nav-main:not([data-expanded="true"]) .has-dropdown:hover .sub-menu li {
    opacity: 1;
    transform: translateY(0px);
}

.nav-main .has-dropdown .sub-menu li a:hover {
    color: #39BB8C;
}

.nav-main .has-dropdown .sub-menu li > a {
    text-transform: none !important;
    font-size: 16px;
    display: block;
    margin: 0;
    padding: 4px 0;
}



/* Mobile nav */
.nav-mobile a {
    /* color: #2065A5; */
}

.nav-mobile a.btn-red {
    color: #fff;
}

.nav-mobile .sub-menu a {
    padding: 12px 0;
    display: block;
    color: #39BB8C;
}

.nav-mobile .sub-menu {
    margin: 0px 0 20px 12px;
    list-style: none;
    padding: 0;
    border-radius: 4px;
    display: none;
}

.nav-mobile .has-dropdown {
    position: relative;
    display: block;
}

.nav-mobile .has-dropdown::after {
    content: "";
    margin-left: 6px;
    background: url("../images/dropdown.svg") no-repeat right center;
    width: 12px;
    height: 8px;
    position: absolute;
    top: 16px;
    right: 0;
}


.nav-mobile .btn-red a {
    color: #fff;
    width: 100%;
    display: block;
}

body.nav-open {
    overflow: hidden;
}

.nav-mobile {
    display: none;
    background: #fff;
    position: fixed;
    height: 100%;
    bottom: 0;
    top: 0;
    left: 10%;
    width: 90%;
    z-index: 102;
    transform: translateX(100%);
    transition: all 0.4s ease-in-out;
    overflow-y: scroll;
}

.nav-mobile-cover {
    position: fixed;
    display: block;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(65, 69, 111, 0.25);
    z-index: 0;
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
    z-index: 101;
    pointer-events: none;
}

.nav-open .nav-mobile {
    display: block;
    transform: translateX(0);
}

.nav-open .nav-mobile-cover {
    opacity: 1;
    left: 0;
}

.nav-mobile-wrap>li {
    border-bottom: 1px solid #eaeaea;
}

.nav-mobile-wrap>li>a {
    display: block;
    padding: 10px 0;
    font-weight: medium;
    /* color: #121313; */
}

.nav-main {
    display: none;
}

.btn-nav {
    position: absolute;
    width: 42px;
    height: 42px;
    top: 10px;
    right: 10px;
    z-index: 150;
    display: block;
    border-radius: 4px;
}

.btn-nav .icon {
    position: absolute;
    height: 3px;
    border-radius: 2px;
    width: 20px;
    top: 18px;
    left: 4px;
    background-color: #39BB8C;
    transition: all .3s ease-in-out;
}

.btn-nav .icon:before {
    position: absolute;
    width: 25px;
    height: 3px;
    border-radius: 2px;
    background-color: #39BB8C;
    content: "";
    top: -8px;
    transition: all .3s ease-in-out;
}

.btn-nav .icon:after {
    position: absolute;
    width: 25px;
    height: 3px;
    border-radius: 2px;
    background-color: #39BB8C;
    content: "";
    top: 8px;
    left: 0px;
    transition: all .3s ease-in-out;
}

.nav-open .btn-nav .icon {
    background: transparent;

}

.nav-open .icon:before {
    transform: rotateZ(45deg) scaleX(1.1) translate(5px, 4px);
    transition: all .3s ease-out;

}

.nav-open .icon:after {
    transform: rotateZ(-45deg) scaleX(1.1) translate(6px, -6px);
    transition: all .3s ease-out;

}

.btn-nav:hover {
    cursor: pointer;
}


@media (min-width: 860px) {
    .nav-main {
        display: flex;
    }

    .btn-nav {
        display: none;
    }
}

code pre {
    background-color: #EEE;
}
