/* fonts Starts */
@font-face {
    font-family: 'FSMeWeb-Bold';
    src: url('../assets/fonts/FSMeWeb-Bold.eot') format('embedded-opentype');
    src: url('../assets/fonts/FSMeWeb-Bold.woff') format('woff'),
         /*url('../assets/fonts/FSMeWeb-Bold.ttf') format('truetype'),*/
		 url('../assets/fonts/FSMeWeb-Bold.eot?#iefix') format('embedded-opentype');     /* Modern Browsers */         
    font-weight: normal;
    font-style: normal;
	font-display: block;
}

@font-face {
    font-family: 'FSMeWeb-Regular';
    src: url('../assets/fonts/FSMeWeb-Regular.eot') format('embedded-opentype');
    src: url('../assets/fonts/FSMeWeb-Regular.woff') format('woff'),
         /*url('../assets/fonts/FSMeWeb-Regular.ttf') format('truetype'),*/
		 url('../assets/fonts/FSMeWeb-Regular.eot?#iefix') format('embedded-opentype');       
    font-weight: normal;
    font-style: normal;
	font-display: block;
}
@font-face {
    font-family: 'FSMeWeb-Light';
    src: url('../assets/fonts/FSMeWeb-Light.eot') format('embedded-opentype');
    src: url('../assets/fonts/FSMeWeb-Light.woff') format('woff'),
         /*url('../assets/fonts/FSMeWeb-Light.ttf') format('truetype'),*/
		 url('../assets/fonts/FSMeWeb-Light.eot?#iefix') format('embedded-opentype');     /* Modern Browsers */         
    font-weight: normal;
    font-style: normal;
	font-display: block;
}
.container-fluid {
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin: 0;
}

h1, h2, h3, h4, h5 {
    font-family: 'FSMeWeb-Regular',Arial,sans-serif;
    color: #333333;
     font-weight: 500;
}
h1 {
    font-size: 2rem !important;
    font-family: 'FSMeWeb-Bold',Arial,sans-serif;
    font-weight: bold;
}
h2 {
    font-size: 48px !important;
    font-weight: 500;
    font-family: 'FSMeWeb-Regular',Arial,sans-serif;
}
h3 {
    font-size: 40px !important;
    color: #333;
    font-weight: 500;
    font-family: 'FSMeWeb-Regular',Arial,sans-serif;
}
ui {
    font-weight: 300 !important;
    font-family: 'FSMeWeb-Light',Arial,sans-serif;
}
li {
    font-weight: 300 !important;
    font-family: 'FSMeWeb-Light',Arial,sans-serif;
}
ol {
    font-weight: 300 !important;
    font-family: 'FSMeWeb-Light',Arial,sans-serif;
}
a:hover, a:focus {
    text-decoration: underline;
}
a {
    text-decoration: none;
    color: #007DB8;
    font-weight: 700;
    font-family: 'FSMeWeb-Light',Arial,sans-serif;
}
    a:hover, a:focus, a:visited {
        color: #007DB8;
    }
a:hover {
    cursor: pointer;
}
p a {
    text-decoration: underline;
}
.underline a {
    text-decoration: underline;
}
.underline li {
    text-decoration: underline;
}
a {
    text-decoration: underline;
    color: #333;
}
p {
    font-weight: 300 !important;
    font-family: 'FSMeWeb-Light',Arial,sans-serif;
}
span {
    font-weight: 300 !important;
    font-family: 'FSMeWeb-Light',Arial,sans-serif;
}

:root {
    --white: #ffffff;
    --muted: #bfc6dc;
}

body {
    margin: 0;
}
.container{
    max-width: 1200px;
    margin: 0 auto;
}

.blueE header.site-header {
    background: #50213F;
}
.site-header-div{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 0px;
    position: relative;
    height: 80px;
}

.navs {
    display: flex;
    align-items: center;
    gap: 18px;
}

nav.primary {
    display: flex;
    align-items: center;
    gap: 12px;
}

nav.primary a {
    text-decoration: none;
    color: #fff;
    font-weight: 300;
    font-size: 15px;
    font-family:  'FSMeWeb-Light';
    line-height: 130%;
}

nav.primary a:hover {
    color: #fff;
    text-decoration: underline;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    border-radius: 10px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.04);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
}

