/* ABOUT PAGE */

/* about-title-area */

.about-title-area {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  margin-top: 70px;
  position: relative;
  gap: 0;
}

.about-title-area-breadcrumbs {
  background: #f2f2f2;
  width: 100%;
  height: 100%;
  z-index: 2;
  opacity: 1;
}

.about-title-area-breadcrumbs .breadcrumbs-list {
  padding-left: 0;
}

.about-title-area-content {
  display: flex;
  height: 500px;
  align-items: flex-end;
}

.about-title {
  width: 90%;
  padding-bottom: 105px;
  font-size: 77px;
  font-weight: 600;
  line-height: 1;
  color: #fff;
  z-index: 2;
  position: relative;
}

.about-title:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 54px;
  background: #acdcd2;
}

.about-title:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: -100%;
  width: 100%;
  height: 54px;
  background: #acdcd2;
}

.about-image {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 55px;
  left: 0;
  object-fit: cover;
  object-position: top center;
}

.about-title-area-element {
  width: 10%;
  position: relative;
  height: 100%;
  z-index: 1;
}

.about-title-area-element:before {
  content: "";
  position: absolute;
  width: 100%;
  height: calc(100% - 54px);
  top: 0;
  background: #acdcd2;
}

.about-title-area-element:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 54px;
  bottom: 0;
  right: -100%;
  background: #acdcd2;
}

.about-image-mob {
  display: none;
}

@media (max-width: 1024px) {
  .about-title-area {
    margin-top: 55px;
  }

  .about-title-area-content {
    height: 370px;
  }

  .about-title:before,
  .about-title:after,
  .about-title-area-element:after {
    height: 40px;
  }

  .about-title-area-element:before {
    height: calc(100% - 40px);
  }

  .about-title {
    font-size: 44px;
    padding-bottom: 75px;
  }
}

@media (max-width: 767px) {
  .about-image {
    height: auto;
  }

  .about-title-area-element {
    height: 30%;
    width: 20%;
  }

  .about-title:before,
  .about-title:after,
  .about-title-area-element:after {
    height: 20px;
  }

  .about-title-area-element:before {
    height: calc(100% - 20px);
    bottom: 20px;
  }

  .about-title {
    font-size: 32px;
    padding-bottom: 50px;
    width: 80%;
  }

  .about-image {
    display: none;
  }

  .about-image-mob {
    display: block;
    position: absolute;
    object-fit: cover;
    width: 100%;
    height: 100%;
  }
}

/* about-text-with-icon */

.about-text-with-icon {
  padding: 84px 0;
}

.about-text-with-icon-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.about-text-with-icon-title-area {
  display: flex;
  gap: 27px;
}

.about-text-with-icon-img {
  flex-shrink: 0;
  width: 135px;
  height: auto;
}

.about-text-with-icon-title {
  font-size: 16px;
  line-height: 1.1;
  font-weight: 600;
  text-transform: uppercase;
  color: #000;
}

.about-text-with-icon-text {
  font-size: 59px;
  line-height: 1;
  font-weight: 600;
  color: #000;
}

@media (max-width: 1024px) {
  .about-text-with-icon {
    padding: 64px 0;
  }

  .about-text-with-icon-content {
    gap: 24px;
  }

  .about-text-with-icon-title-area {
    gap: 20px;
  }

  .about-text-with-icon-img {
    width: 104px;
  }

  .about-text-with-icon-title {
    font-size: 12px;
  }

  .about-text-with-icon-text {
    font-size: 39px;
  }
}

@media (max-width: 767px) {
  .about-text-with-icon {
    padding: 54px 0;
  }

  .about-text-with-icon-content {
    gap: 20px;
  }

  .about-text-with-icon-title-area {
    gap: 14px;
  }

  .about-text-with-icon-img {
    width: 72px;
  }

  .about-text-with-icon-title {
    font-size: 9px;
  }

  .about-text-with-icon-text {
    font-size: 26px;
  }
}

/* our-values */

.our-values {
  padding: 0;
}

.our-values-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.our-values-items {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  list-style: none;
}

.our-values-item {
  width: calc((100% - 32px) / 3);
  display: flex;
}

