@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
/*font-family: "Montserrat", sans-serif;*/

:root {
    /* colors */
  --white-clr: #FFFFFF;
  --pink-clr: #FF00E2;

   /* font-weight */
  --fw-reg: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  --fw-extrabold: 800;
  --fw-italic: italic;
}

@font-face {
     font-family: 'Rafaella-Bold';
     /*src: url('/content/dam/intelligentcontent/brands/noe-program/us/en/font/Rafaella-Bold.ttf');*/
     src: local('?'), url('/content/dam/intelligentcontent/brands/noe-program/us/en/font/rafaella_bold-webfont.woff2') format('woff2'), url('/content/dam/intelligentcontent/brands/noe-program/us/en/font/rafaella_bold-webfont.woff') format('woff'), url('/content/dam/intelligentcontent/brands/noe-program/us/en/font/Rafaella-Bold.ttf') format('truetype');
     font-weight: normal;
     font-style: normal;
	 display: swap;
}


*,
*::before,
*::after {
  box-sizing: border-box;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: none,;
}

body {
  min-height: 100vh;
  font-family: "Montserrat", sans-serif;
  padding: 0!important;
  color: #333;
}

:focus-visible {
  outline: -webkit-focus-ring-color auto 1px!important;
}

a:focus {
    outline:auto;
}

img,
picture {
  max-width: 100%;
  display: block;
}

input,
button,
textarea,
select,
a {
  font: inherit;
}

/*.rmv-launch{display:none!important;}*/
.inner-container.two-col-container:nth-child(2){display:none!important;}
.cmp-dynamicform-v2 .cmp-dynamicform__generated-form .cmp-dynamicform__form-group button[disabled] {
    cursor: pointer!important;
    background-color: #DF2811!important;
}

/* Modal style starts here */

/*Modal style here*/
.modal * {
    box-sizing: border-box;
  }
  
  .modal {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1000;
    display: flex;
    visibility: hidden;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    -webkit-overflow-scrolling: touch;
    background: rgba(0,0,0,0.9);
    opacity: 0;
    cursor: auto!important;
  }
  
  @supports ((-webkit-backdrop-filter: blur(12px)) or (backdrop-filter: blur(12px))) {
    .modal {
      -webkit-backdrop-filter: blur(12px);
      backdrop-filter: blur(12px);
    }
  }
  
  .modal--confirm .modal-box {
    text-align: center;
  }
  
  .modal--noOverlayClose {
    cursor: default;
  }
  
  .modal--noClose .modal__close {
    display: none;
  }
  
  .modal__close {
    position: fixed;
    top: 2.5rem;
      /*right: 2.5rem;*/
    z-index: 1000;
    padding: 0;
    width: 2rem;
    height: 2rem;
    border: none;
    background-color: transparent;
    color: #fff;
    cursor: pointer;
  }
  
  .modal__close svg * {
    fill: currentColor;
  }
  
  .modal__closeLabel {
      /*display: none*/;
  }
  
  .modal__close:hover {
    color: #fff;
  }
  
  .modal-box {
    position: relative;
    flex-shrink: 0;
    margin-top: auto;
    margin-bottom: auto;
    width: 60%;
    border-radius: 4px;
    background: #fff;
    opacity: 1;
    cursor: auto;
    will-change: transform, opacity;
  }
  
  .modal-box__content {
    padding: 3rem 3rem;
  }
  
  .modal-box__footer {
    padding: 1.5rem 2rem;
    width: auto;
    border-bottom-right-radius: 4px;
    border-bottom-left-radius: 4px;
    background-color: #f5f5f5;
    cursor: auto;
  }
  
  .modal-box__footer::after {
    display: table;
    clear: both;
    content: "";
  }
  
  .modal-box__footer--sticky {
    position: fixed;
    bottom: -200px;
    z-index: 10001;
    opacity: 1;
    transition: bottom .3s ease-in-out .3s;
  }
  
  .modal-enabled {
    position: fixed;
    right: 0;
    left: 0;
    overflow: hidden;
  }
  
  .modal--visible .modal-box__footer {
    bottom: 0;
  }
  
  .modal--visible {
    visibility: visible;
    opacity: 1;
    overflow-y: scroll;
  }
  
  .modal--visible .modal-box {
    -webkit-animation: scale 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
    animation: scale 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
  }
  
  .modal--overflow {
    overflow-y: scroll;
    padding-top: 8vh;
  }
  
  .modal-btn {
    display: inline-block;
    margin: 0 .5rem;
    padding: 1rem 2rem;
    border: none;
    background-color: grey;
    box-shadow: none;
    color: #fff;
    vertical-align: middle;
    text-decoration: none;
    font-size: inherit;
    font-family: inherit;
    line-height: normal;
    cursor: pointer;
    transition: background-color .4s ease;
  }
  
  .modal-btn--primary {
    background-color: #3498db;
  }
  
  .modal-btn--danger {
    background-color: #e74c3c;
  }
  
  .modal-btn--default {
    background-color: #34495e;
  }
  
  .modal-btn--pull-left {
    float: left;
  }
  
  .modal-btn--pull-right {
    float: right;
  }
  
  span.pink-bracket {
      color: #ff00e2;
  }
  
    .explicitClose button.modal__close {
        top: 13px;
        right: 11px;
        background: transparent;
    }
    
    .explicitClose button.modal__close .modal__closeIcon {
    top: 0;
    right: 0;
    }
    .head-3 span.space {
        margin-left: 0;
        padding-left: 5px;
    }
  
  @media (max-width: 767px) {
    .modal {
      top: 0px;
      display: block;
      padding-top: 60px;
      width: 100%;
    }
  
    .modal-box {
      width: auto;
      border-radius: 0;
    }
  
    .modal-box__content {
      overflow-y: scroll;
    }
  
    .modal--noClose {
      top: 0;
    }
  
    .modal--noOverlayClose {
      padding-top: 0;
    }
  
    .modal-box__footer .modal-btn {
      display: block;
      float: none;
      margin-bottom: 1rem;
      width: 100%;
    }
  
    .modal__close {
      top: 0;
      right: 0;
      left: 0;
      display: block;
      width: 100%;
      height: 60px;
      border: none;
      background-color: #2c3e50;
      box-shadow: none;
      color: #fff;
    }
    
    .cmp-modal--defaultStyle .modal__close{
        top: 0 !important;
        right: 0 !important;
        left: 0 !important;
        width: 100% !important;
    }
  
    .modal__closeLabel {
      display: inline-block;
      vertical-align: middle;
      font-size: 1.6rem;
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
    }
  
    .modal__closeIcon {
      display: inline-block;
      margin-right: .8rem;
      width: 1.6rem;
      vertical-align: middle;
      font-size: 0;
    }
  }
  
  @-webkit-keyframes scale {
    0% {
      opacity: 0;
      transform: scale(0.9);
    }
  
    100% {
      opacity: 1;
      transform: scale(1);
    }
  }
  
  @keyframes scale {
    0% {
      opacity: 0;
      transform: scale(0.9);
    }
  
    100% {
      opacity: 1;
      transform: scale(1);
    }
  }  

/* Modal style ends here */

/* Page style starts here*/

.text-center {
    text-align: center;
}

.desk-only {
    display: none;
}

.nowrap{
    white-space: nowrap;
}

.noe-home-page .cmp-text {
    padding: 0;
}

