@font-face {
    src: url(fonts/Poppins-Regular.ttf);
    font-family: Poppins;
}
.fade-in {
    animation: fadeIn ease 2s;
    -webkit-animation: fadeIn ease 2s;
    -moz-animation: fadeIn ease 2s;
    -o-animation: fadeIn ease 2s;
}
@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@-moz-keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@-o-keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: Poppins;
}
.field-error{
        background-color:#ff8484;
}
.box-error{
        color:#ff8484;
}
html {
    scroll-behavior: smooth;
}
body {
    position: relative;
    background-color: #020b14;
}
#header {
    width: 100%;
    height: 130px;
    background-color: #141414;
    position: relative;
    top: 0;
}
#header-img-logo {
    width: 250px;
    height: 95px;
    background-image: url(media/white_logo_transparent_background.png);
    background-size: cover;
    background-repeat: no-repeat;
    display: inline-flex;
    background-position: center;
    text-align: center;
}
#header-sub {
    width: 100%;
    height: 30px;
    background-color: #fff;
    border-bottom: 1px solid #141414;
    display: flex;
    flex-wrap: wrap;
    justify-content: left;
}
.header-sub-inn {
    color: #141414;
    line-height: 30px;
    height: 30px;
    margin-left: 10px;
    margin-right: 10px;
    display: flex;
}
#tel_h {
    width: 200px;
    text-decoration:none;
    color:black!important;
}
#tel-ico-h {
    background-image: url(media/contact1_g.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 30px;
    height: 30px;
    display: flex;
    margin-right: 5px;
}
#mail-ico-h {
    background-image: url(media/mail_g.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 30px;
    height: 30px;
    display: flex;
    margin-right: 10px;
}
#mail_h {
    width: 240px;
}
#fb-ico-h {
    background-image: url(media/fb_ico.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 30px;
    height: 25px;
    position: absolute;
    right: 5px;
    bottom: 2px;
}
#tw-ico-h {
    background-image: url(media/twitter_g.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 30px;
    height: 25px;
    position: absolute;
    right: 65px;
    bottom: 2px;
}
#li-ico-h {
    background-image: url(media/linkedin.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 30px;
    height: 25px;
    position: absolute;
    right: 35px;
    bottom: 2px;
}
#wa-ico-h {
    background-image: url(media/whatsapp_g.png?v1);
    background-size: contain;
    background-repeat: no-repeat;
    width: 30px;
    height: 25px;
    position: absolute;
    right: 95px;
    bottom: 2px;
}
#insta-logo {
    width: 150px;
    height: 30px;
    line-height: 30px;
    text-align: right;
    position: relative;
    display: none;
    background-image: url(media/loc_g.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left;
    transition-duration: 0.3s;
    z-index: 2;
}
#menu_btn {
    background-image: url(media/menu.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 50px;
    height: 50px;
    display: block;
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 2;
}
#menu_btn:hover {
    cursor: pointer;
}
#side_menu {
    height: 100.05%;
    background-color: #0e0e0e;
    position: absolute;
    animation-duration: 1s;
    transition-duration: 1s;
    width: 360px;
    border-right: 2px solid #fff;
    z-index: 3;
}
.sm_open {
    transform: translateX(0);
}
.sm_close {
    transform: translateX(-100%);
}
#side_menu a {
    color: #fff;
    width: 80%;
    height: 30px;
    font-size: 25px;
    display: inline-block;
    margin: 10px;
    margin-left: 25px;
    text-align: left;
    text-decoration: none;
}
#side_menu a:hover .link-arrow {
    visibility: visible;
    opacity: 1;
    transition-duration: 0.5s;
}
#content {
    width: 100%;
    position: relative;
}
#h1_label {
    text-align: center;
    position: relative;
    color: #fff;
    height: 100px;
    line-height: 100px;
}
#login_shop {
    background-image: url(media/search-w.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 50px;
    height: 47px;
    display: block;
    position: absolute;
    top: 20px;
    right: 20px;
}
#login_shop::after {
  content: "Locuri de munca";
  color: #fff;
  font-size: 10px;
  position: absolute;
  bottom: -27px;
  text-align: center;
  width: 167%;
  left: -15px;
}
#img_transperant {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    background-color: rgba(22, 22, 22, 0.5);
}
#img_frontcover {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    background-image: url(media/mp_r_n.jpg?v1);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 75%;
}
#card-holder-home {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    height: 850px;
    color: #fff;
    top: 140px;
    display: flex;
    flex-wrap: wrap;
    -webkit-justify-content: space-around;
    justify-content: space-around;
    justify-content: space-evenly;
}
#card-holder-pp {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    top: 10px;
    display: flex;
    flex-wrap: wrap;
    -webkit-justify-content: space-around;
    justify-content: space-around;
    justify-content: space-evenly;
    color: #fff;
}
#card-holder-pp h1,
h2,
h3 {
    width: 100%;
    text-align: center;
}
#card-holder-pp p {
    text-align: left;
    width: 100%;
}
#card-holder-pp a {
    color: #fff;
}
.h2-card-title {
    width: 100%;
    color: #fff;
    text-align: center;
    top: 50px;
    position: relative;
}
#card-employer {
    width: 48%;
    height: 600px;
    border: solid 1px #fff;
    position: relative;
    background-color: rgba(0, 0, 0, 0.623);
    border-radius: 4px;
}
#card-candidate {
    width: 48%;
    height: 600px;
    border: solid 1px #fff;
    position: relative;
    background-color: rgba(0, 0, 0, 0.623);
    border-radius: 4px;
}
.link-arrow {
    visibility: hidden;
    opacity: 0;
    margin-left: 10px;
    transition-duration: 0.5s;
}
.link-arrow-b {
    visibility: hidden;
    opacity: 0;
    margin-right: 10px;
    transition-duration: 0.5s;
}
.card-m-links {
    position: absolute;
    bottom: 20px;
    right: 20px;
    color: #000;
    text-decoration: none;
    transition-duration: 0.5s;
    font-size:20px;
    border-radius: 4px;
    padding: 5px 5px 5px 22px;
    background: #fff;
}
.card-m-links:hover .link-arrow {
    visibility: visible;
    opacity: 1;
    transition-duration: 0.5s;
}
.card-j-links {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: #000;
    text-decoration: none;
    transition-duration: 0.5s;
    display: none;
    font-size:20px;
    border-radius: 4px;
    padding: 5px 5px 5px 22px;
    background: #fff;
}
.card-j-links:hover .link-arrow-b {
    visibility: visible;
    opacity: 1;
    transition-duration: 0.5s;
}
.desc-a-card {
    color: #fff;
    width: 80%;
    position: relative;
    top: 100px;
    margin-left: auto;
    margin-right: auto;
}
.desc-a-card span {
    line-height: 35px;
}
.fader {
    opacity: 0;
}
#about-title {
    width: 100%;
    /*top: 50px;*/
    color: #fff;
    position: relative;
    text-align: center;
    padding: 15px;
    padding-top:90px;
}
.ab-subt {
    color: #fff;
    width: 80%;
    position: relative;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    top: 75px;
}
.txt-about {
    color: #fff;
    width: 80%;
    position: relative;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    top: 75px;
}
.txt-about-a {
    color: #fff;
    width: 80%;
    position: relative;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
    top: 75px;
}
.txt-about-a a{
    color:#fff;
    text-decoration:none;
}
.txt-about-a a:hover{
    cursor:default;
}
.ct-scroll{
    width:80%;
    display:flex;
    margin:auto;
    height:290px;
    margin-top:50px;
}
.ct_product_preview{
    background-size: 90%;
    background-repeat: no-repeat;
    background-position-x: center;
    background-position-y: 25%;
    width: 100%;
    height: 270px;
    transition-duration: 0.5s;
}
.ct-scroll-title{
width: 100%;
height: 18px;
font-size: 20px;
font-weight: bold;
font-family: Poppins;
color: white;
text-align: center;
display: inline-block;
top:-40px;
position:relative;
}
#sector-cat {
    margin: 10px;
    width: 90%;
    text-decoration: none;
    font-size: 16px;
    position: relative;
    transition-duration: 0.5s;
    border-radius: 4px;
    color: #fff;
    display: none;
    font-size: 18px;
}
#image-cat {
    width: 80%;
    position: relative;
    margin-left: auto;
    margin-right: auto;
    display: flex;
}
#view-job-sec {
    position: absolute;
    bottom: -10px;
    right: 10%;
    text-decoration: none;
    color: #000;
    background: #fff;
    padding: 10px;
    border-radius: 4px;
}
#in-search {
    position: relative;
    margin-left: auto;
    margin-right: auto;
    height: 30px;
    border-radius: 4px;
    display: flex;
}
#card-holder-cnt {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    height: 900px;
    top: 80px;
}
#cnt-form {
    width: 100%;
    min-height: 780px;
    /*border: solid 1px #fff;*/
    border-radius: 4px;
    background-color: rgba(14, 14, 14, 0.63);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
}
#cnt-form h1 {
    color: #fff;
    width: 100%;
    position: relative;
    height: 110px;
    line-height: 130px;
    text-align: center;
}
#cnt-form h3,
#cnt-form p {
    color: #fff;
    width: 100%;
    position: relative;
    text-align: center;
}
#cnt-info-2 h3 {
    margin-bottom: 50px;
}
#cnt-info-2 textarea {
    resize: none;
    width: 60%;
    position: relative;
    margin-left: auto;
    margin-right: auto;
    height: 160px;
    background-color: rgba(14, 14, 14, 0.63);
    border-radius: 4px;
    color: #fff;
    display: flex;
    min-width: 260px;
}
#cnt-form input {
    width: 60%;
    height: 30px;
    border-radius: 4px;
    background-color: rgba(14, 14, 14, 0.63);
    margin-bottom: 18px;
    margin-left: auto;
    margin-right: auto;
    color: #fff;
    position: relative;
    text-align: center;
    display: flex;
    min-width: 260px;
}
.control-msg-info{
    padding-left: 40px;
    padding-right: 40px;
}
#submit-form {
position: absolute;
bottom: 20px;
right: 30px;
color: #000;
text-decoration: none;
padding: 5px 10px 5px 10px;
background: #fff;
border-radius: 4px;
font-size: 18px;
}
#control {
    position: absolute;
    width: 330px;
    height: 220px;
    background-color: #0e0e0e;
    color: #fff;
    border: 1px solid #fff;
    border-radius: 4px;
    top: 30px;
    display: none;
    left:0;
    right:0;
    margin:auto;
}
#the_img {
    width: 90px;
    height: 25px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    text-align: center;
    display: flex;
    margin-bottom: 60px;
    top: 50px;
}
#btn-close-cc {
    position: absolute;
    top: 10px;
    right: 10px;
    color: #fff;
    border: none;
    background-color: transparent;
    text-align: center;
    font-size: 20px;
    width: 20px;
    height: 20px;
    line-height: 20px;
}
#btn-submit-check {
    position: absolute;
    bottom: 10px;
    right: 10px;
    color: #fff;
    border: none;
    background-color: transparent;
}
#btn-close-cc:hover,
#btn-submit-check:hover {
    cursor: pointer;
}
.hr-sp {
    margin-top: 20px;
    width: 80%;
    height: 2px;
    margin-left: auto;
    margin-right: auto;
    background-image: linear-gradient(90deg, rgba(154, 154, 154, 0) 0, #e3e3e3 33%, #e3e3e3 66%, rgba(154, 154, 154, 0) 100%);
}
.cnt-sub-c {
    width: 50%;
    display: block;
    position: relative;
}
#fb-ico-c {
    background-image: url(media/fb_ico-w.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 30px;
    height: 25px;
    position: relative;
    display: inline-flex;
}
#tw-ico-c {
    background-image: url(media/twitter_w.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 30px;
    height: 25px;
    position: relative;
    display: inline-flex;
}
#li-ico-c {
    background-image: url(media/linkedin-w.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 30px;
    height: 25px;
    position: relative;
    display: inline-flex;
}
#sm-holder {
    position: relative;
    width: 50%;
    margin-left: auto;
    margin-right: auto;
    height: 30px;
    text-align: center;
}
#footer {
    width: 100%;
    height: 215px;
    background-color: #0e0e0e;
    position: relative;
    border-top: solid 1px #fff;
}
#rec-logo{
    width:200px;
    height:100px;
    top:5px;
    right:20px;
    position:absolute;
    background-image: url(media/CorporateMember-light.png);
    background-size: contain;
    background-repeat: no-repeat;
}
#ft-quick-links {
    width: 250px;
    height: 100%;
}
.footer-u-link {
    text-decoration: none;
    color: #fff;
    margin-left: 25px;
    width: 100%;
    display: flex;
    margin-top: 8px;
}
#tel_f {
    width: 240px;
    color: #fff;
    left: 10px;
}
#tel-ico-f {
    background-image: url(media/contact_b.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 30px;
    height: 30px;
    display: flex;
    margin-right: 10px;
}
#mail-ico-f {
    background-image: url(media/mail_b.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 30px;
    height: 30px;
    display: flex;
    margin-right: 10px;
}
#mail_f {
    width: 240px;
    left: 10px;
    height: 30px;
    color: #fff;
}
#logo_f {
    width: 250px;
    height: 60px;
    background-image: url(media/white_logo_transparent_background.png);
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    background-position: center;
}
.footer-sub-inn {
    line-height: 30px;
    height: 30px;
    margin-left: 15px;
    display: flex;
    position: relative;
    margin-top: 5px;
}
#to-top-btn {
    width: 60px;
    height: 60px;
    display: block;
    position: fixed;
    top: 640px;
    right: 20px;
    background-image: url(media/backtop.png);
    background-size: contain;
    background-repeat: no-repeat;
    visibility:hidden;
}
#card-holder-ef {
    width: 90%;
    min-height: 850px;
    color: #fff;
    position: relative;
    margin-left: auto;
    margin-right: auto;
}
#card-holder-ef h1 {
    text-align: center;
    width: 100%;
    top: 50px;
    position: relative;
    margin-bottom: 50px;
}
#card-holder-ef h2 {
    margin-bottom: 50px;
    position: relative;
}
#card-holder-ef p {
    margin-bottom: 50px;
    position: relative;
}
#fillspace {
    height: 75px;
    width: 100%;
    position: relative;
}
#cookie-msgbox {
    width: 50%;
    min-height: 80px;
    min-width: 360px;
    margin: auto;
    left: 0;
    right: 0;
    bottom: 0;
    color: #fff;
    font-size: 16px;
    border: solid 1px #fff;
    background-color: #141414;
    text-align: center;
    position: fixed;
    padding: 10px;
    border-radius: 4px;
    display: block;
    z-index: 999;
}
.cookie-msg-btn {
    width: 30px;
    height: 20px;
    border-radius: 4px;
    margin-left: 15px;
    line-height: 15px;
}

