:root {
    /* Colors */
    --brand-primary: #017cc2;
    --text: #404042;
    --text-placeholder: #aab2c1;
    --border: #cbd1dd;
    --bg-content: #e8eaed;

    /* Fonts */
    --font-primary: 'Nunito Sans', sans-serif;

    /* Box shadows */
    --box-shadow: 0px 3px 6px 0px rgba(18,32,70,0.2);
}

* {
    box-sizing: border-box;
}
html {
    margin: 0;
    padding: 0;
    font-size: 16px;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}
body {
    margin: 0;
    padding: 0;
    background-color: var(--bg-content);
    font-family: var(--font-primary);
    font-weight: 500;
    color: var(--text);
}
a {
    color: var(--brand-primary);
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}
p, li {
    font-family: var(--font-secondary);
    font-size: 1rem;
    line-height: 1.875rem;
    font-weight: 500;
}
li {
    margin-bottom: 1rem;
}
p.big-text {
    font-size: 1.375rem;
    line-height: 2.25rem;
}
p.small-text {
    font-size: 0.6875rem;
    line-height: 1rem;
}
h1, h2, h3 {
    margin: 0;
    padding: 0;
    font-family: var(--font-primary);
    font-weight: 800;
    text-align: center;
}
h1 {
    margin: 0 auto;
    font-size: 2.25rem;
    line-height: 2.625rem;
}
h2 {
    font-size: 2rem;
    line-height: 2.25rem;
    color: #fff;
}
h3 {
    font-size: 1.25rem;
    line-height: 1.5rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 2.5rem;
    background: var(--brand-primary);
    border-radius: 10px;
    font-family: var(--font-primary);
    font-size: 1.25rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none !important;
    color: #fff;
    white-space: nowrap;
    cursor: pointer;
}

.white {
    color: #fff;
}
.teal {
    color: var(--brand-primary);
}
.white-bg {
    background-color: #fff;
}
.box-shadow {
    box-shadow: var(--box-shadow);
}
.rounded {
    border-radius: 10px;
}

/* Nav */
.navbar {
    box-sizing: content-box;
    background-color: #fff;
}
.navbar .content {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
}
.navbar  img {
    max-height: 32px;
}

.main {
    min-height: calc(100vh - 60px);
}
.content {
    width: calc(100% - 2.5rem);
    max-width: 1200px;
    min-width: 280px;
    margin: auto;
}

.offer-img {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    height: 300px;
    padding: 20px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    border-image: linear-gradient(rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 1) 100%) fill 1;
}
.offer-1 {
    background: url('https://e5f918085565a3642db1-1d34db703ccfab96194318f67562f05f.ssl.cf2.rackcdn.com/maintenance.webp') no-repeat center center;
    background-size: cover;
}
.offer-2 {
    background: url('https://e5f918085565a3642db1-1d34db703ccfab96194318f67562f05f.ssl.cf2.rackcdn.com/oil.webp') no-repeat center center;
    background-size: cover;
}
.offer-3 {
    background: url('https://e5f918085565a3642db1-1d34db703ccfab96194318f67562f05f.ssl.cf2.rackcdn.com/tires.webp') no-repeat center center;
    background-size: cover;
}
.exclusive {
    position: absolute;
    top: 20px;
    right: 0;
    padding: 3px 20px 3px 34px;
    background-color: var(--brand-primary);
    clip-path: polygon(0% 100%, 20px 0%, 100% 0%, 100% 100%);
    font-weight: 600;
    color: #fff;
}
.offer-content {
    padding: 20px 30px;
    border-top: 6px solid var(--brand-primary);
}
.offer-details {
    min-height: 230px;
}
.price {
    margin-bottom: 10px;
    font-size: 4.5rem;
    font-weight: 900;
    color: var(--brand-primary);
    text-align: center;
}
.price sup {
    font-size: 2.5rem;
    font-weight: 800;
}
li {
    position: relative;
    padding: 0 0 0 36px;
    font-size: 1.5rem;
    line-height: 1.875rem;
    font-weight: 400;
    list-style: none;
}
li::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 26px;
    height: 26px;
    background: url('https://e5f918085565a3642db1-1d34db703ccfab96194318f67562f05f.ssl.cf2.rackcdn.com/checkmark.svg') no-repeat center center;
    background-size: contain;
}
p.small {
    text-align: center;
    color: #79797a;
}

.form.center-block {
    margin-bottom: calc(100vh - 310px);
}
.form-input {
    background-color: #f3f4f6;
}

.thank-you p {
    max-width: 550px;
    margin: 20px auto;
    font-size: 1.2rem;
    line-height: 1.5rem;
    font-weight: 500;
    text-align: center;
}
.thank-you p a {
    font-weight: 600;
}
