/* CSS Variables*/

:root {
  --Off-white: #F2F2F2;
  --White: #FFFFFF;
  --Orange: #E28625;
  --Dark-blue-green: #006971;
  --Dark-green: #004140;

  --Title-font: "Big Shoulders Display", sans-serif;
  --Text-font: "Lexend Deca", serif;
}

/* CSS Modern Reset */
/* 1. Use a more-intuitive box-sizing model */
*, *::before, *::after {
  box-sizing: border-box;
}

/* 2. Remove default margin */
* {
  margin: 0;
}

body {
  background-color: var(--Off-white);
  /* 3. Add accessible line-height */
  line-height: 1.5;
  /* 4. Improve text rendering */
  -webkit-font-smoothing: antialiased;
  /* centering component*/
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* 5. Improve media defaults */
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

/* 6. Inherit fonts for form controls */
input, button, textarea, select {
  font: inherit;
}

/* 7. Avoid text overflows */
p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

/* 8. Improve line wrapping */
p {
  text-wrap: pretty;
}
h1, h2, h3, h4, h5, h6 {
  text-wrap: balance;
}

/*
  9. Create a root stacking context
*/
#root, #__next {
  isolation: isolate;
}

/* Typography */

.text-preset-1 {
  color: var(--Off-white);
  font-family: var(--Title-font);
  font-size: 2.5rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}

.text-preset-2 {
  color: var(--White);
  font-family: var(--Text-font);
  font-size: 0.9375rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5625rem;
  opacity: 0.75;
}

/* Layout */
.container {
  width: 20.4375rem;
  height: 82.875rem;
  border-radius: 0.5rem;
}

.sedans, .suv, .luxury {

  height:27.62rem;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.sedans {
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
  background-color: var(--Orange);
}

.suv {
  background-color: var(--Dark-blue-green);
}

.luxury {
  border-bottom-left-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
  background-color: var(--Dark-green);
}

.icon-section {
  height:7.69rem;
  width: 100%;
  padding: 3rem 3rem 2rem 3rem;
}

.text-section {
  height: 19.94rem;
  width: 100%;
  padding: 0rem 3rem 3rem 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.56rem;
}

.btn {
  width: 9.125rem;
  height: 3rem;
  border-radius: 1.5625rem;
  background-color: var(--White);
  display: flex;
  justify-content: center;
  align-items: center;
}

a {
  text-decoration: none;
}

.orange-text {
  color: var(--Orange);
}

.b-g-text {
  color: var(--Dark-blue-green);
}

.green-text {
  color: var(--Dark-green);
}