.inner-container {
    padding: 0 19px;
}

.section-one {
    background: #FEEBE8;
    padding-bottom: 50px;
}

.section-1--left {
    padding: 33px 0 38px;
}

.section-1--left .subhead {
    font-family: "Montserrat", sans-serif;
    font-size: 22px;
    font-weight: 500;
    line-height: 28px;
    letter-spacing: -0.5px;
    width: 97%;
    margin-bottom: 15px;
}

.section-1--left p {
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: -0.4px;
    width: 99%;
    margin-bottom: 22px;
}

.scroll-link {
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px;
    letter-spacing: -0.4px;
    color: #333;
    display: inline-flex;
}

.scroll-link--img {
    width: 32px;
    height: 32px;
    /*border: 1px solid;*/
    position: relative;
}

.scroll-link--img img:nth-child(2) {
    width: 8px;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.scroll-link--txt:after {
    content: "";
    position: absolute;
    bottom: 4px;
    left: 0;
    display: inline-block;
    width: 100%;
    height: 3px;
    background: #F15C49;
}

.scroll-link--txt {
    position: relative;
    margin-right: 7px;
}

.download-pdf-wrap {
    border-radius: 4px;
    border: 2px solid #FFF;
    text-align: center;
    padding: 20px 10px 38px;
    background: url(/content/dam/intelligentcontent/brands/noe-program/us/en/images/desktop/download-texture1.png) left top no-repeat,url(/content/dam/intelligentcontent/brands/noe-program/us/en/images/desktop/download-texture2.png) right bottom no-repeat;
    background-size: 100%, 100%;
    background-color: #FFF5F1;
}

.download-pdf-wrap > img {
    width: 219.6px;
    height: 257.74px;
    margin: auto;
}

.download-pdf-wrap p {
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 27px; /* 135% */
    letter-spacing: -0.5px;
    margin: 20px 0;
}

a.download-cta {
    border-radius: 4px;
    background: #DF2811;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 16px; /* 100% */
    letter-spacing: -0.5px;
    color: #ffffff;
    width: 188px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 13px 9px 24px;
}

span.download-cta__img {
    width: 20px;
    height: 20px;
    display: inline-block;
    border: 1px solid transparent;
    position: relative;
    /*top: -3px;*/
    top: -1px;
}

.download-cta__img img:nth-child(1) {
    width: 14px;
    margin: auto;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
}

.download-cta__img img:nth-child(2) {
    width: 5.5px;
    height: auto;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.section-two {
    background: url(/content/dam/intelligentcontent/brands/noe-program/us/en/images/mobile/bg-1.png) left top no-repeat, url(/content/dam/intelligentcontent/brands/noe-program/us/en/images/mobile/bg-3.png) right bottom no-repeat;
    background-size: 100%, 100%;
    /* height: 1000px; */
    background-position-y: -215px, bottom;
    background-color: #F5E2DC;
    /* padding-top: 58px; */
    padding-bottom: 288px;
}

.signup-copy {
    padding-top: 58px;
}

.signup-copy .head-2 {
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px;
    letter-spacing: -0.5px;
    margin-bottom: 9px;
}

.signup-copy p.body-copy {
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 27px;
    letter-spacing: -0.5px;
}

.section-three {
    /* margin-top: -25px; */
    /* background: url(/content/dam/intelligentcontent/brands/noe-program/us/en/images/mobile/bg-3-texture1.png) left no-repeat, url(/content/dam/intelligentcontent/brands/noe-program/us/en/images/mobile/bg-3-texture2.png) right no-repeat; */
    /* background-size: 30%, 30%; */
    /* background-color: #3A3C91; */
    margin-top: -43px;
    background: url(/content/dam/intelligentcontent/brands/noe-program/us/en/images/mobile/bg-3-texture1.png) left no-repeat, url(/content/dam/intelligentcontent/brands/noe-program/us/en/images/mobile/bg-3-texture2.png) right no-repeat;
    background-size: 27%, 29%;
    background-position: left 20px, right 20px;
    background-color: #3A3C91;
}

.section-three .head-3 {
    font-family: 'Rafaella-Bold';
    font-size: 30px;
    line-height: 53px;
    /* letter-spacing: -0.5px; */
    letter-spacing: 0;
    color: #ffffff;
}

.section-3--left {
    color: #ffffff;
    padding-bottom: 62px;
    /*text-align: center;*/
}

.section-3--left .s-letter {
    display: inline-block;
    margin-right: -10px;
}

.section-3--left  .headshot-img {
    width: 224px;
    height: auto;
    margin: 10px auto 15px;
}

.section-3--left  p.author-name,.section-3--left  h2.author-name {
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: 22px; 
    letter-spacing: -0.4px;
    margin-bottom: 14px;
}

.section-3--left  p.author-description {
    font-size: 18px;
    line-height: 1.6;
    font-weight: 500;
    letter-spacing: -0.2px;
    text-align: left;
    margin-bottom: 10px;
}
.section-3--left  p.body-copy {
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px; 
    letter-spacing: -0.5px;
    width: 89%;
    margin: 0 auto 19px;
}

.section-3--left a.download-cta {
    padding-right: 19px;
}

a.backto-top-btn {
    display: inline-flex;
    padding: 12px 24px;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    background: #DF2811;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    line-height: 16px;
    letter-spacing: -0.5px;
    margin: 20px auto;
}

span.backto-top-btn__img {
    margin-left: 8px;
}

span.backto-top-btn__img > img {
    width: 11px;
    height: 13px;
    position: relative;
}

.head-sticky {
    background: url(/content/dam/intelligentcontent/brands/noe-program/us/en/images/mobile/heading-mob.png) no-repeat;
    background-size: cover;
}

.head-img-mob {
    padding: 27px 0 15px;
}

.head-img-mob img {
    width: 295px;
    height: 57px;
    margin: auto;
}

.footer-container {
    padding: 43px 0 67px;
    color: #ffffff;
    background: url(/content/dam/intelligentcontent/brands/noe-program/us/en/images/mobile/footer-texture.png) bottom no-repeat;
    background-size: 100%;
    background-color: #1F2157;
}

.footer-container img.cmp-image__image {
    width: 255px;
    height: 62px;
    margin: 0px auto 72px;
}

ul.footer-links > li > a {
    color: #FFF;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
}
ul.footer-links > li > a:hover{
    text-decoration: underline;
}

ul.footer-links {
    text-align: center;
}

ul.footer-links > li:not(:last-child) {
    margin-bottom: 24px;
}

ul.footer-links > li:last-child {
    margin-bottom: 38px;
}

.footer-copy p {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    text-align: center;
}

.footer-copy p:first-child {
    margin-bottom: 2px;
}

/*Hover effects*/
a:hover, a:focus {
    text-decoration: none;
}

a.scroll-link:hover span.scroll-link--img img:nth-child(2),
a.scroll-link:focus span.scroll-link--img img:nth-child(2) {

    top: 55%;
    width: 10px;
    transition: top 0.3s ease-in;
    transition-delay: 0.1s;
}

a.download-cta:hover,
a.download-cta:focus,
a.backto-top-btn:hover,
a.backto-top-btn:focus {
     background: #F15C49;
}

a.download-cta:hover span.download-cta__img img:nth-child(2),
a.download-cta:focus span.download-cta__img img:nth-child(2) {
    top: 3px;
    transition: top 0.3s ease-in;
    transition-delay: 0.1s;
}

a.backto-top-btn:hover span.backto-top-btn__img img,
a.backto-top-btn:focus span.backto-top-btn__img img {
    top: -4.5px;
    transition: top 0.3s ease-in;
    transition-delay: 0.1s;
}

.cmp-dynamicform-v2 .cmp-dynamicform__generated-form .cmp-dynamicform__form-group button.cmp-dynamicform__submit-btn:hover:after {
    position: relative;
    left: 5px;
    transition: all 0.2s ease-in;
}

.cmp-dynamicform-v2 .cmp-dynamicform__generated-form .cmp-dynamicform__form-group button.cmp-dynamicform__submit-btn:hover,
.cmp-dynamicform-v2 .cmp-dynamicform__generated-form .cmp-dynamicform__form-group button.cmp-dynamicform__submit-btn:focus {
    background: #F15C49;
    outline: 0;
}

/*Signup form style starts here*/
.noe-home-page .cmp-dynamicform-v2 .cmp-dynamicform__generated-form {
    padding: 0;
}

.noe-home-page .cmp-dynamicform-v2 .cmp-dynamicform__generated-form .form-control:not(textarea) {
    padding: 6px 12px;
    height: 40px;
    border-radius: 4px;
    border: 1px #F5E2DC;
}

.cmp-dynamicform-v2 .cmp-dynamicform__generated-form .cmp-dynamicform__form-group:not(.cmp-dynamicform__form-radio) > .cmp-dynamicform__form-label-container, 
button.cmp-dynamicform__clear-btn,
.cmp-dynamicform-v2 .cmp-dynamicform__generated-form .cmp-dynamicform__form-group button.cmp-dynamicform__submit-btn span:nth-child(1),
div#field-group-66b9e71b0b69820002e8bdef label > span.text-danger {
    display: none;
}

.noe-home-page .cmp-dynamicform-v2 .cmp-dynamicform__generated-form .cmp-dynamicform__form-group {
    margin-bottom: 24px;
}

.cmp-dynamicform-v2 .cmp-dynamicform__generated-form .cmp-dynamicform__form-control-container input::placeholder,
.cmp-dynamicform-v2 .cmp-dynamicform__generated-form .cmp-dynamicform__form-control-container select {
    color: #000;
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.cmp-dynamicform-v2 .cmp-dynamicform__generated-form .cmp-dynamicform__form-group.cmp-dynamicform__form-radio label.cmp-dynamicform__control-label {
    color: #333;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
}

.cmp-dynamicform-v2 .cmp-dynamicform__generated-form .cmp-dynamicform__form-group.cmp-dynamicform__form-radio > .cmp-dynamicform__form-label-container {
    width: 95%;
    margin-bottom: 6px;
}

.cmp-dynamicform-v2 .cmp-dynamicform__generated-form .cmp-dynamicform__form-group.cmp-dynamicform__form-radio > .cmp-dynamicform__form-control-container .radio .cmp-dynamicform__vcenter {
    border-radius: 4px;
    border: 1px solid #2F3376;
    background: #3A3F97;
    color: #fff;
    padding: 15px 10px 0px 10px;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    width: 47%;
    height: 85px;
}

.cmp-dynamicform-v2 .cmp-dynamicform__generated-form .cmp-dynamicform__form-group.cmp-dynamicform__form-radio > .cmp-dynamicform__form-control-container .radio .cmp-dynamicform__vcenter input[type="radio"] {
    appearance: none;
    -webkit-appearance: none;
}

.cmp-dynamicform-v2 .cmp-dynamicform__generated-form .cmp-dynamicform__form-group.cmp-dynamicform__form-radio > .cmp-dynamicform__form-control-container .radio .cmp-dynamicform__vcenter:nth-child(1) input[type="radio"] {
    width: 54px!important;
    height: 66px;
    background: url(/content/dam/intelligentcontent/brands/noe-program/us/en/images/desktop/check-1.png) no-repeat;
    background-size: contain;
    margin: 0 10px 0 0px;
    position: relative;
    top: 2px;
}

.cmp-dynamicform-v2 .cmp-dynamicform__generated-form .cmp-dynamicform__form-group.cmp-dynamicform__form-radio > .cmp-dynamicform__form-control-container .radio .cmp-dynamicform__vcenter label {
    display: flex;
    align-items: flex-start;
}

.cmp-dynamicform-v2 .cmp-dynamicform__generated-form .cmp-dynamicform__form-group.cmp-dynamicform__form-radio > .cmp-dynamicform__form-control-container .radio .cmp-dynamicform__vcenter label > span {
    width: 52%;
    display: inline-block;
    position: relative;
    top: 6px;
}

.cmp-dynamicform-v2 .cmp-dynamicform__generated-form .cmp-dynamicform__form-group.cmp-dynamicform__form-radio > .cmp-dynamicform__form-control-container .radio .cmp-dynamicform__vcenter:nth-child(2) {
    padding: 15px 2px 0px 3px;
}

.cmp-dynamicform-v2 .cmp-dynamicform__generated-form .cmp-dynamicform__form-group.cmp-dynamicform__form-radio > .cmp-dynamicform__form-control-container .radio .cmp-dynamicform__vcenter:nth-child(2) input[type="radio"] {
    width: 67px!important;
    height: 64px;
    background: url(/content/dam/intelligentcontent/brands/noe-program/us/en/images/desktop/check-2.png) no-repeat;
    background-size: contain;
    margin: 0 3px 0 0;
    position: relative;
    top: 3px;
}

.cmp-dynamicform-v2 .cmp-dynamicform__generated-form .cmp-dynamicform__form-group.cmp-dynamicform__form-radio > .cmp-dynamicform__form-control-container .radio {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

div#field-group-66b9e71b0b69820002e8bdec {
    width: 59.7%;
    float: left;
}

div#field-group-66b9e71b0b69820002e8bded {
    width: 36%;
    float: left;
    margin-left: 14px;
}

div#field-66b9e71b0b69820002e8bdec:after {
    content: "";
    width: 32px;
    height: 32px;
    position: absolute;
    top: 2px;
    right: 3px;
    background-color: #fff;
    background-image: url(/content/dam/intelligentcontent/brands/noe-program/us/en/images/desktop/dropdown-arrows.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 20px 20px;
    pointer-events: none;
}

div#field-66b9e71b0b69820002e8bdf0 input[type="checkbox" i] {
   width: 30px!important;
   height: 30px;
   background: #fff;
   margin: 0 9px 0 0;
   border-radius: 5px;
   border-color: #FEEBE8!important;
   -webkit-appearance: none;
}


