*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  font-size: clamp(min, preferred, max);
  line-height: clamp(min, preferred, max);
}
::selection{
  background-color: #6BAD0D;
  color: white;
}

.container {
  max-width: 1360px;
  width: 100%;
  padding: 0px 15px;
  margin: auto;
  position: relative;
  @media (min-width: 992px) {
    padding: 0px 20px;
  }
}

h1,h2,h3,h4,h5,h6,p {
  margin: 0;
}

/* Heading 1 */
h1 {
  font-size: clamp(2.5rem, 8vw, 6.875rem);       /* 40px → fluid → 110px */
  line-height: clamp(3rem, 9vw, 7.5rem);         /* 48px → fluid → 120px */
}

/* Heading 2 */
h2 {
  font-size: clamp(2rem, 6vw, 3.625rem);         /* 32px → fluid → 58px */
  line-height: clamp(2.5rem, 7vw, 4.375rem);     /* 40px → fluid → 70px */
}

/* Heading 3 */
h3 {
  font-size: clamp(1.75rem, 5vw, 3rem);          /* 28px → fluid → 48px */
  line-height: clamp(2.25rem, 6vw, 3.75rem);     /* 36px → fluid → 60px */
}

/* Heading 4 */
h4 {
  font-size: clamp(1.5rem, 4vw, 2.375rem);       /* 24px → fluid → 38px */
  line-height: clamp(2rem, 5vw, 3.125rem);       /* 32px → fluid → 50px */
}

/* Heading 5 */
h5 {
  font-size: clamp(1rem, 3vw, 1.375rem);         /* 16px → fluid → 22px */
  line-height: clamp(1.5rem, 4vw, 2rem);         /* 24px → fluid → 32px */
}

/* Heading 6 */
h6 {
  font-size: clamp(0.875rem, 2vw, 1rem);     /* 14px fixed small */
  line-height: clamp(1.25rem, 3vw, 1.5rem);      /* 20px → fluid → 24px */
}

/* Normal Paragraph */
p {
  font-size: clamp(0.875rem, 2vw, 1rem);         /* 14px → fluid → 16px */
  line-height: clamp(1.375rem, 3vw, 1.625rem);   /* 22px → fluid → 26px */
}

/* Common styles for all icons */
.icon{
  mask-repeat: no-repeat;
  mask-size: contain;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  -webkit-mask-position: center;
  background-color: #000;
}
.icon_sm {
  width: 14px;
  height: 14px;
  scale: 1;
}
.icon_md {
  width: 18px;
  height: 18px;
  scale: 1.25;
}
.icon_lg{
  width: 21px;
  height: 21px;
  scale: 1.5;
}

.d_block {
  display: block;
}
.relative {
  position: relative;
}
.overflow_hidden {
  overflow: hidden;
}

.sp_animated_gradient {
    width: 100%;
    min-height:300px;
    height: 100%;
    background: linear-gradient(270deg, rgba(0,0,0,.02), rgba(0,0,0,.1), rgba(0,0,0,.02));
    background-size: 600% 600%;
    animation: wave 8s ease infinite;
    border-radius: 12px;
}
@keyframes wave {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@media (min-width: 1024px) {
  .pointer {
    cursor: pointer;
  }
}