
/**
  Нормализация блочной модели
 */
*,
*::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: 300;
    line-height: 1.75;
    background-color: white;
    font-family: "Arial", sans-serif;

}

.container {
    max-width: calc(1900px + 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: #3cacdd;
    background-image: linear-gradient(180deg, rgba(171, 172, 175, 0.16), rgba(178, 180, 182, 0.25) 33%, hsla(0, 4%, 95%, 0.34) 66%, hsla(225, 22%, 96%, 0.99) 90%, #fff), url('./../img/bannercareer.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;
}



/*
FONT
*/

h3 {
    padding: 0;
    margin: 0;

}

.panels-vacancies-box-button a {
    font-size: clamp(19px, 1.14vw, 22px);
    color: black;
    text-decoration: none;
}




.panels-vacancies-box-info-content p {
    padding: 0;
    margin: 0;
    font-size: clamp(19px, 1.14vw, 22px);
}

h1 {
    font-size: clamp(25px, 3.12vw, 60px);
    margin: 0 0 100px;
}

.panel p {
    font-size: clamp(15px, 0.93vw, 18px);
    margin: 0;
    padding: 0;
}

.quotes-item-text p {
    font-size: clamp(15px, 1.30vw, 25px);
    margin: 0;
    padding: 0;
}

.panel-flex-block-content p {
    font-size: clamp(22px, 1.30vw, 25px);
    margin: 0;
    padding: 0;
}

.panel-flex-block-name h3{
    font-size: clamp(30px, 1.82vw, 35px);
    margin: 0;
    padding: 0;
    text-align: center;

}



/* PANEL */

.panel-vacancies-flex-block {
    padding: 30px;
    display: flex;
    flex-direction: column;
    height: 100%;


}

.panel-vacancies-flex-block:hover .panel-flex-block-content {
    text-transform: uppercase;
    font-weight: bold;
    transition: 0.5s;

}

.panel-vacancies-flex-block:hover .panels-vacancies-box-button a {

    font-weight: bold;
    text-transform: uppercase;
    transition: 0.5s;


}


.panels-vacancies-main-blockIT a {
    text-decoration: none;
    color: white;
}
.panels-vacancies-main-blockExp a {
    text-decoration: none;
    color: white;
}



.panels-vacancies-main-blockExp {
    width: 100%;
    min-width: 300px;
    height: 320px;
    border-color: #adbdcc;
    box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.48);
    border-style: solid;
    border-width: 1px;
    background: url("./../img/picpanelexp.webp");
    background-size: cover; /* или contain, в зависимости от того, как вы хотите масштабировать картинку */
    background-position: center center; /* или другие настройки расположения фоновой картинки */
    background-repeat: no-repeat;
    border-radius: 10px;
    color: #fff;

}


.panels-vacancies-main-blockIT {
    width: 100%;
    min-width: 300px;
    height: 320px;
    border-color: #adbdcc;
    box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.48);
    border-style: solid;
    border-width: 1px;
    background: url("./../img/picpanelspetc.webp");
    background-size: cover; /* или contain, в зависимости от того, как вы хотите масштабировать картинку */
    background-position: center center; /* или другие настройки расположения фоновой картинки */
    background-repeat: no-repeat;
    border-radius: 10px;
    color: #fff;

}

.panel-flex-block-name {
    border-bottom: 1px solid white;
}

.panels-vacancies-body {
    display: flex;
    flex-direction: column;
}

.panels-vacancies-body-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
    width: 100%;
}

.panels-vacancies-box-title {
    border-bottom: 1px solid white;
    padding-bottom: 15px;
}

.panels-vacancies-box-info-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.panels-vacancies-box-context {
    padding-top: 15px;
}

.panels-vacancies-box-button {
    margin-top: auto;


}

.panels-vacancies-box-button a {
    color: #fff;

}

/*#box-btn-exp {

    margin-top: 40px;
}

#box-btn-it {
    margin-top: 80px;
}*/




/* Talent-program */

/* Wrapper-window*/






.talent-program-main-block {
    width: 70%;
    background: rgba(255, 255, 255, 0.84);
    border: 2px solid rgba(255, 255, 255, .2); /*  */
    backdrop-filter: blur(20px);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.58);
    color: black;
    padding: 30px;
    border-radius: 10px;
    min-width: 290px;
}

.talent-program-body-wrapper {
    display: flex;
    flex-direction: row;

}

.w-500 {
    width: 30%;



}



.talent-program {

}

.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);
    margin: 0;
    position: relative;
    display: flex;
    align-items: center;


}



.accordion::after {
    content: '\002B'; /* Plus sign */
    float: right;
    font-size: clamp(22px, 1.30vw, 25px);
    color: #7000ff;
    line-height:24px;
    width: 22px;
    height: 20px;
    font-weight: bolder;
    margin: 0;
    position: absolute;
    right: 0; /* Выравнивание по правому краю */


}

.accordion.active::after {
    content: '-'; /* Minus sign \2212 */
    font-size: clamp(22px, 1.30vw, 25px);
    color: #7000ff;
    line-height:24px;
    width: 22px;
    height: 20px;
    font-weight: bolder;
    margin: 0;
    position: absolute;
    right: 0; /* Выравнивание по правому краю */


}
.panel {
    padding: 0 18px;
    background-color: transparent;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}

.panel p {
    color: black;
}


.li-marker-it {
    list-style-type: none;
    position: relative;
    padding-bottom: 8px;
    font-style: normal;
    font-weight: 325;
    font-size: 14px;
    line-height: 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);
}



