/* CSS FILE */
@import "assets/font/iranyekanx/fontiran.css";

:root {
    --color-primray: #49A8FA;

    --color-white: #fefefe;
    --color-black: #161616;

    --color-grey-0: #F4F4F4;
    --color-grey-1: #CECECE;
    --color-grey-2: #ABABAB;
    --color-grey-3: #8C8C8C;
    --color-grey-4: #686868;
    --color-grey-5: #363636;

    --color-blue-shade-0: #D2E9FD;
    --color-blue-shade-1: #B3DAFC;
    --color-blue-shade-2: #95CCFC;
    --color-blue-shade-3: #75BDFB;
    --color-blue-shade-4: #49A8FA;


    --color-gold: #FFF735;
}

::placeholder {
    color: var(--color-grey-2, #ABABAB);
}


* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

a, p, h1, h2, h3, h4, h5, h6, ul, li {
    font-family: IRANYekanX;
}

a {
    color: var(--color-black, #161616);
    text-decoration: none;
}

a:visited {
    color: var(--color-black, #161616);
}

body {
    background-color: var(--color-white, #fefefe);
}

#showcase-wrap {
    width: 100%;
    height: 100%;
    margin-top: 15%;

    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
}

.showcase {
    background-color: #f4f4f4;
    padding: 30px 50px;
    border-radius: 15px;
}


/* Header Styles */
#header {
    width: 100%;
    height: auto;
    margin-top: 35px;
    padding: 0px 15px;

    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
}

.header-wrap {
    background-color: var(--color-white, #fefefe);
    width: 1140px;
    /* max-height: 70px; check for responsivibility */
    padding: 10px 20px;
    border-radius: 6px;

    display: flex;
    flex-flow: row-reverse wrap;
    justify-content: space-between;
    align-items: center;

    box-shadow: 0px 4px 9px 0px rgba(0, 0, 0, 0.04), 0px 16px 16px 0px rgba(0, 0, 0, 0.03), 0px 35px 21px 0px rgba(0, 0, 0, 0.02), 0px 63px 25px 0px rgba(0, 0, 0, 0.01), 0px 98px 27px 0px rgba(0, 0, 0, 0.00);
}

.header-wrap {
    /* background: linear-gradient(285deg, #BBDFFF 0%, #49a8fa 100%), #49A8FA; */
    background: linear-gradient(285deg, #e9e9e9 0%, #49a8fa 100%), #49A8FA;
    border: 1px solid #dbdbdb;
}
.navbar a li {
    /* color: var(--color-white, #fefefe) !important; */
    color: #2D2D2D !important;
}

.header-right {
    display: flex;
    flex-flow: row-reverse wrap;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
}

.burger-nav-btn-wrap {
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;

    cursor: pointer;
}

.burger-nav-btn {
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
    gap: 6px;
}

.burger-nav-btn i {
    background: #292D32;
    width: 25px;
    height: 2px;
    border-radius: 5px;

    transition: all 0.3s;
}

.burger-nav-btn-wrap .active i:nth-child(1) {
    transform: translate(0px, 8px) rotate(45deg);
}

.burger-nav-btn-wrap .active i:nth-child(2) {
    opacity: 0;
}

.burger-nav-btn-wrap .active i:nth-child(3) {
    transform: translate(0px, -8px) rotate(-45deg);
}

.mobile-view-flex {
    display: none;
}

.header-right .logo {
    width: 41px;
}

.header-right .logo svg {
    width: 100%;
    vertical-align: middle;
}


.header-right .navbar {

}

.header-right .navbar ul {
    list-style: none;

    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.header-right .navbar ul a li {
    color: #2D2D2D;
    direction: rtl;
    text-align: right;
    font-family: IRANYekanX;
    /*font-size: 14px;*/
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;

    transition: all 0.3s;
}

.header-right .navbar ul a li:hover {
    color: var(--color-primray);
}


.header-left {
    display: flex;
    flex-flow: row-reverse wrap;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
}

.header-login-karjo {
    background: linear-gradient(95deg, #0960E2 0%, #8482F2 100%), #49A8FA;
    height: 40px;
    padding: 10px 20px;

    display: inline-flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    gap: 10px;

    border-radius: 6px;
}

.header-login-karjo a {
    color: #F6F6F6;
    direction: rtl;
    text-align: right;
    font-family: IRANYekanX;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}


.header-login-karfarma a {
    color: #000;
    direction: rtl;
    text-align: right;
    font-family: IRANYekanX;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

#mobile-nav-wrap {
    background-color: var(--color-white, #fefefe);
    width: 85%;
    height: 100%;
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;

    border-radius: 6px;

    /* display: flex; */
    flex-flow: column nowrap;
    justify-content: flex-start;
    align-items: flex-end;

    animation: slide-from-right 0.3s;
}

.mobile-nav-wrap {
    display: none;
}

.mobile-header-active {
    display: flex;
}

#mobile-nav-wrap .mobile-nav-header {
    width: 100%;
    padding: 15px 20px;
    display: flex;
    flex-flow: row-reverse nowrap;
    justify-content: space-between;
    align-items: center;
}

#mobile-nav-wrap .mobile-nav-header .logo {
    display: flex;
    flex-flow: row-reverse nowrap;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

#mobile-nav-wrap .mobile-nav-header .logo p {
    color: var(--color-primray, #49A8FA);
    direction: rtl;
    text-align: right;
    font-family: IRANYekanX;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

#mobile-nav-wrap .mobile-nav-header .close-btn {
    cursor: pointer;
}

#mobile-nav-wrap .mobile-nav-header .close-btn svg {
    vertical-align: middle;
}

#mobile-nav-wrap .mobile-nav-items {
    width: 100%;

    display: flex;
    flex-flow: column nowrap;
    justify-content: flex-start;
    align-items: flex-start;
}

#mobile-nav-wrap .mobile-nav-items .mobile-nav-item {
    width: 100%;
}

#mobile-nav-wrap .mobile-nav-items .mobile-nav-item a {
    background-color: var(--color-white, #fefefe);
    width: 100%;
    padding: 15px 30px;

    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: center;

    transition: all 0.3s;
}

#mobile-nav-wrap .mobile-nav-items .mobile-nav-item a {
    color: #2D2D2D;
    direction: rtl;
    text-align: right;
    font-family: IRANYekanX;
    font-size: 16px;
    font-style: normal;
    font-weight: normal;
    line-height: normal;
}

#mobile-nav-wrap .mobile-nav-items .mobile-nav-item a.active {
    color: var(--color-primray, #49A8FA);
}

.company-login {
    align-self: flex-end;
}

/* End Header Styles */

/* Hero BG Styles */
#hero-bg {
    position: absolute;
    width: 100%;
    height: 1055px;
    background-color: var(--color-grey-0);

    top: 0;
    left: 0;
    right: 0;

    display: flex;
    flex-flow: column nowrap;
    align-items: center;

    z-index: -1;
}

.hero-bg-wrap {
    max-width: 1628px;
    width: 100%;
    height: 814px;

    /*background: url(assets/imgs/bg-1-v2.png) ;*/
    background: url(assets/imgs/bg-1-v3.png);
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;

    z-index: 10;
}

.hero-bg-dots-1 {
    position: absolute;
    left: 108px;
    bottom: 105px;

    z-index: 5;
}

.hero-bg-dots-2 {
    position: absolute;
    right: 137px;
    bottom: 120px;

    z-index: 5;
}

/* END Hero BG Style */

/* Hero Styles */
#hero {
    width: 100%;
    height: auto;
    margin-top: 110px;

    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
}

