/*
 * CSS Reset: https://www.joshwcomeau.com/css/custom-css-reset/
  1. Use a more-intuitive box-sizing model.
*/
*, *::before, *::after {
    box-sizing: border-box;
  }
  /*
    2. Remove default margin
  */
  * {
    margin: 0;
  }
  /*
    Typographic tweaks!
    3. Add accessible line-height
    4. Improve text rendering
  */
  body {
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
  }
  /*
    5. Improve media defaults
  */
  img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
  }
  /*
    6. Remove built-in form typography styles
  */
  input, button, textarea, select {
    font: inherit;
  }
  /*
    7. Avoid text overflows
  */
  p, h1, h2, h3, h4, h5, h6 {
    overflow-wrap: break-word;
  }
  /*
    8. Create a root stacking context
  */
  #root, #__next {
    isolation: isolate;
  }

  /*
   * Font files
   */ 

@font-face {
    font-family: 'tuskerpro-variablevf';
    src: url('../fonts/tuskerpro-variablevf.ttf') format('truetype'),
         url('../fonts/tuskerpro-variablevf.woff') format('woff');
    font-style: normal;
}

  /*
   * CSS Variables
   */

:root {
    --iedc-site-header-h: 80px;
    --iedc-site-body-h: 100vh;

    /*
     * Typography
     */
    --iedc-typog-display-family: 'tuskerpro-variablevf','Futura',sans-serif;
    --iedc-typog-headline-family: 'tuskerpro-variablevf','Futura',sans-serif;
    --iedc-typog-headline-super-family: 'tuskerpro-variablevf','Futura',sans-serif;
    --iedc-typog-body-family: 'Montserrat', 'Arial',sans-serif;

    /*
     * Colors
     */
     --iedc-clr-dark:           #141B34;
     --iedc-clr-midnight-100:   #929292;
     --iedc-clr-midnight-200:   #656565;
     --iedc-clr-midnight-300:   #4B4B4B;
     --iedc-clr-midnight-400:   #1E1E1E;
     --iedc-clr-sunrise-500:    #FFC845;
     --iedc-clr-sunrise-600:    #D6A83A;
     --iedc-clr-blue-sky-50:    #CCDBEA;
     --iedc-clr-blue-sky-100:   #A3BFDA;
     --iedc-clr-blue-sky-500:   #004C97;
     --iedc-clr-blue-sky-600:   #00407F;
     --iedc-clr-blue-sky-800:   #00284F;
     --iedc-clr-blue-sky-900:   #001B36;
     --iedc-clr-open-space-50:  #FCFCFC;
     --iedc-clr-open-space-100: #EDEDED;
     --iedc-clr-open-space-200: #DEDEDE;
     --iedc-clr-open-space-300: #CFCFCF;
     --iedc-clr-open-space-400: #C0C0C0;
}

.iedc-color-sunrise-500 {
    color: var(--iedc-clr-sunrise-500);
}

.iedc-color-open-space-50 {
    color: var(--iedc-clr-open-space-50);
}


  /*
   * Helper classes
   */

.hide {
    display: none !important;
}

.uppercase {
    text-transform: uppercase !important;
}

.font-weight-normal {
    font-weight: normal !important;
}

