
/**
  Нормализация блочной модели
 */
*,
*::before,
*::after {
    box-sizing: border-box;
}

/**
  Убираем внутренние отступы слева тегам списков,
  у которых есть атрибут class
 */
:where(ul, ol):where([class]) {
    padding-left: 0;
}

/**
  Убираем внешние отступы body и двум другим тегам,
  у которых есть атрибут class
 */
body,
:where(blockquote, figure):where([class]) {
    margin: 0;
}

/**
  Убираем внешние отступы вертикали нужным тегам,
  у которых есть атрибут class
 */
:where(
  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  p,
  ul,
  ol,
  dl
):where([class]) {
    margin-block: 0;
}

:where(dd[class]) {
    margin-left: 0;
}

/**
  Убираем стандартный маркер маркированному списку,
  у которого есть атрибут class
 */
:where(ul[class]) {
    list-style: none;
}

/**
  Упрощаем работу с изображениями
 */
img {
    display: block;
    max-width: 100%;
}

/**
  Наследуем свойства шрифт для полей ввода
 */
input,
textarea,
select,
button {
    font: inherit;
}

html {
    /**
      Пригодится в большинстве ситуаций
      (когда, например, нужно будет "прижать" футер к низу сайта)
     */
    height: 100%;
    /**
      Плавный скролл
     */
    scroll-behavior: smooth;
}

body {
    /**
      Пригодится в большинстве ситуаций
      (когда, например, нужно будет "прижать" футер к низу сайта)
     */
    min-height: 100%;
    /**
      Унифицированный интерлиньяж
     */
    line-height: 1.5;
}

/**
  Удаляем все анимации и переходы для людей,
  которые предпочитают их не использовать
 */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

body {
    font-size: clamp(14px, 0.83vw, 16px);
    font-weight: 400;
    line-height: 1.75;
    background-color: white;
    font-family: "Arial", sans-serif;

}


.container {
    max-width: calc(1300px + 15 * 2);
    margin: 0 auto;
    padding-inline: 350px;
}



.header-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: transparent;
    flex-direction: row;
    width: 100%;
}

header:hover {
    transition: background 0.5s ease-in-out;
    border-bottom: 1px solid rgba(255, 255, 255, 0.192);
    border-color: rgba(255, 255, 255, 0.192);
    background: rgba(255, 255, 255, 0.192);
    backdrop-filter: blur(10px);

}





section {
    padding-bottom: 100px;
    padding-top: 100px;
}


.header-menu-list-main {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 50px;


}

.header-logo {
    flex-shrink: 0;
}

.header-menu-link-main {
    display: inline-flex;
    min-height: 90px;
    align-items: center;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1.2px;
}
.header-menu-link-main:hover {
    color: #fc1058;
}

.header-menu-list-main a {
    color: white;
    font-weight: bold;
}

.main-banner {
    min-height: 100vh; /* 585px была */
    background-color: #b8d0da;
    background-image: linear-gradient(180deg, rgba(243, 243, 243, 0), rgba(184, 208, 218, 0) 33%, hsla(0, 0%, 100%, 0.26) 66%, hsla(0, 0%, 100%, 0.84) 83%, #fff), url('./../img/picpanelexp.webp');
    color: white;

}

.main-banner {
    display: flex;
    flex-direction: column;
    gap: 25vh;

}

.banner-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    width: 100%;
}

.banner-str-button {
    background-color: white;
    padding: 25px 30px;
    display: inline-flex;
    align-items: center;
    border: 1px solid white;
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 10px;
    color: black;
    font-weight: bold;


}

.banner-str-button:hover {
    background-color: red;
    color: white;
    transition-duration: 0.5s;
    border: 1px solid red;
}

.vacancies-content-body {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;


}

.vacancies-content-body-item {
    background: rgb(244, 244, 244);
    border-bottom: 1px solid #dbdbdb;
    box-shadow: 5px 5px 5px rgba(15, 15, 15, 0.15);
    border-radius: 8px;
    height: 200px;
    padding: 24px 16px;
    display: flex;
    flex-direction: column;
    color: #5a5a5a;
    cursor: pointer;
    width: 100%;



}
/* Panels*/


