/* Theme base styles */

/* Tools
Any animations, or functions used throughout the project.
Note: _macros.css needs to be imported into each stylesheet where macros are used and not included here
*/

/* Generic
This is where reset, normalize & box-sizing styles go.
*/

*, *:before, *:after {
  box-sizing: border-box;
}
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
   ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */

html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */

/**
 * Remove the margin in all browsers.
 */

body {
  margin: 0;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */

/**
 * Add the correct box sizing in Firefox.
 */

hr {
  box-sizing: content-box;
  height: 0;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, Opera, and Safari.
 */

abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */

b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */

small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Forms
   ========================================================================== */

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Remove the inheritance of text transform in Edge and Firefox.
 * 1. Remove the inheritance of text transform in Firefox.
 */

button,
select { /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * Remove the padding so developers are not caught out when they zero out `fieldset` elements in all browsers.
 */

legend {
  padding: 0;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */

progress {
  vertical-align: baseline;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */

[type="search"] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */

/*
 * Add the correct display in Edge and Firefox.
 */

details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */

summary {
  display: list-item;
}

/* Objects
Non-cosmetic design patterns including grid and layout classes)
*/

/* CSS variables */

:root {
  --column-gap: 2.13%;
}

/* Mobile layout */

.row-fluid {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

.row-fluid [class*='span'] {
  min-height: 1px;
  width: 100%;
}

/* Desktop layout */

@media (min-width: 768px) {
  .row-fluid {
    flex-wrap: nowrap;
    justify-content: space-between;
  }

  .row-fluid .span11 {
    width: calc(91.66% - var(--column-gap) * 0.0833);
  }

  .row-fluid .span10 {
    width: calc(83.33% - var(--column-gap) * 0.166);
  }

  .row-fluid .span9 {
    width: calc(75% - (var(--column-gap) * 0.25));
  }

  .row-fluid .span8 {
    width: calc(66.66% - var(--column-gap) * 0.333);
  }

  .row-fluid .span7 {
    width: calc(58.33% - var(--column-gap) * 0.4166);
  }

  .row-fluid .span6 {
    width: calc(50% - var(--column-gap) * 0.5);
  }

  .row-fluid .span5 {
    width: calc(41.66% - var(--column-gap) * 0.5833);
  }

  .row-fluid .span4 {
    width: calc(33.33% - var(--column-gap) * 0.6668);
  }

  .row-fluid .span3 {
    width: calc(25% - var(--column-gap) * 0.75);
  }

  .row-fluid .span2 {
    width: calc(16.66% - var(--column-gap) * 0.8333);
  }

  .row-fluid .span1 {
    width: calc(8.33% - var(--column-gap) * 0.9166);
  }
}
.content-wrapper {
  margin: 0 auto;
  padding: 0 1rem;
}

@media screen and (min-width: 1380px) {
  .content-wrapper {
    padding: 0;
  }
}

.dnd-section > .row-fluid {
  margin: 0 auto;
}

/* .dnd-section .dnd-column {
  padding: 0 1rem;
}
 */

@media (max-width: 767px) {
  .dnd-section .dnd-column {
    padding: 0;
  }
}

/* Fonts */
@font-face {
    font-family: 'fibra_oneultralight';
    src: url('//26304527.fs1.hubspotusercontent-eu1.net/hubfs/26304527/raw_assets/public/avidii/fonts/fibraone-ultralight-webfont.woff2') format('woff2'),
      url('//26304527.fs1.hubspotusercontent-eu1.net/hubfs/26304527/raw_assets/public/avidii/fonts/fibraone-ultralight-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

@font-face {
  font-family: 'fibra_onelight';
  src: url('//26304527.fs1.hubspotusercontent-eu1.net/hubfs/26304527/raw_assets/public/avidii/fonts/fibraone-light-webfont.woff2') format('woff2'),
    url('//26304527.fs1.hubspotusercontent-eu1.net/hubfs/26304527/raw_assets/public/avidii/fonts/fibraone-light-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

@font-face {
    font-family: 'fibra_onethin';
    src: url('//26304527.fs1.hubspotusercontent-eu1.net/hubfs/26304527/raw_assets/public/avidii/fonts/fibraone-thin-webfont.woff2') format('woff2'),
      url('//26304527.fs1.hubspotusercontent-eu1.net/hubfs/26304527/raw_assets/public/avidii/fonts/fibraone-thin-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'fibra_oneregular';
    src: url('//26304527.fs1.hubspotusercontent-eu1.net/hubfs/26304527/raw_assets/public/avidii/fonts/fibraone-regular-webfont.woff2') format('woff2'),
      url('//26304527.fs1.hubspotusercontent-eu1.net/hubfs/26304527/raw_assets/public/avidii/fonts/fibraone-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'fibra_onesemibold';
    src: url('//26304527.fs1.hubspotusercontent-eu1.net/hubfs/26304527/raw_assets/public/avidii/fonts/fibraone-semibold-webfont.woff2') format('woff2'),
      url('//26304527.fs1.hubspotusercontent-eu1.net/hubfs/26304527/raw_assets/public/avidii/fonts/fibraone-semibold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'fibra_oneultrabold';
    src: url('//26304527.fs1.hubspotusercontent-eu1.net/hubfs/26304527/raw_assets/public/avidii/fonts/fibraone-ultrabold-webfont.woff2') format('woff2'),
         url('//26304527.fs1.hubspotusercontent-eu1.net/hubfs/26304527/raw_assets/public/avidii/fonts/fibraone-ultrabold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'fibra_onebold';
    src: url('//26304527.fs1.hubspotusercontent-eu1.net/hubfs/26304527/raw_assets/public/avidii/fonts/fibraone-bold-webfont.woff2') format('woff2'),
      url('//26304527.fs1.hubspotusercontent-eu1.net/hubfs/26304527/raw_assets/public/avidii/fonts/fibraone-bold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'fibra_oneheavy';
    src: url('//26304527.fs1.hubspotusercontent-eu1.net/hubfs/26304527/raw_assets/public/avidii/fonts/fibraone-heavy-webfont.woff2') format('woff2'),
      url('//26304527.fs1.hubspotusercontent-eu1.net/hubfs/26304527/raw_assets/public/avidii/fonts/fibraone-heavy-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}
@font-face {
  font-family: 'icomoon';
  src: url('//26304527.fs1.hubspotusercontent-eu1.net/hubfs/26304527/raw_assets/public/avidii/fonts/icomoon.ttf?dmtmqb') format('truetype'),
    url('//26304527.fs1.hubspotusercontent-eu1.net/hubfs/26304527/raw_assets/public/avidii/fonts/icomoon.woff?dmtmqb') format('woff'),
    url('//26304527.fs1.hubspotusercontent-eu1.net/hubfs/26304527/raw_assets/public/avidii/fonts/icomoon.svg?dmtmqb#icomoon') format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: block;
  
}

/* https://26304527.fs1.hubspotusercontent-eu1.net/hub/26304527/hubfs/ */

[class^="icon-"], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'icomoon' !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;

  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-curve-arrow:before {
  content: "\e917";
}
.icon-hide:before {
  content: "\e914";
}
.icon-show:before {
  content: "\e915";
}
.icon-downlaod:before {
  content: "\e916";
}
.icon-instagram:before {
  content: "\e903";
}
.icon-tiktok:before {
  content: "\e904";
}
.icon-angle-double-right:before {
  content: "\e90c";
}
.icon-angle-double-left:before {
  content: "\e90d";
}
.icon-youtube:before {
  content: "\e90b";
}
.icon-search:before {
  content: "\e900";
}
.icon-phone:before {
  content: "\e908";
}
.icon-mail:before {
  content: "\e909";
}
.icon-location:before {
  content: "\e90a";
}
.icon-close:before {
  content: "\e901";
}
.icon-chevron-thin-left:before {
  content: "\e90e";
}
.icon-chevron-thin-right:before {
  content: "\e90f";
}
.icon-arrow-down:before {
  content: "\e902";
}
.icon-whatsapp:before {
  content: "\e913";
}
.icon-calendar:before {
  content: "\e911";
}
.icon-call:before {
  content: "\e912";
}
.icon-youtube1:before {
  content: "\e910";
}
.icon-linkedin:before {
  content: "\e906";
}
.icon-facebook:before {
  content: "\e907";
}
.icon-twitter:before {
  content: "\e905";
}

/* Elements
Base HMTL elements are styled in this section (<body<, <h1>, <a>, <p>, <button> etc.)
*/

html {
  scroll-behavior: smooth;
}

html[lang^="ja"] body,
html[lang^="zh"] body,
html[lang^="ko"] body {
  line-break: strict;
  overflow-wrap: normal;
  word-break: break-all;
}

body {
  font-family: 'fibra_oneregular', sans-serif;
  font-size: 16px;
  line-height: 24px;
  color: #4b4c76;
  overflow-wrap: break-word;
}

body.menu-active, body.remove-scroll {
  overflow: hidden;
}

.body-container-wrapper__landing-page {
  padding-top: 74px;
}
.body-container-wrapper__home-page {
  padding-top: 79px;
}

@media(min-width: 360px) {
  .body-container-wrapper__landing-page {
    padding-top: 76px;
  }
}
@media(min-width: 480px) {
  .body-container-wrapper__home-page {
    padding-top: 84px;
  }
}
@media(min-width: 768px) {
  .body-container-wrapper__landing-page {
    padding-top: 89px;
  }
}

/* Paragraphs */

p {
  margin: 0 0 16px;
}

/* Anchors */

a {
  cursor: pointer;
}

/* Headings */

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'fibra_onesemibold', sans-serif;
  margin: 0 0 1.4rem;
  word-break: break-word;
}

h1 {
  font-size: 36px;
  line-height: 44px;
}

h2 {
  font-size: 30px;
  line-height: 38px;
}

h3 {
  font-size: 26px;
  line-height: 34px;
}

h4 {
  font-size: 22px;
  line-height: 30px;
}

h5 {
  font-size: 20px;
  line-height: 28px;
}

h6 {
  font-size: 18px;
  line-height: 26px;
}

.heading-module {
  font-family: 'fibra_oneultrabold';
}
.heading-module span {
  color: #fe3671;
}

h2.heading-module {
  font-size: 32px;
  line-height: 46px;
  margin-bottom: 40px;
}

@media (min-width: 768px) {
  h2.heading-module {
    font-size: 40px;
  line-height: 54px;
  }
}
@media (min-width: 1200px) {
  h2.heading-module {
    margin-bottom: 60px;
  }
}

/* Lists */

ul,
ol {
  margin: 0 0 1.4rem;
}

ul ul,
ol ul,
ul ol,
ol ol {
  margin: 0;
}

ul.no-list {
  list-style: none;
  margin: 0;
  padding-left: 0;
}

/* Code blocks */

pre {
  overflow: auto;
}

code {
  vertical-align: bottom;
}

/* Blockquotes */

blockquote {
  border-left: 2px solid;
  margin: 0 0 1.4rem;
  padding-left: 0.7rem;
}

/* Horizontal rules */

hr {
  border: none;
  border-bottom: 1px solid #CCC;
}

/* Image alt text */

img {
  max-width: 100%;
  height: auto;
}

/* Container */
.container {
  padding: 0 15px;
  max-width: 1320px;
  margin: 0 auto;
}

.container-in {
  padding: 0 30px;
  max-width: 1320px;
  margin: 0 auto;
}

@media(min-width: 768px) {
  .container-in {
    padding: 0 40px;
    max-width: 1320px;
    margin: 0 auto;
  }
}
@media(min-width: 1200px) {
  .container-in {
    padding: 0 60px;
    max-width: 1320px;
    margin: 0 auto;
  }
}

body hs-cmsf-branding {
  display: none !important;
}

/* embed video */
.iframe_wrapper {
  height: 0;
  padding-bottom: 56.25%;
  position: relative;
}
.embed_container, .oembed_container {
  display: inline-block;
  position: relative;
  width: 100%;
  max-width: 100% !important;
  max-height: 100% !important;
}
.embed_container iframe, .oembed_container iframe {
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  max-width: 100% !important;
  max-height: 100% !important;
}

.richtext h1 a, .richtext h2 a, .richtext h3 a, .richtext h4 a, .richtext h5 a, .richtext h6 a {
  color: #4b4c76;
  text-decoration: none;
}
.richtext ul li {
  padding-bottom: 10px;
}
.richtext ul li a {
  color: #4b4c76;
  text-decoration: none;
}
.cta_button,
.hs-button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
}

.cta_button:disabled,
.hs-button:disabled {
  background-color: #D0D0D0;
  border-color: #D0D0D0;
  color: #E6E6E6;
}
/* #fe3671 */
/* No button */
.cta_button, 
.hs-button {
  font-family: 'fibra_onesemibold', sans-serif;
  background: #7fffd8;
  border: none;
  border-radius: 35px;
  color: #4b4c76;
  font-size: inherit;
  line-height: inherit;
  margin-bottom: 0;
  padding: 12px 22px;
  text-align: center;
  text-decoration: none;
  min-width: 145px;
  box-shadow: 0 4px 11px rgb(127,255,216,35%);
}

.cta_button:hover, .hs-button:hover,
.cta_button:focus, .hs-button:focus,
.cta_button:active, .hs-button:acitve {
  background-color: #7fffd8;
}

.cta_button.secondary {
  background: #fff;
  color: #fe3671;
  box-shadow: 0 4px 11px rgba(255,255,255,35%);
}

.cta_button.dark-blue {
  background: #4b4c76;
  color: #fff;
  box-shadow: 0 4px 11px rgba(75,76,118,35%);
}

.cta_button.green {
  background: #05bd8f;
  color: #fff;
  box-shadow: none;
}

.cta_button.download-btn {
  background: #4b4c76;
  color: #fff;
  box-shadow: 0 4px 11px rgba(75,76,118,35%);
  border-radius: 8px;
}

.cta_button.show-solution {
  background: #20e3b2;
  color: #fff;
  box-shadow: 0 4px 11px rgba(32,227,278,35%);
  border-radius: 8px;
}

.cta_button.hide-solution {
  background: rgba(32,227,178,0.8);
  color: #fff;
  box-shadow: 0 4px 11px rgba(32,227,278,35%);
  border-radius: 8px;
}

.hs-button.comment-reply-to {
  background: none;
  background: #fe3671;
  color: #fff;
  margin-top: 15px;
}

.cta_button.backbtn {
  margin-bottom: 25px;
  min-width: auto;
  background: transparent;
  border: 1px solid #4b4c76;
  color: #4b4c76;
  box-shadow: none;
  font-size: 14px;
  line-height: 18px;
  padding: 8px 18px;
}
.cta_button.backbtn .icon {
  font-size: 12px;
  line-height: 12px;
}
/* Form fields */

.hs-form-field {
  margin-bottom: 1.4rem;
}

/* Labels */

form label {
  display: block;
  font-size: 0.875rem;
  margin-bottom: 0.35rem;
}

/* Help text - legends */

form legend {
  font-size: 0.875rem;
  text-align: left;
}

/* Inputs */
form input[type=text],
form input[type=email],
form input[type=password],
form input[type=tel],
form input[type=number],
form input[type=file],
form select,
form textarea {
  color: #4b4c76;
  background-color: #fff;
	border: 2px solid #ebebeb;
  border-radius: 30px;
  display: block;
  font-size: 16px;
  line-height: 20px;
  padding: 12px 15px;
  width: 100% !important;
  outline: none;
	box-shadow: none;
}

@media (min-width: 576px) {
  form input[type=text],
  form input[type=email],
  form input[type=password],
  form input[type=tel],
  form input[type=number],
  form input[type=file],
  form select,
  form textarea {
    padding: 12px 25px;
  }
}

form input[type=text]::placeholder,
form input[type=email]::placeholder,
form input[type=password]::placeholder,
form input[type=tel]::placeholder,
form input[type=number]::placeholder,
form input[type=file]::placeholder,
form select::placeholder,
form textarea::placeholder {
  color: #4b4c76;
  font-size: 16px;
  line-height: 20px;
  opacity: 0.7;
}

form textarea {
  resize: none;
  min-height: 120px;
}

form fieldset {
  max-width: 100% !important;
}

form select {
  appearance: none;
  background-image: url(data:image/svg+xml;base64,PHN2ZyBmaWxsPSdibGFjaycgaGVpZ2h0PScyNCcgdmlld0JveD0nMCAwIDI0IDI0JyB3aWR0aD0nMjQnIHhtbG5zPSdodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2Zyc+PHBhdGggZD0nTTcgMTBsNSA1IDUtNXonLz48cGF0aCBkPSdNMCAwaDI0djI0SDB6JyBmaWxsPSdub25lJy8+PC9zdmc+);
  background-repeat: no-repeat;
  background-position-x: 98%;
  background-position-y: 9px;
}

/* Inputs - checkbox/radio */
form .inputs-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

form .inputs-list > li {
  display: block;
  margin: 5px 0;
}

form .inputs-list input,
form .inputs-list span {
  vertical-align: middle;
}

form input[type=checkbox],
form input[type=radio] {
  cursor: pointer;
}

/* Inputs - file picker */
form input[type=file] {
  background-color: transparent;
  border: initial;
  padding: initial;
}

/* Headings and text */
form .hs-richtext,
form .hs-richtext p {
  font-size: 16px;
  line-height: 20px;
}

form .hs-richtext img {
  max-width: 100% !important;
}

/* Validation */
.hs-form-required {
  color: #000;
}

.hs-input.invalid.error {
  border-color: #4b4c76;
}

form .hs-form-field .hs-error-msg {
  color: #4b4c76;
  font-size: 12px;
  line-height: 16px;
  text-align: left;
  margin: 0;
  padding-left: 18px;
}

form .hs-form-field label {
  font-size: 14px;
  line-height: 20px;
  color: #4b4c76;
  text-align: left; 
}

.hs-form .inputs-list .hs-form-booleancheckbox .hs-form-booleancheckbox-display {
  display: flex;
  flex-flow: row wrap;
  align-items: flex-start;
  font-size: 12px;
  line-height: 18px;
}

.hs-form .inputs-list .hs-form-booleancheckbox input[type=checkbox] {
  height: 20px;
  width: 20px;
  margin-top: 4px;
  accent-color: #4b4c76;
}

.hs-form .inputs-list .hs-form-booleancheckbox span {
  margin-left: 0;
  padding-left: 12px !important;
  width: calc(100% - 20px);
}

form .hs-form-booleancheckbox-display span a {
  color: #1CE3B2;
}

.hs-form .legal-consent-container .hs-richtext {
  font-size: 18px;
  line-height: 22px;
  color: #1CE3B2;
}

/* Captcha */
.grecaptcha-badge {
  margin: 0 auto;
}

.hs-fieldtype-intl-phone select {
  padding: 12px 27px 12px 18px;
  background-position-x: 96%;
}
@media (min-width: 576px) {
  .hs-fieldtype-intl-phone select {
    padding: 12px 30px 12px 18px;
  }
}


/* Subscription Form */
.subscription-form {
  background: #f6f7fb;
  border: 1px solid #f3f3f3;
  box-shadow: 0 0 2px 0 rgba(0,0,0,.1);
  border-radius: 5px;
  padding: 30px 20px;
  margin: 40px 0;
  text-align: center;
}
.subscription-form form input[type="email"] {
  padding: 18px 25px;
}
@media (min-width: 768px) {
  .subscription-form {
    padding: 30px;
  }
}

/* Sidebar Form */
.sidebar-form {
  background: #f6f7fb;
  border: 1px solid #f3f3f3;
  box-shadow: 0 0 2px 0 rgba(0,0,0,.1);
  border-radius: 5px;
  padding: 30px 20px;
  margin-top: 50px;
}
.sidebar-form form .hs-submit {
  text-align: center;
}
.sidebar-form .hs-fieldtype-intl-phone select {
  padding: 12px 27px 12px 18px;
  background-position-x: 96%;
}
@media (min-width: 576px) {
  .sidebar-form form input[type="email"], 
  .sidebar-form form input[type="file"], 
  .sidebar-form form input[type="number"], 
  .sidebar-form form input[type="password"], 
  .sidebar-form form input[type="tel"], 
  .sidebar-form form input[type="text"], 
  .sidebar-form form select, 
  .sidebar-form form textarea {
    padding: 12px 25px;
  }
  .sidebar-form .hs-fieldtype-intl-phone select {
    padding: 12px 30px 12px 18px;
  }
}
@media (min-width: 992px) {
  .sidebar-form form input[type="email"], 
  .sidebar-form form input[type="file"], 
  .sidebar-form form input[type="number"], 
  .sidebar-form form input[type="password"], 
  .sidebar-form form input[type="tel"], 
  .sidebar-form form input[type="text"], 
  .sidebar-form form select, 
  .sidebar-form form textarea {
    padding: 12px 16px;
  }
}
/* Table */

table {
  border-collapse: collapse;
  margin-bottom: 1.4rem;
  overflow-wrap: break-word;
}

/* Table cells */

td,
th {
  vertical-align: top;
}

/* Table header */

thead th {
  vertical-align: bottom;
}

/* Components
Specific pieces of UI that are stylized. Typically used for global partial styling
*/

/* Menu and simple menu */

.hs-menu-wrapper ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding-left: 0;
}

/* Horizontal menu */

.hs-menu-wrapper.hs-menu-flow-horizontal .hs-menu-children-wrapper {
  flex-direction: column;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.hs-menu-flow-horizontal ul {
    flex-direction: column;
  }
}

/* Vertical menu */

.hs-menu-wrapper.hs-menu-flow-vertical ul {
  flex-direction: column;
}

/* Flyouts */

.hs-menu-wrapper.hs-menu-flow-vertical.flyouts ul {
  display: inline-flex;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.hs-menu-flow-vertical ul {
    display: flex;
  }
}

.hs-menu-wrapper.flyouts .hs-item-has-children {
  position: relative;
}

.hs-menu-wrapper.flyouts .hs-menu-children-wrapper {
  left: -9999px;
  opacity: 0;
  position: absolute;
}

.hs-menu-wrapper.flyouts .hs-menu-children-wrapper a {
  display: block;
  white-space: nowrap;
}

.hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
  left: 0;
  opacity: 1;
  top: 100%;
}

.hs-menu-wrapper.hs-menu-flow-vertical.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
  left: 100%;
  opacity: 1;
  top: 0;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.flyouts .hs-menu-children-wrapper,
  .hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper,
  .hs-menu-wrapper.hs-menu-flow-vertical.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
    left: 0;
    opacity: 1;
    position: relative;
    top: auto;
  }
}

/* CTA, logo, and rich text images */

.hs_cos_wrapper_type_cta img,
.hs_cos_wrapper_type_logo img,
.hs_cos_wrapper_type_rich_text img {
  height: auto;
  max-width: 100%;
}
.header {
  box-shadow: 0 0 5px rgb(0 0 0 / 25%);
  background-color: #fff;
  position: fixed;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 10;
  padding: 15px 0;
}
.header .container {
  position: relative;
}
.header .header__holder {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.header .header__logo {
  max-width: 90px;
}
.header .header__logo a {
  display: block;
  line-height: 0;
}
.header .header__logo a img {
  max-width: 100%;
}
.header .cta_button.popup_button {
  min-width: auto;
  font-size: 12px;
  line-height: 16px;
  padding: 10px 12px;
  display: none;
}

.header .header__menu {
  width: calc(100% - 90px);
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-end;
  align-items: center;
  padding-right: 45px;
}
.header #main-nav ul {
  display: block;
  margin: 0;
  padding: 0;
}
.header #main-nav ul li {
  border-bottom: 1px solid #fff;
  position: relative;
}
.header #main-nav ul li a {
  font-family: 'fibra_onesemibold';
  font-size: 15px;
  color: #fff;
  text-decoration: none;
  display: block;
  padding: 15px 40px 15px 20px;
  transition: all 0.4s ease-in-out;
}
.header #main-nav ul li.hs-item-has-children .icon-arrow-down {
  color: #fff;
  position: absolute;
  right: 10px;
  top: 17px;
  font-size: 20px;
  line-height: 20px;
  font-weight: 700;
  cursor: pointer;
}
.header #main-nav ul li.hs-item-has-children:hover .hs-menu-children-wrapper {
  opacity: 0;
  visibility: hidden;
}
.header #main-nav ul li.hs-item-has-children .hs-menu-children-wrapper {
  min-width: 100%;
  background-color: transparent;
  box-shadow: 0 0 20px 0 rgba(0,0,0,.1);
  position: static;
  max-height: 0;
  opacity: 0 !important;
  visibility: hidden !important;
  transition: all .3s ease-out 0;
  padding: 0;
  z-index: 1;
  border-radius: 3px;
  display: block;
  z-index: 10;
}
.header #main-nav ul li.hs-item-has-children .hs-menu-children-wrapper.open-dropdown {
  opacity: 1 !important;
  visibility: visible !important;
  max-height: inherit;
}
.header #main-nav ul li.hs-item-has-children .hs-menu-children-wrapper li:hover {
  background: rgba(0,0,0,.05);
}
.header #main-nav ul li.hs-item-has-children .hs-menu-children-wrapper li {
  border-top: 1px solid #fff;
  border-bottom: 0;
}
.header #main-nav ul li.hs-item-has-children .hs-menu-children-wrapper li a {
  font-family: 'fibra_oneregular';
  white-space: nowrap;
  width: auto;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  padding: 15px 30px;
}
.header #main-nav ul li.hs-item-has-children .hs-menu-children-wrapper li.hs-item-has-children .hs-menu-children-wrapper li a {
  padding: 15px 40px;
}

.header .nav-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 0;
  right: 0;
  overflow-y: auto;
  z-index: 10;
/*   transition: all 0.6s ease-in-out; */
}
.header .nav-bar #main-nav {
  padding: 20px 0 30px;
  background: #4b4c76;
  height: 100%;
  transform: translateY(-100%);
  transition: all 0.6s ease-in-out;
}
.menu-active .header .nav-bar {
  height: 100%;
}
.menu-active .header .nav-bar #main-nav {
  transform: translateY(0);
}


