*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

ul,
li {
    padding: 0;
    display: block;
}

body,
h1,
h2,
h3,
h4,
p,
ul,
li {
    margin: 0;
}

body {
    overflow-x: hidden;
    width: 100%;
}

img {
    max-width: 100%;
    display: block;
    object-fit: cover;
}

a {
    display: inline-block;
    text-decoration: none;
    outline: none;
    appearance: none;
}

a,
body {
    color: var(--t-foreground-primary-rgb);
}

fieldset {
    border: none;
    padding: 0;
    margin: 0;
}

input,
button,
textarea,
select {
    font: inherit;
}

input,
textarea,
select {
    border: 1px solid rgba(var(--t-foreground-primary-csv), 0.1);
}

textarea {
    resize: vertical;
}

.btn,
input,
button,
textarea,
select {
    appearance: none;
    outline: none;
    border-radius: 8px;
    padding: 5px 20px;
    line-height: 2em;
}

input[type='radio'],
input[type='checkbox'] {
    cursor: pointer;
    appearance: auto;
    margin-right: 5px;
}

input[type='date'] {
    cursor: pointer;
    appearance: auto;
    background: #fff;
}

select {
    padding: 5px 40px 5px 20px;
    cursor: pointer;
    background: none;
    color: var(--t-foreground-primary-rgb);
    appearance: none;
    -webkit-appearance: none;
}

.select-wrapper {
    display: inline-block;
    position: relative;
}

.select-wrapper::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 7px;
    left: calc(100% - 20px);
    top: 50%;
    transform: translate(-100%, -50%);
}