.hero-wrap {
    max-width: 1140px;
    width: 100%;
    height: auto;

    padding: 50px 0px;

    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
}

.hero-text {
    max-width: 700px;
    width: 100%;
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
}

.hero-text h1 {
    color: #434141;
    direction: rtl;
    text-align: center;
    font-family: IRANYekanX;
    /*    font-size: 64px;*/
    font-size: 50px;
    font-style: normal;
    font-weight: bold;
    line-height: normal;
}

.hero-text h1 span {
    color: var(--color-primray, #49A8FA);
    direction: rtl;
    text-align: center;
    font-family: IRANYekanX;
    /*    font-size: 64px;*/
    font-size: 50px;
    font-style: normal;
    font-weight: 950;
    line-height: normal;
}

.hero-text p {
    margin-top: 27px;

    color: #7F7F7F;
    direction: rtl;
    text-align: center;
    font-family: IRANYekanX;
    font-size: 29.957px;
    font-style: normal;
    font-weight: 200;
    line-height: normal;
}

.search-bar {
    background-color: var(--color-white, #fefefe);
    max-width: 1140px;
    width: 100%;
    height: 80px;
    /*margin-top: 75px;*/
    margin-top: 140px;

    padding: 5px 30px;

    display: flex;
    flex-flow: row-reverse wrap;
    justify-content: center;
    align-items: center;
    gap: 30px;

    box-shadow: 0px 7px 15px 0px rgba(0, 0, 0, 0.10), 0px 27px 27px 0px rgba(0, 0, 0, 0.09), 0px 60px 36px 0px rgba(0, 0, 0, 0.05), 0px 107px 43px 0px rgba(0, 0, 0, 0.01), 0px 167px 47px 0px rgba(0, 0, 0, 0.00);
    border-radius: 6px;
}

.job-title-wrap {
    /* width: 345px; */
    height: 100%;

    display: flex;
    flex-flow: row-reverse nowrap;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
}

.job-cat-wrap {
    /* width: 272px; */
    height: 100%;

    display: flex;
    flex-flow: row-reverse nowrap;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
}

.job-city-wrap {
    /* width: 216px; */
    height: 100%;

    display: flex;
    flex-flow: row-reverse nowrap;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
}

.search-bar-input-icon {
    width: 24px;
}

.search-bar-input-icon svg {
    width: 100%;
    vertical-align: middle;
}

.search-bar-input {
    width: 100%;
    border: none;
    outline: none;
    background: none;

    direction: rtl;
    text-align: right;
     color: var(--color-black, #161616);
    /*color: var(--color-primray, #49A8FA);*/
    font-family: IRANYekanX;
    font-size: 18px;
    font-style: normal;
    font-weight: normal;
    line-height: normal;
}
.search-bar-input::placeholder {
    /*color: var(--color-primray, #49A8FA);*/
}

.search-bar-spacer {
    background: var(--color-grey-1, #CECECE);
    width: 2px;
    height: 39px;
    flex-shrink: 0;
    flex-grow: 0;

    border-radius: 6px;
}

.search-bar-btn {
    background: linear-gradient(95deg, #0960E2 0%, #8482F2 100%), #49A8FA;
    padding: 12px 27px;

    display: inline-flex;
    justify-content: center;
    align-items: center;

    border-radius: 6px;
}

.search-bar-btn a {
    color: #F6F6F6;
    direction: rtl;
    text-align: right;
    font-family: IRANYekanX;
    font-size: 16px;
    font-style: normal;
    font-weight: normal;
    line-height: normal;
}

/* END Hero Styles */

/* Company Section Styles */
#comp-sec {
    background-color: var(--color-white, #fefefe);
    max-width: 1140px;
    width: 100%;
    padding: 45px 0px;

    margin: 0px auto;
/*    margin-top: 150px;*/
    margin-top: 245px;
    margin-bottom: 50px;

    display: flex;
    flex-flow: column nowrap;
    justify-content: flex-start;
    align-items: center;

    border-radius: 6px;
    box-shadow: 0px 6px 12px 0px rgba(0, 0, 0, 0.10), 0px 22px 22px 0px rgba(0, 0, 0, 0.09), 0px 50px 30px 0px rgba(0, 0, 0, 0.05), 0px 88px 35px 0px rgba(0, 0, 0, 0.01), 0px 138px 39px 0px rgba(0, 0, 0, 0.00);
}

.comp-sec-title {
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.comp-sec-title h2 {
    color: var(--color-black, #161616);
    direction: rtl;
    text-align: center;
    font-family: IRANYekanX;
    font-size: 28px;
    font-style: normal;
    font-weight: normal;
    line-height: normal;

}

.comp-sec-title h2 span {
    color: var(--color-primray, #49A8FA);
    font-family: IRANYekanX;
    font-size: 28px;
    font-style: normal;
    font-weight: normal;
    line-height: normal;
    direction: rtl;
}

.comp-sec-title p {
    color: var(--color-grey-4, #686868);
    text-align: center;
    font-family: IRANYekanX;
    font-size: 14px;
    font-style: normal;
    font-weight: normal;
    line-height: normal;
}

.comp-sec-title p span {
    color: var(--color-blue-shade-4, #49A8FA);
    font-family: IRANYekanX;
    font-size: 14px;
    font-style: normal;
    font-weight: normal;
    line-height: normal;
}

.comp-sec-items-car-wrap {
    width: 100%;
    margin: 40px 0px;
    overflow: hidden;

    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
}

.com-sec-items-car-arrow {
    display: none;
}

.com-sec-items {
    flex-grow: 1;

    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
}

.com-sec-item {
    background-color: var(--color-white, #fefefe);
    width: 140px;
    padding: 15px 10px;

    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
    gap: 5px;

    border-radius: 12px;
    transition: all 0.3s;
}

.com-sec-item:hover {
    /* box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.10), 0px 8px 8px 0px rgba(0, 0, 0, 0.09), 0px 17px 10px 0px rgba(0, 0, 0, 0.05), 0px 30px 12px 0px rgba(0, 0, 0, 0.01), 0px 47px 13px 0px rgba(0, 0, 0, 0.00); */
}

.com-sec-item .com-sec-item-logo {
    width: 100%;
    height: 90px;

    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
}

.com-sec-item .com-sec-item-logo svg {
    width: 100%;
    vertical-align: middle;
}

.com-sec-item .com-sec-item-title a {
    color: var(--color-black, #161616);
    direction: rtl;
    text-align: center;
    font-family: IRANYekanX;
    font-size: 18px;
    font-style: normal;
    font-weight: normal;
    line-height: normal;
}

.com-sec-item .com-sec-item-counter {
    direction: rtl;
}

.com-sec-item .com-sec-item-counter a {
    color: var(--color-grey-4, #686868);
    direction: rtl;
    text-align: center;
    font-family: IRANYekanX;
    font-size: 14px;
    font-style: normal;
    font-weight: 200;
    line-height: normal;
}

/* END Company Section Styles */

/* Most Viewd Table Style */
#most-viewed {
    background-color: var(--color-white, #fefefe);
    max-width: 1140px;
    width: 100%;
    padding: 50px 0px;
    margin: 70px auto;

    display: flex;
    flex-flow: column nowrap;
    justify-content: flex-start;
    align-items: center;
}

.most-viewed-title {
    display: flex;
    flex-flow: column nowrap;
    justify-content: flex-start;
    align-items: center;
    gap: 15px;
}

.most-viewed-title h2 {
    color: var(--color-black, #161616);
    direction: rtl;
    text-align: center;
    font-family: IRANYekanX;
    font-size: 28px;
    font-style: normal;
    font-weight: normal;
    line-height: normal;
}

.most-viewed-title p {
    color: var(--color-grey-4, #686868);
    direction: rtl;
    text-align: center;
    font-family: IRANYekanX;
    font-size: 14px;
    font-style: normal;
    font-weight: normal;
    line-height: normal;
}

.most-viewed-title p span {
    color: var(--color-primray, #49A8FA);
}

.most-viewed-table {
    width: 100%;
    margin-top: 50px;

    display: flex;
    flex-flow: column nowrap;
    justify-content: flex-start;
    align-items: center;
}

.most-viewed-table-head {
    width: 100%;
    margin-bottom: 30px;

    display: flex;
    flex-flow: row-reverse wrap;
    justify-content: space-between;
    align-items: center;
}

.most-viewed-table-head .table-head-item {
    width: 172px;
}

.most-viewed-table-head .table-head-item p {
    color: var(--color-black, #161616);
    direction: rtl;
    text-align: center;
    font-family: IRANYekanX;
    font-size: 18px;
    font-style: normal;
    font-weight: normal;
    line-height: normal;
}

.most-viewed-table-spacer {
    background: var(--color-grey-1, #CECECE);
    width: 100%;
    height: 3px;
    margin-bottom: 30px;

    border-radius: 6px;
}

.most-viewed-table-body {
    width: 100%;

    display: flex;
    flex-flow: row-reverse wrap;
    justify-content: space-between;
    align-items: flex-start;
}

.most-viewed-table-body .table-body-col {
    width: 172px;

    display: flex;
    flex-flow: column nowrap;
    justify-content: flex-start;
    align-items: center;
}

.most-viewed-table-body .table-body-col .table-body-col-item {
    width: 100%;

    display: flex;
    flex-flow: row-reverse nowrap;
    justify-content: space-between;
    align-items: center;

    padding: 10px;
}

.most-viewed-table-body .table-body-col .table-body-col-item p {
    color: var(--color-black, #161616);

    direction: rtl;
    text-align: right;
    font-family: IRANYekanX;
    font-size: 16px;
    font-style: normal;
    font-weight: normal;
    line-height: normal;

    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.most-viewed-table-body .table-body-col .table-body-col-item span {
    color: var(--color-black, #161616);
    direction: rtl;
    text-align: right;
    font-family: IRANYekanX;
    font-size: 16px;
    font-style: normal;
    font-weight: normal;
    line-height: normal;
}

.most-viewed-mobile {
    width: 100%;

    display: none;
    flex-flow: column nowrap;
    justify-content: flex-start;
    align-items: center;
}

.most-viewed-mobile .most-viewed-sec {
    width: 100%;
    padding: 10px 15px;

    display: flex;
    flex-flow: column nowrap;
    justify-content: flex-start;
    align-items: center;
}

.most-viewed-mobile .most-viewed-sec .most-viewed-head {
    background-color: var(--color-white, #fefefe);
    max-width: 420px;
    width: 100%;
    padding: 20px 15px;

    display: flex;
    flex-flow: row-reverse nowrap;
    justify-content: space-between;
    align-items: center;

    border-radius: 12px;
    box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.06), 0px 3px 3px 0px rgba(0, 0, 0, 0.05), 0px 8px 5px 0px rgba(0, 0, 0, 0.03), 0px 13px 5px 0px rgba(0, 0, 0, 0.01), 0px 21px 6px 0px rgba(0, 0, 0, 0.00);
}

.most-viewed-mobile .most-viewed-sec .table-body-col {
    max-width: 420px;
    width: 100%;

    display: none;
    flex-flow: column nowrap;
    justify-content: flex-start;
    align-items: center;
}

.most-viewed-mobile .most-viewed-sec .table-body-col .table-body-col-item {
    width: 100%;

    display: flex;
    flex-flow: row-reverse nowrap;
    justify-content: space-between;
    align-items: center;

    padding: 10px;
}

.most-viewed-mobile .most-viewed-sec .table-body-col .table-body-col-item p {
    color: var(--color-black, #161616);

    direction: rtl;
    text-align: right;
    font-family: IRANYekanX;
    font-size: 16px;
    font-style: normal;
    font-weight: normal;
    line-height: normal;

    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.most-viewed-mobile .most-viewed-sec .table-body-col .table-body-col-item span {
    color: var(--color-black, #161616);
    direction: rtl;
    text-align: right;
    font-family: IRANYekanX;
    font-size: 16px;
    font-style: normal;
    font-weight: normal;
    line-height: normal;
}

.most-viewed-sec .active {
    display: flex !important;
}

/* END Most Viewed Section Style */

/* Latest Job Ads Section Style */
#latest-job-ads {
    background-color: var(--color-white, #fefefe);
    max-width: 1140px;
    width: 100%;
    margin: 0px auto;
    margin-top: 50px;
    padding: 40px 0px;

    display: flex;
    flex-flow: column nowrap;
    justify-content: flex-start;
    align-items: center;
}

.latest-job-ads-title {
    display: flex;
    flex-flow: column nowrap;
    justify-content: flex-start;
    align-items: center;
    gap: 15px;
}

.latest-job-ads-title h2 {
    color: var(--color-black, #161616);
    direction: rtl;
    text-align: center;
    font-family: IRANYekanX;
    font-size: 28px;
    font-style: normal;
    font-weight: normal;
    line-height: normal;
}

.latest-job-ads-title p {
    color: var(--color-grey-4, #686868);
    direction: rtl;
    text-align: center;
    font-family: IRANYekanX;
    font-size: 14px;
    font-style: normal;
    font-weight: normal;
    line-height: normal;
}

.latest-job-ads-title p span {
    color: var(--color-blue-shade-4, #49A8FA);
}

.job-ad-cards {
    width: 100%;
    margin-top: 40px;
    padding: 0px 12px;

    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

.job-ad-card {
    background-color: var(--color-white, #fefefe);
    width: 363px;
    /* height: 130px; */
    padding: 12px;

    display: flex;
    flex-flow: row-reverse nowrap;
    justify-content: space-between;
    align-items: center;
    gap: 10px;

    flex-shrink: 0;

    border-radius: 6px;
    border: 1px solid var(--color-grey-1, #CECECE);
}

.ad-card-company {
    width: 80px;

    display: flex;
    flex-flow: column nowrap;
    justify-content: flex-start;
    align-items: center;
    gap: 8px;

    align-self: stretch;
}

.ad-card-company .ad-card-company-logo {
    width: 100%;
}

.ad-card-company .ad-card-company-logo svg {
    width: 100%;
    vertical-align: middle;
}

.ad-card-company-info {
    width: 100%;

    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
    gap: 4px;
}

.ad-card-company-info a.com-title {
    color: var(--color-grey-5, #363636);
    direction: rtl;
    text-align: center;
    font-family: IRANYekanX;
    font-size: 11px;
    font-style: normal;
    font-weight: normal;
    line-height: normal;

    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
}

.ad-card-company-info a.com-cat {
    width: 100%;
    color: var(--color-grey-3, #8c8c8c);
    direction: rtl;
    text-align: center;
    font-family: IRANYekanX;
    font-size: 9px;
    font-style: normal;
    font-weight: normal;
    line-height: normal;

    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ad-card-company-stars {
    width: 100%;

    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    gap: 1px;
}

.ad-card-company-stars svg {
    width: 11px;
    color: var(--color-white, #fefefe);
}

.company-1-star svg:nth-child(1) {
    color: #FFF845;
}

.company-2-star svg:nth-child(1), .company-2-star svg:nth-child(2) {
    color: #FFF845;
}

.company-3-star svg:nth-child(1), .company-3-star svg:nth-child(2), .company-3-star svg:nth-child(3) {
    color: #FFF845;
}

.company-4-star svg:nth-child(1), .company-4-star svg:nth-child(2), .company-4-star svg:nth-child(3), .company-4-star svg:nth-child(4) {
    color: #FFF845;
}

.company-5-star svg:nth-child(1), .company-5-star svg:nth-child(2), .company-5-star svg:nth-child(3), .company-5-star svg:nth-child(4), .company-5-star svg:nth-child(5) {
    color: #FFF845;
}

.card-spacer {
    background: var(--color-grey-0, #F4F4F4);
    width: 1px;
    height: 85px;

    flex-shrink: 0;
    border-radius: 6px;
}

.ad-card-info {
    flex-grow: 1;
    align-self: stretch;

    display: flex;
    flex-flow: column nowrap;
    justify-content: space-between;
    align-items: center;
}

.ad-card-info-head {
    width: 100%;

    /*display: flex;*/
    flex-flow: row-reverse nowrap;
    justify-content: space-between;
    align-items: flex-start;
}

.ad-card-info-title {
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
}

.ad-card-title {
    width: 100%;
    direction: rtl;
}

.ad-card-title a {
    width: 150px;
    color: var(--color-black, #161616);
    direction: rtl;
    text-align: right;
    font-family: IRANYekanX;
    font-size: 12px;
    font-style: normal;
    font-weight: normal;
    line-height: normal;

    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.add-card-cat {
    width: 100%;
    direction: rtl;
}

.add-card-cat a {
    width: 140px;
    color: var(--color-grey-3, #8c8c8c);
    direction: rtl;
    text-align: right;
    font-family: IRANYekanX;
    font-size: 9px;
    font-style: normal;
    font-weight: normal;
    line-height: normal;

    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ad-card-info-metadata {
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    /*align-items: center;*/

    align-items: baseline;
    width: -webkit-fill-available;
}

.ad-card-loc {
    display: flex;
    flex-flow: row-reverse nowrap;
    justify-content: center;
    align-items: center;
}

.ad-card-loc span {
    width: 8px;
}

.ad-card-loc span svg {
    width: 100%;
    vertical-align: middle;
}

.ad-card-loc p {
    color: var(--color-grey-3, #8C8C8C);
    direction: rtl;
    text-align: right;
    font-family: IRANYekanX;
    font-size: 9px;
    font-style: normal;
    font-weight: normal;
    line-height: normal;
}

.ad-card-date {
    display: flex;
    flex-flow: row-reverse nowrap;
    justify-content: center;
    align-items: center;
}

.ad-card-date span {
    width: 8px;
}

.ad-card-date span svg {
    width: 100%;
    vertical-align: middle;
}

.ad-card-date p {
    color: var(--color-grey-3, #8C8C8C);
    direction: rtl;
    text-align: right;
    font-family: IRANYekanX;
    font-size: 9px;
    font-style: normal;
    font-weight: normal;
    line-height: normal;
}

.ad-card-info-body {
    width: 100%;

    display: flex;
    flex-flow: row-reverse nowrap;
    justify-content: space-between;
    /*align-items: center;*/
    align-items: end;
}

.ad-card-info-data {
    flex-grow: 1;

    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: flex-end;
    gap: 1px;
}

.ad-card-workflow {
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: flex-end;
}

.ad-card-workflow p.title {
    color: var(--color-grey-3, #8C8C8C);
    direction: rtl;
    text-align: right;
    font-family: IRANYekanX;
    font-size: 8px;
    font-style: normal;
    font-weight: normal;
    line-height: normal;
}

.ad-card-workflow p {
    color: var(--color-black, #161616);
    direction: rtl;
    text-align: right;
    font-family: IRANYekanX;
    font-size: 11px;
    font-style: normal;
    font-weight: normal;
    line-height: normal;
}

.ad-card-salary {
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: flex-end;
}

.ad-card-salary p.title {
    color: var(--color-grey-3, #8C8C8C);
    direction: rtl;
    text-align: right;
    font-family: IRANYekanX;
    font-size: 8px;
    font-style: normal;
    font-weight: normal;
    line-height: normal;
}

.ad-card-salary p {
    color: var(--color-black, #161616);
    direction: rtl;
    text-align: right;
    font-family: IRANYekanX;
    font-size: 11px;
    font-style: normal;
    font-weight: normal;
    line-height: normal;
}

.ad-card-info-btn {
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
    gap: 2px;
}

.ad-card-info-btn .ad-card-btn {
    background: linear-gradient(95deg, #0960E2 0%, #8482F2 100%), #49A8FA;


    border-radius: 6px;
}

.ad-card-info-btn .ad-card-btn a {
    display: block;
    margin: 5px 12px;

    color: var(--color-white, #fefefe);
    direction: rtl;
    text-align: right;
    font-family: IRANYekanX;
    font-size: 9px;
    font-style: normal;
    font-weight: normal;
    line-height: normal;
}

.ad-card-info-btn .ad-card-btn-2 a {
    display: block;
    margin: 3px 10px;

    color: var(--color-grey-3, #8C8C8C);
    direction: rtl;
    text-align: right;
    font-family: IRANYekanX;
    font-size: 7.284px;
    font-style: normal;
    font-weight: normal;
    line-height: normal;
}

/* END Latest Job Ad Cards Style */

/* CV Banner Style */
#cv-banner {
    max-width: 1140px;
    width: 100%;
    margin: 0px auto;
    margin-top: 70px;
}

#cv-banner a img {
    max-width: 1140px;
    vertical-align: middle;
}

/* END CV Banner Style */


/* achievement Section Style */
#achievement-sec {
    max-width: 1140px;
    width: 100%;
    margin: 0px auto;
    margin-top: 50px;
    padding: 25px 0px;

    display: flex;
    flex-flow: column nowrap;
    justify-content: flex-start;
    align-items: center;
}

.achievement-title h2 {
    color: var(--color-black, #161616);
    direction: rtl;
    text-align: center;
    font-family: IRANYekanX;
    font-size: 28px;
    font-style: normal;
    font-weight: normal;
    line-height: normal;
}

.achievement-title h2 span {
    color: var(--color-primray, #49A8FA);
}

.achievement-items {
    margin-top: 75px;

    display: flex;
    flex-flow: row-reverse wrap;
    justify-content: center;
    align-items: center;
    gap: 75px;

}

.achievement-item {
    /*width: 190px;*/
    width: 160px;
    padding: 0px 24px;

    display: flex;
    flex-flow: column nowrap;
    justify-content: flex-start;
    align-items: center;
    gap: 15px;
}

.achievement-item .achievement-icon {
    width: 50px;
}

.achievement-item .achievement-icon svg {
    width: 100%;
    vertical-align: middle;
}


.achievement-item .achievement-count p {
    color: var(--color-black, #161616);
    direction: ltr;
    text-align: center;
    font-family: IRANYekanX;
    font-size: 18px;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
}

.achievement-item .achievement-title {
    direction: rtl;
}

.achievement-item .achievement-title p {
    color: var(--color-grey-5, #363636);
    direction: rtl;
    text-align: center;
    font-family: IRANYekanX;
    font-size: 18px;
    font-style: normal;
    font-weight: normal;
    line-height: normal;
}

/* END Achievement Section Style */

/* Most Search Section Style */
#most-search {
    max-width: 1140px;
    width: 100%;
    padding: 50px 0px;
    margin: 0px auto;
    margin-top: 50px;

    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
}

.most-search-title {
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.most-search-title h2 {
    color: var(--color-black, #161616);
    direction: rtl;
    text-align: center;
    font-family: IRANYekanX;
    font-size: 28px;
    font-style: normal;
    font-weight: normal;
    line-height: normal;
}

.most-search-title h2 span {
    color: var(--color-primray, #49A8FA);
}

.most-search-title p {
    color: var(--color-grey-3, #8C8C8C);
    direction: rtl;
    text-align: center;
    font-family: IRANYekanX;
    font-size: 12px;
    font-style: normal;
    font-weight: normal;
    line-height: normal;
}

.most-search-items {
    width: 100%;
    margin-top: 50px;

    display: flex;
    flex-flow: row-reverse wrap;
    justify-content: center;
    align-items: center;
}

.most-search-item a {
    background-color: var(--color-blue-shade-2, #95CCFC);
    padding: 7px 20px;
    margin: 5px;
    display: inline-block;

    color: var(--color-white, #FEFEFE);
    direction: rtl;
    text-align: center;
    font-family: IRANYekanX;
    font-size: 14px;
    font-style: normal;
    font-weight: normal;
    line-height: normal;

    border-radius: 16px;
    transition: all 0.3s;
}

.most-search-item a:hover {
    background-color: var(--color-blue-shade-4, #49A8FA);
}

/* END Most Search Section Style */


/* FAQ Section Style */
#faq {
    max-width: 1140px;
    width: 100%;
    margin: 0px auto;
    padding: 50px 15px;
    margin-top: 50px;

    display: flex;
    flex-flow: column nowrap;
    justify-content: flex-start;
    align-items: center;
}

.faq-head {
    width: 100%;
    padding: 0px 15px;

    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
}

.faq-head h2 {
    color: var(--color-black, #161616);
    direction: rtl;
    text-align: center;
    font-family: IRANYekanX;
    font-size: 28px;
    font-style: normal;
    font-weight: normal;
    line-height: normal;
}

.faq-head h2 span {
    color: var(--color-primray, #49A8FA);
    direction: rtl;
    text-align: center;
    font-family: IRANYekanX;
    font-size: 28px;
    font-style: normal;
    font-weight: normal;
    line-height: normal;
}

.faq-head p {
    margin-top: 10px;
    color: var(--color-grey-3, #8C8C8C);
    direction: rtl;
    text-align: center;
    font-family: IRANYekanX;
    font-size: 12px;
    font-style: normal;
    font-weight: normal;
    line-height: normal;
}

.faq-items {
    max-width: 684px;
    width: 100%;
    flex-grow: 1;
    margin-top: 50px;

    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
}

.faq-items .faq-item {
    width: 100%;
    flex-grow: 1;
    padding: 15px;
    border-bottom: 1px solid var(--color-grey-2, #ABABAB);

    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
    gap: 15px;

    cursor: pointer;
}

.faq-items .faq-item .faq-item-header {
    width: 100%;
    flex-grow: 1;
    padding: 15px;

    display: flex;
    flex-flow: row-reverse nowrap;
    justify-content: space-between;
    align-items: center;
}

.faq-items .faq-item .faq-item-header h3 {
    color: var(--color-black, #161616);
    text-align: right;
    font-family: IRANYekanX;
    font-size: 16px;
    font-style: normal;
    font-weight: normal;
    line-height: normal;
}

.faq-items .faq-item .faq-item-header span {
    transition: all 0.3s;
    transform: rotate(0deg);
}

.faq-items .faq-item .faq-item-header .active {
    transform: rotate(180deg);
}

.faq-items .faq-item .faq-item-body {
    width: 100%;
    display: none;
}

.faq-items .faq-item .active {
    display: block;
}


.faq-items .faq-item .faq-item-body p {
    color: var(--color-grey-3, #161616);
    text-align: right;
    font-family: IRANYekanX;
    font-size: 14px;
    font-style: normal;
    font-weight: normal;
    line-height: 180%;
}

/* END FAQ Section Style */

/* Footer Style */
#footer {
    width: 100%;
    margin-top: 75px;

    display: flex;
    flex-flow: column nowrap;
    justify-content: flex-start;
    align-items: center;
}

.footer-top, .footer-bot {
    padding: 15px;
}

.footer-top {
    background-color: #222222;
    width: 100%;

    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
}

.footer-top-wrap {
    max-width: 1140px;
    width: 100%;
    /*padding: 30px 0px;*/
    margin: 0px auto;
    /*margin-top: 75px;*/
}

.footer-wrap-text {
    width: 100%;

    display: flex;
    flex-flow: column nowrap;
    justify-content: flex-start;
    align-items: flex-end;
    gap: 15px;
}

.footer-wrap-text h2 {
    color: var(--color-white, #FEFEFE);
    direction: rtl;
    text-align: right;
    font-family: IRANYekanX;
    font-size: 18px;
    font-style: normal;
    font-weight: normal;
    line-height: normal;
}

.footer-wrap-text p {
    color: var(--color-white, #FEFEFE);
    direction: rtl;
    text-align: right;
    font-family: IRANYekanX;
    font-size: 16px;
    font-style: normal;
    font-weight: normal;
    line-height: normal;
}

.footer-widgets {
    width: 100%;
    margin-top: 75px;

    display: flex;
    flex-flow: row-reverse wrap;
    justify-content: space-between;
    /*align-items: center;*/
    align-items: baseline;
}

.footer-widget-links {
    padding: 10px 25px;

    display: flex;
    flex-flow: column nowrap;
    justify-content: flex-start;
    align-items: flex-end;
}

.footer-widget-links h3 {
    margin-bottom: 15px;

    color: var(--color-white, #FEFEFE);
    direction: rtl;
    text-align: right;
    font-family: IRANYekanX;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.footer-widget-links ul {
    list-style-type: none;
    padding-right: 15px;
}

.footer-widget-links ul a li {
    margin-bottom: 7px;

    color: var(--color-white, #FEFEFE);
    direction: rtl;
    text-align: right;
    font-family: IRANYekanX;
    font-size: 16px;
    font-style: normal;
    font-weight: normal;
    line-height: normal;

    transition: all 0.3s;
}

.footer-widget-links ul a li:hover {
    color: var(--color-primray, #49A8FA);
}

.footer-widget-lic {
    flex-grow: 1;
}

.footer-bot {
    background-color: #282828;
    width: 100%;
}

.footer-bot-wrap {
    max-width: 1140px;
    width: 100%;
    margin: 25px auto;

    display: flex;
    flex-flow: row-reverse wrap;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    width: 250px;
}

.footer-logo svg {
    width: 100%;
    vertical-align: middle;
}

.footer-social {
    display: flex;
    flex-flow: row-reverse wrap;
    justify-content: center;
    align-items: center;
    gap: 15px;
}


/* Animations */
@keyframes fade-down {
    0% {
        opacity: 0;
        transform: translateY(-10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0px);
    }
}

@keyframes slide-from-right {
    0% {
        opacity: 0;
        transform: translateX(100px);
    }
    100% {
        opacity: 1;
        transform: translateX(0px);
    }
}


/******* Responsive Styles **********/

/* X-Large devices (large desktops, less than 1400px) */
@media (max-width: 1399.98px) {

}

/* Large devices (desktops, less than 1200px) */
@media (max-width: 1199.98px) {

    /* Search Bar Section */
    .search-bar {
        padding: 5px 20px;
        flex-flow: row-reverse nowrap;
        gap: 20px;
    }

    .job-title-wrap {
        gap: 10px;
    }

    /* achievement Section */
    .achievement-items {
        gap: 0px;
    }

    /* CV Banner */
    #cv-banner .desktop-banner {
        display: none;
    }
}

/* Medium devices (tablets, less than 992px) */
@media (max-width: 991.98px) {

    /* Hero */
    #hero {
        margin-top: 40px;
    }

    .hero-bg-wrap {
        background-size: 1000px;
    }

    .hero-text h1 {
        font-size: 46px;
    }

    .hero-text h1 span {
        font-size: 46px;
    }

    .hero-text p {
        font-size: 21px;
    }

    /* Search Bar */
    .search-bar {
        padding: 5px 10px;
        gap: 10px;
    }

    .search-bar-input {
        font-size: 16px;
    }

    /* Most Viewed Section */
    .most-viewed-table {
        display: none;
    }

    .most-viewed-mobile {
        display: flex;
    }

}

/* Small devices (landscape phones, less than 768px) */
@media (max-width: 767.98px) {

    /* Search Bar */
    .search-bar {
        width: 90%;
        height: auto;
        padding: 20px 30px;
        margin-top: 75px;

        flex-flow: column nowrap;
        justify-content: flex-start;
        align-items: center;
    }

    .search-bar > div {
        width: 100%;
        padding: 15px 0px;
        border-bottom: 1px solid var(--color-grey-1, #CECECE);
    }

    .search-bar > div.job-city-wrap {
        border: none;
    }

    .search-bar > div.search-bar-spacer {
        display: none;
    }

    /* Header Style */
    .mobile-view-flex {
        display: flex !important;
    }

    .header-right .navbar {
        display: none;
    }

    /* achievement Section */
    .achievement-items .achievement-item {
        width: auto;
        padding: 10px;
        flex: 50% 1 0;
    }
}

/* X-Small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {

    /* Header Style */
    .header-left {
        gap: 10px;
    }

    .header-login-karjo {
        padding: 5px 10px;
    }

    .header-login-karjo a {
        font-size: 12px;
    }

    .header-login-karfarma {
        display: none;
    }

    .header-login-karfarma a {
        font-size: 12px;
    }

    /* Hero */
    #hero {
        margin-top: 0px;
    }

    .hero-bg-wrap {
        /*background-size: 650px;*/
        background-size: 500px;
    }

    .hero-text h1 {
        font-size: 26px;
    }

    .hero-text h1 span {
        font-size: 26px;
    }

    .hero-text p {
        margin-top: 15px;
        font-size: 16px;
    }

    /* Companies Section */
    #comp-sec {
        width: 95%;
        padding: 30px 10px;
        margin-top: 25px;
        margin-bottom: 25px;
    }

    .comp-sec-title h2 {
        font-size: 21px;
    }

    .comp-sec-title h2 span {
        font-size: 21px;
    }


    /* achievement Section */
    .achievement-title h2 {
        font-size: 21px;
    }

    .achievement-title h2 span {
        font-size: 21px;
    }

    .achievement-items {
        margin-top: 25px;
    }

    .achievement-item .achievement-count p {
        font-size: 16px;
    }

    .achievement-item .achievement-title p {
        font-size: 14px;
    }


    /* FAQ Section */
    .faq-head h2 {
        font-size: 21px;
    }

    .faq-head h2 span {
        font-size: 21px;
    }

    .faq-head p {
        text-align: center;
    }

    .faq-items {
        margin-top: 25px;
    }

    /* Most Searched Section */
    .most-search-title h2 {
        font-size: 21px;
    }

    .most-search-title span {
        font-size: 21px;
    }

    .most-search-items {
        margin-top: 25px;
    }

    /*  Search Left-side Header  */
    .filter-bar {
        padding: 15px !important;
    }

    .left-kit-head {
        display: inline-table !important;
    }

    .kit-head-job {
        align-items: center !important;
    }

    .job-details-tabs {
        padding: 2px !important;
    }


}

/* 2X-Small devices (portrait phones, less than 576px) */
@media (max-width: 319.98px) {

}

/* XX-Large devices (larger desktops)
No media query since the xxl breakpoint has no upper bound on its width */