/* mobile menu toogle */
.navbar-toggle {
  width: 32px;
  height: 30px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background: transparent;
  text-indent: -9999px;
  overflow: hidden;
  outline: none;
  box-shadow: none;
  border: none;
  cursor: pointer;
  z-index: 10;
  padding: 0;
}
.navbar-toggle:after,
.navbar-toggle:before,
.navbar-toggle span {
  position: absolute;
  left: 0;
  right: 0;
  background: #4b4c76;
  height: 2px;
  transition: all 0.3s ease;
  width: 32px;
}
.navbar-toggle span {
  top: 50%;
  transform: translateY(-50%);
}
.navbar-toggle:after,
.navbar-toggle:before {
  content: '';
}
.navbar-toggle:after {
  bottom: 23px
}
.navbar-toggle:before {
  top: 23px
}
.menu-active .navbar-toggle {
  background: transparent;
}
.menu-active .navbar-toggle:after,
.menu-active .navbar-toggle:before,
.menu-active .navbar-toggle span {
  background: #fff;
}
.menu-active .navbar-toggle:before {
  transform: rotate(45deg) translate(-6px, -6px)
}
.menu-active .navbar-toggle:after {
  transform: rotate(-45deg) translate(-7px, 7px)
}
.menu-active .navbar-toggle span {
  opacity: 0;
  visibility: hidden;
}



@media (min-width: 360px) {
  .header .cta_button.popup_button {
    display: block;
  }
}
@media (min-width: 480px) {
  .header .header__logo {
    max-width: 130px;
  }
  .header .header__menu {
    width: calc(100% - 130px);
    padding-right: 50px;
  }
  .header .cta_button.popup_button {
    font-size: 14px;
    line-height: 18px;
    padding: 12px 16px;
  }
}
@media (min-width: 1200px) {
  .navbar-toggle {
    display: none;
  }
  .navbar-toggle:after,
  .navbar-toggle:before,
  .navbar-toggle span {
    background: #4b4c76;
  }
  .menu-active .navbar-toggle:after,
  .menu-active .navbar-toggle:before,
  .menu-active .navbar-toggle span {
    background: #4b4c76;
  }
  .header .header__menu {
    padding: 0;
  }
  .header .nav-bar {
    position: static;
    overflow-y: unset;
    transition: none;
    height: auto;
    z-index: 1;
    padding-right: 25px;
  }
  .header .nav-bar #main-nav {
    padding: 0;
    background: transparent;
    transform: none;
    transition: none;
    height: auto;
  }
  .header #main-nav ul {
    display: flex;
    flex-flow: row wrap;
  }
  .header #main-nav ul li {
    border: none;
  }
  .header #main-nav ul li a {
    color: #4b4c76;
    padding: 15px 20px;
  }
  .header #main-nav ul li.hs-item-has-children .icon-arrow-down {
    color: #4b4c76;
    right: -2px;
  }
  .header #main-nav ul li.hs-item-has-children .hs-menu-children-wrapper li.hs-item-has-children .icon-arrow-down {
    right: 4px;
    top: 13px;
  }
  .header #main-nav ul li.hs-item-has-children:hover .hs-menu-children-wrapper {
    opacity: 1 !important;
    visibility: visible !important;
  }
  .header #main-nav ul li.hs-item-has-children .hs-menu-children-wrapper {
    background-color: #fff;
    position: absolute;
    top: 100%;
    left: 0;
    max-height: inherit;
  }
  .header #main-nav ul li.hs-item-has-children .hs-menu-children-wrapper li a {
    padding: 10px 20px;
  }
  .header #main-nav ul li.hs-item-has-children .hs-menu-children-wrapper li .hs-menu-children-wrapper {
    position: static;
    display: none;
  }
  .header #main-nav ul li.hs-item-has-children .hs-menu-children-wrapper li:hover .hs-menu-children-wrapper {
    display: block;
    position: absolute;
    top: 0;
    left: 100%;
  }
  .header #main-nav ul li.hs-item-has-children .hs-menu-children-wrapper li:hover .icon-arrow-down {
    transform: rotate(-90deg);
  }
  .header #main-nav ul li.hs-item-has-children .hs-menu-children-wrapper li.hs-item-has-children .hs-menu-children-wrapper li a {
    padding: 10px 30px;
  }
}
.header-2 {
  box-shadow: 0 0 5px rgb(0 0 0 / 25%);
  background-color: #fff;
  position: fixed;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 10;
  padding: 20px 0;
}
.header-2 .container {
  position: relative;
  padding: 0 30px;
}
.header-2 .header-2__holder {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.header-2 .header-2__logo {
  max-width: 90px;
}
.header-2 .header-2__logo a {
  display: block;
  line-height: 0;
}
.header-2 .header-2__logo a img {
  max-width: 100%;
}
.header-2 .button-list {
  display: flex !important;
  flex-flow: row wrap;
  align-items: center;
  justify-content: flex-end;
  margin: 0 -8px;
  width: 100%;
}
.header-2 .button-list li {
  padding: 0 8px;
  line-height: 1;
}
.header-2 .button-list li a {
  display: inline-block;
}
.header-2 .button-list li:nth-child(2), .header-2 .button-list li:nth-child(3) {
  display: none;
}
.header-2 .button-list.mobile-view {
  display: flex !important;
  justify-content: center;
  padding-top: 20px !important;
}
.header-2 .button-list.mobile-view li {
  display: block;
  padding-bottom: 10px;
}
.header-2 .button-list.mobile-view li a {
  padding: 0 !important;
}
.header-2 .cta_button {
  min-width: 65px;
  font-size: 14px;
  line-height: 18px;
  padding: 10px 12px;
}

.header-2 .header-2__menu {
  width: calc(100% - 90px);
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  padding-right: 25px;
  justify-content: space-between;
}
.header-2 #main-nav ul {
  display: block;
  margin: 0;
  padding: 0;
}
.header-2 #main-nav ul li {
  border-bottom: 1px solid #fff;
  position: relative;
  text-align: center;
}
.header-2 #main-nav ul li.active-branch:after {
  background-color: #fe3671;
  content: "";
  height: 3px;
  left: 50%;
  position: absolute;
  bottom: 5px;
  transform: translateX(-50%);
  width: 50%;
}
.header-2 #main-nav ul li a {
  font-family: 'fibra_onesemibold';
  font-size: 18px;
  color: #4b4c76;
  text-decoration: none;
  display: inline-block;
  padding: 15px 20px;
  transition: all 0.4s ease-in-out;
}
.header-2 #main-nav ul li.hs-item-has-children .icon-arrow-down {
  color: #fff;
  position: absolute;
  right: 10px;
  top: 17px;
  font-size: 20px;
  line-height: 20px;
  font-weight: 700;
  cursor: pointer;
}
.header-2 #main-nav ul li.hs-item-has-children:hover .hs-menu-children-wrapper {
  opacity: 0;
  visibility: hidden;
}
.header-2 #main-nav ul li.hs-item-has-children .hs-menu-children-wrapper {
  min-width: 100%;
  background-color: transparent;
  box-shadow: 0 0 20px 0 rgba(0,0,0,.1);
  position: static;
  max-height: 0;
  opacity: 0 !important;
  visibility: hidden !important;
  transition: all .3s ease-out 0;
  padding: 0;
  z-index: 1;
  border-radius: 3px;
  display: block;
  z-index: 10;
}
.header-2 #main-nav ul li.hs-item-has-children .hs-menu-children-wrapper.open-dropdown {
  opacity: 1 !important;
  visibility: visible !important;
  max-height: inherit;
}
.header-2 #main-nav ul li.hs-item-has-children .hs-menu-children-wrapper li:hover {
  background: rgba(0,0,0,.05);
}
.header-2 #main-nav ul li.hs-item-has-children .hs-menu-children-wrapper li {
  border-top: 1px solid #fff;
  border-bottom: 0;
}
.header-2 #main-nav ul li.hs-item-has-children .hs-menu-children-wrapper li a {
  font-family: 'fibra_oneregular';
  white-space: nowrap;
  width: auto;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  padding: 15px 30px;
}
.header-2 #main-nav ul li.hs-item-has-children .hs-menu-children-wrapper li.hs-item-has-children .hs-menu-children-wrapper li a {
  padding: 15px 40px;
}

.header-2 .nav-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 0;
  right: 0;
  overflow-y: auto;
  z-index: 10;
/*   transition: all 0.6s ease-in-out; */
}
.header-2 .nav-bar #main-nav {
  padding: 70px 0 30px;
  background: #fff;
  height: 100%;
  transform: translateY(-100%);
  transition: all 0.6s ease-in-out;
}
.menu-active .header-2 .nav-bar {
  height: 100%;
}
.menu-active .header-2 .nav-bar #main-nav {
  transform: translateY(0);
}


/* mobile menu toogle */
.header-2 .navbar-toggle {
  width: 32px;
  height: 30px;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  background: transparent;
  text-indent: -9999px;
  overflow: hidden;
  outline: none;
  box-shadow: none;
  border: none;
  cursor: pointer;
  z-index: 15;
  padding: 0;
}
.header-2 .navbar-toggle:after,
.header-2 .navbar-toggle:before,
.header-2 .navbar-toggle span {
  position: absolute;
  left: 0;
  right: 0;
  background: #4b4c76;
  height: 2px;
  transition: all 0.3s ease;
  width: 32px;
}
.header-2 .navbar-toggle span {
  top: 50%;
  transform: translateY(-50%);
}
.header-2 .navbar-toggle:after,
.header-2 .navbar-toggle:before {
  content: '';
}
.header-2 .navbar-toggle:after {
  bottom: 23px
}
.header-2 .navbar-toggle:before {
  top: 23px
}
.menu-active .header-2  .navbar-toggle {
  background: transparent;
}
.menu-active .header-2 .navbar-toggle:after,
.menu-active .header-2 .navbar-toggle:before,
.menu-active .header-2 .navbar-toggle span {
  background: #4b4c76;
}
.menu-active .header-2 .navbar-toggle:before {
  transform: rotate(45deg) translate(-6px, -6px)
}
.menu-active .header-2 .navbar-toggle:after {
  transform: rotate(-45deg) translate(-7px, 7px)
}
.menu-active .header-2 .navbar-toggle span {
  opacity: 0;
  visibility: hidden;
}



@media (min-width: 480px) {
  .header-2 .header-2__logo {
    max-width: 130px;
  }
  .header-2 .header-2__menu {
    width: calc(100% - 130px);
  }
  .header-2 .cta_button {
    font-size: 16px;
    line-height: 20px;
    padding: 12px 16px;
  }
}
@media(min-width: 768px) {
  .header-2 .container {
    padding: 0 40px;
  }
}
@media (min-width: 1200px) {
  .header-2 .navbar-toggle {
    display: none;
  }
  .header-2 .navbar-toggle:after,
  .header-2 .navbar-toggle:before,
  .header-2 .navbar-toggle span {
    background: #4b4c76;
  }
  .menu-active .header-2 .navbar-toggle:after,
  .menu-active .header-2 .navbar-toggle:before,
  .menu-active .header-2 .navbar-toggle span {
    background: #4b4c76;
  }
  .header-2 .header-2__menu {
    padding: 0 0 0 35px;
  }
  .header-2 .nav-bar {
    position: static;
    overflow-y: unset;
    transition: none;
    height: auto;
    z-index: 1;
  }
  .header-2 .nav-bar #main-nav {
    padding: 0;
    background: transparent;
    transform: none;
    transition: none;
    height: auto;
  }
  .header-2 #main-nav ul {
    display: flex;
    flex-flow: row wrap;
  }
  .header-2 #main-nav ul li {
    border: none;
  }
  .header-2 #main-nav ul li a {
    padding: 15px 20px;
  }
  .header-2 #main-nav ul li.hs-item-has-children .icon-arrow-down {
    color: #4b4c76;
    right: -2px;
  }
  .header-2 #main-nav ul li.hs-item-has-children .hs-menu-children-wrapper li.hs-item-has-children .icon-arrow-down {
    right: 4px;
    top: 13px;
  }
  .header-2 #main-nav ul li.hs-item-has-children:hover .hs-menu-children-wrapper {
    opacity: 1 !important;
    visibility: visible !important;
  }
  .header-2 #main-nav ul li.hs-item-has-children .hs-menu-children-wrapper {
    background-color: #fff;
    position: absolute;
    top: 100%;
    left: 0;
    max-height: inherit;
  }
  .header-2 #main-nav ul li.hs-item-has-children .hs-menu-children-wrapper li a {
    padding: 10px 20px;
  }
  .header-2 #main-nav ul li.hs-item-has-children .hs-menu-children-wrapper li .hs-menu-children-wrapper {
    position: static;
    display: none;
  }
  .header-2 #main-nav ul li.hs-item-has-children .hs-menu-children-wrapper li:hover .hs-menu-children-wrapper {
    display: block;
    position: absolute;
    top: 0;
    left: 100%;
  }
  .header-2 #main-nav ul li.hs-item-has-children .hs-menu-children-wrapper li:hover .icon-arrow-down {
    transform: rotate(-90deg);
  }
  .header-2 #main-nav ul li.hs-item-has-children .hs-menu-children-wrapper li.hs-item-has-children .hs-menu-children-wrapper li a {
    padding: 10px 30px;
  }
  
  .header-2 .button-list {
    width: auto;
  }
  .header-2 .button-list li:nth-child(2), .header-2 .button-list li:nth-child(3) {
    display: block;
  }
  .header-2 .button-list.mobile-view {
    display: none !important;
  }
}
.header-lp {
  background-color: #4b4c76;
  box-shadow: 0 0 5px rgba(0,0,0,.25);
  padding: 20px 0;
  position: fixed;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 100;
  min-height: 76px;
  display: flex;
  align-items: center;
}
.header-lp .container {
  width: 100%;
}
.header-lp .header-lp__holder {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.header-lp .header-lp__logo {
  max-width: 70px;
}
.header-lp .header-lp__logo a {
  display: block;
  line-height: 0;
}
.header-lp .header-lp__logo a img {
  max-width: 100%;
}
.header-lp .header-lp__button-list {
  list-style: none;
  margin: 0 -5px;
  padding: 0 0 0 15px;
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-end;
}
.header-lp .header-lp__button-list li {
  padding: 0 5px;
}
.header-lp .cta_button {
  min-width: auto;
  font-size: 10px;
  line-height: 14px;
  padding: 10px;
  display: inline-flex;
  align-items: center;
}
.header-lp .cta_button .icon {
  width: 10px;
  height: 10px;
  display: inline-block;
  margin-right: 5px;
  line-height: 0;
}
.header-lp .cta_button .icon svg {
  fill: #fff;
}

.header-lp .header__menu {
  width: calc(100% - 90px);
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-end;
  align-items: center;
  padding-right: 45px;
}
.header-lp #main-nav ul {
  display: block;
  margin: 0;
  padding: 0;
}
.header-lp #main-nav ul li {
  border-bottom: 1px solid #fff;
  position: relative;
}
.header-lp #main-nav ul li a {
  font-family: 'fibra_onesemibold';
  font-size: 15px;
  color: #fff;
  text-decoration: none;
  display: block;
  padding: 15px 40px 15px 20px;
  transition: all 0.4s ease-in-out;
}
.header-lp #main-nav ul li.hs-item-has-children .icon-arrow-down {
  color: #fff;
  position: absolute;
  right: 10px;
  top: 17px;
  font-size: 20px;
  line-height: 20px;
  font-weight: 700;
  cursor: pointer;
}
.header-lp #main-nav ul li.hs-item-has-children:hover .hs-menu-children-wrapper {
  opacity: 0;
  visibility: hidden;
}
.header-lp #main-nav ul li.hs-item-has-children .hs-menu-children-wrapper {
  min-width: 100%;
  background-color: transparent;
  box-shadow: 0 0 20px 0 rgba(0,0,0,.1);
  position: static;
  max-height: 0;
  opacity: 0 !important;
  visibility: hidden !important;
  transition: all .3s ease-out 0;
  padding: 0;
  z-index: 1;
  border-radius: 3px;
  display: block;
  z-index: 10;
}
.header-lp #main-nav ul li.hs-item-has-children .hs-menu-children-wrapper.open-dropdown {
  opacity: 1 !important;
  visibility: visible !important;
  max-height: inherit;
}
.header-lp #main-nav ul li.hs-item-has-children .hs-menu-children-wrapper li:hover {
  background: rgba(0,0,0,.05);
}
.header-lp #main-nav ul li.hs-item-has-children .hs-menu-children-wrapper li {
  border-top: 1px solid #fff;
  border-bottom: 0;
}
.header-lp #main-nav ul li.hs-item-has-children .hs-menu-children-wrapper li a {
  font-family: 'fibra_oneregular';
  white-space: nowrap;
  width: auto;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  padding: 15px 30px;
}
.header-lp #main-nav ul li.hs-item-has-children .hs-menu-children-wrapper li.hs-item-has-children .hs-menu-children-wrapper li a {
  padding: 15px 40px;
}

.header-lp .nav-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 0;
  right: 0;
  overflow-y: auto;
  z-index: 10;
}
.header-lp .nav-bar #main-nav {
  padding: 60px 0 30px;
  background: #4b4c76;
  height: 100%;
  transform: translateY(-100%);
  transition: all 0.6s ease-in-out;
}
.menu-active .header-lp .nav-bar {
  height: 100%;
}
.menu-active .header-lp .nav-bar #main-nav {
  transform: translateY(0);
}

.header-lp .navbar-toggle:after,
.header-lp .navbar-toggle:before,
.header-lp .navbar-toggle span {
  background: #fff;
}
.menu-active .header-lp .navbar-toggle:after,
.menu-active .header-lp .navbar-toggle:before,
.menu-active .header-lp .navbar-toggle span {
  background: #fff;
}

.header-lp .header__menu .header-lp__button-list li:last-child {
  display: none;
}
.header-lp .header__menu #main-nav .header-lp__button-list {
  display: flex;
  margin-top: 30px;
  justify-content: center;
}
.header-lp .header__menu #main-nav .header-lp__button-list li {
  border: none;
  padding: 0 20px;
}
.header-lp .header__menu #main-nav .header-lp__button-list li:first-child {
  display: none;
}
.header-lp .header__menu #main-nav .header-lp__button-list li:last-child {
  display: block;
}
.header-lp .header__menu #main-nav .header-lp__button-list li:not(:last-child) {
  margin-bottom: 15px;
} 
.header-lp .header__menu #main-nav .header-lp__button-list li a.cta_button {
  color: #fff;
  padding: 12px 22px;
}
.header-lp .header__menu #main-nav .header-lp__button-list li a.cta_button.secondary {
  color: #fe3671;
}


@media (min-width: 360px) {
  .header-lp .cta_button {
    font-size: 12px;
    line-height: 16px;
    padding: 10px 12px;
  }
}
@media (min-width: 400px) {
  .header-lp .header-lp__logo {
    max-width: 90px;
  }
  .header-lp .header__menu {
    width: calc(100% - 90px);
    padding-right: 50px;
  }
}
@media (min-width: 480px) {
  .header-lp .header__menu .header-lp__button-list {
    display: flex;
  }
  .header-lp .header__menu .header-lp__button-list li:last-child {
    display: block;
  }
  .header-lp .header__menu #main-nav .header-lp__button-list {
    display: none;
  }
}
@media (min-width: 768px) {
  .header-lp .header-lp__logo {
    max-width: 130px;
  }
  .header-lp .header__menu {
    width: calc(100% - 130px);
  }
  .header-lp .header-lp__button-list {
    width: calc(100% - 130px);
  }
  .header-lp .header__menu .header-lp__button-list {
    width: auto;
  }
  .header-lp .cta_button {
    font-size: 14px;
    line-height: 18px;
    padding: 12px 16px;
  }
  .header-lp .cta_button .icon {
    width: 14px;
    height: 14px;
  }
}

@media(min-width: 1200px) {
  .header-lp .header__menu {
    padding: 0;
  }
  .header-lp .nav-bar {
    position: static;
    overflow-y: unset;
    transition: none;
    height: auto;
    z-index: 1;
  }
  .header-lp .nav-bar #main-nav {
    padding: 0;
    background: transparent;
    transform: none;
    transition: none;
    height: auto;
  }
  .header-lp #main-nav ul {
    display: flex;
    flex-flow: row wrap;
  }
  .header-lp #main-nav ul li {
    border: none;
  }
  .header-lp #main-nav ul li a {
    color: #fff;
    padding: 15px 20px;
  }
  .header-lp #main-nav ul li.hs-item-has-children .icon-arrow-down {
    color: #fff;
    right: -2px;
  }
  .header-lp #main-nav ul li.hs-item-has-children .hs-menu-children-wrapper li.hs-item-has-children .icon-arrow-down {
    right: 4px;
    top: 13px;
  }
  .header-lp #main-nav ul li.hs-item-has-children:hover .hs-menu-children-wrapper {
    opacity: 1 !important;
    visibility: visible !important;
  }
  .header-lp #main-nav ul li.hs-item-has-children .hs-menu-children-wrapper {
    background-color: #fff;
    position: absolute;
    top: 100%;
    left: 0;
    max-height: inherit;
  }
  .header-lp #main-nav ul li.hs-item-has-children .hs-menu-children-wrapper li a {
    padding: 10px 20px;
  }
  .header #main-nav ul li.hs-item-has-children .hs-menu-children-wrapper li .hs-menu-children-wrapper {
    position: static;
    display: none;
  }
  .header-lp #main-nav ul li.hs-item-has-children .hs-menu-children-wrapper li:hover .hs-menu-children-wrapper {
    display: block;
    position: absolute;
    top: 0;
    left: 100%;
  }
  .header-lp #main-nav ul li.hs-item-has-children .hs-menu-children-wrapper li:hover .icon-arrow-down {
    transform: rotate(-90deg);
  }
  .header-lp #main-nav ul li.hs-item-has-children .hs-menu-children-wrapper li.hs-item-has-children .hs-menu-children-wrapper li a {
    padding: 10px 30px;
  }
}
.language-switcher-wrapper {
  position: relative;
  z-index: 12;
  margin-left: 10px;
}
.language-switcher-wrapper__desktop {
  display: none;
}
.language-switcher-wrapper__mobile {
  display: block;
}
.language-switcher-wrapper button {
  background-color: transparent;
  border: unset;
  box-shadow: none;
  cursor: pointer;
  display: inline-block;
  outline: none;
  white-space: nowrap;
  padding: 0;
}
.language-switcher-wrapper button span {
  display: none;
}
.language-switcher-dropdown {
  position: relative;
  width: 90px;
  transition: max-height 0.5s ease-in;
  max-height: 0;
  display: none;
}
.language-switcher-dropdown.open {
  max-height: 120px;
  display: block;
}
.language-switcher-dropdown ul {
  list-style: none;
  margin: 0 0 20px;
  background-color: transparent;
  box-shadow: 0 0 20px 0 rgba(0,0,0,.1);
}
.language-switcher-dropdown ul li {
  padding: 0 10px;
}
.language-switcher-dropdown ul li a {
  display: flex !important;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: flex-end;
  color: #4b4c76;
  text-decoration: none;
  padding: 10px 0 !important;
}
.language-switcher-dropdown ul li a:not(.disabled):hover {
  color: #fe3671;
}
.language-switcher-dropdown ul li a.active {
  pointer-events: none;
  cursor: default;
  color: #fe3671;
  font-weight: 700;
  opacity: 1;
}
.language-switcher-dropdown ul li .lang-flag-de {
  width: 40px;
  margin-right: 10px;
}
.language-switcher-dropdown ul li .lang-flag-en-in {
  width: 18px;
  margin-right: 10px;
}

