header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 99;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

.header-placeholder {
    height: 60px;
    width: 100%;
}

@media (min-width: 1024px) {
    .header-placeholder {
        height: 80px;
    }
}

header .container {
    position: relative;
    padding: 0;
    margin: 0 auto;
    max-width: 100%;
}

header .header-top {
    background: #FFFFFF;
    box-shadow: 0 4px 12px rgba(0, 118, 211, 0.07);
}

header .header-top,
header .nh-burger {
    display: flex;
    align-items: center;
    top: 0;
    right: 0;
    height: 60px;
}

header .nh-burger {
    justify-content: center;
    position: absolute;
    width: 60px;
}

header .nh-burger:focus,
header .nh-burger:hover {
    cursor: pointer;
}

header .nh-burger > div {
    position: absolute;
    top: 50%;
    left: 20px;
    width: 20px;
    height: 2px;
    background: #25356E;
    border-radius: 3px;
    transition: background 175ms ease;
}

header .nh-burger > div:after,
header .nh-burger > div:before {
    content: "";
    position: absolute;
    right: 0;
    width: 100%;
    height: 100%;
    background: #25356E;
    transition: transform 175ms ease;
    transform-origin: center;
}

header .nh-burger > div:before {
    top: -5px;
}

header .nh-burger > div:after {
    bottom: -5px;
}

header .nh-burger:hover > div,
header .nh-burger:hover > div:before,
header .nh-burger:hover > div:after {
    background: #FF238C;
}

header.active .nh-burger > div {
    background: transparent;
}

header.active .nh-burger > div:before {
    top: 0;
}

header.active .nh-burger > div:after {
    bottom: 0;
}

header.active .nh-burger > div:before {
    transform: rotate(45deg);
}

header.active .nh-burger > div:after {
    transform: rotate(-45deg);
}

header .header-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: 100%;
    padding-left: 20px;
}

header .header-logo img {
    display: block;
    width: 112px;
    height: 24px;
}

header nav {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 3px;
    left: 0;
    bottom: 0;
    width: 100%;
    min-height: 100vh;
    background: #F3F6FA;
    transform: translateY(-200%);
    transition: transform .8s ease;
    overflow-y: scroll;
    overflow-x: hidden;
    box-sizing: border-box;
    padding: 60px 0 0;
    z-index: -1;
}

header.active nav {
    transform: translateY(0);
}

header .header-nav {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 34px 0 6px;
}

header .list,
.header-link {
    font-weight: 500;
    font-size: 18px;
    line-height: 16px;
    color: #141F34;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 16px 20px 34px;
    box-sizing: border-box;
    cursor: pointer;
    text-decoration: none;
    transition: color 175ms ease;
}

.header-link:hover {
    color: #1766ff;
}

.header-action-link {
    font-size: 16px;
    justify-content: flex-start;
    padding: 24px 15px;
    border-top: 1px solid #E7E8EA;
}

.header-action-link svg {
    padding-right: 12px;
}

.header-action-link svg path {
    transition: all .5s;
}

.header-action-link:hover svg path {
    fill: #FF238C;
}

header .list svg {
    transition: all .3s ease;
}

header .list svg:first-child {
    display: none;
}

header .header-extra.show svg {
    transform: rotate(180deg);
}

header .header-extra.show .list svg path {
    fill: #FF238C;
}

header .innerList {
    display: none;
}

header .header-extra.show .innerList {
    display: block;
    margin-bottom: 30px;
}

header li {
    animation: fadeInRight .5s ease forwards;
    animation-delay: .125s;
}

header li:nth-of-type(2) {
    animation-delay: .25s;
}

header li:nth-of-type(3) {
    animation-delay: .375s;
}

header li:nth-of-type(4) {
    animation-delay: 0.5s;
}

header li:nth-of-type(5) {
    animation-delay: .625s;
}

header li:nth-of-type(6) {
    animation-delay: .75s;
}

header li:nth-of-type(7) {
    animation-delay: .875s;
}

header li:nth-of-type(8) {
    animation-delay: 1s;
}

header li:nth-of-type(9) {
    animation-delay: 1.125s;
}

