:root {
    --font-secondary: "Cormorant SC", serif;
    --beige: #f0e6dc;
    --red: #6e1720;
}

body {
    font-family: "Manrope", sans-serif;
    font-weight: 400;
    background: var(--beige);

    background-image: linear-gradient(
        to right,
        transparent 0,
        transparent calc(25% - 0.5px),
        rgba(54, 53, 52, 0.12) calc(25% - 0.5px),
        rgba(54, 53, 52, 0.12) calc(25% + 0.5px),
        transparent calc(25% + 0.5px),
        transparent calc(50% - 0.5px),
        rgba(54, 53, 52, 0.12) calc(50% - 0.5px),
        rgba(54, 53, 52, 0.12) calc(50% + 0.5px),
        transparent calc(50% + 0.5px),
        transparent calc(75% - 0.5px),
        rgba(54, 53, 52, 0.12) calc(75% - 0.5px),
        rgba(54, 53, 52, 0.12) calc(75% + 0.5px),
        transparent calc(75% + 0.5px)
    );
}

header {
    height: 4.8rem;
    background: var(--beige);
}
.navigation {
    display: flex;
    align-items: center;
    gap: 2.625rem;
}
.navigation a {
    font-size: 0.8rem;
    opacity: 0.9;
}
.navigation a:hover, .navigation a.active {
    opacity: 1;
}
.head-mar {
    margin-top: 1rem;
}
.header-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.header-logo img {
    width: 5.25rem;
    height: 3.4375rem;
}

.head-links a {
    font-size: 1.5rem;
}
.head-links a:hover {
    opacity: 0.7;
}

.head-number {
    font-family: "Cormorant SC";
    font-size: 1.25rem;
    font-weight: 500;
    text-decoration-line: underline !important;
    text-decoration-style: solid;
    text-decoration-skip-ink: auto;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
}

.lang-dropdown {
    position: relative;
    display: inline-block;
    height: auto;
}

.lang-icon {
    width: 1.2rem;
    height: 1.2rem;
}

.lang-btn {
    width: 100%;
    background: none;
    border: none;
    font-size: 0.8rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.2rem;
}

.lang-menu {
    list-style: none;
    padding: 0;
    display: none;
    top: 100%;
    position: absolute;
    right: 0;
}

.lang-menu li {
    font-size: 0.8rem;
    margin-top: 0.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    left: 0;
}

.lang-menu li:hover {
    opacity: 0.7;
}

.lang-dropdown.open .lang-menu {
    display: flex;
    flex-direction: column;
    align-items: end;
}

/* burger */
.burger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}
.burger img {
    object-fit: cover;
    width: 2rem;
    height: 2rem;
}

.lang-dropdown-mob {
    display: none;
}

.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 9998;

    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 70%;
    height: 100%;
    background: #fff;
    padding: 0.5rem 1.25rem;
    z-index: 9999;

    transform: translateX(100%);
    transition: 0.3s ease;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-close {
    background: none;
    border: none;
    font-size: 1.2rem;
}

.mobile-nav a {
    display: block;
    margin-bottom: 1.25rem;
    font-size: 1rem;
}

.mobile-socials a {
    font-size: 1.4rem;
    color: #6e1720;
    margin-right: .62rem;
}

@media (max-width: 1024px) {
    header {
        height: 4.4rem;
    }

    .lang-dropdown-mob {
        display: inline-block;
    }

    .mob-hed1 {
        margin-top: 0.6rem;
    }
    .mob-hed2 {
        margin-top: 0.3rem;
    }

    .navigation,
    .header-right {
        display: none;
    }

    .burger {
        display: flex;
    }
}

.hero-page {
    height: 43rem;
    /*background-image: url("/img/hero-back.jpg");*/
}
.hero-page > div {
    height: 100%;
    text-align: center;
    color: #fff;
}
.hero-btn {
    color: black;
    background-color: #fff;
}

/* project-card */
.project-card {
    position: relative;
    overflow: hidden;
}
.project-card img {
    width: 100%;
    display: block;
    object-fit: cover;
}

.project-card2 img {
    width: 100%;
    display: block;
    object-fit: cover;
}

.pro-img1 {
    height: 30.8rem;
}
.pro-img2 {
    height: 19.5rem;
}
.pro-img3 {
    height: 28.6rem;
}
.pro-img4 {
    height: 20.6rem;
}
.pro-img5 {
    height: 45.5rem;
}

