* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

*:focus-visible {
    outline: 4px solid #FC7536;
}

html {
    overflow-x: hidden;
}

body {
    font-family: "eurostile", sans-serif;
    font-weight: 500;
    font-style: normal;
    color: #000;
    font-size: 1.1rem;
    overflow-x: hidden;
}

input::placeholder {
    color: #808080;
}


/* Utility Classes */
.container1 {
    width: 94%;
    margin: 0 auto;
}

.euro-extd {
    font-family: "eurostile-extended", sans-serif;
    font-weight: 500;
    font-style: normal;
}
/* font-weight 400, 900 */
/* font-style: italic */

.item-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 48px;
    column-gap: 48px;
}

.item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.subheading-text {
    margin-bottom: 32px;
}

.price {
    color: #277d40;
    font-weight: bold;
}