@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
/*не был подключен данный fw*/

:root {
    --NoElectricBlue: #0077FF;
    /*ярко-голубой*/
    --MaybeBlack: #181D23;
    /*основной цвет текста*/
    --DynastyPaleGrey: #232A32;
    /*чуть светлее черного*/
    --SaintGrey: #EEEEEE;
    /*серый*/
    --ThisIsGrey: #52565B;
    /*темно-серый*/
    --SuperWhite: #FFFFFF;
    /*белый*/
    --BigTextOnWhite: #F9F9F9;
    /*светло-светло-серый почти белый*/
    --MissPale: #878787;
    /*серый*/
    --MrGrey: #F5F5F5;
    /*светло-серый*/
}

* {
    box-sizing: border-box;
}

body {
    overflow-x: hidden;/*чтобы убрать горизонтальный скролл, который появляется из-за вертикального скролла и 100vw*/
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
li,
blockquote,
.row > * {
    margin: 0;
    padding: 0;
}

p:not([class]) {
    line-height: 16px;
    /*в админке такиеpp есть */
}

.content-container {
    width: 100vw;
    /*ширина экрана с учетом вертикального скролла*/
    margin-left: calc(-50vw + 50%);
    padding: 30px 0 200px 0;
}

.content {
    width: 1320px;
    margin: 0 auto;
    padding: 0 10px;
}

/*скрываем блок для мобильной версии, открываем только при ширине экрана менее 575px*/
.mobile {
    display: none !important;
}

/* Секция с заливкой на 100vw */
.section-full-bg {
    width: 99.8vw;
    /*ширина экрана с учетом вертикального скролла*/
    margin-left: calc(-50vw + 50%);
    /*размещаем блок посередине*/
    background-color: var(--MaybeBlack);
    /* фон на всю ширину */
}

.section-full-bg .section-inner {
    max-width: 1300px;
    margin: 0 auto;
}

/*общие настройки модального окна*/
.modal-header {
    padding: 50px 50px 0 0;
    /*крестик должен находиться на этом расстоянии в основном*/
}

.modal-body {
    margin: 0 auto;
    /*например, размер видео не всегда совпадает с размером содального окна*/
}

.cover {
    margin-bottom: 30px !important;
}

.cover__content {
    max-width: 577px;
    padding: 25px;
    background: url(/about/career-in-cir/images/bg-cover.svg) no-repeat center / cover;
    border-radius: 20px;
}

.main-title,
.team__modal-title {
    font-size: 36px;
    line-height: 38px;
    z-index: 1;
}

.cover__text,
.cover__card-text,
.facts__text {
    font-size: 16px;
    line-height: 18px;
}

.cover__card-title {
    font-size: 64px;
    line-height: 50px;
    color: var(--NoElectricBlue);
}

.facts__list {
    gap: 20px;
    list-style-type: none;
}

.facts__item,
.team__item {
    width: 310px;
    height: 191px;
    padding: 30px;
    background-color: var(--NoElectricBlue);
    border-radius: 20px;
    color: var(--SuperWhite);
}

.facts__item-white,
.team__item {
    padding: 25px 15px 15px 25px;
    background-color: var(--SuperWhite);
    color: var(--MaybeBlack);
}

.facts__item-title,
.team__item-title {
    font-size: 24px;
    line-height: 26px;
}

.facts__text-dark {
    color: var(--ThisIsGrey);
}

.facts__item-btn,
.team__item-btn {
    width: 41px;
    height: 41px;
    background-color: var(--NoElectricBlue);
    border-radius: 50%;
}

.facts__item-btn img,
.team__item-btn img,
.people__item-btn img {
    transition: transform 0.3s ease-in-out;
}

.facts__item-btn img:hover,
.team__item-btn img:hover,
.people__item-btn img:hover {
    transform: rotate(45deg);
}

.departments {
    margin-top: 80px;
    margin-bottom: 60px;
}

.departments__text,
.people__text {
    font-size: 20px;
    line-height: 22px;
}

.big-subtitle {
    font-size: 130px;
    line-height: 132px;
    text-transform: uppercase;
    color: var(--BigTextOnWhite);
    opacity: 1;
    z-index: 0;
}

.nav-pills .nav-link {
    border-radius: 0 !important;
    border: none !important;
    color: #202020 !important;
}

.departments__nav-tabs a[role="tab"].active {
    background-color: var(--SaintGrey) !important;
    color: #202020 !important;
}

.departments__nav-tabs {
    max-width: 470px !important;
}

.departments__tabs-title {
    max-width: 470px;
    min-height: 70px;
    padding: 22px 25px;
    background-color: var(--NoElectricBlue);
    font-size: 24px;
    line-height: 26px;
    color: var(--SuperWhite);
    border-top-left-radius: 20px !important;
    border-top-right-radius: 20px !important;
}

.departments__btn {
    max-width: 470px;
    min-height: 60px;
    padding: 20px 25px !important;
    background-color: var(--SuperWhite) !important;
    font-size: 18px !important;
    line-height: 20px !important;
    color: #202020;
    border-radius: 0 !important;
}

.departments__btn:last-child {
    border-bottom-left-radius: 20px !important;
    border-bottom-right-radius: 20px !important;
}

.departments__btn:hover {
    background-color: var(--SaintGrey) !important;
    color: #202020 !important;
}

.departments__tab-content {
    width: 810px !important;
    height: 670px !important;
    padding: 50px 25px 25px 30px !important;
    background-color: #FFFFFF;
    border-radius: 20px;
}

.departments__content-top {
    margin-bottom: 11px;
}

.departments__content-info {
    padding: 5px 5px 6px 15px;
    border-left: 2px solid var(--NoElectricBlue);
}

.departments__content-btn:hover {
    opacity: 0.8;
}

.departments__info-title {
    font-size: 30px;
    line-height: 32px;
    color: #202020;
}

.departments__info-subtitle {
    font-size: 16px;
    line-height: 18px;
    color: #202020;
}

.departments__content-btn {
    width: 367px;
    height: 50px;
    padding: 15px;
    background-color: var(--NoElectricBlue);
    font-size: 16px;
    line-height: 20px;
    color: var(--SuperWhite);
    border-radius: 10px;
}

.departments__details {
    max-width: 366px;
}

.departments__detail-title {
    margin-top: 29px;
    margin-bottom: 15px;
    font-size: 20px;
    line-height: 22px;
    color: var(--NoElectricBlue);
}

.departments__detail-item {
    font-size: 14px;
    line-height: 16px;
    color: var(--DynastyPaleGrey);
}

.departments__fact-item {
    color: #202020;
}

.departments__fact-value {
    margin-bottom: 5px;
    font-size: 48px;
    line-height: 50px;
}

.departments__fact-label {
    font-size: 16px;
    line-height: 18px;
}

.exception-text--blue {
    font-size: 20px;
    line-height: 22px;
    color: var(--NoElectricBlue);
}

.video {
    padding: 100px 0;
}

.video-arrow {
    padding: 51px;
    background-color: rgba(255, 255, 255, 0.21);
    backdrop-filter: blur(5.5px);
    /*размытие фона*/
    border: 1px solid #0077FF;
    border-radius: 50%;
    transform: translate(-30%, -50%);
}

.play-btn {
    transition: transform 0.3s ease-in-out;
}

.play-btn:hover {
    transform: rotate(45deg);
}

.video .modal-header {
    padding: 25px 25px 0 0 !important;
}

.team,
.people,
.offer,
.buns {
    margin-top: 80px;
}

.team__cards {
    gap: 2rem;
    margin-top: 45px;
}

.team__list {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    flex: 1;
    /*карточки растягиваются на всё доступное пространство, кроме того, что заняла картинка*/
}

.team__text {
    font-size: 16px;
    line-height: 18px;
    color: var(--ThisIsGrey);
}

.team__item-btn {
    border: none !important;
    /*убираем стили от bootstrap*/
}

.team__image-container {
    flex-shrink: 0;
    /*позволяет занимать только своб ширину, ни больше, ни меньше*/
}

.team__image-container img {
    max-width: 639px;
    max-height: 402px;
    margin-left: -53%;
}

.team .modal-dialog {
    max-width: 1133px;
}

.modal-content {
    height: 720px;
    border-radius: 30px !important;
}

.modal-header {
    border-bottom: none !important;
}

.team .modal-header {
    padding: 30px 30px 0 70px;
}

.team__modal-title {
    color: var(--NoElectricBlue);
}

.modal-header .btn-close {
    opacity: 0.1;
    font-size: 30px;

}

.team .modal-body {
    padding: 17px 42px 47px 70px;
}

.team__modal-text {
    width: 65%;
    font-size: 18px;
    line-height: 20px;
    color: var(--DynastyPaleGrey);
}

.team__item-value {
    font-size: 48px;
    line-height: 26px;
    color: var(--DynastyPaleGrey);
}

.team__item-label {
    /*width: 85%;*/
    margin-top: 16px;
    font-size: 16px;
    line-height: 18px;
    color: var(--DynastyPaleGrey);
}

.team__item-label--blue {
    color: var(--NoElectricBlue);
}

/*настройки слайдера*/
.people .wrapper {
    max-width: 1251px;
    /*ширина контейнера */
    margin: 0 auto;
}

.people .slider {
    height: 345px;
    overflow: hidden;
    list-style-type: none;
}

.people .slick-list {
    height: 345px;
    overflow: hidden;

}

.people .slick-track {
    height: 345px;
    display: flex;
    gap: 21px;
}

/*Стрелки слайдера*/

.people .slider .slick-arrow {
    position: absolute;
    top: -35%;
    /*margin-top: -40px;*/
    z-index: 2;
    font-size: 0 !important;
    border: none;
}

.slider .slick-arrow:hover {
    opacity: 0.8;
}

.people .slider .slick-arrow.slick-prev {
    left: 30%;
    width: 40px;
    height: 40px;
    background: url(/about/images/arrow-left.png) 0 0 / 100% no-repeat;
}

.people .slider .slick-arrow.slick-next {
    right: 63%;
    width: 40px;
    height: 40px;
    background: url(/about/images/arrow-right.png) 0 0 / 100% no-repeat;
}

.people__item-card {
    cursor: pointer;
}

.people__item-details {
    width: 270px;
    height: 98px;
    padding: 15px 8px 8px 11px;
    bottom: 13px;
    left: 14px;
    background-color: var(--SuperWhite);
    border-radius: 10px;
}

.people__item-title {
    font-size: 18px;
    line-height: 20px;
    color: #171717;

}

.people__item-text {
    width: 80%;
    font-size: 12px;
    line-height: 14px;
    color: var(--MaybeBlack);
}

.people__item-btn {
    width: 32px;
    height: 32px;
    background-color: var(--NoElectricBlue);
    border-radius: 50%;
    border: none !important;
}

.people .modal-dialog {
    max-width: 1133px;
    width: 100%;
}

.people .modal-content {
    padding: 0 30px 50px 0;
    background: url(/about/career-in-cir/images/bg-popup.svg) 100% no-repeat;
}

.people .modal-header {
    padding: 40px 0 0 40px;
}

.people .modal-body {
    padding: 0 0 60px 40px;
}

/*ширина скрол-дорожки, полоса прокрутки (вся "дорожка", по которой двигается ползунок)*/
.modal-dialog-scrollable .modal-body::-webkit-scrollbar {
    width: 12px;
    /*margin-right: 60px;*/
    border-radius: 10px;
}

/*"дорожка" скроллбара — фон под движущимся ползунком*/
.modal-dialog-scrollable .modal-body::-webkit-scrollbar-track {
    border-radius: 10px;
    background-color: var(--SaintGrey);
}

/*ползунок*/
.modal-dialog-scrollable .modal-body::-webkit-scrollbar-thumb {
    background-color: var(--MissPale);
    border-radius: 10px;
}

/*Состояние скроллбара при наведении мышки на ползунок*/
.modal-dialog-scrollable .modal-body::-webkit-scrollbar-thumb:hover {
    background-color: #555;
    cursor: pointer;
}

/*св-во для Firefox, так как он не поддерживает ::-webkit-scrollbar*/
/*.modal-dialog-scrollable .modal-body {
  scrollbar-width: thin;
  scrollbar-color: var(--SaintGrey) var(--SaintGrey);
}*/

.modal-title {
    gap: 25px;
}

.people .modal-title img {
    border-radius: 50%;
    object-fit: cover;
    object-position: top;
}

.modal-title__name {
    margin-bottom: 5px;
    font-size: 40px;
    line-height: 48px;
    color: var(--NoElectricBlue);
}

.modal-title__jobtitle {
    margin-bottom: 10px;
    font-size: 20px;
    line-height: 20px;
    color: var(--MaybeBlack);
}

.modal-title__text {
    width: 90%;
    font-size: 16px;
    line-height: 18px;
    color: #737373;
}

.interview {
    width: 85% !important;
    margin-top: 30px;
    margin-left: 10px;
}

.question {
    padding: 10px 20px;
}

.question,
.answer {
    font-size: 16px;
    line-height: 18px;
    color: #171717;
}

.answer {
    padding: 20px;
    background-color: var(--MrGrey);
    border-radius: 10px;
}

.offer {
    padding: 80px 0;
}

.main-title--light {
    color: var(--SuperWhite);
}

.big-subtitle--grey {
    font-size: 128px;
    line-height: 130px;
    color: var(--SuperWhite);
    opacity: 0.03;
}

.offer__list {
    max-width: 970px !important;
    margin: 0 auto !important;
    gap: 20px;
    list-style-type: none;
}

.offer__item {
    width: 310px !important;
    height: 191px;
    padding: 25px 18px 13px 25px !important;
    border-radius: 20px;
    color: var(--SuperWhite);
}

.offer__item img {
    margin-bottom: 30px;
}

/*стили для нечетных элементов*/
.offer__item:nth-child(odd) {
    background-color: var(--NoElectricBlue);
}

/*стили для четных элементов*/
.offer__item:nth-child(even) {
    background-color: var(--DynastyPaleGrey);
}

.offer__title {
    font-size: 18px;
    line-height: 20px;
}

.offer__text {
    font-size: 14px;
    line-height: 16px;
}

/*настройки слайдера*/
.buns .wrapper {
    max-width: 1300px;
    /*ширина контейнера */
    margin: 0 auto;
}

.buns .slider {
    max-width: 1184px;
    /*ширина карточек слайдера без стрелок*/
    height: 364px;
    margin: 0 auto;
    /*для размещения между стрелками по середине*/
    overflow: hidden;
    list-style-type: none;
}

.buns .slick-list {
    height: 364px;
    overflow: hidden;
}

.buns .slick-track {
    height: 64px;
    display: flex;
    gap: 20px;
}

/*Стрелки слайдера*/
.buns .slider .slick-arrow {
    position: absolute;
    top: 50%;
    margin-top: -40px;
    z-index: 2;
    font-size: 0 !important;
    border: none;
}

.buns .slider .slick-arrow.slick-prev {
    left: 0;
    width: 40px;
    height: 40px;
    background: url(/about/images/arrow-left.png) 0 0 / 100% no-repeat;
}

.buns .slider .slick-arrow.slick-next {
    right: 0;
    width: 40px;
    height: 40px;
    background: url(/about/images/arrow-right.png) 0 0 / 100% no-repeat;
}

.buns__item {
    width: 281px;
    height: 364px;
    padding: 50px 14px 30px 25px;
    border-radius: 20px;
    background-color: var(--SuperWhite);
    color: var(--MaybeBlack);
}

.buns__title {
    font-size: 20px;
    line-height: 12px !important;
}

.buns__text {
    font-size: 14px;
    line-height: 16px;
}

.collective {
    height: 910px;
    margin-top: 60px;
    padding: 80px 0 110px 0;
}

.collective .nav-pills {
    margin: 60px 0 40px 25px;
    gap: 20px;
}

.nav-pills .nav-link.collective__tab-btn {
    width: auto;
    height: 56px;
    padding: 15px 20px;
    background-color: var(--DynastyPaleGrey) !important;
    font-size: 24px;
    line-height: 26px;
    color: var(--MissPale) !important;
    border-radius: 10px !important;
}

.nav-pills .nav-link.collective__tab-btn:hover {
    background-color: var(--NoElectricBlue) !important;
    color: var(--SuperWhite) !important;
}

.nav-pills .nav-link.collective__tab-btn.active {
    background-color: var(--NoElectricBlue) !important;
    color: var(--SuperWhite) !important;
}

.collective__tab-btn.active:hover {
    opacity: 0.8;
}

/*настройки слайдера*/
.collective .wrapper {
    max-width: 1300px;
    /*ширина контейнера вмеcnt со стрелками*/
    margin: 0 auto;
}

.collective .slider {
    max-width: 1184px;
    /*ширина карточек слайдера без стрелок*/
    height: 505px;
    margin: 0 auto;
    /*для размещения между стрелками по середине*/
    overflow: hidden;
    list-style-type: none;
}

.collective .slick-list {
    height: 505px;
    overflow: hidden;
}

.collective .slick-track {
    height: 505px;
    display: flex;
    gap: 20px;
}

/*Стрелки слайдера*/
.collective .slider .slick-arrow {
    position: absolute;
    top: 50%;
    margin-top: -40px;
    z-index: 2;
    font-size: 0 !important;
    border: none;
}

.collective .slider .slick-arrow.slick-prev {
    left: 0;
    width: 40px;
    height: 40px;
    background: url(/about/images/arrow-left.png) 0 0 / 100% no-repeat;
}

.collective .slider .slick-arrow.slick-next {
    right: 0;
    width: 40px;
    height: 40px;
    background: url(/about/images/arrow-right.png) 0 0 / 100% no-repeat;
}

.collective__item-details {
    width: 261px;
    height: 98px;
    padding: 0 10px;
    bottom: 10px;
    left: 10px;
    background-color: var(--SuperWhite);
    border-radius: 10px;
}

.collective__item-title {
    margin: 0 auto;
    font-size: 14px;
    line-height: 16px;
    color: #171717;
}

.collective .video-arrow {
    transform: translate(-50%, -50%);
}

.modal-content--mobile {
    border-radius: 20px;
}

.collective .modal-header {
    padding: 30px 14px 0 0;
}

.reviews {
    margin-top: 80px;
    margin-bottom: 70px;
}

.reviews__list {
    max-width: 1250px;
    margin-left: 25px !important;
    gap: 20px;
    list-style-type: none;
}

.reviews__list-item {
    max-width: 615px !important;
    height: 254px;
    padding: 25px 45px 25px 31px !important;
    border-radius: 20px;
    background-color: var(--SuperWhite);
    color: var(--ThisIsGrey);
}

.reviews__item-name {
    font-size: 20px;
    line-height: 22px;
    color: var(--NoElectricBlue);
}

.reviews__item-subtitle {
    font-size: 14px;
    line-height: 16px;
    color: var(--MaybeBlack);
}

.reviews__item-text {
    font-size: 14px;
    line-height: 16px;
}

.reviews__btn {
    width: 348px !important;
    margin: 0 auto !important;
    margin-top: 50px !important;
    height: 55px !important;
    background-color: var(--NoElectricBlue) !important;
    border-radius: 10px !important;
    font-size: 18px !important;
    line-height: 20px !important;
    color: var(--SuperWhite) !important;
}

.reviews__btn:hover,
.form__btn:hover,
.form-btn:hover {
    opacity: 0.8 !important;
}

.form {
    background-color: var(--NoElectricBlue);
    border-radius: 20px;
    color: var(--SuperWhite);
}

.form__content {
    padding: 0 54px 0 50px;
}

.form__subtitle {
    margin-top: 10px;
    margin-bottom: 30px;
    font-size: 24px;
    line-height: 26px;
}

.form__text {
    width: 85%;
    margin-bottom: 30px;
    font-size: 18px;
    line-height: 20px;
}

.form__btn {
    height: 50px !important;
    background-color: var(--MaybeBlack) !important;
    border-radius: 10px !important;
    font-size: 18px !important;
    line-height: 20px !important;
}

.form .modal-dialog {
    max-width: 1133px;
    width: 100%;
}

.form .modal-content {
    min-height: 795px;
    height: auto;
    padding: 40px 40px 80px 40px;
    background-image: none !important;
    background-color: var(--SuperWhite) !important;
}


.form .modal-header {
    padding: 0;
}

.form .modal-body {
    max-width: 100%;
    width: 758px;
    padding: 0;
}

.form-label {
    font-size: 16px;
    line-height: 18px;
    font-weight: 500;
    color: var(--DynastyPaleGrey);
}

.form input:not(.form-btn),
.b24-form-control {
    padding: 17px 10px 0px !important;
    background-color: var(--SaintGrey) !important;
    border: none !important;
    border-radius: 5px;
}

.inputfile {
    cursor: pointer;
}

.agreement,
.captcha-text {
    font-size: 11px;
    line-height: 13px;
    color: var(--DynastyPaleGrey);
}

.form-btn,
.b24-form-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 410px !important;
    height: 65px !important;
    margin: 0 auto !important;
    /*margin-top: 30px !important;*/
    background-color: var(--NoElectricBlue) !important;
    border-radius: 10px !important;
    color: var(--SuperWhite);
    font-size: 20px !important;
    font-weight: 600 !important;
    line-height: 22px !important;
}

