:root {
    --main-color: #E3E3E3;
    --secondary-color: #FF4C00;
    --main-text-color: #000;
    --secondary-text-color: #4A4A4A;
}

* {
    font-family: Lexend Deca, serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    width: 100vw;
    height: 100vh;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: var(--main-text-color);
}

body {
    background: var(--main-color);
    width: 100vw;
    height: 100vh;
    overflow-x: hidden;
    position: relative;
}

.header {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 2rem;
    height: 15vh;
    width: 100%;

    @media only screen and (max-width: 600px) {
        padding: 0.5rem;
    }
}

.header-right {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    flex-direction: row;
    gap: 2rem;
    flex: 1;

    @media only screen and (max-width: 960px) {
        display: none;
    }
}

.header-mobile-nav-toggle {
    height: 7.5vh;
    justify-self: flex-end;
    padding: 0.5rem;
    cursor: pointer;

    @media only screen and (min-width: 961px) {
        display: none;
    }
}

.logo-header {
    width: 15vh;
    height: 15vh;
    flex-shrink: 0;
    padding: 0.5rem;
}

.header-icons {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 1rem;
}

.header-link {
    color: black;
    font-size: 1.5rem;
    word-wrap: break-word;
    cursor: pointer;
}

.header-icon {
    cursor: pointer;
}

.header-link:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

#content {
    min-height: 60vh;
}

.footer {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 2rem;
}

.footer-left, .footer-right {
    line-height: 150%;
    font-size: 0.75rem;
    color: var(--secondary-text-color);
}

.footer-left {

}

.footer-right {
    text-decoration-line: underline;
}

.bg-orange {
    background-color: var(--secondary-color);
}

