@charset "UTF-8";

/* base START */
:root {
    --gutter: 2rem;
    --wrapper: 128rem;
    --wrapper-padding: calc((100% - var(--wrapper)) / 2 - var(--gutter));
    --sidewrap: calc(var(--wrapper) + var(--wrapper-padding) * 2 + var(--gutter) * 2);
    
    --section-padding: 12rem;

    --font-montserrat: "Montserrat", sans-serif;
    --font-opensans: "Opensans", sans-serif;
    --font-notosans: "Notosans", sans-serif;
    --color-black: #252525;
    --color-dark: #353535;
    --color-gray: #F8F8F8;
    --color-blue: #3B5B8A;
    --color-beige: #FBF1DB;
    --color-red: #FF4500;
    --color-orange: #FF5900;
}

body {
    font-family: var(--font-montserrat);
    font-weight: 400;
    line-height: normal;
    color: var(--color-black);
    background: #fff;
}

html[lang="he-IL"] body {
    font-family: var(--font-opensans);
}

html[lang="he-IL"] [class*='title-'],
html[lang="he-IL"] .title,
html[lang="he-IL"] body .text h1,
html[lang="he-IL"] body .text h2,
html[lang="he-IL"] body .text h3,
html[lang="he-IL"] body .text h4,
html[lang="he-IL"] body .text h5,
html[lang="he-IL"] body .text h6 {
    font-family: var(--font-notosans);
}

@media screen and (max-width: 1024.9px) {
    :root {
        --section-padding: 8rem;
    }
}

@media screen and (max-width: 575.9px) {
    :root {
        --section-padding: 6rem;
    }
}
/* base END */



/* containers START */
section {
    width: 100%;
    padding: var(--section-padding) 0;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    scroll-margin-top: 10rem;
}

section.no-padding {
    padding: 0;
}

section:not(.no-padding) + .no-padding {
    margin-top: calc(var(--section-padding) * 2 / 3);
}

section.no-padding + section:not(.no-padding):not(.section-gray) {
    padding-top: calc(var(--section-padding) * 1.5);
}

section.no-padding + section.no-padding {
    margin-top: calc(var(--section-padding) * 1.5);
}

section:has(.bg) {
    position: relative;
    z-index: 1;
}

section.section-gray {
    background: var(--color-gray);
}

section.section-gray:not(.no-padding) + section.section-gray:not(.no-padding) {
    padding-top: 4rem;
}

section.section-gray + section.no-padding {
    margin-top: 0;
}

.wrapper-wide {
    --wrapper: 132rem;
}

.inner-wrapper {
    padding: 10rem 2rem;
    border-radius: 2rem;
    margin-inline: 2rem;
}

.inner-wrapper.wide {
    margin-inline: 0;
}

@media screen and (max-width: 1024.9px) {
    section:not(.no-padding):first-child {
        padding-top: calc(var(--section-padding) * 2);
    }
    
    .inner-wrapper {
        margin-inline: 0;
        border-radius: 0;
        padding-block: 8rem;
    }
}

@media screen and (max-width: 575.9px) {
    .inner-wrapper {
        padding-block: 6rem;
    }
}
/* containers END */



/* btn START */
.btn,
button,
[type="submit"] {
    --btn-color: var(--color-black);

    box-sizing: border-box;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: max-content;
    max-width: 100%;
    min-height: 5rem;
    padding: 1rem 2.8rem;

    background: var(--btn-color);
    border: 0.1rem solid var(--btn-color);
    border-radius: 0.7rem;
    font-family: var(--font-inter);
    font-weight: 600;
    font-size: 1.4rem;
    text-align: center;
    line-height: 1.2;
    color: #fff;
    
    overflow: hidden;
    cursor: pointer;
    position: relative;
    z-index: 1;
    transition: 0.3s ease-out;
}