.b24-form-wrapper {
    background-color: transparent;
}

.b24-form-wrapper.b24-form-border-bottom {
    border-bottom: none !important;
}

.b24-form-header-padding,
.b24-form-content,
.b24-form-control, 
.b24-form-btn-block {
    padding: 0 !important;
}

textarea.b24-form-control {
    padding: 30px 10px 0 !important;
}

.b24-form-control-file {
    margin-top: -20px !important;
    padding: 0 !important;
    border: none;
    background-color: transparent;
}

.b24-form-control-label {
    font-size: 16px !important;
}

.b24-form-control-file {
    border: none !important;
    background-color: transparent !important;
}

.b24-form-control-file .b24-form-control {
    background-color: transparent !important;
}

.b24-form-control-file .b24-form-control:after {
    width: 0 !important;
    height: 0 !important;
}

.b24-form-control-file .b24-form-control:before {
    top: 30% !important;
    left: -2% !important;
    width: 33px !important;
    height: 33px !important;
    background: transparent url(/about/career-in-cir/images/icon-file.svg) 100% center / cover no-repeat !important;
}

/*блок об успешной отправке*/
.b24-form-state-container .b24-form-success {
    background-color: #339966;
    border-radius: 5px;
}

.b24-form-success .b24-form-state-text
.b24-form-error .b24-form-state-text {
    color: var(--SuperWhite);
}

