:root {
  --white: #FFFFFF;
  --orange-25: #FFFAEF;
  --orange-100: #FFD593;
  --orange-700: #D68400;
  --orange-800: #B15C00;
  --orange-900: #944800;

  --beige-50: #F9F2E8;

  --grey-10: #F8F6F4;
  --grey-25: #FEFDFD;
  --grey-50: #F2F0EE;
  --grey-75: #E4E4E4E5;
  --grey-100: #D0D0D0;
  --grey-300: #C2C0BC;
  --grey-400: #A19E99;
  --grey-600: #64605C;
  --grey-800: #4B473F;
  --grey-850: #222222;
  --grey-900: #0F0901;
}

html {
  scroll-behavior: smooth;
  height: 100%;
}
* { margin:0; padding:0; box-sizing:border-box; }
body {
  font-family:'Poppins',sans-serif;
  font-size: 17px;
  min-height: 100vh;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.no-scroll {
  overflow: hidden;
}
main {
  flex: 1;
  width: 100%;
}
section {position: relative; z-index: 1000;}
.container {
  margin: 0 auto;
  max-width: 100%;
  @media (min-width: 1300px) {
    max-width: 1290px;
    padding: 0;
  }
}
h1 {
  font-weight: 700;
  font-size: 24px;
  line-height: 27px;
  color: var(--grey-900);
  @media (min-width: 768px) {
    font-size: 35px;
    line-height: 51px;
  }
}
h2 {
  font-weight: 600;
  font-size: 24px;
  color: var(--grey-900);
  @media(min-width: 768px) {
    font-size: 29px;
  }
}
h3 {
  font-weight: 600;
  font-size: 17px;
  color: var(--grey-900);
  line-height: 20px;
  @media (min-width: 768px) {
    font-size: 24px;
    line-height: 27px;
  }
}
h4 {
  font-weight: 600;
  font-size: 20px;
  color: var(--grey-800);
  line-height: 23px;
}
h5 {
  font-weight: 600;
  font-size: 17px;
  color: var(--grey-900);
  line-height: 20px;
}
h6 {
  font-weight: 600;
  font-size: 14px;
  color: var(--grey-900);
  line-height: 17px;
}
footer {  color:white; text-align:center; padding:80px 0; }
a {
  text-decoration: none;
  color: unset;
  font-weight: 400;
}
button {
  outline: unset;
  border: unset;
  background: unset;
}
p {
  color: var(--grey-800);
  font-size: 14px;
  font-weight: 400;
  line-height: 17px;
  @media (min-width: 768px) {
    font-size: 17px;
    line-height: 20px;
  }
}
.orange_text {
  color: var(--orange-700) !important;
}
.big_text {
  font-weight: 700;
  font-size: 29px;
  line-height: 30px;
  color: var(--grey-900);
  @media (min-width: 768px) {
    font-size: 54px;
    line-height: 60px;
  }

}
.small_text {
  color: var(--grey-800);
  font-size: 14px;
  font-weight: 400;
}
.white_text {
  color: var(--white)!important;
}
.small_medium_text {
  color: var(--grey-900);
  font-size: 14px;
  font-weight: 500;
}
.default_text {
  color: var(--grey-50);
}
.link_container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: fit-content;
  cursor: pointer;
  &:hover {
    text-decoration: underline;
    transition: margin-left 0.2s ease-out;
    img {
      margin-left: 2px;
    }
  }
}

.breadcrumb {
  display: flex;
  gap: 5px;
  align-items: center;
  p {
    color: var(--grey-600);
    font-size: 14px;
    font-weight: 400;
  }
}

.background_banner_img {
  position: absolute;
  left: 0;
  opacity: 50%;
  z-index: -1;
  width: 100%;
  max-width: 1900px;
  max-height: 940px;
  height: 100%;
  top: -50px;
}

