@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: 145px;
    width: 230px;
    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.2vw;
    text-transform: none;
    color: #333;
}

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

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

.text-container {
    display: flex;
    gap: 20vw;
}

.map {
    width: 100%;
    height: 400px;
}

.contact {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 2vw;
    padding: 4vw 0 2vw;
}

.contact-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 0.1vw solid #333;
    border-radius: 20px;
    padding: 3vw;
}

.input-group {
    position: relative;
    margin-bottom: 20px;
}

.naem {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35vw;
    padding: 1vw 0.8vw 1.2vw;
    font-size: 1vw;
    border: 0.1vw solid #333;
    border-radius: 6px;
    outline: none;
    margin-bottom: 1vw;
}

.msg {
   min-width: 100%;
   width: 74vw;
   height: 100px;
    padding: 1vw 0.8vw 1.2vw;
    font-size: 16px;
    border: 0.1vw solid #333;
    border-radius: 6px;
    outline: none; 
    margin-bottom: 1vw;
    display: flex;
    align-items: flex-start;
}

.input-group label {
    position: absolute;
    left: 10px;
    top: 16px;
    color: #888;
    pointer-events: none;
    transition: 0.2s;
}

.input-group input:focus + label,
.input-group input:not(:placeholder-shown) + label {
    top: -8px;
    left: 8px;
    padding: 0 4px;
    background: white;
    font-size: 12px;
    color: #333;
}

.contact-form .more {
    width: 200px;
}

.line {
    display: flex;
    width: 100%;
    justify-content: space-between;
}

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

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

@media (min-width: 1920px) {
    .h1 {
        position: relative;
        font-size: 4.2vw;
        text-transform: none;
        font-weight: 500;
        color: #333;
        line-height: 1.2;
        z-index: 20;
        margin: 0;
    }

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

    .container svg {
        height: 5vw;
    }

    .contact {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 2vw;
        padding: 4vw 0 4vw;
    }

    .contact-form {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        border: 0.1vw solid #333;
        border-radius: 20px;
        padding: 2vw;
    }

    .naem {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 27vw;
        height: 2vw;
        padding: 1vw 0.8vw 1.2vw;
        font-size: 1vw;
        border: 0.1vw solid #333;
        border-radius: 6px;
        outline: none;
        margin-bottom: 1vw;
    }

    .msg {
        min-width: 100%;
        width: 56vw;
        height: 10vw;
        padding: 1vw 0.8vw 1.2vw;
        font-size: 16px;
        border: 0.1vw solid #333;
        border-radius: 6px;
        outline: none; 
        margin-bottom: 1vw;
        display: flex;
        align-items: flex-start;
    }

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

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

}

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

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

    .t1 {
        font-size: 4vw;
        max-width: 300px;
    }

    .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: 5vh;
    }

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


    .text-container {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .contact {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 4vw;
        padding: 4vh 0 4vh;
    }

    .contact-form {
        position: relative;
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        border: 1px solid #333;
        border-radius: 20px;
        padding: 20px;
        gap: 1vh;
    }

    .input-group {
        width: 100%;
        position: relative;
        margin-bottom: 1vh;
        gap: 1vh;
    }

    .naem {
        width: 100%;
        padding: 12px 10px;
        font-size: 16px;
        border: 1px solid #333;
        border-radius: 6px;
        outline: none;
        margin-bottom: 1vh;
    }

    .msg {
        position: relative;
        min-width: 100%;
        height: 100px;
        padding: 12px 10px;
        font-size: 16px;
        border: 1px solid #333;
        border-radius: 6px;
        outline: none; 
        margin-bottom: 2vh;
        margin-top: 0;
    }

    .line {
        display: flex;
        flex-direction: column;
        width: 100%;
        justify-content: space-between;
    }

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

}



