/*----------
Mainpage START  
-----------*/

section.hero {
    margin-top: 40px;
}

.socact__slider,
.hero__slider {
    overflow: hidden;
}

.socact__slider .swiper-slide,
.hero__slider .swiper-slide {
    line-height: 0;
    position: relative;
    transition: transform 0.6s ease-in-out;
}

.socact__slider .swiper-slide-active,
.hero__slider .swiper-slide-active {
    z-index: 10;
}

.hero__slider .swiper-slide-prev {
    z-index: 9;
}

.hero__slider .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__nav {
    margin-top: 40px;
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 40px;
    width: fit-content;
}

.hero-pagination {
    display: flex;
    align-items: center;
}

.hero-pagination .swiper-pagination-bullet {
    width: 16px;
    height: 16px;
    background: transparent;
    opacity: 1;
    margin: 0;
}

.hero-bullet {
    display: inline-flex;
    width: 16px;
    height: 16px;
}

.hero-bullet__active {
    display: none;
}

.swiper-pagination-bullet-active .hero-bullet__inactive {
    display: none;
}

.swiper-pagination-bullet-active .hero-bullet__active {
    display: inline-block;
}

.slider__nav {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 100%;
    border: 1px solid #a2a2a2;
    flex-shrink: 0;
    cursor: pointer;
    overflow: hidden;
}

.hero__nav .slider__nav {
    border: 1px solid #fff;
}

.hero__nav--wrap {
    position: absolute;
    bottom: 48px;
    left: 84px;
    width: calc(100% - 168px);
}

.hero-content {
    max-width: 680px;
}

.herotitle__slider .swiper-slide {
    height: auto;
}

.hero__title {
    font-weight: 600;
    font-size: 64px;
    line-height: 100%;
    color: #fff;
}

.herotitle__slider .textline {
    display: inline-block;
    overflow: hidden;
}

.herotitle__slider .textline span {
    transform: translateY(100%); 
    transition: 0.3s;
}

.herotitle__slider .swiper-slide-active .textline span {
    display: inline-block;
    transform: translateY(0%);
}

.hero__nav-line {
    position: relative;
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.2);
}

.hero__nav-line-fill {
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: #fff;
    transition: width 0.1s linear;
}

.socact__slider .swiper-slide:before,
.hero__slider .swiper-slide:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: 
    linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.4) 100%),
    rgba(0, 0, 0, 0.2);
}

.project__slider {
    margin-top: 40px;
}

.slider__nav:after {
    content: '';
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    background: #0073c0;
    border-radius: 100%;
    transition: 0.3s;
}

.hero__nav .slider__nav:after {
    background: #fff;
}


.slider__nav--left:after {
    right: -100%;
}

.slider__nav--right:after {
    left: -100%;
}

.slider__nav svg {
    position: relative;
    z-index: 2;
}

.slider__nav--left:hover:after {
    right: 0%;
}

.slider__nav--right:hover:after {
    left: 0%;
}

.slider__nav:hover svg path {
    stroke: #fff;
}

.hero__nav .slider__nav:hover svg path {
    stroke: #0073c0;
}

.slider__nav:hover {
    border-color: #0073c0;
}

.hero__nav .slider__nav:hover {
    border-color: #fff;
}

.about-head {
    margin-bottom: 64px;
    display: grid;
    grid-template-columns: 560fr 680fr;
    gap: 160px;
}

.about-head p {
    margin-bottom: 40px;
}

.btn {
    position: relative;
    display: inline-flex;
    padding-right: 20px;
    align-items: center;
    gap: 4px;
    font-weight: 500;
    font-size: 18px;
    line-height: 156%;
    color: #0073c0;
    cursor: pointer;
    border-radius: 40px;
    overflow: hidden;
    transition: 0.3s;
}

.btn span {
    position: relative;
    z-index: 2;
    transition: 0.5s;
}

.btn:after {
    content: '';
    position: absolute;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #0073c0;
    transition: 0.5s;
    border-radius: 40px;
}