@media(min-width: 480px) {
  .language-switcher-wrapper {
    margin-left: 15px;
  }
}
@media(min-width: 1200px) {
  .language-switcher-wrapper__desktop {
    display: block;
  }
  .language-switcher-wrapper__mobile {
    display: none;
  }
  .language-switcher-wrapper {
    margin-left: 20px;
  }
  .language-switcher-dropdown {
    position: absolute;
    left: -30px;
    display: none;
  }
  .language-switcher-dropdown ul {
    padding: 15px;
    background-color: #fff;
    box-shadow: 0 0 20px 0 rgba(0,0,0,.1);
  }
  .language-switcher-dropdown ul li {
    padding: 0;
  }
  .language-switcher-dropdown {
    width: 105px;
  }
}
.blog-listing {
  padding: 66px 0 50px;
}
.blog-listing .container {
  padding-top: 64px;
}
.active-promotion-banner .blog-listing .container {
  padding-top: 104px;
}
.blog-listing h1 {
  font-family: 'fibra_onebold', sans-serif;
  font-size: 80px;
  line-height: 88px;
}
.blog-listing .blog-listing__header .flag {
  max-width: 70px;
  display: block;
}
.blog-listing .blog-listing__header .flag.single-flag {
  max-width: 30px;
  display: block;
}
.blog-listing .richtext {
  font-size: 16px;
  line-height: 24px;
}
.blog-listing .blog-listing__wrapper h5 {
  margin-bottom: 20px;
  text-transform: uppercase;
}
.blog-listing .blog-listing__wrapper .column {
  width: 100%;
}
.blog-listing .post-listing {
  padding: 30px 0 0;
}
.blog-listing .post-listing .column {
  width: 100%;
}
.blog-listing .post-listing .post-article {
  position: relative;
  padding-top: 90%;
  margin-bottom: 30px;
  border-radius: 10px;
  overflow: hidden;
}
.blog-listing .post-listing .post-article .post-article__image {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  z-index: 2;
}
.blog-listing .post-listing .post-article .post-article__image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.4);
  display: block;
  z-index: -1;
}
.blog-listing .post-listing .post-article .post-article__title {
  position: absolute;
  bottom: 0;
  right: 15px;
  left: 15px;
  z-index: 3;
}
.blog-listing .post-listing .post-article .post-article__title a {
  color: #fff;
  text-decoration: none;
}
.blog-listing .blog-pagination {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  margin-top: 30px;
}
.blog-listing .blog-pagination .blog-pagination__link {
  margin-right: 5px;
  width: 40px;
  height: 40px;
}
.blog-listing .blog-pagination .blog-pagination__link:last-child {
  margin-right: 0;
}
.blog-listing .blog-pagination .blog-pagination__number-link {
  color: #4b4c76;
  font-size: 16px;
  text-decoration: none;
  display: inline-block;
  font-weight: 700;
  background: #fff;
  border: 1px solid #e2e2e2;
  transition: all .15s ease-in-out;
  text-align: center;
  padding: 7px 13px;
}
.blog-listing .blog-pagination .blog-pagination__prev-link, .blog-listing .blog-pagination .blog-pagination__next-link {
  color: #4b4c76;
  font-size: 24px;
  text-decoration: none;
  display: inline-block;
  font-weight: 700;
  background: #fff;
  border: 1px solid #e2e2e2;
  transition: all .15s ease-in-out;
  text-align: center;
  padding: 4px 12px;
}
.blog-listing .blog-pagination .blog-pagination__link--active {
  background: #7fffd8;
  color: #4b4c76;
}
.blog-listing .blog-pagination .blog-pagination__prev-link--disabled, .blog-listing .blog-pagination .blog-pagination__next-link--disabled {
  color: #dadada;
  border: 1px solid #e5e5e5;
  background-color: #f5f7f9;
}

@media(min-width: 480px) {
  .blog-listing {
    padding: 80px 0 50px;
  }
  .blog-listing .container {
    padding-top: 50px;
  }
  .active-promotion-banner .blog-listing .container {
    padding-top: 94px;
  }
}
@media(min-width: 768px) {
  .blog-listing .richtext {
    font-size: 18px;
  }
  .blog-listing .post-listing .row {
    display: flex;
    flex-flow: row wrap;
    margin: 0 -15px;
  }
  .blog-listing .post-listing .column {
    padding: 0 15px;
    width: 50%;
  }
  .blog-listing .post-listing .column:nth-child(1) {
    width: 100%;
  }
  .blog-listing .post-listing .post-article {
    padding-top: 60%;
  }
  .blog-listing .post-listing .column:nth-child(1) .post-article {
    padding-top: 40%;
  }
  .blog-listing .post-listing .post-article .post-article__title {
    position: absolute;
    bottom: 20px;
    right: 30px;
    left: 30px;
    z-index: 3;
  }
}
@media(min-width: 992px) {
  .blog-listing {
    padding: 84px 0 50px;
  }
  .blog-listing .container {
    padding-top: 66px;
  }
  .active-promotion-banner .blog-listing .container {
    padding-top: 76px;
  }
  .blog-listing .richtext {
    font-size: 18px;
    line-height: 26px;
  }
  .blog-listing .blog-listing__wrapper .row {
    display: flex; 
    flex-flow: row wrap;
    margin: 0 -15px;
  }
  .blog-listing .blog-listing__wrapper .column {
    padding: 0 15px;
  }
  .blog-listing .blog-listing__wrapper .column:nth-child(1) {
    width: 66.666%
  }
  .blog-listing .blog-listing__wrapper .column:nth-child(2) {
    width: 33.333%
  }
}
@media(min-width: 1200px) {
  .blog-listing .post-listing {
    padding: 40px 0 0;
  }
}




/* listing-view */
.post-listing__view {
  padding: 50px 0;
}
.post-listing__view.post-listing__view--first-page {
  padding: 0;
}
.post-listing__view .column {
  width: 100%;
}
.post-listing__view .listing-post {
  margin-bottom: 30px;
}
.post-listing__view .listing-post .listing-post__image {
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  min-height: 206px;
  margin-bottom: 10px;
  border-radius: 5px;
  overflow: hidden;
  display: block;
  width: 100%;
  margin-top: 6px;
}
.post-listing__view .listing-post .listing-post__info {
  width: 100%;
}
.post-listing__view .listing-post .listing-post__title {
  font-family: 'fibra_onebold', sans-serif;
  font-size: 22px;
  line-height: 30px;
  color: #4b4c76;
  text-decoration: none;
  transition: all 0.4s ease-in-out;
}
.post-listing__view .listing-post .listing-post__title:hover {
  color: #1CE3B2;
}
.post-listing__view .listing-post .listing-post__info ul {
  display: flex;
  flex-flow: row wrap;
  list-style: none;
  padding: 5px 0 15px;
  margin: 0 -10px;
}
.post-listing__view .listing-post .listing-post__info ul li {
  padding: 0 10px;
  text-transform: capitalize;
  font-size: 12px;
  line-height: 16px;
}
.post-listing__view .listing-post .listing-post__info ul li a {
  color: #1CE3B2;
  text-decoration: underline;
  transition: all 0.4s ease-in-out;
  text-transform: uppercase;
  font-weight: 700;
}
.post-listing__view .listing-post .listing-post__info ul li a:hover {
  color: #1CE3B2;
}
.post-listing__view .listing-post .listing-post__content {
  font-size: 14px;
  line-height: 22px;
}
.post-listing__view .listing-post__content h1, .post-listing__view .listing-post__content h2, .post-listing__view .listing-post__content h3, .post-listing__view .listing-post__content h4, .post-listing__view .listing-post__content h5, .post-listing__view .listing-post__content h6 {
  display: none;
}
.post-listing__view .listing-post__content p {
  font-weight: normal !important;
  margin: 0;
}
.post-listing__view .listing-post__content p a{
  color: #1CE3B2;
}

@media(min-width: 768px) {
  .post-listing__view .listing-post {
    display: flex;
    flex-flow: row wrap;
    align-items: flex-start;
  }
  .post-listing__view .listing-post .listing-post__image {
    min-height: 96px;
    width: 172px;
  }
  .post-listing__view .listing-post .listing-post__info {
    width: calc(100% - 172px);
    padding-left: 15px;
  }
}
@media(min-width: 992px) {
  .post-listing__view .row {
    display: flex; 
    flex-flow: row wrap;
    margin: 0 -15px;
  }
  .post-listing__view .column {
    padding: 0 15px;
  }
  .post-listing__view .column:nth-child(1) {
    width: 66.666%
  }
  .post-listing__view .column:nth-child(2) {
    width: 33.333%
  }
}
@media(min-width: 1200px) {
  .post-listing__view .listing-post .listing-post__image {
    min-height: 106px;
    width: 212px;
  }
  .post-listing__view .listing-post .listing-post__info {
    width: calc(100% - 212px);
  }
}
.author-info {
  width: 100%;
}
.author-info .author-info__holder {
  margin-bottom: 15px;
}
.author-info .author-info__holder .author-info__image {
  background-size: cover;
  background-color: #ccc;
  background-position: top;
  width: 100px;
  height: 100px;
  border-radius: 100%;
  margin-bottom: 15px;
}
.author-info .author-info__holder .author-info__heading {
  width: calc(100% - 115px);
}
.author-info .author-info__holder .author-info__heading span {
  color: #fe3671;
  display: block;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 700;
}
.author-info .author-info__holder .author-info__heading h1 {
  font-size: 40px;
  line-height: 44px;
  margin: 0;
}
.author-info .author-info__content {
  font-size: 14px;
  line-height: 22px;
  font-style: italic;
  border-left: 5px solid #fe3671;
  padding-left: 15px;
} 

@media (min-width: 576px) {
 .author-info .author-info__holder {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
  }
  .author-info .author-info__holder .author-info__image {
    width: 100px;
    height: 100px;
    margin-right: 15px;
    margin-bottom: 0;
  }
  .author-info .author-info__holder .author-info__heading {
    width: calc(100% - 115px);
  } 
}
@media (min-width: 768px) {
 .author-info .author-info__holder .author-info__heading h1 {
    font-size: 48px;
    line-height: 52px;
  } 
}
@media (min-width: 992px) {
  .author-info {
    width: 66.66%;
    padding-right: 15px;
  }
}
.category-listing h1 {
  font-size: 32px;
  line-height: 36px;
  text-transform: uppercase;
}
.category-listing .post-listing__view {
  padding: 0;
}
.category-listing .tags-holder {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  margin-bottom: 50px;
}
.category-listing .text {
  font-family: 'fibra_onelight';
  font-style: italic;
  display: inline-block;
  margin-right: 10px;
}
.category-listing .tags-list {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0 -3px;
}
.category-listing .tags-list li {
  padding: 0 3px 6px;
}
.category-listing .tags-list li.active .tag {
  background: rgba(32,227,178, 1);
}
.category-listing .tags-list li .tag {
  background: rgba(32,227,178, 0.6);
  border-radius: 8px;
  color: #fff;
  display: inline-block;
  font-weight: 600;
  font-size: 14px;
  line-height: 24px;
  text-align: center;
  padding: 10px 20px;
  text-decoration: none;
  transition: all 0.4s ease-in-out;
}
.category-listing .tags-list li .tag:hover {
  background: rgba(32,227,178, 1);
}
.blog-post {
  padding: 66px 0 50px;
}
.blog-post .container {
  padding-top: 64px;
}
.active-promotion-banner .blog-post .container {
  padding-top: 104px;
}
.blog-post .column {
  width: 100%;
}
.blog-post__image {
  border-radius: 8px;
  overflow: hidden;
}
.blog-post__body {
  padding: 30px 0;
}
.blog-post__body h2, .blog-post__body h3, .blog-post__body h4, .blog-post__body h5, .blog-post__body h6, {
  margin: 16px 0;
}
.blog-post__body p a {
  color: #1CE3B2;
  text-decoration: underline;
}
.blog-post__body p a.cta_button {
  color: #fff;
  text-decoration: none;
}
.blog-post__body p a:hover {
  text-decoration: none;
}
.blog-post__body ol, .blog-post__body ul {
  padding-left: 15px;
}
.blog-post__body ol li, .blog-post__body ul li {
  padding-bottom: 15px;
}
.blog-post__body ol li a, .blog-post__body ul li a {
  color: #1CE3B2;
  text-decoration: underline;
  transition: all 0.4s ease-in-out;
}
.blog-post__body ol li a:hover, .blog-post__body ul li a:hover {
  text-decoration: none;
}
.blog-post__body table {
  border: 1px solid #4b4c76;
}
.blog-post__body table td {
  padding: 15px;
  border: 1px solid #4b4c76;
}
.blog-post__body table p {
  margin: 0;
}

.blog-post__tags {
  list-style: none;
  display: flex;
  flex-flow: row wrap;
  padding: 0;
  margin: 0 -10px 15px;
}
.blog-post__tags li {
  padding: 0 10px;
}
.blog-post__tags li a {
  color: #1CE3B2;
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.4s ease-in-out;
}
.blog-post__tags li a:hover {
  text-decoration: underline;
}
.blog-post__meta {
  list-style: none;
  display: flex;
  flex-flow: row wrap;
  padding: 0;
  margin: 0 -10px 25px;
}
.blog-post__meta li {
  padding: 0 10px;
  font-size: 14px;
  line-height: 18px;
}
.blog-post__meta li a {
  color: #1CE3B2;
  font-weight: 500;
  text-transform: uppercase;
  text-decoration: underline;
  transition: all 0.4s ease-in-out;
}
.blog-post__meta li a:hover {
  color: #1CE3B2;
}

.blog-post__socials-networks {
  list-style: none;
  display: flex;
  flex-flow: row wrap;
  padding: 0;
  margin: 0 -5px 25px;
}
.blog-post__socials-networks li {
  padding: 0 5px;
}
.blog-post__socials-networks li a {
  background-color: #4b4c76;
  color: #fff;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.4s ease-in-out;
  font-size: 26px;
  line-height: 26px;
  border-radius: 100%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.blog-post__socials-networks li a:hover {
  background-color: #1CE3B2;
}

.blog-comments {
  padding-bottom: 50px;
}
.blog-comments h2 {
  padding-bottom: 15px;
  border-bottom: 1px solid #f3f3f3;
}
.blog-comments .post-footer #comments-listing .comment {
  padding-bottom: 15px;
  border: 0;
  padding-top: 0;
}
.blog-comments .post-footer .comment-body p {
  margin: 0;
}
.blog-post .ads-banner {
  margin-bottom: 0;
}

.sidebar-form h3 strong span{
  color: #1CE3B2 !important;
}

@media(min-width: 480px) {
  .blog-post {
    padding: 80px 0 50px;
  }
  .blog-post .container {
    padding-top: 50px;
  }
  .active-promotion-banner .blog-post .container {
    padding-top: 94px;
  }
}

@media (min-width: 992px) {
  .blog-post {
    padding: 84px 0 50px;
  }
  .blog-post .container {
    padding-top: 66px;
  }
  .active-promotion-banner .blog-post .container {
    padding-top: 76px;
  }
  .blog-post .row {
    display: flex;
    flex-flow: row wrap;
    margin: 0 -15px;
  }
  .blog-post .column {
    padding: 0 15px;
  }
  .blog-post .column:nth-child(1) {
    width: 66.666%;
  }
  .blog-post .column:nth-child(2) {
    width: 33.333%;
  }
}
.ads-banner {
  border-radius: 8px;
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  margin: 30px 0 50px;
  padding: 55px 0;
}
.ads-banner .wrapper {
  color: #fff;
  text-align: center;
  max-width: 650px;
  margin: 0 auto;
}
@media(max-width: 767px) {
  .ads-banner.hide_on_mobile {
    display: none;
  }
}
.ads-image {
  margin-bottom: 30px;
}
.blog-recent-post .heading {
  text-transform: uppercase;
  padding: 0 0 8px;
  border-bottom: 1px solid #d4d4d4;
  margin-bottom: 20px;
}
.blog-recent-post .recent-post {
  margin-bottom: 30px;
}
.blog-recent-post .recent-post .recent-post__image {
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  min-height: 200px;
  margin-bottom: 10px;
  border-radius: 5px;
  overflow: hidden;
  display: block;
}
.blog-recent-post .recent-post .recent-post__title {
  font-family: 'fibra_onebold', sans-serif;
  font-size: 18px;
  line-height: inherit;
  color: #4b4c76;
  text-decoration: none;
  transition: all 0.4s ease-in-out;
}
.blog-recent-post .recent-post .recent-post__title:hover {
  color: #fe3671;
}
.blog-recent-post .recent-post .recent-post__info {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  list-style: none;
  padding: 5px 0 0;
  margin: 0 -10px;
}
.blog-recent-post .recent-post .recent-post__info li {
  padding: 0 10px;
  text-transform: capitalize;
  font-size: 12px;
  line-height: 16px;
}
.blog-recent-post .recent-post .recent-post__info li a {
  color: #1CE3B2;
  text-decoration: underline;
  transition: all 0.4s ease-in-out;
  text-transform: uppercase;
  font-style: italic;
}
.blog-recent-post .recent-post .recent-post__info li a:hover {
  color: #1CE3B2;
}
.blog-recent-post .recent-post .recent-post__info li a.topic {
  font-weight: 700;
  font-style: normal;
}
.blog-related-posts {
  padding: 30px 0;
}
.blog-related-posts__column {
  width: 100%;
}
.blog-related-posts__image {
  border-radius: 8px;
  overflow: hidden;
  display: block;
  margin-bottom: 10px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top centert;
  min-height: 200px;
}
.blog-related-posts__title {
  font-family: 'fibra_onebold', sans-serif;
  font-size: 22px;
  line-height: 30px;
  color: #4b4c76;
  text-decoration: none;
  transition: all 0.4s ease-in-out;
}
.blog-related-posts__title:hover {
  color: #1CE3B2;
}
.blog-related-posts__info {
  display: flex;
  flex-flow: row wrap;
  list-style: none;
  padding: 5px 0 15px;
  margin: 0 -10px;
}
.blog-related-posts__info li {
  padding: 0 10px;
  text-transform: capitalize;
  font-size: 12px;
  line-height: 16px;
}
.blog-related-posts__info li a {
  color: #4b4c76;
  text-decoration: underline;
  transition: all 0.4s ease-in-out;
  text-transform: uppercase;
  font-weight: 700;
}
.blog-related-posts__info li a:hover {
  color: #1CE3B2;
}

@media (min-width: 992px) {
  .blog-related-posts__row {
    display: flex;
    flex-flow: row wrap;
    margin: 0 -15px;
  }
  .blog-related-posts__column {
    padding: 0 15px;
    width: 33.333%;
  }
}
.blog-popular-post .heading {
  text-transform: uppercase;
  margin-bottom: 20px;
}
.blog-popular-post .popular-post {
  margin-bottom: 30px;
}
.blog-popular-post .popular-post .popular-post__image {
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  min-height: 206px;
  margin-bottom: 10px;
  border-radius: 5px;
  overflow: hidden;
  display: block;
  width: 100%;
  margin-top: 6px;
}
.blog-popular-post .popular-post .popular-post__info {
  width: 100%;
}
.blog-popular-post .popular-post .popular-post__title {
  font-family: 'fibra_onebold', sans-serif;
  font-size: 22px;
  line-height: 30px;
  color: #4b4c76;
  text-decoration: none;
  transition: all 0.4s ease-in-out;
}
.blog-popular-post .popular-post .popular-post__title:hover {
  color: #1CE3B2;
}
.blog-popular-post .popular-post .popular-post__info ul {
  display: flex;
  flex-flow: row wrap;
  list-style: none;
  padding: 5px 0 15px;
  margin: 0 -10px;
}
.blog-popular-post .popular-post .popular-post__info ul li {
  padding: 0 10px;
  font-size: 12px;
  line-height: 16px;
  text-transform: capitalize;
}
.blog-popular-post .popular-post .popular-post__info ul li a {
  color: #1CE3B2;
  text-decoration: underline;
  transition: all 0.4s ease-in-out;
  text-transform: uppercase;
  font-weight: 700;
}
.blog-popular-post .popular-post .popular-post__info ul li a:hover {
  color: #1CE3B2;
}
.blog-popular-post .popular-post__content {
  font-size: 14px;
  line-height: 22px;
}
.blog-popular-post .popular-post__content h1, .blog-popular-post .popular-post__content h2, .blog-popular-post .popular-post__content h3, .blog-popular-post .popular-post__content h4, .blog-popular-post .popular-post__content h5, .blog-popular-post .popular-post__content h6 {
  display: none;
}
.blog-popular-post .popular-post__content p {
  font-weight: normal !important;
  margin: 0;
}
.blog-popular-post .popular-post__content p a{
  color: #1CE3B2;
}

