/**
 * basic reset
 */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Arvo:wght@400;700&family=Style+Script&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Alex+Brush&family=Arvo:wght@400;700&family=Style+Script&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700;900&display=swap");
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, main,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  /*font-size: 100%;
  font: inherit;*/
  vertical-align: baseline;
}

/**
 * HTML5 display-role reset for older browsers
 */
article, aside, details, figcaption, figure,
footer, header, menu, nav, section,
main, summary {
  display: block;
}

html body {
  height: auto !important;
}

body {
  line-height: 1;
  padding: 0;
  margin: 0;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/**
 * inherit box model
 */
*,
*::before,
*::after {
  box-sizing: inherit;
}

/**
 * iOS "clickable elements" fix for role="button"
 *
 * Fixes "clickability" issue (and more generally, the firing of events such as focus as well)
 * for traditionally non-focusable elements with role="button"
 * see https://developer.mozilla.org/en-US/docs/Web/Events/click#Safari_Mobile
 */
[role=button] {
  cursor: pointer;
}

/**
 * Avoid 300ms click delay on touch devices that support the `touch-action` CSS property.
 *
 * In particular, unlike most other browsers, IE11+Edge on Windows 10 on touch devices and IE Mobile 10-11
 * DON'T remove the click delay when `<meta name="viewport" content="width=device-width">` is present.
 * However, they DO support removing the click delay via `touch-action: manipulation`.
 * See:
 * - http://v4-alpha.getbootstrap.com/content/reboot/#click-delay-optimization-for-touch
 * - http://caniuse.com/#feat=css-touch-action
 * - http://patrickhlauke.github.io/touch/tests/results/#suppressing-300ms-delay
 */
a,
area,
button,
[role=button],
input,
label,
select,
summary,
textarea {
  touch-action: manipulation;
}

/**
 * Always hide an element with the `hidden` HTML attribute (from PureCSS).
 */
[hidden] {
  display: none !important;
}

/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

/**
 * HTML5 display definitions
 * =============================================================================
 */
/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */
audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.
 */
[hidden],
template {
  display: none;
}

/**
 * Links
 * =============================================================================
 */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
  background-color: transparent;
  text-decoration: none;
  color: #fff;
}

/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */
a:active,
a:hover {
  outline: 0;
}

/**
 * Text-level semantics
 * =============================================================================
 */
/**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted;
}

/**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
 */
b,
strong {
  font-weight: bold;
}

/**
 * 1. Address styling not present in Safari and Chrome.
 * 2. Set previously resetted italic font-style
 */
dfn,
i, em {
  font-style: italic;
}

/**
 * Address styling not present in IE 8/9.
 */
mark {
  background: #ff0;
  color: #000;
}

/**
 * Address inconsistent and variable font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/**
 * Embedded content
 * =============================================================================
 */
/**
 * Remove border when inside `a` element in IE 8/9/10.
 */
img {
  border: 0;
  max-width: 100%;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */
svg:not(:root) {
  overflow: hidden;
}

/**
 * Grouping content
 * =============================================================================
 */
/**
 * Address differences between Firefox and other browsers.
 */
hr {
  box-sizing: content-box;
  height: 0;
}

/**
 * Contain overflow in all browsers.
 */
pre {
  overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
}

/**
 * Forms
 * =============================================================================
 */
/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */
/**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 */
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}

/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */
button {
  overflow: visible;
}

button:focus {
  outline: 0;
}

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */
button,
select {
  text-transform: none;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  box-sizing: border-box;
  appearance: none;
  outline: none;
}

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */
button,
html input[type=button],
input[type=reset],
input[type=submit] {
  -webkit-appearance: button;
  cursor: pointer;
}

/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
  cursor: default;
}

/**
 * Remove inner padding and border in Firefox 4+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
input, select {
  line-height: normal;
}
input:focus, select:focus {
  outline: 0;
}

@media (prefers-color-scheme: dark) {
  input {
    background: transparent;
  }
}
/**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */
input[type=checkbox],
input[type=radio] {
  padding: 0;
}

/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome
 *    (include `-moz` to future-proof).
 */
input[type=search] {
  -webkit-appearance: textfield;
  box-sizing: content-box;
}

/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */
textarea {
  overflow: auto;
}

/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */
optgroup {
  font-weight: bold;
}

* {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-tap-highlight-color: transparent;
}

html {
  scroll-behavior: smooth;
}

*::-webkit-scrollbar {
  display: none;
}

* {
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}

.p-0 {
  padding: 0px;
}

.p-5 {
  padding: 5px;
}

.p-10 {
  padding: 10px;
}

.p-15 {
  padding: 15px;
}

.p-20 {
  padding: 20px;
}

.p-25 {
  padding: 25px;
}

.p-30 {
  padding: 30px;
}

.p-35 {
  padding: 35px;
}

.p-40 {
  padding: 40px;
}

.p-45 {
  padding: 45px;
}

.p-50 {
  padding: 50px;
}

.m-0 {
  padding: 0px;
}

.m-5 {
  margin: 5px;
}

.m-10 {
  margin: 10px;
}

.m-15 {
  margin: 15px;
}

.m-20 {
  margin: 20px;
}

.m-25 {
  margin: 25px;
}

.m-30 {
  margin: 30px;
}

.m-35 {
  margin: 35px;
}

.m-40 {
  margin: 40px;
}

.m-45 {
  margin: 45px;
}

.m-50 {
  margin: 50px;
}

.pt-0 {
  padding-top: 0px;
}

.pt-5 {
  padding-top: 5px;
}

.pt-10 {
  padding-top: 10px;
}

.pt-15 {
  padding-top: 15px;
}

.pt-20 {
  padding-top: 20px;
}

.pt-25 {
  padding-top: 25px;
}

.pt-30 {
  padding-top: 30px;
}

.pt-35 {
  padding-top: 35px;
}

.pt-40 {
  padding-top: 40px;
}

.pt-45 {
  padding-top: 45px;
}

.pt-50 {
  padding-top: 50px;
}

.pt-55 {
  padding-top: 55px;
}

.pt-60 {
  padding-top: 60px;
}

.pt-65 {
  padding-top: 65px;
}

.pt-70 {
  padding-top: 70px;
}

.pt-75 {
  padding-top: 75px;
}

.pt-80 {
  padding-top: 80px;
}

.pt-90 {
  padding-top: 90px;
}

.pt-100 {
  padding-top: 100px;
}

.pb-0 {
  padding-bottom: 0px;
}

.pb-5 {
  padding-bottom: 5px;
}

.pb-10 {
  padding-bottom: 10px;
}

.pb-15 {
  padding-bottom: 15px;
}

.pb-20 {
  padding-bottom: 20px;
}

.pb-25 {
  padding-bottom: 25px;
}

.pb-30 {
  padding-bottom: 30px;
}

.pb-35 {
  padding-bottom: 35px;
}

.pb-40 {
  padding-bottom: 40px;
}

.pb-45 {
  padding-bottom: 45px;
}

.pb-50 {
  padding-bottom: 50px;
}

.pb-55 {
  padding-bottom: 55px;
}

.pb-60 {
  padding-bottom: 60px;
}

.pb-65 {
  padding-bottom: 65px;
}

.pb-70 {
  padding-bottom: 70px;
}

.pb-75 {
  padding-bottom: 75px;
}

.pb-80 {
  padding-bottom: 80px;
}

.pl-0 {
  padding-left: 0px;
}

.pl-5 {
  padding-left: 5px;
}

.pl-10 {
  padding-left: 10px;
}

.pl-15 {
  padding-left: 15px;
}

.pl-20 {
  padding-left: 20px;
}

.pl-25 {
  padding-left: 25px;
}

.pl-30 {
  padding-left: 30px;
}

.pl-35 {
  padding-left: 35px;
}

.pl-40 {
  padding-left: 40px;
}

.pl-45 {
  padding-left: 45px;
}

.pl-50 {
  padding-left: 50px;
}

.pl-55 {
  padding-left: 55px;
}

.pl-60 {
  padding-left: 60px;
}

.pl-65 {
  padding-left: 65px;
}

.pl-70 {
  padding-left: 70px;
}

.pl-75 {
  padding-left: 75px;
}

.pl-80 {
  padding-left: 80px;
}

.pr-0 {
  padding-right: 0px;
}

.pr-5 {
  padding-right: 5px;
}

.pr-10 {
  padding-right: 10px;
}

.pr-15 {
  padding-right: 15px;
}

.pr-20 {
  padding-right: 20px;
}

.pr-25 {
  padding-right: 25px;
}

.pr-30 {
  padding-right: 30px;
}

.pr-35 {
  padding-right: 35px;
}

.pr-40 {
  padding-right: 40px;
}

.pr-45 {
  padding-right: 45px;
}

.pr-50 {
  padding-right: 50px;
}

.pr-55 {
  padding-right: 55px;
}

.pr-60 {
  padding-right: 60px;
}

.pr-65 {
  padding-right: 65px;
}

.pr-70 {
  padding-right: 70px;
}

.pr-75 {
  padding-right: 75px;
}

.pr-80 {
  padding-right: 80px;
}

.mr-0 {
  margin-right: 0px;
}

.mr-5 {
  margin-right: 5px;
}

.mr-10 {
  margin-right: 10px;
}

.mr-15 {
  margin-right: 15px;
}

.mr-20 {
  margin-right: 20px;
}

.mr-25 {
  margin-right: 25px;
}

.mr-30 {
  margin-right: 30px;
}

.mr-35 {
  margin-right: 35px;
}

.mr-40 {
  margin-right: 40px;
}

.mr-45 {
  margin-right: 45px;
}

.mr-50 {
  margin-right: 50px;
}

.mr-55 {
  margin-right: 55px;
}

.mr-60 {
  margin-right: 60px;
}

.mr-65 {
  margin-right: 65px;
}

.mr-70 {
  margin-right: 70px;
}

.mr-75 {
  margin-right: 75px;
}

.mr-80 {
  margin-right: 80px;
}

.ml-0 {
  margin-left: 0px;
}

.ml-5 {
  margin-left: 5px;
}

.ml-10 {
  margin-left: 10px;
}

.ml-15 {
  margin-left: 15px;
}

.ml-20 {
  margin-left: 20px;
}

.ml-25 {
  margin-left: 25px;
}

.ml-30 {
  margin-left: 30px;
}

.ml-35 {
  margin-left: 35px;
}

.ml-40 {
  margin-left: 40px;
}

.ml-45 {
  margin-left: 45px;
}

.ml-50 {
  margin-left: 50px;
}

.ml-55 {
  margin-left: 55px;
}

.ml-60 {
  margin-left: 60px;
}

.ml-65 {
  margin-left: 65px;
}

.ml-70 {
  margin-left: 70px;
}

.ml-75 {
  margin-left: 75px;
}

.ml-80 {
  margin-left: 80px;
}

.mt-0 {
  margin-top: 0px;
}

.mt-5 {
  margin-top: 5px;
}

.mt-10 {
  margin-top: 10px;
}

.mt-15 {
  margin-top: 15px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-25 {
  margin-top: 25px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-35 {
  margin-top: 35px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-45 {
  margin-top: 45px;
}

.mt-50 {
  margin-top: 50px;
}

.mt-55 {
  margin-top: 55px;
}

.mt-60 {
  margin-top: 60px;
}

.mt-65 {
  margin-top: 65px;
}

.mt-70 {
  margin-top: 70px;
}

.mt-75 {
  margin-top: 75px;
}

.mt-80 {
  margin-top: 80px;
}

.mb-0 {
  margin-bottom: 0px;
}

.mb-5 {
  margin-bottom: 5px;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-15 {
  margin-bottom: 15px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-25 {
  margin-bottom: 25px;
}

.mb-30 {
  margin-bottom: 30px !important;
}

.mb-35 {
  margin-bottom: 35px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-45 {
  margin-bottom: 45px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mb-55 {
  margin-bottom: 55px;
}

.mb-60 {
  margin-bottom: 60px;
}

.mb-65 {
  margin-bottom: 65px;
}

.mb-70 {
  margin-bottom: 70px;
}

.mb-75 {
  margin-bottom: 75px;
}

.mb-80 {
  margin-bottom: 80px !important;
}

.mb-100 {
  margin-bottom: 100px;
}

.ptb-0 {
  padding-top: 0px;
  padding-bottom: 0px;
}

.ptb-5 {
  padding-top: 5px;
  padding-bottom: 5px;
}

.ptb-10 {
  padding-top: 10px;
  padding-bottom: 10px;
}

.ptb-15 {
  padding-top: 15px;
  padding-bottom: 15px;
}

.ptb-20 {
  padding-top: 20px;
  padding-bottom: 20px;
}

.ptb-25 {
  padding-top: 25px;
  padding-bottom: 25px;
}

.ptb-30 {
  padding-top: 30px;
  padding-bottom: 30px;
}

.ptb-35 {
  padding-top: 35px;
  padding-bottom: 35px;
}

.ptb-40 {
  padding-top: 40px;
  padding-bottom: 40px;
}

.ptb-45 {
  padding-top: 45px;
  padding-bottom: 45px;
}

.ptb-50 {
  padding-top: 50px;
  padding-bottom: 50px;
}

.ptb-55 {
  padding-top: 60px;
  padding-bottom: 60px;
}

.ptb-60 {
  padding-top: 60px;
  padding-bottom: 60px;
}

.ptb-65 {
  padding-top: 65px;
  padding-bottom: 65px;
}

.ptb-70 {
  padding-top: 70px;
  padding-bottom: 70px;
}

.ptb-75 {
  padding-top: 75px;
  padding-bottom: 75px;
}

.ptb-80 {
  padding-top: 80px;
  padding-bottom: 80px;
}

.mtb-0 {
  margin-top: 0px;
  margin-bottom: 0px;
}

.mtb-5 {
  margin-top: 5px;
  margin-bottom: 5px;
}

.mtb-10 {
  margin-top: 10px;
  margin-bottom: 10px;
}

.mtb-15 {
  margin-top: 15px;
  margin-bottom: 15px;
}

.mtb-20 {
  margin-top: 20px;
  margin-bottom: 20px;
}

.mtb-25 {
  margin-top: 25px;
  margin-bottom: 25px;
}

.mtb-30 {
  margin-top: 30px;
  margin-bottom: 30px;
}

.mtb-35 {
  margin-top: 35px;
  margin-bottom: 35px;
}

.mtb-40 {
  margin-top: 40px;
  margin-bottom: 40px;
}

.mtb-45 {
  margin-top: 45px;
  margin-bottom: 45px;
}

.mtb-50 {
  margin-top: 50px;
  margin-bottom: 50px;
}

.mtb-55 {
  margin-top: 55px;
  margin-bottom: 55px;
}

.mtb-60 {
  margin-top: 60px;
  margin-bottom: 60px;
}

.mtb-65 {
  margin-top: 65px;
  margin-bottom: 65px;
}

.mtb-70 {
  margin-top: 70px;
  margin-bottom: 70px;
}

.mtb-75 {
  margin-top: 75px;
  margin-bottom: 75px;
}

.mtb-80 {
  margin-top: 80px;
  margin-bottom: 80px;
}

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

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

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

.nopadding {
  padding-left: 0 !important;
  padding-right: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.nomargin {
  margin-left: 0 !important;
  margin-right: 0 !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

body {
  font-family: "Inter", sans-serif;
  font-display: swap;
  font-size: 20px;
  font-weight: 400;
  color: #171717;
  letter-spacing: 0.32px;
  line-height: 35px;
  text-align: center;
}
@media only screen and (max-width: 1900px) {
  body {
    zoom: unset;
  }
}
@media only screen and (max-width: 1680px) {
  body {
    font-size: 16px;
    line-height: 24px;
    color: #171717;
    zoom: unset;
  }
}
@media only screen and (max-width: 1024px) {
  body {
    zoom: unset;
  }
}

h1 {
  font-size: 70px;
  font-weight: 900;
  line-height: 85px;
  letter-spacing: 0px;
  color: #021D45;
}
@media only screen and (max-width: 1680px) {
  h1 {
    font-size: 58px;
    line-height: 58px;
  }
}

h2 {
  font-size: 48px;
  font-weight: 700;
  color: #171717;
  letter-spacing: 0px;
  line-height: 65px;
}
@media only screen and (max-width: 1680px) {
  h2 {
    font-size: 28px;
    line-height: 36px;
  }
}
@media only screen and (max-width: 1024px) {
  h2 {
    font-size: 24px;
    line-height: 34px;
  }
}

h3 {
  font-size: 30px;
  font-weight: 900;
  line-height: 45px;
  letter-spacing: 0px;
  color: #021D45;
}
@media only screen and (max-width: 1680px) {
  h3 {
    font-size: 20px;
    line-height: 28px;
  }
}

h4 {
  font-size: 20px;
  font-weight: 500;
  line-height: 28px;
  color: #171717;
  letter-spacing: 0.32px;
}
@media only screen and (max-width: 1680px) {
  h4 {
    font-size: 15px;
    line-height: 18px;
    letter-spacing: 0px;
  }
}

p {
  font-size: 20px;
  font-weight: 400;
  color: #171717;
  letter-spacing: 0.32px;
  line-height: 35px;
  text-align: left;
}
@media only screen and (max-width: 1680px) {
  p {
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0px;
  }
}
@media only screen and (max-width: 1024px) {
  p {
    font-size: 15px;
    line-height: 24px;
    font-weight: 400;
  }
}

.normal {
  font-weight: 400;
}

.medium {
  font-weight: 500;
}

.semibold {
  font-weight: 600;
}

.bold {
  font-weight: 700;
}

.extra-bold {
  font-weight: 800;
}

.black {
  font-weight: 900;
}

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

.grey-bg {
  background: rgba(212, 212, 212, 0.25);
}

.blue-bg {
  background: rgba(134, 197, 235, 0.2);
}

.pos-rel {
  position: relative;
}

.underline {
  text-decoration: underline;
  cursor: pointer;
}

.bdr {
  border: 1px solid #C6C6C6;
}

.bdr-none {
  border: none !important;
}

.flex-center, .pp-popup .modal .modal-body .modal-content, .process-flow-sec .process-card .find-block, .process-flow-sec .process-card .process-head, .cont .circle .inner-cir, .cont .circle, .prof-card .prof-linked a .ln-icon, .prof-card .prof-linked a, .prof-card .prof-linked, .banner-image .img-card, .banner-image .drop-img, .banner-image .graph-img, .center-btn, .sticky-btn .two-col-list li, .sticky-btn .two-col-list, .owl-theme.carousel-arrow .owl-nav, .owl-carousel.carousel-arrow .owl-nav, .dropdown-list, .et-logos, .feedback .star, .how-work-section .mobile-block, .awards-section .award-block .award-list .award-card, .tes-carousel-two .item .play, .tes-carousel-two .item, .ffa-image-main .app-img, .as-right .item, .modal, .button, .what-btn, .back, .next, .next-prev-btn .scroll-prev, .next-prev-btn .scroll-next, .yellow-btn, .btn, .bdr-btn, .teal-btn, .white-btn, .black-btn {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
}

.flex-align-top {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  -ms-align-items: flex-start;
  -ms-flex-align: flex-start;
  align-items: flex-start;
}

.flex-align-center, .bdr-list .item, .partner-list, .back-btn, .next-prev-btn {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.flex-align-left, .feedback {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  justify-content: flex-start;
  -ms-flex-pack: flex-start;
}

.flex-align-right {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: flex-end;
  -moz-justify-content: flex-end;
  -ms-justify-content: flex-end;
  justify-content: flex-end;
  -ms-flex-pack: flex-end;
}

.flex-space-between, .cal-header .cal-header-wrap {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-pack: space-between;
}

.flex-bottom {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: flex-end;
  -moz-align-items: flex-end;
  -ms-align-items: flex-end;
  -ms-flex-align: flex-end;
  align-items: flex-end;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
}

.flex-direction-column {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.inline-flex {
  display: inline-flex;
}

.fixed-pos {
  position: fixed;
  width: 100%;
}

@-ms-viewport {
  width: device-width;
}
html {
  box-sizing: border-box;
  -ms-overflow-style: scrollbar;
}

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

.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
  max-width: 1640px;
}
.container.pad-lr-0 {
  padding-right: 0px;
  padding-left: 0px;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}
@media (min-width: 1400px) {
  .container {
    max-width: 1280px;
  }
}
@media (min-width: 1600px) {
  .container {
    max-width: 1580px;
  }
}
@media (min-width: 1900px) {
  .container {
    max-width: 1640px;
  }
}
@media (min-width: 1980px) {
  .container {
    max-width: 1840px;
  }
}
.container-fluid {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

.row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.no-gutters {
  margin-right: 0;
  margin-left: 0;
}

.no-gutters > .col,
.no-gutters > [class*=col-] {
  padding-right: 0;
  padding-left: 0;
}

.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col,
.col-auto, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm,
.col-sm-auto, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md,
.col-md-auto, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg,
.col-lg-auto, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl,
.col-xl-auto {
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}

.col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}

.col-auto {
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: none;
}

.col-1 {
  -ms-flex: 0 0 8.333333%;
  flex: 0 0 8.333333%;
  max-width: 8.333333%;
}

.col-2 {
  -ms-flex: 0 0 16.666667%;
  flex: 0 0 16.666667%;
  max-width: 16.666667%;
}

.col-3 {
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
  max-width: 25%;
}

.col-4 {
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}

.col-5 {
  -ms-flex: 0 0 41.666667%;
  flex: 0 0 41.666667%;
  max-width: 41.666667%;
}

.col-6 {
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
}

.col-7 {
  -ms-flex: 0 0 58.333333%;
  flex: 0 0 58.333333%;
  max-width: 58.333333%;
}

.col-8 {
  -ms-flex: 0 0 66.666667%;
  flex: 0 0 66.666667%;
  max-width: 66.666667%;
}

.col-9 {
  -ms-flex: 0 0 75%;
  flex: 0 0 75%;
  max-width: 75%;
}

.col-10 {
  -ms-flex: 0 0 83.333333%;
  flex: 0 0 83.333333%;
  max-width: 83.333333%;
}

.col-11 {
  -ms-flex: 0 0 91.666667%;
  flex: 0 0 91.666667%;
  max-width: 91.666667%;
}

.col-12 {
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
}

.order-first {
  -ms-flex-order: -1;
  order: -1;
}

.order-last {
  -ms-flex-order: 13;
  order: 13;
}

.order-0 {
  -ms-flex-order: 0;
  order: 0;
}

.order-1 {
  -ms-flex-order: 1;
  order: 1;
}

.order-2 {
  -ms-flex-order: 2;
  order: 2;
}

.order-3 {
  -ms-flex-order: 3;
  order: 3;
}

.order-4 {
  -ms-flex-order: 4;
  order: 4;
}

.order-5 {
  -ms-flex-order: 5;
  order: 5;
}

.order-6 {
  -ms-flex-order: 6;
  order: 6;
}

.order-7 {
  -ms-flex-order: 7;
  order: 7;
}

.order-8 {
  -ms-flex-order: 8;
  order: 8;
}

.order-9 {
  -ms-flex-order: 9;
  order: 9;
}

.order-10 {
  -ms-flex-order: 10;
  order: 10;
}

.order-11 {
  -ms-flex-order: 11;
  order: 11;
}

.order-12 {
  -ms-flex-order: 12;
  order: 12;
}

.offset-1 {
  margin-left: 8.333333%;
}

.offset-2 {
  margin-left: 16.666667%;
}

.offset-3 {
  margin-left: 25%;
}

.offset-4 {
  margin-left: 33.333333%;
}

.offset-5 {
  margin-left: 41.666667%;
}

.offset-6 {
  margin-left: 50%;
}

.offset-7 {
  margin-left: 58.333333%;
}

.offset-8 {
  margin-left: 66.666667%;
}

.offset-9 {
  margin-left: 75%;
}

.offset-10 {
  margin-left: 83.333333%;
}

.offset-11 {
  margin-left: 91.666667%;
}

@media (min-width: 576px) {
  .col-sm {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-sm-auto {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .col-sm-1 {
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-sm-2 {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-sm-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-sm-4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-sm-5 {
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-sm-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-sm-7 {
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-sm-8 {
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-sm-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-sm-10 {
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-sm-11 {
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-sm-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-sm-first {
    -ms-flex-order: -1;
    order: -1;
  }
  .order-sm-last {
    -ms-flex-order: 13;
    order: 13;
  }
  .order-sm-0 {
    -ms-flex-order: 0;
    order: 0;
  }
  .order-sm-1 {
    -ms-flex-order: 1;
    order: 1;
  }
  .order-sm-2 {
    -ms-flex-order: 2;
    order: 2;
  }
  .order-sm-3 {
    -ms-flex-order: 3;
    order: 3;
  }
  .order-sm-4 {
    -ms-flex-order: 4;
    order: 4;
  }
  .order-sm-5 {
    -ms-flex-order: 5;
    order: 5;
  }
  .order-sm-6 {
    -ms-flex-order: 6;
    order: 6;
  }
  .order-sm-7 {
    -ms-flex-order: 7;
    order: 7;
  }
  .order-sm-8 {
    -ms-flex-order: 8;
    order: 8;
  }
  .order-sm-9 {
    -ms-flex-order: 9;
    order: 9;
  }
  .order-sm-10 {
    -ms-flex-order: 10;
    order: 10;
  }
  .order-sm-11 {
    -ms-flex-order: 11;
    order: 11;
  }
  .order-sm-12 {
    -ms-flex-order: 12;
    order: 12;
  }
  .offset-sm-0 {
    margin-left: 0;
  }
  .offset-sm-1 {
    margin-left: 8.333333%;
  }
  .offset-sm-2 {
    margin-left: 16.666667%;
  }
  .offset-sm-3 {
    margin-left: 25%;
  }
  .offset-sm-4 {
    margin-left: 33.333333%;
  }
  .offset-sm-5 {
    margin-left: 41.666667%;
  }
  .offset-sm-6 {
    margin-left: 50%;
  }
  .offset-sm-7 {
    margin-left: 58.333333%;
  }
  .offset-sm-8 {
    margin-left: 66.666667%;
  }
  .offset-sm-9 {
    margin-left: 75%;
  }
  .offset-sm-10 {
    margin-left: 83.333333%;
  }
  .offset-sm-11 {
    margin-left: 91.666667%;
  }
}
@media (min-width: 768px) {
  .col-md {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-md-auto {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .col-md-1 {
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-md-2 {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-md-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-md-4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-md-5 {
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-md-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-md-7 {
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-md-8 {
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-md-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-md-10 {
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-md-11 {
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-md-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-md-first {
    -ms-flex-order: -1;
    order: -1;
  }
  .order-md-last {
    -ms-flex-order: 13;
    order: 13;
  }
  .order-md-0 {
    -ms-flex-order: 0;
    order: 0;
  }
  .order-md-1 {
    -ms-flex-order: 1;
    order: 1;
  }
  .order-md-2 {
    -ms-flex-order: 2;
    order: 2;
  }
  .order-md-3 {
    -ms-flex-order: 3;
    order: 3;
  }
  .order-md-4 {
    -ms-flex-order: 4;
    order: 4;
  }
  .order-md-5 {
    -ms-flex-order: 5;
    order: 5;
  }
  .order-md-6 {
    -ms-flex-order: 6;
    order: 6;
  }
  .order-md-7 {
    -ms-flex-order: 7;
    order: 7;
  }
  .order-md-8 {
    -ms-flex-order: 8;
    order: 8;
  }
  .order-md-9 {
    -ms-flex-order: 9;
    order: 9;
  }
  .order-md-10 {
    -ms-flex-order: 10;
    order: 10;
  }
  .order-md-11 {
    -ms-flex-order: 11;
    order: 11;
  }
  .order-md-12 {
    -ms-flex-order: 12;
    order: 12;
  }
  .offset-md-0 {
    margin-left: 0;
  }
  .offset-md-1 {
    margin-left: 8.333333%;
  }
  .offset-md-2 {
    margin-left: 16.666667%;
  }
  .offset-md-3 {
    margin-left: 25%;
  }
  .offset-md-4 {
    margin-left: 33.333333%;
  }
  .offset-md-5 {
    margin-left: 41.666667%;
  }
  .offset-md-6 {
    margin-left: 50%;
  }
  .offset-md-7 {
    margin-left: 58.333333%;
  }
  .offset-md-8 {
    margin-left: 66.666667%;
  }
  .offset-md-9 {
    margin-left: 75%;
  }
  .offset-md-10 {
    margin-left: 83.333333%;
  }
  .offset-md-11 {
    margin-left: 91.666667%;
  }
}
@media (min-width: 992px) {
  .col-lg {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-lg-auto {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .col-lg-1 {
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-lg-2 {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-lg-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-lg-4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-lg-5 {
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-lg-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-lg-7 {
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-lg-8 {
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-lg-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-lg-10 {
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-lg-11 {
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-lg-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-lg-first {
    -ms-flex-order: -1;
    order: -1;
  }
  .order-lg-last {
    -ms-flex-order: 13;
    order: 13;
  }
  .order-lg-0 {
    -ms-flex-order: 0;
    order: 0;
  }
  .order-lg-1 {
    -ms-flex-order: 1;
    order: 1;
  }
  .order-lg-2 {
    -ms-flex-order: 2;
    order: 2;
  }
  .order-lg-3 {
    -ms-flex-order: 3;
    order: 3;
  }
  .order-lg-4 {
    -ms-flex-order: 4;
    order: 4;
  }
  .order-lg-5 {
    -ms-flex-order: 5;
    order: 5;
  }
  .order-lg-6 {
    -ms-flex-order: 6;
    order: 6;
  }
  .order-lg-7 {
    -ms-flex-order: 7;
    order: 7;
  }
  .order-lg-8 {
    -ms-flex-order: 8;
    order: 8;
  }
  .order-lg-9 {
    -ms-flex-order: 9;
    order: 9;
  }
  .order-lg-10 {
    -ms-flex-order: 10;
    order: 10;
  }
  .order-lg-11 {
    -ms-flex-order: 11;
    order: 11;
  }
  .order-lg-12 {
    -ms-flex-order: 12;
    order: 12;
  }
  .offset-lg-0 {
    margin-left: 0;
  }
  .offset-lg-1 {
    margin-left: 8.333333%;
  }
  .offset-lg-2 {
    margin-left: 16.666667%;
  }
  .offset-lg-3 {
    margin-left: 25%;
  }
  .offset-lg-4 {
    margin-left: 33.333333%;
  }
  .offset-lg-5 {
    margin-left: 41.666667%;
  }
  .offset-lg-6 {
    margin-left: 50%;
  }
  .offset-lg-7 {
    margin-left: 58.333333%;
  }
  .offset-lg-8 {
    margin-left: 66.666667%;
  }
  .offset-lg-9 {
    margin-left: 75%;
  }
  .offset-lg-10 {
    margin-left: 83.333333%;
  }
  .offset-lg-11 {
    margin-left: 91.666667%;
  }
}
@media (min-width: 1200px) {
  .col-xl {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-xl-auto {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .col-xl-1 {
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-xl-2 {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-xl-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-xl-4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-xl-5 {
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-xl-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-xl-7 {
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-xl-8 {
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-xl-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-xl-10 {
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-xl-11 {
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-xl-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-xl-first {
    -ms-flex-order: -1;
    order: -1;
  }
  .order-xl-last {
    -ms-flex-order: 13;
    order: 13;
  }
  .order-xl-0 {
    -ms-flex-order: 0;
    order: 0;
  }
  .order-xl-1 {
    -ms-flex-order: 1;
    order: 1;
  }
  .order-xl-2 {
    -ms-flex-order: 2;
    order: 2;
  }
  .order-xl-3 {
    -ms-flex-order: 3;
    order: 3;
  }
  .order-xl-4 {
    -ms-flex-order: 4;
    order: 4;
  }
  .order-xl-5 {
    -ms-flex-order: 5;
    order: 5;
  }
  .order-xl-6 {
    -ms-flex-order: 6;
    order: 6;
  }
  .order-xl-7 {
    -ms-flex-order: 7;
    order: 7;
  }
  .order-xl-8 {
    -ms-flex-order: 8;
    order: 8;
  }
  .order-xl-9 {
    -ms-flex-order: 9;
    order: 9;
  }
  .order-xl-10 {
    -ms-flex-order: 10;
    order: 10;
  }
  .order-xl-11 {
    -ms-flex-order: 11;
    order: 11;
  }
  .order-xl-12 {
    -ms-flex-order: 12;
    order: 12;
  }
  .offset-xl-0 {
    margin-left: 0;
  }
  .offset-xl-1 {
    margin-left: 8.333333%;
  }
  .offset-xl-2 {
    margin-left: 16.666667%;
  }
  .offset-xl-3 {
    margin-left: 25%;
  }
  .offset-xl-4 {
    margin-left: 33.333333%;
  }
  .offset-xl-5 {
    margin-left: 41.666667%;
  }
  .offset-xl-6 {
    margin-left: 50%;
  }
  .offset-xl-7 {
    margin-left: 58.333333%;
  }
  .offset-xl-8 {
    margin-left: 66.666667%;
  }
  .offset-xl-9 {
    margin-left: 75%;
  }
  .offset-xl-10 {
    margin-left: 83.333333%;
  }
  .offset-xl-11 {
    margin-left: 91.666667%;
  }
}
.d-none {
  display: none !important;
}

.d-inline {
  display: inline !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-block {
  display: block !important;
}

.d-table {
  display: table !important;
}

.d-table-row {
  display: table-row !important;
}

.d-table-cell {
  display: table-cell !important;
}

.d-flex {
  display: -ms-flexbox !important;
  display: flex !important;
}

.d-inline-flex {
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
}

@media (min-width: 576px) {
  .d-sm-none {
    display: none !important;
  }
  .d-sm-inline {
    display: inline !important;
  }
  .d-sm-inline-block {
    display: inline-block !important;
  }
  .d-sm-block {
    display: block !important;
  }
  .d-sm-table {
    display: table !important;
  }
  .d-sm-table-row {
    display: table-row !important;
  }
  .d-sm-table-cell {
    display: table-cell !important;
  }
  .d-sm-flex {
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-sm-inline-flex {
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}
@media (min-width: 768px) {
  .d-md-none {
    display: none !important;
  }
  .d-md-inline {
    display: inline !important;
  }
  .d-md-inline-block {
    display: inline-block !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-table {
    display: table !important;
  }
  .d-md-table-row {
    display: table-row !important;
  }
  .d-md-table-cell {
    display: table-cell !important;
  }
  .d-md-flex {
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-md-inline-flex {
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}
@media (min-width: 992px) {
  .d-lg-none {
    display: none !important;
  }
  .d-lg-inline {
    display: inline !important;
  }
  .d-lg-inline-block {
    display: inline-block !important;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-table {
    display: table !important;
  }
  .d-lg-table-row {
    display: table-row !important;
  }
  .d-lg-table-cell {
    display: table-cell !important;
  }
  .d-lg-flex {
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-lg-inline-flex {
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}
@media (min-width: 1200px) {
  .d-xl-none {
    display: none !important;
  }
  .d-xl-inline {
    display: inline !important;
  }
  .d-xl-inline-block {
    display: inline-block !important;
  }
  .d-xl-block {
    display: block !important;
  }
  .d-xl-table {
    display: table !important;
  }
  .d-xl-table-row {
    display: table-row !important;
  }
  .d-xl-table-cell {
    display: table-cell !important;
  }
  .d-xl-flex {
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-xl-inline-flex {
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}
@media print {
  .d-print-none {
    display: none !important;
  }
  .d-print-inline {
    display: inline !important;
  }
  .d-print-inline-block {
    display: inline-block !important;
  }
  .d-print-block {
    display: block !important;
  }
  .d-print-table {
    display: table !important;
  }
  .d-print-table-row {
    display: table-row !important;
  }
  .d-print-table-cell {
    display: table-cell !important;
  }
  .d-print-flex {
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-print-inline-flex {
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}
.flex-row {
  -ms-flex-direction: row !important;
  flex-direction: row !important;
}

.flex-column {
  -ms-flex-direction: column !important;
  flex-direction: column !important;
}

.flex-row-reverse {
  -ms-flex-direction: row-reverse !important;
  flex-direction: row-reverse !important;
}

.flex-column-reverse {
  -ms-flex-direction: column-reverse !important;
  flex-direction: column-reverse !important;
}

.flex-wrap {
  -ms-flex-wrap: wrap !important;
  flex-wrap: wrap !important;
}

.flex-nowrap {
  -ms-flex-wrap: nowrap !important;
  flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
  -ms-flex-wrap: wrap-reverse !important;
  flex-wrap: wrap-reverse !important;
}

.flex-fill {
  -ms-flex: 1 1 auto !important;
  flex: 1 1 auto !important;
}

.flex-grow-0 {
  -ms-flex-positive: 0 !important;
  flex-grow: 0 !important;
}

.flex-grow-1 {
  -ms-flex-positive: 1 !important;
  flex-grow: 1 !important;
}

.flex-shrink-0 {
  -ms-flex-negative: 0 !important;
  flex-shrink: 0 !important;
}

.flex-shrink-1 {
  -ms-flex-negative: 1 !important;
  flex-shrink: 1 !important;
}

.justify-content-start {
  -ms-flex-pack: start !important;
  justify-content: flex-start !important;
}

.justify-content-end {
  -ms-flex-pack: end !important;
  justify-content: flex-end !important;
}

.justify-content-center {
  -ms-flex-pack: center !important;
  justify-content: center !important;
}

.justify-content-between {
  -ms-flex-pack: justify !important;
  justify-content: space-between !important;
}

.justify-content-around {
  -ms-flex-pack: distribute !important;
  justify-content: space-around !important;
}

.align-items-start {
  -ms-flex-align: start !important;
  align-items: flex-start !important;
}

.align-items-end {
  -ms-flex-align: end !important;
  align-items: flex-end !important;
}

.align-items-center {
  -ms-flex-align: center !important;
  align-items: center !important;
}

.align-items-baseline {
  -ms-flex-align: baseline !important;
  align-items: baseline !important;
}

.align-items-stretch {
  -ms-flex-align: stretch !important;
  align-items: stretch !important;
}

.align-content-start {
  -ms-flex-line-pack: start !important;
  align-content: flex-start !important;
}

.align-content-end {
  -ms-flex-line-pack: end !important;
  align-content: flex-end !important;
}

.align-content-center {
  -ms-flex-line-pack: center !important;
  align-content: center !important;
}

.align-content-between {
  -ms-flex-line-pack: justify !important;
  align-content: space-between !important;
}

.align-content-around {
  -ms-flex-line-pack: distribute !important;
  align-content: space-around !important;
}

.align-content-stretch {
  -ms-flex-line-pack: stretch !important;
  align-content: stretch !important;
}

.align-self-auto {
  -ms-flex-item-align: auto !important;
  align-self: auto !important;
}

.align-self-start {
  -ms-flex-item-align: start !important;
  align-self: flex-start !important;
}

.align-self-end {
  -ms-flex-item-align: end !important;
  align-self: flex-end !important;
}

.align-self-center {
  -ms-flex-item-align: center !important;
  align-self: center !important;
}

.align-self-baseline {
  -ms-flex-item-align: baseline !important;
  align-self: baseline !important;
}

.align-self-stretch {
  -ms-flex-item-align: stretch !important;
  align-self: stretch !important;
}

@media (min-width: 576px) {
  .flex-sm-row {
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .flex-sm-column {
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .flex-sm-row-reverse {
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  .flex-sm-column-reverse {
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  .flex-sm-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  .flex-sm-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  .flex-sm-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .flex-sm-fill {
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
  }
  .flex-sm-grow-0 {
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important;
  }
  .flex-sm-grow-1 {
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important;
  }
  .flex-sm-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
  }
  .flex-sm-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important;
  }
  .justify-content-sm-start {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-sm-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-sm-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-sm-between {
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .justify-content-sm-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  .align-items-sm-start {
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-sm-end {
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-sm-center {
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  .align-items-sm-baseline {
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  .align-items-sm-stretch {
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }
  .align-content-sm-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }
  .align-content-sm-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }
  .align-content-sm-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }
  .align-content-sm-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }
  .align-content-sm-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }
  .align-content-sm-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }
  .align-self-sm-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }
  .align-self-sm-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  .align-self-sm-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
  .align-self-sm-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }
  .align-self-sm-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }
  .align-self-sm-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
}
@media (min-width: 768px) {
  .flex-md-row {
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .flex-md-column {
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .flex-md-row-reverse {
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  .flex-md-column-reverse {
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  .flex-md-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  .flex-md-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  .flex-md-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .flex-md-fill {
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
  }
  .flex-md-grow-0 {
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important;
  }
  .flex-md-grow-1 {
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important;
  }
  .flex-md-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
  }
  .flex-md-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important;
  }
  .justify-content-md-start {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-md-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-md-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-md-between {
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .justify-content-md-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  .align-items-md-start {
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-md-end {
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-md-center {
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  .align-items-md-baseline {
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  .align-items-md-stretch {
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }
  .align-content-md-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }
  .align-content-md-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }
  .align-content-md-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }
  .align-content-md-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }
  .align-content-md-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }
  .align-content-md-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }
  .align-self-md-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }
  .align-self-md-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  .align-self-md-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
  .align-self-md-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }
  .align-self-md-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }
  .align-self-md-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
}
@media (min-width: 992px) {
  .flex-lg-row {
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .flex-lg-column {
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .flex-lg-row-reverse {
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  .flex-lg-column-reverse {
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  .flex-lg-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  .flex-lg-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  .flex-lg-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .flex-lg-fill {
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
  }
  .flex-lg-grow-0 {
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important;
  }
  .flex-lg-grow-1 {
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important;
  }
  .flex-lg-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
  }
  .flex-lg-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important;
  }
  .justify-content-lg-start {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-lg-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-lg-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-lg-between {
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .justify-content-lg-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  .align-items-lg-start {
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-lg-end {
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-lg-center {
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  .align-items-lg-baseline {
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  .align-items-lg-stretch {
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }
  .align-content-lg-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }
  .align-content-lg-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }
  .align-content-lg-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }
  .align-content-lg-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }
  .align-content-lg-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }
  .align-content-lg-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }
  .align-self-lg-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }
  .align-self-lg-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  .align-self-lg-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
  .align-self-lg-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }
  .align-self-lg-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }
  .align-self-lg-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
}
@media (min-width: 1200px) {
  .flex-xl-row {
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .flex-xl-column {
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .flex-xl-row-reverse {
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  .flex-xl-column-reverse {
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  .flex-xl-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  .flex-xl-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  .flex-xl-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .flex-xl-fill {
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
  }
  .flex-xl-grow-0 {
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important;
  }
  .flex-xl-grow-1 {
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important;
  }
  .flex-xl-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
  }
  .flex-xl-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important;
  }
  .justify-content-xl-start {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-xl-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-xl-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-xl-between {
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .justify-content-xl-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  .align-items-xl-start {
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-xl-end {
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-xl-center {
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  .align-items-xl-baseline {
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  .align-items-xl-stretch {
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }
  .align-content-xl-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }
  .align-content-xl-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }
  .align-content-xl-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }
  .align-content-xl-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }
  .align-content-xl-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }
  .align-content-xl-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }
  .align-self-xl-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }
  .align-self-xl-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  .align-self-xl-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
  .align-self-xl-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }
  .align-self-xl-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }
  .align-self-xl-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
}
.btn, .bdr-btn, .teal-btn, .white-btn, .black-btn {
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
  color: #fff;
  letter-spacing: 0px;
  text-align: center;
  width: fit-content;
  text-decoration: none;
  background-color: #FF7815;
  background-color: #CF2D7B;
  box-shadow: -20px 10px 30px rgba(70, 70, 70, 0.16);
  border-radius: 8px;
  outline: none;
  border: none;
  padding: 20px 20px;
  min-width: 343px;
  height: 73px;
  cursor: pointer;
  text-transform: uppercase;
}
.btn:hover, .bdr-btn:hover, .teal-btn:hover, .white-btn:hover, .black-btn:hover {
  background-color: #fff;
  color: #021D45;
}
@media only screen and (max-width: 1680px) {
  .btn, .bdr-btn, .teal-btn, .white-btn, .black-btn {
    min-width: 240px;
    height: 60px;
    font-size: 14px;
    line-height: 20px;
  }
}
@media only screen and (max-width: 1280px) {
  .btn, .bdr-btn, .teal-btn, .white-btn, .black-btn {
    padding: 15px 10px;
    height: 50px;
    font-size: 14px;
    min-width: 200px;
  }
}
@media only screen and (max-width: 1024px) {
  .btn, .bdr-btn, .teal-btn, .white-btn, .black-btn {
    height: 50px;
    font-size: 16px;
    line-height: 20px;
    min-width: 180px;
  }
}

.black-btn {
  background-color: #021D45;
}

.white-btn {
  background-color: #fff;
  color: #171717;
}

.teal-btn {
  background-color: #41B9D5;
}

.yellow-btn {
  font-size: 18px;
  font-weight: 600;
  line-height: 21px;
  color: #fff;
  background-color: #FFA52C;
  box-shadow: -50px 30px 30px rgba(0, 0, 0, 0.1607843137);
  width: 226px;
  height: 67px;
  border-radius: 8px;
}
@media only screen and (max-width: 1680px) {
  .yellow-btn {
    width: 180px;
    height: 50px;
  }
}
@media only screen and (max-width: 1024px) {
  .yellow-btn {
    font-size: 8px;
    line-height: 10px;
    width: 108px;
    height: 32px;
  }
}

.bdr-btn {
  background-color: transparent;
  border: 2px solid #FFFFFF;
  height: 69px;
}
@media only screen and (max-width: 1280px) {
  .bdr-btn {
    height: 55px;
  }
}

.medium-btn {
  min-width: 300px;
}
@media only screen and (max-width: 1680px) {
  .medium-btn {
    min-width: 220px;
  }
}
@media only screen and (max-width: 1280px) {
  .medium-btn {
    min-width: 180px;
  }
}
@media only screen and (max-width: 1024px) {
  .medium-btn {
    min-width: 180px;
  }
}

.small-btn {
  min-width: 197px;
  max-width: 197px;
}
@media only screen and (max-width: 1680px) {
  .small-btn {
    min-width: 160px;
    max-width: 160px;
  }
}

.blue-btn {
  background-color: #305FA5;
}

.fixed-btn {
  position: fixed;
  bottom: 20%;
  right: 0%;
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  z-index: 999;
}
.fixed-btn .btn, .fixed-btn .black-btn, .fixed-btn .white-btn, .fixed-btn .teal-btn, .fixed-btn .bdr-btn {
  min-width: 197px;
  height: 76px;
  margin-left: 14px;
  text-transform: uppercase;
  visibility: hidden;
}
@media only screen and (max-width: 1680px) {
  .fixed-btn .btn, .fixed-btn .black-btn, .fixed-btn .white-btn, .fixed-btn .teal-btn, .fixed-btn .bdr-btn {
    min-width: 160px;
    height: 54px;
  }
}
@media only screen and (max-width: 1024px) {
  .fixed-btn .btn, .fixed-btn .black-btn, .fixed-btn .white-btn, .fixed-btn .teal-btn, .fixed-btn .bdr-btn {
    opacity: 0;
  }
}
.fixed-btn .white-btn {
  min-width: 197px;
  text-transform: uppercase;
}
@media only screen and (max-width: 1280px) {
  .fixed-btn .white-btn {
    min-width: 180px;
    margin-left: 15px;
  }
}
@media only screen and (max-width: 1024px) {
  .fixed-btn .white-btn {
    opacity: 1 !important;
    padding: 8px 12px;
    height: 36px;
    font-size: 14px;
    list-style: 40px;
  }
}
.fixed-btn .whatapp-btn {
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
@media only screen and (max-width: 1680px) {
  .fixed-btn .whatapp-btn img {
    width: 150px;
  }
}
@media only screen and (min-width: 1024px) {
  .fixed-btn .whatapp-btn:hover {
    transform: scale(1.02);
    transition: all 0.3s;
  }
}
@media only screen and (max-width: 1024px) {
  .fixed-btn .whatapp-btn:active {
    transform: scale(1.02);
    transition: all 0.3s;
  }
}
.fixed-btn .btn-rayan {
  width: 197px;
  height: 76px;
}
@media only screen and (max-width: 1680px) {
  .fixed-btn .btn-rayan {
    width: 160px;
    height: 54px;
  }
}
@media only screen and (max-width: 1024px) {
  .fixed-btn .btn-rayan {
    opacity: 0;
  }
}

.next-prev-btn .scroll-prev, .next-prev-btn .scroll-next {
  width: 90px;
  height: 90px;
  margin: 0px 20px;
}
@media only screen and (max-width: 1680px) {
  .next-prev-btn .scroll-prev, .next-prev-btn .scroll-next {
    width: 50px;
    height: 50px;
    margin: 0px 10px;
  }
  .next-prev-btn .scroll-prev img, .next-prev-btn .scroll-next img {
    width: auto;
  }
}
@media only screen and (min-width: 1024px) {
  .next-prev-btn .scroll-prev:hover, .next-prev-btn .scroll-next:hover {
    transform: scale(1.1);
    transition: all 0.3s;
  }
}
@media only screen and (max-width: 1024px) {
  .next-prev-btn .scroll-prev:active, .next-prev-btn .scroll-next:active {
    transform: scale(1.1);
    transition: all 0.3s;
  }
}
.next-prev-btn .scroll-prev.active, .next-prev-btn .scroll-next.active {
  opacity: 1;
}
.next-prev-btn .scroll-prev {
  margin-left: 0px;
}
.next-prev-btn .scroll-next {
  margin-right: 0px;
}

.next {
  width: 42px;
  height: 24px;
  background: url("https://site-assets.fitterfly.com/site-assets/images/next-arrow.svg") no-repeat center;
}

.back {
  width: 42px;
  height: 24px;
  background: url("https://site-assets.fitterfly.com/site-assets/images/prev-arrow.svg") no-repeat center;
}

.back-btn {
  color: #171717;
  cursor: pointer;
  width: fit-content;
}
.back-btn .back {
  margin-right: 20px;
}

.btn-center {
  margin: 0 auto;
}

.btn-outline-blue {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 3px solid #305FA5;
  padding: 0 25px;
  border-radius: 10px;
  height: 60px;
  background-color: #fff;
  cursor: pointer;
}
.btn-outline-blue span {
  color: #305FA5;
}
@media only screen and (max-width: 1024px) {
  .btn-outline-blue {
    padding: 0 20px;
    font-weight: 600;
  }
}

.btn-pink {
  cursor: pointer;
  background: #CF2D7B;
  padding: 0px 20px;
  border-radius: 10px;
  color: #fff;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
}
.btn-pink.btn-inline {
  display: inline-flex;
  padding: 0px 20px;
}
@media only screen and (max-width: 1024px) {
  .btn-pink {
    padding: 0 10px;
    font-weight: 600;
  }
}

.btn-bdr {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px solid;
  padding: 0 15px;
  border-radius: 5px;
  height: 50px;
  background-color: transparent;
  color: #171717;
  cursor: pointer;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 3px;
}
.btn-bdr span {
  color: #171717;
}
@media only screen and (max-width: 1024px) {
  .btn-bdr {
    font-size: 14px;
    line-height: 18px;
    letter-spacing: 1.8px;
    color: #012042;
    padding: 0 10px;
  }
}
.btn-bdr.bdr-black {
  border-color: #171717;
}
.btn-bdr.bdr-pink {
  border-color: #CF2D7B;
}
.btn-bdr.bdr-pink span {
  color: #CF2D7B;
}

.button-row {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
.button-row .btn-bdr {
  display: inline-flex;
  padding: 0 10px;
}

@media screen and (max-width: 1024px) {
  .mob-btn-block {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .mob-btn-block .btn-bdr {
    display: inline-flex;
    padding: 0 10px;
  }
  .mob-btn-block .speak {
    margin-left: 0px;
    margin-top: 20px;
  }
}

.what-btn {
  background: #FFFFFF 0% 0% no-repeat padding-box;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1607843137);
  border-radius: 5px;
  padding: 10px;
  width: 50px;
}

.side-button {
  position: relative;
}
.side-button .book-call {
  position: absolute;
  transform: rotate(270deg);
  width: 150px;
  bottom: 110px;
  right: -50px;
  height: 50px;
}

.fixed-btn.mobile-view {
  bottom: 0;
  width: 100%;
}
.fixed-btn.mobile-view .side-button {
  width: 100%;
}
.fixed-btn.mobile-view .side-button .book-call {
  position: unset;
  transform: unset;
  width: unset;
  width: 50%;
  border-radius: 0;
}
.fixed-btn.mobile-view .side-button .what-btn {
  width: 50%;
  border-radius: 0;
}

@media only screen and (max-width: 1280px) {
  .program-info-button span {
    font-size: 12px;
  }
}
@media only screen and (max-width: 768px) {
  .program-info-button {
    flex-direction: column;
  }
}
.program-info-button .btn-pink {
  height: 52px;
  border-radius: 10px;
}
.program-info-button .secound-btn {
  padding: 0px 15px;
}
@media only screen and (max-width: 768px) {
  .program-info-button .secound-btn {
    padding: 15px 0px;
  }
}
@media only screen and (max-width: 1280px) {
  .program-info-button .secound-btn .btn-bdr {
    padding: 0px 9px;
  }
}
.program-info-button .secound-btn .btn-bdr span {
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0px;
}
@media only screen and (max-width: 1280px) {
  .program-info-button .secound-btn .btn-bdr span {
    font-size: 12px;
  }
}
.program-info-button .secound-btn .bdr-pink {
  border-radius: 10px;
}

.button {
  color: #FFF;
  font-family: "Inter", sans-serif;
  font-display: swap;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 28px;
  text-transform: capitalize;
  width: 100%;
  height: 50px;
  padding: 10px 20px;
  gap: 15px;
  border-radius: 10px;
  border: none;
  background-image: linear-gradient(90deg, #DB0E7E 0.39%, #F841A5 103.94%);
  background-color: #DB0E7E;
  -webkit-backface-visibility: hidden;
  z-index: 1;
  position: relative;
  transition: opacity 0.7s;
  text-decoration: none;
  cursor: pointer;
}
.button::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background-image: linear-gradient(90deg, #990054 0.39%, #E01483 103.94%);
  transition: opacity 0.5s ease-out;
  z-index: 2;
  opacity: 0;
}
.button span {
  position: relative;
  z-index: 3;
  color: #FFF;
  font-family: "Inter", sans-serif;
  font-display: swap;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 28px;
  text-transform: capitalize;
  padding-right: 40px;
}
.button span::after {
  content: "";
  position: absolute;
  right: 10px;
  top: 7px;
  width: 20px;
  height: 15px;
  background: url("https://site-assets.fitterfly.com/site-assets/images/site-1/next-arrow.svg") no-repeat center;
  transform: translate(0px, 0px);
  transition: transform 0.5s ease-in-out;
}
.button:hover::after {
  opacity: 1;
}
.button:hover span::after {
  transform: translate(10px, 0px);
}

.sm-button {
  width: 221px;
}

.md-button {
  width: 262px;
}
@media only screen and (max-width: 1023px) {
  .md-button {
    width: auto;
  }
}

.lg-button {
  width: 295px;
}
@media only screen and (max-width: 1023px) {
  .lg-button {
    width: auto;
  }
}

.btn-rayan {
  overflow: hidden;
  position: relative;
  width: 300px;
}
@media screen and (max-width: 1680px) {
  .btn-rayan {
    width: 250px;
  }
}
@media only screen and (max-width: 1280px) {
  .btn-rayan {
    width: 200px;
  }
}
.btn-rayan:before {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: #021D45 !important;
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(0, 100%, 0);
  transition: transform 0.3s, opacity 0.3s;
  -webkit-transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
  transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
}
.btn-rayan span {
  display: block;
  vertical-align: middle;
  -webkit-transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  -webkit-transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
  transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
}
@media only screen and (min-width: 1024px) {
  .btn-rayan:hover::before {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .btn-rayan:hover span {
    -webkit-transform: translate3d(0, 250%, 0);
    transform: translate3d(0, 250%, 0);
  }
}
@media only screen and (max-width: 1024px) {
  .btn-rayan {
    width: 250px;
  }
  .btn-rayan:active {
    color: #021D45;
    background: #fff;
  }
}

.white-btn-rayan {
  overflow: hidden;
  position: relative;
  width: 230px;
}
@media only screen and (max-width: 1280px) {
  .white-btn-rayan {
    width: 180px;
  }
}
.white-btn-rayan:before {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #166780;
  color: #fff !important;
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
  -webkit-transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  -webkit-transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
  transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
}
.white-btn-rayan span {
  display: block;
  vertical-align: middle;
  -webkit-transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  -webkit-transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
  transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
}
@media only screen and (min-width: 1024px) {
  .white-btn-rayan:hover:before {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .white-btn-rayan:hover span {
    -webkit-transform: translate3d(0, 250%, 0);
    transform: translate3d(0, 250%, 0);
  }
}
@media only screen and (max-width: 1024px) {
  .white-btn-rayan:active {
    color: #fff;
    background: #166780;
  }
}

/* Shine */
.hover-anim {
  overflow: hidden;
}
.hover-anim .hover-content {
  position: relative;
}
.hover-anim .hover-content::before {
  position: absolute;
  top: 0;
  left: -75%;
  z-index: 1;
  display: block;
  content: "";
  width: 50%;
  height: 100%;
  background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  -webkit-transform: skewX(-25deg);
  transform: skewX(-25deg);
}
.hover-anim .hover-content:hover::before {
  -webkit-animation: shine 0.75s;
  animation: shine 0.75s;
}

@-webkit-keyframes shine {
  100% {
    left: 100%;
  }
}
@keyframes shine {
  100% {
    left: 100%;
  }
}
.floating-anim {
  animation-name: floating;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
  margin-top: 5px;
}

@keyframes floating {
  0% {
    transform: translate(0, 0px);
  }
  50% {
    transform: translate(0, 15px);
  }
  100% {
    transform: translate(0, 0px);
  }
}
@keyframes shadow {}
.desktop-view {
  display: block;
}
@media only screen and (max-width: 1024px) {
  .desktop-view {
    display: none !important;
  }
}

.desktop-inline-view {
  display: inline-block;
}
@media only screen and (max-width: 1024px) {
  .desktop-inline-view {
    display: none !important;
  }
}

.mobile-view {
  display: none !important;
}
@media only screen and (max-width: 1024px) {
  .mobile-view {
    display: block !important;
  }
}

@media only screen and (max-width: 1024px) {
  .fixed-btn.fixed-cont-btn {
    display: none;
  }
  .feature-section .owl-theme .owl-nav {
    margin-top: 0px;
  }
  .awards-recognitions-section .section-head {
    margin-left: 10%;
  }
  .awards-recognitions-section .section-head p {
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 26px;
  }
  .awards-recognitions-section .section-head p br {
    display: none;
  }
  .offer-section.section-pad {
    padding: 0px 0px;
  }
  .offer-section h2 br, .offer-section p br {
    display: none;
  }
  .offer-section .owl-theme .owl-nav {
    margin-bottom: 10px;
  }
  .offer-section .section-head {
    margin-bottom: 48px;
    text-align: left;
  }
  .offer-section .container-fluid {
    max-width: 720px;
  }
  .programs-section .section-head {
    text-align: left;
  }
  .how-work-section .hws-right {
    text-align: center;
  }
  .how-work-section .hws-right .section-head h4 {
    color: #5D5D5D;
    margin-bottom: 30px;
  }
  .section-head h2.mb-60 {
    margin-bottom: 20px !important;
  }
  .mob-carsouel .row.first {
    flex-wrap: nowrap;
    overflow: scroll;
    justify-content: flex-start;
  }
  .mob-carsouel .cs-block {
    width: 250px;
  }
  .mob-carsouel .cs-lg-block {
    width: 300px;
  }
  .partner-list .row {
    flex-wrap: nowrap;
    overflow: scroll;
  }
  .entrprise-section .section-head h2 {
    padding-right: 80px;
  }
  .aboutus-section.section-pad {
    padding: 40px 0 36px;
  }
}
.error-txt {
  display: none;
}

.error .error-txt {
  font-size: 20px;
  line-height: 45px;
  color: #B40000;
}

.mpopup {
  display: none;
  position: fixed;
  z-index: 9999;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.4);
}
.mpopup .modal-content {
  position: relative;
  background-color: #fff;
  margin: auto;
  padding: 0;
  width: 60%;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  -webkit-animation-name: animatetop;
  -webkit-animation-duration: 0.4s;
  animation-name: animatetop;
  animation-duration: 0.4s;
  border-radius: 0.3rem;
}
.mpopup .modal-content video {
  display: flex;
}
.mpopup .modal-header {
  background-color: #ffffff;
  color: #333;
}
.mpopup .modal-header h2 {
  font-size: 1.25rem;
  margin-top: 14px;
  margin-bottom: 14px;
}
.mpopup .modal-body {
  padding: 2px 12px;
}
.mpopup .modal-footer {
  background-color: #ffffff;
  color: #333;
  text-align: right;
}
.mpopup .close {
  color: #fff;
  float: right;
  font-size: 50px;
  position: absolute;
  top: -40px;
  right: 5px;
}
.mpopup .close:hover, .mpopup .close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}
.mpopup.video-mpopup {
  padding-top: 0px;
}
.mpopup.video-mpopup .modal-content {
  height: auto;
}
@media only screen and (max-width: 1024px) {
  .mpopup.video-mpopup {
    padding-top: 0px;
  }
  .mpopup.video-mpopup .modal-content {
    width: 90%;
    height: auto;
  }
  .mpopup.video-mpopup .modal-content .iframe {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

/* add animation effects */
@-webkit-keyframes animatetop {
  from {
    top: -300px;
    opacity: 0;
  }
  to {
    top: 0;
    opacity: 1;
  }
}
@keyframes animatetop {
  from {
    top: -300px;
    opacity: 0;
  }
  to {
    top: 0;
    opacity: 1;
  }
}
.modal {
  position: fixed;
  z-index: 99999999999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.4);
}
.modal .modal-dialog {
  position: relative;
  background-color: #fff;
  margin: auto;
  padding: 0;
  width: 62%;
  border-radius: 6px;
}
@media only screen and (max-width: 1024px) {
  .modal .modal-dialog {
    width: 90%;
    height: 90%;
    overflow: scroll;
  }
}
.modal .modal-dialog .modal-content {
  background-color: #ffffff;
  border-radius: 8px;
}
.modal .modal-dialog .modal-content .modal-header {
  padding: 16px 40px;
  box-shadow: 0px 0px 20px rgba(2, 29, 69, 0.1215686275);
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 1024px) {
  .modal .modal-dialog .modal-content .modal-header {
    padding: 20px 20px;
  }
}
.modal .modal-dialog .modal-content .modal-header h3 {
  text-align: left;
  font-weight: 600;
  display: flex;
  justify-content: center;
  flex: 1;
  margin-left: 40px;
}
.modal .modal-dialog .modal-content .modal-header .close {
  cursor: pointer;
  display: flex;
  width: 36px;
  border-radius: 6px;
  background-color: #EFEFEF;
  font-size: 28px;
  justify-content: center;
  align-items: center;
  height: 36px;
  line-height: unset;
  padding-bottom: 4px;
  padding-left: 2px;
  z-index: 1;
}
.modal .modal-dialog .modal-content .modal-body {
  padding: 30px 40px;
}
.modal .modal-dialog .modal-content .modal-body .form-group {
  margin-bottom: 30px;
}

.package-block {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  border-radius: 0 0 6px 6px;
}
@media only screen and (max-width: 1024px) {
  .package-block {
    display: block;
  }
}

.prog-pricing {
  padding: 20px 20px;
  border-bottom: 1px solid #dedede;
  margin: 0 30px;
}
.prog-pricing h4 {
  font-size: 26px;
  line-height: 30px;
  font-weight: 500;
  letter-spacing: 0.2px;
  color: #171717;
  text-transform: uppercase;
  margin-bottom: 15px;
}
@media only screen and (max-width: 1680px) {
  .prog-pricing h4 {
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 10px;
  }
}
.prog-pricing h4.prog-tab {
  background: #E9F5FF;
  color: #1068B2;
  padding: 8px 12px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
  margin-bottom: 15px;
  opacity: 1;
}
.prog-pricing strong {
  font-size: 46px;
  line-height: 46px;
  font-weight: 800;
  letter-spacing: 0.74px;
  color: #171717;
  text-transform: capitalize;
}
@media only screen and (max-width: 1680px) {
  .prog-pricing strong {
    font-size: 36px;
    line-height: 36px;
  }
}

.prog-list {
  padding: 20px 0px 30px;
  margin: 0 30px;
  max-height: 400px;
}
@media only screen and (max-width: 1024px) {
  .prog-list {
    max-height: none;
  }
}
.prog-list ul li {
  font-size: 17px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0.27px;
  color: #171717;
  margin-bottom: 30px;
  position: relative;
  padding-left: 45px;
  text-align: left;
}
@media only screen and (max-width: 1680px) {
  .prog-list ul li {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 15px;
    padding-left: 40px;
  }
}
.prog-list ul li:last-child {
  margin-bottom: 0px;
}
.prog-list ul li:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  background-image: url(https://site-assets.fitterfly.com/site-assets/images/site-1/circle-tick.svg);
  background-repeat: no-repeat;
  background-position: center;
  width: 32px;
  height: 32px;
}
@media only screen and (max-width: 1680px) {
  .prog-list ul li:before {
    top: -6px;
    background-size: 25px;
  }
}
.prog-list .download-link {
  display: flex;
}
.prog-list .download-link a {
  margin: 15px 0px 0px 20px;
  text-decoration: underline;
}

.prog-footer {
  padding: 20px 40px;
  background-color: #EAFAFF;
  border-radius: 0 0 8px 8px;
}
.prog-footer .checkbox {
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
  letter-spacing: 0.26px;
  color: #171717;
  margin-bottom: 30px;
}
@media only screen and (max-width: 1680px) {
  .prog-footer .checkbox {
    font-size: 14px;
    line-height: 16px;
    margin-bottom: 20px;
    padding-left: 20px;
  }
}
.prog-footer .flex-link {
  font-size: 16px;
  line-height: 22px;
  font-weight: 600;
  letter-spacing: 0.28px;
  color: #3060A4;
  text-align: left;
  text-decoration: underline;
}

.prog-package {
  border-right: 2px dashed #171717;
  width: 100%;
}
.prog-package:last-child {
  border-right: none;
}
@media only screen and (max-width: 1024px) {
  .prog-package {
    border-right: none;
    border-bottom: 2px dashed #171717;
  }
  .prog-package:last-child {
    border-bottom: none;
  }
}

.two-prog-list {
  display: flex;
}
@media only screen and (max-width: 1024px) {
  .two-prog-list {
    display: block;
  }
}
.two-prog-list ul {
  width: 48%;
  margin-left: 2%;
  margin-right: 2%;
}
@media only screen and (max-width: 1024px) {
  .two-prog-list ul {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
}
.two-prog-list ul:first-child {
  margin-left: 0;
}
.two-prog-list ul:last-child {
  margin-left: 0;
}

.price-list {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 1024px) {
  .price-list {
    flex-direction: column;
  }
}
.price-list .price-col {
  margin-left: 10px;
  margin-right: 20px;
}
@media only screen and (max-width: 1024px) {
  .price-list .price-col {
    margin-left: 0px;
    margin-right: 0px;
    margin-bottom: 30px;
  }
}
.price-list .price-col:last-child {
  margin-left: 0px;
}
.price-list .price-col.one-col {
  margin-right: 0px;
}
.price-list .price {
  font-size: 24px;
  line-height: 36px;
  font-weight: 700;
  letter-spacing: 0.32px;
  color: #171717;
  text-transform: capitalize;
  margin-bottom: 5px;
}
.price-list .price.strike-out {
  color: #A3A3A3;
  position: relative;
}
.price-list .price.strike-out:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 4px;
  background-color: #E50A0A;
  border-radius: 3px;
  transform: rotate(-6deg);
  bottom: 16px;
  left: 0;
}
@media only screen and (max-width: 1024px) {
  .price-list .price.pl-40 {
    padding-left: 0px;
  }
}
.price-list .price-text {
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
  letter-spacing: 0.32px;
  color: #171717;
  text-transform: uppercase;
}
@media only screen and (max-width: 1024px) {
  .price-list .price-text.pl-40 {
    padding-left: 0px;
  }
}

.new-modal .modal-dialog {
  width: 80%;
}
.new-modal .prog-pricing {
  padding: 20px 10px;
  margin: 0 15px;
}

.new-modal.new-dia-modal .prog-package {
  border-right: none;
}
.new-modal.new-dia-modal .prog-pricing {
  margin: 0 36px;
}
@media only screen and (max-width: 1024px) {
  .new-modal.new-dia-modal .prog-pricing {
    margin: 0 16px;
  }
}
.new-modal.new-dia-modal .prog-list {
  border-right: 2px dashed #171717;
  margin: 0;
  padding: 20px 30px;
  margin-bottom: 20px;
}
@media only screen and (max-width: 1024px) {
  .new-modal.new-dia-modal .prog-list {
    padding: 20px 20px;
  }
}
.new-modal.new-dia-modal .prog-package:last-child .prog-list {
  border-right: none;
}
@media only screen and (max-width: 1024px) {
  .new-modal.new-dia-modal .prog-package:first-child .prog-list {
    border-right: none;
  }
  .new-modal.new-dia-modal .prog-package:first-child .prog-pricing {
    padding-top: 110px;
  }
}
@media only screen and (max-width: 1024px) {
  .new-modal.new-dia-modal .modal-dialog {
    width: 90%;
  }
}
.new-modal.new-dia-modal .modal-dialog .modal-content .modal-header {
  position: relative;
}
.new-modal.new-dia-modal .modal-dialog .modal-content .modal-header::before {
  content: "";
  background: url("https://site-assets.fitterfly.com/site-assets/images/site-1/money-back.svg") no-repeat center;
  position: absolute;
  top: 30px;
  left: 0;
  right: 0;
  margin: auto;
  width: 130px;
  height: 100px;
  background-size: 130px 100px;
}
@media only screen and (max-width: 1024px) {
  .new-modal.new-dia-modal .modal-dialog .modal-content .modal-header::before {
    width: 90px;
    height: 80px;
    background-size: 90px 70px;
    top: 90px;
  }
}
.new-modal.new-dia-modal .modal-dialog .modal-content .modal-header h3 {
  justify-content: flex-start;
  margin-left: 0;
}
.new-modal.new-dia-modal .prog-footer .terms-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (max-width: 1024px) {
  .new-modal.new-dia-modal .prog-footer .terms-foot {
    flex-direction: column;
  }
  .new-modal.new-dia-modal .prog-footer .terms-foot .flex-link {
    margin-bottom: 20px;
  }
}

.web-new-modal .modal-dialog .modal-content .modal-header {
  position: relative;
}
.web-new-modal .modal-dialog .modal-content .modal-header::before {
  content: "";
  background: url("https://site-assets.fitterfly.com/site-assets/images/site-1/money-back.svg") no-repeat center;
  position: absolute;
  top: 30px;
  right: 100px;
  width: 130px;
  height: 100px;
  background-size: 130px 100px;
  z-index: 0;
}
@media only screen and (max-width: 1024px) {
  .web-new-modal .modal-dialog .modal-content .modal-header::before {
    background-size: 78px 65px;
    right: 30px;
  }
}
.web-new-modal .modal-dialog .modal-content .modal-header h3 {
  justify-content: flex-start;
  margin-left: 0;
}
@media only screen and (max-width: 1024px) {
  .web-new-modal .modal-dialog .modal-content .modal-header h3 {
    margin-left: 0;
    justify-content: flex-start;
  }
}

.program-package-block {
  padding: 48px 60px 0px;
}
@media only screen and (max-width: 1024px) {
  .program-package-block {
    padding: 48px 28px 0px;
  }
}
.program-package-block .program-row {
  display: flex;
  margin-bottom: 10px;
}
@media only screen and (max-width: 1024px) {
  .program-package-block .program-row {
    display: block;
  }
}
.program-package-block .program-row .prog-list-new {
  width: 50%;
  padding-right: 20px;
}
@media only screen and (max-width: 1024px) {
  .program-package-block .program-row .prog-list-new {
    width: 100%;
  }
}
.program-package-block .program-row .prog-list-new:last-child {
  padding-right: 0px;
}
.program-package-block .program-row .prog-list-new .prog-list-head {
  font-size: 18px;
  line-height: 20px;
  color: #CE2E7C;
  padding-bottom: 20px;
  text-align: left;
}
.program-package-block .program-row .prog-list-new ul li {
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
  letter-spacing: 0.27px;
  color: #171717;
  margin-bottom: 30px;
  position: relative;
  padding-left: 45px;
  text-align: left;
}
@media only screen and (max-width: 1680px) {
  .program-package-block .program-row .prog-list-new ul li {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 15px;
    padding-left: 20px;
    font-weight: 300;
  }
}
.program-package-block .program-row .prog-list-new ul li:last-child {
  margin-bottom: 0px;
}
@media only screen and (max-width: 1680px) {
  .program-package-block .program-row .prog-list-new ul li:last-child {
    margin-bottom: 35px;
  }
}
.program-package-block .program-row .prog-list-new ul li:before {
  content: "";
  left: 5px;
  top: 2px;
  width: 5px;
  height: 12px;
  border: solid #CE2E7C;
  border-width: 0px 2px 2px 0px;
  display: block;
  position: absolute;
  transform: rotate(45deg);
  background: 0;
  background-position: center;
}

.program-pricing-sec {
  background: #0063C6;
  padding: 50px 40px;
}
@media only screen and (max-width: 1024px) {
  .program-pricing-sec {
    padding: 44px 20px;
  }
}
.program-pricing-sec .program-pricing-block {
  display: flex;
}
@media only screen and (max-width: 1024px) {
  .program-pricing-sec .program-pricing-block {
    display: block;
  }
}
.program-pricing-sec .program-pricing-block .prog-pricing-new {
  width: 50%;
}
@media only screen and (max-width: 1024px) {
  .program-pricing-sec .program-pricing-block .prog-pricing-new {
    width: 100%;
  }
}
.program-pricing-sec .program-pricing-block .prog-pricing-new h4 {
  font-size: 26px;
  line-height: 30px;
  font-weight: 500;
  letter-spacing: 0.2px;
  color: #171717;
  text-transform: uppercase;
  margin-bottom: 15px;
}
@media only screen and (max-width: 1680px) {
  .program-pricing-sec .program-pricing-block .prog-pricing-new h4 {
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 10px;
  }
}
.program-pricing-sec .program-pricing-block .prog-pricing-new h4.prog-tab {
  background: rgba(255, 255, 255, 0.168627451) 0% 0% no-repeat padding-box;
  color: #fff;
  padding: 8px 12px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
  margin-bottom: 15px;
  opacity: 1;
}
.program-pricing-sec .program-pricing-block .prog-pricing-new strong {
  font-size: 46px;
  line-height: 46px;
  font-weight: 800;
  letter-spacing: 0.74px;
  color: #171717;
  text-transform: capitalize;
}
@media only screen and (max-width: 1680px) {
  .program-pricing-sec .program-pricing-block .prog-pricing-new strong {
    font-size: 36px;
    line-height: 36px;
  }
}
.program-pricing-sec .program-pricing-block .prog-pricing-new .price-list-new {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 375px) {
  .program-pricing-sec .program-pricing-block .prog-pricing-new .price-list-new {
    justify-content: space-between;
  }
}
.program-pricing-sec .program-pricing-block .prog-pricing-new .price-list-new .price-col {
  margin-left: 10px;
  margin-right: 20px;
}
@media only screen and (max-width: 1024px) {
  .program-pricing-sec .program-pricing-block .prog-pricing-new .price-list-new .price-col {
    margin-left: 0px;
    margin-right: 0px;
    margin-bottom: 30px;
  }
}
.program-pricing-sec .program-pricing-block .prog-pricing-new .price-list-new .price-col:last-child {
  margin-left: 0px;
}
.program-pricing-sec .program-pricing-block .prog-pricing-new .price-list-new .price-col.one-col {
  margin-right: 0px;
}
.program-pricing-sec .program-pricing-block .prog-pricing-new .price-list-new .price {
  font-size: 24px;
  line-height: 36px;
  font-weight: 700;
  letter-spacing: 0.32px;
  color: #FFFFFF;
  text-transform: capitalize;
  margin-bottom: 5px;
}
@media only screen and (max-width: 1680px) {
  .program-pricing-sec .program-pricing-block .prog-pricing-new .price-list-new .price {
    font-size: 20px;
  }
}
.program-pricing-sec .program-pricing-block .prog-pricing-new .price-list-new .price.strike-out {
  color: #FFFFFF;
  position: relative;
  font-weight: 400;
}
.program-pricing-sec .program-pricing-block .prog-pricing-new .price-list-new .price.strike-out:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #E50A0A;
  border-radius: 3px;
  transform: rotate(-6deg);
  bottom: 16px;
  left: 0;
}
@media only screen and (max-width: 1024px) {
  .program-pricing-sec .program-pricing-block .prog-pricing-new .price-list-new .price.pl-40 {
    padding-left: 0px;
  }
}
.program-pricing-sec .program-pricing-block .prog-pricing-new .price-list-new .price-text {
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
  letter-spacing: 0.32px;
  color: #D0D0D0;
  text-transform: uppercase;
}
@media only screen and (max-width: 1680px) {
  .program-pricing-sec .program-pricing-block .prog-pricing-new .price-list-new .price-text {
    font-size: 12px;
  }
}
@media only screen and (max-width: 1024px) {
  .program-pricing-sec .program-pricing-block .prog-pricing-new .price-list-new .price-text.pl-40 {
    padding-left: 0px;
  }
}
.program-pricing-sec .btn-pink {
  margin: auto;
  width: fit-content;
}
@media only screen and (max-width: 1024px) {
  .program-pricing-sec .btn-pink {
    min-width: 250px;
  }
}
.program-pricing-sec .download-link {
  padding-top: 30px;
}
.program-pricing-sec .download-link a {
  text-decoration: underline;
  font-weight: 600;
}

.prog-footer-new {
  padding: 52px 45px;
  background: #EAFAFF;
}
@media only screen and (max-width: 1024px) {
  .prog-footer-new {
    padding: 34px 24px;
  }
}
.prog-footer-new .foot-block {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (max-width: 1024px) {
  .prog-footer-new .foot-block {
    display: block;
  }
}
.prog-footer-new .foot-block .popup-foot-note p {
  font-size: 12px;
  line-height: 16px;
  font-weight: 300;
}
@media only screen and (max-width: 1024px) {
  .prog-footer-new .foot-block .popup-foot-note p {
    margin-bottom: 10px;
  }
  .prog-footer-new .foot-block .popup-foot-note p br {
    display: none;
  }
}
@media only screen and (max-width: 1024px) {
  .prog-footer-new .foot-block .foot-link {
    text-align: left;
  }
}
.prog-footer-new .foot-block .foot-link .flex-link {
  color: #3060A4;
  text-decoration: underline;
}
@media only screen and (max-width: 1024px) {
  .prog-footer-new .foot-block .foot-link .flex-link {
    text-align: left;
    font-size: 14px;
  }
}

.doc-testimonial-card.card, .doc-testimonial-card.prof-card, .testimonial-section .doc-testimonial-card.testimonial-card, .offer-section .doc-testimonial-card.feature-main, .doc-testimonial-card.cs-main-box {
  background: #FFFFFF 0% 0% no-repeat padding-box;
  box-shadow: 0px 0px 20px rgba(2, 29, 69, 0.1215686275);
  margin: 20px;
}
@media screen and (max-width: 1024px) {
  .doc-testimonial-card.card, .doc-testimonial-card.prof-card, .testimonial-section .doc-testimonial-card.testimonial-card, .offer-section .doc-testimonial-card.feature-main, .doc-testimonial-card.cs-main-box {
    margin: 10px 10px 0;
  }
}
.doc-testimonial-card.card .card-pad, .doc-testimonial-card.prof-card .card-pad, .testimonial-section .doc-testimonial-card.testimonial-card .card-pad, .offer-section .doc-testimonial-card.feature-main .card-pad, .doc-testimonial-card.cs-main-box .card-pad {
  padding: 55px 70px;
}
@media screen and (max-width: 1024px) {
  .doc-testimonial-card.card .card-pad, .doc-testimonial-card.prof-card .card-pad, .testimonial-section .doc-testimonial-card.testimonial-card .card-pad, .offer-section .doc-testimonial-card.feature-main .card-pad, .doc-testimonial-card.cs-main-box .card-pad {
    padding: 40px 20px 20px;
  }
}
.doc-testimonial-card.card .card-pad h4, .doc-testimonial-card.prof-card .card-pad h4, .testimonial-section .doc-testimonial-card.testimonial-card .card-pad h4, .offer-section .doc-testimonial-card.feature-main .card-pad h4, .doc-testimonial-card.cs-main-box .card-pad h4 {
  font-size: 30px;
  line-height: 35px;
  color: #171717;
  text-align: left;
  font-weight: 600;
}
@media screen and (max-width: 1680px) {
  .doc-testimonial-card.card .card-pad h4, .doc-testimonial-card.prof-card .card-pad h4, .testimonial-section .doc-testimonial-card.testimonial-card .card-pad h4, .offer-section .doc-testimonial-card.feature-main .card-pad h4, .doc-testimonial-card.cs-main-box .card-pad h4 {
    font-size: 24px;
    line-height: 30px;
  }
}
@media screen and (max-width: 1024px) {
  .doc-testimonial-card.card .card-pad h4, .doc-testimonial-card.prof-card .card-pad h4, .testimonial-section .doc-testimonial-card.testimonial-card .card-pad h4, .offer-section .doc-testimonial-card.feature-main .card-pad h4, .doc-testimonial-card.cs-main-box .card-pad h4 {
    font-size: 20px;
    line-height: 28px;
    margin-bottom: 20px;
  }
}
.doc-testimonial-card.card .card-pad .author-details, .doc-testimonial-card.prof-card .card-pad .author-details, .testimonial-section .doc-testimonial-card.testimonial-card .card-pad .author-details, .offer-section .doc-testimonial-card.feature-main .card-pad .author-details, .doc-testimonial-card.cs-main-box .card-pad .author-details {
  margin-top: 30px;
}
@media screen and (max-width: 1024px) {
  .doc-testimonial-card.card .card-pad .author-details, .doc-testimonial-card.prof-card .card-pad .author-details, .testimonial-section .doc-testimonial-card.testimonial-card .card-pad .author-details, .offer-section .doc-testimonial-card.feature-main .card-pad .author-details, .doc-testimonial-card.cs-main-box .card-pad .author-details {
    margin-top: 25px;
  }
}
@media screen and (max-width: 1024px) {
  .doc-testimonial-card.card .card-pad .author-details .name, .doc-testimonial-card.prof-card .card-pad .author-details .name, .testimonial-section .doc-testimonial-card.testimonial-card .card-pad .author-details .name, .offer-section .doc-testimonial-card.feature-main .card-pad .author-details .name, .doc-testimonial-card.cs-main-box .card-pad .author-details .name {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 10px;
  }
}
.doc-testimonial-card.card .card-pad .author-details .edu-detail, .doc-testimonial-card.prof-card .card-pad .author-details .edu-detail, .testimonial-section .doc-testimonial-card.testimonial-card .card-pad .author-details .edu-detail, .offer-section .doc-testimonial-card.feature-main .card-pad .author-details .edu-detail, .doc-testimonial-card.cs-main-box .card-pad .author-details .edu-detail {
  font-size: 22px;
  line-height: 32px;
  text-align: left;
  display: block;
  font-weight: 400;
  color: #171717;
}
@media screen and (max-width: 1680px) {
  .doc-testimonial-card.card .card-pad .author-details .edu-detail, .doc-testimonial-card.prof-card .card-pad .author-details .edu-detail, .testimonial-section .doc-testimonial-card.testimonial-card .card-pad .author-details .edu-detail, .offer-section .doc-testimonial-card.feature-main .card-pad .author-details .edu-detail, .doc-testimonial-card.cs-main-box .card-pad .author-details .edu-detail {
    font-size: 16px;
    line-height: 28px;
  }
}
@media screen and (max-width: 1024px) {
  .doc-testimonial-card.card .card-pad .author-details .edu-detail, .doc-testimonial-card.prof-card .card-pad .author-details .edu-detail, .testimonial-section .doc-testimonial-card.testimonial-card .card-pad .author-details .edu-detail, .offer-section .doc-testimonial-card.feature-main .card-pad .author-details .edu-detail, .doc-testimonial-card.cs-main-box .card-pad .author-details .edu-detail {
    font-size: 16px;
    line-height: 26px;
  }
}
.doc-testimonial-card.card .author-img img, .doc-testimonial-card.prof-card .author-img img, .testimonial-section .doc-testimonial-card.testimonial-card .author-img img, .offer-section .doc-testimonial-card.feature-main .author-img img, .doc-testimonial-card.cs-main-box .author-img img {
  display: block;
  height: auto;
}

.faq-section .faq-block {
  background: #fff;
  box-shadow: 0px 0px 20px rgba(2, 29, 69, 0.1215686275);
  border-radius: 10px;
}
.faq-section .faq-block .faq-list .faq-item {
  cursor: pointer;
  border-bottom: 1px solid rgba(23, 23, 23, 0.2);
}
.faq-section .faq-block .faq-list .faq-item:last-child {
  border-bottom: none;
}
.faq-section .faq-block .faq-list .faq-item .faq-answer {
  max-height: 1px;
  overflow: hidden;
  transition-property: all;
  transition-duration: 0.5s;
  transition-timing-function: cubic-bezier(0, 1, 0.5, 1);
  background-color: white;
  width: 100%;
}
.faq-section .faq-block .faq-list .faq-item .faq-answer p {
  margin: 0 35px 20px;
}
@media only screen and (max-width: 1024px) {
  .faq-section .faq-block .faq-list .faq-item .faq-answer p {
    margin: 0 20px 20px;
  }
}
.faq-section .faq-block .faq-list .faq-item .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
}
.faq-section .faq-block .faq-list .faq-item .faq-question .faq-question-block {
  padding: 25px 35px 20px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (max-width: 1024px) {
  .faq-section .faq-block .faq-list .faq-item .faq-question .faq-question-block {
    padding: 20px 20px;
  }
}
.faq-section .faq-block .faq-list .faq-item .faq-question.open .faq-answer {
  max-height: max-content;
}
.faq-section .faq-block .faq-list .faq-item .faq-question.open .faq-question-block {
  padding: 25px 35px 10px;
}
@media only screen and (max-width: 1024px) {
  .faq-section .faq-block .faq-list .faq-item .faq-question.open .faq-question-block {
    padding: 20px 20px 10px;
  }
}
.faq-section .faq-block .faq-list .faq-item .faq-question.open .accordion-icon {
  transform: rotate(180deg);
  transition: all 0.8s;
  margin-bottom: 6px;
  border-color: #E0E0E0 transparent transparent transparent;
}
@media only screen and (max-width: 1024px) {
  .faq-section .faq-block .faq-list .faq-item .faq-question.open .accordion-icon {
    margin-bottom: 10px;
  }
}
.faq-section .faq-block .faq-list .faq-item .faq-question h3 {
  font-weight: 600;
  text-align: left;
  font-family: "Inter", sans-serif;
  font-display: swap;
  padding-right: 10px;
}
@media only screen and (max-width: 1024px) {
  .faq-section .faq-block .faq-list .faq-item .faq-question h3 {
    font-size: 18px;
    line-height: 25px;
  }
}
.faq-section .faq-block .faq-list .faq-item .faq-question .accordion-icon {
  align-self: flex-end;
  border-width: 10px 5px;
  border-style: solid;
  transform: rotate(360deg);
  transition: all 0.8s;
  border-color: #2F5FA4 transparent transparent transparent;
}
.faq-section .faq-block .faq-list .long-des {
  max-height: 1px;
  overflow: hidden;
  transition-property: all;
  transition-duration: 0.5s;
  transition-timing-function: cubic-bezier(0, 1, 0.5, 1);
  background-color: white;
}
.faq-section .faq-block .faq-list .long-des .faq-item:first-child {
  border-top: none;
}
.faq-section .faq-block .faq-list .long-des.show {
  max-height: max-content;
  transition: 0.2s all;
}
.faq-section .faq-block .faq-list .long-des.show .faq-item:first-child {
  border-top: 1px solid rgba(23, 23, 23, 0.2);
}

.breadcrumbs {
  background: #f9fbff;
  padding-top: 20px;
}
.breadcrumbs .breadcrumbs-list {
  padding: 10px 0px;
  border-bottom: 1px solid #D8E3FF;
  margin-bottom: 20px;
}
@media only screen and (max-width: 1023px) {
  .breadcrumbs .breadcrumbs-list {
    margin: 0px 40px 20px;
  }
}
.breadcrumbs .breadcrumbs-list ul {
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 1023px) {
  .breadcrumbs .breadcrumbs-list ul {
    justify-content: center;
  }
}
.breadcrumbs .breadcrumbs-list ul .breadcrumbs-item {
  padding: 0px 6px;
  position: relative;
}
.breadcrumbs .breadcrumbs-list ul .breadcrumbs-item .breadcrumbs-link {
  color: var(--FF-WebSite-Text-Primary, #324E64);
  font-family: "Inter", sans-serif;
  font-display: swap;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}
.breadcrumbs .breadcrumbs-list ul .breadcrumbs-item:first-child {
  padding-left: 0px;
}
.breadcrumbs .breadcrumbs-list ul .breadcrumbs-item::after {
  position: absolute;
  content: "/";
  margin: 2px 3px;
  color: #324E64;
  font-size: 15px;
}
.breadcrumbs .breadcrumbs-list ul .breadcrumbs-item:last-child .breadcrumbs-link {
  color: var(--FF-WebSite-Text-Secondary, #6E7D9A);
}
.breadcrumbs .breadcrumbs-list ul .breadcrumbs-item:last-child::after {
  display: none;
}

.owl-theme .owl-nav {
  margin-top: 10px;
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}

.owl-theme .owl-nav [class*=owl-] {
  color: #FFF;
  font-size: 14px;
  margin: 5px;
  padding: 4px 7px;
  background: #D6D6D6;
  display: inline-block;
  cursor: pointer;
  border-radius: 3px;
}

.owl-theme .owl-nav [class*=owl-]:hover {
  background: #869791;
  color: #FFF;
  text-decoration: none;
}

.owl-theme .owl-nav .disabled {
  opacity: 0.5;
  cursor: default;
}

.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 30px;
}

.owl-theme .owl-dots {
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}

.owl-theme .owl-dots .owl-dot {
  display: inline-block;
  zoom: 1;
  *display: inline;
}

.owl-theme .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 5px 7px;
  background: #D6D6D6;
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity 200ms ease;
  border-radius: 30px;
}

.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
  background: #869791;
}

/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
/*
 * 	Green theme - Owl Carousel CSS File
 */
.owl-theme .owl-nav {
  margin-top: 10px;
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}

.owl-theme .owl-nav [class*=owl-] {
  color: #FFF;
  font-size: 14px;
  margin: 5px;
  padding: 4px 7px;
  background: #D6D6D6;
  display: inline-block;
  cursor: pointer;
  border-radius: 3px;
}

.owl-theme .owl-nav [class*=owl-]:hover {
  background: #4DC7A0;
  color: #FFF;
  text-decoration: none;
}

.owl-theme .owl-nav .disabled {
  opacity: 0.5;
  cursor: default;
}

.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 30px;
}

.owl-theme .owl-dots {
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}

.owl-theme .owl-dots .owl-dot {
  display: inline-block;
  zoom: 1;
  *display: inline;
}

.owl-theme .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 5px 7px;
  background: #D6D6D6;
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity 200ms ease;
  border-radius: 30px;
}

.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
  background: #4DC7A0;
}

/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
/*
 *  Owl Carousel - Core
 */
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1;
}

.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
  touch-action: manipulation;
  -moz-backface-visibility: hidden;
  /* fix firefox animation glitch */
}

.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  /* fix for flashing background */
  -webkit-transform: translate3d(0px, 0px, 0px);
}

.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
}

.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}

.owl-carousel .owl-item img {
  display: block;
}

.owl-carousel .owl-nav.disabled,
.owl-carousel .owl-dots.disabled {
  display: none;
}

.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-dot {
  cursor: pointer;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next,
.owl-carousel button.owl-dot {
  background: none;
  color: inherit;
  border: none;
  padding: 0 !important;
  font: inherit;
}

.owl-carousel.owl-loaded {
  display: block;
}

.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}

.owl-carousel.owl-hidden {
  opacity: 0;
}

.owl-carousel.owl-refresh .owl-item {
  visibility: hidden;
}

.owl-carousel.owl-drag .owl-item {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel.owl-grab {
  cursor: move;
  cursor: grab;
}

.owl-carousel.owl-rtl {
  direction: rtl;
}

.owl-carousel.owl-rtl .owl-item {
  float: right;
}

/* No Js */
.no-js .owl-carousel {
  display: block;
}

/*
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
  animation-duration: 1000ms;
  animation-fill-mode: both;
}

.owl-carousel .owl-animated-in {
  z-index: 0;
}

.owl-carousel .owl-animated-out {
  z-index: 1;
}

.owl-carousel .fadeOut {
  animation-name: fadeOut;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/*
 * 	Owl Carousel - Auto Height Plugin
 */
.owl-height {
  transition: height 500ms ease-in-out;
}

/*
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item {
  /**
  	This is introduced due to a bug in IE11 where lazy loading combined with autoheight plugin causes a wrong
  	calculation of the height of the owl-item that breaks page layouts
   */
}

.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  transition: opacity 400ms ease;
}

.owl-carousel .owl-item .owl-lazy[src^=""], .owl-carousel .owl-item .owl-lazy:not([src]) {
  max-height: 0;
}

.owl-carousel .owl-item img.owl-lazy {
  transform-style: preserve-3d;
}

/*
 * 	Owl Carousel - Video Plugin
 */
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}

.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url(/owl.video.play.png) no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  transition: transform 100ms ease;
}

.owl-carousel .owl-video-play-icon:hover {
  -ms-transform: scale(1.3, 1.3);
  transform: scale(1.3, 1.3);
}

.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none;
}

.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity 400ms ease;
}

.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
}

ul {
  padding: 0px;
  list-style: none;
}

@media only screen and (max-width: 320px) {
  #captchaBlock, .g-recaptcha {
    transform: scale(0.84) translate(-26px, 0);
  }
}

section.mar-t-140 {
  margin-top: 140px;
}
@media only screen and (max-width: 1680px) {
  section.mar-t-140 {
    margin-top: 100px;
  }
}
@media only screen and (max-width: 1024px) {
  section.mar-t-140 {
    margin-top: 70px;
  }
}

.section {
  margin: 100px 0;
}
@media only screen and (max-width: 1680px) {
  .section {
    margin: 60px 0;
  }
}
@media only screen and (max-width: 1280px) {
  .section {
    margin: 50px 0;
  }
}
@media only screen and (max-width: 1024px) {
  .section {
    margin: 40px 0;
  }
}

.section-pad {
  padding: 100px 0;
}
.section-pad.pad-t-0 {
  padding-top: 0px;
}
@media only screen and (max-width: 1680px) {
  .section-pad {
    padding: 60px 0;
  }
}
@media only screen and (max-width: 1280px) {
  .section-pad {
    padding: 50px 0;
  }
}
@media only screen and (max-width: 1024px) {
  .section-pad {
    padding: 40px 0;
  }
}

.section-head h4 {
  display: inline-flex;
  text-transform: uppercase;
  margin-bottom: 20px;
}
@media only screen and (max-width: 1680px) {
  .section-head h4 {
    margin-bottom: 15px;
  }
}
@media only screen and (max-width: 1024px) {
  .section-head h4 {
    font-size: 16px;
  }
}
.section-head h2 {
  font-size: 48px;
  margin-bottom: 30px;
}
@media only screen and (max-width: 1680px) {
  .section-head h2 {
    font-size: 28px;
    line-height: 36px;
    margin-bottom: 10px;
  }
  .section-head h2.mb-40 {
    margin-bottom: 30px;
  }
  .section-head h2.mb-60 {
    margin-bottom: 40px;
  }
}
@media only screen and (max-width: 1024px) {
  .section-head h2 {
    font-size: 24px;
    line-height: 34px;
  }
  .section-head h2.blog-mb-0 {
    margin-bottom: 0px !important;
  }
}
.section-head p {
  margin-bottom: 20px;
}
.section-head p.mb-60 {
  margin-bottom: 60px;
}
@media only screen and (max-width: 1680px) {
  .section-head p.mb-60 {
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 1024px) {
  .section-head p.blog-pb-0 {
    margin-bottom: 0px;
  }
}

.note {
  text-align: center;
  padding-top: 60px;
}
@media only screen and (max-width: 1024px) {
  .note {
    padding-top: 30px;
  }
}
.note span {
  font-size: 15px;
  font-weight: 500;
}

@media only screen and (max-width: 1024px) {
  .feature-section .section-head {
    text-align: left;
  }
}

.feature-list .feature-main {
  padding: 20px;
}
@media only screen and (max-width: 1680px) {
  .feature-list .feature-main {
    padding: 10px;
  }
}
.feature-list .feature-main .fm-box {
  padding: 20px 30px;
  min-height: 190px;
}
@media only screen and (max-width: 1680px) {
  .feature-list .feature-main .fm-box {
    padding: 15px 20px;
  }
}
@media screen and (max-width: 1024px) {
  .feature-list .feature-main .fm-box {
    padding: 20px 10px 15px;
  }
}
.feature-list .feature-main .fm-info {
  text-align: center;
}
.feature-list .feature-main .fm-info .fm-title {
  font-size: 22px;
  font-weight: 600;
  color: #171717;
  letter-spacing: 0px;
  line-height: 30px;
  text-align: center;
  text-transform: capitalize;
  margin-bottom: 20px;
}
@media only screen and (max-width: 1680px) {
  .feature-list .feature-main .fm-info .fm-title {
    font-size: 18px;
    line-height: 22px;
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 1024px) {
  .feature-list .feature-main .fm-info .fm-title {
    font-size: 22px;
    line-height: 30px;
    margin-bottom: 20px;
  }
}
.feature-list .feature-main .fm-info .fm-count {
  font-size: 38px;
  font-weight: 700;
  color: #171717;
  letter-spacing: 0.77px;
  line-height: 60px;
  text-align: center;
  display: inline-block;
  margin-bottom: 20px;
}
@media only screen and (max-width: 1680px) {
  .feature-list .feature-main .fm-info .fm-count {
    font-size: 28px;
    line-height: 38px;
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 1200px) {
  .feature-list .feature-main .fm-info .fm-count {
    font-size: 28px;
    line-height: 38px;
  }
}
@media only screen and (max-width: 1024px) {
  .feature-list .feature-main .fm-info .fm-count {
    font-size: 23px;
    line-height: 34px;
    margin-bottom: 0px;
  }
}
@media only screen and (max-width: 320px) {
  .feature-list .feature-main .fm-info .fm-count {
    font-size: 21px;
    line-height: 18px;
  }
}
.feature-list .feature-main .fm-info p {
  font-size: 20px;
  font-weight: 400;
  color: #171717;
  letter-spacing: 0.32px;
  line-height: 35px;
  text-align: center;
}
@media only screen and (max-width: 1680px) {
  .feature-list .feature-main .fm-info p {
    font-size: 15px;
    line-height: 22px;
  }
}
@media only screen and (max-width: 320px) {
  .feature-list .feature-main .fm-info p {
    font-size: 14px;
    line-height: 18px;
  }
}
.feature-list .row .col-lg-3 .feature-main {
  border-right: 4px dashed #012042;
  padding: 0px;
}
@media only screen and (max-width: 1680px) {
  .feature-list .row .col-lg-3 .feature-main {
    border-right: 2px dashed #012042;
  }
}
@media only screen and (max-width: 1024px) {
  .feature-list .row .col-lg-3 .feature-main {
    border-right: 2px dashed #012042;
    border-bottom: 2px dashed #012042;
  }
}
.feature-list .row .col-lg-3:last-child .feature-main {
  border-right: none;
  border-bottom: none;
}
@media only screen and (max-width: 1024px) {
  .feature-list .row .col-lg-3:nth-child(odd) .feature-main {
    margin-right: -15px;
  }
  .feature-list .row .col-lg-3:nth-child(even) .feature-main {
    margin-left: -15px;
    border-right: none;
  }
  .feature-list .row .col-lg-3:nth-child(3) .feature-main {
    border-bottom: none;
  }
}
.feature-list .row .col-lg-3 .right-border {
  border-right: 2px dashed #012042;
}

@media only screen and (max-width: 1024px) {
  .weight-loss-program-list {
    margin-top: 0px;
  }
  .weight-loss-program-list .dash-top-bdr {
    border-top: 2px dashed #012042 !important;
  }
}
@media only screen and (max-width: 1024px) {
  .weight-loss-program-list .flex-center, .weight-loss-program-list .pp-popup .modal .modal-body .modal-content, .pp-popup .modal .modal-body .weight-loss-program-list .modal-content, .weight-loss-program-list .process-flow-sec .process-card .find-block, .process-flow-sec .process-card .weight-loss-program-list .find-block, .weight-loss-program-list .process-flow-sec .process-card .process-head, .process-flow-sec .process-card .weight-loss-program-list .process-head, .weight-loss-program-list .cont .circle .inner-cir, .cont .circle .weight-loss-program-list .inner-cir, .weight-loss-program-list .cont .circle, .cont .weight-loss-program-list .circle, .weight-loss-program-list .prof-card .prof-linked a .ln-icon, .prof-card .prof-linked a .weight-loss-program-list .ln-icon, .weight-loss-program-list .prof-card .prof-linked a, .prof-card .prof-linked .weight-loss-program-list a, .weight-loss-program-list .prof-card .prof-linked, .prof-card .weight-loss-program-list .prof-linked, .weight-loss-program-list .banner-image .img-card, .weight-loss-program-list .banner-image .drop-img, .weight-loss-program-list .banner-image .graph-img, .banner-image .weight-loss-program-list .img-card, .banner-image .weight-loss-program-list .drop-img, .banner-image .weight-loss-program-list .graph-img, .weight-loss-program-list .center-btn, .weight-loss-program-list .sticky-btn .two-col-list li, .sticky-btn .two-col-list .weight-loss-program-list li, .weight-loss-program-list .sticky-btn .two-col-list, .sticky-btn .weight-loss-program-list .two-col-list, .weight-loss-program-list .owl-theme.carousel-arrow .owl-nav, .owl-theme.carousel-arrow .weight-loss-program-list .owl-nav, .weight-loss-program-list .owl-carousel.carousel-arrow .owl-nav, .owl-carousel.carousel-arrow .weight-loss-program-list .owl-nav, .weight-loss-program-list .dropdown-list, .weight-loss-program-list .et-logos, .weight-loss-program-list .feedback .star, .feedback .weight-loss-program-list .star, .weight-loss-program-list .how-work-section .mobile-block, .how-work-section .weight-loss-program-list .mobile-block, .weight-loss-program-list .awards-section .award-block .award-list .award-card, .awards-section .award-block .award-list .weight-loss-program-list .award-card, .weight-loss-program-list .tes-carousel-two .item .play, .tes-carousel-two .item .weight-loss-program-list .play, .weight-loss-program-list .tes-carousel-two .item, .tes-carousel-two .weight-loss-program-list .item, .weight-loss-program-list .ffa-image-main .app-img, .ffa-image-main .weight-loss-program-list .app-img, .weight-loss-program-list .as-right .item, .as-right .weight-loss-program-list .item, .weight-loss-program-list .btn, .weight-loss-program-list .black-btn, .weight-loss-program-list .white-btn, .weight-loss-program-list .teal-btn, .weight-loss-program-list .yellow-btn, .weight-loss-program-list .bdr-btn, .weight-loss-program-list .next-prev-btn .scroll-prev, .next-prev-btn .weight-loss-program-list .scroll-prev, .weight-loss-program-list .next-prev-btn .scroll-next, .next-prev-btn .weight-loss-program-list .scroll-next, .weight-loss-program-list .next, .weight-loss-program-list .back, .weight-loss-program-list .what-btn, .weight-loss-program-list .button, .weight-loss-program-list .modal {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
  }
}
.weight-loss-program-list .col-lg-3 .right-border {
  border-right: 2px dashed #012042 !important;
}

.fm-image .img {
  text-align: center;
  margin-bottom: 20px;
  justify-content: center;
  display: flex;
  margin: auto;
  width: 60px;
}
@media only screen and (max-width: 1680px) {
  .fm-image .img {
    width: 60px;
    height: auto;
    margin-bottom: 15px;
  }
}
@media only screen and (max-width: 1024px) {
  .fm-image .img {
    height: auto;
    margin-bottom: 12px;
  }
}

.as-right .item {
  height: 200px;
}
.as-right .item img {
  width: 200px;
}
@media only screen and (max-width: 1680px) {
  .as-right .item {
    height: 140px;
  }
  .as-right .item img {
    width: 180px;
  }
}

.calculate-section .section-head {
  margin-bottom: 66px;
}
@media only screen and (max-width: 1680px) {
  .calculate-section .section-head {
    margin-bottom: 40px;
  }
}
@media only screen and (max-width: 1024px) {
  .calculate-section .section-head {
    text-align: left !important;
    margin-bottom: 20px;
  }
  .calculate-section .section-head h2.mb-60 {
    margin-bottom: 30px;
  }
  .calculate-section .section-head h2 {
    text-align: left;
  }
  .calculate-section .section-head h4 {
    display: block;
    text-align: left;
    margin-bottom: 12px;
  }
  .calculate-section .section-head p {
    text-align: left;
    margin-bottom: 15px;
  }
  .calculate-section .bullet-list {
    justify-content: flex-start;
  }
  .calculate-section .bullet-list.inline-list ul {
    display: block;
  }
  .calculate-section .cs-main-box {
    margin-bottom: 32px;
  }
}
@media only screen and (max-width: 1024px) {
  .calculate-section .cs-main-box {
    margin-bottom: 5px;
    margin-top: 5px;
  }
}

.card, .prof-card, .testimonial-section .testimonial-card, .offer-section .feature-main, .cs-main-box {
  background-color: #fff;
  box-shadow: 0px 0px 5px rgba(2, 29, 69, 0.2);
  border-radius: 10px;
}

.cs-main-box {
  min-height: 332px;
  margin: auto;
  position: relative;
  padding: 25px 30px 25px 25px;
  cursor: pointer;
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 1680px) {
  .cs-main-box {
    min-height: 250px;
    padding: 25px 30px 25px 25px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1180px) {
  .cs-main-box {
    min-height: 207px;
    padding: 20px 20px;
  }
}
@media only screen and (max-width: 768px) {
  .cs-main-box {
    height: 210px;
    padding: 20px 20px;
  }
}
@media only screen and (min-width: 1024px) and (max-width: 1024px) {
  .cs-main-box:hover {
    box-shadow: none;
  }
}
@media only screen and (min-width: 1024px) {
  .cs-main-box:hover .bdr-btn {
    background-color: #fff;
    color: #171717;
  }
  .cs-main-box:hover .bdr-btn {
    z-index: 12;
  }
}
@media only screen and (max-width: 1024px) and (max-width: 1024px) {
  .cs-main-box:active {
    box-shadow: none;
  }
}
@media only screen and (max-width: 1024px) {
  .cs-main-box:active .bdr-btn {
    background-color: #fff;
    color: #171717;
  }
  .cs-main-box:active .bdr-btn {
    z-index: 12;
  }
}

.cs-main-info {
  text-align: left;
  flex: 1;
}
.cs-main-info .card-logo {
  display: flex;
  margin-bottom: 15px;
}
.cs-main-info .card-logo img {
  width: 140px;
  height: auto;
}
.cs-main-info a {
  font-size: 20px;
  line-height: 35px;
  text-align: left;
  font-weight: 700;
  letter-spacing: 0.32px;
  text-decoration: underline;
  color: #021D45;
}
@media only screen and (max-width: 1680px) {
  .cs-main-info a {
    font-size: 18px;
    line-height: 28px;
  }
}
@media only screen and (max-width: 1280px) {
  .cs-main-info a {
    font-size: 16px;
    line-height: 26px;
  }
}
@media only screen and (max-width: 1024px) {
  .cs-main-info a {
    font-size: 18px;
    line-height: 24px;
  }
  .cs-main-info a br {
    display: none;
  }
}
@media only screen and (max-width: 768px) {
  .cs-main-info a {
    font-size: 18px;
    line-height: 24px;
  }
}
.cs-main-info h2 {
  font-size: 48px;
  line-height: 65px;
  font-weight: 700;
  text-align: left;
  letter-spacing: 0.77px;
  color: #171717;
  text-transform: capitalize;
}
@media only screen and (max-width: 1680px) {
  .cs-main-info h2 {
    font-size: 26px;
    line-height: 32px;
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 1280px) {
  .cs-main-info h2 {
    font-size: 20px;
    line-height: 24px;
  }
}
@media only screen and (max-width: 1024px) {
  .cs-main-info h2 {
    font-size: 16px;
    line-height: 20px;
  }
}
.cs-main-info h4 {
  font-size: 20px;
  line-height: 29px;
  text-align: left;
  letter-spacing: 0px;
  color: #171717;
  font-weight: 600;
  text-transform: capitalize;
}
@media only screen and (max-width: 1680px) {
  .cs-main-info h4 {
    font-size: 18px;
    line-height: 26px;
  }
}
@media only screen and (max-width: 1280px) {
  .cs-main-info h4 {
    font-size: 18px;
    line-height: 24px;
  }
}
@media only screen and (max-width: 1024px) {
  .cs-main-info h4 {
    font-size: 16px;
    line-height: 24px;
  }
  .cs-main-info h4 br {
    display: none;
  }
}
.cs-main-info p {
  font-size: 20px;
  line-height: 30px;
  text-align: left;
  letter-spacing: 0.32px;
  color: #171717;
}
@media only screen and (max-width: 1680px) {
  .cs-main-info p {
    font-size: 14px;
    line-height: 20px;
  }
}
@media only screen and (max-width: 1024px) {
  .cs-main-info p {
    font-size: 12px;
    line-height: 18px;
  }
}

.cs-main-img {
  margin-bottom: 20px;
  display: flex;
  align-items: flex-end;
}
@media only screen and (max-width: 1680px) {
  .cs-main-img {
    margin-bottom: 15px;
  }
}
@media only screen and (max-width: 1024px) {
  .cs-main-img {
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 1680px) {
  .cs-main-img img {
    width: 54px;
  }
}
@media only screen and (max-width: 1024px) {
  .cs-main-img img {
    width: 55px;
  }
}
@media only screen and (max-width: 1680px) {
  .cs-main-img.cs-first img {
    width: 40px;
  }
}

.of-main-box-square {
  background-color: #1E6D85;
  color: #fff;
  padding: 40px 40px;
  border-radius: 10px;
  width: 383px;
  height: 415px;
}
@media only screen and (max-width: 1680px) {
  .of-main-box-square {
    padding: 25px 20px;
    width: 250px;
    height: 300px;
    margin: 0 auto;
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 1280px) {
  .of-main-box-square {
    padding: 20px 15px;
    width: 220px;
    height: 220px;
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 1024px) {
  .of-main-box-square {
    margin-bottom: 20px;
  }
}

@media only screen and (max-width: 1024px) {
  .of-main-box {
    margin-bottom: 20px;
  }
}
.of-main-box .img {
  width: 138px;
  height: 138px;
  border-radius: 100px;
  margin-bottom: 20px;
}
@media only screen and (max-width: 1680px) {
  .of-main-box .img {
    width: 100px;
    height: 100px;
    border-radius: 80px;
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 1280px) {
  .of-main-box .img {
    width: 90px;
    height: 90px;
  }
}
.of-main-box h4 {
  font-size: 22px;
  text-transform: capitalize;
  margin-bottom: 20px;
}
@media only screen and (max-width: 1680px) {
  .of-main-box h4 {
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 0px;
  }
}

.of-btn a {
  background-color: #1E6D85;
  color: #fff;
  width: fit-content;
  margin: auto;
  padding: 15px 50px;
  border-radius: 6px;
  display: block;
}

.pros-btn {
  display: inline-block;
}
.pros-btn a {
  background-color: #1E6D85;
  color: #fff;
  width: fit-content;
  padding: 15px 50px;
  border-radius: 6px;
  display: block;
}
@media only screen and (max-width: 1024px) {
  .pros-btn .btn:active, .pros-btn .black-btn:active, .pros-btn .white-btn:active, .pros-btn .teal-btn:active, .pros-btn .bdr-btn:active {
    color: #021D45;
    background: #fff;
  }
}

.hws-steps {
  list-style: none;
  display: flex;
  flex-direction: row;
  padding: 0;
}
@media only screen and (max-width: 1680px) {
  .hws-steps {
    margin-bottom: 40px;
  }
  .hws-steps .section-head h4 {
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 1280px) {
  .hws-steps {
    margin-bottom: 30px;
  }
  .hws-steps .section-head h4 {
    margin-bottom: 12px;
  }
}
@media only screen and (max-width: 1024px) {
  .hws-steps {
    margin-bottom: 30px;
    justify-content: center;
  }
}

.hws-steps {
  border-bottom: 1px solid rgba(112, 112, 112, 0.46);
  width: calc(100% - 310px);
}
@media only screen and (max-width: 1680px) {
  .hws-steps {
    width: calc(100% - 242px);
  }
}
@media only screen and (max-width: 1280px) {
  .hws-steps {
    width: calc(100% - 130px);
  }
}
@media only screen and (max-width: 1024px) {
  .hws-steps {
    width: 100%;
  }
}
.hws-steps .work-slide {
  font-size: 20px;
  font-weight: 500;
  line-height: 60px;
  letter-spacing: 0px;
  color: rgba(2, 29, 69, 0.8);
  text-transform: capitalize;
  text-decoration: none;
  position: relative;
  padding: 0px 42px 14px;
  cursor: pointer;
  transition: all 0.3s;
}
.hws-steps .work-slide:first-child {
  padding-left: 0px;
}
@media only screen and (max-width: 1680px) {
  .hws-steps .work-slide {
    font-size: 16px;
    line-height: 50px;
    padding: 0px 30px 14px;
  }
}
@media only screen and (max-width: 1280px) {
  .hws-steps .work-slide {
    font-size: 14px;
    line-height: 36px;
  }
}
@media only screen and (max-width: 1024px) {
  .hws-steps .work-slide {
    font-size: 14px;
    line-height: 32px;
    padding: 0px 15px 14px;
  }
}
.hws-steps .work-slide:before {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 0px;
  height: 5px;
  transition: all 0.3s;
  background-color: #166780;
  margin-left: 42px;
}
@media only screen and (max-width: 1680px) {
  .hws-steps .work-slide:before {
    margin-left: 30px;
  }
}
@media only screen and (max-width: 1024px) {
  .hws-steps .work-slide:before {
    margin-left: 15px;
  }
}
.hws-steps .work-slide.active {
  font-weight: 700;
  position: relative;
  color: #021D45;
  transform: scale(1.9) translate(0px, 3px);
}
@media only screen and (max-width: 1024px) {
  .hws-steps .work-slide.active {
    transform: scale(1.7) translate(0px, 3px);
  }
}
.hws-steps .work-slide.active:before {
  width: 50px;
  bottom: 18px;
}
@media only screen and (max-width: 1680px) {
  .hws-steps .work-slide.active:before {
    bottom: 15px;
  }
}
@media only screen and (max-width: 1280px) {
  .hws-steps .work-slide.active:before {
    bottom: 12px;
  }
}
@media only screen and (max-width: 1024px) {
  .hws-steps .work-slide.active:before {
    width: 30px;
    bottom: 10px;
  }
}
.hws-steps .work-slide.active:first-child {
  transform: scale(1.9) translate(28px, 3px);
}
@media only screen and (max-width: 1680px) {
  .hws-steps .work-slide.active:first-child {
    transform: scale(1.9) translate(20px, 3px);
  }
}
@media only screen and (max-width: 1024px) {
  .hws-steps .work-slide.active:first-child {
    transform: scale(1.7) translate(5px, 3px);
  }
}
.hws-steps .work-slide.active:first-child:before {
  left: -42px;
}
@media only screen and (max-width: 1680px) {
  .hws-steps .work-slide.active:first-child:before {
    left: -30px;
  }
}
@media only screen and (max-width: 1024px) {
  .hws-steps .work-slide.active:first-child:before {
    left: -15px;
  }
}

.ents-box-main .div {
  height: 200px;
  width: 200px;
  margin: auto;
  background-color: #1E6D85;
}

.barcode-app .img1, .barcode-app .img2 {
  width: 200px;
  height: 150px;
  margin-right: 20px;
  background-color: #1E6D85;
}

.ffa-image-main .app-img {
  position: relative;
  height: 645px;
}
.ffa-image-main .app-img img {
  height: 645px;
}
@media only screen and (max-width: 1680px) {
  .ffa-image-main .app-img {
    height: 500px;
  }
  .ffa-image-main .app-img img {
    height: 500px;
    width: auto;
  }
}
@media only screen and (max-width: 1280px) {
  .ffa-image-main .app-img.mobile-size {
    height: auto;
    width: auto;
  }
  .ffa-image-main .app-img.mobile-size img {
    width: auto;
  }
}
@media only screen and (max-width: 1024px) {
  .ffa-image-main .app-img {
    height: 360px;
    margin-bottom: 30px;
  }
  .ffa-image-main .app-img img {
    height: 360px;
    width: 247px;
  }
}
.ffa-image-main .app-img:before {
  content: "";
  position: absolute;
  height: 560px;
  width: 560px;
  background: #E9FAFF;
  border-radius: 50%;
  margin: 0 auto;
  left: 0px;
  right: 0px;
  top: 5%;
}
@media only screen and (max-width: 1680px) {
  .ffa-image-main .app-img:before {
    height: 400px;
    width: 400px;
  }
}
@media only screen and (max-width: 1024px) {
  .ffa-image-main .app-img:before {
    height: 300px;
    width: 300px;
    text-align: center;
  }
}
.ffa-image-main .app-img .floating-anim {
  margin: auto;
}
.ffa-image-main .app-img .shadow-anim {
  height: auto;
  position: absolute;
  top: 30px;
  left: 20px;
}
.ffa-image-main .app-img .shadow-anim img {
  animation-name: shadowAnim;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
}
@media only screen and (max-width: 1024px) {
  .ffa-image-main.desktop-view {
    display: none;
  }
}

@keyframes shadowAnim {
  0% {
    transform: scale(0.7);
  }
  50% {
    transform: scale(1);
  }
  100% {
    transform: scale(0.7);
  }
}
.mobile-size img {
  height: auto;
  width: auto;
}
@media only screen and (max-width: 1280px) {
  .mobile-size img {
    width: 100%;
    height: auto;
  }
}
@media only screen and (max-width: 1024px) {
  .mobile-size img {
    width: 100%;
    height: auto;
  }
}

.tes-carousel-two .item.sanjay {
  background-image: url("https://site-assets.fitterfly.com/site-assets/images/sanjayshanbhag.webp");
}
.tes-carousel-two .item.shubhangi {
  background-image: url("https://site-assets.fitterfly.com/site-assets/images/shubhangi-patil.webp");
}
.tes-carousel-two .item.satish {
  background-image: url("https://site-assets.fitterfly.com/site-assets/images/satish-kini.webp");
}
.tes-carousel-two .item.prashant {
  background-image: url("https://site-assets.fitterfly.com/site-assets/images/prashant-shinde.webp");
}
.tes-carousel-two .item.sugandh {
  background-image: url("https://site-assets.fitterfly.com/site-assets/images/sugandh-banner.webp");
}
.tes-carousel-two .item.hemanta {
  background-image: url("https://site-assets.fitterfly.com/site-assets/images/Mr-Hemanta.webp");
}
.tes-carousel-two .item.kriti {
  background-image: url("https://site-assets.fitterfly.com/site-assets/images/Kriti-kalra.png");
}
.tes-carousel-two .item.sid {
  background-image: url("https://site-assets.fitterfly.com/site-assets/images/sidharth.webp");
}
.tes-carousel-two .item.siddharth {
  background-image: url("https://site-assets.fitterfly.com/site-assets/images/sidharth.webp");
}
.tes-carousel-two .item {
  height: 495px;
  background-repeat: no-repeat;
  background-size: contain;
  cursor: pointer;
  border: 1px solid #707070;
  background-size: cover;
  background-color: #f2f4f3;
}
@media only screen and (max-width: 1680px) {
  .tes-carousel-two .item {
    height: 400px;
    background-size: cover;
  }
}
.tes-carousel-two .item .play {
  background: url("https://site-assets.fitterfly.com/site-assets/images/play.svg") no-repeat center;
  width: 152px;
  height: 152px;
  z-index: 4;
  cursor: pointer;
}
@media only screen and (min-width: 1024px) {
  .tes-carousel-two .item .play:hover {
    transform: scale(1.1);
    transition: all 0.3s;
  }
}
@media only screen and (max-width: 1024px) {
  .tes-carousel-two .item .play:active {
    transform: scale(1.1);
    transition: all 0.3s;
  }
}
@media only screen and (max-width: 1680px) {
  .tes-carousel-two .item .play {
    width: 100px;
    height: 100px;
    background-size: 100px 100px;
  }
}
@media only screen and (max-width: 1024px) {
  .tes-carousel-two .item {
    width: 100%;
    height: 295px;
    background-size: cover;
  }
}
@media screen and (max-width: 992px) {
  .tes-carousel-two .item {
    height: 380px;
  }
}
@media only screen and (max-width: 768px) {
  .tes-carousel-two .item {
    width: 100%;
    height: 195px;
    margin: 0 auto;
    top: 0px;
    border-radius: 10px;
  }
  .tes-carousel-two .item:before {
    width: 80px;
    height: 80px;
    background-size: cover;
    top: 45%;
  }
}

.form-group {
  margin-bottom: 30px;
}
@media only screen and (max-width: 1680px) {
  .form-group {
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 1024px) {
  .form-group {
    margin-bottom: 15px;
  }
}
.form-group.error {
  position: relative;
}
.form-group.error .error-text {
  display: block;
  font-size: 12px;
  font-weight: 500;
  line-height: 15px;
  letter-spacing: 0px;
  color: #ff0000;
  text-align: left;
  padding-top: 5px;
}
@media only screen and (max-width: 1680px) {
  .form-group.error .error-text {
    top: 42px;
  }
}
@media only screen and (max-width: 1280px) {
  .form-group.error .error-text {
    top: 42px;
  }
}
@media only screen and (max-width: 1024px) {
  .form-group.error .error-text {
    top: 42px;
    font-size: 11px;
  }
}

#referral_mobile_group .error-text {
  display: none;
}
#referral_mobile_group.show-error .error-text {
  display: block;
}

.pad-15 {
  padding: 15px;
}

.pad-tb-20 {
  padding-top: 20px;
  padding-bottom: 20px;
}

.pad-lr-40 {
  padding-left: 40px;
  padding-right: 40px;
}

.pad-lr-80 {
  padding-left: 80px;
  padding-right: 80px;
}

.content-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.flex-direction-column {
  flex-direction: column;
}

input[type=text], input[type=number], input[type=email], select, textarea {
  width: 100%;
  outline: none;
  border: none;
  border-bottom: 1px solid #171717;
  background-color: transparent;
  padding: 12px 0px;
}
@media only screen and (max-width: 1680px) {
  input[type=text], input[type=number], input[type=email], select, textarea {
    padding: 8px 15px 8px 0px;
  }
}
@media only screen and (max-width: 1024px) {
  input[type=text], input[type=number], input[type=email], select, textarea {
    padding: 10px 20px 10px 0px;
  }
}

select {
  font-weight: 400;
  letter-spacing: 0px;
  color: #666;
  position: relative;
  background: url(https://site-assets.fitterfly.com/site-assets/images/site-1/down-icon.svg) no-repeat top 24px right 0px;
}
@media only screen and (max-width: 1680px) {
  select {
    background: url(https://site-assets.fitterfly.com/site-assets/images/site-1/down-icon.svg) no-repeat top 14px right 0px;
  }
}

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

.mb-0 {
  margin-bottom: 0px !important;
}

.pb-0 {
  padding-bottom: 0px !important;
}

.mar-b-20 {
  margin-bottom: 20px;
}

.mar-b-25 {
  margin-bottom: 25px;
}

.mar-l-20 {
  margin-left: 20px;
}

.mar-b-10 {
  margin-bottom: 10px;
}

.mar-b-30 {
  margin-bottom: 30px;
}

.pad-t-10 {
  padding-top: 10px;
}

.pad-b-10 {
  padding-bottom: 10px;
}

.teal-text {
  color: #41B9D5;
}

.white-text {
  color: #fff;
}

.underline-text {
  font-weight: 700;
  text-decoration: underline;
  color: #166780;
}

.awards-section h1 {
  font-size: 48px;
  margin-bottom: 30px;
  font-weight: 700;
}
@media screen and (max-width: 1680px) {
  .awards-section h1 {
    font-size: 28px;
    line-height: 36px;
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 1024px) {
  .awards-section h1 {
    font-size: 24px;
    line-height: 34px;
  }
}
@media only screen and (max-width: 1024px) {
  .awards-section .section-head {
    text-align: left;
  }
}
@media only screen and (max-width: 768px) {
  .awards-section .section-head {
    padding-left: 0%;
    margin-left: 0%;
  }
}
.awards-section .award-block .award-list {
  display: flex;
}
@media only screen and (max-width: 1024px) {
  .awards-section .award-block .award-list {
    display: flex;
    flex-wrap: wrap;
  }
}
.awards-section .award-block .award-list .award-card {
  cursor: pointer;
}
.awards-section .award-card {
  width: 250px;
  height: 250px;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 1680px) {
  .awards-section .award-card {
    width: 180px;
    height: 150px;
  }
}
@media only screen and (max-width: 1024px) {
  .awards-section .award-card {
    width: auto;
    height: 140px;
  }
}
.awards-section .award-card img {
  display: block;
}
@media only screen and (max-width: 1680px) {
  .awards-section .award-card.rssa img {
    width: 130px;
  }
}
@media only screen and (max-width: 1680px) and (max-width: 1024px) {
  .awards-section .award-card.rssa img {
    width: 100px;
    height: auto;
  }
}
.awards-section .award-card.et-health img {
  width: 150px;
}
@media only screen and (max-width: 1024px) {
  .awards-section .award-card.et-health img {
    width: 150px;
    height: auto;
  }
}
@media only screen and (max-width: 1024px) {
  .awards-section .award-card.health-aw img {
    width: 150px;
    height: auto;
  }
}
@media only screen and (max-width: 1024px) {
  .awards-section .award-card.medix-aw img {
    width: 120px;
    height: auto;
  }
}
@media only screen and (max-width: 1680px) {
  .awards-section .award-card.end2020 {
    width: 230px;
  }
}
@media only screen and (max-width: 1680px) and (max-width: 1024px) {
  .awards-section .award-card.end2020 {
    width: 170px;
  }
}
@media only screen and (max-width: 1680px) {
  .awards-section .award-card.end2020 img {
    width: 230px;
  }
}
@media only screen and (max-width: 1680px) and (max-width: 1024px) {
  .awards-section .award-card.end2020 img {
    width: 150px;
    height: auto;
  }
}
@media only screen and (max-width: 1680px) {
  .awards-section .award-card.cda {
    width: 230px;
  }
}
@media only screen and (max-width: 1680px) and (max-width: 1024px) {
  .awards-section .award-card.cda {
    width: 170px;
  }
}
@media only screen and (max-width: 1680px) {
  .awards-section .award-card.cda img {
    width: 230px;
  }
}
@media only screen and (max-width: 1680px) and (max-width: 1024px) {
  .awards-section .award-card.cda img {
    width: 150px;
    height: auto;
  }
}
@media only screen and (max-width: 1680px) {
  .awards-section .award-card.idfv img {
    width: 150px;
  }
}
@media only screen and (max-width: 1680px) and (max-width: 1024px) {
  .awards-section .award-card.idfv img {
    width: 120px;
    height: auto;
  }
}
.awards-section .award-btn-block {
  margin-top: 50px;
}
@media only screen and (max-width: 1024px) {
  .awards-section .award-btn-block {
    margin-top: 20px;
  }
}
.awards-section.text-center .section-head {
  text-align: center;
}
.awards-section.text-center .section-head h4 {
  line-height: 24px;
}
.awards-section.text-center .section-head h4 br {
  display: none;
}
@media only screen and (max-width: 1024px) {
  .awards-section.text-center .section-head h4 br {
    display: block;
  }
}
@media only screen and (max-width: 1024px) {
  .awards-section.text-center .award-block .mt-60 {
    margin-top: 30px;
  }
}

.offer-section .section-head {
  margin-bottom: 16px;
}
@media only screen and (max-width: 1024px) {
  .offer-section {
    padding-bottom: 60px !important;
  }
}
.offer-section .feature-main {
  height: 333px;
  min-width: 386px;
  position: relative;
  padding: 40px 40px 40px 45px;
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  flex: none;
  margin-right: 32px;
  cursor: pointer;
}
@media only screen and (max-width: 1680px) {
  .offer-section .feature-main {
    height: 260px;
    min-width: 290px;
    padding: 30px 30px 30px 30px;
  }
}
@media only screen and (max-width: 1024px) {
  .offer-section .feature-main {
    height: 100%;
    margin-bottom: 30px;
    width: 100%;
    min-width: 100%;
  }
}
@media only screen and (max-width: 768px) {
  .offer-section .feature-main {
    height: 280px;
    justify-content: flex-start;
    text-align: left;
    padding: 30px 20px;
    margin: auto;
    margin-bottom: 32px;
  }
  .offer-section .feature-main:last-child {
    margin-bottom: 0px;
  }
}
.offer-section .feature-main .fm-info h4 {
  font-weight: 700;
  color: #171717;
  margin-bottom: 20px;
}
@media only screen and (max-width: 1680px) {
  .offer-section .feature-main .fm-info h4 {
    margin-bottom: 14px;
  }
}
@media only screen and (max-width: 1024px) {
  .offer-section .feature-main .fm-info h4 {
    font-size: 18px;
    line-height: 25px;
    margin-bottom: 17px;
  }
}
.offer-section .feature-main .fm-info p {
  line-height: 35px;
  color: #171717;
  letter-spacing: 0px;
}
@media only screen and (max-width: 1680px) {
  .offer-section .feature-main .fm-info p {
    line-height: 26px;
  }
}
@media only screen and (max-width: 1024px) {
  .offer-section .feature-main .fm-info p {
    font-size: 16px;
    line-height: 26px;
    font-weight: 500;
  }
}
.offer-section .offer-num-btn {
  display: flex;
  justify-content: center;
}

.outcome-sec .col-sm-12 {
  padding: 0px;
}
@media only screen and (max-width: 1024px) {
  .outcome-sec {
    margin-left: -15px;
    margin-bottom: 20px;
  }
  .outcome-sec .col-12 {
    padding-left: 0px;
  }
}
@media only screen and (max-width: 768px) {
  .outcome-sec {
    margin-bottom: 0px;
  }
}

.programs-section .pros-links .pr-step {
  cursor: pointer;
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0px;
  line-height: 30px;
  color: #021D45;
  text-transform: capitalize;
  text-decoration: none;
  margin-bottom: 20px;
  display: inline-flex;
  position: relative;
  padding-right: 40px;
}
.programs-section .pros-links .pr-step img {
  opacity: 0;
  margin-left: 20px;
}
.programs-section .pros-links .pr-step.active {
  font-weight: 600;
}
.programs-section .pros-links .pr-step.active img {
  opacity: 1;
}
.programs-section .pros-links .pr-step:last-child {
  margin-bottom: 50px;
}
@media only screen and (max-width: 1680px) {
  .programs-section .pros-links .pr-step:last-child {
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 1680px) {
  .programs-section .pros-links .pr-step {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 10px;
  }
}
.programs-section .card, .programs-section .prof-card, .programs-section .testimonial-section .testimonial-card, .testimonial-section .programs-section .testimonial-card, .programs-section .cs-main-box, .programs-section .offer-section .feature-main, .offer-section .programs-section .feature-main {
  background: #FFFFFF 0% 0% no-repeat padding-box;
  box-shadow: 0px 0px 20px rgba(2, 29, 69, 0.1215686275);
  overflow: hidden;
  margin-right: 72px;
  cursor: pointer;
}
@media only screen and (max-width: 1680px) {
  .programs-section .card, .programs-section .prof-card, .programs-section .testimonial-section .testimonial-card, .testimonial-section .programs-section .testimonial-card, .programs-section .cs-main-box, .programs-section .offer-section .feature-main, .offer-section .programs-section .feature-main {
    margin-right: 25px;
  }
}
@media only screen and (max-width: 1024px) {
  .programs-section .card, .programs-section .prof-card, .programs-section .testimonial-section .testimonial-card, .testimonial-section .programs-section .testimonial-card, .programs-section .cs-main-box, .programs-section .offer-section .feature-main, .offer-section .programs-section .feature-main {
    margin-right: 15px;
    margin-left: 15px;
  }
}
.programs-section .card .card-image, .programs-section .prof-card .card-image, .programs-section .testimonial-section .testimonial-card .card-image, .testimonial-section .programs-section .testimonial-card .card-image, .programs-section .cs-main-box .card-image, .programs-section .offer-section .feature-main .card-image, .offer-section .programs-section .feature-main .card-image {
  background-image: url("https://site-assets.fitterfly.com/site-assets/images/site-1/default-thumbnail.png");
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 387px;
  overflow: hidden;
  border-radius: 10px 10px 0 0;
}
@media only screen and (max-width: 1680px) {
  .programs-section .card .card-image, .programs-section .prof-card .card-image, .programs-section .testimonial-section .testimonial-card .card-image, .testimonial-section .programs-section .testimonial-card .card-image, .programs-section .cs-main-box .card-image, .programs-section .offer-section .feature-main .card-image, .offer-section .programs-section .feature-main .card-image {
    height: 250px;
  }
}
@media only screen and (max-width: 1024px) {
  .programs-section .card .card-image, .programs-section .prof-card .card-image, .programs-section .testimonial-section .testimonial-card .card-image, .testimonial-section .programs-section .testimonial-card .card-image, .programs-section .cs-main-box .card-image, .programs-section .offer-section .feature-main .card-image, .offer-section .programs-section .feature-main .card-image {
    height: 238px;
  }
}
.programs-section .card .card-info, .programs-section .prof-card .card-info, .programs-section .testimonial-section .testimonial-card .card-info, .testimonial-section .programs-section .testimonial-card .card-info, .programs-section .cs-main-box .card-info, .programs-section .offer-section .feature-main .card-info, .offer-section .programs-section .feature-main .card-info {
  padding: 40px 48px 45px 40px;
  border-radius: 0px 0px 10px 10px;
  overflow: hidden;
  min-height: 260px;
}
@media only screen and (max-width: 1680px) {
  .programs-section .card .card-info, .programs-section .prof-card .card-info, .programs-section .testimonial-section .testimonial-card .card-info, .testimonial-section .programs-section .testimonial-card .card-info, .programs-section .cs-main-box .card-info, .programs-section .offer-section .feature-main .card-info, .offer-section .programs-section .feature-main .card-info {
    padding: 28px 25px 20px;
    min-height: 180px;
  }
}
@media only screen and (max-width: 1024px) {
  .programs-section .card .card-info, .programs-section .prof-card .card-info, .programs-section .testimonial-section .testimonial-card .card-info, .testimonial-section .programs-section .testimonial-card .card-info, .programs-section .cs-main-box .card-info, .programs-section .offer-section .feature-main .card-info, .offer-section .programs-section .feature-main .card-info {
    padding: 20px 15px 20px 20px;
  }
}
.programs-section .card .card-info h3, .programs-section .prof-card .card-info h3, .programs-section .testimonial-section .testimonial-card .card-info h3, .testimonial-section .programs-section .testimonial-card .card-info h3, .programs-section .cs-main-box .card-info h3, .programs-section .offer-section .feature-main .card-info h3, .offer-section .programs-section .feature-main .card-info h3 {
  font-size: 24px;
  line-height: 38px;
  text-align: left;
  font-weight: 700;
  margin-bottom: 15px;
}
@media only screen and (max-width: 1680px) {
  .programs-section .card .card-info h3, .programs-section .prof-card .card-info h3, .programs-section .testimonial-section .testimonial-card .card-info h3, .testimonial-section .programs-section .testimonial-card .card-info h3, .programs-section .cs-main-box .card-info h3, .programs-section .offer-section .feature-main .card-info h3, .offer-section .programs-section .feature-main .card-info h3 {
    font-size: 20px;
    line-height: 28px;
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 1024px) {
  .programs-section .card .card-info h3, .programs-section .prof-card .card-info h3, .programs-section .testimonial-section .testimonial-card .card-info h3, .testimonial-section .programs-section .testimonial-card .card-info h3, .programs-section .cs-main-box .card-info h3, .programs-section .offer-section .feature-main .card-info h3, .offer-section .programs-section .feature-main .card-info h3 {
    font-size: 18px;
    line-height: 25px;
  }
}
.programs-section .card .card-info p, .programs-section .prof-card .card-info p, .programs-section .testimonial-section .testimonial-card .card-info p, .testimonial-section .programs-section .testimonial-card .card-info p, .programs-section .cs-main-box .card-info p, .programs-section .offer-section .feature-main .card-info p, .offer-section .programs-section .feature-main .card-info p {
  margin-bottom: 20px;
  line-height: 35px;
}
@media only screen and (max-width: 1680px) {
  .programs-section .card .card-info p, .programs-section .prof-card .card-info p, .programs-section .testimonial-section .testimonial-card .card-info p, .testimonial-section .programs-section .testimonial-card .card-info p, .programs-section .cs-main-box .card-info p, .programs-section .offer-section .feature-main .card-info p, .offer-section .programs-section .feature-main .card-info p {
    margin-bottom: 10px;
    line-height: 26px;
    min-height: 78px;
  }
}
.programs-section .card .card-info a, .programs-section .prof-card .card-info a, .programs-section .testimonial-section .testimonial-card .card-info a, .testimonial-section .programs-section .testimonial-card .card-info a, .programs-section .cs-main-box .card-info a, .programs-section .offer-section .feature-main .card-info a, .offer-section .programs-section .feature-main .card-info a {
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: 0.3px;
  text-align: left;
  text-decoration: underline;
  color: #021D45;
  display: block;
  text-transform: capitalize;
  cursor: pointer;
}
@media only screen and (max-width: 1680px) {
  .programs-section .card .card-info a, .programs-section .prof-card .card-info a, .programs-section .testimonial-section .testimonial-card .card-info a, .testimonial-section .programs-section .testimonial-card .card-info a, .programs-section .cs-main-box .card-info a, .programs-section .offer-section .feature-main .card-info a, .offer-section .programs-section .feature-main .card-info a {
    font-size: 14px;
    line-height: 20px;
  }
}
.programs-section .card .card-info a.know-more, .programs-section .prof-card .card-info a.know-more, .programs-section .testimonial-section .testimonial-card .card-info a.know-more, .testimonial-section .programs-section .testimonial-card .card-info a.know-more, .programs-section .cs-main-box .card-info a.know-more, .programs-section .offer-section .feature-main .card-info a.know-more, .offer-section .programs-section .feature-main .card-info a.know-more {
  text-decoration: none;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
.programs-section .card .blog-card, .programs-section .prof-card .blog-card, .programs-section .testimonial-section .testimonial-card .blog-card, .testimonial-section .programs-section .testimonial-card .blog-card, .programs-section .cs-main-box .blog-card, .programs-section .offer-section .feature-main .blog-card, .offer-section .programs-section .feature-main .blog-card {
  min-height: 320px;
}
@media only screen and (max-width: 1680px) {
  .programs-section .card .blog-card, .programs-section .prof-card .blog-card, .programs-section .testimonial-section .testimonial-card .blog-card, .testimonial-section .programs-section .testimonial-card .blog-card, .programs-section .cs-main-box .blog-card, .programs-section .offer-section .feature-main .blog-card, .offer-section .programs-section .feature-main .blog-card {
    min-height: 240px;
  }
}
@media only screen and (min-width: 1024px) {
  .programs-section .card .blog-card, .programs-section .prof-card .blog-card, .programs-section .testimonial-section .testimonial-card .blog-card, .testimonial-section .programs-section .testimonial-card .blog-card, .programs-section .cs-main-box .blog-card, .programs-section .offer-section .feature-main .blog-card, .offer-section .programs-section .feature-main .blog-card {
    min-height: 220px;
  }
}
@media only screen and (min-width: 1024px) {
  .programs-section .card:hover, .programs-section .prof-card:hover, .programs-section .testimonial-section .testimonial-card:hover, .testimonial-section .programs-section .testimonial-card:hover, .programs-section .cs-main-box:hover, .programs-section .offer-section .feature-main:hover, .offer-section .programs-section .feature-main:hover {
    background: #EEF4F6 0% 0% no-repeat padding-box;
    box-shadow: 0px 0px 20px rgba(2, 29, 69, 0.1215686275);
    border-radius: 10px;
    overflow: hidden;
  }
  .programs-section .card:hover .card-image, .programs-section .prof-card:hover .card-image, .programs-section .testimonial-section .testimonial-card:hover .card-image, .testimonial-section .programs-section .testimonial-card:hover .card-image, .programs-section .cs-main-box:hover .card-image, .programs-section .offer-section .feature-main:hover .card-image, .offer-section .programs-section .feature-main:hover .card-image {
    border-radius: 10px 10px 0 0;
    overflow: hidden;
  }
  .programs-section .card:hover .card-info, .programs-section .prof-card:hover .card-info, .programs-section .testimonial-section .testimonial-card:hover .card-info, .testimonial-section .programs-section .testimonial-card:hover .card-info, .programs-section .cs-main-box:hover .card-info, .programs-section .offer-section .feature-main:hover .card-info, .offer-section .programs-section .feature-main:hover .card-info {
    border-radius: 0 0 10px 10px;
    overflow: hidden;
  }
  .programs-section .card:hover .card-info .white-btn, .programs-section .prof-card:hover .card-info .white-btn, .programs-section .testimonial-section .testimonial-card:hover .card-info .white-btn, .testimonial-section .programs-section .testimonial-card:hover .card-info .white-btn, .programs-section .cs-main-box:hover .card-info .white-btn, .programs-section .offer-section .feature-main:hover .card-info .white-btn, .offer-section .programs-section .feature-main:hover .card-info .white-btn {
    background-color: #41B9D5;
    box-shadow: -20px 10px 30px rgba(70, 70, 70, 0.16);
    color: #fff;
    border: 1px solid transparent;
    border-radius: 8px;
  }
}
@media only screen and (max-width: 1024px) {
  .programs-section .card:active, .programs-section .prof-card:active, .programs-section .testimonial-section .testimonial-card:active, .testimonial-section .programs-section .testimonial-card:active, .programs-section .cs-main-box:active, .programs-section .offer-section .feature-main:active, .offer-section .programs-section .feature-main:active {
    background: #EEF4F6 0% 0% no-repeat padding-box;
    box-shadow: 0px 0px 20px rgba(2, 29, 69, 0.1215686275);
    border: 1px solid transparent;
    border-radius: 10px;
    overflow: hidden;
  }
  .programs-section .card:active .card-image, .programs-section .prof-card:active .card-image, .programs-section .testimonial-section .testimonial-card:active .card-image, .testimonial-section .programs-section .testimonial-card:active .card-image, .programs-section .cs-main-box:active .card-image, .programs-section .offer-section .feature-main:active .card-image, .offer-section .programs-section .feature-main:active .card-image {
    border-radius: 10px 10px 0 0;
    overflow: hidden;
  }
  .programs-section .card:active .card-info, .programs-section .prof-card:active .card-info, .programs-section .testimonial-section .testimonial-card:active .card-info, .testimonial-section .programs-section .testimonial-card:active .card-info, .programs-section .cs-main-box:active .card-info, .programs-section .offer-section .feature-main:active .card-info, .offer-section .programs-section .feature-main:active .card-info {
    border-radius: 0 0 10px 10px;
    overflow: hidden;
  }
  .programs-section .card:active .card-info .white-btn, .programs-section .prof-card:active .card-info .white-btn, .programs-section .testimonial-section .testimonial-card:active .card-info .white-btn, .testimonial-section .programs-section .testimonial-card:active .card-info .white-btn, .programs-section .cs-main-box:active .card-info .white-btn, .programs-section .offer-section .feature-main:active .card-info .white-btn, .offer-section .programs-section .feature-main:active .card-info .white-btn {
    background-color: #41B9D5;
    box-shadow: -20px 10px 30px rgba(70, 70, 70, 0.16);
    color: #fff;
    border: 1px solid transparent;
    border-radius: 8px;
  }
  .programs-section .card .card-info .btn-pink, .programs-section .prof-card .card-info .btn-pink, .programs-section .testimonial-section .testimonial-card .card-info .btn-pink, .testimonial-section .programs-section .testimonial-card .card-info .btn-pink, .programs-section .cs-main-box .card-info .btn-pink, .programs-section .offer-section .feature-main .card-info .btn-pink, .offer-section .programs-section .feature-main .card-info .btn-pink {
    padding: 0 15px;
    font-size: 14px;
  }
  .programs-section .card .card-info a.link, .programs-section .prof-card .card-info a.link, .programs-section .testimonial-section .testimonial-card .card-info a.link, .testimonial-section .programs-section .testimonial-card .card-info a.link, .programs-section .cs-main-box .card-info a.link, .programs-section .offer-section .feature-main .card-info a.link, .offer-section .programs-section .feature-main .card-info a.link {
    font-size: 14px;
  }
}
.programs-section .carousel-arrow .owl-nav {
  position: absolute;
  left: -61%;
  bottom: 36px;
}
@media only screen and (max-width: 1680px) {
  .programs-section .carousel-arrow .owl-nav {
    left: -65%;
    bottom: 20px;
  }
}
@media only screen and (max-width: 1024px) {
  .programs-section .carousel-arrow .owl-nav {
    position: unset;
    margin-top: 30px;
  }
}
.programs-section .owl-carousel .owl-stage {
  padding: 20px 0px 20px 0px !important;
}
@media only screen and (max-width: 1024px) {
  .programs-section .owl-carousel .owl-stage {
    padding: 15px 0px 20px 0px !important;
  }
}
.programs-section .section-head {
  padding-left: 18%;
}
@media only screen and (max-width: 1680px) {
  .programs-section .section-head {
    padding-left: 14%;
  }
}
@media only screen and (max-width: 1024px) {
  .programs-section .section-head {
    padding-left: 0%;
  }
}
@media only screen and (max-width: 768px) {
  .programs-section .section-head {
    padding-left: 0%;
  }
}

.card-list .card, .card-list .prof-card, .card-list .testimonial-section .testimonial-card, .testimonial-section .card-list .testimonial-card, .card-list .cs-main-box, .card-list .offer-section .feature-main, .offer-section .card-list .feature-main {
  background: #FFFFFF 0% 0% no-repeat padding-box;
  box-shadow: 0px 0px 20px rgba(2, 29, 69, 0.1215686275);
  border-radius: 10px;
  overflow: hidden;
  margin-right: 104px;
  cursor: pointer;
  margin-right: 15px;
  margin-left: 15px;
}
@media only screen and (max-width: 1680px) {
  .card-list .card, .card-list .prof-card, .card-list .testimonial-section .testimonial-card, .testimonial-section .card-list .testimonial-card, .card-list .cs-main-box, .card-list .offer-section .feature-main, .offer-section .card-list .feature-main {
    margin-right: 15px;
    margin-left: 15px;
  }
}
@media only screen and (max-width: 1024px) {
  .card-list .card, .card-list .prof-card, .card-list .testimonial-section .testimonial-card, .testimonial-section .card-list .testimonial-card, .card-list .cs-main-box, .card-list .offer-section .feature-main, .offer-section .card-list .feature-main {
    margin-bottom: 60px;
  }
  .card-list .card.mb-0, .card-list .mb-0.prof-card, .card-list .testimonial-section .mb-0.testimonial-card, .testimonial-section .card-list .mb-0.testimonial-card, .card-list .mb-0.cs-main-box, .card-list .offer-section .mb-0.feature-main, .offer-section .card-list .mb-0.feature-main {
    margin-bottom: 0 !important;
  }
}
.card-list .card .card-image, .card-list .prof-card .card-image, .card-list .testimonial-section .testimonial-card .card-image, .testimonial-section .card-list .testimonial-card .card-image, .card-list .cs-main-box .card-image, .card-list .offer-section .feature-main .card-image, .offer-section .card-list .feature-main .card-image {
  background-image: url("https://site-assets.fitterfly.com/site-assets/images/site-1/default-thumbnail.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 322px;
  overflow: hidden;
  border-radius: 10px 10px 0 0;
}
@media only screen and (max-width: 1680px) {
  .card-list .card .card-image, .card-list .prof-card .card-image, .card-list .testimonial-section .testimonial-card .card-image, .testimonial-section .card-list .testimonial-card .card-image, .card-list .cs-main-box .card-image, .card-list .offer-section .feature-main .card-image, .offer-section .card-list .feature-main .card-image {
    height: 270px;
  }
}
@media only screen and (max-width: 1024px) {
  .card-list .card .card-image, .card-list .prof-card .card-image, .card-list .testimonial-section .testimonial-card .card-image, .testimonial-section .card-list .testimonial-card .card-image, .card-list .cs-main-box .card-image, .card-list .offer-section .feature-main .card-image, .offer-section .card-list .feature-main .card-image {
    height: 238px;
  }
}
.card-list .card .card-info, .card-list .prof-card .card-info, .card-list .testimonial-section .testimonial-card .card-info, .testimonial-section .card-list .testimonial-card .card-info, .card-list .cs-main-box .card-info, .card-list .offer-section .feature-main .card-info, .offer-section .card-list .feature-main .card-info {
  padding: 30px 48px 30px 40px;
  border-radius: 0px 0px 10px 10px;
  overflow: hidden;
  height: 260px;
}
@media only screen and (max-width: 1680px) {
  .card-list .card .card-info, .card-list .prof-card .card-info, .card-list .testimonial-section .testimonial-card .card-info, .testimonial-section .card-list .testimonial-card .card-info, .card-list .cs-main-box .card-info, .card-list .offer-section .feature-main .card-info, .offer-section .card-list .feature-main .card-info {
    padding: 24px 32px 24px;
    height: 200px;
  }
}
@media only screen and (min-width: 1024px) and (max-width: 1180px) {
  .card-list .card .card-info, .card-list .prof-card .card-info, .card-list .testimonial-section .testimonial-card .card-info, .testimonial-section .card-list .testimonial-card .card-info, .card-list .cs-main-box .card-info, .card-list .offer-section .feature-main .card-info, .offer-section .card-list .feature-main .card-info {
    padding: 16px 20px 16px;
  }
}
@media only screen and (max-width: 1024px) {
  .card-list .card .card-info, .card-list .prof-card .card-info, .card-list .testimonial-section .testimonial-card .card-info, .testimonial-section .card-list .testimonial-card .card-info, .card-list .cs-main-box .card-info, .card-list .offer-section .feature-main .card-info, .offer-section .card-list .feature-main .card-info {
    padding: 20px 20px 20px;
    height: 190px;
  }
  .card-list .card .card-info h3, .card-list .prof-card .card-info h3, .card-list .testimonial-section .testimonial-card .card-info h3, .testimonial-section .card-list .testimonial-card .card-info h3, .card-list .cs-main-box .card-info h3, .card-list .offer-section .feature-main .card-info h3, .offer-section .card-list .feature-main .card-info h3 {
    margin-bottom: 12px;
  }
}
.card-list .card .card-info h3, .card-list .prof-card .card-info h3, .card-list .testimonial-section .testimonial-card .card-info h3, .testimonial-section .card-list .testimonial-card .card-info h3, .card-list .cs-main-box .card-info h3, .card-list .offer-section .feature-main .card-info h3, .offer-section .card-list .feature-main .card-info h3 {
  font-size: 26px;
  line-height: 38px;
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.42px;
  margin-bottom: 15px;
}
@media only screen and (max-width: 1680px) {
  .card-list .card .card-info h3, .card-list .prof-card .card-info h3, .card-list .testimonial-section .testimonial-card .card-info h3, .testimonial-section .card-list .testimonial-card .card-info h3, .card-list .cs-main-box .card-info h3, .card-list .offer-section .feature-main .card-info h3, .offer-section .card-list .feature-main .card-info h3 {
    font-size: 20px;
    line-height: 28px;
    margin-bottom: 12px;
  }
}
.card-list .card .card-info p, .card-list .prof-card .card-info p, .card-list .testimonial-section .testimonial-card .card-info p, .testimonial-section .card-list .testimonial-card .card-info p, .card-list .cs-main-box .card-info p, .card-list .offer-section .feature-main .card-info p, .offer-section .card-list .feature-main .card-info p {
  text-align: center;
  margin-bottom: 0px;
  line-height: 35px;
}
@media only screen and (max-width: 1680px) {
  .card-list .card .card-info p, .card-list .prof-card .card-info p, .card-list .testimonial-section .testimonial-card .card-info p, .testimonial-section .card-list .testimonial-card .card-info p, .card-list .cs-main-box .card-info p, .card-list .offer-section .feature-main .card-info p, .offer-section .card-list .feature-main .card-info p {
    line-height: 26px;
  }
}
.card-list .card .card-info a, .card-list .prof-card .card-info a, .card-list .testimonial-section .testimonial-card .card-info a, .testimonial-section .card-list .testimonial-card .card-info a, .card-list .cs-main-box .card-info a, .card-list .offer-section .feature-main .card-info a, .offer-section .card-list .feature-main .card-info a {
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: 0.3px;
  text-align: center;
  text-decoration: underline;
  color: #021D45;
  display: block;
  text-transform: uppercase;
  cursor: pointer;
}
@media only screen and (max-width: 1680px) {
  .card-list .card .card-info a, .card-list .prof-card .card-info a, .card-list .testimonial-section .testimonial-card .card-info a, .testimonial-section .card-list .testimonial-card .card-info a, .card-list .cs-main-box .card-info a, .card-list .offer-section .feature-main .card-info a, .offer-section .card-list .feature-main .card-info a {
    font-size: 16px;
    line-height: 20px;
  }
}
.card-list .carousel-arrow .owl-nav {
  position: absolute;
  left: -61%;
  bottom: 36px;
}
@media only screen and (max-width: 1680px) {
  .card-list .carousel-arrow .owl-nav {
    left: -65%;
    bottom: 20px;
  }
}
@media only screen and (max-width: 1024px) {
  .card-list .carousel-arrow .owl-nav {
    position: unset;
    margin-top: 30px;
  }
}

@media only screen and (max-width: 1024px) {
  .card-section .section-head {
    text-align: left;
  }
}
.card-section .card-list .row .col-lg-4 {
  position: relative;
}
.card-section .card-list .row .col-lg-4:after {
  content: "";
  position: absolute;
  background-image: url("https://site-assets.fitterfly.com/site-assets/images/dash-arrow.svg");
  background-repeat: no-repeat;
  display: flex;
  height: 40px;
  width: 100%;
  top: 50%;
  background-size: 125px;
  left: 88%;
  z-index: -1;
}
@media only screen and (max-width: 1680px) {
  .card-section .card-list .row .col-lg-4:after {
    background-size: 100px;
    left: 87%;
  }
}
@media screen and (max-width: 1400px) {
  .card-section .card-list .row .col-lg-4:after {
    top: 40%;
  }
}
.card-section .card-list .row .col-lg-4:last-child:after {
  display: none;
}
@media only screen and (min-width: 1024px) and (max-width: 1180px) {
  .card-section .card-list .row .col-lg-4:after {
    left: 84%;
  }
}
@media only screen and (max-width: 1024px) {
  .card-section .card-list .row .col-lg-4:after {
    top: 119%;
    left: -2%;
    transform: rotate(90deg);
  }
}
.card-section .card .card-image, .card-section .prof-card .card-image, .card-section .testimonial-section .testimonial-card .card-image, .testimonial-section .card-section .testimonial-card .card-image, .card-section .cs-main-box .card-image, .card-section .offer-section .feature-main .card-image, .offer-section .card-section .feature-main .card-image {
  height: 280px;
}
@media screen and (max-width: 1680px) {
  .card-section .card .card-image, .card-section .prof-card .card-image, .card-section .testimonial-section .testimonial-card .card-image, .testimonial-section .card-section .testimonial-card .card-image, .card-section .cs-main-box .card-image, .card-section .offer-section .feature-main .card-image, .offer-section .card-section .feature-main .card-image {
    height: 270px;
  }
}
@media screen and (max-width: 1400px) {
  .card-section .card .card-image, .card-section .prof-card .card-image, .card-section .testimonial-section .testimonial-card .card-image, .testimonial-section .card-section .testimonial-card .card-image, .card-section .cs-main-box .card-image, .card-section .offer-section .feature-main .card-image, .offer-section .card-section .feature-main .card-image {
    height: 180px;
  }
}
@media only screen and (max-width: 1280px) {
  .card-section .card .card-image, .card-section .prof-card .card-image, .card-section .testimonial-section .testimonial-card .card-image, .testimonial-section .card-section .testimonial-card .card-image, .card-section .cs-main-box .card-image, .card-section .offer-section .feature-main .card-image, .offer-section .card-section .feature-main .card-image {
    height: 250px;
  }
}
@media only screen and (max-width: 1024px) {
  .card-section .card .card-image, .card-section .prof-card .card-image, .card-section .testimonial-section .testimonial-card .card-image, .testimonial-section .card-section .testimonial-card .card-image, .card-section .cs-main-box .card-image, .card-section .offer-section .feature-main .card-image, .offer-section .card-section .feature-main .card-image {
    height: 238px;
    background-size: cover;
    background-position: center;
  }
}
.card-section .card .card-info, .card-section .prof-card .card-info, .card-section .testimonial-section .testimonial-card .card-info, .testimonial-section .card-section .testimonial-card .card-info, .card-section .cs-main-box .card-info, .card-section .offer-section .feature-main .card-info, .offer-section .card-section .feature-main .card-info {
  height: 290px;
}
@media screen and (max-width: 1680px) {
  .card-section .card .card-info, .card-section .prof-card .card-info, .card-section .testimonial-section .testimonial-card .card-info, .testimonial-section .card-section .testimonial-card .card-info, .card-section .cs-main-box .card-info, .card-section .offer-section .feature-main .card-info, .offer-section .card-section .feature-main .card-info {
    height: 200px;
  }
}
@media screen and (max-width: 1024px) {
  .card-section .card .card-info, .card-section .prof-card .card-info, .card-section .testimonial-section .testimonial-card .card-info, .testimonial-section .card-section .testimonial-card .card-info, .card-section .cs-main-box .card-info, .card-section .offer-section .feature-main .card-info, .offer-section .card-section .feature-main .card-info {
    height: 190px;
  }
}

@media only screen and (max-width: 1024px) {
  .how-work-section {
    padding: 50px 0px;
  }
}
@media only screen and (max-width: 1280px) {
  .how-work-section.section {
    padding-top: 50px;
  }
}
.how-work-section .work-sec {
  margin: 50px 0 80px;
}
@media only screen and (max-width: 1680px) {
  .how-work-section .work-sec {
    margin: 20px 0 50px;
  }
}
@media only screen and (max-width: 1280px) {
  .how-work-section .work-sec {
    margin: 20px 0 0px;
  }
}
@media only screen and (max-width: 1024px) {
  .how-work-section .work-sec {
    margin: 0px 0px;
  }
  .how-work-section .work-sec .col-sm-7 {
    padding-right: 0px;
    padding-left: 0px;
  }
  .how-work-section .work-sec .step-content p {
    padding-right: 10px;
    padding-left: 10px;
  }
}
.how-work-section .mobile-block {
  position: relative;
}
@media only screen and (max-width: 1024px) {
  .how-work-section .mobile-block {
    margin-bottom: 50px;
  }
}
.how-work-section .mobile-block:before {
  content: "";
  position: absolute;
  display: block;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background-color: #fff;
  z-index: 1;
  left: 0px;
  right: 0px;
  margin: 0 auto;
}
@media only screen and (max-width: 1680px) {
  .how-work-section .mobile-block:before {
    width: 490px;
    height: 490px;
  }
}
@media only screen and (max-width: 1280px) {
  .how-work-section .mobile-block:before {
    width: 360px;
    height: 360px;
  }
}
@media only screen and (max-width: 1024px) {
  .how-work-section .mobile-block:before {
    width: 290px;
    height: 290px;
  }
}
.how-work-section .mobile-block .mobile-bg {
  background-image: url("https://site-assets.fitterfly.com/site-assets/images/site-1/mobile-image.png");
  background-repeat: no-repeat;
  height: 933px;
  width: 464px;
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  margin: 0 auto;
  z-index: 4;
}
@media only screen and (max-width: 1680px) {
  .how-work-section .mobile-block .mobile-bg {
    height: 760px;
    width: 364px;
    background-size: contain;
  }
}
@media only screen and (max-width: 1280px) {
  .how-work-section .mobile-block .mobile-bg {
    height: 490px;
    width: 240px;
    margin: auto;
  }
}
@media only screen and (max-width: 1024px) {
  .how-work-section .mobile-block .mobile-bg {
    height: 405px;
    width: 200px;
  }
}
.how-work-section .mobile-block .mobile-bg .graph-img {
  position: absolute;
  display: block;
  top: 11%;
  right: -45px;
  width: 170px;
  height: 156px;
  background-image: url("https://site-assets.fitterfly.com/site-assets/images/site-1/graph-box.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  box-shadow: -50px 30px 30px rgba(0, 0, 0, 0.1607843137);
  z-index: 1;
  border-radius: 8px;
}
@media only screen and (max-width: 1680px) {
  .how-work-section .mobile-block .mobile-bg .graph-img {
    width: 134px;
    height: 120px;
    right: -30px;
    top: 8%;
  }
}
@media only screen and (max-width: 1280px) {
  .how-work-section .mobile-block .mobile-bg .graph-img {
    width: 100px;
    height: 90px;
  }
}
@media only screen and (max-width: 1024px) {
  .how-work-section .mobile-block .mobile-bg .graph-img {
    top: 5%;
    right: -20px;
    width: 82px;
    height: 75px;
    border-radius: 8px;
  }
}
.how-work-section .mobile-block .mobile-bg .yellow-btn {
  position: absolute;
  bottom: 35%;
  right: -60px;
  z-index: 1;
}
@media only screen and (max-width: 1680px) {
  .how-work-section .mobile-block .mobile-bg .yellow-btn {
    bottom: 30%;
    right: -30px;
  }
}
@media only screen and (max-width: 1280px) {
  .how-work-section .mobile-block .mobile-bg .yellow-btn {
    bottom: 25%;
    width: 140px;
    height: 44px;
  }
}
.how-work-section .mobile-block .owl-carousel {
  width: 420px;
  height: 925px;
  overflow: hidden;
  margin: 0 auto;
  z-index: 1;
  padding: 30px 0px 20px;
}
@media only screen and (max-width: 1680px) {
  .how-work-section .mobile-block .owl-carousel {
    width: 325px;
    height: 715px;
  }
}
@media only screen and (max-width: 1280px) {
  .how-work-section .mobile-block .owl-carousel {
    width: 220px;
    height: 470px;
    padding: 20px 0px 10px;
  }
}
@media only screen and (max-width: 1024px) {
  .how-work-section .mobile-block .owl-carousel {
    width: 180px;
    height: 400px;
    padding: 15px 0 10px;
  }
}
.how-work-section .mobile-block .owl-carousel .item {
  width: 420px;
  height: 875px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
  overflow: hidden;
}
@media only screen and (max-width: 1680px) {
  .how-work-section .mobile-block .owl-carousel .item {
    width: 325px;
    height: 670px;
  }
}
@media only screen and (max-width: 1280px) {
  .how-work-section .mobile-block .owl-carousel .item {
    height: 425px;
    width: 220px;
  }
}
@media only screen and (max-width: 1024px) {
  .how-work-section .mobile-block .owl-carousel .item {
    width: 180px;
    height: 360px;
    margin: 0 auto;
  }
}
.how-work-section .btn, .how-work-section .black-btn, .how-work-section .white-btn, .how-work-section .teal-btn, .how-work-section .bdr-btn {
  width: 343px;
}
@media only screen and (max-width: 1024px) {
  .how-work-section .btn, .how-work-section .black-btn, .how-work-section .white-btn, .how-work-section .teal-btn, .how-work-section .bdr-btn {
    width: 278px;
    margin: 0 auto;
  }
}
@media only screen and (max-width: 1280px) {
  .how-work-section .btn, .how-work-section .black-btn, .how-work-section .white-btn, .how-work-section .teal-btn, .how-work-section .bdr-btn {
    width: 240px;
  }
}
@media only screen and (max-width: 1024px) {
  .how-work-section .step-content h2 {
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 1024px) {
  .how-work-section .step-content p {
    margin-bottom: 20px;
  }
}

.testimonial-section .testimonial-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 48px 40px 44px;
  overflow: hidden;
  margin: 20px 20px 20px 0px;
  max-height: 380px;
  min-height: 380px;
}
@media only screen and (max-width: 1680px) {
  .testimonial-section .testimonial-card {
    padding: 30px 30px;
    max-height: 240px;
    min-height: 240px;
  }
}
@media only screen and (max-width: 320px) {
  .testimonial-section .testimonial-card {
    padding: 30px 30px;
  }
}
.testimonial-section .testimonial-card .testimonial-content {
  font-size: 20px;
  font-weight: 400;
  line-height: 35px;
  letter-spacing: 0px;
  color: #171717;
  text-align: left;
  margin-bottom: 40px;
  position: relative;
}
@media only screen and (max-width: 1680px) {
  .testimonial-section .testimonial-card .testimonial-content {
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 15px;
  }
}
@media only screen and (max-width: 1024px) {
  .testimonial-section .testimonial-card .testimonial-content {
    padding-top: 0px;
    margin-bottom: 15px;
  }
  .testimonial-section .testimonial-card .testimonial-content:before {
    top: 0px;
  }
}
.testimonial-section .testimonial-card .testimonial-name .name {
  font-size: 24px;
  font-weight: 500;
  line-height: 38px;
  letter-spacing: 0px;
  color: #171717;
  text-transform: capitalize;
  text-align: left;
  display: block;
  margin-bottom: 20px;
}
@media only screen and (max-width: 1680px) {
  .testimonial-section .testimonial-card .testimonial-name .name {
    font-size: 20px;
    margin-bottom: 15px;
    line-height: 24px;
  }
}
@media only screen and (max-width: 1024px) {
  .testimonial-section .testimonial-card .testimonial-name .name {
    font-size: 18px;
  }
}
.testimonial-section .testimonial-card .testimonial-name .detail {
  font-size: 18px;
  font-weight: 500;
  line-height: 35px;
  letter-spacing: 0px;
  color: #171717;
  text-transform: capitalize;
  text-align: left;
  opacity: 0.7;
  display: inline-block;
}
@media only screen and (max-width: 1680px) {
  .testimonial-section .testimonial-card .testimonial-name .detail {
    font-size: 16px;
    line-height: 30px;
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 1024px) {
  .testimonial-section .testimonial-card {
    padding: 30px 20px 30px;
    width: 98%;
    margin: 0 auto;
    margin-bottom: 35px;
  }
}
@media only screen and (max-width: 768px) {
  .testimonial-section .testimonial-card {
    padding: 30px 20px 30px;
    width: 100%;
    margin: 0 auto;
    margin-bottom: 20px;
    max-height: 280px;
    min-height: 280px;
  }
}
.testimonial-section .tes-carousel-one .item {
  padding: 10px 0 0;
  margin: 5px;
}
@media only screen and (max-width: 1680px) {
  .testimonial-section .tes-carousel-one .item {
    padding: 0px 0 0;
  }
}
.testimonial-section .tes-carousel-one h4 {
  font-size: 30px;
  line-height: 52px;
  font-weight: 600;
  color: #171717;
  letter-spacing: 0.48px;
}
@media only screen and (max-width: 1680px) {
  .testimonial-section .tes-carousel-one h4 {
    font-size: 22px;
    line-height: 24px;
  }
}
@media only screen and (max-width: 1024px) {
  .testimonial-section .tes-carousel-one h4 {
    margin-bottom: 10px;
    text-align: left;
    font-size: 18px;
    line-height: 30px;
  }
}
.testimonial-section .section-head {
  margin-bottom: 40px;
}
@media only screen and (max-width: 1680px) {
  .testimonial-section .section-head {
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 1024px) {
  .testimonial-section .section-head {
    margin-bottom: 25px;
  }
}
@media only screen and (max-width: 1024px) {
  .testimonial-section .section-head {
    text-align: left;
  }
  .testimonial-section .testimonal-btn-block {
    flex-direction: column-reverse;
  }
  .testimonial-section .testimonal-btn-block .next-prev-btn {
    margin-top: 17px;
  }
}

.feedback img {
  width: unset !important;
}
.feedback .star {
  width: 30px;
  height: 30px;
  background: url("https://site-assets.fitterfly.com/site-assets/images/star-yellow.svg") no-repeat center;
  margin-right: 5px;
  background-size: 28px;
}
.feedback .star.grey {
  filter: grayscale(1);
}
@media only screen and (max-width: 1024px) {
  .feedback .star {
    height: 28px;
    background-size: 28px;
  }
}

.et-logos {
  min-height: 126px;
  flex: none;
  cursor: pointer;
}
@media only screen and (max-width: 1680px) {
  .et-logos {
    min-height: 100px;
  }
}
@media only screen and (max-width: 1024px) {
  .et-logos {
    min-height: 80px;
  }
}

.barcode-app a {
  display: block;
  color: #171717;
  text-decoration: underline;
}
.barcode-app .qr-code {
  width: 158px;
  height: 158px;
  background: url("https://site-assets.fitterfly.com/site-assets/images/qr-code.svg") no-repeat center;
  margin-right: 50px;
  background-size: contain;
}
@media only screen and (max-width: 1680px) {
  .barcode-app .qr-code {
    width: 130px;
    height: 130px;
    margin-right: 30px;
    background-size: contain;
  }
}
@media only screen and (max-width: 1024px) {
  .barcode-app .app-btn-block {
    display: flex;
  }
}
.barcode-app .app-btn-block .playstore {
  width: 225px;
  height: 70px;
  background: url("https://site-assets.fitterfly.com/site-assets/images/play-store.webp") no-repeat center;
  cursor: pointer;
  display: block;
}
@media only screen and (max-width: 1680px) {
  .barcode-app .app-btn-block .playstore {
    width: 180px;
    height: 60px;
    background-size: 180px 60px;
  }
}
@media only screen and (min-width: 1024px) {
  .barcode-app .app-btn-block .playstore:hover {
    transform: scale(1.02);
    transition: all 0.3s;
  }
}
@media only screen and (max-width: 1024px) {
  .barcode-app .app-btn-block .playstore {
    width: 160px;
    height: 60px;
    background-size: 160px 60px;
    margin-right: 20px;
  }
  .barcode-app .app-btn-block .playstore:active {
    transform: scale(1.02);
    transition: all 0.3s;
  }
}
.barcode-app .app-btn-block .appstore {
  width: 225px;
  height: 70px;
  background: url("https://site-assets.fitterfly.com/site-assets/images/app-store.webp") no-repeat center;
  cursor: pointer;
  display: block;
}
@media only screen and (max-width: 1680px) {
  .barcode-app .app-btn-block .appstore {
    width: 180px;
    height: 60px;
    background-size: 180px 60px;
  }
}
@media only screen and (min-width: 1024px) {
  .barcode-app .app-btn-block .appstore:hover {
    transform: scale(1.02);
    transition: all 0.3s;
  }
}
@media only screen and (max-width: 1024px) {
  .barcode-app .app-btn-block .appstore {
    width: 160px;
    height: 60px;
    background-size: 160px 60px;
  }
  .barcode-app .app-btn-block .appstore:active {
    transform: scale(1.02);
    transition: all 0.3s;
  }
}

.support-sec {
  text-align: left;
}
.support-sec .address .label {
  min-width: 95px;
  font-weight: 800;
  flex: none;
  color: #171717;
  font-family: "Inter", sans-serif;
  font-display: swap;
}
@media only screen and (max-width: 1024px) {
  .support-sec .address .label {
    min-width: unset;
  }
}
@media only screen and (max-width: 768px) {
  .support-sec .address .label {
    font-weight: 700;
  }
}
.support-sec .address .address-item {
  margin-bottom: 15px;
}
@media only screen and (max-width: 1280px) {
  .support-sec .address .address-item {
    margin-bottom: 8px;
  }
}
@media only screen and (max-width: 1024px) {
  .support-sec .address .address-item {
    flex-direction: column;
  }
}
.support-sec .address .address-item a {
  font-size: 20px;
  line-height: 35px;
  letter-spacing: 0px;
  color: #171717;
  text-decoration: none;
}
@media only screen and (max-width: 1680px) {
  .support-sec .address .address-item a {
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0px;
  }
}
.support-sec .map-block {
  margin-bottom: 20px;
}
.support-sec h3 {
  font-size: 32px;
  font-weight: 800;
  line-height: 60px;
  letter-spacing: 0px;
  color: #171717;
  text-transform: capitalize;
}
@media only screen and (max-width: 1280px) {
  .support-sec h3 {
    line-height: 30px;
  }
}
@media only screen and (max-width: 1024px) {
  .support-sec h3 {
    margin-bottom: 15px;
    line-height: 42px;
  }
}
@media only screen and (max-width: 1680px) {
  .support-sec h3 {
    font-size: 20px;
    line-height: 28px;
    font-weight: 600;
  }
}
@media only screen and (max-width: 768px) {
  .support-sec h3 {
    font-weight: 600;
    font-size: 18px;
    line-height: 22px;
  }
}

@media only screen and (max-width: 1024px) {
  .google-map-sec.section-pad {
    padding: 30px 0;
    margin: 40px 0px;
  }
}

.partner-list {
  justify-content: center;
  position: relative;
}
.partner-list .partner-item {
  margin-right: 20px;
  text-align: left;
}
.partner-list .partner-item .partner-img {
  display: inline-block;
}
.partner-list .partner-item h3 {
  font-size: 24px;
  font-weight: 800;
  line-height: 35px;
  letter-spacing: 0px;
  color: #021D45;
}
.partner-list .next {
  position: absolute;
  top: 60px;
  right: 0px;
  display: block;
}

.checkbox {
  text-align: left;
  position: relative;
  margin-bottom: 20px;
  padding-left: 40px;
}
.checkbox .mark {
  height: 25px;
  width: 25px;
  background: #FFFFFF 0% 0% no-repeat padding-box;
  border-radius: 5px;
  border: 1px solid #707070;
  position: absolute;
  top: 5px;
  left: 0;
}
@media only screen and (max-width: 1680px) {
  .checkbox .mark {
    top: 0;
  }
}
@media only screen and (max-width: 1024px) {
  .checkbox .mark {
    height: 20px;
    width: 20px;
    top: 4px;
  }
}
.checkbox label {
  margin-bottom: 60px;
  font-size: 20px;
  line-height: 45px;
  font-weight: 400;
  letter-spacing: 0px;
  color: #171717;
  padding-left: 45px;
}
@media only screen and (max-width: 1680px) {
  .checkbox label {
    font-size: 15px;
    line-height: 20px;
  }
}
@media only screen and (max-width: 1024px) {
  .checkbox label {
    font-size: 12px;
    line-height: 15px;
    margin-top: 8px;
    margin-bottom: 5px;
    padding-left: 38px;
    display: inline-block;
    font-size: 12px;
  }
}

.ffa-desc {
  position: relative;
}
.ffa-desc h2 span {
  font-weight: 400;
}

.black-line {
  display: inline-block;
  width: 300px;
  height: 2px;
  background-color: #021D45;
  position: absolute;
  top: 25px;
  right: -80px;
}
@media only screen and (max-width: 1280px) {
  .black-line {
    width: 210px;
  }
}

.dropdown-list {
  min-width: 185px;
  margin: 0 auto;
  margin-bottom: 40px;
  position: relative;
  height: 50px;
  background-color: #021D45;
  border-radius: 8px 8px;
  cursor: pointer;
}
.dropdown-list .item {
  font-size: 18px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0.18px;
  color: #fff;
  text-transform: capitalize;
  text-decoration: none;
  cursor: pointer;
}
.dropdown-list .item .down-arrow {
  position: absolute;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 9px solid #fff;
  top: 20px;
  right: 20px;
}
@media only screen and (min-width: 1024px) {
  .dropdown-list .item:hover {
    transform: scale(1.02);
    transition: all 0.3s;
  }
}
@media only screen and (max-width: 1024px) {
  .dropdown-list .item:active {
    transform: scale(1.02);
    transition: all 0.3s;
  }
}
.dropdown-list ul {
  display: none;
}
.dropdown-list ul li {
  font-size: 18px;
  font-weight: 900;
  line-height: 30px;
  letter-spacing: 0px;
  color: #171717;
  text-transform: capitalize;
  text-decoration: none;
}
.dropdown-list ul.show {
  display: block;
}

@media only screen and (max-width: 1024px) {
  .ff-application-section {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .ff-application-section .black-line {
    display: none;
  }
  .ff-application-section .ffa-desc {
    text-align: left;
    margin-bottom: 40px;
  }
  .ff-application-section .ffa-desc p.mb-60 {
    margin-bottom: 30px;
  }
  .ff-application-section .barcode-app {
    flex-direction: column;
  }
  .ff-application-section .barcode-app .qr-code {
    display: none;
    margin: 0 auto;
    margin-right: 20px;
  }
  .ff-application-section .barcode-app a {
    text-align: left;
  }
  .ff-application-section .barcode-app .d-flex {
    justify-content: center;
  }
}

.program-suite-sec {
  text-align: left;
}
.program-suite-sec h2, .program-suite-sec h1 {
  text-align: left;
  margin-bottom: 15px;
  font-size: 24px;
  line-height: 32px;
  font-weight: 700;
  color: #171717;
  letter-spacing: 0px;
}
.program-suite-sec p {
  font-size: 15px;
  color: #171717;
  margin-bottom: 28px;
}
.program-suite-sec p.mb-40 {
  margin-bottom: 40px;
}
@media only screen and (max-width: 1024px) {
  .program-suite-sec p {
    font-size: 15px;
  }
}
.program-suite-sec a {
  color: #021D45;
  text-decoration: underline;
  text-align: left;
  display: block;
  font-weight: 600;
}
.program-suite-sec ul, .program-suite-sec li {
  font-size: 14px;
  color: #171717;
  list-style: disc;
  margin-left: 10px;
}
@media only screen and (max-width: 1024px) {
  .program-suite-sec ul, .program-suite-sec li {
    font-size: 15px;
  }
}

.owl-theme.carousel-arrow .owl-nav .owl-prev span, .owl-theme.carousel-arrow .owl-nav .owl-next span, .owl-carousel.carousel-arrow .owl-nav .owl-prev span, .owl-carousel.carousel-arrow .owl-nav .owl-next span {
  display: none;
}
@media only screen and (min-width: 1024px) {
  .owl-theme.carousel-arrow .owl-nav .owl-prev:hover, .owl-theme.carousel-arrow .owl-nav .owl-next:hover, .owl-carousel.carousel-arrow .owl-nav .owl-prev:hover, .owl-carousel.carousel-arrow .owl-nav .owl-next:hover {
    transform: scale(1.1);
    transition: all 0.3s;
  }
}
@media only screen and (max-width: 1024px) {
  .owl-theme.carousel-arrow .owl-nav .owl-prev:active, .owl-theme.carousel-arrow .owl-nav .owl-next:active, .owl-carousel.carousel-arrow .owl-nav .owl-prev:active, .owl-carousel.carousel-arrow .owl-nav .owl-next:active {
    transform: scale(1.1);
    transition: all 0.3s;
  }
}
.owl-theme.carousel-arrow .owl-nav button.owl-prev, .owl-carousel.carousel-arrow .owl-nav button.owl-prev {
  background: url("https://site-assets.fitterfly.com/site-assets/images/site-1/left-arrow.svg") no-repeat center;
  display: block;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 1px solid #707070;
  margin-right: 20px;
}
@media only screen and (max-width: 1680px) {
  .owl-theme.carousel-arrow .owl-nav button.owl-prev, .owl-carousel.carousel-arrow .owl-nav button.owl-prev {
    width: 60px;
    height: 60px;
    margin-right: 15px;
  }
}
@media only screen and (max-width: 1024px) {
  .owl-theme.carousel-arrow .owl-nav button.owl-prev, .owl-carousel.carousel-arrow .owl-nav button.owl-prev {
    width: 60px;
    height: 60px;
    background-size: 30px;
    margin-right: 13px;
  }
}
.owl-theme.carousel-arrow .owl-nav button.owl-next, .owl-carousel.carousel-arrow .owl-nav button.owl-next {
  background: url("https://site-assets.fitterfly.com/site-assets/images/site-1/right-arrow.svg") no-repeat center;
  display: block;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 1px solid #707070;
  margin-left: 20px;
}
@media only screen and (max-width: 1680px) {
  .owl-theme.carousel-arrow .owl-nav button.owl-next, .owl-carousel.carousel-arrow .owl-nav button.owl-next {
    width: 60px;
    height: 60px;
    margin-left: 15px;
  }
}
@media only screen and (max-width: 1024px) {
  .owl-theme.carousel-arrow .owl-nav button.owl-next, .owl-carousel.carousel-arrow .owl-nav button.owl-next {
    width: 60px;
    height: 60px;
    background-size: 30px;
    margin-right: 13px;
  }
}

.mapouter {
  position: relative;
  text-align: right;
  width: 100%;
  height: 275px;
  margin-top: 50px;
}
@media only screen and (max-width: 1280px) {
  .mapouter {
    height: 250px;
  }
}
@media only screen and (max-width: 1024px) {
  .mapouter {
    height: 250px;
    margin-top: 30px;
    margin-bottom: 30px;
  }
}

.gmap_canvas {
  overflow: hidden;
  background: none !important;
  width: 100%;
  height: 275px;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}
@media only screen and (max-width: 1280px) {
  .gmap_canvas {
    height: 250px;
  }
}
@media only screen and (max-width: 1024px) {
  .gmap_canvas {
    height: 250px;
  }
}

.gmap_iframe {
  height: 275px !important;
}
@media only screen and (max-width: 1280px) {
  .gmap_iframe {
    height: 250px !important;
  }
}
@media only screen and (max-width: 1024px) {
  .gmap_iframe {
    height: 250px !important;
  }
}

.sticky-btn {
  position: fixed;
  bottom: 0px;
  background: #fff;
  width: 100%;
  z-index: 9;
}
.sticky-btn .two-col-list {
  width: 100%;
}
.sticky-btn .two-col-list li {
  width: 50%;
  height: 60px;
  border-left: 1px solid #57473D;
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
  letter-spacing: 0px;
  color: #fff;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1019607843);
}
@media only screen and (max-width: 1024px) {
  .sticky-btn .two-col-list li {
    box-shadow: 2px 0px 20px rgba(0, 0, 0, 0.5019607843);
  }
  .sticky-btn .two-col-list li a img {
    width: 150px;
  }
}
.sticky-btn .two-col-list li {
  cursor: pointer;
}
@media only screen and (min-width: 1024px) {
  .sticky-btn .two-col-list li:hover {
    transform: scale(1.02);
    transition: all 0.3s;
  }
}
@media only screen and (max-width: 1024px) {
  .sticky-btn .two-col-list li:active {
    transform: scale(1.02);
    transition: all 0.3s;
  }
}
.sticky-btn .two-col-list li:first-child {
  border-left: none;
  display: none;
  background: #021D45;
  background: #305FA5;
}
.sticky-btn .two-col-list li:last-child {
  border: none;
  width: 100%;
}

.buy-plan-fixed-btn {
  color: #fff;
  text-decoration: none;
  background-color: #6c8d98;
  padding: 20px 38px;
  position: fixed;
  z-index: 999999;
  display: block;
  right: -40px;
  top: 50%;
  border-radius: 7px;
  transform: rotate(270deg);
}

.bullet-list ul li {
  font-size: 20px;
  line-height: 35px;
  letter-spacing: 0.32px;
  color: #171717;
  text-align: left;
  position: relative;
  padding-left: 20px;
  margin-right: 33px;
}
.bullet-list ul li:last-child {
  margin-right: 0px;
}
@media only screen and (max-width: 1680px) {
  .bullet-list ul li {
    font-size: 16px;
    line-height: 26px;
    letter-spacing: 0px;
  }
}
@media only screen and (max-width: 1024px) {
  .bullet-list ul li {
    font-size: 16px;
    line-height: 30px;
    padding-left: 12px;
  }
}
.bullet-list ul li:before {
  content: "";
  position: absolute;
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 10px;
  background: #021D45;
  top: 9px;
  left: 5px;
}
@media only screen and (max-width: 1680px) {
  .bullet-list ul li:before {
    width: 8px;
    height: 8px;
  }
}
@media only screen and (max-width: 1024px) {
  .bullet-list ul li:before {
    width: 6px;
    height: 6px;
    top: 9px;
    left: 0px;
  }
}
.bullet-list.inline-list ul {
  display: flex;
}

@media only screen and (max-width: 768px) {
  .upload-block {
    margin-bottom: 20px;
  }
}

.file-format {
  max-width: 533px;
  font-size: 20px;
  line-height: 30px;
  color: #171717;
  margin-top: 5px;
}
@media only screen and (max-width: 1680px) {
  .file-format {
    max-width: 400px;
    font-size: 16px;
    line-height: 24px;
  }
}
@media only screen and (max-width: 1024px) {
  .file-format {
    width: auto;
  }
}

.contact-us-sec {
  background: #f9fbff;
}
@media only screen and (max-width: 1024px) {
  .contact-us-sec {
    padding-top: 40px;
  }
}
.contact-us-sec .Upload-Resume-box {
  border: 1px dashed #171717;
  height: 75px;
  max-width: 533px;
  background-color: #FFFFFF;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  cursor: pointer;
}
@media only screen and (max-width: 1680px) {
  .contact-us-sec .Upload-Resume-box {
    max-width: 400px;
    height: 65px;
  }
}
@media only screen and (max-width: 1024px) {
  .contact-us-sec .Upload-Resume-box {
    width: auto;
  }
}
.contact-us-sec .Upload-Resume-box .image {
  width: auto !important;
  height: auto !important;
  display: flex;
}
.contact-us-sec .Upload-Resume-box .image a {
  color: #021D45;
  margin-left: 15px;
}
.contact-us-sec .Upload-Resume-box .underline {
  position: absolute;
  opacity: 0;
}
.contact-us-sec .Upload-Resume-box span {
  color: #021D45;
  padding-left: 10px;
}
.contact-us-sec .Upload-Resume-box span.underline {
  text-decoration: underline;
  color: #021D45;
}

@media only screen and (max-width: 768px) {
  .carousel-block-wrap {
    padding: 20px 0 0;
    overflow-x: hidden;
  }
  .carousel-block-wrap .card-carsouel {
    padding: 20px 0px 20px 40px;
    display: flex;
    flex-wrap: nowrap;
    overflow: scroll;
    overflow-x: auto;
    padding-left: 7%;
  }
}
@media only screen and (max-width: 1024px) {
  .offer-section .carousel-block-wrap .card-carsouel {
    display: block;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 0px;
  }
}

.center-btn {
  flex-direction: column-reverse;
}

@media only screen and (max-width: 1024px) {
  .entrprise-section .section-head {
    text-align: left;
  }
}
.entrprise-section .carousel-block-wrap {
  padding-top: 0px;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

.comp-logos {
  min-height: 140px;
}
@media only screen and (max-width: 1680px) {
  .comp-logos {
    min-height: 90px;
  }
}
@media only screen and (max-width: 1024px) {
  .comp-logos {
    min-width: 140px;
    min-height: 73px;
  }
}
.comp-logos img {
  height: auto;
  width: auto;
}

.thank-you {
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 1024px) {
  .thank-you.mar-t-140 {
    margin-top: 90px;
  }
}

.thank-you h2 {
  font-size: 54px;
  line-height: normal;
  color: #171717;
  letter-spacing: 1.09px;
}
@media only screen and (max-width: 1024px) {
  .thank-you h2 {
    font-size: 44px;
  }
}

.thank-you p {
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
}
@media only screen and (max-width: 1024px) {
  .thank-you .btn-pink {
    padding: 0px 20px;
  }
}

.s-hidden {
  visibility: hidden;
  position: absolute;
  z-index: -1;
}

.styledSelect {
  cursor: pointer;
  width: 100%;
  outline: none;
  border: none;
  border-bottom: 1px solid #171717;
  background-color: rgba(0, 0, 0, 0);
  padding: 12px 0px;
  font-weight: 400;
  letter-spacing: 0px;
  color: #666;
  position: relative;
  text-align: left;
  background: url(https://site-assets.fitterfly.com/site-assets/images/site-1/down-icon.svg) no-repeat top 24px right 0px;
}
@media only screen and (max-width: 1680px) {
  .styledSelect {
    background: url(https://site-assets.fitterfly.com/site-assets/images/site-1/down-icon.svg) no-repeat top 14px right 0px;
    padding: 8px 15px 8px 0px;
  }
}

.options {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  z-index: 999;
  margin: 0 0;
  padding: 0 0;
  border-radius: 4px;
  list-style: none;
  background-color: #fff;
  box-shadow: 0px 0px 20px rgba(2, 29, 69, 0.1215686275);
  height: 200px;
  overflow: scroll;
}

.options li {
  cursor: pointer;
  padding: 0 6px;
  margin: 0 0;
  padding: 15px;
  text-align: left;
  border-bottom: 1px solid rgba(2, 29, 69, 0.1215686275);
}
.options li:last-child {
  border: none;
}
.cta-card-section {
  background-color: #EBF7FD;
}
.cta-card-section .cta-card {
  border-radius: 12px;
  padding-top: 80px;
  height: 680px;
  overflow: hidden;
}
@media screen and (max-width: 1680px) {
  .cta-card-section .cta-card {
    height: 640px;
    padding-top: 50px;
  }
}
@media only screen and (max-width: 1024px) {
  .cta-card-section .cta-card {
    margin-bottom: 20px;
    padding-top: 40px;
    height: 560px;
  }
}
@media only screen and (max-width: 600px) {
  .cta-card-section .cta-card {
    height: 460px;
  }
}
.cta-card-section .cta-card .cta-card-info {
  padding: 0px 70px;
  min-height: 260px;
}
@media screen and (max-width: 1680px) {
  .cta-card-section .cta-card .cta-card-info {
    padding: 0px 50px;
  }
}
@media only screen and (max-width: 1024px) {
  .cta-card-section .cta-card .cta-card-info {
    padding: 0px 40px;
    min-height: 220px;
  }
}
@media only screen and (max-width: 320px) {
  .cta-card-section .cta-card .cta-card-info {
    padding: 0 20px;
  }
}
.cta-card-section .cta-card .cta-card-info p {
  color: #fff;
  font-size: 21px;
  line-height: 28px;
}
@media screen and (max-width: 1680px) {
  .cta-card-section .cta-card .cta-card-info p {
    font-size: 18px;
    line-height: 28px;
  }
}
@media only screen and (max-width: 1024px) {
  .cta-card-section .cta-card .cta-card-info p {
    font-size: 14px;
    line-height: 20px;
    padding-bottom: 5px;
  }
}
.cta-card-section .cta-card .cta-card-info h2 {
  color: #fff;
  font-size: 48px;
  line-height: 60px;
}
@media screen and (max-width: 1680px) {
  .cta-card-section .cta-card .cta-card-info h2 {
    font-size: 35px;
    line-height: 46px;
  }
}
@media only screen and (max-width: 1024px) {
  .cta-card-section .cta-card .cta-card-info h2 {
    font-size: 28px;
    line-height: 34px;
    padding-bottom: 28px;
  }
}
.cta-card-section .cta-card .cta-card-info .bl-btn {
  background-color: #FFFFFF;
  color: #0767B1;
}
.cta-card-section .cta-card .cta-card-info .btn, .cta-card-section .cta-card .cta-card-info .black-btn, .cta-card-section .cta-card .cta-card-info .white-btn, .cta-card-section .cta-card .cta-card-info .teal-btn, .cta-card-section .cta-card .cta-card-info .bdr-btn {
  min-width: 180px;
}
@media only screen and (max-width: 1024px) {
  .cta-card-section .cta-card .cta-card-info .btn, .cta-card-section .cta-card .cta-card-info .black-btn, .cta-card-section .cta-card .cta-card-info .white-btn, .cta-card-section .cta-card .cta-card-info .teal-btn, .cta-card-section .cta-card .cta-card-info .bdr-btn {
    min-width: 150px;
  }
}
.cta-card-section .cta-card .cta-card-info .greater-logo {
  margin-left: 20px;
  width: 8px;
}
@media only screen and (max-width: 1024px) {
  .cta-card-section .cta-card .cta-card-info .greater-logo {
    margin-left: 15px;
  }
}
.cta-card-section .cta-card.pink {
  background: url("https://site-assets.fitterfly.com/site-assets/images/site-1/shutterstock.webp") no-repeat center bottom #FBEFF5;
  background-size: contain;
}
.cta-card-section .cta-card.pink .cta-card-info p {
  color: #28353D;
  padding-bottom: 30px;
}
.cta-card-section .cta-card.pink .cta-card-info h2 {
  color: #0B67B2;
  padding-bottom: 10px;
}
.cta-card-section .cta-card.pink .cta-card-info h2 span {
  color: #DB0E7E;
}
.cta-card-section .cta-card.pink .cta-card-info .bl-btn {
  background-color: #DB0E7E;
  color: #FFFFFF;
}
.cta-card-section .cta-card.pink .cta-card-info .bl-btn:hover {
  background-color: #db0e7e;
  color: #fff;
}
.cta-card-section .cta-card.pink .cta-card-info a .wp-logo {
  width: 20px;
  margin-left: 10px;
}
.cta-card-section .cta-card.blue {
  background: transparent linear-gradient(180deg, #3D7097 0%, #02345A 100%) 0% 0% no-repeat padding-box;
}
.cta-card-section .cta-card.blue .cta-card-image-one {
  position: relative;
  width: 340px;
  bottom: 40px;
  margin: auto;
  text-align: center;
}
@media only screen and (max-width: 320px) {
  .cta-card-section .cta-card.blue .cta-card-image-one {
    width: 312px;
  }
}

.people-review-sec .section-head h2 span {
  color: #0767B1;
}
.people-review-sec .people-review-card-pad {
  padding: 50px 20px 30px 30px;
  border: 1px solid #C3C3C3;
  border-radius: 12px;
  opacity: 1;
  min-height: 398px;
  display: flex;
  width: calc(100% - 2px);
  margin: auto;
}
@media screen and (max-width: 1680px) {
  .people-review-sec .people-review-card-pad {
    min-height: 375px;
  }
}
@media only screen and (max-width: 1024px) {
  .people-review-sec .people-review-card-pad {
    display: block;
    margin-bottom: 20px;
    padding: 30px 30px;
  }
  .people-review-sec .people-review-card-pad.mob-flex-reverse {
    display: flex;
    flex-direction: column-reverse;
    min-height: 500px;
    padding: 20px 20px;
  }
}
.people-review-sec .people-review-card-pad .people-review-card-info {
  width: 70%;
  text-align: left;
}
@media only screen and (max-width: 1024px) {
  .people-review-sec .people-review-card-pad .people-review-card-info {
    width: 100%;
  }
}
.people-review-sec .people-review-card-pad .people-review-card-info h4 {
  position: relative;
  min-height: 170px;
  font-size: 35px;
  line-height: 45px;
  padding: 15px 0;
}
@media screen and (max-width: 1680px) {
  .people-review-sec .people-review-card-pad .people-review-card-info h4 {
    font-size: 22px;
    line-height: 28px;
    text-align: left;
  }
}
@media only screen and (max-width: 1024px) {
  .people-review-sec .people-review-card-pad .people-review-card-info h4 {
    min-height: 100px;
    padding: 0;
    padding-bottom: 10px;
    font-size: 20px;
  }
}
@media only screen and (max-width: 360px) {
  .people-review-sec .people-review-card-pad .people-review-card-info h4 {
    font-size: 17px;
  }
}
.people-review-sec .people-review-card-pad .people-review-card-info .reviewer-info {
  padding-bottom: 10px;
}
@media screen and (min-width: 1280px) {
  .people-review-sec .people-review-card-pad .people-review-card-info .reviewer-info {
    position: relative;
    height: 56px;
  }
}
.people-review-sec .people-review-card-pad .people-review-card-info .reviewer-info .reviewer-name {
  font-size: 18px;
  line-height: 22px;
  color: #45576D;
  display: block;
}
.people-review-sec .people-review-card-pad .people-review-card-info .reviewer-info .reviewer-age {
  font-size: 14px;
  line-height: 26px;
  color: #45576D;
}
@media screen and (max-width: 1680px) {
  .people-review-sec .people-review-card-pad .people-review-card-info .reviewer-info .reviewer-age {
    font-size: 12px;
    line-height: 22px;
  }
}
@media screen and (min-width: 1280px) {
  .people-review-sec .people-review-card-pad .people-review-card-info .reviewer-info .reviewer-age {
    position: absolute;
  }
}
.people-review-sec .people-review-card-pad .people-review-card-info .btn, .people-review-sec .people-review-card-pad .people-review-card-info .black-btn, .people-review-sec .people-review-card-pad .people-review-card-info .white-btn, .people-review-sec .people-review-card-pad .people-review-card-info .teal-btn, .people-review-sec .people-review-card-pad .people-review-card-info .bdr-btn {
  min-width: 188px;
  height: 50px;
}
@media only screen and (max-width: 1024px) {
  .people-review-sec .people-review-card-pad .people-review-card-info .btn, .people-review-sec .people-review-card-pad .people-review-card-info .black-btn, .people-review-sec .people-review-card-pad .people-review-card-info .white-btn, .people-review-sec .people-review-card-pad .people-review-card-info .teal-btn, .people-review-sec .people-review-card-pad .people-review-card-info .bdr-btn {
    height: 35px;
    margin: 0;
    padding: 0;
    font-size: 9px;
    min-width: 125px;
  }
}
.people-review-sec .people-review-card-pad .people-review-card-info a .play-logo {
  width: 20px;
  margin-left: 10px;
}
@media only screen and (max-width: 1024px) {
  .people-review-sec .people-review-card-pad .people-review-card-image {
    padding-bottom: 20px;
    min-height: 226px;
  }
}
@media only screen and (max-width: 600px) {
  .people-review-sec .people-review-card-pad .people-review-card-image {
    min-height: 295px;
  }
}
.people-review-sec .bg-quotes::before {
  content: "";
  width: 120px;
  height: 120px;
  display: block;
  position: absolute;
  background: url(https://site-assets.fitterfly.com/site-assets/images/site-1/quotes.svg) no-repeat center;
  top: -50px;
  z-index: -1;
  left: -26px;
  background-size: 80px 80px;
}
.people-review-sec .reveiw-nextprev {
  width: 50px;
  margin: auto;
  cursor: pointer;
  opacity: 0.4;
}
.people-review-sec .reveiw-nextprev:hover {
  opacity: 1;
}
@media only screen and (max-width: 1024px) {
  .people-review-sec .next-prev-btn .scroll-prev, .people-review-sec .next-prev-btn .scroll-next {
    width: 25px;
    height: 25px;
    margin: 0px 16px;
    opacity: 0.5;
  }
  .people-review-sec .next-prev-btn .scroll-prev:focus, .people-review-sec .next-prev-btn .scroll-prev:hover, .people-review-sec .next-prev-btn .scroll-next:focus, .people-review-sec .next-prev-btn .scroll-next:hover {
    opacity: 1;
  }
}

@media only screen and (max-width: 1024px) {
  .result-card-sec .col-6:nth-child(odd) {
    padding-right: 0;
  }
  .result-card-sec .col-6:nth-child(even) {
    padding-left: 0;
  }
}
@media only screen and (max-width: 1024px) {
  .result-card-sec .result-card-info {
    margin: 3px 1px;
    display: flex;
    justify-content: flex-end;
  }
  .result-card-sec .result-card-info.rci {
    justify-content: flex-start;
  }
}
@media only screen and (max-width: 360px) {
  .result-card-sec .result-card-info {
    margin: 3px 3px;
  }
}
.result-card-sec .result-card-info .result-card {
  content: "";
  width: 100%;
  height: 577px;
  background-size: cover;
  overflow: hidden;
  border-radius: 12px;
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
}
@media only screen and (max-width: 1680px) {
  .result-card-sec .result-card-info .result-card {
    height: 400px;
  }
}
.result-card-sec .result-card-info .result-card-bg-1 {
  background: url(https://site-assets.fitterfly.com/site-assets/images/site-1/result-card-one.webp) no-repeat;
  background-size: cover;
}
@media only screen and (max-width: 1024px) {
  .result-card-sec .result-card-info .result-card-bg-1 {
    background: url(https://site-assets.fitterfly.com/site-assets/images/site-1/result-card-mob-one.webp) no-repeat;
    height: 237px;
    width: 168px;
  }
}
.result-card-sec .result-card-info .result-card-bg-2 {
  background: url(https://site-assets.fitterfly.com/site-assets/images/site-1/result-card-two.webp) no-repeat;
  background-size: cover;
}
@media only screen and (max-width: 1024px) {
  .result-card-sec .result-card-info .result-card-bg-2 {
    background: url(https://site-assets.fitterfly.com/site-assets/images/site-1/result-card-mob-four.webp) no-repeat;
    height: 237px;
    width: 168px;
  }
}
.result-card-sec .result-card-info .result-card-bg-3 {
  background: url(https://site-assets.fitterfly.com/site-assets/images/site-1/result-card-three.webp) no-repeat;
  background-size: cover;
}
@media only screen and (max-width: 1024px) {
  .result-card-sec .result-card-info .result-card-bg-3 {
    background: url(https://site-assets.fitterfly.com/site-assets/images/site-1/result-card-mob-two.webp) no-repeat;
    height: 237px;
    width: 168px;
  }
}
.result-card-sec .result-card-info .result-card-bg-4 {
  background: url(https://site-assets.fitterfly.com/site-assets/images/site-1/result-card-four.webp) no-repeat;
  background-size: cover;
}
@media only screen and (max-width: 1024px) {
  .result-card-sec .result-card-info .result-card-bg-4 {
    background: url(https://site-assets.fitterfly.com/site-assets/images/site-1/result-card-mob-three.webp) no-repeat;
    height: 237px;
    width: 168px;
  }
}
.result-card-sec .result-info {
  text-align: left;
  padding: 0px 0px 20px 20px;
  min-height: 125px;
}
@media only screen and (max-width: 1024px) {
  .result-card-sec .result-info {
    padding: 0px 10px 20px 10px;
    min-height: auto;
  }
}
.result-card-sec .result-info p {
  color: #fff;
  font-size: 18px;
  line-height: 24px;
  font-weight: 500;
}
@media only screen and (max-width: 1024px) {
  .result-card-sec .result-info p {
    font-size: 13px;
    line-height: 18px;
  }
}
.result-card-sec .result-info strong {
  color: #fff;
  font-size: 35px;
  line-height: 45px;
  display: block;
  margin-bottom: 5px;
}
@media only screen and (max-width: 1024px) {
  .result-card-sec .result-info strong {
    font-size: 20px;
    line-height: 24px;
  }
}

@media only screen and (max-width: 1024px) {
  .mobile-view-cards {
    justify-content: center;
  }
}

.google-review-block .card, .google-review-block .prof-card, .google-review-block .cs-main-box, .google-review-block .offer-section .feature-main, .offer-section .google-review-block .feature-main, .google-review-block .testimonial-section .testimonial-card, .testimonial-section .google-review-block .testimonial-card {
  background: #FFFFFF 0% 0% no-repeat padding-box;
  box-shadow: 0px 0px 20px rgba(2, 29, 69, 0.1215686275);
  border-radius: 10px;
  margin: 18px 12px;
}
.google-review-block .card .card-pad, .google-review-block .prof-card .card-pad, .google-review-block .cs-main-box .card-pad, .google-review-block .offer-section .feature-main .card-pad, .offer-section .google-review-block .feature-main .card-pad, .google-review-block .testimonial-section .testimonial-card .card-pad, .testimonial-section .google-review-block .testimonial-card .card-pad {
  padding: 40px 20px 25px 30px;
}
@media only screen and (max-width: 1280px) {
  .google-review-block .card .card-pad, .google-review-block .prof-card .card-pad, .google-review-block .cs-main-box .card-pad, .google-review-block .offer-section .feature-main .card-pad, .offer-section .google-review-block .feature-main .card-pad, .google-review-block .testimonial-section .testimonial-card .card-pad, .testimonial-section .google-review-block .testimonial-card .card-pad {
    padding: 20px 10px 20px 20px;
  }
}
.google-review-block .google-review-info .reviewer-comment {
  font-style: italic;
  margin-bottom: 30px;
  font-weight: 300;
  max-height: 196px;
  min-height: 196px;
}
@media only screen and (max-width: 1680px) {
  .google-review-block .google-review-info .reviewer-comment {
    margin-bottom: 20px;
    min-height: 170px;
  }
}
@media only screen and (max-width: 1280px) {
  .google-review-block .google-review-info .reviewer-comment {
    min-height: 170px;
  }
}
@media only screen and (max-width: 360px) {
  .google-review-block .google-review-info .reviewer-comment {
    max-height: 210px;
  }
}
.google-review-block .google-review-info .reviewer-comment .text-link {
  color: #0B5BF4;
  text-decoration: underline;
}
.google-review-block .google-review-info .reviewer-profile {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}
@media only screen and (max-width: 1280px) {
  .google-review-block .google-review-info .reviewer-profile {
    margin-bottom: 16px;
  }
}
.google-review-block .google-review-info .reviewer-profile .reviewer-img {
  width: 70px;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  overflow: hidden;
  margin-right: 15px;
  flex: none;
}
@media only screen and (max-width: 1680px) {
  .google-review-block .google-review-info .reviewer-profile .reviewer-img {
    width: 50px;
    height: 50px;
    border-radius: 30px;
    margin-right: 12px;
  }
}
.google-review-block .google-review-info .reviewer-profile .reviewer-detail {
  flex: 1;
  text-align: left;
}
.google-review-block .google-review-info .reviewer-profile .reviewer-detail .reviewer-name {
  font-size: 24px;
  line-height: 38px;
  font-weight: 600;
  margin-bottom: 5px;
  letter-spacing: 0.38px;
  color: #171717;
  text-transform: capitalize;
}
@media only screen and (max-width: 1680px) {
  .google-review-block .google-review-info .reviewer-profile .reviewer-detail .reviewer-name {
    font-size: 18px;
    line-height: 21px;
  }
}
.google-review-block .google-review-info .reviewer-profile .reviewer-detail .post-duration {
  font-size: 15px;
  line-height: 30px;
  font-weight: 400;
  letter-spacing: 0.27px;
  display: block;
}
@media only screen and (max-width: 1680px) {
  .google-review-block .google-review-info .reviewer-profile .reviewer-detail .post-duration {
    font-size: 13px;
    line-height: 20px;
  }
}
.google-review-block .google-review-info .reviewer-rating {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.google-review-block .google-review-info .reviewer-rating .google-img {
  width: 100px;
  height: 36px;
  background: url("https://site-assets.fitterfly.com/site-assets/images/google-2015.svg") no-repeat center left;
}
.google-review-block .google-review-info .reviewer-rating .star-rating {
  width: 120px;
  height: 20px;
  background: url("https://site-assets.fitterfly.com/site-assets/images/five-star.svg") no-repeat center right;
}
.google-review-block .google-review-info .reviewer-rating .star-rating.five-star {
  background: url("https://site-assets.fitterfly.com/site-assets/images/five-star.svg") no-repeat center right;
}
.google-review-block .google-review-info .reviewer-rating .star-rating.four-star {
  background: url("https://site-assets.fitterfly.com/site-assets/images/four-star.svg") no-repeat center right;
}
.google-review-block .google-review-info .reviewer-rating .feedback .star {
  width: 20px;
  height: 20px;
  background-size: 20px;
}
.google-review-block .google-review-info .reviewer-rating .feedback .star:last-child {
  margin-right: 0;
}
.google-review-block .owl-carousel .owl-nav button.owl-prev {
  width: 50px;
  height: 50px;
  background: url("https://site-assets.fitterfly.com/site-assets/images/site-1/left-arrow.svg") no-repeat;
  background-size: 50px;
  margin-right: 10px;
}
.google-review-block .owl-carousel .owl-nav button.owl-prev span {
  opacity: 0;
  z-index: -1;
}
.google-review-block .owl-carousel .owl-nav button.owl-next {
  width: 50px;
  height: 50px;
  background: url("https://site-assets.fitterfly.com/site-assets/images/site-1/right-arrow.svg") no-repeat;
  background-size: 50px;
  margin-left: 10px;
}
.google-review-block .owl-carousel .owl-nav button.owl-next span {
  opacity: 0;
  z-index: -1;
}

.tc-link {
  text-align: left;
  margin-bottom: 15px;
}
.tc-link label {
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0px;
  color: #171717;
  text-align: left;
}
.tc-link label .link {
  color: #171717;
  text-decoration: underline;
}

.home-page-banner .banner-sec:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: url("https://site-assets.fitterfly.com/site-assets/images/banner-band.webp") no-repeat center top;
  background-size: contain;
  left: 0;
}
@media only screen and (max-width: 1024px) {
  .home-page-banner .banner-sec:before {
    background: url("https://site-assets.fitterfly.com/site-assets/images/mob-banner-band.webp") no-repeat center top;
    background-size: contain;
  }
}

.banner {
  display: flex;
  align-items: center;
  height: 100%;
  padding-bottom: 110px;
}
@media only screen and (max-width: 1400px) {
  .banner {
    padding-bottom: 100px;
  }
}
@media only screen and (max-width: 1024px) {
  .banner {
    margin-left: 6px;
    margin-bottom: 80px;
  }
}
@media only screen and (max-width: 992px) {
  .banner {
    padding-bottom: 0px;
  }
}

.banner-sec {
  background-repeat: no-repeat;
  background-size: cover;
  height: 900px;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  position: relative;
}
@media screen and (max-width: 1680px) {
  .banner-sec {
    height: 760px;
  }
}
@media screen and (max-width: 1400px) {
  .banner-sec {
    height: 700px;
  }
}
@media only screen and (max-width: 1024px) {
  .banner-sec {
    height: 640px;
  }
}
@media only screen and (max-width: 992px) {
  .banner-sec {
    height: 800px;
  }
}
.banner-sec.banner-1 {
  background-image: url("https://site-assets.fitterfly.com/site-assets/images/banner-bg-img1.webp");
}
@media only screen and (max-width: 768px) {
  .banner-sec.banner-1 {
    background-image: url("https://site-assets.fitterfly.com/site-assets/images/mob-banner-bg-1.webp");
    background-position: bottom;
    background-size: cover;
    height: 770px;
  }
  .banner-sec.banner-1 .banner {
    margin-bottom: 60px;
  }
}
@media only screen and (max-width: 1024px) {
  .banner-sec.banner-1 .banner-img {
    margin-bottom: -40px;
  }
  .banner-sec.banner-1 .banner-img img {
    position: relative;
    width: fit-content;
    margin: auto;
  }
}
@media only screen and (max-width: 992px) {
  .banner-sec.banner-1 .banner-img {
    margin-bottom: 0px;
  }
}
.banner-sec.banner-2 {
  background-image: url("https://site-assets.fitterfly.com/site-assets/images/banner-bg-img5.webp");
}
@media only screen and (max-width: 768px) {
  .banner-sec.banner-2 {
    background-image: url("https://site-assets.fitterfly.com/site-assets/images/mob-banner-bg-5.webp");
    background-position: bottom;
    background-size: cover;
    height: 770px;
  }
  .banner-sec.banner-2 .banner {
    margin-bottom: 60px;
  }
}
.banner-sec.banner-2 .banner-img img {
  position: relative;
  top: 5px;
  width: 550px;
}
@media screen and (max-width: 1680px) {
  .banner-sec.banner-2 .banner-img img {
    top: 5px;
  }
}
@media only screen and (max-width: 1024px) {
  .banner-sec.banner-2 .banner-img img {
    top: 10px;
    width: fit-content;
    margin: auto;
  }
}
.banner-sec.banner-3 {
  background-image: url("https://site-assets.fitterfly.com/site-assets/images/banner-bg-img2.webp");
}
@media only screen and (max-width: 992px) {
  .banner-sec.banner-3 .banner {
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 768px) {
  .banner-sec.banner-3 {
    background-image: url("https://site-assets.fitterfly.com/site-assets/images/mob-banner-bg-2.webp");
    background-position: bottom;
    background-size: cover;
    height: 770px;
  }
  .banner-sec.banner-3 .banner {
    padding-bottom: 15px;
    margin-bottom: 0px;
  }
}
.banner-sec.banner-3 .banner-img img {
  width: 600px;
}
@media only screen and (max-width: 1024px) {
  .banner-sec.banner-3 .banner-img img {
    width: fit-content;
    margin: auto;
    margin-bottom: -15px;
  }
}
@media only screen and (max-width: 992px) {
  .banner-sec.banner-3 .banner-img img {
    margin-bottom: 0px;
  }
}
.banner-sec.banner-4 {
  background-image: url("https://site-assets.fitterfly.com/site-assets/images/banner-bg-img3.webp");
}
@media only screen and (max-width: 768px) {
  .banner-sec.banner-4 {
    background-image: url("https://site-assets.fitterfly.com/site-assets/images/mob-banner-bg-3.webp");
    background-position: bottom;
    background-size: cover;
    height: 770px;
  }
  .banner-sec.banner-4 .banner {
    margin-bottom: 70px;
  }
}
.banner-sec.banner-4 .banner {
  margin-left: -30px;
}
@media only screen and (max-width: 1400px) {
  .banner-sec.banner-4 .banner {
    margin-left: 20px;
    margin-right: 10px;
  }
}
@media only screen and (max-width: 768px) {
  .banner-sec.banner-4 .banner {
    margin-left: 44px;
  }
}
@media only screen and (max-width: 600px) {
  .banner-sec.banner-4 .banner {
    margin-left: 20px;
  }
}
.banner-sec.banner-4 .banner-img img {
  width: 700px;
}
@media only screen and (max-width: 1024px) {
  .banner-sec.banner-4 .banner-img {
    display: flex !important;
    justify-content: flex-end;
    margin-right: -55px;
    margin-bottom: -76px;
  }
  .banner-sec.banner-4 .banner-img img {
    position: relative;
    width: fit-content;
  }
}
@media only screen and (max-width: 992px) {
  .banner-sec.banner-4 .banner-img {
    margin-right: 0px;
    margin-bottom: 0px;
  }
}
@media only screen and (max-width: 1024px) {
  .banner-sec.banner-4 .offset-lg-1 {
    margin-left: 3%;
  }
}
@media only screen and (max-width: 992px) {
  .banner-sec.banner-4 .offset-lg-1 {
    margin-left: 14%;
  }
}
@media only screen and (max-width: 900px) {
  .banner-sec.banner-4 .offset-lg-1 {
    margin-left: 10%;
  }
}
@media only screen and (max-width: 840px) {
  .banner-sec.banner-4 .offset-lg-1 {
    margin-left: 7%;
  }
}
@media only screen and (max-width: 800px) {
  .banner-sec.banner-4 .offset-lg-1 {
    margin-left: 5%;
  }
}
@media only screen and (max-width: 768px) {
  .banner-sec.banner-4 .offset-lg-1 {
    margin-left: 0%;
  }
}
.banner-sec.banner-5 {
  background-image: url("https://site-assets.fitterfly.com/site-assets/images/banner-bg-img4.webp");
}
@media only screen and (max-width: 992px) {
  .banner-sec.banner-5 .banner {
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 768px) {
  .banner-sec.banner-5 {
    background-image: url("https://site-assets.fitterfly.com/site-assets/images/mob-banner-bg-4.webp");
    background-position: bottom;
    background-size: cover;
    height: 770px;
  }
  .banner-sec.banner-5 .banner {
    margin-bottom: 10px;
  }
}
.banner-sec.banner-5 .banner-img img {
  position: relative;
  top: 57px;
}
@media screen and (max-width: 1680px) {
  .banner-sec.banner-5 .banner-img img {
    top: 46px;
  }
}
@media only screen and (max-width: 1280px) {
  .banner-sec.banner-5 .banner-img img {
    width: auto;
    height: 100%;
  }
}
@media only screen and (max-width: 1024px) {
  .banner-sec.banner-5 .banner-img img {
    top: 24px;
    width: fit-content;
    margin: auto;
  }
}
@media only screen and (max-width: 992px) {
  .banner-sec.banner-5 .banner-img img {
    top: 0px;
  }
}
@media only screen and (max-width: 520px) {
  .banner-sec.banner-5 .banner-img img {
    width: 220px;
  }
}
.banner-sec.webinar-banner {
  background-image: url("https://site-assets.fitterfly.com/site-assets/images/webinar-banner-bg.webp");
}
@media only screen and (max-width: 768px) {
  .banner-sec.webinar-banner {
    background-image: url("https://site-assets.fitterfly.com/site-assets/images/webinar-banner-bg-mob.webp");
    background-position: bottom;
    background-size: contain;
    height: 770px;
  }
  .banner-sec.webinar-banner .banner {
    margin-bottom: 70px;
  }
}
.banner-sec.webinar-banner .banner {
  margin-left: -30px;
}
@media only screen and (max-width: 1400px) {
  .banner-sec.webinar-banner .banner {
    margin-left: 20px;
    margin-right: 10px;
  }
}
@media only screen and (max-width: 768px) {
  .banner-sec.webinar-banner .banner {
    margin-left: 44px;
    margin-bottom: 100px;
    padding-bottom: 20px;
  }
}
@media only screen and (max-width: 600px) {
  .banner-sec.webinar-banner .banner {
    margin-left: 20px;
  }
}
@media only screen and (max-width: 768px) {
  .banner-sec.webinar-banner .banner .banner-content .banner-head-item h2 br {
    display: none;
  }
}
@media only screen and (max-width: 1024px) {
  .banner-sec.webinar-banner .banner-img {
    display: flex !important;
    justify-content: flex-end;
    margin-right: -55px;
    margin-bottom: -76px;
  }
  .banner-sec.webinar-banner .banner-img img {
    position: relative;
    width: fit-content;
  }
}
@media only screen and (max-width: 992px) {
  .banner-sec.webinar-banner .banner-img {
    margin-right: 0px;
    margin-bottom: 0px;
  }
}
.banner-sec.worrynot-banner {
  background-image: url("https://site-assets.fitterfly.com/site-assets/images/banner-bg-img4.webp");
}
@media only screen and (max-width: 992px) {
  .banner-sec.worrynot-banner {
    height: 800px;
  }
}
@media only screen and (max-width: 768px) {
  .banner-sec.worrynot-banner {
    background-image: url("https://site-assets.fitterfly.com/site-assets/images/mob-banner-bg-4.webp");
    background-position: bottom;
    background-size: cover;
    height: 770px;
  }
  .banner-sec.worrynot-banner .banner {
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 768px) and (max-width: 520px) {
  .banner-sec.worrynot-banner.worrynot-banner-3 {
    height: 740px;
  }
}
.banner-sec.referral-banner {
  height: 650px;
  background: linear-gradient(90deg, rgba(63, 171, 255, 0.08) 0%, rgba(255, 182, 222, 0.26) 100%);
  height: 600px;
}
.banner-sec.referral-banner .desktop-view {
  display: flex;
}
.banner-sec.referral-banner .banner-img img {
  vertical-align: bottom;
}
@media only screen and (max-width: 1024px) {
  .banner-sec.referral-banner {
    height: 550px;
  }
}

.home-page-banner {
  position: relative;
  overflow: hidden;
  background-color: #f3f7fa;
}
@media only screen and (max-width: 1024px) {
  .home-page-banner {
    background-color: unset;
    display: flex;
    flex-direction: column-reverse;
  }
}

.banner-content .banner-title {
  font-family: "Inter", sans-serif;
  font-display: swap;
  font-size: 64px;
  line-height: 75px;
  color: #012042;
  letter-spacing: 1.54px;
  margin-bottom: 12px;
  text-align: left;
}
@media screen and (max-width: 1680px) {
  .banner-content .banner-title {
    font-size: 48px;
    line-height: 52px;
    margin-bottom: 10px;
    font-weight: 500;
    letter-spacing: 0.2px;
  }
}
@media screen and (max-width: 1680px) {
  .banner-content .banner-title {
    font-size: 40px;
    font-weight: 600;
    line-height: 48px;
  }
}
@media only screen and (max-width: 1400px) {
  .banner-content .banner-title {
    font-size: 35px;
  }
}
@media only screen and (max-width: 1024px) {
  .banner-content .banner-title {
    font-size: 22px;
    line-height: 36px;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
  }
}
.banner-content h1, .banner-content h2 {
  font-size: 48px;
  font-weight: 600;
  line-height: 60px;
  letter-spacing: 0px;
  color: #012042;
  text-align: left;
  margin-bottom: 20px;
}
@media screen and (max-width: 1680px) {
  .banner-content h1, .banner-content h2 {
    font-size: 40px;
    font-weight: 600;
    line-height: 48px;
  }
}
@media only screen and (max-width: 1400px) {
  .banner-content h1, .banner-content h2 {
    font-size: 34px;
    line-height: 46px;
  }
}
@media only screen and (max-width: 1024px) {
  .banner-content h1, .banner-content h2 {
    font-size: 30px;
    line-height: 36px;
    margin-bottom: 20px;
  }
}
.banner-content h1 .sm-title, .banner-content h2 .sm-title {
  position: relative;
  line-height: 40px;
  font-size: 32px;
}
.banner-content h1 .sm-title:before, .banner-content h2 .sm-title:before {
  content: "";
  position: absolute;
  top: -32px;
  right: -50px;
  display: block;
  width: 73px;
  height: 62px;
  background-image: url("https://site-assets.fitterfly.com/site-assets/images/banner-dot-orange.svg");
  background-repeat: no-repeat;
  background-size: contain;
}
@media only screen and (max-width: 1680px) {
  .banner-content h1 .sm-title:before, .banner-content h2 .sm-title:before {
    top: -32px;
    right: -50px;
    width: 66px;
    height: 54px;
  }
}
@media only screen and (max-width: 1280px) {
  .banner-content h1 .sm-title:before, .banner-content h2 .sm-title:before {
    right: -50px;
  }
}
@media only screen and (max-width: 1024px) {
  .banner-content h1 .sm-title:before, .banner-content h2 .sm-title:before {
    width: 51px;
    height: 43px;
    right: -32px;
    top: -24px;
  }
}
.banner-content h1 strong, .banner-content h2 strong {
  position: relative;
  font-weight: 900;
  font-size: 80px;
  line-height: 80px;
  letter-spacing: 1.28px;
  color: #012042;
  text-transform: uppercase;
  display: block;
  text-align: left;
}
@media screen and (max-width: 1680px) {
  .banner-content h1 strong, .banner-content h2 strong {
    font-size: 64px;
    line-height: 68px;
    letter-spacing: 0.28px;
  }
}
@media only screen and (max-width: 1024px) {
  .banner-content h1 strong, .banner-content h2 strong {
    font-size: 32px;
    color: #021D45;
    line-height: 34px;
  }
}
.banner-content h1 strong:before, .banner-content h2 strong:before {
  content: "";
  position: absolute;
  top: -32px;
  right: -50px;
  display: block;
  width: 73px;
  height: 62px;
  background-image: url("https://site-assets.fitterfly.com/site-assets/images/banner-dot-orange.svg");
  background-repeat: no-repeat;
  background-size: contain;
  display: none;
}
@media only screen and (max-width: 1680px) {
  .banner-content h1 strong:before, .banner-content h2 strong:before {
    top: -23px;
    right: -40px;
    width: 66px;
    height: 54px;
  }
}
@media only screen and (max-width: 1280px) {
  .banner-content h1 strong:before, .banner-content h2 strong:before {
    right: -50px;
  }
}
@media only screen and (max-width: 1024px) {
  .banner-content h1 strong:before, .banner-content h2 strong:before {
    width: 51px;
    height: 43px;
    right: -32px;
    top: -24px;
    display: none;
  }
}
@media only screen and (max-width: 1024px) {
  .banner-content {
    padding-left: 12px;
    padding: 0px 0px;
  }
  .banner-content .medium-btn {
    height: 50px;
  }
}
.banner-content p {
  font-family: "Inter", sans-serif;
  font-display: swap;
  font-size: 38px;
  line-height: 52px;
  letter-spacing: 0.61px;
  color: #012042;
  margin-bottom: 50px;
  text-align: left;
}
@media screen and (max-width: 1680px) {
  .banner-content p {
    font-size: 24px;
    line-height: 32px;
    letter-spacing: 0.1px;
  }
}
@media only screen and (max-width: 1024px) {
  .banner-content p {
    font-size: 16px;
    line-height: 20px;
    letter-spacing: 0.26px;
    color: #171717;
    font-weight: 500;
    margin-bottom: 30px;
  }
  .banner-content p br {
    display: none;
  }
}

.banner-info {
  bottom: 25%;
  z-index: 99;
  left: 6%;
  right: 20%;
}
@media only screen and (max-width: 1024px) {
  .banner-info {
    position: unset;
    padding: 0 20px;
  }
}
.banner-info .owl-carousel .owl-item {
  overflow: hidden;
}
.banner-info .social-media-div {
  display: flex;
  align-items: center;
  flex-direction: row;
  margin-top: 50px;
  opacity: 85%;
}
@media only screen and (max-width: 1024px) {
  .banner-info .social-media-div {
    margin-top: 35px;
  }
}
@media screen and (max-width: 1100px) {
  .banner-info .social-media-div {
    max-width: 460px;
  }
}
.banner-info .social-media-div .sm-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-left: 50px;
  max-width: 110px;
}
.banner-info .social-media-div .sm-box:first-child {
  margin-left: 0px;
}
.banner-info .social-media-div .sm-box .logo-icon {
  display: block;
  height: 24px;
}
.banner-info .social-media-div .sm-box .rating-icon {
  display: block;
}
.banner-info .social-media-div .sm-box .rating-no {
  margin-bottom: 0px;
  padding: 7px;
}
@media only screen and (max-width: 1024px) {
  .banner-info .social-media-div .sm-box {
    width: 33.33%;
  }
}

.banner-image {
  position: relative;
}
.banner-image img {
  display: block;
}
.banner-image:before {
  content: "";
  position: absolute;
  top: 50px;
  right: 15%;
  display: block;
  width: 71px;
  height: 60px;
  background-image: url("https://site-assets.fitterfly.com/site-assets/images/texture-1.svg");
  background-repeat: no-repeat;
  background-size: contain;
  display: none;
}
@media only screen and (max-width: 1680px) {
  .banner-image:before {
    top: 50px;
    right: 15%;
    width: 60px;
    height: 50px;
  }
}
@media only screen and (max-width: 1024px) {
  .banner-image:before {
    width: 40px;
    height: 40px;
    top: 32%;
    right: 12%;
  }
}
.banner-image .img-card, .banner-image .drop-img, .banner-image .graph-img {
  width: 150px;
  height: 138px;
  box-shadow: -50px 30px 30px rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  z-index: 1;
  background-color: #fff;
}
@media only screen and (max-width: 1680px) {
  .banner-image .img-card, .banner-image .drop-img, .banner-image .graph-img {
    width: 120px;
    height: 110px;
  }
}
.banner-image .graph-img {
  position: absolute;
  top: 22%;
  left: -40%;
}
@media only screen and (max-width: 1680px) {
  .banner-image .graph-img {
    left: -30%;
  }
}
.banner-image .drop-img {
  position: absolute;
  top: 64%;
  right: -30%;
}
@media only screen and (max-width: 1680px) {
  .banner-image .drop-img {
    right: -20%;
  }
}
@media only screen and (max-width: 768px) {
  .banner-image {
    width: 270px;
    margin-top: 30px;
    height: 360px;
    margin-left: 40px;
    display: none;
  }
}

.banner-img {
  display: flex;
  justify-content: flex-end;
  height: 100%;
  align-items: flex-end;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .banner-img {
    justify-content: center;
  }
}

.contact-us-bg {
  background-image: url(https://site-assets.fitterfly.com/site-assets/images/site-1/contact-bg.png);
  background-repeat: no-repeat;
  background-color: #00bcd4;
}

.blue-text {
  color: #021D45;
}

.bdr-list {
  position: relative;
  transition: all 0.4s ease-in-out;
  overflow: hidden;
}
.bdr-list .item {
  padding: 40px 0;
  border-bottom: 1px solid #d4d4d4;
  position: relative;
  cursor: pointer;
}
.bdr-list .item .next {
  position: absolute;
  top: 115px;
  right: 30px;
  display: block;
  z-index: 4;
}
@media only screen and (max-width: 1680px) {
  .bdr-list .item .next {
    top: 35px;
  }
}
@media only screen and (max-width: 1280px) {
  .bdr-list .item .next {
    top: 46px;
  }
}
@media only screen and (max-width: 1024px) {
  .bdr-list .item .next {
    top: 20px;
    width: 30px;
    height: 17px;
    background-position: center;
    background-size: contain;
  }
}
@media only screen and (max-width: 1680px) {
  .bdr-list .item {
    padding: 30px 0;
  }
}
@media only screen and (max-width: 1280px) {
  .bdr-list .item {
    padding: 25px 0;
  }
}
.bdr-list .item:last-child {
  border-bottom: 0px;
}
.bdr-list .item .image {
  width: 80px;
  height: 80px;
  margin-right: 30px;
  flex: none;
}
@media only screen and (max-width: 1680px) {
  .bdr-list .item .image {
    width: 70px;
    height: 70px;
    margin-right: 20px;
  }
}
@media only screen and (max-width: 1280px) {
  .bdr-list .item .image {
    width: 65px;
    height: 65px;
    margin-right: 15px;
  }
}
.bdr-list .item .content {
  text-align: left;
  margin-right: 120px;
}
@media only screen and (max-width: 1024px) {
  .bdr-list .item .content {
    margin-right: 20px;
  }
}
.bdr-list .item .content h2 {
  font-size: 48px;
  font-weight: 600;
  line-height: 65px;
  letter-spacing: 0px;
  margin-bottom: 10px;
  color: #171717;
  font-family: "PoppinsSemiBold", sans-serif;
  font-display: swap;
}
@media only screen and (max-width: 1680px) {
  .bdr-list .item .content h2 {
    font-size: 24px;
    line-height: 36px;
    margin-bottom: 3px;
  }
}
@media only screen and (max-width: 1280px) {
  .bdr-list .item .content h2 {
    font-size: 18px;
    line-height: 24px;
  }
}
.bdr-list .item .content p {
  margin-bottom: 10px;
  color: #6E7D9A;
  font-family: "Inter", sans-serif;
  font-display: swap;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
}
@media only screen and (max-width: 1024px) {
  .bdr-list .item .content p {
    margin-top: 10px;
  }
}

.contact-us-sec .contact-us-desc {
  padding: 100px 40px 0px 0;
}
@media only screen and (max-width: 1680px) {
  .contact-us-sec .contact-us-desc {
    padding: 40px 30px 0px 0;
  }
}
@media only screen and (max-width: 1280px) {
  .contact-us-sec .contact-us-desc {
    padding: 50px 30px 30px 0;
  }
}
@media only screen and (max-width: 1024px) {
  .contact-us-sec .contact-us-desc {
    padding: 0 12px;
  }
}
@media only screen and (max-width: 1680px) {
  .contact-us-sec .contact-us-desc .section-head h4 {
    margin-bottom: 10px;
  }
}
.contact-us-sec .contact-us-desc .section-head h1 {
  background: linear-gradient(90deg, #120DB2 0%, #C9606B 49.16%, #FF7D05 98.23%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "PoppinsSemiBold", sans-serif;
  font-display: swap;
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: 50px;
}
@media only screen and (max-width: 1280px) {
  .contact-us-sec .contact-us-desc .section-head h1 {
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 768px) {
  .contact-us-sec .contact-us-desc .section-head h1 {
    margin-bottom: 10px;
    font-size: 24px;
    font-weight: 700;
  }
}
@media only screen and (max-width: 1024px) {
  .contact-us-sec .contact-us-desc .section-head h1 br {
    display: none;
  }
}
.contact-us-sec .contact-us-desc .section-head h2 {
  text-transform: capitalize;
}
@media only screen and (max-width: 1680px) {
  .contact-us-sec .contact-us-desc .section-head h2 {
    margin-bottom: 15px;
  }
}
@media only screen and (max-width: 1280px) {
  .contact-us-sec .contact-us-desc .section-head h2 {
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 768px) {
  .contact-us-sec .contact-us-desc .section-head h2 {
    margin-bottom: 10px;
    font-size: 24px;
    font-weight: 700;
  }
}
@media only screen and (max-width: 1024px) {
  .contact-us-sec .contact-us-desc .section-head h2 br {
    display: none;
  }
}
.contact-us-sec .contact-us-desc .section-head p {
  color: #6E7D9A;
  font-family: "Inter", sans-serif;
  font-display: swap;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}
@media only screen and (max-width: 1280px) {
  .contact-us-sec .contact-us-desc .section-head p {
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 1024px) {
  .contact-us-sec .contact-us-desc .section-head p {
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 1024px) {
  .contact-us-sec .contact-us-desc .section-head p br {
    display: none;
  }
}
.contact-us-sec .content-desc .divider {
  font-style: normal;
  display: inline-block;
  padding: 0px 10px;
}
.contact-us-sec .contact-us-forms {
  background-color: #EAFAFF;
  padding: 60px 120px;
  position: relative;
  overflow: hidden;
  margin-top: 40px;
}
@media only screen and (max-width: 1280px) {
  .contact-us-sec .contact-us-forms {
    padding: 60px 30px;
  }
}
@media only screen and (max-width: 1024px) {
  .contact-us-sec .contact-us-forms {
    padding: 40px 30px;
  }
}
@media only screen and (max-width: 768px) {
  .contact-us-sec .contact-us-forms {
    padding: 40px 15px;
  }
}
@media only screen and (max-width: 1024px) {
  .contact-us-sec .contact-us-forms .bdr-list .item {
    padding: 20px 0;
  }
}
@media only screen and (max-width: 1024px) {
  .contact-us-sec .image {
    width: 50px !important;
    height: 50px !important;
    margin-right: 15px !important;
  }
}
@media only screen and (max-width: 1024px) {
  .contact-us-sec .content h2 {
    font-size: 16px !important;
    margin-bottom: 0px !important;
    line-height: 20px !important;
  }
}

@media only screen and (max-width: 1024px) {
  .map-block img {
    height: 250px;
  }
}

.contact-form-sec {
  overflow: scroll;
  position: absolute;
  top: 0px;
  left: 0px;
  background-color: rgb(212, 212, 212);
  background: #EAFAFF;
  z-index: 4;
  min-width: 100%;
  height: 100%;
  transform: translate(100vw, 0px);
  transition: all 0.5s;
  padding: 100px 120px;
}
@media only screen and (max-width: 1280px) {
  .contact-form-sec {
    min-width: 100%;
    width: 100%;
    left: 0;
    padding: 40px 30px;
  }
}
@media only screen and (max-width: 768px) {
  .contact-form-sec {
    min-width: 100%;
    width: 100%;
    top: 0px;
    left: 0px;
    padding: 40px 15px;
  }
}
.contact-form-sec.slide {
  transform: translate(0, 0);
}

.list-block-second form .form-group {
  margin-bottom: 30px;
}
.list-block-second form .form-group input::placeholder {
  color: #171717;
  font-weight: 400;
}
.list-block-second form .form-group textarea::placeholder {
  color: #171717;
  font-weight: 400;
}
.list-block-second form .form-group select {
  color: #171717;
  font-weight: 400;
}
@media only screen and (max-width: 1280px) {
  .list-block-second .back-btn {
    margin-bottom: 20px;
    text-decoration: none;
  }
}
@media only screen and (max-width: 768px) {
  .list-block-second h2 {
    margin-bottom: 20px;
    text-align: left;
    font-size: 24px;
    font-weight: 700;
  }
  .list-block-second form .form-group {
    margin-bottom: 25px;
  }
  .list-block-second form .form-group input:placeholder {
    color: #171717;
    font-weight: 300;
  }
  .list-block-second form .form-group textarea:placeholder {
    color: #171717;
    font-weight: 300;
  }
  .list-block-second form .form-group select {
    color: #171717;
    font-weight: 300;
  }
}

.contact-form-sec .list-block-second h2 {
  text-align: left;
  margin-bottom: 20px;
}
@media only screen and (max-width: 1680px) {
  .contact-form-sec .list-block-second h2 {
    margin-bottom: 20px;
  }
}

.contact-us-sec .contact-us-forms.full-height {
  max-height: 1015px;
}
@media only screen and (max-width: 1280px) {
  .contact-us-sec .contact-us-forms.full-height {
    max-height: 810px;
  }
}

.accordion-list .accordion {
  background-color: #fff;
  color: #333;
  cursor: pointer;
  padding: 10px 20px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px;
  transition: 0.4s;
}
.accordion-list .accordion .item {
  position: relative;
}
@media only screen and (max-width: 1024px) {
  .accordion-list .accordion .item .arrow {
    background: none;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 9px solid #555;
    top: 20px;
    right: 10px;
    position: absolute;
    z-index: 4;
  }
}
.accordion-list .active, .accordion-list .accordion:hover {
  background-color: #fff;
}
.accordion-list .panel {
  /* padding: 0 18px; */
  display: none;
  background-color: white;
  overflow: hidden;
}

.banner-carousel.owl-theme .owl-dots {
  position: absolute;
  right: 0;
  left: 0;
  top: initial;
  transform: rotate(360deg);
  bottom: 2%;
  z-index: 99;
}
@media only screen and (max-width: 1024px) {
  .banner-carousel.owl-theme .owl-dots {
    right: 0;
    left: 0;
    transform: rotate(0deg);
    bottom: 0;
  }
}
.banner-carousel.owl-theme .owl-dots .owl-dot span {
  background: #CCDAE2;
  width: 12px;
  height: 12px;
}
@media only screen and (max-width: 1024px) {
  .banner-carousel.owl-theme .owl-dots .owl-dot span {
    width: 8px;
    height: 8px;
    margin: 5px 5px;
  }
}
.banner-carousel.owl-theme .owl-dots .owl-dot.active span, .banner-carousel.owl-theme .owl-dots .owl-dot:hover span {
  background: #305FA5;
}
.banner-carousel.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 0px;
}

.worrynot-banner-info h2 {
  font-size: 48px;
  font-weight: 900;
  line-height: 65px;
  letter-spacing: 0px;
  color: #012042;
  text-align: left;
  margin-bottom: 10px;
}
@media screen and (max-width: 1680px) {
  .worrynot-banner-info h2 {
    font-size: 40px;
    font-weight: 600;
    line-height: 48px;
  }
  .worrynot-banner-info h2 br {
    display: none;
  }
}
@media only screen and (max-width: 1400px) {
  .worrynot-banner-info h2 {
    font-size: 35px;
  }
}
@media only screen and (max-width: 1200px) {
  .worrynot-banner-info h2 {
    font-size: 29px;
    line-height: 44px;
  }
}
@media only screen and (max-width: 1024px) {
  .worrynot-banner-info h2 {
    font-size: 24px;
    line-height: 30px;
    padding-bottom: 5px;
  }
  .worrynot-banner-info h2 br {
    display: block;
  }
}
@media only screen and (max-width: 1024px) and (max-width: 600px) {
  .worrynot-banner-info h2 br {
    display: none;
  }
}
.worrynot-banner-info .small-text {
  font-size: 28px;
  line-height: 34px;
  font-weight: 500;
  letter-spacing: 0.61px;
  color: #012042;
  text-align: left;
  display: flex;
}
@media screen and (max-width: 1680px) {
  .worrynot-banner-info .small-text {
    font-size: 21px;
    line-height: 28px;
  }
}
@media only screen and (max-width: 1024px) {
  .worrynot-banner-info .small-text {
    font-size: 21px;
    line-height: 28px;
  }
}
.worrynot-banner-info .sm-line {
  display: flex;
  background: #005da0;
  height: 1px;
  margin: 30px 0;
}
@media only screen and (max-width: 1280px) {
  .worrynot-banner-info .sm-line {
    margin: 20px 0;
  }
}
@media only screen and (max-width: 1024px) {
  .worrynot-banner-info .sm-line {
    margin: 20px 0;
  }
}
.worrynot-banner-info .blue-sm-txt {
  font-size: 35px;
  line-height: 50px;
  font-weight: 600;
  letter-spacing: 0px;
  color: #0f529e;
  margin-bottom: 20px;
  text-align: left;
}
@media screen and (max-width: 1680px) {
  .worrynot-banner-info .blue-sm-txt {
    font-size: 28px;
    line-height: 35px;
  }
}
@media only screen and (max-width: 1400px) {
  .worrynot-banner-info .blue-sm-txt {
    font-size: 24px;
    line-height: 30px;
  }
}
@media only screen and (max-width: 1024px) {
  .worrynot-banner-info .blue-sm-txt {
    font-size: 20px;
    line-height: 30px;
    margin-top: 20px;
  }
}
.worrynot-banner-info .banner-review-list {
  display: flex;
}
.worrynot-banner-info .banner-review-list .banner-review-item {
  padding-left: 30px;
  padding-right: 30px;
  border-left: 1px solid #28353D;
}
@media screen and (max-width: 1680px) {
  .worrynot-banner-info .banner-review-list .banner-review-item {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media only screen and (max-width: 1024px) {
  .worrynot-banner-info .banner-review-list .banner-review-item {
    padding: 0px 12px;
  }
}
.worrynot-banner-info .banner-review-list .banner-review-item:first-child {
  padding-left: 0;
  border-left: none;
}
@media only screen and (max-width: 1024px) {
  .worrynot-banner-info .banner-review-list .banner-review-item:first-child {
    padding: 0px 8px 0px 0px;
  }
}
.worrynot-banner-info .banner-review-list .banner-review-item span {
  font-size: 18px;
  line-height: 25px;
  margin-bottom: 5px;
  letter-spacing: 0px;
  color: #28353D;
  display: flex;
}
@media screen and (max-width: 1680px) {
  .worrynot-banner-info .banner-review-list .banner-review-item span {
    font-size: 13px;
    line-height: 20px;
  }
}
@media only screen and (max-width: 1024px) {
  .worrynot-banner-info .banner-review-list .banner-review-item span {
    font-size: 10px;
    line-height: 18px;
  }
}
.worrynot-banner-info .banner-review-list .banner-review-item .banner-review-head {
  font-weight: 600;
  display: block;
}

.banner-video-item {
  display: flex;
  justify-content: center;
  border-radius: 5px;
  overflow: hidden;
  min-height: 260px;
}
@media only screen and (max-width: 1024px) {
  .banner-video-item {
    min-height: 180px;
    border-radius: 10px;
  }
}
.banner-video-item .banner-video-link {
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
  margin-right: 30px;
}
@media only screen and (max-width: 1024px) {
  .banner-video-item .banner-video-link {
    margin: 30px 0px;
  }
}
@media only screen and (max-width: 1024px) {
  .banner-video-item .banner-video-link img {
    width: 324px;
  }
}
.banner-video-item .banner-video-link .banner-play-btn {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  cursor: pointer;
  background: url("https://site-assets.fitterfly.com/site-assets/images/play-button-logo.webp") no-repeat center;
  background-size: contain;
  z-index: 4;
}
@media only screen and (max-width: 1024px) {
  .banner-video-item .banner-video-link .banner-play-btn {
    width: 45px;
    height: 45px;
    background-size: contain;
  }
}

.info-banner {
  align-items: flex-start;
  padding-bottom: 70px;
}
@media only screen and (max-width: 1280px) {
  .info-banner {
    padding-bottom: 100px;
  }
}
@media only screen and (max-width: 1024px) {
  .info-banner {
    padding-bottom: 0px;
    margin-bottom: 20px;
  }
}

.sticky-btn-sec {
  position: fixed;
  bottom: 15%;
  display: flex;
  align-items: center;
  box-shadow: 0px 0px 8px 0px rgba(7, 103, 177, 0.2);
  justify-content: center;
  border-radius: 20px 0px 0px 20px;
  width: 70px;
  right: 0;
  z-index: 999;
}
@media only screen and (max-width: 1023px) {
  .sticky-btn-sec {
    width: 100%;
    bottom: 0;
    border-radius: 0px;
  }
}
.sticky-btn-sec .side-button {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1;
}
@media only screen and (max-width: 1023px) {
  .sticky-btn-sec .side-button {
    flex-direction: row-reverse;
    width: 100%;
  }
  .sticky-btn-sec .side-button a {
    flex: 1;
  }
}
.sticky-btn-sec .side-button .btn-tab {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 15px 0px;
  border: 1px solid #D8E3FF;
  border-top: none;
  width: 70px;
  gap: 6px;
  background: #FFF;
}
@media only screen and (max-width: 1023px) {
  .sticky-btn-sec .side-button .btn-tab {
    border: 1px solid #D8E3FF;
    border-left: none;
    width: 100%;
    height: 80px;
  }
}
.sticky-btn-sec .side-button .btn-tab:hover {
  background: #E3F3F9;
  border: 1px solid #D8E3FF;
  border-top: none;
}
@media only screen and (max-width: 1023px) {
  .sticky-btn-sec .side-button .btn-tab:hover {
    border: 1px solid #D8E3FF;
    border-left: none;
  }
}
.sticky-btn-sec .side-button .btn-tab span {
  color: #324E64;
  text-align: center;
  font-size: 10px;
  font-weight: 600;
  line-height: 12px;
}
.sticky-btn-sec .side-button .blue-tab {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 15px 0px;
  width: 70px;
  gap: 6px;
  background: #0767B1;
  color: #fff;
  border: 1px solid #0D2A62;
}
@media only screen and (max-width: 1023px) {
  .sticky-btn-sec .side-button .blue-tab {
    border: 1px solid #0D2A62;
    width: 100%;
    height: 80px;
  }
}
.sticky-btn-sec .side-button .blue-tab span {
  color: #fff;
  text-align: center;
  font-size: 10px;
  font-weight: 600;
  line-height: 12px;
}
@media only screen and (max-width: 1023px) {
  .sticky-btn-sec .side-button .blue-tab span br {
    display: none;
  }
}
.sticky-btn-sec .side-button .blue-tab:hover {
  background-color: #0D2A62;
  border: 1px solid #0767B1;
}
@media only screen and (max-width: 1023px) {
  .sticky-btn-sec .side-button .blue-tab:hover {
    border: 1px solid #0767B1;
  }
}
.sticky-btn-sec .side-button .blue-tab:hover img {
  filter: brightness(0) invert(1);
}
.sticky-btn-sec .side-button .blue-tab:hover .filter-none {
  filter: none;
}
.sticky-btn-sec .side-button .white-tab span {
  color: #324E64;
}
.sticky-btn-sec .side-button .border-b {
  border-radius: 0px 0px 0px 20px;
}
@media only screen and (max-width: 1023px) {
  .sticky-btn-sec .side-button .border-b {
    border-radius: 0px 0px 0px 0px;
  }
}
.sticky-btn-sec .side-button .border-t {
  border-radius: 20px 0px 0px 0px;
}
@media only screen and (max-width: 1023px) {
  .sticky-btn-sec .side-button .border-t {
    border-radius: 0px 0px 0px 0px;
  }
}
.sticky-btn-sec .side-button-popup {
  position: fixed;
  right: 0;
  bottom: 20%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  z-index: 0;
}
@media only screen and (max-width: 1023px) {
  .sticky-btn-sec .side-button-popup {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    background: linear-gradient(107deg, rgba(3, 61, 128, 0.65) 0%, rgba(38, 12, 59, 0.65) 100%);
    justify-content: center;
  }
}
.sticky-btn-sec .side-button-popup .side-button-pad {
  margin-right: 100px;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 1023px) {
  .sticky-btn-sec .side-button-popup .side-button-pad {
    margin-right: 0px;
  }
}
.sticky-btn-sec .side-button-popup .side-button-pad .list-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 10px;
  background: #fff;
  min-width: 250px;
  width: 100%;
  border-radius: 10px;
  margin-bottom: 12px;
}
.sticky-btn-sec .side-button-popup .side-button-pad .list-head .sticky-label {
  color: #2D3236;
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  line-height: 20px;
}
.sticky-btn-sec .side-button-popup .side-button-pad .list-head .sticky-close {
  height: 20px;
  width: 20px;
  border-radius: 50px;
  cursor: pointer;
}
.sticky-btn-sec .side-button-popup .side-button-pad .list-head .sticky-close:hover {
  background: #E3F3F9;
}
.sticky-btn-sec .side-button-popup .side-button-pad .side-button-link-list .side-button-link {
  display: flex;
  padding: 20px 15px;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  border-radius: 10px;
  background: #FFF;
  box-shadow: 0px 4px 11.8px 0px rgba(0, 0, 0, 0.25);
  min-width: 250px;
  width: 100%;
  margin-bottom: 15px;
  cursor: pointer;
}
.sticky-btn-sec .side-button-popup .side-button-pad .side-button-link-list .side-button-link:hover {
  background: var(--Pestal-light-Blue, #E9F5FF);
  box-shadow: 0px 4px 11.8px 0px rgba(0, 0, 0, 0.25);
}
.sticky-btn-sec .side-button-popup .side-button-pad .side-button-link-list .side-button-link:hover .link-img.reversal-calculator {
  background-color: #FFF;
}
.sticky-btn-sec .side-button-popup .side-button-pad .side-button-link-list .side-button-link:hover .link-img.risk-calculator {
  background-color: #FFF;
}
.sticky-btn-sec .side-button-popup .side-button-pad .side-button-link-list .side-button-link:hover .link-img.weight-loss-calculator {
  background-color: #FFF;
}
.sticky-btn-sec .side-button-popup .side-button-pad .side-button-link-list .side-button-link .link-img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 25px;
  flex: none;
}
.sticky-btn-sec .side-button-popup .side-button-pad .side-button-link-list .side-button-link .link-img.reversal-calculator {
  background-image: url("https://site-assets.fitterfly.com/site-assets/images/site-1/glucometer-icon.svg");
  background-color: #E9F5FF;
}
.sticky-btn-sec .side-button-popup .side-button-pad .side-button-link-list .side-button-link .link-img.risk-calculator {
  background-image: url("https://site-assets.fitterfly.com/site-assets/images/site-1/diabetes-icon.svg");
  background-color: #F0EBFF;
}
.sticky-btn-sec .side-button-popup .side-button-pad .side-button-link-list .side-button-link .link-img.weight-loss-calculator {
  background-image: url("https://site-assets.fitterfly.com/site-assets/images/site-1/weight-scale.svg");
  background-color: #FFF0E8;
}
.sticky-btn-sec .side-button-popup .side-button-pad .side-button-link-list .side-button-link .button-content {
  color: #2D3236;
  font-size: 12px;
  font-weight: 500;
  line-height: 20px;
}
.sticky-btn-sec .side-button-popup .side-button-popup-overlay {
  display: none;
}
@media only screen and (max-width: 1023px) {
  .sticky-btn-sec .side-button-popup .side-button-popup-overlay {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
  }
}

.header-new {
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(5px);
  background: #FFFFFF;
  z-index: 9999;
  position: fixed;
  width: 100%;
  top: 0;
  text-align: left;
  transition: all 0.7s ease;
}
.header-new.hidden {
  transform: translateY(-100%);
}
@media only screen and (max-width: 1024px) {
  .header-new {
    height: 100%;
    width: 100%;
    position: fixed;
    top: 0;
    right: 0;
    overflow-x: hidden;
    transition: 0.5s;
    transform: translate(100vw, 0);
    transition: all 0.5s ease;
  }
  .header-new.active {
    transform: translate(0, 0);
  }
  .header-new.hidden {
    transform: initial;
  }
}

.home-new-header {
  box-shadow: none;
  backdrop-filter: unset;
}
.home-new-header:hover {
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(5px);
  background: #FFFFFF;
}
@media only screen and (max-width: 1024px) {
  .home-new-header {
    box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(5px);
    background: #FFFFFF;
  }
}
.home-new-header.home-fixed-header {
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(5px);
  background: #FFFFFF;
}

.nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
  position: relative;
}
@media only screen and (max-width: 1024px) {
  .nav-header {
    display: block;
    height: auto;
    position: unset;
  }
}
.nav-header .main-header .close-menu {
  display: none;
}
@media only screen and (max-width: 1024px) {
  .nav-header .main-header {
    padding: 20px 15px;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .nav-header .main-header .close-menu {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 40px;
    height: 40px;
  }
}

.mobile-header {
  display: none;
}
@media only screen and (max-width: 1024px) {
  .mobile-header {
    display: block;
  }
}
.mobile-header .mob-main-header {
  display: none;
}
@media only screen and (max-width: 1024px) {
  .mobile-header .mob-main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.0509803922);
    position: fixed;
    top: 0px;
    width: 100%;
    background: #fff;
    z-index: 999;
    height: auto;
    transition: all 0.7s ease;
  }
  .mobile-header .mob-main-header.hidden {
    transform: translateY(-100%);
  }
  .mobile-header .mob-main-header .menu-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
  }
}

.nav-menu {
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 1024px) {
  .nav-menu {
    display: block;
  }
}

.subnav-item ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  padding-top: 8px;
}
@media only screen and (max-width: 1024px) {
  .subnav-item ul {
    padding-top: 0;
  }
}
.subnav-item ul li {
  margin-bottom: 4px;
  cursor: pointer;
}
.subnav-item ul li a {
  font-size: 12px;
  font-family: "InterMedium", sans-serif;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 0em;
  text-align: left;
  color: #2D3236;
  cursor: pointer;
  white-space: nowrap;
  padding: 10px 20px;
  display: block;
}
@media only screen and (max-width: 1024px) {
  .subnav-item ul li a {
    font-size: 14px;
    line-height: 20px;
  }
}
.subnav-item ul li:last-child {
  border-radius: 0 0 20px 20px;
}

.nav-menubtn {
  padding: 0 20px;
  display: flex;
  align-items: center;
  height: 70px;
}
@media only screen and (max-width: 1200px) {
  .nav-menubtn {
    padding: 0 12px;
  }
}
@media only screen and (max-width: 1023px) {
  .nav-menubtn {
    height: auto;
    padding: 0;
  }
}
.nav-menubtn a {
  font-size: 12px;
  font-family: "InterMedium", sans-serif;
  font-weight: 500;
  line-height: 42px;
  letter-spacing: 0em;
  text-align: left;
  color: #2D3236;
  cursor: pointer;
  position: relative;
}
.nav-menubtn a::after {
  content: "";
  position: absolute;
  top: 16px;
  right: -16px;
  width: 10px;
  height: 10px;
  display: block;
  background: url("https://site-assets.fitterfly.com/site-assets/images/site-1/downarrow-icon.svg") no-repeat center;
  transition: 0.5 alls;
}
@media only screen and (max-width: 1024px) {
  .nav-menubtn a {
    display: block;
    width: 100%;
    font-size: 14px;
    font-family: "InterMedium", sans-serif;
    font-weight: 500;
    line-height: 22px;
    letter-spacing: 0em;
    color: #2D3236;
    padding: 15px 0;
  }
  .nav-menubtn a::after {
    right: 0px;
    width: 12px;
    height: 12px;
    background-size: 12px;
    top: 20px;
  }
}

.nav-menubtn-inner {
  padding: 0 20px;
  display: flex;
  align-items: center;
  height: 70px;
}
@media only screen and (max-width: 1024px) {
  .nav-menubtn-inner {
    height: auto;
    padding: 0;
  }
}
.nav-menubtn-inner a {
  font-size: 12px;
  font-family: "InterMedium", sans-serif;
  font-weight: 500;
  line-height: 42px;
  letter-spacing: 0em;
  text-align: left;
  color: #2D3236;
  cursor: pointer;
  position: relative;
}
.nav-menubtn-inner a::after {
  content: "";
  position: absolute;
  top: 16px;
  right: -16px;
  width: 10px;
  height: 10px;
  display: block;
  background: url("https://site-assets.fitterfly.com/site-assets/images/site-1/downarrow-icon.svg") no-repeat center;
  transition: 0.5 alls;
}
@media only screen and (max-width: 1024px) {
  .nav-menubtn-inner a {
    display: block;
    width: 100%;
    font-size: 14px;
    font-family: "InterMedium", sans-serif;
    font-weight: 500;
    line-height: 22px;
    letter-spacing: 0em;
    color: #2D3236;
    padding: 15px 0;
  }
  .nav-menubtn-inner a::after {
    right: 0px;
    width: 12px;
    height: 12px;
    background-size: 12px;
    top: 20px;
    transform: rotate(-90deg);
  }
}

.subnav-content {
  position: absolute;
  background-color: #fff;
  z-index: 9;
  top: 68px;
  left: 0;
  display: none;
  border-radius: 0px 0px 20px 20px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(5px);
  padding-bottom: 10px;
}
.subnav-content ul li {
  position: relative;
  z-index: 1;
  cursor: pointer;
}
@media only screen and (max-width: 1024px) {
  .subnav-content ul li:last-child {
    padding-bottom: 12px;
  }
}
.subnav-content ul li a:hover {
  color: #DB0E7E;
  background-color: #E3F3F9;
}
@media only screen and (max-width: 1024px) {
  .subnav-content {
    position: unset;
    box-shadow: none;
  }
}

.nav-menu-item {
  position: relative;
}
.nav-menu-item.blog-nav-mob {
  position: unset;
}
.nav-menu-item:hover .nav-menubtn a {
  color: #DB0E7E;
}
.nav-menu-item:hover .nav-menubtn a::after {
  transition: 0.5 alls;
  background: url("https://site-assets.fitterfly.com/site-assets/images/site-1/pink-uparrow.svg") no-repeat center;
}
@media only screen and (max-width: 1024px) {
  .nav-menu-item:hover .nav-menubtn a::after {
    background: url("https://site-assets.fitterfly.com/site-assets/images/site-1/downarrow-icon.svg") no-repeat center;
    background-size: 12px;
  }
}
@media only screen and (min-width: 1024px) {
  .nav-menu-item:hover .subnav-content {
    display: flex;
  }
}
@media only screen and (max-width: 1024px) {
  .nav-menu-item.active .nav-menubtn a {
    color: #DB0E7E;
  }
  .nav-menu-item.active .nav-menubtn a::after {
    transition: 0.5 alls;
    background: url("https://site-assets.fitterfly.com/site-assets/images/site-1/pink-uparrow.svg") no-repeat center;
  }
}
@media only screen and (max-width: 1024px) and (max-width: 1024px) {
  .nav-menu-item.active .nav-menubtn a::after {
    background-size: 12px;
  }
}
@media only screen and (max-width: 1024px) {
  .nav-menu-item {
    margin: 0 15px;
    border-bottom: 1px solid #D8E3FF;
  }
  .nav-menu-item:last-child {
    border-bottom: none;
  }
  .nav-menu-item.blog-nav-mob .nav-menubtn a::after {
    transform: rotate(-90deg);
  }
  .nav-menu-item.blog-nav-mob.active .nav-menubtn a {
    color: #2D3236;
  }
  .nav-menu-item.blog-nav-mob.active .nav-menubtn a::after {
    transform: rotate(-90deg);
    background: url("https://site-assets.fitterfly.com/site-assets/images/site-1/downarrow-icon.svg") no-repeat center;
    background-size: 12px;
  }
  .nav-menu-item.blog-nav-mob .blog-nav .subnav-block {
    display: block;
  }
  .nav-menu-item.blog-nav-mob .subnav-item.subnav-desktop {
    display: none;
  }
}
.nav-menu-item:last-child .nav-menubtn a {
  border-bottom: none;
}
.nav-menu-item .arrow-none:hover {
  color: #DB0E7E;
}
.nav-menu-item .arrow-none::after {
  display: none;
}

.subnav-block {
  display: flex;
  padding: 20px;
}
.subnav-block .subnav-item {
  padding: 10px 10px 0px;
  width: 220px;
}
@media only screen and (max-width: 1024px) {
  .subnav-block .subnav-item {
    width: auto;
  }
}
.subnav-block .subnav-item:last-child {
  padding-right: 16px;
}
.subnav-block .subnav-item ul li:last-child {
  border-radius: 0 0 0 0;
}
.subnav-block .subnav-item ul li a {
  padding: 5px 15px;
}

.subnav-item-head {
  padding-bottom: 12px;
  white-space: nowrap;
  padding-right: 12px;
  font-size: 13px;
  font-weight: 600;
  font-family: "InterSemiBold", sans-serif;
  letter-spacing: 0em;
  text-align: left;
  color: #2D3236;
  border-bottom: 1px solid #D8E3FF;
}
@media only screen and (max-width: 1024px) {
  .subnav-item-head {
    padding-bottom: 10px;
    padding-top: 8px;
    position: relative;
    font-family: "InterMedium", sans-serif;
    font-weight: 500;
    font-size: 14px;
    border-bottom: none;
  }
  .subnav-item-head::after {
    content: "";
    position: absolute;
    top: 14px;
    right: 5px;
    width: 12px;
    height: 12px;
    display: block;
    background: url("https://site-assets.fitterfly.com/site-assets/images/site-1/downarrow-icon.svg") no-repeat center;
    transition: 0.5 alls;
    background-size: 12px;
  }
}
.subnav-item-head a {
  color: #2D3236;
}

.navbar-cta .button {
  background-image: linear-gradient(90deg, #DB0E7E 0.39%, #F841A5 103.94%) !important;
  background-color: #DB0E7E !important;
  font-family: Inter !important;
  font-display: swap;
  font-size: 12px !important;
  font-family: "InterSemiBold", sans-serif;
  font-weight: 600 !important;
  line-height: 18px !important;
  letter-spacing: 0em !important;
  text-align: left !important;
  cursor: pointer !important;
  padding: 12px 20px !important;
  border-radius: 5px !important;
  -webkit-backface-visibility: hidden !important;
  z-index: 1 !important;
  position: relative !important;
  transition: opacity 0.7s !important;
  height: 46px !important;
}
.navbar-cta .button::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background-image: linear-gradient(90deg, #990054 0.39%, #E01483 103.94%);
  transition: opacity 0.5s ease-out;
  z-index: 2;
  opacity: 0;
}
.navbar-cta .button:hover::after {
  opacity: 1;
}
.navbar-cta .button span {
  position: relative;
  z-index: 3;
  padding-right: 0;
}
.navbar-cta .button span::after {
  display: none;
}
.navbar-cta .navbar-cta-dropdown {
  position: relative;
  display: inline-block;
}
.navbar-cta .navbar-cta-dropdown:hover .navbar-cta-menu, .navbar-cta .navbar-cta-dropdown:focus-within .navbar-cta-menu {
  display: block;
}
.navbar-cta .navbar-cta-dropdown:hover .navbar-cta-trigger span::after, .navbar-cta .navbar-cta-dropdown:focus-within .navbar-cta-trigger span::after {
  transform: translateY(-50%) rotate(180deg);
}
.navbar-cta .navbar-cta-dropdown .navbar-cta-trigger {
  display: inline-flex;
  align-items: center;
  outline: none;
}
.navbar-cta .navbar-cta-dropdown .navbar-cta-trigger span {
  padding-right: 18px;
}
.navbar-cta .navbar-cta-dropdown .navbar-cta-trigger span::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 10px;
  height: 10px;
  display: block;
  background: url("https://site-assets.fitterfly.com/site-assets/images/site-1/white-down-arrow.svg") no-repeat center;
  background-size: 10px;
  transform: translateY(-50%);
  transition: transform 0.3s ease;
}
.navbar-cta .navbar-cta-dropdown .navbar-cta-menu {
  top: 100%;
  left: auto;
  right: 0;
  min-width: 220px;
  border-radius: 0 0 12px 12px;
  padding: 8px 0 10px;
  z-index: 20;
}
.navbar-cta .navbar-cta-mobile-btns {
  display: none;
  width: 100%;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.navbar-cta .navbar-cta-mobile-btns .button {
  flex: 1;
  width: auto;
  min-width: 0;
  text-align: center !important;
  justify-content: center;
  padding: 12px 10px !important;
  white-space: nowrap;
}
.navbar-cta .navbar-cta-mobile-btns .button span {
  padding-right: 0;
  font-size: 11px;
}
.navbar-cta .navbar-cta-mobile-btns .button span::after {
  display: none;
}
@media only screen and (max-width: 1024px) {
  .navbar-cta .navbar-cta-mobile-btns {
    display: flex !important;
  }
}
@media only screen and (max-width: 1024px) {
  .navbar-cta {
    position: absolute;
    bottom: 0;
    padding: 20px;
    width: 100%;
    margin-left: -15px;
    text-align: center;
    border-top: 1px solid #D8E3FF;
    background: #fff;
  }
  .navbar-cta.navbar-cta-mob {
    margin: auto;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    flex-direction: row;
    align-items: center;
  }
}
@media (min-width: 576px) {
  .navbar-cta.navbar-cta-mob {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .navbar-cta.navbar-cta-mob {
    max-width: 720px;
  }
}

.subnav-item-mob {
  display: none;
}
@media only screen and (max-width: 1024px) {
  .subnav-item-mob {
    display: block;
  }
}

.mobile-cont-nav {
  display: none;
  width: 920px;
  right: 0;
  margin: auto;
}
.mobile-cont-nav.nutrition-nav {
  width: 510px;
}
@media only screen and (max-width: 1024px) {
  .mobile-cont-nav.nutrition-nav {
    width: 100%;
    position: fixed;
    width: 100%;
    height: 100%;
    transition: 0.3s all;
    z-index: 999;
    display: block;
    top: 0;
    right: 0px;
    left: unset;
    overflow-x: hidden;
    transform: translate(100vw, 0);
  }
}
@media only screen and (max-width: 1024px) {
  .mobile-cont-nav {
    position: fixed;
    width: 100%;
    height: 100%;
    transition: 0.3s all;
    z-index: 999;
    display: block;
    top: 0;
    right: 0px;
    left: unset;
    overflow-x: hidden;
    transform: translate(100vw, 0);
  }
  .mobile-cont-nav.slide {
    transition: 0.3s all;
    transform: translate(0, 0);
  }
  .mobile-cont-nav.slide .subnav-content {
    display: block;
  }
  .mobile-cont-nav.slide .subnav-block {
    padding: 0px;
  }
  .mobile-cont-nav.slide .subnav-block .subnav-cont-mob {
    margin: 10px 20px 0px;
  }
  .mobile-cont-nav.slide .subnav-block .subnav-item {
    padding: 7px 0px;
    margin: 0 35px;
    border-bottom: 1px solid #D8E3FF;
  }
  .mobile-cont-nav.slide .subnav-block .subnav-item:last-child {
    border-bottom: none;
  }
  .mobile-cont-nav.slide .subnav-block .subnav-item ul {
    padding-left: 0;
    padding-right: 0;
    margin-left: 12px;
    display: none;
  }
  .mobile-cont-nav.slide .subnav-block .subnav-item ul .subnav-item-mob {
    display: block;
  }
  .mobile-cont-nav.slide .subnav-block .subnav-item ul li:last-child {
    padding-bottom: 0;
  }
  .mobile-cont-nav.slide .subnav-block .subnav-item:hover .subnav-item-head {
    color: #DB0E7E;
  }
  .mobile-cont-nav.slide .subnav-block .subnav-item:hover .subnav-item-head::after {
    transition: 0.5 alls;
    background: url("https://site-assets.fitterfly.com/site-assets/images/site-1/downarrow-icon.svg") no-repeat center;
    background-size: 12px;
  }
  .mobile-cont-nav.slide .subnav-block .subnav-item:hover .mob-list .subnav-item-mob a {
    font-family: "InterMedium", sans-serif;
    font-weight: 500;
    color: #DB0E7E;
  }
  .mobile-cont-nav.slide .subnav-block .subnav-item.active .subnav-item-head {
    color: #DB0E7E;
  }
  .mobile-cont-nav.slide .subnav-block .subnav-item.active .subnav-item-head::after {
    transition: 0.5 alls;
    background: url("https://site-assets.fitterfly.com/site-assets/images/site-1/pink-uparrow.svg") no-repeat center;
    background-size: 12px;
  }
  .mobile-cont-nav.slide .subnav-block .subnav-item.active .mob-list .subnav-item-mob a {
    font-family: "InterMedium", sans-serif;
    font-weight: 500;
    color: #DB0E7E;
  }
}

#es-slide-nav.mobile-cont-nav {
  max-width: 480px;
}
@media only screen and (max-width: 1024px) {
  #es-slide-nav.mobile-cont-nav {
    max-width: 100%;
  }
}

.head-nav {
  display: none;
}
@media only screen and (max-width: 1024px) {
  .head-nav {
    display: flex;
    margin: 0 15px 24px;
    align-items: center;
  }
  .head-nav .left-icon {
    margin-right: 20px;
  }
  .head-nav a {
    font-size: 16px;
    font-family: "InterMedium", sans-serif;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: 0em;
    color: #DB0E7E;
  }
}

.head-nav-item {
  display: none;
}
@media only screen and (max-width: 1024px) {
  .head-nav-item {
    display: block;
    font-size: 14px;
    font-family: "InterMedium", sans-serif;
    font-weight: 500;
    line-height: 22px;
    letter-spacing: 0em;
    color: #DB0E7E;
    padding-bottom: 18px;
    border-bottom: 1px solid #D8E3FF;
    margin: 0 15px;
  }
}

.footer {
  background: #0D2A62;
  padding: 40px 50px 20px;
  text-align: left;
}
@media screen and (max-width: 1024px) {
  .footer {
    padding: 40px 0px 20px;
  }
}
.footer .footer-info p {
  color: #FFF;
  font-size: 12px;
  font-weight: 400;
  line-height: 21px;
}
@media screen and (max-width: 1024px) {
  .footer .footer-info {
    margin-bottom: 30px;
  }
}
.footer .footer-logo {
  margin-bottom: 15px;
  display: block;
}
.footer .footer-logo img {
  display: block;
}
@media screen and (max-width: 1024px) {
  .footer .footer-links li {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
  }
  .footer .footer-links li:last-child {
    margin-bottom: 20px;
  }
}
.footer .footer-links li a {
  color: #FFF;
  font-size: 12px;
  font-weight: 400;
  line-height: 24px;
  text-decoration: none;
}
.footer .footer-links li a:hover {
  color: #00A3FF;
}
.footer .social-info-sec {
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 10px 15px 0px;
}
@media screen and (max-width: 1024px) {
  .footer .social-info-sec {
    display: block;
    padding: 0px 15px 0px;
  }
}
@media screen and (max-width: 1024px) {
  .footer .social-info-sec .app-link-sec {
    padding: 30px;
    padding-bottom: 0px;
    padding-top: 0px;
  }
}
.footer .social-info-sec .app-link-sec .small-text {
  margin-bottom: 0px;
  color: #FFF;
}
@media screen and (max-width: 1024px) {
  .footer .social-info-sec .app-link-sec .small-text {
    margin: 35px 0px 20px;
    text-align: center;
  }
}
.footer .social-info-sec .app-link-sec .app-links {
  display: flex;
  align-items: end;
}
@media screen and (max-width: 1024px) {
  .footer .social-info-sec .app-link-sec .app-links {
    align-items: center;
    justify-content: center;
  }
}
.footer .social-info-sec .app-link-sec .app-links .mobile-store-link {
  display: flex;
  justify-content: center;
  align-items: end;
}
@media screen and (max-width: 1024px) {
  .footer .social-info-sec .app-link-sec .app-links .mobile-store-link {
    display: block;
  }
}
.footer .social-info-sec .app-link-sec .app-links .mobile-store-link .app-link {
  display: flex;
}
.footer .social-info-sec .app-link-sec .app-links .mobile-store-link .app-link .app-box {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 121px;
  height: 37px;
  padding: 0;
  margin: 0;
  cursor: pointer;
}
.footer .social-info-sec .app-link-sec .app-links .mobile-store-link .app-link .app-box::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
}
.footer .social-info-sec .app-link-sec .app-links .mobile-store-link .app-link .app-box.google-play::before {
  background: url("https://site-assets.fitterfly.com/site-assets/images/site-1/google-play.svg") no-repeat center;
}
.footer .social-info-sec .app-link-sec .app-links .mobile-store-link .app-link .app-box.app-store::before {
  background: url("https://site-assets.fitterfly.com/site-assets/images/site-1/app-store.svg") no-repeat center;
}
.footer .social-info-sec .app-link-sec .app-links .mobile-store-link .app-link .app-box:hover.google-play::before {
  background: url("https://www.fitterfly.com/blog/wp-content/uploads/2023/11/white-google-play.svg") no-repeat center;
}
.footer .social-info-sec .app-link-sec .app-links .mobile-store-link .app-link .app-box:hover.app-store::before {
  background: url("https://www.fitterfly.com/blog/wp-content/uploads/2023/11/white-app-store.svg") no-repeat center;
}
.footer .social-info-sec .app-link-sec .app-links .mobile-store-link .app-link {
  padding-right: 30px;
}
@media screen and (max-width: 1024px) {
  .footer .social-info-sec .app-link-sec .app-links .mobile-store-link .app-link {
    padding-bottom: 10px;
    padding-top: 10px;
  }
}
.footer .social-info-sec .app-link-sec .app-links .scanner-link .app-link {
  display: flex;
}
.footer .social-info-sec .social-media-link {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}
@media screen and (max-width: 1024px) {
  .footer .social-info-sec .social-media-link {
    justify-content: center;
    align-items: center;
  }
}
.footer .social-info-sec .social-media-link .social-block {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .footer .social-info-sec .social-media-link .social-block {
    display: block;
  }
}
.footer .social-info-sec .social-media-link .social-block .social-title {
  color: var(--ff-web-site-text-5, #FFF);
  font-size: 12px;
  font-weight: 400;
  line-height: 24px;
  margin-right: 8px;
}
@media screen and (max-width: 1024px) {
  .footer .social-info-sec .social-media-link .social-block .social-title {
    text-align: center;
    display: block;
    margin-right: 0;
    margin-bottom: 12px;
  }
}
.footer .social-info-sec .social-media-link .social-block .social-icon-list {
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer .social-info-sec .social-media-link .social-block .social-icon-list a {
  width: 20px;
  margin-right: 8px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer .social-info-sec .social-media-link .social-block .social-icon-list a:hover {
  border: 1px solid #fff;
  border-radius: 15px;
}
@media screen and (max-width: 1024px) {
  .footer .social-info-sec .social-media-link .social-block {
    margin-bottom: 0px;
  }
}
.footer .copy {
  margin-top: 22px;
  border-top: 1px solid #3D538B;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .footer .copy {
    padding: 20px 0px;
    margin-top: 0;
    border-top: none;
    margin-bottom: 80px;
  }
}
.footer .copy .copy-note {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .footer .copy .copy-note {
    flex-direction: column-reverse;
  }
}
.footer .copy .copy-note p {
  font-weight: 400;
  font-size: 12px;
  line-height: 19px;
  color: #fff;
  margin: 0;
  padding: 20px 0 0;
  text-align: right;
}
.footer .copy .copy-note p br {
  display: none;
}
@media screen and (max-width: 1024px) {
  .footer .copy .copy-note p {
    text-align: center;
    padding-top: 0;
  }
  .footer .copy .copy-note p br {
    display: block;
  }
  .footer .copy .copy-note p span {
    display: none;
  }
}
.footer .footer-inner-col {
  padding-top: 20px;
}
@media screen and (max-width: 1024px) {
  .footer .footer-inner-col {
    padding-top: 0;
  }
}
.footer .footer-accordion1 {
  color: #FFF;
  font-size: 14px;
  font-family: "InterSemiBold", sans-serif;
  font-weight: 600;
  line-height: 24px;
  margin-bottom: 10px;
}
@media screen and (max-width: 1024px) {
  .footer .footer-accordion1 {
    cursor: pointer;
    width: 100%;
    text-align: left;
    transition: 0.4s;
    position: relative;
    margin-bottom: 18px;
  }
  .footer .footer-accordion1::after {
    content: "";
    position: absolute;
    display: block;
    width: 24px;
    height: 24px;
    right: 2px;
    top: 2px;
    transition: 0.4s;
    background-image: url("https://site-assets.fitterfly.com/site-assets/images/site-1/white-down-arrow.svg");
    background-repeat: no-repeat;
    background-position: center;
    margin-left: 5px;
  }
  .footer .footer-accordion1.active::after {
    transition: 0.4s;
    transform: rotate(180deg);
  }
}
@media screen and (max-width: 1024px) {
  .footer .panel1 {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
  }
}

body {
  padding-top: 70px;
}

.footer, .header-new {
  letter-spacing: normal;
  line-height: normal;
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  -ms-font-smoothing: antialiased;
  font-smoothing: antialiased;
}
.footer .wrapper, .header-new .wrapper {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
  max-width: 1640px;
}
.footer .wrapper.pad-lr-0, .header-new .wrapper.pad-lr-0 {
  padding-right: 0px;
  padding-left: 0px;
}
@media (min-width: 576px) {
  .footer .wrapper, .header-new .wrapper {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .footer .wrapper, .header-new .wrapper {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .footer .wrapper, .header-new .wrapper {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .footer .wrapper, .header-new .wrapper {
    max-width: 1140px;
  }
}
@media (min-width: 1400px) {
  .footer .wrapper, .header-new .wrapper {
    max-width: 1140px;
  }
}
.footer .wrapper-fluid, .header-new .wrapper-fluid {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
.footer .navbar-cta .button, .header-new .navbar-cta .button {
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer .navbar-cta .button span, .header-new .navbar-cta .button span {
  position: relative;
  z-index: 3;
  color: #FFF;
  font-size: 14px;
  font-style: normal;
  font-family: "InterSemiBold", sans-serif;
  font-weight: 600;
  line-height: 28px;
  text-transform: capitalize;
}
.footer p, .header-new p {
  color: var(--text-t-1, #2D3236);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}
.footer h3, .header-new h3 {
  font-family: "PoppinsSemiBold", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 36px;
}
.footer .head-nav-item, .header-new .head-nav-item {
  display: none;
}
@media only screen and (max-width: 1024px) {
  .footer .head-nav-item, .header-new .head-nav-item {
    display: block;
    font-size: 14px;
    font-weight: 500;
    line-height: 22px;
    letter-spacing: 0em;
    padding-bottom: 18px;
    border-bottom: 1px solid #D8E3FF;
    margin: 0 15px;
  }
  .footer .head-nav-item a, .header-new .head-nav-item a {
    color: #DB0E7E;
  }
}
.footer .footer-links li, .header-new .footer-links li {
  line-height: 26px;
}

.research-sec {
  padding: 120px 0;
}
@media only screen and (max-width: 1680px) {
  .research-sec {
    padding: 60px 0;
  }
}
@media only screen and (max-width: 1024px) {
  .research-sec {
    padding: 70px 0;
  }
}
.research-sec .rs-load-more {
  margin-bottom: 66px;
}
@media only screen and (max-width: 1680px) {
  .research-sec .rs-load-more {
    margin-bottom: 50px;
  }
}
@media only screen and (max-width: 1024px) {
  .research-sec .rs-load-more {
    margin-bottom: 40px;
  }
}

.research-main {
  text-align: left;
  width: 60%;
  margin: auto auto 50px;
}
@media only screen and (max-width: 1680px) {
  .research-main {
    margin-bottom: 50px;
  }
}
@media only screen and (max-width: 1024px) {
  .research-main {
    margin-bottom: 40px;
    width: 100%;
  }
}
.research-main .upcoming-event {
  line-height: 49px;
  width: 100%;
  height: 200px;
  background: #DFEFED;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 40px;
  font-weight: 600;
  text-align: center;
}
@media only screen and (max-width: 1024px) {
  .research-main .upcoming-event {
    font-size: 24px;
    line-height: 36px;
  }
}
.research-main .text {
  font-size: 48px;
  line-height: 65px;
  font-weight: 700;
  color: #171717;
  margin-bottom: 20px;
}
@media only screen and (max-width: 1680px) {
  .research-main .text {
    font-size: 36px;
    line-height: 48px;
    margin-bottom: 16px;
  }
}
@media only screen and (max-width: 1024px) {
  .research-main .text {
    font-size: 24px;
    line-height: 34px;
    margin-bottom: 10px;
  }
}
.research-main .btn, .research-main .black-btn, .research-main .white-btn, .research-main .teal-btn, .research-main .bdr-btn {
  text-align: center;
}
@media only screen and (max-width: 1024px) {
  .research-main .btn, .research-main .black-btn, .research-main .white-btn, .research-main .teal-btn, .research-main .bdr-btn {
    padding-left: 30px;
    padding-right: 30px;
  }
}

.research-list {
  margin-bottom: 66px;
}
.research-list .tab-list {
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1607843137);
}
.research-list .tab-list li.active a {
  font-weight: 700;
  border-bottom: 5px solid #021D45;
  margin-bottom: -3px;
}
.research-list .tab-list li a {
  display: block;
  margin: 0 32px;
  padding-bottom: 20px;
  font-size: 26px;
  line-height: 35px;
  font-weight: 400;
  text-decoration: none;
  color: #171717;
  cursor: pointer;
}
@media only screen and (max-width: 1680px) {
  .research-list .tab-list li a {
    font-size: 18px;
    line-height: 26px;
    margin: 0 22px;
    padding-bottom: 12px;
  }
}
@media only screen and (max-width: 1024px) {
  .research-list .tab-list li a {
    font-size: 20px;
    line-height: 28px;
  }
}

.research-card {
  margin-bottom: 60px;
}
@media only screen and (max-width: 1024px) {
  .research-card {
    margin-bottom: 40px;
  }
}
.research-card .card-image {
  background-color: #EAFAFF;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 300px;
  border-radius: 10px 10px;
  margin-bottom: 20px;
  position: relative;
}
@media only screen and (max-width: 1680px) {
  .research-card .card-image {
    height: 250px;
  }
}
@media only screen and (max-width: 1024px) {
  .research-card .card-image {
    height: 184px;
    margin-bottom: 18px;
  }
}
.research-card .card-image .ci-box {
  max-height: 150px;
  max-width: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.research-card .card-image .resource-tag {
  position: absolute;
  left: -9px;
  bottom: 15px;
}
.research-card .card-info {
  text-align: left;
}
.research-card .card-info .rd-btn {
  font-size: 20px;
  line-height: 35px;
  letter-spacing: 0.3px;
  color: #fff;
  width: fit-content;
  height: 42px;
  padding: 0 30px;
  border-radius: 21px 21px;
  background-color: #41B9D5;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 16px;
  cursor: pointer;
}
@media only screen and (max-width: 1680px) {
  .research-card .card-info .rd-btn {
    font-size: 16px;
    line-height: 26px;
    height: 36px;
  }
}
@media only screen and (max-width: 1024px) {
  .research-card .card-info .rd-btn {
    font-size: 14px;
    line-height: 25px;
  }
}
.research-card .card-info h3 {
  font-size: 24px;
  line-height: 38px;
  text-align: left;
  font-weight: 700;
  margin-bottom: 16px;
  color: #171717;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}
@media only screen and (max-width: 1680px) {
  .research-card .card-info h3 {
    font-size: 18px;
    line-height: 30px;
    margin-bottom: 15px;
  }
}
@media only screen and (max-width: 1024px) {
  .research-card .card-info h3 {
    margin-bottom: 12px;
  }
}
.research-card .card-info p {
  font-size: 20px;
  line-height: 35px;
  text-align: left;
  font-weight: 400;
  margin-bottom: 20px;
  color: #171717;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}
@media only screen and (max-width: 1680px) {
  .research-card .card-info p {
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0.16px;
    margin-bottom: 16px;
  }
}
.research-card .card-info .link {
  font-size: 20px;
  line-height: 35px;
  letter-spacing: 0.3px;
  font-weight: 600;
  text-align: left;
  text-decoration: underline;
  color: #021D45;
  display: block;
  cursor: pointer;
}
@media only screen and (max-width: 1680px) {
  .research-card .card-info .link {
    font-size: 16px;
    line-height: 20px;
  }
}
.research-card .card-info .btn.btn-small, .research-card .card-info .btn-small.black-btn, .research-card .card-info .btn-small.white-btn, .research-card .card-info .btn-small.teal-btn, .research-card .card-info .btn-small.bdr-btn {
  min-width: 200px;
  height: 50px;
  font-size: 18px;
}
.research-card .card-info .btn.blue-btn, .research-card .card-info .blue-btn.black-btn, .research-card .card-info .blue-btn.white-btn, .research-card .card-info .blue-btn.teal-btn, .research-card .card-info .blue-btn.bdr-btn {
  text-transform: capitalize;
}

.light-blue-bg {
  background-color: #41B9D5;
}

.research-view {
  max-width: 1086px;
  margin: auto;
}
@media only screen and (max-width: 768px) {
  .research-view .research-card {
    margin-bottom: 70px;
  }
}
.research-view .research-card .card-image .ci-box {
  max-height: 150px;
  max-width: 150px;
}
@media only screen and (max-width: 768px) {
  .research-view .research-card .card-image .ci-box {
    max-width: 100px;
  }
}
.research-view .research-card .card-info h3 {
  font-size: 40px;
  line-height: 60px;
  text-align: left;
  font-weight: 600;
  letter-spacing: 0;
  margin-bottom: 16px;
}
@media only screen and (max-width: 1680px) {
  .research-view .research-card .card-info h3 {
    font-size: 28px;
    line-height: 40px;
  }
}
@media only screen and (max-width: 1024px) {
  .research-view .research-card .card-info h3 {
    font-size: 18px;
    line-height: 30px;
  }
}
.research-view .research-card .card-info .btn.mt-60, .research-view .research-card .card-info .mt-60.black-btn, .research-view .research-card .card-info .mt-60.white-btn, .research-view .research-card .card-info .mt-60.teal-btn, .research-view .research-card .card-info .mt-60.bdr-btn {
  margin-top: 30px;
}

.research-details-email {
  background-color: #fafafa;
}
.research-details-email .research-email {
  padding: 60px 0;
  max-width: 1086px;
  margin: auto;
}
@media only screen and (max-width: 1024px) {
  .research-details-email .research-email {
    padding: 40px 80px;
    max-width: auto;
    margin: auto;
  }
}
@media only screen and (max-width: 768px) {
  .research-details-email .research-email {
    padding: 40px 20px;
    margin-left: -15px;
    margin-right: -15px;
  }
}
.research-details-email .research-email .email-form {
  text-align: left;
}
.research-details-email .research-email .email-form h2 {
  font-size: 32px;
  line-height: 40px;
  color: #111a28;
  margin-bottom: 10px;
  font-weight: 500;
  text-align: left;
  letter-spacing: 0px;
}
@media only screen and (max-width: 1680px) {
  .research-details-email .research-email .email-form h2 {
    font-size: 24px;
    line-height: 30px;
    letter-spacing: 0.38px;
  }
}
@media only screen and (max-width: 768px) {
  .research-details-email .research-email .email-form h2 {
    font-size: 18px;
    line-height: 30px;
    letter-spacing: 0.18px;
  }
}
.research-details-email .research-email .email-form p {
  font-size: 20px;
  line-height: 26px;
  font-weight: 400;
  margin-bottom: 20px;
  color: #585b83;
  font-weight: 400;
}
@media only screen and (max-width: 1680px) {
  .research-details-email .research-email .email-form p {
    font-size: 18px;
    line-height: 24px;
  }
}
@media only screen and (max-width: 768px) {
  .research-details-email .research-email .email-form p {
    font-size: 16px;
    line-height: 26px;
  }
}
.research-details-email .research-email .email-form .form-group {
  display: flex;
  align-items: center;
  padding-bottom: 2px;
}
.research-details-email .research-email .email-form .form-group input {
  padding-bottom: 10px;
  background-color: transparent;
  border: 1px solid #707070;
  border-radius: 5px;
  padding: 20px 20px;
  max-width: 700px;
}
.research-details-email .research-email .email-form .form-group input::placeholder {
  color: #333;
  font-weight: 400;
}
.research-details-email .research-email .email-form .form-group .btn, .research-details-email .research-email .email-form .form-group .black-btn, .research-details-email .research-email .email-form .form-group .white-btn, .research-details-email .research-email .email-form .form-group .teal-btn, .research-details-email .research-email .email-form .form-group .bdr-btn {
  margin-left: 30px;
  width: fit-content;
}
@media screen and (max-width: 1024px) {
  .research-details-email .research-email .email-form .form-group .btn, .research-details-email .research-email .email-form .form-group .black-btn, .research-details-email .research-email .email-form .form-group .white-btn, .research-details-email .research-email .email-form .form-group .teal-btn, .research-details-email .research-email .email-form .form-group .bdr-btn {
    margin-top: 20px;
    margin-left: 0;
  }
}
@media screen and (max-width: 1024px) {
  .research-details-email .research-email .email-form .form-group {
    flex-direction: column;
  }
}
.research-details-email .research-email .email-form .text-btn {
  background: none;
  border: none;
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 20px;
  padding: 0 10px;
}

.research-page {
  background: #f9fbff;
  overflow: hidden;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  letter-spacing: 0px;
  line-height: 26px;
  color: #012043;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  -ms-font-smoothing: antialiased;
  font-smoothing: antialiased;
}
.research-page .header {
  box-shadow: 0 2px 13px -4px #ddd;
}
.research-page .logo-block {
  background: #fff;
  border: 1px solid #e5e5e5;
  height: 120px;
  width: 160px;
  margin-top: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 1024px) {
  .research-page .logo-block {
    max-width: 90px;
    height: 70px;
    position: absolute;
    right: 5px;
    top: 0;
    margin-top: 0;
  }
}
.research-page .logo-block img {
  display: block;
  max-width: 130px;
  max-height: 100px;
  margin: 0 auto;
  height: auto;
  width: auto;
}
@media only screen and (max-width: 1024px) {
  .research-page .logo-block img {
    max-width: 70px;
  }
}
@media only screen and (max-width: 1024px) {
  .research-page .container {
    padding-top: 65px;
  }
}
.research-page .research-mod .l-subsection-h, .research-page .resource-mod .l-subsection-h {
  padding: 0px 0px;
}
@media only screen and (max-width: 1024px) {
  .research-page .research-mod .side-menu .side-bar, .research-page .resource-mod .side-menu .side-bar {
    width: 54px !important;
    padding-top: 65px;
    margin-bottom: 0px;
    display: none;
  }
}
.research-page .search-filter-menu .search-btn {
  width: 35px;
  height: 37px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  background-position: -962px -1920px;
}
@media only screen and (max-width: 1024px) {
  .research-page .search-filter-menu {
    display: flex !important;
    justify-content: center;
    align-items: center;
  }
  .research-page .search-filter-menu .search-btn {
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    margin-right: 5px;
  }
  .research-page .search-filter-menu .search-btn img {
    width: 20px;
  }
  .research-page .search-filter-menu .search-btn.active, .research-page .search-filter-menu .search-btn:hover {
    background-color: #f0f0f0;
    border-radius: 4px 4px;
  }
}
.research-page .filter-menu {
  display: none;
}
.research-page .filter-menu .filter-btn {
  height: 35px;
  width: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  background-position: -1002px -1919px;
}
.research-page .filter-menu .filter-btn.active, .research-page .filter-menu .filter-btn:hover {
  background-color: #f0f0f0;
  border-radius: 4px 4px;
}
@media only screen and (max-width: 1024px) {
  .research-page .filter-menu {
    display: block;
  }
  .research-page .filter-menu .filter-btn {
    height: 35px;
    width: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
  }
  .research-page .filter-menu .filter-btn.active, .research-page .filter-menu .filter-btn:hover {
    background-color: #f0f0f0;
    border-radius: 4px 4px;
  }
}
.research-page .search-filter-pad {
  padding: 40px 30px;
  background-color: #fafafa;
}
@media only screen and (max-width: 1024px) {
  .research-page .search-filter-pad {
    padding: 20px 20px;
    display: none;
  }
}
.research-page .research-pad, .research-page .resource-pad {
  padding: 40px 70px 0 40px;
  display: flex;
  flex-direction: column;
  height: 100%;
}
@media only screen and (max-width: 1024px) {
  .research-page .research-pad, .research-page .resource-pad {
    padding: 20px 20px 0;
  }
}
.research-page .search-head {
  margin-bottom: 28px;
}
.research-page .search-head h5 {
  font-weight: 500;
  font-size: 16px;
  line-height: 26px;
  color: #111a28;
  text-align: left;
  letter-spacing: 0px;
  margin-bottom: 10px;
}
.research-page .search-filter-box,
.research-page .form-box {
  display: flex;
  justify-content: center;
  align-items: center;
}
.research-page .search-filter-box input[type=text],
.research-page .form-box input[type=text] {
  border: 1px solid #d8d8d8;
  border-radius: 4px;
  height: 40px;
  padding-left: 17px;
  color: #323e4b;
  font-size: 16px;
  line-height: 26px;
  font-family: "Inter", sans-serif;
}
@media only screen and (max-width: 1024px) {
  .research-page .search-filter-box input[type=text],
  .research-page .form-box input[type=text] {
    height: 36px;
    padding: 8px 15px;
    background: none;
  }
}
.research-page .search-filter-box input::-webkit-input-placeholder,
.research-page .form-box input::-webkit-input-placeholder {
  /* Edge */
  color: #c3c3c3;
  font-size: 14px;
  line-height: 26px;
  font-family: "Inter", sans-serif;
}
@media only screen and (max-width: 1024px) {
  .research-page .search-filter-box input::-webkit-input-placeholder,
  .research-page .form-box input::-webkit-input-placeholder {
    font-size: 12px;
    line-height: 26px;
  }
}
.research-page .search-filter-box input:-ms-input-placeholder,
.research-page .form-box input:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #c3c3c3;
  font-size: 14px;
  line-height: 26px;
  font-family: "Inter", sans-serif;
}
@media only screen and (max-width: 1024px) {
  .research-page .search-filter-box input:-ms-input-placeholder,
  .research-page .form-box input:-ms-input-placeholder {
    font-size: 12px;
    line-height: 26px;
  }
}
.research-page .search-filter-box input::placeholder,
.research-page .form-box input::placeholder {
  color: #c3c3c3;
  font-size: 14px;
  line-height: 26px;
  font-family: "Inter", sans-serif;
}
@media only screen and (max-width: 1024px) {
  .research-page .search-filter-box input::placeholder,
  .research-page .form-box input::placeholder {
    font-size: 12px;
    line-height: 26px;
  }
}
.research-page .search-filter-box {
  position: relative;
}
.research-page .search-filter-box.search-input {
  display: none;
}
@media only screen and (max-width: 1024px) {
  .research-page .search-filter-box.search-input {
    display: none;
    margin-bottom: 10px;
  }
}
.research-page .search-filter-box .search {
  border: 1px solid #d8d8d8;
  border-radius: 4px;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  height: 40px;
  padding-left: 17px;
  padding-right: 45px;
  color: #012042;
  font-size: 16px;
  line-height: 26px;
  font-family: "Inter", sans-serif;
  position: relative;
  background-color: #fff;
}
@media only screen and (max-width: 1024px) {
  .research-page .search-filter-box .search {
    margin-right: 0px;
    padding: 10px 38px 10px 10px;
    height: 40px;
  }
}
.research-page .search-filter-box .input-field-icon {
  width: 25px;
  height: 25px;
  display: block;
  position: absolute;
  right: 8px;
  top: 8px;
  cursor: pointer;
}
.research-page .search-filter-box .input-field-icon.search-icon {
  background-position: -968px -1925px;
}
.research-page .filter-list-action {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.research-page .filter-list-action h5 {
  flex: 1;
  margin-bottom: 0px;
  font-weight: 500;
  font-size: 16px;
  line-height: 26px;
  color: #111a28;
  text-align: left;
  letter-spacing: 0px;
  font-family: "Poppins", "sans-serif";
}
.research-page .filter-list-action .clear {
  color: #7a8693;
  font-size: 14px;
  line-height: 26px;
  font-family: "Inter", sans-serif;
  cursor: pointer;
  letter-spacing: 0px;
}
.research-page .filter-list-action .clear:hover, .research-page .filter-list-action .clear:focus {
  color: #404040;
}
.research-page .filter-list-action .filter-btn {
  display: flex;
  margin-right: 10px;
  width: 22px;
  height: 22px;
  background-position: -1008px -1925px;
}
.research-page .search-filter-list .checkmark-list {
  display: block;
  flex-wrap: wrap;
}
.research-page .search-filter-list .checkmark-list li {
  display: flex;
  align-items: center;
  position: relative;
  margin-bottom: 14px;
  padding-left: 30px;
  font-size: 14px;
  letter-spacing: 0px;
  font-family: "Inter", sans-serif;
  cursor: pointer;
  color: #012042;
}
.research-page .search-filter-list .checkmark-list li:hover, .research-page .search-filter-list .checkmark-list li:focus {
  color: #060f3d;
}
.research-page .search-filter-list .checkmark-list li:before {
  height: 20px;
  width: 20px;
  background-color: #fff;
  cursor: pointer;
  margin-right: 10px;
  position: absolute;
  display: inline-block;
  border: 1px solid #d8d8d8;
  border-radius: 4px;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  flex: none;
  content: "";
  top: 1px;
  left: 0px;
}
.research-page .search-filter-list .checkmark-list li:after {
  display: none;
}
.research-page .search-filter-list .checkmark-list li.active:before {
  background-color: #1aa1bb;
}
.research-page .search-filter-list .checkmark-list li.active:after {
  left: 8px;
  top: 3px;
  width: 5px;
  height: 12px;
  border: solid #fff;
  border-width: 0px 2px 2px 0px;
  display: block;
  content: "";
  position: absolute;
  transform: rotate(45deg);
}
@media only screen and (max-width: 1024px) {
  .research-page .research-head {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 5px;
  }
}
.research-page .research-head h1 {
  font-size: 26px;
  color: #012043;
  line-height: 30px;
  text-align: left;
  margin-bottom: 15px;
  letter-spacing: 0px;
  font-weight: 600;
  flex: 1;
}
@media only screen and (max-width: 1024px) {
  .research-page .research-head h1 {
    font-size: 21px;
    line-height: 31px;
    margin-bottom: 0px;
  }
}
.research-page .show-entry {
  font-weight: 400;
  color: #7a8693;
  letter-spacing: 0px;
  margin-top: 5px;
  margin-bottom: 10px;
  font-size: 12px;
  line-height: 19px;
}
.research-page .mob-view {
  display: none;
}
@media only screen and (max-width: 1024px) {
  .research-page .mob-view {
    display: block;
  }
}
.research-page .info-box {
  background: #fff;
  border-bottom: 1px solid #dedede;
  padding: 20px 30px 20px 20px;
}
.research-page .info-box:last-child {
  margin-bottom: 0;
  border-bottom: 0;
}
.research-page .info-box {
  position: relative;
}
@media only screen and (max-width: 1024px) {
  .research-page .info-box {
    padding: 20px 20px;
  }
}
@media only screen and (max-width: 1024px) {
  .research-page .info-box .g-cols .one-fifth {
    position: relative;
  }
}
.research-page .info-box .indicator {
  font-size: 14px;
  line-height: 19px;
  letter-spacing: 0.8px;
  color: #404040;
  font-weight: 400;
  display: flex;
  align-items: center;
  text-transform: uppercase;
}
.research-page .info-box .indicator .indicator-icon {
  margin-right: 10px;
  width: 38px;
  height: 38px;
  display: block;
  background: none;
  flex: none;
}
.research-page .info-box .indicator .indicator-icon img {
  width: auto;
  height: auto;
}
@media only screen and (max-width: 1024px) {
  .research-page .info-box .indicator .indicator-icon {
    height: unset;
    width: unset;
  }
}
.research-page .info-box .indicator .indicator-icon.journal {
  background-position: -1048px -1928px;
}
.research-page .info-box .indicator .indicator-icon.presentation {
  background-position: -1098px -1927px;
}
.research-page .info-box .indicator .indicator-icon.white-papers {
  background-position: -1150px -1925px;
}
.research-page .info-box .indicator .indicator-icon.abstracts {
  background-position: -1250px -1924px;
}
.research-page .info-box .indicator .indicator-icon.case-study {
  background-position: -1198px -1924px;
}
.research-page .info-box .indicator strong {
  font-weight: 400;
  font-size: 14px;
  line-height: 19px;
  letter-spacing: 0.8px;
  text-align: left;
}
@media only screen and (max-width: 1024px) {
  .research-page .info-box .indicator strong {
    font-size: 12px;
    line-height: 15px;
    letter-spacing: 0.6px;
  }
}
@media screen and (max-width: 320px) {
  .research-page .info-box .indicator strong {
    font-size: 10px;
  }
}
@media only screen and (max-width: 1024px) {
  .research-page .info-box .indicator {
    font-size: 12px;
    line-height: 14px;
    letter-spacing: 0.6px;
    margin-bottom: 5px;
  }
  .research-page .info-box .indicator img {
    width: 25px;
    height: 25px;
  }
}
.research-page .info-box h4,
.research-page .info-box h1 {
  font-size: 19px;
  text-align: left;
  line-height: 26px;
  margin-bottom: 5px;
  letter-spacing: 0px;
  color: #012043;
  font-weight: 600;
}
@media only screen and (max-width: 1024px) {
  .research-page .info-box h4,
  .research-page .info-box h1 {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 8px;
  }
}
.research-page .info-box h4 a,
.research-page .info-box h1 a {
  color: #012043;
}
.research-page .info-box p {
  font-size: 15px;
  text-align: left;
  line-height: 23px;
  letter-spacing: 0px;
  color: #344d69;
  font-weight: 400;
  margin-bottom: 10px;
}
@media only screen and (max-width: 1024px) {
  .research-page .info-box p {
    font-size: 13px;
    line-height: 21px;
    margin-bottom: 1px;
  }
}
.research-page .info-box .sub-info {
  display: block;
  font-weight: 400;
  font-size: 14px;
  color: #7a8693;
  letter-spacing: 0px;
  line-height: 26px;
  margin-top: 6px;
  margin-bottom: 6px;
  text-align: left;
}
@media only screen and (max-width: 1024px) {
  .research-page .info-box .sub-info {
    font-size: 12px;
    line-height: 19px;
    margin-bottom: 8px;
    padding-right: 100px;
  }
}
.research-page .info-box .read-text {
  font-weight: 400;
  font-size: 14px;
  color: #0b6295;
  letter-spacing: 0px;
  line-height: 14px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.research-page .info-box .read-text.active, .research-page .info-box .read-text:hover {
  opacity: 0.5;
}
@media only screen and (max-width: 1024px) {
  .research-page .info-box .read-text {
    font-size: 13px;
  }
}
.research-page .info-box .btn-teal {
  background: #012042;
  border-radius: 5px;
  font-weight: 600;
  font-size: 16px;
  color: #FFFFFF;
  letter-spacing: 0;
  text-align: center;
  line-height: 24px;
  padding: 10px 15px;
  min-width: 135px;
  display: inline-block;
  cursor: pointer;
}
.research-page .research-detail-mod {
  text-align: left;
}
.research-page .research-detail-mod .container {
  padding-top: 50px;
  max-width: 750px;
}
@media only screen and (max-width: 1024px) {
  .research-page .research-detail-mod .container .inline-block {
    margin-right: 10px;
  }
}
.research-page .research-detail-mod .container .logo-block {
  position: absolute;
  right: 15px;
  top: 20px;
  margin-top: 0;
}
@media only screen and (max-width: 1024px) {
  .research-page .research-detail-mod .container .logo-block {
    top: 15px;
  }
}
.research-page .research-detail-mod .container .l-subsection-h {
  padding-top: 50px;
  max-width: 750px;
}
@media only screen and (max-width: 1024px) {
  .research-page .research-detail-mod .container .l-subsection-h {
    width: 87.79%;
    padding-top: 28px;
  }
}
.research-page .research-detail-mod .container .info-box {
  border-bottom: none;
  padding: 20px 20px 20px 20px;
}
@media only screen and (max-width: 1024px) {
  .research-page .research-detail-mod .container .info-box {
    padding: 15px 15px;
  }
}
.research-page .research-detail-mod .container .info-box .indicator {
  margin-bottom: 10px;
}
@media only screen and (max-width: 1024px) {
  .research-page .research-detail-mod .container .info-box .indicator {
    margin-bottom: 7px;
  }
}
.research-page .research-detail-mod .container .info-box .sub-info {
  margin: 0px 0px 8px;
  max-width: 515px;
}
@media only screen and (max-width: 1024px) {
  .research-page .research-detail-mod .container .info-box .sub-info {
    margin: 0px 0px 10px;
    max-width: 220px;
  }
}
.research-page .research-detail-mod .container .info-box h1 {
  cursor: pointer;
  font-size: 28px;
  line-height: 36px;
  margin-bottom: 8px;
  max-width: 515px;
  margin-bottom: 25px;
}
@media only screen and (max-width: 1024px) {
  .research-page .research-detail-mod .container .info-box h1 {
    font-size: 21px;
    line-height: 28px;
  }
}
@media only screen and (max-width: 320px) {
  .research-page .research-detail-mod .container .info-box h1 {
    max-width: 260px;
    font-size: 15px;
    line-height: 22px;
  }
}
.research-page .research-detail-mod .container .info-box p {
  margin-bottom: 40px;
}
@media only screen and (max-width: 1024px) {
  .research-page .research-detail-mod .container .info-box p {
    margin-bottom: 30px;
  }
}
.research-page .research-detail-mod .container .btn, .research-page .research-detail-mod .container .black-btn, .research-page .research-detail-mod .container .white-btn, .research-page .research-detail-mod .container .teal-btn, .research-page .research-detail-mod .container .bdr-btn {
  padding: 8px 15px;
  min-width: 170px;
}
.research-page .research-detail-mod .container .btn.disable, .research-page .research-detail-mod .container .disable.black-btn, .research-page .research-detail-mod .container .disable.white-btn, .research-page .research-detail-mod .container .disable.teal-btn, .research-page .research-detail-mod .container .disable.bdr-btn {
  background: #ddd;
}
@media only screen and (max-width: 1024px) {
  .research-page .research-detail-mod .container .btn, .research-page .research-detail-mod .container .black-btn, .research-page .research-detail-mod .container .white-btn, .research-page .research-detail-mod .container .teal-btn, .research-page .research-detail-mod .container .bdr-btn {
    height: 33px;
    min-width: 142px;
    padding: 5px 15px;
  }
}
.research-page .research-detail-mod .container .email-form {
  padding: 25px 30px 25px 30px;
  border-radius: 10px 10px 10px 10px;
  background-color: #fafafa;
  margin-bottom: 30px;
}
@media only screen and (max-width: 1024px) {
  .research-page .research-detail-mod .container .email-form {
    padding: 20px 20px;
  }
  .research-page .research-detail-mod .container .email-form .spam {
    margin-bottom: 15px;
    font-size: 14px;
    line-height: 16px;
    display: inline-block;
  }
}
@media only screen and (max-width: 320px) {
  .research-page .research-detail-mod .container .email-form {
    padding: 20px 20px;
  }
}
.research-page .research-detail-mod .container .email-form h5 {
  margin-bottom: 0px;
  font-size: 18px;
  line-height: 24px;
}
@media only screen and (max-width: 1024px) {
  .research-page .research-detail-mod .container .email-form h5 {
    font-size: 16px;
    line-height: 16px;
  }
}
.research-page .research-detail-mod .container .email-form .g-cols {
  align-items: center;
}
.research-page .form-box {
  justify-content: flex-end;
}
@media only screen and (max-width: 1024px) {
  .research-page .form-box {
    justify-content: flex-start;
  }
}
.research-page .form-box .form-field {
  display: flex;
  justify-content: center;
  align-items: center;
}
.research-page .form-box .form-field .err-text {
  display: none;
}
.research-page .form-box .form-field.error .err-text {
  display: inline-block;
}
.research-page .form-box .form-field .btn, .research-page .form-box .form-field .black-btn, .research-page .form-box .form-field .white-btn, .research-page .form-box .form-field .teal-btn, .research-page .form-box .form-field .bdr-btn {
  min-width: 90px;
  border-radius: 0px 4px 4px 0px;
  height: 36px;
  font-size: 12px;
  padding: 0px;
  border: none;
}
@media only screen and (max-width: 320px) {
  .research-page .form-box .form-field .btn, .research-page .form-box .form-field .black-btn, .research-page .form-box .form-field .white-btn, .research-page .form-box .form-field .teal-btn, .research-page .form-box .form-field .bdr-btn {
    min-width: 80px;
  }
}
.research-page .form-box input[type=text] {
  max-width: 220px;
  border-radius: 4px 0px 0px 4px;
  height: 36px;
  padding: 6px 15px;
}
@media only screen and (max-width: 1024px) {
  .research-page .form-box input[type=text] {
    max-width: 162px;
    border-radius: 4px 0px 0px 4px;
    height: 36px;
    padding: 5px 15px;
  }
}
.research-page .form-box input::-webkit-input-placeholder,
.research-page .form-box input:-ms-input-placeholder,
.research-page .form-box input::placeholder {
  font-size: 12px;
}
.research-page .email-form .thank-you-msg {
  position: relative;
  padding-left: 60px;
}
.research-page .email-form .thank-you-msg:before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  background: url(/../images/normal-tick.svg) no-repeat center top;
  width: 46px;
  height: 46px;
  display: block;
}
@media only screen and (max-width: 1024px) {
  .research-page .email-form .thank-you-msg h5 {
    font-size: 16px;
    line-height: 21px;
    margin-bottom: 3px;
  }
  .research-page .email-form .thank-you-msg .spam {
    font-size: 14px;
    line-height: 16px;
    display: inline-block;
    margin-bottom: 0px;
  }
}
@media only screen and (max-width: 320px) {
  .research-page .email-form .thank-you-msg h5 {
    font-size: 14px;
    margin-bottom: 3px;
  }
  .research-page .email-form .thank-you-msg .spam {
    font-size: 12px;
    line-height: 14px;
    display: inline-block;
    margin-bottom: 0px;
  }
}
.research-page .back-to {
  color: #0b6295;
  display: inline-block;
  cursor: pointer;
  padding-bottom: 10px;
}
.research-page .back-to:hover {
  opacity: 0.7;
}
@media only screen and (max-width: 1024px) {
  .research-page .back-to {
    font-size: 14px;
    line-height: 16px;
  }
}
.research-page {
  /* side drawer css start */
}
.research-page .side-drawer {
  display: none;
}
@media only screen and (max-width: 1024px) {
  .research-page .side-drawer {
    position: fixed;
    top: 0;
    width: 0px;
    height: 100%;
    right: 0;
    background: #fafafa;
    z-index: 12;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    overflow: hidden;
    overflow-y: auto;
  }
  .research-page .side-drawer.active {
    width: 254px;
    transition: all 0.5s;
  }
}
@media only screen and (max-width: 1024px) and (max-width: 320px) {
  .research-page .side-drawer.active {
    width: 248px;
  }
}
@media only screen and (max-width: 1024px) {
  .research-page .side-drawer .side-drawer-pad {
    padding: 90px 20px 20px;
    background: #fafafa;
    flex: 1 !important;
  }
}
.research-page .side-drawer-overlay {
  display: none;
}
@media only screen and (max-width: 1024px) {
  .research-page .side-drawer-overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 11;
    transition: all 0.5s;
  }
}
.research-page {
  /* side drawer css end */
}
.research-page .pagination-list {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
@media only screen and (max-width: 1024px) {
  .research-page .pagination-list {
    justify-content: center;
  }
}
.research-page .pagination-list .pagination {
  display: flex;
  justify-content: center;
  align-items: center;
}
.research-page .pagination-list .pagination .previous_page,
.research-page .pagination-list .pagination .next_page {
  padding: 5px 10px;
  margin-right: 5px;
  text-align: center;
  border: 1px solid #585b83;
  border-radius: 5px;
  color: #585b83;
  width: 110px;
  height: 38px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 1024px) {
  .research-page .pagination-list .pagination .previous_page,
  .research-page .pagination-list .pagination .next_page {
    padding: 0px 3px;
    margin-right: 3px;
    width: 78px;
    height: 30px;
    cursor: pointer;
    font-size: 12px;
    line-height: 16px;
  }
}
.research-page .pagination-list .pagination .previous_page.disabled:hover, .research-page .pagination-list .pagination .previous_page.disabled:active,
.research-page .pagination-list .pagination .next_page.disabled:hover,
.research-page .pagination-list .pagination .next_page.disabled:active {
  border: 1px solid #344d69;
  border-radius: 5px;
  font-style: normal;
  color: #585b83;
  background: none;
}
.research-page .pagination-list .pagination .current {
  padding: 5px 5px;
  margin: 0px 3px;
  border: 1px solid #dedede;
  border-radius: 5px;
  font-style: normal;
  color: #585b83;
  background: #dedede;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
@media only screen and (max-width: 1024px) {
  .research-page .pagination-list .pagination .current {
    width: 25px;
    height: 25px;
    font-size: 12px;
    padding: 0px;
  }
}
.research-page .pagination-list .pagination a {
  padding: 5px 5px;
  margin: 0px 3px;
  border: 1px solid #585b83;
  border-radius: 5px;
  color: #585b83;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 1024px) {
  .research-page .pagination-list .pagination a {
    width: 25px;
    height: 25px;
    font-size: 12px;
    padding: 0px;
    margin: 0px 2px;
  }
}
.research-page .pagination-list .pagination a:hover, .research-page .pagination-list .pagination a:active {
  border: 1px solid #dedede;
  border-radius: 5px;
  font-style: normal;
  color: #585b83;
  background: #dedede;
}
.research-page .search-container {
  height: calc(100vh - 100px);
  background-color: #fafafa;
}
.research-page .research-info-container {
  display: flex;
  flex-direction: column;
  height: calc(100vh - 95px);
  overflow: scroll;
  overflow-x: hidden;
}
@media only screen and (max-width: 1024px) {
  .research-page .research-info-container {
    height: calc(100vh - 66px);
  }
}
.research-page .info-list-block {
  flex: 1;
}
.research-page .pagination-block {
  padding: 40px 0;
  border-top: 1px solid #dedede;
}
@media only screen and (max-width: 1024px) {
  .research-page .pagination-block {
    padding: 20px 0;
  }
}
@media only screen and (max-width: 1024px) {
  .research-page .research-mod .info-box h4, .research-page .info-list-block .info-box h4 {
    padding-left: 0px;
    min-height: 0px;
    margin-bottom: 0px;
  }
}
@media only screen and (max-width: 1024px) {
  .research-page .research-mod {
    padding-right: 10px;
  }
}

.email-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (max-width: 1024px) {
  .email-info {
    display: block;
  }
}

.about-banner {
  background-color: unset;
  background-size: contain;
  background-color: #faf8f4;
  position: relative;
}
@media only screen and (max-width: 1024px) {
  .about-banner {
    background-image: url("https://site-assets.fitterfly.com/site-assets/images/site-1/program-banner-bg.webp");
    background-color: #f3f7fa;
    background-size: cover;
  }
}
@media only screen and (max-width: 600px) {
  .about-banner {
    height: 640px;
  }
}
@media only screen and (max-width: 600px) and (max-width: 320px) {
  .about-banner {
    height: 560px;
  }
}
@media only screen and (max-width: 1024px) and (min-width: 768px) {
  .about-banner .banner {
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 768px) {
  .about-banner .banner {
    margin-bottom: 0px;
  }
}
@media only screen and (max-width: 320px) {
  .about-banner .banner {
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 1024px) {
  .about-banner .banner-content h1, .about-banner .banner-content h2 {
    margin-bottom: 0px;
  }
}
.about-banner .banner-content h1 strong, .about-banner .banner-content h2 strong {
  color: #021D45;
  font-size: 40px;
  line-height: 50px;
}
@media only screen and (max-width: 1024px) {
  .about-banner .banner-content h1 strong, .about-banner .banner-content h2 strong {
    font-size: 30px;
    line-height: 36px;
    margin-bottom: 0px;
    font-weight: 600;
  }
}
@media only screen and (max-width: 1024px) {
  .about-banner .banner-content h1 span, .about-banner .banner-content h2 span {
    text-align: left;
    display: block;
    font-size: 20px;
    line-height: 20px;
    letter-spacing: 0.26px;
    color: #171717;
    font-weight: 500;
    margin-bottom: 20px;
  }
}
.about-banner .banner-content p {
  font-size: 30px;
  line-height: 40px;
}
.about-banner .banner-image .graph-img {
  left: -3%;
  top: 25%;
}
@media only screen and (max-width: 1680px) {
  .about-banner .banner-image .graph-img {
    left: 3%;
    top: 25%;
  }
}
.about-banner .banner-image .drop-img {
  top: 50%;
  right: -8%;
}
@media only screen and (max-width: 1680px) {
  .about-banner .banner-image .drop-img {
    top: 55%;
    right: -5%;
  }
}
.about-banner .banner-img {
  top: 30px;
}
@media only screen and (max-width: 1024px) {
  .about-banner .banner-img {
    top: unset;
  }
}
.about-banner .banner-img img {
  width: auto;
  height: auto;
}
@media only screen and (max-width: 1024px) and (min-width: 768px) {
  .about-banner .banner-img img {
    width: 440px;
  }
}

.people-at-fitterfly-sec {
  padding: 140px 0px;
  position: relative;
  background-color: #f9f9f9;
}
.people-at-fitterfly-sec::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 4;
  background-image: url(https://site-assets.fitterfly.com/site-assets/images/site-1/fitterfly-mantra-bg.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media only screen and (max-width: 1800px) {
  .people-at-fitterfly-sec {
    padding: 95px 0;
  }
  .people-at-fitterfly-sec:before {
    background-size: contain;
  }
}
@media only screen and (max-width: 1680px) {
  .people-at-fitterfly-sec {
    padding: 114px 0;
  }
  .people-at-fitterfly-sec:before {
    background-size: cover;
  }
}
@media only screen and (max-width: 1024px) {
  .people-at-fitterfly-sec {
    padding: 50px 0;
  }
}
.people-at-fitterfly-sec .pf-info .big-text {
  font-size: 80px;
  font-weight: 800;
  line-height: normal;
  margin-bottom: 20px;
}
@media only screen and (max-width: 1680px) {
  .people-at-fitterfly-sec .pf-info .big-text {
    font-size: 72px;
  }
}
@media only screen and (max-width: 1024px) {
  .people-at-fitterfly-sec .pf-info .big-text {
    font-size: 38px;
  }
}
.people-at-fitterfly-sec .pf-info p {
  width: 65%;
  margin: auto;
}
@media only screen and (max-width: 1024px) {
  .people-at-fitterfly-sec .pf-info p {
    width: 100%;
  }
}
@media only screen and (max-width: 1024px) {
  .people-at-fitterfly-sec .pf-info .mb-60 {
    margin-bottom: 30px;
  }
}

.fitterfly-values-rise {
  padding: 90px 0px;
}
@media only screen and (max-width: 1680px) {
  .fitterfly-values-rise {
    padding: 60px 0;
  }
}
@media only screen and (max-width: 1024px) {
  .fitterfly-values-rise {
    padding: 40px 0;
  }
  .fitterfly-values-rise .section-head {
    margin-bottom: 30px;
  }
}
.fitterfly-values-rise .fv-rise-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: auto;
  width: 80%;
}
.fitterfly-values-rise .fv-rise-main .frv-image img {
  display: block;
}
@media only screen and (max-width: 1024px) {
  .fitterfly-values-rise .fv-rise-main .frv-image {
    margin-bottom: 15px;
  }
}
.fitterfly-values-rise .fv-rise-main .frv-info {
  text-align: center;
  max-width: 350px;
  margin-top: 30px;
  margin-bottom: 30px;
}
@media only screen and (max-width: 1680px) {
  .fitterfly-values-rise .fv-rise-main .frv-info {
    margin-top: 20px;
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 1024px) {
  .fitterfly-values-rise .fv-rise-main .frv-info {
    margin-top: 0px;
    margin-bottom: 40px;
  }
  .fitterfly-values-rise .fv-rise-main .frv-info.mb-10 {
    margin-bottom: 10px;
  }
}
.fitterfly-values-rise .fv-rise-main .frv-info .info-head {
  font-size: 30px;
  line-height: normal;
  padding-bottom: 10px;
  position: relative;
}
.fitterfly-values-rise .fv-rise-main .frv-info .info-desc {
  font-size: 15px;
  line-height: normal;
  font-weight: 400;
}

.mission-sec {
  padding: 80px 0px;
}
@media only screen and (max-width: 1680px) {
  .mission-sec {
    padding: 60px 0;
  }
}
.mission-sec .mis-head .section-head p {
  margin-bottom: 10px;
  font-size: 22px;
}
.mission-sec .mis-head .section-head h4 {
  display: flex;
}
@media only screen and (max-width: 1024px) {
  .mission-sec .mis-head .section-head h4 {
    text-align: left;
    display: flex;
  }
}
.mission-sec .mis-head .section-head h2 {
  text-align: left;
}
@media only screen and (max-width: 1024px) {
  .mission-sec .mis-head .section-head h2 {
    margin-bottom: 25px;
  }
}
.mission-sec .mis-card-list-main .mis-card {
  box-shadow: 0px 0px 15px rgba(2, 29, 69, 0.1215686275);
  display: flex;
  align-items: center;
  padding: 30px;
  margin-bottom: 30px;
  border-radius: 6px;
  position: relative;
}
@media only screen and (max-width: 1024px) {
  .mission-sec .mis-card-list-main .mis-card {
    padding: 25px 20px;
    margin-bottom: 17px;
  }
}
.mission-sec .mis-card-list-main .mis-card:last-child {
  margin-bottom: 0px;
}
.mission-sec .mis-card-list-main .mis-card .icon {
  margin-right: 20px;
}
@media only screen and (max-width: 1024px) {
  .mission-sec .mis-card-list-main .mis-card .icon {
    margin-right: 15px;
  }
}
.mission-sec .mis-card-list-main .mis-card .icon img {
  display: block;
  width: 90%;
}
@media only screen and (max-width: 1024px) {
  .mission-sec .mis-card-list-main .mis-card .icon img {
    width: 48px;
  }
}
.mission-sec .mis-card-list-main .mis-card .info {
  text-align: left;
}
.mission-sec .mis-card-list-main .mis-card .info .title {
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 10px;
}
@media only screen and (max-width: 1024px) {
  .mission-sec .mis-card-list-main .mis-card .info .title {
    font-size: 18px;
    margin-bottom: 0px;
  }
}
.mission-sec .mis-card-list-main .mis-card .polygon-icon {
  display: block;
  position: absolute;
  right: 40px;
  z-index: 9;
}
@media only screen and (max-width: 1024px) {
  .mission-sec .mis-card-list-main .mis-card .polygon-icon {
    right: 20px;
  }
}
.mission-sec .mis-card-list-main .mis-card .polygon-icon img {
  display: block;
}

.about-us-journey {
  padding: 90px 0px;
  background: #E6F3FB;
}

.prof-card {
  box-shadow: none;
  height: 497px;
  margin-bottom: 66px;
  margin-right: 30px;
  margin-left: 30px;
  cursor: pointer;
  transition: all linear 0.2s;
}
.prof-card:hover {
  box-shadow: 0px 0px 5px rgba(2, 29, 69, 0.2);
}
@media only screen and (max-width: 1680px) {
  .prof-card {
    height: 355px;
    margin-bottom: 60px;
    margin-right: 15px;
    margin-left: 15px;
  }
}
@media only screen and (max-width: 1024px) {
  .prof-card {
    margin-right: 0px;
    margin-left: 0px;
    margin-bottom: 30px;
  }
}
.prof-card .prof-info {
  padding: 40px 30px 20px;
}
@media only screen and (max-width: 1680px) {
  .prof-card .prof-info {
    padding: 25px 20px 10px;
  }
}
.prof-card .prof-info .prof-pic {
  margin-bottom: 10px;
}
.prof-card .prof-info .prof-pic img {
  width: 180px;
  height: auto;
}
@media only screen and (max-width: 1680px) {
  .prof-card .prof-info .prof-pic img {
    width: 180px;
  }
}
.prof-card .prof-info .name {
  font-size: 26px;
  font-weight: 700;
  line-height: 35px;
  letter-spacing: 0.4px;
  color: #171717;
  margin-bottom: 12px;
}
@media only screen and (max-width: 1680px) {
  .prof-card .prof-info .name {
    font-size: 19px;
    line-height: 24px;
    letter-spacing: 0;
  }
}
@media only screen and (max-width: 1024px) {
  .prof-card .prof-info .name {
    font-size: 18px;
  }
}
.prof-card .prof-info span {
  display: block;
  font-size: 20px;
  font-weight: 400;
  line-height: 35px;
  letter-spacing: 0.32px;
  color: #171717;
}
@media only screen and (max-width: 1680px) {
  .prof-card .prof-info span {
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0;
  }
}
.prof-card .prof-linked {
  padding: 15px 10px;
}
@media only screen and (max-width: 1680px) {
  .prof-card .prof-linked {
    padding: 10px 8px;
  }
}
.prof-card .prof-linked a {
  font-size: 20px;
  font-weight: 400;
  line-height: 35px;
  letter-spacing: 0.32px;
  color: #171717;
  text-decoration: none;
}
@media only screen and (max-width: 1680px) {
  .prof-card .prof-linked a {
    font-size: 16px;
    line-height: 18px;
    letter-spacing: 0;
  }
}
.prof-card .prof-linked a .ln-icon {
  margin-right: 9px;
}
@media only screen and (max-width: 1680px) {
  .prof-card .prof-linked a .ln-icon {
    margin-right: 7px;
  }
  .prof-card .prof-linked a .ln-icon img {
    width: 24px;
  }
}
/* The actual timeline (the vertical ruler) */
.timeline {
  position: relative;
  margin: 0 auto;
  margin-top: 55px;
}
@media only screen and (max-width: 1680px) {
  .timeline {
    margin-top: 30px;
  }
}

/* The actual timeline (the vertical ruler) */
.timeline::after {
  content: "";
  position: absolute;
  width: 8px;
  background-color: #41B9D5;
  top: 0;
  bottom: 18%;
  left: 50%;
  margin-left: -3px;
}

/* Container around content */
.cont {
  padding: 0px 80px 20px 20px;
  position: relative;
  background-color: inherit;
  width: 50%;
}
@media only screen and (max-width: 1680px) {
  .cont {
    padding-right: 50px;
  }
}

/* The circles on the timeline */
.cont .circle {
  content: "";
  position: absolute;
  width: 160px;
  height: 160px;
  right: -80px;
  background-color: #41B9D5;
  top: 0px;
  border-radius: 50%;
  z-index: 1;
}
@media only screen and (max-width: 1680px) {
  .cont .circle {
    width: 100px;
    height: 100px;
    right: -50px;
  }
}
@media only screen and (max-width: 1024px) {
  .cont .circle {
    width: 60px;
    height: 60px;
    right: unset;
    left: 0px;
  }
}
.cont .circle .inner-cir {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 1px solid #fff;
}
@media only screen and (max-width: 1680px) {
  .cont .circle .inner-cir {
    width: 85px;
    height: 85px;
  }
}
@media only screen and (max-width: 1024px) {
  .cont .circle .inner-cir {
    width: 48px;
    height: 48px;
    border: 3px solid #fff;
  }
}
@media only screen and (max-width: 1680px) {
  .cont .circle .inner-cir img {
    width: 35px;
  }
}
@media only screen and (max-width: 1024px) {
  .cont .circle .inner-cir img {
    width: 21px;
  }
}

/* The actual content */
.timeline .content {
  padding: 0px 50px 20px 0px;
  position: relative;
}
@media only screen and (max-width: 1680px) {
  .timeline .content {
    padding: 0px 30px 20px 0px;
  }
}
@media only screen and (max-width: 1024px) {
  .timeline .content {
    padding: 0 0;
  }
}
.timeline .content h2 {
  font-size: 32px;
  line-height: 38px;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}
@media only screen and (max-width: 1680px) {
  .timeline .content h2 {
    font-size: 24px;
    line-height: 28px;
    letter-spacing: 0px;
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 1680px) {
  .timeline .content h2 {
    font-size: 18px;
    line-height: 24px;
  }
}

.right .content {
  padding: 0px 0px 20px 50px;
}
@media only screen and (max-width: 1680px) {
  .right .content {
    padding: 0px 0px 20px 30px;
  }
}
@media only screen and (max-width: 1024px) {
  .right .content {
    padding: 0px 0px;
  }
}

/* Place the container to the left */
.left {
  left: 0;
}
.left .content {
  text-align: right;
}
@media only screen and (max-width: 1024px) {
  .left .content {
    text-align: left;
  }
}
.left .content h2, .left .content p {
  text-align: right;
}
@media only screen and (max-width: 1024px) {
  .left .content h2, .left .content p {
    text-align: left;
  }
}

/* Place the container to the right */
.right {
  left: 50%;
  padding: 0px 20px 20px 80px;
}
@media only screen and (max-width: 1680px) and (min-width: 1024px) {
  .right {
    padding: 0px 100px 20px 50px;
  }
}
@media screen and (max-width: 1024px) {
  .right {
    padding: 0px 20px 20px 50px;
  }
}
.right .content {
  text-align: left;
}
.right .content h2, .right .content p {
  text-align: left;
}

/* Fix the circle for containers on the right side */
.right .circle {
  left: -80px;
}
@media only screen and (max-width: 1680px) {
  .right .circle {
    left: -50px;
  }
}
@media only screen and (max-width: 1024px) {
  .right .circle {
    left: 0px;
  }
}

.timeline-sec {
  padding-bottom: 80px;
}
@media only screen and (max-width: 1680px) {
  .timeline-sec {
    padding-bottom: 40px;
  }
}
@media only screen and (max-width: 1024px) {
  .timeline-sec {
    padding-bottom: 32px;
  }
}
.timeline-sec .section-head {
  margin-bottom: 50px;
}
@media only screen and (max-width: 1024px) {
  .timeline-sec .section-head {
    text-align: left;
  }
}

.mob-sec .section-head {
  margin-top: 60px;
}
@media only screen and (max-width: 1024px) {
  .mob-sec .section-head {
    margin-top: 0px;
  }
}
@media screen and (max-width: 768px) {
  .mob-sec .section-head {
    margin-bottom: 100px;
  }
}
.mob-sec .mob-img img {
  width: 540px;
}
@media only screen and (max-width: 1024px) {
  .mob-sec .mob-img img {
    width: auto;
    margin: 20px 0 0;
  }
}

.adv-carsouel .prof-pic img {
  display: unset;
  width: auto;
}

.programs-section .prof-card {
  margin-right: 50px;
  margin-left: 50px;
  border: none;
  margin-top: 10px;
  margin-bottom: 10px;
  max-width: 90%;
}
@media only screen and (max-width: 1680px) {
  .programs-section .prof-card {
    margin-right: 20px;
    margin-left: 20px;
    margin-bottom: 10px !important;
  }
}
@media only screen and (max-width: 1024px) {
  .programs-section .prof-card {
    margin-right: 15px;
    margin-left: 15px;
    max-width: 100%;
  }
}

/* Media queries - Responsive timeline on screens less than 600px wide */
@media only screen and (max-width: 1024px) {
  /* Place the timelime to the left */
  .timeline::after {
    left: 30px;
    width: 6px;
  }
  /* Full-width containers */
  .cont {
    width: 100%;
    padding-left: 75px;
    padding-right: 5px;
  }
  /* Make sure that all arrows are pointing leftwards */
  /* Make sure all circles are at the same spot */
  .left::after, .right::after {
    left: 15px;
  }
  /* Make all right containers behave like the left ones */
  .right {
    left: 0%;
  }
}
.team-sec {
  margin-bottom: 54px;
}
@media only screen and (max-width: 1680px) {
  .team-sec {
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 1024px) {
  .team-sec {
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 1024px) {
  .team-sec .section-head {
    text-align: left;
    margin-bottom: 20px;
  }
  .team-sec .section-head p {
    text-align: left;
    margin-bottom: 0;
  }
  .team-sec .section-head h2.mb-40 {
    margin-bottom: 15px;
  }
}

.thank-you-block {
  text-align: center;
}
.thank-you-block .form-intro {
  min-height: 583px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 40px;
}
.thank-you-block .form-intro .form-intro-head .tick-mark {
  width: 50px;
  height: 50px;
  margin: auto;
  margin-bottom: 10px;
}
.thank-you-block .form-intro .form-intro-head .thankyou-desc strong {
  font-size: 24px;
  letter-spacing: 0px;
  line-height: 30px;
  text-align: center;
  font-weight: 600;
  display: block;
  margin: 0 auto;
  margin-bottom: 10px;
}
.thank-you-block .form-intro .form-intro-head .thankyou-desc p {
  font-size: 19px;
  line-height: 30px;
}

.es-about-pad, .as-about-pad {
  padding: 90px 0px;
}
@media only screen and (max-width: 1680px) {
  .es-about-pad, .as-about-pad {
    padding: 60px 0;
  }
}
@media only screen and (max-width: 1024px) {
  .es-about-pad, .as-about-pad {
    padding: 40px 0;
  }
  .es-about-pad .award-block .mt-60, .as-about-pad .award-block .mt-60 {
    margin-top: 30px;
  }
}

.es-about-pad .section-head.text-center h2 br {
  display: none;
}
@media only screen and (max-width: 1024px) {
  .es-about-pad .section-head.text-center {
    text-align: center;
  }
  .es-about-pad .section-head.text-center h2 {
    padding-right: 0px;
  }
  .es-about-pad .section-head.text-center h2 br {
    display: block;
  }
}

@media only screen and (max-width: 1024px) {
  .as-about-pad .section-head.text-center {
    text-align: center;
  }
}

.in-the-news {
  padding: 90px 0px;
}
@media only screen and (max-width: 1680px) {
  .in-the-news {
    padding: 60px 0px;
  }
}
@media only screen and (max-width: 1024px) {
  .in-the-news {
    padding: 50px 0;
  }
  .in-the-news .section-head {
    text-align: left;
  }
}
.in-the-news .news-list-main {
  margin-top: 40px;
}
@media only screen and (max-width: 1680px) {
  .in-the-news .news-list-main {
    margin-top: 10px;
  }
}
@media only screen and (max-width: 1024px) {
  .in-the-news .news-list-main {
    margin-top: 0px;
  }
}
.in-the-news .news-list-main .nl-box {
  box-shadow: 0px 0px 20px rgba(2, 29, 69, 0.1215686275);
  border-radius: 6px;
  text-align: left;
  margin: 20px;
  background: #fff;
}
@media only screen and (max-width: 1024px) {
  .in-the-news .news-list-main .nl-box {
    margin-bottom: 30px;
  }
}
.in-the-news .news-list-main .nl-box .nlb-image {
  height: 200px;
  background-size: cover;
  display: block;
}
.in-the-news .news-list-main .nl-box .nlb-image img {
  display: block;
  height: auto;
}
.in-the-news .news-list-main #news-owl-carousel .news-col-block {
  min-width: 100%;
}
.in-the-news .news-list-main .news-col-block {
  margin-bottom: 30px;
}
.in-the-news .news-list-main .news-col-block .nl-box {
  margin: 0;
}
.in-the-news .news-list-main .nlb-info {
  padding: 20px;
  min-height: 255px;
}
@media only screen and (max-width: 1024px) {
  .in-the-news .news-list-main .nlb-info {
    min-height: auto;
  }
}
.in-the-news .news-list-main .nlb-info .newspaper-time {
  display: flex;
  flex-direction: row;
  align-items: center;
  font-size: 14px;
  line-height: 20px;
  color: #7A8693;
  margin-bottom: 10px;
  font-weight: 300;
}
.in-the-news .news-list-main .nlb-info .newspaper-time span {
  padding-left: 10px;
  padding-right: 10px;
}
.in-the-news .news-list-main .nlb-info .newspaper-time img {
  display: block;
  height: fit-content;
  max-width: 110px;
  width: unset;
}
.in-the-news .news-list-main .nlb-info .news-title {
  font-size: 21px;
  line-height: 30px;
  font-family: "Inter", sans-serif;
  font-display: swap;
  font-weight: 600;
  color: #021D45;
  margin-bottom: 15px;
}
@media only screen and (max-width: 1280px) {
  .in-the-news .news-list-main .nlb-info .news-title {
    font-size: 16px;
    line-height: 20px;
  }
}
@media only screen and (max-width: 1024px) {
  .in-the-news .news-list-main .nlb-info .news-title {
    min-height: auto;
  }
}
.in-the-news .news-list-main .nlb-info .news-title .news-title-pad {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  white-space: normal;
  overflow: hidden;
  text-overflow: ellipsis;
}
.in-the-news .news-list-main .nlb-info a.news-read-more {
  font-weight: 500;
  font-size: 16px;
  color: #0B6295;
  line-height: 24px;
}
@media only screen and (max-width: 1024px) {
  .in-the-news .news-list-main .mt-60 {
    margin-top: 20px;
  }
}
@media only screen and (max-width: 1024px) {
  .in-the-news .news-list-main .mt-40 {
    margin-top: 20px;
  }
}

.ff-journey {
  background: rgba(134, 197, 235, 0.2);
}
.ff-journey .journey-bg {
  background-image: url("https://site-assets.fitterfly.com/site-assets/images/site-1/journey-bg.svg");
  background-size: contain;
}
.ff-journey .section-head {
  margin-bottom: 50px;
}
@media only screen and (max-width: 1024px) {
  .ff-journey .section-head {
    margin-bottom: 30px;
  }
  .ff-journey .section-head h2 {
    text-align: left;
  }
}
.ff-journey .time-journey {
  position: relative;
  display: flex;
  flex-direction: column;
  margin: 50px 0 0;
}
.ff-journey .time-journey .center-sec {
  width: 100%;
  float: left;
  margin: 1px;
  overflow: hidden;
  white-space: nowrap;
}
.ff-journey .time-journey .center-sec img {
  width: auto;
  height: auto;
}
.ff-journey .time-journey .scroll-prev, .ff-journey .time-journey .scroll-next {
  background: none;
  border: none;
}

@media screen and (max-width: 1024px) {
  .case-study-detail .header .icon-burger .burger-patty {
    display: block;
    position: absolute;
    left: unset;
    margin: 0px;
    right: unset;
  }
}
.case-study-detail h1 {
  text-align: left;
  margin-bottom: 20px;
  font-size: 35px;
  line-height: normal;
}
@media screen and (max-width: 1024px) {
  .case-study-detail h1 {
    font-size: 25px;
  }
}
.case-study-detail h2 {
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .case-study-detail h2 {
    font-size: 20px;
  }
}
.case-study-detail .inside-list {
  margin-left: 15px;
}
.case-study-detail .sub-head.mb0 {
  margin-bottom: 0 !important;
}
.case-study-detail .blank-div {
  display: none;
}
.case-study-detail .l-subsection-h {
  padding: 60px 0px 60px 0px;
}
@media screen and (max-width: 1024px) {
  .case-study-detail .l-subsection-h {
    padding: 40px 0px;
  }
}
.case-study-detail .result-sec {
  padding-top: 60px;
  padding-bottom: 60px;
}
.case-study-detail .result-sec h3 {
  margin-bottom: 15px;
  text-align: center;
}
.case-study-detail .result-sec .sub-head {
  text-align: center;
  margin-bottom: 35px;
  font-size: 22px;
  color: #333;
  font-weight: 500;
}
@media screen and (max-width: 1024px) {
  .case-study-detail .result-sec .sub-head {
    font-size: 18px;
  }
}
.case-study-detail .result-sec p {
  text-align: center;
}
.case-study-detail .table-holder {
  box-shadow: 0px 0px 10px -6px #000;
  border-radius: 15px;
  max-width: 1093px;
  overflow: scroll;
  margin: 0 auto;
}
.case-study-detail .table-holder br {
  display: none;
}
.case-study-detail .table-holder table {
  width: 100%;
}
.case-study-detail .table-holder table thead tr {
  border-bottom: 2px solid #e0e0e0;
}
.case-study-detail .table-holder table thead tr th {
  padding: 20px 15px 15px 15px;
  text-align: center;
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  color: #333333;
}
.case-study-detail .table-holder table thead tr th:first-child {
  padding-left: 45px;
}
.case-study-detail .table-holder table tbody tr {
  border-bottom: 1px solid #e0e0e0;
}
.case-study-detail .table-holder table tbody tr td {
  padding: 20px 15px 20px 15px;
  font-size: 16px;
  line-height: 26px;
  font-weight: 300;
  color: #333333;
  max-width: 155px;
}
.case-study-detail .table-holder table tbody tr td .std-param {
  display: block;
  font-size: 12px;
  line-height: 15px;
  color: #333333;
  font-weight: 300;
}
.case-study-detail .table-holder table tbody tr td:first-child {
  padding-left: 45px;
}
.case-study-detail .table-holder table tbody tr td:last-child {
  padding-right: 45px;
}
.case-study-detail .table-holder table tbody tr td ul {
  margin-left: 15px;
}
.case-study-detail .table-holder table tbody tr td ul li {
  position: relative;
  font-size: 16px;
  line-height: 26px;
  font-weight: 300;
  color: #333333;
  margin-bottom: 5px;
}
.case-study-detail .table-holder table tbody tr td ul li:last-child {
  margin-bottom: 0;
}
.case-study-detail .table-holder table tbody tr td ul li:before {
  content: "-";
  text-indent: -5px;
  position: absolute;
  left: -10px;
}
.case-study-detail .table-holder table tbody tr:last-child {
  border: 0;
}
.case-study-detail .grey-bg {
  background: #fafafa;
}
.case-study-detail .grey-bg .table-holder {
  background: #fff;
}
@media screen and (max-width: 1024px) {
  .case-study-detail .header.fixed {
    height: 65px;
  }
}
.case-study-detail .case-study-head {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .case-study-detail .case-study-head {
    padding: 0px 20px;
  }
}
.case-study-detail .case-study-head .study-num {
  font-weight: 400;
  color: #333333;
  font-size: 24px;
  line-height: 29px;
  margin-right: 10px;
}
@media screen and (max-width: 1024px) {
  .case-study-detail .case-study-head .study-num {
    font-size: 16px;
    line-height: 24px;
  }
}
.case-study-detail .case-study-head .custom-name {
  color: #333333;
  font-size: 24px;
  line-height: 29px;
  font-weight: 300;
}
@media screen and (max-width: 1024px) {
  .case-study-detail .case-study-head .custom-name {
    font-size: 16px;
    line-height: 24px;
  }
}
.case-study-detail .short-head {
  background: #EFF5FA;
}
.case-study-detail .short-head .study-num {
  font-weight: 400;
  color: #333333;
  font-size: 24px;
  line-height: 29px;
  margin-right: 10px;
}
@media screen and (max-width: 1024px) {
  .case-study-detail .short-head .study-num {
    font-size: 16px;
    line-height: 20px;
  }
}
.case-study-detail .short-head .custom-name {
  color: #333333;
  font-size: 24px;
  line-height: 29px;
  font-weight: 300;
}
@media screen and (max-width: 1024px) {
  .case-study-detail .short-head .custom-name {
    font-size: 16px;
    line-height: 20px;
  }
}
.case-study-detail .short-head .case-study-name {
  max-width: 1280px;
  display: block;
  padding: 30px 0;
  font-size: 16px;
  line-height: 24px;
  margin: 0 auto;
  display: flex;
  align-items: center;
}
.case-study-detail .patient-detail {
  padding-bottom: 60px;
}
.case-study-detail .patient-detail .sub-head {
  font-weight: 300;
  margin-bottom: 10px;
}
@media screen and (max-width: 1024px) {
  .case-study-detail .patient-detail .sub-head {
    margin-bottom: 0;
  }
}
.case-study-detail .patient-banner {
  margin-bottom: 40px;
  padding-top: 40px;
}
.case-study-detail .patient-banner .banner-img img {
  width: 299px;
  height: 299px;
  border-radius: 50%;
  display: block;
  margin: auto 0 auto auto;
}
@media screen and (max-width: 1024px) {
  .case-study-detail .patient-banner .banner-img img {
    margin: auto;
  }
}
@media screen and (max-width: 1024px) {
  .case-study-detail .patient-banner {
    margin-bottom: 0;
  }
}
.case-study-detail .patient-banner .banner-sec {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 300px;
}
@media screen and (max-width: 1024px) {
  .case-study-detail .patient-banner .banner-sec {
    flex-direction: column-reverse;
    align-items: flex-start;
    justify-content: flex-end;
    min-height: unset;
    margin-bottom: 30px;
  }
}
.case-study-detail .patient-banner .banner-sec .banner-info {
  max-width: 775px;
  padding-left: 0;
}
.case-study-detail .patient-banner .banner-sec .banner-info img {
  width: 173px;
  margin-bottom: 30px;
  display: block;
}
.case-study-detail .patient-banner .banner-sec .banner-info p {
  margin-bottom: 10px;
  max-width: 695px;
}
.case-study-detail .patient-banner .banner-sec .banner-info p:last-child {
  margin-bottom: 0;
}
.case-study-detail .patient-banner .banner-sec .banner-info h3 {
  text-align: left;
  margin-bottom: 30px;
}
@media screen and (max-width: 1024px) {
  .case-study-detail .patient-banner .banner-sec .banner-info h3 {
    margin-bottom: 15px;
  }
}
.case-study-detail .patient-banner .banner-img {
  flex: none;
}
@media screen and (max-width: 1024px) {
  .case-study-detail .patient-banner .banner-img {
    margin-bottom: 35px;
    margin-top: 15px;
  }
}
.case-study-detail .patient-banner .banner-img img {
  display: block;
}
@media screen and (max-width: 1024px) {
  .case-study-detail .patient-banner .banner-img img {
    max-width: 200px;
    height: auto;
  }
}
.case-study-detail .patient-prof {
  margin-bottom: 40px;
}
.case-study-detail .patient-prof .prof-head {
  font-size: 28px;
  font-weight: 600;
  line-height: 29px;
  color: #333333;
  margin-bottom: 20px;
  text-align: left !important;
}
@media screen and (max-width: 1024px) {
  .case-study-detail .patient-prof .prof-head {
    font-size: 20px;
  }
}
.case-study-detail .improvemnt-list {
  max-width: 600px;
  margin: 0 auto 50px;
}
.case-study-detail .improvemnt-list li {
  font-size: 16px;
  color: #666;
  letter-spacing: 0.2px;
  line-height: 24px;
  margin-bottom: 20px;
  position: relative;
  text-align: left;
}
@media screen and (max-width: 1024px) {
  .case-study-detail .improvemnt-list li {
    padding-left: 15px;
  }
}
.case-study-detail .improvemnt-list li:before {
  width: 10px;
  height: 10px;
  background: #000;
  border-radius: 50%;
  display: block;
  position: absolute;
  content: "";
  left: -20px;
  top: 6px;
}
@media screen and (max-width: 1024px) {
  .case-study-detail .improvemnt-list li:before {
    left: 0px;
    top: 8px;
    width: 7px;
    height: 7px;
  }
}
.case-study-detail .improvemnt-list li:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 1024px) {
  .case-study-detail .prof-details .g-cols {
    display: block;
  }
  .case-study-detail .prof-details .g-cols .prof-item {
    width: 100% !important;
    margin-left: 0 !important;
    margin-bottom: 0;
  }
  .case-study-detail .prof-details .g-cols .prof-item .col-md-2 {
    margin-bottom: 10px;
  }
}
.case-study-detail .prof-details .notes {
  margin-left: 15px;
}
.case-study-detail .prof-details .notes li {
  position: relative;
  font-size: 16px;
  line-height: 26px;
  color: #333333;
  font-weight: 300;
  text-align: left;
}
.case-study-detail .prof-details .notes li:before {
  content: "-";
  text-indent: -5px;
  position: absolute;
  left: -10px;
}
.case-study-detail .journey-sec {
  padding: 60px 0;
}
.case-study-detail .journey-sec .table-holder {
  margin-bottom: 40px;
}
@media screen and (max-width: 1024px) {
  .case-study-detail .journey-sec .table-holder {
    margin-bottom: 30px;
  }
}
.case-study-detail .journey-sec h3 {
  margin-bottom: 15px;
}
.case-study-detail .journey-sec .sub-head {
  font-size: 16px;
  text-align: center;
  margin-bottom: 25px;
  font-weight: 300;
  max-width: 1015px;
  margin: 0 auto 25px auto;
}
.case-study-detail .journey-sec .sub-head.mb0 {
  margin-bottom: 0;
}
.case-study-detail .journey-sec .journey-item strong {
  font-size: 16px;
  font-weight: 500;
  color: #333333;
  line-height: 26px;
  text-align: center;
  display: block;
  margin-bottom: 5px;
}
.case-study-detail .feedback-sec {
  padding: 60px 0;
}
.case-study-detail .pbm-area-sec {
  padding: 60px 0;
}
.case-study-detail .pbm-area-sec .sub-head {
  text-align: center;
  max-width: 956px;
  margin: 0 auto 25px auto;
  font-weight: 300;
}
@media screen and (max-width: 1024px) {
  .case-study-detail .pbm-area-sec .sub-head.last {
    margin-bottom: 0;
  }
}
.case-study-detail .pbm-area-sec .sub-head:last-child {
  font-weight: 500;
}
.case-study-detail .pbm-area-sec .table-holder {
  margin-bottom: 40px;
}
.case-study-detail .pbm-area-sec .table-holder tbody tr td:last-child {
  font-weight: 400;
}
.case-study-detail .pbm-area-sec .table-holder tbody tr td:last-child li {
  font-weight: 400;
}
.case-study-detail .improvement .result-sub-head {
  text-align: center;
  margin-bottom: 35px;
  font-size: 22px;
  color: #333;
  font-weight: 500;
}
.case-study-detail .patient-feedback {
  text-align: center;
}
.case-study-detail .patient-feedback .link {
  font-weight: 300;
}
.case-study-detail .patient-feedback .pat-img {
  display: block;
  margin-bottom: 25px;
}
.case-study-detail .patient-feedback .pat-img img {
  display: block;
  margin: 0 auto;
}
.case-study-detail .patient-feedback .pat-msg {
  display: block;
  font-size: 24px;
  line-height: 34px;
  color: #333333;
  font-style: italic;
  max-width: 787px;
  margin: 0 auto 20px auto;
  font-weight: 400;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .case-study-detail .patient-feedback .pat-msg {
    font-size: 20px;
    line-height: 26px;
  }
}
.case-study-detail .patient-feedback .pat-msg:before {
  background: url(/assets/qoutes-icon.svg) no-repeat;
  content: "";
  width: 40px;
  height: 439px;
  left: -40px;
  top: -10px;
  position: absolute;
}
.case-study-detail .patient-feedback .msg-note {
  display: block;
  font-size: 16px;
  line-height: 26px;
  color: #333333;
  font-weight: 300;
}
.case-study-detail .abt-diabefly {
  padding: 60px 0;
  text-align: center;
}
.case-study-detail .abt-diabefly .sub-head {
  max-width: 740px;
  margin: 0 auto 25px auto;
  font-weight: 300;
}
.case-study-detail .abt-diabefly .foot-note {
  font-size: 12px;
  line-height: 22px;
  color: #666666;
  font-weight: 300;
  display: block;
  max-width: 725px;
  margin: 0 auto;
}
.case-study-detail .left-align-items {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 20px;
}
.case-study-detail .left-align-items i {
  display: block;
  font-size: 16px;
  line-height: 26px;
  color: #333333;
  font-weight: 500;
  font-style: normal;
}
.case-study-detail .left-align-items span {
  display: block;
  font-size: 16px;
  line-height: 26px;
  color: #333333;
  font-weight: 300;
  text-align: left;
}
.case-study-detail .link {
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 0.3px;
  font-weight: 600;
  text-align: left;
  text-decoration: underline;
  color: #021D45;
  cursor: pointer;
}

.sitemap-sec {
  text-align: left;
}
.sitemap-sec .sitemap-head {
  background-color: #305FA5;
}
.sitemap-sec .pad-baned {
  padding: 60px 0;
}
.sitemap-sec .pad-baned h1 {
  font-size: 40px;
  font-weight: 500;
  line-height: 44px;
  color: #fff;
}
.sitemap-sec .sitempa-link-sec {
  padding: 60px 0;
}
.sitemap-sec .sitempa-link-sec .row:first-child {
  margin-bottom: 30px;
}
.sitemap-sec .sitempa-link-sec .sitemap-links {
  padding-top: 20px;
}
.sitemap-sec .sitempa-link-sec .sitemap-links li a {
  color: #0b6295;
  text-decoration: none;
  margin-bottom: 10px;
  display: block;
  font-size: 14px;
}

.terms-and-condition .sitemap-head {
  background-color: rgba(0, 0, 0, 0.1607843137);
  background: url("https://site-assets.fitterfly.com/site-assets/images/site-1/terms-banner.webp") no-repeat center;
}
.terms-and-condition .terms-of-use-sec {
  background-color: rgba(134, 197, 235, 0.2);
  margin: 0;
}
@media only screen and (max-width: 1024px) {
  .terms-and-condition .terms-of-use-sec {
    padding: 40px 0;
  }
}
@media only screen and (max-width: 1024px) {
  .terms-and-condition .pad-baned {
    padding: 50px 0;
  }
}
.terms-and-condition .pad-baned h1 {
  font-size: 48px;
  font-weight: 600;
  line-height: 58px;
  color: #171717;
}
@media only screen and (max-width: 1024px) {
  .terms-and-condition .pad-baned h1 {
    font-size: 32px;
    line-height: 44px;
    display: flex;
  }
}
.terms-and-condition .pad-baned .back-icon {
  display: none;
}
@media only screen and (max-width: 1024px) {
  .terms-and-condition .pad-baned .back-icon img {
    width: 30px;
  }
  .terms-and-condition .pad-baned .back-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-right: 8px;
  }
}
.terms-and-condition .terms-sec {
  margin-bottom: 50px;
}
@media only screen and (max-width: 1024px) {
  .terms-and-condition .terms-sec {
    margin-bottom: 40px;
  }
}
.terms-and-condition .terms-sec h2 {
  font-size: 28px;
  font-weight: 600;
  line-height: 36px;
  color: #171717;
  letter-spacing: 0px;
  text-transform: uppercase;
  margin-bottom: 30px;
}
@media only screen and (max-width: 1024px) {
  .terms-and-condition .terms-sec h2 {
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 12px;
  }
}
.terms-and-condition .terms-sec ul li {
  position: relative;
  font-size: 15px;
  font-weight: 400;
  line-height: 24px;
  color: #171717;
  letter-spacing: 0px;
  padding-left: 24px;
  margin-bottom: 16px;
}
@media only screen and (max-width: 1024px) {
  .terms-and-condition .terms-sec ul li {
    font-size: 14px;
    line-height: 22px;
    padding-left: 20px;
    margin-bottom: 12px;
  }
}
.terms-and-condition .terms-sec ul li::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 0;
  width: 10px;
  height: 10px;
  background-color: #171717;
  border-radius: 50%;
}
@media only screen and (max-width: 1024px) {
  .terms-and-condition .terms-sec ul li::before {
    width: 8px;
    height: 8px;
  }
}
.terms-and-condition .terms-note {
  font-size: 15px;
  line-height: 24px;
  letter-spacing: 0.35px;
  font-style: italic;
  color: #171717;
  font-weight: 600;
}

.media-coverage-page .year-column-wrap {
  display: flex;
  border-top: 1px solid #cccccc;
  border-bottom: 1px solid #cccccc;
}
@media only screen and (max-width: 1024px) {
  .media-coverage-page .year-column-wrap {
    display: none;
  }
}
@media only screen and (max-width: 1024px) {
  .media-coverage-page .card-detail {
    color: #111a28 !important;
    margin-top: 0 !important;
  }
}
@media only screen and (max-width: 1024px) {
  .media-coverage-page .card-info {
    border: 0 !important;
    padding: 0 !important;
  }
}
.media-coverage-page .year-column-list {
  display: flex;
  width: 91.79%;
  max-width: 1280px;
  justify-content: flex-start;
  margin: 0 auto;
  list-style-type: none;
}
.media-coverage-page .year-column-list li a {
  padding: 15px 15px;
  border-left: 1px solid #ccc;
  min-width: 160px;
  font-weight: 400;
  font-size: 21px;
  line-height: 29px;
  color: #012043;
  font-weight: 400;
  text-align: center;
  display: block;
}
.media-coverage-page .year-column-list li a.active, .media-coverage-page .year-column-list li a:hover {
  font-weight: 600;
  background-color: #eff5fa;
  cursor: pointer;
}
.media-coverage-page .year-column-list li a:last-child {
  border-right: 1px solid #ccc;
}
.media-coverage-page .year-column-list li a::marker {
  display: none;
  width: 0;
  height: 0;
}
.media-coverage-page .year-column-list li.active a {
  font-weight: 600;
  background-color: #eff5fa;
  cursor: pointer;
}
.media-coverage-page .year-column-list li.news-2019 {
  display: none;
}
@media only screen and (max-width: 1024px) {
  .media-coverage-page .media-head .selection-box select {
    padding: 7px 10px;
    border: 1px solid #d8d8d8;
    border-radius: 4px;
    font-size: 14px;
    line-height: 20px;
    color: #031931;
    min-width: 94px;
    -webkit-appearance: none;
    -moz-appearance: none;
    text-indent: 1px;
    background: url(https://site-assets.fitterfly.com/site-assets/images/select-arrow.svg) no-repeat right #fff;
    background-position: 70px;
  }
}
.media-coverage-page .article-sec .card-item .card-info h4 a {
  color: #111a28;
  cursor: pointer;
}
.media-coverage-page .media-coverage-sec {
  margin-top: 150px;
}
@media only screen and (max-width: 1024px) {
  .media-coverage-page .media-coverage-sec {
    margin-top: 120px;
  }
}
.media-coverage-page .media-coverage-sec .sec-head {
  margin: 0 auto 21px;
}
@media only screen and (max-width: 1024px) {
  .media-coverage-page .media-coverage-sec .sec-head {
    margin: 0 auto 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-right: 0;
  }
}
@media only screen and (max-width: 1024px) and (max-width: 520px) {
  .media-coverage-page .media-coverage-sec .sec-head {
    padding-right: 20px;
  }
}
.media-coverage-page .media-coverage-sec .sec-head h1 {
  font-size: 32px;
  line-height: 46px;
  font-weight: 600;
  margin-bottom: 0;
  text-align: left;
}
@media only screen and (max-width: 1024px) {
  .media-coverage-page .media-coverage-sec .sec-head h1 {
    font-size: 20px;
    line-height: 26px;
    margin-left: 10px;
  }
}
.media-coverage-page .media-coverage-sec .l-subsection-h {
  padding: 50px 0 65px 0;
}
@media only screen and (max-width: 1024px) {
  .media-coverage-page .media-coverage-sec .l-subsection-h {
    padding: 20px 0 40px 0;
  }
}
.media-coverage-page .article-wrapper {
  flex-wrap: wrap;
  justify-content: flex-start;
}
.media-coverage-page .article-wrapper .card-item {
  margin-bottom: 35px;
}
@media only screen and (max-width: 1024px) {
  .media-coverage-page .article-wrapper .card-item {
    margin-bottom: 0;
  }
}
.media-coverage-page .media-coverage-block {
  background: url(/site2/images/media-coverage.webp) no-repeat center top;
  background-size: cover;
}
@media only screen and (max-width: 1024px) {
  .media-coverage-page .media-coverage-block {
    background-position: left center;
  }
}
.media-coverage-page .media-coverage-block .card-item {
  margin: 15px;
  border-radius: 10px;
}
@media only screen and (max-width: 1024px) {
  .media-coverage-page .media-coverage-block .card-item {
    margin: 0;
    background-color: rgba(255, 255, 255, 0.9);
  }
}
.media-coverage-page .media-coverage-block .sec-head {
  margin-bottom: 35px;
}
.media-coverage-page .media-coverage-block .l-subsection-h {
  padding: 100px 0 65px 0;
}
@media only screen and (max-width: 1024px) {
  .media-coverage-page .media-coverage-block .l-subsection-h {
    padding: 40px 0;
  }
}
@media only screen and (max-width: 1024px) {
  .media-coverage-page .media-coverage-block .sec-head {
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 1024px) {
  .media-coverage-page .media-coverage-block .article-sec .card-item .card-info .card-info-pad {
    padding: 20px;
  }
}
.media-coverage-page .article-sec {
  padding: 50px 0 65px 0;
}
@media only screen and (max-width: 1024px) {
  .media-coverage-page .article-sec {
    padding: 20px 0 40px 0;
  }
}
.media-coverage-page .article-sec .card-item .card-img-block {
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 218px;
  border-radius: 10px;
}
.media-coverage-page .article-sec .card-item .card-info {
  text-align: left;
}
@media only screen and (max-width: 1024px) {
  .media-coverage-page .article-sec .card-item .card-info {
    max-width: 450px;
    margin: auto;
  }
}
.media-coverage-page .article-sec .card-item .card-info .card-info-pad {
  padding: 30px;
}
@media only screen and (max-width: 1024px) {
  .media-coverage-page .article-sec .card-item .card-info .card-info-pad {
    padding: 10px 30px 20px;
  }
}
.media-coverage-page .article-sec .card-item .card-info .card-detail {
  font-size: 14px;
  line-height: 20px;
  color: #7A8693;
  margin-bottom: 10px;
  display: block;
  font-weight: 300;
}
@media only screen and (max-width: 1024px) {
  .media-coverage-page .article-sec .card-item .card-info .card-detail {
    font-size: 12px;
    line-height: 19px;
    margin-top: 15px;
    margin-bottom: 5px;
  }
}
.media-coverage-page .article-sec .card-item .card-info .card-title {
  font-size: 21px;
  line-height: 30px;
  font-family: "Inter", sans-serif;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  white-space: normal;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-left: 0;
  letter-spacing: -0.5px;
  font-weight: 600;
  color: #111a28;
}
@media only screen and (max-width: 1024px) {
  .media-coverage-page .article-sec .card-item .card-info .card-title {
    font-size: 16px;
    line-height: 26px;
  }
}
.media-coverage-page .article-sec .card-item .card-info .card-title a {
  color: #111a28;
  cursor: pointer;
}
.media-coverage-page .article-sec .card-item .card-info .read-more-link {
  margin-top: 20px;
}
@media only screen and (max-width: 1024px) {
  .media-coverage-page .article-sec .card-item .card-info .read-more-link {
    margin-top: 12px;
  }
}
.media-coverage-page .article-sec .card-item .card-info .read-more-link .text-link {
  font-weight: 500;
  font-size: 16px;
  color: #0B6295;
  line-height: 24px;
  cursor: pointer;
}
@media only screen and (max-width: 1024px) {
  .media-coverage-page .article-sec .card-item .card-info .read-more-link .text-link {
    font-size: 14px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .media-coverage-page .media-coverage-sec .card-img-block img, .media-coverage-page .article-sec .card-img-block img, .media-coverage-page .card-item .card-img-block img {
    max-width: 450px;
  }
}

.faq-section .faq-block {
  background: #fff;
  box-shadow: 0px 0px 20px rgba(2, 29, 69, 0.12);
  border-radius: 10px;
}
.faq-section .faq-list .faq-item {
  cursor: pointer;
  border-bottom: 1px solid rgba(23, 23, 23, 0.2);
}
.faq-section .faq-list .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-section .faq-list .faq-question .accordion-icon {
  align-self: flex-end;
  border-width: 10px 5px;
  border-style: solid;
  transform: rotate(360deg);
  transition: all 0.8s;
  border-color: #E0E0E0 transparent transparent transparent;
  transform: rotate(180deg);
  transition: all 0.8s;
  border-color: #2F5FA4 transparent transparent transparent;
}
.faq-section .faq-list .bullet-list li {
  font-size: 14px;
  line-height: 18px;
  color: #4a4a4a;
  margin-bottom: 10px;
  position: relative;
  padding-left: 20px;
  font-family: "roboto", sans-serif;
  font-display: swap;
  font-weight: 400;
}
.faq-section .faq-list .bullet-list li:before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50px;
  -moz-border-radius: 50px;
  -webkit-border-radius: 50px;
  position: absolute;
  left: 3px;
  top: 7px;
  background-color: #fbcb44;
}
.faq-section .faq-list a {
  text-decoration: none;
  cursor: pointer;
  color: #0b6295;
}
.cta-sec {
  background-color: #86C5EB;
  text-align: center;
}
.cta-sec .row {
  justify-content: center;
}
.cta-sec .cta-block {
  padding: 60px 0px;
}
.cta-sec .cta-block h2 {
  font-size: 22px;
  font-weight: 400;
  text-align: center;
  margin-bottom: 20px;
}
.cta-sec .cta-block .btn, .cta-sec .cta-block .black-btn, .cta-sec .cta-block .white-btn, .cta-sec .cta-block .teal-btn, .cta-sec .cta-block .bdr-btn {
  background-color: #CF2D7B;
  width: auto;
}
.cta-sec .cta-block a {
  text-decoration: none;
  cursor: pointer;
  color: #fff;
}

.privacy-policy-sec {
  padding: 30px 0px 60px;
  margin: 0 15px;
}
.privacy-policy-sec .number-list {
  margin-left: 20px;
}
.privacy-policy-sec .number-list > li {
  list-style-type: decimal;
  font-weight: 700;
  color: #000;
}
@media only screen and (max-width: 768px) {
  .privacy-policy-sec .number-list > li {
    font-size: 13px;
  }
}
.privacy-policy-sec .alpha-list {
  padding: 0 15px;
  margin-top: 10px;
}
@media only screen and (max-width: 768px) {
  .privacy-policy-sec .alpha-list {
    padding: 0px;
  }
}
.privacy-policy-sec .alpha-list > li {
  list-style-type: lower-alpha;
  font-weight: 600;
  color: #4a4a4a;
}
.privacy-policy-sec .num-list {
  margin-left: 16px;
}
.privacy-policy-sec .num-list li {
  list-style-type: decimal;
  color: #000;
  margin-bottom: 5px;
  padding-left: 10px;
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: #4a4a4a;
  letter-spacing: 0;
}
.privacy-policy-sec .roman-list {
  padding: 0 15px;
  margin-top: 10px;
}
.privacy-policy-sec .roman-list li {
  list-style-type: lower-roman;
  font-weight: 700;
  color: #4a4a4a;
}
.privacy-policy-sec p {
  margin-bottom: 25px;
  text-align: justify;
}
@media only screen and (max-width: 768px) {
  .privacy-policy-sec p {
    font-size: 13px;
  }
}
@media only screen and (max-width: 1024px) {
  .privacy-policy-sec p {
    margin-bottom: 10px;
  }
}
.privacy-policy-sec a {
  text-decoration: none;
  cursor: pointer;
  color: #0b6295;
}
.privacy-policy-sec .table-bordered {
  border: 1px solid #ddd;
}
.privacy-policy-sec .table-bordered td {
  font-size: 14px;
  letter-spacing: 0px;
  line-height: 22px;
  color: #333333;
  font-weight: 400;
  margin-bottom: 25px;
  border-bottom: 1px solid #ddd;
  padding: 15px;
  border: 1px solid #ddd;
  border-top: 0;
  border-left: 0;
}
@media only screen and (max-width: 768px) {
  .privacy-policy-sec .table-bordered td {
    font-size: 13px;
  }
}
@media only screen and (max-width: 320px) {
  .privacy-policy-sec .table-bordered td {
    padding: 10px;
  }
}
.privacy-policy-sec .table-bordered td:last-child {
  border-right: 0;
}
.privacy-policy-sec .table-bordered th {
  border-bottom: 1px solid #ddd;
  padding: 20px;
  border: 1px solid #ddd;
  border-top: 0;
  border-left: 0;
}
@media only screen and (max-width: 768px) {
  .privacy-policy-sec .table-bordered th {
    font-size: 13px;
  }
}
@media only screen and (max-width: 320px) {
  .privacy-policy-sec .table-bordered th {
    padding: 10px;
  }
}
.privacy-policy-sec table {
  width: 100%;
  max-width: 100%;
  margin-bottom: 20px;
}

.speak-to-us-sec {
  padding: 80px 0px;
  background-color: #EAFAFF;
}
@media only screen and (max-width: 1024px) {
  .speak-to-us-sec {
    padding: 40px 0px;
  }
  .speak-to-us-sec.mar-t-140 {
    margin-top: 90px;
  }
}
.speak-to-us-sec .stu-head {
  margin-bottom: 40px;
}
.speak-to-us-sec .stu-main-form {
  width: 70%;
  margin: auto;
  padding: 40px;
}
@media only screen and (max-width: 1024px) {
  .speak-to-us-sec .stu-main-form {
    width: 100%;
    margin: auto;
    padding: 30px 20px;
  }
}
.speak-to-us-sec .stu-main-form h1 {
  font-size: 48px;
  font-weight: 700;
  color: #171717;
  letter-spacing: 0px;
  line-height: 65px;
  text-align: left;
  margin-bottom: 25px;
}
@media only screen and (max-width: 1680px) {
  .speak-to-us-sec .stu-main-form h1 {
    font-size: 28px;
    line-height: 36px;
    margin-bottom: 15px;
  }
}
@media only screen and (max-width: 1280px) {
  .speak-to-us-sec .stu-main-form h1 {
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 768px) {
  .speak-to-us-sec .stu-main-form h1 {
    margin-bottom: 10px;
    font-size: 24px;
    font-weight: 700;
  }
}
@media only screen and (max-width: 1024px) {
  .speak-to-us-sec .stu-main-form h1 br {
    display: none;
  }
}
.speak-to-us-sec .stu-main-form h2 {
  text-align: left;
  margin-bottom: 20px;
}
.speak-to-us-sec .stu-main-form h3 {
  text-align: left;
  font-size: 26px;
  line-height: 38px;
  letter-spacing: 0.42px;
  color: #171717;
  text-transform: capitalize;
  opacity: 1;
  font-weight: 700;
  margin: 5px 0;
}
@media only screen and (max-width: 1680px) {
  .speak-to-us-sec .stu-main-form h3 {
    font-size: 20px;
    line-height: 30px;
  }
}
@media only screen and (max-width: 768px) {
  .speak-to-us-sec .stu-main-form h3 {
    font-size: 17px;
    line-height: 24px;
  }
}
.speak-to-us-sec .referral-form .disabled {
  pointer-events: none;
  opacity: 0.7;
}
.speak-to-us-sec .referral-form .mar-t-40 {
  margin-top: 40px;
}
@media only screen and (max-width: 768px) {
  .speak-to-us-sec .referral-form .mar-t-40 {
    margin-top: 30px;
  }
}
.speak-to-us-sec .referral-form .checkbox label {
  margin-top: 0;
}
.speak-to-us-sec .form-foot-text {
  font-size: 14px;
  line-height: 14px;
  padding: 10px 0;
  width: 70%;
  margin: 0 auto;
  text-align: right;
}
@media only screen and (max-width: 1024px) {
  .speak-to-us-sec .form-foot-text {
    text-align: center;
    width: unset;
    font-size: 12px;
    line-height: 16px;
  }
}

.hiw-sec .section-head h2 {
  margin-bottom: 50px;
}
@media only screen and (max-width: 1024px) {
  .hiw-sec .section-head h2 {
    margin-bottom: 30px;
  }
}
.hiw-sec .feature-list .row .col-lg-3 .feature-main {
  margin: 0 -15px;
}
@media only screen and (max-width: 1024px) {
  .hiw-sec .feature-list .row .col-lg-3 .feature-main {
    border: 0;
  }
  .hiw-sec .feature-list .row .col-lg-3 .feature-main .fm-box {
    min-height: auto;
  }
  .hiw-sec .feature-list .row .col-lg-3 .feature-main .fm-box .fm-info {
    max-width: 260px;
    margin: 0 auto;
    min-height: 110px;
  }
}

.text-blue {
  color: #305FA5 !important;
}

.program-banner {
  background-color: #faf8f4;
  position: relative;
  height: 640px;
}
@media only screen and (max-width: 1024px) {
  .program-banner {
    height: 640px;
    background-image: url(https://site-assets.fitterfly.com/site-assets/images/site-1/mob-diabetes-banner-bg.webp);
    background-color: #f3f7fa;
  }
  .program-banner .banner-content .banner-title {
    margin-bottom: 3px;
  }
  .program-banner .banner-content .banner-head-item {
    margin-bottom: 0px;
  }
  .program-banner .d-flex .btn-pink {
    margin-bottom: 16px;
    max-width: 300px;
  }
  .program-banner .d-flex .btn-pink span {
    font-weight: 600;
  }
  .program-banner .d-flex .btn-outline-blue {
    margin-left: 0px;
    max-width: 300px;
  }
  .program-banner .d-flex .btn-outline-blue span {
    font-weight: 600;
  }
  .program-banner .banner.mb-80 {
    margin-bottom: 40px !important;
  }
}
@media only screen and (max-width: 767px) and (min-width: 460px) {
  .program-banner .banner-img img {
    width: 300px;
  }
}
@media only screen and (max-width: 992px) and (min-width: 768px) {
  .program-banner {
    height: 560px;
  }
}
@media only screen and (max-width: 767px) {
  .program-banner {
    height: 800px;
  }
}
@media only screen and (max-width: 320px) {
  .program-banner {
    height: 750px;
  }
}
.program-banner h2 {
  font-size: 48px;
  font-weight: 600;
  line-height: 60px;
  letter-spacing: 0px;
  color: #012042;
  text-align: left;
  margin-bottom: 20px;
}
@media screen and (max-width: 1680px) {
  .program-banner h2 {
    font-size: 40px;
    font-weight: 600;
    line-height: 48px;
  }
}
@media only screen and (max-width: 1400px) {
  .program-banner h2 {
    font-size: 34px;
    line-height: 46px;
  }
}
@media only screen and (max-width: 1024px) {
  .program-banner h2 {
    font-size: 30px;
    line-height: 36px;
    margin-bottom: 20px;
  }
}

.card .card-quote, .cs-main-box .card-quote, .offer-section .feature-main .card-quote, .testimonial-section .testimonial-card .card-quote, .prof-card .card-quote {
  text-align: left;
  margin-bottom: 15px;
}
.card .card-quote img, .cs-main-box .card-quote img, .offer-section .feature-main .card-quote img, .testimonial-section .testimonial-card .card-quote img, .prof-card .card-quote img {
  display: block;
}
.card .card-quote-title, .cs-main-box .card-quote-title, .offer-section .feature-main .card-quote-title, .testimonial-section .testimonial-card .card-quote-title, .prof-card .card-quote-title {
  text-align: left;
  font-weight: 600;
  margin-bottom: 15px;
  line-height: 35px;
}
@media screen and (max-width: 1680px) {
  .card .card-quote-title, .cs-main-box .card-quote-title, .offer-section .feature-main .card-quote-title, .testimonial-section .testimonial-card .card-quote-title, .prof-card .card-quote-title {
    line-height: 26px;
  }
}
@media screen and (max-width: 1024px) {
  .card .card-quote-title, .cs-main-box .card-quote-title, .offer-section .feature-main .card-quote-title, .testimonial-section .testimonial-card .card-quote-title, .prof-card .card-quote-title {
    line-height: 24px;
    margin-bottom: 30px;
  }
}
.card .card-quote-desc, .cs-main-box .card-quote-desc, .offer-section .feature-main .card-quote-desc, .testimonial-section .testimonial-card .card-quote-desc, .prof-card .card-quote-desc {
  margin-bottom: 15px;
}
@media screen and (max-width: 1024px) {
  .card .card-quote-desc, .cs-main-box .card-quote-desc, .offer-section .feature-main .card-quote-desc, .testimonial-section .testimonial-card .card-quote-desc, .prof-card .card-quote-desc {
    margin-bottom: 0px;
  }
}
.card .card-pad, .cs-main-box .card-pad, .offer-section .feature-main .card-pad, .testimonial-section .testimonial-card .card-pad, .prof-card .card-pad {
  padding: 25px;
}
.card .card-quote-author, .cs-main-box .card-quote-author, .offer-section .feature-main .card-quote-author, .testimonial-section .testimonial-card .card-quote-author, .prof-card .card-quote-author {
  border-top: 1px solid rgba(23, 23, 23, 0.2);
}
@media screen and (max-width: 1024px) {
  .card .card-quote-author, .cs-main-box .card-quote-author, .offer-section .feature-main .card-quote-author, .testimonial-section .testimonial-card .card-quote-author, .prof-card .card-quote-author {
    margin-bottom: 24px;
  }
}
.card .card-quote-author .author-detail .name, .cs-main-box .card-quote-author .author-detail .name, .offer-section .feature-main .card-quote-author .author-detail .name, .testimonial-section .testimonial-card .card-quote-author .author-detail .name, .prof-card .card-quote-author .author-detail .name {
  font-size: 26px;
  line-height: 38px;
  text-align: left;
  color: #171717;
  font-weight: 700;
  display: block;
}
@media screen and (max-width: 1680px) {
  .card .card-quote-author .author-detail .name, .cs-main-box .card-quote-author .author-detail .name, .offer-section .feature-main .card-quote-author .author-detail .name, .testimonial-section .testimonial-card .card-quote-author .author-detail .name, .prof-card .card-quote-author .author-detail .name {
    font-size: 22px;
    line-height: 32px;
  }
}
@media screen and (max-width: 1024px) {
  .card .card-quote-author .author-detail .name, .cs-main-box .card-quote-author .author-detail .name, .offer-section .feature-main .card-quote-author .author-detail .name, .testimonial-section .testimonial-card .card-quote-author .author-detail .name, .prof-card .card-quote-author .author-detail .name {
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 5px;
  }
}
.card .card-quote-author .author-detail .age-city, .cs-main-box .card-quote-author .author-detail .age-city, .offer-section .feature-main .card-quote-author .author-detail .age-city, .testimonial-section .testimonial-card .card-quote-author .author-detail .age-city, .prof-card .card-quote-author .author-detail .age-city {
  font-size: 20px;
  line-height: 28px;
  font-weight: 600;
  display: block;
  text-align: left;
}
@media screen and (max-width: 1680px) {
  .card .card-quote-author .author-detail .age-city, .cs-main-box .card-quote-author .author-detail .age-city, .offer-section .feature-main .card-quote-author .author-detail .age-city, .testimonial-section .testimonial-card .card-quote-author .author-detail .age-city, .prof-card .card-quote-author .author-detail .age-city {
    font-size: 16px;
    line-height: 26px;
  }
}
@media screen and (max-width: 1024px) {
  .card .card-quote-author .author-detail .age-city, .cs-main-box .card-quote-author .author-detail .age-city, .offer-section .feature-main .card-quote-author .author-detail .age-city, .testimonial-section .testimonial-card .card-quote-author .author-detail .age-city, .prof-card .card-quote-author .author-detail .age-city {
    font-size: 14px;
    line-height: 25px;
    margin-bottom: 4px;
  }
}
.card .card-quote-author .author-detail .rating img, .cs-main-box .card-quote-author .author-detail .rating img, .offer-section .feature-main .card-quote-author .author-detail .rating img, .testimonial-section .testimonial-card .card-quote-author .author-detail .rating img, .prof-card .card-quote-author .author-detail .rating img {
  display: block;
}
@media screen and (max-width: 1024px) {
  .card .card-quote-author .row, .cs-main-box .card-quote-author .row, .offer-section .feature-main .card-quote-author .row, .testimonial-section .testimonial-card .card-quote-author .row, .prof-card .card-quote-author .row {
    flex-wrap: nowrap;
  }
  .card .card-quote-author .row .col-lg-4, .cs-main-box .card-quote-author .row .col-lg-4, .offer-section .feature-main .card-quote-author .row .col-lg-4, .testimonial-section .testimonial-card .card-quote-author .row .col-lg-4, .prof-card .card-quote-author .row .col-lg-4 {
    width: 47%;
    padding-right: 5px;
  }
}

.doctor-testimonial-sec .doc-testimoial {
  position: relative;
  z-index: 2;
}
.doctor-testimonial-sec .doc-testimoial::before {
  content: "";
  width: 140px;
  height: 120px;
  display: block;
  position: absolute;
  background-repeat: no-repeat;
  background: url(https://site-assets.fitterfly.com/site-assets/images/quote-back.png) no-repeat;
  top: -60px;
  transform: scale(0.5);
  z-index: -1;
  left: -50px;
}
@media screen and (max-width: 1024px) {
  .doctor-testimonial-sec .doc-testimoial::before {
    top: -24px;
    transform: scale(1);
    z-index: -1;
    left: -5px;
    background-size: 40px;
  }
}
.doctor-testimonial-sec #doc-testimonial .owl-dot {
  margin-top: 30px;
}
@media only screen and (max-width: 1024px) {
  .doctor-testimonial-sec #doc-testimonial .owl-dot {
    display: none;
  }
}
.doctor-testimonial-sec #doc-testimonial .owl-dot.active span {
  background-color: #305FA5;
}
.doctor-testimonial-sec .section-head h2 {
  color: #0767B1;
  text-align: center;
  font-family: Poppins;
  font-size: 30px;
  font-style: normal;
  font-weight: 600;
  line-height: 40px;
}
@media only screen and (max-width: 1024px) {
  .doctor-testimonial-sec .section-head h2 {
    font-size: 24px;
    line-height: 34px;
  }
}
@media screen and (max-width: 1024px) {
  .doctor-testimonial-sec .section-head .dr-sub-text {
    padding: 0 32px;
    margin-bottom: 15px !important;
  }
}

.data-science-sec .data-science-img {
  width: 38%;
  margin: auto;
}
.data-science-sec .data-science-img img {
  display: block;
  height: auto;
}
@media only screen and (max-width: 1024px) {
  .data-science-sec .data-science-img {
    width: 100%;
  }
}
@media only screen and (max-width: 1024px) {
  .data-science-sec .section-head h4 {
    line-height: 24px;
  }
}
.data-science-sec .section-head h4 br {
  display: none;
}
@media only screen and (max-width: 1024px) {
  .data-science-sec .section-head h4 br {
    display: block;
  }
}

.process-flow-sec h4 {
  font-weight: 600;
}
@media only screen and (max-width: 1024px) {
  .process-flow-sec .section-head {
    padding: 0 15px;
  }
  .process-flow-sec .section-head h4 {
    margin-top: 0px;
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 500;
  }
  .process-flow-sec h4 {
    font-size: 20px;
    letter-spacing: 0.52px;
    margin-bottom: 24px;
    margin-top: 20px;
  }
}
.process-flow-sec .process-flow {
  margin: auto;
  position: relative;
}
.process-flow-sec .process-flow::before {
  content: "";
  position: absolute;
  width: 90%;
  height: 100%;
  border: 5px solid;
  border-radius: 40px 0 40px 0;
  top: 0;
  left: 0;
  margin-top: -5px;
  margin-bottom: 5px;
  margin-left: -5px;
  min-height: 340px;
  max-height: 340px;
}
@media only screen and (max-width: 1280px) {
  .process-flow-sec .process-flow::before {
    min-height: 390px;
    max-height: 390px;
  }
}
@media only screen and (max-width: 1024px) {
  .process-flow-sec .process-flow {
    margin-bottom: 40px;
  }
}
.process-flow-sec .process-flow.step-1::before {
  border: 5px solid #cd2c7b;
}
.process-flow-sec .process-flow.step-2::before {
  border: 5px solid #85c4e9;
}
.process-flow-sec .process-flow.step-3::before {
  border: 5px solid #3e87c4;
}
.process-flow-sec .process-flow.step-4::before {
  border: 5px solid #2e60a3;
}
@media only screen and (max-width: 1024px) {
  .process-flow-sec .process-flow.step-4 {
    margin-bottom: 0px;
  }
}
.process-flow-sec .process-card {
  min-height: 330px;
  max-height: 340px;
  position: relative;
  background: #fff;
  border-radius: 40px 0 40px 0;
}
@media only screen and (max-width: 1280px) {
  .process-flow-sec .process-card {
    min-height: 380px;
    max-height: 380px;
  }
}
.process-flow-sec .process-card .process-head {
  padding: 20px 15px 20px 20px;
  border-bottom: 1px solid rgba(23, 23, 23, 0.2);
  height: 85px;
}
@media only screen and (max-width: 1024px) {
  .process-flow-sec .process-card .process-head {
    padding: 22px 15px 15px 24px;
    height: 80px;
  }
}
.process-flow-sec .process-card .process-head .step {
  flex: 1;
  margin-right: 5px;
}
.process-flow-sec .process-card .process-head .step strong {
  display: block;
  text-align: left;
  color: #305FA5;
  font-size: 20px;
  line-height: 24px;
  font-weight: 800;
  margin-bottom: 8px;
}
.process-flow-sec .process-card .process-head .step h4 {
  font-size: 16px;
  line-height: 18px;
  font-weight: 500;
  text-align: left;
  color: #171717;
  text-transform: capitalize;
}
@media only screen and (max-width: 1024px) {
  .process-flow-sec .process-card .process-head .step h4 {
    margin: 0px;
  }
}
.process-flow-sec .process-card .process-head .right-icon {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 1024px) {
  .process-flow-sec .process-card .process-head .right-icon {
    transform: rotate(90deg);
  }
}
.process-flow-sec .process-card .process-head .right-icon img {
  width: 30px;
}
@media only screen and (max-width: 1024px) {
  .process-flow-sec .process-card .process-head .right-icon img {
    width: 24px;
  }
}
.process-flow-sec .process-card .process-body .list img {
  width: 24px;
  vertical-align: baseline;
  padding-right: 6px;
}
.process-flow-sec .process-card .card-item {
  min-height: 80px;
  max-height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 22px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.431372549);
}
.process-flow-sec .process-card .card-item:last-child {
  border-bottom: 0px;
}
.process-flow-sec .process-card .card-item:nth-child(3) {
  min-height: 100px;
  max-height: 100px;
}
.process-flow-sec .process-card .graph-img {
  padding: 40px 25px;
}
.process-flow-sec .process-card .list li {
  font-size: 15px;
  line-height: 20px;
  padding: 20px 15px 12px 20px;
  letter-spacing: 0.38px;
  color: #171717;
  text-transform: capitalize;
  font-weight: 500;
  text-align: left;
  padding-left: 50px;
  position: relative;
}
@media only screen and (max-width: 1280px) {
  .process-flow-sec .process-card .list li {
    padding: 18px 15px 12px 50px;
  }
}
.process-flow-sec .process-card .list li:before {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  background: url("https://site-assets.fitterfly.com/site-assets/images/check-mark.svg") no-repeat center;
  background-size: 20px;
  top: 18px;
  left: 18px;
}
.process-flow-sec .process-card .list li.pb-0 {
  padding-bottom: 0px;
}
.process-flow-sec .process-card .cgms-card .cgms-img {
  padding: 20px 20px 5px 20px;
}
.process-flow-sec .process-card .find-block {
  min-height: 230px;
}
.process-flow-sec .process-card .find-block img {
  width: 80px;
}
.process-flow-sec .process-flow.step-4 .process-card .list li {
  line-height: 19px;
  padding-bottom: 6px;
}
.process-flow-sec .process-flow.step-4 .process-card .process-head .right-icon {
  transform: rotate(0deg);
}
@media only screen and (max-width: 1024px) {
  .process-flow-sec .col-lg-3:last-child .process-card:after {
    display: none;
  }
}
.process-flow-sec .col-lg-3:last-child .process-card::after {
  display: none;
}

@media only screen and (max-width: 1024px) {
  .dtx-approach-sec .section-head {
    text-align: left;
    padding: 0 15px;
  }
  .dtx-approach-sec .section-head h2 {
    margin-bottom: 30px !important;
  }
}

.text-blue {
  color: #305FA5;
}

.weight-loss-program .section-head {
  padding-left: 0%;
}
@media only screen and (max-width: 1680px) {
  .weight-loss-program .section-head {
    padding-left: 0%;
  }
}

.weight-loss-banner .banner-img img {
  max-height: 550px;
  height: auto;
  width: auto;
}
@media only screen and (max-width: 767px) and (min-width: 460px) {
  .weight-loss-banner .banner-img img img {
    width: 300px;
  }
}

.challenges-sec .cs-main-img {
  display: flex;
  justify-content: center;
}
.challenges-sec .cs-main-info h4 {
  text-align: center;
}

.weight-loss-dtx-program h1 {
  font-size: 48px;
  font-weight: 700;
  color: #171717;
  letter-spacing: 0px;
  line-height: 65px;
}
@media screen and (max-width: 1680px) {
  .weight-loss-dtx-program h1 {
    font-size: 28px;
    line-height: 36px;
  }
}
@media screen and (max-width: 1024px) {
  .weight-loss-dtx-program h1 {
    font-size: 24px;
    line-height: 34px;
  }
}
.weight-loss-dtx-program .wt-mobile-img img {
  display: block;
  height: auto;
  width: auto;
}
.weight-loss-dtx-program .link {
  text-decoration: underline;
}
@media only screen and (max-width: 1024px) {
  .weight-loss-dtx-program .link {
    padding-left: 20px;
  }
}
.weight-loss-dtx-program .section-pad.pt-40 {
  padding-top: 0;
  padding-bottom: 0;
}
@media only screen and (max-width: 1024px) {
  .weight-loss-dtx-program .section-pad.pt-40 {
    padding-top: 40px;
  }
}
@media only screen and (max-width: 1024px) {
  .weight-loss-dtx-program .wt-loss-info .btn-pink {
    padding: 0 15px;
    font-size: 14px;
  }
}
@media only screen and (max-width: 1024px) {
  .weight-loss-dtx-program .wt-loss-info p br {
    display: none;
  }
}

.weight-loss-suite-sec .seo-item .section-head .list-head {
  margin-bottom: 10px;
}
.weight-loss-suite-sec .seo-item p strong {
  display: block;
  margin-bottom: 5px;
}

.cal-header {
  background-color: #F2F4F8;
}
.cal-header .cal-header-wrap {
  height: 70px;
}
.cal-header .logo a {
  display: flex;
}
.cal-header .logo a img {
  width: 150px;
}

.progress-bar {
  width: 100%;
  background: #D6E5ED;
  border-radius: 5px;
  height: 9px;
  position: relative;
  margin: 0 auto;
}
.progress-bar span {
  position: absolute;
  background: #ffffff;
  border-radius: 5px;
  height: 100%;
  transition: all 0.3s;
}

.rect-card {
  padding: 26px 30px 35px;
  background-color: rgba(110, 191, 235, 0.1490196078);
  border-radius: 10px;
  text-align: left;
  position: relative;
}
@media only screen and (max-width: 1024px) {
  .rect-card {
    margin-bottom: 10px;
    padding: 13px 20px;
  }
}
.rect-card h5 {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 21px;
  line-height: 30px;
  letter-spacing: 0px;
  color: #012042;
  margin-bottom: 18px;
}
@media only screen and (max-width: 1024px) {
  .rect-card h5 {
    font-size: 18px;
    line-height: 30px;
    margin-bottom: 0px;
  }
}
.rect-card.active {
  background-color: #4F94CB;
  padding: 26px 30px 35px;
}
@media only screen and (max-width: 1024px) {
  .rect-card.active {
    padding: 18px 20px 25px;
  }
}
.rect-card.active h5 {
  color: #fff;
}
@media only screen and (max-width: 1024px) {
  .rect-card.active h5 {
    margin-bottom: 13px;
  }
}
.rect-card.active .progress-bar {
  background: #3379B1;
}
.rect-card .tick {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: #EC0080;
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
  position: absolute;
  top: 10px;
  right: 10px;
}
@media only screen and (max-width: 1024px) {
  .rect-card .tick {
    top: 18px;
    width: 20px;
    height: 20px;
    padding: 4px;
  }
}
.rect-card.completed {
  border: 1px solid #D1D1D1;
  background-color: #ffffff;
}
.rect-card.completed .tick {
  display: flex;
}
.rect-card.completed .progress-bar {
  background: #4F94CB;
}

.question-sec {
  padding: 50px 0;
  width: 50%;
}
@media only screen and (max-width: 1024px) {
  .question-sec {
    padding-top: 30px;
    width: 100%;
  }
}

.program-selector-cal {
  padding: 50px 0 20px;
}
@media only screen and (max-width: 1024px) {
  .program-selector-cal {
    padding: 25px 0;
  }
}
.program-selector-cal .form-group {
  text-align: left;
  position: relative;
  width: 100%;
}
@media only screen and (max-width: 1024px) {
  .program-selector-cal .form-group {
    width: 100%;
  }
}
.program-selector-cal .side-arrow {
  border-radius: 50%;
  background-color: #3464A4;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  cursor: pointer;
  top: 15px;
  right: 0px;
}
.program-selector-cal input {
  background: url(https://site-assets.fitterfly.com/site-assets/images/site-1/side-arrow.svg) no-repeat top 14px right 0px;
  width: 100%;
  outline: none;
  border: none;
  border-bottom: 2px solid #A2ACBF;
  background-color: rgba(0, 0, 0, 0);
  padding: 20px 0px;
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  color: #012042;
  text-align: left;
}
.program-selector-cal h2 {
  font-family: "Roboto", sans-serif;
  font-size: 26px;
  color: #012042;
  text-align: left;
  margin-bottom: 20px;
}
@media only screen and (max-width: 1024px) {
  .program-selector-cal h2 {
    font-size: 18px;
    line-height: 36px;
    margin-bottom: 20px;
  }
}
.program-selector-cal .question {
  text-align: left;
}
.program-selector-cal .question ul li {
  position: relative;
  margin-bottom: 18px;
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  color: #012042;
  line-height: 30px;
  font-weight: 500;
}
@media only screen and (max-width: 1024px) {
  .program-selector-cal .question ul li {
    margin-bottom: 15px;
    font-size: 16px;
  }
}
.program-selector-cal .question label {
  margin-bottom: 18px;
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  color: #012042;
  line-height: 30px;
  font-weight: 500;
}
@media only screen and (max-width: 1024px) {
  .program-selector-cal .question label {
    margin-bottom: 15px;
    font-size: 16px;
  }
}
.program-selector-cal .question textarea {
  border: 1px solid #D6D6D6;
  width: 60%;
  margin-left: 30px;
  padding: 15px;
  border-radius: 6px;
}
@media only screen and (max-width: 1024px) {
  .program-selector-cal .question textarea {
    width: 90%;
  }
}
.program-selector-cal .question .textarea-bt-text {
  color: #012042;
  padding-left: 30px;
  font-size: 16px;
}

.desktop-view {
  display: block;
}
.mobile-view {
  display: none;
}
@media only screen and (max-width: 1024px) {
  .mobile-view {
    display: block;
  }
}

.question-info {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.question-info input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.checkmark {
  position: absolute;
  top: 5px;
  left: 0;
  height: 21px;
  width: 21px;
  background-color: #fff;
  border-radius: 50%;
  border: 1px solid #171717;
}

.question-info input:checked ~ .checkmark {
  background-color: #000;
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.question-info input:checked ~ .checkmark:after {
  display: block;
}

.question-info .checkmark:after {
  top: 4px;
  left: 4px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: white;
}

@media only screen and (max-width: 1024px) {
  .pl-30 {
    padding-left: 0px;
  }
}

.methodology-section {
  background: #F9FBFF;
  padding-bottom: 0px;
}
.methodology-section .fc-head-text {
  margin-bottom: 70px;
  color: #3E4C59;
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
}
@media only screen and (max-width: 1024px) {
  .methodology-section .fc-head-text {
    margin-bottom: 40px;
    font-size: 15px;
    line-height: 24px;
  }
  .methodology-section .fc-head-text br {
    display: none;
  }
}
.methodology-section .note {
  color: #6E7D9A;
  text-align: center;
  font-family: "Inter", sans-serif;
  font-display: swap;
  font-size: 12px;
  font-style: italic;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0.32px;
  max-width: 900px;
  display: block;
  margin: 0 auto;
  padding-top: 0px;
}
.methodology-section .note span {
  font-size: 12px;
  line-height: 19px;
  text-align: center;
}
.methodology-section .methodology-info {
  padding: 0 80px;
  margin-bottom: 40px;
  color: #6E7D9A;
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}
.methodology-section .methodology-info:last-child {
  margin-bottom: 0px;
}
@media only screen and (max-width: 1024px) {
  .methodology-section .methodology-info {
    padding: 0px 0px;
    margin-bottom: 30px;
  }
}
.methodology-section .section-head h2 {
  background: var(--Text-Gradient-G3, linear-gradient(90deg, #181DBB 0%, #4AD0DC 100%));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  font-family: "PoppinsSemiBold", sans-serif;
  font-display: swap;
  font-size: 30px;
  font-style: normal;
  font-weight: 600;
  line-height: 40px;
}
@media only screen and (max-width: 1024px) {
  .methodology-section .section-head h2 {
    font-size: 24px;
    line-height: 34px;
  }
}
.methodology-section .section-head h4 {
  color: #6E7D9A;
  text-align: center;
  font-family: "Inter", sans-serif;
  font-display: swap;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: 14px;
}

.results-section {
  background: #F9FBFF;
}
@media only screen and (max-width: 1024px) {
  .results-section .section-head {
    margin-bottom: 30px;
  }
  .results-section .section-head h4 {
    line-height: 28px;
  }
}
.results-section .section-head h2 {
  background: var(--Text-Gradient-G3, linear-gradient(90deg, #181DBB 0%, #4AD0DC 100%));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  font-family: "PoppinsSemiBold", sans-serif;
  font-display: swap;
  font-size: 30px;
  font-style: normal;
  font-weight: 600;
  line-height: 40px;
}
@media only screen and (max-width: 1024px) {
  .results-section .section-head h2 {
    font-size: 24px;
    line-height: 34px;
  }
}
.results-section .section-head h4 {
  color: #171717;
  text-align: center;
  font-family: "Inter", sans-serif;
  font-display: swap;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  text-transform: none;
}
@media only screen and (max-width: 1024px) {
  .results-section .outcomes-card-list .row {
    display: block;
  }
}
.results-section .outcomes-card-list .outcomes-card-item {
  background: #ffffff;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 20px 22px;
  display: flex;
  border: 1px solid #EEEEEE;
  border-radius: 16px;
  min-height: 240px;
  min-width: 270px;
}
@media only screen and (max-width: 1024px) {
  .results-section .outcomes-card-list .outcomes-card-item {
    margin-right: 0px;
    margin-bottom: 20px;
  }
}
.results-section .outcomes-card-list .outcomes-card-item .icon-box {
  display: flex;
  width: 50px;
  height: 78px;
  margin-right: 0px;
  margin-bottom: 15px;
  min-height: 78px;
}
.results-section .outcomes-card-list .outcomes-card-item .outcome-card-info {
  text-align: center;
}
.results-section .outcomes-card-list .outcomes-card-item .outcome-card-info h4 {
  font-weight: 700;
  color: #171717;
  letter-spacing: 0.18px;
  line-height: 30px;
  font-size: 28px;
  line-height: 38px;
  margin-bottom: 10px;
}
.results-section .outcomes-card-list .outcomes-card-item .outcome-card-info p {
  margin-bottom: 0;
  font-size: 15px;
  line-height: 24px;
  text-align: center;
}
.results-section .note {
  font-size: 12px;
  line-height: 19px;
  text-align: center;
  display: block;
  max-width: 900px;
  margin: 0 auto;
  font-style: italic;
}
.results-section .note span {
  font-size: 12px;
  line-height: 19px;
  text-align: center;
}

.gradient-bg {
  opacity: 0.8;
  background: var(--Pestal-light-Blue, #E9F5FF);
}

.cust-story-section {
  background: #F9FBFF;
}
.cust-story-section .section-head h2 {
  background: var(--Text-Gradient-G3, linear-gradient(90deg, #181DBB 0%, #4AD0DC 100%));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  font-family: "PoppinsSemiBold", sans-serif;
  font-display: swap;
  font-size: 30px;
  font-style: normal;
  font-weight: 600;
  line-height: 40px;
}
@media only screen and (max-width: 1024px) {
  .cust-story-section .section-head h2 {
    font-size: 24px;
    line-height: 34px;
  }
}
.cust-story-section .section-head h4 {
  color: #2D3236;
  text-align: center;
  font-family: "Inter", sans-serif;
  font-display: swap;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  text-transform: none;
}
.cust-story-section .cust-list .cust-card {
  min-height: 490px !important;
  margin-left: 15px !important;
  margin-right: 15px !important;
  background: #fff;
  border-radius: 16px;
}
.cust-story-section .cust-list .colorfull-cards {
  position: relative;
  overflow: hidden;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.cust-story-section .cust-list .colorfull-cards .cust-card-pad {
  padding: 30px 25px;
}
.cust-story-section .cust-list .colorfull-cards .cust-card-pad .customer-name-age {
  margin-bottom: 15px;
}
.cust-story-section .cust-list .colorfull-cards .cust-card-pad .customer-name-age .customer-age {
  font-size: 13px;
  line-height: 24px;
  letter-spacing: 0px;
  text-align: left;
}
.cust-story-section .cust-list .colorfull-cards .cust-card-pad .customer-name-age .customer-refer {
  text-align: left;
  display: flex;
}
.cust-story-section .cust-list .colorfull-cards .cust-card-pad .result-text p {
  font-size: 20px;
  line-height: 24px;
  font-weight: 700;
  color: #2C1505;
  max-width: 250px;
  margin-bottom: 15px;
}
@media only screen and (max-width: 380px) {
  .cust-story-section .cust-list .colorfull-cards .cust-card-pad .result-text p {
    font-size: 14px;
    line-height: 20px;
  }
}
.cust-story-section .cust-list .colorfull-cards .cust-card-pad .other-results .os-box {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 10px;
  background-color: rgba(255, 255, 255, 0.7);
  max-width: 250px;
  padding: 5px 10px;
  border-radius: 10px;
}
.cust-story-section .cust-list .colorfull-cards .cust-card-pad .other-results .os-box .os-box-image {
  width: 50px;
  height: 50px;
  background: transparent;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cust-story-section .cust-list .colorfull-cards .cust-card-pad .other-results .os-box .os-box-image img {
  display: block;
  max-width: 20px;
}
.cust-story-section .cust-list .colorfull-cards .cust-card-pad .other-results .os-box p {
  font-size: 14px;
  font-weight: 400;
  line-height: 16px;
  color: #2C1505;
  padding-left: 10px;
  margin-bottom: 0px;
  max-width: 220px;
}
.cust-story-section .cust-list .colorfull-cards .cust-card-pad .other-results .os-box:last-child {
  margin-bottom: 0px;
}
.cust-story-section .cust-list .card-1 {
  background-color: #D5EDEC;
}
.cust-story-section .cust-list .card-1:before {
  content: "";
  background-image: url(https://site-assets.fitterfly.com/site-assets/images/site-1/shubhangi-patil-testimonial.webp);
  background-repeat: no-repeat;
  position: absolute;
  top: 115px;
  right: 0px;
  width: 200px;
  height: 100%;
  z-index: -1;
}
@media only screen and (max-width: 380px) {
  .cust-story-section .cust-list .card-1:before {
    width: 120px;
    height: 90%;
  }
}
.cust-story-section .cust-list .card-2 {
  background-color: #d5e4f0;
}
.cust-story-section .cust-list .card-2:before {
  content: "";
  background-image: url(https://site-assets.fitterfly.com/site-assets/images/site-1/sanjeev-handa.webp);
  background-repeat: no-repeat;
  position: absolute;
  top: 115px;
  right: 0px;
  width: 200px;
  height: 100%;
  z-index: -1;
}
@media only screen and (max-width: 380px) {
  .cust-story-section .cust-list .card-2:before {
    width: 180px;
    height: 90%;
  }
}
.cust-story-section .cust-list .card-3 {
  background-color: #FBCDC7;
}
.cust-story-section .cust-list .card-3:before {
  content: "";
  background-image: url(https://site-assets.fitterfly.com/site-assets/images/site-1/vaibhav-dalvi.webp);
  background-repeat: no-repeat;
  position: absolute;
  top: 115px;
  right: 0px;
  width: 200px;
  height: 100%;
  z-index: -1;
}
.cust-story-section .cust-list .card-4 {
  background-color: #FCEDD5;
}
.cust-story-section .cust-list .card-4:before {
  content: "";
  background-image: url(https://site-assets.fitterfly.com/site-assets/images/site-1/manali-karande.webp);
  background-repeat: no-repeat;
  position: absolute;
  top: 115px;
  right: -32px;
  width: 200px;
  height: 100%;
  z-index: -1;
}
@media only screen and (max-width: 380px) {
  .cust-story-section .cust-list .card-4:before {
    width: 150px;
  }
}
.cust-story-section .cust-list .card-5 {
  background-color: #D5EDEC;
}
.cust-story-section .cust-list .card-5:before {
  content: "";
  background-image: url(https://site-assets.fitterfly.com/site-assets/images/site-1/yogita-pawar.webp);
  background-repeat: no-repeat;
  position: absolute;
  top: 115px;
  right: 0px;
  width: 200px;
  height: 100%;
  z-index: -1;
}
.cust-story-section .cust-list .card-6 {
  background-color: #d5e4f0;
}
.cust-story-section .cust-list .card-6:before {
  content: "";
  background-image: url(https://site-assets.fitterfly.com/site-assets/images/site-1/vandana-jha.webp);
  background-repeat: no-repeat;
  position: absolute;
  top: 115px;
  right: -40px;
  width: 200px;
  height: 100%;
  z-index: -1;
}
@media only screen and (max-width: 380px) {
  .cust-story-section .cust-list .card-6:before {
    right: -35ox;
  }
}
.cust-story-section .cust-list .card-7 {
  background-color: #FBCDC7;
}
.cust-story-section .cust-list .card-7:before {
  content: "";
  background-image: url(https://site-assets.fitterfly.com/site-assets/images/site-1/anand-jain.webp);
  background-repeat: no-repeat;
  position: absolute;
  top: 115px;
  right: 0px;
  width: 200px;
  height: 100%;
  z-index: -1;
}
.cust-story-section h3 {
  text-align: start;
  font-weight: 500;
  font-size: 24px;
  letter-spacing: 0.2px;
  line-height: 30px;
  color: #2C1505;
  margin-bottom: 0px;
}

.collab-sec {
  background: var(--Pestal-light-Blue, #E9F5FF);
}
@media only screen and (max-width: 1024px) {
  .collab-sec .collab-banner-info {
    padding-left: 15px;
  }
}
.collab-sec .collab-banner-info h2 {
  background: var(--Card-gradient-CG-4, linear-gradient(144deg, #D93999 0%, #EB65AD 100%));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "PoppinsSemiBold", sans-serif;
  font-display: swap;
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: 50px;
  margin-bottom: 20px;
}
@media only screen and (max-width: 1024px) {
  .collab-sec .collab-banner-info h2 {
    font-size: 24px;
    line-height: 34px;
  }
}
.collab-sec .collab-banner-info p {
  margin-bottom: 35px;
  color: #2D3236;
  font-family: "Inter", sans-serif;
  font-display: swap;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
}
@media only screen and (max-width: 1024px) {
  .collab-sec .collab-banner-info p {
    font-size: 15px;
    line-height: 24px;
    font-weight: 400;
  }
}
.collab-sec .collab-banner-img {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  height: 100%;
}

.reference-section {
  background: #F4F7FF;
}
.reference-section .section-pad {
  padding: 30px 0;
}
.reference-section .reference-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.reference-section .reference-left h5 {
  text-align: left;
}
.reference-section .reference-left .list-main ul li a {
  text-decoration: none;
  font-size: 12px;
  color: #586E90;
  line-height: 24px;
  font-weight: 500;
  display: flex;
  text-align: left;
}

.banner-sec.enterprise-banner {
  height: 600px;
  position: relative;
  background: linear-gradient(85deg, #FFEEFD 0.02%, #E0F6FF 100.01%);
}
@media only screen and (min-width: 992px) and (max-width: 1024px) {
  .banner-sec.enterprise-banner {
    height: auto;
  }
  .banner-sec.enterprise-banner .banner-img img {
    height: 360px;
  }
}
@media only screen and (max-width: 1024px) {
  .banner-sec.enterprise-banner {
    height: auto;
    padding-top: 80px;
  }
  .banner-sec.enterprise-banner .banner-img img {
    height: auto;
  }
}
.banner-sec.enterprise-banner .diabefly-big-logo {
  text-align: left;
  margin-bottom: 40px;
}
.banner-sec.enterprise-banner .banner-head-item {
  margin-bottom: 40px;
}
@media only screen and (max-width: 1024px) {
  .banner-sec.enterprise-banner .banner-head-item h2 br {
    display: none;
  }
}
.banner-sec.enterprise-banner .banner-head-item .gradient-heading {
  background: linear-gradient(90deg, #120DB2 0%, #C9606B 49.16%, #FF7D05 98.23%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.banner-sec.enterprise-banner .banner-img {
  margin-bottom: 40px;
}
.banner-sec.enterprise-banner .banner {
  justify-content: center;
}
@media only screen and (max-width: 1024px) {
  .banner-sec.enterprise-banner .banner {
    margin-bottom: 30px;
  }
}

.diabefly-platform {
  box-sizing: border-box;
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  padding: 30px 30px;
  align-items: center;
  max-width: 75%;
  margin: 0 auto;
}
@media only screen and (max-width: 1024px) {
  .diabefly-platform {
    max-width: 100%;
    max-width: unset;
  }
}
.diabefly-platform h2 {
  background: var(--Text-Gradient-G3, linear-gradient(90deg, #181DBB 0%, #4AD0DC 100%));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  font-family: "PoppinsSemiBold", sans-serif;
  font-display: swap;
  font-size: 30px;
  font-style: normal;
  font-weight: 600;
  line-height: 40px;
}
@media only screen and (max-width: 1024px) {
  .diabefly-platform h2 {
    font-size: 24px;
    line-height: 34px;
  }
}
.diabefly-platform h3 {
  font-weight: 500;
  font-size: 24px;
  color: #111a28;
  letter-spacing: 0.2px;
  line-height: 30px;
  margin-bottom: 20px;
}
@media only screen and (max-width: 1024px) {
  .diabefly-platform h3 {
    margin-bottom: 30px;
    font-size: 21px;
  }
}
.diabefly-platform .logo-block {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
}
@media only screen and (max-width: 1024px) {
  .diabefly-platform .logo-block {
    flex-direction: column;
    margin-bottom: 40px;
  }
  .diabefly-platform .logo-block:last-child {
    margin-bottom: 0px;
  }
  .diabefly-platform .logo-block img {
    margin-bottom: 20px;
  }
  .diabefly-platform .logo-block img:last-child {
    margin-bottom: 0px;
  }
}

.doctor-testimonial-sec .section-pad .sub-head {
  color: #2D3236;
  text-align: center;
  font-family: "Inter", sans-serif;
  font-display: swap;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

.physician-partnership-testimonial {
  background: #f9fbff;
}
.physician-partnership-testimonial .section-pad {
  padding-bottom: 0px;
}
.physician-partnership-testimonial .section-head h2 {
  background: var(--Text-Gradient-G3, linear-gradient(90deg, #181DBB 0%, #4AD0DC 100%));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  font-family: "PoppinsSemiBold", sans-serif;
  font-display: swap;
  font-size: 30px;
  font-style: normal;
  font-weight: 600;
  line-height: 40px;
}
@media only screen and (max-width: 1024px) {
  .physician-partnership-testimonial .section-head h2 {
    font-size: 24px;
    line-height: 34px;
  }
}

.fix-pos-body {
  overflow: hidden;
}

.landing-banner {
  background: transparent linear-gradient(0deg, #FFFFFF 0%, #EBF7FD 100%) 0% 0% no-repeat padding-box;
  text-align: left;
}
.landing-banner .logo {
  padding-bottom: 40px;
}
@media only screen and (max-width: 1024px) {
  .landing-banner .offset-1 {
    margin-left: 0px;
  }
}

.landing-bnr-cont {
  padding-right: 30px;
  padding-top: 60px;
}
@media only screen and (max-width: 1024px) {
  .landing-bnr-cont {
    text-align: center;
    padding-right: 0px;
    padding-bottom: 50px;
    padding-top: 0px;
  }
}
.landing-bnr-cont h1 {
  font-family: "Lato", sans-serif;
  font-display: swap;
  font-size: 48px;
  font-weight: 900;
  line-height: 65px;
  letter-spacing: 0px;
  color: #28353D;
}
@media screen and (max-width: 1680px) {
  .landing-bnr-cont h1 {
    font-size: 38px;
    line-height: 54px;
  }
}
@media only screen and (max-width: 1280px) {
  .landing-bnr-cont h1 {
    font-size: 36px;
    line-height: 50px;
  }
}
@media only screen and (max-width: 1024px) {
  .landing-bnr-cont h1 {
    font-size: 24px;
    line-height: 33px;
    padding-bottom: 15px;
  }
}
.landing-bnr-cont .sm-text {
  font-size: 28px;
  line-height: 34px;
  font-weight: 500;
  letter-spacing: 0px;
  color: #28353D;
}
@media screen and (max-width: 1680px) {
  .landing-bnr-cont .sm-text {
    font-size: 21px;
    line-height: 28px;
  }
}
.landing-bnr-cont .hr-line {
  display: flex;
  background: #005DA0;
  height: 1px;
  margin: 30px 0;
}
@media only screen and (max-width: 1024px) {
  .landing-bnr-cont .hr-line {
    display: none;
  }
}
.landing-bnr-cont .blue-txt {
  font-size: 35px;
  line-height: 50px;
  font-weight: 600;
  letter-spacing: 0px;
  color: #0F529E;
  margin-bottom: 20px;
}
@media screen and (max-width: 1680px) {
  .landing-bnr-cont .blue-txt {
    font-size: 30px;
    line-height: 40px;
  }
}
@media only screen and (max-width: 1024px) {
  .landing-bnr-cont .blue-txt {
    font-size: 20px;
    line-height: 30px;
    margin-top: 30px;
  }
}
@media only screen and (max-width: 1024px) {
  .landing-bnr-cont .bl-btn {
    margin: auto;
    text-align: center;
    margin-bottom: 40px;
  }
}
.landing-bnr-cont .greater-logo {
  margin-left: 20px;
  width: 8px;
}
.landing-bnr-cont .review-list {
  display: flex;
}
@media only screen and (max-width: 1024px) {
  .landing-bnr-cont .review-list {
    justify-content: center;
  }
}
.landing-bnr-cont .review-list .review-item {
  padding-left: 30px;
  padding-right: 30px;
  border-left: 1px solid #28353D;
}
@media only screen and (max-width: 1024px) {
  .landing-bnr-cont .review-list .review-item {
    padding: 0px 15px;
  }
}
.landing-bnr-cont .review-list .review-item:first-child {
  padding-left: 0;
  border-left: none;
}
@media only screen and (max-width: 1024px) {
  .landing-bnr-cont .review-list .review-item:first-child {
    padding: 0px 8px;
    padding-left: 0;
  }
}
.landing-bnr-cont .review-list .review-item span {
  font-size: 18px;
  line-height: 25px;
  margin-bottom: 5px;
  letter-spacing: 0px;
  color: #28353D;
  display: flex;
}
@media screen and (max-width: 1680px) {
  .landing-bnr-cont .review-list .review-item span {
    font-size: 15px;
    line-height: 21px;
  }
}
@media only screen and (max-width: 1024px) {
  .landing-bnr-cont .review-list .review-item span {
    font-size: 13px;
    line-height: 18px;
  }
}
@media only screen and (max-width: 360px) {
  .landing-bnr-cont .review-list .review-item span {
    font-size: 12px;
  }
}
.landing-bnr-cont .review-list .review-item .review-head {
  font-weight: 600;
  display: block;
  text-align: left;
}

.bl-btn {
  background-color: #0F529E;
  position: relative;
}
.bl-btn:hover {
  background-color: #053469;
  color: #fff;
}

.wht-btn {
  background-color: #fff;
  color: #0F529E;
}
.wht-btn:hover {
  background-color: #EAF1FF;
  color: #0F529E;
}
@media only screen and (max-width: 500px) {
  .tech-expert .section-head h2 br {
    display: none;
  }
}

.band {
  height: 147px;
  padding: 25px 20px 10px;
  background-color: #0F529E;
}
@media only screen and (max-width: 1024px) {
  .band {
    display: block;
    height: unset;
  }
}
.band h2 {
  color: #fff;
  text-align: center;
}
.band h2 span {
  color: #9AEFFF;
}
.band p {
  text-align: right;
  font-size: 12px;
  color: #fff;
}
@media only screen and (max-width: 1024px) {
  .band p {
    text-align: center;
    padding: 15px 0px;
  }
}
.band .tell-sec {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 45%;
  height: 100%;
}
@media only screen and (max-width: 1024px) {
  .band .tell-sec {
    width: 100%;
    height: unset;
    padding: 35px 0 24px;
  }
}
.band .tell-sec img {
  width: auto;
}
@media only screen and (max-width: 1024px) {
  .band .tell-sec img {
    margin-bottom: 10px;
    width: 55px;
  }
}
.band .tell-sec strong {
  font-size: 26px;
  line-height: 40px;
  font-weight: 600;
  color: #FFFFFF;
  text-align: left;
  margin-left: 30px;
  font-family: "Lato", sans-serif;
  font-display: swap;
}
@media only screen and (max-width: 1024px) {
  .band .tell-sec strong {
    font-size: 24px;
    line-height: 32px;
    margin-left: 16px;
    font-weight: 500;
  }
}
@media only screen and (max-width: 320px) {
  .band .tell-sec strong {
    font-size: 18px;
    line-height: 28px;
  }
}
.band .big-win-sec {
  display: flex;
  align-items: center;
  width: 55%;
  background: #4175b0;
  padding-left: 20px;
  border-radius: 100px 0 0 100px;
}
@media only screen and (max-width: 1024px) {
  .band .big-win-sec {
    width: 100%;
    border-radius: 50px 50px 0 0px;
    justify-content: space-between;
    padding-left: 0;
    flex-direction: column;
    padding: 0 0 30px;
  }
}
.band .big-win-sec .big-win-block {
  display: flex;
  justify-content: space-between;
}
.band .big-win-sec .big-win-block .win-box-shadow {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
@media only screen and (max-width: 1024px) {
  .band .big-win-sec .big-win-block .win-box-shadow {
    flex: 1;
    margin-top: 20px;
  }
}
@media only screen and (max-width: 400) {
  .band .big-win-sec .big-win-block .win-box-shadow {
    margin-top: 0;
  }
}
.band .big-win-sec .big-win-block .big-img img {
  width: 180px;
  height: 140px;
}
@media only screen and (max-width: 1024px) {
  .band .big-win-sec .big-win-block .big-img img {
    width: auto;
    height: auto;
  }
}
.band .big-win-sec .big-win-block .win-box {
  position: relative;
  height: 15px;
  display: flex;
  justify-content: center;
  width: auto;
}
@media only screen and (max-width: 1024px) {
  .band .big-win-sec .big-win-block .win-box {
    width: 100px;
  }
}
@media only screen and (max-width: 320px) {
  .band .big-win-sec .big-win-block .win-box {
    width: 80px;
  }
}
.band .big-win-sec .big-win-block .win-box img {
  position: relative;
  width: 200px;
  height: 211px;
  top: -50px;
}
@media only screen and (max-width: 1024px) {
  .band .big-win-sec .big-win-block .win-box img {
    width: auto;
    height: 80px;
    top: -27px;
    left: -15px;
  }
}
@media only screen and (max-width: 320px) {
  .band .big-win-sec .big-win-block .win-box img {
    height: 60px;
    top: -21px;
  }
}
.band .big-win-sec .big-win-block .win-box.shadow-anim {
  z-index: -1;
}
.band .big-win-sec .big-win-block .win-box.shadow-anim img {
  top: -29px;
  left: -27px;
}
@media only screen and (max-width: 1024px) {
  .band .big-win-sec .big-win-block .win-box.shadow-anim {
    display: none;
  }
}
@media only screen and (max-width: 1024px) {
  .band .big-win-sec .wht-btn {
    height: 40px;
    font-size: 11px;
    line-height: 18px;
    min-width: 180px;
    margin-left: 0;
  }
}
.band .big-win-sec .greater-logo {
  margin-left: 10px;
  width: 8px;
}

.landing-page .section-head {
  padding-bottom: 30px;
  margin-bottom: 50px;
  position: relative;
}
@media only screen and (max-width: 1024px) {
  .landing-page .section-head {
    margin-bottom: 20px;
  }
}
.landing-page .section-head::before {
  content: "";
  position: absolute;
  display: block;
  height: 4px;
  width: 200px;
  background: #0767B1 0% 0% no-repeat padding-box;
  border-radius: 8px;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
.landing-page .section-head h2 {
  font-size: 40px;
  line-height: 50px;
  font-weight: 700;
  letter-spacing: 0px;
  text-align: center;
  color: #28353D;
  margin-bottom: 0;
}
@media screen and (max-width: 1680px) {
  .landing-page .section-head h2 {
    font-size: 28px;
    line-height: 36px;
  }
}
@media only screen and (max-width: 1024px) {
  .landing-page .section-head h2 {
    font-size: 22px;
    line-height: 30px;
  }
}
.landing-page .section-head .sub-text {
  font-size: 28px;
  line-height: 46px;
  font-weight: 500;
  letter-spacing: 0px;
  color: #fff;
}
@media only screen and (max-width: 1680px) {
  .landing-page .section-head .sub-text {
    font-size: 16px;
    line-height: 18px;
    font-weight: 300;
  }
}
.landing-page footer {
  padding-bottom: 100px;
}
@media only screen and (max-width: 1024px) {
  .landing-page footer {
    padding-bottom: 66px;
  }
}

@media only screen and (max-width: 500px) {
  .result-card-sec .sub-head-text h2 {
    max-width: 285px;
    margin: 0 auto;
  }
}

@media only screen and (max-width: 500px) {
  .pgr-tech-sec .sub-head-text h2 {
    max-width: 300px;
    margin: 0 auto;
  }
}

.exp-card {
  border-radius: 12px;
  max-height: 437px;
  display: flex;
  align-items: center;
  height: 100%;
}
@media only screen and (max-width: 1024px) {
  .exp-card {
    margin: 20px;
    display: block;
    max-height: unset;
  }
  .exp-card.mob-flex-reverse {
    display: flex;
    flex-direction: column-reverse;
  }
}
.exp-card .exp-card-content {
  text-align: left;
  padding: 30px 30px 30px 70px;
  width: 60%;
}
@media only screen and (max-width: 1024px) {
  .exp-card .exp-card-content {
    padding: 30px 30px 30px 30px;
    width: 100%;
  }
}
.exp-card .exp-card-content h4 {
  font-size: 30px;
  line-height: 36px;
  font-weight: 600;
  letter-spacing: 0px;
  text-align: left;
  color: #28353D;
  margin-bottom: 15px;
}
@media screen and (max-width: 1680px) {
  .exp-card .exp-card-content h4 {
    font-size: 22px;
    line-height: 30px;
    margin-bottom: 12px;
  }
}
@media screen and (max-width: 1024px) {
  .exp-card .exp-card-content h4 br {
    display: none;
  }
}
.exp-card .exp-card-content p {
  font-size: 22px;
  line-height: 33px;
  font-weight: 400;
  letter-spacing: 0px;
  color: #45576D;
}
@media screen and (max-width: 1680px) {
  .exp-card .exp-card-content p {
    font-size: 16px;
    line-height: 24px;
  }
}
.exp-card .exp-card-img {
  text-align: left;
  vertical-align: middle;
}
@media only screen and (max-width: 1024px) {
  .exp-card .exp-card-img {
    text-align: center;
    width: auto;
  }
}
.exp-card .exp-card-img.lt-img-card {
  display: flex;
  padding: 10px 0 0 10px;
  height: 100%;
  width: auto;
  align-items: end;
  max-width: 40%;
}
@media only screen and (max-width: 1024px) {
  .exp-card .exp-card-img.lt-img-card {
    max-width: 100%;
  }
}
@media only screen and (max-width: 1024px) {
  .exp-card .exp-card-img img {
    vertical-align: bottom;
    width: unset;
    height: unset;
  }
}
@media only screen and (max-width: 1024px) {
  .exp-card .exp-card-img .coaches-mob-img-size {
    max-width: 288px;
  }
  .exp-card .exp-card-img .assesment-mob-img-size {
    max-width: 285px;
  }
  .exp-card .exp-card-img .sensor-mob-img-size {
    max-width: 205px;
  }
}
@media only screen and (max-width: 400px) {
  .exp-card .exp-card-img .coaches-mob-img-size {
    max-width: 100%;
  }
  .exp-card .exp-card-img .assesment-mob-img-size {
    max-width: 230px;
  }
  .exp-card .exp-card-img .peoples-mob-img-size {
    max-width: 100%;
  }
}
@media only screen and (max-width: 1024px) {
  .exp-card .exp-card-img-mob {
    width: auto;
  }
}
.exp-card.light-bl-bg {
  background: #EBF7FD 0% 0% no-repeat padding-box;
}
.exp-card.light-pink-bg {
  background: #FBEFF5 0% 0% no-repeat padding-box;
}
.exp-card.coach-card {
  flex-direction: column;
  max-height: unset;
}
.exp-card.coach-card .exp-card-content {
  padding: 80px 80px;
  width: 100%;
  height: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media only screen and (max-width: 1024px) {
  .exp-card.coach-card .exp-card-content {
    padding: 35px 35px;
  }
}
.exp-card.coach-card .exp-card-img {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 37px 30px 0;
}
@media only screen and (max-width: 1024px) {
  .exp-card.coach-card .exp-card-img {
    padding: 0px 30px 0;
  }
}
.exp-card.personal-card .exp-card-content {
  width: 40%;
}
@media only screen and (max-width: 1024px) {
  .exp-card.personal-card .exp-card-content {
    width: 100%;
  }
}
.exp-card.personal-card .exp-card-img {
  width: 60%;
}
@media only screen and (max-width: 1024px) {
  .exp-card.personal-card .exp-card-img {
    width: 100%;
  }
}
.exp-card.personal-card .exp-card-img.peoples-img {
  display: flex;
  padding: 40px 30px 0 0;
}
@media only screen and (max-width: 1024px) {
  .exp-card.personal-card .exp-card-img.peoples-img {
    padding: 0px 0px 0 0;
  }
}
.exp-card.tech-card .exp-card-img img {
  padding: 30px 0;
  width: 58%;
}
@media only screen and (max-width: 1024px) {
  .exp-card.tech-card .exp-card-img img {
    padding-top: 0;
    width: inherit;
  }
}

.grid-container .item1 {
  grid-area: card1;
}
.grid-container .item2 {
  grid-area: card2;
}
.grid-container .item3 {
  grid-area: card3;
}
.grid-container .item4 {
  grid-area: card4;
}

@media only screen and (max-width: 1024px) {
  .item4 .exp-card {
    margin-bottom: 0px;
  }
}

.grid-container {
  display: grid;
  grid-template-areas: "card1 card1 card1 card1 card2 card2" "card3 card3 card3 card3 card2 card2" "card4 card4 card4 card4 card4 card4";
  gap: 20px;
}
@media screen and (max-width: 1024px) {
  .grid-container {
    display: block;
  }
}

.pgr-tech-sec {
  background: transparent linear-gradient(-117deg, #0C3758 0%, #005DA0 100%) 0% 0% no-repeat padding-box;
}
@media only screen and (max-width: 1024px) {
  .pgr-tech-sec .section-head {
    margin-bottom: 30px;
    padding-bottom: 20px;
  }
}
.pgr-tech-sec .section-head::before {
  background: #fff 0% 0% no-repeat padding-box;
}
.pgr-tech-sec .section-head h2 {
  color: #fff;
  margin-bottom: 10px;
}
@media only screen and (max-width: 1024px) {
  .pgr-tech-sec .section-head h2 {
    margin-bottom: 15px;
  }
}
.pgr-tech-sec .section-head .sub-text {
  font-size: 28px;
  line-height: 46px;
  font-weight: 500;
  letter-spacing: 0px;
  color: #fff;
}
@media only screen and (max-width: 1680px) {
  .pgr-tech-sec .section-head .sub-text {
    font-size: 18px;
    line-height: 20px;
    font-weight: 300;
  }
}
@media only screen and (max-width: 768px) {
  .pgr-tech-sec .section-head .sub-text {
    max-width: 200px;
    margin: 0 auto;
    display: block;
  }
}
@media only screen and (max-width: 1024px) {
  .pgr-tech-sec .section-head .sub-text {
    font-size: 13px;
    line-height: 20px;
    font-weight: 300;
  }
}
.pgr-tech-sec .owl-item > div {
  cursor: pointer;
  margin: 6% 8%;
  transition: margin 0.4s ease;
}
@media only screen and (max-width: 1024px) {
  .pgr-tech-sec .owl-item > div {
    margin: 0;
  }
}
.pgr-tech-sec .owl-item.active > div {
  opacity: 0.32;
}
@media only screen and (max-width: 1024px) {
  .pgr-tech-sec .owl-item.active > div {
    margin: 0;
  }
  .pgr-tech-sec .owl-item.active > div .video-link img {
    transform: scale(1.9);
  }
}
.pgr-tech-sec .owl-item.active.center {
  transform: scale(1.5);
  z-index: 7;
}
@media only screen and (max-width: 1024px) {
  .pgr-tech-sec .owl-item.active.center {
    transform: scale(2.5);
  }
  .pgr-tech-sec .owl-item.active.center .video-link img {
    transform: unset;
  }
}
.pgr-tech-sec .owl-item.active.center > div {
  opacity: 1;
}
.pgr-tech-sec .owl-carousel.card-owl-carousel {
  position: relative;
}
.pgr-tech-sec .owl-theme .owl-nav {
  position: absolute;
  top: 17%;
  margin: auto;
  width: 100%;
  opacity: 0;
}
@media only screen and (max-width: 1024px) {
  .pgr-tech-sec .owl-theme .owl-nav {
    display: none;
  }
}
.pgr-tech-sec .owl-nav button.owl-prev {
  position: absolute;
  left: 4%;
  width: 300px;
  height: 200px;
}
.pgr-tech-sec .owl-nav button.owl-next {
  position: absolute;
  right: 4%;
  width: 300px;
  height: 200px;
}
.pgr-tech-sec .video-next-prev {
  margin: auto;
  margin-top: 50px;
}
@media only screen and (max-width: 1024px) {
  .pgr-tech-sec .video-next-prev {
    margin-top: 20px;
  }
}
.pgr-tech-sec .video-next-prev .next-prev-btn .scroll-prev, .pgr-tech-sec .video-next-prev .next-prev-btn .scroll-next {
  margin: 0 20px;
}
.pgr-tech-sec .video-next-prev .next-prev-btn .scroll-prev:hover, .pgr-tech-sec .video-next-prev .next-prev-btn .scroll-next:hover {
  opacity: 1;
}
@media only screen and (max-width: 1024px) {
  .pgr-tech-sec .video-item .video-link .play-btn {
    height: 25px;
    width: 25px;
  }
}

.video-item {
  display: flex;
  justify-content: center;
  overflow: hidden;
  min-height: 260px;
}
@media only screen and (max-width: 1024px) {
  .video-item {
    min-height: 330px;
    border-radius: 10px;
    background-color: unset;
    border-radius: 10px;
  }
}
@media only screen and (max-width: 600px) {
  .video-item {
    min-height: 180px;
    border-radius: 10px;
  }
}
.video-item .video-link {
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
}
.video-item .video-link .play-btn {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  cursor: pointer;
  background: url("https://site-assets.fitterfly.com/site-assets/images/site-1/play-button.svg") no-repeat center;
  background-size: contain;
  z-index: 4;
}
@media only screen and (max-width: 1024px) {
  .video-item .video-link .play-btn {
    width: 45px;
    height: 45px;
    background-size: contain;
  }
}

@media only screen and (max-width: 1024px) {
  .banner-img-carsouel {
    margin: 30px 0 60px;
  }
}
.banner-img-carsouel .owl-item > div {
  cursor: pointer;
  transition: margin 0.4s ease;
}
@media only screen and (max-width: 1024px) {
  .banner-img-carsouel .owl-item > div {
    margin: 0;
  }
}
.banner-img-carsouel .owl-item.active > div {
  opacity: 0.32;
}
@media only screen and (max-width: 1024px) {
  .banner-img-carsouel .owl-item.active > div {
    margin-top: 0;
  }
}
.banner-img-carsouel .owl-item.active.center {
  transform: scale(1) !important;
  margin: 0 -70px;
  z-index: 10;
}
@media only screen and (max-width: 1024px) {
  .banner-img-carsouel .owl-item.active.center {
    transform: scale(1) !important;
    margin: 0;
  }
}
@media only screen and (max-width: 1024px) {
  .banner-img-carsouel .owl-item.active.center img {
    transform: unset;
  }
}
.banner-img-carsouel .owl-item.active.center > div {
  opacity: 1;
}
.banner-img-carsouel .owl-carousel.owl-drag .owl-item {
  transform: scale(0.8);
}
@media only screen and (max-width: 1024px) {
  .banner-img-carsouel .owl-carousel.owl-drag .owl-item {
    transform: scale(1);
  }
}
.banner-img-carsouel .owl-carousel.banner-owl-carousel {
  position: relative;
}
.banner-img-carsouel .owl-theme .owl-nav {
  position: absolute;
  bottom: -70px;
  margin: auto;
  width: 100%;
}
.banner-img-carsouel .owl-nav button.owl-prev, .banner-img-carsouel .owl-nav button.owl-next {
  width: 30px;
  height: 30px;
  margin: 0 15px;
}
.banner-img-carsouel .owl-nav button.owl-prev:hover, .banner-img-carsouel .owl-nav button.owl-next:hover {
  background: none;
  transform: scale(1.1);
  transition: all 0.3s;
}
.banner-img-carsouel .owl-nav button.owl-prev.disabled, .banner-img-carsouel .owl-nav button.owl-next.disabled {
  opacity: 0.3;
}
.banner-img-carsouel .owl-nav button.owl-prev span, .banner-img-carsouel .owl-nav button.owl-next span {
  background: url("https://site-assets.fitterfly.com/site-assets/images/site-1/prev-black-button.svg") no-repeat center center;
  width: 30px;
  height: 30px;
  background-size: 30px;
  display: block;
  text-indent: -35px;
  color: #fff;
  overflow: hidden;
}
.banner-img-carsouel .owl-nav button.owl-next span {
  transform: rotate(180deg);
}
.banner-img-carsouel .video-next-prev {
  display: flex;
  margin: auto;
  margin-top: 50px;
  justify-content: center;
}
@media only screen and (max-width: 1024px) {
  .banner-img-carsouel .video-next-prev {
    margin-top: 20px;
  }
}
.banner-img-carsouel .video-next-prev .next-prev-btn .scroll-prev, .banner-img-carsouel .video-next-prev .next-prev-btn .scroll-next {
  margin: 0 15px;
  opacity: 0.25;
  width: 30px;
}
.banner-img-carsouel .video-next-prev .next-prev-btn .scroll-prev:hover, .banner-img-carsouel .video-next-prev .next-prev-btn .scroll-next:hover {
  opacity: 1;
}
.banner-img-carsouel .video-item {
  background-color: #fff;
  border-radius: 10px;
}
@media only screen and (max-width: 1024px) {
  .banner-img-carsouel .video-item {
    min-height: 180px;
  }
}
@media only screen and (max-width: 1024px) {
  .banner-img-carsouel .play-btn {
    width: 50px;
    height: 50px;
    background-size: contain;
  }
}

.book-consult {
  display: flex;
  align-items: center;
  height: 100px;
  background: #F4F4F4 0% 0% no-repeat padding-box;
  position: fixed;
  bottom: 0;
  width: 100%;
  z-index: 7;
}
@media only screen and (max-width: 1024px) {
  .book-consult {
    height: unset;
  }
}
.book-consult .foot-note {
  font-size: 13px;
  line-height: 18px;
  font-weight: 400;
  letter-spacing: 0px;
  color: #28353D;
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
}
@media only screen and (max-width: 1280px) {
  .book-consult .foot-note {
    font-size: 13px;
  }
}
@media only screen and (max-width: 1024px) {
  .book-consult .foot-note {
    display: none;
  }
}
.book-consult .foot-note strong {
  margin-right: 5px;
}
.book-consult .contact-consult {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 1024px) {
  .book-consult .contact-consult {
    justify-content: space-around;
  }
}
.book-consult .contact-consult .call-btn strong {
  display: inline-block;
}
.book-consult .contact-consult .call-btn, .book-consult .contact-consult .chat-btn {
  height: 40px;
  background: #FFFFFF 0% 0% no-repeat padding-box;
  border: 1px solid #0767B1;
  border-radius: 31px;
  padding: 10px 15px;
  display: flex;
  align-items: center;
  cursor: pointer;
}
@media only screen and (max-width: 1280px) {
  .book-consult .contact-consult .call-btn, .book-consult .contact-consult .chat-btn {
    padding: 10px 15px;
    height: 50px;
  }
}
@media only screen and (max-width: 1024px) {
  .book-consult .contact-consult .call-btn, .book-consult .contact-consult .chat-btn {
    margin-bottom: 8px;
    margin-top: 8px;
    justify-content: center;
  }
}
@media only screen and (max-width: 320px) {
  .book-consult .contact-consult .call-btn, .book-consult .contact-consult .chat-btn {
    padding: 10px 10px;
  }
}
.book-consult .contact-consult .call-btn .cont-img, .book-consult .contact-consult .chat-btn .cont-img {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 10px;
}
@media only screen and (max-width: 320px) {
  .book-consult .contact-consult .call-btn .cont-img, .book-consult .contact-consult .chat-btn .cont-img {
    margin-right: 6px;
  }
}
.book-consult .contact-consult .call-btn .cont-img img, .book-consult .contact-consult .chat-btn .cont-img img {
  width: 22px;
}
@media only screen and (max-width: 320px) {
  .book-consult .contact-consult .call-btn .cont-img img, .book-consult .contact-consult .chat-btn .cont-img img {
    width: 18px;
  }
}
.book-consult .contact-consult .call-btn p, .book-consult .contact-consult .chat-btn p {
  font-size: 12px;
  line-height: 16px;
  font-weight: 500;
  letter-spacing: 0px;
  color: #28353D;
  text-transform: uppercase;
}
.book-consult .contact-consult .call-btn p br, .book-consult .contact-consult .chat-btn p br {
  display: none;
}
@media only screen and (max-width: 1024px) {
  .book-consult .contact-consult .call-btn p br, .book-consult .contact-consult .chat-btn p br {
    display: block;
  }
}
@media only screen and (max-width: 1024px) {
  .book-consult .contact-consult .call-btn p, .book-consult .contact-consult .chat-btn p {
    font-size: 10px;
    font-weight: 600;
  }
}
@media only screen and (max-width: 320px) {
  .book-consult .contact-consult .call-btn p, .book-consult .contact-consult .chat-btn p {
    font-size: 9px;
  }
}
.book-consult .contact-consult .chat-btn {
  border: 1px solid #4CAF50;
  margin-left: 20px;
}
@media only screen and (max-width: 1024px) {
  .book-consult .contact-consult .chat-btn {
    margin-left: 10px;
  }
}

.reference-sec {
  height: 100px;
  background-color: #fff;
  display: flex;
  align-items: center;
  border-top: 1px solid #d6d6d6;
}
@media only screen and (max-width: 1024px) {
  .reference-sec {
    height: 240px;
  }
}
.reference-sec span {
  font-size: 10px;
  color: #45576d;
  line-height: 24px;
  font-weight: 400;
  display: flex;
  align-items: center;
}
.reference-sec .reference-list {
  text-align: left;
}
@media only screen and (max-width: 320px) {
  .reference-sec .reference-list {
    margin-top: 15px;
  }
}
.reference-sec .reference-list h5 {
  font-size: 10px;
  line-height: 18px;
  font-weight: 700;
  color: #2B2B2B;
  padding-bottom: 5px;
}
@media only screen and (max-width: 1024px) {
  .reference-sec .reference-list h5 {
    font-size: 12px;
    line-height: 21px;
  }
}
.reference-sec .reference-list .list-main ul {
  display: flex;
  list-style-type: decimal;
}
@media only screen and (max-width: 1024px) {
  .reference-sec .reference-list .list-main ul {
    display: block;
  }
}
.reference-sec .reference-list .list-main ul li {
  word-break: break-word;
  margin-left: 15px;
  margin-right: 20px;
}
.reference-sec .reference-list .list-main ul li::marker {
  font-size: 11px;
  font-weight: 400;
  color: #45576D;
}
.reference-sec .reference-list .list-main ul li a {
  text-decoration: none;
  font-size: 10px;
  color: #45576D;
  line-height: 24px;
  font-weight: 400;
}

.foot-note-sm-text {
  height: 93px;
  display: flex;
  align-items: center;
  border-top: 1px solid #d6d6d6;
  border-bottom: 1px solid #d6d6d6;
}
@media only screen and (max-width: 1024px) {
  .foot-note-sm-text {
    height: 240px;
  }
}
.foot-note-sm-text p {
  font-size: 10px;
  line-height: 18px;
  font-weight: 400;
  color: #45576D;
}

.landing-banner {
  position: relative;
}
.landing-banner:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: url("https://site-assets.fitterfly.com/site-assets/images/site-1/banner-path.svg") no-repeat top right;
  background-size: 650px;
}
@media only screen and (max-width: 520px) {
  .landing-banner:before {
    background-size: 370px;
  }
}

.result-path {
  position: relative;
}
.result-path:before {
  content: "";
  position: absolute;
  top: -20px;
  right: 0;
  width: 100%;
  height: 100%;
  background: url("https://site-assets.fitterfly.com/site-assets/images/site-1/image-slice.png") no-repeat top right;
  background-size: 510px;
}
@media only screen and (max-width: 1024px) {
  .result-path:before {
    top: 40px;
    background-size: 400px;
  }
}
@media only screen and (max-width: 520px) {
  .result-path:before {
    background-size: 200px;
    top: 80px;
  }
}
.result-path:after {
  content: "";
  position: absolute;
  top: 61%;
  left: -270px;
  width: 100%;
  height: 100%;
  background: url(https://site-assets.fitterfly.com/site-assets/images/site-1/image-slice-2.webp) no-repeat top left;
  background-size: 600px;
}
@media only screen and (max-width: 768px) {
  .result-path:after {
    top: 65%;
    background-size: 450px;
    left: -200px;
  }
}
@media only screen and (max-width: 520px) {
  .result-path:after {
    top: 85%;
    background-size: 260px;
    left: -103px;
  }
}
.result-path .result-card-sec .section-head h2 br {
  display: none;
}
@media only screen and (max-width: 1024px) {
  .result-path .result-card-sec .section-head h2 br {
    display: block;
  }
}

.thank-you-content {
  max-width: 500px;
}
@media only screen and (max-width: 1024px) {
  .thank-you-content {
    min-width: unset;
  }
  .thank-you-content .mt-30 {
    margin-top: 20px;
  }
}
.thank-you-content .bl-btn {
  background-color: #0767B1;
}
@media only screen and (max-width: 1024px) {
  .thank-you-content .bl-btn {
    height: 48px;
    font-size: 14px;
    font-weight: 400;
    padding: 15px;
  }
  .thank-you-content .bl-btn .wp-logo {
    width: 24px;
  }
}

.thankyou-msg {
  text-align: center;
  margin-bottom: 30px;
}
.thankyou-msg strong {
  display: flex;
  justify-content: center;
  font-size: 31px;
  line-height: 37px;
  font-weight: 600;
  letter-spacing: 0px;
  color: #28353D;
  margin-bottom: 15px;
}
@media screen and (max-width: 1680px) {
  .thankyou-msg strong {
    font-size: 24px;
    line-height: 28px;
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 1024px) {
  .thankyou-msg strong {
    font-size: 18px;
    line-height: 21px;
    margin-bottom: 8px;
  }
}
@media only screen and (max-width: 600px) {
  .thankyou-msg {
    margin-bottom: 10px !important;
  }
}
.thankyou-msg p {
  font-size: 22px;
  line-height: 26px;
  font-weight: 400;
  letter-spacing: 0px;
  color: #28353D;
  text-align: center;
}
@media screen and (max-width: 1680px) {
  .thankyou-msg p {
    font-size: 16px;
    line-height: 24px;
  }
}
@media only screen and (max-width: 1024px) {
  .thankyou-msg p {
    font-size: 14px;
    line-height: 24px;
  }
}
@media only screen and (max-width: 400px) {
  .thankyou-msg p {
    font-size: 14px;
  }
}
.thankyou-msg p .blue-txt {
  font-size: 22px;
  font-weight: 700;
  color: #0767B1;
}

.community-block {
  padding: 20px;
  background: #EBF7FD 0% 0% no-repeat padding-box;
  margin: 0 -30px;
}
@media only screen and (max-width: 1024px) {
  .community-block {
    padding: 20px;
    margin: 0 -20px;
  }
}
@media only screen and (max-width: 600px) {
  .community-block {
    padding: 10px;
    margin: 0 -10px;
  }
}
.community-block h4 {
  font-size: 24px;
  line-height: 33px;
  font-weight: 600;
  letter-spacing: 0px;
  color: #DB0E7E;
  margin-bottom: 12px;
}
@media screen and (max-width: 1680px) {
  .community-block h4 {
    font-size: 20px;
    line-height: 28px;
  }
}
@media only screen and (max-width: 1024px) {
  .community-block h4 {
    font-size: 18px;
    line-height: 28px;
    text-align: left;
    margin-bottom: 8px;
  }
}
@media only screen and (max-width: 600px) {
  .community-block h4 {
    font-size: 16px;
    line-height: initial;
  }
}
.community-block .community-list {
  padding: 0 40px;
}
@media only screen and (max-width: 1024px) {
  .community-block .community-list {
    padding: 0 0;
  }
}
.community-block .community-list ul {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
@media only screen and (max-width: 1024px) {
  .community-block .community-list ul {
    display: block;
  }
}
.community-block .community-list ul li {
  font-size: 18px;
  line-height: 26px;
  font-weight: 500;
  letter-spacing: 0px;
  color: #45576D;
  text-align: left;
  width: 48%;
  margin-right: 2%;
  padding-left: 33px;
  position: relative;
}
.community-block .community-list ul li:before {
  content: "";
  position: absolute;
  left: 16px;
  top: 4px;
  width: 8px;
  height: 13px;
  border: solid #0767b1;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(50deg);
  border-radius: 2px;
}
@media only screen and (max-width: 1024px) {
  .community-block .community-list ul li:before {
    left: 3px;
    top: 4px;
    width: 8px;
    height: 14px;
  }
}
@media screen and (max-width: 1680px) {
  .community-block .community-list ul li {
    font-size: 13px;
    line-height: 18px;
    margin-bottom: 8px;
  }
}
@media only screen and (max-width: 1024px) {
  .community-block .community-list ul li {
    font-size: 12px;
    line-height: 24px;
    width: 100%;
    margin-right: 0;
    padding-left: 24px;
    margin-bottom: 0;
  }
}

.flt-cta-box {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
@media only screen and (max-width: 1024px) {
  .flt-cta-box {
    margin: 0 -10px;
  }
}

.box-anim {
  animation-name: boxfloat;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
  margin-left: 30px;
  margin-top: 5px;
}

@keyframes boxfloat {
  0% {
    transform: translate(0, 0px);
  }
  50% {
    transform: translate(0, 15px);
  }
  100% {
    transform: translate(0, 0px);
  }
}
.carsouel-baner-pad {
  padding-right: 0px;
}
@media only screen and (max-width: 1024px) {
  .carsouel-baner-pad {
    padding-right: 15px;
  }
}

.disclaimer-sec {
  background-color: #fff;
  display: flex;
  align-items: center;
  border-top: 1px solid #d6d6d6;
  padding: 35px 0;
}
@media only screen and (max-width: 1024px) {
  .disclaimer-sec {
    padding: 20px 0;
  }
}
.disclaimer-sec .disclaimer-content h6, .disclaimer-sec .disclaimer-content p {
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
  color: #5C6E80;
  text-align: left;
}
@media only screen and (max-width: 1024px) {
  .disclaimer-sec .disclaimer-content h6, .disclaimer-sec .disclaimer-content p {
    font-size: 11px;
    line-height: 17px;
  }
}
.disclaimer-sec .disclaimer-content h6 {
  font-weight: 500;
  color: #5C6E80;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.new-popup .modal {
  position: fixed;
  z-index: 99999;
  padding: 2em;
  /* Centering */
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  overflow: auto;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 5px;
  /* Add the drop shadow */
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2), 0 5px 10px 0 rgba(0, 0, 0, 0.19);
}
@media screen and (max-width: 600px) {
  .new-popup .modal {
    padding: 1.5em;
  }
}
.new-popup .modal .modal-body {
  max-width: 813px;
  max-height: 700px;
  background-color: #ffffff;
  border-radius: 6px;
  position: relative;
}
.new-popup .modal .modal-body .cancel-button {
  position: absolute;
  cursor: pointer;
  display: flex;
  width: 36px;
  justify-content: center;
  align-items: center;
  height: 36px;
  background: url("https://site-assets.fitterfly.com/site-assets/images/site-1/close.svg") no-repeat center;
  z-index: 7;
  top: -36px;
  right: 0;
}
@media screen and (max-width: 600px) {
  .new-popup .modal .modal-body .cancel-button {
    top: 0px;
    background: url("https://site-assets.fitterfly.com/site-assets/images/site-1/close-black.svg") no-repeat center;
  }
}
.new-popup .modal .modal-body .modal-content {
  background: rgb(255, 255, 255) 0% 0% no-repeat padding-box;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  border-radius: 12px;
  position: relative;
  padding: 30px;
}
@media screen and (max-width: 1024px) {
  .new-popup .modal .modal-body .modal-content {
    padding: 20px;
  }
}
@media screen and (max-width: 400px) {
  .new-popup .modal .modal-body .modal-content {
    padding: 15px;
  }
}
.new-popup .modal .modal-body .modal-content h3 {
  font-size: 40px;
  line-height: 50px;
  font-weight: 700;
  letter-spacing: 0px;
  text-align: center;
  color: #0767B1;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #B5B5B5;
}
@media screen and (max-width: 1680px) {
  .new-popup .modal .modal-body .modal-content h3 {
    font-size: 24px;
    line-height: 28px;
  }
}
@media screen and (max-width: 400px) {
  .new-popup .modal .modal-body .modal-content h3 {
    font-size: 18px;
    line-height: initial;
    padding-bottom: 10px;
    margin-bottom: 10px;
  }
}
.new-popup .modal .modal-body .modal-content h3 .sub-head-text {
  font-size: 22px;
  line-height: 26px;
  font-weight: 500;
  letter-spacing: 0px;
  color: #28353D;
}
@media screen and (max-width: 1680px) {
  .new-popup .modal .modal-body .modal-content h3 .sub-head-text {
    font-size: 18px;
    line-height: 21px;
    font-weight: 600;
    margin-top: 10px;
    display: block;
  }
}
.new-popup .modal .modal-body .modal-content .thankyou-msg {
  margin-bottom: 20px;
}
.new-popup .modal .modal-body .pp-box {
  padding: 0 20px;
}
.new-popup .modal .modal-body .pp-box .pp-img {
  width: 140px;
  height: 140px;
  margin: 0 auto 20px;
}
@media only screen and (max-width: 1680px) {
  .new-popup .modal .modal-body .pp-box .pp-img {
    width: 90px;
    height: 90px;
  }
}
.new-popup .modal .modal-body .pp-box .pp-info h4 {
  font-size: 38px;
  line-height: 54px;
  margin-bottom: 15px;
}
@media only screen and (max-width: 1680px) {
  .new-popup .modal .modal-body .pp-box .pp-info h4 {
    font-size: 21px;
    line-height: 25px;
  }
}
.new-popup .modal .modal-body .pp-box .pp-info strong {
  font-size: 24px;
  line-height: 31px;
  display: block;
}
@media only screen and (max-width: 1680px) {
  .new-popup .modal .modal-body .pp-box .pp-info strong {
    font-size: 14px;
    line-height: 19px;
  }
}
@media only screen and (max-width: 1024px) {
  .new-popup .modal .modal-body .pp-box .pp-info strong br {
    display: none;
  }
}
.new-popup .modal .modal-body .pp-box .pp-links {
  display: flex;
  margin-top: 20px;
  justify-content: center;
}
.new-popup .modal .modal-body .pp-box .pp-links a {
  margin: 0 5px;
  max-width: 140px;
}
.new-popup .disabled {
  pointer-events: none;
  opacity: 0.7;
}

.pp-popup .modal .modal-body {
  width: 100%;
  max-width: 450px;
  max-height: 400px;
  height: 100%;
}
.pp-popup .modal .modal-body .modal-content {
  height: 100%;
}

.popup-form .form-group {
  text-align: left;
}
.popup-form .form-group label {
  font-size: 18px;
  line-height: 21px;
  font-weight: 600;
  letter-spacing: 0px;
  text-align: left;
  color: #28353D;
  margin-bottom: 10px;
  display: flex;
}
@media screen and (max-width: 1680px) {
  .popup-form .form-group label {
    font-size: 15px;
  }
}
.popup-form .form-group input[type=text], .popup-form .form-group input[type=number], .popup-form .form-group input[type=email], .popup-form .form-group select, .popup-form .form-group textarea {
  padding: 14px 18px;
  background: #FFFFFF 0% 0% no-repeat padding-box;
  border: 1px solid #B5B5B5;
  border-radius: 12px;
  font-size: 22px;
  line-height: 28px;
  font-weight: 400;
  letter-spacing: 0px;
  text-align: left;
}
@media screen and (max-width: 1680px) {
  .popup-form .form-group input[type=text], .popup-form .form-group input[type=number], .popup-form .form-group input[type=email], .popup-form .form-group select, .popup-form .form-group textarea {
    font-size: 18px;
    line-height: 21px;
  }
}
@media screen and (max-width: 1680px) {
  .popup-form .form-group input[type=text], .popup-form .form-group input[type=number], .popup-form .form-group input[type=email], .popup-form .form-group select, .popup-form .form-group textarea {
    padding: 12px 16px;
  }
}
@media screen and (max-width: 400px) {
  .popup-form .form-group input[type=text], .popup-form .form-group input[type=number], .popup-form .form-group input[type=email], .popup-form .form-group select, .popup-form .form-group textarea {
    padding: 10px;
  }
}
.popup-form .form-group input::placeholder {
  font-size: 22px;
  line-height: 28px;
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0px;
  text-align: left;
  color: #DDDDDD;
}
@media screen and (max-width: 1680px) {
  .popup-form .form-group input::placeholder {
    font-size: 18px;
    line-height: 21px;
  }
}
@media screen and (max-width: 400px) {
  .popup-form .form-group {
    margin-bottom: 15px !important;
  }
}
.popup-form .two-form-group {
  display: flex;
}
@media screen and (max-width: 1024px) {
  .popup-form .two-form-group {
    display: block;
  }
}
.popup-form .two-form-group .form-group {
  width: 48%;
  margin-left: 4%;
}
@media screen and (max-width: 1024px) {
  .popup-form .two-form-group .form-group {
    width: 100%;
    margin-left: 0px;
  }
}
.popup-form .two-form-group .form-group:first-child {
  margin-left: 0;
}
.popup-form .checkbox {
  display: flex;
  justify-content: center;
  padding-left: 0;
}
.popup-form .checkbox .mark {
  background: #FFFFFF 0% 0% no-repeat padding-box;
  border: 1px solid #707070;
  border-radius: 6px;
  margin-right: 15px;
  position: unset;
  flex: none;
}
@media screen and (max-width: 400px) {
  .popup-form .checkbox .mark {
    margin-right: 10px;
  }
}
.popup-form .checkbox {
  font-size: 15px;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: 0px;
  color: #45576D;
}
@media screen and (max-width: 1680px) {
  .popup-form .checkbox {
    font-size: 14px;
    line-height: 24px;
  }
}
@media screen and (max-width: 400px) {
  .popup-form .checkbox {
    font-size: 12px;
    line-height: initial;
  }
}
.popup-form .checkbox label.wrry-not-check {
  font-weight: 400;
  margin: 0px;
  padding: 0px;
  cursor: pointer;
}
@media screen and (max-width: 400px) {
  .popup-form .checkbox label.wrry-not-check {
    font-size: 12px;
    line-height: initial;
  }
}