.btn__arrow {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: #0073c0;
    border-radius: 40px;
    z-index: 1;
}

.btn:hover:after {
    left: 0%;
}

.btn:hover span {
    color: #fff;
}

.about-slider {
    display: grid;
    grid-template-columns: 560fr 680fr;
    gap: 160px;
    align-items: center;
}

.about-slider__img {
    position: relative;
    overflow: hidden;
}

.about-slider__img img {
    width: 100%;
    display: block;
}

.about-slider__item {
    position: relative;
    padding-bottom: 20px;
}

.about-slider__item-title {
    margin-bottom: 20px;
    font-size: 24px;
    line-height: 133%;
    color: #181519;
}

.about-slider__item-line {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: #e6e6e6;
    overflow: hidden;
}

.about-slider__item-line-fill {
    position: absolute;
    left: 0;
    top: 0;
    width: 0%;
    height: 100%;
    background: #0b0b0b;
    transition: 0.8s;
}

.about-slider__item.active .about-slider__item-line-fill {
    width: 100%;
    transition: 5s;
}

.about-slider__item.active .about-slider__item-title {
    color: #0b0b0b;
}

.about-slider__list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.section--blue {
    margin: 0;
    padding: 120px 0;
    background: #0073c0;
}

.sect-title {
    margin: 0;
    font-weight: 500;
    font-size: 40px;
    line-height: 120%;
    color: #181519;
}

.sect-title--white {
    color: #fff;
}

.sect-text {
    margin-top: 24px;
    font-size: 18px;
    line-height: 156%;
}

.sect-text--white {
    color: #e6e6e6;
}

.activity__head {
    position: relative;
    margin-bottom: 64px;
    padding-bottom: 24px;
    border-bottom: 1px solid #2696e2;
}

.activity-head-des {
    position: absolute;
    bottom: -1px;
    right: 0;
}

.activity__content {
    display: grid;
    grid-template-columns: 680fr 560fr;
    gap: 160px;
    align-items: start;
}

.activity__accordion {
    display: flex;
    flex-direction: column;
    gap: 29px;
}

.activity__accordion-item {
    position: relative;
    padding-bottom: 24px;
    border-bottom: 1px solid #2696e2;
}

.activity__accordion-item:after {
    content: '';
    position: absolute;
    display: block;
    bottom: 0;
    width: 0%;
    height: 1px;
    background: #dff5ff;
    transition: 0.5s;
}

.activity__accordion-item:hover:after {
    width: 100%;
}

.activity__accordion-item.opened .activity__accordion-icon {
    transform: rotate(45deg);
    background: #fff;
}

.activity__accordion-item.opened .activity__accordion-icon svg path {
    stroke: #0b0b0b;
}

.activity__accordion-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.activity__accordion-title {
    font-size: 24px;
    line-height: 133%;
    color: #fff;
}

.activity__accordion-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #fff;
    color: #fff;
    flex-shrink: 0;
    transition: 0.3s;
}

.activity__accordion-icon svg {
    width: 24px;
    height: 24px;
}

.activity__image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 560px;
    height: 560px;
    flex-shrink: 0;
    border-radius: 100%;
    overflow: hidden;
}

.activity__image:after {
    content: '';
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    background-image: url('../img/mainpage/activity/act-design.png');
    background-position-y: center;
    background-position-x: 15%;
    background-repeat: no-repeat;
}

.activity__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.activity__accordion-body {
    display: none;
    padding-top: 12px;
    color: #fff;
}

.section__head {
    margin-bottom: 40px;
    padding-bottom: 40px;
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: 40px;
    border-bottom: 1px solid #e6e6e6;
}

.slider-nav--wrap {
    display: flex;
    align-items: center;
    gap: 24px;
}

.partner__slider {
    margin-top: 40px;
}

section.project {
    overflow: hidden;
}

.project-card__img {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    aspect-ratio: 440 / 475;
    overflow: hidden;
    margin-bottom: 24px;
}

.project-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
    transform: scale(1, 1);
}

.project-card:hover .project-card__img img {
    transform: scale(1.1, 1.1);
}