header .innerList ul {
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

header .innerList li {
    width: 100%;
}

header .innerList li a {
    font-weight: 600;
    font-size: 13px;
    line-height: 16px;
    color: #141F34;
    padding: 24px 50px;
    border-radius: 8px;
    border: 1px solid #F3F4F5;
    box-shadow: 0 2px 4px rgba(0, 65, 140, 0.1);
    width: 100%;
    box-sizing: border-box;
    display: inline-block;
    text-decoration: none;
    cursor: pointer;
    transition: all .3s ease;
}

header .innerList li a.arrowLink {
    color: #1766ff;
}

header .innerList li a span {
    display: none;
}

header .innerList a.customers {
    background: url("https://nethunt.com/static/images/header/customers.svg") no-repeat left 15px center;
}

header .innerList a.customers:hover {
    color: #00D4FF;
}

header .innerList a.int {
    background: url("https://nethunt.com/static/images/header/int.svg") no-repeat left 15px center;
}

header .innerList a.webinars {
    background: url("https://nethunt.com/static/images/header/webinarsUa.svg") no-repeat left 15px center;
}

header .innerList a.int:hover,
header .innerList a.webinars:hover {
    color: #9C27B0;
}

header .innerList a.leads {
    background: url("https://nethunt.com/static/images/header/leads.svg") left 15px center no-repeat;
}

header .innerList a.leads:hover,
header .innerList a.blog:hover {
    color: #FF238C;
}

header .innerList a.support {
    margin-top: 0;
    background: url("https://nethunt.com/static/images/header/support.svg") left 15px center no-repeat;
}

header .innerList a.pipelines {
    background: url("https://nethunt.com/static/images/header/pipelines.svg") left 15px center no-repeat;
}

header .innerList a.pipelines:hover,
header .innerList a.support:hover {
    color: #FFA521;
}

header .innerList a.chats {
    background: url("https://nethunt.com/static/images/header/chats.svg") left 15px center no-repeat;
}

header .innerList a.chats:hover {
    color: #58BE08;
}

header .innerList a.reports {
    background: url("https://nethunt.com/static/images/header/reports-ua.svg") left 15px center no-repeat;
}

header .innerList a.reports:hover {
    color: #9C27B0;
}

header .innerList a.automation {
    background: url("https://nethunt.com/static/images/header/automation.svg") left 15px center no-repeat;
}

header .innerList a.automation:hover {
    color: #4761F8;
}

header .innerList a.newsletter {
    background: url("https://nethunt.com/static/images/header/newsletter.svg") left 15px center no-repeat;
}

header .innerList a.email {
    background: url("https://nethunt.com/static/images/header/email.svg") left 15px center no-repeat;
}

header .innerList a.email:hover,
header .innerList a.newsletter:hover {
    color: #FF5D22;
}

header .innerList a.team {
    margin-top: 0;
    background: url("https://nethunt.com/static/images/header/team.svg") left 15px center no-repeat;
}

header .innerList a.flag {
    background: url("https://nethunt.com/static/images/header/flag.svg") left 15px center no-repeat;
}

header .innerList a.templates {
    background: url("https://nethunt.com/static/images/header/templates.svg") left 15px center no-repeat;
}

header .innerList a.team:hover,
header .innerList a.templates:hover,
header .innerList a.flag:hover {
    color: #1766FF;
}

header .innerList a.security {
    background: url("https://nethunt.com/static/images/header/security.svg") left 15px center no-repeat;
}

header .innerList a.security:hover {
    color: #25356E;
}

header .innerList a.blog {
    background: url("https://nethunt.com/static/images/header/blog.svg") left 15px center no-repeat;
}

header .innerList a.header-features {
    position: relative;
    margin-top: 10px;
    color: #1766FF;
    font-weight: 600;
    font-size: 16px !important;
    line-height: 20px;
    padding: 20px;
    background: rgba(0, 142, 255, 0.10);
    box-shadow: none;
}

header .innerList a.header-features span {
    display: none;
}

header .innerList a.header-features:after {
    content: '';
    background: url("https://nethunt.com/static/images/icons/outline/blue/arrow-right-long.svg") center no-repeat;
    display: inline-block;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    margin-left: 12px;
    width: 15px;
    height: 9px;
    transition: transform 175ms ease;
}

header .innerList li a.header-features:hover {
    background-color: rgba(0, 142, 255, 0.20);
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        transform: translateX(30px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

header .innerList.innerList-integrations li a {
    border-radius: 30px;
    padding: 10px;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 4px rgba(44, 82, 152, 0.07);
    border: 1px solid #F4F5F8;
    background: #FFFFFF;
}

header .innerList.innerList-integrations li a span {
    padding: 8px;
    background: #F3F6FA;
    box-shadow: inset 0 2px 2px rgba(0, 71, 137, 0.1);
    border-radius: 50%;
    display: flex;
    margin-right: 12px;
}

header .innerList.innerList-integrations li a svg {
    transform: none;
}

header .innerList-integrations li {
    width: calc(50% - 5px);
}

header .innerList-integrations .title {
    font-weight: 500;
    font-size: 13px;
    padding: 0 !important;
    margin: 0;
}

header .innerList-integrations li:first-child {
    display: none;
}

header .innerList-integrations li:last-child a {
    box-shadow: none;
    border: 0;
    padding: 15px 10px;
    background: transparent;
}

header .innerList-integrations li:last-child h3 {
    font-weight: 600;
    font-size: 16px;
    padding-top: 5px;
}

header ul {
    list-style: none;
}

header .nav-actions {
    padding: 50px 20px;
}

header .btn {
    font-weight: 500;
    font-size: 13px;
    line-height: 16px;
    padding: 14px 25px;
    border-radius: 4px;
    width: 100%;
    box-sizing: border-box;
    border: none;
    color: white;
    cursor: pointer;
    outline: none;
    position: relative;
    display: block;
    white-space: nowrap;
    margin: 0 auto;
    text-align: center;
    text-decoration: none;
    transition: background 250ms ease, color 250ms ease;
}

header .btn--blue {
    margin-bottom: 15px;
}

header .btn:hover:before {
    top: 18px;
}

header .btn:hover {
    color: white;
    box-shadow: none;
}

header .btn--invert {
    background: #1766FF26;
    box-shadow: none;
    color: #1766FF;
    padding: 15px 37px;
}

header .btn--invert:hover {
    background: #1766FF40;
    color: #1766FF;
}

.header-social {
    font-size: 16px;
    line-height: 16px;
    color: #141f33;
    padding: 18px 8px;
    display: flex;
    align-items: center;
    text-decoration: none;
    outline: none;
    transition: all .3s;
}

.header-social b {
    font-weight: 500;
    white-space: nowrap;
}

.header-social svg {
    padding-right: 6px;
}

.header-social svg g path {
    transition: all .3s;
}

.header-social:hover {
    color: #1766ff;
}

.header-social:hover svg g path {
    fill: #ff228c;
}

@media (min-width: 768px) {
    header .innerList li {
        width: calc(50% - 5px);
    }

    header .innerList a.header-features {
        margin-top: 0;
        padding: 22px 20px;
    }

    header .innerList-integrations li {
        width: calc(33.3% - 7px);
    }

    header .innerList-integrations .title {
        font-size: 14px;
    }
}

@media (min-width: 1024px) {
    header {
        height: 80px;
        width: 100%;
        background: #FFFFFF;
        box-shadow: 0 4px 12px rgba(0, 118, 211, 0.07);
    }

    header .container {
        max-width: 1240px;
        padding: 0 20px 0 0;
        display: flex;
        justify-content: space-between;
        height: 100%;
    }

    header .header-top,
    header .header-nav {
        background: none;
        box-shadow: none;
        border-radius: 0;
        width: fit-content;
    }

    header .header-top {
        height: 100%;
    }

    header .nh-burger {
        position: static;
    }

    header .header-logo {
        padding-left: 0;
    }

    header nav {
        position: static;
        width: fit-content;
        flex-direction: row;
        justify-content: flex-end;
        max-height: 100%;
        overflow: visible;
        z-index: 1;
        align-items: center;
        transform: translateY(0);
        min-height: 0;
        height: 100%;
        padding: 0;
        box-shadow: none;
        background: none;
    }

    header .header-nav {
        display: flex;
        height: 100%;
        padding: 0;
    }

    .header-link {
        font-size: 14px;
        line-height: 16px;
    }

    header .header-extra li {
        animation: none;
    }

    header .header-extra.show .innerList {
        margin-bottom: 0;
    }

    header .innerList ul {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        padding: 20px 0;
    }

    header .product .innerList ul {
        box-sizing: border-box;
        background: #FFFFFF;
        border-radius: 16px;
        margin: 0;
    }

    header .learn .innerList ul {
        flex-wrap: wrap;
    }

    header .innerList li {
        opacity: 1;
        border-radius: 8px;
        width: 100%;
    }

    header .header-extra .innerList li a {
        width: 100%;
        box-shadow: none;
        border: none;
        padding: 24px 15px 20px 50px;
        background-position: top 20px left 15px;
        margin: 0;
    }

    header .header-extra .innerList-integrations li a {
        padding: 10px;
        box-shadow: 0 4px 4px rgba(44, 82, 152, 0.07);
        border: 1px solid #F4F5F8;
    }

    header .header-extra .innerList-integrations li:last-child a,
    header .header-extra .innerList-integrations li:last-child a:hover{
        box-shadow: none;
        border: 0;
    }

    header .header-extra .innerList li a:hover {
        box-shadow: 0 8px 12px rgba(0, 65, 140, 0.1);
    }

    header .product .innerList li:last-child {
        grid-column: 1/4;
        margin-top: 20px;
    }

    header .header-extra .innerList a.header-features {
        padding: 15px;
        text-align: center;
    }

    header .header-extra .innerList a.header-features:hover {
        box-shadow: none;
    }

    header .innerList a.header-features:after {
        position: static;
        margin-bottom: -4px;
    }

    header .nav-actions {
        padding: 0;
        width: auto;
        min-height: auto;
        height: auto;
        flex-direction: row;
        display: flex;
        align-items: center;
        box-sizing: border-box;
    }

    header .nav-actions:before {
        display: none;
    }

    header .btn {
        display: inline-block;
        max-width: fit-content;
        width: fit-content;
        height: 46px;
    }

    header .btn.btn--blue {
        padding: 17px 20px;
        margin-bottom: 0;
        margin-right: 10px;
    }

    .header-action-links {
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding-right: 20px;
    }

    .header-action-link {
        padding: 0 10px;
        border-top: none;
        font-size: 13px;
        line-height: 18px;
    }

    .header-action-link:first-child {
        padding-bottom: 8px;
    }

    .header-action-link svg {
        width: 18px;
        height: 18px;
        padding-right: 8px;
    }

    .header-social {
        font-size: 13px;
        line-height: 18px;
        padding: 0 20px;
        height: 100%;
    }

    .header-social svg {
        padding-right: 16px;
    }

    .header-social svg #circle {
        fill: #F1F7FE !important;
    }

    .header-social span {
        width: 114px;
    }
}

@media (min-width: 1024px) and (max-width: 1279px) {
    .header-small .header-extra .list,
    .header-small .header-link {
        background: #F4F8FB;
        border-radius: 4px;
        padding: 17px 20px;
        font-weight: 500;
        font-size: 16px;
        line-height: 16px;
        margin-bottom: 5px;
    }

    .header-small {
        width: 690px;
        position: absolute;
        top: calc(100% + 4px);
        left: calc(100% - 100vw + 40px);
        background: #FFFFFF;
        box-shadow: 0 10px 25px rgba(0, 66, 118, 0.15);
        border-radius: 8px;
        padding: 20px;
        transform: translateY(-200%);
        transition: all 0.35s ease-out;
        box-sizing: border-box;
    }

    .active .header-small {
        transform: translateY(0);
    }

    header .innerList li a span {
        display: none;
    }
}

@media (min-width: 1279px) {
    header .nh-burger {
        display: none;
    }

    header .container {
        padding-left: 20px;
    }

    .header-small {
        display: flex;
        width: fit-content;
    }

    header .list:hover svg {
        transform: rotate(180deg);
    }

    header .list:hover svg path {
        fill: #FF238C;
    }

    header .list,
    .header-link:not(.header-action-link) {
        position: relative;
        padding: 0;
        width: auto;
        font-size: 14px;
    }

    .header-link:not(.header-action-link) {
        margin-left: 18px;
        margin-right: 18px;
    }

    header .list:hover,
    .header-link.active,
    .header-link:hover {
        color: #1766ff;
    }

    header .list {
        height: calc(100% - 5px);
        min-height: calc(100% - 5px);
        padding: 0 33px 5px 18px;
    }

    header .list svg:first-child {
        display: block;
        position: absolute;
        top: calc(50% - 4px);
        transition: all .3s;
        transform-origin: center;
        margin-left: 0;
        width: 6px;
        right: 20px;
    }

    header .list svg:last-child {
        display: none;
    }

    header .header-extra:hover .list svg {
        transform: rotate(-180deg);
        fill: #FF238C;
    }

    header .header-extra {
        position: relative;
        top: 5px;
        height: 100%;
        padding: 0;
    }

    header .header-extra:after,
    header .header-extra:before {
        position: absolute;
        bottom: 8px;
        width: 14px;
        height: 14px;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    header .header-extra:before {
        left: -14px;
        content: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTQiIGhlaWdodD0iMTQiIHZpZXdCb3g9IjAgMCAxNCAxNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xMy45NzM2IC01Ljk4OTk4ZS0wNkwxNCAtNS45OTIyOWUtMDZMMTQgMTRMMC44Mzk5MzkgMTRMMCAxNEwtMi4zMDU1M2UtMDkgMTMuOTczNkMwLjI3NzczIDEzLjk5MTEgMC41NTc3OTggMTQgMC44Mzk5MzkgMTRDOC4xMDgwMSAxNCAxMy45OTk5IDguMTA4MDYgMTMuOTk5OSAwLjgzOTk5MkMxMy45OTk5IDAuNTU3ODMxIDEzLjk5MTEgMC4yNzc3NDMgMTMuOTczNiAtNS45ODk5OGUtMDZaIiBmaWxsPSIjRjNGNkZBIi8+Cjwvc3ZnPgo=);
    }

    header .header-extra:after {
        right: -14px;
        content: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTQiIGhlaWdodD0iMTQiIHZpZXdCb3g9IjAgMCAxNCAxNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0wLjAyNjQzMjMgLTUuOTg5OThlLTA2TC0zLjU0NDQ1ZS0wNiAtNS45OTIyOWUtMDZMLTQuNzY4MzdlLTA2IDE0TDEzLjE2MDEgMTRMMTQgMTRMMTQgMTMuOTczNkMxMy43MjIzIDEzLjk5MTEgMTMuNDQyMiAxNCAxMy4xNjAxIDE0QzUuODkxOTkgMTQgNS41ODI4MmUtMDUgOC4xMDgwNiA1LjY0NjM2ZS0wNSAwLjgzOTk5MkM1LjY0ODgzZS0wNSAwLjU1NzgzMSAwLjAwODkzNjE3IDAuMjc3NzQzIDAuMDI2NDMyMyAtNS45ODk5OGUtMDZaIiBmaWxsPSIjRjNGNkZBIi8+Cjwvc3ZnPgo=);
    }

    header .header-extra:hover:after,
    header .header-extra:hover:before {
        opacity: 1;
    }

    header .header-extra:hover > span {
        background: #F3F6FA;
        border-radius: 8px 8px 0 0;
    }

    header .header-extra:hover .innerList {
        opacity: 1;
        visibility: visible;
        transition-delay: 0s;
        display: block;
    }

    header .header-extra:hover .innerList li {
        transform: none;
        transition-delay: 0s;
        opacity: 1;
    }

    header .header-extra .innerList li a {
        font-size: 14px;
    }

    .wrap-header-extra:hover .innerList {
        opacity: 1;
        visibility: visible;
        display: block;
        left: -220px;
    }

    header .wrap-header-extra .innerList {
        width: 1173px;
        background: #F3F6FA;
        overflow: hidden;
        display: none;
    }

    header .wrap-header-extra .innerList ul {
        width: 800px;
    }

    header .wrap-header-extra .list-integrations {
        visibility: hidden;
    }

    header .wrap-header-extra .list-integrations .innerList {
        width: 373px;
        left: 580px;
        top: -2px;
        box-shadow: none;
        border-radius: 0 16px 16px 0;
    }

    header .wrap-header-extra .list-integrations ul {
        width: auto;
        display: flex;
        padding: 30px 25px;
        margin: 0;
    }

    header .innerList-integrations li:first-child {
        display: block;
        font-size: 14px;
        font-weight: 600;
        padding: 0 0 10px 10px;
    }

    header .innerList-integrations li:last-child a {
        padding-top: 15px;
    }

    .list-integrations .list {
        display: none;
    }

    header .innerList {
        display: block;
        width: 770px;
        position: absolute;
        top: calc(100% - 2px);
        left: -130px;
        background: #fff;
        box-shadow: 0 10px 25px rgba(0, 66, 118, 0.15);
        border-radius: 16px;
        box-sizing: border-box;
        opacity: 0;
        visibility: hidden;
    }

    header .innerList ul {
        padding: 20px 25px;
    }

    header .product .innerList ul {
        flex-shrink: 0;
        padding-top: 40px;
        border-radius: 0;
    }

    header .innerList li a span {
        display: block;
        padding-top: 8px;
        font-weight: normal;
        font-size: 12px;
        line-height: 16px;
        color: #141f34cc;
        opacity: .6;
    }

    header .innerList.innerList-integrations li a span {
        opacity: 1;
    }
}