div#field-66b9e71b0b69820002e8bdf0 .cmp-dynamicform__vcenter label {
    display: flex;
}

div#field-66b9e71b0b69820002e8bdf0 .cmp-dynamicform__vcenter label span {
    width: 85.14%;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.cmp-dynamicform__form-infosection {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    letter-spacing: -0.4px;
}

.cmp-dynamicform__form-infosection a {
    color: #06F;
    text-decoration: underline;
    white-space: nowrap;
}

div#field-group-66b9e71b0b69820002e8bdf2 {
    margin-right: 1px;
}

.cmp-dynamicform-v2 .cmp-dynamicform__generated-form .button-group {
    margin-top: 28px;
}

.cmp-dynamicform-v2 .cmp-dynamicform__generated-form .cmp-dynamicform__form-group button.cmp-dynamicform__submit-btn {
    border-radius: 4px;
    background: #DF2811;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 16px;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 54px;
    text-align: center;
    max-width: 324px;
    width: 100%;
	position: relative;
    z-index: 1;
}

.cmp-dynamicform-v2 .cmp-dynamicform__generated-form .cmp-dynamicform__form-group button.cmp-dynamicform__submit-btn:before {
    content: "Sign up";
}

.cmp-dynamicform-v2 .cmp-dynamicform__generated-form .cmp-dynamicform__form-group button.cmp-dynamicform__submit-btn:after {
    content: "";
    width: 12px;
    height: 17px;
    display: inline-block;
    border: 1px solid transparent;
    background: url(/content/dam/intelligentcontent/brands/noe-program/us/en/images/desktop/right-arrow.png) no-repeat;
    background-size: cover;
    margin-left: 8px;
}

