/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary variables that control standard elements
in the pages. This is also the file that loads all of the other themed CSS
styleshets into just this one in each of themed templates.
*********************************************************************************
****************************************************************************** */











































:root {
    --column-gap: 12px;
    --site-width: 1440px;
    --rk-off-white: #F7F7F7;
    --rk-blue: #28ACFF;
    --rk-purple: #8A2DD3;
    --rk-pink: #FF33B1;
    --rk-teal: #00D0AB;
    --rk-dark-blue: #4C19C7;
    --blue-grad-l: #71E8FF;
    --blue-grad-r: #36B7FF;
    --blue-dash: #A19CBD;
    --roketto-font: "Rogan-Bold", Arial, sans-serif;
    --rk-deep-blue: #070645;
}
.rk-underline {
    background-image: url("data:image/svg+xml;utf8,\
    <svg xmlns='http://www.w3.org/2000/svg' width='100%' height='18'>\
      <rect x='0' y='0' width='100%' height='18' rx='10' ry='10' fill='rgba(0,0,0,0.4)' />\
    </svg>");
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: 0 0.85em;
    background-blend-mode: soft-light;
}

.tac {
    text-align: center;
}


span[data-underline] {
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: 0 0.85em;
}

span[data-underline="purple"] {
    background-image: url("data:image/svg+xml;utf8,\
            <svg xmlns='http://www.w3.org/2000/svg' width='100%' height='6'>\
              <rect x='0' y='0' width='100%' height='6' rx='10' ry='10' fill='%238A2DD3' />\
            </svg>");
}

span[data-underline="blue"] {
    background-image: url("data:image/svg+xml;utf8,\
            <svg xmlns='http://www.w3.org/2000/svg' width='100%' height='6'>\
              <rect x='0' y='0' width='100%' height='6' rx='10' ry='10' fill='%2328ACFF' />\
            </svg>");
}

span[data-underline="pink"] {
    background-image: url("data:image/svg+xml;utf8,\
            <svg xmlns='http://www.w3.org/2000/svg' width='100%' height='6'>\
              <rect x='0' y='0' width='100%' height='6' rx='10' ry='10' fill='%23FF33B1' />\
            </svg>");
}

span[data-underline="teal"] {
    background-image: url("data:image/svg+xml;utf8,\
            <svg xmlns='http://www.w3.org/2000/svg' width='100%' height='6'>\
              <rect x='0' y='0' width='100%' height='6' rx='10' ry='10' fill='%2300D0AB' />\
            </svg>");
}

body .fancy-form-inputs {
    fieldset {
        max-width: unset;
    }

    .hs-form-field {
        position: relative;

        &.has-focus-or-content {
            &>label {
                font-size: 12px;
                top: 8px;
                opacity: 0.5;
            }
        }

        &>label {
            position: absolute;
            top: 17px;
            left: 30px;
            pointer-events: none;
            color: black;
            transition: all 0.15s ease-in-out;
        }


        input,
        select,
        textarea {
            transition: unset;

            &:focus {
                outline: 3px solid var(--rk-teal) !important;
            }
        }

        input,
        select {
            border-radius: 50px;
            height: 61px;
            padding-top: 24px;
            padding-left: 30px;
            padding-right: 30px;
        }

        select {
            color: black;
        }

        &.hs-fieldtype-select {
            &>label {
                font-size: 12px;
                top: 5px;
                opacity: 0.5;
            }
        }

        textarea {
            border-radius: 26px;
            min-height: 165px;
            padding-top: 30px;
            padding-left: 30px;
            padding-right: 30px;
        }
    }

    .hs-submit {
        .actions {
            text-align: center;
        }
    }

    .form-columns-2 {
        display: flex;
        gap: 10px;
        flex-wrap: wrap;

        &>div {
            flex: 0 0 100%;
            max-width: 100%;
        }
    }

    @media screen and (min-width:768px) {
        .form-columns-2 {
            flex-wrap: unset;

            &>div {
                flex: unset;
                max-width: unset;
            }
        }
    }
}
.rk-container {
    max-width: var(--site-width);
    padding-left: var(--column-gap);
    padding-right: var(--column-gap);
    margin: 0 auto;
}

@media screen and (min-width:768px) {
    .rk-container {
        padding-left: 40px;
        padding-right: 40px;
    }
}

.rk-row {
    display: flex;
    flex-wrap: wrap;
    box-sizing: border-box;
    margin-left: calc(var(--column-gap) * -1);
    margin-right: calc(var(--column-gap) * -1);

    &.justify-content-center {
        justify-content: center;
    }

    &.justify-content-space-between {
        justify-content: space-between;
    }

    &.justify-content-end {
        justify-content: flex-end;
    }

    &.justify-content-start {
        justify-content: flex-start;
    }

    &.align-items-center {
        align-items: center;
    }

    &.align-items-end {
        align-items: flex-end;
    }
    @media screen and (min-width: 768px) {
        &.flex-md-row-reverse {
            flex-direction: row-reverse;
        }
    }
}