.project-card__img-btn--wrap {
    position: absolute;
    z-index: 3;
    overflow: hidden;
}

.project-card__img:after {
    content: '';
    position: absolute;
    top: 100%;
    display: block;
    width: 100%;
    height: 100%;
    background: #0b0b0b;
    opacity: 0.6;
    transition: 0.4s;
}

.project-card:hover .project-card__img:after {
    top: 0%;
}

.project-card__cat {
    font-size: 14px;
    line-height: 143%;
    color: #707173;
}

.project-card__title {
    margin: 16px 0 8px;
    font-size: 18px;
    line-height: 156%;
    color: #181519;
}

.project-card__address {
    color: #707173;
}

.btn--white:after {
    left: 0%;
    background: #fff;
}

.btn--white .btn__arrow {
    background: #fff;
}

.btn--white:hover span {
    color: #0073c0;
}

.btn--white .btn__arrow svg path {
    stroke: #0073c0;
}

.project-card__img-btn--wrap .btn {
    transform: translateY(100%);
}

.project-card:hover .project-card__img-btn--wrap .btn {
    transform: translateY(0%);
}

.partner-item {
    display: flex;
    justify-content: center;
    align-items: center;
    aspect-ratio: 320 / 170;
    border: 1px solid #e6e6e6;
    transition: 0.3s;
}

.partner-item img {
    max-width: 90%;
    max-height: 80%;
    object-fit: contain;
}

.partner-item__cover {
    position: absolute;
    z-index: 1;
    opacity: 0;
    transition: 0.3s;
}

.partner-item:hover {
    border: 1px solid #3f3f3f;
}

.partner-item:hover .partner-item__cover {
    opacity: 1;
}

section.history .activity__head {
    padding-bottom: 40px;
}

.history-head-des {
    position: absolute;
    right: 0;
    top: -16px;
}

.history--list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.history__item {
    padding-bottom: 40px;
    display: grid;
    grid-template-columns: 680fr 560fr;
    align-items: center;
    gap: 40px;
    border-bottom: 1px solid #2696e2;
}

.history__item:nth-child(even) .history__item-img {
    order: 1;
}

.history__item-img {
    aspect-ratio: 680 / 560;
}

.history__item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.history__item-text {
    color: #e6e6e6;
}

.press-card {
    padding-bottom: 24px;
    position: relative;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    border-bottom: 1px solid #a2a2a2;
    transition: 0.4s;
}

.press-card__img:after {
    content: '';
    position: absolute;
    top: 100%;
    display: block;
    width: 100%;
    height: 100%;
    background: #0b0b0b;
    opacity: 0.6;
    transition: 0.4s;
    z-index: 2;
}

.press-card .project-card__img-btn--wrap {
    z-index: 3;
}

.press-card__img {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin-bottom: 16px;
    aspect-ratio: 320 / 200;
    overflow: hidden;
}

.press-card__img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.3s;
}

.press-card__badge {
    position: absolute;
    left: 16px;
    top: 20px;
    padding: 4px 12px;
    background: #fff;
    border: 1px solid #e6e6e6;
    border-radius: 32px;
    font-size: 12px;
    line-height: 150%;
    color: #3f3f3f;
    z-index: 1;
}

.press-card__date {
    margin-bottom: 16px;
    font-size: 12px;
    line-height: 150%;
    color: #707173;
}

.press-card__title {
    margin-bottom: 8px;
    font-size: 18px;
    line-height: 156%;
    color: #3f3f3f;
    transition: 0.3s;
    max-height: 60px;
    overflow: hidden;
}

.press-card__text {
    font-size: 14px;
    line-height: 143%;
    color: #3f3f3f;
}

.press-card:hover {
    border-bottom: 1px solid #181519;
}

.press-card:hover .press-card__title {
    color: #181519;
}

.press-card:hover .press-card__img img {
    transform: scale(1.05);
}

.press-card:hover .press-card__img:after {
    top: 0%;
}

.press-card:hover .project-card__img-btn--wrap .btn {
    transform: translateY(0%);
}