.our-values-item-content {
  background: #acdcd2;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 400px;
}

.our-values-item-title {
  font-size: 29px;
  line-height: 1;
  font-weight: 600;
}

.our-values-item-text {
  font-size: 20px;
  line-height: 1.2;
  font-weight: 400;
}

.our-values-item:nth-child(4n + 1),
.our-values-item:nth-child(4n + 4) {
  width: calc((100% - 32px) / 3);
}

.our-values-item:nth-child(4n + 2),
.our-values-item:nth-child(4n + 3) {
  width: calc((100% - 32px) / 3 * 2 + 16px);
}

.our-values-item:nth-child(4n + 3) {
  justify-content: flex-end;
}

.our-values-item:nth-child(4n + 2) .our-values-item-content,
.our-values-item:nth-child(4n + 3) .our-values-item-content {
  width: calc(50% - 8px);
}

@media (max-width: 1024px) {
  .our-values-content {
    gap: 24px;
  }

  .our-values-items {
    gap: 6px;
  }

  .our-values-item,
  .our-values-item:nth-child(4n + 1),
  .our-values-item:nth-child(4n + 4),
  .our-values-item:nth-child(4n + 2),
  .our-values-item:nth-child(4n + 3) {
    width: calc(50% - 3px);
  }

  .our-values-item:nth-child(4n + 2) .our-values-item-content,
  .our-values-item:nth-child(4n + 3) .our-values-item-content {
    width: 100%;
  }

  .our-values-item-content {
    padding: 27px;
    gap: 24px;
    height: 360px;
  }

  .our-values-item-title {
    font-size: 24px;
  }
}

@media (max-width: 767px) {
  .our-values-content {
    gap: 16px;
  }

  .our-values-item,
  .our-values-item:nth-child(4n + 1),
  .our-values-item:nth-child(4n + 4),
  .our-values-item:nth-child(4n + 2),
  .our-values-item:nth-child(4n + 3) {
    width: 100%;
  }

  .our-values-item-content {
    min-height: 259px;
    height: auto;
  }
}

/* principle */

.principle {
  padding: 84px 0;
}

.principle-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.principle-text {
  font-size: 59px;
  line-height: 1;
  font-weight: 600;
}

@media (max-width: 1024px) {
  .principle {
    padding: 64px 0;
  }

  .principle-text {
    font-size: 44px;
  }
}

@media (max-width: 767px) {
  .principle {
    padding: 54px 0;
  }

  .principle-content {
    gap: 24px;
  }

  .principle-text {
    font-size: 35px;
  }
}

/* PARTNERS */

.partners {
  padding: 84px 0 94px;
}

.partners-carousel {
  padding-top: 32px;
}

.clients-swiper {
  width: 100%;
  overflow: hidden;
  pointer-events: none;
}

.client-card {
  height: 175px;
  border-radius: 8px;
  background: #f1eff6;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  padding: 18px;
  box-sizing: border-box;
  user-select: none;
}

.client-card img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}

.clients-swiper .swiper-wrapper {
  align-items: stretch;
  height: fit-content;
  transition-timing-function: linear !important;
}

.clients-swiper .swiper-slide {
  width: 247px;
}

.clients-swiper {
  cursor: grab;
}
.clients-swiper:active {
  cursor: grabbing;
}

@media (max-width: 1024px) {
  .partners {
    padding: 62px 0 64px;
  }

  .partners-carousel {
    padding-top: 24px;
  }

  .client-card {
    height: 150px;
  }
  .clients-swiper .swiper-slide {
    width: 210px;
  }
}

@media (max-width: 767px) {
  .partners {
    padding: 54px 0;
  }

  .partners-carousel {
    padding-top: 22px;
  }

  .client-card {
    height: 80px;
    border-radius: 4px;
  }
  .clients-swiper .swiper-slide {
    width: 110px;
  }
}

/* Make wrapper a single line */
#clientsSwiper .swiper-wrapper {
  display: flex;
  flex-wrap: nowrap;
  will-change: transform;
}

/* Slides should not shrink */
#clientsSwiper .swiper-slide {
  flex: 0 0 auto;
}

