.section-offer {
    width: 100%;
    /* min-height: calc(100vw * 9 / 16); */
    height: auto;
    position: relative;
    overflow: hidden;
    margin-top: 6rem;
}
.section-offer .section__inner {
    width: 100%;
    height: 100%;
}
.section-offer .section__content {
    width: 100%;
    height: 100%;
    position: relative;
    display: grid;
}
.section-offer .text {
    width: 60%;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 10;
}
.section-offer .title {
    font-size: 10rem;
    font-weight: 200;
    line-height: 1.1;
    font-family: var(--font-family-title);
}
.section-offer .specialization {
    opacity: .6;
    display: block;
    margin-top: 2rem;
    font-size: 2.4rem;
}
.section-offer .subtitle {
    font-size: 4.4rem;
    margin-top: 6rem;
    line-height: 1.3;
}
.section-offer .links {
    margin-top: 4.8rem;
    display: flex;
    align-items: center;
}
.section-offer .link {
    display: flex;
    align-items: center;
    padding: 0 3.6rem;
    border: .1rem solid rgba(255, 255, 255, .2);
    height: 7.2rem;
    border-radius: 1.2rem;
    padding-bottom: .2rem;
    transition: .3s;
}
.section-offer .link:hover {
    border: .1rem solid rgba(255, 255, 255, 1);
}
.section-offer .media {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    pointer-events: none;
    align-items: flex-end;
}
.section-offer .photo-wrap {
    position: relative;
    aspect-ratio: 570/950;
    height: 100%;
}
.section-offer .photo-wrap .overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 50%;
    z-index: 5;
    background: linear-gradient(0deg,rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
    pointer-events: none;
}
.section-offer .photo {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: bottom right;
}












.section-about {
    width: 100%;
    margin-top: 12rem;
}
.section-about .section__inner {
    width: 100%;
}
.section-about .section__content {
    width: 100%;
}
.section-about .columns {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 6rem;
}
.section-about .column {
    width: 100%;
    display: flex;
    flex-direction: column;
}
.section-about .title {
    /* font-family: var(--font-family-title); */
    font-size: 3.2rem;
    line-height: 1.3;
    font-weight: 400;
    max-width: 70%;
    opacity: .3;
}
.section-about .description {
    line-height: 1.5;
}










.section-services {
    width: 100%;
    margin-top: 12rem;
}
.section-services .section__inner {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 4.8rem;
}
.section-services .section__heading {

}
.section-services .section__title {
    font-family: var(--font-family-title);
    font-size: 6rem;
    line-height: 1.2;
}
.section-services .section__content {
    width: 100%;
}

.section-services .service-categories {
    display: flex;
    flex-direction: column;
    width: 100%;
}
.section-services .service-category {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 3.6rem;
    border-top: .1rem solid rgba(255, 255, 255, .2);
    margin-top: 3.6rem;
    padding-top: 3.6rem;
}
.section-services .service-category:first-child {
    border-top: none;
    margin-top: 0;
    padding-top: 0;
}
.section-services .service-category .category__heading {
    display: flex;
    gap: 2.4rem;
    cursor: pointer;
}
.section-services .service-category .category__icon {
    display: flex;
    justify-content: center;
    width: 4.4rem;
    height: 4.4rem;
    flex-shrink: 0;
    border-radius: 1.2rem;
    border: .1rem solid rgba(255, 255, 255, .2);
    transition: .3s;
}
.section-services .service-category:hover .category__icon,
.section-services .service-category.active .category__icon {
    border: .1rem solid rgba(255, 255, 255, 1);
}
.section-services .service-category .category__icon:before {
    content: '';
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 60%;
    align-self: stretch;
    display: flex;
    background-image: url('../../../media/global/icons/arrow-right-light.svg');
    transition: .3s;
}
.section-services .service-category.active .category__icon:before {
    transform: rotate(90deg);
}
.section-services .service-category .category__title {
    font-size: 2.4rem;
    line-height: 1.3;
    padding-top: .5rem;
}
.section-services .services-list {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 2.4rem;
    padding-left: 6.8rem;
    margin-bottom: 2.4rem;
    display: none;
}
.section-services .service-category.active .services-list {
    display: flex;
}
.section-services .service {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 2.4rem;
}
.section-services .service .service__title {
    display: flex;
    gap: 1.2rem;
    cursor: pointer;
}
.section-services .service .service__title .service__title-icon {
    display: flex;
    flex-shrink: 0;
    align-self: stretch;
    width: 2rem;
    padding-top: .2rem;
    opacity: .3;
    transition: .3s;
}
.section-services .service .service__title:hover .service__title-icon,
.section-services .service.active .service__title:hover .service__title-icon {
    opacity: 1;
}
.section-services .service.active .service__title:hover .service__title-icon {
    transform: rotate(90deg);
}
.section-services .service .service__title .service__title-icon:before {
    content: '';
    background-position: top left;
    background-image: url('../../../media/global/icons/arrow-right-light.svg');
    background-repeat: no-repeat;
    background-size: contain;
    display: flex;
    align-self: stretch;
    width: 100%;
}
.section-services .service .service__title .service__title-label {
    line-height: 1.3;
}
.section-services .service .service__description {
    opacity: .6;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-bottom: 1.2rem;
    display: none;
}
.section-services .service.active .service__description {
    display: flex;
}
.section-services .service .service__description p {
    font-size: 1.4rem;
    line-height: 1.5;
}