@media(min-width: 768px) {
  .blog-popular-post .popular-post {
    display: flex;
    flex-flow: row wrap;
    align-items: flex-start;
  }
  .blog-popular-post .popular-post .popular-post__image {
    min-height: 96px;
    width: 172px;
  }
  .blog-popular-post .popular-post .popular-post__info {
    width: calc(100% - 172px);
    padding-left: 15px;
  }
}
@media(min-width: 1200px) {
  .blog-popular-post .popular-post .popular-post__image {
    min-height: 106px;
    width: 212px;
  }
  .blog-popular-post .popular-post .popular-post__info {
    width: calc(100% - 212px);
  }
}
.blog-favourite-post .heading {
  text-transform: uppercase;
  padding: 0 0 8px;
  border-bottom: 1px solid #d4d4d4;
  margin-bottom: 20px;
}
.blog-favourite-post .favourite-post {
  display: flex;
  flex-flow: row wrap;
  align-items: flex-start;
  margin-bottom: 30px;
}
.blog-favourite-post .favourite-post .favourite-post__image {
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  min-height: 50px;
  margin-bottom: 10px;
  border-radius: 5px;
  overflow: hidden;
  display: block;
  width: 90px;
  margin-top: 6px;
}
.blog-favourite-post .favourite-post .favourite-post__info {
  width: calc(100% - 90px);
  padding-left: 15px;
}
.blog-favourite-post .favourite-post .favourite-post__title {
  font-family: 'fibra_onebold', sans-serif;
  font-size: 18px;
  line-height: inherit;
  color: #4b4c76;
  text-decoration: none;
  transition: all 0.4s ease-in-out;
}
.blog-favourite-post .favourite-post .favourite-post__title:hover {
  color: #1CE3B2;
}
.blog-favourite-post .favourite-post .favourite-post__info ul {
  display: flex;
  flex-flow: row wrap;
  list-style: none;
  padding: 5px 0 0;
  margin: 0 -10px;
}
.blog-favourite-post .favourite-post .favourite-post__info ul li {
  padding: 0 10px;
  text-transform: capitalize;
  font-size: 12px;
  line-height: 16px;
}
.blog-favourite-post .favourite-post .favourite-post__info ul li a {
  color: #1CE3B2;
  text-decoration: underline;
  transition: all 0.4s ease-in-out;
  text-transform: uppercase;
  font-style: italic;
}
.blog-favourite-post .favourite-post .favourite-post__info ul li a:hover {
  color: #1CE3B2;
}
.blog-favourite-post .favourite-post .favourite-post__info ul li a.topic {
  font-weight: 700;
  font-style: normal;
}
.blog-featured-post .heading {
  text-transform: uppercase;
  padding: 0 0 8px;
  border-bottom: 1px solid #d4d4d4;
  margin-bottom: 20px;
}
.blog-featured-post .featured-post {
  margin-bottom: 30px;
}
.blog-featured-post .featured-post .featured-post__image {
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  min-height: 200px;
  margin-bottom: 10px;
  border-radius: 5px;
  overflow: hidden;
  display: block;
}
.blog-featured-post .featured-post .featured-post__title {
  font-family: 'fibra_onebold', sans-serif;
  font-size: 18px;
  line-height: inherit;
  color: #4b4c76;
  text-decoration: none;
  transition: all 0.4s ease-in-out;
}
.blog-featured-post .featured-post .featured-post__title:hover {
  color: #1CE3B2;
}
.blog-featured-post .featured-post .featured-post__info ul {
  display: flex;
  flex-flow: row wrap;
  list-style: none;
  padding: 5px 0 15px;
  margin: 0 -10px;
}
.blog-featured-post .featured-post .featured-post__info ul li {
  padding: 0 10px;
  font-size: 12px;
  line-height: 16px;
  text-transform: capitalize;
}
.blog-featured-post .featured-post .featured-post__info ul li a {
  color: #1CE3B2;
  text-decoration: underline;
  transition: all 0.4s ease-in-out;
  text-transform: uppercase;
  font-weight: 700;
}
.blog-featured-post .featured-post .featured-post__info ul li a:hover {
  color: #1CE3B2;
}
.blog-featured-post .featured-post .featured-post__info ul li a.topic {
  font-weight: 700;
  font-style: normal;
}
.exams-exercises {
  padding: 30px 0;
}
.exams-exercises .pdf-button {
  margin-bottom: 30px;
}
.exams-exercises .exercises {
  margin-bottom: 50px;
}
.exams-exercises .questions {
  margin-bottom: 30px;
}
.exams-exercises .answer strong {
  font-family: 'fibra_onebold'
}
.exams-exercises .answer {
  display: none;
  padding-top: 30px; 
}
.exams-exercises .answer .cta_button, .exams-exercises .questions .cta_button {
  background: none;
  border: 0;
  box-shadow: none;
  padding: 0;
}
.exams-exercises .button-holder .hide-solution {
  display: none;
}
.exams-exercises .exercises.active .button-holder .show-solution {
  display: none;
}
.exams-exercises .exercises.active .button-holder .hide-solution {
  display: block;
}
.exams-exercises .MathJax_Display {
  display: inline-block !important;;
  text-align: left !important;
  width: auto;
}
/* .german-exams {
  padding: 60px 0;
} */
.german-exams h1 {
  font-family: 'fibra_oneultrabold';
  font-size: 32px;
  line-height: 46px;
  margin-bottom: 40px;
}
.german-exams h2 span {
  color: #fe3671;
}
.german-exams .exams {
  margin-bottom: 40px;
}
.german-exams .exams .subject {
  font-family: 'fibra_oneultrabold';
  font-size: 26px;
  line-height: 34px;
  margin-bottom: 15px;
  display: block;
}
.german-exams .exams .year {
  font-family: 'fibra_oneultrabold';
  font-size: 22px;
  line-height: 30px;
  margin-bottom: 20px;
  display: block;
}
.german-exams .exams .exams-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.german-exams .exams .exams-list li {
  border-bottom: 1px solid #4b4c76; 
  font-family: 'fibra_oneultrabold';
  font-size: 20px;
  line-height: 26px;
  position: relative;
  margin-bottom: 20px;
}
.german-exams .exams .exams-list li a {
  color: #4b4c76;
  text-decoration: none;
  position: relative;
  padding: 0 0 15px 40px;
  display: block;
}
.german-exams .exams .exams-list li a .icon {
  position: absolute;
  top: 3px;
  left: 0;
}
.german-exams .exams .exams-list li a:hover {
  color: #fe3671;
}
.german-exams .exams .exams-list .file-info {
  list-style: none;
  padding: 0;
  margin: 0;
  font-family: 'fibra_oneregular';
  font-size: 14px;
  line-height: 20px;
}
.german-exams .exams .exams-list .file-info .extension, .german-exams .exams .exams-list .file-info .size {
  text-transform: uppercase;
  display: inline-block;
}

@media(min-width: 480px) {
  .german-exams h1 {
    font-size: 36px;
    line-height: 50px;
  }
}
/* @media(min-width: 768px) {
  .german-exams {
    padding: 80px 0;
  }
}
@media(min-width: 1200px) {
  .german-exams {
    padding: 100px 0;
  }
} */
.system-pages {
  padding: 130px 0 50px;
  text-align: center;
}

@media(min-width: 768px) {
  .system-pages {
    padding: 150px 0 80px;
  }
}
.header .search-icon {
  color: #4b4c76;
  margin-left: 10px;
  text-decoration: none;
  font-size: 26px;
  line-height: 26px;
}
.header #search-form {
  background: #fff;
  border-radius: 100%;
  width: 350px;
  height: 350px;
  position: absolute;
  top: 10px;
  left: 50%;
  z-index: 15;
  box-shadow: 0 6px 12px rgba(0,0,0,0.2);
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  transform: translate(-50%, -150%);
  transition: all 0.4s ease-out;
}
.header #search-form.open {
  transform: translate(-50%, -25%);
}
.header #search-form .input-holder {
  border-bottom: 1px solid #000;
  position: relative;
  width: 80%;
}
.header #search-form .input-holder button {
  color: #4b4c76;
  font-size: 22px;
  line-height: 22px;
  background: none;
  border: none;
  box-shadow: none;
  outline: none;
  padding: 0;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  cursor: pointer;
  pointer-events: none;
  transition: all 0.4s ease-in-out;
}
.header #search-form .input-holder button:hover {
  color: #fe3671;
}
.header #search-form .input-holder input[type="text"] {
  color: #4b4c76;
  background: transparent;
  font-size: 16px;
  line-height: 20px;
  outline: 0;
  box-shadow: none;
  border: none;
  padding: 12px 30px 12px 30px;
  width: 100%;
}
.header #search-form .input-holder .search-close {
  color: #4b4c76;
  font-size: 24px;
  line-height: 24px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  text-decoration: none;
}
.header #search-form .input-holder .search-close:hover {
  color: #fe3671;
}
.header-search-overlay {
  background: #4b4c76;
  display: block;
  left: 0;
  right: 0;
  top: 0;
  height: 0;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  transition: opacity .2s ease-out;
  z-index: 10;
}
.search-open .header-search-overlay {
  opacity: 0.7;
  visibility: visible;
  height: 100vh;
}

@media(min-width: 400px) {
  .header #search-form {
    width: 380px;
    height: 380px;
  }
}
@media(min-width: 480px) { 
  .header .search-icon {
    margin-left: 15px;
  }
}
@media(min-width: 576px) {
  .header #search-form {
    right: 0;
    top: -10px;
    left: auto;
    transform: translate(0, -150%);
  }
  .header #search-form.open {
    transform: translate(5%, -25%)
  }
}
@media(min-width: 768px) { 
  .header .search-icon {
    margin-left: 20px;
  }
}

.systems-page--search-results {
  text-align: left;
}
.systems-page--search-results .column {
  width: 100%;
}
.hs-search-results__listing {
  list-style: none;
  padding: 0;
  margin: 0;
/*   margin: 0 -15px;
  display: flex;
  flex-flow: row wrap; */
}
.hs-search-results__listing li {
  width: 100%;
}
.hs-search-results__listing .listing-post {
  margin-bottom: 30px;
  text-align: left;
}
.hs-search-results__listing .listing-post .listing-post__image {
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  height: 206px;
  margin-bottom: 10px;
  border-radius: 5px;
  overflow: hidden;
  display: block;
  width: 100%;
  margin-top: 6px;
}
.hs-search-results__listing .listing-post .listing-post__image img {
  object-fit: cover;
  height: 100%;
  object-position: top;
  width: 100%;
}
.hs-search-results__listing .listing-post .listing-post__info {
  width: 100%;
}
.hs-search-results__listing .listing-post .listing-post__title {
  font-family: 'fibra_onebold', sans-serif;
  font-size: 18px;
  line-height: 26px;
  color: #4b4c76;
  text-decoration: none;
  transition: all 0.4s ease-in-out;
}
.hs-search-results__listing .listing-post .listing-post__title:hover {
  color: #fe3671;
}
.hs-search-results__listing .listing-post .listing-post__info ul {
  display: flex;
  flex-flow: row wrap;
  list-style: none;
  padding: 5px 0 15px;
  margin: 0 -10px;
}
.hs-search-results__listing .listing-post .listing-post__info ul li {
  padding: 0 10px;
  text-transform: capitalize;
  font-size: 12px;
  line-height: 16px;
}
.hs-search-results__listing .listing-post .listing-post__info ul li a {
  color: #4b4c76;
  text-decoration: underline;
  transition: all 0.4s ease-in-out;
  text-transform: uppercase;
  font-weight: 700;
}
.hs-search-results__listing .listing-post .listing-post__info ul li a:hover {
  color: #fe3671;
}
.hs-search-results__listing .listing-post .listing-post__info .hs-search-results__readmore {
  color: #fe3671;
  font-size: 14px;
  line-height: 22px;
  text-decoration: none;
  display: inline-block;
}
.hs-search-results__listing .listing-post .listing-post__content {
  font-size: 14px;
  line-height: 22px;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  margin-bottom: 8px;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
}
.hs-search-results__listing .listing-post__content h1, .hs-search-results__listing .listing-post__content h2, .hs-search-results__listing .listing-post__content h3, .hs-search-results__listing .listing-post__content h4, .hs-search-results__listing .listing-post__content h5, .hs-search-results__listing .listing-post__content h6 {
  display: none;
}
.hs-search-results__listing .listing-post__content p {
  font-weight: normal !important;
  margin: 0;
}

@media(min-width: 576px) {
  .hs-search-results__listing {
    list-style: none;
    padding: 0;
    margin: 0 -15px;
    display: flex;
    flex-flow: row wrap;
  }
  .hs-search-results__listing li {
    padding: 0 15px;
    width: 50%;
  }
  .hs-search__no-results {
    padding: 0 15px;
  }
}
@media(min-width: 768px) {
  .hs-search-results__listing .listing-post {
    align-items: flex-start;
    display: flex;
    flex-flow: row wrap;
  }
/*   .hs-search-results__listing .listing-post .listing-post__image {
    height: 96px;
    width: 172px;
  }
  .hs-search-results__listing .listing-post .listing-post__info {
    width: calc(100% - 172px);
    padding-left: 15px;
  } */
  
  .hs-search-results__listing .listing-post .listing-post__title {
    font-size: 20px;
    line-height: 28px;
  }
}

@media(min-width: 992px) {
  .systems-page--search-results .row {
    display: flex; 
    flex-flow: row wrap;
    margin: 0 -15px;
  }
  .systems-page--search-results .column {
    padding: 0 15px;
  }
  .systems-page--search-results .column:nth-child(1) {
    width: 66.666%
  }
  .systems-page--search-results .column:nth-child(2) {
    width: 33.333%
  }
  .systems-page--search-results .sidebar-form {
    margin: 0;
  }
}
@media(min-width: 1200px) {
/*   .systems-page--search-results .listing-post .listing-post__image {
    height: 106px;
    width: 212px;
  }
  .systems-page--search-results .listing-post .listing-post__info {
    width: calc(100% - 212px);
  } */
}
.hero-banner {
  display: flex;
  flex-flow: row wrap;
  position: relative;
  z-index: 1;
}
.hero-banner:after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(74,75,117, 0.4);
}
.hero-banner .desktop-bg {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 30% 50%;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: -1;
  display: none;
}
.hero-banner .desktop-mobile {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 30% 50%;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: -1;
  display: block;
}
.hero-banner .bg-curve img {
  width: 100%;
  height: 100%;
}
.hero-banner .container {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  height: inherit;
  width: 100%;
  position: relative;
  z-index: 2;
  padding-top: 60px;
  padding-bottom: 60px;
}
.active-promotion-banner .hero-banner .container {
  padding-top: 100px;
}
.hero-banner .container .align {
  max-width: 900px;
}
.hero-banner h1 {
  font-family: 'fibra_oneultrabold';
  color: #fff;
  font-size: 40px;
  line-height: 44px;
}
.hero-banner .sub-heading {
  font-family: 'fibra_onebold';
  color: #fff;
  font-size: 18px;
  line-height: 26px;
  display: block;
  margin-bottom: 10px;
}
.hero-banner .text {
  color: #fff;
  font-size: 18px;
  line-height: 26px;
  display: block;
  margin-bottom: 20px;
}
.hero-banner .logos-title {
  color: #fff;
  font-size: 14px;
  line-height: 18px;
  padding-top: 30px;
  display: block;
}
.hero-banner .logos-list {
  list-style: none;
  padding: 0;
  margin: 10px -10px 0;
  display: flex;
  flex-flow: row wrap;
  align-items: center;
}
.hero-banner .logos-list li {
  padding: 0 10px 20px;
}
.lp-banner-popup__modal {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  height: 100%;
  z-index: 999;
  display: none;
}
.lp-banner-popup__modal.active-popup {
  display: block;
}
.lp-banner-popup__modal-inner {
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: center;
  height: inherit;
  padding: 80px 15px;
  position: relative;
  overflow-y: scroll;
}
.lp-banner-popup__modal-inner .holder {
  max-width: 600px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #f6f7fb;
  background-clip: padding-box;
  border: 1px solid rgba(0,0,0,.2);
  border-radius: .3rem;
  outline: 0;
  padding: 50px 20px;
  text-align: center;
  border-radius: 30px;
}
.lp-banner-popup__modal-inner .holder .content h6 {
  margin-bottom: 10px;
}
.lp-banner-popup__modal-inner .holder .form-title {
  display: none;
}
.lp-banner-popup__modal-inner .holder .form-holder {
  max-width: 100%;
  margin: 0 auto;
  width: 100%;
}
.lp-banner-popup__modal-inner .holder .icon-close {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 30px;
  line-height: 30px;
  color: #fe3671;
  cursor: pointer;
  z-index: 5;
}


