@font-face {
    font-family: 'WorkSans';
    src: url("./fonts/WorkSans-VariableFont_wght.ttf");
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: rgba(255, 255, 255, 0.88);
    font-family: 'WorkSans', sans-serif;

    /*// Scrollbar*/
    scrollbar-width: auto;
    scrollbar-color: rgba(255, 255, 255, 0.08) transparent;
}

*::-webkit-scrollbar {
    width: 12px;
}

*::-webkit-scrollbar-track {
    background: transparent;
}
    *::-webkit-scrollbar-track:hover {
        background: rgba(255, 255, 255, 0.08);
    }

*::-webkit-scrollbar-thumb {
    background-color: rgba(255, 255, 255, 0.08);
}
    *::-webkit-scrollbar-thumb:hover {
        background-color: rgba(255, 255, 255, 0.2);
    }
    *::-webkit-scrollbar-thumb:active {
        background-color: rgba(255, 255, 255, 0.3);
    }

body {
    position: relative;
    margin: 0;
    padding: 0;
    background-color: #121212;
    font-size: 16px;
}

address {
    font-style: normal;
}

a {
    position: relative;
    text-decoration: none;
}

a.simple-link {
    position: relative;
    text-decoration: none;
}
    a.simple-link:before {
        content: "";
        position: absolute;
        bottom: -4px;
        left: 0;
        width: 0;
        height: 0;
        background-color: #ffffff;
        transition: 0.4s width;
    }
    a.simple-link:hover:before {
        /*background: red;*/
        width: 100%;
        height: 2px;
    }
    a.simple-link:active {
        opacity: 0.68;
    }

.container {
    margin: 0 auto;
    padding: 0 15px;
    max-width: 100%;
    /*border: 1px solid green;*/
}

p {
    font-size: 1.1rem;
    line-height: 1.4;
}

header {
    z-index: 5;
    position: absolute;
    top: 40px;
    width: 100%;
    /*border: 1px solid red;*/
}

    header .container {
        display: flex;
        justify-content: center;
        align-items: center;
    }

nav {
    display: none;
}
    nav a {
        font-size: 1rem;
    }
    nav a:not(:last-child) {
        margin-right: 8px;
    }

.align-center {
    text-align: center;
}

.apply-max-width {
    margin: 0 auto;
}

.logo {
    width: auto;
    height: 40px;
    user-select: none;
}

.btn {
    display: inline-block;
    padding: 14px 14px;
    min-width: 140px;
    border: 2px solid #838383;
    border-radius: 5px;
    background-color: #838383;
    font-size: 0.9rem;
    font-weight: 600;
    transition: 0.4s all;
}
    .btn:hover {
        border-color: #3f3f3f;
        background-color: #3f3f3f;
    }
    .btn:active {
        border-color: #292929;
        background-color: #292929;
    }

    .btn-primary {
        border-color: #ee3338;
        background-color: #ee3338;
    }
        .btn-primary:hover {
            background-color: transparent;
            color: #ee3338;
            border: 2px solid #ee3338;
        }
        .btn-primary:active {
            background-color: rgba(255, 255, 255, 0.08);
        }

.hero {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
    height: 100vh;
    background: url('/public/img/cover_photo.jpg') center no-repeat;
    background-size: cover;
}

    .hero-bg-overlay {
        z-index:  0;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: inherit;
        background-color: #121212;
        opacity: 0.69;
    }

    .hero-inner-container {
        z-index: 5;
        text-align: center;
        transform: translateY(-120px);
    }

    .hero-title {
        padding: 0 15px;
        font-size: 2.1rem;
        font-weight: 700;
    }

    .hero-subtitle {
        margin-top: 17px;
        margin-bottom: 50px;
        padding: 0 15px;
        font-size: 1.1rem;
        font-weight: 500;
    }

    .hero-btn-container {
        padding: 0 15px;
    }
        .hero-btn-container .btn {
            margin-bottom: 12px;
            width: 100%;
        }

        /*.hero-btn-container .btn:not(:last-child) {*/
        /*    margin-right: 25px;*/
        /*}*/

.h2-section-title {
    margin-bottom: 37px;
    font-size: 2.2rem;
    text-align: center;
}

.h3-section-title {
    margin-bottom: 37px;
    font-size: 2rem;
    text-align: center;
}

@keyframes pullup {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-20px);
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 20px;
    text-align: center;
    animation: pullup 2s ease-in-out infinite alternate-reverse forwards;
}
    .scroll-indicator:hover {
        cursor: pointer;   
    }
    .scroll-indicator img {
        margin-top: 5px;
    }

.scroll-mouse {
    position: relative;
    width: 46px;
    height: 71px;
    border: 2px solid #ffffff;
    border-radius: 25px;
}
    .scroll-mouse:before {
        content: "";
        position: absolute;
        top: 5px;
        left: 50%;
        transform: translateX(-50%);
        width: 9px;
        height: 15px;
        border-radius: 25px;
        background-color: #ffffff;
    }

