@view-transition {
  navigation: auto;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --color0: hsl(19, 100%, 0%);
  --color30: hsl(19, 100%, 30%);
  --color50: hsl(19, 100%, 50%);
  --color70: hsl(19, 100%, 70%);
  --color100: hsl(19, 100%, 100%);
  --lotus-color50: hsl(57, 100%, 30%);
  --lotus-color50: hsl(57, 100%, 50%);
  --bg-main: hsl(0, 0%, 97.5%);
  /* --bg-main-5: hsl(0, 0%, 97.5%); */
  --bg-lotus: hsl(240, 11%, 96%);
  --box-shadow: rgba(0, 0, 0, 0.25) 0px 1px 8px 0px;
  --FF1: 'Inter', sans-serif;
}

body {
  line-height: 1.6;
  color: #000;
}

/* Scrollbar styling */
::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: var(--color50);
  border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
  background: #FF5100;
}

/* Firefox scrollbar */
* {
  scrollbar-width: thin;
  scrollbar-color: var(--color50) #f1f1f1;
}

p,
body,
a,
button,
h1,
h2,
h3,
h4 {
  font-family: var(--FF1);
}

h1 {
  font-weight: 500;
  font-size: 48px;
  line-height: 100%;
  letter-spacing: -0.02em;
}

h2 {
  font-size: 38px;
  line-height: 100%;
  font-weight: 500;
  letter-spacing: -0.02em;
}

h2 span {
  color: var(--color50);
}

h3 {
  font-style: normal;
  font-weight: 500;
  font-size: 31px;
  letter-spacing: -0.015em;
  line-height: 110%;
}

h4 {
  font-style: normal;
  font-weight: 500;
  font-size: 25px;
  letter-spacing: -0.015em;
}

p, li {
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
}

.container1 {
  max-width: 1600px;
  margin: 80px auto;
}

.container-max-grey {
  background-color: #f5f5f7;
}

.orange-stripe {
  width: 100%;
  background-color: #ff5000;
  box-shadow: inset 0 100px 0px #fff, inset 0 -100px 0px #fff;
}
.orange-stripe-white {
  width: 100%;
  background-color: #ff5000;
  box-shadow: inset 0 100px 0px #1d1d1d, inset 0 -100px 0px #1d1d1d;
}

.yellow-stripe {
  width: 100%;
  background-color: #fff200;
  box-shadow: inset 0 100px 0px #fff, inset 0 -100px 0px #fff;
}

/* Media Queries */
@media (max-width: 2559px) {
  .container1 {
    max-width: 1200px;
    margin: 100px auto;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 32px;
    line-height: 120%;
    letter-spacing: -0.02em;
    padding: 0;
  }

  h2 {
    font-size: 26px;
    line-height: 115%;
    letter-spacing: -0.02em;
    font-weight: 500;
  }

  h3 {
    font-size: 22px;
    line-height: 110%;
    letter-spacing: -0.015em;
  }

  h4 {
    font-size: 18px;
    line-height: 110%;
    letter-spacing: -0.015em;
  }

  p, li {
    font-size: 14px;
    line-height: 26px;
    font-weight: 400;
  }

  .container1 {
    max-width: 1200px;
    margin: 40px auto;
    padding: 24px;
  }
}
