@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');

* {
	margin: 0;
	padding: 0;
	font-family: "Lato", sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 22px;
	line-height: 36px;
	color: rgba(0, 0, 0, 1);
}

body {
	display: flex;
	flex-direction: column;
	margin: 50px auto;
	width: 1040px;
}

strong,
strong *,
.h-strong,
.h-strong * {
	font-weight: 700;
}

.h-black,
.h-black * {
	font-weight: 900;
}

.h-red,
.h-red * {
	color: rgba(204, 30, 28, 1);
}

.c-job-card {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	border: 1px solid rgba(167, 167, 167, 1);
	box-shadow: 0 1px 10px rgba(0, 0, 0, 0.1);
}

.c-job-card + .c-job-card {
	margin-top: 20px;
}

.c-job-card__left {
	display: flex;
	flex-direction: column;
	flex: 1;
	padding: 15px 25px;
}

.c-job-card__right {
	display: flex;
	justify-content: center;
	align-content: center;
	flex-wrap: wrap;
	width: 140px;
	background-image: linear-gradient(45deg, #cc1e1c 0%, #ce3497 100%);
	cursor: pointer;
}

.c-job-card__title {
	margin: 9px 0 12px 0;
	font-size: 38px;
	line-height: 50px;
}

.c-job-card__specs {
	display: flex;
	flex-direction: row;
	list-style: none;
}

.c-specs__item {
	display: flex;
	flex-direction: row;
	align-items: center;
}

.c-specs__item,
.c-specs__item * {
	color: rgba(74, 74, 74, 1);
}

.c-specs__item + .c-specs__item {
	margin-left: 20px;
}

.c-specs__icon {
	margin-right: 10px;
	width: 25px;
	height: 25px;
}

.h-link-zoom {
	display: inline-block;
	line-height: 0;
	transition: transform 350ms ease;
}

.js-toggle:hover .h-link-zoom {
	transform: scale(1.1);
}

.c-specs__link {
	width: 60px;
	height: 60px;
	transform: rotate(90deg);
	transition: transform 350ms ease;
}

.js-toggle--active .c-specs__link {
	transform: rotate(-90deg);
}

.c-job-details {
	display: flex;
	flex-direction: column;
	padding: 15px 25px 25px 25px;
	border-top: 1px solid rgb(200, 200, 200);
}

.c-job-details__intro p + p {
	margin-top: 15px;
}

.c-job-btn {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	padding: 10px 20px;
	color: rgba(255, 255, 255, 1);
	text-decoration: none;
	background-image: linear-gradient(45deg, #cc1e1c 0%, #ce3497 100%);
}
