feat: added team

This commit is contained in:
Aliaksei Karzhou
2024-07-03 02:03:40 +03:00
parent 506831a2a0
commit f147a2b0d9
6 changed files with 383 additions and 6 deletions

View File

@@ -2236,4 +2236,96 @@ h3 {
}
.price__list-item--active .price__list-item-title, .price__list-item--active .price__list-item-time, .price__list-item--active .price__list-item-description {
border-color: rgba(255, 255, 255, 0.2);
}
.team {
margin: 100px 0 90px;
}
@media (max-width: 768px) {
.team {
margin: 90px 0;
}
}
.team__title {
margin: 18px 0 25px;
}
@media (max-width: 768px) {
.team__title {
margin: 18px 0 14px;
}
}
.team__description {
margin: 25px 0;
font-weight: 400;
font-size: 21px;
line-height: 139%;
text-align: center;
color: #4d4d4d;
}
@media (max-width: 768px) {
.team__description {
margin: 14px 0 37px;
font-size: 16px;
}
}
.team__slider .swiper {
overflow: visible;
}
.team__slide-figure-image {
display: block;
max-width: 100%;
height: 388px;
-o-object-fit: cover;
object-fit: cover;
border-radius: 10px 40px;
}
@media (max-width: 768px) {
.team__slide-figure-image {
border-radius: 8px 30px;
}
}
.team__slide-name {
margin: 19px 0 9px;
font-weight: 500;
font-size: 26px;
line-height: 129%;
letter-spacing: 0.01em;
color: #2d2d2d;
}
@media (max-width: 768px) {
.team__slide-name {
font-size: 19px;
}
}
.team__slide-text {
margin: 0 0 26px;
font-weight: 500;
font-size: 16px;
line-height: 129%;
color: #878787;
}
@media (max-width: 768px) {
.team__slide-text {
margin-bottom: 13px;
font-size: 14px;
}
}
.team__slide-button {
padding: 0;
font-weight: 400;
font-size: 14px;
text-decoration: underline;
-webkit-text-decoration-skip-ink: none;
text-decoration-skip-ink: none;
color: #609eff;
border: none;
background: none;
cursor: pointer;
}
.team__controls {
display: flex;
justify-content: center;
align-items: center;
gap: 24px;
margin-top: 40px;
}