html {
    scroll-behavior: smooth
}

body {
    margin: 0;
}

:root {
    --dark: black;
    --slate-grey: #525974;
    --primary: #FF6600;
    --white: white;
    --alice-blue: #f7fdff;
    --heavy-gray: #d8ebf3;
    --button-hover: #edf7fc;
    --primary-hover: #cf0f42;
    --board: #cad5dc;
    --dark-board: #1e284d;
    --container-bg: #f3f5f7;
}

.navbar-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--dark);
    height: 70px;
    width: calc(100% - 20px);
    padding: 0 10px;
    position: fixed;
    top: 0;
    z-index: 2;
}

.logo {
    width: 140px;
    height: 50px;
}

.links {
    color: var(--white);
    font-size: 15px;
    padding: 5px 24px 5px 12px;
    font-family: Poppins, sans-serif;
    text-decoration: none;
}

.links:hover,
.button:hover {
    cursor: pointer;
}

.button {
    padding: 16px 20px;
    font-family: Poppins, sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    letter-spacing: .5px;
    text-transform: capitalize;
    background-color: var(--primary);
    transform: skew(-13deg);
    text-decoration: none;

}

.menu-mob {
    color: #000;
    background-color: #fafafa;
    border-radius: 100px;
    padding: 13px;
    font-size: 22px;
    display: none !important;
}


.w-nav-button {
    cursor: pointer;
    /* position: relative; */
    width: 20px;
    height: 20px;
    justify-content: center;
    align-items: center;
    display: flex;
}

.w-icon-nav-menu::before {
    content: "☰";
}

.hero {
    width: 100%;
    height: 80vh;
    min-height: 80vh;
    background-color: var(--dark);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    display: flex;
    position: relative;
    overflow: visible;
    margin-top: 70px;
}

.hero-overlay {
    z-index: 1;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .3);
    position: absolute;
    top: 0%;
    bottom: 0%;
    left: 0%;
    right: 0%;
}

.hero-image-wrapper {
    z-index: 0;
    width: auto;
    height: auto;
    background-color: rgba(0, 0, 0, 0);
    justify-content: space-between;
    align-items: center;
    margin-left: 0%;
    padding: 0%;
    display: flex;
    position: absolute;
    top: 0%;
    bottom: 0%;
    left: 0%;
    right: 0%;
}

.hero-image {
    width: 100%;
    height: 100%;
    opacity: .25;
    object-fit: cover;
}

.container {
    width: 100%;
    height: 100%;
    max-width: 1440px;
    flex-flow: column;
    align-content: stretch;
    justify-content: center;
    align-items: center;
    display: flex;
    position: relative;
}

.hero-heading {
    color: white;
    mix-blend-mode: normal;
    font-weight: 500;
    text-transform: uppercase;
}

.intro-text-block {
    width: auto;
    max-width: 800px;
    color: var(--white);
    margin-bottom: 40px;
    font-family: Poppins, sans-serif;
    font-size: 18px;
    font-weight: 400
}


.intro-content {
    z-index: 1;
    width: auto;
    max-width: 900px;
    text-align: center;
    flex-direction: column;
    align-items: center;
    display: flex;
    position: relative;
}

.center-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: auto;
    padding: 20px;
}

.center-content h2 {
    font-weight: 700;
    max-width: 500px;
    text-transform: capitalize;
}

.center-content p {
    max-width: 700px;
}

.card-wrapper {
    grid-column-gap: 20px;
    display: flex;
    flex-wrap: wrap;
}

.card-block {
    width: calc(25% - 20px);
    height: auto;
    background-color: #f3f5f7;
    transition: all .2s;
    box-shadow: 1px 1px 7px -4px rgba(0, 0, 0, .5);
}

.card-image-container {
    height: 200px;
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-container-text {
    background-color: #f0750f05;
    flex-direction: column;
    justify-content: space-between;
    padding: 40px 20px 30px;
    display: flex;
}

.card-container-text h3 {
    margin: 10px;
}

.card-container-text h4 {
    margin: 10px;
    color: var(--slate-grey);
    /* opacity: 0.8; */
}

.old-price {
    text-decoration: line-through;
    text-decoration-thickness: 2px;
    font-size: 18px;

}

.new-price {
    color: var(--primary-hover);
    font-size: 18px;
}

ul {
    list-style-type: none;
    padding: 10px;
}

li {
    margin-bottom: 5px;
}

input[type=text],
input[type=email],
textarea {
    width: 100%;
    max-width: 450px;
    padding: 12px 20px;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 16px;
}

.center {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.center h3,
.center-content h3 {
    font-size: 24px;
}

button {
    border: none;
}

button:hover {
    cursor: pointer;
}

.error {
    border: 1px solid red !important;
}

.sent-message {
    text-align: center;
    color: green;
    display: none;
}

p {
    font-family: Poppins;
    color: var(--slate-grey);
}


footer {
    background-color: var(--dark);
}

.footer-links {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 10px;
}

.footer-links p,
.footer-links a {
    color: white;
    opacity: 0.8;
    text-decoration: none;
}

.mobile-nav-menu {
    display: none;
}


@media screen and (max-width: 991px) {
    .mobile-nav-menu {
        flex-direction: column;
        background-color: white;
        z-index: 2;
        width: 100%;
        position: absolute;
        left: 0;
        top: 70px;
        border: 1px solid #52597490;
    }

    .show {
        display: flex !important;
    }


    .mobile-nav-menu .links {
        color: black;
        font-weight: 500;
        width: max-content;
    }

    .desktop-nav {
        display: none !important;
    }

    .menu-mob {
        display: flex !important;
    }

    .w-nav[data-collapse="medium"] .w-nav-button {
        display: block !important;
    }

    .card-block {
        width: calc(50% - 20px);
        margin-left: 10px;
        margin-bottom: 20px;

    }

    .card-image-container {
        height: 150px;
    }

    .footer-links {
        flex-direction: column;
    }

    .footer-links p {
        margin-bottom: 0;
    }
}

@media screen and (max-width: 560px) {

    .card-block {
        width: calc(100% - 20px);
        margin-left: 10px;
        margin-bottom: 20px;

    }

    .card-image-container {
        height: 150px;
    }

    .footer-links p {
        font-size: 14px;
    }
}