.img-fluid {
    height: auto;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

@media screen and (min-width: 1024px) {
    .hide-on-desktop {
        display: none !important;
    }
}

@media screen and (max-width: 1023px) {
    .hide-on-tablet {
        display: none !important;
    }
}

  /*
   * Buttons
   */

.btn-reset {
    border: none;
    margin: 0;
    padding: 0;
    width: auto;
    overflow: visible;
    background: transparent;
    text-decoration: none;
    line-height: normal;
    -webkit-font-smoothing: inherit;
    -moz-osx-font-smoothing: inherit;
    -webkit-appearance: none;
    text-decoration: none;
    cursor: pointer;
}

.btn-primary {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 16px;
    border-radius: 2px;
    background-color: var(--iedc-clr-sunrise-500);
    border-bottom: 2px solid var(--iedc-clr-midnight-100);

    font-family: var(--iedc-typog-body-family);
    font-size: 15px;
    font-weight: 600;
    line-height: 20px;

    color: var(--iedc-clr-blue-sky-800);
    transition: all 150ms ease-out;
}

.btn-primary:hover,
.btn-primary:active {
    background-color: var(--iedc-clr-sunrise-600);
}

.btn-primary:active {
    position: relative;
    top: 1px;
    border-top: 1px solid var(--iedc-clr-sunrise-600);
    border-bottom: 0;
}
.btn-secondary {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 16px;
    border-radius: 2px;
    background-color: var(--iedc-clr-blue-sky-800);
    border-bottom: 2px solid var(--iedc-clr-open-space-300);

    font-family: var(--iedc-typog-body-family);
    font-size: 15px;
    font-weight: 600;
    line-height: 20px;

    color: var(--iedc-clr-open-space-50);
    transition: all 150ms ease-out;

}

.btn-secondary:hover,
.btn-secondary:active {
    background-color: var(--iedc-clr-blue-sky-600);
}

.btn-secondary:active {
    position: relative;
    top: 2px;
    border-top: 2px solid var(--iedc-clr-blue-sky-600);
    border-bottom: 0;
}

.btn-link {
    position: relative;
    height: 24px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--iedc-typog-body-family);
    font-size: 15px;
    font-weight: 600;
    line-height: 20px;
    text-align: left;
    color: var(--iedc-clr-blue-sky-800);
}

.btn-link.btn-link-invert {
    color: var(--iedc-clr-open-space-50);
}

.btn-link.btn-link-icon-invert:before {
    opacity: 0;
}

.btn-link.btn-link-icon-invert .text {
    margin-left: -32px;
    transition: margin 250ms ease-in-out;
}

.btn-link.btn-link-icon-invert:after {
    width: 24px;
}

.btn-link .text {
    display: inline-block;
    height: 24px;
    line-height: 24px;
    transform: translateX(0);
    transition: transform 250ms ease-in-out;
}

.btn-link-small {
    font-size: 12px;
}

.btn-close {
    width: 32px;
    height: 32px;
    text-indent: -9999px;
    background: url('https://astriata.dev/html_templates/iedc-new-homepage/dist/images/icon-close.svg') no-repeat center;
}

@media screen and (hover: hover) {

    .btn-link:hover .text {
        transform: translateX(-32px);
        color: var(--iedc-clr-blue-sky-600);
    }

    .btn-link.btn-link-icon-invert:hover .text {
        margin-left: 0;
        transform: translateX(0);
    }

    .btn-link:hover:before {
        opacity: 0;
    }
    
    .btn-link:hover:after {
        opacity: 1;
        width: 24px;
    }

    .btn-link.btn-link-icon-invert:before,
    .btn-link.btn-link-icon-invert:after {
        transition: opacity 250ms ease-in-out;
    }

    .btn-link.btn-link-icon-invert:hover:before {
        width: 24px;
        opacity: 1;
    }

    .btn-link.btn-link-icon-invert:hover:after {
        opacity: 0;
        width: 24px;
    }

    .btn-link.btn-link-invert:hover .text {
        color: var(--iedc-clr-open-space-200);
    }

    .btn-link.icon-arrow-right:hover:before,
    .btn-link.icon-arrow-right:hover:after {
        background-image: url('https://astriata.dev/html_templates/iedc-new-homepage/dist/images/icon-arrow-right-200.svg');
    }

    .btn-link.btn-link-small.icon-arrow-right:hover:before,
    .btn-link.btn-link-small.icon-arrow-right:hover:after {
        background-image: url('https://astriata.dev/html_templates/iedc-new-homepage/dist/images/icon-arrow-right-small-200.svg');
    }

    .btn-link.icon-phone:hover:before,
    .btn-link.icon-phone:hover:after {
        background-image: url('https://astriata.dev/html_templates/iedc-new-homepage/dist/images/icon-phone-200.svg');
    }

} /* @media screen and (hover: hover) */

