
/**
  Нормализация блочной модели
 */
*,
*::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(15px, 0.83vw, 16px);
    font-weight: 300;
    line-height: 1.75;
    background-color: white;
    font-family: "Arial", sans-serif;

}

.container {
    max-width: calc(1920px + 15 * 2);
    margin: 0 auto;
    padding-inline: 350px;

}

section {

    padding-top: 100px;
}

.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);

}


.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;
    background-color: #b8d0da;
    background-image: linear-gradient(180deg, rgba(184, 208, 218, 0), rgba(184, 208, 218, 0) 33%, hsla(0, 0%, 100%, 0.61) 66%, hsla(0, 0%, 100%, 0.87) 83%, #fff), url('./../img/bannerpresent.webp');
    background-position: 0px 0px, 50% 50%;
    background-size: auto, cover;
    background-repeat: repeat, no-repeat;

    color: white;

}

/*
.main-banner {
    min-height: 100vh;
    background: url("./../img/250.jpg");
    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: 15px 20px;
    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;
}



/*body {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.75;
    background-color: #131619;

}

a {
    color: antiquewhite;
}



.container {
    max-width: calc(1300px + 15 * 2);
    margin-inline: auto;
    padding-inline: 200px;

}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    column-gap: 20px;
    padding-inline: 32px;
    border-bottom: 1px solid antiquewhite;
    background-color: #131619;

}

.header-logo {
    flex-shrink: 0;
}

.header-menu-list {
    display: flex;
    flex-wrap: wrap;
    column-gap: 50px;


}

.header-menu-link {
    display: inline-flex;
    height: 90px;
    align-items: center;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

.header-menu-link:hover {
    color: indianred;
    transition-duration: 0.2s;
}

.header-burger-button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: black;
    border: 1px solid #ffffff;
    border-radius: 30px;
}



.banner {
    display: flex;
    flex-direction: column;
    justify-content: end;
    min-height: 585px;
    background-color: #131619;
    padding: 36px 200px;
    color: antiquewhite;



}

.inline-banner {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;

}

.banner-info {
    font-size: clamp(16px, 1.04vw, 20px);

}




.banner-body {
    text-transform: uppercase;

}

.banner-title {
    display: flex;
    align-items: end;
    font-weight: 700;
    font-size: clamp(26px, 1.82vw, 35px );
    line-height: 1.27;

}

.banner-str-button {
    background-color: indianred;
    padding: 15px 20px;
    display: inline-flex;
    align-items: center;
    border: 1px solid indianred;
    text-decoration: none;
    text-transform: uppercase;


}
*/

/* Presentation */

.presentation-body {


}

.presentation-body-block {
    display: flex;
    flex-direction: column;
    padding: 30px;
    width: 100%;
    gap: 60px;

}

.presentation-body-wrapper {
    background-color: hsla(0, 0%, 100%, 0.5);
    border-radius: 20px;

}



.presentation-block-information {
    border-color: #adbdcc;
    background-image: linear-gradient(180deg, rgba(225, 228, 233, 0), rgba(225, 228, 233, 0.1));
    box-shadow: 0 2px 12px 2px rgba(0, 0, 0, 0.38);
    border-style: solid;
    border-width: 1px;
    background-color: #e1e4e9;
    border-radius: 10px;
    width: 100%;
}

.presentation-box-info {
    padding: 30px;
    display: flex;
    flex-direction: column;
    width: 100%;
    min-width: 260px;
    max-width: 100%;
}

.presentation-box-info-title {
    padding: 0 0 30px;
    max-width: 100%;
    width: 100%;
    min-width: 175px;

}

.presentation-box-info-content {
    padding-left: 30px;
    max-width: 100%;
    width: 100%;
    min-width: 175px;
}

.presentation-block-w30 {
    margin: 20px;
    width: 0;
    height: 0;
}

.presentation-block-mark {
    width: 60%;
    min-width: 100px;
    max-width: 100%;
    display: flex;
    text-align: center;
}



/* FONT */

.presentation-block-mark-title h2 {
    margin: 0;

}


.presentation-box-info-title h3{
    margin: 0;
}

.presentation-block-mark-title {
    font-size: clamp(13px, 1.14vw, 22px);


}

.presentation-box-info-title {
    font-size: 24px;
}

.presentation-box-info-content {
    font-size: 17px;

}



/* ACC */

.talent-program-body-wrapper {
    border-color: #adbdcc;
    box-shadow: 0 2px 12px 2px rgba(0, 0, 0, 0.38);
    border-style: solid;
    border-width: 1px;
    border-radius: 10px;
    padding: 30px;
    background: rgb(244, 244, 244);
    border-bottom: 1px solid #dbdbdb;
    width: 75%;
    min-width: 290px;
}

.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;
}


/* FOOTER */

.footer {
    padding: 60px 0;
    background-color: #0c2434;
    color: white;


}

.footer a {
    color: white;
}

footer p {
    font-size: clamp(16px, 0.93vw, 18px);
}

.footer-main {
    min-height: 300px;



}

.footer-box-info {
    display: flex;
    flex-direction: row;
    font-size: clamp(11px, 0.72vw, 14px);
    gap: 10px;

}

