@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap');

:root {
    --primary: #BCD02E;
    --accent: #CC2F89;
    --accent-3: #FCE7BA;
    --accent-4: #0C8BBE;

    --text-primary: #464547;

    --bg-primary: #F9F7F6;
    --bg-secondary: #EDF2C6;
    --bg-secondary-transparent: #EDF2C6aa;
    --bg-hero-content: #F9F7F6aa;
    --bg-hero-content-desktop: #ffffffaa;

    --white: #ffffff;

    /* box shadow */
    --box-shadow: #00000011;
    
    /* buttons */
    --btn-color: #464547;

    /* Widths */
    --general-width: 75%;
    --footer-width: 85%;
}


* {
    margin: 0;
}
html {
    position: relative;
    height: 100%;
}

html, body {
    height: 100%;
    background-color: var(--white);
    color: var(--text-primary);
    font-size: 16px;
}

body {
    line-height: 1.6;
    font-weight: 200;
    font-family: 'Poppins', 'Open Sans', sans-serif;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

a {
    color: inherit;
}

a:not([class]) {
    text-decoration: underline;
}

a:hover {
    color: var(--accent);
    text-decoration: none;
}

h1, h2, h3, h4,
.h1, .h2, .h3, .h4 {
    font-weight: 700;
    line-height: 1.4em;
}

h1,
.h1 {
    font-size: 1.6rem;
}

h2,
.h2 {
    font-size: 1.6rem;
}

h3,
.h3 {
    font-size: 1.25rem;
}

h4,
.h4 {
    font-size: 1.15rem;
}

p {
    font-size: 1rem;
}

p + h2, p + .h2, 
ul + h2, ul + .h2,
ol + h2, ol + .h2 { margin-top: 2.5rem; }
p + h3, p + .h3, 
ul + h3, ul + .h3,
ol + h3, ol + .h3 { margin-top: 2rem; }
p + h4, p + .h4, 
ul + h4, ul + .h4,
ol + h4, ol + .h4 { margin-top: 1.5rem; }

strong {
    font-weight: 700;
}

q:before, 
q:after { 
    content: none; 
}

button {
    font-weight: 700;
    color: var(--btn-color);
    padding: 10px 40px;
    background: var(--primary);
    border: 2px solid var(--primary);
    border-radius: 30px;
}

button:hover {
    color: var(--text-primary);
    background: var(--white);
    border: 2px solid var(--primary);
}

input[type="input"] {
    outline: none;
    border: none;
}

ul.bullet {
    list-style:disc;
    font-size:1rem;
    margin-left:2.25rem;
}

ul.tick {
    text-align: left;
    margin-bottom: 15px;
    list-style: none !important;
    margin-left:2.25rem;
}

ul.tick > li {
    position: relative;
}

ul.tick span.tick {
    color: var(--primary);
    margin-right: 5px;
    font-size: 0.95rem;
    position: absolute;
    left: -1.5rem;
    top: 0.25rem;
}

ul.no-list { 
    margin-left: 0; 
    list-style: none !important;
}
ul.no-list li { 
    margin-bottom: 1rem; 
}
ul.no-list li:last-child { 
    margin-bottom: 0; 
}

ol.list-steps {
    padding: 0;
    list-style: none;
    counter-reset: step-counter;
  }
  
  ol.list-steps li {
    position: relative;
    padding-left: 60px;
    padding-bottom: 1.5rem;
    padding-top: 7px;
    counter-increment: step-counter;
  }
  
  ol.list-steps li::before {
    content: counter(step-counter);
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    background: var(--primary);
    position: absolute;
    left: 0;
    top: 0;
    font-weight: bold;
    text-align: center;
    font-size: 1.2em;
  }
  
  ol.list-steps li a {
    font-size: 1.2em;
    font-weight: bold;
  }

table caption {
    caption-side: top;
    color: var(--text-primary);
}

figure figcaption { display: block; text-align:center; margin-top: 6px; }

@media screen and (min-width: 768px) {
    
    h1, .h1 {
        font-size: 2rem;
    }
    
    h2, .h2 {
        font-size: 2rem;
    }

    h3, .h3 {
        font-size: 1.3rem;
    }
    
    h4, .h4 {
        font-size: 1.15rem;
    }
}

@media screen and (min-width: 992px) {
    
    h1, .h1 {
        font-size: 2.25rem;
    }
    
    h2, .h2 {
        font-size: 2.25rem;
    }

    h3, .h3 {
        font-size: 1.75rem;
    }
    
    h4, .h4 {
        font-size: 1.3125rem;
    }
}

/* Custom Bootstrap Defaults */
@media (min-width: 1200px) {
    .container-xl {
        max-width: 1400px;
    }
}


/* General */
.feros__button {
    font-weight: 700;
    color: var(--btn-color);
    min-height: 50px;
    padding: 10px 40px;
    background: var(--primary);
    border: 2px solid var(--primary);
    border-radius: 30px;
    text-decoration: none;
    display: inline-block;
}

.feros__button:hover {
    color: var(--text-primary);
    background: var(--white);
    border: 2px solid var(--primary);
}

.feros__button.white { 
    background-color:white; 
    border-color: white;
    color: var(--text-primary);
}

.feros__button.white:hover {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--text-primary);
}

.bg-Lime .feros__button.white:hover,
.feros__button.white.pink-hover:hover {
    background-color: var(--accent);
    border-color: var(--accent);
    color: white;
}

.feros__img {
    height: auto;
    width: 100%;
}

.no-scroll {
    overflow: hidden;
    -ms-touch-action: none;
        touch-action: none;
}

.blur {
    position: absolute;
    height: 100%;
    width: 100%;
    -webkit-filter: blur(10px);
            filter: blur(10px);
    overflow: hidden;
    z-index: 2;
}


/* Header */
.topbar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 70px;
    max-width: 1240px;
    font-size: 1rem;
    font-weight: 700;
    padding: 0 15px;
    background: var(--bg-primary);
}

.topbar__search {
    padding: 10px 20px;
    background: var(--white);
    border: 2px solid var(--bg-primary);
    border-radius: 40px;
}

.topbar__nav {
    display: none;
}

.topbar__item {
    margin: 0 10px;
}

.topbar__item a,
.topbar__item a:hover {
    text-decoration: none;
}

.topbar__item--login {
    color: var(--accent-4);
}

.topbar__navwrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
}

.topbar__phone {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.topbar__phoneIcon {
    height: 30px;
}

.topbar__phoneNumber {
    font-size: 1.15rem;
    font-weight: 700;
}

.topbar__phoneNumber:hover {
    color: var(--accent);
    text-decoration: none;
}

.navbar {
    height: 70px;
    max-width: 1240px;
}

.navbar-brand img {
    height: auto;
    width: 200px;
}

.ui-autocomplete {
    background-color: #fff;
    border-bottom: 3px solid #d4d4d4;
    border-left: 1px solid #ededed;
    border-right: 1px solid #ededed;
    list-style: none;
    margin: 0;
    padding: 0;
    z-index: 101
}

.ui-autocomplete li a {
    background-color: transparent;
    border: 0;
    box-sizing: border-box;
    border-bottom: 1px solid #ededed;
    color: #474747;
    display: block;
    text-decoration: none;
    text-align: left;
    width: 100%
}

.ui-autocomplete li a.ui-state-focus,.ui-autocomplete li a:focus,.ui-autocomplete li a:hover {
    background-color: #f7f7f7;
    border: 0
}

#ui-id-1 li a {
    font-size: 1rem;
    padding: 10px 20px
}

#ui-id-2 li a {
    font-size: 1.125rem;
    padding: 17px 30px
}

@media screen and (min-width: 768px) { 
    .topbar {
        -webkit-box-pack: end;
            -ms-flex-pack: end;
                justify-content: flex-end;
        background: none;
        height: unset;
        padding: 30px 15px 0;
    }

    .topbar__nav {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: end;
            -ms-flex-pack: end;
                justify-content: flex-end;
        margin: 0 15px;
    }

    .topbar__search {
        background: var(--bg-primary);
    }

    .topbar__phoneNumber {
        font-size: 1.3125rem;
    }

    .navbar {
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        padding: 0 10px;
        height: 80px;
    }

    .navbar-brand img {
        width: 100%;
        max-width: 220px;
    }

    .navbar-light .navbar-nav .nav-link {
        color: var(--text-primary);
        font-size: 1.2rem;
        font-weight: 700;
        text-decoration: none;
    }

    .navbar-light .navbar-nav .nav-link:hover {
        color: var(--primary);
    }

}

/* Navbar */
.navbar {
    z-index: 10;
}

#navbarNav {
    position: absolute;
    top: 100px;
    left: 0;
    width: 100%;
    height: auto;
    padding: 40px 40px 80px;
    font-weight: 700;
    background: #F9F7F6;
}

.navbar-nav {
    min-height: calc(100vh - 400px);
}

.navbar-light .navbar-nav .show>.nav-link {
    color: var(--text-primary);
}

.nav-item {
    border-bottom: 2px solid var(--text-primary);
    width: 100%;
}

.navbar__dropdown {
    background: none;
    border: none;
}
    
.navbar__itemWrapper {
    margin-bottom: 20px;
}

.dropdown-item {
    color: var(--text-primary);
}

.navbar__item.dropdown-item {
    white-space: normal;
}

