html {
    scroll-padding-top: 70px;
}
body * {
    font-family: TT Norms Pro;
    /* color: rgba(73, 73, 73, 1); */
    color: #575757;
}
.modal-dialog {
    /* height: initial !important; */
}
.collapse {
    display: initial;
}
body a {
    text-decoration: none;
    color: rgba(73, 73, 73, 1);
}

.section--sticky {
    /* display: none; */
    position: relative;
    top: 0px;
    z-index: 950;
    /* padding: 0 20px; */
    margin-top: -40px;
}
.section--sticky.scroll-down-sticky {
    position: sticky;
    z-index: 1015;
}
@media (max-width: 1200px) {
    .section--sticky {
        top: 0px;
        margin-top: -35px;
    }
}
@media (max-width: 640px) {
    .section--sticky {
        top: 0px;
    }
}
.project-sticky {
    background: rgba(255, 255, 255, 1);
    border: 1px solid rgba(219, 219, 219, 1);
    border-radius: 12px;
}
.project-sticky__content {
    height: 68px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    column-gap: 32px;
    /* overflow-x: auto; */
}
.project-sticky__nav {
    flex-grow: 1;
    display: flex;
}
.project-sticky__item {
    color: rgba(73, 73, 73, 1);
    position: relative;
    font-weight: 400;
    font-size: 14px;
    white-space: nowrap;
    line-height: 120%;
    text-align: center;    
    padding: 6px 12px;
}
.project-sticky__more {
    display: flex;
    align-items: center;
    column-gap: 10px;
}
.more-container .icon {
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
    transform: rotate(0deg);
}
.more-container__hover .icon {
    transform: rotate(180deg);
}
.project-sticky__item:hover {
    color: rgba(229, 175, 152, 1);
}
.project-sticky__item:hover .icon path {
    stroke: rgba(229, 175, 152, 1);
}
.project-sticky__item.active {
    /* font-weight: 500; */
    color: rgba(229, 175, 152, 1);
}
.project-sticky__item.active::after {
    content: '';
    display: inline-block;
    border-bottom: 1px solid rgba(229, 175, 152, 1);
    left: 0;
    right: 0;
    position: absolute;
    bottom: 0;
}
@media (max-width: 1400px) {
    .project-sticky__item.active::after {
        content: none;
    }
}

.modal-dialog.modal-project-feature {
    max-width: 1000px;
}
.modal-content--abs {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}
.modal-project-feature .modal-content {
    padding: 32px;
    border-radius: 12px;
    height: 100%;
    overflow: hidden;
}
.modal-project-feature__header {
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: 48px;
    right: 48px;
}
.modal-project-feature__close {
    width: 40px;
    height: 40px;
    cursor: pointer;
}
.modal-project-feature__close svg {
    width: 100%;
    height: 100%;
    fill: rgb(245, 245, 245);
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
.modal-project-feature__close:hover svg {
    fill: rgba(255, 255, 255, 1);
}
.modal-project-feature__title {
    font-weight: 500;
    font-size: 32px;
    line-height: 110%;
    vertical-align: middle;
}
.modal-project-feature__image {
    width: 100%;
    height: 480px;
}
.modal-project-feature__image img {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    object-fit: cover;
}
.modal-project-feature__body {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.modal-project-feature__slider {
    flex-grow: 1;
}
/* @media (max-width: 1400px) {
    .modal-dialog.modal-project-feature {
        max-width: 850px;
    }
}
@media (max-width: 1200px) {
    .modal-dialog.modal-project-feature {
        max-width: 850px;
    }
}
@media (max-width: 1000px) {
    .modal-dialog.modal-project-feature {
        max-width: 700px;
    }
}
@media (max-width: 640px) {
    .modal-dialog.modal-project-feature {
        max-width: 500px;
    }
} */
@media (max-width: 375px) {
    .modal-dialog.modal-project-feature {
        /* max-width: 300px; */
    }
}

.modal-content__center {
    display: flex;
    flex-grow: 1;
    justify-content: center;
    align-items: center;
    padding-top: 20px;
    padding-bottom: 20px;
}
@media (max-width: 1200px) {
    .modal-content__center {
        padding-top: 10px;
        padding-bottom: 10px;
    }
}

.modal-project__header {
    display: flex;
    justify-content: space-between;
    position: absolute;
    right: 10px;
    top: 20px;
}
@media (max-width: 1200px) {
    .modal-project__header {
        right: 20px;
    }
}
@media (max-width: 640px) {
    .modal-project__header {
        right: 20px;
    }
}
.modal-project__close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 50px;
    height: 50px;
    cursor: pointer;
    z-index: 500;
}
@media (max-width: 1200px) {
    .modal-project__close {
        top: 6px;
        right: 6px;
    }
}
.modal-project__close svg {
    width: 100%;
    height: 100%;
    fill: rgb(245, 245, 245);
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
.modal-project__close:hover svg {
    fill: rgba(255, 255, 255, 1);
}
.modal-project__title {
    font-weight: 500;
    font-size: 32px;
    line-height: 110%;
    vertical-align: middle;
}
.modal-project__image {
    width: 100%;
    height: 480px;
}
.modal-project__image img {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    object-fit: cover;
}
.modal-project__wrap {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    height: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding-top: 10px;
    padding-bottom: 10px;
}

.modal-project__content {
    height: 100%;
    display: flex;
    flex-direction: column;
}
.modal-project__body {
    flex-grow: 1;
}
.modal-project__body .project-sliders {
    height: 100%;
    grid-template-columns: 1fr minmax(300px, auto);
}
@media (max-width: 1200px) {
    .modal-project__body .project-sliders {
        grid-template-columns: initial;
        grid-template-rows: 1fr auto;
        gap: 20px;
    }
}
.project-slider-modal {
    /* height: 100%; */
    border-radius: 12px;
}
.modal-project__body .project-slider-modal__content {
    width: 100%;
    height: 100%;
}
.project-slider-modal__image {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}
.modal-project__footer {
    background: yellow;
    max-height: 180px;
    overflow: hidden;
}
.modal-project__body + .modal-project__footer {
    margin-top: 30px;
}
@media (max-width: 1200px) {
    .modal-project__body + .modal-project__footer {
        margin-top: 20px;
    }
}
.modal-project-scroll {
    overflow-y: scroll;
    height: 100%; 
}
/* .modal-fullscreen.modal-project-fullscreen .modal-content {
    padding: 60px 32px;
    border-radius: 12px;
} */
.modal-dialog.modal-project-fullscreen {
    max-width: initial;
    margin: 0;
}
.modal-dialog.modal-project-fullscreen .modal-content {
    padding-top: 20px;
    padding-bottom: 20px;
}
@media (max-width: 1200px) {
    .modal-dialog.modal-project-fullscreen .modal-content {
        padding-top: 10px;
        padding-bottom: 10px;
    }
}
#infrastructureModal .mapgl_i42TyWqpCPk- {
    top: 62px;
}