@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

:root {
    --primary: #EE6A31;
    --lightblack: #242424;
    --darktext: #7b7b7b;
    --borders: #c7c7c7;
    --lighthover: #f2f2f2;
    --primaryhover: #f0875a;
    --priceconfirmation: #00b548;
}

body {
    background: white;
    font-family: "Inter";
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

.title-text {
    font-family: "Inter";
    font-size: 50px;
    line-height: 70px;
    font-weight: 900;
    color: var(--lightblack);
}
.header-text {
    font-family: "Inter";
    font-size: 20px;
    font-weight: 900;
    color: var(--lightblack);
}

.normal-text {
    font-family: "Inter";
    font-size: 14px;
    line-height: 37px;
    font-weight: 500;
    color: var(--darktext)
}

.button {
    font-family: "Inter";
    width: 200px;
    height: 50px;
    font-size: 15px;
    font-weight: 600;
    background: var(--primary);
    border: 1px solid var(--primary);
    color: white;
    border-radius: 200px;
    outline: none;
    transition: 0.2s;
}
.button:hover {
    background: var(--primaryhover);
    cursor: pointer;
}
.clear-button {
    font-family: "Inter";
    width: 200px;
    height: 50px;
    font-size: 15px;
    font-weight: 600;
    background: white;
    border: 1px solid var(--borders);
    color: var(--lightblack);
    border-radius: 200px;
    outline: none;
    transition: 0.2s;
}
.clear-button:hover {
    cursor: pointer;
    background: var(--lighthover);
}

#menu-bar {
    display: flex;
    background: white;
    justify-content: space-between;
    align-items: center;
    border: 1px solid var(--borders);
    border-radius: 200px;
    position: fixed;
    width: 90%;
    top: 20px;
    padding-left: 20px;
    padding-right: 15px;
    height: 75px;
    left: 50%;
    transform: translate(-50%, 0);
    z-index: 8;
    transition: 0.2s;
}

#menu-bar-button, #menu-bar-button-close {
    font-weight: 400;
    width: 120px;
    height: 60px;
    transition: 0.2s;
}
#menu-bar-button-close {
    width: 175px;
    margin-top: 20px;
}
#menu-bar-button:hover {
    background: var(--lighthover);
    cursor: pointer;
}
#menu-bar-button-close:hover {
    background: var(--lighthover);
    cursor: pointer;
}
#menu-icon {
    height: 30px;
    cursor: pointer;
}

#menu-grayout {
    position: fixed;
    width: 100vw;
    height: 100vh;
    background: black;
    opacity: 0;
    pointer-events: none;
    transition: 0.5s;
    top: 0;
    left: 0;
    box-shadow: none;
    z-index: 9;
}
#menu-block {
    position: fixed;
    z-index: 10;
    background: white;
    height: 100vh;
    width: 500px;
    right: -600px;
    top: 0;
    display: flex;
    justify-content: start;
    align-items: end;
    flex-direction: column;
    padding-right: 50px;
    transition: 0.5s;
    box-shadow: none;
}
#menu-links {
    text-align: right;
    margin-top: 50px;
}
.menu-block-links {
    font-family: "Inter";
    font-size: 60px;
    line-height: 80px;
    font-weight: 800;
    color: var(--darktext);
    background: none;
    border: none;
    transition: 0.2s;
}
.menu-block-links:hover {
    color: var(--primary);
    cursor: pointer;
}

#contact {
    margin-top: 250px;
    margin-bottom: 20px;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
#contact-top-container {
    width: 100%;
    display: flex;
    justify-content: end;
}
#contact-top {
    background: white;
    border-radius: 200px;
    border: 1px solid var(--borders);
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 500px;
    padding-left: 30px;
    padding-right: 10px;
}
#contact-top-text {
    color: var(--lightblack);
}
#contact-main {
    width: 95%;
    margin-top: 15px;
    background: white;
    border: 1px solid var(--borders);
    border-radius: 20px;
    padding-left: 30px;
    padding-right: 30px;
    padding-bottom: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#contact-main-right {
    display: flex;
    justify-content: start;
    align-items: center;
    flex-direction: column;
}
#contact-main-logo {
    display: flex;
    justify-content: start;
    align-items: center;
}
#contact-main-logo-img {
    width: 100px;
    margin-right: 15px;
}
#contact-main-address {
    margin-top: -50px;
}

#contact-main-right {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    margin-top: 25px;
}
.contact-main-right-links {
    margin-right: 50px;
    display: flex;
    flex-direction: column;
    align-items: start;
}
.contact-main-right-link {
    margin-top: 5px;
    text-decoration: none;
    color: var(--lightblack);
    background: none;
    border: none;
    font-family: "Inter";
    font-size: 14px;
    font-weight: 500;
    transition: 0.2s;
}
.contact-main-right-link:hover {
    color: var(--darktext);
    cursor: pointer;
}

@media only screen and (max-width: 1024px) {
    .title-text {
        font-size: 90px;
        line-height: 120px;
    }
    .header-text {
        font-size: 50px;
    }

    .normal-text {
        font-size: 30px;
        line-height: 100px;
    }

    .button {
        width: 500px;
        height: 150px;
        font-size: 40px;
        font-weight: 600;
    }
    .button:hover {
        background: var(--primaryhover);
        cursor: pointer;
    }
    .clear-button {
        width: 400;
        height: 100px;
        font-size: 30px;
    }
    #menu-bar {
        width: 90%;
        height: 250px;
        left: 50%;
        transform: translate(-50%, 0);
        border-radius: 20px;
    }
    #menu-bar-button, #menu-bar-button-close {
        font-size: 40px;
        width: 250px;
        height: 150px;
    }
    #menu-bar-button-close {
        width: 400px;
        margin-top: 75px;
    }
    #menu-icon {
        width: 250px;
        height: auto;
    }
    #menu-block {
        height: 100vh;
        padding-bottom: 120px;
        width: 800px;
        right: -900px;
        justify-content: space-between;
    }
    #menu-grayout {
        height: 120vh;
    }
    .menu-block-links { 
        margin-top: 75px;
        font-size: 80px;
    }

    #contact {
        margin-top: 300px;
        width: 100%;
        margin-left: 2.5%;
        margin-bottom: 50px;
    }
    #contact-top-container {
        width: 100%;
        justify-content: center;
    }
    #contact-top {
        width: 100%;
    }
    #contact-main {
        flex-direction: column;
        padding-bottom: 100px;
    }
    #contact-main-left {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    #contact-main-logo-img {
        width: 200px;
        margin-right: 20px;
    }
    #contact-main-address {
        margin-top: -50px;
        font-size: 45px;
    }
    #contact-main-right {
        width: 100%;
        margin: 0;
        margin-top: 100px;
    }
    .contact-main-right-link {
        font-size: 45px;
        color: var(--darktext);
        margin-top: 50px;
    }
    #contact-main-right-links-2 {
        margin-left: 50px;
    }

}