.section-comments {
    width: 100%;
    margin-top: 12rem;
}
.section-comments .section__inner {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 6rem;
}
.section-comments .section__heading {
    width: 100%;
}
.section-comments .section__title {
    font-family: var(--font-family-title);
    font-size: 6rem;
    line-height: 1.2;
}
.section-comments .section__content {
    width: 100%;
}
.section-comments .comments-list {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.section-comments .comment-item {
    padding: 6rem 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 2.4rem;
    border-top: .1rem solid rgba(255, 255, 255, .2);
}
.section-comments .comment-item:first-child,
.section-comments .comment-item:nth-child(2) {
    border-top: none;
    padding-top: 0;
}
.section-comments .comment-item:last-child,
.section-comments .comment-item:nth-last-child(2) {
    padding-bottom: 0;
}
.section-comments .comment-item:nth-child(odd) {
    padding-right: 6rem;
    border-right: .1rem solid rgba(255, 255, 255, .2);
}
.section-comments .comment-item:nth-child(even) {
    padding-left: 6rem;
}
.section-comments .comment-item .comment__heading {

}
.section-comments .comment-item .comment__author {
    line-height: 1.3;
    font-size: 2.4rem;
}
.section-comments .comment-item .comment__content {
    line-height: 1.5;
}
.section-comments .comment-item .comment__button {
    font-size: 1.4rem;
    display: flex;
    height: 4rem;
    padding: 0 2.4rem;
    border-radius: 1.2rem;
    border: .1rem solid rgba(255, 255, 255, .2);
    transition: .3s;
    cursor: pointer;
    align-items: center;
    align-self: flex-start;
    padding-bottom: .2rem;
}
.section-comments .comment-item .comment__button:hover {
    border: .1rem solid rgba(255, 255, 255, 1);
}

.section-comments .comment-item .comment-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    padding: 12rem 12rem;
    opacity: 0;
    pointer-events: none;
    transform: translateY(5%);
    transition: .3s;
    backdrop-filter: blur(1rem);
    -webkit-backdrop-filter: blur(1rem);
    background-color: rgba(0, 0, 0, .6);
    overflow-y: auto;
}
.section-comments .comment-item.active .comment-popup {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}
.section-comments .comment-item .comment-popup .popup__content {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 4.8rem;
    width: 100%;
    max-width: 80rem;
}
.section-comments .comment-item .comment-popup .popup__heading {
    display: flex;
    justify-content: space-between;
    gap: 6rem;
    align-items: center;
}
.section-comments .comment-item .comment-popup .popup__author {
    line-height: 1.3;
    font-size: 2.4rem;
}
.section-comments .comment-item .comment-popup .popup__close {
    border-radius: 1.2rem;
    width: 4.4rem;
    height: 4.4rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    border: .1rem solid rgba(255, 255, 255, .2);
    transition: .3s;
    cursor: pointer;
}
.section-comments .comment-item .comment-popup .popup__close:before {
    content: '';
    display: flex;
    align-self: stretch;
    width: 40%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url('../../../media/global/icons/close-light.svg');
}
.section-comments .comment-item .comment-popup .popup__close:hover {
    border: .1rem solid rgba(255, 255, 255, 1);
}
.section-comments .comment-item .comment-popup .popup__text {
    line-height: 1.5;
}






