* {
  margin: 0;
  padding: 0;
}
.test {
  border: 2px dashed red !important;
}
:root {
  --primary-color: #523a28;
  --light-color: #e4d4c8;
  --font-color: #212121;
  --font-heading: "Manrope", sans-serif;
  --font-cursive: "Montez", cursive;
}
body {
  overflow-x: hidden;
}
.heading-bold {
  font-family: var(--font-heading);
}
.heading-curve {
  font-family: var(--font-cursive);
  font-weight: 100;
}
.dark-font {
  color: var(--font-color);
}
.light-font {
  color: var(--light-color);
}
.white-font {
  color: white;
}
.bg-primary {
  background-color: var(--primary-color);
}
.bg-light {
  background-color: var(--light-color);
}

/* Conatainer */
.container {
  width: 1360px;
  max-width: calc(100% - 20px);
  margin: 0 auto;
}
.spacer {
  height: 30px;
}
.divider {
  height: 1;
  border-bottom: 1px dashed var(--light-color);
  margin: 20px 0;
  opacity: 0.2;
}
.divider.dark {
  border-bottom: 1px dashed var(--primary-color);
}

ul,
ol {
  list-style-type: none;
}
input:focus {
  outline: none;
}
.decoration-none {
  text-decoration: none;
}
.relative {
  position: relative;
}
.absolute {
  position: absolute;
}
/* Flex */
.d-flex {
  display: flex;
  /* flex-wrap: wrap; */
}
.flex-column {
  flex-direction: column;
}
.flex-row {
  flex-direction: row;
}
.justify-center {
  justify-content: center;
}
.justify-start {
  justify-content: flex-start;
}
.justify-end {
  justify-content: flex-end;
}
.justify-between {
  justify-content: space-between;
}
.justify-around {
  justify-content: space-around;
}
.justify-evenly {
  justify-content: space-evenly;
}
.align-center {
  align-items: center;
}
.align-start {
  align-items: flex-start;
}
.align-end {
  align-items: flex-end;
}
.gap {
  gap: 15px;
}
.gap-big {
  gap: 30px;
}
.col-1 {
  flex: 0 0 8.33%;
}
.col-2 {
  flex: 0 0 16.66%;
}
.col-3 {
  flex: 0 0 25%;
}
.col-4 {
  flex: 0 0 33.33%;
}
.col-5 {
  flex: 0 0 41.66%;
}
.col-6 {
  flex: 0 0 50%;
}
.col-7 {
  flex: 0 0 58.33%;
}
.col-8 {
  flex: 0 0 66.66%;
}
.col-9 {
  flex: 0 0 75%;
}
.col-10 {
  flex: 0 0 83.33%;
}
.col-11 {
  flex: 0 0 91.66%;
}
.col-12 {
  flex: 0 0 100%;
}
.wrap {
  flex-wrap: wrap;
}
/* Sections */
.py-80 {
  padding: 50px 0;
}
.section-heading {
  font-size: 42px;
}
.section-heading.big {
  font-size: 60px;
}
.section-subheading {
  font-size: 24px;
  letter-spacing: 1px;
}
.text {
  font-family: var(--font-heading);
  font-size: 16px;
  margin-bottom: 20px;
  margin-top: 10px;
  line-height: 1.5;
  font-weight: 600;
}
.m-40 {
  margin: 40px 20px;
}
.pt-50 {
  padding-top: 20px;
}
.text-center {
  text-align: center;
}
.w-50 {
  width: 50%;
}
.w-33 {
  width: calc(100% / 3);
}

.w-16 {
  width: 16%;
}
.w-20 {
  width: 20%;
}
.text-right {
  text-align: right;
}