/*.cmp-dynamicform-v2 .cmp-dynamicform__generated-form .cmp-dynamicform__form-group.cmp-dynamicform__form-radio > .cmp-dynamicform__form-control-container .radio .cmp-dynamicform__vcenter:nth-child(1):hover,*/
/*.cmp-dynamicform-v2 .cmp-dynamicform__generated-form .cmp-dynamicform__form-group.cmp-dynamicform__form-radio > .cmp-dynamicform__form-control-container .radio .cmp-dynamicform__vcenter:nth-child(1):focus*/
.cmp-dynamicform-v2 .cmp-dynamicform__generated-form .cmp-dynamicform__form-group.cmp-dynamicform__form-radio > .cmp-dynamicform__form-control-container .radio .cmp-dynamicform__vcenter:hover,
.cmp-dynamicform-v2 .cmp-dynamicform__generated-form .cmp-dynamicform__form-group.cmp-dynamicform__form-radio > .cmp-dynamicform__form-control-container .radio .cmp-dynamicform__vcenter:focus{
    border-color: #2F3376;
    background: #080C59;
}

/*.radio .cmp-dynamicform__vcenter:nth-child(1):has(> label >input[type="radio"]:checked),*/
.radio .cmp-dynamicform__vcenter:has(> label >input[type="radio"]:checked) {
    background: #080C59!important;
    border: 3px solid #DF2811!important;
}

/*.radio .cmp-dynamicform__vcenter:nth-child(2):has(> label >input[type="radio"]:checked) {
    border: 1px solid #A0A4F6!important;
    background: #A0A4F6!important;
}*/

div#field-66b9e71b0b69820002e8bdf0 input[type="checkbox"]:checked {
    background-image: url(/content/dam/intelligentcontent/brands/noe-program/us/en/images/desktop/checkmark.png);
    background-size: 100% 100%;
}

.cmp-dynamicform-v2 .cmp-dynamicform__generated-form .text-danger {
    margin-top: 5px;
}

.noe-home-page .cmp-dynamicform-v2 .cmp-dynamicform__generated-form > h2 {
    display: block;
    color: #333;
    font-family: Montserrat;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    margin-bottom: 6px;
}

.root.container[aria-hidden='true'] {
    visibility: visible;
}

.cmp-dynamicform-v2 .cmp-dynamicform__generated-form .cmp-dynamicform__form-group.cmp-dynamicform__form-radio > .cmp-dynamicform__form-control-container .radio .cmp-dynamicform__vcenter:nth-child(1) input[type="radio"] {
    top: -1px;
}

.cmp-dynamicform-v2 .cmp-dynamicform__generated-form .cmp-dynamicform__form-group.cmp-dynamicform__form-radio > .cmp-dynamicform__form-control-container .radio .cmp-dynamicform__vcenter {
    border: 3px solid transparent;
}

.cmp-dynamicform-v2 .cmp-dynamicform__generated-form .cmp-dynamicform__form-group.cmp-dynamicform__form-radio > .cmp-dynamicform__form-control-container .radio .cmp-dynamicform__vcenter:nth-child(2) input[type="radio"] {
    top: 2px;
}

/*.radio .cmp-dynamicform__vcenter:nth-child(2):has(> label >input[type="radio"]:checked) {
    border: 3px solid transparent!important;
}*/

/*Signup form style ends here*/

/*Modal popup style starts here*/
.modal {
    background: rgba(49, 54, 126, 0.75)!important;
    backdrop-filter: blur(7.5px)!important;
}

.modal.modal--visible {
    overflow: scroll;
    overflow-x: hidden;
    z-index: 9999999;
    padding: 0;
}

.modal-box {
    max-width: 1132px;
    width: 90%;
}

.noe-home-page .modal-box__content {
    padding: 0!important;
}

button.modal__close span.modal__closeIcon svg,
button.modal__close span.modal__closeLabel {
    display: none;    
}

button.modal__close:has(+ .modal-box .modal-box__content> div > .cmp-dynamicform__form-success-msg) {
    max-width: 1132px;
    width: 90%!important;
    position: relative;
    margin-top: auto;
    top: 35px;
    right: 0;
    color: #000;
    height: 0;
    z-index: 1005;
    background-color: transparent;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    
}

button.modal__close .modal__closeIcon{
    width: 22px;
    height: 22px;
    /*border: 1px solid red;*/
    background: url(/content/dam/intelligentcontent/brands/noe-program/us/en/images/desktop/close-black-btn.png) no-repeat;
    background-size: cover;
    position: absolute;
    right: 12px;
    top: -21px;
    outline: none !important;
}

.modal-box:has(.modal-box__content > div > .cmp-dynamicform__form-success-msg){
    max-width: 1132px;
    width: 90%;
    /*height: 586px;*/
    /*padding: 121px 0 0px 89px;*/
    /*margin-top: unset;*/
    /*border-radius: 4px;*/
    /*border: 2px solid #FFF;*/
    /*background: url(/content/dam/intelligentcontent/brands/noe-program/us/en/images/desktop/popup-bg.png) right bottom no-repeat, url(/content/dam/intelligentcontent/brands/noe-program/us/en/images/desktop/popup-texture.png) left bottom no-repeat;*/
    /*background-size: 50%, 50%;
    background: url(/content/dam/intelligentcontent/brands/noe-program/us/en/images/desktop/popup-bg-desk.png) right bottom no-repeat, url(/content/dam/intelligentcontent/brands/noe-program/us/en/images/desktop/popup-texture.png) left bottom no-repeat;
    background-size: contain, 50%; */
    /*background: url(/content/dam/intelligentcontent/brands/noe-program/us/en/images/desktop/Art1-5x.png) right bottom no-repeat, url(/content/dam/intelligentcontent/brands/noe-program/us/en/images/desktop/popup-texture.png) left bottom no-repeat;*/
    /*background-size: 52%, 50%;*/
    /*background-color: #F8DFD9;*/
}