button {
    cursor: pointer;
    border: none;
    font-weight: 600;
    transition: all 0.5s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

a {
    transition: all 0.5s ease;
}

.btn {
    background: var(--primary-500-rgb);
    color: #ffffff;
    font-weight: 600;
    text-align: center;
    line-height: 1em;
    padding: 12px 24px;
    border-radius: 8px;
}

.btn:hover {
    background: rgba(var(--primary-500-csv), 0.9);
    color: #fff;
}

.btn-ghost {
    font-weight: 600;
    background: none;
    color: var(--primary-500-rgb);
    border: 1px solid var(--primary-500-rgb);
    text-align: center;
    line-height: 1.3em;
    padding: 8px 20px;
    border-radius: 8px;
}

.btn-ghost:hover {
    background: var(--primary-500-rgb);
    color: #fff;
}

.btn-link {
    color: var(--primary-500-rgb);
    font-weight: 600;
}

.btn-link:hover {
    text-decoration: underline;
}

body {
    font: 400 16px/1.8em 'Be Vietnam Pro';
}

h1 {
    font-weight: 700;
    font-size: 40px;
    line-height: 1.2em;
}

h2 {
    font-weight: 600;
    font-size: 34px;
    line-height: 1.5em;
}

.why-olimp__title,
h3 {
    font-weight: 600;
    font-size: 26px;
    line-height: 1.5em;
}

h4 {
    font-weight: 600;
}

.container {
    padding: 0 15px !important;
}

@media (min-width: 1481px) {
    .container {
        padding: 0 !important;
    }
}

.container-full {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
}

.card-base {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0px 0px 15px 0px rgba(0, 113, 240, 0.1);
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.button-preloader,
.preloader {
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
}

.button-preloader {
    display: flex;
    justify-content: center;
    align-items: center;
}

.button-spinner,
.spinner {
    border: 4px solid #416283;
    border-radius: 100%;
    border-top-color: var(--primary-500-rgb);
    height: 80px;
    width: 80px;
    animation: 1s linear 0s normal none infinite running spinner;
    -webkit-animation: 1s linear 0s normal none infinite running spinner;
}

.button-spinner {
    height: 20px;
    width: 20px;
    border: 2px solid #fff;
    border-top-color: transparent;
}

@keyframes spinner {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
@-webkit-keyframes spinner {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.tooltip {
    position: relative;
}

.tooltip:after {
    content: '';
    position: absolute;
    background: url('../img/tooltip.svg') no-repeat center center/cover;
    width: 12px;
    height: 12px;
    top: 50%;
    left: 5px;
    transform: translate(0, -50%);
}

/* Hide the default autocomplete placeholder Google Maps API*/
.pac-input::placeholder {
    display: none;
}

/* Section header */

.header {
    width: 100vw;
    position: sticky;
    top: -100%;
    z-index: 100;
    background: #fff;
    transition: all 0.5s ease;
    box-shadow: 0 0 15px rgb(0 0 0 / 10%);
}

.header-scrolling {
    box-shadow: 0 0 15px rgb(0 0 0 / 10%);
}

.header_active {
    top: 0;
}

.header__navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header__nav-list {
    display: flex;
    align-items: center;
    justify-content: center;
}

/*.header__*/

.menu-item-has-children a {
    padding: 24px 0;
}

.header__nav-item {
    padding: 0 20px;
}

.header-rfq-btn {
    padding: 5px 20px;
    background: var(--primary-500-rgb);
}

.header-rfq-btn:hover {
    background: rgba(var(--primary-500-csv), 0.9);
}

.sub-menu {
    /*display: flex;*/
    background: #f6f6f6;
    width: 100%;
    position: absolute;
    left: 0;
    top: calc(100%);
    align-items: center;
    justify-content: center;
    height: 75px;
    z-index: -100;
    display: none;
    box-shadow: 0 0 15px rgb(0 0 0 / 10%);
}

.menu-item-has-children:hover > .sub-menu {
    display: flex;
}

.header-rfq-btn {
    line-height: 1.5em;
}

.header-rfq-btn a {
    color: #fff !important;
    margin: 0;
}

.header__account-sign-in,
.header__nav-item a,
.header__account-btn {
    position: relative;
    font-weight: 600;
}

.header__nav-item a {
    height: 100%;
}

.header__nav-item_hovered > a::after,
.header__account-sign-in::after,
.header__nav-item a::after,
.header__account-btn::after {
    content: '';
    position: absolute;
    left: 0;
    top: calc(100% - 4px);
    height: 4px;
    width: 100%;
    background: transparent;
    z-index: 3;
}

.header__nav-item_hovered > a::after,
.header__account-sign-in:hover::after,
.current-menu-parent > a::after,
.header__nav-item_active a::after,
.header__nav-item a:hover::after {
    background: var(--primary-500-rgb);
    color: var(--primary-500-rgb);
    transition: all 0.5s ease;
}

.header-rfq-btn a:hover::after {
    background: transparent;
}

.header__account-sign-in:hover,
.header__nav-item_active a,
.header__nav-item a:hover {
    color: var(--primary-500-rgb);
}

.header-rfq-btn a:hover {
    color: #fff;
}

.header__account-sign-in {
    margin-right: 36px;
}

.header__mobile-navigation {
    display: none;
}

/* Loop in the news template part */

.media__item-img-wrapper {
    /*height: 38px;*/
    /*width: 100%;*/
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
}

.media__item-img {
    height: 65px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}

.media__item-description {
    /*margin-top: 30px;*/
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
    font-size: 18px;
}

.media__item-link-img {
    opacity: 0.6;
}

.media__item-link-img:hover {
    opacity: 1;
}

/* Footer section */

.footer__title {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.8em;
    margin-bottom: 16px;
}

.footer__item {
    font-weight: 400;
    font-size: 16px;
    line-height: 1.8em;
}

.footer__item a {
    color: var(--t-foreground-secondary-rgb);
}

.footer__item:not(:last-child) {
    margin-bottom: 12px;
}

.footer__item:hover a {
    color: var(--t-foreground-primary-rgb);
}

.footer__item_terms {
    font-size: 14px;
    font-weight: 400;
    margin-top: 80px;
    margin-bottom: 15px;
}

.footer__item_terms-copyright {
    padding: 0 3px;
}

.footer__item_terms-link {
    font-weight: 600;
}

.footer__item_terms-link:hover {
    text-decoration: underline;
}

.footer__social-item:not(:last-child) {
    margin-right: 12px;
}

.footer__social-links {
    display: flex;
}

.footer__social-item:hover {
    transform: rotate(360deg);
    transition: all 1.5s ease;
}

.custom-logo-link {
    flex-grow: 0;
    width: 175px;
    height: 40px;

    img {
        object-fit: contain;
        width: 100%;
        height: 100%;
    }
}

/*Privacy policy*/

.privacy {
    margin: 50px 0 0;
}

.privacy__company-name {
    text-align: center;
    color: rgb(165, 165, 165);
    letter-spacing: 1em;
    font-weight: 600;
    text-transform: uppercase;
}

.privacy__title {
    margin: 50px 0 80px 0;
    text-transform: uppercase;
    text-align: center;
    font-size: 50px;
}

.privacy__item:not(:last-child) {
    margin-bottom: 60px;
}

.privacy__item-title {
    margin: 40px 0 35px;
}

.privacy__item-text {
    margin: 30px 0;
}

.blog-post__content li,
.privacy__item-list {
    margin-bottom: 15px;
    margin-left: 30px;
    position: relative;
}

.blog-post__content li::before,
.privacy__item-list::before {
    content: '';
    width: 5px;
    height: 5px;
    background: #000;
    display: block;
    position: absolute;
    left: -30px;
    border-radius: 50%;
    line-height: 1.5em;
    transform: translate(0, 240%);
}

/* Security Guide */

.security-guide {
    margin: 50px 0 0;
}

.security-guide__title {
    margin: 50px 0 60px 0;
    text-transform: uppercase;
    text-align: center;
    font-size: 48px;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.security-guide__intro {
    max-width: 900px;
    margin: 0 auto 70px auto;
    color: #444;
    line-height: 1.8;
    font-size: 16px;
}

.security-guide__intro p {
    margin-bottom: 20px;
}

.security-guide__content {
    max-width: 900px;
    margin: 0 auto;
    color: #222;
    line-height: 1.9;
    font-size: 16px;
}

.security-guide__content h2 {
    margin: 50px 0 25px;
    font-size: 24px;
    font-weight: 600;
}

.security-guide__content p {
    margin: 20px 0;
}

.security-guide__content ul {
    margin: 25px 0 30px 30px;
    padding-left: 20px;
    list-style-position: outside;
}

.security-guide__content li {
    margin-bottom: 14px;
    position: relative;
    padding-left: 15px;
}

.security-guide__content li::before {
    content: '';
    width: 5px;
    height: 5px;
    background: #000;
    display: block;
    position: absolute;
    left: -20px;
    top: 0.75em;
    border-radius: 50%;
}

.security-guide__contact {
    max-width: 900px;
    margin: 80px auto 0;
    padding-top: 40px;
    border-top: 1px solid #e5e5e5;
}

.security-guide__contact h2 {
    margin-bottom: 15px;
    font-size: 22px;
    font-weight: 600;
}

.security-guide__contact p {
    font-size: 16px;
}

.security-guide__contact a {
    color: #000;
    text-decoration: underline;
}

/*404*/

.section-404 {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 130px;
    flex-direction: column;
}

.section-404 h2 {
    margin-bottom: 10px;
}

/* Other css */
.no-posts {
    font-weight: 400;
}

.contact-us-formpart .wpcf7-spinner {
    margin-top: 5px;
}

.contact-us-formpart .form-group .submit-button {
    margin-bottom: 0;
}

.grecaptcha-badge {
    display: none !important;
}

/* Media requests */

@media (max-width: 1246px) {
}

@media (max-width: 1200px) {
    /* .container { */
    /* width: 960px; */
    /* margin: auto !important; */
    /* } */

    .header {
        position: sticky;
        padding: 0;
        z-index: 8;
        background: #fff;
    }

    /* .header-container {
    margin: auto;
  } */

    .header__navigation {
        display: none;
    }

    .header__mobile-navigation {
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: relative;
        z-index: 4;
        background: #fff;
    }

    .header__mobile-navigation-content {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 12px 15px;
        position: relative;
        z-index: 3;
        background: #fff;
    }

    .header__hamburger {
        width: 30px;
        height: 20px;
        display: none;
        flex-direction: column;
        justify-content: space-between;
    }

    .header__hamburger_active {
        display: flex;
    }

    .header__hamburger-layer {
        height: 3px;
        background-color: black;
    }

    .header__hamburger-close-btn {
        font-size: 30px;
        line-height: 0;
        display: none;
    }

    .header__hamburger-close-btn_active {
        display: block;
    }

    .header__mobile-nav-menu {
        position: absolute;
        left: 0;
        top: -1000px;
        background: #fff;
        padding: 12px 0;
        width: 100vw;
        border-radius: 0 0 15px 15px;
        transition: all 0.5s ease-in-out;
        z-index: 2;
        margin-left: calc(-50vw + 50%);
        margin-right: calc(-50vw + 50%);
        margin-bottom: 100%;
        box-shadow: 0 0 15px rgb(0 0 0 / 10%);
        clip-path: inset(0px -15px -15px -15px);
    }

    .header__mobile-nav-menu_active {
        top: 62px;
    }

    .header__mobile-nav-content {
        margin: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        max-width: 960px;
        text-align: center;
        overflow: hidden;
        flex-shrink: 0;
        position: relative;
    }

    .header__nav-list {
        flex-direction: column;
        margin-bottom: 0;
        color: #5c6064;
        text-align: center;
    }

    .header__nav-list a {
        color: #5c6064;
        padding-bottom: 0 !important;
    }

    .menu-item-has-children:not(:last-child) {
        margin-bottom: 12px !important;
    }

    .parent_active {
        border-bottom: 4px solid var(--primary-500-rgb);
    }

    /*.header__nav-item:not(:last-child) {*/
    /*    margin-bottom: 15px;*/
    /*}*/

    /*Uncomment this class why apply new header*/
    .header__nav-item {
        padding: 0;
    }

    .menu-item-has-children a {
        padding: 12px 0;
    }

    /*.header-rfq-btn {        !* Delete this class why apply new header*!*/
    /*    margin: 12px 0 0 !important;*/
    /*}*/

    .header__nav-item a:hover::after,
    .header__nav-item_active a::after {
        display: none;
    }

    .header__nav-item {
        width: 100%;
        margin: 0;
        max-width: 100%;
    }

    .sub-menu {
        box-shadow: none;
    }

    .header__nav-item .sub-menu,
    .header__nav-item:hover .sub-menu {
        top: 0;
        left: 0;
        height: auto;
        /*z-index: 100;*/
    }

    .header__nav-item .sub-menu {
        display: none;
        position: unset;
        background: transparent;
        flex-direction: column;
    }

    .header__nav-item .sub-menu_active {
        display: flex;
    }

    .header__mobile-back-btn_hidden,
    .header__account-btns_hidden,
    .header__nav-item_hidden {
        display: none;
    }

    .header__account-btns {
        margin-top: 32px;
    }

    .header__mobile-back-btn {
        display: none;
        position: absolute;
        left: 0;
        top: 0;
        background: transparent;
    }

    .header__mobile-back-btn_active {
        display: block;
        padding: 0;
        background: url('../img/header-back-btn.svg') no-repeat center center/cover;
        width: 11px;
        height: 20px;
    }
}

@media (max-width: 992px) {
    .footer__item_terms {
        margin-top: 56px;
    }
}

@media (max-width: 768px) {
    .footer__item_terms {
        margin-top: 56px;
    }
}

@media (max-width: 640px) {
    .header__mobile-nav-content {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .header__nav-list {
        text-align: center;
    }

    .header__img-video {
        display: block;
    }

    .header__mobile-back-btn {
        left: 15px;
    }

    h1 {
        font-size: 32px;
        line-height: 1.4em;
    }

    h2 {
        font-size: 25px;
    }

    h3 {
        font-size: 20px;
    }

    .privacy__title {
        font-size: 32px;
        margin: 25px auto 30px;
    }

    .terms,
    .privacy {
        margin: 30px 0 0;
    }

    .privacy__company-name {
        letter-spacing: 0.5em;
    }
}
