@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: 100vw;
    overflow-x: hidden;
    padding: 0;
    margin: 0;
}

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


.rect {
    position: absolute;
    top: 65px;
    left: 95px;
    width: 170px;
    height: 90px;
    background-color: #B4C32A;
    border-radius: 15px;
    z-index: 10;
}

.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.4vw;
    text-transform: none;
    color: #333;
}

.h4 {
    font-size: 0.9vw;
    text-transform: uppercase;
    color: #333;
}

.t1 {
    font-weight: 400;
    font-size: 1vw;
    max-width: 20vw;
    line-height: 1.3;
}

.uppercase {
    text-transform: uppercase;
    line-height: 1;
    margin: 0;
}

.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;
}

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;
}

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

.container svg {
    height: 7vw;
}



.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;
}


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

.line {
    width: 100%;
    display: flex;
    gap: 2.5vw;
}

.member {
    width: 18vw;
    display: flex;
    flex-direction: column;
    gap: 2vh;
}

.member .h3 {
    margin: 1vh 0 0;
}


.member .h4 {
    margin: 0;
}



.member-img {
    width: 100%;
    max-width: 100%;
    display: block;
    
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.member-img:hover {
    filter: grayscale(0%);
}



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

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

    .t1 {
        font-size: 18px;
        width: 300px;
    }

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

.h4 {
    font-size: 4vw;
    text-transform: uppercase;
    color: #333;
}

    .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 8vw;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        gap: 20px;
    }

    .container svg {
        height: 8vh;
    }

    .rect {
        position: absolute;
        top: 25px;
        left: -10px;
        width: 160px;
        height: 60px;
        background-color: #B4C32A;
        border-radius: 15px;
        z-index: 10;
    }

    .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;
    }

    .team {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 6vh;
    padding: 2vh 0 0;
}

.line {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 6vh;
}

.member {
    width: 84vw;
    display: flex;
    flex-direction: column;
    gap: 2vh;
}

.member .h3 {
    margin: 1vh 0 0;
}


.member .h4 {
    margin: 0;
}



.member-img {
    width: 100%;
    max-width: 100%;
    display: block;
    
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.member-img:hover {
    filter: grayscale(0%);
}
    
}