@media(min-width: 480px) {
  .hero-banner .desktop-bg {
    background-position: 50% 50%;
  }
  .hero-banner h1 {
    font-size: 44px;
    line-height: 48px;
  }
}
@media(min-width: 576px) {
  .hero-banner h1 {
    font-size: 50px;
    line-height: 54px;
  }
  .hero-banner .sub-heading {
    font-size: 22px;
    line-height: 30px;
  }
  .lp-banner-popup__modal-inner .holder {
    padding: 50px 40px;
  }
}
@media(min-width: 768px) {
  .hero-banner .desktop-bg {
    display: block;
  }
  .hero-banner .desktop-mobile {
    display: none;
  }
  .hero-banner h1 {
    font-size: 60px;
    line-height: 64px;
  }
  .hero-banner .container {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .active-promotion-banner .hero-banner .container {
    padding-top: 120px;
  }
}
.hero-banner-2 {
  padding: 30px 0 0;
}
.hero-banner-2 .column:not(:last-child) {
  margin-bottom: 30px;
}
.hero-banner-2 h1 {
  font-family: 'fibra_oneheavy';
  max-width: 550px;
  margin: 0 auto 1.4rem;
  text-align: center;
}
.hero-banner-2 h1 span {
  color: #fe3671;
}
.hero-banner-2 .text {
  max-width: 430px;
  margin: 0 auto 1.4rem;
  text-align: center;
}
.hero-banner-2 .button-list {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  margin: 0 -10px;
}
.hero-banner-2 .button-list li {
  padding: 0 10px 15px;
}
.hero-banner-2 .image-holder {
  text-align: center;
  line-height: 0;
}


@media(min-width: 768px) {
  .hero-banner-2 h1 {
    font-size: 40px;
    line-height: 50px;
  }
  .hero-banner-2 .text {
    font-size: 18px;
    line-height: 28px;
  }
}
@media(min-width: 992px) {
  .hero-banner-2 {
    padding: 50px 0 0;
  }
  .hero-banner-2 .row {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    margin: 0 -15px;
  }
  .hero-banner-2 .column {
    padding: 0 15px;
    margin: 0;
    width: 50%;
  }
  .hero-banner-2 h1 {
    margin: 0 0 1.4rem;
    text-align: left;
  }
  .hero-banner-2 .text {
    margin: 0 0 1.4rem;
    text-align: left;
  }
  .hero-banner-2 .button-list {
    justify-content: flex-start;
  }
}
.how-it-works {
  background-color: #f6f7fb;
  padding: 40px 0;
}
.how-it-works h2 {
  font-family: 'fibra_oneultrabold';
  font-size: 32px;
  line-height: 46px;
  text-align: center;
  margin-bottom: 30px;
}
.how-it-works h2 span {
  color: #fe3671;
}
.how-it-works .works-slider .slick-list {
  padding-top: 30px;
  margin: 0 -15px
}
.how-it-works .works-slider .slide {
  padding: 0 15px;
}
.how-it-works .works-slider .slick-arrow {
  background: #fe3671;
  border-radius: 100%;
  padding: 10px;
  color: #fff;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  cursor: pointer;
  z-index: 5;
}
.how-it-works .works-slider .slick-arrow.arrow-next {
  right: 0;
  left: auto;
}
.how-it-works .steps {
  text-align: center;
}
.how-it-works .image-holder {
  position: relative;
  max-width: 250px;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
}
.how-it-works .image-holder img {
  width: 100%;
}
.how-it-works .image-holder .step-number {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: #05BD8F;
  border-radius: 40px;
  padding: 8px 16px;
  color: #fff;
}
.how-it-works .steps h3 {
  font-size: 22px;
  line-height: 32px;
  margin-bottom: 0;
}
.how-it-works .button-holder {
  text-align: center;
  padding-top: 30px;
}

@media(min-width: 480px) {
  .how-it-works h2 {
    font-size: 36px;
    line-height: 50px;
  }
}
@media(min-width: 768px) {
  .how-it-works h2 {
    font-size: 40px;
    line-height: 54px;
    margin-bottom: 40px;
  }
  .how-it-works .image-holder {
    max-width: 200px;
  }
}

@media(min-width: 992px) {
  .how-it-works .works-slider .slide:nth-child(1) .steps .image-holder:after {
    content: '';
    position: absolute;
    top: 50%;
    right: -220px;
    transform: translateY(-50%) matrix(1, 0, 0, -1, 0, 0);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    width: 220px;
    height: 53px;
    z-index: -1;
    background-image: url('//26304527.fs1.hubspotusercontent-eu1.net/hubfs/26304527/raw_assets/public/avidii/images/curve.png');
  }
  .how-it-works .works-slider .slide:nth-child(2) .steps .image-holder:after {
    content: '';
    position: absolute;
    top: 50%;
    right: -220px;
    transform: translateY(-50%);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    width: 220px;
    height: 53px;
    z-index: -1;
    background-image: url('//26304527.fs1.hubspotusercontent-eu1.net/hubfs/26304527/raw_assets/public/avidii/images/curve.png');
  }
}

@media(min-width: 1200px) {
  .how-it-works {
    padding: 60px 0;
  }
  .how-it-works h2 {
    margin-bottom: 60px;
  }
  .how-it-works .steps h3 {
    font-size: 24px;
    line-height: 34px;
  }
  .how-it-works .image-holder {
    max-width: 250px;
  }
}
.how-it-works-2 {
  background-color: #f6f7fb;
  padding: 60px 0;
}
.how-it-works-2 h2 {
  font-family: 'fibra_oneultrabold';
  font-size: 32px;
  line-height: 46px;
  text-align: center;
  margin-bottom: 50px;
}
.how-it-works-2 h2 span {
  color: #fe3671;
}
.how-it-works-2 .column {
  width: 100%;
}
.how-it-works-2 .steps-list li {
  position: relative;
  padding: 0 15px 0 55px;
}
.how-it-works-2 .steps-list li:not(:last-child) {
  padding-bottom: 25px;
}
.how-it-works-2 .steps-list .title {
  margin-bottom: 10px;
}
.how-it-works-2 .steps-list li .number {
  font-family: fibra_onesemibold,sans-serif;
  font-size: 18px;
  line-height: 26px;
  color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  min-height: 40px;
  min-width: 40px;
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  display: flex;
}
.how-it-works-2 .steps-list li:nth-child(3n+1) .number {
  background-image: linear-gradient(135deg, rgba(254, 54, 113, .8), rgba(254, 54, 113, .6));
}
.how-it-works-2 .steps-list li:nth-child(3n+2) .number {
  background-image: linear-gradient(135deg, rgba(5, 189, 143, .8), rgba(5, 189, 143, .6));
}
.how-it-works-2 .steps-list li:nth-child(3n) .number {
  background-image: linear-gradient(135deg, rgba(75, 76, 118, .8), rgba(75, 76, 118, .6));
}
.how-it-works-2 .steps-list li:nth-child(4n) .number {
  background-image: linear-gradient(135deg, rgba(255, 192, 0, .8), rgba(255, 192, 1, .6));
}
.how-it-works-2 .button-holder {
  margin-top: 40px;
}
.how-it-works-2 .button-holder {
  margin-top: 40px;
}
.how-it-works-2 .button-holder .cta_button .icon {
  width: 10px;
  height: 10px;
  display: inline-block;
  margin-right: 5px;
  line-height: 0;
}
.how-it-works-2 .button-holder .cta_button .icon svg {
  fill: #fff;
}
.how-it-works-2 .steps-list .title {
  font-size: 22px;
  line-height: 30px;
}

.how-it-works-2 .video-holder {
  position: relative;
  z-index: 1;
  margin: 30px 10px 0 0;
  line-height: 0;
}
.how-it-works-2 .video-holder__dashline {
  width: 100%;
  max-height: 100%;
  min-height: 100%;
  border: 3px dashed #4b4c76;
  border-radius: 16px;
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: -1;
}
.how-it-works-2 .embed_container, .oembed_container {
  border-radius: 16px;
  -moz-border-radius: 16px;
  -webkit-border-radius: 16px;
  overflow: hidden;
}
.how-it-works-2 .embed_container iframe, .oembed_container iframe {
  border-radius: 16px;
  -moz-border-radius: 16px;
  -webkit-border-radius: 16px;
  overflow: hidden;
}


@media(min-width: 480px) {
  .how-it-works-2 h2 {
    font-size: 36px;
    line-height: 50px;
  }
}
@media(min-width: 768px) {
  .how-it-works-2 h2 {
    font-size: 40px;
    line-height: 54px;
  }
}
@media(min-width: 992px) {
  .how-it-works-2 .row {
    display: flex;
    flex-flow: row wrap;
    margin: 0 -15px;
  }
  .how-it-works-2 .column {
    padding: 0 15px;
    width: 50%;
  }
  .how-it-works-2 .video-holder {
    margin: 0 20px 0 0;
  }
  .how-it-works-2 .video-holder__dashline {
    border-width: 3px;
    top: 16px;
    left: 16px;
  }
}
@media(min-width: 1200px) {
  .how-it-works-2 {
    padding: 60px 0;
  }
  .how-it-works-2 h2 {
    margin-bottom: 60px;
  }
  .how-it-works-2 .steps-list li {
    padding: 0 30px 0 65px;
  }
  .how-it-works-2 .steps-list li:not(:last-child) {
    padding-bottom: 40px;
  }
  .how-it-works-2 .video-holder__dashline {
    top: 18px;
    left: 18px;
  }
  .how-it-works-2 .steps-list .title {
    font-size: 26px;
    line-height: 34px;
  }
}
.how-it-works-3 {
  background-color: #f6f7fb;
  padding: 60px 0 0;
}
.how-it-works-3 h2 {
  font-family: 'fibra_oneultrabold';
  font-size: 32px;
  line-height: 46px;
  text-align: center;
  margin-bottom: 10px;
}
.how-it-works-3 h2 span {
  color: #fe3671;
}
.how-it-works-3 .sub-heading {
  font-size: 20px;
  line-height: 28px;
  text-align: center;
  margin-bottom: 40px;
  display: block;
}
.how-it-works-3 .row {
  margin-bottom: 50px;
}
.how-it-works-3 .row:last-child {
  margin-bottom: 0;
}
.how-it-works-3 .column {
  width: 100%;
}
.how-it-works-3 .content {
  position: relative;
}
.how-it-works-3 .content .title-holder {
  align-items: center;
  display: flex;
}
.how-it-works-3 .content .title {
  font-size: 28px;
  line-height: 34px;
  margin-bottom: 20px;
  text-transform: uppercase;
  padding-left: 15px;
}
.how-it-works-3 .content .text {
  line-height: 28px;
}
.how-it-works-3 .content .number {
  background-color: #05bd8f;
  font-family: "fibra_onesemibold";
  font-size: 18px;
  line-height: 26px;
  color: #fff;
  margin-bottom: 20px;
  width: 40px;
  height: 40px;
  min-height: 40px;
  min-width: 40px;
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  display: flex;
}
.how-it-works-3 .image-holder {
  border-radius: 25px;
  overflow: hidden;
  max-width: 300px;
  margin: 30px auto 0;
  line-height: 0;
}

@media(min-width: 480px) {
  .how-it-works-3 h2 {
    font-size: 36px;
    line-height: 50px;
  }
}
@media(min-width: 768px) {
  .how-it-works-3 h2 {
    font-size: 40px;
    line-height: 54px;
  }
  .how-it-works-3 .sub-heading {
    font-size: 22px;
    line-height: 30px;
  }
  .how-it-works-3 .content {
    padding: 0 15px 0 55px;
  }
  .how-it-works-3 .content .text {
    font-size: 18px;
    line-height: 30px;
  }
  .how-it-works-3 .content .number {
    position: absolute;
    top: -3px;
    left: 0;
  }
  .how-it-works-3 .content .title {
    font-size: 32px;
    line-height: 38px;
    padding: 0;
  }
}
@media(min-width: 992px) {
  .how-it-works-3 .row {
    display: flex;
    flex-flow: row wrap;
    margin: 0 -15px 80px;
  }
  .how-it-works-3 .column {
    padding: 0 15px;
    width: 50%;
  }
  .how-it-works-3 .steps-list .title {
    font-size: 30px;
    line-height: 38px;
  }
  .how-it-works-3 .sub-heading {
    margin-bottom: 60px;
  }
}
@media(min-width: 1200px) {
  .how-it-works-3 .row {
    margin-bottom: 120px;
  }
  .how-it-works-3 .content {
    padding: 0 30px 0 60px;
  }
}
.support-info {
  padding: 40px 0 20px;
}
.support-info .support-info__holder {
  text-align: center;
}
.support-info h2 {
  font-family: 'fibra_oneultrabold';
  font-size: 32px;
  line-height: 46px;
  margin-bottom: 30px;
}
.support-info .support-list {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: list;
  text-align: left;
  max-width: 320px;
  margin: 0 auto;
}
.support-info .support-list li {
  font-family: 'fibra_onebold';
  padding: 0 0 30px 45px;
  font-size: 20px;
  line-height: 26px;
  counter-increment: list;
  position: relative;
}
.support-info .support-list li:before {
  content: counter(list);
  position: absolute;
  top: -2px;
  left: 0;
  width: 32px;
  height: 32px;
  border-radius: 100%;
  background-color: #05BD8F;
  display: flex;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  line-height: 32px;
}
.recomendations {
  text-align: center;
  margin-top: 30px;
}
.recomendations span {
  color: #78789B;
  font-size: 18px;
  line-height: 26px;
  font-family: 'fibra_onebold';
  padding-bottom: 15px;
  display: block;
}
.recomendations .recomendations-list {
  list-style: none;
  padding: 0;
  margin: 0 -15px;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
}
.recomendations .recomendations-list li {
  padding: 0 15px 30px;
}

@media(min-width: 480px) {
  .support-info .support-list li {
    font-size: 22px;
    line-height: 28px;
  }
  .support-info .support-list {
    max-width: inherit;
    margin: 0;
  }
  .support-info .support-list li:before {
    font-size: 18px;
    line-height: 32px;
  }
  .support-info h2 {
    font-size: 36px;
    line-height: 50px;
  }
}

@media(min-width: 576px) {
  .support-info .support-list {
    margin: 0 -15px;
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
  }
  .support-info .support-list li { 
    padding-right: 15px;
  }
}

@media(min-width: 768px) {
  .support-info h2 {
    font-size: 40px;
    line-height: 54px;
  }
}

@media(min-width: 1200px) {
  .support-info {
    padding: 40px 0;
  }
  .support-info .support-list li {
    padding: 0 30px 10px 45px;
  }
}

@media(min-width: 1280px) {
  .support-info .support-list li {
    font-size: 24px;
    line-height: 30px;
  }
}
.tutuor-info {
  padding: 40px 0;
}
.tutuor-info h2 {
  font-family: 'fibra_oneultrabold';
  font-size: 32px;
  line-height: 46px;
  text-align: center;
  margin-bottom: 40px;
}
.tutuor-info h2 span {
  color: #fe3671;
}
.logoMarqueeSection {
  overflow: hidden;
  display: flex;
  flex-direction: row;
  position: relative;
  width: 100%;
  height: 450px;
  z-index: 1;
}
.logoMarqueeSection:hover .marquee li .tutor {
  opacity: 0.6;
}
.logoMarqueeSection:hover .marquee li .tutor:hover {
  opacity: 1;
}
.logoMarqueeSection:hover .marquee li .tutor:hover .cta_button {
  display: inline-block;
}
.logoMarqueeSection:hover .marquee li .tutor:hover .cta_white {
  display: none;
}
.marquee-wrapper {
  display: flex;
  flex-flow: row nowrap;
  white-space: nowrap;
  position: relative;
  transform: translate3d(0%, 0, 0);
  animation-name: marquee;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-duration: 47s;
}
.marquee-wrapper.stop_animation {
  animation-play-state: paused !important;
}
.marquee {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
}
.marquee li {
  white-space: nowrap;
  display: flex;
  flex-direction: column;
  margin: 0 10px;
  text-align: center;
  min-width: 180px;
}
.marquee li.top {
  justify-content: flex-start;
}
.marquee li.center {
  justify-content: center;
}
.marquee li.bottom {
  justify-content: flex-end;
}
.marquee li.small {
  min-width: 132px;
}
.marquee li.medium {
  min-width: 152px;
}
.marquee li.large {
  min-width: 180px;
}
.marquee li.extra-large {
  min-width: 248px;
}
.marquee li.small .image-holder .circle {
  bottom: 18px;
  right: 6px;
}
.marquee li.medium .image-holder .circle {
  bottom: 18px;
  right: 10px;
}
.marquee li.large .image-holder .circle {
  bottom: 36px;
  right: 10px;
}
.marquee li.extra-large .image-holder .circle {
  bottom: 46px;
  right: 26px;
}
.marquee li .image-holder {
  display: flex;
  align-items: center;
  flex-direction: column;
  margin-top: 26px;
  position: relative;
}
.marquee li .image-holder .circle {
  background-color: #d3d3e4;
  border-radius: 100%;
  height: 16px;
  width: 16px;
  display: inline-block;
  position: absolute;
  bottom: 18px;
  right: 10px;
}
.marquee li .image-holder .circle.active {
  background-color: #09D2A0;
}
.marquee li .image-holder img {
  border-radius: 100%;
  overflow: hidden;
  width: 100%;
}
.marquee li .button-holder {
  position: relative;
  display: inline-block;
  margin-top: 15px;
}
.marquee li .cta_button {
  display: none;
  min-width: auto;
}
.marquee li .cta_white {
  color: #4B4C76;
  font-family: 'fibra_onesemibold';
  font-size: inherit;
  line-height: inherit;
  background-color: #fff;
  border: none;
  border-radius: 35px;
  box-shadow: none;
  text-align: center;
  display: inline-block;
  padding: 12px 22px;
  cursor: pointer;
  text-decoration: none;
  min-width: auto;
  text-align: center;
}

@keyframes marquee {
  0% {
    transform: translate3d(0%, 0, 0);
  }
  100% {
    transform: translate3d(-100%, 0, 0);
  }
}

.tutors-content {
  position: relative;
}
.tutuor-info .tutuor-info__box {
  width: 280px;
  height: 280px;
  background: #4B4C76;
  border-radius: 100%;
  margin: 40px auto 0;
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: center;
  padding-top: 30px;
  position: relative;
  z-index: 2;
}
.tutuor-info .tutuor-info__box .badge {
  position: absolute;
  top: -40px;
  left: -25px;
  max-width: 130px;
}
.tutuor-info .tutuor-info__box .badge .image {
  width: 100%;
}
.tutuor-info .tutuor-info__box .badge .text {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%) rotate(-7deg);
  max-width: 150px;
  font-family: 'fibra_onebold';
  font-size: 16px;
  line-height: 24px;
  color: #fff;
  display: block;
  text-align: center;
  margin-top: -4px;
}
.tutuor-info .tutuor-info__box .numbers {
  font-family: 'fibra_oneultrabold';
  font-size: 60px;
  line-height: 70px;
  color: #fff;
  display: block;
  text-align: center;
  margin-bottom: 5px;
}
.tutuor-info .tutuor-info__box .verify-badge {
  font-family: 'fibra_oneultrabold';
  font-size: 22px;
  line-height: 30px;
  color: #fff;
  display: block;
  text-transform: uppercase;
  text-align: center;
  background: #78789B;
  border-radius: 28px;
  padding: 4px 20px 4px 40px;
  margin: 0 auto 15px;
  position: relative;
}
.tutuor-info .tutuor-info__box .verify-badge svg {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 15px;
}
.tutuor-info .tutuor-info__box .sub-heading {
  font-family: 'fibra_oneultrabold';
  font-size: 22px;
  line-height: 30px;
  color: #fff;
  display: block;
  text-transform: uppercase;
  text-align: center;
}

.unversities-info {
  margin-top: 30px;
}
.unversities-info .text {
  font-family: 'fibra_oneultrabold';
  display: block;
  text-align: center;
  padding-bottom: 15px;
}
.unversities-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: center;
  margin: 0 -20px;
  overflow-x: auto;
}
.unversities-list li {
  padding: 0 20px;
}
.unversities-list li img {
  width: 110px;
  max-width: inherit !important;
}

.subjects-info {
  margin-bottom: 30px;
}
.subjects-info .text-before {
  display: block;
  margin-bottom: 10px;
  text-align: center;
}
.subjects-info .text-after {
  display: block;
  margin-bottom: 10px;
  text-align: center;
}
.subject-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: center;
  margin: 0 20px;
  overflow-x: auto;
}
.subject-list li {
  padding: 0 5px 10px 0;
  text-align: center;
}
.subject-list li .subject {
  font-family: 'fibra_oneultrabold';
  border: 1px solid #D3D3E4;
  border-radius: 100px;
  padding: 8px 14px;
  display: inline-block;
}


@media(min-width: 360px) {
  .tutuor-info .tutuor-info__box {
    width: 320px;
    height: 320px;
  }
  .tutuor-info .tutuor-info__box .numbers {
    font-size: 70px;
    line-height: 80px;
  }
  .tutuor-info .tutuor-info__box .verify-badge {
    font-size: 26px;
    line-height: 34px;
  }
}
@media(min-width: 400px) {
  .tutuor-info .tutuor-info__box {
    width: 350px;
    height: 350px;
  }
  .tutuor-info .tutuor-info__box .numbers {
    font-size: 80px;
    line-height: 90px;
  }
  .tutuor-info .tutuor-info__box .verify-badge {
    font-size: 30px;
    line-height: 38px;
  }
  .tutuor-info .tutuor-info__box .sub-heading {
    font-size: 26px;
    line-height: 34px;
  }
  .tutuor-info .tutuor-info__box .badge {
    top: -30px;
    max-width: 140px;
  }
}
@media(min-width: 480px) {
  .tutuor-info .tutuor-info__box .badge {
    left: -30px;
  }
}
@media(min-width: 576px) {
  .unversities-list {
    justify-content: center;
  }
}
@media(min-width: 768px) {
  .tutuor-info h2 {
    font-size: 40px;
    line-height: 54px;
  }
  .tutuor-info .tutuor-info__box .badge {
    top: -30px;
    left: -30px;
  }
  .logoMarqueeSection {
    margin-top: -180px;
  }
  .unversities-list li img {
    max-width: 100% !important;
  }
}
@media(min-width: 992px) {
  .marquee li.large {
    min-width: 204px;
  }
  .marquee li.extra-large {
    min-width: 288px;
  }
  .unversities-info {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: center;
  }
  .unversities-info .text {
    padding: 0 25px 0 0;
    text-align: left;
  }
  .tutuor-info .tutuor-info__box {
    margin: -60px auto 0;
    justify-content: center;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    z-index: 2;
  }
  .logoMarqueeSection {
    margin: 0;
    height: 500px;
  }
  .subjects-info {
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
  }
  .subjects-info .text-before {
    display: inline-block;
    margin: -10px 0 0;
    text-align: center;
  }
  .subjects-info .text-after {
    display: inline-block;
    margin: -10px 0 0;
    text-align: center;
  }
  .subject-list {
    justify-content: center;
  }
  .subject-list li .subject {
    padding: 12px 20px;
  }
}
@media(min-width: 1200px) {
  .tutuor-info {
    padding: 60px 0;
  }
  .tutuor-info h2 {
    margin-bottom: 60px;
  }
  .tutuor-info .tutuor-info__box {
    width: 400px;
    height: 400px;
  }
  .tutuor-info .tutuor-info__box .numbers {
    font-size: 100px;
    line-height: 110px;
  }
  .tutuor-info .tutuor-info__box .verify-badge {
    font-size: 36px;
    line-height: 44px;
  }
  .tutuor-info .tutuor-info__box .badge {
    max-width: 150px;
  }
  .subjects-info {
    margin-bottom: 60px;
  }
}
.consultation-module {
  padding: 100px 0 30px;
}
.consultation-module .holder {
  color: #fff;
  background-color: #4b4c76;
  border-radius: 22px;
  position: relative;
  padding: 100px 30px 50px;
}
.consultation-module .holder .image-holder {
  background-color: #4b4c76;
  border: 10px solid #4b4c76;
  border-radius: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  height: 141px;
  width: 141px;
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
}
.consultation-module .holder .quote-holder {
  margin-bottom: 35px;
  padding: 0;
}
.consultation-module .holder .button-holder {
  text-align: center;
  padding: 0;
  margin-top: 30px;
}
.consultation-module .holder blockquote {
  font-size: 26px;
  line-height: 40px;
  font-family: 'fibra_onesemibold';
  margin-bottom: 20px;
  text-align: center;
  border: none;
  padding: 0;
}
.consultation-module .holder .name {
  font-size: 18px;
  line-height: 26px;
  display: block;
  position: relative;
  letter-spacing: 1px;
  text-align: center;
  margin-bottom: 10px;
}
.consultation-module .holder .designation {
  font-size: 16px;
  line-height: 24px;
  display: block;
  position: relative;
  letter-spacing: 1px;
  text-align: center;
  margin-bottom: 28px;
}

.consultation-module .social-networks {
  padding: 0;
  margin: 0 -10px;
  list-style: none;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
}
.consultation-module .social-networks li {
  padding: 0 10px;
}
.consultation-module .social-networks li a {
  background-color: #fe3671;
  border-radius: 100%;
  color: #fff;
  text-decoration: none;
  font-size: 20px;
  line-height: 20px;
  padding: 10px 12px;
}