.section-comments .actions {
    display: flex;
    gap: .6rem;
    margin-top: 6rem;
}
.section-comments .view-all {
    display: flex;
    align-items: center;
    padding: 0 3.6rem;
    border: .1rem solid rgba(255, 255, 255, .2);
    height: 7.2rem;
    border-radius: 1.2rem;
    padding-bottom: .2rem;
    transition: .3s;
}
.section-comments .view-all:hover {
    border: .1rem solid rgba(255, 255, 255, 1);
}
















.section-faq {
	width: 100%;
	margin-top: 12rem;
}
.section-faq .section__inner {
	width: 100%;
	display: flex;
    flex-direction: column;
    align-items: stretch;
	gap: 4.8rem;
}
.section-faq .section__heading {

}
.section-faq .section__title {
    font-family: var(--font-family-title);
    font-size: 6rem;
    line-height: 1.2;
}
.section-faq .section__content {
	width: 100%;
}

.section-faq .questions-list {
    display: flex;
    flex-direction: column;
    width: 100%;
}
.section-faq .question-item {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 3.6rem;
    border-top: .1rem solid rgba(255, 255, 255, .2);
    margin-top: 3.6rem;
    padding-top: 3.6rem;
}
.section-faq .question-item:first-child {
    border-top: none;
    margin-top: 0;
    padding-top: 0;
}
.section-faq .question-item .question-item__heading {
    display: flex;
    gap: 2.4rem;
    cursor: pointer;
}
.section-faq .question-item .question-item__icon {
    display: flex;
    justify-content: center;
    width: 4.4rem;
    height: 4.4rem;
    flex-shrink: 0;
    border-radius: 1.2rem;
    border: .1rem solid rgba(255, 255, 255, .2);
    transition: .3s;
}
.section-faq .question-item:hover .question-item__icon,
.section-faq .question-item.active .question-item__icon {
    border: .1rem solid rgba(255, 255, 255, 1);
}
.section-faq .question-item .question-item__icon:before {
    content: '';
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 60%;
    align-self: stretch;
    display: flex;
    background-image: url('../../../media/global/icons/arrow-right-light.svg');
    transition: .3s;
}
.section-faq .question-item.active .question-item__icon:before {
    transform: rotate(90deg);
}
.section-faq .question-item .question-item__title {
    font-size: 2.4rem;
    line-height: 1.3;
    padding-top: .5rem;
}
.section-faq .question-item .question-item__answer {
	display: none;
	padding-left: 6.8rem;
    line-height: 1.5;
    margin-bottom: 2.4rem;
}
.section-faq .question-item.active .question-item__answer {
	display: block;
}

.section-faq .actions {
    display: flex;
    gap: .6rem;
    margin-top: 6rem;
}
.section-faq .view-all {
    display: flex;
    align-items: center;
    padding: 0 3.6rem;
    border: .1rem solid rgba(255, 255, 255, .2);
    height: 7.2rem;
    border-radius: 1.2rem;
    padding-bottom: .2rem;
    transition: .3s;
}
.section-faq .view-all:hover {
    border: .1rem solid rgba(255, 255, 255, 1);
}



