.press-card__img img {
    transition: transform 0.3s ease;
}

.press--grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.button--wrap {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

/*----------
Mainpage END  
-----------*/

/*----------
About START 
-----------*/

.page__text {
    margin-top: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #e6e6e6;
}

.breadcrumbs--wrap {
    margin: 24px auto;
}

.section-wrap.breadcrumbs--wrap {
    overflow-x: scroll;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

.section-wrap.breadcrumbs--wrap::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 8px;
}

.breadcrumbs .breadcrumbs-item {
    font-family: var(--second-family);
    font-weight: 400;
    font-size: 12px;
    line-height: 133%;
    color: #3f3f3f;
    text-wrap: nowrap;
    flex-shrink: 0;
}

.breadcrumbs div:last-child .breadcrumbs-item {
    padding-right: 20px;
}

.breadcrumbs a:hover {
    color: #0073c0;
}

.page-title__banwrap {
    position: relative;
    aspect-ratio: 1400 / 480;
    background-size: cover;
    background-position: center;
}

.page-title__banwrap:before {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.4) 100%);
}

.page-title__block h1 {
    margin: 0;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 18px;
    line-height: 156%;
    color: #fff;
    opacity: 0.8;
}

.page-title__banwrap-des {
    position: absolute;
    right: 80px;
    top: 73px;
    z-index: 2;
}

.infotext-border {
    padding: 40px 0;
    border-bottom: 1px solid #e6e6e6;
}

.about-info__content-title {
    font-size: 40px;
    line-height: 120%;
    color: #181519;
}

.about-info__content .about-info__content-text {
    padding: 40px 0;
    border-bottom: 1px solid #e5e5ea;
}

.about-info {
    display: grid;
    grid-template-columns: 680fr 560fr;
    gap: 160px;
}

.about--info .about-info:nth-child(even) {
    grid-template-columns: 560fr 680fr;
}

.about--info .about-info:nth-child(even) .about-info__content {
    order: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-info__img {
    aspect-ratio: 560 / 700;
    line-height: 0;
}

.about-info__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.about-info--revers {
    display: grid;
    grid-template-columns: 560fr 680fr;
    gap: 160px;
}

.about-info--revers .about-info__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.our-value--grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.our-value__item-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    background: #def2ff;
    border-radius: 100%;
}

.our-value__item-title {
    margin: 24px 0 16px;
    padding-bottom: 16px;
    font-size: 24px;
    line-height: 133%;
    color: #181519;
    border-bottom: 1px solid #e6e6e6;
}

.page-title--banner {
    position: relative;
}

.page-title--banner .section-wrap:after {
    content: '';
    display: block;
    position: absolute;
    left: 104px;
    bottom: 48px;
    height: 1px;
    background: #fff;
    opacity: 0.2;
    width: calc(100% - 200px);
}

/*----------
About END  
-----------*/

/*----------
Social activity START
-----------*/

.sec-social-activ {
    margin-top: 64px;
}

.page-title--wrap {
    margin-top: 80px;
}

.page-title--wrap .section-wrap {
    padding: 0;
    padding-bottom: 40px;
    max-width: 1400px;
    border-bottom: 1px solid #e6e6e6;
}

.page-title--wrap h1 {
    margin: 0;
    font-weight: 600;
    font-size: 64px;
    line-height: 100%;
    color: #181519;
}

.page-title__text {
    margin-top: 37px;
}

.soc-activ--grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.socactiv-card:hover .press-card__img:after {
    top: 0%;
}

.socactiv-card:hover .project-card__img-btn--wrap .btn {
    transform: translateY(0%);
}

.socactiv-card .press-card__img {
    margin-bottom: 24px;
}

.socactiv-card .press-card__text {
    font-size: 16px;
    line-height: 150%;
    color: #707173;
}

.socact__slider {
    height: 480px;
}

section.hero-socact {
    margin: 0 0 64px;
}

section.content-socact {
    margin-top: 0;
}

.page-title {
    padding-bottom: 40px;
    border-bottom: 1px solid #e6e6e6;
}