.link-vacancies {
    margin: 0;
    padding: 0;
    text-decoration: none;
    color: #5a5a5a;

}



.vacancies-content-body-item:hover .vacancies-name{
    color: rgb(255, 0, 38);
}
.vacancies-content-body-item:hover .link-info{
    color: rgb(255, 0, 38);
}


.more-info {
    margin-top: auto;

}

.more-info a {
    text-decoration: none;
    color: #5a5a5a;

}







.vacancies-content-body-item:nth-child(3) {
    grid-column:  span 2;

}


.vacancies-content-body-item:nth-child(4) {
    grid-column:  span 2;

}

.vacancies-content-body-item:nth-child(9) {
    grid-column:  span 2;

}

.vacancies-content-body-item:nth-child(10) {
    grid-column:  span 2;

}

.vacancies-content-body-item:nth-child(15) {
    grid-column:  span 2;

}

.vacancies-content-body-item:nth-child(16) {
    grid-column:  span 2;

}


.divider-content {
    border-bottom: 1px solid #131619;
    height: 1px;
    margin: 0 350px;

}


/* Conditions */

.name-block h1 {
    margin: 0;
    padding: 0;
}

.name-block {
    padding-bottom: 80px;
}

.conditions-list {
    list-style: none;


}



.conditions-list ul {
    margin: 0;
    padding: 0;
}

.conditions-list li {
    border-bottom: 1px solid #e1e4e9;
    padding-bottom: 40px;
    padding-top: 40px;
}

.conditions-list li:first-child {
    padding-top: 0;
}

.w-500 {
    width: 50%;
}

.conditions-body-content {
    width: 50%;
}

.conditions-body {
    width: 100%;
}

.office-content {
    width: 100%;
}


.wrapper-content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;

}

/* Office */

.wrapper-office-content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 10px;
    min-width: 290px;
}

.block-office {
    max-height: 607px;
    height: 607px;
    width: 100%;
    min-width: 295px;
    max-width: 400px;
    display: flex;
    align-items: flex-end;

}

#block-expert-office-1 {
    background: url("./../img/off4.webp");
    background-size: cover; /* или contain, в зависимости от того, как вы хотите масштабировать картинку */
    background-position: center center; /* или другие настройки расположения фоновой картинки */
    background-repeat: no-repeat;
}

#block-expert-office-2 {
    background: url("./../img/off6.webp");
    background-size: cover; /* или contain, в зависимости от того, как вы хотите масштабировать картинку */
    background-position: center center; /* или другие настройки расположения фоновой картинки */
    background-repeat: no-repeat;
}

#block-expert-office-3 {
    background: url("./../img/off5.webp");
    background-size: cover; /* или contain, в зависимости от того, как вы хотите масштабировать картинку */
    background-position: center center; /* или другие настройки расположения фоновой картинки */
    background-repeat: no-repeat;
}




.block-office p {
    margin: 0;
    padding-bottom: 20px;
    padding-left: 20px;
    font-size: clamp(15px, 0.94vw, 18px);
    font-weight: bold;
}

/* FORM */

.wrapper-form-content {
    display: flex;
    flex-direction: row;
    justify-content: center;
    min-width: 290px;
}

.form-career {
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 500px;
    gap: 32px;
    min-width: 260px;
    width: 100%;
}

.form-career input , textarea {
    border: none;
    border-bottom: 1px solid #dbdbdb;
    outline:none;
}


textarea {
    resize: none;
}


.block-form-content {
    background: rgb(244, 244, 244);
    padding: 32px;
    box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.76);
    border: 1px solid #dbdbdb;
    border-radius: 8px;

}


#career-submit {
    background-color: transparent;
    border: 1px solid #5a5a5a;
    border-radius: 10px;
    padding: 12px 32px;
    color: #0f0f0f;
}

.form-file {

    position: relative;
}

.transp-bg-input {
    background-color: transparent;
}

.form-file-button {
    width: 100%;
    height: 100%;
    background: none;
    border: 1px dashed #9c9c9c;
    border-radius: 8px ;
    overflow-y: initial;
    max-width: none;
    cursor: pointer;


}

.form-file-info {
    background: rgba(202, 201, 201, 0.66);
    color: #5a5a5a;
    padding: 4px 8px;
    border-radius: 8px;
    height: 40px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;





}

