/* ===== IMPORTED STYLE ===== */
@import url("select2.min.css");

@font-face {
    font-family: 'Mariupol';
    src: url('../fonts/Mariupol/Mariupol-Bold.woff2') format('woff2'), url('../fonts/Mariupol/Mariupol-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Mariupol';
    src: url('../fonts/Mariupol/Mariupol-Medium.woff2') format('woff2'), url('../fonts/Mariupol/Mariupol-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Mariupol';
    src: url('../fonts/Mariupol/Mariupol-Regular.woff2') format('woff2'), url('../fonts/Mariupol/Mariupol-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat Alternates';
    src: url('../fonts/MontserratAlternates/MontserratAlternates-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

/* ===== IMPORTED STYLE END ===== */

/* ===== Theme default ===== */
:root {
    --black: #000;
    --white: #fff;
    --red: #FF5252;
    --gray: #828282;
    --title-color: #2EA4DE;
    --main-font: 'Mariupol';
}

html {
    height: 100%;
}


svg {
    width: 100%;
    height: 100%;
    display: block;
}

a {
    position: relative;
    color: inherit;
    transition: 0.25s;
}

a:hover {
    transition: 0.25s;
}

b,
strong {
    font-weight: bold;
}

p:not(:last-child) {
    margin-bottom: 1em;
}

ul:not([class]) li,
ol:not([class]) li {
    margin-bottom: 1em;
}

ul:not([class]),
ol:not([class]) {
    padding-left: 20px;
    margin-bottom: 20px;
}

p a:hover,
ul:not([class]) li a:hover,
ol:not([class]) li a:hover {
    text-decoration: none;
}

p a,
ul:not([class]) li a,
ol:not([class]) li a {
    color: red;
    text-decoration: underline;
}

table {
    width: 100%;
    margin: 3rem 0;
}

table tr {
    border: 1px solid #ddd;
}

table th,
table td {
    padding: 1rem;
    text-align: center;
    border-right: 1px solid #ccc;
}

table th {
    text-transform: uppercase;
    background: rgba(0, 0, 0, 0.12);
    font-weight: bold;
}

.container {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

/* Slick Slider - Default Style */
.slick-slider {
    position: relative;
    display: block;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list {
    position: relative;
    overflow: hidden;
}

.slick-list.dragging {
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.slick-track {
    position: relative;
    left: 0;
    top: 0;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.slick-loading .slick-track {
    visibility: hidden;
}

.slick-slide {
    float: left;
    height: 100%;
    min-height: 1px;
    outline: none;
    display: none;
}

.slick-initialized .slick-slide {
    display: block;
}

.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent;
}

/* Slick Slider - Arrows */
.prev-slide,
.next-slide {
    flex: none;
    width: 40px;
    height: 40px;
    color: #fff;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .3s;
    border-radius: 5px;
}

.prev-slide:hover,
.next-slide:hover {
    background-color: #898183;
}

.prev-slide:hover svg,
.next-slide:hover svg {
    color: var(--white);
    transition: all .3s;
}

.prev-slide svg,
.next-slide svg {
    width: 8px;
    height: 16px;
    color: var(--red);
}

/* Slick Slider - Dots */
.slick-dotted.slick-slider {
    margin-bottom: 30px;
}

.slick-dots {
    position: absolute;
    bottom: -25px;
    list-style: none;
    display: block;
    text-align: center;
    padding: 0;
    margin: 0;
    width: 100%;
}

.slick-dots li {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    padding: 0;
    cursor: pointer;
}

.slick-dots li button {
    border: 0;
    background: #413680;
    display: block;
    height: 20px;
    width: 20px;
    outline: none;
    line-height: 0px;
    font-size: 0px;
    color: transparent;
    padding: 5px;
    cursor: pointer;
}

.slick-dots li button:hover,
.slick-dots li button:focus {
    outline: none;
}

.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
    opacity: 1;
}

.slick-dots li.slick-active button {
    background: green;
}

/* Buttons */
.speciality-btn {
    font-family: var(--main-font);
    font-size: 17px;
    font-weight: bold;
    display: inline-flex;
    padding: 13px 30px;
    background: var(--red);
    position: relative;
    text-align: center;
    transition: all 0.25s;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--red);
    cursor: pointer;
    color: #fff;
    border-radius: 5px;
}

.speciality-btn:hover {
    background: transparent;
    transition: all 0.25s;
    color: var(--red);
}

.speciality-btn--transparent {
    background: transparent;
    color: var(--red);
}

.speciality-btn--transparent:hover {
    background: var(--red);
    color: #fff;
}

/* Breadcrumb */
.speciality-breadcrumb {
    padding: 20px 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.speciality-breadcrumb li {
    display: flex;
    align-items: center;
    font-size: 12px;
}

.speciality-breadcrumb li a:hover {
    color: red;
}

.speciality-breadcrumb li:not(:last-child)::after {
    content: '';
    display: block;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #cccccc;
    margin: 0 10px;
}

.speciality-breadcrumb li:last-child a {
    pointer-events: none;
    color: #cccccc;
}

/* Select */
.speciality-select-wrapper .speciality-select {
    width: 100%;
}

.speciality-select {
    position: relative;
}

.speciality-select .select2-container {
    width: 100% !important;
    min-width: 0;
    display: block;
}

.speciality-select .speciality-select-icon {
    width: 15px;
    height: 15px;
    display: block;
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    z-index: 1;
}

.speciality-select-icon img {
    width: 100%;
}

.speciality-select .select2-container {
    width: 100% !important;
}

.speciality-select .select2-container .select2-selection--single {
    height: 53px;
}

.speciality-select .select2-container .select2-selection--single .select2-selection__rendered {
    padding: 10px 20px 10px 40px;
    height: 100%;
    font-size: 16px;
    line-height: 1.9;
}

.speciality-select .select2-container--default .select2-selection--single .select2-selection__arrow b {
    display: none;
}

.speciality-select .select2-container--default .select2-selection--single .select2-selection__arrow {
    width: 14px;
    background: url(../img/icons/angle_down.svg) no-repeat center center / contain;
    height: 8px;
    top: 50%;
    transform: translateY(-50%);
    right: 15px;
}

.speciality-select .select2-container--open.select2-container--default .select2-selection--single .select2-selection__arrow {
    transform: rotate(180deg) translateY(50%);
}

.speciality-select .select2-container--default .select2-selection--single .select2-selection__clear {
    display: none;
}

.speciality-select .select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: #242424;
}

.speciality-page-banner {
    padding: 65px 0;
}

.speciality-main-title {
    color: #fff;
    font-weight: bold;
    display: block;
    line-height: 1.2;
    font-size: 40px;
}

.speciality-page {
    padding-bottom: 40px;
    background:#F7F8FA;
}

.speciality-page-head {
    margin-bottom: 30px;
}

.speciality-page-body {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.speciality-right-aside,
.speciality-left-aside {
    width: 22%;
}

.speciality-page-content {
    width: 75%;
}

.speciality-page-main {
    width: 52%;
}

.speciality-vacation-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 30px;
    margin-bottom: 40px;
}

.speciality-vacation-card {
    padding: 5px 20px;
    background: #fff;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    height: 65px;
}

.speciality-vc-title {
    color: var(--title-color);
    font-weight: bold;
    width: 22%;
    font-size: 14px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    white-space: nowrap;
}

.speciality-vc-salary {
    display: flex;
    font-size: 14px;
    color: var(--gray);
    flex-wrap: wrap;
    align-items: center;
}

.speciality-vc-salary span {
    font-size: 16px;
    font-weight: bold;
    color: #000;
    line-height: 1;
    display: inline-block;
    margin-left: 5px;
}

.speciality-vc-link {
    display: flex;
    align-items: center;
    color: var(--title-color);
    font-weight: 500;
    font-size: 13px;
    transition: all 0.25s;
    white-space: nowrap;
}

.speciality-vc-link img {
    margin-left: 7px;
}

.speciality-vc-link:hover {
    opacity: 0.7;
    transition: all 0.25s;
}

.speciality-sidebar {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 30px;
}

.speciality-sidebar-title {
    font-weight: bold;
    font-size: 24px;
    display: block;
    margin-bottom: 20px;
    line-height: 1.2;
}

.speciality-select-label {
    display: block;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 7px;
}

.speciality-sidebar .speciality-select-wrapper {
    margin-bottom: 15px;
}

.speciality-sidebar .speciality-btn-container {
    margin-top: 16px;
}

.speciality-sidebar .speciality-btn {
    width: 100%;
    height: 50px;
}

.speciality-sidebar-select .speciality-select {
    width: 100%;
}

.show-hidden-block span:last-child,
.show-hidden-block.active span:first-child {
    display: none;
}

.show-hidden-block.active span:last-child {
    display: block;
}

.speciality-btn-container {
    display: flex;
    justify-content: center;
}

.speciality-pagination {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 40px;
}

.speciality-pagination-link {
    margin: 0 5px;
    display: block;
    font-size: 17px;
}

.speciality-pagination-link.current {
    font-size: 22px;
    transition: all 0.25s;
}

.speciality-pagination-link:hover {
    color: var(--red);
    transition: all 0.25s;
}

.speciality-widget-area img {
    width: 100%;
}

.speciality-page-title {
    display: block;
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 40px;
    text-align: center;
    line-height: 1.2;
}

.speciality-select-row {
    grid-template-columns: repeat(2, 1fr);
    display: grid;
    gap: 30px;
}

.speciality-pay {
    background: #fff;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    margin-top: 30px;
}

.speciality-pay-head {
    padding: 35px;
    border-bottom: 1px solid silver;
}

.speciality-pay-head p {
    margin: 0;
    text-align: center;
    font-size: 16px;
}

.speciality-pay-index {
    font-size: 24px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 10px;
}

.speciality-pay-index span {
    font-weight: bold;
    font-size: 40px;
    line-height: 1;
    color: var(--red);
    margin-right: 10px;
}

.speciality-pay-bottom {
    padding: 25px 50px;
    grid-template-columns: repeat(3, 1fr);
    display: grid;
    gap: 30px;
}

.speciality-pay-text {
    font-size: 16px;
    display: block;
}

.speciality-pay-text:first-child {
    color: var(--gray);
    margin-right: 5px;
}

.speciality-pay-descript {
    display: flex;
    flex-direction: column;
}

.speciality-barge {
    background: #fff;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    margin-top: 30px;
    padding: 30px;
}

.speciality-chart-head {
    display: flex;
    align-items: center;
    justify-content: center;
}

.speciality-barge-title {
    font-weight: bold;
    font-size: 26px;
    display: block;
    text-align: center;
    line-height: 1.2;
    margin-bottom: 25px;
}

.speciality-chart-head .speciality-barge-title {
    margin: 0;
}

.speciality-chart-select .speciality-select {
    width: auto;
}

.speciality-chart-select .speciality-select .select2-container .select2-selection--single .select2-selection__rendered {
    padding: 10px 35px 10px 10px;
    font-size: 26px;
    line-height: 1.2;
    font-weight: bold;
    color: var(--title-color);
}

.speciality-chart-select .select2-container--default .select2-selection--single {
    border: transparent;
}

.speciality-chart-select {
    margin-left: 10px;
}

.speciality-chart-dinamic {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 10px;
}

.speciality-chart-dinamic span {
    color: #2CC96A;
    display: inline-block;
    margin-left: 5px;
}

.speciality-barge p {
    width: 85%;
    margin: 0 auto;
}

.speciality-pt-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid #dbdbdb;
}

.speciality-pt-index {
    font-size: 18px;
    flex: 1;
    text-align: center;
    font-weight: 500;
}

.speciality-pt-index:first-child {
    text-align: left;
}

.speciality-pt-index:last-child {
    text-align: right;
}

.speciality-pt-head .speciality-pt-index {
    font-size: 14px;
    color: #888888;
    font-weight: 400;
}

.speciality-pt-index.green--text {
    color: #2CC96A;
}

.speciality-pt-index.red--text {
    color: var(--red);
}

.speciality-pay-table .speciality-btn-container {
    margin-top: 30px;
}

.speciality-vacancy {
    margin: 40px 0;
}

.speciality-vacancy-card {
    background: #fff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.07);
    border-radius: 15px;
    padding: 22px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.speciality-vacancy-logo {
    width: 88px;
    height: 35px;
    margin-bottom: 20px;
}

.speciality-vacancy-logo img {
    height: 100%;
    width: 100%;
    object-fit: contain;
    object-position: left;
}

.speciality-vacancy-title {
    color: var(--title-color);
    font-weight: bold;
    font-size: 18px;
    line-height: 1.1;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.speciality-vc-row {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
}

.speciality-vc-item {
    margin-right: 20px;
    display: flex;
    align-items: center;
}

.speciality-vc-item:last-child {
    margin-right: 0;
}

.speciality-vc-item {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.3;
}

.speciality-salary {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
    display: block;
    margin-bottom: 15px;
}

.speciality-btn-icon {
    width: 14px;
    height: 14px;
    color: #fff;
    margin-right: 1rem;
    transition: all 0.25s;
    display: block;
}

.speciality-btn:hover .speciality-btn-icon {
    color: var(--red);
    transition: all 0.25s;
}

.speciality-vacancy-card .btn-container {
    margin-top: 15px;
}

.speciality-vacancy-card .speciality-btn {
    width: 100%;
}

.speciality-verify-icon {
    width: 11px;
    margin-left: 5px;
}

.speciality-verify-icon img {
    width: 100%;
}

.speciality-vacancy-slider .slide {
    padding: 0 10px;
}

.speciality-vacancy-slider .slick-list {
    margin: 0 -10px;
}

.speciality-vacancy-slider .prev-slide,
.speciality-vacancy-slider .next-slide {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

.speciality-vacancy-slider .prev-slide {
    left: 0;
}

.speciality-vacancy-slider .next-slide {
    right: 0;
}

.speciality-main-descript {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-gap: 20px;
    grid-auto-rows: minmax(40px, auto);
}

.speciality-md-1 {
    grid-column: span 2;
    grid-row: span 2;
}

.speciality-md-2 {
    grid-column: span 3;
    grid-row: span 3;
}

.speciality-md-3 {
    grid-column: span 2;
    grid-row: span 4;
}

.speciality-md-4,
.speciality-md-5,
.speciality-md-6 {
    grid-column: span 1;
    grid-row: span 1;
}

.speciality-md-7 {
    grid-column: span 3;
    grid-row: span 3;
}

.speciality-md-8 {
    grid-column: span 2;
    grid-row: span 2;
}

.speciality-md-9 {
    grid-column: span 3;
    grid-row: span 3;
}

.speciality-md-10 {
    grid-column: span 2;
    grid-row: span 2;
}

.speciality-description {
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    padding: 30px 40px;
    height: 100%;
}

.speciality-num-item {
    border-radius: 20px;
    padding: 20px;
    height: 100%;
}

.speciality-num-index {
    display: block;
    font-size: 40px;
    font-weight: 500;
    color: #fff;
    text-align: center;
}

.speciality-num-item p {
    font-size: 14px;
    color: #fff;
    text-align: center;
    margin: 0 auto;
}

.speciality-advant-wrapper {
    display: flex;
    flex-wrap: wrap;
}

.speciality-advant-col {
    width: 50%;
}

.speciality-col-title {
    display: block;
    padding: 20px 25px;
    font-size: 14px;
    color: #888888;
}

.speciality-advant-item {
    padding: 15px 25px;
    display: flex;
    align-items: flex-start;
}

.speciality-advant-item p {
    font-size: 16px;
    color: #242424;
    font-weight: 500;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 65px;
}

.speciality-advant-item:nth-child(odd) {
    background: rgba(219, 219, 219, 0.2);
}

.speciality-advant-icon {
    display: block;
    margin-right: 10px;
    flex: none;
    width: 14px;
    height: 14px;
    margin-top: 5px;
}

.speciality-advant-icon img {
    width: 100%;
}

.speciality-advant-wrapper {
    border: 1px solid #dbdbdb;
    border-radius: 20px;
}

.speciality-num-item.bg-1 {
    background: #1350B6;
}

.speciality-num-item.bg-2 {
    background: #4BBCF3;
}

.speciality-num-item.bg-3 {
    background: #34AAE4;
}

.speciality-description-bottom {
    padding: 25px 40px;
    background: #1350B6;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin: 50px -40px 0;
}

.speciality-vacant-number {
    font-size: 60px;
    font-weight: 500;
    color: #fff;
    display: block;
    line-height: 1;
}

.speciality-description-link {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    text-decoration: underline;
}

.speciality-description .speciality-barge-title {
    text-align: left;
    margin-bottom: 20px;
}

.speciality-marker-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 7px;
    font-size: 16px;
    font-weight: bold;
}

.speciality-marker-list li::before {
    content: '';
    display: block;
    min-width: 12px;
    height: 12px;
    background: url(../img/icons/check.svg) no-repeat center center / contain;
    border-radius: 50%;
    margin: 5px 10px 0 0;
}

.speciality-description.sd--footer {
    padding: 40px 40px 0;
    overflow: hidden;
}

.speciality-description .speciality-pt-head {
    padding: 0 0 15px;
}

.speciality-num-item .speciality-description-link {
    font-weight: 400;
    text-align: center;
}

.speciality-num-item .speciality-description-link:hover {
    text-decoration: none;
}

.speciality-description-link img {
    width: 10px;
    height: 10px;
    display: inline-block;
    margin-left: 5px;
}

.speciality-main-descript .speciality-barge {
    margin: 0;
}

.speciality-barge-title .text--blue {
    color: var(--title-color);
}

.speciality-num-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.speciality-alt-vacation {
    margin: 60px 0;
}

.speciality-alt-vacation .speciality-barge-title {
    text-align: left;
}
.parent-specialities .speciality-select-wrapper {
    flex: 1;
    min-width: 0;
    overflow: hidden;
}
.parent-specialities {
    display:flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}