.page-title h1 {
    margin: 0;
    font-weight: 600;
    font-size: 64px;
    line-height: 100%;
    color: #181519;
}

.socact-info {
    margin-top: 60px;
    display: grid;
    align-items: start;
    grid-template-columns: 560fr 680fr;
    gap: 160px;
}

.socact-infodig {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 40px;
    row-gap: 60px;
    width: 100%;
}

.socact-infodig__head {
    position: relative;
    display: flex;
    align-items: start;
    gap: 8px;
    overflow: hidden;
}

.socact-infodig__head-num {
    font-weight: 600;
    font-size: 32px;
    line-height: 125%;
    color: #181519;
}

.socact-infodig__head span {
    font-weight: 500;
    font-size: 14px;
    line-height: 143%;
    color: #3f3f3f;
}

.socact-infodig__line {
    margin: 16px 0;
    width: 100%;
    height: 1px;
    background: #e6e6e6;
}

.socact-infodig__line-inner {
    width: 0%;
    height: 1px;
    background: #0073c0;
    transition: 0.3s;
}

.socact-info__body-head {
    font-size: 14px;
    line-height: 143%;
    color: #707173;
}

.socact-info__body-title {
    margin: 24px 0;
    font-size: 20px;
    line-height: 140%;
    color: #181519;
}

.socact-infodig__text {
    position: relative;
    display: flex;
    overflow: hidden;
}

.anim-bottom,
.anim-top {
    transition: 0.4s;
}

.anim-bottom {
    position: absolute;
    transform: translateY(100%);
}

.socact-infodig__text .anim-bottom,
.socact-infodig__head .anim-bottom * {
    color: #0073c0;
}

.socact-infodig__item:hover .socact-infodig__line-inner {
    width: 100%;
}

.anim--hover-slide:hover .anim-top {
    transform: translateY(-100%);
}

.anim--hover-slide:hover .anim-bottom {
    transform: translateY(0%);
}

/*----------
Social activity END  
-----------*/

/*----------
Team START 
-----------*/

.page-title__block {
    margin: 0;
    position: absolute;
    left: 84px;
    bottom: 89px;
    max-width: 680px;
    z-index: 1;
}

.page-title__caption {
    max-width: 680px;
    font-weight: 600;
    font-size: 64px;
    line-height: 100%;
    color: #fff;
}

.sect-text--right {
    max-width: 680px;
}

.team-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.team-card {
    display: flex;
    flex-direction: column;
}

.team-card__img {
    aspect-ratio: 440 / 659;
    overflow: hidden;
    margin-bottom: 24px;
}

.team-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.team-card__name {
    margin-bottom: 8px;
    font-size: 18px;
    font-weight: 600;
    line-height: 156%;
    color: #181519;
}

.team-card__position {
    font-size: 14px;
    line-height: 143%;
    color: #707172;
}

.team-card .socact-infodig__line {
    margin-top: 8px;
}

.team-card:hover .socact-infodig__line-inner {
    width: 100%;
}

.team-card:hover .team-card__name {
    color: #0073c0;
}

.team-card:hover .team-card__position {
    color: #2696e2;
}

/*----------
Team END  
-----------*/

/*----------
Project START  
-----------*/
.socact__slider .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.page-title__text--wrap {
    margin-top: 37px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 37px;
}

.page-title__text--wrap .page-title__text {
    margin-top: 0
}

.page-title__text--wide {
    font-size: 18px;
    line-height: 156%;
    color: #0b0b0b;
}

.page-title--project .section-wrap {
    padding-bottom: 0;
    border: none;
}

