@font-face {
    font-family: "League Spartan";
    src: url(/font/LeagueSpartan-Medium.woff) format('woff');
    src: url(/font/LeagueSpartan-Medium.woff2) format('woff2');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: "League Spartan";
    src: url(/font/LeagueSpartan-Regular.woff) format('woff');
    src: url(/font/LeagueSpartan-Regular.woff2) format('woff2');
    font-weight: 400;
    font-style: normal;
}

* {
    box-sizing: border-box;
}

body {
    font-family: "League Spartan", sans-serif;
    width: 100%;
    overflow-x: hidden;
    padding: 0;
    margin: 0;
}

.heading {
    position: relative;
    display: inline-block;
}

.head {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.filter-wrapper {
    position: relative;
}

.filter-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: white;
    border: 0.1vw solid #333;
    border-radius: 20px;
    padding: 0.5vw 2vw 0.5vw;
    transition: all 0.25s ease;
}

.filter-btn:active {
    transform: scale(0.97);
    background-color: #f2f2f2;
}

.filter-btn span {
    font-family: "League Spartan", sans-serif;
    font-size: 1vw;
    text-transform: uppercase;
    text-decoration: none;
}

.filter-btn:hover span {
    text-decoration: underline;
}

.dropdown {
    position: absolute;
    top: 4vw;
    right: 0;
    background: white;
    border: 1.5px solid #333;
    padding: 10px 0;
    display: none;
    flex-direction: column;
    gap: 10px;
    min-width: 150px;
    z-index: 3000;
}

.dropdown.active {
    display: flex;
}

.dropdown div {
    font-size: 1vw;
    padding: 8px 15px;
    cursor: pointer;
    text-transform: uppercase;
}

.dropdown div:hover {
    background: #f2f2f2;
}

a {
    text-decoration: none;
}

.h1 {
    position: relative;
    font-size: 5.2vw;
    text-transform: none;
    font-weight: 500;
    color: #333;
    line-height: 1.2;
    z-index: 20;
    margin: 0;
}

.h3 {
    font-size: 1.2vw;
    text-transform: none;
    color: #333;
}

.t1 {
    font-weight: 300;
    font-size: 1vw;
    width: 20vw;
    line-height: 1.2;
}

.menu {
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: white;
    border-bottom: 1px solid #333;
    width: 100%;
    padding: 0 10vw;
    z-index: 4000;
    height: 4vw;
}

.logo {
    height: 2vw;
}

.menul {
    display: flex;
    gap: 2vw;
    min-width: 0;
    flex-shrink: 1;
}

.ml {
    font-size: 1vw;
    text-transform: uppercase;
    text-decoration: none;
    color: #333;
    white-space: nowrap;
}

.active-link {
    color: red;
}

a {
    text-decoration: none;
}


a:hover {
    text-decoration: underline;
    color: #333;
}

a,
a:link,
a:visited,
a:hover,
a:active {
    color: #333;
}

.burger {
    width: 30px;
    height: 22px;
    cursor: pointer;
    display: none;
    position: relative;
    z-index: 4100;
}

.burger span {
    position: absolute;
    width: 100%;
    height: 4px;
    background: #333;
    left: 0;
    transition: 0.3s;
    z-index: 3000;
}

.burger span:nth-child(1) { top: 4px; }
.burger span:nth-child(2) { top: 12px; }
.burger span:nth-child(3) { top: 20px; }

.burger.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 9px;
}

.burger.active span:nth-child(2) {
    opacity: 0;
}

.burger.active span:nth-child(3) {
    transform: rotate(-45deg);
    top: 9px;
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    font-size: 18px;
    text-transform: uppercase;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s ease;
    z-index: 2000;
}

.mobile-menu a {
    text-decoration: none;
    color: #333;
}

.mobile-menu.active {
    visibility: visible;
    opacity: 1;
}

.footer {
     width: 100%;
    display: flex;
    justify-content: space-between;
    background-color: #333;
    padding: 40px 10vw 80px;
}

.footer .ml {
    color: white;
}

.col {
    display: flex;
    flex-direction: column;
    gap: 3vw;
    width: auto;
}

.container {
    width: 100%;
    overflow-x: hidden;
    padding: 6vw 10vw 6vw;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 2vw;
}


.container svg {
    height: 7vw;
}

.container-s svg {
    height: 7vw;
}

.svg-mobile {
    display: none;
}

.svg-mobile2 {
    display: none;
}

.container-s {
    box-sizing: border-box;
    width: 100%;
    overflow-x: hidden;
    padding: 80px 10vw 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
}