.card-container {
    margin: 0 auto;
    /*display: grid;*/
    /*grid-gap: 40px;*/
    /*grid-template-columns: repeat(3, auto);*/
    /*grid-template-rows: auto;*/
    /*display: flex;*/
    /*justify-content: space-between;*/
    /*align-items: center;*/
}

.card {
    margin: 0 auto 35px;
    max-width: 300px;
    /*border: 1px solid orange;*/
    text-align: center;
}
    .card-img-container {
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0 auto;
        width: 100px;
        height: 100px;
        border-radius: 50%;
        background-color: #292929;
    }

    .card-img {
        width: 70px;
        height: auto;
        user-select: none;
        pointer-events: none;
        filter: grayscale(100%);
    }

    .card-text {
        margin-top: 24px;
    }

section {
    margin-bottom: 140px !important;
}

.contact-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    margin: 0 auto;
    /*border: 1px solid orange;*/
    /*text-align: center;*/

}

.quote-form {
    position: relative;
    flex-basis: 40%;
    /*display: none;*/
}

.submit-btn-container {
    margin-top: 20px;
    text-align: center;
}

label {
    color: #fff;
    margin-bottom: 10px;
    margin-top: 20px;
}

label.titleLabel {
    font-weight: bold;
}

input,textarea {
    background-color: #292929;
    border: none;
    border-bottom: 3px solid #fff;
    width: 100%;
    height: 50px;
    padding-left: 15px;
    font-size: 15px;
    color: white;
}

textarea {
    resize: none;
    padding: 15px;
    min-height: 165px;
}

input::placeholder, input:-ms-input-placeholder {
    color: #fff;
    opacity: 1;
}

button {
    cursor: pointer;
}

.flex-grid {
    display: grid;
    grid-gap: 14px;
    grid-template-columns: repeat(2, auto);
    grid-template-rows: auto;
    /*border: 1px solid blue;*/
}

.input-wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.input-help-text {
    font-size: 15px;
    margin-top: 10px;
    cursor: pointer;
    width: fit-content;
    color: #fff;
}

.input-hel-text:hover {
    text-decoration: underline;
}

.contact-container {
    /*display: none;*/
    /*background-color: red;*/
}

.contact-separator {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    content: "";
    padding: 34px 0 26px;
    max-width: 100%;
    color: #ee3338;
}
    .contact-separator:before,
    .contact-separator:after {
        content: "";
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 70px;
        height: 1px;
        background-color: #ee3338;
        /*opacity: 0.12;*/
        opacity: 0.4;
    }

    .contact-separator:before {
        left: 57px;
    }
    .contact-separator:after {
        right: 57px;
    }

.contact-detail {
    padding: 25px 0;
    font-size: 1.2rem;
}
    .contact-detail span {
        display: block;
        margin-bottom: 10px;
        /*color: #ee3338;*/
        opacity: 0.40;
    }
    .contact-detail p {
        font-size: 1.2rem;
    }

footer {
    padding: 15px 0;
}

    footer .container {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
    }

    footer p {
        margin-bottom: 5px;
        font-size: 0.9rem;
    }







@media (min-width: 320px) {
    header .container {
        justify-content: space-between;
    }

    nav {
        display: block;
    }
}

@media (min-width: 440px) {
    .hero-btn-container {
        padding: 0 15px;
    }
        .hero-btn-container .btn {
            margin-bottom: 12px;
            width: auto;
        }
        .hero-btn-container .btn:not(:last-child) {
            margin-right: 15px;
        }

    .contact-separator:before,
    .contact-separator:after {
        width: 97px;
    }
}

@media (min-width: 576px) {
    .logo {
        height: 48px;
    }

    nav a:not(:last-child) {
        margin-right: 25px;
    }

    .apply-max-width {
        width: 500px;
        max-width: 100%;
    }

    .hero-title {
        font-size: 2.3rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .card-container {
        display: grid;
        grid-gap: 40px;
        grid-template-columns: repeat(3, auto);
        grid-template-rows: auto;
    }

    .card {
        margin-bottom: 0;
    }

    footer .container {
        flex-direction: row;
    }
}

@media (min-width: 768px) {
    .container {
        width: 680px;
    }

    .apply-max-width {
        width: 600px;
    }

    .hero-inner-container {
        max-width: 540px;
    }

    footer {
        margin-bottom: 20px;
    }
}

@media (min-width: 1025px) {
    .container {
        width: 768px;
    }

    .contact-container {
        flex-direction: row;
    }

    .contact-separator {
        padding: 0 67px;
    }
        .contact-separator:before,
        .contact-separator:after {
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 1px;
            height: 97px;
        }
            .contact-separator:before {
                transform: translateY(calc((97px + 30px) * -1));
            }
            .contact-separator:after {
                transform: translateY(30px);
            }
}

@media (min-width: 1200px) {
    .container {
        width: 1025px;
    }
}

@media (min-width: 1441px) {
    .container {
        /*background: orange;*/
        width: 1200px;
    }
}

@media (min-width: 1650px) {
    .container {
        /*background: yellow;*/
        /* width: 1441px; */
    }
}