.btn__inner {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.btn__icon {
    flex: 0 0 auto;
    width: 1.8rem;
}

.btn__icon path {
    fill: currentColor;
}

.btn_s {
    min-height: 3.8rem;
    padding: 1rem 2rem;
}

.btn_white {
    --btn-color: #fff;
    color: var(--color-black);
}

.btn_black-transparent {
    background: transparent;
    border-color: rgba(0, 0, 0, 0.2);
    color: var(--btn-color);
}

@media (hover: hover) and (pointer: fine) {
    .btn:hover,
    [type="submit"]:hover {
        background: transparent;
        color: var(--btn-color);
    }
    
    .btn_black-transparent:hover {
        background: var(--btn-color);
        border-color: var(--btn-color);
        color: #fff;
    }
}

@media (hover: none) {
    .btn:active,
    [type="submit"]:hover {
        background: transparent;
        color: var(--btn-color);
    }

    .btn_black-transparent:active {
        background: var(--btn-color);
        border-color: var(--btn-color);
        color: #fff;
    }
}

@media screen and (max-width: 575.9px) {
    .btn, button, [type="submit"] {
        width: 100%;
        min-height: 5.2rem;
    }
}
/* btn END */




/* langs START */
.langs__inner {
    position: relative;
    z-index: 2;
}

.langs__item {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-weight: 500;
    font-size: 1.4rem;
    text-transform: uppercase;
    transition: 0.3s;
}

.langs__item-arrow path {
    fill: currentColor;
}

.langs__list {
    padding-top: 1rem;
    position: absolute;
    top: 100%;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

.langs:hover .langs__list {
    opacity: 1;
    visibility: visible;
}

.langs__list-inner {
    min-width: 100%;
    padding-block: 1rem;
    background: #fff;
    border-radius: 0.5rem;
    color: var(--color-black);
    box-shadow: 0.5rem 0.7rem 1rem 0 rgb(0 0 0 / 25%);
    margin-left: -2rem;
}

.langs__list .langs__item {
    padding: 1rem 2rem;
    color: var(--color-black);
}

@media (hover: hover) and (pointer: fine) {
    .langs__list .langs__item:hover {
        color: var(--color-orange);
    }
}

@media (hover: none) {
    .langs__list .langs__item:active {
        color: var(--color-orange);
    }
}

@media screen and (max-width: 1024.9px) {
    .header__tools .langs {
        display: none;
    }
}

@media screen and (max-width: 575.9px) {
    .header__btns {
        display: none;
    }
}
/* langs END */



/* ticker START */
@keyframes ticker {
    from {
        translate: 0 0;
    }
    to {
        translate: -100% 0;
    }
}

.ticker {
    display: flex;
    gap: 10px;
    overflow: hidden;
}

.ticker.reverse .ticker__list,
.ticker + .ticker:nth-of-type(even) .ticker__list {
    animation-direction: reverse;
}


.ticker__list {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: var(--gap);
    width: max-content;
    will-change: transform;
    backface-visibility: hidden;
    animation-name: ticker;
    animation-duration: var(--duration);
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}
/* ticker END */



/* header START */
.header {
    padding-block: 1.2rem;
    color: #fff;
    border-bottom: 0.1rem solid currentColor;
    position: fixed;
    inset: 0;
    bottom: auto;
    z-index: 10;
    transition: 0.6s ease-out;
}

.header.alt {
    color: var(--color-black);
}

.header.scrolled {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(1rem);
}

.header.scrolled.alt {
    background: rgba(255, 255, 255, 0.4);
    box-shadow: 0 0.3rem 0.3rem rgba(0, 0, 0, 0.2);
}

.header.scrolled.alt.menu-opened {
    background: #fff;
}

.header:not(.alt).menu-opened {
    background: var(--color-black);
}

.header__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 3.8rem;
    gap: 2rem;
}

.header__logo {
    display: block;
    width: 9.2rem;
}

.header__tools {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 2.4rem;
}
/* header END */



/* header menu START */
.header__menu-toggler {
    display: none;
    flex: 0 0 auto;
}

.header__menu {
    display: flex;
    align-items: center;
    gap: 3rem;
    font-size: 1.4rem;
}

.header__menu li {
    position: relative;
}

.header__menu li.current-menu-item::before {
    content: "";
    display: block;
    aspect-ratio: 1;
    width: 0.6rem;
    height: 0.6rem;
    background: currentColor;
    border-radius: 100%;
    position: absolute;
    right: 100%;
    top: 50%;
    translate: -0.5rem -50%;
}

.header__menu a {
    position: relative;
    transition: 0.3s;
}

.header__menu a::after {
    content: "";
    display: block;
    width: 0;
    height: 0.1rem;
    background: currentColor;
    position: absolute;
    bottom: 0;
    left: 0;
    transition: 0.3s;
}

@media (hover: hover) and (pointer: fine) {
    .header__menu a:hover::after {
        width: 100%;
    }
}

@media (hover: none) {
    .header__menu a:hover::active {
        color: var(--color-orange);
    }
}


@media screen and (max-width: 1024.9px) {
    .header__menu-toggler {
        display: block;
    }

    .header__nav {
        display: none;
    }
}
/* header menu END */



/* footer START */
.footer {
    padding-block: var(--section-padding) 9.5rem;
    background: var(--color-black);
    color: #fff;
    margin-top: 2rem;
}

.footer__content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 6rem;
}

.footer__main {
    gap: 4rem;
}