.cards {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.card-link {
    display: block;
    width: 100%;
    transition: opacity 0.25s ease;
}

.card-link.filtered-out {
    opacity: 0.4;
    pointer-events: none;
}

.cards {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2vw;
}

.card {
    width: 25vw;
    height: auto;
    border: 0.1vw solid #333;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 2vw 2vw 0;
}

.card-image {
    height: 20vw;
    width: 100%;
}

.card .h3 {
    text-decoration: none;
}

.card .h3:hover {
    text-decoration: underline;
}


.cards2 {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 2vw;
}

.text-container-big {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1vw;
}

.text-container {
    display: flex;
    gap: 6vw;
    padding: 1vh 0 0;
}

.more {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #6C7049;
    color: white;
    border: none;
    border-radius: 15px;
    padding: 0.8vw 2vw 0.8vw;
    transition: all 0.25s ease;
}


.more:hover {
    border-color: #B4C32A;
}

.more:active {
    transform: scale(0.97);
    background-color: #A3B01F;
}


.more span {
    font-family: "League Spartan", sans-serif;
    font-size: 1.2vw;
    text-transform: uppercase;
    text-decoration: none;
    color: white;
}

.more:hover span {
    text-decoration: underline;
}

.section {
    width: 80vw;
    display: flex;
    gap: 10vw;
    overflow: hidden;
}

.simg {
    width: 40vw;
}

.info {
    overflow: visible;
    width: 30vw;
    display: flex;
    flex-direction: column;
    gap: 2vw;
}


.proyect {
    padding: 1vw 0 4vw;
    display: flex;
    flex-direction: column;
    gap: 40px;
}



.miti {
    display: flex;
    gap: 40px;
    overflow: hidden;
    justify-content: space-between;
}

.miti img {
    width: 42vw;
}

.block {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px 0;
    gap: 40px;
}

.banner {
    width: 80vw;
    display: block;
    padding-top: 1vh;
}

.block img {
    width: 60vw;
}

.v img {
    width: 30vw;
}

@media (min-width: 1920px) {
    .t1 {
        font-weight: 300;
        font-size: 0.8vw;
        width: 20vw;
        line-height: 1.2;
    }

    .h3 {
        font-size: 1vw;
        text-transform: none;
        color: #333;
    }

    .menu {
        padding: 0 20vw;
        height: 3vw;
    }

    .ml {
        font-size: 0.8vw;
    }

    .container {
        padding: 6vw 20vw 6vw;
    }

    .banner {
        width: 60vw;
        display: block;
        padding-top: 0;
    }

    .text-container-big {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5vw;
    }

    .container-s svg {
        height: 5vw;
    }

    .container-s {
        padding: 6vw 20vw 6vw;
    }

    .container svg {
        height: 5vw;
    }

    .card {
        width: 18vw;
        height: auto;
        border: 0.1vw solid #333;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        padding: 2vw 2vw 0;
    }

    .card-image {
        height: 15vw;
        width: 100%;
    }

    .footer {
        padding: 40px 20vw 80px;
    }

    .col {
        display: flex;
        flex-direction: column;
        gap: 2vw;
        width: auto;
    }

    .logo {
        height: 1.5vw;
    }

    .filter-btn {
        display: flex;
        align-items: center;
        gap: 8px;
        background-color: white;
        border: 0.1vw solid #333;
        border-radius: 20px;
        padding: 0.5vw 1vw 0.5vw;
        transition: all 0.25s ease;
    }

    .filter-btn span {
        font-family: "League Spartan", sans-serif;
        font-size: 0.8vw;
        text-transform: uppercase;
        text-decoration: none;
    }

    .dropdown {
        position: absolute;
        top: 4vw;
        right: 0;
        background: white;
        border: 1.5px solid #333;
        padding: 10px 0;
        display: none;
        flex-direction: column;
        gap: 10px;
        min-width: 150px;
        z-index: 3000;
    }

    .dropdown.active {
        display: flex;
    }

    .dropdown div {
        font-size: 0.8vw;
        padding: 8px 15px;
        cursor: pointer;
        text-transform: uppercase;
    }

    .section {
        width: 60vw;
        display: flex;
        gap: 8vw;
        overflow: hidden;
    }

    .simg {
        width: 30vw;
    }

    .info {
        overflow: visible;
        width: 30vw;
        display: flex;
        flex-direction: column;
        gap: 1vw;
    }


    .proyect {
        padding: 1vw 0 4vw;
        display: flex;
        flex-direction: column;
        gap: 40px;
    }



    .miti {
        display: flex;
        gap: 40px;
        overflow: hidden;
        justify-content: space-between;
    }

    .miti img {
        width: 42vw;
    }

    .more {
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 15px;
        padding: 0.6vw 1.2vw 0.6vw;
        transition: all 0.25s ease;
    }

    .more span {
        font-family: "League Spartan", sans-serif;
        font-size: 1vw;
        text-transform: uppercase;
        text-decoration: none;
    }
}

@media (max-width: 768px) {
    html, body {
        padding: 0;
        margin: 0;
        overflow-x: hidden;
    }
    

    .h1 {
        font-size: 10vw;
        width: 100%;
        max-width: 300px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .h3 {
        font-size: 5vw;
        text-transform: none;
        color: #333;
        margin: 0;
    }

    .t1 {
        font-size: 4vw;
        max-width: 80vw;
        width: 100%;
    }

    .menu {
        background-color: white;
        border-bottom: 1px solid #333;
        width: 100%;
        padding: 20px 8vw;
        height: 6vh;
    }


    .menu .logo {
        margin-top: 20px;
        height: 3vh;
        width: auto;
    }

    .menul {
        display: none;
    }

    .burger {
        position: absolute;
        top: 10px;
        right: 8vw;
        display: block;
    }

    .container {
        box-sizing: border-box;
        width: 100%;
        overflow-x: hidden;
        padding: 8vh 20px;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 20px;
        padding: 10vh 8vw;
        overflow: visible;
    }

    .container svg {
        display: none;
    }

    .container-s svg {
        display: none;
    }

    .svg-mobile {
        display: block !important; 
        width: 100%;
    }

    .svg-mobile2 {
        display: block !important; 
        width: 100%;
    }

    .svg-mobile2 svg {
        display: block; 
        height: 8vh;
        width: auto;
    }

    .svg-mobile svg {
        display: block; 
        width: 80vw;
        height: auto;
    }

    .cards {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 4vw;
    }

    .cards2 {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 4vw;
    }

    .card {
        width: 100%;
        height: auto;
        border: 0.1vw solid #333;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        padding: 4vw 4vw 4vw;
        gap: 4vw;
    }

    .card img {
        width: 100%;
        height: auto;
    }


    .container-s {
        box-sizing: border-box;
        width: 100%;
        overflow-x: hidden;
        padding: 80px 8vw 100px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        gap: 3vh;
    }

    .container-s svg {
        margin-bottom: 1vh;
    }

    .text-container {
        display: flex;
        flex-direction: column;
        gap: 3vh;
        width: 100%;
        max-width: 80vw;
        padding: 0;
        margin: 0;
    }


    .take {
        display: flex;
        flex-direction: column;
        gap: 0.5vh;
        width: 100%;
        max-width: 80vw;
        padding: 0;
        margin: 0;
    }

    .text-container-big {
        display: flex;
        flex-direction: column;
        gap: 0.5vh;
        width: 100%;
        max-width: 80vw;
    }

    .proyect {
        padding: 1vh 0 4vh;
        display: flex;
        flex-direction: column;
        gap: 4vh;
        width: 100%;
    }

    .banner {
        width: 100%;
        height: 200px;
        object-fit: cover;
        max-width: 100%;
        display: block;
        padding-top: 40px;
    }

    .section {
        display: flex;
        flex-direction: column-reverse;
        gap: 4vh;
        overflow: hidden;
        width: 100%;
    }

    .simg {
        width: 100%;
        height: 280px;
        object-fit: cover;
    }

    .info {
        overflow: visible;
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 0.5vh;
        align-items: flex-start;
    }

    .footer {
        padding: 40px 8vw 60px;
        flex-direction: column;
        gap: 4vh;
    }


    .col {
        width: 300px;
        gap: 4vh;
    }

    .logo {
        height: auto;
        width: 40vw;
        margin-bottom: 2vh;
    }

    .footer .ml {
        color: white;
        font-size: 4vw;
    }


    .block {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 40px 0;
        gap: 40px;
    }



    .block img {
        width: 100%;
    }

    .v img {
        width: 300px;
    }

    .more {
        width: 100%;
        height: 4vh;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 25px;
        padding: 1.5vw 2vw 1.5vw;
        transition: all 0.25s ease;
    }

    .more span {
        font-family: "League Spartan", sans-serif;
        font-size: 4vw;
        text-transform: uppercase;
        text-decoration: none;
    }

    .head {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.filter-wrapper {
    position: relative;
}

.filter-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: white;
    border: 0.1vw solid #333;
    border-radius: 20px;
    padding: 2vw 3vw 2vw;
    transition: all 0.25s ease;
    margin-top: 7vw;
}

.filter-btn:active {
    transform: scale(0.97);
    background-color: #f2f2f2;
}

.filter-btn span {
    font-family: "League Spartan", sans-serif;
    font-size: 4vw;
    text-transform: uppercase;
    text-decoration: none;
    color: #333;
}

.filter-btn:hover span {
    text-decoration: underline;
}

.dropdown {
    position: absolute;
    top: 15vw;
    right: 0;
    background: white;
    border: 1.5px solid #333;
    padding: 10px 0;
    display: none;
    flex-direction: column;
    gap: 10px;
    min-width: 150px;
    z-index: 3000;
}

.dropdown.active {
    display: flex;
}

.dropdown div {
    font-size: 4vw;
    padding: 8px 15px;
    cursor: pointer;
    text-transform: uppercase;
}

}
