/* Menu and toggle styles*/
.menu-container {
  .menu_wrapper {
    opacity: 0;
    visibility: hidden;
    background:#9967FF;
    /* Removed transition to let GSAP handle all animations */
  }
  .mark_white{
    width:40vw;
    height:auto;
  }
  
  .menu-primary-container {
    margin-top: 2rem;
    z-index: 10;
    
    ul {
      list-style: none;
      padding: 0;
      margin: 0;
      
      li {
        margin-bottom: 3.5rem;
        opacity: 0; /* Initially hidden for animation*/
        will-change: transform, opacity; /* Improve animation performance*/
        transform: translateY(20px);
        
        a {
          color: white;
          font-size: 1.75rem;
          text-decoration: none;
          font-weight: bold;
          transition: color 0.3s ease;
          font-family: var(--ivyepic-font);
          font-variation-settings: "slnt" 0, "wght" 500, "wdth" 100;
          
          &:hover {
            color: #3DE5B4;
          }
        }
        &.current-menu-item{
            a{
                color:#3DE5B4;
            }
        }
      }
    }
  }
}
/* Hamburger Menu Styles*/
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 37px;
  height: 25px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  position: fixed; /* Change to fixed to ensure it stays visible */
  top: 20px;
  left: 12px;
  transform: none;
  z-index: 9999; /* Significantly higher z-index to ensure it's always on top */
  
  span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: white;
    transition: all 0.3s ease;
  }
  
  /* Hamburger animation when menu is open*/
  &.open {
    span {
      background-color: white;
      
      &:first-child {
        transform: translateY(11px) rotate(45deg);
      }
      
      &:nth-child(2) {
        opacity: 0;
      }
      
      &:last-child {
        transform: translateY(-11px) rotate(-45deg);
      }
    }
  }
}
/* Menu row animations*/
.menu_row {
  position: relative;
  transition: width 0.5s;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to top, #3DE5B4, #9967FF);
  
  /* Purple overlay that grows from left*/
  &::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%; /* Initially 0 width*/
    background: #9967FF;
    z-index: 1;
    transition: width 0.5s ease;
  }
  
  /* When menu is open, expand the purple overlay*/
  &.menu-open::before {
    width: 100%;
  }
  
  /* Ensure contents are above backgrounds*/
  .menu, * {
    position: relative;
    z-index: 5;
  }
}
@media only screen and (max-width : 960px) {
  .hamburger{
    width: 24px;
    height: 17px;
    left:6px;
    
    /* Scale the open animation for smaller hamburger*/
    &.open {
      span {
        &:first-child {
          transform: translateY(8px) rotate(45deg);
        }
        
        &:last-child {
          transform: translateY(-8px) rotate(-45deg);
        }
      }
    }
  }

  .menu-container {
    & .menu-primary-container {
        & ul {
            li {
                margin-bottom: 2rem;
            }
        }
    }
}
}
footer{
  h4{
    font-family: var(--ivyepic-font);
    font-variation-settings: "slnt" 0, "wght" 700, "wdth" 100;
}
}
@media only screen and (max-width : 960px) {
   footer{
    padding-left: 10px;
    padding-right: 10px;
    
   }
    
  }
