/*public*/

@font-face
{
    font-family: IRANSans;
    font-style: normal;
    font-weight: normal;
    src: url('../fonts/IRANSansWeb.ttf') format('truetype') ;
    font-display: swap;
    /*src: url('./css/font/Vazir.eot?#iefix') format('embedded-opentype'),*/
    /*url('./css/font/Vazir.woff2') format('woff2'),*/
    /*url('./css/font/Vazir.woff') format('woff'),*/
    /*url('./css/font/Vazir.ttf') format('truetype');*/
}

@font-face
{
    font-family: IRANSans;
    font-style: normal;
    font-weight: bold;
    font-display: swap;
    src: url('../fonts/IRANSansWeb_Bold.ttf') format('truetype') ;
    /*src: url('./css/font/Vazir-Bold.eot');*/
    /*src: url('./css/font/Vazir-Bold.eot?#iefix') format('embedded-opentype'),*/
    /*url('./css/font/Vazir-Bold.woff2') format('woff2'),*/
    /*url('./css/font/Vazir-Bold.woff') format('woff');*/

}

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

body
{
    direction: rtl;
    font-family: 'IRANSans', serif;
    font-weight: bold;
    background-color: #F2F2F2;
}

a
{
    text-decoration: none;
    color: #000000;
}

::-webkit-scrollbar
{
    width: 9px;
}

::-webkit-scrollbar-thumb
{
    background-color: #E2E3E5;
    border-radius: 9px;
}

/*page*/

span#search_more
{
    font-size: 2rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

#headerContainer
{
    background-color: #FFFFFF;
    width: 100%;
    z-index: 10;
    padding: 0 1rem;
    justify-content: space-between;
    height: 4rem;
    display: flex;
    position: sticky;
    top: 0;
}

.header-right
{
    margin: auto 0;
    position: relative;
}

.logoImg
{
    height: 1.8rem;
    width: 11rem;
}

.header-left
{
    margin: auto 0;
}

.header-table
{
    display: none;
}

.heder-link
{
    color: #5C636A;
    padding: 1rem;
}

.searchCity-container
{
    display: flex;
}

.searchCity-input
{
    width: 91px;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    border: 1px solid #002e84;
    text-align: center
}

.searchCity-input:focus
{
    outline: none;
}

.searchCity-input::-webkit-input-placeholder
{ /* Edge */
    color: #999999;
}

.searchCity-input:-ms-input-placeholder
{ /* Internet Explorer 10-11 */
    color: #999999;
}

.searchCity-input::placeholder
{
    color: #999999;
    font-size: .9rem;
}

.location-btn
{
    margin: auto 0;
    border: 1px solid #002e84;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    padding: .2rem .5rem;
    color: #FFFFFF;
    font-size: 13px;
    background-color: #002e84;
    transition: all .4s ease;
}

.location-btn:hover
{
    background-color: #FFFFFF;
    color: #002e84;
}

.heder-link a
{
    transition: all .4s ease;
}

.heder-link a:hover
{
    color: #002e84;
}

.heder-link a
{
    font-size: 13px;
}

/* Side Navigation Menu */
#sidenavDiv
{
    direction: rtl;
    box-shadow: rgba(149, 157, 165, 0.2) 0 8px 24px;
}

.sidenav
{
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 20;
    top: 0;
    right: 0;
    background-color: #FFFFFF;
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 60px;
}

.sidenav a
{
    padding: .5rem 1rem;
    text-decoration: none;
    white-space: nowrap;
    font-size: 15px;
    font-weight: bolder;
    display: block;
    transition: 0.3s;
    color: #BEBEBE;
}

.sidenav .sidenavItem
{
    margin-right: 4rem;
    font-size: 13px;
    font-weight: bold;
    color: #000000;

}

.sidenav a:hover
{
    color: #F1F1F1;
}

.sidenav .closebtn
{
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
}

@media screen and (max-height: 450px)
{
    .sidenav
    {
        padding-top: 15px;
    }

    .sidenav a
    {
        font-size: 18px;
    }
}

#sidenavBTN
{
    color: #190303;
    font-size: 25px;
    cursor: pointer;
    position: absolute;
    top: -2px;
    right: -6px;
}

/* Side Navigation Menu Ends */


/* Modal */
#ModalDiv.modal
{
    display: none;
    position: fixed;
    z-index: 20;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.4);
}