.h1-center-career {
    text-align: center;
}
.button-corner {
    color: #7000ff;
    font-weight: bold;

}

.form-file-button::after {
    display: block;
    padding-top: 4px;
    content: "PDF, DOC";
    color: #9c9c9c;

}

.form-file input[type="file"] {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    z-index: 1;

}

.check-policy label {
    display: flex;
    flex-direction: row;
    gap: 15px;

}

.form-career input[type="submit"] {
    cursor: pointer;
}
#career-submit:hover {
    background-color: black;
    color: white;
    transition: 0.5s;
}

/* FOOTER */
.footer {
    padding: 50px 0;
    background-color: #0c2434;
    color: white;
    font-size: clamp(14px, 1.04vw, 20px);

}

.footer-main {
    min-height: 100px;




}



.footer-main-box {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;



}


.footer-main-box-contacts {


}

.footer-agreement {
    font-size: 12px;

}


.divider-name-footer {
    border-bottom: 1px solid indianred;

}


.divider-name-footer {
    border-bottom: 1px solid indianred;

}

.htalent {
    color: white;
}


/* FONT */


.name-block h1 {
    font-size: clamp(25px, 2.86vw, 55px);
}



.text-format-vacancies {
    font-size: clamp(14px, 0.83vw, 16px);
}

.text-name-vacancies {
    font-size: clamp(15px, 0.93vw, 18px);
    font-weight: bold;

}


.link-info {
    font-size: clamp(18px, 1.04vw, 20px);
}

.presentation-bg-container {
    background-color: #b8d0da;
    background-image: linear-gradient(360deg, #fff, rgba(255, 254, 254, 0.47), rgba(241, 243, 244, 0.53) 33%, hsl(0, 100%, 98%) 66%, hsla(0, 0%, 100%, 0.9) 83%, #fff), url(./../img/picoffice.webp);
    background-size: 3840px , auto;
    background-repeat: no-repeat;
    padding-bottom: 40px;

}

.bg-img {
    display: block;
    width: 100%;
    height: 100%;



}
/* -------------------------------------- */


.pop_up {
    width: 100%;
    height: 100%;
    position: fixed;
    left: 0;
    top: 0;
    background-color: transparent;
    z-index: 2;
    transform: scale(0); /*-44.5*/
    transition: 0.5s;
}

.pop_up.active {
    transform: translateY(0%) scale(100%);
    background-color: rgba(26, 58, 83, 0.8);
}


.pop_up_container {
    display: flex;
    width: 100%;
    height: 100%;

}

.pop_up_body {
    margin: auto;
    max-width: 1200px;
    background-color: white;
    border-radius: 20px;
    max-height: 600px;
    position: relative;
    overflow: hidden;
    padding: 50px 15px 50px 15px;

}

.pop_up_scrolling {
    overflow: auto; /* Добавьте это свойство */
    max-height: 500px; /* Укажите максимальную высоту, если это необходимо */
}


.pop_up_body p {
    font-size: clamp(10px, 0.8vw, 15px);
    font-family: "Nunito Sans", sans-serif;
    font-weight: 600;
    color: #22262D;
    margin-bottom: 40px;

}



.pop_up_body select:focus {
    outline: none;
}



.pop_up_close {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 21px;
    cursor: pointer;


}

#open_pop_up {
    color: black;
}

.banner-title {
    font-weight: 700;
    font-size: clamp( 41px, 3.02vw, 58px);
    line-height: 1.27;



}

.banner-title h3 {
    margin: 0;
    padding: 0;
}

.banner-info {
    font-weight: 700;
    font-size: 23.5px;



}




@media (min-width: 1919px) {
    .main-banner {
        background-size: cover;
    }

    .container {
        padding-inline: 350px;
    }
}


@media (max-width: 1919px) {
    .main-banner {
        background-size: cover;
    }

    .header, .banner, .container{
        padding-inline: 250px;
    }
}

@media (max-width: 1440px) {
    .header, .banner, .container{
        padding-inline: 100px;
    }


}