/*блок об ошибке при отправке*/
.b24-form-state-container .b24-form-error {
    background-color: #D72638;
    border-radius: 5px;
}

.b24-window-popup-body .b24-form-btn {
    width: 100% !important;
}

.b24-form-recaptcha {
    margin-top: 20px;
}

@media (max-width: 1399px) {
    .cover {
        gap: 10px;
    }

    .cover__content,
    .cover__img {
        flex: 1;
        min-width: 250px;
    }

    .cover__content {
        max-width: 100%;
    }

    .facts__text {
        font-size: 14px;
        line-height: 16px;
    }

    .departments__nav-tabs {
        max-width: 100% !important;
        width: auto !important;
    }

    .video {
        padding: 100px 30px;
    }
}

@media (max-width: 1299px) {
    .slider .slick-arrow.slick-prev {
        left: 40% !important;
    }

    .slider .slick-arrow.slick-next {
        right: 50% !important;
    }

    .big-subtitle--grey,
    .buns .big-subtitle,
    .reviews .big-subtitle {
        font-size: 75px;
        line-height: 77px;
    }

    .team__list {
        display: flex !important;
        flex-wrap: wrap;
        justify-content: center;
    }

    .team__image-container img {
        display: none;
    }

    .buns .wrapper,
    .collective .wrapper {
        max-width: 1000px;
    }

    .buns .slider,
    .collective .slider {
        max-width: 883px;
    }

    .reviews__list {
        margin: 0 auto !important;
        justify-content: center !important;
    }
}

