@import url('https://fonts.googleapis.com/css2?family=Boldonse&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
:root {
  --bc-primary-font: 'Roboto';
  --bc-secondary-font: 'GT Super';
  --bc-dark-green: #162213;
  --bc-dark-green-2: #25451C;
  --bc-dark-green-3: #1C3016;
  --bc-dark-green-4: #315C26;
  --bc-black: #171717;
  --bc-dark-orange: #EE9339;
  --bc-light-orange: #FFE4CA;
  --bc-light: #FFFFFF;

  --bc-font-size-14: clamp(14px, 0.729vw, 14px);
  --bc-font-size-15: clamp(14px, 0.781vw, 15px);
  --bc-font-size-16: clamp(14px, 0.833vw, 16px);
  --bc-font-size-17: clamp(14px, 0.885vw, 17px);
  --bc-font-size-18: clamp(15px, 0.938vw, 18px);
  --bc-font-size-20: clamp(16px, 1.042vw, 20px);
  --bc-font-size-22: clamp(15px, 1.146vw, 22px);
  --bc-font-size-24: clamp(17px, 1.250vw, 24px);
  --bc-font-size-26: clamp(18px, 1.354vw, 26px);
  --bc-font-size-32: clamp(22px, 1.667vw, 32px);
  --bc-font-size-30: clamp(21px, 1.563vw, 30px);
  --bc-font-size-36: clamp(22px, 1.875vw, 36px);
  --bc-font-size-42: clamp(25px, 2.188vw, 42px);
  --bc-font-size-50: clamp(30px, 2.604vw, 50px);
  --bc-font-size-55: clamp(33px, 2.865vw, 55px);
  --bc-font-size-60: clamp(30px, 3.125vw, 60px);
  --bc-font-size-70: clamp(35px, 3.646vw, 70px);
  --bc-font-size-80: clamp(40px, 4.167vw, 80px);
}


/* CSS Document */

html {
  scrollbar-width: thin;
  scrollbar-color: var(--bc-dark-green-2) #ffffff;
  scroll-behavior: smooth;
}

html::-webkit-scrollbar {
  width: 5px;
}

html::-webkit-scrollbar-track {
  background: #ffffff;
  border-radius: 10px;
}

html::-webkit-scrollbar-thumb {
  background-color: var(--bc-dark-green-2);
  border-radius: 10px;
}

html::-webkit-scrollbar-thumb:hover {
  background-color: #008000;
}


body {
  background: url('../images/paper-bg.png') repeat-y;
  font-family: var(--bc-primary-font);
  font-size: var(--bc-font-size-18);
  color: var(--bc-black);
  background-size: cover;
  padding: 0;
  margin: 0;
}

@media screen and (min-width: 1300px) {
  .container {
    max-width: 1274px;
  }
}

a {
  text-decoration: none;
  display: inline-block;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  font-weight: 400;
  margin: 0;
}

ul,
ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

::selection {
  background-color: var(--bc-dark-orange);
  color: var(--bc-light);
}

[class^="primary-btn-"] {
  font-size: var(--bc-font-size-18);
  font-weight: 500;
  padding: 22px 30px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  outline: none;
  transition: 0.3s ease-in-out;
  text-align: center;
}

[class^="primary-btn-"].lg {
  padding-inline: 62px;
}

[class^="primary-btn-"].sm {
  padding-block: 17px;
}

.primary-btn-1 {
  background-color: var(--bc-light);
  color: var(--bc-black);
}

.primary-btn-2 {
  background-color: var(--bc-dark-green-2);
  color: var(--bc-light);
}

.primary-btn-3 {
  background-color: var(--bc-dark-orange);
  color: var(--bc-light);
}

.primary-btn-4 {
  background-color: transparent;
  outline: 1px solid var(--bc-dark-green);
  color: var(--bc-dark-green-2);
}

.primary-btn-5 {
  background-color: var(--bc-black);
  color: var(--bc-light);
}

[class^="primary-btn-"]:hover {
  background-color: var(--bc-dark-orange);
  transition: 0.3s ease-in-out;
  color: var(--bc-light);
}

.skeleton-btn {
  text-decoration: underline;
  color: var(--bc-black);
  transition: 0.3s ease-in-out;
}

.skeleton-btn-2 {
  color: var(--bc-black);
  position: relative;
  font-size: var(--bc-font-size-18);
  font-weight: 700;
  transition: 0.3s ease-in-out;
}

.skeleton-btn-2::before {
  content: '[ ';
}

.skeleton-btn-2::after {
  content: ' ]';
}

.skeleton-btn-2:hover {
  color: var(--bc-dark-orange);
  transform: translateY(-3px);
  transition: 0.3s ease-in-out;
}

.skeleton-btn:hover {
  color: var(--bc-dark-orange);
  transition: 0.3s ease-in-out;
}

.play-btn-1 {
  color: var(--bc-light);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.play-btn-1 span {
  color: var(--bc-light);
  font-weight: 700;
}

.play-btn-1 i {
  font-size: var(--bc-font-size-36);
}

[class^="title-"] {
  font-family: var(--bc-secondary-font);
  font-weight: 700;
}

.title-1 {
  font-size: var(--bc-font-size-55);
  line-height: 1.29;
}

.title-2 {
  font-size: var(--bc-font-size-60);
  line-height: 1.25;
}

.title-3 {
  font-size: var(--bc-font-size-70);
  line-height: 1.14;
}

.title-4 {
  font-size: var(--bc-font-size-50);
  line-height: 1;
}

.title-5 {
  font-size: var(--bc-font-size-42);
  line-height: 1.24;
}

.title-6 {
  font-size: var(--bc-font-size-30);
  line-height: 1.2;
}

.img-fluid-cover {
  object-fit: cover;
  object-position: center;
  height: 100%;
  width: 100%;
}

.img-fluid-cover.ob-fit-top {
  object-position: top;
}




select {
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2212%22%20height%3D%2212%22%20viewBox%3D%220%200%2012%2012%22%3E%3Ctitle%3Edown-arrow%3C%2Ftitle%3E%3Cg%20fill%3D%22%23000000%22%3E%3Cpath%20d%3D%22M10.293%2C3.293%2C6%2C7.586%2C1.707%2C3.293A1%2C1%2C0%2C0%2C0%2C.293%2C4.707l5%2C5a1%2C1%2C0%2C0%2C0%2C1.414%2C0l5-5a1%2C1%2C0%2C1%2C0-1.414-1.414Z%22%20fill%3D%22%23000000%22%3E%3C%2Fpath%3E%3C%2Fg%3E%3C%2Fsvg%3E") !important;
  background-size: 0.6em !important;
  background-position: calc(100% - 1.3em) center !important;
  background-repeat: no-repeat !important;
}

@media screen and (max-width:350px) {
  .col-xs-12 {
    width: 100%;
  }
}


/* barba page transition */
main {
  transition: opacity 0.5s ease, transform 0.5s ease;
  opacity: 1;
  transform: translateY(0);
}

main.is-leaving {
  opacity: 0.8;
  transform: translateY(0);
}

main.is-entering {
  opacity: 0.8;
  transform: translateY(0);
}

main.is-entered {
  opacity: 1;
  transform: translateY(0);
}

#loader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #ffffffb7;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  display: none;
}

.spinner {
  border: 6px solid #f3f3f3;
  border-top: 6px solid var(--bc-dark-green-2);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}




.fixed-contact-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;

  display: flex;
  align-items: center;
  justify-content: center;

  width: clamp(3.75rem, 3.287rem + 2.4691vw, 6.25rem);;
  height: clamp(3.75rem, 3.287rem + 2.4691vw, 6.25rem);;

  border-radius: 50%;
  background-color: #315C26;
  background-image: linear-gradient(0deg, #315c26, #539d40);
  color: #fff;
  text-decoration: none;

  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  overflow: visible;
  font-size: clamp(0.6875rem, 0.6065rem + 0.4321vw, 1.125rem);
  text-align: center;
  line-height: 1.3;
  text-transform: uppercase;

  outline: 1px dashed #65a951;
  outline-offset: -4px;
}

.fixed-contact-btn span {
  max-width: 50px;
}

/* YOUTUBE-LIVE style pulse */
.fixed-contact-btn::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(49, 92, 38, 0.45);
  animation: ytPulse 1.6s infinite cubic-bezier(.17,.67,.83,.67) forwards;
  top: 0;
  left: 0;
  z-index: -1;
  /* pulse behind the button */
}


@keyframes ytPulse {
  0% {
    transform: scale(1);
    opacity: 0.9;
  }

  80% {
    transform: scale(1.5);
    /* How large the ring grows */
    opacity: 0;
  }

  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}