/* ================================================================================================================= */
/* ==================================================REGISTRATION=================================================== */
/* ================================================================================================================= */

#register-form {
    min-height: 600px;
    width: 90%;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    justify-content: space-evenly;
    padding-top:100px;
    padding-bottom:100px;
    margin-top:100px;
    background-color:rgba(0, 0, 0, 0.521);
    border-radius:4px;
    color:white
}

.register-form h2{
    padding-top:50px;
    padding-bottom:50px;
}
.personal-holder-left,.personal-holder-right{
width:50%;
display:flex;
flex-wrap:wrap;
justify-content: space-around;
justify-content: space-evenly;
}
label {
    padding-right:20px;
}
#reg-title{
    width:50px;
    height:30px;
    margin-right:auto;
    margin-bottom:15px;
}
#reg-gender{
    width:70px;
    height:30px;
    margin-right:auto;
    margin-bottom:15px;
}
#reg-nationality{
    width:145px;
    height:30px;
    margin-bottom:15px;
}
.register-form textarea{
    height:100px;
    overflow-x:hidden;
    resize: none;
}
.register-form .text-input{
    width:100%;
    margin:auto;
    float:left;
    margin-bottom:15px;
    height:40px;
    border-radius:2px;
    position:relative;
}
.photo-holder{
    width:65%;
    margin:auto;
    margin-bottom:30px;
    margin-top:35px;
    float:right;
    height:350px;
    border:solid 1px white;
    position: relative;
}
.register-form ::placeholder {
    color: black;
    font-size: 15px;
    opacity: 1;
}
#personal-photo{
width:100%;
height:22px;
position: absolute;
top:0;left:0;
background-color:rgba(0, 0, 0, 0.603);
}
.photo-holder img{
    width:100%;
    height:100%;
}
.file-photo-title{
    width:100%;
    text-align:center;
}
.file-input{
    width:65%;
    height:50px;
    display:flex;
    margin:auto;
}
.register-form p{
    margin-bottom:5px;
}
.reg-opt,.reg-req{
    width:80%;
    margin:auto;
    margin-bottom:50px;
    display:flex;
    flex-wrap:wrap;
    justify-content: space-around;
    justify-content: space-evenly;
}
.checkboxes{
    padding-bottom:25px;
    width:50%;
}
.checkboxes_shift{
    width:50%;
    margin-right:50%;
    margin-bottom:20px;
    display:flex;
    flex-wrap:wrap;
    justify-content:space-between;
}
.checkboxes_shift label{
    width:70%;
}
.checkboxes_shift p{
    width:100%;
    margin-bottom:20px;
}
.wide-box{
    width:100%;
    margin:auto;
}
.disability-text{
    width:100%;
}
.criminal-text{
    width:100%;
}
.prefered-job{
    margin:auto;
    margin-bottom:25px;
}
.job-int-text{
    width:100%;
}
.dc-area-half{
width:60%;
position: relative;
}
.declaration-sec{
    width:80%;
    margin:auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    justify-content: space-evenly;
}
.declaration-sec p{
    margin-top:30px;
    font-size:17px;
}
#submitReg{
    position: absolute;
    bottom: -35px;
    right:0;
    padding: 5px;
    border-radius: 4px;
}
#submit_span{
    width:100%;
    height:100%;
    position:absolute;
    background-color:#000000e5;
    overflow:hidden;
    z-index:99;
    display:none;
}
#submit_span span{
    width:80%;
    margin:auto;
    font-size:28px;
    color:white;
    padding:25px;
    border:solid white 3px;
    top:180px;
    text-align:center;
    position:absolute;
    left:0;
    right:0;
    background-color:black;
}
#submit_span img{
    width:25%;
    max-width:300px;
    max-height:300px;
    margin:auto;
    top:100px;
    position:absolute;
    left:0;
    right:0;
    margin-top:300px;
    background-color:transparent;
}
/*============*/
.dc-date-auto{
    color:white;
    font-size:18px;
}
.dc-date-auto a{
    color:white;
    font-size:18px;
    text-decoration:underline;
    margin-left:30px;
}
@media only screen and (max-width:1300px){

    .photo-holder{
        min-width:310px;
        max-width:380px;
        margin:auto;
    }
    .text-input{
        min-width:450px;
    }
    .personal-holder-left, .personal-holder-right
    {
        width:100%;
    }
    .dc-area-half{
        width:90%;
        margin:auto;
        
    }
    .signature-area{
        margin-top:30px;
    }
    .checkboxes{
        width:100%;
        margin:auto;
        padding-bottom:50px;
    }
    .prefered-job{
        margin-bottom:50px;
    }
}
    @media only screen and (max-width:750px){

        .text-input{
            min-width:350px;
        }
        #register-form{
            width:100%;
        }
        #reg-title{
            width:50%;
            margin:unset;
            margin-bottom:15px;
        }
        .photo-holder{
            min-width:350px;
        }
        .declaration-sec{
            width:100%;
        }
        .dc-area-half{
            width:96%;
        }
        .reg-opt{
            width:96%;
        }
        .dc-date-auto a{
            width: 100%;
            display: flex;
            margin: 5px;
        }
        #reg-nationality,#reg-title,#reg-gender{
        width:100%;
        }

    }

