/* Base / Reset / Variables */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

*:last-child {
  margin-bottom: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font_primary);
  font-size: 16px;
  line-height: 26px;
  color: var(--primary);
  background-color: var(--white);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
  vertical-align: bottom;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
  display: inline-block;
}

ul {
  list-style: none;
}

button,
input,
textarea,
select {
  font-family: inherit;
  outline: none;
}

/* Container & Sections */
.container {
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--side-gap);
  padding-right: var(--side-gap);
}

/* Typography */
h1 {
  font-size: 58px;
  line-height: 1.345;
  font-weight: 800;
}

h2 {
  font-size: 35px;
  line-height: 47px;
  font-weight: 800;
  color: var(--secondary);
}

h3 {
  font-size: 25px;
  line-height: 33px;
  font-weight: 800;
  color: var(--secondary);
}

h4 {
  font-size: 20px;
  line-height: 27px;
  font-weight: 700;
  color: var(--secondary);
}

h5 {
  font-size: 18px;
  line-height: 24px;
  font-weight: 600;
  color: var(--primary);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font_secondary);
  margin-bottom: 20px;
}

p {
  margin-bottom: 16px;
}

/* Variables */
:root {
  /* Colors */
  --primary: #3c3c3c;
  --secondary: #3a3a3a;
  --white: #fff;
  --black: #000;
  --off_white: #f0f0f0;
  --accent_light_green: #768037;
  --accent_dark_green: #2B321F;
  --bg_header: #EFEDE6;
  --bg_light: #F0EDE6;
  --border: #e5e7eb;

  /* Fonts */
  --font_primary: "Poppins", sans-serif;
  --font_secondary: "Playfair Display", serif;
  --font_btn: "Open Sans", sans-serif;

  /* Spacing */
  --xs: 4px;
  --sm: 10px;
  --md: 16px;
  --lg: 24px;
  --xl: 32px;
  --xxl: 40px;

  /* Border radius */
  --radius-sm: 8px;
  --radius-md: 10px;
  --radius-lg: 12px;

  /* Layout */
  --container: 1312px;
  --side-gap: 16px;

  /* Transition */
  --transition: .3s ease;
}

/*--- responsive ----*/

@media(max-width: 1199px) {

  /* Typography */
  h1 {
    font-size: 48px;
  }
}

@media(max-width: 991px) {

  /* Typography */
  h1 {
    font-size: 40px;
    line-height: 1.4;
  }

  h2 {
    font-size: 32px;
    line-height: 1.4;
  }

  h3 {
    font-size: 22px;
    line-height: 1.4;
  }
}

@media(max-width: 991px) {

  /* Typography */
  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 20px;
  }

  body {
    line-height: 24px;
  }
}

@media(max-width: 767px) {

  :root {
    /* Spacing */
    --xl: 24px;
    --xxl: 32px;
  }
    /* Typography */
  h1 {
    font-size: 32px;
    line-height: 1.3;
  }

  h2 {
    font-size: 24px;
    line-height: 1.3;
  }

  h3 {
    font-size: 20px;
    line-height: 1.3;
  }

}