@media (max-width: 1220px) {
    .departments__tabs-title {
        display: none;
    }

    .departments__btn:first-of-type {
        border-top-left-radius: 20px !important;
        border-top-right-radius: 20px !important;
    }

    .departments__tab-content {
        height: auto;
        padding: 25px 20px;
    }

    .departments__info-title {
        font-size: 20px;
        line-height: 22px;
    }

    .departments__info-subtitle {
        font-size: 12px;
        line-height: 14px;
    }

    .departments__content-btn {
        width: 310px;
        height: 46px;
        font-size: 14px;
        line-height: 16px;
    }

    .departments__content-bottom {
        flex-direction: column;
    }

    .departments__details {
        max-width: 100%;
        order: 2;
    }

    .departments__detail-item {
        margin-bottom: 30px;
    }

    .departments__fact-value {
        font-size: 40px;
        line-height: 42px;
    }

    .departments__fact-label {
        width: 50%;
        font-size: 12px;
        line-height: 14px;
    }

    .departments__content-bottom img {
        order: 1;
        width: 310px;
        height: 223px !important;
        border-radius: 10px;
        object-fit: cover;
    }

    .form {
        flex-direction: column;
    }

    .form__content {
        width: 100% !important;
        padding: 20px;
        /*text-align: center;*/
        position: static;
    }

    .form img {
        width: 100%;
        max-height: 400px;
        object-fit: contain;
    }

    .form__btn {
        width: 100% !important;
    }
}

