
/**
  Нормализация блочной модели
 */
*,
*::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(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;
}






.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.3) 33%, hsla(0, 0%, 100%, 0.42) 66%, hsla(0, 0%, 100%, 0.92) 83%, #fff), url('./../img/bannerabout1.webp');
    background-position: 0px 0px, 50% 50%;
    background-size: auto, cover;
    background-repeat: repeat, no-repeat;
    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;
}


/* Presentation */

.ocompany-body {


}

.ocompany-body-block {
    display: flex;
    flex-direction: row;



}

.ocompany-body-wrapper {
    background-color: hsla(0, 0%, 100%, 0.5);
    border-radius: 20px;


}




.ocompany-block-information {
    border-color: #adbdcc;
    box-shadow: 0 2px 12px 2px rgba(0, 0, 0, 0.08);
    border-style: solid;
    border-width: 1px;
    border-radius: 10px;
    width: 100%;
    background: rgb(244, 244, 244);
    border-bottom: 1px solid #dbdbdb;
}

.ocompany-box-info {
    padding: 30px;
    display: flex;
    flex-direction: column;
    width: 100%;
    min-width: 400px;
}

.ocompany-box-info-title {
    padding: 0 0 50px;
}

.ocompany-box-info-content {
    padding-left: 30px;
}

.presentation-block-w30 {
    margin: 15px;
    width: 0;
    height: 0;
}

.ocompany-block-mark {
    width: 30%;
    min-width: 100px;
    max-width: 400px;
}


.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);
}

/*.li-marker-it::marker {
    color: #7000ff;
    content: "▪";
    font-size: 20px;




}
.li-marker-it {
    font-size: 14px;
    padding-left: 10px;

} */


.pos-center-title {
    text-align: center;
}


/* 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;
    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;
}



/* FONT */

.ocompany-block-mark-title h2 {
    margin: 0;

}


.ocompany-box-info-title h3{
    margin: 0;
}

.ocompany-block-mark-title {
    font-size: 15px;


}

.ocompany-box-info-title {
    font-size: 24px;
}

.presentation-box-info-content {
    font-size: 17px;

}






/* 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-main-box {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 50px;
}



.footer-agreement p {
    font-size: 12px;

}

.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-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-box-info-block {
    display: flex;
    flex-direction: column;
    gap: 25px;

}

.footer-box-info-block a {
    color: #e4dede;
}

.footer-row-info-block:hover a {
    color: white;
    transition: 0.3s;
}


#footer-number {
    font-size: 25px;
}


.footer-box-info {
    display: flex;
    flex-direction: row;
    font-size: 15px;
    gap: 10px;

}

.footer-main-box-career {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-main-box-contacts {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-main-box-contacts-info {
    color: white;
    font-size: clamp(13px, 0.78vw, 15px);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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;
    }
    .ocompany-box-info {

        width: 100%;

    }

}


@media (max-width: 1919px) {
    .main-banner {
        background-size: cover;
    }

    .ocompany-box-info {

        width: 100%;

    }

    .header, .banner, .container{
        padding-inline: 250px;
    }
}


@media (max-width: 1440px) {
    .header, .banner, .container{
        padding-inline: 100px;
    }

    .ocompany-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;
    }

    .ocompany-box-info {

        width: 100%;

    }



    .ocompany-body-block {
        display: flex;
        flex-direction: row;
        padding: 30px 15px;
    }

    .ocompany-body-wrapper {
        margin: 20px 0;

    }

    .ocompany-box-info-content {
        padding: 0;
    }

    .ocompany-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: 12vh;
    }




    .footer-main-box {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    .ocompany-box-info {

        width: 100%;

    }



    .ocompany-body-block {
        display: flex;
        flex-direction: row;
        padding: 30px 15px;
    }

    .ocompany-body-wrapper {
        margin: 20px 0;

    }

    .ocompany-box-info-content {
        padding: 0;
    }

    .ocompany-box-info {
        padding: 30px 15px;

    }

    .ocompany-block-mark {
        width: 100%;
    }


    .ocompany-box-info-title {
        text-align: 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%;
    }


    .ocompany-box-info-title {
        text-align: center;
    }



    .footer-main-box {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    .main-banner {
        display: flex;
        flex-direction: column;
        gap: 20vh;
    }

    .ocompany-box-info {
        min-width: 100px;
        max-width: 710px;
        width: 100%;
    }

    .ocompany-body-block {
        display: flex;
        flex-direction: column;
        padding: 30px 15px;
    }

    .ocompany-body-wrapper {
        margin: 20px 0;

    }

    .ocompany-box-info-content {
        padding: 0;
    }

    .ocompany-box-info {
        padding: 30px 15px;

    }

    .ocompany-block-mark {
        width: 100%;
    }



    .talent-program-body-wrapper {
        padding: 0 0 0 0;
    }






}



.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);

}


.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;


}

ul {
    padding: 0;
    margin: 0;
}