.navbar__dropdownInner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding-left: 10px;
    padding-bottom: 20px;
    margin: auto;
}

.navbar__dropdownInner > .row {
    width: 100%;
}

.navbar-light .navbar-nav .nav-link {
    font-size: 1.4rem;
    color: var(--text-primary);
}

.navbar-light .navbar-nav .nav-link > i {
    margin-left: 0.25rem;
}

.navbar-light .navbar-nav .nav-link:after {
    content: none;
}

.navbar__navBottomWrapper {
    margin-top: 60px;
}

@media screen and (min-width: 768px) {
    #navbarNav {
        position: unset;
        top: 0;
        left: 0;
        width: unset;
        height: auto;
        padding: unset;
        background: none;
    }

    .navbar-nav {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            -ms-flex-direction: row;
                flex-direction: row;
        -webkit-box-align: start;
            -ms-flex-align: start;
                align-items: flex-start;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
        min-height: unset;
    }

    .navbar-nav .dropdown-menu {
        background: var(--bg-primary);
    }

    .navbar__dropdown {
        background: var(--bg-secondary);
    }
 
    .dropdown {
        position: unset;
    }
    
    .dropdown-menu {
        border: none;
        border-radius: 0;
    }
    
    .navbar__dropdown {
        --dropdown-width: 100%;
        position: absolute;
        top: 78px;
        left: 0;
        width: var(--dropdown-width);
        max-width: 1400px;
        background: var(--white);
    }
    
    .navbar__dropdownInner {
        padding-top: 40px;
        padding-left: 0;
        width: calc(100% - 100px);
    }

    .nav-link--active {
        padding-bottom: 30px;
        border-bottom: 5px solid black;
    }
    
    .navbar__itemWrapper {
        margin-bottom: 40px;
    }
    
    .navbar__item {
        font-weight: 700;
        text-decoration: none;
    }
    
    .navbar__item:hover {
        color: var(--accent);
        background: none;
        text-decoration: underline;
    }

    .nav-item {
        border: none;
    }
    
    .navbar__symbol {
        color: var(--accent);
    }

    .navbar-light .navbar-nav .nav-link {
        font-size: 1.1rem;
    }

    .navbar-light .navbar-nav .nav-link > i {
        display: inline-block;
        margin-left: 0.25rem;
    }

    .navbar-light .navbar-nav .nav-link:after {
        content: none;
    }

    .navbar__navBottomWrapper, .nav__link--hidden {
        display: none;
    }

}

@media screen and (min-width: 992px) {
    .navbar-light .navbar-nav .nav-link {
        font-size: 1.125rem;
    }
}

/* Full width content */
.full-width-content {
    margin: 60px auto;
}

.full-width__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0 25px;
    max-width: 1040px;
    margin: auto;
}

.full-width__wrapper > .row {
    width: calc(100% + 30px);
    display: block;
}

.full-width-content h1,
.full-width-content .h1,
.full-width-content h2,
.full-width-content .h2 {
    margin-bottom: 1.5rem;
}

.full-width-content h3,
.full-width-content .h3 {
    margin-bottom: 1.25rem;
}

.full-width-content h4,
.full-width-content .h4 {
    margin-bottom: 1rem;
}

.full-width-content ul {
    text-align: left;
    margin-bottom: 1rem;
    list-style: disc;
    margin-left:2.25rem;
}

.full-width-content ul.hero__nav {
    list-style: none;
    margin: 0;
}

.full-width-content img {
    border-radius: 50px;
    max-width: 100%;
    display: inline-block;
}

.full-width-content p + h2,
.full-width-content p + .h2,
.full-width-content p + h3,
.full-width-content p + .h3,
.full-width-content p + h4,
.full-width-content p + .h4 {
    margin-top: 3rem;
}

@media (min-width: 1200px) {
    .full-width__wrapper {
        padding: 0;
    }
}

/* Hero Section */
.hero {
    position: relative;
}

.hero .col-md-9, .hero .col-md-6 {
    padding-left: 0;
    padding-right: 0;
}

.hero > .row {
    margin-top: 0;
    margin-bottom: 0;
}

.hero > .row > [class*='col-'] {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0;
    padding-bottom: 0;
}

.hero__img {
    position: relative;
    height: 350px;
    background-image: url('/assets/images/Latest/hero-bg.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding: 40px 40px 80px;
    background: var(--bg-hero-content);
    -webkit-backdrop-filter: blur(30px);
            backdrop-filter: blur(30px);
    border-radius: 0 0 100px 0;
    position: relative;
    z-index: 1;
    margin-top: -40px;
}

.hero__content *:last-child {
    margin-bottom: 0 !important;
}

.hero__heading {
    margin-bottom: 30px;
}

.hero__nav {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent);
}

.hero__item a {
    margin-left: 10px;
    padding-bottom: 2px;
    border-bottom: 1px solid var(--accent);
    text-decoration: none;
}

.hero__item a:hover {
    color: var(--accent);
    border-bottom: none;
}
/* Hero no image */
.hero.no-image { 
    margin-top: 0; 
}
.hero.no-image .hero__content { 
    background: var(--bg-secondary); 
    padding: 40px; 
    margin-top: 0;
}
.hero.no-image .hero__content .hero__heading { 
    margin-bottom: 10px; 
}
/* Hero full width */
.hero.full-width .hero__content { 
    border-radius: 0 0 100px 100px; 
    text-align: center; 
    align-items:center;
}

@media screen and (min-width: 768px) {
    .hero {
        margin-bottom: 0;
    }

    .hero__content {
        position: absolute;
        top: 0;
        left: 15px;
        z-index: 1;
        padding: 40px 40px 50px 25px;
        background: var(--bg-hero-content-desktop);
        -webkit-backdrop-filter: blur(30px);
                backdrop-filter: blur(30px);
        margin-top: 0;
    }

    .hero__img {
        height: 550px;
    }
    /* Hero no image */
    .hero.no-image .hero__content { 
        position: static; 
    }
    /* Hero small */
    .hero.small .hero__img {
        height: 350px;
    }
}

@media screen and (min-width: 992px) {
    .hero__content {
        padding: 70px 50px 80px 25px;
    }
    /* Hero no image */
    .hero.no-image .hero__content { 
        padding: 50px;
    }
}

@media screen and (min-width: 1040px) {
    .hero__content {
        margin-right: 50px;
    }
}

.hero.no-image .hero__content { background: var(--bg-secondary); }

@media screen and (min-width: 768px) {
.hero.no-image .hero__content { position: static; }
}

@media screen and (min-width: 992px) {
  .hero__content { padding-left: 50px; }
}


/* Why choose feros */
.feros-why {
    margin: 60px auto;
}

.feros-why__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0 25px;
    margin: auto;  
}

.feros-why__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
}

.feros-why__slides {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 250px;
    height: 200px;
}

.slide-hidden {
    display: none;
}

.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    color: var(--primary);
    font-size: 50px;
}

.prev {
    left: -20px;
}

.next {
    right: -20px;
}

.feros-why__icons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin: 20px 0;
}

.feros-why__icon {
    margin: 0 15px;
    max-width: 130px;
}

.feros-why__icon img {
    height: 100px;
    margin-bottom: 10px;
}

.feros-why__icon p {
    font-size: 16px;
    font-weight: 700;
}

.feros-why__writing {
    font-size: 1.1rem;
    /* margin-bottom: 50px; */
}

.feros-why__writing--bold  {
    font-weight: 700;
    margin-bottom: 50px;
}

.feros-why__banner {
    display: block;
    position: absolute;
}

.feros-why__button--rotate {
    display: block;
    position: fixed;
    font-size: 1.2rem;
    z-index: 2;
    top: 50vh;
    left: -70px;
    padding: 10px 30px;
    -webkit-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
            transform: rotate(-90deg);
    border-radius: 0 0 15px 15px;
}

.feros-why__button--rotate i {
    color: var(--white);
}

.feros-why__button--rotate:hover i {
    color: var(--primary);
}

@media screen and (min-width: 768px) {
    .feros-why {
        margin: 100px auto;
    }

    .feros-why__writing {
        font-size: 1.2rem;
    }

    .feros-why__wrapper {
        max-width: 60%;
    }
    
    .slide-hidden {
        display: block;
    }

    .feros-why__slides {
        width: 100%;
        height: auto;
    }
    
    .prev, .next {
        display: none;
    }
}




/* Feros options */
.feros-options {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 60px 40px 40px;
    background: var(--bg-primary)
}

.feros-options__heading {
    margin-bottom: 30px;
}

.feros-options__option {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    max-width: 450px;
    margin: auto;
    margin-bottom: 20px;
    background: var(--white);
    border-radius: 50px;
    text-align: center;
}

.feros-options__content {
    padding: 40px 40px 50px;
}

.feros-options__content h4 {
    padding-bottom: 5px;
}

.feros-options__content p {
    padding-bottom: 5px;
}

.feros-options__img {
    height: auto;
    width: 100%;
    border-radius: 50px;
    -webkit-box-shadow: 0 5px 10px var(--box-shadow);
            box-shadow: 0 5px 10px var(--box-shadow);
}

.feros-options__listwrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.feros-options__list {
    text-align: left;
    margin-bottom: 15px;
    font-size: 1.2rem;
    list-style: none;
    margin-left:2.25rem;
}