.section-feed {
   width: 100%;
   margin-top: 12rem;
}
.section-feed .section__inner {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 4.8rem;
}
.section-feed .section__heading {

}
.section-feed .section__title {
    font-family: var(--font-family-title);
    font-size: 6rem;
    line-height: 1.2;
}
.section-feed .section__content {
    width: 100%;
}
.section-feed .section__body {
    width: 100%;
}
.section-feed .posts-list {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
    position: relative;
}
.section-feed .post-item {
    width: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 1.2rem;
}
.section-feed .post-item .post__inner {
    width: 100%;
}
.section-feed .post-item .post__content {
    width: 100%;
    position: relative;
}
.section-feed .post-item .post__content:after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(0deg,rgba(0, 0, 0, .9) 0%, rgba(0, 0, 0, .7) 50%, rgba(0, 0, 0, 0) 100%);
    z-index: 10;
}
.section-feed .post-item .post__image-wrap {
    width: 100%;
    aspect-ratio: 1/1;
    position: relative;
    overflow: hidden;
}
.section-feed .post-item .post__image {
    width: 100%;
    height: 100%;
    display: block;
    left: 0;
    top: 0;
    object-fit: cover;
    object-position: center;
    transition: .5s;
}
.section-feed .post-item .post__wrapping-link:hover .post__image {
    filter: brightness(60%) grayscale(100%);
}
.section-feed .post-item .post__details {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 4.8rem;
    z-index: 20;
}
.section-feed .post-item .post__text {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}
.section-feed .post-item .post__text .post__title {
    font-size: 2.4rem;
    line-height: 1.3;
    font-weight: 100;
    color: var(--color-font-default);
    font-family: var(--font-family-title);
    max-width: 70%;
}
.section-feed .post-item .post__text .post__description {
    line-height: 1.4;
    font-size: 1.6rem;
    margin-top: 2rem;

    display: none;
}
.section-feed .post-item .post__info {
    display: flex;
    align-items: center;
    gap: 1.6rem;
    margin-top: 1.2rem;
    opacity: .6;
}
.section-feed .post-item .block-stats {
    display: flex;
    align-items: center;
    gap: 1.6rem;
}
.section-feed .post-item .block-stats .plate-reaction {
    display: flex;
    align-items: center;
    gap: .6rem;
}
.section-feed .post-item .block-stats .plate-reaction .plate__icon {
    align-self: stretch;
    width: 1.6rem;
    display: flex;
    flex-shrink: 0;
    justify-content: center;
    align-items: center;
}
.section-feed .post-item .block-stats .plate-reaction .plate__value {
    font-size: 1.4rem;
}
.section-feed .post-item .block-stats .plate-reaction .plate__icon:before {
    width: 100%;
}

.section-feed .post-item .reading-time {
    display: flex;
    align-items: center;
    gap: .6rem;
}
.section-feed .post-item .reading-time .reading-time__icon {
    width: 1.6rem;
    align-self: stretch;
    display: flex;
    flex-shrink: 0;
    justify-content: center;
    align-items: center;
}
.section-feed .post-item .reading-time .reading-time__icon:before {
    width: 100%;
}
.section-feed .post-item .reading-time .reading-time__info {
    display: flex;
    flex-direction: column;
    gap: .2rem;
}
.section-feed .post-item .reading-time .reading-time__label {
    font-size: 1.4rem;
    display: block;
}
.section-feed .post-item .reading-time .reading-time__value {
    font-size: 1.4rem;
    display: block;
}




.section-feed .post-item .post__actions {
    display: flex;
    align-items: center;
    gap: .6rem;
    margin-top: 3.6rem;
}
.section-feed .post-item .post__action {
    height: 5.2rem;
    border: .1rem solid rgba(255, 255, 255, .2);
    border-radius: 1.2rem;
    display: flex;
    align-items: center;
    padding: 0 2.4rem;
    gap: 1.2rem;
    transition: .2s;
}
.section-feed .post-item .post__action:hover {
    opacity: .8;
}
.section-feed .post-item .post__action .post__action-label {
    display: block;
    padding-bottom: .2rem;
    font-size: 1.4rem;
}
.section-feed .post-item .post__action .post__action-icon {
    display: flex;
    width: 2rem;
    align-self: stretch;
    justify-content: center;
    flex-shrink: 0;
    align-items: center;
}
.section-feed .post-item .post__action .post__action-icon:before {
    width: 100%;
}



.section-feed .actions {
    display: flex;
    gap: .6rem;
    margin-top: 6rem;
}
.section-feed .view-all {
    display: flex;
    align-items: center;
    padding: 0 3.6rem;
    border: .1rem solid rgba(255, 255, 255, .2);
    height: 7.2rem;
    border-radius: 1.2rem;
    padding-bottom: .2rem;
    transition: .3s;
}
.section-feed .view-all:hover {
    border: .1rem solid rgba(255, 255, 255, 1);
}