@media (max-width: 1115px) {
    .main-title {
        font-size: 26px;
        line-height: 28px;
    }

    .cover__text,
    .cover__card-text {
        font-size: 14px;
        line-height: 16px;
    }

    .modal-content {
        height: auto;
        border-radius: 20px !important;
    }

    .team .modal-header {
        padding: 20px 30px 0 40px;
    }

    .team .modal-body {
        padding: 10px 40px 20px 40px;
    }

    .team__modal-text {
        font-size: 12px;
        line-height: 14px;
    }

    .team .modal-body div {
        justify-content: flex-start !important;
        gap: 20px;
    }

    .team .modal-body img {
        width: 500px;
    }
}

@media (max-width: 1061px) {
    .departments__block {
        gap: 10px;
    }

    .departments__btn {
        max-width: 100%;
        width: 1036px;
    }

    .departments__tab-content {
        max-width: 100%;
        width: 1036px;
        height: auto !important;
    }

    .departments__content-info {
        width: 100% !important;
    }

    .departments__info-subtitle {
        width: 100%;
    }

    .departments__content-top {
        flex-direction: column;
    }

    .departments__content-btn {
        max-width: 100%;
        align-self: flex-start !important;
        margin-top: 15px;
    }
}

@media (max-width: 1020px) {
    .cover__content {
        padding: 10px;
    }

    .cover__card-img {
        display: none;
        /*скрываем картинку, потому что не влезает*/
    }

    .cover__card-title {
        font-size: 40px;
        line-height: 30px;
    }

    .buns .wrapper,
    .collective .wrapper {
        max-width: 800px;
    }

    .buns .slider,
    .collective .slider {
        max-width: 582px;
    }

    .reviews__list-item {
        height: 396px;
    }

}