.feros-options__list > li {
    position: relative;
}

.feros-options__item span.tick {
    color: var(--primary);
    margin-right: 5px;
    font-size: 0.95rem;
    position: absolute;
    left: -1.5rem;
    top: 0.25rem;
}

.feros-options__number {
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--accent);
}

.feros-options__writing {
    margin-top: -10px;
    padding-bottom: 15px;
    font-size: 1.1rem;
    font-weight: 700;
}

@media screen and (min-width: 768px) {
    .feros-options {
        padding-top: 100px;
        padding-bottom: 100px;
    }

    .feros-options__option {
        max-width: 375px;
        height: 100%;
    }
}




/* Join the team */
.feros-team {
    margin: 60px auto;
}

.feros-team__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0 25px;
    max-width: 1040px;
    margin: auto;
}

.feros-team__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-bottom: 50px;
}

.feros-team__content h2 {
    margin-bottom: 20px;
}

.feros-team__list {
    text-align: left;
    margin-bottom: 15px;
    list-style: none;
    margin-left:2.25rem;
}

.feros-team__list > li {
    position: relative;
}

.feros-team__item span.tick {
    color: var(--primary);
    margin-right: 5px;
    font-size: 0.95rem;
    position: absolute;
    left: -1.5rem;
    top: 0.25rem;
}

.feros-team__imgWrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 100%;
}

.feros-team__img {
    width: 100%;
    height: auto;
    border-radius: 50px;
}

@media screen and (min-width: 768px) {
    .feros-team {
        margin: 100px auto;
    }
}

@media screen and (min-width: 992px) {

}



/* Feros COVID */
.feros-covid {
    background: var(--accent-3);
}

.feros-covid__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: auto;
    text-align: center;
    padding: 40px 25px;
}

.feros-covid__wrapper h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.feros-covid__button {
    color: var(--white);
    background: var(--btn-color);
    border: 2px solid var(--btn-color);
}

.feros-covid__button:hover {
    color: var(--btn-color);
    background: var(--accent-3);
    border: 2px solid var(--btn-color);
}

@media screen and (min-width: 768px) {
    .feros-covid__wrapper {
        width: 80%;
    }
}




/* Feros services */
.feros-services {
    margin: 40px auto 80px;
}

.feros-services__inner {
    padding: 0 25px;
}

.feros-services__imgWrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 100%;
}

.feros-services__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    height: 100%;
    padding: 0 10px;
}

.feros-services__content h2 {
    margin-bottom: 30px;
}

.feros-services__content h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

/* .feros-services__btnWrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 20px;
    color: var(--btn-color);
    background: var(--bg-primary);
    border-radius: 50px;
    text-align: center;
} */

/* styling lable */
.feros-services__btnWrapper {
    position: relative;
    display: inline-block;
    width: 100%;
    height: 50px;
    -webkit-box-shadow: none;
            box-shadow: none;
    border-radius: 50px;
    cursor: pointer;
}

/* hiding checkbox */
.feros-services__btnWrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-bottom: 20px;
    background: #F9F7F6;
    height: 50px;
} 


.feros-services__button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 50%;
    height: 100%;
    max-height: 50px;
    padding: 15px;
    font-weight: 700;
    text-align: center;
    border: none;
    border-radius: 50px;
    background: none;
    outline: none;
    cursor: pointer;
    font-size: 14px;
}

.feros-services__button:hover {
    color: var(--btn-color);
}

.feros-services__button--active {
    background: var(--primary);
}

.feros-services__search {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    height: 50px;
    padding-left: 20px;
    background: var(--bg-primary);
    border-radius: 50px;
}

.feros-services__input {
    border: 50px;
    outline: none;
    -webkit-box-shadow: none;
            box-shadow: none;
    background: none;
    width: 100%;
    color: var(--text-primary);
    font-weight: 700;
    font-size: 0.95em;
}

.feros-services__input::-webkit-input-placeholder {
    color: var(--text-primary);
    font-weight: 700;
}

.feros-services__input::-moz-placeholder {
    color: var(--text-primary);
    font-weight: 700;
}

.feros-services__input:-ms-input-placeholder {
    color: var(--text-primary);
    font-weight: 700;
}

.feros-services__input::-ms-input-placeholder {
    color: var(--text-primary);
    font-weight: 700;
}

.feros-services__input::placeholder {
    color: var(--text-primary);
    font-weight: 700;
}

.feros-services__toggle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 70px;
    height: 50px;
    color: var(--text-primary);
    background: var(--primary);
    border-radius: 50px;
    cursor: pointer;
    border: none;
}

@media screen and (min-width: 768px) {
    .feros-services__inner {
        padding: 0;
    }

    .feros-services {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        margin: 40px auto;
    }

    .feros-services__button {
        font-size: 1rem;
    }
}

@media screen and (min-width: 992px) {
    .feros-services__inner {
        margin: 50px auto;
        width: var(--general-width);
    }

    .feros-services__content {
        padding: 0;
    }
}



/* Feros help */
.feros-help {
    background: var(--bg-primary);
}

.feros-help__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 60px 25px;
}

.feros-help__options {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    max-width: 1040px;
}

.feros-help__options > .row > [class*="col"] {
    display: flex;
}

.feros-help__option {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    min-width: 280px;
    max-width: 450px;
    margin: 0 auto 20px;
    background: var(--white);
    border-radius: 50px;
    text-align: center;
}

.feros-help__content {
    padding: 20px 40px 20px;
}

.feros-help__heading {
    padding-bottom: 30px;
}

.feros-help__img {
    height: auto;
    width: 100%;
    border-radius: 50px;
    -webkit-box-shadow: 0 5px 10px var(--box-shadow);
            box-shadow: 0 5px 10px var(--box-shadow);
}

@media screen and (min-width: 768px) {
    .feros-help {
        padding: 40px 0;
    }

    .feros-help__heading {
        padding-bottom: 40px;
    }

    .feros-help__option {
        min-width: unset;
        max-width: unset;
    }

    
}

@media screen and (min-width: 992px) {

}

/* Feros Tiles */

.feros-tiles {
    margin-left: auto;
    margin-right: auto;
    max-width: 1040px;
}

.feros-tiles > .row > [class*="col"] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.feros-tile {
    min-width: 280px;
    max-width: 450px;
    margin: 0 auto 20px;
    background: var(--white);
    border-radius: 50px;
    text-align: center;
    display: block;
    flex-grow: 1;
}

a.feros-tile.has-link-text:hover {
    color: var(--text-primary);
}

a.feros-tile.has-link-text:hover .feros-tile__link-text {
    color: var(--accent);
}

.feros-tile__content {
    padding: 20px 25px;
}

.feros-tile__heading {
    padding-bottom: 30px;
}

.feros-tile__link-text {
    text-decoration: underline;
    font-weight: 700;
    margin-top: 15px;
}

.feros-tile__img {
    border-radius: 50px;
    overflow: hidden;
    height: 0;
    width: 100%;
    position: relative;
    padding-top: 75%;
}

.feros-tile__img img {
    object-fit: cover;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.feros-tiles.text-left .feros-tile__description {
    text-align: left;
}

.feros-tiles.title-left .feros-tile__content > h4 {
    text-align: left;
}


@media screen and (min-width:768px) {

    .feros-tile {
        min-width: 0;
        max-width: none;
    }
}

/* Discover feros */
.feros-discover {
    margin: 0 auto;
}

.feros-discover__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: auto;
}

.feros-discover__wrapper .col-md-6 {
    padding-left: 0;
    padding-right: 0;
}

.feros-discover__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 40px 40px 200px;
    background: var(--bg-secondary);
}

.feros-discover__content p:nth-of-type(2) {
    margin-bottom: 20px;
}

.feros-discover__content p span {
    font-weight: 700;
}

.feros-discover__imgWrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    margin-bottom: -120px;
    padding: 0 40px;
}

.feros-discover__img {
    height: auto;
    width: 100%;
    min-width: 280px;
    max-width: 450px;
    border-radius: 50px;
}

.feros-discover__imgWrapper .videoWrapper {
    height: auto;
    width: 100%;
    min-width: 280px;
    max-width: 450px;
    border-radius: 50px;
}

@media screen and (min-width: 768px) {

    .feros-discover {
        margin: 100px auto;
    }    

    .feros-discover__content {
        height: 100%;
        padding: 0 0 0 40px;
        background: none;
    }

    .feros-discover__heading {
        margin-bottom: 20px;
    }

    .feros-discover__writinng,
    .feros-discover__writing {
        margin-bottom: 40px;
    }

    .feros-discover__imgWrapper {
        -webkit-box-pack: start;
            -ms-flex-pack: start;
                justify-content: flex-start;
        height: 500px;
        margin-top: 0;
        margin-left: 130px;
        padding-right: 15px;
        background: var(--bg-secondary);
        border-radius: 50px 0 0 50px;
        -webkit-transform: none;
            -ms-transform: none;
                transform: none;
        margin-bottom: 0;
    }

    .feros-discover__img {
        margin-left: -100px;
        width: calc(100% + 100px);
    }

    .feros-discover__imgWrapper .videoWrapper {
        margin-left: -100px;
        width: calc(100% + 100px);
    }

}