@media (max-width: 1280px) {
    .header {
        flex-wrap: wrap;
        row-gap: 10px;
        padding-top: 20px;


    }

    .header, .banner, .container{
        padding-inline: 15px;
    }
    .header-menu {
        order: 1;
        flex-basis: 100%;
    }

    .header-menu-link {
        height: 50px;
    }



    .footer-main-box {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }

    .header-menu-list-main {
        gap: 20px;
    }





}

@media (max-width: 1024px) {

    .header-main {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-direction: column;
        width: 100%;
    }

    .header, .banner, .container{
        padding-inline: 15px;
    }

    .header-menu {
        order: 1;
        flex-basis: 100%;
    }

    .header-menu-link {
        height: 50px;
    }

    .inline-banner{
        display: flex;
        flex-direction: column;
        align-items: flex-start;

    }




    .footer-main-box {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }





    .wrapper-office-content {
        display: flex;
        flex-direction: row;
        justify-content: center;
    }



}

@media (max-width: 776px) {

    h1 {
        text-align: center;
    }
}

@media (max-width: 930px ){

    .header {
        flex-wrap: wrap;
        row-gap: 10px;
        padding-top: 20px;


    }

    .header, .banner, .container{
        padding-inline: 15px;
    }

    .header-menu {
        order: 1;
        flex-basis: 100%;
    }

    .header-menu-link {
        height: 50px;
    }

    .header-main {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-direction: column;
        width: 100%;
    }




    .footer-main-box {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }



    .main-banner {
        display: flex;
        flex-direction: column;
        gap: 25vh;
    }

    .vacancies-content-body {
        display: flex;
        flex-direction: column;
    }

    .wrapper-office-content {
        display: flex;
        flex-direction: column;
    }

    .w-500 {
        display: none;
    }

    .wrapper-content {
        display: flex;
        justify-content: space-between;

    }

    .conditions-body-content {
        width: 100%;
    }

    .block-form-content {
        padding: 24px 10px;
    }

    .wrapper-office-content {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }


}


@media (max-width: 500px) {
    .form-career {
        max-width: 290px;
    }
}



/* ACC */
.worth-style.accordion {
    background-color: transparent;
    color: black;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    transition: 0.4s;
    border-bottom: 1px solid rgba(77, 77, 77, 0.08);
    font-size: clamp(17px, 1.30vw, 25px);
    align-items: center;

    margin: 0


}

/*.accordion.active {
    background-color: #ccc;
}*/

.worth-style.accordion::after {
    content: '\002B'; /* Plus sign */
    float: right;
    font-size: 24px;
    color: #7000ff;
    line-height:24px;
    width: 22px;
    height: 20px;
    font-weight: bolder;
    margin: 0;

}

.worth-style.accordion.active::after {
    content: '-'; /* Minus sign \2212 */
    font-size: 24px;
    color: #7000ff;
    line-height:24px;
    width: 22px;
    height: 20px;
    font-weight: bolder;
    margin: 0;

}
.worth-st.panel {
    padding: 0 18px;
    background-color: transparent;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    color: black;
}


/* Список */

.item-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.vacancy-marker {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;

}

.vacancy-marker::before {
    content: "▪";
    color: rgba(112, 0, 255, 0.2);
    font-size: 25px;
    font-weight: bold;
}

.item-list ul {
    margin: 0;
    padding: 0;

}


.presentation-bg-footer-container {
    background-color: #f1f4f4;
    background-image: linear-gradient(360deg, rgb(12, 36, 52), rgba(184, 208, 218, 0.89) 33%, hsla(0, 0%, 100%, 0.65) 66%, hsla(0, 0%, 100%, 0.74) 83%, #fff), url(./../img/footerbg.webp);
    background-position: 0px 0px, 50% 50%;
    background-size: auto, cover;
    background-repeat: repeat, no-repeat;

}

.bg-footer-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;


}
.li-marker-it {
    list-style-type: none;
    position: relative;
    padding-bottom: 8px;
    font-style: normal;
    font-weight: 325;
    font-size: clamp(15px, 1.25vw, 24px);
    line-height: min(130% , 180%);
    margin-left: 36px;
}



.li-marker-it::before {
    content: "";
    margin: 9px 21px 9px 9px;
    width: 6px;
    height: 6px;
    display: block;
    position: absolute;
    right: 100%;
    background-color: rgba(112, 0, 255, 0.2);
}