.project-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.view-btn {
    height: 4.25rem;
    border: 1px solid #fff;
    background: rgba(255, 255, 255, 0.01);
    backdrop-filter: blur(17.950000762939453px);
    color: #fff;
    min-width: 13.15rem;
    transition: 0.25s ease !important;
}
.view-btn-lil {
    height: 3.5rem;
}
.view-btn:hover {
    background-color: white;
    color: black;
}
.btn{
    position: relative;
    overflow: hidden;
}
.project-bottom {
    display: flex;
    justify-content: space-between;
    margin-top: 0.62rem;
    align-items: end;
}
.text-width {
    max-width: 18.8rem;
}
.text-block {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: end;
    align-items: end;
}

.pro-card-lil {
    position: relative;
    bottom: 29%;
}

.blure-btn {
    border: 1px solid #000;
    background: rgba(255, 255, 255, 0.01);
    backdrop-filter: blur(17.950000762939453px);
}
.blure-btn.active{
    background-color: var(--red);
    color: #fff;
    pointer-events: none;
}
.vis_tabs:not(.factive){
    display: none;
}
.vis_btns{
    margin-bottom: 1.5rem;
}
.vis_btns .btn{
    min-width: 15rem;
    margin-right: 0.5rem;
}
.minus-box {
    margin-top: -3rem;
}

.card-ser-new{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.red-bg {
    background-color: var(--red);
    padding: 3.125rem 0;
    color: #fff;
}

.ab-height {
    /* height: 10.625rem; */
}
.ab-block {
    height: 15rem;
    margin-bottom: 1.88rem;
}
.ab-block span {
    opacity: 0.4;
    font-weight: 500;
}
.ab-block div {
    font-size: 1.25rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 0.62rem;
}
.ab-block p {
    opacity: 0.6;
    font-size: 0.9rem;
}
.ab-more {
    color: #fff;
    font-size: 0.9rem;
}
.ab-more:hover {
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: none;
    text-decoration-thickness: 6%;
    text-underline-offset: 25%;
    text-underline-position: from-font;
}

.ex-img {
    width: 4.1875rem;
    height: 4.1875rem;
    border-radius: 0.625rem;
    margin-right: 0.75rem;
}
.ex-text {
    color: rgba(0, 0, 0, 0.4);
    font-size: 0.8rem;
    text-transform: uppercase;
    max-width: 11rem;
    margin-bottom: 0;
}

.ex-num {
    font-size: 3rem;
    color: var(--red);
    font-weight: 500;
}
.ex-mar {
    margin-top: 2.125rem;
    margin-bottom: 3.125rem;
}

.ex-img-height {
    height: 15.5rem;
    object-fit: cover;
}

.geo-num {
    display: flex;
    flex-direction: column;
    gap: 3.125rem;
}

.geo-map {
    position: absolute;
    z-index: -1;
    width: 65.4375rem;
    height: 33.0775rem;
}

.form-sec1 {
    /*background-image: url("/img/form-sec1.jpg");*/
    min-height: 36.375rem;
    object-fit: cover;
    padding: 1.5625rem 0;
}
.form-sec2 {
    /*background-image: url("/img/form-sec2.jpg");*/
    min-height: 36.375rem;
    object-fit: cover;
    padding: 1.5625rem 0;
}

.form-back {
    padding: 1.875rem;
    height: 100%;
    width: 34.5rem;
}

.con-form{
    width: 100%;
    padding: 0;
}

.con-img{
    width: 100%;
    object-fit: cover;
    height: 100%;
}

.form-back.blure {
    background: rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 59.1px 0 rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(23.049999237060547px);
}

.dscs-inp {
    width: 100%;
    background: none;
    color: #000;
    border-bottom: 1px solid #000;
    padding-bottom: 0.625rem;
    margin-bottom: 1.8rem;
}
.dscs-inp::placeholder {
    color: black;
}

.methods {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.625rem;
}

.foot-bot{
    margin-top: 2.5rem;
}

.method {
    display: flex;
    align-items: center;
    height: 3.125rem;
    padding: 0.625rem 2.1875rem;
    border: 1px solid rgba(0, 0, 0, 0.4);
    border-radius: 7rem;
    cursor: pointer;
}
.method input {
    appearance: none;
    -webkit-appearance: none;
    width: 0.63rem;
    height: 0.63rem;
    border: 1px solid black;
    border-radius: 50%;
    margin-right: 0.62rem;
}
.method input:checked {
    background: black;
}
.politic-txt {
    font-size: 0.7rem;
    margin-bottom: 0.5rem;
}
.politic-txt a {
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: auto;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
}

.works-img {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}
.works-img img {
    height: 10rem;
    object-fit: cover;
    width: 100%;
}

.step-item {
    margin-bottom: 1.5rem;
}
.step-title {
    cursor: pointer;
    transition: 0.3s ease-in;
    opacity: 0.4;
    text-transform: uppercase;
}

.step-num {
    margin-right: 2.5rem;
    font-family: var(--font-secondary);
    font-weight: 500;
}

.step-title:hover {
    opacity: 0.8;
}

.step-item.active .step-title {
    opacity: 0.8;
}

.step-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in;
    max-width: 37.5rem;
    margin-left: 4rem;
}