@media screen and (min-width: 1088px) {
    .feros-discover__content {
        margin-left: calc(100% - 520px);
        padding-left: 0;
    }

    .feros-discover__img {
        width: calc(100% + 85px);
    }

    .feros-discover__imgWrapper .videoWrapper {
        width: calc(100% + 85px);
    }
}




/* Feros stories */
.feros-stories {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 50px auto;
}

.feros-stories__options {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0 25px;
}

.feros-stories__options > .row > [class*=col] {
    display: flex;
}

.feros-stories__option {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    border-radius: 50px;
    max-width: 450px;
    margin: 0 auto 20px;
}

.feros-stories__content {
    padding: 20px 20px 0;
    flex-grow: 1;
}

.feros-stories__content h4 {
    margin-top: 10px;
    text-transform: uppercase;
}

.feros-stories__link {
    padding: 0 20px;
}

.feros-stories__content a,
.feros-stories__link a {
    font-weight: 700;
    text-decoration: underline;
    margin-bottom: 20px;
}

.feros-stories__content a:hover,
.feros-stories__link a:hover {
    color: var(--accent);
}

.feros-stories__content a:nth-of-type(2),
.feros-stories__link a:nth-of-type(2) {
    color: var(--accent);
}

.feros-stories__content a:nth-of-type(2):hover,
.feros-stories__link a:nth-of-type(2):hover {
    color: var(--btn-color);
}

.feros-stories__heading {
    padding-bottom: 20px;
    text-align: center;
}

.feros-stories__img {
    width: 100%;
    height: auto;
    border-radius: 50px;
}

.feros-stories__img-link {
    border-radius: 50px;
    overflow: hidden;
    height: 0;
    width: 100%;
    position: relative;
    padding-top: 75%;
}

.feros-stories__img-link .feros-stories__img {
    object-fit: cover;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
}

.feros-story-single .full-width__wrapper > .row > [class*="col"] > img:first-child { 
    display: block; 
    margin: 0 auto 40px; 
}

@media screen and (min-width: 768px) {
    .feros-stories {
        margin: 100px auto;
    }

    .feros-stories__option {
        max-width: none;
    }

    .feros-stories__heading {
        text-align: left;
        padding-bottom: 40px;
    }

    .feros-stories__img {
        min-width: unset;
    }

    .feros-stories__content h4 {
        font-size: 1rem;
    }
}

@media screen and (min-width: 992px) {
    .feros-stories__options {
        max-width: 1040px;
        margin: auto;
        padding: 0;
    }
}




/* Feros app */
.feros-app {
    margin: 80px auto 0;
}

.feros-app__wrapper .col-md-6 {
    padding-left: 0;
    padding-right: 0;
}

.feros-app__imgWrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: -250px;
    -webkit-transform: translateY(70%);
        -ms-transform: translateY(70%);
            transform: translateY(70%);
    position: relative;
    z-index: 1;
}

.feros-app__img {
    height: 350px;
    width: auto;
}

.feros-app__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 270px 40px 80px;
    background: var(--bg-secondary);
}

.feros-app__content p {
    font-size: 1.3rem;
}

.feros-app__buttonsWrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}

.feros-app__button {
    height: 45px;
    width: auto;
    max-height: 50px;
    margin-bottom: 10px;
}

.feros-app__button:nth-of-type(1) {
    padding-right: 10px;
}

@media screen and (min-width: 768px) {
    .feros-app {
        margin: 160px auto 220px;
    }

    .feros-app__imgWrapper {
        -webkit-box-pack: end;
            -ms-flex-pack: end;
                justify-content: flex-end;
        height: 400px;
        padding-right: 50px;
        padding-left: 15px;
        margin-right: 40px;
        margin-top: 0;
        -webkit-transform: none;
            -ms-transform: none;
                transform: none;
        background: var(--bg-secondary);
        border-radius: 0 50px 50px 0;
    }

    .feros-app__img {
        height: 550px;
    }

    .feros-app__content {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-align: start;
            -ms-flex-align: start;
                align-items: flex-start;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        padding: 0 15px;
        margin-left: 20px;
        height: 100%;
        background: none;
    }

    .feros-app__button {
        height: unset;
        width: auto;
        max-height: 50px;
        margin-bottom: 10px;
    }
}

@media screen and (min-width: 992px) {


}

/* Feros news */
.news {
    margin: 50px auto;
}

.news__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

.news__options {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    /* padding: 0 25px; */
}

.news__option {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin: 0 auto 50px;
    background: var(--bg-primary);
    border-radius: 50px;
}

.news__content {
    padding: 20px;
}

.news__content h4 {
    margin-top: 10px;
    text-transform: uppercase;
}

.news__content a {
    font-weight: 700;
    text-decoration: none;
    margin-bottom: 20px;
    color: var(--accent);
}

.news__content a:hover {
    text-decoration: underline;
}

.news__content a:nth-of-type(2){
    color: var(--accent);
}

.news__content a:nth-of-type(2):hover{
    color: var(--btn-color);
}

.news__heading {
    padding-bottom: 20px;
    text-align: center;
}

.news__img {
    width: 100%;
    min-width: 280px;
    height: auto;
    border-radius: 50px;
}
.hidden {
    display: none;
}
@media screen and (min-width: 768px) {
    .news {
        margin: 100px auto;
    }

    .news__heading {
        text-align: left;
        padding-bottom: 40px;
    }

    .news__img {
        min-width: unset;
    }
}

@media screen and (min-width: 992px) {

}

/* Freeform post */

.freeform-post .parallax-banner {
    min-height: 60vw;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .freeform-post .parallax-banner.row {
    margin-left: 0;
    margin-right: 0;
  }
  .freeform-post .post-header {
    background: #000000;
    color: #ffffff;
    text-align: center;
    box-sizing: border-box;
    padding: 40px 1.5rem;
  }
  @media (min-width: 768px) {
  .freeform-post .parallax-banner {
    background-attachment: fixed;
    min-height: calc(80vh - 140px);
  }
  .freeform-post .post-header {
    background: rgb(0,0,0);
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 50%, rgba(0,0,0,1) 100%);
    margin-top: -40vh;
    min-height: 40vh;
    padding: 100px 1.5rem 50px;
  }
  }
  @media (min-width:768px) and (max-aspect-ratio: 1/1) {
   .freeform-post .post-header {
      margin-top: -20vh;
      min-height: 20vh;
    }
  }
  .freeform-post .post-header * {
    color: #ffffff;
  }
  .freeform-post .post-header h1 {
    margin-bottom: 1em;
  }
  .freeform-post .post-header h1 .h1-subheading {
    display: block;
    font-size: 65%;
  }
  .freeform-post .post-summary {
    max-width: 990px;
    margin: 0 auto;
    text-align: left;
    font-size: 1.25em;
  }
  .freeform-post .post-summary p {
    font-size: 1.25rem;
  }
  .freeform-post .full-width-banner {
    height: 60vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  .freeform-post hr { display: block; width: 3px; height: 70px; margin: 30px auto; clear: both; background:#d4d4d4;}
  .freeform-post #additional-js { display: none; }
  @media (min-width:768px) {
    .freeform-post .parallax-banner {
      min-height: calc(80vh - 159px);
    }
  }
  @media (min-width:992px) {
    .freeform-post .parallax-banner {
    min-height: 100vh;
    }
    .freeform-post .post-header h1 {
    font-size: 3.75em;
  }
    .freeform-post .full-width-banner {
      height: 80vh;
    }
  }
  @media (min-width: 1400px) {
  .freeform-post .post-header {
      padding-left: calc( (100vw - 1400px) / 2 );
      padding-right: calc( (100vw - 1400px) / 2 );
    }
  }
  
  .freeform-post figure {
    opacity: 0;
    transform: translateY(50px);
    transition: 1s;
    transition-delay: .3s;
  }
  
  .freeform-post figure.inView {
    opacity: 1;
    transform: translateY(0px);
  }

/* Tiles */
.tiles {
}

.tiles__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding-top: 60px;
    padding-bottom: 60px;
}

.tiles__options {
}

.tiles__option {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 0 auto 50px;
    border-radius: 50px;
    text-align: center;
    background: var(--bg-primary);
}

.tiles__content {
    padding: 20px;
}

.tiles__heading {
    padding-bottom: 30px;
}

.tiles__img {
    height: auto;
    width: 100%;
    border-radius: 50px;
    -webkit-box-shadow: 0 5px 10px var(--box-shadow);
            box-shadow: 0 5px 10px var(--box-shadow);
}

@media screen and (min-width: 768px) {
    .tiles {
        padding: 50px 0;
    }

    .tiles__heading {
        padding-bottom: 40px;
    }

    .tiles__option {
        min-width: unset;
        max-width: unset;
    }

    
}

@media screen and (min-width: 992px) {
   
}

/* Video Auto Resize */
.videoWrapper {
    max-width: 600px;
    margin: 0 auto;
}
.video-resize {
    position:relative;
    width:100%;
    padding-bottom:56.25%;
    height:0;
    border-radius:50px;
    overflow:hidden;
}
.video-resize iframe {
    position:absolute;
    width:100%;
    height:100%;
}

/* Subscribe */
.subscribe {
    position: relative;
    margin-top: 50px;
    margin-bottom: 50px;
}

.subscribe .subscribe__wrapper > .row {
    margin-top: 0;
    margin-bottom: 0;
}

.subscribe .subscribe__wrapper > .row > .col-md-9, 
.subscribe .subscribe__wrapper > .row > .col-md-6,
.subscribe .subscribe__wrapper > .row > .col-md-5,
.subscribe .subscribe__wrapper > .row > .col-md-7 {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0;
    padding-bottom: 0;
}

.subscribe-form__img {
    position: relative;
    height: 350px;
    background-image: url('/assets/images/Latest/hero-bg.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.subscribe-form__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding: 40px 40px 60px;
    background: var(--bg-secondary); 
    -webkit-backdrop-filter: blur(30px); 
            backdrop-filter: blur(30px);
    border-radius: 0 100px 0 0;
    position: relative;
    z-index: 1;
    margin-top: -20px;
}


.subscribe-form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    width: 100%;
}

.subscribe-form__selector {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 40px;
    width: 100%;
}

.subscribe-form input[type="text"], 
.subscribe-form input[type="email"], 
.subscribe-form input[type="number"], 
.subscribe-form input[type="tel"],
.subscribe-form input[type="date"] {
    margin-bottom: 15px;
    text-indent: 10px;
    outline: none;
    -webkit-box-shadow: none;
            box-shadow: none;
    width: 100%;
    color: var(--text-primary);
    outline: none;
    border: none;
    border-radius: 5px;
    height: 50px;
}

.subscribe-form__selector select,
.subscribe-form select {
    text-indent: 10px;
    outline: none;
    -webkit-box-shadow: none;
            box-shadow: none;
    width: 100%;
    color: var(--text-primary);
    outline: none;
    border: none;
    border-radius: 5px;
    height: 50px;
}

.subscribe-form textarea {
    margin-bottom: 15px;
    text-indent: 10px;
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    width: 100%;
    color: var(--text-primary);
    outline: none;
    border: none;
    border-radius: 5px;
    height: 120px;
}

.subscribe-form .sf-Checkboxes {
    margin-bottom: 30px;
}

.subscribe-form .sf-Checkboxes strong + div > label { 
    position: relative; 
}

.subscribe-form .sf-Checkboxes input[type=checkbox] {
    position: absolute;
    left: 0; top: 2px;
    width: 20px; height: 20px;
}

.subscribe-form .sf-Checkboxes input[type=checkbox] + span {
    padding-left: 30px;
    display:block;
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-primary);
}