@media (min-width: 768px) {
  .consultation-module .holder blockquote {
    font-size: 30px;
    line-height: 44px;
  }
  .consultation-module .holder .name {
    font-size: 20px;
    line-height: 28px;
  }
}
@media (min-width: 1200px) {
  .consultation-module .holder {
    margin-left: 110px;
    padding: 48px 40px 48px 100px;
  }
  .consultation-module .holder .image-holder {
    top: -42px;
    left: -105px;
    transform: none;
    height: 160px;
    width: 160px;
  }
  .consultation-module .holder .button-holder {
    padding: 0 15px;
    text-align: right;
  }
  .consultation-module .holder .quote-holder {
    margin: 0;
  }
  .consultation-module .holder blockquote {
    text-align: left;
    margin-bottom: 20px;
  }
  .consultation-module .holder .name {
    font-size: 24px;
    line-height: 32px;
    text-align: left;
  }
  .consultation-module .holder .designation {
    text-align: left;
  }
  .consultation-module .social-networks {
    justify-content: flex-start;
  }
  .consultation-module .holder .buttons-list {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: space-between;
  }
  .consultation-module .holder .button-holder {
    margin: 0;
  }
}
@media (min-width: 1400px) {
  .consultation-module .holder {
    padding: 48px 60px 48px 120px;
  }
  .consultation-module .holder .image-holder {
    height: 180px;
    width: 180px;
  }
  .consultation-module .holder .name {
    font-size: 27px;
    line-height: 35px;
  }
}
.pricing-module {
  padding: 30px 0;
  background: #fff;
}
.pricing-module .container {
  max-width: 960px;
}
.pricing-module h2 {
  font-family: 'fibra_oneultrabold';
  font-size: 32px;
  line-height: 46px;
  text-align: center;
  margin-bottom: 30px;
}
.pricing-module h2 span {
  color: #fe3671;
}
.pricing-module .column {
  width: 100%;
}
.pricing-module .logo-holder {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: center;
  margin-bottom: 110px;
}
.pricing-module .logo-holder .logo {
  max-width: 130px;
  margin-right: 15px;
}
.pricing-module .logo-holder .text {
  color: #fe3671;
  font-family: 'fibra_oneultrabold';
  font-size: 32px;
  line-height: 40px;
  text-transform: uppercase;
  margin-top: 10px;
}
.pricing-module .pricing {
  text-align: center;
}
.pricing-module .pricing .offer-limit {
  font-size: 18px;
  line-height: 26px;
  margin-top: 15px;
}
.pricing-module .pricing-box {
  background-color: #4b4c76;
  border: 2px solid #fff;
  box-shadow: 0 4px 11px rgba(75,76,118,35%);
  border-radius: 35px;
  padding: 70px 20px 30px;
  position: relative;
}
.pricing-box .price-info .actual-price {
  display: inline-block;
  color: #bdbfcc;
  font-family: 'fibra_oneultrabold';
  font-size: 44px;
  line-height: 54px; 
  position: relative;
}
.pricing-box .price-info .actual-price:after {
  content: '';
  position: absolute;
  top: 50%;
  left: -10px;
  right: -10px;
  height: 4px;
  background-color: #fe3671;
  transform: translateY(-50%) rotate(-25deg);
}
.pricing-box .price-info .discount-price {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: 'fibra_onebold';
  font-size: 18px;
  line-height: 22px;
  text-align: left;
}
.pricing-box .price-info .discount-price .price {
  display: inline-block;
  color: #fff;
  font-family: 'fibra_oneultrabold';
  font-size: 70px;
  line-height: 78px;
  margin-right: 10px;
}
.pricing-box .discount-info {
  background-color: #00e7af;
  box-shadow: 0 4px 11px rgba(0,231,175,35%);
  border-radius: 100%;
  color: #fff;
  width: 160px;
  height: 160px;
  padding: 30px 20px;
  text-align: center;
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.pricing-box .discount-info .logo {
  max-width: 120px;
  display: block;
  margin: 0 auto;
}
.pricing-box .discount-info .title {
  font-family: 'fibra_onebold';
  display: block;
  font-size: 22px;
  line-height: 30px;
}
.pricing-box .discount-info .discount-percentage {
  font-family: 'fibra_oneultrabold';
  color: #4b4c76;
  display: block;
  font-size: 30px;
  line-height: 40px;
}
.pricing-box .discount-info .brand-info {
  position: absolute;
  top: 10px;
  left: -90px;
  font-family: fibra_onebold;
  font-size: 14px;
  line-height: 22px;
  color: #4b4c76;
  font-style: italic;
}
.pricing-box .discount-info .brand-info .icon {
  font-size: 40px;
  line-height: 40px;
  transform: rotate(70deg);
  position: absolute;
  bottom: -2px;
  right: -36px;
}
.pricing-module .features {
  margin-top: 40px;
}
.pricing-module .features .list {
  max-width: 280px;
  margin: 0 auto;
}
.pricing-module .features .list li {
  position: relative;
  font-family: 'fibra_onebold';
  font-size: 20px;
  line-height: 28px;
  padding: 0 0 30px 50px;
}
.pricing-module .features .list li .icon {
  position: absolute;
  top: -3px;
  left: 0;
  max-width: 30px;
}
.pricing-module .features .list .sub-list {
  list-style: none;
  padding: 0;
  margin: 15px 0 0;
}
.pricing-module .features .list .sub-list li {
  position: relative;
  padding: 0 0 10px 18px;
  font-size: 18px;
  line-height: 26px;
}
.pricing-module .features .list .sub-list li:before {
  content: '';
  position: absolute;
  top: 12px;
  left: 0;
  background: #4b4c76;
  height: 2px;
  width: 8px;
}
.pricing-module .features .button-holder {
  text-align: center;
}

.lp-pricing-popup__modal {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  height: 100%;
  z-index: 999;
  display: none;
}
.lp-pricing-popup__modal.active-popup {
  display: block;
}
.lp-pricing-popup__modal-inner {
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: center;
  height: inherit;
  padding: 80px 15px;
  position: relative;
  overflow-y: scroll;
}
.lp-pricing-popup__modal-inner .holder {
  max-width: 600px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #f6f7fb;
  background-clip: padding-box;
  border: 1px solid rgba(0,0,0,.2);
  border-radius: .3rem;
  outline: 0;
  padding: 50px 20px;
  text-align: center;
  border-radius: 30px;
}
.lp-pricing-popup__modal-inner .holder .content h6 {
  margin-bottom: 10px;
}
.lp-pricing-popup__modal-inner .holder .form-title {
  display: none;
}
.lp-pricing-popup__modal-inner .holder .form-holder {
  max-width: 100%;
  margin: 0 auto;
  width: 100%;
}
.lp-pricing-popup__modal-inner .holder .icon-close {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 30px;
  line-height: 30px;
  color: #fe3671;
  cursor: pointer;
  z-index: 5;
}


@media(max-width: 767px) {
  .pricing-module h2.hide-heading {
    display: none;
  }
}
@media(min-width: 480px) {
  .pricing-module h2 {
    font-size: 36px;
    line-height: 50px;
  }
  .pricing-module .features .list {
    max-width: inherit;
    margin: 0;
  }
}
@media(min-width: 576px) {
  .lp-pricing-popup__modal-inner .holder {
    padding: 50px 40px;
  }
}
@media(min-width: 768px) {
  .pricing-module h2 {
    font-size: 40px;
    line-height: 54px;
    margin-bottom: 40px;
  }
}
@media(min-width: 1200px) {
  .pricing-module {
    padding: 40px 0 80px;
  }
  .pricing-module .row {
    display: flex;
    flex-flow: row wrap;
    margin: 0 -15px;
  }
  .pricing-module .column {
    padding: 0 15px;
    width: 50%;
  }
  .pricing-module h2 {
    margin-bottom: 60px;
  }
  .pricing-module .logo-holder {
    justify-content: flex-start;
    padding-left: 110px;
    margin-bottom: 30px;
  }
  .pricing-module .pricing {
    max-width: 380px;
  }
  .pricing-module .pricing-box {
    padding: 40px 40px 40px 120px;
    text-align: left;
  }
  .pricing-box .price-info .discount-price {
    justify-content: flex-start;
  }
  .pricing-box .discount-info {
    left: 30px;
    top: -60px;
  }
  .pricing-module .features {
    margin: 0;
    padding: 20px 0 0 60px;
  }
  .pricing-box .discount-info .brand-info {
    top: -20px;
    left: -80px;
  }
  .pricing-box .discount-info .brand-info .icon {
    bottom: -30px;
    right: -25px;
    transform: rotate(80deg);
  }
  .pricing-module .features .button-holder {
    text-align: left;
  }
}
@media(min-width: 1400px) {
  .pricing-box .discount-info .brand-info {
    left: -90px;
  }
}
.meeting-module {
  background-color: #f6f7fb;
  padding: 40px 0;
}
.meeting-module h2 {
  font-family: 'fibra_oneultrabold';
  font-size: 32px;
  line-height: 46px;
  text-align: center;
  margin-bottom: 40px;
}
.meeting-module h2 span {
  color: #fe3671;
}
.meeting-module iframe {
  height: 620px !important;
}

@media(min-width: 480px) {
  .meeting-module h2 {
    font-size: 36px;
    line-height: 50px;
  }
}
@media(min-width: 768px) {
  .meeting-module {
    padding: 60px 0;
  }
  .meeting-module h2 {
    font-size: 40px;
    line-height: 54px;
  }
  .meeting-module iframe {
    height: 670px !important;
  }
}
.tags-module {
  padding-bottom: 20px;
}
.tags-module .tags-list {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0 -3px;
}
.tags-module .tags-list li {
  padding: 0 3px 6px;
}
.tags-module .tags-list li .tag {
  background: rgba(32,227,178, 1);
  border-radius: 8px;
  color: #fff;
  display: inline-block;
  font-weight: 600;
  font-size: 14px;
  line-height: 24px;
  text-align: center;
  padding: 10px 20px;
  text-decoration: none;
  transition: all 0.4s ease-in-out;
}
.testimonial-b2b {
  background-color: #4B4C76;
  padding: 40px 0;
  position: relative;
}
.testimonial-b2b h2 {
  color: #fff;
  font-family: 'fibra_oneultrabold';
  font-size: 32px;
  line-height: 46px;
  text-align: center;
  max-width: 600px;
  margin: 0 auto 40px;
}
.testimonial-b2b h2 span {
  color: #09D2A0;
}
.static-boxes {
  display: none;
}
.static-boxes .row {
  display: flex;
  flex-flow: row wrap;
  margin: 0 -15px;
}
.static-boxes .column {
  padding: 0 15px;
  margin-bottom: 60px;
  width: 50%;
}
.static-boxes .column:nth-child(even) .testimonial-box {
  margin: 0 0 0 auto;
}
.static-boxes .column:nth-child(2) .testimonial-box {
  background-color: #626395;
  max-width: 350px;
  margin: 0 80px 0 auto;
}
.static-boxes .column:nth-child(3) .testimonial-box {
  background-color: #626395;
  max-width: 350px;
  margin: 0 0 0 60px;
}
.static-boxes .testimonial-box {
  background-color: #515381;
  border-radius: 25px;
  color: #fff;
  padding: 20px 35px;
  max-width: 500px;
}
.static-boxes .testimonial-box .testimonial-info {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  margin-bottom: 10px;
}
.static-boxes .testimonial-box .testimonial-info .image-holder {
  height: 38px;
  width: 38px;
  border-radius: 100%;
  overflow: hidden;
  background-color: #fff;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
}
.static-boxes .testimonial-box .testimonial-info .info {
  padding-left: 15px;
  width: calc(100% - 38px);
}
.static-boxes .testimonial-box .testimonial-info .info:only-child {
  padding: 0;
  width: 100%;
}
.static-boxes .testimonial-box .testimonial-info .info .name {
  display: block;
  font-family: 'fibra_oneultrabold';
  font-size: 12px;
  line-height: 20px;
}
.static-boxes .testimonial-box .testimonial-info .info .designation {
  display: block;
  font-size: 10px;
  line-height: 14px;
  color: #C8C9FB;
}
.static-boxes .testimonial-box .testimonial-info .info .rating-image {
  display: block;
  max-width: 60px;
  margin-top: 5px;
  line-height: 0;
}


.testimonial-slider {
  margin-bottom: 20px;
}
.testimonial-slider.active-popup .slick-list, .testimonial-slider.active-popup .slick-slide {
  overflow: unset;
}
.testimonial-slider.active-popup .slick-list {
  transform: none !important;
  padding-right: 0;
}
.testimonial-slider.active-popup .slick-track {
  width: 100% !important;
  transform: none !important;
/*   display: flex;
  flex-flow: row nowrap; */
}
/* .testimonial-slider.active-popup .slick-slide {
  width: 290px !important;
} */
.testimonial-slider .slick-list {
  padding-right: 60px;
  margin: 0 -10px;
}
.testimonial-slider .slick-slide {
  border-radius: 30px;
  overflow: hidden;
  padding: 0 10px;
}
.testimonial-slider .testimonial-box {
  background-color: #fff;
  border-radius: 30px;
  padding: 25px 20px;
  overflow: hidden;
  position: relative;
}
.testimonial-slider .testimonial-box .testimonial-box__link {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
}
.testimonial-slider .testimonial-box .testimonial-info {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  margin-bottom: 10px;
}
.testimonial-slider .testimonial-box .testimonial-info .image-holder {
  height: 54px;
  width: 54px;
  border-radius: 100%;
  overflow: hidden;
  background-color: #fe3671;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
}
.testimonial-slider .testimonial-box .testimonial-info .info {
  padding-left: 15px;
  width: calc(100% - 54px);
}
.testimonial-slider .testimonial-box .testimonial-info .info:only-child {
  padding-left: 0;
  width: 100%;
}
.testimonial-slider .testimonial-box .testimonial-info .info .name {
  display: block;
  font-family: 'fibra_oneultrabold';
  font-size: 16px;
  line-height: 24px;
}
.testimonial-slider .testimonial-box .testimonial-info .info .rating-image {
  display: block;
  margin-top: 5px;
}
.testimonial-slider .testimonial-box .testimonial-info .info .review-source-image {
  display: block;
  margin-top: 8px;
}
.testimonial-slider .testimonial-box .testimonial-info .info .designation {
  display: block;
  font-size: 14px;
  line-height: 22px;
  color: #c8c9fb;
}
.testimonial-slider .testimonial-box .text {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  display: none;
}
.testimonial-slider .testimonial-box .title {
  font-family: 'fibra_oneultrabold';
  font-size: 20px;
  line-height: 28px;
  display: block;
  margin-bottom: 15px;
}
.testimonial-slider .testimonial-box .view-more {
  font-family: 'fibra_oneultrabold';
  color: #fe3671;
  display: block;
  text-decoration: none;
}
.testimonial-popup {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  height: 100%;
  z-index: 999;
  display: none;
}
.testimonial-popup.active-popup {
  display: block;
}
.testimonial-popup-inner {
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: center;
  height: inherit;
  padding: 40px 15px;
  position: relative;
  overflow-y: scroll;
}
.testimonial-popup-inner .holder {
  max-width: 600px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0,0,0,.2);
  border-radius: .3rem;
  outline: 0;
  padding: 40px 20px;
  text-align: center;
  border-radius: 30px;
}
.testimonial-popup-inner .holder .testimonial-box__link {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
}
.testimonial-popup-inner .testimonial-popup-content {
  text-align: left;
}
.testimonial-popup-inner .testimonial-popup-content .testimonial-info {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  margin-bottom: 10px;
}
.testimonial-popup-inner .testimonial-popup-content .testimonial-info .image-holder {
  height: 54px;
  width: 54px;
  border-radius: 100%;
  overflow: hidden;
  background-color: #fe3671;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
}
.testimonial-popup-inner .testimonial-popup-content .testimonial-info .info {
  padding-left: 15px;
}
.testimonial-popup-inner .testimonial-popup-content .testimonial-info .info:only-child {
  padding: 0;
  width: 100%;
}
.testimonial-popup-inner .testimonial-popup-content .testimonial-info .info .name {
  display: block;
  font-family: 'fibra_oneultrabold';
  font-size: 16px;
  line-height: 24px;
}
.testimonial-popup-inner .testimonial-popup-content .testimonial-info .info .designation {
  display: block;
  font-size: 14px;
  line-height: 22px;
  color: #c8c9fb;
}
.testimonial-popup-inner .testimonial-popup-content .title {
  font-family: 'fibra_oneultrabold';
  font-size: 20px;
  line-height: 28px;
  display: block;
  margin-bottom: 15px;
}
.testimonial-popup-inner .holder .icon-close {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 30px;
  line-height: 30px;
  color: #fe3671;
  cursor: pointer;
  z-index: 5;
}

@media (min-width: 576px) {
  .popup__modal-inner .holder {
    padding: 50px 40px;
  }
}

@media(min-width: 480px) {
  .testimonial-b2b h2 {
    font-size: 36px;
    line-height: 50px;
  }
}
@media(min-width: 768px) {
  .testimonial-b2b {
    margin: 0 15px;
    border-radius: 40px;
  }
  .testimonial-b2b h2 {
    font-size: 40px;
    line-height: 54px;
  }
  .static-boxes {
    display: block;
    padding-top: 60px;
  }
  .testimonial-slider {
    margin: 20px auto 0;
    max-width: 650px;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
  }
  .testimonial-slider .slider-track {
    transition: all 1s cubic-bezier(0.7, 0, 0.3, 1);
  }
  .testimonial-slider .slider-list {
    margin: 0;
  }
  .testimonial-slider .slider-slide {
    padding: 0;
  }
  .testimonial-slider .slick-slide.slick-active .testimonial-box .testimonial-box--holder {
    transform: scale(1);
  }
  .testimonial-slider .testimonial-box .testimonial-box--holder {
    transform: scale(1.05);
    transition: all 1s cubic-bezier(0.7, 0, 0.3, 1);
  }
  .testimonial-slider .testimonial-box {
    padding: 35px;
    background-color: #fff;
    color: #4b4c76;
  }
  .testimonial-slider .testimonial-box .text {
    -webkit-line-clamp: inherit;
    text-overflow: inherit;
    font-size: 22px;
    line-height: 36px;
  }
  .testimonial-slider .testimonial-box .testimonial-info .image-holder {
    height: 64px;
    width: 64px;
  }
  .testimonial-slider .testimonial-box .testimonial-info .info .name {
    font-size: 20px;
    line-height: 34px;
  }
  .testimonial-slider .testimonial-box .testimonial-info .info .designation {
    font-size: 16px;
    line-height: 24px;
    color: #4b4c76;
  }
  .testimonial-slider .testimonial-box .title, .testimonial-slider .testimonial-box .view-more {
    display: none;
  }
  .testimonial-slider .testimonial-box .text {
    display: block;
  }
  .testimonial-slider .testimonial-box .testimonial-box__link {
    display: block;
  }
}
@media(min-width: 992px) {
  .testimonial-b2b {
    padding: 60px 0;
    border-radius: 60px;
  }
}
.popup__modal {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  height: 100%;
  z-index: 999;
  display: none;
}
.popup__modal.active-popup {
  display: block;
}
.popup__modal-inner {
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: center;
  height: inherit;
  padding: 80px 15px;
  position: relative;
  overflow-y: scroll;
}
.popup__modal-inner .holder {
  max-width: 600px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #f6f7fb;
  background-clip: padding-box;
  border: 1px solid rgba(0,0,0,.2);
  border-radius: .3rem;
  outline: 0;
  padding: 50px 20px;
  text-align: center;
  border-radius: 30px;
}
.popup__modal-inner .holder .content h6 {
  margin-bottom: 10px;
}
.popup__modal-inner .holder .form-title {
  display: none;
}
.popup__modal-inner .holder .form-holder {
  max-width: 100%;
  margin: 0 auto;
  width: 100%;
}
.popup__modal-inner .holder .icon-close {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 30px;
  line-height: 30px;
  color: #fe3671;
  cursor: pointer;
  z-index: 5;
}

@media (min-width: 576px) {
  .popup__modal-inner .holder {
    padding: 50px 40px;
  }
}
.popup__modal-2 {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  height: 100%;
  z-index: 999;
  display: none;
}
.popup__modal-2.active-popup {
  display: block;
}
.popup__modal-2 .popup__modal-inner {
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: center;
  height: inherit;
  padding: 80px 15px;
  position: relative;
  overflow-y: scroll;
}
.popup__modal-2 .popup__modal-inner .holder {
  max-width: 600px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #f6f7fb;
  background-clip: padding-box;
  border: 1px solid rgba(0,0,0,.2);
  border-radius: .3rem;
  outline: 0;
  padding: 50px 20px;
  text-align: center;
  border-radius: 30px;
}
.popup__modal-2 .popup__modal-inner .holder .content h6 {
  margin-bottom: 10px;
}
.popup__modal-2 .popup__modal-inner .holder .form-title {
  display: none;
}
.popup__modal-2 .popup__modal-inner .holder .form-holder {
  max-width: 100%;
  margin: 0 auto;
  width: 100%;
}
.popup__modal-2 .popup__modal-inner .holder .icon-close {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 30px;
  line-height: 30px;
  color: #4b4c76;
  cursor: pointer;
  z-index: 5;
}

.popup__modal-2 form .hs-form-field label {
  font-size: 16px;
}
.popup__modal-2 form input[type=text],
.popup__modal-2 form input[type=email],
.popup__modal-2 form input[type=password],
.popup__modal-2 form input[type=tel],
.popup__modal-2 form input[type=number],
.popup__modal-2 form input[type=file],
.popup__modal-2 form select,
.popup__modal-2 form textarea {
  border-radius: 8px;
}

@media (min-width: 576px) {
  .popup__modal-2 .popup__modal-inner .holder {
    padding: 50px 40px;
  }
}
.simple-popup {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  height: 100%;
  z-index: 999;
  display: none;
}
.simple-popup.active-popup {
  display: block;
}
.simple-popup__inner {
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: center;
  height: inherit;
  padding: 80px 15px;
  position: relative;
  overflow-y: scroll;
}
.simple-popup__inner .holder {
  max-width: 600px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #f6f7fb;
  background-clip: padding-box;
  border: 1px solid rgba(0,0,0,.2);
  border-radius: .3rem;
  outline: 0;
  padding: 50px 20px;
  text-align: center;
  border-radius: 30px;
}
.simple-popup__inner .holder .button-holder {
  margin-top: 30px;
}
.simple-popup__inner .holder .cta_button {
  display: inline-block;
}
.simple-popup__inner .holder .icon-close {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 30px;
  line-height: 30px;
  color: #fe3671;
  cursor: pointer;
  z-index: 5;
}

@media (min-width: 576px) {
  .simple-popup__inner .holder {
    padding: 50px 40px;
  }
}
.manual-popup {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  height: 100%;
  z-index: 999;
  display: none;
}
.manual-popup.active-popup {
  display: block;
}
.manual-popup__inner {
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: center;
  height: inherit;
  padding: 80px 15px;
  position: relative;
  overflow-y: scroll;
}
.manual-popup__inner .holder {
  max-width: 600px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #f6f7fb;
  background-clip: padding-box;
  border: 1px solid rgba(0,0,0,.2);
  border-radius: .3rem;
  outline: 0;
  padding: 50px 20px;
  text-align: center;
  border-radius: 30px;
}
.manual-popup__inner .holder h2 {
  font-family: 'fibra_onebold';
}
.manual-popup__inner .holder h2 span {
  color: #fe3671;
}
.manual-popup__inner .holder .content {
  font-size: 18px;
  line-height: 26px;
}
.manual-popup__inner .holder .button-holder {
  margin-top: 30px;
}
.manual-popup__inner .holder .cta_button {
  display: inline-block;
}
.manual-popup__inner .holder .icon-close {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 30px;
  line-height: 30px;
  color: #fe3671;
  cursor: pointer;
  z-index: 5;
}
.manual-popup__inner .form-holder .content {
  margin-bottom: 30px;
  font-size: 18px;
  line-height: 26px;
}
.manual-popup__inner .form-holder .form-title {
  display: none;
}

@media (min-width: 576px) {
  .manual-popup__inner .holder {
    padding: 50px 40px;
  }
}
.tabs-module {
  padding: 40px 0;
  text-align: center;
}
.tabs-module h2 {
  font-family: 'fibra_oneultrabold';
  font-size: 32px;
  line-height: 46px;
  text-align: center;
  margin-bottom: 20px;
}
.tabs-module h2 span {
  color: #fe3671;
}
.tabs-module .sub-heading {
  display: inline-block;
  padding: 0 0 40px;
  position: relative;
}
.tabs-module .sub-heading .icon {
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%) rotate(90deg);
  font-size: 40px;
  line-height: 40px;
  animation: blink 1.5s linear infinite;
}
@keyframes blink{
  0%{opacity: 0;}
  50%{opacity: .5;}
  100%{opacity: 1;}
}
.tabs-module .tabs-nav {
  margin-bottom: 30px;
}
.tabs-module .tabs-nav li.active a {
  background-color: #fe3671;
  color: #fff;
}
.tabs-module .tabs-nav li a {
  border: 1px solid #fe3671;
  color: #fe3671;
  background-color: #fff;
  display: inline-block;
  display: block;
  padding: 12px 20px;
  text-decoration: none;
}
.tabs-module .tabs .tab-content a {
  display: inline-block;
}

