/*----------
Mainpage START  
-----------*/

section.hero {
    margin-top: 40px;
}

.hero__slider {
    overflow: hidden;
}

.hero__slider .swiper-slide {
    line-height: 0;
    position: relative;
    transition: transform 0.6s ease-in-out;
}

.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;
}

.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);
}

.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;
    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: center;
    border-bottom: 1px solid #e6e6e6;
}

.slider-nav--wrap {
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    gap: 24px;
}

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: 1;
    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-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  
-----------*/