@charset "utf-8";
ol {
    margin-left: auto;
    margin-right: auto;
    max-width: 850px;
    list-style: none;
    counter-reset: ol-item;
}
ol li {
    counter-increment: ol-item;
    position: relative;
    padding-left: 1.75em;
}
ol li::before {
    content: counter(ol-item) ".";
    position: absolute;
    left: 0;
    font-weight: 700;
    color: #ea0a2a;
}
ol li h3 {
    text-transform: none !important;
    padding-top: 0 !important;
    letter-spacing: normal !important;
    font-weight: 700;
}

.teammembers {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 90px;
    margin-top: 30px;
    margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
    .teammembers {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }
}

.teammember {
    position: relative;
    width: 357px;
    max-width: 100%;
    height: 426px;
    overflow: hidden;
}
.teammember img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.teammember h3 {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0;
    padding: 18px 10px;
    background-color: rgba(234, 10, 42, 0.83);
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    font-weight: 700;
}

.standards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin: 30px 0;
}
@media screen and (max-width: 767px) {
    .standards {
        flex-direction: column;
        align-items: center;
    }
}
.standards .standard {
    width: 260px;
    max-width: 100%;
    text-align: center;
}
@media screen and (max-width: 767px) {
    .standards .standard {
        display: flex;
        align-items: center;
        gap: 20px;
        width: 100%;
        max-width: 400px;
    }
}
@media screen and (max-width: 767px) {
    .standards .standard .standard-image {
        flex: 0 0 auto;
    }
}
@media screen and (max-width: 767px) {
    .standards .standard .standard-text {
        flex: 1;
    }
    .standards .standard .standard-text h3,
    .standards .standard .standard-text p {
        text-align: left !important;
    }
}
.standards .standard img {
    width: 100%;
    max-width: 186px;
    height: auto;
    display: block;
    margin: 0 auto 40px;
}
@media screen and (max-width: 767px) {
    .standards .standard img {
        max-width: 120px;
        margin: 0;
    }
}
.standards .standard h3 {
    margin: 0 auto 20px;
    letter-spacing: normal;
    text-transform: none !important;
    font-weight: 700;
}
@media screen and (max-width: 767px) {
    .standards .standard h3 {
        margin: 0 0 8px;
    }
}

.new-project-grid {
    padding: 3% 0 10% 0;
    width: 100%;
    height: auto;
    background-image: url(../images/ordering/coniferous-forest-mountains-natural-background.webp);
    background-position: bottom center;
    background-repeat: no-repeat;
    background-size: cover;
}
.new-project-grid h2 {
    text-transform: uppercase;
    margin: 0 auto 30px;
}
.new-project-grid .new-project-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
    aspect-ratio: 1/1;
    gap: 1em;
    max-width: 1260px;
    margin: 0 auto 50px;
}
@media screen and (max-width: 900px) {
    .new-project-grid .new-project-wrapper {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        aspect-ratio: auto;
    }
}
.new-project-grid .new-project-wrapper .new-project-item {
    overflow: hidden;
}
@media screen and (max-width: 900px) {
    .new-project-grid .new-project-wrapper .new-project-item {
        aspect-ratio: 1/1;
    }
}
.new-project-grid .new-project-wrapper .new-project-item:nth-child(2) {
    grid-row: span 2;
}
@media screen and (max-width: 900px) {
    .new-project-grid .new-project-wrapper .new-project-item:nth-child(2) {
        grid-row: auto;
    }
}
.new-project-grid .new-project-wrapper .new-project-item:nth-child(6) {
    grid-column: span 2;
}
@media screen and (max-width: 900px) {
    .new-project-grid .new-project-wrapper .new-project-item:nth-child(6) {
        grid-column: auto;
    }
}
.new-project-grid .new-project-wrapper .new-project-item:last-child {
    grid-column: auto;
    grid-row: auto;
}
.new-project-grid .new-project-wrapper .new-project-item picture,
.new-project-grid .new-project-wrapper .new-project-item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
} /*# sourceMappingURL=new-style.css.map */