.btn-link:before,
.btn-link:after {
    content: '';
    width: 24px;
    height: 24px;
    background-position: center;
    background-repeat: no-repeat;
    transition: opacity 250ms ease-in-out;
}

.btn-link.btn-link-small:before,
.btn-link.btn-link-small:after {
    width: 16px;
    height: 16px;
}

.btn-link:after {
    width: 0;
    opacity: 0;
    transform: translateX(-32px);
}

.btn-link.icon-play-circle:before,
.btn-link.icon-play-circle:after {
    background-image: url('https://astriata.dev/html_templates/iedc-new-homepage/dist/images/icon-play-circle.svg');
}

.btn-link.icon-arrow-right:before,
.btn-link.icon-arrow-right:after {
    background-image: url('https://astriata.dev/html_templates/iedc-new-homepage/dist/images/icon-arrow-right.svg');
}

.btn-link.btn-link-small.icon-arrow-right:before,
.btn-link.btn-link-small.icon-arrow-right:after {
    background-image: url('https://astriata.dev/html_templates/iedc-new-homepage/dist/images/icon-arrow-right-small.svg');
}

.btn-link.icon-phone:before,
.btn-link.icon-phone:after {
    background-image: url('https://astriata.dev/html_templates/iedc-new-homepage/dist/images/icon-phone.svg');
}

.btn-link.icon-arrow-right-dark:before,
.btn-link.icon-arrow-right-dark:after {
    background-image: url('https://astriata.dev/html_templates/iedc-new-homepage/dist/images/icon-arrow-right-dark.svg');
}

.btn-link:before {
    left: 0;
}

.btn-link:after {
    right: 0;
    opacity: 0;
}

.btn-link.btn-link-icon-invert:before {
    opacity: 0;
}

.btn-link.btn-link-icon-invert:after {
    opacity: 1;
    transform: translateX(0);
}


.btn-play-pause {
    width: 40px;
    height: 40px;
    text-indent: -9999px;
    background: url('https://astriata.dev/html_templates/iedc-new-homepage/dist/images/icon-pause.svg') no-repeat center;
}

.iedc-typog-label-1-regular {
    font-family: var(--iedc-typog-body-family);
    font-size: 12px;
    font-weight: 500;
    line-height: 20px;
    text-align: left;
}

.iedc-typog-label-1-strong {
    font-family: var(--iedc-typog-body-family);
    font-size: 12px;
    font-weight: 700;
    line-height: 20px;
    text-align: left;
}

.iedc-typog-body-1-strong {
    font-family: var(--iedc-typog-body-family);
    font-size: 18px;
    font-weight: 700;
    line-height: 28px;
    text-align: left;
}

.iedc-typog-body-2-regular {
    font-family: var(--iedc-typog-body-family);
    font-size: 15px;
    font-weight: 500;
    line-height: 24px;
    text-align: left;
}

.iedc-typog-body-2-strong {
    font-family: var(--iedc-typog-body-family);
    font-weight: 700;
    font-size: 15px;
    line-height: 24px;
    text-align: left;
}

.iedc-typog-body-3-regular {
    font-family: var(--iedc-typog-body-family);
    font-size: 12px;
    font-weight: 500;
    line-height: 20px;
    text-align: left;
}

.iedc-typog-body-3-strong {
    font-family: var(--iedc-typog-body-family);
    font-weight: 700;
    font-size: 12px;
    line-height: 20px;
    text-align: left;
}

.iedc-typog-headline-1-regular {
    font-family: var(--iedc-typog-headline-family);
    font-size: 46px;
    font-variation-settings: "wdth" 100, "wght" 500;
    line-height: 42px;
    letter-spacing: 0.01em;
    text-align: left;
}