/* ================================================================================================================= */
@media only screen and (max-width:1400px){
   .reg-req, .reg-opt{
       width:90%;
   }
}
@media only screen and (max-width: 1300px) {
    #card-holder-home {
        width: 94%;
    }
}
@media only screen and (max-width: 1100px) {
    #card-holder-home {
        width: 96%;
    }
    .desc-a-card span {
        line-height: 30px;
    }
}
@media only screen and (max-width: 1000px) {
    #card-holder-home {
        width: 98%;
        height: fit-content;
        margin-bottom: 175px;
    }
    .desc-a-card span {
        line-height: 28px;
    }
    /*#card-candidate p,*/
    /*#card-employer {*/
    /*    font-size: 16px;*/
    /*}*/
    .card-m-links,.card-j-links{
        font-size:17px;
    }
    .card-j-links{
        padding: 5px 20px 5px 10px;
    }
    .link-arrow-b{
        margin-right:5px;
    }
}
@media only screen and (min-width: 950px) {
    #card-candidate {
        display: block !important;
    }
    #card-employer {
        display: block !important;
    }
    #cnt-info-1 {
        display: block !important;
    }
    #cnt-info-2 {
        display: block !important;
    }
}
@media only screen and (max-width: 950px) {
    #card-holder-home{
        width:100%;
    }
    #card-candidate, #card-employer {
        width:100%;
        border:none;
        overflow:hidden;
        border-radius:0;
    }
    #card-candidate{
        background-color: rgba(209, 209, 209, 0.74);
    }
    #card-candidate *{
        color:#000;
    }
    #card-employer::after {
      background-color: rgba(255, 255, 255, 0.623);
      content: " ";
      position: absolute;
      bottom: -20px;
      height: 35px;
      width: 100%;
      transform: skewY(2deg);
    }
    /* ===================================== */ 
    #card-employer .card-m-links{
        right:10%;
    }
    #card-candidate .card-m-links{
        left:10%;
        width:max-content;
        background-color:#000;
        color:#fff;
    }
    #card-candidate .link-arrow{
        color:#fff;
    }
    /*#card-candidate span{*/
    /*    color:#fff;*/
    /*}*/
    .desc-a-card{
        font-size:18px;
    }
    .card-m-links{
        bottom:35px;
    }
    #footer{
        border:none;
    }
    .card-j-links {
        display: unset;
    }
    #cnt-info-1 {
        display: none;
    }
    #card-holder-cnt {
        width: 92%;
    }
    .cnt-sub-c {
        width: 80%;
    }
}
@media only screen and (max-width: 900px) {
    #h1_label {
        font-size: 25px;
    }
    /*#card-candidate,*/
    /*#card-employer {*/
    /*    width: 60%;*/
    /*}*/
}
@media only screen and (max-width: 750px) {
    #about-title {
        font-size: 22px;
    }
    .txt-about {
        font-size: 15px;
        text-align: left;
    }
    .checkboxes_shift{
        margin-right:0;
        width:100%;
    }
    .checkboxes_shift label{
        margin-bottom:20px;
    }
}
@media only screen and (max-width: 700px) {
    #h1_label {
        font-size: 20px;
    }
    #tel_h {
        font-size: 12px;
        width: 165px;
    }
    #mail_h {
        font-size: 12px;
        width: 185px;
    }
    #about-title {
        font-size: 20px;
    }
    /*#card-candidate,*/
    /*#card-employer {*/
    /*    width: 75%;*/
    /*}*/
    .v-braker {
        display: none;
    }
}