[class*='rk-col-'] {
    padding-left: var(--column-gap);
    padding-right: var(--column-gap);
    flex: 0 0 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.mb-12 {
    margin-bottom: 12px;
}

.mb-24 {
    margin-bottom: 24px;
}

.mb-48 {
    margin-bottom:48px;
}
.rk-col-1 {
    flex: 0 0 calc((100% / 12) * 1);
    max-width: calc((100% / 12) * 1);
}

.rk-col-2 {
    flex: 0 0 calc((100% / 12) * 2);
    max-width: calc((100% / 12) * 2);
}

.rk-col-3 {
    flex: 0 0 calc((100% / 12) * 3);
    max-width: calc((100% / 12) * 3);
}

.rk-col-4 {
    flex: 0 0 calc((100% / 12) * 4);
    max-width: calc((100% / 12) * 4);
}

.rk-col-5 {
    flex: 0 0 calc((100% / 12) * 5);
    max-width: calc((100% / 12) * 5);
}

.rk-col-6 {
    flex: 0 0 calc((100% / 12) * 6);
    max-width: calc((100% / 12) * 6);
}

.rk-col-7 {
    flex: 0 0 calc((100% / 12) * 7);
    max-width: calc((100% / 12) * 7);
}

.rk-col-8 {
    flex: 0 0 calc((100% / 12) * 8);
    max-width: calc((100% / 12) * 8);
}

.rk-col-9 {
    flex: 0 0 calc((100% / 12) * 9);
    max-width: calc((100% / 12) * 9);
}

.rk-col-10 {
    flex: 0 0 calc((100% / 12) * 10);
    max-width: calc((100% / 12) * 10);
}

.rk-col-11 {
    flex: 0 0 calc((100% / 12) * 11);
    max-width: calc((100% / 12) * 11);
}

.rk-col-12 {
    flex: 0 0 calc((100% / 12) * 12);
    max-width: calc((100% / 12) * 12);
}

@media (min-width: 768px) {
    .mb-md-0 {
        margin-bottom: 0;
    }

    .rk-col-md-1 {
        flex: 0 0 calc((100% / 12) * 1);
        max-width: calc((100% / 12) * 1);
    }

    .rk-col-md-2 {
        flex: 0 0 calc((100% / 12) * 2);
        max-width: calc((100% / 12) * 2);
    }

    .rk-col-md-3 {
        flex: 0 0 calc((100% / 12) * 3);
        max-width: calc((100% / 12) * 3);
    }

    .rk-col-md-4 {
        flex: 0 0 calc((100% / 12) * 4);
        max-width: calc((100% / 12) * 4);
    }

    .rk-col-md-5 {
        flex: 0 0 calc((100% / 12) * 5);
        max-width: calc((100% / 12) * 5);
    }

    .rk-col-md-6 {
        flex: 0 0 calc((100% / 12) * 6);
        max-width: calc((100% / 12) * 6);
    }

    .rk-col-md-7 {
        flex: 0 0 calc((100% / 12) * 7);
        max-width: calc((100% / 12) * 7);
    }

    .rk-col-md-8 {
        flex: 0 0 calc((100% / 12) * 8);
        max-width: calc((100% / 12) * 8);
    }

    .rk-col-md-9 {
        flex: 0 0 calc((100% / 12) * 9);
        max-width: calc((100% / 12) * 9);
    }

    .rk-col-md-10 {
        flex: 0 0 calc((100% / 12) * 10);
        max-width: calc((100% / 12) * 10);
    }

    .rk-col-md-11 {
        flex: 0 0 calc((100% / 12) * 11);
        max-width: calc((100% / 12) * 11);
    }

    .rk-col-md-12 {
        flex: 0 0 calc((100% / 12) * 12);
        max-width: calc((100% / 12) * 12);
    }
}

@media (min-width: 1024px) {
    .mb-lg-0 {
        margin-bottom: 0;
    }

    .rk-col-lg-1 {
        flex: 0 0 calc((100% / 12) * 1);
        max-width: calc((100% / 12) * 1);
    }

    .rk-col-lg-2 {
        flex: 0 0 calc((100% / 12) * 2);
        max-width: calc((100% / 12) * 2);
    }

    .rk-col-lg-3 {
        flex: 0 0 calc((100% / 12) * 3);
        max-width: calc((100% / 12) * 3);
    }

    .rk-col-lg-4 {
        flex: 0 0 calc((100% / 12) * 4);
        max-width: calc((100% / 12) * 4);
    }

    .rk-col-lg-5 {
        flex: 0 0 calc((100% / 12) * 5);
        max-width: calc((100% / 12) * 5);
    }

    .rk-col-lg-6 {
        flex: 0 0 calc((100% / 12) * 6);
        max-width: calc((100% / 12) * 6);
    }

    .rk-col-lg-7 {
        flex: 0 0 calc((100% / 12) * 7);
        max-width: calc((100% / 12) * 7);
    }

    .rk-col-lg-8 {
        flex: 0 0 calc((100% / 12) * 8);
        max-width: calc((100% / 12) * 8);
    }

    .rk-col-lg-9 {
        flex: 0 0 calc((100% / 12) * 9);
        max-width: calc((100% / 12) * 9);
    }

    .rk-col-lg-10 {
        flex: 0 0 calc((100% / 12) * 10);
        max-width: calc((100% / 12) * 10);
    }

    .rk-col-lg-11 {
        flex: 0 0 calc((100% / 12) * 11);
        max-width: calc((100% / 12) * 11);
    }

    .rk-col-lg-12 {
        flex: 0 0 calc((100% / 12) * 12);
        max-width: calc((100% / 12) * 12);
    }
}
.rk-button {
    font-family: "Rogan-Bold", Arial, sans-serif;
    font-size: 18px;
    font-weight: bold;
    background-color: transparent;
    color: #fff;
    border-style: solid;
    border-width: 2px;
    text-align: center;
    letter-spacing: 0;
    line-height: 1.2 !important;
    min-height: 50px !important;
    padding: 13px 30px;
    position: relative;
    box-sizing: border-box !important;
    -webkit-box-sizing: border-box !important;
    -moz-box-sizing: border-box !important;
    vertical-align: middle !important;
    display: inline-block;
    border-radius: 100px;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    transition: all 0.3s ease-in-out;

    &.purple {
        background-color: var(--rk-purple);
        border-color: var(--rk-purple);
    }

    &.pink {
        background-color: var(--rk-pink);
        border-color: var(--rk-pink);
    }

    &.blue {
        background-color: var(--rk-blue);
        border-color: var(--rk-blue);
    }

    &.teal {
        background-color: var(--rk-teal);
        border-color: var(--rk-teal);
    }

    &.white-outline {
        background-color: transparent;
        border: 2px solid white;
    }

    &.hover-wo {
        &:focus,
        &:hover {
            background-color: transparent;
            border: 2px solid white;
            color:white;
        }
    }

}
/* ******************************************************************************
*********************************************************************************
The intention of this file is to reset most of the different browser, built-in
CSS styles, so that it is an empty canvas for the themed specific stylesheets.
*********************************************************************************
****************************************************************************** */

*, *:before, *:after {
  box-sizing: border-box;
}
/* ******************************************************************************
*********************************************************************************
The intention of this file is to makes browsers render all elements more
consistently and in line with modern standards.
It precisely targets only the styles that need normalizing.
*********************************************************************************
****************************************************************************** */


/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
   ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */

html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */

/**
 * Remove the margin in all browsers.
 */

body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */

main {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */

hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */

/**
 * Remove the gray background on active links in IE 10.
 */

a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */

abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */

b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */

small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */

/**
 * Remove the border on images inside links in IE 10.
 */

img {
  border-style: none;
}

/* Forms
   ========================================================================== */

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */

button,
input { /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */

button,
select { /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */

legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */

progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */

textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */

[type="checkbox"],
[type="radio"] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */

[type="search"] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */

/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */

details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */

summary {
  display: list-item;
}

/* Misc
   ========================================================================== */

/**
 * Add the correct display in IE 10+.
 */

template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */

[hidden] {
  display: none;
}
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your
Drag and Drop (DND) sections look when editing content in the page editor.
*********************************************************************************
****************************************************************************** */

dnd-section {
  padding: 80px 20px;
}
.banner-area .dnd-section {
  padding: 0;
}
.dnd-section[class*="full-width"] {
    padding: 0;
}

.dnd-section[class*="full-width"]>.row-fluid {
    max-width: 100%;
    padding: 0;
}
.dnd-section > .row-fluid {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
    padding-right: 20px;
}



@media (max-width: 767px) {
  .dnd-section .widget-type-cell {
    padding-left: 0px;
    padding-right: 0px;
  }
}
/*!
 *  Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */
/* FONT PATH
 * -------------------------- */
@font-face {
  font-family: 'FontAwesome';
  src: url('//2886534.fs1.hubspotusercontent-na1.net/hubfs/2886534/Roketto_July2020/fonts/fontawesome-webfont.eot');
  src: url('//2886534.fs1.hubspotusercontent-na1.net/hubfs/2886534/Roketto_July2020/fonts/fontawesome-webfont.eot') format('embedded-opentype'), 
    url(//2886534.fs1.hubspotusercontent-na1.net/hubfs/2886534/raw_assets/public/Roketto_July2020/fonts/fontawesome-webfont.woff2) format('woff2'),
    url(//2886534.fs1.hubspotusercontent-na1.net/hubfs/2886534/raw_assets/public/Roketto_July2020/fonts/fontawesome-webfont.woff) format('woff'), 
    url(//2886534.fs1.hubspotusercontent-na1.net/hubfs/2886534/raw_assets/public/Roketto_July2020/fonts/fontawesome-webfont.ttf) format('truetype');
  font-weight: normal;
  font-style: normal;
}

.fa {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
/* makes the font 33% larger relative to the icon container */
.fa-lg {
  font-size: 1.33333333em;
  line-height: 0.75em;
  vertical-align: -15%;
}
.fa-2x {
  font-size: 2em;
}
.fa-3x {
  font-size: 3em;
}
.fa-4x {
  font-size: 4em;
}
.fa-5x {
  font-size: 5em;
}
.fa-fw {
  width: 1.28571429em;
  text-align: center;
}
.fa-ul {
  padding-left: 0;
  margin-left: 2.14285714em;
  list-style-type: none;
}
.fa-ul > li {
  position: relative;
}
.fa-li {
  position: absolute;
  left: -2.14285714em;
  width: 2.14285714em;
  top: 0.14285714em;
  text-align: center;
}
.fa-li.fa-lg {
  left: -1.85714286em;
}
.fa-border {
  padding: .2em .25em .15em;
  border: solid 0.08em #eeeeee;
  border-radius: .1em;
}
.fa-pull-left {
  float: left;
}
.fa-pull-right {
  float: right;
}
.fa.fa-pull-left {
  margin-right: .3em;
}
.fa.fa-pull-right {
  margin-left: .3em;
}
/* Deprecated as of 4.4.0 */
.pull-right {
  float: right;
}
.pull-left {
  float: left;
}
.fa.pull-left {
  margin-right: .3em;
}
.fa.pull-right {
  margin-left: .3em;
}
.fa-spin {
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
}
.fa-pulse {
  -webkit-animation: fa-spin 1s infinite steps(8);
  animation: fa-spin 1s infinite steps(8);
}
@-webkit-keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
.fa-rotate-90 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}
.fa-rotate-180 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.fa-rotate-270 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
  -webkit-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  transform: rotate(270deg);
}
.fa-flip-horizontal {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
  -webkit-transform: scale(-1, 1);
  -ms-transform: scale(-1, 1);
  transform: scale(-1, 1);
}
.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  -webkit-transform: scale(1, -1);
  -ms-transform: scale(1, -1);
  transform: scale(1, -1);
}
:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical {
  filter: none;
}
.fa-stack {
  position: relative;
  display: inline-block;
  width: 2em;
  height: 2em;
  line-height: 2em;
  vertical-align: middle;
}
.fa-stack-1x,
.fa-stack-2x {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
}
.fa-stack-1x {
  line-height: inherit;
}
.fa-stack-2x {
  font-size: 2em;
}
.fa-inverse {
  color: #ffffff;
}
/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
   readers do not read off random characters that represent icons */
.fa-glass:before {
  content: "\f000";
}
.fa-music:before {
  content: "\f001";
}
.fa-search:before {
  content: "\f002";
}
.fa-envelope-o:before {
  content: "\f003";
}
.fa-heart:before {
  content: "\f004";
}
.fa-star:before {
  content: "\f005";
}
.fa-star-o:before {
  content: "\f006";
}
.fa-user:before {
  content: "\f007";
}
.fa-film:before {
  content: "\f008";
}
.fa-th-large:before {
  content: "\f009";
}
.fa-th:before {
  content: "\f00a";
}
.fa-th-list:before {
  content: "\f00b";
}
.fa-check:before {
  content: "\f00c";
}
.fa-remove:before,
.fa-close:before,
.fa-times:before {
  content: "\f00d";
}
.fa-search-plus:before {
  content: "\f00e";
}
.fa-search-minus:before {
  content: "\f010";
}
.fa-power-off:before {
  content: "\f011";
}
.fa-signal:before {
  content: "\f012";
}
.fa-gear:before,
.fa-cog:before {
  content: "\f013";
}
.fa-trash-o:before {
  content: "\f014";
}
.fa-home:before {
  content: "\f015";
}
.fa-file-o:before {
  content: "\f016";
}
.fa-clock-o:before {
  content: "\f017";
}
.fa-road:before {
  content: "\f018";
}
.fa-download:before {
  content: "\f019";
}
.fa-arrow-circle-o-down:before {
  content: "\f01a";
}
.fa-arrow-circle-o-up:before {
  content: "\f01b";
}
.fa-inbox:before {
  content: "\f01c";
}
.fa-play-circle-o:before {
  content: "\f01d";
}
.fa-rotate-right:before,
.fa-repeat:before {
  content: "\f01e";
}
.fa-refresh:before {
  content: "\f021";
}
.fa-list-alt:before {
  content: "\f022";
}
.fa-lock:before {
  content: "\f023";
}
.fa-flag:before {
  content: "\f024";
}
.fa-headphones:before {
  content: "\f025";
}
.fa-volume-off:before {
  content: "\f026";
}
.fa-volume-down:before {
  content: "\f027";
}
.fa-volume-up:before {
  content: "\f028";
}
.fa-qrcode:before {
  content: "\f029";
}
.fa-barcode:before {
  content: "\f02a";
}
.fa-tag:before {
  content: "\f02b";
}
.fa-tags:before {
  content: "\f02c";
}
.fa-book:before {
  content: "\f02d";
}
.fa-bookmark:before {
  content: "\f02e";
}
.fa-print:before {
  content: "\f02f";
}
.fa-camera:before {
  content: "\f030";
}
.fa-font:before {
  content: "\f031";
}
.fa-bold:before {
  content: "\f032";
}
.fa-italic:before {
  content: "\f033";
}
.fa-text-height:before {
  content: "\f034";
}
.fa-text-width:before {
  content: "\f035";
}
.fa-align-left:before {
  content: "\f036";
}
.fa-align-center:before {
  content: "\f037";
}
.fa-align-right:before {
  content: "\f038";
}
.fa-align-justify:before {
  content: "\f039";
}
.fa-list:before {
  content: "\f03a";
}
.fa-dedent:before,
.fa-outdent:before {
  content: "\f03b";
}
.fa-indent:before {
  content: "\f03c";
}
.fa-video-camera:before {
  content: "\f03d";
}
.fa-photo:before,
.fa-image:before,
.fa-picture-o:before {
  content: "\f03e";
}
.fa-pencil:before {
  content: "\f040";
}
.fa-map-marker:before {
  content: "\f041";
}
.fa-adjust:before {
  content: "\f042";
}
.fa-tint:before {
  content: "\f043";
}
.fa-edit:before,
.fa-pencil-square-o:before {
  content: "\f044";
}
.fa-share-square-o:before {
  content: "\f045";
}
.fa-check-square-o:before {
  content: "\f046";
}
.fa-arrows:before {
  content: "\f047";
}
.fa-step-backward:before {
  content: "\f048";
}
.fa-fast-backward:before {
  content: "\f049";
}
.fa-backward:before {
  content: "\f04a";
}
.fa-play:before {
  content: "\f04b";
}
.fa-pause:before {
  content: "\f04c";
}
.fa-stop:before {
  content: "\f04d";
}
.fa-forward:before {
  content: "\f04e";
}
.fa-fast-forward:before {
  content: "\f050";
}
.fa-step-forward:before {
  content: "\f051";
}
.fa-eject:before {
  content: "\f052";
}
.fa-chevron-left:before {
  content: "\f053";
}
.fa-chevron-right:before {
  content: "\f054";
}
.fa-plus-circle:before {
  content: "\f055";
}
.fa-minus-circle:before {
  content: "\f056";
}
.fa-times-circle:before {
  content: "\f057";
}
.fa-check-circle:before {
  content: "\f058";
}
.fa-question-circle:before {
  content: "\f059";
}
.fa-info-circle:before {
  content: "\f05a";
}
.fa-crosshairs:before {
  content: "\f05b";
}
.fa-times-circle-o:before {
  content: "\f05c";
}
.fa-check-circle-o:before {
  content: "\f05d";
}
.fa-ban:before {
  content: "\f05e";
}
.fa-arrow-left:before {
  content: "\f060";
}
.fa-arrow-right:before {
  content: "\f061";
}
.fa-arrow-up:before {
  content: "\f062";
}
.fa-arrow-down:before {
  content: "\f063";
}
.fa-mail-forward:before,
.fa-share:before {
  content: "\f064";
}
.fa-expand:before {
  content: "\f065";
}
.fa-compress:before {
  content: "\f066";
}
.fa-plus:before {
  content: "\f067";
}
.fa-minus:before {
  content: "\f068";
}
.fa-asterisk:before {
  content: "\f069";
}
.fa-exclamation-circle:before {
  content: "\f06a";
}
.fa-gift:before {
  content: "\f06b";
}
.fa-leaf:before {
  content: "\f06c";
}
.fa-fire:before {
  content: "\f06d";
}
.fa-eye:before {
  content: "\f06e";
}
.fa-eye-slash:before {
  content: "\f070";
}
.fa-warning:before,
.fa-exclamation-triangle:before {
  content: "\f071";
}
.fa-plane:before {
  content: "\f072";
}
.fa-calendar:before {
  content: "\f073";
}
.fa-random:before {
  content: "\f074";
}
.fa-comment:before {
  content: "\f075";
}
.fa-magnet:before {
  content: "\f076";
}
.fa-chevron-up:before {
  content: "\f077";
}
.fa-chevron-down:before {
  content: "\f078";
}
.fa-retweet:before {
  content: "\f079";
}
.fa-shopping-cart:before {
  content: "\f07a";
}
.fa-folder:before {
  content: "\f07b";
}
.fa-folder-open:before {
  content: "\f07c";
}
.fa-arrows-v:before {
  content: "\f07d";
}
.fa-arrows-h:before {
  content: "\f07e";
}
.fa-bar-chart-o:before,
.fa-bar-chart:before {
  content: "\f080";
}
.fa-twitter-square:before {
  content: "\f081";
}
.fa-facebook-square:before {
  content: "\f082";
}
.fa-camera-retro:before {
  content: "\f083";
}
.fa-key:before {
  content: "\f084";
}
.fa-gears:before,
.fa-cogs:before {
  content: "\f085";
}
.fa-comments:before {
  content: "\f086";
}
.fa-thumbs-o-up:before {
  content: "\f087";
}
.fa-thumbs-o-down:before {
  content: "\f088";
}
.fa-star-half:before {
  content: "\f089";
}
.fa-heart-o:before {
  content: "\f08a";
}
.fa-sign-out:before {
  content: "\f08b";
}
.fa-linkedin-square:before {
  content: "\f08c";
}
.fa-thumb-tack:before {
  content: "\f08d";
}
.fa-external-link:before {
  content: "\f08e";
}
.fa-sign-in:before {
  content: "\f090";
}
.fa-trophy:before {
  content: "\f091";
}
.fa-github-square:before {
  content: "\f092";
}
.fa-upload:before {
  content: "\f093";
}
.fa-lemon-o:before {
  content: "\f094";
}
.fa-phone:before {
  content: "\f095";
}
.fa-square-o:before {
  content: "\f096";
}
.fa-bookmark-o:before {
  content: "\f097";
}
.fa-phone-square:before {
  content: "\f098";
}
.fa-twitter:before {
  content: "\f099";
}
.fa-facebook-f:before,
.fa-facebook:before {
  content: "\f09a";
}
.fa-github:before {
  content: "\f09b";
}
.fa-unlock:before {
  content: "\f09c";
}
.fa-credit-card:before {
  content: "\f09d";
}
.fa-feed:before,
.fa-rss:before {
  content: "\f09e";
}
.fa-hdd-o:before {
  content: "\f0a0";
}
.fa-bullhorn:before {
  content: "\f0a1";
}
.fa-bell:before {
  content: "\f0f3";
}
.fa-certificate:before {
  content: "\f0a3";
}
.fa-hand-o-right:before {
  content: "\f0a4";
}
.fa-hand-o-left:before {
  content: "\f0a5";
}
.fa-hand-o-up:before {
  content: "\f0a6";
}
.fa-hand-o-down:before {
  content: "\f0a7";
}
.fa-arrow-circle-left:before {
  content: "\f0a8";
}
.fa-arrow-circle-right:before {
  content: "\f0a9";
}
.fa-arrow-circle-up:before {
  content: "\f0aa";
}
.fa-arrow-circle-down:before {
  content: "\f0ab";
}
.fa-globe:before {
  content: "\f0ac";
}
.fa-wrench:before {
  content: "\f0ad";
}
.fa-tasks:before {
  content: "\f0ae";
}
.fa-filter:before {
  content: "\f0b0";
}
.fa-briefcase:before {
  content: "\f0b1";
}
.fa-arrows-alt:before {
  content: "\f0b2";
}
.fa-group:before,
.fa-users:before {
  content: "\f0c0";
}
.fa-chain:before,
.fa-link:before {
  content: "\f0c1";
}
.fa-cloud:before {
  content: "\f0c2";
}
.fa-flask:before {
  content: "\f0c3";
}
.fa-cut:before,
.fa-scissors:before {
  content: "\f0c4";
}
.fa-copy:before,
.fa-files-o:before {
  content: "\f0c5";
}
.fa-paperclip:before {
  content: "\f0c6";
}
.fa-save:before,
.fa-floppy-o:before {
  content: "\f0c7";
}
.fa-square:before {
  content: "\f0c8";
}
.fa-navicon:before,
.fa-reorder:before,
.fa-bars:before {
  content: "\f0c9";
}
.fa-list-ul:before {
  content: "\f0ca";
}
.fa-list-ol:before {
  content: "\f0cb";
}
.fa-strikethrough:before {
  content: "\f0cc";
}
.fa-underline:before {
  content: "\f0cd";
}
.fa-table:before {
  content: "\f0ce";
}
.fa-magic:before {
  content: "\f0d0";
}
.fa-truck:before {
  content: "\f0d1";
}
.fa-pinterest:before {
  content: "\f0d2";
}
.fa-pinterest-square:before {
  content: "\f0d3";
}
.fa-google-plus-square:before {
  content: "\f0d4";
}
.fa-google-plus:before {
  content: "\f0d5";
}
.fa-money:before {
  content: "\f0d6";
}
.fa-caret-down:before {
  content: "\f0d7";
}
.fa-caret-up:before {
  content: "\f0d8";
}
.fa-caret-left:before {
  content: "\f0d9";
}
.fa-caret-right:before {
  content: "\f0da";
}
.fa-columns:before {
  content: "\f0db";
}
.fa-unsorted:before,
.fa-sort:before {
  content: "\f0dc";
}
.fa-sort-down:before,
.fa-sort-desc:before {
  content: "\f0dd";
}
.fa-sort-up:before,
.fa-sort-asc:before {
  content: "\f0de";
}
.fa-envelope:before {
  content: "\f0e0";
}
.fa-linkedin:before {
  content: "\f0e1";
}
.fa-rotate-left:before,
.fa-undo:before {
  content: "\f0e2";
}
.fa-legal:before,
.fa-gavel:before {
  content: "\f0e3";
}
.fa-dashboard:before,
.fa-tachometer:before {
  content: "\f0e4";
}
.fa-comment-o:before {
  content: "\f0e5";
}
.fa-comments-o:before {
  content: "\f0e6";
}
.fa-flash:before,
.fa-bolt:before {
  content: "\f0e7";
}
.fa-sitemap:before {
  content: "\f0e8";
}
.fa-umbrella:before {
  content: "\f0e9";
}
.fa-paste:before,
.fa-clipboard:before {
  content: "\f0ea";
}
.fa-lightbulb-o:before {
  content: "\f0eb";
}
.fa-exchange:before {
  content: "\f0ec";
}
.fa-cloud-download:before {
  content: "\f0ed";
}
.fa-cloud-upload:before {
  content: "\f0ee";
}
.fa-user-md:before {
  content: "\f0f0";
}
.fa-stethoscope:before {
  content: "\f0f1";
}
.fa-suitcase:before {
  content: "\f0f2";
}
.fa-bell-o:before {
  content: "\f0a2";
}
.fa-coffee:before {
  content: "\f0f4";
}
.fa-cutlery:before {
  content: "\f0f5";
}
.fa-file-text-o:before {
  content: "\f0f6";
}
.fa-building-o:before {
  content: "\f0f7";
}
.fa-hospital-o:before {
  content: "\f0f8";
}
.fa-ambulance:before {
  content: "\f0f9";
}
.fa-medkit:before {
  content: "\f0fa";
}
.fa-fighter-jet:before {
  content: "\f0fb";
}
.fa-beer:before {
  content: "\f0fc";
}
.fa-h-square:before {
  content: "\f0fd";
}
.fa-plus-square:before {
  content: "\f0fe";
}
.fa-angle-double-left:before {
  content: "\f100";
}
.fa-angle-double-right:before {
  content: "\f101";
}
.fa-angle-double-up:before {
  content: "\f102";
}
.fa-angle-double-down:before {
  content: "\f103";
}
.fa-angle-left:before {
  content: "\f104";
}
.fa-angle-right:before {
  content: "\f105";
}
.fa-angle-up:before {
  content: "\f106";
}
.fa-angle-down:before {
  content: "\f107";
}
.fa-desktop:before {
  content: "\f108";
}
.fa-laptop:before {
  content: "\f109";
}
.fa-tablet:before {
  content: "\f10a";
}
.fa-mobile-phone:before,
.fa-mobile:before {
  content: "\f10b";
}
.fa-circle-o:before {
  content: "\f10c";
}
.fa-quote-left:before {
  content: "\f10d";
}
.fa-quote-right:before {
  content: "\f10e";
}
.fa-spinner:before {
  content: "\f110";
}
.fa-circle:before {
  content: "\f111";
}
.fa-mail-reply:before,
.fa-reply:before {
  content: "\f112";
}
.fa-github-alt:before {
  content: "\f113";
}
.fa-folder-o:before {
  content: "\f114";
}
.fa-folder-open-o:before {
  content: "\f115";
}
.fa-smile-o:before {
  content: "\f118";
}
.fa-frown-o:before {
  content: "\f119";
}
.fa-meh-o:before {
  content: "\f11a";
}
.fa-gamepad:before {
  content: "\f11b";
}
.fa-keyboard-o:before {
  content: "\f11c";
}
.fa-flag-o:before {
  content: "\f11d";
}
.fa-flag-checkered:before {
  content: "\f11e";
}
.fa-terminal:before {
  content: "\f120";
}
.fa-code:before {
  content: "\f121";
}
.fa-mail-reply-all:before,
.fa-reply-all:before {
  content: "\f122";
}
.fa-star-half-empty:before,
.fa-star-half-full:before,
.fa-star-half-o:before {
  content: "\f123";
}
.fa-location-arrow:before {
  content: "\f124";
}
.fa-crop:before {
  content: "\f125";
}
.fa-code-fork:before {
  content: "\f126";
}
.fa-unlink:before,
.fa-chain-broken:before {
  content: "\f127";
}
.fa-question:before {
  content: "\f128";
}
.fa-info:before {
  content: "\f129";
}
.fa-exclamation:before {
  content: "\f12a";
}
.fa-superscript:before {
  content: "\f12b";
}
.fa-subscript:before {
  content: "\f12c";
}
.fa-eraser:before {
  content: "\f12d";
}
.fa-puzzle-piece:before {
  content: "\f12e";
}
.fa-microphone:before {
  content: "\f130";
}
.fa-microphone-slash:before {
  content: "\f131";
}
.fa-shield:before {
  content: "\f132";
}
.fa-calendar-o:before {
  content: "\f133";
}
.fa-fire-extinguisher:before {
  content: "\f134";
}
.fa-rocket:before {
  content: "\f135";
}
.fa-maxcdn:before {
  content: "\f136";
}
.fa-chevron-circle-left:before {
  content: "\f137";
}
.fa-chevron-circle-right:before {
  content: "\f138";
}
.fa-chevron-circle-up:before {
  content: "\f139";
}
.fa-chevron-circle-down:before {
  content: "\f13a";
}
.fa-html5:before {
  content: "\f13b";
}
.fa-css3:before {
  content: "\f13c";
}
.fa-anchor:before {
  content: "\f13d";
}
.fa-unlock-alt:before {
  content: "\f13e";
}
.fa-bullseye:before {
  content: "\f140";
}
.fa-ellipsis-h:before {
  content: "\f141";
}
.fa-ellipsis-v:before {
  content: "\f142";
}
.fa-rss-square:before {
  content: "\f143";
}
.fa-play-circle:before {
  content: "\f144";
}
.fa-ticket:before {
  content: "\f145";
}
.fa-minus-square:before {
  content: "\f146";
}
.fa-minus-square-o:before {
  content: "\f147";
}
.fa-level-up:before {
  content: "\f148";
}
.fa-level-down:before {
  content: "\f149";
}
.fa-check-square:before {
  content: "\f14a";
}
.fa-pencil-square:before {
  content: "\f14b";
}
.fa-external-link-square:before {
  content: "\f14c";
}
.fa-share-square:before {
  content: "\f14d";
}
.fa-compass:before {
  content: "\f14e";
}
.fa-toggle-down:before,
.fa-caret-square-o-down:before {
  content: "\f150";
}
.fa-toggle-up:before,
.fa-caret-square-o-up:before {
  content: "\f151";
}
.fa-toggle-right:before,
.fa-caret-square-o-right:before {
  content: "\f152";
}
.fa-euro:before,
.fa-eur:before {
  content: "\f153";
}
.fa-gbp:before {
  content: "\f154";
}
.fa-dollar:before,
.fa-usd:before {
  content: "\f155";
}
.fa-rupee:before,
.fa-inr:before {
  content: "\f156";
}
.fa-cny:before,
.fa-rmb:before,
.fa-yen:before,
.fa-jpy:before {
  content: "\f157";
}
.fa-ruble:before,
.fa-rouble:before,
.fa-rub:before {
  content: "\f158";
}
.fa-won:before,
.fa-krw:before {
  content: "\f159";
}
.fa-bitcoin:before,
.fa-btc:before {
  content: "\f15a";
}
.fa-file:before {
  content: "\f15b";
}
.fa-file-text:before {
  content: "\f15c";
}
.fa-sort-alpha-asc:before {
  content: "\f15d";
}
.fa-sort-alpha-desc:before {
  content: "\f15e";
}
.fa-sort-amount-asc:before {
  content: "\f160";
}
.fa-sort-amount-desc:before {
  content: "\f161";
}
.fa-sort-numeric-asc:before {
  content: "\f162";
}
.fa-sort-numeric-desc:before {
  content: "\f163";
}
.fa-thumbs-up:before {
  content: "\f164";
}
.fa-thumbs-down:before {
  content: "\f165";
}
.fa-youtube-square:before {
  content: "\f166";
}
.fa-youtube:before {
  content: "\f167";
}
.fa-xing:before {
  content: "\f168";
}
.fa-xing-square:before {
  content: "\f169";
}
.fa-youtube-play:before {
  content: "\f16a";
}
.fa-dropbox:before {
  content: "\f16b";
}
.fa-stack-overflow:before {
  content: "\f16c";
}
.fa-instagram:before {
  content: "\f16d";
}
.fa-flickr:before {
  content: "\f16e";
}
.fa-adn:before {
  content: "\f170";
}
.fa-bitbucket:before {
  content: "\f171";
}
.fa-bitbucket-square:before {
  content: "\f172";
}
.fa-tumblr:before {
  content: "\f173";
}
.fa-tumblr-square:before {
  content: "\f174";
}
.fa-long-arrow-down:before {
  content: "\f175";
}
.fa-long-arrow-up:before {
  content: "\f176";
}
.fa-long-arrow-left:before {
  content: "\f177";
}
.fa-long-arrow-right:before {
  content: "\f178";
}
.fa-apple:before {
  content: "\f179";
}
.fa-windows:before {
  content: "\f17a";
}
.fa-android:before {
  content: "\f17b";
}
.fa-linux:before {
  content: "\f17c";
}
.fa-dribbble:before {
  content: "\f17d";
}
.fa-skype:before {
  content: "\f17e";
}
.fa-foursquare:before {
  content: "\f180";
}
.fa-trello:before {
  content: "\f181";
}
.fa-female:before {
  content: "\f182";
}
.fa-male:before {
  content: "\f183";
}
.fa-gittip:before,
.fa-gratipay:before {
  content: "\f184";
}
.fa-sun-o:before {
  content: "\f185";
}
.fa-moon-o:before {
  content: "\f186";
}
.fa-archive:before {
  content: "\f187";
}
.fa-bug:before {
  content: "\f188";
}
.fa-vk:before {
  content: "\f189";
}
.fa-weibo:before {
  content: "\f18a";
}
.fa-renren:before {
  content: "\f18b";
}
.fa-pagelines:before {
  content: "\f18c";
}
.fa-stack-exchange:before {
  content: "\f18d";
}
.fa-arrow-circle-o-right:before {
  content: "\f18e";
}
.fa-arrow-circle-o-left:before {
  content: "\f190";
}
.fa-toggle-left:before,
.fa-caret-square-o-left:before {
  content: "\f191";
}
.fa-dot-circle-o:before {
  content: "\f192";
}
.fa-wheelchair:before {
  content: "\f193";
}
.fa-vimeo-square:before {
  content: "\f194";
}
.fa-turkish-lira:before,
.fa-try:before {
  content: "\f195";
}
.fa-plus-square-o:before {
  content: "\f196";
}
.fa-space-shuttle:before {
  content: "\f197";
}
.fa-slack:before {
  content: "\f198";
}
.fa-envelope-square:before {
  content: "\f199";
}
.fa-wordpress:before {
  content: "\f19a";
}
.fa-openid:before {
  content: "\f19b";
}
.fa-institution:before,
.fa-bank:before,
.fa-university:before {
  content: "\f19c";
}
.fa-mortar-board:before,
.fa-graduation-cap:before {
  content: "\f19d";
}
.fa-yahoo:before {
  content: "\f19e";
}
.fa-google:before {
  content: "\f1a0";
}
.fa-reddit:before {
  content: "\f1a1";
}
.fa-reddit-square:before {
  content: "\f1a2";
}
.fa-stumbleupon-circle:before {
  content: "\f1a3";
}
.fa-stumbleupon:before {
  content: "\f1a4";
}
.fa-delicious:before {
  content: "\f1a5";
}
.fa-digg:before {
  content: "\f1a6";
}
.fa-pied-piper-pp:before {
  content: "\f1a7";
}
.fa-pied-piper-alt:before {
  content: "\f1a8";
}
.fa-drupal:before {
  content: "\f1a9";
}
.fa-joomla:before {
  content: "\f1aa";
}
.fa-language:before {
  content: "\f1ab";
}
.fa-fax:before {
  content: "\f1ac";
}
.fa-building:before {
  content: "\f1ad";
}
.fa-child:before {
  content: "\f1ae";
}
.fa-paw:before {
  content: "\f1b0";
}
.fa-spoon:before {
  content: "\f1b1";
}
.fa-cube:before {
  content: "\f1b2";
}
.fa-cubes:before {
  content: "\f1b3";
}
.fa-behance:before {
  content: "\f1b4";
}
.fa-behance-square:before {
  content: "\f1b5";
}
.fa-steam:before {
  content: "\f1b6";
}
.fa-steam-square:before {
  content: "\f1b7";
}
.fa-recycle:before {
  content: "\f1b8";
}
.fa-automobile:before,
.fa-car:before {
  content: "\f1b9";
}
.fa-cab:before,
.fa-taxi:before {
  content: "\f1ba";
}
.fa-tree:before {
  content: "\f1bb";
}
.fa-spotify:before {
  content: "\f1bc";
}
.fa-deviantart:before {
  content: "\f1bd";
}
.fa-soundcloud:before {
  content: "\f1be";
}
.fa-database:before {
  content: "\f1c0";
}
.fa-file-pdf-o:before {
  content: "\f1c1";
}
.fa-file-word-o:before {
  content: "\f1c2";
}
.fa-file-excel-o:before {
  content: "\f1c3";
}
.fa-file-powerpoint-o:before {
  content: "\f1c4";
}
.fa-file-photo-o:before,
.fa-file-picture-o:before,
.fa-file-image-o:before {
  content: "\f1c5";
}
.fa-file-zip-o:before,
.fa-file-archive-o:before {
  content: "\f1c6";
}
.fa-file-sound-o:before,
.fa-file-audio-o:before {
  content: "\f1c7";
}
.fa-file-movie-o:before,
.fa-file-video-o:before {
  content: "\f1c8";
}
.fa-file-code-o:before {
  content: "\f1c9";
}
.fa-vine:before {
  content: "\f1ca";
}
.fa-codepen:before {
  content: "\f1cb";
}
.fa-jsfiddle:before {
  content: "\f1cc";
}
.fa-life-bouy:before,
.fa-life-buoy:before,
.fa-life-saver:before,
.fa-support:before,
.fa-life-ring:before {
  content: "\f1cd";
}
.fa-circle-o-notch:before {
  content: "\f1ce";
}
.fa-ra:before,
.fa-resistance:before,
.fa-rebel:before {
  content: "\f1d0";
}
.fa-ge:before,
.fa-empire:before {
  content: "\f1d1";
}
.fa-git-square:before {
  content: "\f1d2";
}
.fa-git:before {
  content: "\f1d3";
}
.fa-y-combinator-square:before,
.fa-yc-square:before,
.fa-hacker-news:before {
  content: "\f1d4";
}
.fa-tencent-weibo:before {
  content: "\f1d5";
}
.fa-qq:before {
  content: "\f1d6";
}
.fa-wechat:before,
.fa-weixin:before {
  content: "\f1d7";
}
.fa-send:before,
.fa-paper-plane:before {
  content: "\f1d8";
}
.fa-send-o:before,
.fa-paper-plane-o:before {
  content: "\f1d9";
}
.fa-history:before {
  content: "\f1da";
}
.fa-circle-thin:before {
  content: "\f1db";
}
.fa-header:before {
  content: "\f1dc";
}
.fa-paragraph:before {
  content: "\f1dd";
}
.fa-sliders:before {
  content: "\f1de";
}
.fa-share-alt:before {
  content: "\f1e0";
}
.fa-share-alt-square:before {
  content: "\f1e1";
}
.fa-bomb:before {
  content: "\f1e2";
}
.fa-soccer-ball-o:before,
.fa-futbol-o:before {
  content: "\f1e3";
}
.fa-tty:before {
  content: "\f1e4";
}
.fa-binoculars:before {
  content: "\f1e5";
}
.fa-plug:before {
  content: "\f1e6";
}
.fa-slideshare:before {
  content: "\f1e7";
}
.fa-twitch:before {
  content: "\f1e8";
}
.fa-yelp:before {
  content: "\f1e9";
}
.fa-newspaper-o:before {
  content: "\f1ea";
}
.fa-wifi:before {
  content: "\f1eb";
}
.fa-calculator:before {
  content: "\f1ec";
}
.fa-paypal:before {
  content: "\f1ed";
}
.fa-google-wallet:before {
  content: "\f1ee";
}
.fa-cc-visa:before {
  content: "\f1f0";
}
.fa-cc-mastercard:before {
  content: "\f1f1";
}
.fa-cc-discover:before {
  content: "\f1f2";
}
.fa-cc-amex:before {
  content: "\f1f3";
}
.fa-cc-paypal:before {
  content: "\f1f4";
}
.fa-cc-stripe:before {
  content: "\f1f5";
}
.fa-bell-slash:before {
  content: "\f1f6";
}
.fa-bell-slash-o:before {
  content: "\f1f7";
}
.fa-trash:before {
  content: "\f1f8";
}
.fa-copyright:before {
  content: "\f1f9";
}
.fa-at:before {
  content: "\f1fa";
}
.fa-eyedropper:before {
  content: "\f1fb";
}
.fa-paint-brush:before {
  content: "\f1fc";
}
.fa-birthday-cake:before {
  content: "\f1fd";
}
.fa-area-chart:before {
  content: "\f1fe";
}
.fa-pie-chart:before {
  content: "\f200";
}
.fa-line-chart:before {
  content: "\f201";
}
.fa-lastfm:before {
  content: "\f202";
}
.fa-lastfm-square:before {
  content: "\f203";
}
.fa-toggle-off:before {
  content: "\f204";
}
.fa-toggle-on:before {
  content: "\f205";
}
.fa-bicycle:before {
  content: "\f206";
}
.fa-bus:before {
  content: "\f207";
}
.fa-ioxhost:before {
  content: "\f208";
}
.fa-angellist:before {
  content: "\f209";
}
.fa-cc:before {
  content: "\f20a";
}
.fa-shekel:before,
.fa-sheqel:before,
.fa-ils:before {
  content: "\f20b";
}
.fa-meanpath:before {
  content: "\f20c";
}
.fa-buysellads:before {
  content: "\f20d";
}
.fa-connectdevelop:before {
  content: "\f20e";
}
.fa-dashcube:before {
  content: "\f210";
}
.fa-forumbee:before {
  content: "\f211";
}
.fa-leanpub:before {
  content: "\f212";
}
.fa-sellsy:before {
  content: "\f213";
}
.fa-shirtsinbulk:before {
  content: "\f214";
}
.fa-simplybuilt:before {
  content: "\f215";
}
.fa-skyatlas:before {
  content: "\f216";
}
.fa-cart-plus:before {
  content: "\f217";
}
.fa-cart-arrow-down:before {
  content: "\f218";
}
.fa-diamond:before {
  content: "\f219";
}
.fa-ship:before {
  content: "\f21a";
}
.fa-user-secret:before {
  content: "\f21b";
}
.fa-motorcycle:before {
  content: "\f21c";
}
.fa-street-view:before {
  content: "\f21d";
}
.fa-heartbeat:before {
  content: "\f21e";
}
.fa-venus:before {
  content: "\f221";
}
.fa-mars:before {
  content: "\f222";
}
.fa-mercury:before {
  content: "\f223";
}
.fa-intersex:before,
.fa-transgender:before {
  content: "\f224";
}
.fa-transgender-alt:before {
  content: "\f225";
}
.fa-venus-double:before {
  content: "\f226";
}
.fa-mars-double:before {
  content: "\f227";
}
.fa-venus-mars:before {
  content: "\f228";
}
.fa-mars-stroke:before {
  content: "\f229";
}
.fa-mars-stroke-v:before {
  content: "\f22a";
}
.fa-mars-stroke-h:before {
  content: "\f22b";
}
.fa-neuter:before {
  content: "\f22c";
}
.fa-genderless:before {
  content: "\f22d";
}
.fa-facebook-official:before {
  content: "\f230";
}
.fa-pinterest-p:before {
  content: "\f231";
}
.fa-whatsapp:before {
  content: "\f232";
}
.fa-server:before {
  content: "\f233";
}
.fa-user-plus:before {
  content: "\f234";
}
.fa-user-times:before {
  content: "\f235";
}
.fa-hotel:before,
.fa-bed:before {
  content: "\f236";
}
.fa-viacoin:before {
  content: "\f237";
}
.fa-train:before {
  content: "\f238";
}
.fa-subway:before {
  content: "\f239";
}
.fa-medium:before {
  content: "\f23a";
}
.fa-yc:before,
.fa-y-combinator:before {
  content: "\f23b";
}
.fa-optin-monster:before {
  content: "\f23c";
}
.fa-opencart:before {
  content: "\f23d";
}
.fa-expeditedssl:before {
  content: "\f23e";
}
.fa-battery-4:before,
.fa-battery:before,
.fa-battery-full:before {
  content: "\f240";
}
.fa-battery-3:before,
.fa-battery-three-quarters:before {
  content: "\f241";
}
.fa-battery-2:before,
.fa-battery-half:before {
  content: "\f242";
}
.fa-battery-1:before,
.fa-battery-quarter:before {
  content: "\f243";
}
.fa-battery-0:before,
.fa-battery-empty:before {
  content: "\f244";
}
.fa-mouse-pointer:before {
  content: "\f245";
}
.fa-i-cursor:before {
  content: "\f246";
}
.fa-object-group:before {
  content: "\f247";
}
.fa-object-ungroup:before {
  content: "\f248";
}
.fa-sticky-note:before {
  content: "\f249";
}
.fa-sticky-note-o:before {
  content: "\f24a";
}
.fa-cc-jcb:before {
  content: "\f24b";
}
.fa-cc-diners-club:before {
  content: "\f24c";
}
.fa-clone:before {
  content: "\f24d";
}
.fa-balance-scale:before {
  content: "\f24e";
}
.fa-hourglass-o:before {
  content: "\f250";
}
.fa-hourglass-1:before,
.fa-hourglass-start:before {
  content: "\f251";
}
.fa-hourglass-2:before,
.fa-hourglass-half:before {
  content: "\f252";
}
.fa-hourglass-3:before,
.fa-hourglass-end:before {
  content: "\f253";
}
.fa-hourglass:before {
  content: "\f254";
}
.fa-hand-grab-o:before,
.fa-hand-rock-o:before {
  content: "\f255";
}
.fa-hand-stop-o:before,
.fa-hand-paper-o:before {
  content: "\f256";
}
.fa-hand-scissors-o:before {
  content: "\f257";
}
.fa-hand-lizard-o:before {
  content: "\f258";
}
.fa-hand-spock-o:before {
  content: "\f259";
}
.fa-hand-pointer-o:before {
  content: "\f25a";
}
.fa-hand-peace-o:before {
  content: "\f25b";
}
.fa-trademark:before {
  content: "\f25c";
}
.fa-registered:before {
  content: "\f25d";
}
.fa-creative-commons:before {
  content: "\f25e";
}
.fa-gg:before {
  content: "\f260";
}
.fa-gg-circle:before {
  content: "\f261";
}
.fa-tripadvisor:before {
  content: "\f262";
}
.fa-odnoklassniki:before {
  content: "\f263";
}
.fa-odnoklassniki-square:before {
  content: "\f264";
}
.fa-get-pocket:before {
  content: "\f265";
}
.fa-wikipedia-w:before {
  content: "\f266";
}
.fa-safari:before {
  content: "\f267";
}
.fa-chrome:before {
  content: "\f268";
}
.fa-firefox:before {
  content: "\f269";
}
.fa-opera:before {
  content: "\f26a";
}
.fa-internet-explorer:before {
  content: "\f26b";
}
.fa-tv:before,
.fa-television:before {
  content: "\f26c";
}
.fa-contao:before {
  content: "\f26d";
}
.fa-500px:before {
  content: "\f26e";
}
.fa-amazon:before {
  content: "\f270";
}
.fa-calendar-plus-o:before {
  content: "\f271";
}
.fa-calendar-minus-o:before {
  content: "\f272";
}
.fa-calendar-times-o:before {
  content: "\f273";
}
.fa-calendar-check-o:before {
  content: "\f274";
}
.fa-industry:before {
  content: "\f275";
}
.fa-map-pin:before {
  content: "\f276";
}
.fa-map-signs:before {
  content: "\f277";
}
.fa-map-o:before {
  content: "\f278";
}
.fa-map:before {
  content: "\f279";
}
.fa-commenting:before {
  content: "\f27a";
}
.fa-commenting-o:before {
  content: "\f27b";
}
.fa-houzz:before {
  content: "\f27c";
}
.fa-vimeo:before {
  content: "\f27d";
}
.fa-black-tie:before {
  content: "\f27e";
}
.fa-fonticons:before {
  content: "\f280";
}
.fa-reddit-alien:before {
  content: "\f281";
}
.fa-edge:before {
  content: "\f282";
}
.fa-credit-card-alt:before {
  content: "\f283";
}
.fa-codiepie:before {
  content: "\f284";
}
.fa-modx:before {
  content: "\f285";
}
.fa-fort-awesome:before {
  content: "\f286";
}
.fa-usb:before {
  content: "\f287";
}
.fa-product-hunt:before {
  content: "\f288";
}
.fa-mixcloud:before {
  content: "\f289";
}
.fa-scribd:before {
  content: "\f28a";
}
.fa-pause-circle:before {
  content: "\f28b";
}
.fa-pause-circle-o:before {
  content: "\f28c";
}
.fa-stop-circle:before {
  content: "\f28d";
}
.fa-stop-circle-o:before {
  content: "\f28e";
}
.fa-shopping-bag:before {
  content: "\f290";
}
.fa-shopping-basket:before {
  content: "\f291";
}
.fa-hashtag:before {
  content: "\f292";
}
.fa-bluetooth:before {
  content: "\f293";
}
.fa-bluetooth-b:before {
  content: "\f294";
}
.fa-percent:before {
  content: "\f295";
}
.fa-gitlab:before {
  content: "\f296";
}
.fa-wpbeginner:before {
  content: "\f297";
}
.fa-wpforms:before {
  content: "\f298";
}
.fa-envira:before {
  content: "\f299";
}
.fa-universal-access:before {
  content: "\f29a";
}
.fa-wheelchair-alt:before {
  content: "\f29b";
}
.fa-question-circle-o:before {
  content: "\f29c";
}
.fa-blind:before {
  content: "\f29d";
}
.fa-audio-description:before {
  content: "\f29e";
}
.fa-volume-control-phone:before {
  content: "\f2a0";
}
.fa-braille:before {
  content: "\f2a1";
}
.fa-assistive-listening-systems:before {
  content: "\f2a2";
}
.fa-asl-interpreting:before,
.fa-american-sign-language-interpreting:before {
  content: "\f2a3";
}
.fa-deafness:before,
.fa-hard-of-hearing:before,
.fa-deaf:before {
  content: "\f2a4";
}
.fa-glide:before {
  content: "\f2a5";
}
.fa-glide-g:before {
  content: "\f2a6";
}
.fa-signing:before,
.fa-sign-language:before {
  content: "\f2a7";
}
.fa-low-vision:before {
  content: "\f2a8";
}
.fa-viadeo:before {
  content: "\f2a9";
}
.fa-viadeo-square:before {
  content: "\f2aa";
}
.fa-snapchat:before {
  content: "\f2ab";
}
.fa-snapchat-ghost:before {
  content: "\f2ac";
}
.fa-snapchat-square:before {
  content: "\f2ad";
}
.fa-pied-piper:before {
  content: "\f2ae";
}
.fa-first-order:before {
  content: "\f2b0";
}
.fa-yoast:before {
  content: "\f2b1";
}
.fa-themeisle:before {
  content: "\f2b2";
}
.fa-google-plus-circle:before,
.fa-google-plus-official:before {
  content: "\f2b3";
}
.fa-fa:before,
.fa-font-awesome:before {
  content: "\f2b4";
}
.fa-handshake-o:before {
  content: "\f2b5";
}
.fa-envelope-open:before {
  content: "\f2b6";
}
.fa-envelope-open-o:before {
  content: "\f2b7";
}
.fa-linode:before {
  content: "\f2b8";
}
.fa-address-book:before {
  content: "\f2b9";
}
.fa-address-book-o:before {
  content: "\f2ba";
}
.fa-vcard:before,
.fa-address-card:before {
  content: "\f2bb";
}
.fa-vcard-o:before,
.fa-address-card-o:before {
  content: "\f2bc";
}
.fa-user-circle:before {
  content: "\f2bd";
}
.fa-user-circle-o:before {
  content: "\f2be";
}
.fa-user-o:before {
  content: "\f2c0";
}
.fa-id-badge:before {
  content: "\f2c1";
}
.fa-drivers-license:before,
.fa-id-card:before {
  content: "\f2c2";
}
.fa-drivers-license-o:before,
.fa-id-card-o:before {
  content: "\f2c3";
}
.fa-quora:before {
  content: "\f2c4";
}
.fa-free-code-camp:before {
  content: "\f2c5";
}
.fa-telegram:before {
  content: "\f2c6";
}
.fa-thermometer-4:before,
.fa-thermometer:before,
.fa-thermometer-full:before {
  content: "\f2c7";
}
.fa-thermometer-3:before,
.fa-thermometer-three-quarters:before {
  content: "\f2c8";
}
.fa-thermometer-2:before,
.fa-thermometer-half:before {
  content: "\f2c9";
}
.fa-thermometer-1:before,
.fa-thermometer-quarter:before {
  content: "\f2ca";
}
.fa-thermometer-0:before,
.fa-thermometer-empty:before {
  content: "\f2cb";
}
.fa-shower:before {
  content: "\f2cc";
}
.fa-bathtub:before,
.fa-s15:before,
.fa-bath:before {
  content: "\f2cd";
}
.fa-podcast:before {
  content: "\f2ce";
}
.fa-window-maximize:before {
  content: "\f2d0";
}
.fa-window-minimize:before {
  content: "\f2d1";
}
.fa-window-restore:before {
  content: "\f2d2";
}
.fa-times-rectangle:before,
.fa-window-close:before {
  content: "\f2d3";
}
.fa-times-rectangle-o:before,
.fa-window-close-o:before {
  content: "\f2d4";
}
.fa-bandcamp:before {
  content: "\f2d5";
}
.fa-grav:before {
  content: "\f2d6";
}
.fa-etsy:before {
  content: "\f2d7";
}
.fa-imdb:before {
  content: "\f2d8";
}
.fa-ravelry:before {
  content: "\f2d9";
}
.fa-eercast:before {
  content: "\f2da";
}
.fa-microchip:before {
  content: "\f2db";
}
.fa-snowflake-o:before {
  content: "\f2dc";
}
.fa-superpowers:before {
  content: "\f2dd";
}
.fa-wpexplorer:before {
  content: "\f2de";
}
.fa-meetup:before {
  content: "\f2e0";
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.sr-only-focusable:active,
.sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
}
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your
fonts apppear throughout your site.
*********************************************************************************
****************************************************************************** */

@font-face {
  font-family: proxima-nova;
  src: url(https://use.typekit.net/af/71f83c/00000000000000003b9b093b/27/l?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n7&v=3) format("woff2"),
    url(https://use.typekit.net/af/71f83c/00000000000000003b9b093b/27/d?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n7&v=3) format("woff"),
    url(https://use.typekit.net/af/71f83c/00000000000000003b9b093b/27/a?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n7&v=3) format("opentype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: proxima-nova;
  src: url(https://use.typekit.net/af/86b539/00000000000000003b9b093a/27/l?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=i7&v=3) format("woff2"),
    url(https://use.typekit.net/af/86b539/00000000000000003b9b093a/27/d?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=i7&v=3) format("woff"),
    url(https://use.typekit.net/af/86b539/00000000000000003b9b093a/27/a?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=i7&v=3) format("opentype");
  font-weight: 700;
  font-style: italic;
}
@font-face {
  font-family: proxima-nova;
  src: url(https://use.typekit.net/af/27776b/00000000000000003b9b0939/27/l?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n6&v=3) format("woff2"),
    url(https://use.typekit.net/af/27776b/00000000000000003b9b0939/27/d?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n6&v=3) format("woff"),
    url(https://use.typekit.net/af/27776b/00000000000000003b9b0939/27/a?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n6&v=3) format("opentype");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: proxima-nova;
  src: url(https://use.typekit.net/af/256534/00000000000000003b9b0938/27/l?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=i6&v=3) format("woff2"),
    url(https://use.typekit.net/af/256534/00000000000000003b9b0938/27/d?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=i6&v=3) format("woff"),
    url(https://use.typekit.net/af/256534/00000000000000003b9b0938/27/a?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=i6&v=3) format("opentype");
  font-weight: 600;
  font-style: italic;
}
@font-face {
  font-family: proxima-nova;
  src: url(https://use.typekit.net/af/4838bd/00000000000000003b9b0934/27/l?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n4&v=3) format("woff2"),
    url(https://use.typekit.net/af/4838bd/00000000000000003b9b0934/27/d?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n4&v=3) format("woff"),
    url(https://use.typekit.net/af/4838bd/00000000000000003b9b0934/27/a?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n4&v=3) format("opentype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: proxima-nova;
  src: url(https://use.typekit.net/af/6aec08/00000000000000003b9b0935/27/l?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=i4&v=3) format("woff2"),
    url(https://use.typekit.net/af/6aec08/00000000000000003b9b0935/27/d?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=i4&v=3) format("woff"),
    url(https://use.typekit.net/af/6aec08/00000000000000003b9b0935/27/a?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=i4&v=3) format("opentype");
  font-weight: 400;
  font-style: italic;
}
@font-face {
  font-family: proxima-nova;
  src: url(https://use.typekit.net/af/437c3d/00000000000000003b9b0932/27/l?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n3&v=3) format("woff2"),
    url(https://use.typekit.net/af/437c3d/00000000000000003b9b0932/27/d?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n3&v=3) format("woff"),
    url(https://use.typekit.net/af/437c3d/00000000000000003b9b0932/27/a?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n3&v=3) format("opentype");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: proxima-nova;
  src: url(https://use.typekit.net/af/f02b29/00000000000000003b9b0933/27/l?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=i3&v=3) format("woff2"),
    url(https://use.typekit.net/af/f02b29/00000000000000003b9b0933/27/d?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=i3&v=3) format("woff"),
    url(https://use.typekit.net/af/f02b29/00000000000000003b9b0933/27/a?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=i3&v=3) format("opentype");
  font-weight: 300;
  font-style: italic;
}

@font-face {
  font-family: "Rogan-Light";
  src: url(//2886534.fs1.hubspotusercontent-na1.net/hubfs/2886534/raw_assets/public/Roketto_July2020/fonts/RoganLight.woff2) format("woff2"), 
    url(//2886534.fs1.hubspotusercontent-na1.net/hubfs/2886534/raw_assets/public/Roketto_July2020/fonts/RoganLight.woff) format("woff"), 
    url(//2886534.fs1.hubspotusercontent-na1.net/hubfs/2886534/raw_assets/public/Roketto_July2020/fonts/RoganLight.ttf) format("truetype");
  font-style: normal;
  font-weight: 200;
}


@font-face {
  font-family: "Rogan-Bold";
  src: url(//2886534.fs1.hubspotusercontent-na1.net/hubfs/2886534/raw_assets/public/Roketto_July2020/fonts/RoganBold.woff2) format("woff2"),
    url(//2886534.fs1.hubspotusercontent-na1.net/hubfs/2886534/raw_assets/public/Roketto_July2020/fonts/RoganBold.woff) format("woff"), 
    url(//2886534.fs1.hubspotusercontent-na1.net/hubfs/2886534/raw_assets/public/Roketto_July2020/fonts/RoganBold.ttf) format("truetype");
  font-style: normal;
  font-weight: bold;
}
@font-face {
  font-family: "Rogan";
  src: url(//2886534.fs1.hubspotusercontent-na1.net/hubfs/2886534/raw_assets/public/Roketto_July2020/fonts/RoganRegular.woff2) format("woff2"),
    url(//2886534.fs1.hubspotusercontent-na1.net/hubfs/2886534/raw_assets/public/Roketto_July2020/fonts/RoganRegular.woff) format("woff"),
    url(//2886534.fs1.hubspotusercontent-na1.net/hubfs/2886534/raw_assets/public/Roketto_July2020/fonts/RoganRegular.ttf) format("truetype");
  font-style: normal;
  font-weight: normal;
}

html {
  font-size: 24px;
}

body {
  font-family: Lato, serif;
  font-size: 1rem;
  color: #494a52;
  line-height: 1.46;
  -webkit-font-smoothing: antialiased;
}

p {
  margin-top: 20px;
  margin-bottom: 20px;
  line-height: 1.5;
  font-style: normal;
}

/* Anchor Links */
a {
  color: #0270E0;
  text-decoration: none;
}
a:hover, a:focus {
  text-decoration: none;
}

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  line-height: 1.2;
  font-weight: 700;
  font-family: Merriweather, serif;
  color: #494a52;
  word-break: break-word;
}

h1 {
  font-size: 2.1rem;
  line-height: 1.25em;
}

h2 {
  font-size: 1.6rem;
  line-height: 42px;
}

h3 {
  font-size: 1.25rem;
  line-height: 36px;
}

h4 {
  font-family: Lato, sans-serif;
  font-weight: normal;
  font-size: 1.175rem;
  line-height: 32px;
}

h5 {
  font-size: 1rem;
  line-height: 27px
}

h6 {
  font-size: .9rem;
  line-height: 19px;
}

strong {
  font-weight: 700;
}

code {
  vertical-align: bottom;
}

ul,
ol {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

ul li,
ol li {

}

ul ul,
ol ul,
ul ol,
ol ol {
  margin-top: 0;
  margin-bottom: 0;
}

blockquote {
  line-height: 1.5rem;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  border-left: 2px solid #A9A9A9;
  padding-left: 15px;
}

/* Horizontal Rules */
hr {
  color: #ccc;
  background-color: #ccc;
  height: 1px;
  border: none;
}

/* TODO */
small {

}

/* TODO */
mark {

}

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

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

:focus {
  outline: auto;
  outline-color: green;
}

.disable-focus-styles :focus {
  outline: none;
}

@media (max-width: 767px) {
  html {
    font-size: 18.0px
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14.399999999999999px
  }
}
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your forms looks
throughout your site. Styles for form fields, buttons, inputs, etc.
*********************************************************************************
****************************************************************************** */

form {
  max-width: 100%;
  font-family: Lato, sans-serif;
}

.hs-button {
  margin: 0;
  cursor: pointer;
  display: inline-block;
  font-weight: normal;
  line-height: 1.1;
  position: relative;
  text-align: center;
  transition: all 0.15s linear;
  background-color: #494A52;
  border-color: #494A52;
  color: #fff;
  border-radius: 8px;
  border-style: solid;
  border-width: 1px;
  font-size: 18px;
  padding: 15px 53px;
  
  text-decoration: none;
  margin-top: 23px;
  font-family: "Rogan-Bold",Arial,sans-serif;
  min-height: 50px;
      white-space: normal;
}

.hs-button:hover, .hs-button:focus {
  background-color: #21222a;
  border-color: #21222a;
  
  color: #fff;
}

.hs-button:active {
  background-color: #71727a;
  border-color: #71727a;
}


.hs-form label {
  color: #33475b;
  display: block;
  float: none;
  width: auto;
  font-weight: normal;
  text-align: left;
  padding-top: 0;
}

.hs-error-msgs label {
  margin-top: .5rem;
  color: #f2545b;
}

.hs-form .hs-error-msgs label {
  color: #ee7484;
  font-weight: 600;
  font-size: 16px;
}
.hs-form-required {
  color: inherit;
}
.hs-form select {
  outline: none !important;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  color: #818080; 
  font-style: italic;
  background-image: url(//2886534.fs1.hubspotusercontent-na1.net/hubfs/2886534/raw_assets/public/Roketto_July2020/images/select-back.png);
  background-repeat: no-repeat;
  background-position: 96% 50%;
}
.blog .section.post-footer form,
.custom_error_message form,
.body-container .hs-search-field,
.body-container .widget-type-form,
.landing-page.one-column .body-container .hs_cos_wrapper_type_form,
.body-container .widget-type-blog_subscribe,
.body-container .widget-type-google_search,
.body-container .widget-type-password_prompt.custom_error_message,
.body-container .widget-type-email_simple_subscription,
.systems-page form,
.blog-header__form form{
  background-color: #f7f7f7;
  padding: 20px;
}
.banner.blog-banner .hs-button {
    color: rgba(255,255,255,1.0);
}
.systems-page form{
  max-width:700px;
}
.hs-form input[type="text"], .hs-form input[type="password"],input[type="password"], .hs-form input[type="datetime"],
.hs-form input[type="datetime-local"], .hs-form input[type="date"], .hs-form input[type="month"],
.hs-form input[type="time"], .hs-form input[type="week"], .hs-form input[type="number"], .hs-form input[type="email"],
.hs-form input[type="url"], .hs-form input[type="search"], .hs-form input[type="tel"], .hs-form input[type="color"],
.hs-form input[type="file"], .hs-form textarea, .hs-form select ,
.hs-input {
  display:block;
  font-size: 18px;
  line-height: 22px;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  font-weight: 400;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  width: 100% !important;
  padding: 15px 20px;
  outline: none !important;
  border: 1px solid #ddd;
  border-radius: 8px;
  -moz-border-radius: 8px;
  -webkit-border-radius: 8px;
  font-family: "proxima-nova",Helvetica,Arial,sans-serif;
  margin:0 0 10px;
}

.hs-input[type=checkbox], .hs-input[type=radio] {
  cursor: pointer;
  width: auto !important;
  height: auto;
  padding: 0;
  margin: 3px 5px 3px 0px;
  line-height: normal;
  border: 0;
  display: inline-block;
}
.hs-input[type=file] {
  background-color: #fff;
  padding: initial;
  border: initial;
  line-height: initial;
  box-shadow: none;
}

.hs-input:-moz-placeholder {
  color: #bfbfbf;
}

.hs-input::-webkit-input-placeholder {
  color: #bfbfbf;
}

.hs-input input,
.hs-input textarea {
  transition: border 0.2s linear;
}
.hs-input:focus {
  outline: none;
  border-color: rgba(82, 168, 236, 0.8);
}

textarea.hs-input {
  height: auto;
}

select[multiple].hs-input {
  height: inherit;
}

/* Force single column fields to full width inside of fieldsets */
fieldset.form-columns-1 .hs-input:not([type=radio]):not([type=checkbox]) {
  width: 100% !important;
}

input.hs-input.error,
div.field.error input,
div.field.error textarea,
div.field.error .chzn-choices,
textarea.hs-input.error,
select.hs-input.error {
  border-color: #c87872;
}
input.hs-input.error:focus,
div.field.error input:focus,
div.field.error textarea:focus,
div.field.error .chzn-choices:focus,
textarea.hs-input.error:focus,
select.hs-input.error:focus {
  border-color: #b9554d;
}

.actions {
  padding: 0;
}

.inputs-list {
  margin: 0 0 5px;
  width: 100%;
  padding-left: 0;
}
.inputs-list > li {
  display: block;
  padding: 0;
  width: 100%;
  padding-top: 0;
}
.inputs-list label {
  display: block;
  float: none;
  width: auto;
  padding: 0;
  line-height: 18px;
  text-align: left;
  white-space: normal;
  font-weight: normal;
}
.inputs-list:first-child {
  padding-top: 6px;
}
.inputs-list > li + li {
  padding-top: 2px;
}
.inputs-list label > input,
.inputs-list label > span {
  vertical-align: middle;
}

ul.no-list {
  list-style: none;
}

.field {
  margin-top: 10px;
}

.hs-field-desc {
  color: #7c98b6;
  margin: 0px 0px 6px;
  font-size: 14px;
}

.hs-richtext {
  margin-bottom: 3px;
  line-height: 1.2;
  font-size: 1rem;
  color: #494a52;
}
.hs-richtext hr {
  text-align: left;
  margin-left: 0;
  width: 91%;
}

.grecaptcha-badge {
  margin: 0 auto;
}

.email-correction, .email-validation {
  padding-top: 3px;
  font-size: 12px;
}
.email-correction a,
.email-validation a {
  cursor: pointer;
}
@media (max-width: 767px){
  .systems-page form{
    max-width:100%;
  }
}
@media (max-width: 400px),
  (min-device-width: 320px) and (max-device-width: 480px) {
    .email-correction form .form-columns-2 .hs-form-field,
    .email-correction form .form-columns-3 .hs-form-field,
    .email-validation form .form-columns-2 .hs-form-field,
    .email-validation form .form-columns-3 .hs-form-field {
      float: none;
      width: 100%;
    }
    .email-correction form .form-columns-2 .hs-form-field .hs-input,
    .email-correction form .form-columns-3 .hs-form-field .hs-input,
    .email-validation form .form-columns-2 .hs-form-field .hs-input,
    .email-validation form .form-columns-3 .hs-form-field .hs-input {
      width: 90%;
    }
    .email-correction form .form-columns-2 .hs-form-field input[type=checkbox],
    .email-correction form .form-columns-2 .hs-form-field input[type=radio],
    .email-correction form .form-columns-3 .hs-form-field input[type=checkbox],
    .email-correction form .form-columns-3 .hs-form-field input[type=radio],
    .email-validation form .form-columns-2 .hs-form-field input[type=checkbox],
    .email-validation form .form-columns-2 .hs-form-field input[type=radio],
    .email-validation form .form-columns-3 .hs-form-field input[type=checkbox],
    .email-validation form .form-columns-3 .hs-form-field input[type=radio] {
      width: 24px;
    }
}

.hs-button,
.hs-form-field input[type=text],
.hs-form-field input[type=email],
.hs-form-field input[type=phone],
.hs-form-field input[type=number],
.hs-form-field input[type=tel],
.hs-form-field input[type=date],
.hs-form-field textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
}

.hs-default-font-element,
.hs-main-font-element {
  font-family: Lato, serif;
}
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your
menu items appear, including the link and hover effects.
*********************************************************************************
****************************************************************************** */

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

.hs-menu-item a {
  display: block;
  padding: 0.5rem 1rem;
  color: rgba(0, 0, 0, 0.5);
  text-decoration: none;
}

.hs-menu-item:hover a,
.hs-menu-item:focus a {
  text-decoration: none;
  color: rgba(0, 0, 0, 0.7);
}

.hs-menu-item.active a {
  color: rgba(0, 0, 0, 0.9);
}

.popup_menu_inner {
  display: inline-block;
  height: 2px;
  top: -1px;
  vertical-align: middle;
  position: relative;
  width: 20px
}

.popup_menu_widget_holder {
  position: relative;
  display: block;
  text-align: center;
  margin: 20px 0 0
}

.popup_menu .line,.popup_menu .line:after,.popup_menu .line:before {
  background-color: #9D9D9D;
  height: 2px;
  position: absolute;
  -webkit-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  -ms-transform: all .3s ease-in-out;
  width: 13px
}

.popup_menu .line {
  margin: 0;
  top: 0;
  left: 0;
  -moz-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  display: inline-block
}

.popup_menu .line:after,.popup_menu .line:before {
  content: "";
  display: block;
  -moz-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  z-index: -1;
  -webkit-backface-visibility: hidden
}

@media only screen and (min-width: 1001px) {
  .dark.header_style_on_scroll .popup_menu:not(.opened) .line,.dark.header_style_on_scroll .popup_menu:not(.opened) .line:after,.dark.header_style_on_scroll .popup_menu:not(.opened) .line:before,.dark:not(.sticky):not(.scrolled) .popup_menu:not(.opened) .line,.dark:not(.sticky):not(.scrolled) .popup_menu:not(.opened) .line:after,.dark:not(.sticky):not(.scrolled) .popup_menu:not(.opened) .line:before {
    background-color:#000
  }

  .light.header_style_on_scroll .popup_menu:not(.opened) .line,.light.header_style_on_scroll .popup_menu:not(.opened) .line:after,.light.header_style_on_scroll .popup_menu:not(.opened) .line:before,.light:not(.sticky):not(.scrolled) .popup_menu:not(.opened) .line,.light:not(.sticky):not(.scrolled) .popup_menu:not(.opened) .line:after,.light:not(.sticky):not(.scrolled) .popup_menu:not(.opened) .line:before {
    background-color: #fff
  }
}

.popup_menu .line:before {
  top: -4px
}

.popup_menu .line:after {
  top: 4px
}

.popup_menu.opened .line {
  background-color: transparent
}

.popup_menu.opened .fa-bars:before {
  content: "\f00d"
}

.popup_menu.opened .icon_menu:before {
  content: "\4d"
}

.popup_menu.opened .line:after {

  top: 0;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg)
}

.popup_menu.opened .line:before {

  top: 0!important;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.popup_menu_holder_outer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  visibility: hidden;
  opacity: 0;
  z-index: 105
}

.popup_menu.opened .line {
  background-color: transparent!important;
}
.popup_menu.opened .line:after {
  top: 0!important;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.popup_menu_holder {
  width: 100%;
  height: 100%;
  background-color: rgba(34,36,39,0.8);
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  display: table
}
nav.popup_menu ul li ul li {
  padding: 0px 0 0;
}
.popup_menu_holder_inner {
  display: table-cell;
  vertical-align: middle;
  padding: 100px 0 100px;
}

.popup_menu_opened .side_menu_button .shopping_cart_header,.touch .popup_menu_holder_outer {
  display: none
}

.popup_menu_opened #back_to_top,.popup_menu_opened .fixed_top_header .header_bottom_center_widget,.popup_menu_opened .header_top,.popup_menu_opened .main_menu,.popup_menu_opened .mobile_menu_button,.popup_menu_opened .side_menu_button a:not(.popup_menu),.popup_menu_opened header .tooltip {
  visibility: hidden
}

.popup_menu_opened .header_bottom .container_inner {
  border: none
}
nav.popup_menu ul li ul li {
  margin-top: -1px;
}
.popup_menu_opened .popup_menu_holder_outer {
  visibility: visible;
  opacity: 1;
  overflow-y: scroll;
}

.touch .popup_menu_opened .popup_menu_holder_outer {
  display: block
}

.popup_menu_opened header.scrolled .header_bottom,.popup_menu_opened header.sticky .header_bottom {
  background-color: transparent;
  box-shadow: none
}

.popup_menu_opened .fixed_top_header .top_header,.popup_menu_opened .header_bottom,.popup_menu_opened .header_top {
  background-color: transparent;
  border: 0
}

.popup_menu_opened .q_logo img.dark,.popup_menu_opened .q_logo img.light,.popup_menu_opened .q_logo img.mobile,.popup_menu_opened .q_logo img.normal,.popup_menu_opened .q_logo img.sticky {
  opacity: 0
}

.popup_menu_opened header .q_logo img.popup {
  opacity: 1
}

nav.popup_menu {
  margin: 0 auto;
  position: relative;
  top: 0;
  text-align: left
}

nav.popup_menu ul {
  display: none;
  position: relative;
  list-style: none;
  padding: 0;
  margin: 0
}

nav.popup_menu>ul {
  display: block
}

nav.popup_menu ul li {
  margin: 0;
  padding: 0 0 0px 0;
  text-align: center;
  font-size: 45px;
  line-height: 50px
}

nav.popup_menu ul li a,nav.popup_menu ul li h6 {
  font-size: 24px;
  font-weight: 500;
  line-height: 50px;
  letter-spacing: 2px;
  color: #fff;
  padding: 0;
  display: block;
  position: relative;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer
}

nav.popup_menu ul li a:hover,nav.popup_menu ul li h6:hover {
  color: #9c9c9c
}

nav.popup_menu ul li a span,nav.popup_menu ul li h6 span {
  display: inline-block;
  vertical-align: middle
}

nav.popup_menu ul li ul li a,nav.popup_menu ul li ul li h6 {
  font-size: 14px;
  text-transform: none
}

nav.popup_menu ul li ul li ul li a,nav.popup_menu ul li ul li ul li h6 {
  font-size: .5em;
  line-height: 1em
}

.popup_menu.medium .fa {
  font-size: 21px
}

.popup_menu.medium .icon_menu {
  font-size: 30px
}

.popup_menu.medium .line,.popup_menu.medium .line:after,.popup_menu.medium .line:before,.popup_menu.medium .popup_menu_inner {
  height: 3px;
  width: 19px
}

.popup_menu.medium .line:before {
  top: -6px
}

.popup_menu.medium .line:after {
  top: 6px
}

.popup_menu.large .fa {
  font-size: 28px
}

.popup_menu.large .icon_menu {
  font-size: 40px
}

.popup_menu.large .line,.popup_menu.large .line:after,.popup_menu.large .line:before,.popup_menu.large .popup_menu_inner {
  height: 4px;
  width: 24px
}

.popup_menu.large .line:before {
  top: -8px
}

.popup_menu.large .line:after {
  top: 8px
}
nav.popup_menu>ul>li:last-child>a {
  font-size: .7em;
}

nav.popup_menu>ul>li:last-child>a>span {
  border-top: 1px solid rgba(255,255,255,0.8);
  margin-top: 15px;
  padding: 0 25px;
  display: inline-block;
  /* font-size: .7em; */
}

nav.popup_menu ul li a {	
  font-size:42px;
  font-family: "Rogan",Arial,sans-serif!important;
  text-transform: capitalize;
  letter-spacing: 0px;
  line-height: 60px;
  transition:all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
}
nav.popup_menu ul li a:hover {	
  color:#ff33b1;
}
nav.popup_menu ul li ul.submenu li a {
  font-size: 0.5em;
  text-transform: capitalize;
  line-height: 45px;
}
nav.popup_menu ul li.open_sub ul.submenu li a {

}

.side_menu_button>a {
  font-size: 14px;
  position: relative;
  display: inline;
  width: 20px;
  height: 20px;
  padding: 0 12px
}

.side_menu_button>a.side_menu_button_link span {
  vertical-align: middle;
  position: relative;
  top: 2px
}

.side_menu_button>a.side_menu_button_link.medium {
  display: inline-block;
  font-size: 21px;
  line-height: 30px;
  height: 30px;
  width: 19px
}

.side_menu_button>a.side_menu_button_link.large {
  display: inline-block;
  font-size: 28px;
  line-height: 34px;
  height: 34px;
  width: 24px
}

.mobile_menu_button span,.side_menu_button>a {
  -webkit-transition: opacity .3s ease;
  -moz-transition: opacity .3s ease;
  -ms-transition: opacity .3s ease;
  -o-transition: opacity .3s ease;
  color: #9d9d9d
}

.mobile_menu_button span:hover,.side_menu_button>a:hover {
  opacity: .8
}

.side_menu_button>a.search_button {
  vertical-align: middle;
  display: inline-block
}
.side_menu_button>a {
  font-size: 14px;
  position: relative;
  display: inline;
  width: 20px;
  height: 20px;
  padding: 0 12px
}

.side_menu_button>a.side_menu_button_link span {
  vertical-align: middle;
  position: relative;
  top: 2px
}

.side_menu_button>a.side_menu_button_link.medium {
  display: inline-block;
  font-size: 21px;
  line-height: 30px;
  height: 30px;
  width: 19px
}

.side_menu_button>a.side_menu_button_link.large {
  display: inline-block;
  font-size: 28px;
  line-height: 34px;
  height: 34px;
  width: 24px
}

.mobile_menu_button span,.side_menu_button>a {
  -webkit-transition: opacity .3s ease;
  -moz-transition: opacity .3s ease;
  -ms-transition: opacity .3s ease;
  -o-transition: opacity .3s ease;
  color: #9d9d9d
}

.mobile_menu_button span:hover,.side_menu_button>a:hover {
  opacity: .8
}

.side_menu_button>a.search_button {
  vertical-align: middle;
  display: inline-block
}
.mobile_menu_button span, .side_menu_button>a {
  -webkit-transition: opacity .3s ease;
  -moz-transition: opacity .3s ease;
  -ms-transition: opacity .3s ease;
  -o-transition: opacity .3s ease;
  color: #9d9d9d;
}

.side_menu_button > a, .mobile_menu_button span, .fixed_top_header .side_menu_button > a, .fixed_top_header .popup_menu .line, .fixed_top_header .mobile_menu_button span {
  color: #ffffff;
  font-size: 14px;
}

.side_menu_button a:last-child {
  padding: 0;
  top: -1px;
}
.side_menu_button > a:hover, .mobile_menu_button span:hover, .popup_menu:hover .line, .popup_menu:hover .line:after, .popup_menu:hover .line:before {
  color: #ff33b1;
}

.carousel .video .video-wrap .mejs-controls button, .side_menu_button .popup_menu:hover {
  opacity: .8;
}
.popup_menu .line, .popup_menu .line::after, .popup_menu .line::before {
  background-color: #FFFFFF;
}

.popup_menu .line, .popup_menu .line:after, .popup_menu .line:before {
  background-color: #ffffff;
}

.popup_menu:hover .line, .popup_menu:hover .line:after, .popup_menu:hover .line:before {
  background-color: #ff33b1;
}
.side_menu_button > a:hover, .mobile_menu_button span:hover, .popup_menu:hover .line, .popup_menu:hover .line:after, .popup_menu:hover .line:before {
  color: #ff33b1;
}


@media only screen and (max-width: 1000px){
  .popup_menu .line, .popup_menu .line::after, .popup_menu .line::before {
    background-color: #222427 !important;
  }
}

@media only screen and (max-width: 1000px){
  .popup_menu .line, .popup_menu .line::after, .popup_menu .line::before {
    background-color: #222427 !important;
  }
  .mobile_menu_button span:hover, .popup_menu:hover .line, .popup_menu:hover .line:after, .popup_menu:hover .line:before {
    color: #ff33b1;
  }
  .popup_menu:hover .line, .popup_menu:hover .line:after, .popup_menu:hover .line:before {
    background-color: #ff33b1 !important;
  }

  .popup_menu_opened .popup_menu .line, 
  .popup_menu_opened .popup_menu .line::after,
  .popup_menu_opened .popup_menu .line::before {
    background-color: #fff !important;
  }

  .popup_menu_opened .popup_menu:hover .line,
  .popup_menu_opened .popup_menu:hover .line:after,
  .popup_menu_opened .popup_menu:hover .line:before {
    background-color: #ff33b1 !important;
  }
  body.popup_menu_opened .popup_menu.opened .line {
    background-color: transparent !important;
  }
  body .header__navigation{
    display:block;
  }
}

@media only screen and (max-width: 768px){
  nav.popup_menu ul li a {
    line-height: 45px;

  }
  nav.popup_menu ul li a span, nav.popup_menu ul li h6 span {
    font-size: .7em;
  }
  nav.navigation-primary.popup_menu {
    padding-top: 9px;
  }
  .custom-menu-primary ul.submenu.level-2 li.menu-item {

  }
  nav.popup_menu>ul>li:last-child>a {
    border-top-color: rgba(255,255,255,1.0);
    font-size: 22.05px;
  }
  nav.popup_menu>ul>li:last-child>a>span {
    font-size: 22.05px;
}
  nav.popup_menu ul li ul.submenu li a span {
    font-size: 15.75px;
  }
  nav.popup_menu ul li ul.sub_menu li a,
  nav.popup_menu ul li ul.submenu li a{
    line-height: 35px;
    font-size: 15.75px;
  }

}
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your
tables look throughout your site.
*********************************************************************************
****************************************************************************** */

table {
  margin-bottom: 1rem;
  border: 1px solid #dee2e6;
}

th,
td {
  padding: 0.75rem;
  vertical-align: top;
  border: 1px solid #dee2e6;
}

thead th,
thead td {
  color: #fff;
  background-color: #343a40;
  border-color: #454d55;
  border-bottom-width: 2px;
}

thead th {
  vertical-align: bottom;
  border-bottom: 2px solid #dee2e6;
}

tbody + tbody {
  border-top: 2px solid #dee2e6;
}
.hs_row {
  margin-left: -15px;
  margin-right: -15px
}

.hs_col-lg-1,.hs_col-lg-10,.hs_col-lg-11,.hs_col-lg-12,.hs_col-lg-2,.hs_col-lg-3,.hs_col-lg-4,.hs_col-lg-5,.hs_col-lg-6,.hs_col-lg-7,.hs_col-lg-8,.hs_col-lg-9,.hs_col-md-1,.hs_col-md-10,.hs_col-md-11,.hs_col-md-12,.hs_col-md-2,.hs_col-md-3,.hs_col-md-4,.hs_col-md-5,.hs_col-md-6,.hs_col-md-7,.hs_col-md-8,.hs_col-md-9,.hs_col-sm-1,.hs_col-sm-10,.hs_col-sm-11,.hs_col-sm-12,.hs_col-sm-2,.hs_col-sm-3,.hs_col-sm-4,.hs_col-sm-5,.hs_col-sm-6,.hs_col-sm-7,.hs_col-sm-8,.hs_col-sm-9,.hs_col-xs-1,.hs_col-xs-10,.hs_col-xs-11,.hs_col-xs-12,.hs_col-xs-2,.hs_col-xs-3,.hs_col-xs-4,.hs_col-xs-5,.hs_col-xs-6,.hs_col-xs-7,.hs_col-xs-8,.hs_col-xs-9 {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box
}

.hs_col-xs-1,.hs_col-xs-10,.hs_col-xs-11,.hs_col-xs-12,.hs_col-xs-2,.hs_col-xs-3,.hs_col-xs-4,.hs_col-xs-5,.hs_col-xs-6,.hs_col-xs-7,.hs_col-xs-8,.hs_col-xs-9 {
  float: left
}

.hs_col-xs-11 {
  width: 91.66666667%
}

.hs_col-xs-10 {
  width: 83.33333333%
}

.hs_col-xs-9 {
  width: 75%
}

.hs_col-xs-8 {
  width: 66.66666667%
}

.hs_col-xs-7 {
  width: 58.33333333%
}

.hs_col-xs-6 {
  width: 50%
}

.hs_col-xs-5 {
  width: 41.66666667%
}

.hs_col-xs-4 {
  width: 33.33333333%
}

.hs_col-xs-3 {
  width: 25%
}

.hs_col-xs-2 {
  width: 16.66666667%
}

.hs_col-xs-1 {
  width: 8.33333333%
}

.hs_col-xs-pull-12 {
  right: 100%
}

.hs_col-xs-pull-11 {
  right: 91.66666667%
}

.hs_col-xs-pull-10 {
  right: 83.33333333%
}

.hs_col-xs-pull-9 {
  right: 75%
}

.hs_col-xs-pull-8 {
  right: 66.66666667%
}

.hs_col-xs-pull-7 {
  right: 58.33333333%
}

.hs_col-xs-pull-6 {
  right: 50%
}

.hs_col-xs-pull-5 {
  right: 41.66666667%
}

.hs_col-xs-pull-4 {
  right: 33.33333333%
}

.hs_col-xs-pull-3 {
  right: 25%
}

.hs_col-xs-pull-2 {
  right: 16.66666667%
}

.hs_col-xs-pull-1 {
  right: 8.33333333%
}

.hs_col-xs-pull-0 {
  right: auto
}

.hs_col-xs-push-12 {
  left: 100%
}

.hs_col-xs-push-11 {
  left: 91.66666667%
}

.hs_col-xs-push-10 {
  left: 83.33333333%
}

.hs_col-xs-push-9 {
  left: 75%
}

.hs_col-xs-push-8 {
  left: 66.66666667%
}

.hs_col-xs-push-7 {
  left: 58.33333333%
}

.hs_col-xs-push-6 {
  left: 50%
}

.hs_col-xs-push-5 {
  left: 41.66666667%
}

.hs_col-xs-push-4 {
  left: 33.33333333%
}

.hs_col-xs-push-3 {
  left: 25%
}

.hs_col-xs-push-2 {
  left: 16.66666667%
}

.hs_col-xs-push-1 {
  left: 8.33333333%
}

.hs_col-xs-push-0 {
  left: auto
}

.hs_col-xs-offset-12 {
  margin-left: 100%
}

.hs_col-xs-offset-11 {
  margin-left: 91.66666667%
}

.hs_col-xs-offset-10 {
  margin-left: 83.33333333%
}

.hs_col-xs-offset-9 {
  margin-left: 75%
}

.hs_col-xs-offset-8 {
  margin-left: 66.66666667%
}

.hs_col-xs-offset-7 {
  margin-left: 58.33333333%
}

.hs_col-xs-offset-6 {
  margin-left: 50%
}

.hs_col-xs-offset-5 {
  margin-left: 41.66666667%
}

.hs_col-xs-offset-4 {
  margin-left: 33.33333333%
}

.hs_col-xs-offset-3 {
  margin-left: 25%
}

.hs_col-xs-offset-2 {
  margin-left: 16.66666667%
}

.hs_col-xs-offset-1 {
  margin-left: 8.33333333%
}

.hs_col-xs-offset-0 {
  margin-left: 0
}

@media (min-width: 768px) {
  .hs_col-sm-1,.hs_col-sm-10,.hs_col-sm-11,.hs_col-sm-12,.hs_col-sm-2,.hs_col-sm-3,.hs_col-sm-4,.hs_col-sm-5,.hs_col-sm-6,.hs_col-sm-7,.hs_col-sm-8,.hs_col-sm-9 {
    float:left
  }

  .hs_col-sm-12 {
    width: 100%
  }

  .hs_col-sm-11 {
    width: 91.66666667%
  }

  .hs_col-sm-10 {
    width: 83.33333333%
  }

  .hs_col-sm-9 {
    width: 75%
  }

  .hs_col-sm-8 {
    width: 66.66666667%
  }

  .hs_col-sm-7 {
    width: 58.33333333%
  }

  .hs_col-sm-6 {
    width: 50%
  }

  .hs_col-sm-5 {
    width: 41.66666667%
  }

  .hs_col-sm-4 {
    width: 33.33333333%
  }

  .hs_col-sm-3 {
    width: 25%
  }

  .hs_col-sm-2 {
    width: 16.66666667%
  }

  .hs_col-sm-1 {
    width: 8.33333333%
  }

  .hs_col-sm-pull-12 {
    right: 100%
  }

  .hs_col-sm-pull-11 {
    right: 91.66666667%
  }

  .hs_col-sm-pull-10 {
    right: 83.33333333%
  }

  .hs_col-sm-pull-9 {
    right: 75%
  }

  .hs_col-sm-pull-8 {
    right: 66.66666667%
  }

  .hs_col-sm-pull-7 {
    right: 58.33333333%
  }

  .hs_col-sm-pull-6 {
    right: 50%
  }

  .hs_col-sm-pull-5 {
    right: 41.66666667%
  }

  .hs_col-sm-pull-4 {
    right: 33.33333333%
  }

  .hs_col-sm-pull-3 {
    right: 25%
  }

  .hs_col-sm-pull-2 {
    right: 16.66666667%
  }

  .hs_col-sm-pull-1 {
    right: 8.33333333%
  }

  .hs_col-sm-pull-0 {
    right: auto
  }

  .hs_col-sm-push-12 {
    left: 100%
  }

  .hs_col-sm-push-11 {
    left: 91.66666667%
  }

  .hs_col-sm-push-10 {
    left: 83.33333333%
  }

  .hs_col-sm-push-9 {
    left: 75%
  }

  .hs_col-sm-push-8 {
    left: 66.66666667%
  }

  .hs_col-sm-push-7 {
    left: 58.33333333%
  }

  .hs_col-sm-push-6 {
    left: 50%
  }

  .hs_col-sm-push-5 {
    left: 41.66666667%
  }

  .hs_col-sm-push-4 {
    left: 33.33333333%
  }

  .hs_col-sm-push-3 {
    left: 25%
  }

  .hs_col-sm-push-2 {
    left: 16.66666667%
  }

  .hs_col-sm-push-1 {
    left: 8.33333333%
  }

  .hs_col-sm-push-0 {
    left: auto
  }

  .hs_col-sm-offset-12 {
    margin-left: 100%
  }

  .hs_col-sm-offset-11 {
    margin-left: 91.66666667%
  }

  .hs_col-sm-offset-10 {
    margin-left: 83.33333333%
  }

  .hs_col-sm-offset-9 {
    margin-left: 75%
  }

  .hs_col-sm-offset-8 {
    margin-left: 66.66666667%
  }

  .hs_col-sm-offset-7 {
    margin-left: 58.33333333%
  }

  .hs_col-sm-offset-6 {
    margin-left: 50%
  }

  .hs_col-sm-offset-5 {
    margin-left: 41.66666667%
  }

  .hs_col-sm-offset-4 {
    margin-left: 33.33333333%
  }

  .hs_col-sm-offset-3 {
    margin-left: 25%
  }

  .hs_col-sm-offset-2 {
    margin-left: 16.66666667%
  }

  .hs_col-sm-offset-1 {
    margin-left: 8.33333333%
  }

  .hs_col-sm-offset-0 {
    margin-left: 0
  }
}

@media (min-width: 992px) {
  .hs_col-md-1,.hs_col-md-10,.hs_col-md-11,.hs_col-md-12,.hs_col-md-2,.hs_col-md-3,.hs_col-md-4,.hs_col-md-5,.hs_col-md-6,.hs_col-md-7,.hs_col-md-8,.hs_col-md-9 {
    float:left
  }

  .hs_col-md-12 {
    width: 100%
  }

  .hs_col-md-11 {
    width: 91.66666667%
  }

  .hs_col-md-10 {
    width: 83.33333333%
  }

  .hs_col-md-9 {
    width: 75%
  }

  .hs_col-md-8 {
    width: 66.66666667%
  }

  .hs_col-md-7 {
    width: 58.33333333%
  }

  .hs_col-md-6 {
    width: 50%
  }

  .hs_col-md-5 {
    width: 41.66666667%
  }

  .hs_col-md-4 {
    width: 33.33333333%
  }

  .hs_col-md-3 {
    width: 25%
  }

  .hs_col-md-2 {
    width: 16.66666667%
  }

  .hs_col-md-1 {
    width: 8.33333333%
  }

  .hs_col-md-pull-12 {
    right: 100%
  }

  .hs_col-md-pull-11 {
    right: 91.66666667%
  }

  .hs_col-md-pull-10 {
    right: 83.33333333%
  }

  .hs_col-md-pull-9 {
    right: 75%
  }

  .hs_col-md-pull-8 {
    right: 66.66666667%
  }

  .hs_col-md-pull-7 {
    right: 58.33333333%
  }

  .hs_col-md-pull-6 {
    right: 50%
  }

  .hs_col-md-pull-5 {
    right: 41.66666667%
  }

  .hs_col-md-pull-4 {
    right: 33.33333333%
  }

  .hs_col-md-pull-3 {
    right: 25%
  }

  .hs_col-md-pull-2 {
    right: 16.66666667%
  }

  .hs_col-md-pull-1 {
    right: 8.33333333%
  }

  .hs_col-md-pull-0 {
    right: auto
  }

  .hs_col-md-push-12 {
    left: 100%
  }

  .hs_col-md-push-11 {
    left: 91.66666667%
  }

  .hs_col-md-push-10 {
    left: 83.33333333%
  }

  .hs_col-md-push-9 {
    left: 75%
  }

  .hs_col-md-push-8 {
    left: 66.66666667%
  }

  .hs_col-md-push-7 {
    left: 58.33333333%
  }

  .hs_col-md-push-6 {
    left: 50%
  }

  .hs_col-md-push-5 {
    left: 41.66666667%
  }

  .hs_col-md-push-4 {
    left: 33.33333333%
  }

  .hs_col-md-push-3 {
    left: 25%
  }

  .hs_col-md-push-2 {
    left: 16.66666667%
  }

  .hs_col-md-push-1 {
    left: 8.33333333%
  }

  .hs_col-md-push-0 {
    left: auto
  }

  .hs_col-md-offset-12 {
    margin-left: 100%
  }

  .hs_col-md-offset-11 {
    margin-left: 91.66666667%
  }

  .hs_col-md-offset-10 {
    margin-left: 83.33333333%
  }

  .hs_col-md-offset-9 {
    margin-left: 75%
  }

  .hs_col-md-offset-8 {
    margin-left: 66.66666667%
  }

  .hs_col-md-offset-7 {
    margin-left: 58.33333333%
  }

  .hs_col-md-offset-6 {
    margin-left: 50%
  }

  .hs_col-md-offset-5 {
    margin-left: 41.66666667%
  }

  .hs_col-md-offset-4 {
    margin-left: 33.33333333%
  }

  .hs_col-md-offset-3 {
    margin-left: 25%
  }

  .hs_col-md-offset-2 {
    margin-left: 16.66666667%
  }

  .hs_col-md-offset-1 {
    margin-left: 8.33333333%
  }

  .hs_col-md-offset-0 {
    margin-left: 0
  }
}

@media (min-width: 1200px) {
  .hs_hidden-lg {
    display:none!important
  }

  .hs_col-lg-1,.hs_col-lg-10,.hs_col-lg-11,.hs_col-lg-12,.hs_col-lg-2,.hs_col-lg-3,.hs_col-lg-4,.hs_col-lg-5,.hs_col-lg-6,.hs_col-lg-7,.hs_col-lg-8,.hs_col-lg-9 {
    float: left
  }

  .hs_col-lg-12 {
    width: 100%
  }

  .hs_col-lg-11 {
    width: 91.66666667%
  }

  .hs_col-lg-10 {
    width: 83.33333333%
  }

  .hs_col-lg-9 {
    width: 75%
  }

  .hs_col-lg-8 {
    width: 66.66666667%
  }

  .hs_col-lg-7 {
    width: 58.33333333%
  }

  .hs_col-lg-6 {
    width: 50%
  }

  .hs_col-lg-5 {
    width: 41.66666667%
  }

  .hs_col-lg-4 {
    width: 33.33333333%
  }

  .hs_col-lg-3 {
    width: 25%
  }

  .hs_col-lg-2 {
    width: 16.66666667%
  }

  .hs_col-lg-1 {
    width: 8.33333333%
  }

  .hs_col-lg-pull-12 {
    right: 100%
  }

  .hs_col-lg-pull-11 {
    right: 91.66666667%
  }

  .hs_col-lg-pull-10 {
    right: 83.33333333%
  }

  .hs_col-lg-pull-9 {
    right: 75%
  }

  .hs_col-lg-pull-8 {
    right: 66.66666667%
  }

  .hs_col-lg-pull-7 {
    right: 58.33333333%
  }

  .hs_col-lg-pull-6 {
    right: 50%
  }

  .hs_col-lg-pull-5 {
    right: 41.66666667%
  }

  .hs_col-lg-pull-4 {
    right: 33.33333333%
  }

  .hs_col-lg-pull-3 {
    right: 25%
  }

  .hs_col-lg-pull-2 {
    right: 16.66666667%
  }

  .hs_col-lg-pull-1 {
    right: 8.33333333%
  }

  .hs_col-lg-pull-0 {
    right: auto
  }

  .hs_col-lg-push-12 {
    left: 100%
  }

  .hs_col-lg-push-11 {
    left: 91.66666667%
  }

  .hs_col-lg-push-10 {
    left: 83.33333333%
  }

  .hs_col-lg-push-9 {
    left: 75%
  }

  .hs_col-lg-push-8 {
    left: 66.66666667%
  }

  .hs_col-lg-push-7 {
    left: 58.33333333%
  }

  .hs_col-lg-push-6 {
    left: 50%
  }

  .hs_col-lg-push-5 {
    left: 41.66666667%
  }

  .hs_col-lg-push-4 {
    left: 33.33333333%
  }

  .hs_col-lg-push-3 {
    left: 25%
  }

  .hs_col-lg-push-2 {
    left: 16.66666667%
  }

  .hs_col-lg-push-1 {
    left: 8.33333333%
  }

  .hs_col-lg-push-0 {
    left: auto
  }

  .hs_col-lg-offset-12 {
    margin-left: 100%
  }

  .hs_col-lg-offset-11 {
    margin-left: 91.66666667%
  }

  .hs_col-lg-offset-10 {
    margin-left: 83.33333333%
  }

  .hs_col-lg-offset-9 {
    margin-left: 75%
  }

  .hs_col-lg-offset-8 {
    margin-left: 66.66666667%
  }

  .hs_col-lg-offset-7 {
    margin-left: 58.33333333%
  }

  .hs_col-lg-offset-6 {
    margin-left: 50%
  }

  .hs_col-lg-offset-5 {
    margin-left: 41.66666667%
  }

  .hs_col-lg-offset-4 {
    margin-left: 33.33333333%
  }

  .hs_col-lg-offset-3 {
    margin-left: 25%
  }

  .hs_col-lg-offset-2 {
    margin-left: 16.66666667%
  }

  .hs_col-lg-offset-1 {
    margin-left: 8.33333333%
  }

  .hs_col-lg-offset-0 {
    margin-left: 0
  }

  .hs_el-clearfix-lg {
    clear: both
  }
}


.hs_col-xs-1, .hs_col-sm-1, .hs_col-md-1, .hs_col-lg-1, .hs_col-xs-2, .hs_col-sm-2, .hs_col-md-2, .hs_col-lg-2, .hs_col-xs-3, .hs_col-sm-3, .hs_col-md-3, .hs_col-lg-3, .hs_col-xs-4, .hs_col-sm-4, .hs_col-md-4, .hs_col-lg-4, .hs_col-xs-5, .hs_col-sm-5, .hs_col-md-5, .hs_col-lg-5, .hs_col-xs-6, .hs_col-sm-6, .hs_col-md-6, .hs_col-lg-6, .hs_col-xs-7, .hs_col-sm-7, .hs_col-md-7, .hs_col-lg-7, .hs_col-xs-8, .hs_col-sm-8, .hs_col-md-8, .hs_col-lg-8, .hs_col-xs-9, .hs_col-sm-9, .hs_col-md-9, .hs_col-lg-9, .hs_col-xs-10, .hs_col-sm-10, .hs_col-md-10, .hs_col-lg-10, .hs_col-xs-11, .hs_col-sm-11, .hs_col-md-11, .hs_col-lg-11, .hs_col-xs-12, .hs_col-sm-12, .hs_col-md-12, .hs_col-lg-12 {
  padding-left: 0px;
  padding-right: 0px;
}
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your landing pages
look if there is anything specific to your landing pages.
*********************************************************************************
****************************************************************************** */
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your landing pages
look if there is anything specific to your landing pages.
*********************************************************************************
****************************************************************************** */


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


.single-work .image-block {
  padding-top: 0 !important;
  overflow: hidden;
  height: 25vw;
  min-height: 400px;
  position: relative;
}

.single-work .image-block img {
  object-fit: cover;
  width: 100%;
  height: 100% !important;
  top: 0;
  left: 0;
  position: absolute;
  -moz-object-fit: cover;
}

.padding-large {
  padding-left: 50px;
  padding-right: 50px;
}
.match-height.hs_col-sm-3, .match-height.hs_col-sm-6 .match-inner.hs_col-sm-6 {
  height: 25vw;
  min-height: 400px;
}

.center-btn {
  text-align: center;
}
.btn {
  font-family: "Rogan-Bold",Arial,sans-serif;
  font-weight: bold !important;
  text-transform: capitalize !important;
  padding:0 40px;
  display: inline-block;
  height:50px;
  line-height: 50px;
  position: relative;
  background: transparent;
  color: #323232;
  cursor: pointer;
  transition:all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transition:  all 0.5s ease;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  background:rgba(0,0,0,0);
  overflow: hidden;
  border-radius: 60px;
  -webkit-border-radius: 60px;
  -moz-border-radius: 60px;
  text-align: center;
}
.btn.large {
  height:60px;
  line-height: 60px;
  font-size: 22px;
  padding:0;
  width: 250px;
}
.btn.white {
  color: #fff !important;
}
.btn:hover {
  background:rgba(66, 193, 201, 1);
  color: #fff;
}
.btn.white:hover {
  background:rgba(0,0,0,0.4);
}
.btn.reverse {
  margin-top:-30px;
  background-color: #323232;
  color: #fff;
}
.btn.large.reverse {
  line-height: 56px;
  background-color: #22abff;
  border: 2px solid #22abff;
}
.btn.large.reverse:hover {
  background-color: #323232;
  color: #fff;
  border: 2px solid #323232;
}
.btn span {
  vertical-align: text-bottom;
}
.btn svg {
  position: absolute;
  top:0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.btn svg line { 
  stroke-width:4;
  stroke:#323232;
  fill:none;
  transition:all .5s;
  -moz-transition:all .5s;
  -webkit-transition: all .5s;
}
.btn.reverse svg line {
  stroke-width:0;
  stroke:rgba(66, 193, 201, 1);
}
.btn.white svg line { 
  stroke:#fff;
}
.btn.large svg line {
  stroke-width:8;
}
.btn svg line.top, .btn svg line.bottom {
  stroke-dasharray: 0;	
} 
.btn svg line.left, .btn svg line.right { 
  stroke-dasharray: 50;
}
.btn.large svg line.top, .btn.large svg line.bottom {
  stroke-dasharray: 250;
}
.btn.large svg line.left, .btn.large svg line.right { 
  stroke-dasharray: 60;
}
.btn:hover svg line { 
  stroke-width:0;
}
.btn:hover svg line.top, .btn.reverse svg line.top  {
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
}
.btn:hover svg line.left {
  -webkit-transform: translateY(50px);
  transform: translateY(50px);
}
.btn:hover svg line.bottom, .btn.reverse svg line.bottom {
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
}
.btn:hover svg line.right, .btn.reverse svg line.right {
  -webkit-transform: translateY(-50px);
  transform: translateY(-50px);
}
.btn.reverse svg line.left {
  -webkit-transform: translateY(60px);
  transform: translateY(60px);
}
.btn.reverse svg line.right {
  -webkit-transform: translateY(-60px);
  transform: translateY(-60px);
}
.btn.reverse:hover svg line {
  stroke-width:4;
  -webkit-transform: translateX(0);
  -webkit-transform: translateY(0);
  transform: translateX(0);
  transform: translateY(0);
}


.btn-under{
  background: rgba(0,0,0,0);
  font-weight: 300;	
  color: #fff;
}
.btn-uwhite{
  color: #000;
}
.btn-under svg{
  height: 50px;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.btn-under.large svg{
  height: 60px;
  display: none !important;
}
.btn-under rect{
  fill: none;
  stroke: #fff;
  stroke-width: 4;
  stroke-dasharray: 522, 0;
}
.btn-uwhite rect{
  stroke: #000;
}
.btn-work rect{
  stroke: #323232;
}
.btn-under:hover{
  background:rgba(0,0,0,0.4);
}
.btn-uwhite:hover{
  background: rgb(66, 193, 201);
}
.btn-under:hover rect{
  stroke-dasharray: 0, 410;
  stroke-dashoffset: 155;
  transition: all 1.5s cubic-bezier(0.19, 1, 0.22, 1);
  opacity:0;
}
.btn-work:hover rect{
  stroke: #222;
}
.custom-work-row3 .hs-button {
  font-family: "Rogan-Bold",Arial,sans-serif;
  font-weight: bold !important;
  text-transform: capitalize !important;
  padding: 0 40px;
  display: inline-block;
  height: 50px;
  line-height: 50px;
  position: relative;
  background: transparent;
  color: #323232;
  cursor: pointer;
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  background: rgba(0,0,0,0);
  overflow: hidden;
  border-radius: 60px;
  -webkit-border-radius: 60px;
  -moz-border-radius: 60px;
  height: 60px;
  line-height: 60px;
  font-size: 22px;
  padding: 0;
  width: 250px;
  line-height: 56px;
  background-color: #22abff;
  border: 2px solid #22abff;
  color: #fff;
  margin-top: -30px;
}
.custom-services-row3 .custom-testimonial-slider-group .testimonial-holder {
  max-width: 1000px;
}

.custom-services-row3 .custom-testimonial-slider-group .testimonial-holder p.quote-text {
  padding: 0;
}
.custom-work-row3 .hs-button:hover {
  background-color: #323232;
  color: #fff;
  border: 2px solid #323232;
}
.parallax_section_inner_margin, .section_inner_margin {
  margin-left: -15px;
  margin-right: -15px;
}
.testimonial-block h2:after {
  background-image:url(//2886534.fs1.hubspotusercontent-na1.net/hubfs/2886534/raw_assets/public/Roketto_July2020/images/quote-marks.png);
}
.hs_column-inner {
  box-sizing: border-box;
  padding-left: 15px;
  padding-right: 15px;
  width: 100%;
}
.custom-work-row3 {
  margin: -44px 0 -38px;
}
.keats-body-container h5 {
  font-size: 16px;
  line-height: 24px;
  text-transform: uppercase;
  margin: 0;
  font-weight: 600;
  font-family: "proxima-nova",Helvetica,Arial,sans-serif;
}
.custom-work-row3:not(.custom-keats-row3) * {
  float: none !important;
}
.full_section_inner {
  position: relative;
  z-index: 20;
}
.custom-work-row6 h3 a {
  text-align: center;
  font-size: 42px;
  line-height: 53px;
  color: #323232;
  display: block;
  padding: 150px 25px;
  background-color: transparent;
  transition: all .4s ease;
  -moz-transition: all .4s ease;
  -webkit-transition: all .4s ease;
  text-transform: none !important;
  font-weight: bold !important;
  letter-spacing: 0!important;
  font-family: "Rogan-Bold",Arial,sans-serif;
}
.custom-work-row6 h3 a:hover {
  background-color: #22abff;
  color: #fff;
}
.custom-work-row6 h3 {
  margin: 0;
}

.custom-work-row3.custom-keats-row3 {
  margin: 0;
}
.custom-work-row6 h3 span{
  font-family: "Rogan", Arial, sans-serif;
  font-weight: normal !important;
  display: block;
}

.custom-estate-row1 {
  padding: 0 10px;
  padding-top: 80px;
  text-align: center;
  /* margin: 0 -15px; */
}
.custom-estate-row1 h2 {
  font-family: "Rogan", Arial, sans-serif;
  font-weight: normal !important;
  font-size: 80px;
  line-height: 1.2em;
  margin: 0;
}
.custom-estate-row1 .span4 {
  padding-left: 15px;
  padding-right: 15px;
}
.custom-estate-row1 h4 {
  line-height: 20px;
  margin: 0;
}
.custom-estate-row1 .span4 {
  padding-bottom: 40px;
}
.custom-estate-row1 p {
  margin-top: 0 !important;
  font-size: 0.9em;
  margin: 0;
}

.custom-estate-row4 .dnd-section>.row-fluid {
  max-width: 1600px !important;
  margin: 0 auto;
}

.custom-estate-row4 .span4 {
  padding: 0 30px;
  margin: 0;
  width: 33.33333333%;
}
.custom-estate-row4 .dnd-section {
  padding: 0 10px;
}
.custom-estate-row4 h4 {
  font-size: 21px;
  margin: 0;
}
div.section {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.custom-estate-row4 h3 {
  margin: 0;
}
.custom-estate-row4 p {
  margin-bottom: 40px;
}
.custom-estate-row6 .marketing-row.short-row .imagen-col {
  min-height: 50vw;
}

.custom-home-row6 .recent-post-area {
  padding-bottom: 0px;
}

.custom-home-row6 {
  background-color: #f3f3f5;
  padding-top: 63px;
  padding-bottom: 60px;
}
.hs_row.section.hs_inner.hold-full-inner.white-info-section {
  background-color: #f3f3f5;
  position: static;
}

.home-top-scrolling .row-holder .hs_col-sm-8:before{
  background-image: url(//2886534.fs1.hubspotusercontent-na1.net/hubfs/2886534/raw_assets/public/Roketto_July2020/images/arrow-down-blue.png);
}
.home-top-scrolling .row-holder .hs_col-sm-4:after {
  background-image: url(//2886534.fs1.hubspotusercontent-na1.net/hubfs/2886534/raw_assets/public/Roketto_July2020/images/ipad-top-outer-fixed.svg);
}

.hs-agency-section-one,
.hs-agency-section-two{
  background-color: #f7f7f7;
}
.cm-padding-col,
.agency-work-page-area .dnd-section,
.bb-saas-page-area .dnd-section,
.inbound-marketing-page-area .dnd-section{
  padding-left: 85px;
  padding-right: 85px;
}
.cm-full-wrap-inner {
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}
.hs-agency-section-two{
  background-image: url(//2886534.fs1.hubspotusercontent-na1.net/hubfs/2886534/raw_assets/public/Roketto_July2020/images/stardust-transparent-pattern.png);
  background-size: 400px;
  background-repeat: repeat;
  background-position: center center;
}
.ready-grow-business-form .hs-form .hs-form-field .hs-input:required {
  background-image: url(//2886534.fs1.hubspotusercontent-na1.net/hubfs/2886534/raw_assets/public/Roketto_July2020/images/roketto-asterisk-required-field.png);
  background-repeat: no-repeat;
  background-size: 30px;
  background-position: right 20px;
}
.hs-agency-section-three .dnd-section > .row-fluid {
  padding-left: 0;
  padding-right: 0;
}
.marketing-banner-grp.SEOAgency .marketing-banner-left-col h1 {
  padding-bottom: 40px;
}
.marketing-banner-grp.SEOAgency .marketing-banner-inner {
  background-size: 44%;
  background-position: right 0 bottom 0;
}
.marketing-banner-grp.SEOAgency .marketing-banner-left-col {
  width: 58.33333333%;
}
.marketing-banner-cnt h5 u {
  position: relative;
  font-weight: 600;
  border-bottom: 1px solid rgba(255,255,255,0.5);
  text-decoration: none;
}
.marketing-banner-cnt h5 {
  -webkit-font-smoothing: antialiased;
  font-weight: 500;
  color: #fff;
  font-size: 1.2em;
  line-height: 1.4em;
  font-family: "proxima-nova",Helvetica,Arial,sans-serif;
  margin: 0;
}
.marketing-banner-cnt p:last-child {
  margin-bottom: 0;
}
.ready-grow-business-form .hs-form .hs-form-field select.hs-input {
  background-image: url(//2886534.fs1.hubspotusercontent-na1.net/hubfs/2886534/raw_assets/public/Roketto_July2020/images/select-back.png);
}
.ContentMarketingAgency .marketing-banner-inner {
  background-size: 44%;
  background-position: right 2% bottom 100px;
}

.ContentMarketingAgency .marketing-banner-cnt h6 {
  margin: 0;
}
.ContentMarketingAgency .marketing-banner-btn a.blue-color {
  background-color: #22abff;
  border-color: #22abff;
  min-height: 60px;
  padding-left: 45px;
  padding-right: 45px;
  font-size: 22px;
  line-height: 56px;
  height: auto;
}
.ContentMarketingAgency .marketing-banner-btn a.blue-color:hover {
  color: #fff;
  background-color: #232527;
  border-color: #232527;
}
.SaaSMarketingAgency .marketing-banner-inner {
  background-position: right 0 bottom 0;
  background-size: 44%;
}
.marketing-banner-btn-item {
  margin-right: 6px;
  display: inline-block;
}
.SaaSMarketingAgency .marketing-banner-btn a.pink-color {
  font-family: "Rogan-Bold",Arial,sans-serif;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  letter-spacing: 0;
  position: relative;
  min-width: auto;
  background-color: #8a2dd3;
  border-color: #8a2dd3;  
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease; 
  padding: 13px 30px 12px;
  min-height: 50px;
  height: auto;
  line-height: 1.2;
}
.SaaSMarketingAgency .marketing-banner-btn a.pink-color:hover{
  color: #fff;
  background-color: #232527;
  border-color: #232527;
}
.SaaSMarketingAgency .marketing-banner-btn .hs-cta-node .cta_button {
  font-size: 18px;
  height: 50px !important;
  letter-spacing: 0;
  border: none;
  text-shadow: none;
  box-shadow: none;
  background-image: none;
  padding: 0 30px;
  font-family: 'Rogan-bold', Arial, sans-serif !important;
  line-height: 50px !important;
  min-width: auto;
}

.SaaSMarketingAgency .marketing-banner-btn .hs-cta-node .cta_button:hover {
  color: #fff;
  background-color: #232527 !important;
  border-color: #232527 !important;
  border: 0 !important;
  background-image: none !important;
  box-shadow: none !important;
  -webkit-box-shadow: none !important;
  -moz-box-shadow: none !important;
}
.cta-quote-author p span {
  color: #fff;
}
.cta-quote-author h4 span {
  color: #fff;
}
.what-we-do-section .dragger-container:after {
  position: absolute;
  cursor: move;
  content: " ";
  width: 38px;
  height: 38px;
  bottom: 832px;
  left: -18px;
  background-color: #fff;
  background-image: url(//2886534.fs1.hubspotusercontent-na1.net/hubfs/2886534/raw_assets/public/Roketto_July2020/images/dragger-center.svg);
  background-size: 28px;
  background-position: center center;
  background-repeat: no-repeat;
  border-radius: 100px;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  box-shadow: 0 3px 0 rgba(0,0,0,0.4);
  -webkit-box-shadow: 0 3px 0 rgba(0,0,0,0.4);
  transition: background-color 0.3s ease;
  -moz-transition: background-color 0.3s ease;
  -webkit-transition: background-color 0.3s ease;
}
.bb-saas-page .marketing-banner-grp .marketing-banner-inner.position2 {
  background-position: right 0% bottom 0;
}
.bb-saas-page .marketing-banner-grp.position2 .marketing-banner-left-col h1 {
  margin-bottom: 0;
}
.bb-saas-page .marketing-banner-left-col {
  width: 58.33333333%;
}
.bb-saas-page .marketing-banner-btn a {
  font-family: "Rogan-Bold",Arial,sans-serif;
  font-size: 18px;
  text-align: center;
  letter-spacing: 0;
  position: relative;
  min-width: auto;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
}
.bb-saas-page .marketing-banner-btn .hs-cta-node a {
  font-family: 'Rogan-bold', Arial, sans-serif !important;
  padding: 15px 30px 12px !important;
  min-height: 50px;
  height:auto !important;
  height: auto;
  line-height: 1.2;
  font-size: 18px;
}
.marketing-banner-btn .hs-cta-node a:hover {
  border: none !important;
  box-shadow: none !important;
}
.marketing-banner-btn a.pink-color {
  font-family: "Rogan-Bold",Arial,sans-serif;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  letter-spacing: 0;
  position: relative;
  min-width: auto;
  background-color: #8a2dd3;
  border-color: #8a2dd3;
  transition: all .3s ease;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  padding: 13px 30px 12px;
  min-height: 50px;
  height: auto;
  line-height: 1.2;
}
.marketing-banner-btn a.pink-color:hover {
  color: #fff;
  background-color: #232527;
  border-color: #232527;
}
.cta_button {
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
}
.hs-bb-saas-section-two .span2.dnd-column .widget-type-linked_image {
  background: #fff;
  width: 150px;
  height: 150px;
  border-radius: 400px;
  -webkit-border-radius: 400px;
  -moz-border-radius: 400px;
  margin: 0 auto 20px auto;
  position: relative;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  -webkit-box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  -moz-box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.hs-bb-saas-section-two .span2.dnd-column .widget-type-linked_image img {
  width: 75%;
  height: auto;
  margin-bottom: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  vertical-align: unset;
}

.bb-saas-page-area .hs_cos_wrapper_type_rich_text > *:last-child {
  margin-bottom: 0;
}

.bb-saas-page-area p {
  margin-bottom: 15px;
}
.hs-bb-saas-section-three,
.hs-bb-saas-section-six{
  background-image: url(//2886534.fs1.hubspotusercontent-na1.net/hubfs/2886534/raw_assets/public/Roketto_July2020/images/stardust-transparent-pattern.png);
  background-size: 400px;
  background-repeat: repeat;
  background-position: center center;
  background-color:#f7f7f7;
}
.hs-bb-saas-section-three .get-working-roketto-header h4 {
  font-size: 1.2em;
  line-height: 1.4em;
  font-family: "proxima-nova",Helvetica,Arial,sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  color: #515356;
  margin-top: 20px;
}
.hs-bb-saas-section-three .get-working-roketto-header {
  padding-bottom: 0;
}
.hs-bb-saas-section-three .get-working-roketto-grp {
  padding: 0;
}
.hs-bb-saas-section-three .get-working-roketto-inner {
  max-width: 100%;
}
.hs-bb-saas-section-three .get-working-roketto-item {
  width: 25%;
}
.hs-bb-saas-section-three .dnd-section > .row-fluid {
  padding-left: 0;
  padding-right: 0;
}
img.emoji {
  display: inline !important;
  border: none !important;
  box-shadow: none !important;
  height: 1em !important;
  width: 1em !important;
  margin: 0 .07em !important;
  vertical-align: -0.1em !important;
  background: none !important;
  padding: 0 !important;
}

.hs-bb-saas-section-four{
  background-color: #3d4045;
  background-image: url(//2886534.fs1.hubspotusercontent-na1.net/hubfs/2886534/raw_assets/public/Roketto_July2020/images/roketto-star-bg-pattern.png);
  background-repeat: repeat;
  background-size: 950px;
  background-position:center center;
  color:#fff;
}
.hs-bb-saas-section-five .testimonial-type-2-cnt {
  padding-top: 0;
}
.hs-bb-saas-section-five .testimonial-holder .authored .comp span {
  display: none;
}
.hs-bb-saas-section-six p img[data-img='clutch'] {
  height: 134px;
  width: auto;
}
.hs-bb-saas-section-six p img[data-img='partner'] {
  margin-left: 25px;
  height: 82px;
  width: auto;
}
.ready-grow-business-form h3.form-title {
  margin: 0;
}
.ready-grow-business-form .hs-form .hs-button {
  margin-top:0;
}
.content-with-btn-grp p {
  color: #515356;
}
.hs-bb-saas-section-five .testimonial-type-2-grp {
  background-color: #323232;
}
.hs-bb-saas-section-four .dnd-section > .row-fluid,
.hs-bb-saas-section-seven .dnd-section > .row-fluid{ 
  padding-left: 0;
  padding-right: 0;
}
.hs-inbound-marketing-section-three .dnd-section > .row-fluid {
  padding-left: 0;
  padding-right: 0;
}
.hs-inbound-marketing-section-four .dnd-section > .row-fluid ,
.hs-inbound-marketing-section-five .dnd-section > .row-fluid {
  padding-left: 0;
  padding-right: 0;
}
.hs-inbound-marketing-section-four .cm-pricing-table-item {
  width: 25%;
}
.hs-inbound-marketing-section-four .cm-pricing-table-item:nth-child(3n+3) {
  border-right: 2px solid #f6f6f6;
}
.hs-inbound-marketing-section-four .cm-pricing-table-item:nth-child(4n+4) {
  border-right-color: #fff;
}
.hs-inbound-marketing-section-four .pricing-holder {
  padding: 25px;
}
.hs-inbound-marketing-section-four .pricing-holder .price-description {
  padding: 20px 15px;
}
.hs-inbound-marketing-section-four .pricing-holder .price-description-outer .price-description p {
  font-size: 16px;
  line-height: 21px;
  vertical-align: middle;
}
.price-btn a {
  margin-top: 15px;
  text-transform: none !important;
  font-family: "Rogan-Bold",Arial,sans-serif;
  font-size: 18px;
  font-weight: bold;
  color: #ffffff;
  border-style: solid;
  border-width: 2px;
  border-color: #ff33b1;
  background-color: #ff33b1;
  text-align: center;
  letter-spacing: 0;
  line-height: 46px !important;
  height: 50px !important;
  padding: 0 30px;
  position: relative;
  box-sizing: border-box !important;
  -webkit-box-sizing: border-box !important;
  -moz-box-sizing: border-box !important;
  vertical-align: middle !important;
  display: inline-block;
  border-radius: 100px;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  transition: color .1s linear,background-color .1s linear,border-color .1s linear;
}
.price-btn a:hover {
  color: #fff;
  background-color: #232527;
  border-color: #232527;
}
.pricing-holder .price-description-outer {
  padding-top: 0 !important;
}
.hs-inbound-marketing-section-four .pricing-holder .price-number {
  padding: 13px 12px;
  line-height: 26px;
}
.inbound-launch-plan-cnt ul li:before {
  position: absolute;
  content: " ";
  left: 0;
  top: 0;
  width: 15px;
  height: 23px;
  background-image: url(//2886534.fs1.hubspotusercontent-na1.net/hubfs/2886534/raw_assets/public/Roketto_July2020/images/blue-check.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 14px;
}
.ContentMarketingAgency .marketing-banner-left-col {
  padding-right: 15px;
}
.AdWordsAgency .marketing-banner-left-col {9
  padding-right:95px;
}
.marketing-banner-grp.position2.ManufacturingMarketingAgency .marketing-banner-left-col h1 {
  margin-bottom: 0;
  padding-bottom: 20px;
}
.ManufacturingMarketingAgency .marketing-banner-inner.position2 {
  background-position: right 0 bottom 0;
}
.KelownaSEOAgency .marketing-banner-inner.position2 {
  background-position: right 0 bottom 0;
}

.inbound-marketing-page .revenue-growth-banner-group .marketing-banner-left-col {
  padding-top: 190px;
}
.inbound-marketing-page .revenue-growth-banner-group .marketing-banner-left-col h1 {
  font-size: 68px;
  line-height: 68px;
  padding-bottom: 50px;
  margin-top: 0;
  min-height:auto;
}
.inbound-marketing-page .revenue-growth-banner-group .marketing-banner-left-col h1 .text-slider {
  margin-bottom:0;
}
.inbound-marketing-page .marketing-banner-cnt h6 {
  margin: 0;
}
.inbound-marketing-page .marketing-banner-cnt h6 span {
  position: relative;
  font-weight: 600;
  border-bottom: 1px solid rgba(255,255,255,0.5);
}
.inbound-marketing-page .revenue-growth-banner-group .marketing-banner-logo-item.marketing-banner-logo-1 {
  margin-right: 0;
}
.inbound-marketing-page .revenue-growth-banner-group .marketing-banner-logo {
  margin-top: 50px;
}

.hs-Kelowna-page .marketing-banner-inner a,
.hs-Kelowna-page .marketing-banner-inner a.cta_button {
  font-family: 'Rogan-bold', Arial, sans-serif !important;
  font-size: 18px;
  min-width: auto;
}
.hs-Kelowna-page  .marketing-banner-left-col h1 {
  padding-bottom: 30px;
}
.hs-Kelowna-page .marketing-banner-btn-item {
  display: inline-block;
  margin-bottom: 10px;
}
.hs-Kelowna-page .marketing-banner-inner {
  background-size: 44%;
  background-position: right 0 bottom 100px;
}
.hs-Kelowna-page .marketing-banner-inner a.blue-color {
  background-color: #8a2dd3;
  border-color: #8a2dd3;
  line-height: 46px;
  height: 50px;
  padding-left: 29px;
  padding-right: 29px;
  text-align: center;
}
.hs-Kelowna-page .marketing-banner-inner a.blue-color:hover{
  color: #fff;
  background-color: #232527;
  border-color: #232527;
}
.hs-Kelowna-page .custom-purchase-funnel-item-grp {
  max-width: 100%;
}
.hs-Kelowna-page .custom-purchase-funnel-inner {
  max-width: 1350px;
}
.hs-Kelowna-page .hs-cta-wrapper a.cta_button {
  font-family: 'Rogan-bold',Arial,sans-serif !important;
  line-height: normal !important;
  border: 0 !important;
  height: auto !important;
  box-shadow: none !important;
  min-height: auto !important;
  padding: 14px 30px 14px !important;
}
.hs-Kelowna-page .faq-grp.cm-padding-col {
  padding-top: 80px;
  padding-bottom: 70px;
}
.agency-work-page.type1 .cm-proff-designed-top-group {
  width: 65%;
}
.agency-work-page.type1 .cm-proff-designed-top-group p{
  margin-bottom:0;
}
.cm-proff-designed-group.Style2 .cm-proff-designed-inner-item p {
  margin-bottom: 0;
}
.hs-careers-section-two .dnd-section > .row-fluid {
  padding-left: 0;
  padding-right: 0;
  max-width: 1260px;
}
.hs-studio-stack-layout .v2_footer .footer_menu_wrapper .hs-menu-wrapper li:last-child a {
  text-decoration-color: transparent;
}
.custom-header-wrapper.header-v2 .q_logo img {
  width: 330px !important;
}
.custom-header-wrapper.header-v2 .header_bottom_right_widget_holder h6 a {
  margin-top: 20px;
  margin-right: 25px;
}
.custom-header-wrapper.header-v2 .header_bottom {
  padding-bottom:0;
}
.custom-header-wrapper.header-v2  .logo_wrapper {
  position: static;
}
.cm-proff-designed-group.Style2 {
  padding-left: 85px;
  padding-right: 85px;
}
.hs-agency-section-two.row2 .row-fluid [class*="span"]{
  min-height:auto ;
}
.custom-header-wrapper.header-v2 .q_logo img {	
  margin-bottom: 15px;
}
.contact-row-one .span6.dnd-module {
  padding: 80px 70px;
  background-color: #3d4045;
  margin-left: 0;
  color: #fff;
}

.contact-row-one .span6.dnd-module {
  width: 50%;
}

.contact-row-one .span6.dnd-module:first-child {
  background-color: #323232;
  text-align: right;
}

.contact-row-one .span6.dnd-module h2 {
  color: #fff;
  line-height: 1em;
  margin-bottom: 0.5em;
}

.contact-row-one .span6.dnd-module p {
  margin: 0;
}

.contact-row-one .span6.dnd-module p a {
  color: #fff;
  position: relative;
}

.contact-row-one .span6.dnd-module p a:after {
  position: absolute;
  content: " ";
  left: 0;
  bottom: -1px;
  width: 0;
  border-bottom: 1px solid #fff;
  transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
}

.contact-row-one .span6.dnd-module p a:hover:after {
  width: 100%;
}

.contact-row-two {
  background-color: #f7f7f7;
  padding: 80px 10px;
}

.contact-row-two h3,
.contact-row-two p {
  max-width: 750px;
  margin: 0 auto;
  text-align: center;
}

.contact-row-two p {
  margin-top: 20px;
}

.contact-row-two h3 {
  margin-top: 25px;
}

.contact-row-two .hs-form {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 55px;
}

.contact-row-two .hs-form fieldset {
  max-width: 100%;
}

.contact-row-two .hs-form input:required,
.contact-row-two .hs-form textarea:required{
  background-image: url(//2886534.fs1.hubspotusercontent-na1.net/hubfs/2886534/raw_assets/public/Roketto_July2020/images/roketto-asterisk-required-field.png);
  background-repeat: no-repeat;
  background-size: 30px;
  background-position: right 50%;
}

.contact-row-two .hs-form textarea:required {
  background-position: right 20px;
}

.contact-row-two .hs-form .hs-form-field > label {
  display: none;
}

.contact-row-two .hs-form .form-columns-2 .hs-form-field:first-child {
  padding-right: 8px;
}

.contact-row-two .hs-form .form-columns-2 .hs-form-field:last-child {
  padding-left: 8px;
}

.contact-row-two .hs-form textarea {
  min-height: 125px;
}

.contact-row-two .hs-form .hs_submit {
  text-align: center;
}

.contact-row-two .widget-type-form {
  padding-left: 10px;
  padding-right: 10px;
}

.contact-bottom-content iframe {
  margin-bottom: -7px;
}

/* Placeholder Text (styles the placeholder attribute text) */
.contact-row-two ::-webkit-input-placeholder { 
  color: #818080;
  font-style: italic;
  line-height: 20px;
}
.contact-row-two :-moz-placeholder { 
  color: #818080;
  font-style: italic;
  line-height: 20px;
}
.contact-row-two ::-moz-placeholder { 
  color: #818080;
  font-style: italic;
  line-height: 20px;
}
.contact-row-two :-ms-input-placeholder { 
  color: #818080;
  font-style: italic;
  line-height: 20px;
}

.hs-about-page .hs-about-banner-group h2 {
  box-sizing: content-box;
}

.custom-prop-people .hs_row.section.hs_row-fluid.hs_inner>.full_section_inner.clearfix,
.custom-digital-marketing-row1 .dnd-section > .row-fluid {
  display: flex !important;
  flex-wrap: wrap;
}
.custom-prop-people .hs_row.section.hs_row-fluid.hs_inner>.full_section_inner.clearfix:after,
.custom-prop-people .hs_row.section.hs_row-fluid.hs_inner>.full_section_inner.clearfix:before,
.custom-digital-marketing-row1 .dnd-section > .row-fluid:after,
.custom-digital-marketing-row1 .dnd-section > .row-fluid:before {
  display: none;
}
.custom-prop-people .floating-col .hs_column-inner {
  height: 100%;
}
.custom-digital-marketing-row1 .dnd-section > .row-fluid .dnd-row {
  height: 100%;
  background-color: #fff;
}

.custom-estate-row4 img.hs-image-widget {
  position: absolute;
  bottom: -17px;
  z-index: 1;
  left: 0;
  right: 0;
  margin: 0 auto;
}

.custom-estate-row4 .dnd-section {
  position: relative;
}

.custom-estate-row4  * {
  min-height: auto !important;
}
.hs-revenue-growth-layout .cm-proff-designed-bottom-group .border-button {
  margin-top: 60px;
}
.hs-revenue-growth-layout .hs-agency-section-two .row-number-2.dnd-section {
  background-repeat: repeat !important;
  background-size: auto !important;
  margin-left: -15px;
  margin-right: -15px;
}
.hs-revenue-growth-layout .hs-agency-section-two .cm-proff-designed-group.Style1 {
  padding-left: 100px;
  padding-right: 100px;
}
.hs-revenue-growth-layout .cm-pricing-table-group {
  padding-left: 85px;
  padding-right: 85px;
}

.custom-header-wrapper.header-v2 .q_logo img {
  max-width: 100%;
}
.custom-header-wrapper.header-v2 {
  min-height: 100px;
}
.cm-proff-designed-group.Style2 .cm-proff-designed-top-group p {
  margin-bottom: 0;
}
.hs-revenue-growth-layout .custom-testimonial-slider-group.Style1 {
  padding-left: 100px;
  padding-right: 100px;
}
.hs-revenue-growth-layout .custom-testimonial-slider-group .testimonial-holder {
  padding-left: 0;
  padding-right: 0;
}

.agency-work-page.hs-Kelowna-page .cm-proff-designed-group {
  padding-left: 85px;
  padding-right: 85px;
}
.agency-work-page.hs-Kelowna-page .cm-proff-designed-bottom-group .border-button {
  margin-top: 60px;
}
.agency-work-page.hs-Kelowna-page .cm-proff-designed-inner-item h3 {
  margin-bottom: 0;
}

.banner {
  padding: 150px 20px;
  text-align: center;
  position: relative;
}

.banner * {
  color: #fff;
}

.banner:before {
  content: '';
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0,0,0,0.5);
}

.banner-content.page-center {
  position: relative;
  z-index: 1;
}

.agency-work-page.type1 .cm-pricing-table-group {
  padding-left: 85px;
  padding-right: 85px;
}
@media only screen and (min-width: 901px) {
  .lp-footer .column1.footer_bottom_column {
    padding-left: 377.5px;
  }
}


@media only screen and (min-width: 1301px){
  .custom-work-row5 .custom-testimonial.testimonial-block {
    padding-top: 140px;
    padding-bottom: 130px;
  }

}
/***************************** Responsive ***************************/

@media(max-width:1400px){
  .cm-padding-col,
  .agency-work-page-area .dnd-section,
  .bb-saas-page-area .dnd-section,
  .inbound-marketing-page-area .dnd-section{
    padding-left: 45px;
    padding-right: 45px;
  }
  .hs-inbound-marketing-section-four .pricing-holder {
    padding: 25px 10px;
  }
  .AdWordsAgency .marketing-banner-left-col {
    width: 65%;
  }
  .inbound-top-info {
    padding-left: 60px;
    padding-right: 60px;
  }
  .custom-testimonial-slider-group.Style1 {
    padding-left: 40px;
    padding-right: 40px;
  }
  .cm-proff-designed-group.Style2 {
    padding-left: 45px;
    padding-right: 45px;
  }
  .hs-agency-section-two.row2 .dnd-section > .row-fluid {
    padding-left: 60px;
    padding-right: 60px;
  }
  .hs-revenue-growth-layout .hs-agency-section-two .cm-proff-designed-group.Style1 {
    padding-left: 60px;
    padding-right: 60px;
  }
  .hs-revenue-growth-layout .cm-pricing-table-group {
    padding-left: 45px;
    padding-right: 45px;
  }
  .hs-revenue-growth-layout .pricing-holder {
    padding: 25px 25px;
  }
  .hs-revenue-growth-layout .custom-testimonial-slider-group.Style1 {
    padding-left: 60px;
    padding-right: 60px;
  }
  .hs-revenue-growth-layout .custom-testimonial-slider-group .testimonial-holder {
    padding-left: 15px;
    padding-right: 15px;
  }
  .agency-work-page.hs-Kelowna-page .cm-proff-designed-group {
    padding-left: 45px;
    padding-right: 45px;
  }
  .agency-work-page.type1 .cm-pricing-table-group {
    padding-left: 45px;
    padding-right: 45px;
  }
  .agency-work-page.type1 .pricing-holder {
    padding: 25px;
  }
}

@media(max-width:1200px){
  .hs-bb-saas-section-two .span2.dnd-column .widget-type-linked_image {
    width: 120px;
    height: 120px;
  }
  .inbound-marketing-page .revenue-growth-banner-group .marketing-banner-left-col h1 {
    font-size: 52px;
    line-height: 52px;
  }
}

@media(max-width:1110px){
  .hs-inbound-marketing-section-four .cm-pricing-table-item {
    width: 50%;
  }
  .hs-inbound-marketing-section-four .cm-pricing-table-item:nth-child(2n+2) {
    border-right: 2px solid #fff;
  }
  .hs-inbound-marketing-section-four .cm-pricing-table-item:nth-child(1),
  .hs-inbound-marketing-section-four .cm-pricing-table-item:nth-child(2) {
    padding-bottom: 30px;
  }
  .hs-inbound-marketing-section-four .cm-pricing-table-item:nth-child(3),
  .hs-inbound-marketing-section-four .cm-pricing-table-item:last-child {
    padding-top: 30px;
    border-top: 2px solid #f6f6f6;
  }
  .inbound-marketing-page .revenue-growth-banner-group .marketing-banner-logo img {
    max-height: 82px;
  }
  .inbound-marketing-page .revenue-growth-banner-group .marketing-banner-logo-item.marketing-banner-logo-1 img {
    max-height: 134px;
  }
  .inbound-marketing-page .revenue-growth-banner-group .marketing-banner-logo-item.marketing-banner-logo-2 img {
    max-height: 134px;
  }
  .hs-revenue-growth-layout .pricing-holder .price-image img {
    max-width: 250px !important;
    width: 100%;
  }
  .agency-work-page.hs-Kelowna-page .cm-proff-designed-image {
    width: 200px;
    height: 200px;
  }
}
@media only screen and (max-width: 1000px) {
  .custom-estate-row1 {
    padding: 80px 0 0;
  }
  .custom-estate-row6 .marketing-row.short-row .imagen-col {
    min-height: 100vw;
  }
  .marketing-banner-grp.SEOAgency .marketing-banner-left-col {
    width: 100%;
  }
  .bb-saas-page .marketing-banner-left-col {
    width: 100%;
  }
  .hs-bb-saas-section-two .span2.dnd-column .widget-type-linked_image {
    width: 110px;
    height: 110px;
  }
  .hs-bb-saas-section-three .get-working-roketto-item {
    width: 25%;
    display: inline-block;
    vertical-align: top;
    margin-right: -4px;
  }
  .hs-bb-saas-section-four .content-with-btn-grp {
    max-width: 100%;
    margin: 0;
  }
  .hs-bb-saas-section-seven .content-with-btn-grp {
    max-width: 100%;
    margin: 0;
  }
  .AdWordsAgency .marketing-banner-left-col {
    width: 100%;
    padding-right:15px;
  }
  .inbound-marketing-page .revenue-growth-banner-group .marketing-banner-left-col {
    padding-top: 90px;
  }
  .inbound-marketing-page .marketing-banner-cnt h6 {
    margin: 0;
    max-width: 100%;
  }
  .inbound-marketing-page .revenue-growth-banner-group .marketing-banner-logo img {
    max-height: 45px;
  }
  .inbound-marketing-page .revenue-growth-banner-group .marketing-banner-logo-item.marketing-banner-logo-1 img {
    max-height: 80px;
  }
  .inbound-marketing-page .revenue-growth-banner-group .marketing-banner-logo-item.marketing-banner-logo-2 img {
    max-height: 80px;
  }
  .inbound-marketing-page .revenue-growth-banner-group .marketing-banner-inner {
    background-size: 100px !important;
  }
  .custom-header-wrapper.header-v2 .q_logo img {
    margin-bottom: 24px;
  }
  .custom-header-wrapper.header-v2 .header_bottom {
    padding-bottom: 0;
  }
  .custom-header-wrapper.header-v2 .logo_wrapper {
    position: static;
  }
  .agency-work-page.hs-Kelowna-page .get-working-roketto-item {
    width: 100%;
    display: block;
    margin-right: 0;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
  }
  .agency-work-page.hs-Kelowna-page .cm-proff-designed-image {
    width: 180px;
    height: 180px;
  }
  .custom-header-wrapper.header-v2 .q_logo img {
    max-width: 100%;
    margin-bottom: 24px;
  }
}

@media only screen and (max-width: 900px) {
  .agency-work-page.hs-Kelowna-page .cm-proff-designed-image {
    width: 150px;
    height: 150px;
  }
}

@media only screen and (max-width: 767px) {
  .custom-work-row6 h3 a {
    font-size: 21px;
    line-height: 26px;
  }
  .home-inbound-dark>.full_section_inner>.hs_column_container {
    padding: 0 60px;
  }
  .custom-services-row3 .custom-testimonial-slider-group.Style2 {
    padding-left: 60px;
    padding-right: 60px;
  }
  .marketing-banner-grp.SEOAgency .marketing-banner-left-col h1,
  .bb-saas-page .marketing-banner-left-col h1{
    font-size: 52px;
    line-height: 52px;
  }
  .bb-saas-page-area .row-fluid [class*="span"] {
    min-height: 0px;
  }
  .hs-bb-saas-section-three .get-working-roketto-item {
    width: 100%;
    display: block;
    margin-right: 0;
  }
  .hs-bb-saas-section-three .get-working-roketto-item {
    width: 100%;
    display: block;
    margin-right: 0;
  }

  .hs-bb-saas-section-four .content-with-btn-grp {
    padding: 60px;
  }

  .hs-bb-saas-section-seven .content-with-btn-grp {
    padding: 60px;
  }
  .hs-bb-saas-section-two .span2.dnd-column .widget-type-linked_image {
    width: 120px;
    height: 120px;
  }
  .hs-inbound-marketing-section-four .cm-pricing-table-item {
    width: 100%;
    float: none;
  }
  .hs-inbound-marketing-section-four .cm-pricing-table-group {
    padding-left: 0;
    padding-right: 0;
  }
  .hs-inbound-marketing-section-four .cm-pricing-table-item:nth-child(1),
  .hs-inbound-marketing-section-four .cm-pricing-table-item:nth-child(2) {
    padding-bottom: 0;
  }
  .hs-inbound-marketing-section-four .pricing-holder {
    padding: 25px 10px;
  }
  .hs-inbound-marketing-section-four .cm-pricing-table-item:nth-child(3),
  .hs-inbound-marketing-section-four .cm-pricing-table-item:last-child {
    padding-top: 0;
    border: none;
  }
  .AdWordsAgency .marketing-banner-left-col {
    padding-right:15px;
  }
  .AdWordsAgency .marketing-banner-left-col {
    width: 100%;
  }
  .AdWordsAgency .marketing-banner-left-col h1 {
    font-size:36px;
  }
  .inbound-marketing-page .revenue-growth-banner-group .marketing-banner-left-col h1 {
    font-size: 52px;
    line-height: 52px;
  }
  .agency-work-page.type1 .cm-proff-designed-top-group {
    width: 100%;
  }
  .agency-work-page.type1 .cm-proff-designed-top-group p {
    margin-bottom: 10px;
  }
  .cm-proff-designed-group.Style2 .cm-proff-designed-inner-inner-item {
    padding-left: 30px;
    padding-right: 30px;
  }
  .cm-proff-designed-inner-inner-item.equal-height {
    min-height: auto !important;
  }
  .contact-row-two  .span12.dnd-module {
    padding-left: 15px;
    padding-right: 15px;
  }

  .contact-row-one .span6.dnd-module {
    width: 100%;
    padding: 50px 0 60px 0 !important;
    text-align: left !important;
  }

  .contact-row-two .widget-type-form {
    padding-left: 0;
    padding-right: 0;
    margin-left: -5px;
    margin-right: -5px;
  }
  .contact-row-one .span6.dnd-module h2,
  .contact-row-one .span6.dnd-module p {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
  .hs-revenue-growth-layout .hs-agency-section-two .cm-proff-designed-top-group {
    padding-left: 15px;
    padding-right: 15px;
  }
  .hs-revenue-growth-layout .pricing-holder .price-image img {
    max-width: 200px !important;
  }
.case-studies-item-grp {
    background-image: none !important;
}
}

@media only screen and (max-width: 624px) {
  .single-work .keats-body-container .image-block {
    display: none;
  }

}
@media only screen and (max-width: 600px){
  h2, .h2, h2 a, .blog_holder.blog_single article h2, .particle-container h2, .work-header h2, .title.title_size_large h1 {
    font-size: 28px;
    line-height: 36px;
  }
  .home-inbound-dark>.full_section_inner>.hs_column_container {
    padding: 0 30px;
  }
  body .qbutton.large,
  body a.qbutton.large.default{
    font-size: 20px;
    line-height: 52px !important;
    height: 56px !important;
    padding: 0 42px;
    transition:all 0.3s ease;
  }
  .work-header img {
    max-width: 60vw !important;
  }
  .cm-padding-col,
  .agency-work-page-area .dnd-section,
  .bb-saas-page-area .dnd-section,
  .inbound-marketing-page-area .dnd-section{
    padding-left: 10px;
    padding-right: 10px;
  }
  .marketing-banner-grp.SEOAgency .marketing-banner-left-col h1,
  .bb-saas-page .marketing-banner-left-col h1{
    font-size: 36px;
    line-height: 42px;
  }
  .bb-saas-page .marketing-banner-btn .hs-cta-node a {
    padding: 15px 28px 12px !important;
  }
  .get-working-roketto-header {
    padding-left: 15px;
    padding-right: 15px;
  }
  .hs-bb-saas-section-six p img[data-img='partner'] {
    margin-top: 10px;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  .hs-inbound-marketing-section-four .pricing-holder {
    padding-left: 0;
    padding-right: 0;
  }
  .hs-inbound-marketing-section-four .pricing-holder .price-description {
    padding-left: 0;
    padding-right: 0;
  }
  .hs-inbound-marketing-section-four .cm-pricing-table-item:first-child .pricing-holder {
    padding-top: 10px;
  }
  .inbound-marketing-page .revenue-growth-banner-group .marketing-banner-left-col h1 {
    font-size: 36px;
    line-height: 42px;
  }
  .faq-grp.cm-padding-col .faq-title h3 a {
    font-size: 18px;
    line-height: 24px;
    padding-right: 20px;
  }
  .hs-content-with-arrow-group a{
    font-size: 24px;
    line-height: 28px !important;
  }
  .hs-Kelowna-page .team-member-type-2-grp.cm-padding-col {
    padding-left: 0;
    padding-right: 0;
  }
  .custom-testimonial-slider-group.Style1 {
    padding-left: 5px;
    padding-right: 5px;
  }
  .business-marketing-manger-inner {
    padding: 0 30px;
  }
  .ready-grow-business-form-grp.cm-padding-col {
    padding-left: 10px;
    padding-right: 10px;
  }
  .body-wrapper .ready-grow-business-form .hs-form .form-columns-2 .hs-form-field:first-child {
    padding-right: 0;
  }
  .body-wrapper .ready-grow-business-form .hs-form .hs-form-field {
    margin: 10px 0;
  }
  .ready-grow-business-form-grp.cm-padding-col .hs-form-field {
    width: 100% !important;
    padding-left: 0 !important;
  }
  .hs-agency-section-two.row2 .dnd-section > .row-fluid {
    padding-left: 25px;
    padding-right: 25px;
  }
  .cm-proff-designed-group.Style2 {
    padding-left: 10px;
    padding-right: 10px;
  }
  .contact-row-two .hs-form .form-columns-2 .hs-form-field {
    width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .contact-row-one .span6.dnd-module h2,
  .contact-row-one .span6.dnd-module p {
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }
  .hs-about-page .cm-menifesto-group {
    padding: 75px 40px;
  }
  .keats-body-container .marketing-row h5{
    font-size: 16px;
    line-height: 24px;
  }
  .hs-revenue-growth-layout .hs-agency-section-two .cm-proff-designed-group.Style1 {
    padding-left: 25px;
    padding-right: 25px;
  }
  .hs-revenue-growth-layout .cm-pricing-table-group {
    padding-left: 10px;
    padding-right: 10px;
  }
  .hs-revenue-growth-layout .custom-testimonial-slider-group.Style1 {
    padding-left: 25px;
    padding-right: 25px;
  }
  .ContentMarketingAgency .marketing-banner-btn a.blue-color {
    font-size: 20px;
    line-height: 52px !important;
    height: 56px !important;
    min-height: 56px;
  }
  .team-member-type-2-grp.cm-padding-col {
    padding-left: 0;
    padding-right: 0;
  }
  .agency-work-page.hs-Kelowna-page .cm-proff-designed-group {
    padding-left: 10px;
    padding-right: 10px;
  }
  .agency-work-page.type1 .cm-pricing-table-group {
    padding-left: 10px;
    padding-right: 10px;
  }
}

@media(max-width:480px){
  .inbound-marketing-page .revenue-growth-banner-group .marketing-banner-inner {
    background-size: 50px !important;
  }
  .hs-about-page .cm-menifesto-group {
    padding: 75px 30px;
  }
  .hs-about-page .manifest-text {
    padding: 20px 0 20px 20px;
  }
  .revenue-growth-banner-group .marketing-banner-left-col h1,
  .hs-Kelowna-page .revenue-growth-banner-group .marketing-banner-left-col h1 {
    font-size: 29px;
    line-height: 34px;
  }
  .contact-row-one .span6.dnd-module h2,
  .contact-row-one .span6.dnd-module p {
    width: 300px;
  }
}
@media only screen and (max-width: 350px){
  body .custom-estate-row4 .span4 {
    padding: 0 45px;

  }

}
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your headers look
when it comes to the logo, search field, language switcher and navigation.
You will also find the mobile menu styles below.
*********************************************************************************
****************************************************************************** */

.header {
  background-color: #F8FAFC;
}

.header__container {
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 10px;
}

.header__row-1,
.header__row-2 {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
}

.header__row-1 {
  padding-top: 20px;
}

.header__menu--flex {
  display: flex;
}
#nav-toggle {
  display: none;
}

/* Styles for the Logo */

.header__logo {
  display: flex;
  align-items: center;
  max-width: 200px;
  height: auto;
  margin-left: 22px;
  margin-right: auto;
  overflow: hidden;
}
.custom-header-wrapper {
  min-height: 100px;
}
.header__logo img {
  max-width: 100%;
}

.header__logo .logo-company-name {
  font-size: 28px;
  margin-top: 7px;
}

.header__logo--tablet {
  display: none;
}

.header__logo--main {
  padding-top: 20px;
}
.custom-header-wrapper.header-v2 .q_logo img {
    max-width: 100%;
}
.custom-header-wrapper.header-v2 {
    min-height: 100px;
}
/* Styles for the Search Bar */

.header__search {
  width: auto;
  padding: 0 22px;
}

.header__search .hs-search-field__input {
  box-sizing: border-box;
  background-color: white;
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjI0cHgiIHZpZXdCb3g9IjAgMCAyNCAyNCIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4gICAgICAgIDx0aXRsZT5TZWFyY2g8L3RpdGxlPiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4gICAgPGRlZnM+ICAgICAgICA8cGF0aCBkPSJNOS4xMzg2MTUzNCwxNS44OTI1Njg1IEM1LjQxMzk1NzQyLDE1Ljg5MjU2ODUgMi4zODM4ODUyNywxMi44NjM0NDc1IDIuMzgzODg1MjcsOS4xMzkwMDM3NiBDMi4zODM4ODUyNyw1LjQxNDU2MDA1IDUuNDEzOTU3NDIsMi4zODM4ODUyNyA5LjEzODYxNTM0LDIuMzgzODg1MjcgQzEyLjg2MzI3MzMsMi4zODM4ODUyNyAxNS44OTI1Njg1LDUuNDE0NTYwMDUgMTUuODkyNTY4NSw5LjEzOTAwMzc2IEMxNS44OTI1Njg1LDEyLjg2MzQ0NzUgMTIuODYzMjczMywxNS44OTI1Njg1IDkuMTM4NjE1MzQsMTUuODkyNTY4NSBNOS4xMzg3NTI0NSwyLjQzMzYwODg3ZS0xMyBDMTQuMTc3OTk1NSwyLjQzMzYwODg3ZS0xMyAxOC4yNzY0NTM3LDQuMTAwMzI0NzEgMTguMjc2NDUzNyw5LjEzOTI3Nzk2IEMxOC4yNzY0NTM3LDExLjIyOTgyMTEgMTcuNTcxMDE2OSwxMy4xNTg0NDM0IDE2LjM4NTYzMTMsMTQuNjk5NjY5NiBMMjMuNjUwODg4MSwyMS45NjUyMjY2IEMyNC4xMTYzNzA2LDIyLjQzMDcwOTIgMjQuMTE2MzcwNiwyMy4xODU0MDU1IDIzLjY1MDg4ODEsMjMuNjUwODg4MSBDMjMuMTg1NDA1NSwyNC4xMTYzNzA2IDIyLjQzMDcwOTIsMjQuMTE2MzcwNiAyMS45NjUyMjY2LDIzLjY1MDg4ODEgTDE0LjY5OTgxMzMsMTYuMzg1NDcxMyBDMTMuMTU4NDQwNSwxNy41NzA5NTA5IDExLjIyOTU3MzgsMTguMjc2NDUzNyA5LjEzODc1MjQ1LDE4LjI3NjQ1MzcgQzQuMDk5NTA5MzgsMTguMjc2NDUzNyAtMy43MzAzNDkzNmUtMTQsMTQuMTc4MjMxMiAtMy43MzAzNDkzNmUtMTQsOS4xMzkyNzc5NiBDLTMuNzMwMzQ5MzZlLTE0LDQuMTAwMzI0NzEgNC4wOTk1MDkzOCwyLjQzMzYwODg3ZS0xMyA5LjEzODc1MjQ1LDIuNDMzNjA4ODdlLTEzIFoiIGlkPSJwYXRoLTEiPjwvcGF0aD4gICAgPC9kZWZzPiAgICA8ZyBpZD0iU2VhcmNoIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj4gICAgICAgIDxtYXNrIGlkPSJtYXNrLTIiIGZpbGw9IndoaXRlIj4gICAgICAgICAgICA8dXNlIHhsaW5rOmhyZWY9IiNwYXRoLTEiPjwvdXNlPiAgICAgICAgPC9tYXNrPiAgICAgICAgPHVzZSBpZD0iSWNvbnMvQWN0aW9ucy9TZWFyY2giIGZpbGw9IiM0OTRBNTIiIHhsaW5rOmhyZWY9IiNwYXRoLTEiPjwvdXNlPiAgICA8L2c+PC9zdmc+);
  background-repeat: no-repeat;
  background-position: center right 15px;
  color: #494a52;
  border: 1.79px solid #D1D6DC;
  border-radius: 6px;
  font-family: Lato, serif;
  font-weight: 300;
  font-size: 22px;
  line-height: 42;
  padding: 0 15px;
  height: 45px;
}

.header__search .hs-search-field--open .hs-search-field__input {
  border: 1.79px solid #D1D6DC;
  border-bottom: none;
  border-radius: 6px 6px 0 0;
  background-color: white;
}

.header__search .hs-search-field__input::placeholder {
  color: transparent;
}

.header__search .hs-search-field--open .hs-search-field__suggestions {
  position: absolute;
  width: 100%;
  background-color: white;
  border-top: -2px solid white;
  border: 1.79px solid #D1D6DC;
  border-radius: 0 0 6px 6px;
  z-index: 10;
}

.header__search .hs-search-field__suggestions li {
  border-top: 1px solid #D1D6DC;
  font-family: Lato, serif;
  font-size: 22px;
}

.header__search .hs-search-field__suggestions li a {
  color: #494a52;
  text-decoration: none;
  padding: 3px 15px;
  transition: background-color 0.3s;
}

.header__search .hs-search-field__suggestions #results-for {
  display: none;
}

/* Styles for the Language Switcher Component */

.header__language-switcher {
  padding-right: 35px;
  cursor: pointer;
}

.header__language-switcher .lang_switcher_class {
  position: static;
}

.header__language-switcher .lang_list_class {
  display: block;
  visibility: hidden;
  opacity: 0;
  font-family: Lato, serif;
  font-size: 0.8rem;
  color: #494a52;
  top: 42px;
  left: calc(100% - 24px);
  padding-top: 0;
  min-width: 100px;
  text-align: left;
  transition: opacity 0.3s;
  border: 1.79px solid #D1D6DC;
  border-radius: 6px;
  box-shadow: 0 2px 9px 0 rgba(0,0,0,0.2)
}

.header__language-switcher:hover .lang_list_class {
  visibility: visible;
  opacity: 1;
  transition: opacity 0.3s;
}

.header__language-switcher .lang_list_class:before {
  top: -24px;
  left: 70%;
  border-bottom-color: #D1D6DC;
  border-radius: 6px;
}

.header__language-switcher .lang_list_class:after {
  top: -22px;
  left: 70%;
}

.header__language-switcher .lang_list_class.first-active::after {
  top: -22px;
  border-bottom-color: #EBEFF3;
  transition: 0.3s;
}

.header__language-switcher .lang_list_class li {
  border: none;
  padding: 10px 15px;
  font-size: 18px;
}

.header__language-switcher .lang_list_class li:first-child {
  border-top: none;
  border-radius: 6px 6px 0 0;
}

.header__language-switcher .lang_list_class li:last-child {
  border-bottom: none;
  border-radius: 0 0 6px 6px;
}

.header__language-switcher .lang_list_class li:hover {
  background-color: #EBEFF3;
  transition: background-color 0.3s;
}

.header__language-switcher .lang_list_class li a {
  font-family: Lato, serif;
  color: #494a52;
}

.header__language-switcher .lang_list_class li a:hover {
  color: #494a52;
}

.header__language-switcher--label {
  display: flex;
  position: relative;
}

.header__language-switcher--label-current {
  font-size: 18px;
  margin-left: 10px;
  margin-bottom: 5px;
  display: flex;
  align-items: center;
}
.header__language-switcher--label-current:after {
  content: "";
  display: block;
  height: 0px;
  width: 0px;
  margin-top: 3px;
  margin-left: 10px;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 6px solid #494a52;
}



header {
  width: 100%;
  display: inline-block;
  margin: 0;
  position: relative;
  z-index: 110;
  -webkit-backface-visibility: hidden
}

header .header_inner_left {
  /*   position: absolute;
  left: 45px;
  top: 0 */
  float: left;
}

header .container_inner .header_inner_left {
  position: absolute;
  left: 0;
  top: 0
}

.header_bottom,.header_top,.q_logo,.q_logo a {
  position: relative
}

header.menu_position_left .header_inner_left {
  z-index: 101
}

.boxed header {
  background-color: transparent;
  border: 0
}

.boxed .header_inner {
  width: 1150px;
  margin: 0 auto
}

.header_inner_right {
  float: right;
  position: relative;
  z-index: 110
}

.header_top {
  z-index: 111;
  line-height: 33px;
  height: 33px;
  padding: 0;
  font-size: 13px;
  background-color: #fff;
  -webkit-transition: all .2s ease 0s;
  -moz-transition: all .2s ease 0s;
  -o-transition: all .2s ease 0s;
  transition: all .2s ease 0s
}

header.scrolled .header_top {
  background-color: #fff
}

.header_top p {
  line-height: 32px;
  padding: 0 15px
}

.header_top .left {
  float: left;
  height: 100%
}

.header_top .right {
  float: right;
  height: 100%
}

.header_top .right .inner #lang_sel {
  float: left;
  padding: 0
}

.header_top .inner #lang_sel>ul {
  list-style: none
}

.header_top .left .inner>div,.header_top .left .inner>div:last-child {
  float: left;
  border-bottom: 0;
  border-top: 0
}

.header_top .right .inner>div {
  border-left: 0;
  float: left
}

header.scrolled:not(.scroll_header_top_area) .header_top {
  border-bottom: 0
}

header.light.header_style_on_scroll .header-widget,header.light.header_style_on_scroll .header-widget a,header.light.header_style_on_scroll .header-widget p,header.light.header_style_on_scroll .header-widget span,header.light.header_style_on_scroll .header-widget.widget_nav_menu ul.menu>li>a,header.light.header_style_on_scroll .q_social_icon_holder i.simple_social,header.light.header_style_on_scroll .q_social_icon_holder span.simple_social,header.light:not(.sticky) .header-widget,header.light:not(.sticky) .header-widget a,header.light:not(.sticky) .header-widget p,header.light:not(.sticky) .header-widget span,header.light:not(.sticky) .header-widget.widget_nav_menu ul.menu>li>a,header.light:not(.sticky) .q_social_icon_holder i.simple_social,header.light:not(.sticky) .q_social_icon_holder span.qode_icon_font_elegant,header.light:not(.sticky) .q_social_icon_holder span.simple_social {
  color: #fff
}

header.light.header_style_on_scroll #lang_sel>ul>li>a,header.light.header_style_on_scroll #lang_sel_click>ul>li>a,header.light.header_style_on_scroll .q_social_icon_holder i.simple_social,header.light.header_style_on_scroll .q_social_icon_holder span.simple_social,header.light.header_style_on_scroll .textwidget span,header.light.header_style_on_scroll .textwidget span:hover,header.light:not(.sticky) #lang_sel>ul>li>a,header.light:not(.sticky) #lang_sel_click>ul>li>a,header.light:not(.sticky) .q_social_icon_holder i.simple_social,header.light:not(.sticky) .q_social_icon_holder span.qode_icon_font_elegant,header.light:not(.sticky) .q_social_icon_holder span.simple_social,header.light:not(.sticky) .textwidget span:not(.qode-btn-text),header.light:not(.sticky) .textwidget span:not(.qode-btn-text):hover {
  color: #fff
}

header.dark.header_style_on_scroll .header-widget,header.dark.header_style_on_scroll .header-widget a,header.dark.header_style_on_scroll .header-widget p,header.dark.header_style_on_scroll .header-widget span,header.dark.header_style_on_scroll .header-widget.widget_nav_menu ul.menu>li>a,header.dark.header_style_on_scroll .q_social_icon_holder i.simple_social,header.dark.header_style_on_scroll .q_social_icon_holder span.simple_social,header.dark:not(.sticky) .header-widget,header.dark:not(.sticky) .header-widget a,header.dark:not(.sticky) .header-widget p,header.dark:not(.sticky) .header-widget span,header.dark:not(.sticky) .header-widget.widget_nav_menu ul.menu>li>a,header.dark:not(.sticky) .q_social_icon_holder i.simple_social,header.dark:not(.sticky) .q_social_icon_holder span.qode_icon_font_elegant,header.dark:not(.sticky) .q_social_icon_holder span.simple_social {
  color: #000
}

header.dark.header_style_on_scroll #lang_sel>ul>li>a,header.dark.header_style_on_scroll #lang_sel_click>ul>li>a,header.dark.header_style_on_scroll .q_social_icon_holder i.simple_social,header.dark.header_style_on_scroll .q_social_icon_holder span.simple_social,header.dark.header_style_on_scroll .textwidget span,header.dark.header_style_on_scroll .textwidget span:hover,header.dark:not(.sticky) #lang_sel>ul>li>a,header.dark:not(.sticky) #lang_sel_click>ul>li>a,header.dark:not(.sticky) .q_social_icon_holder i.simple_social,header.dark:not(.sticky) .q_social_icon_holder span.qode_icon_font_elegant,header.dark:not(.sticky) .q_social_icon_holder span.simple_social,header.dark:not(.sticky) .textwidget span:not(.qode-btn-text),header.dark:not(.sticky) .textwidget span:not(.qode-btn-text):hover {
  color: #000
}

.header_bottom {
  padding: 0 45px;
  background-color: rgba(34,36,39,0.8);
  -webkit-transition: all .2s ease 0s;
  -moz-transition: all .2s ease 0s;
  -o-transition: all .2s ease 0s;
  transition: all .2s ease 0s
}

.boxed .header_bottom {
  padding: 0 25px
}

.logo_wrapper {
  /*   height: 100px; */
  /*   float: left */
}

.q_logo {
  /*   top: 50%;
  left: 0 */
}

.q_logo a {
  display: block;

}

.side_menu_button_wrapper {
  display: table
}
.with-banner .custom-header-wrapper {
  min-height: 0px;
}
.side_menu_button {
  cursor: pointer;
  display: table-cell;
  vertical-align: middle;
  height: 100px
}

.header_bottom_right_widget_holder {
  display: table-cell;
  vertical-align: middle;
  height: 100%;
  padding: 0 17px
}
.header_bottom_right_widget_holder h6 {
  margin: 0;
}

.header_bottom_right_widget_holder h6 a {
  font-size: 21px;
  padding: 11px 30px 10px;
  /* height: 45px; */
  line-height: 1.2;
  margin-right: 33px;
  transition: color .1s linear,background-color .1s linear,border-color .1s linear;
  background-color: rgba(0,0,0,0);
  border: 2px solid #ffffff;
  color: #ffffff;
  margin-top: 7px;
  font-family: "Rogan-Bold",Arial,sans-serif;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  vertical-align: middle;
  display: inline-block;
  border-radius: 100px;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  text-align: center;
  letter-spacing: 0;
  font-weight: bold;
}



.header_bottom_right_widget_holder h6 a:hover {
  border: 2px solid #232527;
  background-color: #232527;
}

@media only screen and (min-width: 1001px) {
  header.dark.header_style_on_scroll .header_bottom_right_widget_holder a.qbutton,header.dark:not(.sticky):not(.scrolled) .header_bottom_right_widget_holder a.qbutton {
    border-color:#000;
    background-color: transparent;
    color: #000
  }

  header.light.header_style_on_scroll .header_bottom_right_widget_holder a.qbutton,header.light:not(.sticky):not(.scrolled) .header_bottom_right_widget_holder a.qbutton {
    border-color: #fff;
    background-color: transparent;
    color: #fff
  }
  header.fixed,header.fixed_hiding,header.fixed_top_header .top_header {
    -webkit-transition: left .33s cubic-bezier(.694,.0482,.335,1);
    -moz-transition: left .33s cubic-bezier(.694,.0482,.335,1);
    -o-transition: left .33s cubic-bezier(.694,.0482,.335,1);
    -ms-transition: left .33s cubic-bezier(.694,.0482,.335,1);
    transition: left .33s cubic-bezier(.694,.0482,.335,1);
    width: 100%;
    position: fixed;
    z-index: 110;
    top: 0;
    left: 0
  }

  header.menu_bottom:not(.sticky) .drop_down .second,header.transparent.fixed.scrolled .drop_down .second,header.transparent.fixed_hiding.scrolled .drop_down .second {
    top: 100%
  }

  header.fixed.scrolled .header_bottom,header.fixed_hiding.scrolled .header_bottom {
    -webkit-box-shadow: 0 1px 3px rgba(0,0,0,.11);
    -moz-box-shadow: 0 1px 3px rgba(0,0,0,.11);
    box-shadow: 0 1px 3px rgba(0,0,0,.11);
    background-color: #fff
  }

}

.q_logo img {
  display: block;
  opacity: 1;
  width: 235px !important;
  max-width: none;
  -webkit-transition: opacity .6s ease-in-out;
  transition: opacity .6s ease-in-out;
  margin: 27px 0 21px 0;
}
header.sticky .header_fixed_right_area,header.sticky .header_top {
  display: none
}

.menu_position_left .q_logo img {
  -webkit-transition: none;
  transition: none
}


.popup_menu_opened .banner-section {
    filter: blur(5px);
    -webkit-filter: blur(5px);
    -moz-filter: blur(5px);
    -o-filter: blur(5px);
    -ms-filter: blur(5px);
}
.popup_menu_opened .popup_menu_holder_outer::-webkit-scrollbar { /* WebKit */
    width: 0;
    height: 0;
}

.popup_menu_opened  .body-container-wrapper {
    filter: blur(5px);
    -webkit-filter: blur(5px);
    -moz-filter: blur(5px);
    -o-filter: blur(5px);
    -ms-filter: blur(5px);
}

.popup_menu_opened footer {
    filter: blur(5px);
    -webkit-filter: blur(5px);
    -moz-filter: blur(5px);
    -o-filter: blur(5px);
    -ms-filter: blur(5px);
}
.q_logo img.dark,.q_logo img.light,.q_logo img.mobile,.q_logo img.popup,.q_logo img.sticky {
  opacity: 0
}

header.scrolled.dark:not(.header_style_on_scroll) .q_logo img.normal,header.scrolled.light:not(.header_style_on_scroll) .q_logo img.normal,header.scrolled:not(.header_style_on_scroll) .q_logo img.normal {
  opacity: 1
}

header.light .q_logo img.normal,header.scrolled.dark:not(.header_style_on_scroll) .q_logo img.dark,header.scrolled.dark:not(.header_style_on_scroll) .q_logo img.light,header.scrolled.light:not(.header_style_on_scroll) .q_logo img.dark,header.scrolled.light:not(.header_style_on_scroll) .q_logo img.light,header.scrolled:not(.header_style_on_scroll) .q_logo img.dark,header.scrolled:not(.header_style_on_scroll) .q_logo img.light {
  opacity: 0
}

header.light .q_logo img.light {
  opacity: 1
}

header.dark .q_logo img.light,header.dark .q_logo img.normal,header.light .q_logo img.dark {
  opacity: 0
}

header.dark .q_logo img.dark,header.sticky:not(.header_style_on_scroll) .q_logo img.sticky {
  opacity: 1
}

.hide_inital_sticky header.stick {
  -ms-transform: translateY(-100%);
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%)
}

.hide_inital_sticky header.stick.sticky {
  -ms-transform: none;
  -webkit-transform: none;
  transform: none
}

header.sticky {
  -webkit-transition: all .33s cubic-bezier(.694,.0482,.335,1);
  -moz-transition: all .33s cubic-bezier(.694,.0482,.335,1);
  -o-transition: all .33s cubic-bezier(.694,.0482,.335,1);
  -ms-transition: all .33s cubic-bezier(.694,.0482,.335,1);
  transition: all .33s cubic-bezier(.694,.0482,.335,1);
  top: -120px;
  left: 0;
  position: fixed;
  -moz-background-clip: content;
  -webkit-background-clip: content;
  background-clip: content-box
}

header.sticky .header_bottom {
  background-color: #fff;
  box-shadow: 0 1px 3px rgba(0,0,0,.11)
}

header.sticky.no_shadow .header_bottom {
  box-shadow: none
}

header.sticky.centered_logo {
  top: -300px
}

header.sticky.sticky_animate {
  top: 0
}

header.sticky:not(.header_style_on_scroll) .q_logo img.dark,header.sticky:not(.header_style_on_scroll) .q_logo img.light,header.sticky:not(.header_style_on_scroll) .q_logo img.mobile,header.sticky:not(.header_style_on_scroll) .q_logo img.normal,header.sticky:not(.header_style_on_scroll) .q_logo img.popup {
  opacity: 0
}

header.sticky .logo_wrapper,header.sticky.centered_logo .logo_wrapper {
  height: 60px;
  float: left
}

header.sticky .side_menu_button,header:not(.sticky) .header_menu_bottom .side_menu_button {
  height: 60px
}

header.sticky .drop_down .second {
  margin-top: 0
}

.sticky .header_menu_bottom {
  position: static
}


header.menu_bottom .header_inner_left {
  left: 0;
  position: relative
}

header:not(.sticky) .header_menu_bottom nav.main_menu>ul>li>a {
  line-height: 60px
}

header:not(.sticky) .header_menu_bottom nav.main_menu>ul>li:first-child>a {
  padding-left: 0
}

header.menu_bottom.has_header_fixed_right .mobile_menu_button {
  height: 130px
}

.menu_bottom.sticky .container_inner .header_inner_left {
  position: absolute
}

.menu_bottom .logo_wrapper {
  float: none
}

.menu_bottom .q_logo a {
  display: inline-block
}

.menu_bottom.sticky .logo_wrapper {
  float: left
}

.header_menu_bottom {
  position: relative;
  display: block
}

header.menu_bottom .header_bottom_right_widget_holder .header_bottom_widget.widget_search {
  display: inline-block;
  height: 100%;
  vertical-align: middle
}

header.menu_bottom .header_bottom_right_widget_holder .header_bottom_widget.widget_search form {
  border: none;
  display: inline-block;
  height: 100%;
  position: relative
}

header.menu_bottom .header_bottom_right_widget_holder .header_bottom_widget.widget_search form>div {
  display: inline-block;
  height: 100%
}

header.menu_bottom .header_bottom_right_widget_holder .header_bottom_widget.widget_search form>div label {
  display: none
}

header.menu_bottom .header_bottom_right_widget_holder .header_bottom_widget.widget_search form>div input[type=text] {
  display: inline-block;
  height: 100%;
  line-height: 60px;
  padding: 0 55px 0 25px;
  margin: 0;
  border: none;
  background: #1abc9c;
  font-weight: 600;
  font-size: 12px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: inherit;
  outline: 0;
  border-radius: 0
}

header.menu_bottom .header_bottom_right_widget_holder .header_bottom_widget.widget_search form>div ::-webkit-input-placeholder {
  color: #fff
}

header.menu_bottom .header_bottom_right_widget_holder .header_bottom_widget.widget_search form>div :-moz-placeholder {
  color: #fff;
  opacity: 1
}

header.menu_bottom .header_bottom_right_widget_holder .header_bottom_widget.widget_search form>div ::-moz-placeholder {
  color: #fff;
  opacity: 1
}

header.menu_bottom .header_bottom_right_widget_holder .header_bottom_widget.widget_search form>div :-ms-input-placeholder {
  color: #fff
}

header.menu_bottom .header_bottom_right_widget_holder .header_bottom_widget.widget_search form>div input[type=submit] {
  position: absolute;
  top: 50%;
  right: 15px;
  font-family: FontAwesome;
  background: 0 0;
  border: none;
  color: #fff;
  font-size: 18px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
  padding: 1px 6px;
  font-weight: 400;
  letter-spacing: 0
}

header.centered_logo .header_inner_left {
  float: none;
  position: relative;
  display: block;
  margin: 20px 0 10px;
  left: 0
}

header.centered_logo .header_inner_right,header.centered_logo .q_logo a {
  display: inline-block;
  vertical-align: middle
}

header.centered_logo.sticky .header_inner_left {
  margin: 0
}

header.centered_logo .logo_wrapper {
  float: none;
  height: auto
}

header.centered_logo .q_logo {
  top: 0
}

header.centered_logo.sticky .q_logo {
  top: 50%
}

header.centered_logo .q_logo img {
  top: 0;
  margin: 0
}

header.centered_logo.centered_logo_animate .q_logo img,header:not(.centered_logo) .q_logo img {
  height: 100%
}

header.centered_logo.sticky .q_logo img {
  top: -50%;
  height: 100%
}

header.centered_logo .header_inner_right {
  float: none;
  position: relative
}

header.centered_logo .header_right_widget {
  float: left
}

header.centered_logo nav.main_menu,header.centered_logo nav.main_menu.left,header.centered_logo nav.main_menu.right {
  position: relative;
  display: inline-block;
  left: auto;
  float: none;
  vertical-align: middle
}

header.centered_logo nav.main_menu>ul {
  left: 0
}

header.scroll_header_top_area.stick.transparent.scrolled_not_transparent.page_header {}


@-webkit-keyframes Navigation__slideDown {
  0% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%)
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0)
  }
}

@keyframes Navigation__slideDown {
  0% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%)
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0)
  }
}

@-webkit-keyframes Navigation__slideUp {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0)
  }

  99% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%)
  }

  100% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
    position: absolute
  }
}

@keyframes Navigation__slideUp {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0)
  }

  99% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%)
  }

  100% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
    position: absolute
  }
}

@media only screen and (min-width: 1001px) {
  header.centered_logo:not(.sticky) .q_logo img {
    -webkit-transform:translate(-50%,0);
    -moz-transform: translate(-50%,0);
    -ms-transform: translate(-50%,0);
    -o-transform: translate(-50%,0);
    transform: translate(-50%,0)
  }
  body.with-banner:not(.fixed) header {
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
  }
  header.fixed_hiding .holeder_for_hidden_menu {
    overflow: hidden;
    max-height: 150px;
    vertical-align: middle;
    -webkit-transition: max-height .2s cubic-bezier(.23,1,.32,1) 0s;
    -moz-transition: max-height .2s cubic-bezier(.23,1,.32,1) 0s;
    -o-transition: max-height .2s cubic-bezier(.23,1,.32,1) 0s;
    -ms-transition: max-height .2s cubic-bezier(.23,1,.32,1) 0s;
    transition: max-height .2s cubic-bezier(.23,1,.32,1) 0s
  }
.fixed header {
  -webkit-transition: all .33s cubic-bezier(.694,.0482,.335,1);
  -moz-transition: all .33s cubic-bezier(.694,.0482,.335,1);
  -o-transition: all .33s cubic-bezier(.694,.0482,.335,1);
  -ms-transition: all .33s cubic-bezier(.694,.0482,.335,1);
  transition: all .33s cubic-bezier(.694,.0482,.335,1);
  top: -120px;
  left: 0;
  position: fixed;
  -moz-background-clip: content;
  -webkit-background-clip: content;
  background-clip: content-box;
  top: 0;
  -webkit-animation: Navigation__slideDown .35s ease-out;
  animation: Navigation__slideDown .35s ease-out;
}
.fixed .header_bottom_right_widget_holder h6 a {
  margin-top: 0;
}


.fixed .q_logo img {
  margin: 23px 0 25px 0;
}
  header.fixed_hiding.scrolled .holeder_for_hidden_menu {
    max-height: 0
  }

  header.fixed_hiding .holeder_for_hidden_menu:hover {
    overflow: visible
  }

  header.fixed_hiding.scrolled:hover .holeder_for_hidden_menu {
    max-height: 150px;
    transition-duration: .5s;
    -webkit-transition-duration: .8s;
    -moz-transition-duration: .8s;
    -ms-transition-duration: .8s;
    -o-transition-duration: .8s
  }

  header.fixed_hiding.centered_logo .header_inner_left {
    margin: 20px 0;
    display: table;
    width: 100%
  }

  header.fixed_hiding.centered_logo.fixed_hiding .header_inner_left {
    height: 50px
  }

  header.fixed_hiding .header-left-from-logo-widget,header.fixed_hiding .header-right-from-logo-widget,header.fixed_hiding .logo_wrapper {
    display: table-cell;
    width: 33.33%;
    vertical-align: middle;
    position: relative
  }

  header.fixed_hiding .header-left-from-logo-widget-inner,header.fixed_hiding .header-right-from-logo-widget-inner {
    width: 100%
  }

  header.fixed_hiding .header-left-from-logo-widget {
    text-align: left
  }

  header.fixed_hiding .header-right-from-logo-widget {
    text-align: right
  }

  header.fixed_hiding .q_logo,header.fixed_hiding .q_logo a {
    max-height: 124px;
    opacity: 1;
    -webkit-transition: max-height .2s ease 0s,opacity .2s ease 0s;
    -moz-transition: max-height .2s ease 0s,opacity .2s ease 0s;
    -o-transition: max-height .2s ease 0s,opacity .2s ease 0s;
    -ms-transition: max-height .2s ease 0s,opacity .2s ease 0s;
    transition: max-height .2s ease-out 0s,opacity .2s ease 0s
  }

  header.fixed_hiding.scrolled .q_logo,header.fixed_hiding.scrolled .q_logo a {
    -webkit-transition: max-height .2s ease 0s,opacity .4s ease 0s;
    -moz-transition: max-height .2s ease 0s,opacity .4s ease 0s;
    -o-transition: max-height .2s ease 0s,opacity .4s ease 0s;
    -ms-transition: max-height .2s ease 0s,opacity .4s ease 0s;
    transition: max-height .2s ease-out 0s,opacity .4s ease 0s;
    max-height: 0;
    opacity: 0
  }

  header.fixed_hiding .q_logo_hidden a {
    height: 50px;
    position: relative;
    display: block;
    opacity: 0;
    max-height: 0;
    -webkit-transition: opacity 0s ease 0s,max-height 0s ease 0s;
    -moz-transition: opacity 0s ease 0s,max-height 0s ease 0s;
    -o-transition: opacity 0s ease 0s,max-height 0s ease 0s;
    -ms-transition: opacity 0s ease 0s,max-height 0s ease 0s;
    transition: opacity 0s ease 0s,max-height 0s ease 0s
  }

  header.fixed_hiding.scrolled .q_logo_hidden a {
    max-height: 500px;
    opacity: 1;
    -webkit-transition: opacity .15s ease .3s,max-height .15s ease .2s;
    -moz-transition: opacity .15s ease .3s,max-height .15s ease .2s;
    -o-transition: opacity .15s ease .3s,max-height .15s ease .2s;
    -ms-transition: opacity .15s ease .3s,max-height .15s ease .2s;
    transition: opacity .15s ease .3s,max-height .15s ease .2s
  }
}

@media (min-width: 768px) {
  span.mobile-logo {
    display: none;
  }
  .header_top .container {
    display: inline-block
  }

  .hide_inital_sticky header.stick {
    -ms-transform: none;
    -webkit-transform: none;
    transform: none
  }

  .header_inner_left,footer.uncover,header {
    position: relative;
    left: 0;
    margin-bottom: 0
  }

  .content {
    margin-bottom: 0
  }

  .right_side_menu_opened .wrapper header {
    left: 0
  }

  header {
    top: 0;
    margin-top: 0;
    display: block
  }

  .header_top {
    height: auto;
    display: block
  }

  .hide_top_bar_on_mobile_header .header_top {
    display: none
  }

  .header_top .left,.header_top .right {
    text-align: center;
    float: none
  }

  .header_top .inner {
    display: inline-block;
    margin: 0 0 -4px
  }

  .header_bottom {
    background-color:rgba(34,36,39,0.8);
  }

  header.centered_logo .header_inner_left {
    margin: 0
  }

  header.centered_logo .header_inner_right {
    float: right
  }

  header.centered_logo .logo_wrapper {
    height: 100px
  }

  header .q_logo img.mobile {
    display: block;
    opacity: 1;
    position: relative;
    margin: 0 auto
  }

  header .q_logo img.dark,header .q_logo img.light,header .q_logo img.normal,header .q_logo img.sticky {
    display: none
  }

  .fixed_top_header .logo_wrapper {
    display: block;
    height: auto;
    left: 0;
    position: relative
  }

  .fixed_top_header .q_logo {
    display: block;
    position: relative;
    top: 0;
    vertical-align: middle
  }

  .fixed_top_header .q_logo img.mobile,.logo_wrapper {
    position: absolute
  }
.lp-header .logo_wrapper {
    position: relative
  }
  .fixed_top_header .q_logo a {
    left: 0;
    width: auto
  }

  .fixed_top_header .q_logo img {
    top: 0;
    left: 0
  }

  .fixed_top_header .header_bottom_right_widget_holder,.fixed_top_header .mobile_menu_button,.fixed_top_header .shopping_cart_inner,.fixed_top_header .side_menu_button {
    height: 45px
  }

  .fixed_top_header.has_top .bottom_header {
    padding-top: 45px
  }

  header .q_logo.animate_logo div.normal {
    opacity: 1;
    display: block
  }

  .header-left-from-logo-widget,.header-right-from-logo-widget,.q_logo_hidden,header .q_logo.animate_logo div.dark,header .q_logo.animate_logo div.sticky {
    display: none
  }

  body.side_menu_slide_with_content.side_menu_open .carousel-inner:not(.relative_position),body.side_menu_slide_with_content.width_270.side_menu_open .carousel-inner:not(.relative_position),body.side_menu_slide_with_content.width_370.side_menu_open .carousel-inner:not(.relative_position) {
    left: 0
  }

  .main_menu {
    display: none
  }

  nav.mobile_menu {
    display: block
  }

  .logo_wrapper,.mobile_menu_button {
    display: table
  }

  nav.mobile_menu>ul {
    width: 768px;
    margin: 0 auto
  }

  .logo_wrapper {
  }

  .q_logo {
    display: table-cell;
    position: relative;
    top: auto;
    vertical-align: middle
  }

  .q_logo a {
    width: auto
  }

  .q_logo img {
    top: 0;
    left: 0
  }

  header .header_fixed_right_area {
    line-height: 100%;
    top: 80px;
    width: 100%;
    display: block;
    text-align: center;
    margin: 0;
    position: absolute
  }

  header:not(.centered_logo) .header_fixed_right_area {
    display: none
  }

  .header_menu_bottom {
    border-top: none
  }

  .dark .mobile_menu_button span,.dark .shopping_cart_header .header_cart>i,.dark .side_menu_button>a,.light .header_top .header-widget,.light .header_top .header-widget a,.light .header_top .header-widget p,.light .header_top .header-widget span,.light .header_top .header-widget.widget_nav_menu ul.menu>li>a,.light .header_top .q_social_icon_holder i.simple_social,.light .header_top .q_social_icon_holder span.simple_social {
    color: #777
  }

  .light .header_top #lang_sel>ul>li>a,.light .header_top #lang_sel_click>ul>li>a,.light .header_top .q_social_icon_holder i.simple_social,.light .header_top .q_social_icon_holder span.simple_social {
    color: #777
  }

  .dark .header_top .header-widget,.dark .header_top .header-widget a,.dark .header_top .header-widget p,.dark .header_top .header-widget span,.dark .header_top .header-widget.widget_nav_menu ul.menu>li>a,.dark .header_top .q_social_icon_holder i.simple_social,.dark .header_top .q_social_icon_holder span.simple_social,.dark .mobile_menu_button span,.dark .shopping_cart_header .header_cart>i,.dark .side_menu_button>a {
    color: #777
  }

  .dark .header_top #lang_sel>ul>li>a,.dark .header_top #lang_sel_click>ul>li>a,.dark .header_top .q_social_icon_holder i.simple_social,.dark .header_top .q_social_icon_holder span.simple_social {
    color: #777
  }
  header.menu_bottom.has_header_fixed_right .side_menu_button {
    height: 130px
  }

  .header_top .right #lang_sel ul ul,.header_top .right #lang_sel_click ul ul {
    right: 0
  }
}
/* Tablet Styles */


@media (max-width: 1150px) and (min-width: 767px) {
  .header__column {
    width: 100%;
  }

  .header__logo--main {
    display: none;
  }

  .header__logo--tablet {
    display: block;
  }
}
@media (max-width: 1000px) {
  .header_bottom {
    padding: 0 45px;
    background-color: #fff !important;
  }
  span.mobile-logo {
    display: block;
  }
  .header_bottom_right_widget_holder {
    display: none;
  }
  .q_logo img {
    margin: 24px 0 27px 0;
  }
  span.desktop-logo {
    display: none;
  }
  .popup_menu_opened .fixed_top_header .top_header, .popup_menu_opened .header_bottom, .popup_menu_opened .header_top {
    background-color: transparent !important;
    border: 0;
  }

  .popup_menu_opened span.desktop-logo {
    display: block;
  }
  .popup_menu_opened span.mobile-logo {
    display: none;
  }
}
/* Mobile Styles */

@media (max-width: 767px) {
  .header__container {
    flex-direction: column;
    padding: 20px 0 0;
  }

  .header__container form {
    max-width: 100%;
  }

  .header__logo {
    width: 100%;
    margin: 0 auto;
  }

  .header__navigation,
  .header__search,
  .header__language-switcher {
    display: none;
    width: 100%;
  }

  .header__navigation.open,
  .header__search.open,
  .header__language-switcher.open {
    display: block;
    position: absolute;
    top: 75px;
    left: 0;
    right: 0;
    height: calc(100vh - 115px);
    background-color: #F8FAFC;
    z-index: 2;
  }

  .header__navigation--toggle,
  .header__search--toggle,
  .header__language-switcher--toggle,
  .header__close--toggle {
    position: relative;
    cursor: pointer;
    margin: 0 5vw;
  }

  .header__navigation--toggle.hide,
  .header__search--toggle.hide,
  .header__language-switcher--toggle.hide {
    display: none;
  }

  .header__navigation--toggle.open,
  .header__search--toggle.open,
  .header__language-switcher--toggle.open {
    display: block;
    margin-right: auto;
    margin-left: 0;
  }

  .header__navigation--toggle.open:after,
  .header__search--toggle.open:after,
  .header__language-switcher--toggle.open:after {
    display: block;
  }

  .header__navigation--toggle:after,
  .header__search--toggle:after,
  .header__language-switcher--toggle:after {
    display: none;
    position: absolute;
    left: 40px;
    top: -10px;
    font-weight: 600;
    font-size: 26px;
    text-transform: uppercase;
  }

  .header__column {
    position: relative;
  }

  .header__row-1 {
    padding-top: 0;
  }

  .header__row-2 {
    justify-content: center;
    padding: 30px;
  }

  .header__navigation--toggle {
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjI0cHgiIHZpZXdCb3g9IjAgMCAyNCAxOSIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4gICAgICAgIDx0aXRsZT5oYW1idXJnZXI8L3RpdGxlPiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4gICAgPGcgaWQ9ImhhbWJ1cmdlciIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+ICAgICAgICA8ZyBpZD0iR3JvdXAiIHN0cm9rZT0iIzQ5NEE1MiIgc3Ryb2tlLXdpZHRoPSIzIj4gICAgICAgICAgICA8cmVjdCBpZD0iUmVjdGFuZ2xlIiB4PSIxLjUiIHk9IjEuNSIgd2lkdGg9IjIxIiBoZWlnaHQ9IjEiIHJ4PSIwLjUiPjwvcmVjdD4gICAgICAgICAgICA8cmVjdCBpZD0iUmVjdGFuZ2xlLUNvcHktNCIgeD0iMS41IiB5PSI5LjUiIHdpZHRoPSIyMSIgaGVpZ2h0PSIxIiByeD0iMC41Ij48L3JlY3Q+ICAgICAgICAgICAgPHJlY3QgaWQ9IlJlY3RhbmdsZS1Db3B5LTUiIHg9IjEuNSIgeT0iMTcuNSIgd2lkdGg9IjIxIiBoZWlnaHQ9IjEiIHJ4PSIwLjUiPjwvcmVjdD4gICAgICAgIDwvZz4gICAgPC9nPjwvc3ZnPg==);
    background-repeat: no-repeat;
    background-position: top left;
    background-size: cover;
    height: 25px;
    width: 25px;
    cursor: pointer;
  }

  .header__navigation--toggle:after {
    content: "Menu";
  }

  .header__language-switcher--toggle {
    background-image: url(//static.hsappstatic.net/cos-LanguageSwitcher/static-1.1/img/globe.png);
    background-size: cover;
    width: 25px;
    height: 25px;
  }

  .header__language-switcher--toggle:after {
    content: "Language";
  }

  .header__language-switcher {
    border-top: 2px solid #CED4DB;
    padding-right: 0;
    padding-left: 30px;
  }

  .header__language-switcher .lang_list_class {
    display: block;
    visibility: visible;
    opacity: 1;
    top: 0;
    left: 30px;
    border: none;
    border-radius: 0;
    box-shadow: unset;
    padding: 0 30px;
    background-color: inherit;
  }

  .header__language-switcher .lang_list_class li {
    background-color: inherit;
    font-size: 22px;
  }
  .header__language-switcher--label-current {
    display: none;
  }
  .header__language-switcher .globe_class {
    background-image: none;
  }

  .header__language-switcher .lang_list_class li:hover {
    background-color: inherit;
  }

  .header__language-switcher .lang_list_class:before,
  .header__language-switcher .lang_list_class:after {
    content: none;
  }

  .header__search--toggle {
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjI0cHgiIHZpZXdCb3g9IjAgMCAyNCAyNCIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4gICAgICAgIDx0aXRsZT5TZWFyY2g8L3RpdGxlPiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4gICAgPGRlZnM+ICAgICAgICA8cGF0aCBkPSJNOS4xMzg2MTUzNCwxNS44OTI1Njg1IEM1LjQxMzk1NzQyLDE1Ljg5MjU2ODUgMi4zODM4ODUyNywxMi44NjM0NDc1IDIuMzgzODg1MjcsOS4xMzkwMDM3NiBDMi4zODM4ODUyNyw1LjQxNDU2MDA1IDUuNDEzOTU3NDIsMi4zODM4ODUyNyA5LjEzODYxNTM0LDIuMzgzODg1MjcgQzEyLjg2MzI3MzMsMi4zODM4ODUyNyAxNS44OTI1Njg1LDUuNDE0NTYwMDUgMTUuODkyNTY4NSw5LjEzOTAwMzc2IEMxNS44OTI1Njg1LDEyLjg2MzQ0NzUgMTIuODYzMjczMywxNS44OTI1Njg1IDkuMTM4NjE1MzQsMTUuODkyNTY4NSBNOS4xMzg3NTI0NSwyLjQzMzYwODg3ZS0xMyBDMTQuMTc3OTk1NSwyLjQzMzYwODg3ZS0xMyAxOC4yNzY0NTM3LDQuMTAwMzI0NzEgMTguMjc2NDUzNyw5LjEzOTI3Nzk2IEMxOC4yNzY0NTM3LDExLjIyOTgyMTEgMTcuNTcxMDE2OSwxMy4xNTg0NDM0IDE2LjM4NTYzMTMsMTQuNjk5NjY5NiBMMjMuNjUwODg4MSwyMS45NjUyMjY2IEMyNC4xMTYzNzA2LDIyLjQzMDcwOTIgMjQuMTE2MzcwNiwyMy4xODU0MDU1IDIzLjY1MDg4ODEsMjMuNjUwODg4MSBDMjMuMTg1NDA1NSwyNC4xMTYzNzA2IDIyLjQzMDcwOTIsMjQuMTE2MzcwNiAyMS45NjUyMjY2LDIzLjY1MDg4ODEgTDE0LjY5OTgxMzMsMTYuMzg1NDcxMyBDMTMuMTU4NDQwNSwxNy41NzA5NTA5IDExLjIyOTU3MzgsMTguMjc2NDUzNyA5LjEzODc1MjQ1LDE4LjI3NjQ1MzcgQzQuMDk5NTA5MzgsMTguMjc2NDUzNyAtMy43MzAzNDkzNmUtMTQsMTQuMTc4MjMxMiAtMy43MzAzNDkzNmUtMTQsOS4xMzkyNzc5NiBDLTMuNzMwMzQ5MzZlLTE0LDQuMTAwMzI0NzEgNC4wOTk1MDkzOCwyLjQzMzYwODg3ZS0xMyA5LjEzODc1MjQ1LDIuNDMzNjA4ODdlLTEzIFoiIGlkPSJwYXRoLTEiPjwvcGF0aD4gICAgPC9kZWZzPiAgICA8ZyBpZD0iU2VhcmNoIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj4gICAgICAgIDxtYXNrIGlkPSJtYXNrLTIiIGZpbGw9IndoaXRlIj4gICAgICAgICAgICA8dXNlIHhsaW5rOmhyZWY9IiNwYXRoLTEiPjwvdXNlPiAgICAgICAgPC9tYXNrPiAgICAgICAgPHVzZSBpZD0iSWNvbnMvQWN0aW9ucy9TZWFyY2giIGZpbGw9IiM0OTRBNTIiIHhsaW5rOmhyZWY9IiNwYXRoLTEiPjwvdXNlPiAgICA8L2c+PC9zdmc+);
    background-size: cover;
    width: 25px;
    height: 25px;
  }

  .header__search--toggle:after {
    content: "Search";
  }

  .header__search {
    order: 1;
    padding: 30px;
    border-top: 2px solid #CED4DB;
  }

  .header__search .hs-search-field__input {
    padding-left: 15px;
  }

  .header__search .hs-search-field__suggestions li {
    padding: 10px 0;
  }

  .header__close--toggle {
    display: none;
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjE5cHgiIHZpZXdCb3g9IjAgMCAyNCAxOSIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4gICAgICAgIDx0aXRsZT5jbG9zZTwvdGl0bGU+ICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPiAgICA8ZyBpZD0iY2xvc2UiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPiAgICAgICAgPGcgaWQ9Ikdyb3VwIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgyLjAwMDAwMCwgLTEuMDAwMDAwKSIgc3Ryb2tlPSIjNDk0QTUyIiBzdHJva2Utd2lkdGg9IjMiPiAgICAgICAgICAgIDxyZWN0IGlkPSJSZWN0YW5nbGUiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDEwLjAwMDAwMCwgMTAuNTAwMDAwKSByb3RhdGUoLTQ1LjAwMDAwMCkgdHJhbnNsYXRlKC0xMC4wMDAwMDAsIC0xMC41MDAwMDApICIgeD0iLTAuNSIgeT0iMTAuNSIgd2lkdGg9IjIxIiBoZWlnaHQ9IjEiIHJ4PSIwLjUiPjwvcmVjdD4gICAgICAgICAgICA8cmVjdCBpZD0iUmVjdGFuZ2xlLUNvcHktNSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTAuMDAwMDAwLCAxMC41MDAwMDApIHJvdGF0ZSg0NS4wMDAwMDApIHRyYW5zbGF0ZSgtMTAuMDAwMDAwLCAtMTAuNTAwMDAwKSAiIHg9Ii0wLjUiIHk9IjEwLjUiIHdpZHRoPSIyMSIgaGVpZ2h0PSIxIiByeD0iMC41Ij48L3JlY3Q+ICAgICAgICA8L2c+ICAgIDwvZz48L3N2Zz4=);
    background-size: 110%;
    background-repeat: no-repeat;
    width: 25px;
    height: 25px;
    margin-right: 0;
  }
  header {
    width: 100%;
    display: block;
  }
  .header__close--toggle.show {
    display: block;
  }
  .q_logo img {
    margin: 24px 0 24px 0;
  }
}

@media only screen and (max-width: 480px) {
  .header_bottom, footer .container_inner {
    padding: 0 25px;
  }

}

@media only screen and (max-width: 420px) {
  .header_bottom, footer .container_inner {
    padding: 0 15px;
  }

}


.mt_is_in_editor {
  margin-top: 148px;
}
.header-mega {
    position: fixed;
    top: 30px;
    z-index: 999;
    width: 100%;
    min-height: 94px;
}

.header-mega>.hs_row {
    max-width: 1440px;
    margin: 0 auto;
}

.header-mega--wrap {
    display: flex;
    justify-content: space-between;
    min-height: 94px;
    padding: 0 30px;
    position:relative;
    border-radius: 18px;
    background-color: transparent;
    transition:background-color 0.3s ease-in-out;
}

.shrink .header-mega--wrap {
    background-color: var(--rk-purple);
}
.shrink .header-mega--wrap:before {
    opacity: 0;
}
.header-mega--wrap:before {
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.0525) 100%);
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.14);
    border-radius: 18px;
    backdrop-filter: blur(16.5px);
    -webkit-backdrop-filter: blur(16.5px);
    opacity: 1;
    transition:opacity 0.3s ease-in-out;
}

.header-mega--logo {
    display: flex;
    align-items: center;
    z-index: 1;
}

.header-mega--logo img {
    width: 100%;
    max-width: 184px;
}

.header-mega--menu>div {
    height: 100%;
}
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your
footer looks when it comes to spacing and other general styles.
*********************************************************************************
****************************************************************************** */

.footer {
  background-color: #F8FAFC;
  text-align: center;
}
.footer__container {
  padding: 1rem;
  margin: 0 auto;
}
.footer__copyright {
  font-family: Lato, sans-serif;
  font-size: .7rem;
  margin: .5rem 0;
}

footer {
  width: 100%;
  margin: 0 auto;
  z-index: 100;
  position: relative
}

footer.uncover {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 99;
  -webkit-transition: left .33s cubic-bezier(.694,.0482,.335,1);
  -moz-transition: left .33s cubic-bezier(.694,.0482,.335,1);
  -o-transition: left .33s cubic-bezier(.694,.0482,.335,1);
  -ms-transition: left .33s cubic-bezier(.694,.0482,.335,1);
  transition: left .33s cubic-bezier(.694,.0482,.335,1);
  -webkit-backface-visibility: hidden
}

body.paspartu_enabled footer.uncover {
  z-index: 98
}

.boxed footer {
  width: 100%;
  box-sizing: border-box;
  -moz-box-sizing: border-box
}

.right_side_menu_opened footer.uncover {
  left: -270px
}

footer .container_inner {
  position: relative
}

.footer_top_holder {
  background-color: #262626;
  position: relative
}

.footer_top {
  padding: 72px 0 52px
}

.footer_bottom_border.in_grid,.footer_top_border.in_grid {
  width: 1100px;
  margin: 0 auto
}

.footer_top.footer_top_full {
  padding: 48px 24px
}

.footer_top h5 {
  color: #fff;
  margin: 0 0 22px
}

.footer_top ul {
  list-style: none
}

.footer_top .textwidget,.footer_top a,.footer_top li,.footer_top p,.footer_top span {
  color: #818181;
  word-wrap: break-word
}

.footer_top a:not(.qbutton) {
  -webkit-transition: color .2s ease-in-out;
  -moz-transition: color .2s ease-in-out;
  -o-transition: color .2s ease-in-out;
  -ms-transition: color .2s ease-in-out
}

.footer_top a:hover {
  color: #fff
}

.footer_top .four_columns .column2 .column_inner>div,.footer_top .three_columns .column2 .column_inner>div,.footer_top .two_columns_50_50 .column2 .column_inner>div {
  margin: 0 0 0 15px
}

.footer_top .four_columns .column3 .column_inner>div,.footer_top .three_columns .column3 .column_inner>div {
  margin: 0 0 0 10px
}

.footer_top .four_columns .column4 .column_inner>div {
  margin: 0 0 0 5px
}

.footer_top .widget_nav_menu li.menu-item a {
  margin-bottom: 0
}

.footer_top .widget_meta>ul>li,.footer_top .widget_nav_menu ul li,.footer_top .widget_pages ul li,.footer_top .widget_recent_comments>ul>li,.footer_top .widget_recent_entries>ul>li {
  padding: 0 0 17px;
  position: relative
}

.footer_top .widget_nav_menu ul li ul,.footer_top .widget_pages ul li ul {
  padding: 0 0 0 10px
}

.footer_top .widget_recent_entries>ul>li>span {
  color: #9d9d9d
}

.footer_bottom_holder {
  display: block;
  background-color: #1b1b1b
}

.footer_top_holder svg.angled-section polygon {
  fill: #1b1b1b
}

.footer_bottom {
  display: table-cell;
  font-size: 12px;
  line-height: 22px;
  height: 53px;
  width: 1%;
  vertical-align: middle
}

.footer_bottom_columns.three_columns .column1 .footer_bottom,.footer_bottom_columns.three_columns .column1 .footer_bottom ul,.footer_bottom_columns.two_columns_50_50 .column1 .footer_bottom,.footer_bottom_columns.two_columns_50_50 .column1 .footer_bottom ul {
  text-align: left
}

.footer_bottom_columns.three_columns .column3 .footer_bottom,.footer_bottom_columns.three_columns .column3 .footer_bottom ul,.footer_bottom_columns.two_columns_50_50 .column2 .footer_bottom,.footer_bottom_columns.two_columns_50_50 .column2 .footer_bottom ul {
  text-align: right
}

.footer_bottom p,.footer_bottom span {
  margin: 0
}

.footer_bottom .footer_text_title {
  display: none
}

.footer_bottom ul {
  list-style: none;
  text-align: center
}

.footer_bottom ul li {
  display: inline-block;
  margin-right: 46px
}

#back_to_top .hover,.right_side_menu_opened #back_to_top {
  display: none
}

.footer_bottom ul li:last-child {
  margin-right: 0
}

.footer_bottom ul li a {
  color: #fff;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 1px;
  font-size: 13px;
  -webkit-transition: color .3s ease-in-out;
  -moz-transition: color .3s ease-in-out;
  -ms-transition: color .3s ease-in-out;
  -o-transition: color .3s ease-in-out;
  transition: color .3s ease-in-out
}

.footer_bottom ul li a:hover,.footer_top .q_social_icon_holder i.simple_social,.footer_top .q_social_icon_holder span.simple_social,.side_menu .q_social_icon_holder i.simple_social,.side_menu .q_social_icon_holder span.simple_social {
  color: #818181
}

.footer_top .q_social_icon_holder i.simple_social,.footer_top .q_social_icon_holder span.simple_social {
  margin-right: 16px;
  -webkit-transition: all .3s ease 0s;
  -moz-transition: all .3s ease 0s;
  -o-transition: all .3s ease 0s;
  transition: all .3s ease 0s
}

.footer_top .q_social_icon_holder:hover i.simple_social,.footer_top .q_social_icon_holder:hover span.simple_social,.side_menu .q_social_icon_holder:hover i.simple_social,.side_menu .q_social_icon_holder:hover span.simple_social {
  color: #fff
}

.footer_top .q_social_icon_holder.normal_social {
  margin: 0
}

.footer_top .q_social_icon_holder:last-child i.simple_social,.footer_top .q_social_icon_holder:last-child span.simple_social {
  margin-right: 0
}

#back_to_top {
  color: #cdcdcd;
  height: auto;
  position: fixed;
  bottom: 65px;
  margin: 0;
  z-index: 10000;
  -webkit-transition: all .3s ease 0s;
  -moz-transition: all .3s ease 0s;
  -o-transition: all .3s ease 0s;
  transition: all .3s ease 0s;
  right: 25px;
  visibility: hidden;
  -webkit-backface-visibility: hidden
}

#back_to_top.off {
  right: 25px
}

#back_to_top.on {
  opacity: 1;
  filter: alpha(opacity=100);
  visibility: visible;
  right: 25px
}

#back_to_top>span {
  width: 52px;
  height: 52px;
  line-height: 52px;
  text-decoration: none;
  -o-border-radius: 52px;
  -moz-border-radius: 52px;
  -webkit-border-radius: 52px;
  border-radius: 52px;
  -webkit-transition: all .2s ease 0s;
  -moz-transition: all .2s ease 0s;
  -o-transition: all .2s ease 0s;
  border: 2px solid #e8e8e8;
  background: 0 0
}

#back_to_top span i,#back_to_top span span,.q_steps_holder .circle_small .step_title,.q_steps_holder .circle_small span {
  -webkit-transition: color .2s ease 0s;
  -moz-transition: color .2s ease 0s;
  -o-transition: color .2s ease 0s
}

#back_to_top span i,#back_to_top span span {
  font-size: 22px;
  color: #b0b0b0;
  line-height: 52px
}

#back_to_top:hover>span {
  background-color: #e8e8e8
}
footer .footer_bottom_holder .roketto-footer a img {
  max-width: 100%;
}
footer .container_inner { 
  width: 100%;
  padding:0 45px;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}
footer .footer_bottom_holder {
  background-color: #2e2f30;
  padding-top: 0;
  padding-bottom: 0;
}
footer .footer_bottom_holder .container_inner:before {
  position: absolute;
  z-index: 1;
  right: -20px;
  bottom: 0;
  width: 848px;
  height: 201px;
  content: " ";
  background-image: url(//2886534.fs1.hubspotusercontent-na1.net/hubfs/2886534/raw_assets/public/Roketto_July2020/images/footer-effects-blue.png);
  background-size: 848px;
  background-position: right bottom;
  background-repeat: no-repeat;
  pointer-events: none;
}

.body-wrapper{
  overflow: hidden;
}
footer .footer_bottom_holder .footer_bottom {
  padding-bottom: 0;
  padding-top: 0;
}
footer .container_inner .footer_bottom_columns {
  display: table;
  height: 120px;
  width: 100%;
  table-layout: fixed;
}
footer .container_inner .footer_bottom_columns .footer_bottom_column {
  display: table-cell;
  vertical-align: middle;
  float: none;
  position: relative;
  z-index: 2;
}
footer .container_inner .footer_bottom_columns .footer_bottom_column.column1 {
  width: 45%;
}
footer .container_inner .footer_bottom_columns .footer_bottom_column.column2 {
  width: 55%;
}
footer .container_inner .footer_bottom_columns .footer_bottom_column.column2 .footer_bottom {
  text-align: right;
}
footer .footer_bottom_holder .roketto-footer, footer .footer_bottom_holder .social-links,  footer .footer_bottom_holder .roketto-kelowna {
  display: inline-block;
  vertical-align: middle;
}
footer .footer_bottom_holder .roketto-kelowna {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
}
body footer .footer_bottom_holder .roketto-kelowna .widget-type-text span:not(.q_social_icon_holder):not(.fa-stack):not(.qode_icon_font_elegant) {
  font-family: "proxima-nova",Helvetica,Arial,sans-serif;
  font-weight: 600;
  font-size: 14px;
  margin-left: 20px;
  letter-spacing: 0px;
  line-height: 18px;
}
footer .footer_bottom_holder .social-links {
  margin-left: 45px;
}
footer .footer_bottom_holder .social-links a {
  display: inline-block;
  width: 32px;
  height: 32px;
  text-align: center;
  margin-right: 15px;
  border-radius: 64px;
  -webkit-border-radius: 64px;
  -moz-border-radius: 64px;
  background-color: rgba(0,0,0,0.2);
  line-height: 32px;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
}
footer .footer_bottom_holder .social-links a svg {
  padding-top:10px;
}

.google-footer img {
  width: auto;
  height: 50px;
  width: auto !important;
}
footer .footer_bottom_holder .google-footer {
  margin-right: 18px;
  display: inline-block;
}
footer .footer_bottom_holder .social-links a:hover {
  background-color: #ff33b1;
}
footer .footer_bottom_holder .roketto-footer a {
  display: block;

  background-position: left center;
  background-size: 131px;
  background-repeat: no-repeat;
  width: 131px;
  height: 32px;
}
footer .footer_bottom_holder .google-footer img {
  max-width: 100%;
}
footer .footer_bottom_holder .google-footer {
  margin-right: 18px;
}
footer .footer_bottom_holder .google-footer.clutch-footer {
  margin-right: 0;
}
.google-footer {
  height: 50px;
  width: auto;
  margin-right: 10px;
}




.footer_top_holder, footer #lang_sel > ul > li > a, footer #lang_sel_click > ul > li > a {
  background-color: #222222;
}

footer #lang_sel ul ul a,footer #lang_sel_click ul ul a,footer #lang_sel ul ul a:visited,footer #lang_sel_click ul ul a:visited {
  background-color: #222222;
}

.footer_top, .footer_top.footer_top_full {
  padding-top: 89px;
  padding-bottom: 84px
}

.footer_top .column_inner > div h2, .footer_top .column_inner > div h3, .footer_top .column_inner > div h4, .footer_top .column_inner > div h5, .footer_top .column_inner > div h6 {
  color: #ffffff;
}

.footer_top, .footer_top p, .footer_top span, .footer_top li, .footer_top .textwidget, .footer_top .widget_recent_entries>ul>li>span {
  color: #8d8d8d;
}

.footer_top a {
  color: #8d8d8d;
}

.footer_top .q_social_icon_holder .simple_social {
  color: #8d8d8d;
}

.footer_top a:hover {
  color: #ffffff;
}

.footer_top .q_social_icon_holder:hover .simple_social {
  color: #ffffff;
}

.footer_bottom_holder, #lang_sel_footer {
  background-color: #3d4045;
}

.footer_bottom_holder {
  padding-bottom: 35px
}

.footer_bottom {
  padding-top: 35px;
}

.footer_top h5 {
  font-family: "Arial", sans-serif;
  font-size: 15px;
  letter-spacing: 1px;
  line-height: 40px;
  font-weight: 600;
  text-transform: uppercase;
  color: #ffffff;
  font-style: normal
}

.footer_top, .footer_top p, .footer_top span:not(.q_social_icon_holder):not(.fa-stack):not(.qode_icon_shortcode):not(.qode_icon_font_elegant), .footer_top li, .footer_top .textwidget, .footer_top .widget_recent_entries>ul>li>span {
  font-family: "Arial", sans-serif;
  font-size: 14px;
  letter-spacing: 0px;
  line-height: 28px;
  font-weight: 400;
  text-transform: none;
  font-style: normal
}

.footer_top a {
  font-family: "Arial", sans-serif;
  font-size: 14px;
  letter-spacing: 0px;
  line-height: 22px;
  font-weight: 400;
  text-transform: capitalize;
  font-style: normal
}

.footer_bottom_holder, .footer_bottom, .footer_bottom p, .footer_bottom_holder p, .footer_bottom span:not(.q_social_icon_holder):not(.fa-stack):not(.qode_icon_font_elegant) {
  font-family: "Arial", sans-serif;
  font-size: 12px;
  letter-spacing: 0px;
  line-height: 18px;
  font-weight: 400;
  text-transform: none;
  font-style: normal
}

.footer_bottom_holder a, .footer_bottom_holder ul li a {
  font-family: "Arial", sans-serif;
  font-size: 13px;
  letter-spacing: 0px;
  font-weight: 700;
  text-transform: uppercase;
  font-style: normal
}

.footer_bottom, .footer_bottom span, .footer_bottom p, .footer_bottom p a, .footer_bottom a, #lang_sel_footer ul li a, footer #lang_sel > ul > li > a, footer #lang_sel_click > ul > li > a, footer #lang_sel a.lang_sel_sel, footer #lang_sel_click a.lang_sel_sel, footer #lang_sel ul ul a, footer #lang_sel_click ul ul a, footer #lang_sel ul ul a:visited, footer #lang_sel_click ul ul a:visited, footer #lang_sel_list.lang_sel_list_horizontal a, footer #lang_sel_list.lang_sel_list_vertical a, #lang_sel_footer a, .footer_bottom ul li a {
  color: #eaeded;
}

.footer_bottom p a:hover, .footer_bottom a:hover, #lang_sel_footer ul li a:hover, footer #lang_sel > ul > li > a:hover, footer #lang_sel_click > ul > li > a:hover, footer #lang_sel a.lang_sel_sel:hover, footer #lang_sel_click a.lang_sel_sel:hover, footer #lang_sel ul ul a:hover, footer #lang_sel_click ul ul a:hover, footer #lang_sel ul ul a:hover, footer #lang_sel_click ul ul a:hover, footer #lang_sel_list.lang_sel_list_horizontal a:hover, footer #lang_sel_list.lang_sel_list_vertical a:hover, #lang_sel_footer a:hover, .footer_bottom ul li a:hover {
  color: #ffffff;
}
@media (min-width: 1001px) {
  footer .footer_bottom_holder .google-footer img {
    max-width: 100%;
    margin-top: -2px;
  }

}
@media only screen and (max-width: 1260px){
  footer .footer_bottom_holder .roketto-kelowna{
    left: 0;
    top: auto;
    bottom: 20px;
    transform: translateY(0);
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
  }
  footer .footer_bottom_holder .roketto-kelowna p,
  body footer .footer_bottom_holder .roketto-kelowna .widget-type-text span:not(.q_social_icon_holder):not(.fa-stack):not(.qode_icon_font_elegant){
    margin-left: 0;
    font-size: 12px;
  }
}

@media only screen and (max-width: 1100px){

  footer .footer_bottom_holder .container_inner:before {
    display: none;
  }
}
@media only screen and (max-width: 1000px){
  footer .container_inner .footer_bottom_columns .footer_bottom_column.column1, footer .container_inner .footer_bottom_columns .footer_bottom_column.column2 {
    width: 50% !important;
  }

  footer .footer_bottom_holder a .google-footer.partner-logo, footer .footer_bottom_holder .google-footer {
    margin-right: 25px;
  }
  .google-footer,
  .google-footer img{
    height: 38px;
  }
  footer .footer_bottom_holder .google-footer:not(:first-child):not(:last-child) {
    margin-right: 18px;
  }
}
@media only screen and (max-width: 900px){
  body footer .container_inner .footer_bottom_columns .footer_bottom_column.column2, body footer .container_inner .footer_bottom_columns .footer_bottom_column.column1 {
    width: 100% !important;
    display: block;
    height: auto;
  }
   .column2.footer_bottom_column .footer_bottom a {
    margin-bottom: 6px;
}
  footer .footer_bottom_holder .roketto-footer a img {
    max-width: 100%;
    margin: 2px 0 27px;
  }
  .column1 .footer_bottom .textwidget {
    padding-right: 11px;
  }
  footer .container_inner .footer_bottom_columns .footer_bottom_column.column2 .footer_bottom, footer .container_inner .footer_bottom_columns .footer_bottom_column.column1 .footer_bottom {
    width: 100%;
    display: block;
    text-align: center !important;
    height: auto;
  }
  footer .footer_bottom_holder .google-footer:not(:first-child):not(:last-child) {
    margin-right: 18px;
  }
  footer .footer_bottom_holder .roketto-footer a img {
    max-width: 100%;
    margin: 1px 0 1px;
  }
  footer .footer_bottom_holder .roketto-footer a {
    display: inline-block;
  }
  /*
  footer .footer_bottom_holder .google-footer {
  margin: 10px !important;
}
  */
  footer .container_inner .footer_bottom_columns {
    display: block;
    height: auto;
  }
  footer .container_inner {
    padding: 30px;
  }
  footer .footer_bottom_holder .social-links {
    margin-left: 0;
    text-align: center;
    display: block;
    margin-top: 10px;
    margin-bottom: 5px;
  }
  footer .footer_bottom_holder .social-links a {
    margin:8px;
  }
  footer .footer_bottom_holder .roketto-kelowna {
    position: relative;
    text-align: center;
    bottom: 0;
    margin: 5px 0 10px 0;
  }
   footer .footer_bottom_holder .roketto-footer a img {
    max-width: 100%;
    margin: 2px 0 27px;
  }
}
@media only screen and (max-width: 767px){ 
  .google-footer,
  .google-footer img{
    height: 35px !important;
  }
  .column1 .footer_bottom .textwidget {
/*     padding-right: 0; */
  }
  footer .footer_bottom_holder a .google-footer.partner-logo, footer .footer_bottom_holder .google-footer {
    margin-right: 20px;
  }
 .column2.footer_bottom_column .footer_bottom a {
    margin-bottom: 6px;
}
  footer .footer_bottom_holder .roketto-footer a img {
    max-width: 100%;
    margin: 2px 0 27px;
  }
}

@media only screen and (max-width: 480px){
  .google-footer, .google-footer img {
    height: 30px !important;
  }
    .column1 .footer_bottom .textwidget {
   padding-right: 0; 
  }
  footer .footer_bottom_holder a .google-footer.partner-logo, footer .footer_bottom_holder .google-footer{
    margin-right: 15px !important;
  }
  .google-footer{
    height: 30px !important;
  }
  footer .footer_bottom_holder a .google-footer.partner-logo, footer .footer_bottom_holder .google-footer {
    margin-right: 15px !important;
  }
}
.footer-mega {
    background-color: var(--rk-deep-blue);
    position: relative;
    padding: 75px 0 0;


    &:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: radial-gradient(43.79% 43.79% at 50% 40.82%, rgba(28, 26, 210, 0.2) 0%, rgba(14, 13, 108, 0) 100%), linear-gradient(180deg, rgba(0, 0, 0, 0) 40.74%, rgba(0, 0, 0, 0.2) 100%), #080753;
    }
}

.footer-mega_wrap {
    position: relative;
    z-index: 1;
}

.footer-mega--newsletter {
    position: relative;
}

.footer-mega--newsletter_form_text {
    color: white;

    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        color: white;
    }

    h2 {
        font-size: clamp(37px, 6vw, 57px);
    }
}

.footer-mega--newsletter_form {
    form {
        position: relative;

        input[name="email"] {
            padding-right: 160px;
        }

        .hs_submit.hs-submit {
            position: absolute;
            top: 0;
            right: 0;

            input {
                margin-top: 0;
                height: 61px;
            }
        }
    }
}

.footer-mega--content {}

.footer-mega--content_logo {
    margin-bottom: 40px;

    img {
        max-width: 198px;
    }
}

.footer-mega--content_footer_text {
    color: white;

    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        color: white;
    }

    p {
        font-size: 17px;
    }
}

.footer-mega--content_social {
    margin-top: 30px;

    .social-links-inner {
        display: flex;
        gap: 10px;

        a {
            display: flex;
            border-radius: 50%;
            width: 45px;
            height: 45px;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease-in-out;

            &[data-type="facebook"] {
                background-color: var(--rk-purple);
            }

            &[data-type="x"] {
                background-color: var(--rk-blue);
            }

            &[data-type="instagram"] {
                background-color: var(--rk-pink);
            }

            &[data-type="linkedin"] {
                background-color: var(--rk-teal);
            }

            svg {
                width: auto;
                height: 20px;

                path {
                    fill: white;
                }
            }

            i {
                font-size: 24px;
                color: white;
                line-height: 0;
            }

            &:hover {
                background-color: var(--rk-dark-blue);
            }
        }
    }
}

.footer-mega--menu_title {}

.footer-mega--menu {
    ul {
        flex-direction: column;

        li {
            display: block;

            &+li {
                margin-top: 20px;
            }

            a {
                color: white;
                padding: 0 0px 0 20px;
                position: relative;
                transition: all 0.3s ease-in-out;
                font-size: 17px;

                &:before {
                    content: '';
                    background-image: url('data:image/svg+xml,%3Csvg%20width%3D%228%22%20height%3D%2213%22%20viewBox%3D%220%200%208%2013%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M0.5%2011.285L1.6776%2012.5L7.5%206.5L1.6776%200.5L0.5%201.715L5.14115%206.5L0.5%2011.285Z%22%20fill%3D%22white%22%2F%3E%3C%2Fsvg%3E');
                    position: absolute;
                    left: 0;
                    top: 4px;
                    width: 8px;
                    height: 13px;
                    background-position: center;
                    background-size: contain;
                }

                &:hover {
                    color: var(--rk-pink);
                }
            }
        }
    }
}

.footer-mega--menu_title {
    color: white;
    font-size: clamp(22px, 6vw, 30px);
}

.footer-mega--menu {}

.footer-mega--menu_title {}

.footer-mega--menu {}

.footer-mega--logos {
    margin-top: 75px;
    background-color: #2A30DF;
}

.footer-mega--logos_list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
    justify-content: center;
    gap: 5vw;
    padding: 40px 0;

    li {
        flex-grow: 1;

        img {
            width: 100%;
        }
    }
}

.footer-mega--socket {
    padding: 35px 0;
}

.footer-mega--socket_copyright {
    margin: 0;
    color: white;
}

.footer-mega--socket_links {
    ul {
        margin-top: 0;
        display: flex;
        justify-content: flex-end;
        gap: 50px;

        li {
            position: relative;

            &+li {
                &:before {
                    content: '';
                    position: absolute;
                    top: 50%;
                    transform: translateY(-50%);
                    left: -25px;
                    height: calc(100% - 13px);
                    width: 1px;
                    background-color: white;
                }
            }

            a {
                padding: 0;
                color: white;
                transition: all 0.3s ease-in-out;

                &:hover {
                    color: var(--rk-pink);
                }
            }
        }
    }
}

.footer-mega--divider {
    background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%208%201%22%3E%3Cpath%20class%3D%22A%22%20d%3D%22M0%200h4v1H0z%22%20fill%3D%22%23fff%22%20opacity%3D%221%22/%3E%3C/svg%3E");
    background-position: center;
    width: 100%;
    height: 1px;
    position: relative;
    margin: 75px 0;

    &:after,
    &:before {
        content: '';
        background-color: #CECDDB;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 6px;
        height: 6px;
        border-radius: 50%;
    }

    &:after {
        right: 0;
    }

    &:before {
        left: 0;
    }
}
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles for your blog. The styles included
are for the listing and post templates, featured images and pagination.
Also for the post meta infromation like tags, author and published date
*********************************************************************************
****************************************************************************** */

/* TODO: Find a better place for this */
.content-wrapper {
  max-width: 1240px;
  padding: 0 20px;
  margin: 0 auto;
}
.blog-wrapper {
    padding: 40px 0;
}
.blog-header {
  text-align: center;
}
.blog-post {
    padding: 30px 0;
}
.hs-blog-listing .blog-wrapper {
    padding: 40px 20px;
}
div#Banner-module-1 {}

.banner.blog-banner {
    padding: 30px 0;
}

.banner.blog-banner:before {
    display: none;
}

.banner.blog-banner * {
    color: rgba(35,37,39,1.0);
}
img {
  max-width: 100%;
  height: auto;
}

.blog-header__inner {
  max-width: 600px;
  margin: 0 auto;
  padding: 3.3rem 0;
}

.blog-header__subtitle {
  margin: 1rem 0 2rem;
  margin-bottom: 0;
}

.blog-header__form {
  margin: 0 1rem;
}

h2.post-listing-simple {
  clear: both;
  width: 100%;
}

h2.post-listing-simple a {
  color: inherit;
  text-decoration: none;
}

.blog-index__post-content a:hover {
  color: inherit;
  text-decoration: none;
}

.section.post-footer form {
  background-color: #f7f7f7;
  padding: 20px;
  margin-top: 50px;
}

#comments-listing {
  border: 0px solid #ccc;
  margin-bottom: 0;
  margin-top: 0;
}
.comment.depth-0 {
  border-bottom: 1px solid #000 !important;
  border-top: medium none !important;
  margin: 0 10px 10px !important;
  padding: 0 15px !important;
}
.comment-body {
  border-bottom: medium none;
  display: block;
  padding: 0;
}
.comment-reply-to{
  margin-bottom: 15px;
}
.comment-from h4 {
  margin: 0;
  padding-top: 15px;
}
#comments-listing.no-comments{
  border: none;
}
.comment-date {
  display: block !important;
  text-align: left !important;
}
.section.post-footer input.hs-button.primary {
  margin: 20px 0!important;
}
.section.post-footer .hs_error_rollup {
  margin-top: 20px;
}
.section.post-footer form .hs_recaptcha.hs-recaptcha.field.hs-form-field {
  overflow-y: hidden;
  overflow-x: auto;
}


.blog-comments {
  max-width: 680px;
  margin: 0 auto;
}
.blog-comments form {
  max-width: 100%;
}
.blog-comments .hs-submit {
  text-align: center;
}

.blog-comments .comment-reply-to {
  border: 0 none;
}
.blog-comments .comment-reply-to:hover {
  background-color: transparent;
  text-decoration: underline;
  color: #494A52;
}



@media screen and (min-width: 768px) {
  .blog-header__form {
    width: 500px;
    margin: 0 auto;
  }
}

.blog-index {
  display: flex;
  flex-wrap: wrap;
}
.blog-index:after {
  content: "";
  flex: auto;
}
.blog-index__tag-header {
  flex: 1 0 100%;
  padding: 1rem;
}
.blog-index__tag-subtitle {
  font-size: 1.16rem;
  line-height: 1.1;
}
.blog-index__tag-heading {
  padding-bottom: 1rem;
  border-bottom: 3px solid #D1D6DC;
}
.blog-index__post {
  flex:  0 0 100%;
  padding: 1rem;
}
@media screen and (min-width: 768px) {
  .blog-index__post {
    flex:  0 0 calc(100%/2);
  }
}
@media screen and (min-width: 1000px) {
  .blog-index__post {
    flex:  0 0 calc(100%/3);
  }
}
@media screen and (min-width: 768px) {
  .blog-index__post--large {
    flex: 1 0 100%;
    display: flex;
    justify-items: space-between;
  }
}
.blog-index__post-image {
  display: block;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding-bottom: 63%;
  background-image: url('./images/grayscale-mountain.png');
    }
@media screen and (min-width: 768px) {
  .blog-index__post-image--large {
    flex: 1 1 100%;
    padding-bottom: 0;
  }
  .blog-index__post-content--large {
    flex: 1 1 100%;
    padding-left: 2rem;
  }
  .blog-index__post-image--large {
    flex: 1 1 48%;
  }
  .blog-index__post-content--large {
    flex: 1 1 48%;
    padding-left: 2rem;
  }
}
.blog-index__post-content h2 {
  margin: .5rem 0;
}

.blog-index__post-content p {
  font-family: Lato, sans-serif;
}
.blog-index__post-content a {
  color: #494a52;
}
.blog-index__post img {
  max-width: 100%;
  height: auto;
}

.blog-pagination {
  display: flex !important;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-family: Lato,sans-serif;
  margin-bottom: 3.3rem;
  margin-left: 0 !important;
  margin-top: 25px;
}

.blog-pagination__link {
  display: inline-flex;
  padding: .25rem .4rem;
  margin: 0 .1rem;
  color: #494a52;
  text-decoration: none;
  border: 2px solid transparent;
  line-height: 1;
  border-radius: 7px;
}

.blog-pagination__link--active {
  border: 2px solid #B0C1D4;
}

.blog-pagination__link:hover,
.blog-pagination__link:focus {
  text-decoration: none;
}
.blog-pagination__prev-link,
.blog-pagination__next-link {
  display: inline-flex;
  align-items: center;
}
.blog-pagination__prev-link {
  text-align: right;
  margin-right: .25rem;
}
.blog-pagination__next-link {
  text-align: left;
  margin-left: .25rem;
}
.blog-pagination__prev-link--disabled,
.blog-pagination__next-link--disabled {
  color: #B0C1D4;
  pointer-events: none;
  cursor: default;
}
.blog-pagination__prev-link svg,
.blog-pagination__next-link svg {
  fill: #494a52;
  margin: 0 5px;
}
.blog-pagination__prev-link--disabled svg,
.blog-pagination__next-link--disabled svg {
  fill: #B0C1D4;
}
.blog-pagination__number-link:hover,
.blog-pagination__number-link:focus {
  border: 2px solid #B0C1D4;
}

.blog-header__author-avatar {
  height: 200px;
  width: 200px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 50%;
  box-shadow: 0 0 12px 0 rgba(0,0,0,0.15);
  margin: 0 auto 1.5rem;
}
.blog-header__author-social-links a {
  display: inline-block;
  position: relative;
  background-color: #000;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  margin: 0 5px;
}
.blog-header__author-social-links a:hover {
  background-color: #494a52;
}
.blog-header__author-social-links svg {
  fill: #fff;
  height: 15px;
  width: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.blog-post {
  max-width: 960px;
  margin: 0 auto;
}

.blog-post__meta {
  margin: 1rem 0;
}
.blog-post__meta a {
  color: #494a52;
  text-decoration: underline;
}

.blog-post__tags {
  font-family: Lato, sans-serif;
  color: #000;
}
.blog-post__tags svg {
  width: 15px;
  height: auto;
  margin-right: 10px;
  position: relative;
  top: 2px;
}

.blog-post__tag-link {
  color: #000;
}

.blog-recent-posts {
  margin-top: 3rem;
  padding: 2rem 0;
}
.blog-recent-posts h2 {
  text-align: center;
}
.blog-recent-posts__list {
  display: flex;
}

.blog-recent-posts__post {
  display: block;
  flex:  0 0 100%;
  color: #494a52;
  padding: 1rem;
}
@media screen and (min-width: 768px) {
  .blog-recent-posts__post {
    flex:  0 0 calc(100%/3);
  }
}
@media screen and (min-width: 1000px) {
  .blog-recent-posts__post {
    flex:  0 0 calc(100%/3);
  }
}


.blog-recent-posts__post:hover {
  text-decoration: none;
}
.blog-recent-posts__image {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding-bottom: 63%;
}
.blog-recent-posts__title {
  margin: 1rem 0 .5rem;
}

.blog-comments {
  max-width: 680px;
  margin: 0 auto;
}
.blog-comments form {
  max-width: 100%;
}
.blog-comments .hs-submit {
  text-align: center;
}

.blog-comments .comment-reply-to {
  border: 0 none;
}
.blog-comments .comment-reply-to:hover {
  background-color: transparent;
  text-decoration: underline;
  color: #494A52;
}


/*  Blog Listing with Sidebar  */
.post-item .page-center{
  display: -webkit-flex; /* Safari */
  display: flex; /* Standard syntax */
  margin-bottom: 20px;
}
.post-item .page-center .span4, .post-item .page-center .span8 {
  -webkit-flex: 1; /* Safari */
  -ms-flex: 1; /* IE 10 */
  flex: 1; /* Standard syntax */
}
.post-item .page-center .span8 {
  flex-basis: 31.914893614%;

}
img.featured-image {
  height: 100% !important;
  width: 100% !important;
  object-fit: cover;
}

.post-description h2 a {
  color: inherit;
  text-decoration: none;
}

.section.post-footer {
  margin-top: 40px;
}

.blog-header__author-social-links {
  margin-top: 30px;
}


@media (max-width: 991px) {
  .hs-blog-listing .blog-sidebar {
    width: 100%;
    margin-left: 0;
    margin-bottom: 50px;
  }

  .hs-blog-listing .blog-index {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .blog-recent-posts__list {
    display: block;
  }

  .post-item > .page-center {
    display: block;
    margin-bottom: 30px;
  }

  .hs-blog-listing .blog-index {
    padding-top: 0;
  }

  .blog-recent-posts__post {
    padding: 1rem 0px;
  }
}



@media (max-width: 991px) {
  .hs-blog-listing .blog-sidebar {
    width: 100%;
    margin-left: 0;
    margin-bottom: 50px;
  }

  .hs-blog-listing .blog-index {
    width: 100%;
    padding-top: 0;
  }

}

@media (max-width: 767px) {
  .blog-recent-posts__list {
    display: block;
  }
h1.blog-header__title {
    font-size: 40px;
}
  .post-item > .page-center {
    display: block;
    margin-bottom: 30px;
  }

  .blog-index__post {
    padding: 1rem 0;
  }
  
  .blog-post__body img {
    float: none !important;
    width: auto !important;
    margin: 10px 0 !important;
  }
}
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your
system pages look. These pages include the error pages (404 and 500),
password protected content and search listing results.
*********************************************************************************
****************************************************************************** */

.error-page {
  padding: 10rem 0;
  text-align: center;
  position: relative;
}

input#hs-pwd-widget-password {
    height: auto !important;
}
.error-page:before {
  content: attr(data-error);
  position: absolute;
  width: 100%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-family: Lato, sans-serif;
  font-size: 40vw;
  font-weight: bold;
  color: #F3F6F9;
  z-index: -1;
}
@media screen and (min-width: 1100px) {
  .error-page:before {
    font-size: 20rem;
  }
}
.error-page_heading {
  margin-bottom: 1rem;
}

.systems-page {
  padding: 3rem 20px;
}
.systems-page .success {
  display: inline-block;
  margin: 2rem 0;
  max-width: 650px;
  width:100%;
  background-color: #CDE3CC;
  border: 1.5px solid #4F7D24;
  border-radius: 6px;
  font-size: .75rem;
  color: #4F7D24;
  padding: .1rem .75rem;
}

.hs-search-results {
  margin-top: 2rem;
}
ul.hs-search-results__listing li {
  margin-bottom: 2rem;
}
.hs-search-results__title {
  font-family: Merriweather, serif;
  font-size: 1.25rem;
  color: #494a52;
  text-decoration: underline;
  margin-bottom: .25rem;
}
.hs-search-results__title:hover {
  text-decoration: none;
}
.hs-search-results__description {
  padding-top: .5rem;
}
.hs-search-highlight {
  font-weight: bold;
}
.hs-search-results__pagination a {
  color: #494a52;
}

.email-prefs .item.disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.email-prefs .item.disabled input:disabled {
  cursor: not-allowed;
}



.hs-about-banner-group.error-404-banner > .hs-about-banner-inner-group {
  padding-left: 0;
  padding-right: 0;
  background: linear-gradient(-45deg, #ce13ca, #3b25e7, #610a9e, #ce13ca);
  background-size: 500% 500% !important;
  -webkit-animation: colorchange 15s ease infinite;
  -moz-animation: colorchange 15s ease infinite;
  animation: colorchange 15s ease infinite;
  text-align:center;
  padding:150px 0px;
}
.hs-about-banner-group{
  position: relative;
  overflow: hidden;
}
.hs-about-banner-group.error-404-banner h2 {
  margin: 0 auto;
  line-height: 42px;
  color: #fff;
  padding: 0 15px;
  margin-top: 29px;
  font-size: 42px;
  max-width: 900px;
  margin-bottom: 29px;
}
.hs-about-banner-group.error-404-banner .error-page h2 {
  margin: 20px 0 20px;
  font-size: 32px;
  margin-bottom: 20px;
}
.cm-error-404-layout .error-page{
  padding-top:45px;
  padding-bottom:60px;
}
.cm-error-404-layout .error-page .hs-button.blue-color {
  background-color: #22abff;
  border-color: #22abff;
  min-width: 208px;
  margin: 10px;
}
.cm-error-404-layout .error-page p {
  margin-bottom: 32px;
}
.cm-error-404-layout .error-page a.hs-button {
  min-width: 208px;
  margin: 10px;
}
.cm-error-404-layout .error-page .hs-button.blue-color:hover {
  color: #fff;
  background-color: #232527;
  border-color: #232527;
}
.cm-error-404-layout .error-page h2 {
  margin: 20px 0 20px;
  font-size: 32px;
}

@-webkit-keyframes colorchange {
  0% {
    background-position: 0% 50%
  }
  50% {
    background-position: 100% 50%
  }
  100% {
    background-position: 0% 50%
  }
}

@-moz-keyframes colorchange {
  0% {
    background-position: 0% 50%
  }
  50% {
    background-position: 100% 50%
  }
  100% {
    background-position: 0% 50%
  }
}

@keyframes colorchange {
  0% {
    background-position: 0% 50%
  }
  50% {
    background-position: 100% 50%
  }
  100% {
    background-position: 0% 50%
  }
}

@media(max-width:1000px){
  .hs-about-banner-group.error-404-banner>.hs-about-banner-inner-group {
    padding-top: 81px;
    padding-bottom: 91px;
  }
  .hs-about-banner-group.error-404-banner>.hs-about-banner-inner-group h2 {
    font-size: 40px;
    line-height: 50px;
  }
}

@media(max-width:600px){
  .hs-about-banner-group h2 {
    font-size: 28px;
    line-height: 36px;
  }
  .hs-about-banner-group.error-404-banner>.hs-about-banner-inner-group {
    padding-top: 73px;
    padding-bottom: 83px;
  }
  .hs-about-banner-group.error-404-banner .hs-about-banner-inner-group h2{
    font-size: 28px ;
    line-height: 36px;
  }
}
/**
 * global popup styles
 * pink:  #ff33b1;
 */

.g--popup {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	background-color: rgba(0, 0, 0, 0.75);
	width: 100%;
	height: 100%;
	z-index: 200;
	z-index: 100001;
}

.g--popup_wrap {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	display: flex;
	align-items: center;
	justify-content: center;
	max-width: 95%;
}
.g--popup_inner {
	background-color: white;
	width: 100vw;
	max-width: 500px;
	max-height: 90vh;
	position: relative;
	overflow-y: auto;
	border-radius: 15px;
	box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.4);
}

.g--popup_close {
	position: absolute;
	right: 20px;
	top: 16px;
	z-index: 2;
	font-size: 30px;
	color: white;
	line-height: 1em;
	cursor: pointer;
	transition: color 0.3s ease;
}
.g--popup_close:hover {
	color: #ff33b1;
}

/**
 * Exit intent special offer styles
 */
.exit-popup {
	position: relative;
	color: white;
	text-align: center;
	border: 10px solid white;
}

.exit-popup .cta_button {
	display: inline-flex!important;
	align-items: center!important;
	justify-content: center!important;
}

.exit-popup--bg {
	position: absolute;
	object-fit: cover;
	object-position: center;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 10px;
}
.exit-popup--special_offer {
	position: absolute;
	left: -40px;
	top: -25px;
	z-index: 1;
	width: 140px;
	height: 140px;
}
.exit-popup--bg {
}
.exit-popup--top {
	position: relative;
	z-index: 1;
	padding: 50px;
}
.exit-popup--title {
	color: white;
	text-transform: uppercase;
}
.exit-popup--description {
	color: white;
}
.exit-popup--description h3 {
	line-height: 1em;
	color: white;
	margin: 0;
	font-family: "Rogan", Arial, sans-serif;
}
.exit-popup--description h3.exit-popup--top_text {
	color: #ff33b1;
	font-weight: bold;
	font-family: "Rogan-bold", Arial, sans-serif;
}
.exit-popup--description h3.exit-popup--bottom_text {
	color: #8a2dd3;
	font-weight: bold;
	margin-top: 5px;
	font-family: "Rogan-bold", Arial, sans-serif;
}
.exit-popup--disclaimer {
	display: inline-block;
	margin-top: 20px;
	border: 1px dashed white;
	padding: 2px 13px;
	border-radius: 8px;
}
.exit-popup--bottom {
	position: relative;
	padding: 0 50px 25px 50px;
}
.exit-popup--bottom_inner {
	position: relative;
	z-index: 1;
}
.exit-popup--spheres {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top center;
	border-bottom-left-radius: 15px;
	border-bottom-right-radius: 15px;
}
.exit-popup--portrait {
	text-align: center;
	margin: 20px auto;
}
.exit-popup--portrait img {
	width: 117px;
	height: 117px;
	border: 5px solid white;
	display: inline-block;
	border-radius: 50%;
	background-color: white;
	margin-top: -52px;
}
.exit-popup--callout_text {
	font-family: "Rogan-bold", Arial, sans-serif;
	margin: 10px 0;
	font-size: 22px;
}
.exit-popup--cta {
	margin-bottom: 20px;
}
.exit-popup--notes {
	font-size: 15px;
	line-height: 22px;
}
.exit-popup--notes p {
	margin: 0;
}