.hamburger {
    display: none;
    background: transparent;
    border: 0;
    padding: 8px;
    width: 32px;
    height: 32px;
    position: relative;
    cursor: pointer;
    color: var(--white);
    margin-top: 8px;
    margin-right: 15px;
}

.hamburger:after {
    content: url(/media/wzrp5mcl/icon-grids.svg);
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hamburger.open:after {
    content: "✕";
    font-size: 22px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-panel {
    display: none;
    position: absolute;
    right: 12px;
    left: 12px;
    top: 64px;
    background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
    backdrop-filter: blur(6px);
    border-radius: 12px;
    padding: 14px;
    border: 1px solid rgba(255,255,255,0.03);
    box-shadow: 0 8px 30px rgba(2,6,23,0.6);
}

.mobile-panel .group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 12px;
}

.mobile-panel a {
    padding: 10px;
    border-radius: 8px;
    text-decoration: none;
    color: var(--muted);
    font-weight: 600;
}

.mobile-panel a:hover {
    color: var(--white);
    background: rgba(255,255,255,0.02);
}

@media (max-width: 767px) {
    .brand-site {
    padding-left: 25px;
}
    nav.primary {
        display: none;
    }

    .hamburger {
        display: inline-flex;
    }

    .mobile-panel {
        display: none;
    }

    .mobile-panel.open {
        display: block;
        animation: slideDown .18s ease-out;
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }
    to {
        opacity: 1;
        transform: none;
    }
}

.ppc-Section1, .ppc-Section2 {
    display: flex;
    flex-wrap: nowrap;
    gap: 50px;
    width: 100%;
    align-items: center;
    padding: 50px 0;
}
.ppc-Section2 {
    padding: 25px 0 !important;
}
.ppc-fscs-mains {
    display: flex;
    flex-wrap: nowrap;
    gap: 20px;
    margin: 20px 0;
    align-items: center;
}
.blueE .ppc-left a.btn-direct {
    background: #B73764;
    color: white;
    font-family: 'FSMeWeb-Light';
    font-size: 15px;
    font-style: normal;
    font-weight: 300;
    line-height: 130%;
    padding: 10px 20px;
    text-decoration: none;
}
.ppc-left > p {
    font-family:  'FSMeWeb-Light';
    font-style: normal;
    font-weight: 300 !important;
    line-height: 130%;
    margin: 20px 0;
    color: #333;
    font-size: 24px !important;
}

.ppc-fscs-mains p {
    color: #333;
    font-size: 13px;
}
.ppc-left h2 {
    margin: 0;
    color: #333;
    font-weight: 300;
}
.ppc-div-content {
    display: flex;
    flex-wrap: nowrap;
    gap: 20px;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid #D9D9D9;
}
.ppc-div-blk {
    width: 33%;
}

.ppc-img {
    width: 27%;
}

.ppc-div-list {
    width: 30%;
}

.ppcBtn {
    width: 10%;
}

.blueE .ppc-divMains {
    background: #F9EFF3;
        padding: 25px 0 0;
}
.ppc-Section3 {
    padding: 50px 0;
}
.ppc-div-blk h4{
    color: #333333;
    font-family: 'FSMeWeb-Light';
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
}
.ppc-div-blk p {
    color: #333;
    font-family:  'FSMeWeb-Light';
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.ppc-div-list ul li {
    color: #333;
    font-family:  'FSMeWeb-Light';
    font-size: 20px;
    font-style: normal;
    font-weight: 300;
    line-height: 130%;
}
.blueE .ppcBtn a {
    background: #B73764;
    color: white;
    font-family:  'FSMeWeb-Light';
    font-size: 15px;
    font-style: normal;
    font-weight: 300;
    line-height: 130%;
    text-decoration: none;
    padding: 10px 20px;
}
.blueE .ppc-Section5 {
    background: #F9EFF3;
    padding: 50px 0 30px;
}
.ppc-Section4 {
    padding: 0 0 50px;
}
.ppc-Section5 h3 {
    color: #333333;
    text-align: center;
    font-family: 'FSMeWeb-Light';
    font-size: 40px;
    font-style: normal;
    font-weight: 300;
    line-height: 48px;
}
.blueE .site-footer-img {
    background: #50213F;
    padding: 20px 0;
}
.site-footer-pages {
    display: flex;
    flex-wrap: nowrap;
    gap: 30px;
    justify-content: center;
        padding: 40px 0;
}
.site-footer-pages a {
    color: #333;
    leading-trim: both;
    text-edge: cap;
    font-family:  'FSMeWeb-Light';
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    letter-spacing: 0.6px;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: none;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
    text-transform: capitalize;
}
.blueE .site-footer-content {
    background: #F9EFF3;
    padding-bottom: 10px;
}
.site-footer-para{
    padding:25px 0;
    color: #ffffff;
    background-color: #F9EFF3;
}
.site-footer-para p{
    color: #333;
    font-family:  'FSMeWeb-Light';
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
}
.ppc-fscs-text h6 {
    color: #333;
    font-family:  'FSMeWeb-Light';
    font-size: 15px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
    letter-spacing: 0.6px;
    text-transform: uppercase;
}
.ppc-fscs-text p {
    color:#333;
    font-family:  'FSMeWeb-Light';
    font-size: 15px;
    font-style: normal;
    font-weight: 300;
    line-height: 130%;
        margin: 0;
}
.ppc-left .ppc-fscs-mains .ppc-fscs-text p {
    color:#333333;
    
}

.ppc-left .ppc-fscs-mains .ppc-fscs-text p a {
    color: #333333;
    font-family:  'FSMeWeb-Light';
}
.ppc-fscs-text p a {
    color: #333;
    font-family:  'FSMeWeb-Light';
}
.blueE .ppc-Section4 h2 button.accordion-button.collapsed {
    background: #F8F8F8;
    padding: 15px 20px 15px 50px;
    font-weight: 300 !important;
    font-family: 'FSMeWeb-Light' !important;
}
.blueE .ppc-Section4 h2 button.accordion-button {
    background: #F9EFF3;
    box-shadow: none;
    padding: 10px 20px 5px 50px;
    color: #333333;
    font-family:  'FSMeWeb-Regular';
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%; /* 19.5px */
}

.ppc-Section2 .ppc-left h3 {
    color: #333;
    font-weight: 300;
    font-family: 'FSMeWeb-Light';
    font-size: 32px !important;
}

.ppc-Section2 .ppc-left p {
    color: #333;
    font-size: 15px ;
    font-weight: 300 !important;
}

.ppc-Section2 .ppc-left ul li p {
    margin-bottom: 0px;
    color: #333;
}
.ppc-Section4 .accordion-item {
    border: 0;
}
.ppc-Section4 .accordion-item:first-of-type {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}
.ppc-Section4 .accordion-button:focus {
    outline: 0;
    box-shadow: none;
}
.ppc-Section4 div#accordionExample {
    border-radius: 0;
    --bs-accordion-border-radius: 0;
    --bs-accordion-inner-border-radius: 0;
}
.ppc-Section4 .accordion-body {
    background: #F9EFF3;
    padding: 0px 50px 10px 50px;
}
.ppc-Section4 .accordion-body p {
    color: #333;
    font-family: 'FSMeWeb-Light';
    font-size: 15px;
    font-style: normal;
    font-weight: 300 !important;
    line-height: 130%;
    margin-bottom: 0;
}
.ppc-Section4 .accordion-item{
    margin-bottom: 5px;
}
.ppc-Section2 .ppc-left > p {
    margin: 0 0 20px;
    font-size: 15px;
}
.ppc-Section2 ul li {
    color: #222;
    font-family:  'FSMeWeb-Light';
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
}

 .ppc-right {
    width: 48%;
}
 .ppc-left {
    width: 48%;
}


/*.mailSecMain {
    display: flex;
    justify-content: center;
}*/

.hsfc-TextInput:before {
    content: "";
    background: url("/media/j0ypc0pd/mailicon.svg");
    background-repeat: no-repeat;
    width: 23px;
    height: 19px;
    position: absolute;
    left: 30px;
    top: 26px;
}



/* ===== HubSpot Inline Subscribe Form ===== */

/* Form wrapper */
.hsfc-FormWrapper {
  margin: 0 auto;
}

/* Hide label visually but keep for accessibility */
.hsfc-FieldLabel {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

/* Layout: input + button inline */
.hsfc-Step__Content {
  display: flex;
  gap: 12px;
  align-items: center;
}

/* Remove extra rows spacing */
.hsfc-Row {
  margin: 56px 0 0 0;
}

/* Email input */
.hsfc-TextInput {
  flex: 1 !important;
  height: 68px !important;
  padding: 0 22px  !important;
  font-size: 14px !important;
  border-radius: 0!important;
  border: 0 !important;
  background: #ffffff !important;
  color: #1f2937 !important;
}

.hsfc-TextInput::placeholder {
  color: #9ca3af;
}

/* Submit button */
.hsfc-Button {
     border-radius: 0 !important;
  height: 68px !important;
  padding: 0 22px !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  border: none !important;
  background: #B73764 !important;
  color: #333;
  width: 180px !important;
  cursor: pointer;
  transition: background 0.2s ease;
}

.hsfc-Button:hover {
  background: #B73764 !important;
}

/* Remove default HubSpot button container spacing */
.hsfc-NavigationRow {
  margin: 0;
}

.hsfc-NavigationRow__Alerts {
  display: none;
}

/* Hide captcha row entirely */
.hsfc-ReCaptchaV2,
.hsfc-ReCaptchaV2 * {
  display: none !important;
}

/* Mobile: stack vertically */
@media (max-width: 767px) {
  .hsfc-Step__Content {
    flex-direction: column;
    gap: 10px;
  }

  .hsfc-Button {
    width: 100%;
  }
}
.ppc-left ul li {
    padding-left: 0;
    margin-bottom: 8px;
    font-family: 'FSMeWeb-Light';
    font-size: 24px;
    font-weight: 300 !important;
    list-style: none;
    display: flex;
    align-items: flex-start;
}

.ppc-left ul li p img {
    margin: -8px 10px 0 0;
    width: 20px;
}

.ppc-left ul {
    
    padding: 0;
    margin-bottom: 25px;
}

.ppc-Section1 .ppc-left h2 {
    color: #333 !important;
    font-size: 48px !important;
    font-weight: 300 !important;
    font-family: 'FSMeWeb-Light';
}

.ppc-Section1 .ppc-left a {
    margin: 0 !important;
    width: auto !important;
    height: 39px !important;
}

.ppc-Section1 .ppc-left .ppc-fscs-mains p img {
    width: 76px;
    height: 68px;
}

.ppc-Section1 .ppc-left .ppc-fscs-mains p {
    color: #333 !important;
    font-size: 13px !important;
}

@media only screen and (max-width: 767px) {
    img {
    width: 100%;
}

.site-footer-pages {
    flex-direction: column;
}

.inputMailSec {
    width: 100%;
}

.mailSubmtBtnSec button {
    width: 100%;
    margin: 0;
}

.mailSecMain {
    flex-direction: column;
}

.ppc-div-content {
    flex-direction: column;
}

.mobile-panel {
    /* box-shadow: none; */
    background: #fff;
    backdrop-filter: none;
    top: 40px;
}

.mobile-panel a {
    color: #333333;
    text-align: left;
    font-family: 'FSMeWeb-Light';
    font-size: 18px;
    font-style: normal;
    font-weight: 100;
    line-height: 0px;
}

.ppc-Section1 {
    padding: 10px 0px 30px 0px;
    flex-wrap: wrap;
    gap: 0;
}

main.site-content-mains .container {
    padding: 0px 36px 0 36px;
}

.ppc-left {
    width: 100%;
}

.ppc-fscs-img img {
    width: auto;
}

.ppc-fscs-text p {
    font-size: 13px;
}

.ppc-left > p {
    font-size: 15px !important;
    margin-top: 0;
}

.ppc-left h2 {
    font-size: 40px;
    margin-bottom: 0px;
}

.ppc-right {
    width: 100%;
    margin-top: 10px;
}

.ppc-divMains {
    padding: 0 !important;
}

.ppc-left {
    margin-top: 15px;
    align-items: center;
}

.ppc-Section2 {
    padding: 0px 0px 30px 0px !important;
    gap: 0px;
    flex-direction: column;
}


.ppc-Section2 .ppc-left h3 {
    text-align: center;
    font-size: 32px !important;
    font-style: normal;
    font-weight: 300;
    line-height: 48px; /* 150% */
}

.ppc-Section2 .ppc-left > p {
    text-align: center;
}

.ppc-left ul li {
    text-align: center;
}

.blueE .ppc-left a.btn-direct {
    text-align: center;
    margin: 0 auto;
    width: fit-content;
    padding: 10px 12px;
    display: flex;
    justify-content: center;
}

.container.ppc-Section3 {}

.ppc-img {
    width: 100%;
}

.ppc-div-blk {
    width: 100%;
}

.ppc-div-blk h4,.ppc-div-blk p {
    text-align: center;
}

.ppc-div-list ul li {
    margin-bottom: 5px;
    width: 100%;
    color: #333;
    font-size: 18px;
    font-style: normal;
    font-weight: 300 !important;
    line-height: 130%; /* 23.4px */
}

.ppc-div-list {
    width: 100%;
}

.ppc-div-blk p {
    margin-bottom: 0px;
}

.ppcBtn {
    width: fit-content;
}

.container.ppc-Section3 .ppc-div-content:last-child {
    border-bottom: 0px;
}

.blueE .ppc-Section4 h2 button.accordion-button,.ppc-Section4 .accordion-body {
    padding: 15px 20px 18px 20px;
}

.accordion-body {
    padding-top: 0px !important;
}

.blueE .ppc-Section4 h2 button.accordion-button {
    padding-bottom: 10px;
}

.blueE .ppc-Section4 h2 button.accordion-button.collapsed {
    padding: 15px 20px 15px 20px;
}

main.site-content-mains .container {
    margin-bottom: 25px;
}

.ppc-Section5 h3 {
    color: #333;
    text-align: center;
    font-size: 32px !important;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
}

.blueE .ppc-Section5 {
}

.mailSecMain {
    margin-top: 15px;
}

.mailSubmtBtnSec button {
    width: 180px;
    margin-top: 10px;
}

.mailSubmtBtnSec {
    text-align: center;
}

.blueE .ppc-Section5 {
    padding: 20px 0 0px;
}

.site-footer-img img {width: auto;}

.site-footer-img .container {
    display: flex;
    justify-content: center;
}

.ppc-Section5 {
    padding-bottom: 2px !important;
}

.site-footer-pages {
    display: inline-block;
    padding: 20px 36px 2px 36px;
}

.site-footer-pages a {margin-right: auto;float: left;width: 50%;margin-bottom: 10px;}

.container.site-footer-para {
    padding: 26px 50px 20px 50px;
}

.ppc-Section2 .ppc-left > p {
    font-size: 15px !important;
    color: #333 !important;
}

.site-header-div {
    height: 40px !important;
}

.brand-site > a > img {
    width: 80% !important;
}

.hsfc-Step__Content {
    padding: 0px !important;
}

.hsfc-TextInput {
    width: 100% !important;
}

.hsfc-Step__Content {
    display: block !important;
}

.hsfc-Step__Content .hsfc-Row:nth-child(1) {
    width: 100% !important;
    border: none !important;
}

.hsfc-Step__Content .hsfc-Row:nth-child(2) {
    width: 100% !important;
    margin: 10px 0 10px 0 !important;
}

.grecaptcha-badge {
    width: 100% !important;
}

.hsfc-Step__Content .hsfc-NavigationRow {
    width: 100% !important;
}

.hsfc-NavigationRow__Buttons {
    display: block !important;
    margin: 0 auto;
    width: 180px !important;
}
}

@media (min-width: 768px) and (max-width: 1024px) {
    .ppc-Section1, .ppc-Section2 {
    flex-direction: column;
}

.ppc-right img {
    width: 100%;
    margin-bottom: 22px;
}

.brand-site a img {
    width: 130px;
}

.container.site-header-div {
    height: auto;
    padding: 10px 30px;
}

.ppc-left {
    width: 100%;
}

main.site-content-mains {
    padding: 0 0;
}

.ppc-left h2 {
    display: flex;
    height: 71px;
    flex-direction: column;
    justify-content: center;
    color: #333;
    font-size: 40px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
}

.ppc-left > p {
    color: #333;
    font-size: 15px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
}

.ppc-fscs-text p, .ppc-fscs-text p a {
    color: #333;
    font-size: 13px;
    font-style: normal;
    font-weight: 300;
    line-height: 130%; /* 16.9px */
}

.ppc-right {
    width: 100%;
}

.ppc-fscs-mains {
    margin-bottom: -25px;
    align-items: flex-start;
}

.ppc-Section1 {
    padding: 50px 20px 25px 20px;
}

.ppc-divMains {
    padding: 15px 45px 0 45px !important;
    text-align: center;
}

.ppc-divMains .ppc-left ul li::before {
  content: "";
  position: absolute;
  left: 0;                  /* icon stays at the start */
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background: url(/media/hyrh3b4y/check-circle.svghyrh3b4y/check-circle.svg) no-repeat center center;
  background-size: contain;
}


.ppc-divMains .ppc-left ul li {
  display: inline-flex;            /* keeps icon and text together */
  align-items: center;             /* vertically centered */
  justify-content: center;         /* horizontally centered */
  gap: 8px;                        /* space between icon and text */
  text-align: center;
  margin-bottom: 7px;
  position: relative;
}
  
.ppc-Section2 {
    gap: 0;
    padding-bottom: 0px !important;
    padding-top: 0px !important;
}

a.btn-direct {
    margin-bottom: 13px;
    display: inline-block;
}

.ppc-left ul {
    margin-bottom: 10px;
}

.ppc-Section2 .ppc-left > p {
    margin-bottom: 8px;
}

.ppc-left h3 {
    color: #333;
    text-align: center;
    font-size: 32px;
    font-style: normal;
    font-weight: 300;
    line-height: 48px; /* 150% */
}

.ppc-left p {
    color: #333;
    text-align: center;
    font-size: 15px;
    font-style: normal;
    font-weight: 300;
    line-height: 130%; /* 19.5px */
}

.ppc-Section1 .ppc-left p {
    text-align: left;
}

.ppc-img {
    display: none;
}

.container.ppc-Section3 {
    padding: 0 30px 0px 33px;
}

.ppc-div-content:last-child {
    border: navajowhite;
}

.ppc-div-blk {
    width: 52%;
    float: left;
    margin-top: 20px;
    padding-right: 37px;
}

.ppcBtn {float: right;width: 118px;text-align: center;margin-right: 129px;}

.ppc-div-content {
    display: block;
    clear: both;
    overflow: hidden;
    vertical-align: middle;
}

.ppc-div-list {
    float: left;
    width: 46%;
}

.ppc-Section4 .accordion-body {
    padding: 2px 20px 19px 20px;
    margin-top: -6px;
}

.blueE .ppc-Section4 h2 button.accordion-button {
    padding: 13px 20px 11px 20px !important;
}

.accordion-button::after {background-size: 12px;background-position: 4px 0px;}

.container.ppc-Section4 {
    padding: 6px 32px 14px 33px;
}

.ppc-Section5 h3 {
    color: #333;
    text-align: center;
    font-size: 32px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
}

.ppc-Section5 {
    padding: 17px 53px 0 53px !important;
}

.mailSecMain {
    margin-top: 6px;
    padding: 0 5px 50px 5px;
}

.site-footer-img {
    padding: 10px 49px 10px 50px !important;
}

.site-footer-pages {flex-wrap: wrap;width: 80%;align-items: center;text-align: center;margin: 0 auto;padding: 25px 0 5px 0;}

.site-footer-content {
    clear: both;
    overflow: hidden;
    padding-bottom: 50px;
    display: block;
    height: auto;
}

.site-footer-content .container {
    padding-bottom: 44px;
}

.ppc-fscs-img {
    margin-top: 5px;
}

.footer-site-fscs {
    padding: 0 30px;
}

.container.site-footer-para {
    padding: 25px 45px;
}

.ppc-Section5 .container {
    padding: 0 !important;
}

.inputMailSec, .mailSubmtBtnSec button {
    height: 60px;
}

.inputMailSec {
    width: 100%;
}

.site-footer-para p {
    margin-bottom: 0px;
}
.ppc-left ul {
    max-width: 100%;
    width: 100%;
    text-align: left;
}

.ppc-divMains .ppc-left ul li {
    display: inline-flex !important;
    width: 100%;
    justify-content: flex-start;
}

.hsfc-Step__Content {
    padding-left: 0px !important;
    padding-right: 0px !important;
}

.hsfc-Step__Content {
    width: 665px !important;
    text-align: center !important;
    margin: 0 auto !important;
}

.hsfc-Step__Content .hsfc-Row:nth-child(1) {
    width: 246px !important;
}

.hsfc-Step__Content .hsfc-Row:nth-child(2) {
    width: auto !important;
}

.hsfc-Step__Content .hsfc-NavigationRow {
    width: 100px !important;
}
}

@media (min-width: 1025px) and (max-width: 1399px) {
    .ppc-right img, .ppc-img img {
    width: 100%;
}

.ppcBtn {
    width: 124px;
}

}
@media only screen and (min-width: 1200px) {
.hsfc-Step__Content {
    width: 898px !important;
}
}

.ppc-Section1 .ppc-left .ppc-fscs-mains p a {
    color: #333 !important;
    font-size: 13px !important;
    font-weight: 300;
}

.ppc-div-list ul li p {
    font-size: 20px;
    margin: 0;
    color: #333;
}

.ppc-Section2 .ppc-left > ul li p {
    font-size: 24px;
    text-align: left;
}

/* HS Starts */
.hsfc-Step__Content {
    display: flex;
    flex-wrap: wrap;
    width: 80%;
    margin: 0 auto;
}

.hsfc-Step__Content .hsfc-Row:nth-child(1) {
    width: 44%;
    margin: 0;
}

.hsfc-Step__Content .hsfc-Row:nth-child(2) {
    width: 30%;
    margin: 4px 20px 2px 4px;
}

.hsfc-Step__Content .hsfc-NavigationRow {
    margin: 0;
    width: 20%;
    height: 68px;
}

.hsfc-Step__Content .hsfc-NavigationRow .hsfc-NavigationRow__Alerts {
    margin: 0;
}

.hsfc-Step__Content .hsfc-Row:nth-child(1) input {
    border: none;
}

.hsfc-Step__Content .hsfc-Row:nth-child(1) label {
    display: none;
}

.hsfc-Step__Content .hsfc-Row:nth-child(1) input {
    background: #fff;
    height: 68px;
}

.hsfc-Step__Content .hsfc-NavigationRow button {
    width: 180px;
    height: 68px;
}

.hsfc-NavigationRow {
    margin: 0 !important;
}


.hsfc-Step__Content {
    align-items: flex-start;
}

.hsfc-Step__Content .hsfc-NavigationRow button {
    font-size: 15px !important;
    font-weight: 300 !important;
}
/* HS Ends */


.hsfc-EmailField::before {
    content: "";
    position: absolute;
    left: 20px;
    top: 24px;
    width: 21px;
    height: 18px;
    background: url(/media/rqygupaq/emailicon.svg) no-repeat center;
    background-size: contain;
    pointer-events: none;
}


.hsfc-EmailField {
    position: relative;
}

.hsfc-TextInput {
    padding-left: 62px !important;
}


/* Product summary starts */
.prdSumHead {
    background: #50213F;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.prdSumHead .prdSumHeadIn h3 {
    color: #FFF;
    text-align: center;
    font-family: 'FSMeWeb-Regular';
    font-size: 15px !important;
    font-style: normal;
    font-weight: 400;
    line-height: 130%; /* 19.5px */
    text-transform: uppercase;
    margin: 0;
    /* border: 1px solid #E9C3CF; */
}

.prdSumHead .prdSumHeadIn {
    width: 25%;
    border: 1px solid #E9C3CF;
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.prdSumBody {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.prdSumBody .prdSumBodyIn {
    width: 25%;
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.prdSumBody .prdSumBodyIn h3 {
    color: #333;
    text-align: center;
    font-family: 'FSMeWeb-Light';
    font-size: 15px !important;
    font-style: normal;
    font-weight: 300;
    line-height: 130%; 
    text-transform: uppercase;
}

.prdSumHead {
    /*display: none;*/
}

.ProdtSumMain .prdSumList:nth-child(3) .prdSumHead {
    display: flex;
}
.ProdtSumMain .prdSumList:nth-child(odd) .prdSumBody {
    background: #FAFAFA;
}

.ProdtSumMain > h2 {
    color: #333;
    text-align: left;
    font-family: 'FSMeWeb-Light';
    font-size: 24px !important;
    font-style: normal;
    font-weight: 300;
    line-height: 130%; /* 31.2px */
}

.ProdtSumMain > p {
    color: #333;
    font-family: 'FSMeWeb-Light';
    font-size: 15px !important;
    font-style: normal;
    font-weight: 300;
    line-height: 130%; /* 19.5px */
}


.container.ppc-Section4 > h2 {
    color: #333;
    font-size: 24px !important;
    font-style: normal;
    font-weight: 300;
    line-height: 130%; /* 31.2px */
    font-family: 'FSMeWeb-Light';
    margin-bottom: 18px;
}

@media only screen and (max-width: 767px) {
    .prdSumHead {
    display: flex;
}

.prdSumList {
    display: block !important;
    clear: both;
    overflow: hidden;
    margin-bottom: 10px;
}

.prdSumHead {
    display: block !important;
    float: left;
    width: 50%;
    padding: 5px 0 0 0;
}

.prdSumBody {
    display: block !important;
    float: left;
    width: 50%;
}

.prdSumHead .prdSumHeadIn {
    display: flex;
    width: 100%;
    border: none;
}

.prdSumBody .prdSumBodyIn {
    display: flex;
    width: 100%;
    border: none;
}

.prdSumHead .prdSumHeadIn h3 {
    color: #FFF;
    font-family: 'FSMeWeb-Regular';
    font-size: 13px !important;
    font-style: normal !important;
    font-weight: 400 !important;
    line-height: normal !important;
    text-transform: uppercase !important;
}

.prdSumBody .prdSumBodyIn h3 {
    color: #333;
    text-align: center;
    font-family: 'FSMeWeb-Light';
    font-size: 15px !important;
    font-style: normal;
    font-weight: 300 !important;
    line-height: 130% !important; /* 19.5px */
    text-transform: uppercase !important;
    width: 70%;
    margin: 0 !important;
}

.ProdtSumMain .prdSumList .prdSumBody {
    background: #FAFAFA !important;
    padding: 5px 0 0 0;
    }

.ProdtSumMain > h2, .ProdtSumMain > p, .container.ppc-Section4 > h2 {
    text-align: center;
}  

.ppc-Section2 .ppc-left p {
    color: #333;
    font-size: 15px !important;
    font-weight: 300 !important;
}

.ppc-left ul li p img {
    margin: 0px 10px 0 0 !important;
}
}

@media (min-width: 768px) and (max-width: 1024px) {
    .ProdtSumMain {
    margin: 25px 0 20px 0;
}
}

@media only screen and (min-width: 1000px) {
    .prdSumBody .prdSumBodyIn {
    padding: 0 35px;
}
}

.ppc-left ul li p span {
    margin-right: 10px;
}
/* Product summary ends */
@media only screen and (min-width: 1200px) {
    .ppc-Section1 .ppc-right {
    width: 46%;
}
.ppc-Section1 .ppc-left {
    width: 49%;
}

.ppc-Section2 .ppc-right {
    width: 40%;
}
.ppc-Section2 .ppc-left {
    width: 60%
}
.ppc-Section1 {
    flex-wrap: wrap;
}

.ppc-Section1 {
    padding-bottom: 75px !important;
}

.blueE .ppc-divMains {
    padding-top: 50px;
}
}



@media only screen and (min-width: 1399px) {
    .ppc-Section1 .ppc-right img , .ppc-Section2 .ppc-right img {
        width: 100% !important;
    }
}


.ppc-Section2 .ppc-left > ul li p:nth-child(1)  {
    position: relative;
    padding-left: 30px;
}
.ppc-Section2 .ppc-left > ul li p:nth-child(1) img {
    position: absolute;
    top: 10px;
    right: 0;
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
    .ppc-Section2 .ppc-left > ul li p:nth-child(1)  {
    position: relative;
    padding-left: 30px;
}
.ppc-Section2 .ppc-left > ul li p:nth-child(1) img {
    position: absolute;
    top: -4px;
    right: 0;
}
}