main {
background-color: #fff;
padding-top: 80px;
}
.akcii-wrapper {
min-height: 30vh;
padding: 24px 0; }
.products__sales {
margin: 0px 0px;
display: flex;
align-items: stretch;
flex-wrap: wrap;
gap: 10px;
} .akcii-page .akcii-page__content {
margin-top: 24px; }
.akcii-page .akcii-page__title {
text-transform: uppercase;
font-size: 36px;
font-weight: 700;
line-height: 40px;
margin-bottom: 32px;
}
.akcii-page .akcii-page__main {
display: grid;
grid-template-columns: 1fr 0.5fr 1fr;
grid-template-rows: auto;
padding: 10px 0;
row-gap: 10px;
}
.akcii-page .akcii-page__main > .akcii-page__main-item:nth-child(4n+1) {
grid-column: 1 / 2;
}
.akcii-page .akcii-page__main > .akcii-page__main-item:nth-child(4n+2) {
grid-column: 2 / 4;
}
.akcii-page .akcii-page__main > .akcii-page__main-item:nth-child(4n+3) {
grid-column: 1 / 3;
}
.akcii-page .akcii-page__main > .akcii-page__main-item:nth-child(4n+4) {
grid-column: 3 / 4;
}
.akcii-page .akcii-page__main > .akcii-page__main-item:last-child:nth-child(odd) {
grid-column: 1 / -1;
margin-right: 0;
} .akcii-page__main-item {
position: relative;
background: rgba(0, 0, 0, 0.04);
border-radius: 24px;
padding: 40px 20px;
transition: color 0.3s ease-in-out;
}
.akcii-page__main-item::before {
content: "";
position: absolute;
inset: 0;
border-radius: 24px;
background: var(--gradient-akcii);
opacity: 0;
transition: opacity 0.3s ease-in-out;
z-index: 0;
}
.akcii-page .akcii-page__main-item:hover { color: #fff;
}
.akcii-page__main-item:hover::before {
opacity: 1;
}
.akcii-page__main-item > * {
position: relative;
z-index: 1;
}
.akcii-page .akcii-page__main-item:nth-child(odd) {
margin-right: 10px;
}
.akcii-page .akcii-page__item-title,
.akcii-detail-page .akcii-detail-page__akciya-title {
font-size: 2.4rem;
font-weight: 700;
line-height: 3rem;
margin-bottom: 24px;
margin-top: 20vh;
text-transform: uppercase;
color: black;
hyphens: auto;
-webkit-hyphens: auto; word-wrap: break-word; }
.akcii-page .akcii-page__item-title, .akcii-page .akcii-page__item-text {
color: black;
}
.akcii-page .akcii-page__item-text {
font-size: 20px;
font-weight: 500;
line-height: 24px;
} .akcii-detail-page__content {
padding: 0 10px;
}
.akcii-detail-page .akcii-detail-page__main {
padding: 10px 0;
margin-bottom: 32px;
}
.akcii-detail-page .akcii-detail-page__top-desktop {
display: flex;
font-size: 16px;
font-weight: 700;
line-height: 20px;
margin-bottom: 32px;
padding: 26px 0;
color: #666666;
}
.akcii-detail-page .akcii-detail-page__top-mobile {
display: none;
}
.akcii-detail-page .akcii-detail-page__mobile-text {
font-weight: 600;
font-size: 20px;
line-height: 24px;
text-transform: uppercase;
}
.akcii-detail-page .akcii-detail-page__mobile-arrow {
margin-right: 12px;
}
.akcii-detail-page .akcii-detail-page__top-arrow {
margin: 0 14px;
}
.akcii-detail-page .akcii-detail-page__main-akciya {
background: var(--gradient-akcii);
color: #fff;
border-radius: 24px;
padding: 40px 24px;
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: flex-end;
margin-bottom: 24px;
}
.akcii-detail-page .akcii-detail-page__akciya-text {
font-size: 20px;
font-weight: 500;
line-height: 24px;
color: black;
}
.akcii-detail-page .akcii-detail-page__main-description {
margin-bottom: 32px;
}
.akcii-detail-page .akcii-detail-page__descrition-title {
font-size: 20px;
font-weight: 700;
line-height: 24px;
margin-bottom: 24px;
}
.akcii-detail-page .akcii-detail-page__descrition-text {
font-size: 16px;
font-weight: 500;
line-height: 24px;
margin-bottom: 24px;
max-height: 140px;
overflow: hidden;
transition: max-height 0.4s ease;
position: relative;
}
.akcii-detail-page .akcii-detail-page__descrition-text::after {
content: "";
position: absolute;
bottom: 0;
left: 0;
right: 0;
height: 40px;
background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, #fff 100%);
pointer-events: none;
transition: opacity 0.3s ease;
}
.akcii-detail-page .akcii-detail-page__descrition-text--expanded {
max-height: 1000px;
}
.akcii-detail-page .akcii-detail-page__descrition-text--expanded::after {
opacity: 0;
}
.akcii-detail-page .akcii-detail-page__descrition-text span {
font-weight: 700;
background: var(--gradient-main);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.akcii-detail-page .akcii-detail-page__descrition-text p {
padding-bottom: 10px;
} 
.akcii-detail-page .akcii-detail-page__descrition-text p:last-child {
padding-bottom: 0;
}
.akcii-detail-page .akcii-detail-page__descrition-button {
display: flex;
align-items: center;
background: var(--gradient-main);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
font-weight: 600;
font-size: 16px;
line-height: 24px;
margin-bottom: 50px;
}
.akcii-detail-page .akcii-detail-page__button-text {
margin-right: 8px;
}
.akcii-detail-page .akcii-detail-page__main-link {
padding: 44px 0;
}
.akcii-detail-page .akcii-detail-page__link-item {
color: #fff;
background: var(--gradient-main);
padding: 12px 24px;
font-weight: 600;
font-size: 20px;
line-height: 24px;
border-radius: 20px;
text-align: center;
}
.akcii-detail-page .akcii-detail-page__main-link--disabled {
display: none;
} @media (max-width: 1200px) {
main {
padding-top: 131px;
}
}
@media (max-width: 900px) {
.akcii-wrapper {
padding: 24px 6px;
}
.akcii-page .akcii-page__title {
font-size: 20px;
font-weight: 600;
line-height: 24px;
}
.akcii-page .akcii-page__main {
padding: 0;
grid-template-columns: auto;
row-gap: 12px;
}
.akcii-page .akcii-page__main-item:nth-child(odd) {
margin-right: 0;
}
.akcii-page .akcii-page__main > .akcii-page__main-item:nth-child(4n+1) {
grid-column: auto;
}
.akcii-page .akcii-page__main > .akcii-page__main-item:nth-child(4n+2) {
grid-column: auto;
}
.akcii-page .akcii-page__main > .akcii-page__main-item:nth-child(4n+3) {
grid-column: auto;
}
.akcii-page .akcii-page__main > .akcii-page__main-item:nth-child(4n+4) {
grid-column: auto;
}
.akcii-page .akcii-page__main > .akcii-page__main-item:last-child:nth-child(odd) {
grid-column: auto;
}
.akcii-detail-page .akcii-detail-page__top {
padding: 0;
margin-bottom: 32px;
}
.akcii-detail-page .akcii-detail-page__main {
padding: 0;
}
.akcii-detail-page .akcii-detail-page__top-desktop {
display: none;
}
.akcii-detail-page .akcii-detail-page__top-mobile {
display: inline-flex;
}
.akcii-detail-page .akcii-detail-page__descrition-text {
font-size: 14px;
margin-bottom: 16px;
max-height: 122px;
}
.akcii-page .akcii-page__content {
padding: 0;
}
}
@media (max-width: 768px) {
main {
padding-top: 131px !important;
}
}
@media (max-width: 566px) {
.akcii-detail-page .akcii-detail-page__descrition-button {
margin: 0 auto;
margin-bottom: 36px;
}
.akcii-detail-page .akcii-detail-page__main-link {
padding: 0;
}
}