@media(min-width: 480px) {
  .tabs-module h2 {
    font-size: 36px;
    line-height: 50px;
  }
}
@media(min-width: 576px) {
  .tabs-module h2 {
    font-size: 36px;
    line-height: 50px;
  }
  .tabs-module .tabs-nav {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
  }
  .tabs-module .tabs-nav li:first-child a {
    border-right: 0;
    border-radius: 35px 0 0 35px;
  }
  .tabs-module .tabs-nav li:last-child a {
    border-radius: 0 35px 35px 0;
  }
  .tabs-module .tabs-nav li a {
    display: inline-block;
  }
}
@media(min-width: 768px) {
  .tabs-module {
    padding: 60px 0;
  }
  .tabs-module h2 {
    font-size: 40px;
    line-height: 54px;
  }
  .tabs-module .tab-content .row {
    display: flex;
    flex-flow: row wrap;
    margin: 0 -15px;
  }
  .tabs-module .tab-content .row .column {
    padding: 0 15px;
    width: 50%;
  }
  .tabs-module .tab-content .row .column:only-child {
    width: 100%;
  }
}
.tabs-terms {
  padding-bottom: 40px;
}
.tabs-terms .tabs {
  display: none;
}
.tabs-terms .tabs-nav li.active a {
  background-color: #c4c4c4;
}
.tabs-terms .tabs-nav li a {
  font-family: 'fibra_onesemibold';
  font-size: 1.2rem;
  border: 1px solid grey;
  color: #4c4c74;
  background-color: #fff;
  display: block;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: center;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.tabs-terms .tabs .tabs-content {
  border: solid gray;
  border-width: 0 1px 1px;
  padding: 32px;
}
.tabs-terms .tabs .tab-content a {
  display: inline-block;
}

.tabs-accordion {
  position: relative;
  width: 100%;
  height: auto;
  margin: 0 0 25px;
  background-color: #fff;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 2px 1px -1px, rgba(0, 0, 0, 0.14) 0px 1px 1px 0px, rgba(0, 0, 0, 0.12) 0px 1px 3px 0px;
  border: 1px solid #f3f3f3;
  border-radius: 4px;
  padding: 0 16px;
}
.tabs-accordion > .tabs-accordion__title {
  cursor: pointer;
  font-size: 18px;
  line-height: 24px;
  display: block; 
  padding: 16px 0;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s linear;
  position: relative;
  margin: 0;
  display: flex; 
  flex-flow: row wrap;
}
.tabs-accordion > .tabs-accordion__title .icon-holder {
  margin-right: 10px;
  display: inline-block;
  max-width: 20px;
}
.tabs-accordion > .tabs-accordion__title a {
  color: #4b4c76;
  display: inline-block;
  text-decoration: none;
}
.tabs-accordion > .tabs-accordion__title.active .icon {
  transform: translateY(-50%) rotate(180deg);
}
.tabs-accordion > .tabs-accordion__title .icon {
  position: absolute;
  width: 24px;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  font-size: 32px;
  line-height: 32px;
  transition: all 0.4s ease-in-out;
  display: flex;
  justify-content: center;
  align-items: center;
}
.tabs-accordion > .tabs-accordion__title .icon svg {
  width: 100%;
}
.tabs-accordion > .tabs-accordion__title .icon svg path {
  fill: rgba(0, 0, 0, 0.54);
}
.tabs-accordion .tabs-accordion__content {
  display: none;
  padding: 25px;
  border: 1px solid grey;
  margin-top: 10px;
}

@media(min-width: 768px) {
  .tabs-terms {
    padding-bottom: 60px;
  }
  .tabs-terms .tabs-nav {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
  }
  .tabs-terms .tabs-nav li {
    width: 50%;
  }
  .tabs-terms .tabs {
    display: block;
  }
  .tabs-accordion {
    display: none;
  }
}
.promotion-bar {
  background: rgba(75, 76, 118, 1);
  color: #fff;
  padding: 10px 0;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  z-index: 8;
}
.promotion-bar .container {
  padding: 0 5px;
}
.active-promotion-banner .promotion-bar .container {
   padding-top: 0;
}
.promotion-bar .desktop {
  display: none;
}
.promotion-bar .mobile {
  text-align: center;
}
.promotion-bar .mobile .mobile-holder {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: center;
  margin-top: 8px;
}
.promotion-bar .mobile .promotion-content {
  padding: 0;
}
.promotion-bar .mobile .discunt-price {
  margin-right: 15px;
}
.promotion-bar .discunt-price {
  display: inline-block;
  background: #20e3b2;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  line-height: 16px;
  padding: 5px 10px;
}
.promotion-bar .promotion-content {
  font-family: 'fibra_onesemibold', sans-serif;
  padding: 0 20px;
  font-size: 12px;
  font-weight: 600;
  line-height: 16px;
}
.promotion-bar .promotion-code .promo-code {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  font-size: 12px;
  font-weight: 600;
  line-height: 16px;
}
.promotion-bar .promotion-code .promo-code .code {
  background: #fff;
  color: #4b4c76;
  border: 2px dashed #4b4c76;
  padding: 5px 10px;
  border-radius: 8px;
  margin-left: 10px;
}
.promotion-bar .promotion-code .cta_button {
  min-width: auto;
  padding: 6px 22px;
}

@media(min-width: 480px) {
  .promotion-bar {
    top: 80px;
  }
}
@media(min-width: 768px) {
  .promotion-bar .promotion-content {
    font-size: 14px;
    line-height: 18px;
  }
  .promotion-bar .promotion-code .promo-code {
    font-size: 14px;
    line-height: 18px;
  }
  .promotion-bar .discunt-price {
    font-size: 14px;
    line-height: 18px;
  }
}
@media(min-width: 992px) {
  .promotion-bar {
    top: 84px;
  }
  .promotion-bar .desktop {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: center;
  }
  .promotion-bar .mobile {
    display: none;
  }
}
.faq-module {
  padding: 40px 0;
}
.faq-module h2 {
  text-align: center;
  margin-bottom: 30px;
  font-family: fibra_oneultrabold;
}
.faq-module h2 span {
  color: #fe3671;
}
.accordion {
  position: relative;
  width: 100%;
  height: auto;
  margin: 0 0 20px;
  background-color: #f6f7fb;
  border: 1px solid #f3f3f3;
  border-radius: 20px;
}
.accordion > .accordion__title {
  cursor: pointer;
  font-size: 18px;
  line-height: 26px;
  display: block;
  padding: 22px 50px 22px 20px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s linear;
  position: relative;
  margin: 0;
  display: flex;
  flex-flow: row wrap;
}
.accordion > .accordion__title .icon-holder {
  margin-right: 10px;
  display: inline-block;
  max-width: 20px;
}
.accordion > .accordion__title a {
  color: #4b4c76;
  display: inline-block;
  text-decoration: none;
}
.accordion > .accordion__title.active .icon {
  transform: translateY(-50%) rotate(180deg);
}
.accordion > .accordion__title .icon {
  position: absolute;
  width: 18px;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  font-size: 32px;
  line-height: 32px;
  transition: all 0.4s ease-in-out;
}
.accordion .accordion__content {
  border-radius: 0 0 8px 8px;
  display: none;
  padding: 10px 25px 30px;
}
.accordion .accordion__content p {
  margin-bottom: 16px !important;
}
.accordion .accordion__content ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.accordion .accordion__content ul li {
  position: relative;
  padding: 0 0 10px 25px;
}
.accordion .accordion__content ul li:before {
  content: '';
  position: absolute;
  top: 7px;
  left: 0;
  height: 10px;
  width: 10px;
  background-color: #fe3671;
  border-radius: 100%;
}

@media(min-width: 768px) {
  .faq-module {
    padding: 60px 0; 
  }
  .faq-module h2 {
    font-size: 30px;
    line-height: 38px;
    margin-bottom: 40px;
  }
}
@media(min-width: 992px) {
  .faq-module {
    padding: 60px 0; 
  }
  .accordion > .accordion__title {
    padding: 22px 55px 22px 30px;
  }
  .accordion > .accordion__title .icon {
    right: 25px;
  }
}
@media(min-width: 1200px) {
  .faq-module h2 {
    margin-bottom: 60px; 
  }
  .accordion .accordion__content {
    padding: 10px 40px 30px;
  }
}
.pricing-two-module {
  padding-bottom: 40px;
}
.pricing-two-module .module-holder {
  display: flex;
  flex-flow: row wrap;
  position: relative;
  z-index: 1;
}
.pricing-two-module .module-holder:after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(74,75,117, 0.4);
  z-index: -1;
}
.pricing-two-module .module-holder .desktop-bg {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: -1;
  display: none;
}
.pricing-two-module .module-holder .container {
  padding-top: 40px;
  padding-bottom: 180px;
  width: 100%;
}
.pricing-two-module .module-holder h2 {
  color: #fff;
  font-family: 'fibra_oneultrabold';
  font-size: 30px;
  line-height: 38px;
  margin-bottom: 5px;
}
.pricing-two-module .module-holder .sub-heading {
  font-family: 'fibra_onebold';
  color: #fff;
  font-size: 18px;
  line-height: 26px;
  display: block;
  margin-bottom: 10px;
}
.pricing-two-module .module-holder .text {
  color: #fff;
  font-size: 18px;
  line-height: 26px;
  max-width: 550px;
}
.pricing-two-module .pricing {
  margin-top: -150px;
  position: relative;
  z-index: 2;
}
.pricing-two-module .pricing .column {
  margin-bottom: 20px;
}
.pricing-two-module .pricing .pricing-box {
  -webkit-backdrop-filter: blur(40px);
  backdrop-filter: blur(40px);
  background-image: linear-gradient(135deg, #fff, rgba(255, 255, 255, .8));
  border: 2px solid #fff;
  border-radius: 16px;
  flex-direction: column;
  align-items: flex-start;
  padding: 26px;
  display: flex;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(33, 68, 66, .08);
}
.pricing-two-module .pricing .pricing-box .content {
  flex-direction: column;
  flex: 1;
  align-items: flex-start;
  margin-bottom: 10px;
  display: flex;
}
.pricing-two-module .pricing .pricing-box .content .info {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  margin-bottom: 10px;
}
.pricing-two-module .pricing .pricing-box .content .text h6 {
  margin-bottom: 0;
  font-size: 14px;
}
.pricing-two-module .pricing .pricing-box .content .text p {
  margin-bottom: 0;
  font-size: 14px;
}
.pricing-two-module .pricing .pricing-box .discount {
  font-family: fibra_onebold,sans-serif;
  font-size: 12px;
  line-height: 20px;
  min-height: 30px;
  color: #fff;
  border-radius: 100px;
  padding: 6px 16px;
  display: inline-block;
  margin-right: 10px;
}
.pricing-two-module .pricing .pricing-box .tag-color {
  background-color: #4b4c76;
}
.pricing-two-module .pricing .pricing-box .title {
  color: #fe3671;
  margin-bottom: 0;
  font-size: 14px;
}
.pricing-two-module .pricing .pricing-box .price {
  font-family: fibra_oneultrabold;
  margin-bottom: 0;
  font-size: 40px;
  line-height: 54px;
  display: inline-block;
  font-size: 28px;
  line-height: 42px;
}
.pricing-two-module .pricing .pricing-box .cta_button {
  min-width: inherit;
}
.pricing-two-module .single-price {
  background-color: #fff;
  border: 4px solid #4B4C76;
  border-radius: 16px;
  padding: 20px;
  overflow: hidden;
  text-align: center;
}
.pricing-two-module .single-price .price {
  display: inline-block;
  font-family: fibra_oneultrabold;
  font-size: 40px;
  line-height: 54px;
}
.pricing-two-module .single-price .text {
  margin-top: 10px;
}
.pricing-two-module .single-price .text h6 {
  margin-bottom: 5px;
}
.pricing-two-module .single-price .text p {
  margin-bottom: 0;
}
.pricing-two-module .single-price .button-holder {
  margin-top: 20px;
}
.money_back_guarantee {
  background: #f6f7fb;
  border: 1px solid #f3f3f3;
  border-radius: 5px;
  box-shadow: 0 0 2px 0 rgba(0,0,0,.1);
  margin: 10px 0 20px;
  padding: 30px;
  text-align: center;
}
.money_back_guarantee .icon-holder {
  margin-bottom: 20px;
}
.money_back_guarantee .text h2, .money_back_guarantee .text h3, .money_back_guarantee .text h4, .money_back_guarantee .text h5, .money_back_guarantee .text h6 {
  margin-bottom: 10px;
}
  

@media(min-width: 576px) {
  .pricing-two-module .module-holder .sub-heading {
    font-size: 20px;
    line-height: 28px;
  }
  .money_back_guarantee {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    text-align: left;
  }
  .money_back_guarantee .icon-holder {
    max-width: 80px;
    margin: 0;
  }
  .money_back_guarantee .text {
    padding-left: 30px;
    width: calc(100% - 80px);
  }
  .money_back_guarantee .text:only-child {
    padding-left: 0;
  }
}
@media(min-width: 768px) {
  .pricing-two-module .module-holder h2 {
    font-size: 30px;
    line-height: 38px;
  }
  .pricing-two-module .pricing .row {
    display: flex;
    flex-flow: row wrap;
    margin: 0 -10px;
  }
  .pricing-two-module .pricing .column {
    padding: 0 10px;
    width: 50%;
  }
  .pricing-two-module .pricing .pricing-box {
    height: 100%;
    padding: 32px;
  }
  .pricing-two-module .pricing .pricing-box.extra-padding {
    padding-top: 75px;
  }
  .pricing-two-module .pricing .pricing-box .content .info {
    display: block;
  }
  .pricing-two-module .pricing .pricing-box .title {
    font-size: 16px;
  }
  .pricing-two-module .pricing .pricing-box .discount {
    margin-bottom: 10px;
    margin-right: 0;
  }
  .pricing-two-module .pricing .pricing-box .price {
    font-size: 32px;
    line-height: 46px;
  }
  .money_back_guarantee {
    margin-bottom: 30px;
  }
  .pricing-two-module .pricing .pricing-box .content {
    margin-bottom: 20px;
  }
}
@media(min-width: 992px) {
  .pricing-two-module .pricing .column {
    width: 33.333%;
  }
  .pricing-two-module .module-holder .container {
    padding-top: 100px;
    padding-bottom: 200px;
  }
  .pricing-two-module .single-price {
    justify-content: space-between;
    align-self: stretch;
    align-items: center;
    padding: 40px;
    display: flex;
    text-align: left;
  }
  .pricing-two-module .single-price .content {
    display: flex;
    flex-flow: row wrap;
  }
  .pricing-two-module .single-price .button-holder, .pricing-two-module .single-price .text {
    padding-left: 30px;
    margin: 0;
  }
}
@media(min-width: 1200px) {
  .pricing-two-module .pricing .column {
    width: 25%;
  }
  .pricing-two-module .pricing .pricing-box.extra-padding {
    padding-top: 85px;
  }
  .pricing-two-module .pricing .pricing-box .discount {
    margin-bottom: 20px;
  }
  .pricing-two-module .pricing .pricing-box .title {
    margin-bottom: 0;
    padding: 0;
    font-size: 18px;
  }
  .pricing-two-module .pricing .pricing-box .price {
    font-size: 40px;
    line-height: 54px;
  }
  .pricing-two-module .pricing .pricing-box .title {
    font-size: 18px;
  }
  .pricing-two-module .pricing .pricing-box .content .text h6 {
    font-size: 16px;
  }
  .pricing-two-module .pricing .pricing-box .content .text p {
    font-size: 16px;
  }
  .pricing-two-module .module-holder .desktop-bg {
    display: block;
  }
  .pricing-two-module {
    background-image: none !important;
    padding-bottom: 0;
  }
}
.partners {
  text-align: center;
  padding: 60px 0;
}
.partners h2 {
  font-family: 'fibra_oneultrabold';
  font-size: 32px;
  line-height: 46px;
  text-align: center;
  margin-bottom: 30px;
}
.partners h2 span {
  color: #fe3671;
}
.partners .partners-slider {
  padding: 0 80px;
}
.partners .partners-slider .slick-list {
  margin: 0 -25px;
}
.partners .partners-slider .slick-slide {
  padding: 0 25px;
}
.partners .partners-slider .slick-arrow {
  background: #fe3671;
  border-radius: 100%;
  padding: 10px;
  color: #fff;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 15px;
  cursor: pointer;
}
.partners .partners-slider .slick-arrow.arrow-next {
  left: auto;
  right: 10px;
}
.partners .partners-slider .image {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 90px;
}


@media(min-width: 480px) {
  .partners h2 {
    font-size: 36px;
    line-height: 50px;
  }
}
@media(min-width: 768px) {
  .partners h2 {
    font-size: 40px;
    line-height: 54px;
  }
  .partners .partners-slider .slick-list {
    margin: 0 -30px;
  }
  .partners .partners-slider .slick-slide {
    padding: 0 30px;
  }
}
@media(min-width: 992px) {
  .partners .partners-slider .slick-list {
    margin: 0 -40px;
  }
  .partners .partners-slider .slick-slide {
    padding: 0 40px;
  }
}
@media(min-width: 1200px) {
  .partners .partners-slider .slick-list {
    margin: 0 -50px;
  }
  .partners .partners-slider .slick-slide {
    padding: 0 50px;
  }
}
.partners-2 {
  text-align: center;
  padding: 60px 0;
}
.partners-2 h2 {
  font-family: 'fibra_oneultrabold';
  font-size: 32px;
  line-height: 46px;
  text-align: center;
  margin-bottom: 30px;
}
.partners-2 h2 span {
  color: #fe3671;
}
.partners-2 .partners-slider {
  padding: 0 80px;
}
.partners-2 .partners-slider .slick-list {
  margin: 0 -25px;
}
.partners-2 .partners-slider .slick-slide {
  padding: 0 25px;
}
.partners-2 .partners-slider .slick-arrow {
  background: #fe3671;
  border-radius: 100%;
  padding: 10px;
  color: #fff;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 10px;
  cursor: pointer;
}
.partners-2 .partners-slider .slick-arrow.arrow-next {
  left: auto;
  right: 10px;
}
.partners-2 .partners-slider .image {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 90px;
}
.partners-2 .button-holder {
  margin-top: 25px;
}

@media(min-width: 480px) {
  .partners-2 h2 {
    font-size: 36px;
    line-height: 50px;
  }
}
@media(min-width: 768px) {
  .partners-2 h2 {
    font-size: 40px;
    line-height: 54px;
    margin-bottom: 40px;
  }
  .partners-2 .partners-slider .slick-list {
    margin: 0 -30px;
  }
  .partners-2 .partners-slider .slick-slide {
    padding: 0 30px;
  }
  .partners-2 .button-holder {
    margin-top: 35px;
  }
}
@media(min-width: 992px) {
  .partners-2 h2 {
    margin-bottom: 50px;
  }
  .partners-2 .partners-slider .slick-list {
    margin: 0 -40px;
  }
  .partners-2 .partners-slider .slick-slide {
    padding: 0 40px;
  }
  .partners-2 .button-holder {
    margin-top: 50px;
  }
}
@media(min-width: 1200px) {
  .partners-2 .partners-slider .slick-list {
    margin: 0 -50px;
  }
  .partners-2 .partners-slider .slick-slide {
    padding: 0 50px;
  }
}
.downlaod-app {
  padding-top: 60px;
}
.downlaod-app .column {
  width: 100%;
}
.downlaod-app .column:not(:last-child) {
  margin-bottom: 30px;
}
.downlaod-app h2 {
  font-family: fibra_oneultrabold;
  font-size: 32px;
  line-height: 46px;
  max-width: 550px;
  margin-bottom: 30px;
}
.downlaod-app h2 span {
  color: #fe3671;
}
.downlaod-app h3 {
  font-family: 'fibra_oneregular';
  color: #fe3671;
}
.downlaod-app .apps-list {
  align-items: center;
  display: flex;
  flex-flow: row wrap;
  margin: 0 -5px;
}
.downlaod-app .apps-list li {
  line-height: 1;
  padding: 0 5px;
}
.downlaod-app .apps-list li a {
  display: inline-block;
}
.downlaod-app .image-holder {
  text-align: center;
  line-height: 0;
}

@media (min-width: 480px) {
  .downlaod-app h2 {
    font-size: 36px;
    line-height: 50px;
  }
}
@media (min-width: 768px) {
  .downlaod-app h2 {
    font-size: 40px;
    line-height: 54px;
  }
}
@media(min-width: 992px) {
  .downlaod-app .row {
    display: flex;
    flex-flow: row wrap;
    flex-direction: row-reverse;
    align-items: center;
    margin: 0 -15px;
  }
  .downlaod-app .column {
    padding: 0 15px;
    width: 50%;
  }
  .downlaod-app .column:not(:last-child) {
    margin-bottom: 0;
  }
  .downlaod-app .apps-list {
    margin-bottom: 40px;
  }
}
.user-testimonial {
  padding: 60px 0;
}
.user-testimonial h2 {
  font-family: 'fibra_oneultrabold';
  font-size: 32px;
  line-height: 46px;
  text-align: center;
  margin-bottom: 30px;
}
.user-testimonial h2 span {
  color: #fe3671;
}
.user-testimonial .user-slider {
  text-align: center;
}
.user-testimonial .user-slider .slick-list {
  height: auto !important;
}
.user-testimonial .user-slider .user-box {
  background-color: #fff;
  padding: 15px;
  cursor: pointer;
}
.user-testimonial .tabs-nav li a {
  color: #4b4c76;
  text-decoration: none;
}
.user-testimonial .user-slider .image-holder {
  border-radius: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  width: 80px;
  height: 80px;
  display: inline-block;
}
.user-testimonial .user-slider .info {
  margin-top: 15px;
}
.user-testimonial .user-slider .name {
  font-family: 'fibra_onesemibold', sans-serif;
  font-size: 22px;
  line-height: 30px;
  display: block;
}
.user-testimonial .user-slider .short-info {
  font-size: 14px;
  line-height: 18px;
  display: block;
}
.user-testimonial .quote-slider {
  text-align: center;
}
.user-testimonial .quote-slider .rating-image {
  display: inline-block;
}
.user-testimonial .quote-slider blockquote {
  display: block;
  border: none;
  padding: 0;
  margin: 20px 0 0;
}

@media(min-width: 480px) {
  .user-testimonial h2 {
    font-size: 36px;
    line-height: 50px;
  }
}
@media(min-width: 768px) {
  .user-testimonial h2 {
    font-size: 40px;
    line-height: 54px;
    margin-bottom: 40px;
  }
  .user-testimonial .user-slider li {
    padding: 20px;
    width: 25%;
  }
  .user-testimonial .quote-slider blockquote {
    font-size: 18px;
    line-height: 26px;
  }
}
@media(min-width: 992px) {
  .user-testimonial h2 {
    margin-bottom: 50px;
  }
  .user-testimonial .sliders-holder .row {
    display: flex;
    flex-flow: row wrap;
    flex-direction: row-reverse;
    margin: 0 -15px;
  }
  .user-testimonial .sliders-holder .column {
    padding: 0 15px;
    margin: 0;
  }
  .user-testimonial .sliders-holder .column:nth-child(1) {
    width: 56%;
  }
  .user-testimonial .sliders-holder .column:nth-child(2) {
    width: 44%;
  }
  .user-testimonial .user-slider {
    max-width: 450px;
    display: block;
    text-align: left;
  }
  .user-testimonial .user-slider .slick-slide.slick-current .user-box {
    background-color: #f6f7fb;
  }
  .user-testimonial .user-slider .user-box {
    padding: 20px;
    display: flex;
    flex-flow: row wrap;
  }
  .user-testimonial .user-slider .info {
    width: calc(100% - 80px);
    padding-left: 25px;
    margin: 0;
  }
  .user-testimonial .user-slider .name {
    font-size: 24px;
    line-height: 32px;
  }
  .user-testimonial .quote-slider {
    text-align: left;
  }
}
@media(min-width: 1200px) {
  .user-testimonial .user-slider .user-box {
    padding: 25px;
  }
}
.content-with-image {
  padding-top: 60px;
}
.content-with-image h2 {
  font-family: fibra_oneultrabold;
  font-size: 32px;
  line-height: 46px;
}
.content-with-image h2 span {
  color: #fe3671;
}
.content-with-image .column:not(:last-child) {
  margin-bottom: 30px;
}
.content-with-image .text {
  margin-bottom: 30px;
}
.content-with-image .image-holder {
  line-height: 0;
}
.content-with-image .button-holder {
  text-align: center;
}

@media (min-width: 480px) {
  .content-with-image h2 {
    font-size: 36px;
    line-height: 50px;
  }
}
@media (min-width: 768px) {
  .content-with-image h2 {
    font-size: 38px;
    line-height: 52px;
  }
}
@media (min-width: 992px) {
  .content-with-image {
    padding-top: 0;
  }
  .content-with-image .content {
    padding: 60px 0;
  }
  .content-with-image .row {
    display: flex;
    flex-flow: row wrap;
    align-items: flex-end;
    margin: 0 -15px;
  }
  .content-with-image .row.row-reverse {
    flex-direction: row-reverse;
  }
  .content-with-image .column {
    padding: 0 15px;
    width: 50%;
    margin: 0;
  }
  .content-with-image .text {
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 40px;
  }
  .content-with-image .button-holder {
    text-align: left;
  }
}
.tutor-faq {
  padding: 60px 0;
}
.tutor-faq h2 {
  font-family: 'fibra_oneultrabold';
  font-size: 32px;
  line-height: 46px;
  margin-bottom: 20px;
}
.tutor-faq h2 span {
  color: #fe3671;
}
.tutor-faq .faq {
  margin-bottom: 30px;
}
.tutor-faq .faq .question {
  margin-bottom: 15px;
}
.tutor-faq .button-holder {
  text-align: center;
}
.tutor-faq .button-holder #showLess_FQA {
  display: none;
}

@media(min-width: 480px) {
  .tutor-faq h2 {
    font-size: 36px;
    line-height: 50px;
  }
}
@media(min-width: 768px) {
  .tutor-faq h2 {
    font-size: 40px;
    line-height: 54px;
  }
  .tutor-faq .faq {
    font-size: 18px;
    line-height: 26px;
  }
}
@media(min-width: 992px) {
  .tutor-faq h2 {
    font-size: 40px;
    line-height: 54px;
  }
}
.tutor-subjects {
  padding: 60px 0 30px;
}
.tutor-subjects h2 {
  font-family: 'fibra_oneultrabold';
  font-size: 32px;
  line-height: 46px;
  margin-bottom: 30px;
}
.tutor-subjects h2 span {
  color: #fe3671;
}
.tutor-subjects .column {
  margin-bottom: 30px;
}
.tutor-subjects .subjects .subjects_info {
  background-color: #f6f7fb;
  padding: 20px 30px;
}
.tutor-subjects .subjects .subjects_info h4 {
  margin-bottom: 10px;
}
.tutor-subjects .subjects .subjects_image {
  width: 100%;
  min-height: 160px;
  background-color: #4b4c76;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}
.tutor-subjects .button-holder {
  text-align: center;
}
.tutor-subjects .button-holder #showLess_Subjects {
  display: none;
}

@media(min-width: 480px) {
  .tutor-subjects h2 {
    font-size: 36px;
    line-height: 50px;
  }
}
@media(min-width: 768px) {
  .tutor-subjects h2 {
    font-size: 40px;
    line-height: 54px;
    margin-bottom: 40px;
  }
  .tutor-subjects .faq {
    font-size: 18px;
    line-height: 26px;
  }
  .tutor-subjects .subjects {
    display: flex;
    flex-flow: row wrap;
    flex-direction: row-reverse;
  }
  .tutor-subjects .subjects .subjects_image {
    min-height: 200px;
    width: 200px;
  }
  .tutor-subjects .subjects .subjects_info {
    font-size: 18px;
    line-height: 26px;
    width: calc(100% - 200px);
  }
}
@media(min-width: 992px) {
  .tutor-subjects {
    padding: 80px 0 40px;
  }
  .tutor-subjects h2 {
    font-size: 40px;
    line-height: 54px;
    margin-bottom: 50px;
  }
  .tutor-subjects .row {
    display: flex;
    flex-flow: row wrap;
    margin: 0 -15px;
  }
  .tutor-subjects .column {
    padding: 0 15px;
    width: 50%;
  }
  .tutor-subjects .subjects .subjects_image {
    min-height: 180px;
    width: 180px;
  }
  .tutor-subjects .subjects .subjects_info {
    width: calc(100% - 180px);
  }
}
@media(min-width: 1200px) {
  .tutor-subjects .subjects .subjects_image {
    min-height: 220px;
    width: 220px;
  }
  .tutor-subjects .subjects .subjects_info {
    width: calc(100% - 220px);
  }
}
.partner-benefits {
  padding: 60px 0;
}
.partner-benefits h2 {
  font-family: 'fibra_oneultrabold';
  font-size: 32px;
  line-height: 46px;
  text-align: center;
  margin-bottom: 20px;
}
.partner-benefits h2 span {
  color: #fe3671;
}
.partner-benefits .text {
  text-align: center;
}
.partner-benefits .benefits-holder {
  padding: 0 4%;
  margin-top: 50px;
}
.partner-benefits .benefits-holder .column {
  margin-bottom: 30px;
}
.partner-benefits .benefits-holder .benefits-box {
  background-color: #f6f7fb;
  padding: 30px;
  border-radius: 50px;
  height: 100%;
}
.partner-benefits .benefits-holder h4 {
  text-transform: uppercase;
}
.partner-benefits .benefits-holder .text {
  text-align: left;
  padding-top: 10px;
  position: relative;
}
.partner-benefits .benefits-holder .text:before {
  background-color: #fe3671;
  top: 0;
  content: "";
  height: 3px;
  left: 0;
  position: absolute;
  width: 50px;
}
.partner-benefits .benefits-holder .image-holder {
  text-align: center;
  margin-top: 15px;
}