.step-item.active .step-content {
    max-height: 18.75rem;
    margin-top: 0.5rem;
}

.social-media {
    gap: 0.375rem;
    display: flex;
    flex-direction: column;
}
.social-media a {
    color: #6e1720;
    font-size: 2.25rem;
    font-family: Cormorant;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: auto;
    text-decoration-thickness: 2px;
    text-underline-offset: auto;
    text-underline-position: from-font;
}
.contact-map {
    width: 100%;
    height: 22.125rem;
    margin-top: 1.25rem;
}

.use-op1{
    opacity: 0;
    pointer-events: none;
}

footer {
    padding: 1.75rem 0;
    background: #6e1720;
    color: white;
}

.foot-logo {
    width: 13.4375rem;
    height: 8.875rem;
}

.milk-btn {
    color: black;
    background-color: #f0e6dc;
}
.milk-btn:hover {
    color: #fff;
    background-color: black;
}

.social-links a {
    font-size: 2.25rem;
    color: white;
}
.social-links a:hover {
    opacity: 0.8;
}

.foot-nav a:hover, .foot-nav a.active {
    opacity: 1;
}
.text-hover a:hover {
    text-decoration: underline;
}

.geo-txt {
    width: 20.2rem;
    margin-bottom: -6rem;
}

.geo-section {
    margin-bottom: 8rem;
}

.foot-div {
    width: 50%;
}

.breadcrumbs {
    margin-bottom: 1.88rem;
    margin-top: 6rem;
}
.breadcrumbs ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    flex-wrap: wrap;
}
.breadcrumbs ul li,
.breadcrumbs a {
    font-size: 0.8rem;
    color: #78736e;
}
.breadcrumbs a:hover {
    color: #000;
}

.mar-text {
    margin: 2rem 0;
}

.people-img {
    height: 47rem;
    object-fit: cover;
    width: 100%;
}

.red-bg2 {
    background: #6e1720;
    padding: 1.9375rem 0;
    color: white;
}

.profs-card img {
    margin-bottom: 0.35rem;
    height: 27.125rem;
    object-fit: cover;
}
.des-card img {
    margin-bottom: 0.35rem;
    height: 25rem;
    object-fit: cover;
}

