/*
Theme Name: A2Z
Author: the A2Z
Author URI: https://a-2-z.co.il
Description: A2Z Theme for ELAD
Requires at least: 6.4
Tested up to: 6.9
Requires PHP: 7.0
Version: 0.1
*/

* {
    box-sizing: border-box;
    outline: none transparent;
    margin: 0;
    padding: 0;
    line-height: 100%;
}

*::-webkit-media-controls,
*::-webkit-media-controls-start-playback-button,
*::-webkit-media-controls-play-button,
*::-webkit-media-controls-panel,
*::-webkit-media-controls-container,
*::-webkit-media-controls-overlay-play-button,
*::-webkit-media-controls-enclosure {
    display: none !important;
    -webkit-appearance: none;
    opacity: 0 !important;
}

/*---------------  var styles ---------------*/

:root {
    --text-color: #241852;
    --hover-color: #822CC0;
    --Colors-White: #fff;
    --Colors-Green: #85CEBE;
    --radius: 20px;
}

.container {
    max-width: 1820px;
}

@media (max-width: 576px) {
    .container {
        max-width: 100%;
    }
}


@media (min-width: 1200px) {
    .container {
        max-width: 1190px;
    }
}

@media (min-width: 1366px) {
    .container {
        max-width: 1820px;
    }
}

h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 100%;
}

img {
    max-width: 100%;
}

