/* ------------------------- SERVICES NEW ------------------------- */
.servicesNew {
    padding: 112px 0 56px 0;
}
.servicesNew__wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}
.servicesNew__items {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin: 0;
    padding: 0;
}
.servicesNew__item {
    background-color: #E9E4DC;
    transition: all 0.3s;
    padding: 16px 24px;
    display: flex;
    flex-direction: column;
}
.servicesNew__item:hover{
    background-color: #FFFFFF;
    transform: translateY(-32px);
}

.servicesNew__item-image{
    width: 60px;
    height: 60px;
    margin-bottom: 24px;
}
.servicesNew__item-text {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: auto;
}
.servicesNew__item-title {
    margin: 0;

}
.servicesNew__item-desc {
    margin: 0;
    font-size: 16px;
    line-height: 145%;
    letter-spacing: 0.03rem;
}
.servicesNew__item-links {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: 32px;
}
.servicesNew__item-link {
    display: flex;
    flex-direction: row;
    gap: 12px;
}
.servicesNew__item-link {
    font-size: 16px;
    font-weight: 500;
    line-height: 21px;
    letter-spacing: 0.06rem;

    transition: color 0.3s;
}
.servicesNew__item-link:hover {
    color: #DECAFF;
    transition: color 0.3s;
}
.servicesNew__item-link .servicesNew__item-icon{
    transition: transform 0.3s;
}
.servicesNew__item-link:hover .servicesNew__item-icon{
    transform: translateX(8px);
    transition: transform 0.3s;
}
.servicesNew__item-icon {
    min-height: 22px;
    min-width: 22px;
}

/* Tablet */
@media (max-width: 1200px){
    .servicesNew__items{
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .servicesNew__item:hover{
        transform: translateY(-10px);
    }
    .servicesNew {
        padding: 56px 0 56px 0;
    }
}

  /* Mobile */
@media (max-width: 767px){
    .servicesNew__items{
        grid-template-columns: 1fr;
    }
}


/* ------------------------- TEAM BLOCK ------------------------- */
.team {
    padding: 112px 0;
    background-image: url(../img/TeamBG.jpg);
    background-size: cover;
    background-position: center left;
    background-repeat: no-repeat;
}
.team__wrap{
    display: flex;
    flex-direction: column;
}
.team__title {
    margin-bottom: 60px;
}
.team__swiper.swiper {
    padding-bottom: 88px;
    width: 100%;
}
.team-member.swiper-slide {
    display: flex;
    justify-content: center;
}
.team-member__wrap{
    max-width: 416px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.team-member.swiper-slide img{
    max-width: 100%;
    height: auto;
    object-fit: contain;
    width: 416px;
}
.team-member__name {
    margin-bottom: 4px;
    display: flex;
    flex-direction: row;
}
.team-member__languages{
    display: flex;
    flex-direction: row;
    gap: 4px;
    margin-left: 8px;
}
.team-member.swiper-slide .team-member__languages img{
    height: 22px;
    width: 22px;
}
.team-member__job {
    margin-bottom: 16px;
    font-size: 19px;
    line-height: 1.5rem;
    letter-spacing: 0.02rem;
}
.team-member__desc {
    margin-bottom: 0;
    font-size: 17px;
    line-height: 26px;
    letter-spacing: 0.02rem;
}
.team__swiper .swiper-pagination {
    bottom: 0;
}

.team__swiper .swiper-pagination-bullet{
    height: 10px;
    width: 10px;
    background: #F8F8F8;
    border: 1px solid #DECAFF;
    opacity: 1;
} 
.team__swiper .swiper-pagination-bullet-active{
    background: #48278C;
    border: none;
}

@media (max-width: 767px){
    .team {
        padding: 56px 0;
    }
    .team__title {
        margin-bottom: 32px;
    }
    .team__swiper.swiper {
        padding-bottom: 50px;
    }
}

/* ------------------------- FAQ BLOCK ------------------------- */
.faq {
    padding: 100px 0;
}
.faq__wrap {
    display: flex;
    flex-direction: column;
    max-width: 900px;
    align-items: center;
    justify-content: center;
}
.faq__title {
    font-weight: 500;
    margin-bottom: 16px;
}
.faq__subtitle {
    margin-bottom: 40px;
    font-size: 17px;
    line-height: 1.53rem;
    letter-spacing: 0.03rem;
}
.faqItem{
    border-bottom: 1px solid #DECAFF;
}
.faqItem__question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 20px;
    line-height: 1.4em;
    letter-spacing: 0.03em;
    margin: 0;
    font-weight: 600;
    padding-top: 24px;
    padding-bottom: 24px;
    cursor: pointer;
}
.faqItem__answer {
    font-size: 17px;
    line-height: 1.53em;
    letter-spacing: -0.04rem;
    margin: 0;
}
.faqItem__answer a{
    text-decoration: underline;
}

/* icon container */
.faqItem__icon{
    position: relative;
    width: 16px;
    height: 16px;
    flex: 0 0 16px;
}

  /* minus (always visible) */
.faqItem__icon::before{
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 16px;
    height: 1px;
    background: currentColor;
    transform: translateY(-50%);
}

  /* plus vertical stroke (only when CLOSED) */
.faqItem__icon::after{
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 1px;
    height: 16px;
    background: currentColor;
    transform: translateX(-50%);
}

  /* OPEN state: show "-" only (hide vertical stroke) */
.faqItem.is-open .faqItem__icon::after{
    opacity: 0;
}