.subscribe-form .sf-Checkboxes input[type=checkbox]:checked + span {
    font-weight: 700;
}


.subscribe-form p[data-sf-role="error-message"] { 
    border: 1px solid #cc2f89;
    background: #faeaf3;
    padding: 5px 10px;
    display: none;
    font-size: 1rem;
    line-height: 1.2em !important;
    font-weight: bold; 
}

.subscribe-form .hide-label > strong { display: none; }

.subscribe-form.outlined input[type="text"], 
.subscribe-form.outlined input[type="email"], 
.subscribe-form.outlined input[type="number"], 
.subscribe-form.outlined input[type="tel"], 
.subscribe-form.outlined input[type="date"], 
.subscribe-form.outlined textarea, 
.subscribe-form.outlined select { 
    border: 1px solid #cccccc; 
}

/* form grid */

.subscribe-form .sf_cols {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -10px;
    margin-left: -10px;
    width: calc(100% + 20px);
}

.subscribe-form .sf_cols .sf_2cols_1_50,
.subscribe-form .sf_cols .sf_2cols_2_50 {
    position: relative;
    width: 100%;
    padding-right: 10px;
    padding-left: 10px;
}

@media screen and (min-width: 768px) {

    .subscribe-form__wrapper {
        position: relative;
        z-index: 1;
        padding: 40px 40px 50px;
        background: var(--bg-secondary);
        -webkit-backdrop-filter: blur(30px);
        backdrop-filter: blur(30px);
        margin-top: 0;
        border-radius: 0 0 100px 0;
    }

    .subscribe-form__img {
        height: 100%;
    }

    .subscribe__wrapper > .row > div:last-child {
        position: absolute;
        right: 0;
        top: 0;
        height: 100%;
    }

    .subscribe-form .sf_cols .sf_2cols_1_50,
    .subscribe-form .sf_cols .sf_2cols_2_50 {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media screen and (min-width: 992px) {
    .subscribe-form__wrapper {
        padding: 70px 50px 80px;
    }
}

/* ClickDimension Override */

.clickdform.mainDiv { padding: 0 !important; }

.subscribe-form .clickdform.mainDiv input[type="text"], 
.subscribe-form .clickdform.mainDiv input[type="email"],
.subscribe-form .clickdform.mainDiv input[type="tel"],
.subscribe-form .clickdform.mainDiv input[type="number"] {
    margin-bottom: 15px;
    text-indent: 10px;
    outline: none;
    -webkit-box-shadow: none;
            box-shadow: none;
    width: 100%;
    color: var(--text-primary);
    outline: none;
    border: none;
    border-radius: 5px;
    height: 50px;
}

.subscribe-form .clickdform.mainDiv select {
    text-indent: 10px;
    outline: none;
    -webkit-box-shadow: none;
            box-shadow: none;
    width: 100%;
    color: var(--text-primary);
    outline: none;
    border: none;
    border-radius: 5px;
    height: 50px;
}

.subscribe-form .clickdform.mainDiv .responsiveCell > div:first-child > span { 
    display: block; 
    font-size: 1rem !important; 
    color: var(--text-primary) !important; 
    font-family: 'Poppins', 'Open Sans', sans-serif !important;
    font-weight: 700 !important; 
}

.subscribe-form .responsiveCell input[type=checkbox] {
  position: absolute;
  left: 0; top: 2px;
  width: 20px; height: 20px;
}

.subscribe-form .responsiveCell input[type=checkbox] + span {
  padding-left: 30px;
  display:block;
  font-family: 'Poppins', 'Open Sans', sans-serif !important;
  font-size: 1rem !important;
  font-weight: 400 !important;
  color: var(--text-primary) !important;
}

.subscribe-form .responsiveCell input[type=checkbox]:checked + span {
  font-weight: 700 !important;
}

.subscribe-form #btnSubmit {
  font-family: 'Poppins', 'Open Sans', sans-serif !important;
  font-size: 1rem !important;
    font-weight: 700;
    color: var(--btn-color) !important;
    min-height: 50px;
    padding: 10px 40px;
    background: var(--primary) !important;
    border: 2px solid var(--primary);
    border-radius: 30px;
    text-decoration: none;
}

.subscribe-form #btnSubmit:hover {
    color: var(--primary) !important;
    background: var(--white) !important;
    border: 2px solid var(--primary);
}

.subscribe-form.outlined .responsiveCell input {
    border: 1px solid #cccccc !important;
}

.subscribe-form .clickdform.mainDiv input[type="text"], 
.subscribe-form .clickdform.mainDiv input[type="email"], 
.subscribe-form .clickdform.mainDiv input[type="tel"], 
.subscribe-form .clickdform.mainDiv input[type="number"], 
.subscribe-form .clickdform.mainDiv select,
.subscribe-form .clickdform.mainDiv textarea {
    font-size: 1rem !important;
}

/* Titlebar */
.titlebar {
    padding: 0;
}

.banner {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.banner-content {
    background-color: #f7f7f7;
    border: 0;
    margin: 0;
    max-width: initial;
    padding: 20px;
}

.banner-content__title {
    display: block;
    font-size: 2.25rem;
    line-height: .89rem;
    margin-top: 0;
    margin-bottom: 15px;
    text-transform: uppercase;
    color:var(--accent);
}

.banner-content__intro {
    display: block;
    font-size: 1.125rem;
    margin-bottom: 10px;
}

.frame {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin-left: auto;
    margin-right: auto;
    max-width: 1040px;
    width: 100%;
}

.banner-media.progressive {
    position: relative;
    height: 200px;
    width: 100%;
}

.banner-media.progressive:after {
    content: '';
    background-color: #f7f7f7;
    bottom: -21%;
    height: 75px;
    left: -25%;
    position: absolute;
    -ms-transform: rotate(-5deg);
    -webkit-transform: rotate(-5deg);
            transform: rotate(-5deg);
    width: 150%;
    z-index: 1;
}

.progressive {
    display: block;
    overflow: hidden;
    position: relative;
    height: auto;
}

.banner-media.progressive div {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.progressive-bg div {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%;
    position: absolute;
    width: 100%;
}

@media screen and (min-width: 768px) {
    .banner:after {
        content: '';
        background-color: #fff;
        bottom: -83px;
        height: 170px;
        left: -25%;
        position: absolute;
        -ms-transform: rotate(-5deg);
        -webkit-transform: rotate(-5deg);
                transform: rotate(-5deg);
        width: 150%;
        z-index: 1;
    }

    .banner-content {
        background: #F9F7F6;
        border-radius: 50px 50px 0 0;
        border-top: 4px solid #cc2f89;
        -webkit-box-sizing: border-box;
                box-sizing: border-box;
        margin-top: 180px;
        margin-bottom: 30px;
        margin-left: 20px;
        max-width: 365px;
        padding: 40px 25px;
        position: relative;
    }

    /* .banner-content {
        background: #F9F7F6;
        border-radius: 50px 50px 0 0
    } */
    
    .banner-media.progressive div {
        /* border-radius: 0 0 50px 50px; */
    }

    .banner-media.progressive {
        height: 100%;
        position: absolute;
        width: 100%;
    }
}

@media screen and (min-width: 1400px) {
    .titlebar {
        padding: 0 15px;
    }
}


/* Call out */
.call-out {
    padding: 30px;
    background: var(--bg-secondary);
    border-radius: 30px; 
    display: block;
}

@media screen and (min-width: 768px) {
  .call-out { padding: 30px 60px; }
}




/* Feros footer */
.feros-footer {
    
}

.bg-lGrey + .feros-footer { margin-top: 0; }

.feros-footer__topbarWrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 90%;
    margin: auto;
    padding: 50px 25px;
    font-weight: 700;
    text-align: center;
}

.feros-footer__topbar p {
    margin: 0;
}

.feros-footer__innerWrapper {
    padding-top: 40px;
    padding-bottom: 40px;
    background: var(--bg-primary);
}

.feros-footer__inner {
    padding-left: 10px;
    padding-right: 10px;
}

.feros-footer__logo {
    max-width: 250px;
}

.feros-footer__address {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 20px 0;
}

.feros-footer__socials {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    margin-bottom: 20px;
}

.feros-footer__socials a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 38px;
    height: 38px;
    margin-right: 10px;
    color: var(--white);
    background: var(--primary);
    border-radius: 10px;
    border: 2px solid var(--primary);
    cursor: pointer;
    text-decoration: none;
}