#clientsSwiper .swiper-slide {
  flex: 0 0 auto;
  margin-right: 8px;
}

@media (min-width: 768px) {
  #clientsSwiper .swiper-slide { margin-right: 18px; }
}

@media (min-width: 1024px) {
  #clientsSwiper .swiper-slide { margin-right: 8px; }
}

/* --- PARTNERS --- */

/* why-us */

.why-us {
  padding-bottom: 84px;
}

.why-us-content {
  display: flex;
  flex-direction: column;
  gap: 37px;
}

.why-us-items {
  display: flex;
  gap: 8px;
  align-items: stretch;
}

.why-us-item {
  padding: 32px 44px;
  background: #e5daff;
  font-size: 26px;
  line-height: 1.1;
  font-weight: 500;
}

.why-us-items-left {
  width: calc(35% - 4px);
}

.why-us-items-left .why-us-item {
  font-size: 46px;
  min-height: 422px;
}

.why-us-items-right {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: calc(65% - 4px);
}

.why-us-items-right .why-us-item {
  flex: 1;
  width: 100%;
  padding-right: 50%;
}

@media (max-width: 1024px) {
  .why-us {
    padding-bottom: 64px;
  }

  .why-us-content {
    gap: 32px;
  }

  .why-us-items {
    gap: 6px;
  }
  .why-us-items-left,
  .why-us-items-right {
    width: calc(50% - 3px);
  }

  .why-us-item {
    padding: 22px 30px;
    font-size: 18px;
  }

  .why-us-items-right .why-us-item {
    padding-right: 30px;
  }

  .why-us-items-left .why-us-item {
    font-size: 32px;
    min-height: 295px;
  }
}

@media (max-width: 767px) {
  .why-us {
    padding-bottom: 54px;
  }

  .why-us-content {
    gap: 24px;
  }

  .why-us-items {
    gap: 7px;
    flex-direction: column;
  }

  .why-us-items-left,
  .why-us-items-right {
    width: 100%;
  }

  .why-us-item {
    padding: 22px 26px;
  }

  .why-us-items-right .why-us-item {
    min-height: 144px;
    padding-right: 40%;
  }
}

/* about-ach */

.about-ach {
  padding-bottom: 84px;
}

.about-ach-content {
  display: flex;
  flex-direction: column;
  gap: 58px;
}

.about-ach-items {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  row-gap: 100px;
}