.noe-home-page .cmp-modal__modalbox.modal-md .modal-box {
    max-width: 1132px;
    width: 90%;
    height: 586px;
    padding: 121px 0 0px 89px;
     margin-top:auto;
    margin-bottom:auto;
    border-radius: 4px;
    border: 2px solid #FFF;
    /*background: url(/content/dam/intelligentcontent/brands/noe-program/us/en/images/desktop/popup-bg.png) right bottom no-repeat, url(/content/dam/intelligentcontent/brands/noe-program/us/en/images/desktop/popup-texture.png) left bottom no-repeat;*/
    /*background-size: 50%, 50%;
    background: url(/content/dam/intelligentcontent/brands/noe-program/us/en/images/desktop/popup-bg-desk.png) right bottom no-repeat, url(/content/dam/intelligentcontent/brands/noe-program/us/en/images/desktop/popup-texture.png) left bottom no-repeat;
    background-size: contain, 50%; */
    background: url(/content/dam/intelligentcontent/brands/noe-program/us/en/images/desktop/Art1-5x.png) right bottom no-repeat, url(/content/dam/intelligentcontent/brands/noe-program/us/en/images/desktop/popup-texture.png) left bottom no-repeat;
    background-size: 52%, 50%;
    background-color: #F8DFD9;
}

.modal-box .modal-box__content .cmp-dynamicform__form-success-msg{
    height: 586px;
    padding: 121px 0 0px 89px;
    margin-top: unset;
    border-radius: 4px;
    border: 2px solid #FFF;
    /*background: url(/content/dam/intelligentcontent/brands/noe-program/us/en/images/desktop/popup-bg.png) right bottom no-repeat, url(/content/dam/intelligentcontent/brands/noe-program/us/en/images/desktop/popup-texture.png) left bottom no-repeat;*/
    /*background-size: 50%, 50%;
    background: url(/content/dam/intelligentcontent/brands/noe-program/us/en/images/desktop/popup-bg-desk.png) right bottom no-repeat, url(/content/dam/intelligentcontent/brands/noe-program/us/en/images/desktop/popup-texture.png) left bottom no-repeat;
    background-size: contain, 50%; */
    background: url(/content/dam/intelligentcontent/brands/noe-program/us/en/images/desktop/Art1-5x.png) right bottom no-repeat, url(/content/dam/intelligentcontent/brands/noe-program/us/en/images/desktop/popup-texture.png) left bottom no-repeat;
    background-size: 52%, 50%;
    background-color: #F8DFD9;
}

.popup-wrap {
    width: 50%;
}

h2.popup-head {
    font-size: 50px;
    font-style: normal;
    font-weight: 700;
    line-height: 50px;
    letter-spacing: -0.5px;
    color: #333;
}

.popup-wrap a.download-cta {
    width: auto;
    margin: 49px 0 27px;
}

.popup-wrap span.download-cta__img {
    margin-left: 11px;
}

.popup-wrap .popup-close {
    position: static;
    border-radius: 4px;
    border: 3px solid #31367E;
    display: flex;
    /*padding: 12px 19px 12px 24px;*/
    align-items: center;
    justify-content: center;
    width: 115px;
    height: 40px;
}

span.close--txt {
    font-size: 19px;
    font-style: normal;
    font-weight: 600;
    line-height: 16px;
    letter-spacing: -0.5px;
    color: #31367E;
}

.popup-wrap .popup-close img.close-btn--img {
    width: 11px;
    height: auto;
    margin-left: 10px;
}

.popup-wrap .popup-close:hover img.close-btn--img {
    transform: scale(1.4);
}

.popup-wrap.opt-form-msg {
    width: 43%;
}

.opt-form p.popup-copy {
    font-size: 28px;
    font-style: normal;
    font-weight: 400;
    line-height: 33px;
    letter-spacing: -0.5px;
    margin: 19px 0 27px;
}

.noe-home-page .opt--form div#field-group-66bb91337cc5640002e41e40 {
    display: none;
}

.noe-home-page .opt--form div#field-group-66bb91337cc5640002e41e41 {
    margin-bottom: 25px;
}

.noe-home-page .opt--form .cmp-dynamicform__generated-form .cmp-dynamicform__form-group button.cmp-dynamicform__submit-btn {
    width: 148px;
}

.noe-home-page .opt--form .cmp-dynamicform__generated-form .cmp-dynamicform__form-group button.cmp-dynamicform__submit-btn:before {
    content: "Continue";
}

.noe-home-page .opt--form .cmp-dynamicform__generated-form .button-group {
    margin-top: 25px;
}

.noe-home-page .opt--form .cmp-dynamicform__form-group.captch-holder {
    display: none;
}

.noe-home-page .cmp-modal--defaultStyle .modal__close {
    height: 0;
}

.noe-home-page .cmp-modal--defaultStyle.modal--visible {
    overflow-y: auto!important;
}
/*modal popup style ends here*/
span.author-desc-next-line {
    margin-top: 7px;
    display: inline-block;
}

/*****error page********/

#error-404 #main-container,#error-500 #main-container{
    width: 100%;
    height: 758px;
    background-color: #FEEBE8;
}
#error-404 #inner-container,#error-500 #inner-container{
    padding: 123px 0 0 149px;
}
#error-404 #inner-container img,#error-500 #inner-container img{
    max-width: 592px;
    width: 100%;
    height: 114px;
    margin-bottom: 66px;
}
#error-404 .subhead,#error-500 .subhead{
    color: #333;
    font-family: Montserrat;
    font-size: 28px;
    font-style: normal;
    font-weight: 500;
    line-height: 35px;
    letter-spacing: -0.5px;
    margin-bottom: 20px;
}
#error-404 .subheading_h2 {
    color: #333;
    font-family: Montserrat;
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
    letter-spacing: -0.4px;
}
#error-404 #inner-container p,#error-500 #inner-container p,#error-500 #inner-container h2{
    color: #333;
    font-family: Montserrat;
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px; /* 145.455% */
    letter-spacing: -0.4px;

}
#error-404 #inner-container a,#error-500 #inner-container a{
    color: #FFF;
    font-family: Montserrat;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 16px;
    letter-spacing: -0.5px;
    display: flex;
    width: 314px;
    height: 63px;
    padding: 12px 19px 12px 24px;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    background: #DF2811;
    margin-top: 46px;
}
#error-404 #inner-container a:after,#error-500 #inner-container a:after{
    content: "";
    width: 10px;
    height: 15px;
    display: inline-block;
    border: 1px solid transparent;
    background: url(/content/dam/intelligentcontent/brands/noe-program/us/en/images/desktop/right-arrow.png) no-repeat;
    background-size: cover;
    margin-left: 7px;
}
#error-404 .textured-image img,#error-500 .textured-image img{
    position: absolute;
    left: 0;
    top: 0;
}
#error-404 .footer-container .cmp-text,#error-500 .footer-container .cmp-text{
	padding: 0;
}





/*****error page********/