.feros-footer__socials a:hover {
    color: var(--primary);
    background: var(--white);
    border: 2px solid var(--primary);
    text-decoration: none;
}

.feros-footer__menu {
    margin-top: 5px;
    margin-bottom: 20px;
}

.feros-footer__item {
    font-weight: 700;
    margin-bottom: 10px;
    text-decoration: underline;
}

.feros-footer__content {
    margin-top: 20px;
}

.feros-footer__phone {
    font-weight: 700;
    font-size: 1.8rem;
}

.feros-footer__phone a {
    text-decoration: none;
}

.feros-footer__phone a:hover {
    text-decoration: none;
    color: var(--accent);
}

.feros-footer__imgWrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    margin-top: 20px;
}

.feros-footer__img {
    max-width: 25%;
    height: auto;
    max-height: 100px;
    margin-right: 10px;
}

.feros-footer__bottombar {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-top: 20px;
    padding-bottom: 80px;
    background: var(--white);
}


.feros-footer__banner {
    position: fixed;
    display: block;
    z-index: 2;
    font-size: 18px;
}

.feros-footer__banner--left {
    right: -51px;
    top: 320px;
}

.feros-footer__banner--right {
    bottom: 0;
    right: 5%;
}

.feros-footer__button {
    display: block;
    padding: 10px 30px;
    text-decoration: none;
}

.feros-footer__button:hover {
    text-decoration: none;
}

.feros-footer__button--left {
    border-radius: 20px 20px 0 0;
    -webkit-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
            transform: rotate(-90deg);
}

.feros-footer__button--right {
    border-radius: 20px 20px 0 0;
    -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
            transform: rotate(0deg);
}

@media (max-height:600px) {
    .feros-footer__banner--left {
        right: auto;
        top: auto;
        bottom: 0;
        left: 5%;
    }

    .feros-footer__button--left {
        border-radius: 20px 20px 0 0;
        -webkit-transform: rotate(0deg);
            -ms-transform: rotate(0deg);
                transform: rotate(0deg);
    }
}

@media screen and (min-width: 768px) {

    .feros-footer {
        /* position: relative; */
        margin-top: 200px;
    }

    .feros-footer__topbarWrapper {
        position: absolute;
        -webkit-transform: translateY(-50%);
            -ms-transform: translateY(-50%);
                transform: translateY(-50%);
        left: calc((100% - var(--general-width)) / 2);
        z-index: 2;
        width: var(--general-width);
        margin: auto;
        padding: 30px 60px;
        font-weight: 700;
        background: var(--accent-3);
        border-radius: 30px;
    }

    .feros-footer__innerWrapper {
        padding-top: 300px;
    }

    .feros-footer__inner {
        max-width: 1140px;
        margin: auto;
        padding-left: 0;
        padding-right: 0;
    }

    .feros-footer__logo {
        max-width: 200px;
    }
    
    .feros-footer__content {
        margin-top: 0;
    }

    .feros-footer__innerWrapper {
        padding-top: 110px;
        padding-bottom: 20px;
    }

    .feros-footer__socials a {
        margin-right: 5px;
    }

    .feros-footer__bottombar {
        padding-bottom: 20px;
    }
}


.topbar_search_open .nav {
    opacity: 0;
    pointer-events: none;
}

.topbar .subnav-alt {
    background-color: #f7f7f7;
    position: absolute;
    opacity: 0;
    top: 30px;
    transition: opacity .3s linear,top .25s linear;
    right: 0;
    display: block;
    z-index: 9;
    width: 100%;
    text-align: right;
    max-width: 590px;
    right: 100px;
    pointer-events: none;
    visibility: hidden;
}

.topbar_search_open .subnav-alt {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
}

.topbar .subnav-alt input.search-input {
    height: 45px;
    border: none;
    outline: none;
    width: 100%;
    padding-right: 60px;
}
.topbar_search_open .subnav-alt .search-close {
    position: absolute;
    right: 5px;
    border: none;
    background: none;
    padding: 5px;
    height: 40px;
    width: 40px;
    top: 3px;
}
.topbar_search_open .topbar__search {
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
}

@media (min-width:768px) {
    .topbar .subnav-alt input.search-input {
        background-color: var(--bg-primary);
        padding-left: 20px;
    }
}

@media(max-width:1499px){
    .topbar .subnav-alt {
        max-width: 550px;
        right: 16px;
    }
}

@media(max-width:1199px) {
    .topbar .subnav-alt {
        max-width: 550px;
        right: 13px;
        padding-right: 10px;
    }
}

@media(max-width:767px) {
    .topbar .subnav-alt {
        max-width: 100%;
        right: 10px;
        padding-right: 0;
        top: 15px;
        left: 15px;
        width: auto;
    }
        .topbar .subnav-alt input.search-input {
            padding-right: 40px;
        }
    .feros-services__inner {
        padding: 0 10px;
    }
    .feros-services__input {
        font-size: 15px;
    }

    .feros-services__toggle {
        width: 50px;
        height: 50px;
        min-width: 50px;
    }
    body .mobile_navigation {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        height: auto;
        padding: 40px 40px 80px;
        font-weight: 700;
        background: #F9F7F6;
        flex-wrap:wrap;
        overflow: scroll;
    }
        body .mobile_navigation ul.navbar-nav {
            width: 100%;
        }
    .feros-why__wrapper {
        padding: 0 18px;
    }

    .feros-options {
        padding: 40px 25px 35px;
    }

    .feros-options__content {
        padding: 40px 15px 50px;
    }

    .feros-help__wrapper {
        padding: 40px 18px;
    }

    .feros-stories__options {
        padding: 0 16px;
    }

    .feros-app__content {
        padding: 270px 28px 70px;
    }

    .feros-footer__topbarWrapper {
        padding: 45px 16px;
    }
}

/* Background options */

.bg-White {
    background-color: white !important;
}

.bg-lGrey {
    background-color: var(--bg-primary) !important;
}

.bg-lLime {
    background-color: var(--bg-secondary) !important;
}

.bg-lGold {
    background-color: var(--accent-3) !important;
}

.bg-Lime {
    background-color: var(--primary) !important;
}

.bg-Magenta {
    background-color: var(--accent) !important;
}

.bg-lSapphire { background: rgba(11, 139, 190,0.2); }

.bg-dSapphire {
    background-color: var(--accent-4) !important;
}

.bg-dGrey { background-color: var(--text-primary) !important; }

.bg-Black80 { background-color: rgba(0,0,0,0.8); }

/* Text Colours */
.text-white {
    color: #ffffff !important;
}
.text-charcoal {
    color: var(--text-primary) !important;
}
.text-lime {
    color: var(--primary) !important;
}
.text-magenta,
.text-pink {
    color: var(--accent) !important;
}

/* Image classes */
img.no-round { 
    border-radius: 0 !important; 
}

img.round-img {
    border-radius: 50% !important;
}

/* Pagination */
.pagination {
    list-style: none !important;
}

.page-link {
    color: var(--text-primary);
}

.page-link:hover {
    background-color: var(--bg-primary);
    text-decoration: underline;
}

.page-item.active .page-link {
    border-color: var(--primary);
    background-color: var(--primary);
    font-weight: 700;
}

/* Breadcrumbs */
.breadcrumbs { display: none; }

/* Feedback */
.feedback {
    border-top: 4px solid #f7f7f7;
    padding: 40px 25px 60px;
    position: relative;
}

.feedback__title {
    color: #333;
    display: inline-block;
    font-size: 1.125rem;
    margin-right: 25px;
}

.feedback-fields {
    position: relative;
    z-index: 1;
}

.feedback-button {
    padding: 8px 15px 10px;
    margin-right: 5px;
  min-width:80px;
}

.feedback-button__title {
    color: var(--text-primary);
    font-size: .875rem;
    pointer-events: none;
    vertical-align: middle;
}

.feedback-button__icon {
  display: none;
}

