.hero {
background-color: var(--clr-pink-100);
overflow: hidden;
position: sticky;
top: -80px;
z-index: 1;
}
.hero__wrap {
position: relative;
height: 100vh;
display: flex;
align-items: center;
justify-content: space-between;
}
.hero__article {
max-width: 670px;
display: flex;
flex-direction: column;
align-items: flex-start;
gap: 40px;
z-index: 2;
}
.hero__article-header {
display: flex;
flex-direction: column;
align-items: flex-start;
gap: 20px;
}
.hero__title {
margin: 0;
}
.hero__subtitle {
margin: 0;
color: var(--clr-gray);
}
.hero__article-btns {
display: flex;
flex-wrap: wrap;
justify-content: flex-start;
align-items: center;
gap: 10px;
}
.hero__list {
padding: 0;
margin: 0;
max-width: 210px;
display: flex;
flex-direction: column;
justify-content: flex-end;
gap: 40px;
z-index: 2;
}
.hero__item {
display: flex;
flex-direction: column;
align-items: flex-end;
}
.hero__item-title {
margin: 0;
color: var(--clr-purple);
font-size: 48px;
font-weight: 500;
line-height: 110%;
letter-spacing: 0%;
text-align: right;
text-transform: uppercase;
}
.hero__item-subtitle {
color: var(--clr-gray);
font-size: 16px;
font-weight: 400;
line-height: 150%;
letter-spacing: 0%;
text-align: right;
}
.hero__preview-wrap {
position: absolute;
bottom: -220px;
right: -5%;
}
.hero__preview {
height: 920px;
pointer-events: none;
object-fit: cover;
}
@media screen and (max-width: 1024px) {
.hero__wrap {
height: 100vh;
flex-direction: column;
justify-content: center;
align-items: flex-start;
gap: 40px;
}
.hero__list {
max-width: 100%;
flex-direction: row;
justify-content: flex-start;
}
.hero__item {
max-width: 210px;
align-items: flex-start;
}
.hero__item-title {
text-align: left;
}
.hero__item-subtitle {
text-align: left;
}
.hero__preview-wrap {
right: -30%;
}
}
@media screen and (max-width: 768px) {
.hero__list {
display: none;
}
.hero__preview-wrap {
right: -85%;
bottom: -40%;
}
}
@media screen and (max-width: 430px) {
.hero__btn {
width: 100%;
}
.hero__preview-wrap {
right: -70%;
bottom: -30%;
}
.hero__preview {
height: 500px;
}
}  .tags {
width: 100%;
display: flex;
flex-direction: column;
align-items: center;
gap: 40px;
}
.tags__wrapper {
width: 100%;
display: flex;
flex-direction: column;
gap: 20px;
}
.tags__list {
width: max-content;
display: flex;
gap: 10px;
animation: scroll-left 30s linear infinite;
}
.tags__list:nth-child(2) {
animation: scroll-right 30s linear infinite;
}
.tags__item {
margin: 0;
display: inline-flex;
padding: 16px 24px;
white-space: nowrap;
border-radius: 30px;
background-color: var(--clr-pink-100);
color: var(--clr-black);
font-size: 16px;
font-weight: 500;
transition: background-color 0.3s ease, color 0.3s ease;
}
.tags__item:hover {
background-color: var(--clr-purple);
color: var(--clr-white);
}
@keyframes scroll-left {
0% {
transform: translateX(0);
}
100% {
transform: translateX(-25%);
}
}
@keyframes scroll-right {
0% {
transform: translateX(-25%);
}
100% {
transform: translateX(0);
}
}  .about__wrapper {
display: flex;
flex-direction: column;
align-items: center;
gap: 40px;
}
.about__img {
width: 100%;
display: block;
object-fit: cover;
border-radius: 40px;
}
@media screen and (max-width: 768px) {
.about__img {
border-radius: 10px;
}
}  .coop {
padding: 80px 0;
background-color: #F1EAFC;
}
.coop__wrapper {
display: flex;
flex-direction: column;
justify-content: flex-start;
align-items: flex-start;
gap: 40px;
}
.coop__list {
display: flex;
flex-direction: row;
justify-content: flex-start;
align-items: flex-start;
gap: 20px;
}
.coop__item {
padding: 30px;
min-height: 240px;
width: 100%;
display: flex;
flex-direction: column;
justify-content: space-between;
align-items: flex-start;
gap: 20px;
border-radius: 30px;
}
.coop__item.one {
background: #d1b2f6;
}
.coop__item.two {
background-color: #C098F2;
}
.coop__item.three {
background-color: #AE7FEE;
}
.coop__item.four {
background-color: #9B66EA;
}
.coop__number {
padding: 11px 18px;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
gap: 10px;
font-size: 14px;
font-weight: 400;
line-height: 150%;
letter-spacing: 0%;
text-align: center;
border-radius: 30px;
background-color: var(--clr-white);
}
.one.coop__number {
color: #d1b2f6;
}
.two.coop__number {
color: #C098F2;
}
.three.coop__number {
color: #AE7FEE;
}
.four.coop__number {
color: #9B66EA;
}
.coop__article {
max-width: 412px;
display: flex;
flex-direction: column;
justify-content: flex-start;
align-items: flex-start;
gap: 12px;
}
.coop__title {
margin: 0;
color: var(--clr-white);
font-family: Linik Sans;
font-size: 24px;
font-weight: 600;
line-height: 120%;
letter-spacing: 0%;
}
.coop__subtitle {
margin: 0;
color: var(--clr-white);
font-family: Inter;
font-size: 14px;
font-weight: 400;
line-height: 150%;
letter-spacing: 0%;
}
@media screen and (max-width: 1280px) {
.coop__list {
display: grid;
grid-template-columns: repeat(2, 1fr);
}
.coop__item {
min-height: 320px;
width: auto;
}
}
@media screen and (max-width: 768px) {
.coop__wrapper {
gap: 30px;
}
.coop__list {
width: 100%;
grid-template-columns: repeat(1, 1fr);
}
.coop__item {
padding: 20px;
min-height: 240px;
border-radius: 20px;
}
.coop__title {
font-size: 20px;
}
}  .compare {
padding: 80px 0;
background-color: #F1EAFC;
}
.compare__wrapper {
display: flex;
flex-direction: column;
justify-content: flex-start;
align-items: flex-start;
gap: 40px;
}
.compare__title {
max-width: 630px;
}
.compare__title span {
color: #9b66ea;
}
.compare__table {
width: 100%;
border-spacing: 10px;
border-collapse: separate;
}
.compare__header {
display: table-header-group;
}
.compare__body {
display: table-row-group;
}
.compare__rows {
display: table-row;
}
.compare__colm {
padding: 12px 18px;
border-radius: 12px;
display: table-cell;
}
.compare__colm--header {
display: table-cell;
}
.compare__colm--label {
display: table-cell;
}
.compare__colm.purple {
color: var(--clr-white);
background-color: #9B66EA;
}
.compare__colm .plus {
display: flex;
align-items: center;
gap: 10px;
}
.compare__colm .plus::before {
content: '';
min-height: 36px;
min-width: 36px;
display: block;
background: no-repeat url(//xn--h1aclijcp0f.xn--p1ai/wp-content/themes/vbrand_custom/assets/icons/table_plus.svg) center / cover;
}
.compare__colm.gray {
background-color: #ECE3FC;
}
.compare__colm .minus {
display: flex;
align-items: center;
gap: 10px;
}
.compare__colm .minus::before {
content: '';
min-height: 36px;
min-width: 36px;
display: block;
background: no-repeat url(//xn--h1aclijcp0f.xn--p1ai/wp-content/themes/vbrand_custom/assets/icons/table_minus.svg) center / cover;
}
.compare__colm h3 {
margin: 0;
color: var(--clr-black);
font-family: Linik Sans;
font-size: 18px;
font-weight: 600;
line-height: 120%;
letter-spacing: 0%;
}
.compare__colm h4 {
margin: 0;
font-family: Linik Sans;
font-size: 16px;
font-weight: 600;
line-height: 120%;
letter-spacing: 0%;
}
.compare__colm p {
margin: 0;
font-family: Linik Sans;
font-size: 14px;
font-weight: 500;
line-height: 120%;
letter-spacing: 0%;
} @media screen and (max-width: 768px) {
.compare {
padding: 60px 0;
}
.compare__wrapper {
gap: 30px;
}
.compare__table {
display: block;
border-spacing: 0;
}
.compare__header {
display: none;
}
.compare__body {
display: block;
}
.compare__rows {
margin-bottom: 20px;
display: flex;
flex-direction: column;
gap: 10px;
border-radius: 12px;
overflow: hidden;
}
.compare__rows:last-child {
margin-bottom: 0;
}
.compare__colm {
display: block;
padding: 16px;
border-radius: 12px;
border-spacing: 0;
width: 100%;
box-sizing: border-box;
}
.compare__colm--label {
padding: 32px 0 16px;
margin-bottom: 0;
}
.compare__colm--label h3 {
color: var(--clr-black);
font-size: 16px;
margin: 0;
}
.compare__colm:not(.compare__colm--label) {
padding: 12px 16px;
border-bottom: 1px solid #F1EAFC;
}
.compare__colm:not(.compare__colm--label):last-child {
border-bottom: none;
}
.compare__colm:not(.compare__colm--label)::before {
content: attr(data-label);
display: block;
font-family: Linik Sans;
font-size: 12px;
font-weight: 600;
line-height: 120%;
margin-bottom: 8px;
color: var(--clr-gray);
text-transform: uppercase;
letter-spacing: 0.5px;
}
.compare__colm.purple:not(.compare__colm--label)::before {
color: rgba(255, 255, 255, 0.8);
}
.compare__colm .plus,
.compare__colm .minus {
font-size: 13px;
}
.compare__colm .plus::before,
.compare__colm .minus::before {
min-height: 28px;
min-width: 28px;
}
}
@media screen and (max-width: 430px) {
.compare {
padding: 40px 0;
}
.compare__wrapper {
gap: 24px;
}
.compare__title {
font-size: 32px;
}
.compare__colm--label h3 {
font-size: 14px;
}
.compare__colm:not(.compare__colm--label) {
padding: 10px 12px;
}
.compare__colm:not(.compare__colm--label)::before {
font-size: 11px;
margin-bottom: 6px;
}
.compare__colm .plus,
.compare__colm .minus {
font-size: 12px;
}
.compare__colm .plus::before,
.compare__colm .minus::before {
min-height: 24px;
min-width: 24px;
}
}  .maps {
padding: 80px 0;
background-color: #F1EAFC;
}
.maps__wrapper {
display: flex;
flex-direction: column;
gap: 40px;
}
.section__article-maps {
max-width: 640px;
display: flex;
flex-direction: column;
gap: 12px;
}
.maps__title span {
color: #9b66ea;
}
.maps__subtitle {
margin: 0;
color: #868686;
font-family: Inter;
font-size: 16px;
font-weight: 400;
line-height: 140%;
letter-spacing: 0%;
}
.maps__block {
position: relative;
height: 700px;
}
.maps__img-wrap {
position: absolute;
top: -150px;
left: 250px;
}
.maps__img {
width: 820px;
}
.maps__article-list {
position: absolute;
right: 0;
top: 0;
display: flex;
flex-direction: column;
justify-content: flex-start;
align-items: flex-start;
gap: 70px;
}
.maps__article-item {
display: flex;
flex-direction: column;
justify-content: flex-start;
align-items: flex-start;
gap: 14px;
}
.maps__article-num {
margin: 0;
color: var(--clr-black);
font-family: Linik Sans;
font-size: 24px;
font-weight: 600;
line-height: 100%;
letter-spacing: -3%;
}
.maps__article-title {
margin: 0;
color: var(--clr-black);
font-family: Linik Sans;
font-size: 24px;
font-weight: 600;
line-height: 100%;
letter-spacing: -3%;
}
.maps__article-link {
margin: 0;
}
.maps__article-link.btn {
padding: 10px 20px;
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
color: var(--clr-white);
font-family: Linik Sans;
font-size: 18px;
font-weight: 500;
line-height: 100%;
letter-spacing: -3%;
border-radius: 20.09px;
background: var(--clr-purple);
}
.maps__article-link.tel {
color: var(--clr-black);
font-family: Linik Sans;
font-size: 24px;
font-weight: 500;
line-height: 100%;
letter-spacing: -3%;
} @media screen and (max-width: 1024px) {
.maps {
display: none;
}
}