.iedc-typog-headline-2-regular {
    font-family: var(--iedc-typog-headline-family);
    font-size: 37px;
    font-variation-settings: "wdth" 100, "wght" 500;
    line-height: 36px;
    letter-spacing: 0.01em;
    text-align: left;
}

.iedc-typog-headline-3-regular {
    font-family: var(--iedc-typog-headline-family);
    font-size: 29px;
    font-variation-settings: "wdth" 100, "wght" 500;
    line-height: 28px;
    letter-spacing: 0.01em;
    text-align: left;
}

.iedc-typog-headline-3-strong {
    font-family: var(--iedc-typog-headline-family);
    font-size: 29px;
    font-weight: 500;
    line-height: 28px;
    letter-spacing: 0.01em;
    text-align: left;
}

.iedc-typog-headline-4-regular {
    font-family: var(--iedc-typog-headline-family);
    font-size: 23px;
    font-variation-settings: "wdth" 100, "wght" 500;
    line-height: 22px;
    letter-spacing: 0.01em;
}

.iedc-typog-headline-4-strong {
    font-family: var(--iedc-typog-headline-family);
    font-variation-settings: "wdth" 125, "wght" 700;
    font-size: 23px;
    line-height: 22px;
    letter-spacing: 0.01em;
}

.iedc-typog-headline-4-xs-xl-bold {
    font-family: var(--iedc-typog-headline-family);
    font-size: 46px;
    font-variation-settings: "wdth" 75, "wght" 700;
    line-height: 42px;
    text-align: left;
}

.iedc-typog-headline-5-xs-super {
    font-family: var(--iedc-typog-headline-family);
    font-size: 37px;
    font-variation-settings: "wdth" 112, "wght" 800;
    line-height: 36px;
}

.iedc-typog-headline-5-strong {
    font-family: var(--iedc-typog-headline-family);
    font-variation-settings: "wdth" 125, "wght" 700;
    font-family: Tusker Pro;
    font-size: 19px;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: 0.01em;
    text-align: left;
}

.iedc-typog-button-large {
    font-family: var(--iedc-typog-body-family);
    font-size: 15px;
    line-height: 20px;
    text-align: left;
}

.iedc-typog-display-3-cs-xl-bold {
    font-family: var(--iedc-typog-display-family);
    font-size: 57px;
    font-variation-settings: "wdth" 75, "wght" 700;
    line-height: 50px;
    text-align: left;
}

.iedc-typog-display-4-m-xl-super {
    font-family: var(--iedc-typog-display-family);
    font-size: 46px;
    font-variation-settings: "wdth" 150, "wght" 800;
    line-height: 42px;
    text-align: left;
}

.iedc-typog-display-5-xs-xl-bold {
    font-family: var(--iedc-typog-display-family);
    font-size: 37px;
    font-variation-settings: "wdth" 75, "wght" 700;
    line-height: 36px;
    text-align: left;
}

.iedc-typog-display-1-m-xl-super {
    font-family: var(--iedc-typog-display-family);
    font-size: 90px;
    font-variation-settings: "wdth" 150, "wght" 800;
    line-height: 80px;
    text-align: left;
}

.iedc-typog-display-1-xs-xl-bold {
    font-family: var(--iedc-typog-display-family);
    font-size: 90px;
    font-variation-settings: "wdth" 75, "wght" 700;
    line-height: 80px;
    text-align: left;
}

.iedc-typog-display-3-m-xl-super {
    font-family: var(--iedc-typog-display-family);
    font-size: 57px;
    font-variation-settings: "wdth" 150, "wght" 800;
    line-height: 50px;
    text-align: left;
}

.iedc-typog-display-3-m-xl-superscript {
    font-family: var(--iedc-typog-display-family);
    font-size: 30px;
    font-variation-settings: "wdth" 150, "wght" 800;
    line-height: 50px;
    text-align: left;
    transform: translateY(-35%);
    display: inline-block;
}