@media screen and (max-width: 991px) {


	/*****error page********/

	#error-404 #inner-container a,#error-500 #inner-container a{
        width: 288px;
        height: 54px;
        font-size: 18px;
        line-height: 16px;
        margin-top: 40px;
    }
    #error-404 #inner-container,#error-500 #inner-container{
        padding: 26px 18px 0 18px;
    }
    #error-404 #inner-container img,#error-500 #inner-container img{
        max-width: 345px;
        height: 66px;
        margin-bottom: 50px;
    }
    #error-404 .textured-image img,#error-500 .textured-image img{
        display: none;
    }
    #error-404 .subhead,#error-500 .subhead{
        font-size: 22px;
        margin-bottom: 12px;
        line-height: 28px;
    }
    #error-404 #inner-container p,#error-500 #inner-container p,#error-500 #inner-container h2{
        font-size: 18px;
        line-height: 24px;
    }
    #error-404 #main-container,#error-500 #main-container{
        height: 485px;
    }





    /*****error page********/


    .desk-only {
        display: none !important;
    }
    
    .section-3--left {
        /*text-align: center;*/
        padding-bottom: 52px;
    }
    
    .two-col-container .aem-Grid > .aem-GridColumn {
        width: 100%!important;
    }
    
    .section-1--left .head {
        margin-bottom: 13px;
    }
    
    div#header-sticky-mob {
        position: static;
    }
    
    .head-sticky.js-mob-sticky {
        position: fixed;
        bottom: 0;
        width: 100%;
        z-index: 100;
    }
    
    .noe-home-page .cmp-dynamicform-v2 .cmp-dynamicform__generated-form {
        margin-top: 29px;
    }
    
    .section-three .head-3 {
        line-height: 44px;
        margin-top: 50px;
    }
    
    .section-3--left .headshot-img {
        width: 208px;
    }

    .section-3--left  p.author-description {
        margin-bottom: 14px;
    }

    /*modal-popup style starts here*/
    .modal {
        display: flex;
    }
    
    /*.modal-box:has(.modal-box__content > div > .cmp-dynamicform__form-success-msg), .noe-home-page .cmp-modal__modalbox.modal-md .modal-box {*/
    /*    padding: 64px 8px 0;*/
    /*    height: 658px;*/
       /* background: url(/content/dam/intelligentcontent/brands/noe-program/us/en/images/mobile/popup-bg.png) bottom no-repeat;*/
    /*    background: url(/content/dam/intelligentcontent/brands/noe-program/us/en/images/desktop/Art1-5x.png) bottom no-repeat;*/
    /*    background-size: 100%;*/
    /*    background-color: #F8DFD9;*/
    /*}*/
    button.modal__close .modal__closeIcon {
        right: 0;
        top: -24px;
    }
    
    .popup-wrap {
        width: 100%;
    }
    
    h2.popup-head {
        font-size: 32px;
        line-height: 40px;
    }
    
    .popup-wrap a.download-cta {
        width: 280px;
        height: 58px;
        padding-right: 17px;
        margin: 31px 0 25px;
    }
    
    .popup-wrap .download-cta__img img:nth-child(1) {
        width: 16px;
    }
    
    .popup-wrap span.download-cta__img {
        width: 23px;
        height: 19px;
        margin-top: 3px;
    }
    
    .popup-wrap .popup-close {
        background-color: transparent;
    }
    
    .popup-wrap.opt-form-msg {
        width: 90%;
    }
    
    .opt-form-msg p.popup-copy {
        font-size: 16px;
        line-height: 24px;
        margin: 13px 0 16px;
    }
    
    .opt-form1 {
        width: 85%;
    }
    
    .opt-form1 h2.popup-head {
        width: 68%;
    }
    
    .cmp-modal--defaultStyle.modal {
        padding: 0!important;
        display: flex !important;
    }
    
    .opt-form1 p.popup-copy {
        font-size: 16px;
        line-height: 24px;
        margin: 13px 0 22px;
    }
    
    .noe-home-page .cmp-modal__modalbox.modal-md .modal-box {
        margin-top: auto;
        height: 662px;
    }
    
    .cmp-modal--defaultStyle .modal-box span.modal__closeIcon {
        right: -4px;
        top: 6px;
    }
    
    .noe-home-page .opt--form .cmp-dynamicform__generated-form .cmp-dynamicform__form-group button.cmp-dynamicform__submit-btn {
        width: auto;
        height: 33px;
        font-size: 16px;
        padding: 12px 16px 12px 16px;
    }
    
    .noe-home-page .opt--form .cmp-dynamicform__generated-form {
        margin-top: 22px;
    }
    
    .noe-home-page .opt--form .cmp-dynamicform__generated-form .button-group {
        margin-top: 21px;
    }
    
        
    .thanyou-wrap a.download-cta {
        width: auto;
        font-size: 19px;
        line-height: 20px;
    }
    /*modal-popup style ends here*/
    .cmp-dynamicform-v2 .cmp-dynamicform__generated-form .cmp-dynamicform__form-group.cmp-dynamicform__form-radio > .cmp-dynamicform__form-control-container .radio .cmp-dynamicform__vcenter:nth-child(1) input[type="radio"] {
        top: 1px;
    }
    
    .cmp-dynamicform-v2 .cmp-dynamicform__generated-form .cmp-dynamicform__form-group.cmp-dynamicform__form-radio > .cmp-dynamicform__form-control-container .radio .cmp-dynamicform__vcenter:nth-child(2) input[type="radio"] {
        top: 3px;
    }
    
    .head-3 span {
        margin-left: 16px;
    }
    
    .section-3--left p.author-name,.section-3--left h2.author-name {
        margin-bottom: 50px;
    }
     .section-two{
        padding-bottom:35%;
    }
    
    
}