@media only screen and (max-width: 666px) {
    .ct-scroll-title{
        top:0px;
    }
}

@media only screen and (max-width: 600px) {
    #header-img-logo {
        width: 200px;
    }
    #mail_h {
        display: none;
    }
    #tel_h {
        font-size: 12.5px;
        margin-left: 0;
    }
    #insta-logo {
        font-size: 13.9px;
    }
    .header-sub-inn {
        margin-left: 0;
    }
    #about-title {
        font-size: 18px;
    }
    /*#card-candidate,*/
    /*#card-employer {*/
    /*    width: 85%;*/
    /*}*/
    #cnt-form h1 {
        font-size: 28px;
        height: 80px;
    }
    .cnt-sub-c {
        width: 100%;
    }
    #image-cat{
        width:94%;
    }
    #view-job-sec{
        bottom:-15px;
        right:4%;
    }
}
@media only screen and (max-width: 550px) {
    #side_menu {
        width: 100%;
    }
    .header-sub-inn {
        margin-left: 0;
    }
    #about-title {
        font-size: 18px;
    }
    /*#card-candidate,*/
    /*#card-employer {*/
    /*    width: 92%;*/
    /*}*/
    .txt-about {
        font-size: 14px;
    }
    .txt-about-a {
        width: 90%;
    }
    .h2-card-title {
        top: 30px;
        font-size:22px;
    }
    .desc-a-card {
        top: 55px;
    }
    #cnt-form p {
        font-size: 15px;
    }
    .hr-sp {
        margin-top: 10px;
    }
    #cnt-form h1 {
        height: 60px;
    }
}
@media only screen and (max-width: 460px) {
    .header-sub-inn {
        margin-left: 0;
    }
    #card-candidate,
    #card-employer {
        width: 100%;
    }
    .txt-about {
        width: 94%;
    }
    .desc-a-card {
        font-size: 17px;
    }
    /*#card-candidate p {*/
    /*    font-size: 14px;*/
    /*}*/
    #insta-logo {
        width: 135px;
    }
    #rec-logo{
    width:110px;
    background-image: url(media/CorporateMember-lightShort.png);
    }
    .card-j-links, .card-m-links{
        font-size:15px;
    }
    #submit-form{
        font-size:15px;
    }
    #cnt-form input{
        width:90%;
    }
    #cnt-info-2 textarea{
        width:90%;
    }
        .ct-scroll-title{
        top:-40px;
    }
    .h2-card-title {
         font-size:19px;
    }
    #card-candidate .card-m-links{
        bottom:22px;
    }
}