.iedc-typog-display-3-xs-xl-bold {
    font-family: var(--iedc-typog-display-family);
    font-size: 57px;
    font-variation-settings: "wdth" 75, "wght" 700;
    line-height: 50px;
    text-align: left;
}


html, body {
    scroll-behavior: smooth;
}

body {
    background-color: var(--iedc-clr-open-space-50);
}

.site-modal-video {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 9000;
    width: 100vw;
    height: 100%;
}

.site-modal-video.active {
    display: block;
}

.site-modal-video-overlay {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(30, 30, 30, 0.65);
}

.site-modal-video-container {
    position: absolute;
    z-index: 10;
    left: 50%;
    top: 50%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    max-width: 968px;
    height: auto;
    max-height: 90vh;
    padding: 52px 60px;
    padding: clamp(20px,5.77vh,52px) 60px;
    border-radius: 4px;
    transform: translate3d(-50%,-50%,0);
    background-color: var(--iedc-clr-open-space-50);
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
}

.site-modal-video .video-wrapper {
    margin: 24px 0;
}

.site-modal-video .modal-title {
    color: var(--iedc-clr-blue-sky-500);
    padding-right: 60px;
}

.site-modal-video .modal-text {
    margin: 10px 0 32px;
}

.site-modal-video .btn-close {
    position: absolute;
    top: 52px;
    right: 60px;
}

@media screen and (max-width: 1023px) {

    .site-modal-video-container {
        padding: 40px 24px;
    }

    .site-modal-video .btn-close {
        right: 24px;
        top: 42px;
    }

    .site-modal-video .modal-title {
        font-size: 37px;
        font-weight: 700;
        line-height: 36px;
    }

    .site-modal-video .modal-subtitle {
        font-size: 23px;
        line-height: 22px;
    }

}

.iedc-typog-display-1-m-xl-super {
    font-family: var(--iedc-typog-display-family);
    font-size: 90px;
    font-variation-settings: "wdth" 150, "wght" 800;
    line-height: 80px;
    text-align: left;
}

@media (max-width: 1023px) {
    
    .iedc-typog-display-1-m-xl-super,
    .iedc-typog-display-4-m-xl-super,
    .iedc-typog-display-3-m-xl-super,
    .iedc-typog-display-3-m-xl-superscript {
        font-variation-settings: "wdth" 112, "wght" 800;
    }

}

.iedc-typog-display-1-xs-xl-bold {
    font-family: var(--iedc-typog-display-family);
    font-size: 90px;
    font-variation-settings: "wdth" 75, "wght" 700;
    line-height: 80px;
    text-align: left;
}

@media (max-width: 1023px) {

    body .home-banner-hero .banner-hero-title .iedc-typog-display-1-m-xl-super {
      font-size: 72px;
      line-height: 64px;
    }
    
    body .home-banner-hero .banner-hero-title .iedc-typog-display-1-xs-xl-bold {
      font-size: 72px;
      line-height: 64px;
    }
    
    body .banner-hero-cards .card .iedc-typog-display-4-m-xl-super,
    body .banner-hero-cards .card .iedc-typog-headline-4-xs-xl-bold {
        font-size: 57px;
        line-height: 50px;
    }
    
    body .home-section10-cards .card .iedc-typog-display-3-m-xl-super,
    body .home-section10-cards .card .iedc-typog-display-3-xs-xl-bold,
    body .home-section.section50 .iedc-typog-display-3-xs-xl-bold {
        font-size: 46px;
        line-height: 42px;
    }
    
    body .home-section10-cards .card .iedc-typog-headline-4-xs-xl-bold,
    body .home-section.section70 .iedc-typog-headline-4-xs-xl-bold, 
    body .home-section.section70 .iedc-typog-display-4-m-xl-super {
        font-size: 37px;
        line-height: 36px;
    }
    
}