.service-card {
    background-color: #ecded1;
    padding: 1.25rem;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-card img {
    width: 100%;
    height: 12.5rem;
    object-fit: cover;
    margin-bottom: 1.25rem;
}

.goals-back {
    /*background-image: url("/img/bed.jpg");*/
}
.goals-sec {
    padding: 4rem 0;
    min-height: 52rem;
}

.goal-card {
    color: white;
    display: flex;
    width: 20.5rem;
    height: 15.8125rem;
    padding: 1.3125rem 1.25rem;
    flex-direction: column;
    justify-content: space-between;
    background: rgba(0, 0, 0, 0.01);
    backdrop-filter: blur(31.200000762939453px);
    position: relative;
}
.goal-card img {
    width: 2.5625rem;
    height: 2.5625rem;
    object-fit: cover;
}

.goal-card1 {
    left: 6rem;
    top: 2rem;
}
.goal-card2 {
    right: 30rem;
    top: 5rem;
}
.goal-card3 {
    left: 24rem;
    bottom: 2rem;
}
.goal-card4 {
    top: 2rem;
    right: 6rem;
}

.big-img {
    width: 100%;
    object-fit: cover;
    height: 27rem;
}

.content-txt p,
.content-txt li {
    font-size: 0.9rem;
    font-weight: 400;
    opacity: 0.8;
    margin-bottom: 0.8rem !important;
}
.content-txt span {
    font-size: 0.9rem;
    font-weight: 400;
    opacity: 0.8;
}
.content-txt ul,
.content-txt ol {
    padding-left: 1.5rem;
}

.content-txt ol li {
    margin-bottom: unset !important;
}

.txt-img {
    width: 100%;
    object-fit: cover;
    height: 19.4rem;
}

.adventages-img {
    width: 100%;
    object-fit: cover;
    height: 29.75rem;
}

.btn-width-20 {
    width: 20.5rem;
}

.filter-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #000;
    background: none;
    font-family: Manrope;
    margin-bottom: 1rem;
}

.filter-list li {
    list-style: none;
    font-size: 0.9rem;
    opacity: 0.7;
    margin-bottom: 0.75rem;
    cursor: pointer;
    transition: 0.2s;
}

.filter {
    margin-bottom: 1.5rem;
}

.filter label{
    cursor: pointer;
}
label:has(:checked){
    font-weight: 600;
    opacity: 1;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: auto;
    text-decoration-thickness: 4%;
    text-underline-offset: 24.5%;
    text-underline-position: from-font;
}
.filter-list li.active {
    font-weight: 600;
    opacity: 1;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: auto;
    text-decoration-thickness: 4%;
    text-underline-offset: 24.5%;
    text-underline-position: from-font;
}

.filter-list li:hover {
    opacity: 1;
}

.large-img {
    height: 45.4375rem;
    width: 100%;
    object-fit: cover;
    margin-bottom: 2.75rem;
}

.portfolio-text {
    width: 24rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.in-card img {
    height: 41.5625rem;
    width: 100%;
    object-fit: cover;
    margin-bottom: 0.62rem;
}

.pord-card img {
    height: 20.625rem;
    width: 100%;
    object-fit: cover;
    margin-bottom: 0.62rem;
}

.blog-card-big img {
    height: 33.5rem;
    width: 100%;
    object-fit: cover;
    margin-bottom: 1rem;
}

.blog-card-lil img {
    height: 12.5rem;
    width: 100%;
    object-fit: cover;
    margin-bottom: 1rem;
}

.blog-card-img {
    height: 20.1875rem;
    width: 100%;
    object-fit: cover;
    margin-bottom: 1.2rem;
}

.err-img {
    width: 45rem;
    height: 22rem;
}

.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    z-index: 9999;
    pointer-events: none;
}
.modal-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: painted;
}
.modal-window {
    position: relative;
    background: #fff;
    transition: transform 0.3s ease;
}
.modal-close {
    position: absolute;
    top: 0.5rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.35s;
}
.modal-close:hover{
    opacity: 0.5;
}
.success-win {
    width: 34.375rem;
    padding: 1.5rem;
}

.success-img {
    width: 100%;
    object-fit: cover;
    height: 15.6875rem;
    margin-bottom: 1.8rem;
}
.result{
    font-size: 0.9rem;
}
.last_p_mb0 p:last-child{
    margin-bottom: 0;
}
.filter-list input{
    display: none;
}
.service_page .works-img img{
    height: 15rem;
}


.new-ser-title {
    font-size: 1.5rem;
    text-transform: uppercase;
    opacity: 0.8;
    margin-bottom: 1.25rem;
    font-weight: 700;
}
.new-ser-img {
    width: 100%;
    object-fit: cover;
    height: 18.75rem;
    margin-bottom: 1.25rem;
}
.ser-text p {
    font-size: 0.9rem;
    opacity: 0.7;
    margin-bottom: 0;
}
.ser-text span {
    font-size: 0.9rem;
    opacity: 0.7;
    font-weight: 700;
}
.ser-text li {
    font-size: 0.9rem;
    opacity: 0.7;
}
.ser-text ul {
    padding-left: 1.2rem;
}
.ser-cen{
    width: 100%;
    display: flex;
    justify-content: center;
}