@media (max-width: 767px) {
    .content {
        padding: 0 20px;
        /*в мобилке по краям такое расстояние всегда*/
    }

    .full {
        display: none !important;
    }

    .mobile {
        display: block !important;
    }

    .cover {
        flex-direction: column;
        /*как в мобилке вертикально*/
    }

    .cover__content {
        padding: 22px 20px 30px;
    }

    .main-title,
    .team__modal-title {
        font-size: 32px;
        line-height: 34px;
    }

    .cover .main-title {
        line-height: 20px;
    }

    section:not(.cover):not(.form) .main-title,
    .people__text,
    .departments__text {
        margin: 0 auto !important;
        text-align: center;
    }

    .cover__subtitle {
        font-size: 16px;
        font-weight: 500;
        line-height: 18px;
        color: var(--NoElectricBlue);
    }

    .cover__text {
        margin: 31px 0 110px !important;
        font-size: 12px;
        line-height: 14px;
    }

    .cover__card-title {
        font-size: 48px;
        line-height: 40px;
    }

    .cover__card-img {
        display: block;
        /*открываем картинку скрытую выше*/
        width: 112px !important;
        height: 45px !important;
    }

    .cover__img img {
        border-radius: 20px;
    }

    /*настройки слайдера*/
    .facts .wrapper,
    .people .wrapper,
    .buns .wrapper {
        max-width: 750px;
        margin: 0 auto;
    }

    .facts .slider {
        height: 211px;
        margin-right: -20px;
        /* компенсирует padding, для выноса куска слайда за пределы контента */
        overflow: hidden;
    }

    .facts .slick-list {
        height: 170px;
        overflow: hidden;
    }

    .facts .slick-track {
        height: 211px;
        display: flex;
        gap: 20px;
    }

    .facts__item {
        width: 280px !important;
        height: 170px;
        padding: 26px 21px 32px 26px;
    }

    .slider__item > img {
        width: 30px !important;
        height: 30px !important;
    }

    .facts__text {
        font-weight: 400 !important;
    }

    .facts__item-white {
        padding: 22px 13px 13px 23px;
    }

    .facts__item-title {
        font-size: 20px;
        line-height: 22px;
    }

    /*точки*/
    .slider .slick-dots {
        display: flex;
        width: fit-content;
        margin: 0 auto;
        margin-top: 15px;
        padding: 5px 10px;
        align-items: center;
        gap: 10px;
        background-color: #0077FF;
        border-radius: 10px;
    }

    .slider .slick-dots li {
        display: flex;
        list-style: none;
    }

    .slider .slick-dots li.slick-active button {
        background-color: #ffffff;
    }

    .slick-dots button {
        padding: 0;
        width: 6px !important;
        height: 6px !important;
        background-color: #C6C6C6;
        border-radius: 50%;
        border: none;
        font-size: 0;
    }

    .departments {
        margin: 40px 0;
    }

    .departments__text,
    .people__text,
    .offer__title {
        font-size: 14px;
        line-height: 16px;
    }

    .departments__text {
        margin-top: 5px !important;
    }



    .big-subtitle {
        display: none;
    }

    .video {
        padding: 40px 28px;
    }

    .video__img {
        margin: 0 auto;
    }

    .video-arrow {
        padding: 35px;
    }

    .block-titles {
        margin: 0 auto !important;
        margin-bottom: 40px !important;
        justify-content: center;
    }

    /*.team__image-container img {
        display: block;
    }*/

    .team__cards {
        gap: 0;
    }

    .team__modal-text {
        width: 100%;
    }

    .team .modal-body div {
        flex-direction: column;
    }

    .team .modal-body img {
        width: 350px;
    }

    .team__modal-list {
        flex-direction: row !important;
    }

    .team__item-label {
        width: 100% !important;
    }

    .people__text {
        margin-top: 10px !important;
    }

    .people .slider {
        height: 374px;
        margin-right: -20px;
        /* компенсирует padding, для выноса куска слайда за пределы контента */
    }

    .people .slick-list {
        height: 374px;
    }

    .people .slick-track {
        height: 374px;
        gap: 20px;
    }

    .people__item-card > img {
        height: 374px !important;
    }

    .people .modal-dialog {
        width: 96% !important;
    }

    .people .modal-content {
        height: 743px !important;
        padding: 0 15px 20px 0;
        background: var(--SuperWhite);
    }

    .people .modal-header {
        padding: 26px 0 26px 15px;
        ;
    }

    .modal-title {
        flex-direction: column;
        gap: 15px;
    }

    /*ширина скрол-дорожки, полоса прокрутки (вся "дорожка", по которой двигается ползунок)*/
    .modal-dialog-scrollable .modal-body::-webkit-scrollbar {
        width: 8px;
    }

    .people .modal-body {
        padding: 0 0 0 15px;
    }

    .interview {
        width: 95% !important;
        margin: 0;
    }

    .people .modal-title img {
        width: 127px !important;
        height: 127px !important;
    }

    .modal-title__name {
        font-size: 20px;
        line-height: 22px;
    }

    .modal-title__jobtitle,
    .modal-title__text {
        font-size: 10px;
        line-height: 10px;
    }

    .modal-title__text {
        width: 100% !important;
    }

    .question,
    .answer {
        padding: 0;
        padding-bottom: 10px;
        background-color: transparent;
        font-size: 12px;
        line-height: 14px;
    }

    .modal-dialog-scrollable .modal-body {
        scrollbar-width: thin;
        scrollbar-color: var(--SaintGrey) var(--SaintGrey);
    }

    .offer {
        padding: 30px 0 45px 0;
    }

    .offer__list {
        gap: 10px;
    }

    .offer__item {
        width: 170px !important;
        height: 235px;
        padding: 20px 3px 20px 15px !important
    }

    .offer__item img {
        width: 24px;
        height: 24px;
        margin-bottom: 20px;
    }

    .offer__text {
        font-size: 12px;
        line-height: 14px;
    }

    .offer__item:nth-child(1),
    .offer__item:nth-child(4n),
    .offer__item:nth-child(4n + 1):not(:first-child) {
        background-color: var(--NoElectricBlue);
    }

    .offer__item:nth-child(4n+2),
    .offer__item:nth-child(4n+3) {
        background-color: var(--DynastyPaleGrey);
    }

    .offer .block-titles {
        margin-bottom: 60px !important;
    }

    .buns {
        margin-top: 49px;
        margin-bottom: 40px;
    }

    .buns .slider {
        height: 398px;
    }

    .buns .slick-track {
        height: 398px;
    }

    .collective {
        padding: 30px 20px 40px 20px;
    }

    .collective .nav-pills {
        margin: 15px 0 25px 0;
    }

    .collective .slider {
        height: 540px;
        margin-right: -20px;
        /* компенсирует padding, для выноса куска слайда за пределы контента */
    }

    /*точки*/
    .collective .slider .slick-dots {
        padding: 6px;
        gap: 6.5px;
        background-color: var(--DynastyPaleGrey);
        border-radius: 10px;
    }

    .collective .slider .slick-dots li.slick-active button {
        background-color: var(--NoElectricBlue);
    }

    .collective .slick-dots button {
        width: 8px !important;
        height: 8px !important;
        background-color: var(--MissPale);
    }

    .reviews {
        margin-top: 40px;
    }

    .reviews .wrapper {
        max-width: 350px;
        margin: 0 auto;
    }

    .reviews .slider {
        height: 430px;
        overflow: hidden;
        margin: 0 auto;
    }

    .reviews .slick-list {
        height: 396px;
        overflow: hidden;
        list-style-type: none;
    }

    .reviews .slick-track {
        height: 430px;
        display: flex;
        gap: 20px;
    }

    .reviews__list-item {
        width: 350px;
        height: 396px;
    }

    .reviews__btn {
        width: 100%;
        margin-top: 20px;
    }

    .form img {
        max-height: 100%;
    }

    .form__subtitle {
        margin-bottom: 17px;
        font-size: 14px;
        line-height: 16px;
    }

    .form__text {
        width: 100%;
        margin-bottom: 20px;
        font-size: 14px;
        line-height: 16px;
    }
    
    .form .modal-body {
        margin-top: 15px !important;
    }
}