.feedback-message {
    opacity: 0;
    position: absolute;
    top: 40px;
    -ms-transform: translateY(15px);
    transform: translateY(15px);
    transition: opacity .25s linear,transform .25s linear;
}

.feedback.answered .feedback-fields {
    visibility: hidden;
}

.feedback.answered .feedback-message {
    opacity: 1;
    -ms-transform: translateY(0);
    transform: translateY(0);
}

/* Tabs */
.nav-pills .nav-link.active, 
.nav-pills .show > .nav-link {
    background-color: var(--primary);
    color: var(--text-primary);
}
  
.nav-pills .nav-link:not(.active):hover {
    background-color: var(--bg-primary);
    color: var(--text-primary);
}

/* Accordion */
.accordion .card .card-header { 
    padding: 0; 
    background: white; 
}

.accordion .card .card-header button { 
    border: none; padding: 15px 20px; 
    display: -ms-flexbox; display: 
    flex; color: var(--text-primary); 
    width: 100%; 
    justify-content: space-between; 
    align-items: center; 
}

.accordion .card .card-header button:focus,
.accordion .card .card-header button:active{ outline: none; box-shadow: none; border-radius: 0;}

.accordion .card .card-header button:not(.collapsed) { background: var(--bg-secondary); }

/* Steps */
ol.steps {
    padding: 1px 0;
    counter-reset: steps;
    list-style: none
}

ol.steps li {
    background: #f7f7f7;
    padding: 30px 20px 20px;
    margin-top: 60px;
    margin-bottom: 90px;
    position: relative
}

ol.steps li:before {
    counter-increment: steps;
    content: counter(steps);
    width: 80px;
    height: 80px;
    background: #bdce3e;
    font-family: 'Panton Black',Arial,sans-serif;
    font-size: 36px;
    text-align: center;
    display: block;
    line-height: 80px;
    color: #474747;
    position: absolute;
    left: 50%;
    margin-left: -40px;
    top: -60px;
    border-radius: 40px
}

ol.steps li:last-child {
    margin-bottom: 0
}
@media screen and (min-width: 768px) {
  ol.steps li {
        padding: 40px 30px 30px
    }
}
@media screen and (min-width: 1024px) {
  ol.steps li {
        padding: 20px 30px 20px 45px;
        margin-left: 50px;
        margin-top: 30px;
        margin-bottom: 60px
    }

    ol.steps li:before {
        left: -50px;
        margin-left: 0;
        top: -30px
    }
}

/* explainer */
.explainer-helper {
    left: 29px;
    opacity: 0;
    position: fixed;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    transition: opacity .25s linear;
    z-index: 2
}

.explainer-helper.active {
    opacity: 1
}

.explainer-helper-list {
    -ms-flex-align: center;
    align-items: center;
    counter-reset: helper-counter;
    list-style: none;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    margin: 0;
    padding: 0;
    width: 22px
}

.explainer-helper-list:before {
    border-left: 3px dotted #b2b2b2;
    content: "";
    left: 10px;
    height: 100%;
    position: absolute;
    width: 1px
}

.explainer-helper-list-item {
    background-color: #fff;
    border: 2px solid #cc2f89;
    border-radius: 50%;
    height: 11px;
    margin-bottom: 15px;
    position: relative;
    width: 11px;
    transition: all .25s linear
}

.explainer-helper-list-item.active,.explainer-helper-list-item:focus,.explainer-helper-list-item:hover {
    background-color: #cc2f89;
    height: 18px;
    width: 18px
}

.explainer-helper-list-item.active a,.explainer-helper-list-item:focus a,.explainer-helper-list-item:hover a {
    opacity: 1
}

.explainer-helper-list-item:focus,.explainer-helper-list-item:hover {
    background-color: #d54a95
}

.explainer-helper-list-item:last-child {
    margin: 0
}

.explainer-helper-list-item a {
    color: #fff;
    font-family: "Panton Heavy",Arial,Sans-serif;
    font-size: .625rem;
    display: block;
    opacity: 0;
    line-height: .89em;
    left: 50%;
    padding: 7px 0;
    position: absolute;
    top: 50%;
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    text-align: center;
    text-decoration: none;
    transition: opacity .25s linear;
    width: 22px
}
 .explainer-overview {
    position: relative;
    z-index: 1;
    background-color: var(--bg-primary);
  padding: 30px;
  margin-bottom: 50px;
}

.explainer-overview .title,
.explainer-list .title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 20px;
  display:block;
}

@media screen and (min-width:768px) {
.explainer-overview .title,
.explainer-list .title {
  font-size: 1.3rem;
}
}

@media screen and (min-width:992px) {
.explainer-overview .title,
.explainer-list .title {
  font-size: 1.75rem;
}
}

.explainer-overview-list {
    counter-reset: overview-counter;
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative
}

.explainer-overview-list:before {
    border-left: 3px dotted #b2b2b2;
    content: "";
    left: 19px;
    height: 100%;
    position: absolute;
    width: 1px
}

.explainer-overview-list-item {
    padding: 7px 0;
    position: relative;
    margin-bottom: 17px
}

.explainer-overview-list-item:before {
    -ms-flex-align: center;
    align-items: center;
    background-color: #fff;
    height: 40px;
    border-radius: 50%;
    content: counter(overview-counter);
    counter-increment: overview-counter;
    color: #cc2f89;
    display: -ms-flexbox;
    display: flex;
    font-size: 1.125rem;
  font-weight: 700;
    -ms-flex-pack: center;
    justify-content: center;
    overflow: hidden;
    position: absolute;
    top: 0;
    width: 40px;
    line-height: .89em
}

.explainer-overview-list-item:last-child {
    margin: 0
}

.explainer-overview-list-item a {
    color: #cc2f89;
    font-size: 1.125rem;
    display: inline-block;
    padding-left: 65px;
    text-decoration: none
}

.explainer-overview-list-item a:focus,.explainer-overview-list-item a:hover {
    text-decoration: underline
} 

.explainer-list {
    counter-reset: main-counter;
    list-style: none;
    margin: 0 0 60px 0;
    padding: 0 0 0 60px
}

.explainer-list-item {
    position: relative;
  margin-bottom: 50px;
}

.explainer-list-item__title {
    position: relative
}

.explainer-list-item__title:before {
    -ms-flex-align: center;
    align-items: center;
    background-color: #ededed;
    border-radius: 50%;
    content: counter(main-counter);
    counter-increment: main-counter;
    height: 40px;
    left: -60px;
    color: #cc2f89;
    display: -ms-flexbox;
    display: flex;
  font-weight: 700;
    font-size: 1.125rem;
    -ms-flex-pack: center;
    justify-content: center;
    overflow: hidden;
    position: absolute;
    top: 0;
    width: 40px;
    line-height: .89em
}

.explainer-list-item-links {
    background-color: #f7f7f7;
    border-bottom: 3px solid #d4d4d4;
    padding: 30px;
    margin-bottom: 20px
}

.explainer-list-item-links-list,
.full-width-content .explainer-list-item-links-list{
    list-style: none;
    margin: 0;
    padding: 0
}

.explainer-list-item-links-list-item {
    margin: 10px 0;
    padding-left: 30px;
    position: relative
}

.explainer-list-item-links-list-item:before {
    background-repeat: no-repeat;
    background-position: center;
    content: "";
    display: block;
    height: 20px;
    left: 0;
    position: absolute;
    top: 3px;
    width: 20px
}

.explainer-list-item-links-list-item.doc:before {
    background-image: url(/assets/images/content/doc.svg)
}

.explainer-list-item-links-list-item.faq:before {
    background-image: url(/assets/images/content/faq.svg)
}

.explainer-list-item-links-list-item.tool:before {
    background-image: url(/assets/images/content/tools.svg)
}

.explainer-list-item-links-list-item.video:before {
    background-image: url(/assets/images/content/video.svg)
}

.explainer-list-item-links-list-item.link:before {
    background-image: url(/assets/images/content/link.svg)
}

.explainer-list-item-links-list-item a {
    color: #cc2f89;
    font-size: 1.125rem;
    text-decoration: none
}

.explainer-list-item-links-list-item a:focus,.explainer-list-item-links-list-item a:hover {
    text-decoration: underline
}

/* Contact sidebar */
.contact-sidebar {
    border: 1px solid #0c8bbe;
    border-radius: 30px;
  overflow: hidden;
  margin-bottom: 40px;
}

.contact-sidebar .sidebar-header {
    background: rgba(110,198,233,.2);
    padding: 20px
}

.contact-sidebar .sidebar-header h2 {
    text-align: center;
    font-size: 1.5rem;
    margin: 0 0 10px;
    text-transform: none
}

.contact-sidebar .sidebar-header p {
    margin: 0;
    font-size: 1rem
}

.contact-sidebar .sidebar-ctas ul {
    padding: 0;
    margin: 0;
  list-style: none;
}

.contact-sidebar .sidebar-ctas ul li {
    border-top: 1px solid #0c8bbe;
    text-align: center;
    font-size: 1.25rem;
    margin: 0
}

.contact-sidebar .sidebar-ctas ul li:before {
    content: none
}

.contact-sidebar .sidebar-ctas ul li a {
    display: block;
    padding: 15px 20px;
    color: #494949;
    text-decoration: none
}

.contact-sidebar .sidebar-ctas ul li a:hover {
    background: #0c8bbe;
    color: #fff
}