@media screen and (min-width: 992px){
    
    .mob-only {
        display: none;
    }
    
    .desk-only {
        display: block;
    }
    
    .inner-container {
        padding: 0;
    }
    
    .section-one {
        /*padding: 123px 0 75px;*/
        background: url(/content/dam/intelligentcontent/brands/noe-program/us/en/images/desktop/bg-1.png) right bottom no-repeat;
        background-size: cover;
        background-position-y: bottom;
        background-color: #F5E2DC;
        padding: 123px 0 150px;
        margin-bottom: -12px;
    }
    
    .section-one .inner-container {
        max-width: 1132px;
        margin: auto;
    }
    
    .section-one .two-col-container .aem-Grid > div:nth-child(1) {
    width: 53%;
    max-width: 595px;
    /*margin-right: 150px;*/
    margin-right: 13.25%;
}
    
    .section-one .two-col-container .aem-Grid > div:nth-child(2) {
        max-width: 380px;
        width: 35%;
    }
    
    .section-1--left .subhead {
        font-size: 28px;
        line-height: 35px;
        width: 100%;
        letter-spacing: -0.5px;
        margin-bottom: 20px;
    }
    
    .section-1--left p {
        font-size: 22px;
        line-height: 32px;
    }
    
    .download-pdf-wrap p {
        font-size: 22px;
        line-height: 32px;
        /*margin: 11px 0 20px;*/
        margin: 9px 0 15px;
    }
    
    .scroll-link--txt:after {
        bottom: 19px;
    }
    
    .scroll-link--img {
        width: 49px;
        height: 49px;
    }
    
    .scroll-link {
        font-size: 18px;
    }
    
    span.scroll-link--txt {
        top: 7px;
    }
    
    .scroll-link--img img:nth-child(2) {
        width: 10px;
    }
    
    .download-pdf-wrap {
        /*padding: 16px 10px 31px;*/
        padding: 13px 10px 31px;
    }
    
    a.download-cta {
        font-size: 19px;
        width: 212px;
        height: 40px;
        padding: 11px 15px 12px 24px;
    }
    
    .section-1--left {
        padding: 0;
    }
    
    .section-two {
        /*background: url(/content/dam/intelligentcontent/brands/noe-program/us/en/images/desktop/bg-2.png) no-repeat;*/
        /*background-size: 100%;*/
        /*background-position-y: -52px;*/
        /*background-color: #F5E2DC;*/
        background: url(/content/dam/intelligentcontent/brands/noe-program/us/en/images/desktop/sec2-texture1.png) right top no-repeat, url(/content/dam/intelligentcontent/brands/noe-program/us/en/images/desktop/sec2-texture2.png) left center no-repeat;
        background-position-y: -140px, center;
        background-color: #F5E2DC;
        padding-bottom: 100px;
    }
    
    div#sign-up {
        scroll-margin-top: 78px;
        padding-bottom: 70px;
        margin-top: -1px;
        position: relative;
    }
    
    .section-two div#sign-up:after {
        content:"";
        display: inline-block;
        width: 400px;
        height: 519px;
        background: url(/content/dam/intelligentcontent/brands/noe-program/us/en/images/desktop/people-img.png) right bottom no-repeat;
        background-size: contain;
        position:absolute;
        bottom: -19px;
        right: 0;
        z-index: 0;
        bottom: -66px;
        /*border: 1px solid;*/
    }

    .signup-copy {
        padding-top: 13px;
    }
    
    .signup-copy .head-2 {
        font-size: 40px;
        line-height: 42px;
    }
    
    .section-two .inner-container {
        max-width: 787px;
        margin: auto;
    }
    
    .signup-copy p.body-copy {
        font-size: 24px;
        line-height: 32px;
        width: 97%;
        margin: auto;
    }
    
    .section-three {
    background: url(/content/dam/intelligentcontent/brands/noe-program/us/en/images/desktop/bg-3.png) no-repeat;
    background-size: 100% 100%;
    /* margin-top: -174px; */
    padding-top: 240px;
    /*margin-top: -256px;*/
    margin-top: -220px;
    position: relative;
}
    
    .section-three .inner-container {
        max-width: 869px;
        margin: auto;
    }
    
    .s-letter {
        margin-left: 13px;
    }
    
    .section-3--left p.body-copy {
        width: 98%;
        line-height: 26px;
        margin: 0 0 7px;
    }
    
    .section-three .two-col-container .aem-Grid > div:nth-child(1) {
        width: 66%;
        max-width: 565px;
        margin-right: 0px;
    }
    
    .section-three .two-col-container .aem-Grid > div:nth-child(2) {
        max-width: 340px;
        width: 30%;
    }
    
    .section-three .head-3 {
        font-size: 38px;
    }
    
    .section-3--left p.author-name,.section-3--left h2.author-name {
        margin-bottom: 50px;
        margin-top: 20px;
    }
    
    .section-3--left a.download-cta {
        margin-top: 17px;
    }
    
    .section-3--left {
        padding-bottom: 108px;
    }
    
    .section-three .two-col-container .aem-Grid > div:nth-child(2) img.cmp-image__image {
        /*transform: scale(0.93);*/
        /*margin-top: 31px;*/
        transform: scale(1.05);
        /*margin-top: 40px;*/
        margin-top: 20px;
        margin-left: 40px;
    }
    
    a.backto-top-btn {
        margin: 22px auto;
        font-size: 19px;
    }
    
    span.backto-top-btn__img > img {
        width: 11px;
        height: auto;
    }
    
    .footer-container {
        padding: 49px 0 62px;
        background: url(/content/dam/intelligentcontent/brands/noe-program/us/en/images/desktop/footer-texture.png) bottom no-repeat;
        background-size: 100%;
        background-color: #1F2157;
    }
    
.footer-container .inner-container {
    max-width: 1132px;
    margin: auto;
    width: 97%;
}
    
    .footer-container .inner-container > .cmp-container {
        display: flex;
        justify-content: space-between;
    }
    
    .footer-copy p {
        text-align: left;
    }
    
    .footer-container img.cmp-image__image {
        margin: 0;
        width: 283.46px;
        height: 68.74px;
    }
    
    .footer-copy p:first-child {
        margin-bottom: 0;
        margin-top: 87px;
    }
    .cmp-text .footer-copy:last-child p {
        margin: 0;
        line-height: 0;
    }
    
    
    ul.footer-links {
        text-align: right;
    }
    
    ul.footer-links > li:not(:last-child) {
        margin-bottom: 21px;
    }
    
    ul.footer-links > li:first-child {
        margin-top: 21px;
    }
    
    ul.footer-links > li:last-child {
        margin-bottom: 0;
    }
    
    .desk-header-sticky {
        width: 100%;
        height: 59px;
        background: url(/content/dam/intelligentcontent/brands/noe-program/us/en/images/desktop/sticky-texture.png) top no-repeat;
        background-size: 100%;
        background-color: #F8D0C7;
        position: absolute;
        top: -100px;
        transition: top 0.3s ease-in-out;
    }
    
    .desk-sticky__heading img {
        width: 355px;
        height: 78px;
        margin: auto;
    }
    
    div#header-sticky {
        position: static;
    }
    
    .fixed-header {
        position: fixed;
        top: 0;
        transition: top 0.5s ease-in;
    }
    
    .head-sticky.js-mob-sticky.mob-only {
        display: none!important;
    }
    
    /*Signup form style starts here*/
    .noe-home-page .cmp-dynamicform-v2 .cmp-dynamicform__generated-form {
        max-width: 550px;
        margin: 48px auto 0;
    }
    
    .noe-home-page .cmp-dynamicform-v2 .cmp-dynamicform__generated-form .cmp-dynamicform__form-group {
        margin-bottom: 32px;
    }
    
    div#field-group-66b9e71b0b69820002e8bde6 {
        width: 259px;
        float: left;
        margin-right: 32px;
    }
    
    div#field-group-66b9e71b0b69820002e8bde7 {
        width: 259px;
        float: left;
    }
    
    div#field-group-66b9e71b0b69820002e8bde8 {
        clear: both;
    }
    
    div#field-group-66b9e71b0b69820002e8bdec {
        width: 259px;
        margin-bottom: 25px;
    }
    
    div#field-group-66b9e71b0b69820002e8bded {
        width: 259px;
        margin-left: 32px;
        margin-bottom: 25px;
    }
    
    .cmp-dynamicform-v2 .cmp-dynamicform__generated-form .cmp-dynamicform__form-control-container input::placeholder,
    .cmp-dynamicform-v2 .cmp-dynamicform__generated-form .cmp-dynamicform__form-control-container select {
        font-size: 18px;
    }
    
    div#field-66b9e71b0b69820002e8bdec:after {
        width: 43px;
    }
    
    .cmp-dynamicform-v2 .cmp-dynamicform__generated-form .cmp-dynamicform__form-group.cmp-dynamicform__form-radio > .cmp-dynamicform__form-control-container .radio .cmp-dynamicform__vcenter {
        width: 259px;
        height: 105.548px;
    }
    
    .cmp-dynamicform-v2 .cmp-dynamicform__generated-form .cmp-dynamicform__form-group.cmp-dynamicform__form-radio > .cmp-dynamicform__form-control-container .radio .cmp-dynamicform__vcenter label {
        align-items: center;
    }
    
    .cmp-dynamicform-v2 .cmp-dynamicform__generated-form .cmp-dynamicform__form-group.cmp-dynamicform__form-radio > .cmp-dynamicform__form-control-container .radio .cmp-dynamicform__vcenter:nth-child(1) input[type="radio"] {
        width: 71px!important;
        height: 88px;
        /*top: 0;*/
        margin-right: 14px;
    }
    
    .cmp-dynamicform-v2 .cmp-dynamicform__generated-form .cmp-dynamicform__form-group.cmp-dynamicform__form-radio > .cmp-dynamicform__form-control-container .radio .cmp-dynamicform__vcenter:nth-child(2) input[type="radio"] {
        width: 89px!important;
        height: 85px;
        margin-right: 8px;
    }
    
    .cmp-dynamicform-v2 .cmp-dynamicform__generated-form .cmp-dynamicform__form-group.cmp-dynamicform__form-radio > .cmp-dynamicform__form-control-container .radio .cmp-dynamicform__vcenter label > span {
        font-size: 18px;
        line-height: 24px;
        width: auto;
        /*top: -3px;*/
        top: -5px;
    }
    
    div#field-66b9e71b0b69820002e8bdf0 input[type="checkbox" i] {
        width: 42px!important;
        height: 42px;
    }
    
    div#field-66b9e71b0b69820002e8bdf0 .cmp-dynamicform__vcenter label span {
        width: 100%;
        position: relative;
        top: 3px;
    }
    
    .cmp-dynamicform__form-infosection {
        line-height: 24px;
    }
    
    div#field-group-66b9e71b0b69820002e8bdf2 {
        width: 103%;
    }
    
    div#field-group-66b9e71b0b69820002e8bdef,
    div#field-group-66b9e71b0b69820002e8bdf0,
    div#field-group-66b9e71b0b69820002e8bdf1 {
        margin-bottom: 23px;
    }
    
    .cmp-dynamicform-v2 .cmp-dynamicform__generated-form .cmp-dynamicform__form-group button.cmp-dynamicform__submit-btn {
        width: 178px;
    }
    
    .opt-form1 {
        width: 42%;
    }
    
    .opt-form1 h2.popup-head {
        width: 68%;
    }
    
    
    .noe-home-page .opt--form .cmp-dynamicform__generated-form {
        width: 42%;
        margin: 0;
    }
    
    .noe-home-page .cmp-modal--defaultStyle.modal--overflow {
        padding: 0;
    }
    
    .noe-home-page .cmp-modal__modalbox.modal-md .modal-box {
        margin-top: auto;
    }
    
    .noe-home-page .cmp-modal__modalbox.modal-md .modal-box button.modal__close .modal__closeIcon {
        top: -28px;
        right: -30px;
    }

    /*Signup form style ends here*/
	button.modal__close:has(+ .modal-box .modal-box__content> div > .cmp-dynamicform__form-success-msg) {
		max-width: 22px;
		float: right;
		width: 22px !important;
		height: 22px;
		margin: 28px 0 0 0;
		left: 543px;
		top: 36px;
        opacity: 0;
        pointer-events: none;
	}
	
	
	/*button.modal__close:has(+ .modal-box .modal-box__content> div > .cmp-dynamicform__form-success-msg .thanyou-wrap) {
        opacity: 1;
        pointer-events: all;	    
	}*/
	
	button.modal__close:has(+ .modal-box .modal-box__content> div > .cmp-dynamicform__form-success-msg) .modal__closeIcon{
		right: 0;
		top: 0;
	}
    
}

