* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {

    font-family: 'Poppins', sans-serif;
    background: #f2f2f2;
    color: #333;
    line-height: 1.6;

}

.btn-link:hover,.btn-default:hover {
    color: #ffffff!important;
}

/* GLOBAL */

.container {

    max-width: 1200px;
    margin: auto;
    padding: 0 40px;

}

.section {

    padding: 110px 0;

}

.grid {

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;

}

img {

    width: 100%;
    border-radius: 3px;

}

/* HERO */

.hero {

background: #ffffff;
}

.red-line {
    width: 330px;
    height: 3px;
    background: #bf0c04;
    margin-bottom: 35px;
}

.hero h1 {

    font-size: 52px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 15px;

}

.hero p {

    color: #777;
    font-size: 18px;

}

/* GRAY SECTION */

.gray {

    background: #6b6b6b;
    color: white;

}

.gray p {

    color: #e5e5e5;

}

.gray ul {

    margin: 20px 0;

}

.gray li {

    margin-bottom: 6px;

}

/* TITLES */

h2 {

    font-size: 36px;
    font-weight: 600;
    margin-bottom: 20px;

}

.red-title {

    color: #bf0c04;

}

/* BUTTON */

.btn-default {

    display: inline-block;
    background: #bf0c04;
    color: white;
    padding: 12px 28px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    margin-top: 20px;

}

.btn-default:hover {
    background: #b90000;
}

/* ORDER SECTION */

.order-box {
    border-left: 3px solid #bf0c04;
    padding-left: 30px;
}

/* CREDIT BOX */

.credit {
    background: white;
    padding: 70px;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.credit h3 {

    margin-bottom: 20px;

}

/* SUPPORT */

.support ul {

    margin-top: 20px;

}

.support li {

    margin-bottom: 8px;

}

/* CTA */

.cta {

background: #bf0c04;

color: white;

text-align: center;

padding: 22px;

font-weight: 500;

letter-spacing: 1px;
}

/* RESPONSIVE */

@media(max-width:900px) {

    .grid {

        grid-template-columns: 1fr;

    }

    .hero h1 {

        font-size: 36px;

    }

    .section {

        padding: 70px 0;

    }

    .credit {

        padding: 40px;

    }

}