/* WORTH COMPANY */

.worth-company-main-block {
    width: 100%;
    display: flex;
    flex-direction: column;


}

.quotes-item-figure {
    width: 64px;


}
.quotes-item-figure svg {
    height: 64px;
    width: 64px;
    opacity: 0.5;


}

.worth-quotes-list {
    display: flex;
    flex-direction: row;
    border-bottom: 1px solid rgba(15, 15, 15, 0.4);

}

.worth-button-block {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.worth-limited {
    max-height: 185px;
    overflow: hidden;
    position: relative;
    transition: max-height 0.5s; /* Добавление переходного эффекта */
}

.worth-company-body-wrapper {
    display: flex;
    flex-direction: column;
    width: 70%;
    gap: 20px;
    align-items: center;
    min-width: 290px;

}

.worth-company-wrapper-block {
    display: flex;
    flex-direction: row;
    justify-content: center;
    min-width: 290px;
    max-width: 100%;

}


.read-more-checker:checked ~ .worth-limited {
    max-height: 200vh; /* Максимальная высота, чтобы блок полностью раскрылся */
    transition: max-height 0.5s; /* Добавление переходного эффекта */
}

.read-more-checker:checked ~ .worth-limited .worth-bottom {
    opacity: 0;

}

.worth-bottom {
    border-radius: 10px;
}

.worth-limited .worth-bottom {
    position: absolute;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(216, 216, 216, 0.16) 80%);
    width: 100%;
    height: 60px;
    opacity: 1;


}

.read-more-checker {
    opacity: 0;
    position: absolute;

}

.read-more-button {
    cursor: pointer;
    display: inline-block;
    padding: 10px;
    color: black;
    border: 1px solid black;
    border-radius: 10px;
    width: 300px;
    text-align: center;
    font-size: clamp(18px, 1.04vw, 20px);


}

.read-more-button:hover {
    background-color: black;
    color: white;
}



.read-more-checker ~ .read-more-button:after {
    content: "Больше цитат сотрудников";
}

.read-more-checker:checked ~ .read-more-button:after {
    content: "Меньше цитат сотрудников";

}

/* 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);
    margin: 0;
    position: relative;
    display: flex;
    align-items: center;


}
/*.accordion.active {
    background-color: #ccc;
}*/

.worth-style.accordion::after {
    content: '\002B'; /* Plus sign */
    float: right;
    font-size: clamp(22px, 1.30vw, 25px);
    color: #7000ff;
    line-height:24px;
    width: 22px;
    height: 20px;
    font-weight: bolder;
    margin: 0;
    position: absolute;
    right: 0; /* Выравнивание по правому краю */
}

.worth-style.accordion.active::after {
    content: '-'; /* Minus sign \2212 */
    font-size: clamp(22px, 1.30vw, 25px);
    color: #7000ff;
    line-height:24px;
    width: 22px;
    height: 20px;
    font-weight: bolder;
    margin: 0;
    position: absolute;
    right: 0; /* Выравнивание по правому краю */

}
.worth-st.panel {
    padding: 0 18px;
    background-color: transparent;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    color: black;
}

/*---------------------------------------------------------------*/

ul {
    padding: 0;
}


/* 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: clamp(10px, 0.62vw, 12px);

}


.divider-name-footer {
    border-bottom: 1px solid indianred;

}

.htalent {
    color: black;
}



.banner-title {
    font-weight: 700;
    font-size: clamp( 42px, 3.02vw, 58px);
    line-height: 1.27;



}

.banner-title h3 {
    margin: 0;
    padding: 0;
}
.banner-info {
    color: white;
    font-weight: 100;
    font-size: clamp(22px, 1.25vw, 24px);
    font-style: oblique;
    background: rgb(244, 244, 244);
    box-shadow: 0 2px 12px 2px rgba(0, 0, 0, 0.08);
    border-style: solid;
    border-width: 1px;
    border-radius: 10px;
    padding: 10px;
    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);

}


@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;
    }



    .main-banner {
        display: flex;
        flex-direction: column;
        gap: 15vh;
    }





}




@media (max-width: 767px ){

    h1 {
        text-align: center;
    }


    .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: 20vh;
    }


    .panels-vacancies-body-wrapper {
        display: flex;
        flex-direction: column;
    }

    .w-500 {
        display: none;
    }

    .talent-program-body-wrapper {
        justify-content: center;
        display: flex;
    }
    .talent-program-main-block {
        padding: 0;
    }

    .quotes-item-figure {
        display: none;
    }


}


.presentation-bg-container {
    background-color: #b8d0da;
    background-image: linear-gradient(360deg, #fff, rgb(255, 254, 254), rgba(241, 243, 244, 0.86) 33%, hsla(0, 100%, 98%, 0.84) 66%, hsla(0, 0%, 100%, 0.9) 83%, #fff), url(./../img/piccareer.webp);
    background-size: 3840px , auto;
    background-repeat: no-repeat;
    padding-bottom: 40px;

}

.bg-img {
    display: block;
    width: 100%;
    height: 100%;



}

.lll {
    background-color: rgba(173, 170, 170, 0.6);
    background-image: linear-gradient(360deg, #fff, rgb(255, 254, 254), rgba(241, 243, 244, 0.86) 33%, hsla(0, 100%, 98%, 0.84) 66%, hsla(0, 0%, 100%, 0.9) 83%, #fff), url(./../img/piccareer.webp);
    background-size: 3840px, auto;
    background-repeat: no-repeat;
    padding-bottom: 40px;
}


.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;


}