@media screen and (max-width: 991px) and (max-height: 735px) {
    .noe-home-page .cmp-modal__modalbox.modal-md .modal-box,
    .modal-box:has(.modal-box__content > div > .cmp-dynamicform__form-success-msg) {
        margin: 37px auto;
        overflow: auto;
    }

    button.modal__close:has(+ .modal-box .modal-box__content> div > .cmp-dynamicform__form-success-msg) {
        top: 71px;
        opacity: 0;
        pointer-events: none;
    }
    
    .section-two {
     padding-bottom: 144px;
    
}

}

@media screen and (min-width: 992px) and (max-width: 1150px) {
.section-one .two-col-container .aem-Grid > div:nth-child(1) {
    margin-right: 9.5%;
    margin-left: 1.5%;
}
/*#text-558b2215bd a.download-cta {*/
/*    font-size: 15px;*/
/*}*/
    
}

@media screen and (min-width: 364px) and (max-width: 766px) {
    
     .section-three {
    margin-top: -60px;
}

div#field-group-66b9e71b0b69820002e8bdec {
    width: 48%;
    float: left;
}

div#field-group-66b9e71b0b69820002e8bded {
    width: 48%;
    float: right;
    margin-left: 0px;
}

.noe-home-page .cmp-modal__modalbox.modal-md .modal-box {
    padding: 121px 0 0px 20px;
}

.noe-home-page .opt--form div#field-group-66bb91337cc5640002e41e41 {
    width: 93%;
}

.modal-box .modal-box__content .cmp-dynamicform__form-success-msg {
    padding: 121px 15px 0px 20px;
}

}


@media screen and (min-width: 320px) and (max-width: 363px) {
div#field-group-66b9e71b0b69820002e8bdec {
    width: 48%;
    float: left;
}

div#field-group-66b9e71b0b69820002e8bded {
    width: 48%;
    float: right;
    margin-left: 0px;
}

    .section-two {
    padding-bottom: 115px;
}

    .cmp-dynamicform-v2 .cmp-dynamicform__generated-form .cmp-dynamicform__form-group.cmp-dynamicform__form-radio > .cmp-dynamicform__form-control-container .radio .cmp-dynamicform__vcenter label > span{
        width:100%;
    }
    
    .noe-home-page .cmp-modal__modalbox.modal-md .modal-box {
    padding: 121px 0 0px 20px;
}

.noe-home-page .opt--form div#field-group-66bb91337cc5640002e41e41 {
    width: 93%;
}

.modal-box .modal-box__content .cmp-dynamicform__form-success-msg {
    padding: 121px 15px 0px 20px;
}

}


@media screen and (min-width: 767px) and (max-width:991px){
    .section-three {
    margin-top: -161px;
}

div#field-group-66b9e71b0b69820002e8bdec {
    width: 48.5%;
    float: left;
}

div#field-group-66b9e71b0b69820002e8bded {
    width: 48.5%;
    float: right;
    margin-left: 14px;
}

.noe-home-page .opt--form div#field-group-66bb91337cc5640002e41e41 {
    width: 60%;
}

}


@media screen and (min-width: 992px) and (max-width:1180px){
    .modal-box:has(.modal-box__content > div > .cmp-dynamicform__form-success-msg), .noe-home-page .cmp-modal__modalbox.modal-md .modal-box{
        width:92%;
        /*padding: 121px 0 0px 45px;*/
    }
    .opt-form1{
        width:51%;
    }
    .popup-wrap{
        width:54%;
    }
    a.download-cta{
        padding: 11px 15px 12px 14px;
    }
}

.modal.modal--visible>button.modal__close {
    opacity:0;
    pointer-events:none;
}
@media screen and (min-width: 505px) and (max-width:991px){
.cmp-dynamicform-v2 .cmp-dynamicform__generated-form .cmp-dynamicform__form-group.cmp-dynamicform__form-radio > .cmp-dynamicform__form-control-container .radio .cmp-dynamicform__vcenter label > span {
    top: 14px;
    text-align: center;
    left: 25px;
}

}
@media screen and (min-width: 991px) and (max-width:1040px){
    .modal-box .modal-box__content .cmp-dynamicform__form-success-msg{
        padding: 121px 0 0px 73px;
    }
    .popup-wrap{
        width:56%;
    }
}



