html
{
    box-sizing: border-box;
    font-size: 100%;
    scroll-behavior: smooth;
}
*, :after, :before
{
    box-sizing: inherit;
}
body
{
    color: var(--color-grey);
    font-family: var(--font-primary);
    font-size: var(--font-size-small);
    font-weight: var(--font-wieght-regular);
    margin: 0;
    padding: 0;
}
@font-face
{
    font-display: swap;
    font-family: Poppins;
    font-style: normal;
    font-weight: 400;
    src: url(/wp-content/themes/inspree/dist/fonts/poppins-v20-latin-regular.eot?);
    src: local(""),url(/wp-content/themes/inspree/dist/fonts/poppins-v20-latin-regular.eot?) format("embedded-opentype"),url(/wp-content/themes/inspree/dist/fonts/poppins-v20-latin-regular.woff2) format("woff2"),url(/wp-content/themes/inspree/dist/fonts/poppins-v20-latin-regular.woff) format("woff"),url(/wp-content/themes/inspree/dist/fonts/poppins-v20-latin-regular.ttf) format("truetype"),url(/wp-content/themes/inspree/dist/fonts/poppins-v20-latin-regular.svg) format("svg");
}
@font-face
{
    font-display: swap;
    font-family: Poppins;
    font-style: normal;
    font-weight: 700;
    src: url(/wp-content/themes/inspree/dist/fonts/poppins-v20-latin-700.eot?);
    src: local(""),url(/wp-content/themes/inspree/dist/fonts/poppins-v20-latin-700.eot?) format("embedded-opentype"),url(/wp-content/themes/inspree/dist/fonts/poppins-v20-latin-700.woff2) format("woff2"),url(/wp-content/themes/inspree/dist/fonts/poppins-v20-latin-700.woff) format("woff"),url(/wp-content/themes/inspree/dist/fonts/poppins-v20-latin-700.ttf) format("truetype"),url(/wp-content/themes/inspree/dist/fonts/poppins-v20-latin-700.svg) format("svg");
}
h1, h2, h3, h4, h5
{
    color: var(--color-black);
    font-weight: var(--font-weight-heavy);
    margin: 0 0 2rem;
}
h1
{
    font-size: var(--font-size-x-large);
    line-height: 1.3;
}
@media only screen and (max-width: 680px)
{
    h1
    {
        font-size: var(--font-size-large);
    }
}
h2
{
    font-size: var(--font-size-large);
    line-height: 1.3;
}
@media only screen and (max-width: 680px)
{
    h2
    {
        font-size: var(--font-size-medium);
    }
}
h3
{
    font-size: var(--font-size-smedium);
    line-height: 1.3;
}
p
{
    line-height: 1.7;
    margin: 0 0 2rem;
}
.tc
{
    text-align: center;
}
.title-intro
{
    color: var(--color-black);
    font-size: var(--font-size-medium);
    line-height: 1.5;
    margin-bottom: 0;
}
@media only screen and (max-width: 680px)
{
    .title-intro
    {
        font-size: var(--font-size-smedium);
    }
}
.blue
{
    color: var(--color-primary);
}
.white
{
    color: var(--color-white);
}
.button, button, input[type=button], input[type=reset], input[type=submit]
{
    background-color: var(--color-primary);
    border: none;
    border-radius: 5rem;
    color: var(--color-white);
    cursor: pointer;
    display: inline-block;
    font-family: inherit;
    font-size: var(--font-size-small);
    font-weight: var(--font-weight-heavy);
    padding: 1.2rem 2.5rem;
    text-decoration: none;
    text-transform: uppercase;
    transition: background-color .3s ease-out,color .3s ease-out;
}
.button:hover, button:hover, input[type=button]:hover, input[type=reset]:hover, input[type=submit]:hover
{
    background-color: var(--color-black);
    color: var(--color-white);
}
.button.white, button.white, input[type=button].white, input[type=reset].white, input[type=submit].white
{
    background-color: var(--color-white);
    color: var(--color-black);
}
.button.white:hover, button.white:hover, input[type=button].white:hover, input[type=reset].white:hover, input[type=submit].white:hover
{
    background-color: var(--color-black);
    color: var(--color-white);
}
@media only screen and (max-width: 680px)
{
    .button, button, input[type=button], input[type=reset], input[type=submit]
    {
        padding: 1rem 1.5rem;
    }
}
a
{
    color: var(--color-primary);
}
section
{
    padding: 3rem;
    position: relative;
}
@media only screen and (max-width: 680px)
{
    section
    {
        padding: 1.5rem;
    }
}
.container
{
    margin-inline: auto;
    position: relative;
}
.container.large
{
    max-width: 77rem;
}
.container.medium
{
    max-width: 50rem;
}
.container.small
{
    max-width: 37rem;
}
.row
{
    position: relative;
}
.row.medium
{
    max-width: 50rem;
}
.row.small
{
    max-width: 37rem;
}
.row.left
{
    margin-left: 0;
}
.row.mid
{
    margin-inline: auto;
}
.grid
{
    display: grid;
    gap: 2.5rem;
}
.grid--col-3
{
    grid-template-columns: repeat(3,1fr);
}
@media only screen and (max-width: 820px)
{
    .grid
    {
        grid-template-columns: repeat(2,1fr);
    }
}
@media only screen and (max-width: 680px)
{
    .grid
    {
        grid-template-columns: repeat(1,1fr);
    }
}
.flex
{
    display: flex;
    gap: 2.5rem;
}
@media only screen and (max-width: 820px)
{
    .flex
    {
        flex-direction: column;
    }
}
.flex.hc, .flex.vc
{
    align-items: center;
}
.flex.vc
{
    flex-direction: column;
}
.flex.cc
{
    align-items: center;
    justify-content: center;
}
.flex.sb
{
    justify-content: space-between;
}
.flex.wrap
{
    flex-wrap: wrap;
}
.col-2
{
    width: 50%;
}
@media only screen and (max-width: 820px)
{
    .col-2
    {
        width: 100%;
    }
}
.col-3
{
    width: 33.3333%;
}
@media only screen and (max-width: 820px)
{
    .col-3
    {
        width: 100%;
    }
}
.col-4
{
    width: 25%;
}
@media only screen and (max-width: 820px)
{
    .col-4
    {
        width: 100%;
    }
}
.mb-1
{
    margin-bottom: 1rem;
}
.mb-2
{
    margin-bottom: 2rem;
}
.mb-3
{
    margin-bottom: 3rem;
}
header
{
    background: #fff;
    box-shadow: 0 .5rem 1rem transparent;
    height: 7rem;
    left: 0;
    padding: 0 3rem;
    right: 0;
    top: 0;
    transition: all .5s ease-out;
    z-index: 999;
}
header.hide
{
    top: -7rem;
}
header.scrolled
{
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.05);
}
@media only screen and (max-width: 680px)
{
    header
    {
        height: 5rem;
        padding: 0 1.5rem;
    }
    header.hide
    {
        top: -5rem;
    }
}
header .container
{
    flex: 1;
    justify-content: space-between;
    margin: 0 auto;
    position: static;
}
@media only screen and (max-width: 820px)
{
    header .container
    {
        width: 100%;
    }
}
header .container .brand
{
    align-items: center;
    display: flex;
}
@media only screen and (max-width: 680px)
{
    header .container .brand
    {
        max-width: 8rem;
    }
}
header .container .brand img
{
    max-width: 100%;
}
@media only screen and (max-width: 820px)
{
    header .container
    {
        flex-direction: row;
    }
}
header .nav
{
    gap: 1.5rem;
}
@media only screen and (max-width: 1024px)
{
    header .nav
    {
        gap: 0;
    }
    header .nav .main-menu-wrapper
    {
        background-color: var(--color-dark-grey);
        bottom: auto;
        height: 100vh;
        left: 0;
        margin-bottom: 0;
        margin-top: 0;
        position: fixed;
        right: 0;
        top: -125%;
        transition: top .5s cubic-bezier(.25,.46,.45,.94);
        z-index: 999;
    }
    header .nav .main-menu-wrapper.show
    {
        top: 0;
    }
}
header .nav .main-menu-wrapper ul
{
    display: flex;
    gap: 1.5rem;
    list-style-type: none;
    padding-left: 0;
}
@media only screen and (max-width: 1024px)
{
    header .nav .main-menu-wrapper ul
    {
        align-items: flex-start;
        flex-direction: column;
        gap: 2rem;
        padding: 3rem;
    }
}
header .nav .main-menu-wrapper ul li
{
    align-items: center;
    display: flex;
}
@media only screen and (max-width: 1024px)
{
    header .nav .main-menu-wrapper ul li
    {
        align-items: flex-start;
        flex-direction: column;
    }
}
header .nav .main-menu-wrapper ul li:hover>.sub-menu
{
    opacity: 1;
    top: 4.5rem;
    visibility: visible;
}
@media only screen and (max-width: 1024px)
{
    header .nav .main-menu-wrapper ul li:hover>.sub-menu
    {
        top: 0;
    }
}
header .nav .main-menu-wrapper ul li a
{
    color: var(--color-black);
    font-weight: var(--font-weight-heavy);
    text-decoration: none;
    transition: color .3s ease-out;
}
header .nav .main-menu-wrapper ul li a:hover
{
    color: var(--color-primary);
}
@media only screen and (max-width: 1024px)
{
    header .nav .main-menu-wrapper ul li a
    {
        color: var(--color-white);
        font-size: var(--font-size-medium);
    }
}
header .nav .main-menu-wrapper ul li.button
{
    padding: 0;
}
@media only screen and (max-width: 1024px)
{
    header .nav .main-menu-wrapper ul li.button
    {
        bottom: 6rem;
        left: 3rem;
        position: absolute;
    }
}
header .nav .main-menu-wrapper ul li.button a
{
    color: var(--color-white);
    display: block;
    padding: 1.2rem 2.5rem;
}
@media only screen and (max-width: 1024px)
{
    header .nav .main-menu-wrapper ul li.button a
    {
        color: var(--color-white);
        font-size: var(--font-size-small);
    }
}
header .nav .main-menu-wrapper ul .sub-menu
{
    background-color: var(--color-dark-grey);
    border-radius: 0 1rem 1rem 1rem;
    box-shadow: 0 1rem 1rem rgba(0,0,0,.2);
    display: flex;
    flex-direction: column;
    opacity: 0;
    padding-bottom: 1.5rem;
    padding-top: 1.5rem;
    position: absolute;
    row-gap: 0;
    top: 5rem;
    transition: visibility .2s,opacity .2s ease-out,top .2s ease-out;
    visibility: hidden;
}
header .nav .main-menu-wrapper ul .sub-menu li
{
    padding: .5rem 2rem;
    transition: background-color .3s ease-out;
}
@media only screen and (max-width: 1024px)
{
    header .nav .main-menu-wrapper ul .sub-menu li
    {
        padding: .3rem 0;
    }
    header .nav .main-menu-wrapper ul .sub-menu li:last-child
    {
        padding-bottom: 0;
    }
}
header .nav .main-menu-wrapper ul .sub-menu li:hover
{
    background-color: var(--color-grey);
}
@media only screen and (max-width: 1024px)
{
    header .nav .main-menu-wrapper ul .sub-menu li:hover
    {
        background-color: transparent;
    }
}
header .nav .main-menu-wrapper ul .sub-menu li a
{
    color: #ccc;
}
@media only screen and (max-width: 1024px)
{
    header .nav .main-menu-wrapper ul .sub-menu li a
    {
        color: #adadad;
        font-size: var(--font-size-small);
    }
    header .nav .main-menu-wrapper ul .sub-menu
    {
        background-color: transparent;
        box-shadow: none;
        opacity: 1;
        padding: 0;
        position: relative;
        top: 0;
        transition: none;
        visibility: visible;
    }
}
header .nav .fa-light
{
    display: none;
    font-size: 2rem;
}
@media only screen and (max-width: 1024px)
{
    header .nav .fa-light
    {
        cursor: pointer;
        display: block;
    }
}
header .nav .fa-xmark
{
    display: none;
}
@media only screen and (max-width: 1024px)
{
    header .nav .fa-xmark
    {
        color: var(--color-white);
        display: block;
        position: absolute;
        right: 2rem;
        top: 2rem;
    }
}
.hero
{
    height: 100vh;
    max-height: 62.5rem;
}
@media only screen and (max-width: 820px)
{
    .hero
    {
        height: auto;
        padding-top: 7rem;
    }
}
@media only screen and (max-width: 680px)
{
    .hero
    {
        padding-top: 5rem;
    }
}
.hero .container .hero-content
{
    width: calc(50% - 1.2rem);
}
@media only screen and (max-width: 820px)
{
    .hero .container .hero-content
    {
        width: 100%;
    }
}
.hero .container .hero-content p
{
    margin-bottom: 0;
}
.hero-img
{
    border-radius: 100rem 0 0 100rem;
    height: calc(100% - 16rem);
    margin-inline: 0 auto;
    -o-object-fit: cover;
    object-fit: cover;
    overflow: hidden;
    position: absolute;
    right: 0;
    width: calc(50% - 1.2rem);
}
@media only screen and (max-width: 820px)
{
    .hero-img
    {
        border-radius: 0;
        height: 24rem;
        margin-left: -3rem;
        position: relative;
        width: calc(100% + 6rem);
    }
}
@media only screen and (max-width: 680px)
{
    .hero-img
    {
        height: 16rem;
        margin-left: -1.5rem;
        width: calc(100% + 3rem);
    }
}
.hero-shapes
{
    bottom: 9.5rem;
    left: 50%;
    margin-bottom: -7.5rem;
    margin-left: 6rem;
    position: absolute;
}
@media only screen and (max-width: 820px)
{
    .hero-shapes
    {
        bottom: auto;
        left: auto;
        margin-bottom: 0;
        right: 3rem;
        top: 24.5rem;
    }
}
@media only screen and (max-width: 680px)
{
    .hero-shapes
    {
        display: none;
    }
}
.intro
{
    padding-bottom: 8.7rem;
    padding-top: 8.7rem;
}
@media only screen and (max-width: 820px)
{
    .intro
    {
        padding-bottom: 3rem;
        padding-top: 3rem;
    }
}
@media only screen and (max-width: 680px)
{
    .intro
    {
        padding-bottom: 1.5rem;
        padding-top: 1.5rem;
    }
}
.intro .container .row .col .zeta-logo
{
    height: auto;
    max-width: 29rem;
    width: 100%;
}
.intro .container .row .col p
{
    margin-bottom: 0;
}
.intro-graphic
{
    height: 37rem;
    margin-right: 17rem;
    margin-top: -18.5rem;
    position: absolute;
    right: 50%;
    top: 50%;
    width: auto;
}
@media only screen and (max-width: 820px)
{
    .intro-graphic
    {
        margin-right: 0;
    }
}
.results .container .row .col-3
{
    background-color: var(--color-light-grey);
    border-radius: 2rem;
    padding: 4.5rem 3.8rem;
    text-align: center;
}
@media only screen and (max-width: 1024px)
{
    .results .container .row .col-3
    {
        padding: 3rem 2rem;
    }
}
.results .container .row .col-3 .icon
{
    height: auto;
    margin-bottom: 1rem;
    max-width: 5rem;
}
.results .container .row .col-3 h3
{
    font-size: var(--font-size-x-large);
    margin-bottom: 1rem;
}
@media only screen and (max-width: 1024px)
{
    .results .container .row .col-3 h3
    {
        font-size: var(--font-size-large);
    }
}
.results .container .row .col-3 p
{
    font-size: 1.1rem;
    line-height: 1.5;
    margin-bottom: 0;
}
.areas
{
    height: 100vh;
    max-height: 62.5rem;
}
@media only screen and (max-width: 820px)
{
    .areas
    {
        height: auto;
    }
}
.areas .container
{
    flex: 1;
}
@media only screen and (max-width: 820px)
{
    .areas .container
    {
        width: 100%;
    }
}
.areas .container .areas-content
{
    margin-left: auto;
    padding-left: 7.8rem;
    width: calc(50% - 1.2rem);
}
@media only screen and (max-width: 1024px)
{
    .areas .container .areas-content
    {
        padding-left: 3rem;
    }
}
@media only screen and (max-width: 820px)
{
    .areas .container .areas-content
    {
        padding-left: 0;
        width: 100%;
    }
}
.areas .container .areas-content ul
{
    list-style: none;
    padding-left: 0;
}
.areas .container .areas-content ul li
{
    border-bottom: 1px solid #e1e1e1;
    padding: 1rem 0;
}
.areas .container .areas-content ul li h3
{
    color: var(--color-black);
    font-size: var(--font-size-medium);
    font-weight: var(--font-weight-heavy);
    margin-bottom: 0;
}
.areas .container .areas-content ul li:first-child
{
    padding-top: 0;
}
.areas .container .areas-content ul li:last-child
{
    border-bottom: none;
    padding-bottom: 0;
}
.areas-img
{
    border-radius: 0 100rem 100rem 0;
    height: calc(100% - 16rem);
    left: 0;
    margin-inline: 0 auto;
    -o-object-fit: cover;
    object-fit: cover;
    overflow: hidden;
    position: absolute;
    width: calc(50% - 1.2rem);
}
@media only screen and (max-width: 820px)
{
    .areas-img
    {
        border-radius: 0;
        height: 24rem;
        margin-left: -3rem;
        position: relative;
        width: calc(100% + 6rem);
    }
}
@media only screen and (max-width: 680px)
{
    .areas-img
    {
        height: 16rem;
        margin-left: -1.5rem;
        width: calc(100% + 3rem);
    }
}
.areas-shapes
{
    margin-right: 5.5rem;
    margin-top: -6.2rem;
    position: absolute;
    right: 50%;
    top: 8rem;
}
@media only screen and (max-width: 820px)
{
    .areas-shapes
    {
        margin-right: 3rem;
        right: 0;
        top: 24.5rem;
        transform: rotate(180deg);
    }
}
@media only screen and (max-width: 680px)
{
    .areas-shapes
    {
        display: none;
    }
}
.success
{
    overflow: hidden;
    padding-bottom: 6rem;
    padding-top: 0;
}
@media only screen and (max-width: 820px)
{
    .success
    {
        padding-top: 3rem;
    }
}
@media only screen and (max-width: 680px)
{
    .success
    {
        padding-bottom: 3rem;
        padding-top: 1.5rem;
    }
}
.success .container .row h2
{
    margin-bottom: 1rem;
}
.success .container .success-list .success-item
{
    border-bottom: 1px solid #e1e1e1;
    padding: 1rem 0;
}
@media only screen and (max-width: 820px)
{
    .success .container .success-list .success-item
    {
        gap: 0;
    }
}
.success .container .success-list .success-item:first-child
{
    padding-top: 0;
}
.success .container .success-list .success-item:last-child
{
    border-bottom: none;
    padding-bottom: 0;
}
.success .container .success-list .success-item p
{
    margin-bottom: 0;
}
.success .container .success-list .success-item-client
{
    color: var(--color-black);
    font-size: var(--font-size-smedium);
    width: 20%;
}
@media only screen and (max-width: 1024px)
{
    .success .container .success-list .success-item-client
    {
        font-size: var(--font-size-small);
    }
}
@media only screen and (max-width: 820px)
{
    .success .container .success-list .success-item-client
    {
        font-size: var(--font-size-small);
        width: 100%;
    }
}
.success .container .success-list .success-item-claim
{
    color: var(--color-primary);
    font-size: var(--font-size-large);
    font-weight: var(--font-weight-heavy);
}
@media only screen and (max-width: 1024px)
{
    .success .container .success-list .success-item-claim
    {
        font-size: var(--font-size-medium);
    }
}
@media only screen and (max-width: 820px)
{
    .success .container .success-list .success-item-claim
    {
        width: 100%;
    }
}
.success-shapes
{
    left: 50%;
    margin-left: 23rem;
    position: absolute;
    top: 0;
}
.why-us
{
    background-color: var(--color-dark-grey);
    overflow: hidden;
    padding-bottom: 18rem;
    padding-top: 4rem;
}
@media only screen and (max-width: 680px)
{
    .why-us
    {
        padding-bottom: 12rem;
        padding-top: 3rem;
    }
}
.why-us .container h2
{
    margin-bottom: .5rem;
}
.why-us .container .why-list .why-list-item
{
    gap: 2rem;
    position: relative;
}
@media only screen and (max-width: 820px)
{
    .why-us .container .why-list .why-list-item
    {
        flex-direction: row;
    }
}
.why-us .container .why-list .why-list-item h3
{
    margin-bottom: .5rem;
}
.why-us .container .why-list .why-list-item:last-child p
{
    margin-bottom: 0;
}
.why-us .container .why-list .why-list-item .bullets
{
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 1rem;
    position: relative;
    top: .4rem;
}
.why-us .container .why-list .why-list-item .bullets .dot
{
    background-color: var(--color-primary);
    border-radius: 50%;
    min-height: 1rem;
    min-width: 1rem;
}
.why-us .container .why-list .why-list-item .bullets .line
{
    background-color: var(--color-primary);
    height: 100%;
    width: 2px;
}
.why-us-shapes
{
    margin-right: 28.7rem;
    position: absolute;
    right: 50%;
    top: -4.7rem;
}
.why-us-ins
{
    bottom: -2.5rem;
    left: 50%;
    margin-left: -10.7rem;
    position: absolute;
}
.cta
{
    margin-bottom: 1rem;
    margin-top: -12rem;
    padding: 0 3rem;
}
@media only screen and (max-width: 680px)
{
    .cta
    {
        margin-bottom: 2.5rem;
        margin-top: -9rem;
        padding: 0 1.5rem;
    }
}
.cta .container
{
    background-color: var(--color-primary);
    border-radius: 2rem 2rem 12.5rem;
    height: 24rem;
    overflow: hidden;
    padding: 3rem;
    position: relative;
}
@media only screen and (max-width: 680px)
{
    .cta .container
    {
        border-radius: 2rem 2rem 6rem;
        height: 18rem;
        padding: 1.5rem;
    }
}
.cta .container .row h2
{
    color: var(--color-white);
    margin-bottom: 0;
}
.cta-shapes
{
    bottom: -3.3rem;
    position: absolute;
    right: -2.3rem;
}
.services
{
    overflow: hidden;
}
.services .container .row h2
{
    margin-bottom: 1rem;
}
.services .container .row:first-child
{
    margin-bottom: 3rem;
}
@media only screen and (max-width: 1024px)
{
    .services .container .row:last-child
    {
        flex-wrap: wrap;
    }
}
@media only screen and (max-width: 820px)
{
    .services .container .row:last-child
    {
        flex-direction: row;
    }
}
.services .container .row:last-child .col-4
{
    background-color: var(--color-light-grey);
    border-radius: 2rem;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    padding: 2rem;
    text-decoration: none;
    transition: background-color .3s ease-out;
}
@media only screen and (max-width: 1024px)
{
    .services .container .row:last-child .col-4
    {
        width: calc(50% - 1.25rem);
    }
}
@media only screen and (max-width: 680px)
{
    .services .container .row:last-child .col-4
    {
        width: 100%;
    }
}
.services .container .row:last-child .col-4 .style-svg
{
    margin-bottom: 1.5rem;
    max-width: 4rem;
    transition: fill .3s ease-out;
}
.services .container .row:last-child .col-4 .st0
{
    transition: fill .3s ease-out;
}
.services .container .row:last-child .col-4 h3
{
    font-size: var(--font-size-small);
    margin-bottom: 0;
    transition: color .3s ease-out;
}
.services .container .row:last-child .col-4 p
{
    color: var(--color-dark-grey);
    transition: color .3s ease-out;
}
.services .container .row:last-child .col-4 p.learn-more
{
    color: var(--color-primary);
    font-weight: 700;
    margin-bottom: 0;
    margin-top: auto;
}
.services .container .row:last-child .col-4 p.learn-more:after
{
    content: "";
    font-family: Font Awesome\ 5 Pro;
    margin-left: .5rem;
}
.services .container .row:last-child .col-4:hover
{
    background-color: var(--color-primary);
}
.services .container .row:last-child .col-4:hover .st0, .services .container .row:last-child .col-4:hover>.style-svg
{
    fill: var(--color-white);
}
.services .container .row:last-child .col-4:hover>h3, .services .container .row:last-child .col-4:hover>p
{
    color: var(--color-white);
}
.services-shapes
{
    left: 50%;
    margin-left: 24rem;
    position: absolute;
    top: 9rem;
}
.team .container .grid--col-3 h3, .team .container .grid--col-3 p
{
    margin-bottom: 0;
    text-align: center;
}
.team .container .col-4
{
    gap: 0;
}
.team .container .col-4 .profile-img
{
    height: auto;
    margin-bottom: 2rem;
    max-width: 100%;
    width: 14rem;
}
.team .container .col-4:first-child
{
    margin-left: auto;
}
.team .container .col-4:last-child
{
    margin-right: auto;
}
@media only screen and (max-width: 1024px)
{
    .team .container
    {
        flex-wrap: wrap;
    }
    .team .container .col-4
    {
        width: calc(50% - 1.25rem);
    }
}
@media only screen and (max-width: 820px)
{
    .team .container
    {
        flex-direction: row;
    }
    .team .container .col-4
    {
        width: calc(50% - 1.25rem);
    }
}
@media only screen and (max-width: 680px)
{
    .team .container
    {
        flex-direction: row;
    }
    .team .container .col-4
    {
        width: 100%;
    }
}
.contact
{
    overflow: hidden;
}
.contact .container
{
    background-color: var(--color-primary);
    border-radius: 2rem 12.5rem 2rem 2rem;
    gap: 0;
    padding: 6rem 3rem;
}
@media only screen and (max-width: 680px)
{
    .contact .container
    {
        border-radius: 2rem 6.5rem 2rem 2rem;
        padding: 4rem 1.5rem;
    }
}
.contact .container .row h2
{
    margin-bottom: .5rem;
}
.contact .container .contact-shapes
{
    position: absolute;
    right: 0;
    top: 0;
}
@media only screen and (max-width: 680px)
{
    .contact .container .contact-shapes
    {
        right: -6rem;
        top: -6rem;
    }
}
.contact-form p
{
    margin-bottom: 0;
}
.contact-form p label
{
    display: none;
}
.contact-form p span
{
    display: block;
    width: 100%;
}
.contact-form p span input, .contact-form p span textarea
{
    border: none;
    border-radius: .5rem;
    font-family: inherit;
    font-size: inherit;
    padding: 1rem;
    width: 100%;
}
.contact-form p span textarea
{
    height: 10rem;
    margin-bottom: 1rem;
    max-width: 100%;
}
.contact-form .wpcf7-spinner
{
    margin-top: 1rem;
    max-height: 1.5rem;
    max-width: 1.5rem;
}
.contact-form .wpcf7-response-output
{
    background-color: var(--color-black);
    border: none!important;
    border-radius: .5rem;
    color: var(--color-white)!important;
    margin: 0!important;
    padding: 1rem!important;
    text-align: center!important;
}
footer
{
    background-color: var(--color-dark-grey);
    padding: 3rem;
    position: relative;
}
@media only screen and (max-width: 680px)
{
    footer
    {
        padding: 1.5rem;
    }
}
@media only screen and (max-width: 820px)
{
    footer .container
    {
        gap: 1rem;
    }
}
footer .container .footer-logo
{
    max-width: 7.5rem;
}
footer .container p
{
    font-size: var(--font-size-x-small);
    margin-bottom: 0;
}
footer .container .menu
{
    display: flex;
    font-size: var(--font-size-x-small);
    list-style: none;
    margin: 0;
    padding-left: 0;
}
footer .container .menu li
{
    margin-right: 2.5rem;
}
footer .container .menu li:last-child
{
    margin-right: 0;
}
footer .container .menu li a
{
    color: var(--color-white);
    font-size: var(--font-size-small);
    font-weight: var(--font-weight-heavy);
    text-decoration: none;
}
@media only screen and (max-width: 680px)
{
    footer .container .menu li
    {
        text-align: left;
    }
}
footer .container .menu li .sub-menu
{
    list-style: none;
    margin: .5rem 0 0;
    padding-left: 0;
}
footer .container .menu li .sub-menu li
{
    margin-bottom: .5rem;
}
footer .container .menu li .sub-menu li:last-child
{
    margin-bottom: 0;
}
footer .container .menu li .sub-menu li a
{
    color: #ccc;
    font-weight: var(--font-weight-light);
    text-decoration: none;
}
.page-title
{
    padding-top: 12rem;
}
@media only screen and (max-width: 680px)
{
    .page-title
    {
        padding-top: 9rem;
    }
}
.page-title h1
{
    margin-bottom: 3rem;
}
@media only screen and (max-width: 680px)
{
    .page-title h1
    {
        margin-bottom: 1rem;
    }
}
.page-title .line-break
{
    background-color: var(--color-primary);
    height: 3px;
    width: 10rem;
}
.page-main .content-title
{
    overflow: hidden;
    padding-top: 12rem;
}
@media only screen and (max-width: 680px)
{
    .page-main .content-title
    {
        padding-top: 9rem;
    }
}
.page-main .content-title h1
{
    margin-bottom: 3rem;
    max-width: 25rem;
}
.page-main .content-title .line-break
{
    background-color: var(--color-primary);
    height: 3px;
    width: 10rem;
}
.page-main .content-title .hero-shapes
{
    bottom: 50%;
    margin-bottom: -10rem;
    margin-left: 12rem;
    transform: rotate(-30deg);
}
.page-main .content-intro
{
    padding-bottom: 6rem;
    padding-top: 6rem;
}
@media only screen and (max-width: 820px)
{
    .page-main .content-intro
    {
        padding-bottom: 3rem;
        padding-top: 3rem;
    }
}
.page-main .content-intro .col-2
{
    height: auto!important;
}
.page-main .content-intro .col-2 img
{
    height: auto;
    max-width: 100%;
}
@media only screen and (max-width: 680px)
{
    .page-main .content-intro .col-2 img
    {
        max-width: 16rem;
    }
}
.page-main .content-intro .col-2 h2
{
    position: relative;
    top: 0;
}
.page-main .content-intro .col-2 p:last-child
{
    margin-bottom: 0;
}
.page-main .content-tiles .container .row--infographic
{
    margin-bottom: 6rem;
}
.page-main .content-tiles .container .row--infographic .zeta-infographic-desktop
{
    display: block;
    max-width: 100%;
}
@media only screen and (max-width: 680px)
{
    .page-main .content-tiles .container .row--infographic .zeta-infographic-desktop
    {
        display: none;
    }
}
.page-main .content-tiles .container .row--infographic .zeta-infographic-mobile
{
    display: none;
    height: auto;
    max-width: 16rem;
}
@media only screen and (max-width: 680px)
{
    .page-main .content-tiles .container .row--infographic .zeta-infographic-mobile
    {
        display: block;
    }
    .page-main .content-tiles .container .row--infographic
    {
        margin-bottom: 3rem;
    }
}
.page-main .content-tiles .container .row .col-2
{
    background-color: var(--color-light-grey);
    border-radius: 2rem;
    padding: 2.5rem;
}
@media only screen and (max-width: 680px)
{
    .page-main .content-tiles .container .row .col-2
    {
        padding: 2rem;
    }
}
.page-main .content-tiles .container .row .col-2 h3
{
    margin-bottom: 1rem;
}
.page-main .content-tiles .container .row .col-2 p
{
    margin-bottom: 0;
}
.page-main .content-grid .container h2
{
    max-width: 40rem;
}
.page-main .content-grid .container .row.grid .col
{
    background-color: var(--color-light-grey);
    border-radius: 2rem;
    padding: 2.5rem;
}
@media only screen and (max-width: 680px)
{
    .page-main .content-grid .container .row.grid .col
    {
        padding: 2rem;
    }
}
.page-main .content-grid .container .row.grid .col i
{
    color: var(--color-primary);
    font-size: 4rem;
    margin-bottom: 2rem;
}
.page-main .content-grid .container .row.grid .col h3
{
    margin-bottom: 1rem;
}
.page-main .content-grid .container .row.grid .col p
{
    margin-bottom: 0;
}
.page-main .content-grid .container .row--about h3
{
    margin-bottom: 1rem;
}
.page-main .content-grid .container .row--about p
{
    margin-bottom: 0;
}
.page-main .cta
{
    margin-top: 3rem;
}
.page-simple-title
{
    padding-top: 12rem;
}
@media only screen and (max-width: 680px)
{
    .page-simple-title
    {
        padding-top: 9rem;
    }
}
.page-simple-title h1
{
    margin-bottom: 0;
}
.page-simple-content h2
{
    font-size: var(--font-size-medium);
}
@media only screen and (max-width: 680px)
{
    .page-simple-content h2
    {
        font-size: var(--font-size-smedium);
    }
}
.page-service .content ul
{
    list-style: none;
    margin-bottom: 2rem;
    margin-top: 0;
    padding-left: 1.5rem;
}
.page-service .content ul li
{
    color: var(--color-black);
    font-weight: var(--font-weight-heavy);
    line-height: 2em;
}
.page-service .content ul li:before
{
    color: var(--color-primary);
    content: ">";
    display: inline-block;
    font-weight: var(--font-weight-heavy);
    margin-left: -1.5rem;
    width: 1.5rem;
}
.page-service .content .mid-content
{
    position: relative;
}
.page-service .content .mid-content section:first-child
{
    padding-top: 6rem;
}
@media only screen and (max-width: 680px)
{
    .page-service .content .mid-content section:first-child
    {
        padding-top: 3rem;
    }
}
.page-service .content .mid-content section .container .row .col-2
{
    min-height: 50rem;
    position: relative;
}
@media only screen and (max-width: 820px)
{
    .page-service .content .mid-content section .container .row .col-2
    {
        height: auto;
        min-height: auto;
    }
}
.page-service .content .mid-content section .container .row .col-2 .fade
{
    border-left: 3px solid #eee;
    opacity: 15%;
    padding-left: 3rem;
    transition: opacity .5s ease-out;
}
.page-service .content .mid-content section .container .row .col-2 .fade.fade-in
{
    opacity: 1;
}
.page-service .content .mid-content section .container .row .col-2 .fade h3
{
    margin-bottom: 0;
}
.page-service .content .mid-content section .container .row .col-2 .fade p .black
{
    color: var(--color-black);
    font-weight: var(--font-weight-heavy);
}
.page-service .content .mid-content section .container .row .col-2 .fade p:last-child
{
    margin-bottom: 0;
}
@media only screen and (max-width: 680px)
{
    .page-service .content .mid-content section .container .row .col-2 .fade
    {
        opacity: 1;
        padding-left: 1.5rem;
    }
}
.page-service .content .mid-content section .container .row .col-2 .title-container
{
    position: sticky;
    top: 40%;
}
.page-service .content .mid-content section .container .row .col-2 .title-container i
{
    color: var(--color-primary);
    font-size: 4rem;
    margin-bottom: 2rem;
}
.page-service .content .mid-content section .container .row .col-2 .title-container h2
{
    margin-bottom: 0;
    max-width: 24rem;
}
.page-service .content .mid-content section .container .row .col-2:first-child
{
    width: 45%;
}
@media only screen and (max-width: 820px)
{
    .page-service .content .mid-content section .container .row .col-2:first-child
    {
        width: 100%;
    }
}
.page-service .content .mid-content section .container .row .col-2:last-child
{
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 55%;
}
@media only screen and (max-width: 820px)
{
    .page-service .content .mid-content section .container .row .col-2:last-child
    {
        width: 100%;
    }
}
.page-service .content .mid-content section .container .row .col-2 .fa-arrow-down
{
    color: var(--color-primary);
    font-size: 3rem;
}
@media only screen and (max-width: 680px)
{
    .page-service .content .mid-content section .container .row .col-2 .fa-arrow-down
    {
        display: none;
    }
}
.page-service .content-title
{
    overflow: hidden;
    padding-bottom: 3rem;
    padding-top: 12rem;
}
.page-service .content-title h1
{
    max-width: 25rem;
}
.page-service .content-title p
{
    margin-bottom: 3rem;
    max-width: 30rem;
}
@media only screen and (max-width: 680px)
{
    .page-service .content-title p
    {
        margin-bottom: 1rem;
    }
}
.page-service .content-title .line-break
{
    background-color: var(--color-primary);
    height: 3px;
    width: 10rem;
}
.page-service .content-title .hero-shapes
{
    bottom: 50%;
    margin-bottom: -10rem;
    margin-left: 12rem;
    transform: rotate(-30deg);
}
.page-service .content-intro
{
    height: 50rem;
    max-height: 62.5rem;
    overflow: hidden;
    padding-bottom: 6rem;
}
@media only screen and (max-width: 1024px)
{
    .page-service .content-intro
    {
        height: auto;
    }
}
@media only screen and (max-width: 820px)
{
    .page-service .content-intro
    {
        max-height: none;
        padding-bottom: 3rem;
        padding-top: 0;
    }
}
@media only screen and (max-width: 680px)
{
    .page-service .content-intro
    {
        padding-bottom: 0;
        width: 100%;
    }
}
.page-service .content-intro .intro-img
{
    border-radius: 100rem 0 0 100rem;
    height: calc(100% - 9rem);
    margin-inline: 0 auto;
    -o-object-fit: cover;
    object-fit: cover;
    overflow: hidden;
    position: absolute;
    right: 0;
    width: 45%;
}
@media only screen and (max-width: 820px)
{
    .page-service .content-intro .intro-img
    {
        border-radius: 0;
        height: 24rem;
        margin-left: -3rem;
        position: relative;
        width: calc(100% + 6rem);
    }
}
@media only screen and (max-width: 680px)
{
    .page-service .content-intro .intro-img
    {
        height: 16rem;
        margin-left: -1.5rem;
        width: calc(100% + 3rem);
    }
}
.page-service .content-intro .intro-graphic
{
    margin-top: -20rem;
}
.page-service .content-intro .col-2
{
    height: auto!important;
}
.page-service .content-intro .col-2 h2
{
    position: relative;
    top: 0;
}
.page-service .content-intro .col-2 p:last-child
{
    margin-bottom: 0;
}
.page-service .content-intro .col-2:last-child
{
    display: block!important;
}
.page-service .content-bullets
{
    padding-bottom: 0;
    padding-top: 0;
}
.page-service .content-bullets .row
{
    background-color: var(--color-primary);
    border-radius: 2rem;
    color: var(--color-white);
    padding: 3rem;
}
@media only screen and (max-width: 680px)
{
    .page-service .content-bullets .row
    {
        padding: 1.5rem;
    }
}
.page-service .content-bullets .row .col-2
{
    height: auto!important;
}
.page-service .content-bullets .row .col-2 h2
{
    color: var(--color-white);
    margin-bottom: 2rem;
    position: relative;
    top: 0;
}
.page-service .content-bullets .row .col-2 p
{
    margin-bottom: 2rem;
}
@media only screen and (max-width: 680px)
{
    .page-service .content-bullets .row .col-2 p
    {
        margin-bottom: 0;
    }
}
.page-service .content-bullets .row .col-2 ul
{
    list-style-type: none;
    margin-bottom: 0!important;
    margin-top: 0;
    padding-left: 0;
}
.page-service .content-bullets .row .col-2 ul li
{
    border-bottom: 1px solid #40c2f2;
    color: var(--color-white)!important;
    font-size: var(--font-size-smedium);
    font-weight: var(--font-weight-heavy);
    padding: 1rem 0;
}
.page-service .content-bullets .row .col-2 ul li:first-child
{
    padding-top: 0;
}
.page-service .content-bullets .row .col-2 ul li:last-child
{
    border-bottom: none;
    padding-bottom: 0;
}
@media only screen and (max-width: 680px)
{
    .page-service .content-bullets .row .col-2 ul li
    {
        line-height: 1.5em;
    }
}
.page-service .content-bullets .row .col-2:last-child
{
    display: block!important;
}
@media only screen and (max-width: 680px)
{
    .page-service .content-bullets .row .col-2 .button
    {
        display: none;
    }
}
.page-service .content-bullets .row .col-2 .mobile
{
    display: none;
    margin-top: 1.5rem;
}
@media only screen and (max-width: 680px)
{
    .page-service .content-bullets .row .col-2 .mobile
    {
        display: inline-block;
    }
}
.page-service .cta
{
    margin-top: 3rem;
}
:root
{
    --color-primary: #00aeed;
    --color-light-blue: #e5f7fd;
    --color-white: #fff;
    --color-light-grey: #f9f9f9;
    --color-grey: #555;
    --color-dark-grey: #272727;
    --color-black: #000;
    --font-primary: "Poppins",sans-serif;
    --font-size-x-large: 3rem;
    --font-size-large: 2.2rem;
    --font-size-medium: 1.5rem;
    --font-size-smedium: 1.2rem;
    --font-size-small: 1rem;
    --font-size-x-small: .8rem;
    --font-weight-regular: 400;
    --font-weight-heavy: 700;
}