.prj-filter {
    margin-bottom: 40px;
    display: flex;
    gap: 24px;
    width: 100%;
    border-bottom: 1px solid #d9d9d9;
    overflow-x: scroll;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

.prj-filter::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.prj-filter__item {
    flex-wrap: nowrap;
    position: relative;
    padding: 0 16px 24px;
    font-size: 18px;
    line-height: 156%;
    transition: 0.3s;
    cursor: pointer;
}

.prj-filter__item.active {
    color: #0073c0;
    border-bottom: 1px solid #0073c0;
}

.prj-filter__item:after {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 100%;
    height: 1px;
    transition: 0.3s;
}

.prj-filter__item.active:after {
    background: #0073c0;
}

.prj-filter__item:not(.active):hover {
    color: #0b0b0b;
}

.prj-filter__item:not(.active):hover:after {
    background: #0b0b0b;
}

.project--grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.project-more {
    margin-top: 40px;
    padding-top: 40px;
    display: flex;
    justify-content: center;
    border-top: 1px solid #e6e6e6;
}

.project-more__btn {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    line-height: 156%;
    cursor: pointer;
    transition: 0.3s;
}

.project-more__btn-circle {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 100%;
    overflow: hidden;
}

.project-more__btn-circle:after {
    position: absolute;
    content: '';
    display: block;
    transform: translateY(-100%);
    width: 100%;
    height: 100%;
    background: #0b0b0b;
    border-radius: 100%;
    transition: 0.3s;
}

.project-more__btn-circle svg {
    position: relative;
    z-index: 2;
}

.project-more__btn-circle svg path {
    transition: 0.3s;
}

.project-more__btn:hover {
    color: #181519;
}

.project-more__btn:hover .project-more__btn-circle:after {
    transform: translateY(0%);
}

.project-more__btn:hover .project-more__btn-circle svg path {
    stroke: #fff;
}

.socact-info__icitem {
    display: flex;
    align-items: center;
    gap: 8px;
}

.socact-info__icitem-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: #dff5ff;
    border-radius: 100%;
    flex-shrink: 0;
}

.socact-info__icitem-title {
    font-size: 18px;
    line-height: 156%;
    color: #181519;
}

.socact-infodig__head .anim-bottom,
.socact-infodig__head .anim-top {
    display: flex;
    gap: 8px;
    align-items: start;
}