@media (max-width: 480px) {
    .slick-slide {
        position: relative;
    }

    .slick-slide.dimmed::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to left, rgba(35, 42, 50, 0), rgba(35, 42, 50, 1));
        z-index: 2;
        pointer-events: none;
        border-radius: 20px;
    }

    .video iframe {
        width: 350px;
        height: 196px;
    }

    .team .modal-content {
        height: 550px;
    }

    .team .modal-header {
        padding: 20px 15px 0 15px;
    }

    .modal-header .btn-close {
        font-size: 20px;
    }

    .team .modal-body {
        padding: 10px 15px 20px 15px;
        justify-content: space-around !important;
    }

    .team__modal-list {
        gap: 20px;
    }

    .team__item-value {
        font-size: 40px;
    }

    .team__item-label {
        margin-top: 10px;
        font-size: 8px;
        line-height: 10px;
    }

    .buns .slider {
        max-width: 281px;
    }

    .collective .nav-pills {
        max-width: 100%;
        gap: 10px;
    }

    .collective .nav-item {
        width: 100%;
    }

    .nav-pills .nav-link.collective__tab-btn {
        width: 100%;
        height: 48px;
        font-size: 16px;
        line-height: 18px;
    }

    .reviews .slider {
        max-width: 350px;
    }
    
    .form .modal-content {
        width: 96%;
        height: auto;
        padding: 20px;
        background-image: none;
        background-color: var(--SuperWhite);
    }
    .form-btn,
    .b24-form-btn-block,
    .b24-form-btn {
        max-width: 100% !important;
    }
}

@media (max-width: 389px) {
    .reviews__list-item {
        max-width: 335px;
    }
    
    .form .main-title {
        font-size: 28px;
        line-height: 30px;
    }
}

@media (max-width: 350px) {
    .cover__card-text {
        font-size: 10px;
        line-height: 12px;
    }
}