.footer__info {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.footer__logo {
    flex: 0 0 auto;
    display: block;
    width: 5.5rem;
}

@media screen and (max-width: 575.9px) {
    .footer__main {
        align-items: center;
    }

    .footer__text br {
        display: none;
    }
}
/* footer END */



/* footer-menu START */
.footer-menu {
    display: flex;
    flex-wrap: wrap;
    gap: 8rem;
    font-size: 1.8rem;
    line-height: 1.3;
}

.footer-menu__list {
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
}

.footer-menu__title {
    font-weight: 700;
    color: #909090;
    margin-bottom: 0.5rem;
}

.copyright {
    padding-top: 7.5rem;
    font-size: 1.4rem;
    text-align: center;
}

@media screen and (max-width: 575.9px) {
    .footer-menu {
        width: 100%;
        gap: 6rem 2rem;
    }

    .footer-menu__list {
        min-width: calc(50% - 4rem);
    }
}
/* footer-menu END */



/* global START */
.logo > * {
    width: 100%;
}

.header-block {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.header-margin {
    margin-bottom: 6rem;
}
/* global END */



/* socials START */
.socials-block {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    line-height: 1.3;
}

.socials-block__label {
    font-weight: 700;
    font-size: 1.8rem;
}

.socials {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.socials__item {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1;
    width: 5.4rem;
    height: 5.4rem;
    border: 0.1rem solid #393939;
    border-radius: 100%;
    transition: 0.3s;
}

.socials__item > * {
    display: block;
    width: 2rem;
    transition: inherit;
}

@media (hover: hover) and (pointer: fine) {
    .socials__item:hover {
        scale: 1.1;
    }

    .socials__item:hover > * {
        transform: scale(1.1);
    }

    .socials__item:has(~ .socials__item:hover),
    .socials__item:hover ~ .socials__item {
        scale: 0.9;
        opacity: 0.5;
    }
}

@media (hover: none) {
    .socials__item:hover {
        scale: 1.1;
    }

    .socials__item:hover > * {
        transform: scale(1.1);
    }

    .socials__item:has(~ .socials__item:hover),
    .socials__item:hover ~ .socials__item {
        scale: 0.9;
        opacity: 0.5;
    }
}
/* socials END */



/* pagination START */
.pagination__total {
    display: none;
}

.pagination {
    padding-top: 6rem;
}

.pagination__list .page-numbers {
    border-radius: 100%;
}

.pagination__list .page-numbers {
    border: 0.1rem solid rgba(0, 0, 0, 0.2);
    font-weight: 400;
}

.pagination__list span.page-numbers:not(.dots) {
    background: var(--color-black);
    border-color: var(--color-black);
    font-weight: 400;
}

.pagination__list span.page-numbers.dots {
    background: transparent;
    border: 0.1rem solid rgba(0, 0, 0, 0.2);
    color: var(--color-black);
}

@media (hover: hover) and (pointer: fine) {
    .pagination__list a.page-numbers:hover {
        border-color: var(--color-orange);
        color: var(--color-orange);
    }
}

@media (hover: none) {
    .pagination__list a.page-numbers:active {
        border-color: var(--color-orange);
        color: var(--color-orange);
    }
}
/* pagination END */



/* scroll-down START */
@keyframes scroll-down {
    0% { transform: translateY(0); }
    25% { transform: translateY(-0.2rem); }
    75% { transform: translateY(0.2rem); }
    100% { transform: translateY(0); }
}

.scroll-down {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 600;
    font-size: 1.4rem;
    color: #353535;
    cursor: pointer;
}

.scroll-down svg {
    width: 1.8rem;
    animation: scroll-down 1s linear infinite;
}

.scroll-down svg > * {
    stroke: currentColor;
}

@media screen and (max-width: 767.9px) {
    .scroll-down {
        display: none;
    }
}
/* scroll-down END */



/* share START */
.sharing {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.sharing__title {
    font-weight: 600;
    font-size: 1.8rem;
}

.sharing__list {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.sharing__item {
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 5.3rem;
    border-radius: 100%;
    border: 0.1rem solid rgba(0, 0, 0, 0.2);
    transition: 0.3s ease-out;
}

.sharing__item svg {
    transition: inherit;
}

@media (hover: hover) and (pointer: fine) {
    .sharing__item:hover {
        border: 0.1rem solid rgba(0, 0, 0, 1);
    }

    .sharing__item:hover svg {
        transform: scale(1.2);
    }
}
/* share END */



/* parallax START */
.has-plx {
    position: relative;
}

.plx {
    --parallax-intensity: 9s;
    max-width: 100%;
    height: auto;
    pointer-events: none;
    position: absolute;
    top: var(--top);
    bottom: var(--bottom);
    left: var(--left);
    right: var(--right);
    z-index: 0;
}

.plx_static {
    position: relative;
}

.plx_m {
    --parallax-intensity: 6s;
}

.plx_s {
    --parallax-intensity: 3s;
}
/* parallax END */