/* reset styles*/
* {
  padding: 0;
  margin: 0;
  border: 0;
}
*,
*::before,
*::after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
:focus,
:active {
  outline: none;
}
a:focus,
a:active {
  outline: none;
}
nav,
footer,
header,
aside {
  display: block;
}
html,
body {
  height: 100%;
  width: 100%;
  font-size: 100%;
  line-height: 1;
  font-size: 62.5%;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}
input,
button,
textarea {
  font-family: inherit;
}
input::-ms-clear {
  display: none;
}
button {
  cursor: pointer;
}
button::-moz-focus-inner {
  padding: 0;
  border: 0;
}
a,
a:visited {
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}
ul li {
  list-style: none;
}
img {
  vertical-align: top;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  line-height: 1.26; 
}

a {
  text-decoration: none; /* Removes underlines */
  color: inherit; /* Inherits the text color from the parent */
}
/* end reset styles */

/* main styles */
* {
  font-family: 'Inter', sans-serif;
}

html {
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  scroll-behavior: smooth;
}

img {
  width: 100%;
}

p {
  font-family: Inter;
font-size: 2.1rem;
font-style: normal;
font-weight: 400;
line-height: 142.857%; /* 30px */
}

h1 {
  font-family: Inter;
font-size: 6.4rem;
font-style: normal;
font-weight: 700;
line-height: 125%; /* 80px */
}

h2 {
  font-family: Inter;
font-size: 5.1rem;
font-style: normal;
font-weight: 700;
line-height: normal;
}

h3 {
  font-family: Inter;
font-size: 4.1rem;
font-style: normal;
font-weight: 700;
line-height: normal;
}

h4 {
  font-family: Inter;
font-size: 3.3rem;
font-style: normal;
font-weight: 700;
line-height: normal;
}

h5 {
  font-family: Inter;
font-size: 2.8rem;
font-style: normal;
font-weight: 700;
line-height: normal;
}

h6 {
  font-family: Inter;
font-size: 2.1rem;
font-style: normal;
font-weight: 700;
line-height: normal;
}

/* variabile */

:root {
  --bg: #807E81;
  --bg-light: #DCDCDC;
  --text: #6E6A64;                 
  --text-dark: #282028;
  --text-gray: #4A4545;
  --accent: #D1713F;
  --white: #FAFAFA;
  --section-padding: 25.6rem;
}


/* HELPERS */

.container {
  max-width: 160rem;
  padding: 0 14.8rem;
  margin: auto;
}

.btn {
  font-size: 1.8rem;
  padding: 0.8rem 2.4rem;
  border-radius: 10rem;
  color: var(--bg);
  background: var(--accent);
  display: flex;
  gap: 1.2rem;
  align-items: center;
}

.btn-brand {
  color: var(--bg);
  background: var(--brand-color);
}

.btn svg {
  width: 2.1rem;
  height: 2.1rem;
  translate: 0 2%;
}

.text-brand-color {
  color: var(--brand-color);
  font-family: inherit;
}

.text-dark {
  color: var(--text-dark);
  font-family: inherit;
}

.text-italic {
  font-style: italic;
  font-family: inherit;
}





/* responsive */


@media (max-width:1279px) {
  
  .container {
    padding: 0 6.4rem;
  }

  p {
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 1.55;
  }
  
  h1 {
    font-size: 5.2rem;
  }
  
  h2 {
    font-size: 4rem;
  }

  h3 {
    font-size: 3.2rem;
  }
  
  h4 {
    font-size: 2.8rem; 
  }
  
  h5 {
    font-size: 2rem; 
  }
  
  h6 {
    font-size: 1.6rem; 
  }
}
@media (max-width:1023px) {

  .container {
    padding: 0 2.4rem;
  }

  p {
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 1.55;
  }
  
  h1 {
    font-size: 4.8rem;
  }
  
  h2 {
    font-size: 3.6rem;
  }

  h3 {
    font-size: 2.4rem;
    line-height: 1.3;
  }
  
  h4 {
    font-size: 2rem; 
    line-height: 1.5;
  }
  
  h5 {
    font-size: 1.6rem; 
    line-height: 1.525;
  }
  
  h6 {
    font-size: 1.2rem; 
    line-height: 1.6;
  }
  
}
@media (max-width:499px) {

  :root {
    --section-padding: 18rem;
  }
  
  p {
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1.55;
  }

  h1 {
    font-size: 3.2rem;
  }
  
  h2 {
    font-size: 2.6rem;
  }

  h3 {
    font-size: 2rem;
    line-height: 1.3;
  }
  
  h4 {
    font-size: 1.6rem; 
    line-height: 1.5;
  }
  
  h5 {
    font-size: 1.4rem; 
    line-height: 1.525;
  }
  
  h6 {
    font-size: 1.2rem; 
    line-height: 1.6;
  }
}
@media (max-width:425px) {
  .container {
    padding: 0 2rem;
  }
}