.about-ach-item {
  width: calc((100% - 40px) / 3);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.about-ach-number {
  font-size: 74px;
  line-height: 1;
  font-weight: 500;
  color: #000;
}

.about-ach-value {
  font-size: 16px;
  line-height: 1.1;
  font-weight: 400;
  color: #000;
  opacity: 0.4;
  max-width: 265px;
}

@media (max-width: 1024px) {
  .about-ach {
    padding-bottom: 64px;
  }

  .about-ach-content {
    gap: 44px;
  }

  .about-ach-items {
    gap: 20px;
    row-gap: 64px;
  }

  .about-ach-item {
    width: calc(50% - 10px);
    gap: 8px;
  }
}

@media (max-width: 767px) {
  .about-ach {
    padding-bottom: 54px;
  }

  .about-ach-content {
    gap: 32px;
  }

  .about-ach-items {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    row-gap: 64px;
  }

  .about-ach-item {
    width: 100%;
    gap: 8px;
  }
}

/* CTA */

.cta {
  height: 100vh;
  background: #6c2f16;
  position: relative;
}

.inner-cta {
  padding: 92px 0;
}

.inner-cta .cta-content {
  width: 100%;
  background: red;
  position: relative;
  overflow: hidden;
  max-height: 640px;
}

.cta-bg {
  background: #6c2f16;
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.cta-bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cta-content {
  z-index: 1;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
  position: relative;
}

.cta-slogan {
  color: #fff;
  font-size: 76px;
  line-height: 1;
  max-width: 1000px;
  text-align: center;
  font-weight: 600;
  z-index: 3;
}

.cta-btn {
  background-color: transparent;
  box-shadow: 0px 0px 0px 1px rgba(255, 255, 255, 0.1) inset;
  -webkit-box-shadow: 0px 0px 0px 1px rgba(255, 255, 255, 1) inset;
  -moz-box-shadow: 0px 0px 0px 1px rgba(255, 255, 255, 1) inset;
  z-index: 3;
}

@media (max-width: 1024px) {
  .cta {
    height: 50vh;
  }

  .cta-slogan {
    font-size: 64px;
  }

  .inner-cta {
    padding: 64px 0;
  }
  
  .cta-content {
      max-height: 50vh;
  }
}

@media (max-width: 820px) {
  .cta-slogan {
    font-size: 54px;
  }

  .inner-cta .cta-content {
    max-height: 480px;
  }
}

@media (max-width: 767px) {
  .cta-slogan {
    font-size: 44px;
  }

  .cta-btn {
    font-size: 12px;
    padding: 20px;
  }

  .inner-cta {
    padding: 44px 0;
  }

  .inner-cta .cta-content {
    max-height: 300px;
  }
  
  .cta-content {
      max-height: 50vh;
  }

  .inner-cta .cta-slogan {
    font-size: 32px;
    max-width: 90%;
  }
}

/* --- CTA --- */

/* about-our-services */

.about-our-services {
  padding: 92px 0;
}

.about-our-services-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.about-our-services-items {
  display: flex;
  gap: 6px;
}

.about-our-services-items-left,
.about-our-services-items-right {
  width: calc(50% - 3px);
  display: flex;
  gap: 6px;
}

.about-our-services-items-right {
  flex-direction: column;
}

.about-our-services-item {
  padding: 22px;
  height: 100%;
  background: #e5daff;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: #000;
}

.about-our-services-item:hover {
  filter: brightness(0.97);
}

.about-our-services-item-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-our-services-item-title {
  font-size: 26px;
  line-height: 1;
  font-weight: 600;
  width: 90%;
}

.about-our-services-desc {
  font-size: 17px;
  line-height: 1.2;
  font-weight: 400;
  width: 50%;
}

.about-our-services-item-arrow {
  font-size: 60px;
  line-height: 1;
  font-weight: 500;
}

.about-our-services-items-left .about-our-services-item {
  justify-content: space-between;
}

.about-our-services-items-right .about-our-services-item {
  gap: 44px;
}

@media (max-width: 1024px) {
  .about-our-services {
    padding: 74px 0 64px;
  }

  .about-our-services-items {
    flex-direction: column;
  }

  .about-our-services-items-left,
  .about-our-services-items-right {
    width: 100%;
  }

  .about-our-services-items-left .about-our-services-item {
    width: calc(50% - 3px);
    min-height: 368px;
  }

  .about-our-services-item-title {
    width: 80%;
  }

  .about-our-services-desc {
    width: 70%;
  }

  .about-our-services-items-right .about-our-services-desc {
    width: 50%;
  }
}

@media (max-width: 767px) {
  .about-our-services {
    padding: 54px 0;
  }

  .about-our-services-content {
    gap: 24px;
  }

  .about-our-services-item-arrow {
    display: none;
  }

  .about-our-services-items-left {
    flex-direction: column;
  }

  .about-our-services-item {
    padding: 29px 22px;
  }

  .about-our-services-items-left .about-our-services-item {
    width: 100%;
    min-height: auto;
  }

  .about-our-services-item-text {
    gap: 10px;
  }

  .about-our-services-desc,
  .about-our-services-items-right .about-our-services-desc {
    width: 100%;
    font-size: 14px;
  }

  .about-our-services-item-title {
    font-size: 18px;
    width: 100%;
  }
}

/* who-we-for */

.who-we-for {
  padding-bottom: 100px;
}

.who-we-for-content {
  display: flex;
}

.who-we-for-title {
  width: 40%;
}

.who-we-for-items {
  width: 60%;
  display: flex;
  flex-direction: column;
  gap: 8px;
  list-style: none;
}

.who-we-for-item {
  padding: 16px;
  height: 115px;
  background: #acdcd2;
  font-size: 24px;
  line-height: 1.1;
  color: #000;
  font-weight: 500;
}

@media (max-width: 1024px) {
  .who-we-for {
    padding-bottom: 64px;
  }

  .who-we-for-content {
    flex-direction: column;
    gap: 24px;
  }

  .who-we-for-title,
  .who-we-for-items {
    width: 100%;
  }

  .who-we-for-item {
    padding: 16px;
  }
}

@media (max-width: 767px) {
  .who-we-for {
    padding-bottom: 54px;
  }

  .who-we-for-item {
    font-size: 18px;
  }
}

/* vacancies */

.vacancies {
  padding-bottom: 114px;
}

.vacancies-content {
  display: flex;
  flex-direction: column;
  gap: 44px;
}

.vacancies-title-area {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.vacancies-subtitle {
  font-size: 24px;
  font-weight: 400;
  line-height: 1.1;
  color: #000;
  opacity: 0.4;
}

.vacancies-items {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.vacancies-item {
  padding: 22px;
  text-decoration: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  font-size: 24px;
  color: #000;
  font-weight: 600;
  line-height: 1.1;
  background: #f0f0f0;
  padding-right: 26px;
  border-radius: 4px;
}

.vacancies-item:hover {
  filter: brightness(0.95);
}

@media (max-width: 1024px) {
  .vacancies {
    padding-bottom: 64px;
  }

  .vacancies-content {
    gap: 32px;
  }

  .vacancies-subtitle {
    font-size: 20px;
  }

  .vacancies-item {
    font-size: 18px;
  }
}

@media (max-width: 767px) {
  .vacancies {
    padding-bottom: 54px;
  }

  .vacancies-content {
    gap: 22px;
  }

  .vacancies-subtitle {
    font-size: 18px;
  }

  .vacancies-items {
    gap: 6px;
  }

  .vacancies-item {
    font-size: 16px;
  }
}

/* awards */

.awards {
  padding: 96px 0 124px;
  background: #acdcd2;
  overflow-x: hidden;
}

.awards-content {
  display: flex;
  flex-direction: column;
  gap: 35px;
}

.awards-title-area {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.awards-slider {
  width: 100%;
  overflow: visible;
}

.awards-item {
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 22px;
  color: #000;
  min-height: 340px;
}

.awards-item-title {
  font-size: 27px;
  font-weight: 600;
  line-height: 1;
}

.awards-item-desc {
  font-size: 18px;
  line-height: 1.2;
  font-weight: 400;
}

@media (max-width: 1024px) {
  .awards {
    padding: 67px 0 95px;
  }
}

@media (max-width: 767px) {
  .awards {
    padding: 54px 0 54px;
  }

  .awards-content {
    position: relative;
    padding-bottom: 100px;
    gap: 24px;
  }

  .awards-slider-navigation {
    position: absolute;
    left: 0;
    bottom: 0;
  }

  .awards-item {
    gap: 12px;
    min-height: 256px;
    padding: 16px;
  }

  .awards-item-title {
    font-size: 20px;
  }

  .awards-item-desc {
    font-size: 13px;
  }
}

/* awards */

.talks {
  padding: 96px 0 54px;
  overflow-x: hidden;
}

.talks-content {
  display: flex;
  flex-direction: column;
  gap: 35px;
}

.talks-title-area {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.talks-slider {
  width: 100%;
  overflow: visible;
}

.talks-item {
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px 16px;
  color: #000;
  min-height: 269px;
  box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.2) inset;
  -webkit-box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.2) inset;
  -moz-box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.2) inset;
}

.talks-item-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.talks-item-img {
  width: 200px;
  flex-shrink: 0;
}

.talks-item-title {
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  max-height: 54px;
}

.talks-item-link {
  text-transform: uppercase;
  color: #000;
}

.talks-item-link:hover {
  opacity: 0.5;
}

@media (max-width: 1024px) {
  .talks {
    padding: 67px 0 95px;
  }
}

@media (max-width: 767px) {
  .talks {
    padding: 54px 0 54px;
  }

  .talks-content {
    gap: 24px;
  }

  .talks-slider-navigation {
    display: none;
  }

  .talks-item {
    gap: 12px;
    min-height: 256px;
    padding: 16px;
  }

  .talks-item-title {
    font-size: 14px;
  }
}
