﻿/* Общие свойства */
.mw-680 {
  max-width: 680px;
}

.mw-800 {
  max-width: 800px;
}

.mw-904 {
  max-width: 904px;
}

.list-reset {
  list-style: none;
  margin: 0;
  padding: 0;
}

.date {
  display: flex;
  align-items: baseline;
  justify-content: flex-start;
  column-gap: 8px;
}

.date__icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.date__name {
  color: var(--Gray, #979797);
  font-family: "PT Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

/* Страница Корпоративная культура */
.culture-hero {
  margin-top: 58px;
}

.culture-hero .head-bread {
  margin-top: 0px;
}

.culture-hero__content {
  margin-top: 60px;
}

.culture-hero .culture-hero__title {
  font-size: 46px;
  line-height: 46px;
  max-width: 904px;
  margin-bottom: 36px;
}

.culture-hero__text {
  margin-bottom: 40px;
}

@media (max-width: 1200px) {
  .culture-hero {
    margin-top: 36px;
  }

  .culture-hero .culture-hero__title {
    font-size: 42px;
    max-width: 800px;
    margin-bottom: 32px;
  }

  .culture-hero__text {
    margin-bottom: 36px;
  }
}

@media (max-width: 930px) {
  .culture-hero {
    margin-top: 32px;
  }

  .culture-hero__content {
    margin-top: 36px;
  }

  .culture-hero .culture-hero__title {
    font-size: 38px;
    line-height: 44px;
    max-width: 100%;
    margin-bottom: 30px;
  }

  .culture-hero__text {
    margin-bottom: 32px;
  }
}

@media (max-width: 576px) {
  .culture-hero {
    margin-top: 20px;
  }

  .culture-hero__content {
    margin-top: 32px;
  }

  .culture-hero .culture-hero__title {
    font-size: 34px;
    line-height: 40px;
    max-width: 100%;
    margin-bottom: 28px;
  }

  .culture-hero__button {
    width: 100%;
  }
}

.work-us__text {
  margin-bottom: 32px;
}

.work-us .work-us__name {
  margin-bottom: 16px;
}

.important-us__items {
  display: grid;
  gap: 20px;
}

.work-us .important-us__items {
  grid-template-columns: repeat(6, 1fr);
}

.important-us__item {
  border-radius: 10px;
  background: var(--gray, #f7f7f7);
  padding: 24px;
}

.important-us__item-icon {
  border-radius: 8px;
  background-color: var(--white, #fff);
  padding: 4px;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  box-sizing: border-box;
  margin-bottom: 16px;
}

.important-us__item-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.important-us__item-name {
  color: var(--black, #2a324a);
  font-family: "PT Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

@media (max-width: 1200px) {
  .work-us__title {
    line-height: 40px;
  }

  .work-us__text {
    max-width: 100%;
    margin-bottom: 30px;
  }

  .work-us .important-us__items {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 930px) {
  .work-us__title {
    font-size: 30px;
    line-height: 38px;
    margin-bottom: 28px;
  }

  .work-us__text {
    margin-bottom: 28px;
  }

  .work-us .important-us__item {
    padding: 20px;
  }

  .work-us .important-us__item-icon {
    margin-bottom: 8px;
  }
}

@media (max-width: 576px) {
  .work-us__title {
    font-size: 28px;
    line-height: 34px;
  }

  .work-us .important-us__items {
    grid-template-columns: repeat(1, 1fr);
  }

  .work-us .important-us__item {
    display: flex;
    align-items: center;
    column-gap: 16px;
    justify-content: flex-start;
    padding: 20px 6px;
  }

  .work-us .important-us__item-icon {
    margin-bottom: 0px;
  }
}

/* Карточка события */
.card-event {
  border-radius: 10px;
  overflow: hidden;
  background-color: var(--white, #fff);
  padding: 24px;
  display: inline-block;
  transition: box-shadow 0.3s ease-in-out;
  height: 100%;
  box-sizing: border-box;
}

.card-event:hover {
  box-shadow: 0 2px 11px 0 rgba(0, 0, 0, 0.1);
}

.card-event:hover .card-event__image img {
  transform: scale(1.03);
}

.card-event__image {
  width: 100%;
  height: 360px;
  flex-shrink: 0;
  border-radius: 5px;
  overflow: hidden;
  margin-bottom: 24px;
}

.card-event__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 0.3s ease-in-out;
}

.card-event__line {
  width: 80px;
  height: 2px;
  background-color: #1367fa;
  margin-top: 16px;
  margin-bottom: 16px;
}

.card-event__name {
  color: var(--black, #2a324a);
  font-family: "Noto Sans", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 140%;
  margin-bottom: 16px;
}

.card-event__text {
  color: var(--Gray, #979797);
  font-family: "PT Sans", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

@media (max-width: 1200px) {
  .card-event {
    padding: 20px;
  }

  .card-event__image {
    height: 316px;
    margin-bottom: 20px;
  }

  .card-event__name {
    margin-bottom: 12px;
  }
}

@media (max-width: 576px) {
  .card-event {
    padding: 20px 16px;
  }

  .card-event__image {
    margin-bottom: 16px;
  }

  .card-event__line {
    margin-top: 12px;
    margin-bottom: 12px;
  }

  .card-event__name {
    margin-bottom: 10px;
  }
}

.corporate-life {
  background-color: #f7f7f7;
}

.corporate-life__text {
  margin-bottom: 32px;
}

@media (max-width: 1200px) {
  .corporate-life__title {
    line-height: 40px;
    line-height: 32px;
  }
}

@media (max-width: 930px) {
  .corporate-life__title {
    max-width: 100%;
  }

  .corporate-life__text {
    max-width: 100%;
    margin-bottom: 28px;
  }
}

@media (max-width: 576px) {
  .corporate-life .corporate-life__title {
    line-height: 34px;
    margin-bottom: 28px;
  }

  .corporate-life__text {
    max-width: 100%;
    margin-bottom: 28px;
  }
}

.values__items {
  display: grid;
  gap: 20px;
  grid-auto-rows: 1fr;
}

.values__item {
  border-radius: 10px;
  background-color: var(--gray, #f7f7f7);
  padding: 24px;
}

.values__item-num {
  border-radius: 8px;
  background-color: var(--white, #fff);
  width: 40px;
  height: 40px;
  box-sizing: border-box;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red, #1367fa);
  font-family: "Noto Sans", sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 100%;
  letter-spacing: -0.72px;
  margin-bottom: 16px;
}

.values__item-name {
  color: var(--black, #2a324a);
  font-family: "PT Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

@media (max-width: 576px) {
  .values__item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    column-gap: 16px;
    padding: 16px;
  }

  .values__item-num {
    margin-bottom: 0;
  }
}

.our-values .values__items {
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 930px) {
  .our-values .values__items {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 576px) {
  .our-values .values__items {
    grid-template-columns: repeat(1, 1fr);
  }
}

/* Блок Наши услуги */
.our-services {
  background: #f7f7f7;
}

.our-services__items {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}

.our-services__item {
  border-radius: 10px;
  background: var(--white, #fff);
  padding: 40px 24px;
}

.our-services__item-name {
  color: var(--red, #1367fa);
  font-family: "Noto Sans", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 140%;
  margin-bottom: 20px;
}

.our-services__item-list {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  margin: 0 !important;
  list-style: none !important;
}

.our-services__item-li {
  position: relative;
  color: var(--black, #2a324a);
  font-family: "Noto Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
  padding-left: 30px !important;
}

.our-services__item-li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  background: #1367fa;
  width: 20px;
  height: 1px;
}

.our-services__item-elems {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.our-services__item-elem {
  border-radius: 5px;
  background: var(--gray, #f7f7f7);
  padding: 6px 8px;
  color: var(--black, #2a324a);
  font-family: "PT Sans", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
}

@media (max-width: 576px) {
  .our-services__item {
    padding: 32px 20px;
  }
}

/*  */
.we-advise {
}

.we-advise__container {
  grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 576px) {
  .we-advise__container {
    grid-template-columns: repeat(1, 1fr);
    row-gap: 20px;
  }

  .we-advise .activity_insurance__image {
    height: 340px;
  }
}

/* Страница события */

.events-card {
  margin-top: 58px;
  margin-bottom: 104px;
}

.events-card__container {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  column-gap: 30px;
  margin-top: 60px;
}

.events-card__image {
  width: 437px;
  flex-shrink: 0;
}

.events-card__swiper {
  width: 100%;
  height: 100%;
}

.events-card__swiper .swiper-button-row {
  padding-top: 20px;
}

.events-card__item {
  width: 100%;
}

.events-card__item-image {
  width: 100%;
  height: 503px;
  border-radius: 5px;
  overflow: hidden;
  flex-shrink: 0;
}

.events-card__item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.events-card__date {
  margin-bottom: 16px;
}

.events-card__title {
  margin-bottom: 36px;
}

.events-card__attent {
  border-radius: 10px;
  background: var(--gray, #f7f7f7);
  padding: 32px 275px 32px 24px;
}

.events-card__attent p strong {
  color: var(--red, #1367fa);
}

.events-card__video {
  height: 503px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
}

@media (max-width: 1200px) {
  .events-card {
    margin-top: 36px;
    margin-bottom: 96px;
  }

  .events-card__container {
    margin-top: 40px;
  }

  .events-card__image {
    width: 462px;
  }

  .events-card__item-image {
    height: 532px;
  }

  .events-card__attent {
    padding: 32px 140px 32px 24px;
  }

  .events-card__video {
    height: 532px;
  }
}

@media (max-width: 930px) {
  .events-card {
    margin-top: 32px;
    margin-bottom: 88px;
  }

  .events-card__container {
    margin-top: 36px;
    flex-direction: column-reverse;
    row-gap: 30px;
  }

  .events-card__image {
    width: 100%;
  }

  .events-card__item-image {
    width: 100%;
    height: 327px;
  }

  .events-card__attent {
    padding: 32px 24px;
  }

  .events-card__video {
    width: 462px;
    height: 532px;
  }
}

@media (max-width: 576px) {
  .events-card {
    margin-top: 20px;
    margin-bottom: 64px;
  }

  .events-card__container {
    margin-top: 32px;
  }

  .events-card__item-image {
    height: 356px;
  }

  .events-card__attent {
    padding: 24px 20px;
  }

  .events-card__video {
    width: 345px;
    height: 398px;
  }
}

.career-hero {
  margin-top: 58px;
  margin-bottom: 104px;
}

.career-hero__title {
  margin-top: 60px;
}

.career-hero__text {
  margin-bottom: 40px;
}

@media (max-width: 1200px) {
  .career-hero {
    margin-top: 36px;
    margin-bottom: 96px;
  }

  .career-hero__title {
    max-width: 800px;
    margin-top: 40px;
    margin-bottom: 32px;
  }

  .career-hero__text {
    margin-bottom: 36px;
  }
}

@media (max-width: 930px) {
  .career-hero {
    margin-top: 32px;
    margin-bottom: 88px;
  }

  .career-hero__title {
    margin-top: 36px;
    margin-bottom: 30px;
  }

  .career-hero__text {
    margin-bottom: 32px;
  }
}

@media (max-width: 576px) {
  .career-hero {
    margin-top: 22px;
    margin-bottom: 64px;
  }

  .career-hero__title {
    margin-top: 32px;
    margin-bottom: 28px;
  }

  .career-hero__button {
    width: 100%;
  }
}

.our-approach {
  background-color: #f7f7f7;
}

.our-approach__container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 20px;
}

.our-approach__content {
  padding-right: 20px;
}

.our-approach__title {
  margin-bottom: 32px;
}

.our-approach__image {
  width: 100%;
  height: 320px;
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
}

.our-approach__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 1200px) {
  .our-approach__content {
    padding-right: 0;
  }

  .our-approach__image {
    width: 100%;
    height: 320px;
    flex-shrink: 0;
  }
}

@media (max-width: 930px) {
  .our-approach__title {
    margin-bottom: 28px;
  }

  .our-approach__image {
    height: 300px;
  }
}

@media (max-width: 576px) {
  .our-approach__container {
    grid-template-columns: repeat(1, 1fr);
    row-gap: 28px;
  }
}

.benefits-working__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 1fr;
  column-gap: 20px;
  row-gap: 32px;
}

.benefits-working__item {
  border-radius: 10px;
  background: #f7f7f7;
  padding: 24px;
}

.benefits-working__item-image {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  margin-bottom: 24px;
}

.benefits-working__item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.benefits-working__item-name {
  color: var(--red, #1367fa);
  font-family: "Noto Sans", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  margin-bottom: 8px;
}

@media (max-width: 1200px) {
  .benefits-working__items {
    row-gap: 20px;
  }
}

@media (max-width: 930px) {
  .benefits-working__items {
    grid-template-columns: repeat(2, 1fr);
  }

  .benefits-working__item {
    padding: 20px;
  }
}

@media (max-width: 576px) {
  .benefits-working__items {
    grid-template-columns: repeat(1, 1fr);
  }

  .benefits-working__item {
    padding: 20px;
  }
}

/* Перечень услуг (таблица) */

.service-list__table-head {
  display: grid;
  grid-template-columns: 1fr 200px;
  column-gap: 20px;
  margin-bottom: 16px;
  padding-left: 20px;
  padding-right: 20px;
}

.service-list__table-head-name {
  font-family: "PT Sans", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
}

.service-list__table-head-right {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  column-gap: 16px;
}

.service-list__table-head-right-sname {
  font-family: "PT Sans", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
}

.service-list__table-body .service-list__table-item:not(:nth-child(-n+6)) {
  display: none;
}

.service-list__table-body.show .service-list__table-item:not(:nth-child(-n+6)) {
  display: grid;
}

.service-list__table-item {
  border-radius: 10px;
  padding: 20px;
  background-color: #f7f7f7;
  display: grid;
  grid-template-columns: 1fr 200px;
  column-gap: 20px;
}

.service-list__table-item:not(:last-child) {
  margin-bottom: 10px;
}

.service-list__table-item-title {
  font-family: "Noto Sans", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: #2a324a;
}

.service-list__table-item-content {
  max-width: 780px;
}

.service-list__table-item-text {
  margin-top: 12px;
}

.service-list__table-item-count {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  column-gap: 16px;
}

.service-list__table-item-date {
  font-family: "Noto Sans", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
}

.service-list__button {
  width: fit-content;
  margin: 0 auto;
  display: flex;
  margin-top: 20px;
  color: #1367fa;
  font-family: "PT Sans", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
  text-decoration-line: underline;
}

.content-text {
  font-family: "PT Sans", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
}

.content-text p {
  padding: 0;
}

.content-text p:not(:last-child) {
  margin-bottom: 8px;
}
.content-text p:not(:first-child) {
  margin-top: 8px;
}

.content-text ul {
  margin: 0;
  list-style: none;
}

.content-text ul:not(:last-child) {
  margin-bottom: 8px;
}
.content-text ul:not(:first-child) {
  margin-top: 8px;
}

.content-text ul li {
  position: relative;
  padding-left: 14px;
}

.content-text ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  background-color: #1367fa;
  border-radius: 50%;
}

.content-text ul li:not(:last-child) {
  margin-bottom: 6px;
}

@media (max-width: 576px) {
  .service-list__table-head {
    grid-template-columns: 1fr 100px;
    padding-left: 16px;
    padding-right: 16px;
    column-gap: 8px;
  }
  .service-list__table-head-right-sname {
    font-size: 12px;
  }
  .service-list__table-item {
    grid-template-columns: 1fr 100px;
    padding: 16px;
    column-gap: 16px;
  }
  .service-list__table-item-count {
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: min-content;
    text-align: right;
    row-gap: 4px;
  }
}



.wpb_wrapper .vc_images_carousel .vc_carousel-control {
  width: 40px;
  height: 40px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  margin-top: 0;
  position: static;
  display: block !important;
}

.wpb_wrapper .vc_images_carousel .vc_carousel-control .icon-next:before,
.wpb_wrapper .vc_images_carousel .vc_carousel-control .icon-prev:before {
  content: none !important;
}

.wpb_wrapper .vc_images_carousel .vc_carousel-control.vc_left[style="display: none;"],
.wpb_wrapper .vc_images_carousel .vc_carousel-control.vc_right[style="display: none;"] {
  opacity: 0.35;
  cursor: default;
}

.wpb_wrapper .vc_images_carousel .vc_carousel-control.vc_left {
  position: absolute;
   top: calc(100% + 10px);
  left: calc(44% - 32px);
  opacity: 1;
}

.wpb_wrapper .vc_images_carousel .vc_carousel-control.vc_right {
  position: absolute;
  top: calc(100% + 10px);
  left: calc(44% + 32px);
  opacity: 1;
}

.wpb_wrapper .vc_images_carousel .vc_carousel-control .icon-prev {
  background: url(../../../uploads/2023/07/frame-7912-4.svg) no-repeat center;
  background-size: cover;
  width: 40px;
  height: 40px;
  transition: all ease-in-out .1s;
  position: static;
  margin: 0;
  padding: 0;
}

.wpb_wrapper .vc_images_carousel .vc_carousel-control .icon-next {
  background: url(../../../uploads/2023/07/frame-7914-2.svg) no-repeat center;
  background-size: cover;
  width: 40px;
  height: 40px;
  transition: all ease-in-out .1s;
  position: static;
  margin: 0;
  padding: 0;
}

.wpb_wrapper .vc_images_carousel .vc_carousel-control.vc_left:not([style="display: none;"]) .icon-prev:hover {
  background: url(../../../uploads/2023/07/frame-79125.svg) no-repeat center;
  background-size: cover;
  width: 40px;
  height: 40px;
}

.wpb_wrapper .vc_images_carousel .vc_carousel-control.vc_right:not([style="display: none;"]) .icon-next:hover {
  background: url(../../../uploads/2023/07/frame-7916.svg) no-repeat center;
  background-size: cover;
  width: 40px;
  height: 40px;
}

@media (max-width: 930px) {
  .wpb_gallery .flex-direction-nav {
    column-gap: 20px;
  }
}