/* Main */
.main {
    position: relative;
}

.main__fixed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.5;
    background-image: url(../img/bg-seccity.jpg);
    background-attachment: fixed;
}

/* Main CV */
.main__cv {
    margin-top: 30px;
}

.main__cv--wrapper {
    padding: 20px 0;
}

.cv__item--wrapper {
    position: relative;
    background: linear-gradient(50deg, #86add4, white);
    min-height: 260px;
    padding-left: 24px;
}

.cv__item--description {
    max-width: 60%;
}

.cv__item--description h2 {
    font-size: 20px;
    padding: 20px 0 15px;
}

.cv__item--description h3 {
    font-size: 15px;
    font-weight: 400;
    padding-bottom: 50px;
}

.cv__item--link {
    display: inline-block;
    padding: 10px 20px;
}

.cv__item--img {
    position: absolute;
    top: 30px;
    right: 0;
    width: 250px;
    height: 200px;
}

/* Main Recruitment */
.main__recruitment--wrapper {
    padding: 20px 0;
}

.main__item--title {
    font-weight: 500;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 15px;
    display: block;
    font-size: 20px;
    text-transform: uppercase;
    position: relative;
    color: #00b14f;
}


.recruitment__item {
    position: relative;
    padding-bottom: 10px;
}

.recruitment__item--wrapper {
    background-color: white;
    border-radius: 8px;
    display: flex;
    padding: 8px 10px;
    box-shadow: 0 4px 8px 0 rgb(0 0 0 / 3%), 0 6px 20px 0 rgb(0 0 0 / 6%);
}

.recruitment__item--wrapper:hover {
    background-color: #c6f4ff;
}

.recruitment__item--img img {
    width: 75px;
    height: 80px;
    border-radius: 6px;
}

.recruitment__item--time {
    margin-top: 5px;
    border-radius: 4px;
    text-transform: uppercase;
    font-size: 11px;
    color: white;
    background-color: #00b14f;
    text-align: center;
}

.recruitment__item--name {
    flex: 1;
    padding: 2px 10px 0px;
}

.recruitment__name--title {
    font-size: 14px;
    margin-top: 0;
    text-transform: uppercase;
}

.recruitment__name--link {
    line-height: 22px;
    text-decoration: none;
    color: #000;
}

.recruitment__name--link:hover {
    text-decoration: underline;
    color: #249ce7;
}

.recruitment__employer--link {
    text-decoration: none;
    color: #000;
}

.recruitment__employer--link:hover {
    color: #249ce7;
}

.recruitment__icon {
    width: 20px;
    display: inline-block;
}

.recruitment__salary {
    color: #00b14f;
    font-size: 14px;
}

/* Main Employer */
.main__employer--wrapper {
    padding: 20px 0;
}

.employer__item {
    padding-bottom: 15px;
}

.employer__item--wrapper {
    background-color: white;
    border-radius: 6px;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.employer__item--wrapper:hover {
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

.employer__item--link {
    display: block;
    text-decoration: none;
    height: 150px;
    padding: 10px 15px;
    cursor: pointer;
}

.employer__item--link img {
    display: block;
    margin: auto;
    max-height: 100%;
    max-width: 100%;
    height: 100%;
    width: auto;
}

/* Main blogs */
.main__blog, .main__recruitment {
    padding-top: 20px;
    padding-bottom: 20px;
}

.blog__item {
    margin-bottom: 20px;
}

.blog__item--wrapper {
    overflow: hidden;
    border-radius: 4px;
    transition: all .1s linear;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.blog__item--link:hover {
    text-decoration: none;
}

.blog__item--wrapper:hover {
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

.blog__item--img {
    height: 200px;
    overflow: hidden;
}

.blog__item--img > img {
    width: 100%;
    height: 100%;
    object-fit: fill;
}

.blog__item--content {
    padding: 20px;
}

.blog__item--description {
    min-height: 120px;
}

.blog__item--name {
    text-transform: uppercase;
    font-size: 15px;
    color: #000;
    margin-top: 5px;
    margin-bottom: 5px;
}

.blog__item--data {
    font-size: 14px;
    color: rgba(0, 0, 0, 0.5);
}

.blog__item--see {
    font-size: 14px;
    color: rgba(2, 2, 2, 0.5);
    font-style: italic;
    text-decoration: underline;
    margin-top: 5px;
}