@media(min-width: 480px) {
  .partner-benefits h2 {
    font-size: 36px;
    line-height: 50px;
  }
}
@media(min-width: 576px) {
  .partner-benefits .benefits-holder .content-holder {
    align-items: center;
    display: flex;
    flex-flow: row wrap;
  }
  .partner-benefits .benefits-holder .text {
    padding-right: 20px;
    width: 70%;
  }
  .partner-benefits .benefits-holder .image-holder {
    text-align: center;
    margin: 0;
    width: 30%;
  }
}
@media(min-width: 768px) {
  .partner-benefits h2 {
    font-size: 40px;
    line-height: 54px;
    margin-bottom: 30px;
  }
  .partner-benefits .text {
    font-size: 18px;
    line-height: 26px;
  }
}
@media(min-width: 992px) {
  .partner-benefits {
    padding: 80px 0;
  }
  .partner-benefits .benefits-holder .row {
    display: flex;
    flex-flow: row wrap;
    margin: 0 -15px;
  }
  .partner-benefits .benefits-holder .column {
    padding: 0 15px;
    width: 50%;
  }
  .partner-benefits .benefits-holder {
    margin-top: 80px;
  }
}
@media(min-width: 1440px) {
  .partner-benefits .benefits-holder .column {
    width: 33.333%;
  }
}
.partner-testimonail {
  background-color: #f6f7fb;
  padding: 40px 0;
}
.partner-testimonail h2 {
  font-family: 'fibra_oneultrabold';
  font-size: 32px;
  line-height: 46px;
  text-align: center;
  margin-bottom: 30px;
}
.partner-testimonail h2 span {
  color: #fe3671;
}
.partner-testimonial-slider {
  text-align: center;
}
.partner-testimonial-slider .slick-list {
  margin: 0 -15px;
}
.partner-testimonial-slider .slick-slide {
  padding: 0 15px;
}
.partner-testimonial-slider .content {
  margin-top: 30px;
}
.partner-testimonial-slider .content blockqoute {
  line-height: 30px;
  margin-bottom: 30px;
  display: block;
}
.partner-testimonial-slider .content .name, .partner-testimonial-slider .content .designation {
  display: block;
}
.partner-testimonial-slider .content .name {
  font-family: 'fibra_onesemibold', sans-serif;
  margin-bottom: 5px;
}
.partner-testimonial-slider .image-holder {
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  border-radius: 100%;
  width: 100px;
  height: 100px;
  margin: 0 auto;
}
.partner-testimonial-slider .slick-dots {
  list-style: none;
  padding: 30px 0 0;
  margin: 0 -5px;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
}
.partner-testimonial-slider .slick-dots li {
  padding: 0 5px;
  line-height: 1;
}
.partner-testimonial-slider .slick-dots button {
  background-color: #4b4c76;
  border-radius: 100%;
  height: 15px;
  width: 15px;
  outline: none;
  border: none;
  box-shadow: none;
  padding: 0;
  font-size: 0;
  line-height; 0;
}
.partner-testimonial-slider .slick-dots li.slick-active button {
  background-color: #fe3671;
}

@media(min-width: 480px) {
  .partner-testimonail h2 {
    font-size: 36px;
    line-height: 50px;
  }
}
@media(min-width: 768px) {
  .partner-testimonail h2 {
    font-size: 40px;
    line-height: 54px;
    margin-bottom: 40px;
  }
  .partner-testimonial-slider .image-holder {
    width: 150px;
    height: 150px;
  }
  .partner-testimonial-slider .content {
    font-size: 18px;
    line-height: 26px;
  }
}
@media(min-width: 992px) {
  .partner-testimonail h2 {
    text-align: left;
  }
  .partner-testimonial-slider {
    text-align: left;
  }
  .partner-testimonial-slider .slides {
    display: flex;
    flex-flow: row wrap;
  }
  .partner-testimonial-slider .content {
    width: calc(100% - 300px);
    padding-left: 40px;
    margin: 0;
  }
  .partner-testimonial-slider .image-holder {
    height: 300px;
    width: 300px;
  }
}
@media(min-width: 1200px) {
  .partner-testimonial-slider {
    padding: 0 20px;
  }
  .partner-testimonial-slider .content {
    width: calc(100% - 350px);
    padding-left: 70px;
  }
  .partner-testimonial-slider .image-holder {
    height: 350px;
    width: 350px;
  }
}
.discover-learning {
  background-color: #f6f7fb;
  padding: 60px 0;
}
.discover-learning h2 {
  font-family: 'fibra_oneultrabold';
  font-size: 32px;
  line-height: 46px;
  text-align: center;
  margin-bottom: 20px;
}
.discover-learning h2 span {
  color: #fe3671;
}
.discover-learning .text {
  text-align: center;
}
.discover-learning .learning-holder {
  padding: 0 4%;
  margin-top: 50px;
}
.discover-learning .learning-holder .column {
  margin-bottom: 30px;
}
.discover-learning .learning-holder .learning-box {
  background-color: #fff;
  padding: 30px;
  border-radius: 50px;
  height: 100%;
}
.discover-learning .learning-box .text {
  text-align: left;
  padding-top: 10px;
  position: relative;
}
.discover-learning .learning-box .text:before {
  background-color: #fe3671;
  top: 0;
  content: "";
  height: 3px;
  left: 0;
  position: absolute;
  width: 50px;
}
.discover-learning .learning-box .image-holder {
  text-align: center;
  margin-top: 15px;
}

@media(min-width: 480px) {
  .discover-learning h2 {
    font-size: 36px;
    line-height: 50px;
  }
}
@media(min-width: 576px) {
  .discover-learning .learning-box {
    align-items: center;
    display: flex;
    flex-flow: row wrap;
  }
  .discover-learning .learning-box .content-holder {
    padding-right: 20px;
    width: 70%;
  }
  .discover-learning .learning-box .image-holder {
    text-align: center;
    margin: 0;
    width: 30%;
  }
}
@media(min-width: 768px) {
  .discover-learning h2 {
    font-size: 40px;
    line-height: 54px;
    margin-bottom: 30px;
  }
  .discover-learning .text {
    font-size: 18px;
    line-height: 26px;
  }
}
@media(min-width: 992px) {
  .discover-learning {
    padding: 80px 0;
  }
  .discover-learning .learning-holder .row {
    display: flex;
    flex-flow: row wrap;
    margin: 0 -15px;
  }
  .discover-learning .learning-holder .column {
    padding: 0 15px;
    width: 50%;
  }
  .discover-learning .learning-holder {
    margin-top: 80px;
  }
}
@media(min-width: 1440px) {
  .discover-learning .learning-holder .row {
    margin: 0 -30px;
  }
  .discover-learning .learning-holder .column {
    padding: 0 30px;
    margin-bottom: 60px;
  }
}
.testimonial-de {
  background-color: #f6f7fb;
  padding: 40px 0;
}
.testimonial-de .container {
  max-width: 1600px;
}
.testimonial-de h2 {
  font-family: 'fibra_oneultrabold';
  font-size: 32px;
  line-height: 46px;
  text-align: center;
  margin-bottom: 20px;
}
.testimonial-de h2 span {
  color: #fe3671;
}
.testimonial-de .text {
  font-size: 18px;
  line-height: 26px;
  text-align: center;
  margin: 0 auto 30px;
  max-width: 700px;
}
.testimonial-de .testimonial {
  background-color: #fff;
  border: 1px solid #f3f3f3;
  border-radius: 25px;
  padding: 30px;
  height: 100%;
}
.testimonial-de .testimonial .rating-image {
  display: inline-block;
  margin-top: 10px;
}
.testimonial-de .testimonial .name {
  color: #4b4c76;
  font-family: 'fibra_oneultrabold', sans-serif;
  display: block;
  font-size: 20px;
  line-height: 28px; 
}
.testimonial-de .testimonial .designation {
  color: #4b4c76; 
  display: block;
}
.testimonial-de .testimonial .logo {
  max-width: 110px;
  margin-top: 10px;
}
.testimonial-de .testimonial .quote {
  margin-top: 15px;
}
.testimonial-de .button-holder {
  margin-top: 40px;
  text-align: center;
}
.testimonial-de .testimonial-de__slider {
  padding: 0 20px;
}
.testimonial-de .testimonial-de__slider .slick-list {
  margin: 0 -15px
}
.testimonial-de .testimonial-de__slider .slides {
  padding: 0 15px;
  height: inherit !important;
}
.testimonial-de .testimonial-de__slider .slick-arrow {
  background: #fe3671;
  border-radius: 100%;
  padding: 10px;
  color: #fff;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  cursor: pointer;
  z-index: 5;
}
.testimonial-de .testimonial-de__slider .slick-arrow.arrow-next {
  right: 0;
  left: auto;
}


@media(min-width: 480px) {
  .testimonial-de h2 {
    font-size: 36px;
    line-height: 50px;
  }
}
@media(min-width: 576px) {
  .testimonial-de .testimonial-de__slider {
    padding: 0 50px;
  }
}
@media(min-width: 768px) {
  .testimonial-de h2 {
    font-size: 40px;
    line-height: 54px;
  }
  .testimonial-de .text {
    font-size: 20px;
    line-height: 28px;
  }
  .testimonial-de .text {
    margin-bottom: 50px;
  }
}
@media(min-width: 992px) {
  .testimonial-de .testimonial-de__slider .slick-track {
    display: flex !important;
  }
  .testimonial-de .testimonial-de__slider .slides {
    height: inherit !important;
  }
}
@media(min-width: 1200px) {
  .testimonial-de {
    padding: 60px 0;
  }
  .testimonial-de .text {
    margin-bottom: 60px;
  }
}
.teachers-de {
  padding: 40px 0;
}
.teachers-de .container {
  max-width: 1000px;
}
.teachers-de h2 {
  font-family: 'fibra_oneultrabold';
  font-size: 32px;
  line-height: 46px;
  text-align: center;
  margin-bottom: 30px;
}
.teachers-de h2 span {
  color: #fe3671;
}
.teachers-de .column {
  margin-bottom: 30px;
}
.teachers-de .teachers-de__slider .image-holder {
  height: 200px;
  width: 200px;
  border-radius: 20px;
  margin: 0 auto 10px;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  overflow: hidden;
}
.teachers-de .teachers-de__slider .image-holder.border {
  border: 2px dashed #20E3B2;
}
.teachers-de .teachers-de__slider .name {
  font-family: 'fibra_oneultrabold', sans-serif;
  display: block; 
  text-align: center;
}
.teachers-de .teachers-de__slider .subjects {
  display: block;
  text-align: center;
}
.teachers-de .teachers-de__slider .slick-list {
  margin: 0 -15px
}
.teachers-de .teachers-de__slider .slides {
  padding: 0 15px;
}
.teachers-de .teachers-de__slider .slick-arrow {
  background: #20E3B2;
  border-radius: 100%;
  padding: 10px;
  color: #4b4c76;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  cursor: pointer;
  z-index: 5;
  margin-top: -30px;
}
.teachers-de .teachers-de__slider .slick-arrow.arrow-next {
  right: 0;
  left: auto;
}


@media(min-width: 480px) {
  .teachers-de h2 {
    font-size: 36px;
    line-height: 50px;
  }
}
@media(min-width: 768px) {
  .teachers-de h2 {
    font-size: 40px;
    line-height: 54px;
    margin-bottom: 40px;
  }
  .teachers-de .teachers-de__slider {
    padding: 0 40px;
  }
}
@media(min-width: 992px) {
  .teachers-de h2 {
    margin-bottom: 50px;
  }
  .teachers-de .row {
    display: flex;
    flex-flow: row wrap;
    margin: 0 -15px;
  }
  .teachers-de .column {
    margin-bottom: 0;
    padding: 0 15px;
    width: 50%;
  }
  .teachers-de .teachers-de__slider .slick-arrow {
    left: 70px;
  }
  .teachers-de .teachers-de__slider .slick-arrow.arrow-next {
    right: 70px;
  }
}
@media(min-width: 1200px) {
  .teachers-de {
    padding: 60px 0;
  }
}
.footer {
  position: relative;
  margin-top: 130px;
}
.footer:before {
  content: '';
  position: absolute;
  top: -130px;
  left: 0;
  right: 0;
  background-image: url(//26304527.fs1.hubspotusercontent-eu1.net/hubfs/26304527/raw_assets/public/avidii/images/footer-curve-green.svg);
  background-repeat: no-repeat;
  background-size: cover;
  height: 130px;
}
.footer-holder {
  background-color: #4b4c76;
  color: #fff;
  padding: 30px 0;
}
.footer .row {
  display: flex;
  flex-flow: row wrap;
}
.footer .column {
  width: 100%;
}
.footer .logo {
  max-width: 130px;
  margin: 0 0 15px;
}
.footer .text {
  max-width: 100%;
  margin-bottom: 25px;
}
.footer .popup-button {
  margin-bottom: 30px;
}
.footer .copyright {
  text-align: center;
  margin-top: 25px;
}
.footer .footer-links {
  padding: 0;
  margin: 0 -10px 20px;
  list-style: none;
  display: flex;
  flex-flow: row wrap;
}
.footer .footer-links li {
  padding: 0 10px;
  position: relative;
}
.footer .footer-links li:after {
  content: '';
  position: absolute;
  top: 4px;
  right: -1px;
  height: 15px;
  width: 2px;
  background: #fff;
}
.footer .footer-links li:last-child:after {
  display: none;
}
.footer .footer-links li a {
  color: #fff;
  text-decoration: none;
}
.footer .social-networks {
  padding: 0;
  margin: 0 -10px 20px;
  list-style: none;
  display: flex;
  flex-flow: row wrap;
}
.footer .social-networks li {
  padding: 0 10px;
}
.footer .social-networks li a {
  color: #fff;
  text-decoration: none;
  font-size: 24px;
  line-height: 24px;
}
.footer .address, .footer .email, .footer .number {
  margin-bottom: 15px;
}
.footer .address .icon, .footer .email .icon, .footer .number .icon {
  display: inline-block;
  font-size: 18px;
  line-height: 18px;
  margin-right: 5px;
  position: relative;
  top: 2px;
}
.footer .address a, .footer .email a, .footer .number a {
  color: #fff;
  text-decoration: none;
}

@media (min-width: 992px) {
  .footer-holder {
    padding: 50px 0;
  }
  .footer .row {
    margin: 0 -15px;
  }
  .footer .column {
    padding: 0 15px;
    width: 50%;
  }
  .footer .text {
    max-width: 320px;
  }
  .footer .popup-button {
    margin: 0;
  }
  .footer .footer-links {
    justify-content: flex-end;
  }
  .footer .social-networks {
    justify-content: flex-end;
  }
  .footer .address, .footer .email, .footer .number {
    text-align: right;
  }
}
.footer-2 {
  position: relative;
}
.footer-2 .container {
  padding: 0 30px;
}
.footer-2-holder {
  background-color: #f6f7fb;
  padding: 40px 0;
}
.footer-2 .row {
  display: flex;
  flex-flow: row wrap;
}
.footer-2 .column {
  margin-bottom: 30px;
  width: 100%;
}
.footer-2 .column:first-child {
  display: flex;
  flex-flow: column wrap;
  justify-content: center;
}
.footer-2 .logo {
  max-width: 130px;
}
.footer-2 .site-links li:not(:last-child) {
  padding: 0 0 12px;
}
.footer-2 .site-links li a {
  color: #4b4c76;
  text-decoration: none;
}
.footer-2 .site-links li a:hover {
  text-decoration: underline;
}
.footer-2 .footer-links li:not(:last-child) {
  padding: 0 0 12px;
}
.footer-2 .footer-links li a {
  color: #4b4c76;
  text-decoration: none;
}
.footer-2 .footer-links li a:hover {
  text-decoration: underline;
}
.footer-2 .address, .footer-2 .email {
  margin-bottom: 20px;
}
.footer-2 .address a, .footer-2 .email a, .footer-2 .number a {
  color: #4b4c76;
  text-decoration: none;
}
.footer-2 .address a:hover, .footer-2 .email a:hover, .footer-2 .number a:hover {
  text-decoration: underline;
}
.footer-2 .text {
  line-height: 28px;
  max-width: 100%;
  padding-top: 20px;
}
.footer-2 .text p {
  margin-bottom: 1.4rem;
}
.footer-2 .copyright {
  text-align: center;
  padding-top: 20px;
}

@media (min-width: 768px) {
  .footer-2 .container {
    padding: 0 40px;
  }
  .footer-2 .site-links li {
    font-size: 18px;
    line-height: 26px;
  }
  .footer-2 .footer-links li {
    font-size: 18px;
    line-height: 26px;
  }
  .footer-2 .address, .footer-2 .email, .footer-2 .number {
    font-size: 18px;
    line-height: 26px;
  }
  .footer-2 .text {
    padding-top: 40px;
  }
}

@media (min-width: 992px) {
  .footer-2-holder {
    padding: 50px 0;
  }
  .footer-2 .row {
    margin: 0 -15px;
  }
  .footer-2 .column {
    padding: 0 15px;
    width: 33.333%;
  }
  .footer-2 .column:first-child {
    width: 100%;
  }
  .footer-2 .text {
    max-width: 100%;
    padding-top: 60px;
  }
  .footer-2 .copyright {
    padding-top: 30px;
  }
}
@media (min-width: 1200px) {
  .footer-2 .column {
    width: 25%;
  }
  .footer-2 .column:first-child {
    width: 25%;
  }
}
.footer-lp {
  position: relative;
}
.footer-lp-holder {
  color: #78789B;
  padding: 30px 0;
}
.footer-lp .row {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
}
.footer-lp .column {
  width: 100%;
}
.footer-lp .logo {
  max-width: 130px;
  margin: 0 auto 15px;
  position: relative;
}
.footer-lp .logo .logo-arrow {
  position: absolute;
  top: -32px;
  left: -70px;
  font-family: fibra_onebold;
  font-size: 14px;
  line-height: 22px;
  color: #4b4c76;
  font-style: italic;
}
.footer-lp .logo .logo-arrow .icon {
  font-size: 40px;
  line-height: 40px;
  transform: rotate(80deg);
  position: absolute;
  top: 10px;
  left: 50px;
}
.footer-lp .copyright {
  text-align: center;
  margin-top: 25px;
}
.footer-lp h4 {
  font-size: 24px;
  line-height: 32px;
  text-align: center;
}
.footer-lp .social-networks {
  padding: 0;
  margin: 0 -10px;
  list-style: none;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
}
.footer-lp .social-networks li {
  padding: 0 10px;
}
.footer-lp .social-networks li a {
  color: #4B4C76;
  text-decoration: none;
  font-size: 24px;
  line-height: 24px;
}
.footer-lp .footer-links {
  padding: 0;
  margin: 10px -10px 0;
  list-style: none;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
}
.footer-lp .footer-links li {
  padding: 0 10px;
  position: relative;
}
.footer-lp .footer-links li:after {
  content: '';
  position: absolute;
  top: 4px;
  right: -1px;
  height: 15px;
  width: 2px;
  background: #78789b;
}
.footer-lp .footer-links li:last-child:after {
  display: none;
}
.footer-lp .footer-links li a {
  color: #78789b;
  text-decoration: none;
}

.footer-lp .store-list {
  padding: 0;
  margin: 0 -10px 20px;
  list-style: none;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
}
.footer-lp .store-list li {
  padding: 0 10px;
}
.footer-lp .store-list li a {
  display: block;
}
.footer-lp .store-list li a img {
  width: 135px;
}

@media (min-width: 992px) {
  .footer-lp-holder {
    padding: 60px 0;
  }
  .footer-lp .row {
    margin: 0 -15px;
  }
  .footer-lp .column {
    padding: 0 15px;
  }
  .footer-lp .column:nth-child(1) {
    width: 20%;
  }
  .footer-lp .column:nth-child(2) {
    width: 50%;
  }
  .footer-lp .column:nth-child(3) {
    width: 30%;
  }
  .footer-lp .logo {
    margin: 0 0 15px;
  }
  .footer-lp h4 {
    text-align: left;
  }
  .footer-lp .logo .logo-arrow {
    position: absolute;
    top: -40px;
    left: 0;
    right: 0;
  }
  .footer-lp .store-list {
    margin: 0 -10px;
  }
}
@media(min-width: 1400px) {
  .footer-lp .logo .logo-arrow {
    position: absolute;
    top: -30px;
    left: -40px;;
    right: auto;
  }
}

.hero-banner-2 {
  padding: 30px 0 0;
}
.hero-banner-2 .column:not(:last-child) {
  margin-bottom: 30px;
}
.hero-banner-2 h1 {
  font-family: 'fibra_oneheavy';
  max-width: 550px;
  margin: 0 auto 1.4rem;
  text-align: center;
}
.hero-banner-2 h1 span {
  color: #fe3671;
}
.hero-banner-2 .text {
  max-width: 430px;
  margin: 0 auto 1.4rem;
  text-align: center;
}
.hero-banner-2 .button-list {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  margin: 0 -10px;
}
.hero-banner-2 .button-list li {
  padding: 0 10px 15px;
}
.hero-banner-2 .image-holder {
  text-align: center;
  line-height: 0;
}


@media(min-width: 768px) {
  .hero-banner-2 h1 {
    font-size: 40px;
    line-height: 50px;
  }
  .hero-banner-2 .text {
    font-size: 18px;
    line-height: 28px;
  }
}
@media(min-width: 992px) {
  .hero-banner-2 {
    padding: 50px 0 0;
  }
  .hero-banner-2 .row {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    margin: 0 -15px;
  }
  .hero-banner-2 .column {
    padding: 0 15px;
    margin: 0;
    width: 50%;
  }
  .hero-banner-2 h1 {
    margin: 0 0 1.4rem;
    text-align: left;
  }
  .hero-banner-2 .text {
    margin: 0 0 1.4rem;
    text-align: left;
  }
  .hero-banner-2 .button-list {
    justify-content: flex-start;
  }
}


/* Templates
Specific pieces of UI that are stylized.
*/
.german-exam-template {
  padding: 60px 0;
}
.german-exam-template .column {
  width: 100%;
}
.german-exam-template h1 {
  font-family: 'fibra_oneultrabold';
  font-size: 30px;
  line-height: 44px;
  margin-bottom: 40px;
}
.german-exam-template h1 span {
  color: #fe3671;
}

@media(min-width: 768px) {
  .german-exam-template {
    padding: 80px 0;
  }
  .german-exam-template h1 {
    font-size: 36px;
    line-height: 50px;
  }
}
@media(min-width: 992px) {
  .german-exam-template .row {
    display: flex;
    flex-flow: row wrap;
    margin: 0 -15px;
  }
  .german-exam-template .column {
    padding: 0 15px;
  }
  .german-exam-template .column:nth-child(1) {
    width: 66.666%;
  }
  .german-exam-template .column:nth-child(2) {
    width: 33.333%;
  }
}
@media(min-width: 1200px) {
  .german-exam-template {
    padding: 100px 0;
  }
}

/* Utilities
Helper classes with ability to override anything that comes before it
*/

/* For content that needs to be visually hidden but stay visible for screenreaders */

.show-for-sr {
  border: 0 !important;
  clip: rect(0, 0, 0, 0) !important;
  height: 1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  white-space: nowrap !important;
  width: 1px !important;
}

@media (max-width: 767px) {
  .show-for-sr--mobile {
    border: 0 !important;
    clip: rect(0, 0, 0, 0) !important;
    height: 1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    white-space: nowrap !important;
    width: 1px !important;
  }
}

h2{
  font-family: 'fibra_oneultrabold' !important;
}

.hs-button{
  box-shadow: none !important;
}
.language-switcher-wrapper, .flag{
  display: none!important;
}
.popup__modal-inner .holder .icon-close{
  color: #4b4c76;
}