.socact-info__body-icon {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.page-title__info {
    display: flex;
    gap: 4px;
    margin-top: 37px;
    color: #707173;
}

.map-card {
    padding: 10px 8px;
    display: flex;
    align-items: start;
    gap: 16px;
    max-width: 300px;
}

.map-card__content {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 8px;
}

.map-card__img {
    aspect-ratio: 78 / 84;
    max-width: 78px;
    line-height: 0;
}

.map-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.map-card__content-text {
    font-size: 14px;
    line-height: 143%;
    color: #181519;
}

.map-card__content a {
    font-size: 14px;
    line-height: 143%;
    color: #0073c0;
}

.map-card__content a .btn__arrow {
    width: 36px;
    height: 36px;
}

/*----------
Project END  
-----------*/

/*----------
Press-center START 
-----------*/

.page-press {
    margin-top: 80px;
}

.page-press__big-new {
    padding-bottom: 40px;
    border-bottom: 1px solid #e6e6e6;
}

.page-press__banner {
    margin: 40px 0;
    aspect-ratio: 1400 / 480;
    line-height: 0;
}

.page-press__banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.page-press__big-new-title {
    font-size: 32px;
    line-height: 125%;
    color: #181519;
}

.page-press__big-new-anons {
    margin: 16px 0;   
}

.page-press__big-new-date {
    font-size: 14px;
    line-height: 143%;
    color: #707173;
}

section.sec-news {
    overflow: hidden;
}

.news-head {
    margin-top: 37px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.news-head__count {
    display: flex;
    align-items: center;
    gap: 7px;
}

.news-head__sort {
    display: flex;
    align-items: center;
    gap: 8px;
}

.news-head__sort .main-menu-link {
    display: flex;
    align-items: center;
    gap: 8px;
}

.news--grid {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.news-more {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

section.page-news {
    margin-top: 80px;
}

.news-detail {
    margin-top: 0px;
}

.news-detail .page-press__banner {
    margin: 0;
}

.news-detail--content {
    padding-bottom: 40px;
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    border-bottom: 1px solid #e6e6e6;
}

.news-detail__title {
    font-size: 32px;
    line-height: 125%;
    color: #181519;
}

.news-detail__date {
    display: flex;
    gap: 8px;
    font-size: 14px;
    line-height: 143%;
    color: #707173;
}

.date-val {
    color: #3f3f3f;
}

.news-detail--body {
    padding-bottom: 40px;
    margin: 64px auto 0;
    max-width: 920px;
    border-bottom: 1px solid #e6e6e6;
}

.news-detail--body img {
    width: 100%;
}

.news-detail--body p {
    margin: 16px 0;
    font-size: 14px;
    line-height: 143%;
}

.news-detail--body h3 {
    font-size: 18px;
    line-height: 156%;
    color: #3f3f3f;
}

.news-detail__img-wrap {
    margin-bottom: 24px;
    padding-bottom: 24px;
    width: 100%;
    border-bottom: 1px solid #e6e6e6;
}

.news-detail__img-wrap_text {
    margin-top: 16px;
    font-family: var(--second-family);
    font-style: italic;
    font-weight: 400;
    font-size: 14px;
    line-height: 143%;
    color: #707173;
}

/*----------
Press-center END  
-----------*/

/*----------
Contact START  
-----------*/

.map-wrapper {
    margin-top: 64px;
    height: 520px;
}

.map-wrapper .ymaps-2-1-79-ground-pane {
    filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#grayscale");
    -webkit-filter: grayscale(100%);
}

.page-contact--grid {
    margin-top: 24px;
    max-width: 1040px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.page-contact__item-title {
    margin-bottom: 9px;
}

.page-contact__item-val {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    line-height: 156%;
}

/*----------
Contact END  
-----------*/

/*----------
Page 404 START  
-----------*/

.page404 {
    position: relative;
    margin: 310px auto 147px;
    max-width: 1440px;
    padding: 0 20px;
    display: flex;
    align-content: center;
    justify-content: center;
}

.page404__content {
    position: relative;
    max-width: 717px;
    text-align: center;
    z-index: 1;
}

.page404__content-title {
    font-size: 40px;
    line-height: 120%;
    color: #181519;
}

.page404__content-text {
    margin-top: 24px;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid #e6e6e6;
    font-size: 18px;
    line-height: 156%;
    color: #3f3f3f;
}

.page404__img img {
    width: 100%;
}

.page404__content-bg {
    position: absolute;
    width: 100%;
    top: -100px;
    font-weight: 400;
    font-size: 400px;
    color: #f4f4f4;
    text-align: center;
}

/*----------
Page 404 END  
-----------*/

/*----------
Common START  
-----------*/

.socact-info__body-link {
    position: relative;
    padding-bottom: 8px;
    margin-top: 24px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    line-height: 156%;
    transition: 0.3s;
}

.socact-info__body-link svg path {
    transition: 0.3s;
}

.socact-info__body-link:after {
   content: '';
   display: block;
   position: absolute;
   bottom: 0;
   height: 1px;
   width: 0%;
   background: #0b0b0b;
   transition: 0.3s;
}

.socact-info__body-link:hover {
    color: #0b0b0b;
}

.socact-info__body-link:hover:after {
    width: 100%;
}

.socact-info__body-link svg path {
    stroke: #0b0b0b;
}

.select__dropdown {
    position: relative;
    height: 100%;
}

.select__dropdown-link {
    display: flex;
    align-items: center;
    gap: 8px;
    height: 100%;
}

.select__dropdown--wrap {
    padding: 16px;
    position: absolute;
    left: 0;
    transform: translateY(10px);
    box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.16);
    background: #fff;
    transition: 0.3s;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    z-index: 1;
}

.select__dropdown__menu {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 16px;
}

.select__dropdown__menu a {
    font-size: 15px;
}

.select__dropdown:hover .select__dropdown--wrap {
    opacity: 1;
    visibility: visible;
}

@media screen and (max-width: 1080px) {
    .news-head__sort .main-menu-link svg {
        display: block;
    }
}

/*----------
Common END  
-----------*/