/* cta icon cards */
.cta-icon-card {
    text-decoration: none;
    color: #474747;
  font-weight: 700;
    max-width: 200px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.125rem;
    display: block;
    line-height: 1.25;
}

.cta-icon-card:hover {
    text-decoration: underline
}

.cta-icon-card .card__image img {
    display: block;
    margin: 0 auto
}

.cta-icon-card .card__title {
    text-align: center;
    margin-top: 15px
}

.cta-icon-card.theme-dark-lime:hover {
    color: #88b31b
}

.cta-icon-card.theme-dark-sapphire:hover {
    color: #0c8bbe
}

.cta-icon-card.theme-magenta:hover {
    color: #cc2f89
}

/* Userway */
.userway-wrap {
    position: fixed;
    width: 100%;
    z-index: 10
}

#userway-toggle {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: 2px solid #fff;
    box-shadow: 0 3px 5px rgba(0,0,0,.4);
    background: #0c8bbe url(/assets/images/content/accessibility-icon-white.svg) center center no-repeat; 
    position: fixed;
    top: 195px;
    right: 10px;
    z-index: 9;
}

#userway-toggle:hover {
    cursor: pointer
}

@media (max-height:600px) {
    #userway-toggle {
        top: 190px;
    }
}

/* Feros Testimonials */

.feros-testimonials-slider .feros-testimonial {
    box-shadow: 0 10px 15px rgba(0,0,0,0.1);
    border-radius: 50px;
    padding: 30px;
    margin: 30px 25px 40px;
    background-color: #ffffff;
  }
  
  .feros-testimonials-slider .feros-testimonial .testimonial-image img {
    border-radius: 50%;
    display: block;
    margin: 0 auto 15px;
  }
  
  .feros-testimonials-slider .feros-testimonial .testimonial .fa-quote-left {
      font-size: 40px;
      color: var(--primary);
  }
  
  .feros-testimonials-slider .feros-testimonial .testimonial .testimonial-quote {
      font-size: 1.25em;
  }
  
  .feros-testimonials-slider .feros-testimonial .testimonial .testimonial-author {
      margin-top: 6px;
  }
  
  .feros-testimonials-slider .feros-testimonial .testimonial .testimonial-author p {
      margin-bottom: 0;
  }
  
  .feros-testimonials-slider .carousel-control-next, 
  .feros-testimonials-slider .carousel-control-prev {
      color: var(--text-primary);
      font-size: 30px;
      width: 20px;
  }
  
  @media (min-width: 576px) {
      .feros-testimonials-slider .feros-testimonial {
          margin-left: 40px;
          margin-right: 40px;
          display: flex;
          align-items: center;
          flex-direction: row-reverse;
      }
  
      .feros-testimonials-slider .feros-testimonial .testimonial-image {
          width: 135px;
      }
  
      .feros-testimonials-slider .feros-testimonial .testimonial-image img {
          margin: 0;
      }
  
      .feros-testimonials-slider .feros-testimonial .testimonial-image + .testimonial {
          width: calc(100% - 135px);
          padding-right: 30px;
      }
  }
  
  @media (min-width: 992px) {
      .feros-testimonials-slider {
          max-width: 924px;
          margin-left: auto;
          margin-right: auto;
      }
      
      .feros-testimonials-slider .feros-testimonial {
          margin-left: 50px;
          margin-right: 50px;
          padding: 50px 60px;
      }
  
      .feros-testimonials-slider .feros-testimonial .testimonial .fa-quote-left {
          margin-bottom: 10px;
      }
  }

/* Scroll down link */

.scroll-down-link {
    position: absolute;
    left: 50%;
    bottom: 20px;
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    padding-left: 50px;
    z-index: 2;
    display: block;
    font-family: "Panton Bold",Arial,Sans-serif;
    text-decoration: none;
    color: #474747;
    letter-spacing: 2px
}

.scroll-down-link span {
    position: absolute;
    left: 0;
    top: 50%;
    width: 36px;
    height: 36px;
    margin-top: -18px;
    border: 2px solid #474747;
    border-radius: 100%;
    box-sizing: border-box
}

.scroll-down-link span:after {
    position: absolute;
    top: 50%;
    left: 50%;
    content: '';
    width: 11px;
    height: 11px;
    margin: -7px 0 0 -5px;
    border-left: 2px solid #474747;
    border-bottom: 2px solid #474747;
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    box-sizing: border-box
}

.scroll-down-link span:before {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    content: '';
    width: 32px;
    height: 32px;
    box-shadow: 0 0 0 0 rgba(71,71,71,.1);
    border-radius: 100%;
    opacity: 0;
    animation: sdb03b 3s infinite;
    box-sizing: border-box
}

.scroll-down-link.theme-white {
    color: #fff
}

.scroll-down-link.theme-white span {
    border-color: #fff
}

.scroll-down-link.theme-white span:after {
    border-left-color: #fff;
    border-bottom-color: #fff
}

.scroll-down-link.theme-white span:before {
    box-shadow: 0 0 0 0 rgba(255,255,255,.1);
    animation: sdb03w 3s infinite
}

.scroll-down-wrap {
    position: relative;
    overflow: hidden
}

@keyframes sdb03b {
    0% {
        opacity: 0
    }

    30% {
        opacity: 1
    }

    60% {
        box-shadow: 0 0 0 40px rgba(71,71,71,.1);
        opacity: 0
    }

    100% {
        opacity: 0
    }
}

@keyframes sdb03w {
    0% {
        opacity: 0
    }

    30% {
        opacity: 1
    }

    60% {
        box-shadow: 0 0 0 40px rgba(255,255,255,.1);
        opacity: 0
    }

    100% {
        opacity: 0
    }
}

/* Bootstrap overrides */
.row {
    margin-top: -15px;
    margin-bottom: -15px;
}

.col, .col-1, .col-10, .col-11, .col-12, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-auto, .col-lg, .col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-auto, .col-md, .col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-auto, .col-sm, .col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-auto, .col-xl, .col-xl-1, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-auto {
    padding-top: 15px;
    padding-bottom: 15px;
}

.modal-backdrop.show {
    opacity: 0.9;
}

.modal-header .close:hover {
    background: transparent;
    border: none;
}

/* Old template overrides */
.row-decorations { display: none; }
.hero.small {font-size: 1rem;}

/* Clarety override */
.clarety-lead-gen-widget,
.clarety-donate-widget {
    margin-top: 0
}

.clarety-lead-gen-widget .card {
    background: transparent;
    border: none
}

.clarety-lead-gen-widget .card-body {
    padding: 0
}

.clarety-lead-gen-widget .card-body form+div a {
    color: var(--text-primary);
    text-decoration: underline
}

.clarety-lead-gen-widget .card-body form+div a:hover {
    color: var(--accent);
}

.clarety-lead-gen-widget .form-control {
    background-color: #fff
}

.clarety-lead-gen-widget .btn-submit,
.clarety-donate-widget .btn-submit {
    width: auto;
    font-weight: 700;
    text-transform: none;
    border-radius: 30px;
}

.no-clarety-header .clarety-lead-gen-widget .panel-header {
    display: none
}
.clarety-lead-gen-widget .widget-step-indicator li.visited::after, 
.clarety-lead-gen-widget .widget-step-indicator li.visited > ::before, 
.clarety-lead-gen-widget .widget-step-indicator li.current > ::before, 
.clarety-donate-widget .widget-step-indicator li.visited::after, 
.clarety-donate-widget .widget-step-indicator li.visited > ::before, 
.clarety-donate-widget .widget-step-indicator li.current > ::before {color: var(--text-primary) !important;}
.clarety-donate-widget { padding-top: 23px !important; }
.clarety-lead-gen-widget { padding-top: 0 !important;}
.clarety-lead-gen-widget .widget-step-indicator li > ::before, .clarety-donate-widget .widget-step-indicator li > ::before {
    background-color: #ffffff !important;
    border: 1px solid rgba(0, 0, 0, 0.125);
}
.clarety-lead-gen-widget .widget-step-indicator li.visited::after, .clarety-lead-gen-widget .widget-step-indicator li.visited > ::before, .clarety-lead-gen-widget .widget-step-indicator li.current > ::before, .clarety-donate-widget .widget-step-indicator li.visited::after, .clarety-donate-widget .widget-step-indicator li.visited > ::before, .clarety-donate-widget .widget-step-indicator li.current > ::before {
    background-color: #BCD02E !important;
    border-color: #BCD02E;
}
.clarety-lead-gen-widget .price-handles .suggested-amount--selected, .clarety-donate-widget .price-handles .suggested-amount--selected {
    background-color: var(--bg-secondary) !important;
}
.clarety-lead-gen-widget .widget-step-indicator li.visited::after, .clarety-lead-gen-widget .widget-step-indicator li.visited > ::before, .clarety-lead-gen-widget .widget-step-indicator li.current > ::before, .clarety-donate-widget .widget-step-indicator li.visited::after, .clarety-donate-widget .widget-step-indicator li.visited > ::before, .clarety-donate-widget .widget-step-indicator li.current > ::before {
    background-color: var(--primary) !important;
}

.clarety-lead-gen-widget input#coverFees, .clarety-donate-widget input#coverFees,
.clarety-lead-gen-widget input[type="checkbox"] {
    left: 0;
    top: 7px;
}