.footer-box-info-block {
    font-size: clamp(13px, 0.72vw, 14px);
}
.footer-main-box-contacts-info p {
    font-size: clamp(13px, 0.72vw, 14px);

}

.footer-main-box-contacts-info {
    color: white;
    font-size: clamp(13px, 0.78vw, 15px);
    display: flex;
    flex-direction: column;
    gap: 20px;
}


.footer-main-box {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 50px;
}



.footer-agreement p {
    font-size: 12px;

}


.footer-main-box-about {
    display: flex;
    flex-direction: column;
    gap: 15px;
}


.divider-name-footer {
    font-size: clamp(20px, 1.04vw, 20px);
    font-weight: bold;
    border-bottom: 2px solid transparent;
    border-image: linear-gradient(100deg, rgba(228,7,7,0.7595413165266106) 22%, rgba(244,147,195,0.8827906162464986) 76%);
    border-image-slice: 1;

}

.footer-main-box-presentation {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

#footer-number {
    font-size: 25px;
}

.footer-box-info-block {
    display: flex;
    flex-direction: column;
    gap: 25px;

}




.footer-box-info {
    display: flex;
    flex-direction: row;
    font-size: clamp(13px, 0.72vw, 14px);
    gap: 10px;

}

.footer-main-box-career {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-main-box-contacts {
    display: flex;
    flex-direction: column;
    gap: 15px;
}



h2, p {
    margin: 0;
    padding: 0;
}

footer a{
    text-decoration: none;
}

/*
@media (min-width: 1280px) {

    .presentation-body-block {
        display: flex;
        flex-direction: column;
        padding: 30px 15px;
    }

    .presentation-body-wrapper {
        margin: 20px 0;

    }

    .presentation-box-info-content {
        padding: 0;
    }

    .presentation-box-info {
        padding: 30px 15px;

    }

    .presentation-block-mark {
        width: 100%;
    }

    .presentation-box-info {
        min-width: 1023px;
        max-width: 1280px;
        width: 100%;

    }
}


*/

@media (min-width: 1919px) {
    .main-banner {
        background-size: cover;
    }
    .presentation-box-info {

        width: 100%;

    }

    .container {
        padding-inline: 350px;
    }
}


@media (max-width: 1919px) {
    .main-banner {
        background-size: cover;
    }
    .presentation-box-info {

        width: 100%;

    }

    .header, .banner, .container{
        padding-inline: 250px;
    }
}

@media (max-width: 1440px) {
    .header, .banner, .container{
        padding-inline: 100px;
    }

    .presentation-box-info {

        width: 100%;

    }

}


@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;
    }

    .presentation-box-info {

        width: 100%;

    }



    .presentation-body-block {
        display: flex;
        flex-direction: column;
        padding: 30px 15px;
    }



    .presentation-box-info-content {
        padding: 0;
    }

    .presentation-box-info {
        padding: 30px 15px;

    }




}

@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;

    }

    .main-banner {
        display: flex;
        flex-direction: column;
        gap: 15vh;
    }



    .presentation-box-info-title {
        text-align: center;
    }


    .footer-main-box {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .presentation-box-info {

        width: 100%;

    }


    .presentation-block-w-500 {
        display: none;
    }



    .presentation-body-block {
        display: flex;
        flex-direction: column;
        padding: 30px 15px;
        align-items: center;
    }



    .presentation-box-info-content {
        padding: 0;
    }

    .presentation-box-info {
        padding: 30px 15px;

    }




    .presentation-wrapper {
        display: flex;
        flex-direction: row;
        justify-content: center;
    }



    .presentation-box-info-title {
        text-align: center;
    }
    .presentation-block-mark {
        justify-content: center;
    }





}


@media (max-width: 767px ){

    .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%;
    }


    .presentation-box-info-title {
        text-align: center;
    }


    .footer-main-box {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .presentation-body-block {
        display: flex;
        flex-direction: column;
        padding: 30px 15px;
        align-items: center;
    }


    .presentation-box-info-content {
        padding: 0;
    }

    .presentation-box-info {
        padding: 30px 15px;

    }


    .main-banner {
        display: flex;
        flex-direction: column;
        gap: 20vh;
    }

    .presentation-block-w-500 {
        display: none;
    }



}

@media (max-width: 543px) {
    .main-banner {
        display: flex;
        flex-direction: column;
        gap: 19vh;
    }

    .presentation-block-w-500 {
        display: none;
    }


    .presentation-body-block {
        padding: 30px 0;
    }

    .talent-program-body-wrapper {
        padding: 0 0 0 0;

    }
}



/* FONT */

.banner-title {
    font-weight: 700;
    font-size: clamp( 42px, 3.02vw, 58px);
    line-height: 1.27;



}

ul {
    margin: 0;
    padding: 0;
}

.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);

}




.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);
}


.presentation-bg-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-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;


}


#block-5 {
padding-bottom: 100px;
}


.presentation-wrapper {
    display: flex;
    flex-direction: row;
}

.presentation-block-w-500 {
    width: 25%;
}