/**
 * Theme Name:        OAN 2
 * Theme URI:         https://oan.pl
 * Description:       OAN official theme used for oan.pl website
 * Version:           1.0.0
 * Author:            OAN
 * Author URI:        https://oan.pl
 * Tags:              block-patterns, full-site-editing
 * Text Domain:       oan
 * Tested up to:      6.6.1
 * Requires at least: 6.6.1
 * Requires PHP:      8.2.0
 * License:           Copyright OAN (Online Advertising Network Sp. z o.o., ul. Zeromskiego 7, 05-075 Warszawa)
 * License URI:       https://oan.pl/contact
 */

* {
    box-sizing: border-box;
}

:root {
    --primary: #fff700;
    --secondary: #ff2cfd;
    --error: #ff6060;
    --tertiary: #2a1362;
    --hover: #480fb7;
    --background-primary: #350061;
    --background-secondary: #321768;
    --background-tertiary: #000324;
    --background-linear-1: #1a0c3c;
    --background-linear-2: #2b083f;
  }

html {
    font-size: 62.5%;
}

body {
    font-size: 2rem;
}

body, html {
    overflow-x: hidden;
    min-width: 320px;
    margin: 0;
    padding: 0;
    background-color: var(--background-primary);
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-style: normal;
}

.grecaptcha-badge {
    visibility: hidden;
}

input, textarea {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-style: normal;
}

input:focus-visible,
textarea:focus-visible,
button:focus-visible {
    box-shadow: 0 0 4px 4px var(--primary);
}

.container {
    width: 1078px;
    padding-left: 15px;
    padding-right: 15px;
    max-width: 100%;
    margin: 0 auto;
}

.h2, .h3, .h4, .h5, .h6 {
    font-family: 'Orbitron', sans-serif;
    font-style: normal;
    text-transform: uppercase;
    font-optical-sizing: auto;
    font-weight: 700;
}

.h2 span,
.h3 span,
.h4 span,
.h5 span {
    color: var(--secondary);
}

p {
    line-height: 1.5;
}

a {
    text-decoration: none;
    color: var(--hover);
}

a:hover {
    text-decoration: underline;
}

.relative {
    position: relative;
}