.second-contact {
    padding: 4rem 0;
    min-height: 50vh;
    position: relative;

    @media only screen and (min-width: 1200px) {
        margin-bottom: 5vh;
    }

    @media only screen and (max-width: 1200px) {
        min-height: 40vh;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

.second-contact-bg {
    width: 100%;
    height: 20rem;
    flex-shrink: 0;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto 0;

    @media only screen and (max-width: 1200px) {
        height: 15rem;
        position: relative;
    }
}

.second-contact-border {
    border: 0.15rem solid #000;
    width: 50vw;
    height: 24rem;
    flex-shrink: 0;
    border-radius: 1rem;
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    left: 15%;

    @media only screen and (max-width: 1200px) {
        height: 18rem;
        top: -1.5rem;
        left: 5vw;
        width: 90vw;
        transform: none;
    }
}

.second-contact-map {
    border: #0b0b0b 0.1rem solid;
    border-radius: 1.3rem;
    width: 50vw;
    height: 60vh;
    flex-shrink: 0;
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    left: 45%;
    object-fit: cover;

    @media only screen and (max-width: 1200px) {
        width: 100vw;
        height: 40vh;
        position: static;
        border-radius: 0;
        border: none 0;
        top: auto;
        left: auto;
        border-bottom: black solid 1px;
        transform: none;
    }

    @media only screen and (min-width: 1201px) and (max-width: 1600px) {
        left: 55%;
        width: 45vw;
        height: 52vh;
    }
}

.second-contact-text-box {
    width: 45%;
    height: 75%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
    flex-shrink: 0;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto 0;
    left: 10%;

    @media only screen and (max-width: 600px) {
        top: 10%;
        align-self: center;
        gap: 0.5rem;
        margin: 0;
        height: 65%;
        width: 70%;
    }

    @media only screen and (min-width: 601px) and (max-width: 1200px) {
        top: 15%;
        align-self: center;
        gap: 0.5rem;
        margin: 0;
        height: 65%;
        width: 70%;
    }

    @media only screen and (min-width: 1201px) and (max-width: 1600px) {
        height: 80%;
        gap: 1rem;
    }
}

.second-contact-header {
    color: var(--main-text-color);
    text-transform: uppercase;
    font-size: 1.2rem;

    @media only screen and (max-width: 700px) {
        font-size: 0.8rem;
    }

    @media only screen and (max-width: 1200px) {
        font-size: 1rem;
    }
}

.second-contact-icon {
    width: 3rem;
    height: 3rem;
    flex-shrink: 0;

    @media only screen and (max-width: 700px) {
        width: 1.5rem;
        height: 1.5rem;
    }

    @media only screen and (max-width: 1200px) {
        width: 2rem;
        height: 2rem;
    }
}

.second-contact-label, .second-contact-label-smaller {
    color: #fff;
    font-size: 2rem;
    font-style: normal;
    font-weight: 400;
    line-height: 115%;

    @media only screen and (max-width: 700px) {
        font-size: .9rem;
    }

    @media only screen and (max-width: 1200px) {
        font-size: 1.3rem;
    }

    @media only screen and (min-width: 1201px) and (max-width: 1600px) {
        font-size: 1.6rem;
    }
}

.second-contact-label-smaller {
    font-size: 1.25rem;

    @media only screen and (max-width: 700px) {
        font-size: .7rem;
    }

    @media only screen and (max-width: 1200px) {
        font-size: 1rem;
    }

    @media only screen and (min-width: 1201px) and (max-width: 1600px) {
        font-size: 1.1rem;
    }
}

.second-contact-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1.5rem;

    @media only screen and (max-width: 1200px) {
        gap: 1rem;
    }
}

.active-header-link {
    color: var(--secondary-color);
}

.button {
    display: inline-flex;
    padding: 0.5rem 1rem;
    justify-content: center;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    border: none;
    border-radius: 20px;
    background-color: var(--secondary-color);
    color: #fff;
}

.button:hover {
    background: #000;
}

.link {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 0.7rem;
    color: var(--main-text-color);
}

.link:hover {
    text-decoration: underline;
    color: var(--secondary-color);
}

.bike-service-border {
    display: flex;
    width: 468px;
    padding: 8px 13px;
    flex-direction: row;
    border-radius: 8px;
    border: 1px solid #000;
    background: var(--white, #FFF);
    gap: 1rem;

    @media only screen and (max-width: 600px) {
        width: 70vw;
        display: block;
    }
}

.bike-service-border > div {
    width: 80%;
    float: right;

    @media only screen and (max-width: 600px) {
        padding-left: 0.15rem;
        padding-top: 0.05rem;
        margin-bottom: 0.2rem;
        height: 5vh;
    }
}

.bike-service-border img {
    width: 3rem;
    height: 3rem;

    @media only screen and (max-width: 600px) {
        width: 20%;
        height: 5vh;
        float: left;
    }
}

.bike-service-border div > h3 {
    color: #000;
    font-family: Montserrat;
    font-size: 1rem;
    font-style: normal;
    font-weight: 500;
    line-height: 135%;

    @media only screen and (max-width: 475px) {
        font-size: 0.8rem;
    }

    @media only screen and (min-width: 476px) and (max-width: 600px) {
        font-size: 0.9rem;
    }
}

.bike-service-border div > h2 {
    color: #000;
    font-family: Montserrat;
    font-size: 1rem;
    font-style: normal;
    font-weight: 700;
    line-height: 135%;
    display: flex;
    flex-direction: row;

    @media only screen and (max-width: 400px) {
        font-size: 0.8rem;
    }

    @media only screen and (min-width: 401px) and (max-width: 600px) {
        font-size: 0.9rem;
    }
}

.bike-service-button {
    display: flex;
    padding: 14px 24px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    background-color: var(--main-text-color);
    border-radius: 99px;

    @media only screen and (max-width: 600px) {
        width: 50%;
        padding: 8px 16px;
    }
}

.bike-service-button span {
    color: var(--white, #FFF);
    text-edge: cap;
    font-family: Montserrat;
    font-size: 1rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;

    @media only screen and (max-width: 600px) {
        font-size: 0.8rem;
        font-weight: 600;
    }
}

.h2 {
    color: #FF4C00;
    font-size: 1.2rem;
    font-style: normal;
    font-weight: 600;
    line-height: 150%;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.button-arrow, .arrow-link {
    transition: 0.25s;
}