.button {
    display: flex;
    padding: 20px 40px;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    background: linear-gradient(96deg, #822CC0 0%, #241852 79.03%);
    box-shadow: 0 0 10px 0 rgba(36, 24, 82, 0.30);
    color: var(--Colors-White, #FFF);
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    transition: padding-left 0.3s ease;
    width: fit-content;
}

.button.white {
    background: #FFF;
    color: var(--text-color);
}

.button.transparent {
    background: transparent;
    color: var(--text-color);
    box-shadow: unset;
    border: 1px solid var(--text-color);
    font-weight: 500;
    padding: 14px 20px;
}

.button::after {
    content: '';
    display: inline-block;
    width: 0;
    height: 15px;
    background-color: currentColor;
    -webkit-mask: url('assets/images/icons/arrow-left.svg') no-repeat center;
    mask: url('assets/images/icons/arrow-left.svg') no-repeat center;
    -webkit-mask-size: contain;
    mask-size: contain;
    opacity: 0;
    transition: width 0.3s ease, opacity 0.3s ease;
    flex-shrink: 0;
}

.button:hover::after {
    width: 16px;
    opacity: 1;
    margin-inline-start: 8px;
}

html,
body {
    height: 100.1%;
    margin: 0;
    color: var(--text-color);
    font-family: 'Ploni', sans-serif;
    font-size: 17px;
}

#wrapper {
    min-height: 100.1%;
    display: flex;
    flex-direction: column;
}

.main {
    flex: 1;
}

.filled {
    background: linear-gradient(90deg, #85CEBE 8.95%, #689CD3 98.95%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.font-50 {
    font-size: 50px;
}

.font-36 {
    font-size: 36px;
}

.font-24 {
    font-size: 24px;
}

.font-22 {
    font-size: 22px;
}

.lh-140 {
    line-height: 140%;
}

.p-60 {
    padding: 60px;
}

.mt-150 {
    margin-top: 150px;
}

.mt-60 {
    margin-top: 60px;
}

.gy-60 {
    --bs-gutter-y: 60px;
}



/* header */

header .menu-container {
    position: fixed;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    top: 20px;
    z-index: 10;
}

header .menu-row {
    padding: 17px 50px;
    align-items: center;
    justify-content: space-between;
    border-radius: var(--radius);
    background: rgba(231, 245, 242, 0.50);
    backdrop-filter: blur(30px);

}

header .main-menu {
    list-style: none;
    display: flex;
    flex-direction: row;
    gap: 58px;
    justify-content: center;
    align-items: center;
}

header .main-menu a {
    color: var(--text-color);
    text-align: center;
    font-size: 18px;
    font-weight: 500;
    line-height: 110%;
    text-decoration: none;
    transition: all .2s linear;
}

/* footer */

.footer-back {
    background: #689CD333 url('assets/images/footer-back.svg') no-repeat;
    height: 822px;
    width: 100%;
    background-size: 90%;
    background-position: 50% 20%;
    padding-top: 100px;
}

.footer-banner {
    display: flex;
    border-radius: 20px;
    background: linear-gradient(90deg, rgba(32, 21, 71, 0.90) 7.21%, rgba(65, 71, 133, 0.90) 34.21%, rgba(90, 108, 177, 0.90) 52.21%, rgba(72, 62, 136, 0.90) 97.21%);
    box-shadow: 0 20px 50px 0 rgba(32, 32, 32, 0.20);
    color: var(--Colors-White, #FFF);
}

.footer-banner h2 {
    font-size: 50px;
    font-weight: 700;

}

footer .address-container {
    list-style: none;
    font-size: 17px;
    line-height: 120%;
}

footer .address-container li {
    display: flex;
    position: relative;
    align-items: center;
    margin-bottom: 16px;
}

footer .address-container li:before {
    content: "";
    width: 17px;
    height: 17px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: 50%;
    margin-inline-end: 10px;
}

footer .address-container li.address:before {
    background-image: url('assets/images/icons/icon-home.svg');
}

footer .address-container li.email:before {
    background-image: url('assets/images/icons/icon-email.svg');
}

footer .address-container li.phone:before {
    background-image: url('assets/images/icons/icon-phone.svg');
}

footer .social-container {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-direction: row;
}

footer .social-container a,
header .social-link {
    color: var(--text-color);
    font-size: 26px;
    transition: all .2s linear;
}

footer .social-container a:hover,
header .social-link:hover {
    color: var(--hover-color);
}

footer .bottom-menu h3 {
    font-size: 18px;
    font-weight: 600;
    line-height: 110%;
    margin-bottom: 14px;
}

footer .bottom-menu ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding-inline-start: 0;
}

footer .bottom-menu li {
    font-size: 16px;
    line-height: 110%;
}

footer .bottom-menu li a,
.footer-bottom a,
.address-container a,
.read_more {
    color: var(--text-color);
    text-decoration: none;
    transition: all .2s linear;
}

footer .bottom-menu li a:hover,
.footer-bottom a:hover,
.address-container a:hover,
header .main-menu a:hover,
.read_more:hover {
    text-decoration: underline;
    text-underline-offset: 4px;
}

.footer-bottom {
    font-size: 16px;
}

/* main */

main {
    margin-top: 114px;
}

.top-container {
    position: relative;
    top: 20px;
}

.top-container.listing-page {
    top: 0;
}

.background-container {
    height: 500px;
    border-radius: 20px;
    background: url('assets/images/top-background.svg') center / cover no-repeat,
        linear-gradient(90deg, rgba(32, 21, 71, 0.90) 7.21%, rgba(65, 71, 133, 0.90) 34.21%, rgba(90, 108, 177, 0.90) 52.21%, rgba(72, 62, 136, 0.90) 97.21%);
    backdrop-filter: blur(10px);
}

.listing-page .background-container, .single-job .background-container{
    height: 350px;
    background: url('assets/images/top-background-listing.svg') center / contain no-repeat,
        linear-gradient(90deg, #85CEBE 0%, #689CD3 100%);
    backdrop-filter: blur(10px);
}

.single-job .background-container {
    background-position:bottom;
}

.filter-container {
    position: absolute;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    top: -20px;
}

.filter-container .design-row {
    justify-content: center;
    align-items: center;
}

.filter-container .design-row h1 {
    color: var(--Colors-Green);
    font-size: 66px;
    font-weight: 700;
}

.listing-page .filter-container .design-row h1, .single-job .filter-container .design-row h1 {
    color: #fff;
}

.single-job .filter-container .design-row h1 {
    font-size:50px;
    font-weight: 700;    
}

.single-job .filter-container .design-row h2 {
    color:var(--text-color);
    font-size:66px;
    font-weight: 700;     
}

.filter-container .design-row h1 span {
    color: var(--Colors-White);
    display: block;
}

.filter-row {
    display: flex;
    padding: 40px 60px;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    border-radius: 20px;
    background: var(--Colors-White, #FFF);
    box-shadow: 0 20px 50px 0 rgba(36, 24, 82, 0.20);
    margin: 0 auto;
}

.filter-row .rounded-or {
    display: flex;
    width: 60px;
    height: 60px;
    padding: 16px 18px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 30px;
    background: #F2F1F4;
    color: #0D1F45;
    text-align: center;
    font-size: 22px;
}

.filter-form-header {
    font-size: 28px;
    font-weight: 700;
}

.filter-form-container input {
    display: flex;
    height: 60px;
    padding: 18px 26px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    gap: 10px;
    flex: 1 0 0;
    border-radius: 50px;
    border: 1px solid rgba(13, 31, 69, 0.50);
    width: 100%;
    font-size: 22ox;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: none;
}

.safilter-form-container .select-wrapper::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Pro';
    font-weight: 900;
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: #0D1F45;
}

.filter-form-container input::-webkit-input-placeholder {
    color: rgba(36, 24, 82, 0.50);
    font-size: 22px;
}

.filter-form-container input::-moz-placeholder {
    color: rgba(36, 24, 82, 0.50);
    font-size: 22px;
}

.filter-form-container input:-ms-input-placeholder {
    color: rgba(36, 24, 82, 0.50);
    font-size: 22px;
}

.filter-form-container input::placeholder {
    color: rgba(36, 24, 82, 0.50);
    font-size: 22px;
}

.filter-form-container .select2-container .select2-selection--single {
    display: flex;
    height: 60px;
    padding: 18px 26px;
    align-items: center;
    border-radius: 50px;
    border: 1px solid rgba(13, 31, 69, 0.50);
    font-size: 22px;
    outline: none;
}

.filter-form-container .select2-selection--single .select2-selection__rendered {
    color: rgba(36, 24, 82, 1);
    line-height: normal;
    padding: 0;
}

.filter-form-container .select2-selection--single .select2-selection__placeholder {
    color: rgba(36, 24, 82, 0.50);
}

.filter-form-container .select2-selection--single .select2-selection__arrow {
    display: none;
}

.filter-form-container .select2-container .select2-selection--single::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Pro';
    font-weight: 400;
    color: var(--text-color);
    margin-right: auto;
    pointer-events: none;
    transition: transform 0.2s ease;
    font-size: 14px;
}

.filter-form-container .select2-container--open .select2-selection--single::after {
    content: '\f077';
}

.filter-form-container+.select2-container .select2-dropdown {
    border: 1px solid rgba(13, 31, 69, 0.50);
    border-radius: 16px;
    overflow: hidden;
}

.select2-results__option {
    font-size: 18px;
    padding: 12px 26px;
    color: rgba(36, 24, 82, 1);
}

.select2-results__option--highlighted {
    background-color: rgba(36, 24, 82, 0.08) !important;
    color: rgba(36, 24, 82, 1) !important;
}

.select2-results__option--selected {
    background-color: rgba(36, 24, 82, 0.15) !important;
}

.filter-form-container .select2-container .select2-selection--single {
    border-bottom-left-radius: 50px !important;
    border-bottom-right-radius: 50px !important;
}

.filter-form-container .select2-dropdown {
    padding: 0 26px;
    border: unset;
    background-color: transparent;
}

.filter-form-container .select2-results {
    border: 1px solid rgba(13, 31, 69, 0.50);
    border-top: unset;
}

.filter-form-container .select2-results>.select2-results__options {
    background: var(--Colors-White, #FFF);
}

.block-container.block1 {
    margin-top: 340px;
}

.block-container .filled-border {
    border-right: 20px solid transparent;
    border-image: linear-gradient(to bottom, #85CEBE, #689CD3) 1;
}

.block-container h2 {
    font-size: 160px;
    font-weight: 700;
    line-height: 90%;
}

.squares-container .square-block {
    position: relative;
    display: flex;
    flex-direction: column;
    aspect-ratio: 1 / 1;
    justify-content: space-between;
    border-radius: 20px;
    border: 1px solid #689CD3;
    background: rgba(255, 255, 255, 0.90);
    backdrop-filter: blur(10px);
    background-repeat: no-repeat;
    background-position: bottom 60px left;
}

.block-container .button.transparent {
    padding: 14px 40px;
}

.home .banner-container {
    display: flex;
    padding: 60px;
    flex-direction: column;
    align-items: center;
    gap: 50px;
    border-radius: var(--radius);
    background: url('assets/images/banner-background.svg') center / cover no-repeat, var(--Colors-White, #FFF);
    box-shadow: 0 20px 50px 0 rgba(36, 24, 82, 0.20);
}

.numbers-container .number {
    font-family: 'Montserrat', sans-serif;
    font-size: 110px;
    font-weight: 400;
    line-height: 100%;
}

.about-container .row:first-child {
    flex-direction: row-reverse;
}

.about-container .row-description {
    padding: 0 80px;
}

.peoples-container {
    background: url('assets/images/people-background.svg') left bottom no-repeat;
    padding-bottom: 50px;
}

.peoples-swiper .people-block {
    display: flex;
    padding: 40px;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
    border-radius: 20px;
    background: #FFF;
    box-shadow: 0 20px 50px 0 rgba(36, 24, 82, 0.20);
    flex-direction: row;
    width: 700px;
}

.peoples-swiper .people-photo-container {
    width: 300px;
    min-width: 300px;
    height: 320px;
}

.peoples-swiper .people-photo-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.peoples-swiper .people-info-container {
    justify-content: space-between;
    min-height: 320px;
    /*  = people-photo-container height */
}

.peoples-swiper .people-position {
    color: #5F538E;
    font-family: 'Montserrat', sans-serif;
    font-size: 26px;
    font-weight: 300;
    line-height: 140%;
    height: 74px;
}

.peoples-swiper .people-description {
    overflow: hidden;
    line-height: 140%;
    transition: all .3s linear;
}

.peoples-swiper .read_more {
    font-size: 18px;
    font-weight: 700;
    margin-top: 39px;
}

.peoples-container .icon-button,
.squares-container .icon-button {
    width: 60px;
    height: 60px;
    aspect-ratio: 1/1;
    border: 1px solid var(--text-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #fff;
}

.peoples-container .icon-button:hover,
.squares-container .icon-button:hover {
    background: rgba(36, 24, 82, 0.06);
}

.photos-container.grid,
.categories-container.grid {
    margin: 0 auto;
}

.photos-container.grid .grid-item {
    width: 424px;
    margin-bottom: 40px;
}

.photos-container.grid img {
    width: 100%;
    border-radius: var(--radius);
}

.home .category-item {
    display: flex;
    width: 527px;
    text-decoration: none;
    border-radius: var(--radius);
    padding: 60px;
    justify-content: start;
    align-items: end;
    margin-bottom: 40px;
    background-size: cover;
    position: relative;
    transition: all.3s linear;
}

.home .category-item.imaged::after {
    content: '';
    position: absolute;
    inset: 0;
    background-color: #0C42A185;
    border-radius: var(--radius);
    transition: all.3s linear;
}

.home .category-item.colored::after {
    content: '';
    position: absolute;
    inset: 0;
    background-color: transparent;
    border-radius: var(--radius);
    transition: all.3s linear;
}

.home .category-item.imaged:hover:after {
    background-color: transparent;
}

.home .category-item.colored:hover:after {
    background-color: #0C42A185;
}

.home .category-item.height-1 {
    height: 130px;
}

.home .category-item.height-2 {
    height: 290px;
}

.home .category-item.height-3 {
    height: 375px;
}

.home .category-item.height-4 {
    height: 460px;
}

.home .category-item .category-name {
    color: #FFF;
    font-size: 36px;
    font-weight: 600;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
    transition: all.3s linear;
}

.home .category-item.imaged:hover .category-name {
    text-shadow: 0 10px 50px rgba(36, 24, 82, 0.80);
}

/* listinds */
.cards-container {
    margin-top: 130px;
}

.cards-container .jobs-count {
    font-size: 24px;
    font-weight: 400;
    line-height: 140%;
}

.job-card {
    display: flex;
    padding: 40px 60px;
    align-self: stretch;
    border-radius: 20px;
    border: 1px solid rgba(36, 24, 82, 0.20);
    background: #FFF;
    transition: all .2s linear;
    margin-bottom:24px;
}

.job-card:hover {
    box-shadow: 0 20px 50px 0 rgba(36, 24, 82, 0.20);
}