.work-process__header {
display: flex;
align-items: flex-end;
justify-content: space-between;
gap: 24px;
margin-bottom: 24px;
}
.work-process__header-left {
flex: 1 1 auto;
}
.work-process__title {
font-family: 'Mulish', sans-serif;
font-weight: 700;
font-size: 42px;
line-height: 52px;
color: rgba(31, 79, 206, 1);
margin: 0 0 20px;
}
.work-process__description {
font-family: 'Mulish', sans-serif;
font-weight: 400;
font-size: 20px;
line-height: 28px;
color: rgba(27, 27, 27, 1);
margin: 0;
max-width: 901px;
}
.work-process__nav {
display: flex;
gap: 44px;
flex-shrink: 0;
padding-bottom: 4px;
}
.work-process__btn {
display: flex;
align-items: center;
justify-content: center;
width: 46px;
height: 46px;
border-radius: 50%;
border: 1.5px solid rgba(31, 79, 206, 1);
background: transparent;
color: rgba(31, 79, 206, 1);
cursor: pointer;
transition: background 0.2s, border-color 0.2s, opacity 0.2s;
-webkit-appearance: none;
appearance: none;
}
.work-process__btn:hover {
background: rgba(31, 79, 206, 0.08);
border-color: rgba(31, 79, 206, 1);
}
.work-process__btn.swiper-button-disabled {
opacity: 0.35;
cursor: default;
pointer-events: none;
}
.work-process__btn svg {
width: 10px;
height: 20px;
}
.work-process__line {
margin-left: max(30px, calc((100vw - 1232px) / 2 + 30px));
height: 1.5px;
background: #A0B4E9;
margin-bottom: 24px;
}
.work-process__tabs-wrap {
padding-left: max(30px, calc((100vw - 1232px) / 2 + 30px));
margin-bottom: 48px;
overflow-x: auto;
scrollbar-width: none;
}
.work-process__tabs-wrap::-webkit-scrollbar {
display: none;
}
.work-process__tabs {
display: flex;
gap: 60px;
width: max-content;
padding-right: 30px;
}
.work-process__tab {
display: inline-flex;
align-items: center;
gap: 6px;
margin: 0;
padding: 0;
border: 0;
background: none;
cursor: pointer;
font-family: 'Mulish', sans-serif;
font-weight: 500;
font-size: 16px;
line-height: 24px;
color: rgba(27, 27, 27, 1);
white-space: nowrap;
transition: color 0.2s;
-webkit-appearance: none;
appearance: none;
}
.work-process__tab-dot {
flex-shrink: 0;
width: 8px;
height: 8px;
border-radius: 50%;
background: rgba(27, 27, 27, 1);
transition: background 0.2s;
}
.work-process__tab.is-active {
color: rgba(31, 79, 206, 1);
}
.work-process__tab.is-active .work-process__tab-dot {
background: rgba(31, 79, 206, 1);
}
.work-process__swiper {
overflow: hidden;
width: 100%;
touch-action: pan-y;
}
.work-process__swiper .swiper-wrapper {
display: flex;
flex-direction: row;
flex-wrap: nowrap;
align-items: stretch;
box-sizing: border-box;
}
.work-process__slide {
display: flex;
flex-shrink: 0;
gap: 60px;
align-items: stretch;
height: auto;
box-sizing: border-box;
}
.work-process__slide-main {
flex: 1 1 auto;
display: flex;
flex-direction: column;
max-width: 576px;
min-height: 268px;
}
.work-process__slide-title {
font-family: 'Mulish', sans-serif;
font-weight: 700;
font-size: 26px;
line-height: 32px;
color: rgba(27, 27, 27, 1);
margin: 0 0 16px;
}
.work-process__slide-text {
font-family: 'Mulish', sans-serif;
font-weight: 400;
font-size: 20px;
line-height: 28px;
color: rgba(27, 27, 27, 1);
margin: 0;
max-width: 560px;
}
.work-process__slide-bottom {
margin-top: auto;
display: flex;
align-items: flex-end;
justify-content: space-between;
gap: 24px;
padding-top: 24px;
}
.work-process__cta {
display: inline-flex;
align-items: center;
justify-content: center;
padding: 8px 32px;
min-height: 44px;
border-radius: 40px;
border: 2px solid #1F4FCE;
background: transparent;
color: #1F4FCE;
font-family: 'Mulish', sans-serif;
font-weight: 600;
font-size: 16px;
line-height: 24px;
cursor: pointer;
transition: background 0.2s, transform 0.2s;
-webkit-appearance: none;
appearance: none;
}
.work-process__cta:hover {
background: rgba(31, 79, 206, 0.08);
transform: translateY(-2px);
}
.work-process__counter {
flex-shrink: 0;
font-family: 'Mulish', sans-serif;
font-weight: 300;
font-size: 52px;
line-height: 1;
color: rgba(31, 79, 206, 0.5);
}
.work-process__slide-image {
flex-shrink: 0;
width: 504px;
height: 268px;
border-radius: 8px;
overflow: hidden;
}
.work-process__slide-image img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
}
@media (max-width: 1024px) {
.work-process__title {
font-size: 28px;
line-height: 35px;
}
.work-process__description {
font-size: 16px;
line-height: 24px;
}
.work-process__btn {
width: 38px;
height: 38px;
}
.work-process__tabs {
gap: 28px;
}
.work-process__slide {
gap: 32px;
}
.work-process__slide-image {
width: 360px;
height: 224px;
}
.work-process__slide-title {
font-size: 22px;
line-height: 28px;
}
.work-process__slide-text {
font-size: 16px;
line-height: 24px;
}
.work-process__counter {
font-size: 40px;
}
}
@media (max-width: 640px) {
.work-process__nav {
display: none;
}
.work-process__tabs {
gap: 22px;
}
.work-process__slide {
flex-direction: column;
gap: 20px;
}
.work-process__slide-main {
max-width: 100%;
min-height: 0;
}
.work-process__slide-image {
order: -1;
width: 100%;
height: 200px;
}
.work-process__slide-title {
font-size: 20px;
line-height: 26px;
}
.work-process__slide-text {
font-size: 14px;
line-height: 20px;
}
.work-process__slide-bottom {
gap: 16px;
}
.work-process__counter {
font-size: 36px;
}
.work-process__title br,
.work-process__description br,
.work-process__slide-text br {
display: none;
}
}