@import url('https://fonts.googleapis.com/css2?family=Playfair:ital,opsz,wght@0,5..1200,300..900;1,5..1200,300..900&display=swap');
@import url('https://fonts.googleapis.com/css2?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 {
    --regular: 400;
    --medium: 500;
    --semiBold: 600;
    --bold: 700;
}

* {
    margin: 0;
    padding: 0;
    outline: none;
    box-sizing: border-box;
    font-style: normal;
    font-optical-sizing: auto;
}

html {
    scroll-behavior: smooth;
}

.container {
    max-width: 1332px;
    width: 100%;
    padding: 0px 16px;
    margin: 0 auto;
}

body {
    margin: 0;
    font-size: 14px;
    line-height: 22px;
    font-weight: 400;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
}

/* font weight */
.fw_regular {
    font-weight: var(--regular);
}

.fw_medium {
    font-weight: var(--medium);
}

.fw_semi_bold {
    font-weight: var(--semiBold);
}

.fw_bold {
    font-weight: var(--bold);
}

/* font size */
.fs_12 {
    font-size: var(--fs_12);
}

.fs_12 {
    font-size: var(--fs_12);
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

a {
    text-decoration: none;
    display: inline-block;
}

button {
    border: none;
    outline: none;
    background-color: transparent;
}

img {
    width: 100%;
    height: 100%;
}

/* start flex */
.flex {
    display: flex;
}

.flex_row.flex_sm_row,
.flex_row {
    flex-direction: row;
}

.flex_column.flex_sm_column,
.flex_column {
    flex-direction: column;
}

.flex.items_center {
    align-items: center;
}

.flex.justify_start {
    justify-content: start;
}

.flex.justify_center {
    justify-content: center;
}

.flex.justify_end {
    justify-content: end;
}

.flex.justify_between {
    justify-content: space-between;
}

.flex.justify_around {
    justify-content: space-around;
}

.flex.wrap {
    flex-wrap: wrap;
}

.flex.no_wrap {
    flex-wrap: wrap;
}

.flex.gap_2 {
    gap: 2px;
}

.flex.gap_5 {
    gap: 5px;
}

.flex.gap_6 {
    gap: 6px;
}

.flex.gap_8 {
    gap: 8px;
}

.flex.gap_10 {
    gap: 10px;
}

.flex.gap_12 {
    gap: 12px;
}

.flex.gap_16 {
    gap: 16px;
}

.flex.gap_20 {
    gap: 20px
}

.flex.gap_24 {
    gap: 24px
}

.flex.gap_30 {
    gap: 30px;
}

.flex.gap_32 {
    gap: 32px;
}

.flex.gap_40 {
    gap: 40px;
}

.mt-15 {
    margin-top: 15px;
}

.section_heading {
    width: 100%;
    margin: auto;
}

.normal_text {
    font-size: 14px;
    line-height: 22px;
    font-weight: 400;
}

@media(min-width:768px) {

    .section_heading {
        max-width: 770px;
    }

}

@media (min-width:1024px) {
    .pointer {
        cursor: pointer;
    }

}

@media(min-width:1400px) {
    .container {
        max-width: 1300px;
        padding: 0px;
    }
}

.section {
    opacity: 0;
    transform: translateY(50px);
}
.gsap_scroll {
    opacity: 0;
}

.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;
}

/* 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 */
}