.masthead{
    h2{
        font-family: var(--ivyepic-font);
        font-variation-settings: "slnt" 0, "wght" 500, "wdth" 75;
    }
}
.home_main{
    h2{
        font-family: var(--ivyepic-font);
        color:#9967FF;
        font-variation-settings: "slnt" 0, "wght" 700, "wdth" 100;
        margin-bottom:35px;
    }
    h3{
        font-size: 3rem; /* Tailwind text-5xl */
        line-height: 1;
        margin-bottom:25px;

    }
}
.images-layout {
    position: relative;
    width: 100%;
    margin-top: 2rem;
    
    img {
        display: block;
        width: 100%;
        height: auto;
      /*  border-radius: 4px;*/
       /* box-shadow: 0 4px 8px rgba(0,0,0,0.1);*/
    }
    
    .image-columns {
        display: flex;
        gap: 24px;
        
        .left-column {
            width: 48%;
            display: flex;
            align-items: center; /* Vertically center the image */
        }
        
        .right-column {
            width: 48%;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
    }
    
    @media (max-width: 768px) {
        .image-columns {
        /*    flex-direction: column;*/
            
            .left-column,
            .right-column {
           /*     width: 100%;*/
          /*      margin-bottom: 24px;*/
            }
        }
    }
}
.down-arrow {
    display: block;
    margin: 2rem auto;
    width: auto;
    height: auto;
    max-width: 40px;
}
.home_mid{
    background-color: #181F4C;
    color:#F5F1E5;
    .left_side{
        h2{
            color:#3DE5B4;
            font-family: var(--ivyepic-font);
                    font-variation-settings: "slnt" 0, "wght" 700, "wdth" 100;
            margin-bottom:35px;
        }
        .large-text{
            font-size: 3rem; /* Tailwind text-5xl */
            line-height: 1;
            margin-bottom:25px;
            font-family: "ivypresto-headline", serif;
font-weight: 700;
    
        }
    }
    .right_side{
        h3{
            font-family: var(--ivyepic-font);
            font-variation-settings: "slnt" 0, "wght" 700, "wdth" 100;
        }
    }
    

   
}
@media only screen and (max-width : 960px) {
    .masthead{
        padding-left: 10px;
        padding-right: 10px;
    }
    .home_main{
        padding-left: 10px;
        padding-right: 10px;
        h3{
            font-size: 2rem;
        }
    }
    .images-layout{
        padding-left: 10px;
        padding-right: 10px;
    }
    .home_mid{
        padding-left: 10px;
        padding-right: 10px;
        & .left_side {
            .large-text {
                font-size: 2rem;
            }
        }
    }
}
.inner_page{
    h1{
        font-family: var(--ivyepic-font);
        font-variation-settings: "slnt" 0, "wght" 500, "wdth" 75;
    }
    
    /* Make the first paragraph bold in the content area*/
    .content-grid {
        p:first-of-type {
            font-weight: bold;
        }
    }
}
.team_block{ 
    h3{
        font-family: var(--ivyepic-font);
        font-variation-settings: "slnt" 0, "wght" 500, "wdth" 75;
    } 
    h2{
        font-family: var(--ivyepic-font);
        font-variation-settings: "slnt" 0, "wght" 500, "wdth" 75;
    } 
    h4{
        font-family: var(--ivyepic-font);
        font-variation-settings: "slnt" 0, "wght" 600, "wdth" 100;
        font-size: 1.2rem;
        line-height: 1.2em;
    } 
    h5{
        font-family: var(--ivyepic-font);
        font-variation-settings: "slnt" 0, "wght" 400, "wdth" 100;
        font-size: 1.2rem;
        line-height: 1.2em;
    } 
}
/* .home_main{*/
/*     h2{*/
/*         font-family: var(--ivyepic-font);*/
/*         color:$purple;*/
/*         font-variation-settings: "slnt" 0, "wght" 700, "wdth" 100;*/
/*         margin-bottom:35px;*/
/*     }*/
/*     h3{*/
/*         font-size: 3rem; *//* Tailwind text-5xl *//**/
/*         line-height: 1;*/
/*         margin-bottom:25px;*/
/*     }*/
/* }*/
/* .team_member{*/
/*     h3{*/
/*         font-family: var(--ivyepic-font);*/
/*         font-variation-settings: "slnt" 0, "wght" 400, "wdth" 100;*/
/*     }*/
/* }*/
/* .images-layout {*/
/*     position: relative;*/
/*     width: 100%;*/
/*     margin-top: 2rem;*/
/*     img {*/
/*         display: block;*/
/*         width: 100%;*/
/*         height: auto;*/
/*       //  border-radius: 4px;*/
/*     //    box-shadow: 0 4px 8px rgba(0,0,0,0.1);*/
/*     }*/
/*     .image-columns {*/
/*         display: flex;*/
/*         gap: 24px;*/
/*         .left-column {*/
/*             width: 48%;*/
/*             display: flex;*/
/*             align-items: center; *//* Vertically center the image *//**/
/*         }*/
/*         .right-column {*/
/*             width: 48%;*/
/*             display: flex;*/
/*             flex-direction: column;*/
/*             justify-content: space-between;*/
/*         }*/
/*     }*/
/*     @media (max-width: 768px) {*/
/*         .image-columns {*/
/*         //    flex-direction: column;*/
/*             .left-column,*/
/*             .right-column {*/
/*            //     width: 100%;*/
/*           //      margin-bottom: 24px;*/
/*             }*/
/*         }*/
/*     }*/
/* }*/
/* .down-arrow {*/
/*     display: block;*/
/*     margin: 2rem auto;*/
/*     width: auto;*/
/*     height: auto;*/
/*     max-width: 40px;*/
/* }*/
/* .home_mid{*/
/*     background-color: $black;*/
/*     color:$cream;*/
/*     .left_side{*/
/*         h2{*/
/*             color:$green;*/
/*             font-family: var(--ivyepic-font);*/
/*                     font-variation-settings: "slnt" 0, "wght" 700, "wdth" 100;*/
/*             margin-bottom:35px;*/
/*         }*/
/*         p{*/
/*             font-size: 3rem; *//* Tailwind text-5xl *//**/
/*             line-height: 1;*/
/*             margin-bottom:25px;*/
/*             font-family: "ivypresto-headline", serif;*/
/* font-weight: 700;*/
/*         }*/
/*     }*/
/*     .right_side{*/
/*         h3{*/
/*             font-family: var(--ivyepic-font);*/
/*             font-variation-settings: "slnt" 0, "wght" 700, "wdth" 100;*/
/*         }*/
/*     }*/
/* }*/
.contact_page{
    background: #181F4C url("../images/mark.svg") no-repeat right bottom;
    background-size: 40vw;
    color:#F5F1E5;
    h1{

        font-family: var(--ivyepic-font);
        font-variation-settings: "slnt" 0, "wght" 700, "wdth" 100;
        color:#3DE5B4;
    }
    h3{
        font-family: var(--ivyepic-font);
        font-variation-settings: "slnt" 0, "wght" 500, "wdth" 100;
    }
    input[type="email"]{
        max-width:300px;
    }
}
#mc-embedded-subscribe{
        padding-left: 0px !important;
        padding-right: 0px;
        margin-left: 0px !important;
        
        cursor: pointer;
        &:hover{
            color:#3DE5B4;
        }
    
        
}
@media only screen and (max-width : 960px) {
    .inner_page{
        h1{
            font-size: 2rem;
        }
        padding-left: 10px;
        padding-right: 10px;
    }
    .contact_page{
       padding-left: 10px;
       padding-right: 10px;
    }
}
/* Initial states for animation classes */
/* Base animation styles to prevent flash of unstyled content */
.fade-in,
.fade-in-now,
.fade-up,
.fade-left,
.fade-right {
  opacity: 0;
  visibility: hidden;
}
/* Specific positioning for each animation type */
.fade-up {
  transform: translateY(30px);
}
.fade-left {
  transform: translateX(-50px);
}
.fade-right {
  transform: translateX(50px);
}
/* Only apply these styles if JavaScript fails to load */
.no-js {
  .fade-in,
  .fade-in-now,
  .fade-up,
  .fade-left,
  .fade-right {
    opacity: 1;
    visibility: visible;
    transform: none;
  }
}
/* ! tailwindcss v3.4.11 | MIT License | https://tailwindcss.com*/
/*
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
*/
*,
::before,
::after {
  box-sizing: border-box; /* 1 */
  border-width: 0; /* 2 */
  border-style: solid; /* 2 */
  border-color: #e5e7eb; /* 2 */
}
::before,
::after {
  --tw-content: '';
}
/*
1. Use a consistent sensible line-height in all browsers.
2. Prevent adjustments of font size after orientation changes in iOS.
3. Use a more readable tab size.
4. Use the user's configured `sans` font-family by default.
5. Use the user's configured `sans` font-feature-settings by default.
6. Use the user's configured `sans` font-variation-settings by default.
7. Disable tap highlights on iOS
*/
html,
:host {
  line-height: 1.5; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -moz-tab-size: 4; /* 3 */
  -o-tab-size: 4;
     tab-size: 4; /* 3 */
  font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; /* 4 */
  font-feature-settings: normal; /* 5 */
  font-variation-settings: normal; /* 6 */
  -webkit-tap-highlight-color: transparent; /* 7 */
}
/*
1. Remove the margin in all browsers.
2. Inherit line-height from `html` so users can set them as a class directly on the `html` element.
*/
body {
  margin: 0; /* 1 */
  line-height: inherit; /* 2 */
}
/*
1. Add the correct height in Firefox.
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
3. Ensure horizontal rules are visible by default.
*/
hr {
  height: 0; /* 1 */
  color: inherit; /* 2 */
  border-top-width: 1px; /* 3 */
}
/*
Add the correct text decoration in Chrome, Edge, and Safari.
*/
abbr:where([title]) {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}
/*
Remove the default font size and weight for headings.
*/
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}
/*
Reset links to optimize for opt-in styling instead of opt-out.
*/
a {
  color: inherit;
  text-decoration: inherit;
}
/*
Add the correct font weight in Edge and Safari.
*/
b,
strong {
  font-weight: bolder;
}
/*
1. Use the user's configured `mono` font-family by default.
2. Use the user's configured `mono` font-feature-settings by default.
3. Use the user's configured `mono` font-variation-settings by default.
4. Correct the odd `em` font sizing in all browsers.
*/
code,
kbd,
samp,
pre {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; /* 1 */
  font-feature-settings: normal; /* 2 */
  font-variation-settings: normal; /* 3 */
  font-size: 1em; /* 4 */
}
/*
Add the correct font size in all browsers.
*/
small {
  font-size: 80%;
}
/*
Prevent `sub` and `sup` elements from affecting the line height in all browsers.
*/
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
/*
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
3. Remove gaps between table borders by default.
*/
table {
  text-indent: 0; /* 1 */
  border-color: inherit; /* 2 */
  border-collapse: collapse; /* 3 */
}
/*
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
3. Remove default padding in all browsers.
*/
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-feature-settings: inherit; /* 1 */
  font-variation-settings: inherit; /* 1 */
  font-size: 100%; /* 1 */
  font-weight: inherit; /* 1 */
  line-height: inherit; /* 1 */
  letter-spacing: inherit; /* 1 */
  color: inherit; /* 1 */
  margin: 0; /* 2 */
  padding: 0; /* 3 */
}
/*
Remove the inheritance of text transform in Edge and Firefox.
*/
button,
select {
  text-transform: none;
}
/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Remove default button styles.
*/
button,
input:where([type='button']),
input:where([type='reset']),
input:where([type='submit']) {
  -webkit-appearance: button; /* 1 */
  background-color: transparent; /* 2 */
  background-image: none; /* 2 */
}
/*
Use the modern Firefox focus style for all focusable elements.
*/
:-moz-focusring {
  outline: auto;
}
/*
Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
*/
:-moz-ui-invalid {
  box-shadow: none;
}
/*
Add the correct vertical alignment in Chrome and Firefox.
*/
progress {
  vertical-align: baseline;
}
/*
Correct the cursor style of increment and decrement buttons in Safari.
*/
::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}
/*
1. Correct the odd appearance in Chrome and Safari.
2. Correct the outline style in Safari.
*/
[type='search'] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}
/*
Remove the inner padding in Chrome and Safari on macOS.
*/
::-webkit-search-decoration {
  -webkit-appearance: none;
}
/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Change font properties to `inherit` in Safari.
*/
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}
/*
Add the correct display in Chrome and Safari.
*/
summary {
  display: list-item;
}
/*
Removes the default spacing and border for appropriate elements.
*/
blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
  margin: 0;
}
fieldset {
  margin: 0;
  padding: 0;
}
legend {
  padding: 0;
}
ol,
ul,
menu {
  list-style: none;
  margin: 0;
  padding: 0;
}
/*
Reset default styling for dialogs.
*/
dialog {
  padding: 0;
}
/*
Prevent resizing textareas horizontally by default.
*/
textarea {
  resize: vertical;
}
/*
1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
2. Set the default placeholder color to the user's configured gray 400 color.
*/
input::-moz-placeholder, textarea::-moz-placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}
input::placeholder,
textarea::placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}
/*
Set the default cursor for buttons.
*/
button,
[role="button"] {
  cursor: pointer;
}
/*
Make sure disabled buttons don't get the pointer cursor.
*/
:disabled {
  cursor: default;
}
/*
1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
   This can trigger a poorly considered lint error in some tools but is included by design.
*/
img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block; /* 1 */
  vertical-align: middle; /* 2 */
}
/*
Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
*/
img,
video {
  max-width: 100%;
  height: auto;
}
/* Make elements with the HTML hidden attribute stay hidden by default */
[hidden] {
  display: none;
}
*, ::before, ::after {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}
::backdrop {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}
.container {
  width: 100%;
}
@media (min-width: 640px) {
  .container {
    max-width: 640px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 768px;
  }
}
@media (min-width: 1024px) {
  .container {
    max-width: 1024px;
  }
}
@media (min-width: 1280px) {
  .container {
    max-width: 1280px;
  }
}
@media (min-width: 1536px) {
  .container {
    max-width: 1536px;
  }
}
.pointer-events-auto {
  pointer-events: auto;
}
.visible {
  visibility: visible;
}
.collapse {
  visibility: collapse;
}
.fixed {
  position: fixed;
}
.absolute {
  position: absolute;
}
.relative {
  position: relative;
}
.sticky {
  position: sticky;
}
.inset-0 {
  inset: 0px;
}
.-left-\[5\.5rem\] {
  left: -5.5rem;
}
.bottom-6 {
  bottom: 1.5rem;
}
.left-0 {
  left: 0px;
}
.left-20 {
  left: 5rem;
}
.left-6 {
  left: 1.5rem;
}
.right-6 {
  right: 1.5rem;
}
.top-0 {
  top: 0px;
}
.z-10 {
  z-index: 10;
}
.z-50 {
  z-index: 50;
}
.z-\[99999\] {
  z-index: 99999;
}
.col-span-10 {
  grid-column: span 10 / span 10;
}
.col-span-12 {
  grid-column: span 12 / span 12;
}
.col-span-3 {
  grid-column: span 3 / span 3;
}
.col-span-4 {
  grid-column: span 4 / span 4;
}
.col-span-5 {
  grid-column: span 5 / span 5;
}
.col-span-7 {
  grid-column: span 7 / span 7;
}
.col-span-8 {
  grid-column: span 8 / span 8;
}
.col-start-2 {
  grid-column-start: 2;
}
.col-start-7 {
  grid-column-start: 7;
}
.col-start-8 {
  grid-column-start: 8;
}
.mb-14 {
  margin-bottom: 3.5rem;
}
.mb-4 {
  margin-bottom: 1rem;
}
.mb-5 {
  margin-bottom: 1.25rem;
}
.mb-6 {
  margin-bottom: 1.5rem;
}
.mb-\[10vh\] {
  margin-bottom: 10vh;
}
.mt-10 {
  margin-top: 2.5rem;
}
.mt-20 {
  margin-top: 5rem;
}
.mt-28 {
  margin-top: 7rem;
}
.mt-32 {
  margin-top: 8rem;
}
.mt-4 {
  margin-top: 1rem;
}
.mt-5 {
  margin-top: 1.25rem;
}
.mt-6 {
  margin-top: 1.5rem;
}
.mt-\[10vh\] {
  margin-top: 10vh;
}
.mt-\[15vh\] {
  margin-top: 15vh;
}
.block {
  display: block;
}
.inline-block {
  display: inline-block;
}
.inline {
  display: inline;
}
.flex {
  display: flex;
}
.grid {
  display: grid;
}
.hidden {
  display: none;
}
.h-16 {
  height: 4rem;
}
.h-6 {
  height: 1.5rem;
}
.h-full {
  height: 100%;
}
.min-h-screen {
  min-height: 100vh;
}
.w-0\.5 {
  width: 0.125rem;
}
.w-16 {
  width: 4rem;
}
.w-6 {
  width: 1.5rem;
}
.w-\[200px\] {
  width: 200px;
}
.w-full {
  width: 100%;
}
.flex-shrink-0 {
  flex-shrink: 0;
}
.flex-grow {
  flex-grow: 1;
}
.transform {
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.cursor-pointer {
  cursor: pointer;
}
.resize {
  resize: both;
}
.grid-cols-12 {
  grid-template-columns: repeat(12, minmax(0, 1fr));
}
.grid-cols-7 {
  grid-template-columns: repeat(7, minmax(0, 1fr));
}
.flex-col {
  flex-direction: column;
}
.flex-wrap {
  flex-wrap: wrap;
}
.items-center {
  align-items: center;
}
.justify-center {
  justify-content: center;
}
.gap-20 {
  gap: 5rem;
}
.gap-4 {
  gap: 1rem;
}
.gap-8 {
  gap: 2rem;
}
.space-y-16 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(4rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(4rem * var(--tw-space-y-reverse));
}
.self-end {
  align-self: flex-end;
}
.overflow-hidden {
  overflow: hidden;
}
.rounded-full {
  border-radius: 9999px;
}
.border {
  border-width: 1px;
}
.border-2 {
  border-width: 2px;
}
.border-t {
  border-top-width: 1px;
}
.border-\[\#9967FF\] {
  --tw-border-opacity: 1;
  border-color: rgb(153 103 255 / var(--tw-border-opacity));
}
.border-\[\#F5F1E5\] {
  --tw-border-opacity: 1;
  border-color: rgb(245 241 229 / var(--tw-border-opacity));
}
.bg-\[\#3DE5B4\] {
  --tw-bg-opacity: 1;
  background-color: rgb(61 229 180 / var(--tw-bg-opacity));
}
.bg-\[\#9967FF\] {
  --tw-bg-opacity: 1;
  background-color: rgb(153 103 255 / var(--tw-bg-opacity));
}
.bg-white {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
}
.bg-gradient-to-t {
  background-image: linear-gradient(to top, var(--tw-gradient-stops));
}
.from-\[\#3DE5B4\] {
  --tw-gradient-from: #3DE5B4 var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(61 229 180 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.to-\[\#9967FF\] {
  --tw-gradient-to: #9967FF var(--tw-gradient-to-position);
}
.object-cover {
  -o-object-fit: cover;
     object-fit: cover;
}
.p-3 {
  padding: 0.75rem;
}
.p-6 {
  padding: 1.5rem;
}
.px-0 {
  padding-left: 0px;
  padding-right: 0px;
}
.px-16 {
  padding-left: 4rem;
  padding-right: 4rem;
}
.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}
.px-\[9vw\] {
  padding-left: 9vw;
  padding-right: 9vw;
}
.py-16 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
.py-6 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
.pb-4 {
  padding-bottom: 1rem;
}
.pb-8 {
  padding-bottom: 2rem;
}
.pb-\[10vh\] {
  padding-bottom: 10vh;
}
.pt-6 {
  padding-top: 1.5rem;
}
.pt-\[0\.7rem\] {
  padding-top: 0.7rem;
}
.pt-\[10vh\] {
  padding-top: 10vh;
}
.text-left {
  text-align: left;
}
.text-2xl {
  font-size: 1.5rem;
  line-height: 2rem;
}
.text-3xl {
  font-size: 1.875rem;
  line-height: 2.25rem;
}
.text-4xl {
  font-size: 2.25rem;
  line-height: 2.5rem;
}
.text-8xl {
  font-size: 6rem;
  line-height: 1;
}
.text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}
.text-xl {
  font-size: 1.25rem;
  line-height: 1.75rem;
}
.font-bold {
  font-weight: 700;
}
.font-medium {
  font-weight: 500;
}
.leading-6 {
  line-height: 1.5rem;
}
.leading-none {
  line-height: 1;
}
.text-\[\#3DE5B4\] {
  --tw-text-opacity: 1;
  color: rgb(61 229 180 / var(--tw-text-opacity));
}
.text-\[\#9967FF\] {
  --tw-text-opacity: 1;
  color: rgb(153 103 255 / var(--tw-text-opacity));
}
.text-black {
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity));
}
.text-white {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}
.opacity-0 {
  opacity: 0;
}
.transition {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-opacity {
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
@font-face {
  font-family: "ivypresto-headline", serif;
font-weight: 700;
font-style: normal;
}
@font-face {
font-family: "ivyepic-variable", sans-serif;
font-variation-settings: "slnt" 0, "wght" 100, "wdth" 100;
}
:root {
  --background: #F5F1E5;
  --foreground: #181F4C;
  --ivypresto-font: 'ivypresto-headline';
  --ivyepic-font: 'ivyepic-variable';
}
@media (prefers-color-scheme: dark) {
  :root {
  
  }
}
html {
 /* scroll-behavior: smooth;*/
}
body {
  color: var(--foreground);
  background: var(--background);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
 /* min-height: 300vh;*/
  overflow-x: hidden;
  font-family: var(--ivyepic-font);
  font-size: 18px;
  line-height: 1.2em;
}
h1,h2,h3,h4{
   font-family: var(--ivypresto-font);
}
p{
    padding-bottom: 1rem;
}
.cta_btn{
  font-family: var(--ivypresto-font);
  transition: all 0.3s ease;
  &:hover{
    background-color: #9967FF;
    color:#F5F1E5;
    border-color:#9967FF;

    
  }
}
/* Clearfix for floating elements */
.clearfix::after {
  content: "";
  clear: both;
  display: table;
}
@media only screen and (max-width : 960px) {
   
}
.hover\:underline:hover {
  text-decoration-line: underline;
}
.hover\:opacity-90:hover {
  opacity: 0.9;
}
@media not all and (min-width: 1024px) {
  .max-lg\:absolute {
    position: absolute;
  }
  .max-lg\:relative {
    position: relative;
  }
  .max-lg\:left-0 {
    left: 0px;
  }
  .max-lg\:left-16 {
    left: 4rem;
  }
  .max-lg\:col-span-10 {
    grid-column: span 10 / span 10;
  }
  .max-lg\:col-start-2 {
    grid-column-start: 2;
  }
  .max-lg\:mb-6 {
    margin-bottom: 1.5rem;
  }
  .max-lg\:mb-8 {
    margin-bottom: 2rem;
  }
  .max-lg\:mb-\[4vh\] {
    margin-bottom: 4vh;
  }
  .max-lg\:mt-0 {
    margin-top: 0px;
  }
  .max-lg\:mt-10 {
    margin-top: 2.5rem;
  }
  .max-lg\:mt-\[10vh\] {
    margin-top: 10vh;
  }
  .max-lg\:mt-\[6vh\] {
    margin-top: 6vh;
  }
  .max-lg\:hidden {
    display: none;
  }
  .max-lg\:h-12 {
    height: 3rem;
  }
  .max-lg\:w-12 {
    width: 3rem;
  }
  .max-lg\:w-9 {
    width: 2.25rem;
  }
  .max-lg\:text-2xl {
    font-size: 1.5rem;
    line-height: 2rem;
  }
  .max-lg\:text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem;
  }
  .max-lg\:text-5xl {
    font-size: 3rem;
    line-height: 1;
  }
  .max-lg\:text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
  }
}
@media (min-width: 768px) {
  .md\:col-span-5 {
    grid-column: span 5 / span 5;
  }
  .md\:w-2\/5 {
    width: 40%;
  }
  .md\:w-3\/5 {
    width: 60%;
  }
  .md\:flex-row {
    flex-direction: row;
  }
}