/* Modal Content/Box */
#ModalContentDiv.modal-content
{
    background-color: #FEFEFE;
    padding: 1rem;
    width: 100%;
    height: 100vh;
}


/* The Close Button */
.close
{
    color: #AAAAAA;
    float: right;
    line-height: 28px;
    margin-left: .5rem;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus
{
    color: black;
    text-decoration: none;
    cursor: pointer;
}

/* Modal Ends */

#searchBox::-webkit-scrollbar
{
    display: none; /* Hide scrollbar for Chrome, Safari and Opera */
}

#searchBox
{
    -ms-overflow-style: none; /* Hide scrollbar for IE and Edge */
    scrollbar-width: none; /* Hide scrollbar for Firefox */
}

#searchBox
{
    position: sticky;
    top: 4rem;
    overflow: auto;
    white-space: nowrap;
    background-color: #2B3940;
    display: flex;
    padding: .8rem;
    box-shadow: rgba(149, 157, 165, 0.2) 0 8px 24px;
    z-index: 5;
}

.searchBox-btn
{
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
    text-align: center;
    margin: 0 .2rem;
    padding: .1rem 1rem;
    background-color: #FFFFFF;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    box-shadow: rgba(149, 157, 165, 0.2) 0 8px 24px;
}

.searchFilter-btn
{
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
    text-align: center;
    margin: 0 .2rem;
    padding: .1rem 1rem;
    background-color: #E9CFCF;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border: 1px #BC081A;
}

#newRecruitmentDiv
{
    margin: 1rem;
}

#newRecruitmentTitle
{
    display: flex;
    justify-content: space-between;
}

.swiper-container
{
    margin-top: .5rem;
    padding: 1.9rem 0 1rem 0;
}

.swiper-slide
{
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    border-radius: 7px;
    padding: 2rem .5rem 0 .5rem;
    width: 17rem;
    height: 7rem;
    border: 1px solid #002e84;
    background-color: #FFFFFF;
    box-shadow: rgba(149, 157, 165, 0.2) 0 8px 24px;
}

.swiper-slide-1
{
    border: 1px solid #9600F0;
    background-color: #FFFFFF;
}

.swiper-slide-2
{
    border: 1px solid #FF0033;
    background-color: #FFFFFF;
}

.swiper-slide > a > p
{
    font-size: .8rem;
}

.swiper-slide-icone
{
    position: absolute;
    right: 7.5rem;
    top: -1rem;
    font-size: 22px;
    border: 1px solid #002e84;
    border-radius: 100%;
    padding: 4px 6px;
    color: #FFFF;
    background-color: #002e84;
    box-shadow: rgba(100, 100, 111, 0.2) 0 7px 29px 0;
}

.swiper-slide-icone-1
{
    border: 1px solid #9600F0;
    background-color: #9600F0;
}

.swiper-slide-icone-2
{
    border: 1px solid #FF0033;
    background-color: #FF0033;
}

.swiper-slide-title
{
    margin: 0;
    padding-bottom: .5rem;
}

.swiper-slide-active
{
    transform: scale(1.2);
    transition: .4s;
}

.swiper-slide-footer
{
    display: flex;
    justify-content: space-around;
}

.swiper-slide-footer p
{
    font-size: 11px;
}

.swiper-slide-footer-item .fa
{
    font-size: 1rem;
}

.swiper-button-prev, .swiper-button-next
{
    margin-top: .5rem;
}

#recruitmentCard
{
    margin: 1rem 0;
    padding: 1rem;
    background-color: #DDA0DD;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
}

.NewRecruitment1
{
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.NewRecruitment2
{
    margin: 0 auto;
    width: 100%;
}

.recruitmentText
{
    text-align: center;
    display: block;
    margin: .5rem 0;
    padding: 1rem;
    color: #000000;
    border-radius: 20px;
    transition: all .4s ease;
}

.recruitmentText:hover
{
    padding: 1rem;
    box-shadow: rgba(0, 0, 0, 0.19) 0 10px 20px, rgba(0, 0, 0, 0.23) 0 6px 6px;
}

.fa-fire
{
    margin: 0 .3rem;
    padding: .3rem;
    color: #FF0000;
}

#recruitmentCard1
{
    margin: 1rem 0;
    padding: 1rem;
    background-color: #86B7FE;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
}

#recruitmentCard2
{
    margin: 1rem 0;
    padding: 1rem;
    background-color: #E6DBB9;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
}

.newRecruitmentCard
{
    margin: .5rem 0;
    padding: 1.5rem 1rem 0;
    border: .1rem solid #002e84;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    background-color: #FFFFFF;
    box-shadow: rgba(0, 0, 0, 0.19) 0 10px 20px, rgba(0, 0, 0, 0.23) 0 6px 6px;
}

.Section1
{
    display: flex;
}

.NewRecruitment-img
{
    width: 3rem;
    height: 3rem;
    border-radius: 50%; /* make img circle */
}

.NewRecruitment-title
{
    display: inline;
    padding-top: 10px;
}

.NewRecruitment-badge
{
    color: #000000;
    border-radius: 15px;
    padding: .1rem .5rem;
    background-color: #B6D4FE;
    font-size: .7rem;
    white-space: nowrap;
}

.NewRecruitment-badge-red
{
    color: #000000;
    border-radius: 15px;
    padding: .1rem .5rem;
    background-color: #F1908D;
    font-size: .7rem;
    white-space: nowrap;
}

.Section1 img
{
    margin: 0 .5rem;
}

#RecruitmentCard-Title
{
    margin: 0 auto;
}

.RecruitmentCard-Text
{
    color: #4B4B4B;
    margin: 1rem 0;
    font-size: 1.1rem !important;
    padding: 5px;
}

.RecruitmentCard-Tags
{
    margin: 1rem 0;
    display: flex;
    flex-wrap: wrap;
}

.RecruitmentCard-Tag
{
    margin: .3rem .5rem;
    padding: .1rem .5rem;
    background-color: #F3F9FC;
    border: 1px solid #B6D4FE;
    font-size: .7rem;
    white-space: nowrap;
}

.RecruitmentCard-footer
{
    text-align: center;
    background-color: #E6F7F1;
    width: content-box;
    border-radius: 10px;
}

.RecruitmentCard-Footer
{
    margin-top: 1rem;
    display: flex;
    flex-wrap: wrap;
}

.footer-item
{
    margin: 0 .5rem;
}

/*.select2-input
{
    margin: .5rem auto;
}*/

/*.select2-selection
{
    width: 20rem;
}*/

.form-button
{
    width: 100%;
    padding: .8rem;
    display: flex;
    position: fixed;
    right: 0;
    bottom: 0;
    background-color: #E2E3E5;
    box-shadow: rgba(100, 100, 111, 0.2) 0 7px 29px 0;
}

#SubmitBTN
{
    background-color: #B02A37;
    border: 1px solid #B02A37;
    color: #FFFFFF;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    width: 100%;
    padding: .5rem 0;
    margin: 0 auto;
    font-size: 1rem;
}

.Footer
{
    padding: 3rem 1.5rem;
    background-color: #1D292E;
    color: #FFFFFF;
}

.FooterTop
{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.FooterTop-section1
{
    text-align: center;
}

.FooterTop-section2
{
    margin-top: 2rem;
    text-align: center;
}

.FooterLogin
{
    background-color: transparent;
    border: 1px solid #FFFFFF;
    color: #FFFFFF;
    border-radius: 6px;
    padding: 1rem 0;
    width: 12rem;
    transition: all .4s ease;
}

.FooterLogin:hover
{
    background-color: #FFFFFF;
    border: 1px solid #FFFFFF;
    color: #1D292E;
}

.FooterRegister
{
    background-color: #002e84;
    border: 1px solid #002e84;
    color: #FFFFFF;
    border-radius: 6px;
    padding: 1rem 0;
    margin: .5rem 0;
    width: 12rem;
}

.Footer-hr
{
    margin: 3rem 0;
}

.FooterBotton
{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.Footer-section1
{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 20rem;
    margin: 1rem 0 0 5rem;
    height: 15rem;
}

.Footer-Contactus
{
    display: flex;
}

.Footer-section2, .Footer-section3, .Footer-section4, .Footer-section5
{
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: 1rem 0;
}

.section-header
{
    color: #6B6E6F;
}

.section-title
{
    margin: .5rem 0;
    color: #FFFFFF;
    transition: all .4s ease;
}

.section-title:hover
{
    color: #002e84;
}

.footer-fixed
{
    display: flex;
    justify-content: space-around;
    position: fixed;
    bottom: 0;
    right: 0;
    width: 100%;
    padding: .5rem;
    z-index: 10;
    background-color: #002e84;
}

.footer-fixed-left
{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-fixed-btn1, .footer-fixed-btn3
{
    background-color: transparent;
    border: 1px solid #eba38b;
    color: #eba38b;
}

.footer-fixed-btn1:hover, .footer-fixed-btn3:hover
{
    background-color: #eba38b;
    color: #FFFFFF;
}

.footer-fixed-btn2
{
    background-color: transparent;
    border: 1px solid #FFFFFF;
    color: #FFFFFF;
    border-radius: 5px;
}

.footer-fixed-btn2:hover
{
    background-color: #FFFFFF;
    color: #1D292E;
}

.footer-fixed-btn1, .footer-fixed-btn2, .footer-fixed-btn3
{
    padding: .2rem .5rem;
    border-radius: 5px;
    transition: all .4s ease;
}

@media screen and (min-width: 768px)
{
    #headerContainer
    {
        justify-content: space-between;
        padding: .5rem 3rem;
    }

    .header-left
    {
        display: flex;
    }

    .logoImg
    {
        margin: auto -10px;
    }

    .searchCity-input
    {
        width: 91px;
        height: 32px;
        margin: auto 0;
    }

    .location-btn
    {
        height: 2rem;
        margin: auto 0;
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
        padding: .3rem .5rem;
        font-size: 13px;
    }

    #ModalContentDiv.modal-content
    {
        margin: 0 auto;
        width: 50%;
        border-radius: 5px;
        -webkit-border-radius: 5px;
        -moz-border-radius: 5px;
    }

    #FormInputs
    {
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        justify-content: start;
    }

    .form-button
    {
        width: 50%;
        right: 25%;
        left: 50%;
        border-bottom-right-radius: 5px;
        border-bottom-left-radius: 5px;
    }

    #SubmitBTN
    {
        width: 50%;
    }

    .swiper-container
    {
        padding: 1.1rem 0 1rem 0;
    }

    .swiper-slide-active
    {
        transform: unset;
        transition: unset;
    }

    #newRecruitmentDiv
    {
        margin: 1rem 4rem;
    }

    #recruitmentCard, #recruitmentCard1, #recruitmentCard2
    {
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-start;
        transition: all .4s ease;
    }

    #recruitmentCard:hover, #recruitmentCard1:hover, #recruitmentCard2:hover
    {
        box-shadow: rgba(100, 100, 111, 0.2) 0 7px 29px 0;
    }

    .recruitmentText
    {
        width: calc(100% / 3);
    }

    .NewRecruitment2
    {
        margin: 0 auto;
        width: 50%;
    }

    .newRecruitmentCard
    {
        margin: .5rem;
    }

    .Section1
    {
        display: flex;
    }

    .Footer
    {
        padding: 6rem 5rem;
        background-color: #1D292E;
        color: #FFFFFF;
    }

    .FooterBotton
    {
        display: flex;
        flex-wrap: nowrap;
        justify-content: space-between;
    }

    .Footer-section2, .Footer-section3, .Footer-section4, .Footer-section5
    {
        width: 10rem;
    }

    .footer-fixed
    {
        bottom: .2rem;
        left: 50%;
        height: fit-content;
        justify-content: center;
        background-color: transparent;
    }

    .footer-fixed-container
    {
        border-radius: 10px;
        padding: .8rem 1rem;
        background-color: #002e84;
        box-shadow: rgba(0, 0, 0, 0.19) 0 10px 20px, rgba(0, 0, 0, 0.23) 0 6px 6px;
    }

    .footer-fixed-btn1, .footer-fixed-btn2, .footer-fixed-btn3
    {
        margin: 0 .2rem;
    }

}

@media screen and (min-width: 992px)
{

    .FooterTop
    {
        display: flex;
        justify-content: space-between;
        margin-bottom: 4rem;
        position: relative;
    }

    .FooterTop-section1
    {
        text-align: right;
    }

    .FooterTop-section2
    {
        position: absolute;
        top: -35px;
        left: 0;
    }
}

@media screen and (min-width: 1200px)
{
    .header-table
    {
        display: block;
    }

    #sidenavBTN
    {
        display: none;
    }
}


/**
test
 */


::selection
{
    color: #FFFFFF;
    background: #664AFF;
}

.wrapper
{
    margin: auto 0;
}

.wrapper .search-input
{
    background: #FFFFFF;
    width: 100%;
    border-radius: 5px;
    position: relative;
    box-shadow: 0 1px 5px 3px rgba(0, 0, 0, 0.12);
}

.search-input input
{
    height: 40px;
    width: 100%;
    outline: none;
    border: none;
    border-radius: 5px;
    padding: 0 60px 0 20px;
    font-size: 18px;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
}

.search-input.active input
{
    border-radius: 5px 5px 0 0;
}

.search-input .autocom-box
{
    padding: 0;
    opacity: 0;
    pointer-events: none;
    max-height: 280px;
    overflow-y: auto;
}

.search-input.active .autocom-box
{
    padding: 10px 8px;
    opacity: 1;
    pointer-events: auto;
}

.autocom-box li
{
    list-style: none;
    padding: 8px 12px;
    display: none;
    width: 100%;
    cursor: default;
    border-radius: 3px;
}

.search-input.active .autocom-box li
{
    display: block;
}

.autocom-box li:hover
{
    background: #EFEFEF;
}

.search-input .icon
{
    position: absolute;
    top: -6px;
    height: 55px;
    width: 55px;
    text-align: center;
    line-height: 55px;
    font-size: 20px;
    color: #002e84;
    cursor: pointer;
}

.select2-selection--multiple .select2-search__field
{
    width: 100% !important;
}

.select2-dropdown
{
    z-index: 1070 !important;
}

.modal-header .btn-close
{
    margin: unset !important;
}

.ICON
{
    width: 1.2em;
    height: 1.2em;
    vertical-align: -.300em;
}

.ICON1
{
    font-size: 2rem;
    width: 1.2em;
    height: 1.2em;
    vertical-align: -.300em;
}

body
{
    background-image: linear-gradient(to right, rgba(0, 176, 116, 0.1) 0%, rgba(88, 88, 0, 0.05) 100%);
}

input[type="text"], select.city
{
    font-size: 15px !important;
    color: #5C636A;
}

#headerContainer
{
    background-color: transparent;
    transition: background-color .4s ease;
}

.h-top-content
{
    position: relative;
    padding: 2rem;
    overflow: hidden;
}

.hero-patern-img-div > img
{
    opacity: .1;
    position: absolute;
}

/*tab style*/
.h-search-form
{
    margin-top: 2rem;
}

.h-search-form h1
{
    font-size: calc(1.5rem + 3vw);
}

.tab
{
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.tab button
{
    z-index: 1;
    background-color: inherit;
    border: 1px solid #F2F2F2;
    color: #999999;
    outline: none;
    margin: 0 0.2rem;
    width: 10rem;
    padding: .8rem 0;
    transition: 0.4s;
    font-size: 17px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
}

.tab button:hover
{
    background-color: #F2F2F2;
    color: #999999;
}

.tab button.active
{
    background-color: #F2F2F2;
    color: #999999;
}

.tabcontent
{
    margin: 1rem .5rem;
    -webkit-animation: fadeEffect 1s;
    animation: fadeEffect 1s;
}

.jobSeeker-tab-content
{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    background-color: #FFFFFF;
    padding: .5rem 2rem;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    box-shadow: rgba(149, 157, 165, 0.2) 0 8px 24px;
}

.jobSeeker-tab-content > div
{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
}

.jobSeeker-tab-content > div label
{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}
/*.jobSeeker-tab-content2 > div{
    width: 100% !important;
}
.jobSeeker-tab-content2 > div > label{
    width: 100% !important;
}*/

.jobSeeker-tab-content > div img
{
    width: 1.5rem;
    height: 1.5rem;
    margin-left: .5rem;
}

.jobSeeker-tab-content input, .jobSeeker-tab-content select.city
{
    height: 4rem;
    border: #FFFFFF;
    width: 13rem;
    outline: none !important;
}

.jobSeeker-tab-content input:hover, .jobSeeker-tab-content select.city:hover
{
    /*outline: none !important;*/
}

.jobSeeker-tab-content button.p-btn
{
    background-color: #002e84;
    color: #FFFFFF;
    border: 1px solid #1D0084;
    font-size: .8rem;
    padding: .7rem 3rem;
    width: 100%;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    margin-top: 10px;
}

h1.headline{
    text-align: center;
}
/* Style the tab content */

@-webkit-keyframes fadeEffect
{
    from
    {
        opacity: 0;
    }
    to
    {
        opacity: 1;
    }
}

@keyframes fadeEffect
{
    from
    {
        opacity: 0;
    }
    to
    {
        opacity: 1;
    }
}

.h-search-form-links-div
{
    font-size: 13px;
    position: relative;
    color: #5C636A;
    margin-right: .5rem;
}

.h-search-form-links-div a
{
    color: #002e84;
}

.h-hero-image-man-container
{
    display: flex;
    justify-content: center;
    margin: 2rem 0 -35px 0;
}

.h-hero-image-man-container > img
{
    width: 15rem;
}

.h-employment-container-title
{
    padding-top: 2rem;
    text-align: center;
    background-color: #002e84;
    color: #FFFFFF;
    width: 100%;
}

.h-employment-container
{
    display: flex;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    background-color: #002e84;
    color: #FFFFFF;
    margin-top: -13px;
    padding: 1rem .5rem 3rem .5rem;
}

.h-employment-table
{
    border: 1px solid #999999;
    margin-top: 2rem;
    background-color: #2B3940;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
}

.h-employment-table-header
{
    display: flex;
    justify-content: space-between;
    padding: .5rem;
}

.h-employment-table-header div:first-child
{
    display: flex;
}

.h-employment-table-header h6
{
    margin-top: 9px;
}

.h-employment-table-header img, .h-popular-categories-cart > div > img
{
    width: 2rem;
    height: 2rem;
    margin-left: .3rem;
}

.h-employment-table-header > button
{
    background-color: transparent;
    color: #FFFFFF;
    border: 1px solid #FFFFFF;
    font-size: .7rem;
    padding: 0 1rem;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    transition: .4s;
}

.h-employment-table-header > button:hover
{
    color: #2B3940;
    background-color: #FFFFFF;
}

.h-employment-table a
{
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 100;
    padding: .5rem;
    color: #FFFFFF;
    font-size: .8rem;
    border-bottom: 1px solid #1D292E;
    transition: .4s;
}

.h-employment-table a:hover
{
    background-color: #5C636A;
    color: #002e84;
}


.h-employment-table a:first-child
{
    border: 0;
    border-top: 1px solid #1D292E;
    border-bottom: 1px solid #1D292E;
}

.h-employment-table a:last-child
{
    border: 0;
    border-radius: 0 0 10px 10px;
    -webkit-border-radius: 0 0 10px 10px;
    -moz-border-radius: 0 0 10px 10px;
}

.h-employment-tags
{
    display: flex;
    justify-content: space-between;
    font-size: 10px;
}

.h-employment-tags > p
{
    background-color: #eabcb4;
    color: #091853;
    margin: 0 .15rem;
    padding: 2px 6px;
    height: fit-content;
    white-space: nowrap;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
}

.h-employment-tags > p:last-child
{
    background-color: #888888;
}

.h-popular-categories-container, #popular-categories-container
{
    position: relative;
    display: flex;
    justify-content: center;
    background-color: #FFFFFF;
    flex-wrap: wrap;
    padding: 3rem 0;
}

.h-popular-categories-container > img
{
    display: none;
}

#popular-categories-container
{
    padding: 0;
}

.h-popular-categories-container > h4
{
    text-align: center;
    margin-bottom: 2rem;
    width: 100%;
    font-size: calc(1.375rem + 1.5vw);
}

.h-popular-categories-container > div.popular
{
    text-align: center;
    margin-bottom: 2rem;
    width: 100%;
    font-size: calc(1.375rem + 1.5vw);
}

.h-popular-categories-cart
{
    background-color: #ECECFC;
    border: 1px solid #B6D4FE;
    text-align: center;
    width: 16rem;
    padding: 0.5rem 0;
    margin: .3rem;
    color: #2B3940;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    transition: .4s;
}

.h-popular-categories-cart:hover
{
    box-shadow: rgba(100, 100, 111, 0.2) 0 7px 29px 0;
    color: #2B3940;
}

.h-popular-categories-cart > div
{
    display: flex;
    justify-content: center;
}

.h-popular-categories-cart p
{
    padding: 0;
    margin: 0;
}

.h-popular-categories-cart > div > p
{
    margin-top: 5px;
}

.h-popular-categories-cart > p:last-child
{
    color: #6B6E6F;
    font-size: .8rem;
    font-weight: 100;
    margin-top: .5rem;
}

.h-jobSeeker-container
{
    background-color: #FFFFFF;
    padding: 3rem 1rem;
}

.h-jobSeeker-container > img
{
    width: 100%;
    margin-top: 1rem;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
}

.h-jobSeeker-content
{
    text-align: center;
    font-weight: 100;
}

.h-jobSeeker-content p
{
    color: #6B6E6F;
}

.h-jobSeeker-content span
{
    /*font-size: 16px;*/
    display: block;
    text-align: right;
    margin: 1rem 0;
}

.h-jobSeeker-content span img
{
    width: 1rem;
    margin-left: .5rem;
}

.h-employer-container
{
    padding: 5rem 1rem !important;
}

.h-employer-button-container
{
    display: flex;
    flex-wrap: wrap;
}


.h-employer-button-container a
{
    border: 1px solid #002e84;
    color: #002e84;
    width: 100%;
    text-align: center;
    padding: .8rem 0;
    margin: .5rem 0;
    border-radius: 7px;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    transition: .4s;
}

.h-employer-button-container a:hover
{
    color: #FFFFFF;
    background-color: #002e84;
}

.h-employer-button-container a:first-child
{
    color: #FFFFFF;
    background-color: #002e84;
}

/*------------------------------*/
.h-job-seekers-container, #job-seekers-container
{
    position: relative;
    background-color: #1D292E;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 2rem 0;
}

#job-seekers-container > img
{
    position: absolute;
    opacity: 7%;
    top: 66%;
    left: 55%;
    height: 15rem;
    width: 15rem;
    transform: rotate(45deg);

}

.h-job-seekers-container-title
{
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    text-align: center;
    justify-content: center;
    color: #FFFFFF;
    width: 100%;
    margin: 0 1rem 2rem 1rem;
}

.h-job-seekers-container-title > h4, .h-jobSeeker-content h3
{
    font-size: calc(1.375rem + 1.5vw);
}

.h-job-seekers-container-title > button
{
    background-color: transparent;
    border: 1px solid #FFFFFF;
    color: #FFFFFF;
    font-weight: 100;
    padding: .5rem 1rem;
    margin-top: .5rem;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
}

.h-job-seekers-cart
{
    background-color: #FFFFFF;
    display: flex;
    flex-direction: column;
    color: #2B3940;
    padding: .5rem;
    margin: .3rem;
    width: 10rem;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.1) 0 10px 15px -3px, rgba(0, 0, 0, 0.05) 0 4px 6px -2px;
    z-index: 1;
}

.h-job-seekers-cart-header
{
    display: flex;
}

.h-job-seekers-cart-header img
{
    width: 3rem;
    height: 3rem;
    border-radius: 50rem;
}

.h-job-seekers-cart-header p
{
    margin-right: .5rem;
}

.h-job-seekers-cart-tags
{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    font-size: .7rem;
    margin-top: .5rem;
}

.h-job-seekers-cart-tags > a > p
{
    display: flex;
    justify-content: center;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
}

.h-job-seekers-cart-tags > a > p > img
{
    width: .8rem;
    height: .8rem;
    margin-left: .3rem;
}

.h-job-seekers-cart-tags a > p
{
    background-color: #F3F9FC;
    color: #467AEF;
    margin: .3rem;
    padding: .2rem .5rem;
    white-space: nowrap;
}

.h-job-seekers-cart-tags a:last-child > p
{
    color: #FA5F1C;
}

.h-job-seekers-cart > button
{

    background-color: #002e84;
    color: #FFFFFF;
    border: 1px solid #002e84;
    width: 9rem;
    margin: .8rem auto;
    margin-bottom: 0;
    font-size: .9rem;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
}

@media screen and (min-width: 720px)
{
    .jobSeeker-tab-content button.p-btn{
        margin-top: unset;
    }
    .jobSeeker-tab-content > div
    {
        width: unset;
    }
    .jobSeeker-tab-content > div label
    {
        width: unset;
    }
    /*.jobSeeker-tab-content2 > div label
    {
        width: unset;
    }*/

    .jobSeeker-tab-content
    {
        width: 617px;
    }

    .jobSeeker-tab-content2
    {
        justify-content: center;
    }

    .jobSeeker-tab-content2 > div
    {
        margin: 0 !important;
    }

    .jobSeeker-tab-content2 select.city
    {
        width: 12rem !important;
    }

    .jobSeeker-tab-content2 button.p-btn
    {
        margin: 0 !important;
    }

    .h-hero-image-man-container
    {
        position: absolute;
        bottom: 0;
        left: 41px;
        z-index: -1;
    }

    .h-hero-image-man-container > img
    {
        width: 25rem;
        height: 35rem;
        margin-left: 3rem;
    }

    .h-employment-container
    {
        flex-direction: row;
    }

    .h-employment-table
    {
        margin: 2rem .5rem 0 .5rem;
        width: 40%;
    }
}

@media (min-width: 540px) and (max-width: 720px)
{
    .h-hero-image-man-container
    {
        display: none;
    }
}

@media screen and (min-width: 540px)
{
    .h-top-content
    {
        height: 90vh;
    }

    .tab
    {
        justify-content: start;
    }

    .tabcontent
    {
        margin: 1rem 0 .5rem 0;
    }

    .jobSeeker-tab-content
    {
        flex-direction: row;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .jobSeeker-tab-content > div
    {
        flex-wrap: wrap;
        margin: 0 auto;
    }

    .jobSeeker-tab-content input, .jobSeeker-tab-content select.city
    {
        width: 10rem;
        margin: 0 .5rem;
    }

    .jobSeeker-tab-content > button.p-btn
    {
        width: unset;
        margin: 0 auto;
    }

    .h-search-form
    {
        width: fit-content;
        margin-right: 5rem;
    }


    .h-popular-categories-container > img
    {
        position: absolute;
        top: -37px;
        right: 76px;
        width: 9rem;
        height: 15rem;
        opacity: .2;
    }

    .h-popular-categories-container > img
    {
        display: block;
    }

    /*-------------------------*/
    .h-jobSeeker-container
    {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-around;
        align-items: center;
        padding: 2rem 8rem;
    }

    .h-jobSeeker-container > img
    {
        width: 441px;
        height: 368px;
    }

    .h-jobSeeker-content
    {
        width: 29rem;
        text-align: right;
    }

    .h-job-seekers-container-title
    {
        flex-direction: row;
        justify-content: space-between;
        margin: 0 3rem 3rem 3rem;
    }

    .h-job-seekers-cart
    {
        width: 15rem;
        margin: .5rem;
    }

    .h-job-seekers-cart-header > p
    {
        margin-top: 14px;
    }

    #job-seekers-container > img
    {
        top: -80px;
    }

    .h-employer-button-container a
    {
        border: 1px solid #002e84;
        color: #002e84;
        width: 12rem;
        text-align: center;
        padding: .8rem 0;
        margin: .5rem 0;
        border-radius: 7px;
        -webkit-border-radius: 7px;
        -moz-border-radius: 7px;
        transition: .4s;
    }

    .h-employer-button-container a:first-child
    {
        margin-left: .5rem;
    }
}

select.city:focus{
    box-shadow: unset !important;
}

.text-big{
    font-size: calc(1rem + 1.0vw);
}


.blog-posts
{
    z-index: 999;
}

.blog-posts-containers
{
    padding-bottom: 0 !important;
    padding-top: 1rem !important;
    position: relative;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    /*padding: 2rem 0;*/
}

.blog-posts-containers-title
{
    padding-bottom: 0 !important;
}

a.item-post
{
    line-height: 28px !important;
    color: #FFFFFF;
    font-size: 1.1rem;
}

a.item-post:hover
{
    color: #002e84;
}

