/* ===== MENU ===== */
.menu ul {
    justify-content: flex-start;
}
.menu ul li {
    margin-right: 40px;
}

/* ===== BANNER ===== */
section.Banner {
    text-align: center;
    padding-top: 40px;
    padding-bottom: 70px;
}

.Banner p {
    font-family: 'Ubuntu';
    font-weight: 400;
    font-size: 20px;
    line-height: 1.65;
    color: rgba(255,255,255,0.55);
    margin-bottom: 40px;
}

.Banner__wrapper {
    position: relative;
    padding: 48px 40px 44px;
    border-radius: 25px;
}

section.Banner h1 {
    font-size: 48px;
    margin-bottom: 16px;
}

.Banner__wrapper:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: linear-gradient(120deg, #FF058C 0%, #0ABAB5 100%);
    border-radius: 25px;
    z-index: -2;
}

.Banner__wrapper:after {
    content: '';
    position: absolute;
    width: calc(100% - 2px);
    height: calc(100% - 2px);
    top: 1px;
    left: 1px;
    border-radius: 24px;
    background: #080808;
    z-index: -1;
}

.Banner__label {
    font-family: 'Ubuntu';
    font-weight: 400;
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    margin-bottom: 20px;
}

/* ===== H2 ===== */
h2 {
    margin-bottom: 60px;
}

/* ===== VACANCIES ===== */
section.Vacancies {
    padding-bottom: 80px;
}

.Vacancies__dropdown {
    margin-bottom: 10px;
}

.Vacancies__dropdown_title {
    background: rgba(255,255,255,0.025);
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.1);
    padding: 26px 40px;
    margin-bottom: 0;
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: border-color 0.3s ease, background 0.3s ease;
}

.Vacancies__dropdown_title:hover {
    border-color: rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.04);
}

.Vacancies__dropdown_title p {
    font-family: 'Montserrat';
    font-weight: 700;
    font-size: 28px;
    line-height: 100%;
    color: #ffffff;
    margin: 0;
    text-transform: uppercase;
    transition-duration: .3s;
}

.Vacancies__dropdown_title span {
    position: relative;
    transform: none;
    flex-shrink: 0;
    margin-left: 24px;
    width: 32px;
    height: 32px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    transition: border-color 0.3s ease, transform 0.35s ease;
}

.Vacancies__dropdown_title span:before {
    content: '';
    position: absolute;
    width: 2px;
    height: 14px;
    background: rgba(255,255,255,0.45);
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: opacity 0.25s ease, background 0.25s ease;
}

.Vacancies__dropdown_title span:after {
    content: '';
    position: absolute;
    height: 2px;
    width: 14px;
    background: rgba(255,255,255,0.45);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: background 0.25s ease;
}

.Vacancies__dropdown_content {
    display: none;
    padding: 32px 40px 40px;
    border: 1px solid rgba(255,5,140,0.2);
    border-top: none;
    border-radius: 0 0 18px 18px;
}

.Vacancies__dropdown_content h3 {
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 16px;
    margin-bottom: 20px;
    font-size: 20px;
    color: rgba(255,255,255,0.9);
}

.Vacancies__dropdown_content .col-lg-6 span {
    font-family: 'Ubuntu';
    font-weight: 400;
    font-size: 17px;
    line-height: 1.7;
    color: rgba(255,255,255,0.55);
}

.Vacancies__dropdown_content .col-lg-12 {
    margin-top: 48px;
}

.button_wrapper {
    display: flex;
    justify-content: center;
}

.Vacancies__dropdown.show .Vacancies__dropdown_title {
    background: rgba(255,5,140,0.04);
    border-color: rgba(255,5,140,0.4);
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.Vacancies__dropdown.show .Vacancies__dropdown_title p {
    color: #ffffff;
}

.Vacancies__dropdown.show .Vacancies__dropdown_title span {
    border-color: rgba(255,5,140,0.6);
    transform: rotate(45deg);
}

.Vacancies__dropdown.show .Vacancies__dropdown_title span:before {
    background: #FF058C;
    opacity: 0;
}

.Vacancies__dropdown.show .Vacancies__dropdown_title span:after {
    background: #FF058C;
}

/* ===== ADVANTAGES ===== */
section.Advantages {
    padding-top: 60px;
    padding-bottom: 80px;
}

section.Advantages .Advantages__card {
    background: rgba(255,255,255,0.025);
    border: 1px solid rgba(255,255,255,0.09);
    transition: border-color 0.35s ease, background 0.35s ease, box-shadow 0.35s ease;
}

section.Advantages .Advantages__card_text {
    color: rgba(255,255,255,0.6);
    font-weight: 400;
}

.Advantages__card.pink {
    transition-duration: .35s;
}

.Advantages__card.green {
    transition-duration: .35s;
}

.Advantages__card.pink:hover {
    background: rgba(255,5,140,0.04);
    border-color: rgba(255,5,140,0.45);
    box-shadow: 0 0 50px rgba(255,5,140,0.07);
    color: #ffffff;
}

.Advantages__card.green:hover {
    background: rgba(10,186,181,0.04);
    border-color: rgba(10,186,181,0.45);
    box-shadow: 0 0 50px rgba(10,186,181,0.07);
    color: #ffffff;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .Vacancies__dropdown_content .col-lg-6:last-child {
        margin-top: 24px;
    }
}

@media (max-width: 768px) {
    section.Advantages .Advantages__card {
        pointer-events: all;
    }

    .Banner p {
        font-size: 16px;
        line-height: 1.55;
    }

    section.Banner {
        padding-top: 20px;
        padding-bottom: 50px;
    }

    .Banner__wrapper {
        padding: 32px 20px 28px;
    }

    section.Banner h1 {
        font-size: 32px;
    }

    h2 {
        margin-bottom: 40px;
    }

    .Vacancies__dropdown_title {
        padding: 20px 24px;
    }

    .Vacancies__dropdown_title p {
        font-size: 18px;
    }

    .Vacancies__dropdown_title span {
        width: 26px;
        height: 26px;
        margin-left: 16px;
    }

    .Vacancies__dropdown_title span:before {
        height: 10px;
    }

    .Vacancies__dropdown_title span:after {
        width: 10px;
    }

    .Vacancies__dropdown_content {
        padding: 24px 20px 28px;
    }

    .Vacancies__dropdown_content h3 {
        font-size: 18px;
    }

    .Vacancies__dropdown_content .col-lg-6 span {
        font-size: 15px;
    }

    .Vacancies__dropdown_content .col-lg-6:last-child {
        margin-top: 20px;
    }

    .Vacancies__dropdown_content .col-lg-12 .Pink__button {
        width: 100%;
    }

    section.Advantages {
        padding-bottom: 0;
    }

    section.Advantages .Advantages__card {
        padding: 17px;
    }

    .Advantages__card_title svg {
        width: 35px;
        height: 39px;
    }

    section#Cooperation {
        padding-top: 40px;
        padding-bottom: 40px;
    }
}

@media (max-width: 400px) {
    h1 {
        font-size: 28px;
    }
}