.navbar {
    padding: 21px 0;
    min-height: 76px;
    background-color: rgba(50, 23, 104, 1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 100;
}

.navbar .container {
    position: relative;
}

.navbar__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar__logo {
    display: block;
    font-size: 0;
    width: 84px;
}

.navbar > h1 > svg {
    display: block;
    width: 100%;
    height: auto;
}

.navbar__list {
    list-style: none;
    margin: 0;
    padding: 0 300px 0 0;
    font-size: 1.7rem;
    line-height: 1.06;
    display: flex;
    align-items: center;
    justify-content: center;
}

.navbar__list .current-menu-item > a,
.navbar__list .current-menu-ancestor > a {
    font-weight: bold;
}

.navbar__list > li > a,
.navbar__list .sub-menu a {
    display: block;
    padding: 4px 5px;
    color: #fff;
    text-transform: uppercase;
    text-decoration: none;
    white-space: nowrap;
}

.navbar__list > ul > li > a:hover {
    text-decoration: underline;
}

.navbar__list .sub-menu {
    position: absolute;
    display: none;
    list-style: none;
    background-color: var(--background-tertiary);
    top: calc(100% + 21px);
    padding: 15px;
    margin: 0;
}

.navbar__list .sub-menu > li:not(:last-child) {
    margin-bottom: 10px;
}

.button.navbar__externalButton {
    position: absolute;
}

.navbar__externalButton {
    right: 0;
    top: 50%;
    transform: translateY(-50%) scale(0.7);
    transform-origin: calc(100% - 30px) 50%;
}

.navbar__toggle {
    display: none;
    position: fixed;
    border: 0;
    background-color: transparent;
    padding: 0;
    cursor: pointer;
    right: 15px;
    top: calc(76px / 2);
    transform: translateY(-50%);
    width: 32px;
    height: 24px;
}

.navbar__toggle > span {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    height: 2px;
    background-color: #fff;
    transition-duration: .3s;
    transition-timing-function: ease-in;
    transition-property: transform, opacity;
}

.navbar__toggle > span:first-child {
    top: 0;
}

.navbar__toggle > span:nth-child(2) {
    top: calc(50% - 1px);
}

.navbar__toggle > span:last-child {
    top: calc(100% - 2px);
}

.navbar__toggle--mobileOpened > span:nth-child(2) {
    opacity: 0;
}

.navbar__toggle--mobileOpened > span:first-child {
    transform: translate(1px, 10px) rotate(45deg);

}
.navbar__toggle--mobileOpened > span:last-child {
    transform: translate(1px, -12px) rotate(-45deg);
}

.navbar__toggle > span:last-child {
    margin-bottom: 0;
}

.header {
    padding: calc(92px + 76px) 0 92px;
    min-height: 250px;
    background: linear-gradient(135deg, var(--background-secondary) 0%, #000 85%, #000 100%);
    position: relative;
    overflow: hidden;
}

.header h2 {
    margin: 0;
    position: relative;
    letter-spacing: 1px;
    z-index: 2;
}

.header__decoration {
    position: absolute;
    pointer-events: none;
    z-index: 1;
    display: block;
    height: auto;
}

.header__decoration--small {
    left: calc(50% - (1078px / 2) - 100px);
    top: 50px;
    width: 177px;
}

.header__decoration--medium {
    right: -160px;
    top: 75px;
    width: 457px;
}

.main {
    background-color: #fff;
    color: #000;
    padding: 25px 0 80px;
    min-height: calc(100dvh - 600px);
    position: relative;
}

.main--withTitle {
    min-height: calc(100dvh - 600px - 250px);
}

.main--notFound {
    color: #fff;
    background: var(--background-tertiary)
}

.main--notFound ul li a {
    color: var(--primary);
}

.main h3 {
    font-family: 'Orbitron', sans-serif;
    font-style: normal;
    text-transform: uppercase;
    font-optical-sizing: auto;
    font-weight: 700;
    font-size: 2.4rem;
    line-height: 1.2;
    color: var(--secondary);
    margin: 80px 0 0;
}

.button {
    max-width: 100%;
    white-space: nowrap;
    background: transparent;
    border: 0;
    display: inline-block;
    font-family: 'Orbitron', sans-serif;
    font-style: normal;
    text-transform: uppercase;
    font-optical-sizing: auto;
    font-weight: 700;
    font-size: 0;
    text-decoration: none;
    position: relative;
    cursor: pointer;
    color: #000;
    padding: 0 53px 0 0;
}

.button:hover {
    text-decoration: none;
}

.button--fullWidth {
    width: 100%;
}

.button--primary:hover::before,
.button--primary:hover::after,
.button--desktopCentered:hover > .button__lineDecoration::after {
    opacity: 0;
}

.button::before,
.button::after,
.button--desktopCentered > .button__lineDecoration::after {
    transition: opacity .3s ease-in-out;
    content: '';
    display: block;
    position: absolute;
}

.button::before {
    width: calc(100% - 48px);
    height: 1px;
    left: -2px;
    bottom: -9px;
}

.button::after {
    width: calc(54px * pow(2, 1/2));
    bottom: -9px;
    height: 1px;
    left: calc(100% - 50px);
    transform: rotate(-45deg);
    transform-origin: 0 0;
}

.button--desktopCentered > .button__lineDecoration {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 0;
}

.button--desktopCentered > .button__lineDecoration::after {
    width: calc(54px* pow(2, 1 / 2));
    height: 1px;
    bottom: 0;
    left: -15px;
    bottom: 17px;
    transform: rotate(45deg);
}

.button--primary::before,
.button--primary::after,
.button--desktopCentered > .button__lineDecoration::after {
    background-color: var(--primary);
}

.button--tertiary::before,
.button--tertiary::after {
    background-color: var(--tertiary);
}

.button--tertiary:hover::before,
.button--tertiary:hover::after {
    background-color: var(--hover);
}

.button__holder {
    font-size: 1.9rem;
    line-height: 1.21;
    min-height: 53.6px;
    padding: 15px calc(132px - 54px) 15px 24px;
}

.button__holder::after {
    content: "";
    position: absolute;
    top: 0;
    width: 0;
    right: -0.5px;
    height: 0;
    display: inline-block;
    border-style: solid;
    border-width: 54px 54px 0 0;
    border-color: transparent;
}

.button--loading .button__circle {
    opacity: 1;
}

.button__circle {
    display: block;
    color: currentColor;
    position: absolute;
    transition: opacity .3s ease-in-out;
    opacity: 0;
    pointer-events: none;
    top: 50%;
    right: 32px;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
}

.button__circle > div {
    display: block;
    position: absolute;
    width: 21px;
    height: 21px;
    margin: 3px;
    border: 3px solid currentColor;
    border-radius: 50%;
    animation: loadingCircle 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    border-color: currentColor transparent transparent transparent;
}
.button__circle div:nth-child(1) {
    animation-delay: -0.45s;
}
.button__circle div:nth-child(2) {
    animation-delay: -0.3s;
}
.button__circle div:nth-child(3) {
    animation-delay: -0.15s;
}

.button--desktopCentered > .button__decoration {
    display: block;
    position: absolute;
    width: 1px;
    height: 100%;
    left: 52px;
    top: 0;
}

.button--desktopCentered > .button__decoration::before {
    content: "";
    position: absolute;
    top: 0;
    width: 0;
    right: 0;
    height: 0;
    display: inline-block;
    border-style: solid;
    border-width: 0 54px 54px 0;
    border-color: transparent;
}

.button--desktopCentered.button--primary > .button__decoration::before {
    border-right-color: var(--primary);
}

.button.button--primary > .button__holder::after {
    border-top-color: var(--primary);
}

.button--primary > .button__holder {
    background-color: var(--primary);
}

.button--desktopCentered.button--tertiary > .button__decoration::before {
    border-right-color: var(--tertiary);
}

.button.button--tertiary > .button__holder::after {
    border-top-color: var(--tertiary);
}

.button--tertiary > .button__holder {
    background-color: var(--tertiary);
}

.button--desktopCentered.button--tertiary:hover > .button__decoration::before {
    border-right-color: var(--hover);
}

.button.button--tertiary:hover > .button__holder::after {
    border-top-color: var(--hover);
}

.button--tertiary:hover > .button__holder {
    background-color: var(--hover);
}

.form__info:empty {
    display: none;
    margin: 0;
}

.form__info {
    display: block;
    font-size: 1.5rem;
    line-height: 1.5;
}

.form__success {
    color: var(--primary);
    margin-bottom: 10px;
}

.form__error {
    color: var(--error);
    margin: 5px 0;
}

.form__error--mailto {
    color: #fff;
    margin-top: 5px;
    margin-bottom: 15px;
}

.form__error--mailto a {
    color: var(--primary);
}

.form--optOut .form__error--mailto {
    color: #000;
}

.form--optOut .form__error--mailto a {
    color: var(--background-primary);
}

.input {
    padding: 12px 30px;
    border: 1px solid #fff;
    background: transparent;
}

.input.input--withBorder {
    border-color: #000;
}

.input.input--withBorder,
.input.input--withBorder::placeholder {
    color: #000;
}

.input,
.input::placeholder {
    color: #fff;
    font-size: 2rem;
    line-height: 1.5;
}

.input--fullWidth {
    width: 100%;
}

.input--textarea {
    resize: no;
    min-height: 147px;
}

.checkbox {
    font-size: 0;
    position: relative;
}

.checkbox__input,
.checkbox__label {
    display: inline-block;
    vertical-align: top;
}

.checkbox__input {
    width: 1px;
    height: 1px;
    top: -2px;
    left: -2px;
    background: transparent;
    border: none;
    position: absolute;
}

.checkbox__decoration {
    content: '';
    display: block;
    position: absolute;
    pointer-events: none;
    width: 22px;
    height: 22px;
    top: 0;
    left: 0;
    border: 1px solid #fff;
    background-color: transparent;
}

.checkbox__input:checked ~ .checkbox__decoration {
    background-color: var(--primary);
}

.checkbox__label {
    padding-left: 32px;
    font-size: .8rem;
    line-height: 1.5;
    width: 100%;
}

.checkbox__label a {
    color: inherit;
    text-decoration: underline;
}

.checkbox__label a:hover {
    text-decoration: none;
}

.footer {
    background-color: var(--background-tertiary);
    min-height: 460px;
    padding: 70px 0;
}

.footer__container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.footer__logo {
    display: block;
    width: 118px;
    margin-bottom: 26px;
}

.footer__logo > svg {
    width: 100%;
    height: auto;
}

.footer__linkedin {
    width: 31px;
    height: auto;
    display: block;
}

.footer__linkedin > img {
    width: 100%;
}

.footer__list,
.footer__list ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer__list > li {
    display: inline-block;
    vertical-align: top;
}

.footer__list a {
    color: #fff;
    text-decoration: none;
}

.footer__list > li > a {
    font-family: 'Orbitron', sans-serif;
    font-style: normal;
    text-transform: uppercase;
    font-optical-sizing: auto;
    font-weight: 700;
    margin-bottom: 4px;
}

.footer__list > li > a:hover {
    cursor: default;
    text-decoration: none;
}

.footer__list ul > li > a {
    line-height: 30px;
}

.footer__certificates {
    text-align: right;
    list-style: none;
    margin: 30px 0 0;
    transform: translateX(15px);
    padding: 0;
}

.footer__certificates > li {
    display: inline-block;
    width: 177px;
    max-width: calc(50% - 18px);
}

.footer__certificates > li:first-child {
    margin-right: 15px;
}

.footer__certificates > li > img {
    width: 100%;
}

.decorationWithLine > .container {
    position: relative;
}
.decorationWithLine__holder {
    width: 100%;
    height: 100%;
    pointer-events: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}
.decorationWithLine__line,
.decorationWithLine__line::before,
.decorationWithLine__line::after,
.decorationWithLine .decorationWithLine__holder::before,
.decorationWithLine .decorationWithLine__holder::after {
    content: '';
    display: block;
    position: absolute;
    height: 1px;
    background-color: var(--secondary);
}

.decorationWithLine .decorationWithLine__holder::before,
.decorationWithLine .decorationWithLine__holder::after {
    width: 100%;
}
.decorationWithLine .decorationWithLine__holder::before {
    left: 100%;
}
.decorationWithLine .decorationWithLine__holder::after {
    right: 100%;
}
.decorationWithLine--bottom .decorationWithLine__holder--bottom::before,
.decorationWithLine--bottom .decorationWithLine__holder--bottom::after {
    bottom: 0;
}
.decorationWithLine--top .decorationWithLine__holder--top::before,
.decorationWithLine--top .decorationWithLine__holder--top::after {
    top: 0;
}
.decorationWithLine__line {
    left: 55px;
    right: 55px;
    width: calc(100% - 2 * 55px);
}
.decorationWithLine__line::before,
.decorationWithLine__line::after {
    width: calc(55px * sqrt(2));
}
.decorationWithLine--bottom .decorationWithLine__line--bottom {
    bottom: 55px;
}
.decorationWithLine--bottom .decorationWithLine__line--bottom::before,
.decorationWithLine--bottom .decorationWithLine__line--bottom::after {
    bottom: 0;
}
.decorationWithLine--bottom .decorationWithLine__line--bottom::before {
    transform-origin: 100% 100%;
    transform: rotate(-45deg);
    left: calc(-55px * sqrt(2));
}
.decorationWithLine--bottom .decorationWithLine__line--bottom::after {
    transform-origin: 0 0;
    transform: rotate(45deg);
    right: calc(-55px * sqrt(2));
}
.decorationWithLine--top .decorationWithLine__line--top::before {
    transform-origin: 100% 100%;
    transform: rotate(45deg);
    left: calc(-55px * sqrt(2));
}
.decorationWithLine--top .decorationWithLine__line--top::after {
    transform-origin: 0 0;
    transform: rotate(-45deg);
    right: calc(-55px * sqrt(2));
}
.decorationWithLine--top .decorationWithLine__line--top {
    top: 55px;
}
.decorationWithLine--top .decorationWithLine__line--top::before,
.decorationWithLine--top .decorationWithLine__line--top::after {
    top: 0;
}

.contactForm .container {
    position: relative;
}

.contactForm p {
    max-width: 100%;
    width: 442px;
    color: #fff;
    line-height: 1.5;
    margin: 130px 0 40px;
}

.contactForm p,
.contactForm .form {
    position: relative;
    z-index: 2;
}

.contactForm__background {
    display: block;
    position: absolute;
    pointer-events: none;
    z-index: 1;
    top: 75%;
    left: 50%;
    transform: translate(-50%, -60%);
    width: calc(100% + 300px);
    height: auto;
    object-fit: cover;
    object-position: 0 50%;
}

.contactForm .input,
.contactForm .checkbox {
    max-width: 490px;
}

.contactForm .checkbox {
    margin: 20px 0;
}

.contactForm .h3 {
    margin: 0;
    padding-top: 0;
    padding-left: 15px;
    padding-right: 15px;
    text-align: center;
    overflow: hidden;
}

.contactForm .h3 > div {
    display: inline-block;
    position: relative;
    max-width: calc(100% - 160px);
}

.contactForm .h3 > div::before,
.contactForm .h3 > div::after {
    top: calc(50% + 37px);
    width: 100vw;
}

.contactForm .h3 > div::before {
    left: calc(100% + 55px * sqrt(2));
}

.contactForm .h3 > div::after {
    right: calc(100% + 55px * sqrt(2));
}

.contactForm .h3 > div::before,
.contactForm .h3 > div::after,
.contactForm .h3 > div > div::before,
.contactForm .h3 > div > div::after {
    content: '';
    display: block;
    position: absolute;
    height: 1px;
    background-color: var(--secondary);
}

.contactForm .h3 > div > div {
    top: calc(50% + 37px);
    width: 100%;
    position: absolute;
}
.contactForm .h3 > div > div::before,
.contactForm .h3 > div > div::after {
    top: 50%;
    width: calc(55px * sqrt(2));
}
.contactForm .h3 > div > div::before {
    transform-origin: 100% 100%;
    transform: rotate(45deg);
    left: 100%;
}
.contactForm .h3 > div > div:after {
    transform-origin: 0 0;
    transform: rotate(-45deg);
    right: 100%;
}

.usersPrivacyList {
    padding: 0;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    text-align: left;
}

.usersPrivacyList li {
    min-height: 270px;
    max-width: 500px;
    display: flex;
    position: relative;
    width: calc(50% - 15px);
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: column;
    padding: 30px;
    border-color: var(--secondary);
    border-style: solid;
    line-height: 1.5;
}

.usersPrivacyList li p {
    margin: 0;
}

.usersPrivacyList li:first-of-type {
    border-width: 1px;
}

.usersPrivacyList li:last-of-type {
    border-width: 1px 0 0 1px;
    padding-right: 110px;
}

.usersPrivacyList li:last-of-type::before,
.usersPrivacyList li:last-of-type::after,
.usersPrivacyList__decoration {
    content: '';
    display: block;
    position: absolute;
    background-color: var(--secondary);
}

.usersPrivacyList li:last-of-type::before {
    width: calc(100% - 130px);
    bottom: 0;
    left: 0;
    height: 1px;
}

.usersPrivacyList li:last-of-type::after {
    height: calc(100% - 130px);
    top: 0;
    right: 0;
    width: 1px;
}

.usersPrivacyList li img {
    display: block;
    width: 110px;
    height: 110px;
    object-fit: contain;
    object-position: 50% 50%;
    margin-bottom: 30px;
}

.usersPrivacyList__decoration {
    bottom: 0;
    left: calc(100% - 130px);
    width: calc(130px * sqrt(2));
    height: 1px;
    transform: rotate(-45deg);
    transform-origin: 0 0;
}

.list {
    list-style: none;
}
.list > li {
    position: relative;
    padding-left: 16px;
}
.list > li::before {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    content: '';
    display: block;
    width: 7px;
    height: 7px;
    background-color: var(--secondary);
}

.decoratedTitle {
    width: 85%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    white-space: nowrap;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.decoratedTitle > div:first-child,
.decoratedTitle > div:last-child {
    position: relative;
    width: 100%;
    height: 1px;
    background-color: var(--secondary);
}

.decoratedTitle > div:nth-child(2) > span {
    color: #fff;
}

.decoratedTitle > div:nth-child(2) > span > span {
    color: var(--secondary);
}

.decoratedTitle::before,
.decoratedTitle > div:first-child::before,
.decoratedTitle > div:last-child::after,
.decoratedTitle::after {
    content: '';
    display: block;
    position: absolute;
    height: 1px;
    background-color: var(--secondary);
}
.decoratedTitle::before,
.decoratedTitle::after {
    top: 50%;
    width: calc(55px * sqrt(2));
}
.decoratedTitle::before {
    transform-origin: 100% 100%;
    transform: rotate(-45deg);
    left: calc(-55px * sqrt(2));
}
.decoratedTitle::after {
    transform-origin: 0 0;
    transform: rotate(45deg);
    right: calc(-55px * sqrt(2));
}
.decoratedTitle > div:first-child::before {
    width: 100vw;
    right: calc(100% + 55px);
    top: 55px;
}
.decoratedTitle > div:last-child::after {
    width: 100vw;
    left: calc(100% + 55px);
    top: 55px;
}

.decoratedBlock {
    display: block;
    position: relative;
    border-top: 1px solid var(--secondary);
    border-left: 1px solid var(--secondary);
}
.decoratedBlock::before,
.decoratedBlock::after,
.decoratedBlock__decoration {
    content: '';
    display: block;
    position: absolute;
    background-color: var(--secondary);
}
.decoratedBlock::before {
    bottom: 0;
    left: 0;
    width: calc(100% - 55px);
    height: 1px;
}
.decoratedBlock::after {
    top: 0;
    right: 0;
    width: 1px;
    height: calc(100% - 55px);
}
.decoratedBlock__decoration {
    transform-origin: 0 0;
    transform: rotate(-45deg);
    width: calc(55px * sqrt(2));
    left: calc(100% - 55px);
    height: 1px;
    bottom: 0;
}

.decoratedSection {
    position: relative;
}

.decoratedSection > .container {
    margin-bottom: 152px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    border-style: solid;
    border-color: var(--secondary);
    border-width: 0 1px;
    padding: 140px 60px 150px;
}

.decoratedSection > .container::before,
.decoratedSection > .container::after {
    content: '';
    display: block;
    position: absolute;
    width: 200px;
    height: 1px;
    background-color: var(--secondary);
    bottom: 0;
}

.decoratedSection > .container::before {
    left: 0;
}

.decoratedSection > .container::after {
    right: 0;
}

.decoratedSection .h3 {
    margin: 0;
    position: relative;
    text-align: center;
    overflow: hidden;
    transform: translateY(50%);
}

.decoratedSection .h3::before,
.decoratedSection .h3::after {
    content: '';
    display: block;
    position: absolute;
    height: 50%;
    width: 1px;
    background-color: var(--secondary);
    bottom: 0;
}
.decoratedSection .h3::before {
    left: 0;
}
.decoratedSection .h3::after {
    right: 0;
}

.decoratedSection .h3 > div {
    display: inline-block;
    position: relative;
    padding-left: 30px;
    padding-right: 30px;
}

.decoratedSection .h3 > div::before,
.decoratedSection .h3 > div::after {
    content: '';
    display: block;
    position: absolute;
    height: 1px;
    background-color: var(--secondary);
    bottom: 50%;
    width: 350px;
}

.decoratedSection .h3 > div::before {
    left: -350px
}

.decoratedSection .h3 > div::after {
    right: -350px
}

.decoratedSection__bottomLine,
.decoratedSection__bottomLine::before,
.decoratedSection__bottomLine::after {
    content: '';
    display: block;
    position: absolute;
    height: 1px;
    background-color: var(--secondary);
}

.decoratedSection__bottomLine {
    bottom: 55px;
    left: calc(200px + 55px);
    right: calc(200px + 55px);
    width: calc(100% - 2 * (200px + 55px));
}
.decoratedSection__bottomLine::before,
.decoratedSection__bottomLine::after {
    bottom: 0;
    width: calc(55px * sqrt(2));
}
.decoratedSection__bottomLine::before {
    transform-origin: 100% 100%;
    transform: rotate(-45deg);
    left: calc(-55px * sqrt(2));
}
.decoratedSection__bottomLine::after {
    transform-origin: 0 0;
    transform: rotate(45deg);
    right: calc(-55px * sqrt(2));
}

.decoratedSection__decoration {
    position: absolute;
    top: calc(100% + 17px);
    height: 40px;
}

.decoratedSection__decoration--left {
    left: 10px;
}

.decoratedSection__decoration--right {
    right: 10px;
}

.decoratedSection__decoration > span {
    content: '';
    display: block;
    position: absolute;
    background-color: var(--secondary);
    width: 35px;
    height: 1px;
    top: 0;
}

.decoratedSection__decoration--left > span {
    transform: rotate(55deg);
    transform-origin: 0 0;
    right: auto !important;
}

.decoratedSection__decoration--right > span {
    transform: rotate(-55deg);
    transform-origin: 100% 100%;
    left: auto !important;
}

.decoratedSection__decoration > span:nth-of-type(1) {
    left: calc(0 * 20px);
    right: calc(0 * 20px);
}
.decoratedSection__decoration > span:nth-of-type(2) {
    left: calc(1 * 20px);
    right: calc(1 * 20px);
}
.decoratedSection__decoration > span:nth-of-type(3) {
    left: calc(2 * 20px);
    right: calc(2 * 20px);
}
.decoratedSection__decoration > span:nth-of-type(4) {
    left: calc(3 * 20px);
    right: calc(3 * 20px);
}
.decoratedSection__decoration > span:nth-of-type(5) {
    left: calc(4 * 20px);
    right: calc(4 * 20px);
}

.hero__image {
    display: block;
}

.statsBlocks__item {
    font-size: 2rem;
    line-height: 1.35;
    font-weight: 400;
    background: linear-gradient(135deg, rgba(113, 67, 198, 1) 0%, rgba(184, 7, 189, 1) 50%, rgba(184, 7, 189, 1) 100%);
    position: relative;
    overflow: hidden;
}

.statsBlocks__item strong {
    font-family: 'Orbitron', sans-serif;
    font-style: normal;
    text-transform: uppercase;
    font-optical-sizing: auto;
    line-height: 1.06;
    font-size: 7.5rem;
    display: block;
    text-shadow: 0 0 30px #fff;
}

.gradientSections {
    background: linear-gradient(135deg, var(--background-linear-2) 0% ,var(--background-linear-1) 50%, var(--background-linear-2) 100%);
}

.featureIcons {
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    list-style: none;
}

.featureIcons--lessIcons {
    justify-content: center;
}

.featureIcons li {
    width: calc(25% - 30px);
    max-width: 200px;
}

.featureIcons li img {
    width: 115px;
    height: 98px;
    object-fit: contain;
    display: block;
    margin: 0 auto 20px;
}

.featureIcons li span {
    display: block;
    text-align: center;
}

.statsBlocks {
    padding: 0;
    width: 100%;
    max-width: calc(420px * 2 + 26px);
    list-style: none;
    font-size: 0;
    margin: 80px auto 180px;
}

.statsBlocks li {
    display: inline-flex;
    vertical-align: top;
    width: calc(50% - 13px);
    height: 226px;
    margin-bottom: 26px;
    padding-left: 15px;
    padding-right: 15px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

.statsBlocks li strong {
    margin-bottom: 10px;
}

.partners {
    background-color: #fff;
    display: flex;
}

.partners > ul {
    margin: 0;
    padding: 23px 0;
    text-align: center;
    display: flex;
}

.partners > ul > li {
    display: inline-block;
    vertical-align: middle;
    padding: 10px;
    margin: 0 10px;
}

.partners__vector {
    width: auto;
    height: 42px;
}

.editableContent > .container > *:first-child {
    margin-top: 0;
}
.editableContent h1 {
    font-size: 6rem;
    line-height: 1.2;
}
.h2,
.editableContent h2 {
    font-size: 5.3rem;
    line-height: 1.21;
}
.h3,
.editableContent h3 {
    font-size: 4rem;
    line-height: 1.25;
}
.h4,
.editableContent h4 {
    font-size: 3.4rem;
    line-height: 1.25;
}
.h5,
.editableContent h5 {
    font-size: 2.7rem;
    line-height: 1.3;
}
.editableContent ol,
.editableContent ul {
    margin: 40px 0;
    text-align: justify;
    list-style: none;
}

.editableContent ol > li,
.editableContent ul > li {
    position: relative;
    padding-left: 16px;
}

.editableContent ol > li::before,
.editableContent ul > li::before {
    position: absolute;
    left: 0;
    top: 14px;
    transform: translateY(-50%);
    content: '';
    display: block;
    width: 7px;
    height: 7px;
    background-color: var(--secondary);
}

.editableContent .button {
    color: #fff;
}

.editableContent p {
    line-height: 1.5;
}

.editableContent h1,
.editableContent h2,
.editableContent h3,
.editableContent h4,
.editableContent h5,
.editableContent h6 {
    font-family: 'Orbitron', sans-serif;
    font-style: normal;
    text-transform: uppercase;
    font-optical-sizing: auto;
    line-height: 1.2;
    font-weight: 700;
    color: var(--secondary);
}

@media screen and (max-width: 1099px) {
    .header__decoration--small {
        width: 120px;
        left: 0;
        top: 90px;
    }
}

@media screen and (min-width: 1025px) {
    .navbar__list > li {
        margin-right: 45px;
    }
}

@media screen and (max-width: 1024px) {
    .footer__container {
        display: block;
    }
    .footer__certificates {
        text-align: left;
        transform: translateX(-15px);
    }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
    .navbar__list > li {
        margin-right: 15px;
    }
    .footer__firstContact {
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }
    .footer__linkedin {
        margin-top: 0;
        margin-left: 30px;
    }
}

@media screen and (min-width: 992px) {
    .decoratedTitle > div:nth-child(2) {
        padding: 0 30px;
    }
    .hero__image {
        position: absolute;
        right: 0;
        width: calc(50% - 50px);
        top: 50%;
        transform: translateY(-50%);
        animation: flyingHeroImage 4s ease-in-out infinite normal forwards;
    }
}

@media screen and (min-width: 768px) {
    .navbar__list > li:last-child {
        margin-right: 0;
    }
    .navbar__list .menu-item-has-children-active .sub-menu {
        display: block;
    }
    .footer__list > li {
        margin-right: 52px;
        margin-bottom: 15px;
    }
    .footer__list > li:last-child {
        margin-right: 0;
    }
    .button--desktopCentered {
        padding-left: 53px;
    }
    .button.button--desktopCentered::before {
        width: calc(100% - 2 * 50px);
        left: 50%;
        transform: translateX(-50%);
    }
    .button--desktopCentered > .button__holder {
        padding-left: calc(132px - 54px);
    }
    .featureIcons--lessIcons li {
        margin-left: 30px;
        margin-right: 30px;
    }
    .statsBlocks li:nth-child(odd) {
        margin-right: 13px;
    }
    .statsBlocks li:nth-child(even) {
        margin-left: 13px;
    }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
    .decoratedTitle {
        width: 90%;
    }
    .decoratedTitle > div:nth-child(2) {
        padding: 0 15px;
    }
}

@media screen and (max-width: 991px) {
    .decoratedSection > .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    .hero__image {
        position: static;
        max-width: 500px;
        margin: 15px auto 0;
        width: 80%;
    }
}

@media screen and (max-width: 767px) {
    .main h3 {
        margin-top: 40px;
    }
    .main ol {
        margin: 30px 0;
    }
    html {
        font-size: 56.25%;
    }
    .navbar .container {
        position: static;
    }
    .navbar__list {
        display: none;
        position: fixed;
        background-color: var(--background-tertiary);
        top: 76px;
        padding: 75px 15px 15px;
        right: 0;
        width: 300px;
        text-align: right;
    }
    .navbar__list > li > a,
    .navbar__list .sub-menu a {
        padding: 15px;
    }
    .navbar__list.navbar__list--mobileOpened {
        display: block;
    }
    .navbar__list .sub-menu {
        padding-top: 0;
        padding-bottom: 0;
        position: static;
        display: block;
    }
    .navbar__list .sub-menu > li:not(:last-child) {
        margin-bottom: 0;
    }
    .navbar__toggle {
        display: block;
    }
    .navbar__externalButton {
        display: none;
        right: 15px;
        top: calc(100% + 40px);
    }
    .navbar__externalButton--active {
        display: block;
    }
    .header {
        min-height: 0;
    }
    .button--desktopCentered > .button__decoration,
    .button--desktopCentered > .button__lineDecoration {
        display: none;
    }
    .main {
        min-height: 0;
        padding-top: 50px;
        padding-bottom: 50px;
    }
    .main::before {
        display: inline-block;
    }
    .h2 {
        font-size: 4rem;
    }
    .h3 {
        font-size: 2.4rem;
    }
    .h4 {
        font-size: 2.4rem;
    }
    .h5 {
        font-size: 2rem;
    }
    .footer__list > li {
        display: block;
        margin-top: 40px;
    }
    .decoratedTitle {
        width: 30%;
        align-items: flex-start;
    }
    .decoratedTitle > div:nth-child(2) {
        border-top: 1px solid var(--secondary);
        padding-top: 130px;
        position: relative;
    }
    .decoratedTitle > div:nth-child(2) > span {
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
    }
    .decoratedTitle::before,
    .decoratedTitle::after {
        top: 0;
    }
    .decoratedSection {
        text-align: center;
    }
    .decoratedSection__bottomLine {
        width: calc(100% - 200px);
        left: 50%;
        transform: translateX(-50%);
        right: auto;
    }
    .decoratedSection > .container::before {
        width: calc(100px - 55px);
    }
    .decoratedSection > .container::after {
        width: calc(100px - 55px);
    }
    .decoratedSection__decoration {
        display: none;
    }
    .decoratedSection > .container {
        margin: 0;
        flex-direction: column-reverse;
        padding-top: 40px;
        padding-bottom: 50px;
    }
    .decoratedSection .h3 {
        padding-top: 0;
        padding-bottom: 30px;
        transform: none;
    }
    .decoratedSection .h3::before,
    .decoratedSection .h3::after {
        height: calc(50% + 15px);
    }
    .decoratedSection .h3 > div::before,
    .decoratedSection .h3 > div::after {
        display: none;
    }
    .contactForm__background {
        position: static;
        width: calc(100% + 150px);
        transform: translateX(-150px);
    }
    .contactForm .h3 {
        width: 100%;
        padding-top: 55px;
    }
    .contactForm .h3 br {
        display: none;
    }
    .contactForm .h3 > div {
        max-width: 100%;
        padding-top: 40px;
    }
    .contactForm .h3 > div::before,
    .contactForm .h3 > div::after {
        top: 0;
        width: 100px;
    }
    .contactForm .h3 > div::before {
        left: -15px;
    }
    .contactForm .h3 > div::after {
        right: -15px;
    }
    .contactForm .h3 > div > div {
        border-top: 1px solid var(--secondary);
        width: calc(100% - 120px - 2 * (55px * sqrt(2)));
        top: -55px;
        left: 50%;
        transform: translateX(-50%);
    }
    .contactForm .h3 > div > div::before,
    .contactForm .h3 > div > div::after {
        top: 0;
    }
    .contactForm .h3 > div > div::before {
        transform-origin: 0 0;
        left: 100%;
    }
    .contactForm .h3 > div > div::after {
        transform-origin: 100% 100%;
        right: 100%;
    }
    .contactForm {
        margin-bottom: 80px;
    }
    .contactForm p {
        margin-top: 40px;
    }
    .contactForm p,
    .contactForm .form {
        margin-left: auto;
        margin-right: auto;
        display: block;
        max-width: 100%;
        width: 460px;
    }
    .featureIcons {
        margin-left: auto;
        margin-right: auto;
        max-width: calc(400px + 2 * 20px);
        flex-wrap: wrap;
    }
    .featureIcons li {
        width: calc(50% - 20px);
    }
    .featureIcons li:first-child,
    .featureIcons li:nth-child(2) {
        margin-bottom: 20px;
    }
    .usersPrivacyList {
        display: block;
    }
    .usersPrivacyList li {
        width: 100%;
        margin-left: auto;
        margin-right: auto;
        min-height: 0;
    }
    .usersPrivacyList li:first-of-type {
        margin-bottom: 30px;
    }
    .usersPrivacyList li img {
        margin-bottom: 15px;
    }
    .statsBlocks {
        width: 100%;
        max-width: 420px;
        margin: 50px auto 100px;
    }
    .statsBlocks li {
        width: 100%;
    }
}

@media screen and (max-width: 479px) {
    .statsBlocks__item strong {
        font-size: 7rem;
    }
    .statsBlocks__item br {
        display: none;
    }
}

@keyframes flyingHeroImage {
    0% {
        opacity: 1;
        filter: contrast(1.2);
    }
    50% {
        filter: contrast(1);
        opacity: 0.65;
    }
    100% {
        filter: contrast(1.2);
        opacity: 1;
    }
}

@keyframes loadingCircle {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes horizontalSlider {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
}