/* Theme base styles */

/* Tools
Any animations, or functions used throughout the project.
Note: _macros.css needs to be imported into each stylesheet where macros are used and not included here
*/
.loader-wrapper {
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to right, #790cff, #481681);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  z-index: 101;
}
/**
 * ----------------------------------------
 * animation slide-in-top
 * ----------------------------------------
 */
.slide-in-top {
	-webkit-animation: slide-in-top 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
	        animation: slide-in-top 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}
@-webkit-keyframes slide-in-top {
  0% {
    -webkit-transform: translateY(-1000px);
            transform: translateY(-1000px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
@keyframes slide-in-top {
  0% {
    -webkit-transform: translateY(-1000px);
            transform: translateY(-1000px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}

/**
 * ----------------------------------------
 * animation slide-in-bottom
 * ----------------------------------------
 */
 .slide-in-bottom {
	-webkit-animation: slide-in-bottom 1s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
	        animation: slide-in-bottom 1s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}
@-webkit-keyframes slide-in-bottom {
  0% {
    -webkit-transform: translateY(1000px);
            transform: translateY(1000px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
@keyframes slide-in-bottom {
  0% {
    -webkit-transform: translateY(1000px);
            transform: translateY(1000px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}

/**
 * ----------------------------------------
 * animation scale-out-hor-right
 * ----------------------------------------
 */
.scale-out-hor-right {
	-webkit-animation: scale-out-hor-right 0.5s cubic-bezier(0.550, 0.085, 0.680, 0.530) both;
	        animation: scale-out-hor-right 0.5s cubic-bezier(0.550, 0.085, 0.680, 0.530) both;
}

 @-webkit-keyframes scale-out-hor-right {
  0% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    -webkit-transform-origin: 100% 100%;
            transform-origin: 100% 100%;
    opacity: 1;
  }
  100% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transform-origin: 100% 100%;
            transform-origin: 100% 100%;
    opacity: 1;
  }
}
@keyframes scale-out-hor-right {
  0% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    -webkit-transform-origin: 100% 100%;
            transform-origin: 100% 100%;
    opacity: 1;
  }
  100% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transform-origin: 100% 100%;
            transform-origin: 100% 100%;
    opacity: 1;
  }
}

/**
 * ----------------------------------------
 * animation slide-out-left
 * ----------------------------------------
 */
 .slide-out-left {
	-webkit-animation: slide-out-left 0.5s cubic-bezier(0.550, 0.085, 0.680, 0.530) both;
	        animation: slide-out-left 0.5s cubic-bezier(0.550, 0.085, 0.680, 0.530) both;
}
 @-webkit-keyframes slide-out-left {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(-1000px);
            transform: translateX(-1000px);
    opacity: 0;
  }
}
@keyframes slide-out-left {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(-1000px);
            transform: translateX(-1000px);
    opacity: 0;
  }
}


/**
 * ----------------------------------------
 * animation slide-out-right
 * ----------------------------------------
 */
 .slide-out-right {
	-webkit-animation: slide-out-right 0.5s cubic-bezier(0.550, 0.085, 0.680, 0.530) both;
	        animation: slide-out-right 0.5s cubic-bezier(0.550, 0.085, 0.680, 0.530) both;
}
 @-webkit-keyframes slide-out-right {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(1000px);
            transform: translateX(1000px);
    opacity: 0;
  }
}
@keyframes slide-out-right {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(1000px);
            transform: translateX(1000px);
    opacity: 0;
  }
}

/* ----------------------------------------
 * animation scale-out-ver-bottom -- bk
 * ---------------------------------------- */
 .scale-out-ver-bottom {
	-webkit-animation: scale-out-ver-bottom 0.7s cubic-bezier(0.950, 0.050, 0.795, 0.035) 1s both;
	        animation: scale-out-ver-bottom 0.7s cubic-bezier(0.950, 0.050, 0.795, 0.035) 1s both;
}

@-webkit-keyframes scale-out-ver-bottom {
  0% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
    -webkit-transform-origin: 0% 100%;
            transform-origin: 0% 100%;
    opacity: 1;
  }
  100% {
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
    -webkit-transform-origin: 0% 100%;
            transform-origin: 0% 100%;
    opacity: 1;
  }
}
@keyframes scale-out-ver-bottom {
  0% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
    -webkit-transform-origin: 0% 100%;
            transform-origin: 0% 100%;
    opacity: 1;
  }
  100% {
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
    -webkit-transform-origin: 0% 100%;
            transform-origin: 0% 100%;
    opacity: 1;
  }
}

.scale-in-ver-bottom {
	-webkit-animation: scale-in-ver-bottom 0.6s 1s both;
	        animation: scale-in-ver-bottom 0.6s 1s both;
}

/**
 * ----------------------------------------
 * animation scale-in-ver-bottom
 * ----------------------------------------
 */
 .scale-in-ver-bottom {
	-webkit-animation: scale-in-ver-bottom 0.3s 1.2s both;
	        animation: scale-in-ver-bottom 0.3s 1.2s both;
}

 @-webkit-keyframes scale-in-ver-bottom {
  0% {
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
    -webkit-transform-origin: 0% 100%;
            transform-origin: 0% 100%;
    opacity: 1;
  }
  100% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
    -webkit-transform-origin: 0% 100%;
            transform-origin: 0% 100%;
    opacity: 1;
  }
}
@keyframes scale-in-ver-bottom {
  0% {
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
    -webkit-transform-origin: 0% 100%;
            transform-origin: 0% 100%;
    opacity: 1;
  }
  100% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
    -webkit-transform-origin: 0% 100%;
            transform-origin: 0% 100%;
    opacity: 1;
  }
}
/**
 * ----------------------------------------
 * animation text-pop-up-top
 * ----------------------------------------
 */
 .text-pop-up-top {
	-webkit-animation: text-pop-up-top 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) 1.5s both;
	        animation: text-pop-up-top 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) 1.5s both;
}

 @-webkit-keyframes text-pop-up-top {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    -webkit-transform-origin: 50% 50%;
            transform-origin: 50% 50%;
    text-shadow: none;
  }
  100% {
    -webkit-transform: translateY(-50px);
            transform: translateY(-50px);
    -webkit-transform-origin: 50% 50%;
            transform-origin: 50% 50%;
    text-shadow: 0 1px 0 #cccccc, 0 2px 0 #cccccc, 0 3px 0 #cccccc, 0 4px 0 #cccccc, 0 5px 0 #cccccc, 0 6px 0 #cccccc, 0 7px 0 #cccccc, 0 8px 0 #cccccc, 0 9px 0 #cccccc, 0 50px 30px rgba(0, 0, 0, 0.3);
  }
}
@keyframes text-pop-up-top {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    -webkit-transform-origin: 50% 50%;
            transform-origin: 50% 50%;
    text-shadow: none;
  }
  100% {
    -webkit-transform: translateY(-50px);
            transform: translateY(-50px);
    -webkit-transform-origin: 50% 50%;
            transform-origin: 50% 50%;
    text-shadow: 0 1px 0 #cccccc, 0 2px 0 #cccccc, 0 3px 0 #cccccc, 0 4px 0 #cccccc, 0 5px 0 #cccccc, 0 6px 0 #cccccc, 0 7px 0 #cccccc, 0 8px 0 #cccccc, 0 9px 0 #cccccc, 0 50px 30px rgba(0, 0, 0, 0.3);
  }
}

#circle {
  position: relative;
  border-radius: 100%;
  padding: 16px;
  animation: rotate-animation 8s infinite linear;
}

#circle span {
  position: absolute;
  transform-origin: top left;
  color: #fff;
}

@keyframes rotate-animation {
  from { transform: rotate(0); }
  to { transform: rotate(-360deg); }
}



/**
 * ----------------------------------------
 * animation tracking-in-contract
 * ----------------------------------------
 */
 .tracking-in-contract {
	-webkit-animation: tracking-in-contract 0.8s cubic-bezier(0.175, 0.885, 0.320, 1.275) both;
	        animation: tracking-in-contract 0.8s cubic-bezier(0.175, 0.885, 0.320, 1.275) both;
}

 @-webkit-keyframes tracking-in-contract {
  0% {
    letter-spacing: 1em;
    opacity: 0;
  }
  40% {
    opacity: 0.6;
  }
  100% {
    letter-spacing: normal;
    opacity: 1;
  }
}
@keyframes tracking-in-contract {
  0% {
    letter-spacing: 1em;
    opacity: 0;
  }
  40% {
    opacity: 0.6;
  }
  100% {
    letter-spacing: normal;
    opacity: 1;
  }
}

/**
 * ----------------------------------------
 * animation slide-in-blurred-bottom
 * ----------------------------------------
 */
 .slide-in-blurred-bottom {
	-webkit-animation: slide-in-blurred-bottom 1s cubic-bezier(0.230, 1.000, 0.320, 1.000) 0.7s both;
	        animation: slide-in-blurred-bottom 1s cubic-bezier(0.230, 1.000, 0.320, 1.000) 0.7s both;
}

 @-webkit-keyframes slide-in-blurred-bottom {
        0% {
          -webkit-transform: translateY(1000px) scaleY(2.5) scaleX(0.2);
                  transform: translateY(1000px) scaleY(2.5) scaleX(0.2);
          -webkit-transform-origin: 50% 100%;
                  transform-origin: 50% 100%;
          -webkit-filter: blur(40px);
                  filter: blur(40px);
          opacity: 0;
        }
        100% {
          -webkit-transform: translateY(0) scaleY(1) scaleX(1);
                  transform: translateY(0) scaleY(1) scaleX(1);
          -webkit-transform-origin: 50% 50%;
                  transform-origin: 50% 50%;
          -webkit-filter: blur(0);
                  filter: blur(0);
          opacity: 1;
        }
      }
      @keyframes slide-in-blurred-bottom {
        0% {
          -webkit-transform: translateY(1000px) scaleY(2.5) scaleX(0.2);
                  transform: translateY(1000px) scaleY(2.5) scaleX(0.2);
          -webkit-transform-origin: 50% 100%;
                  transform-origin: 50% 100%;
          -webkit-filter: blur(40px);
                  filter: blur(40px);
          opacity: 0;
        }
        100% {
          -webkit-transform: translateY(0) scaleY(1) scaleX(1);
                  transform: translateY(0) scaleY(1) scaleX(1);
          -webkit-transform-origin: 50% 50%;
                  transform-origin: 50% 50%;
          -webkit-filter: blur(0);
                  filter: blur(0);
          opacity: 1;
        }
      }
      
      
      
/**
 * ----------------------------------------
 * animation slide-in-blurred-top
 * ----------------------------------------
 */

 .slide-in-blurred-top {
	-webkit-animation: slide-in-blurred-top 1s cubic-bezier(0.230, 1.000, 0.320, 1.000) 0.7s both;
	        animation: slide-in-blurred-top 1s cubic-bezier(0.230, 1.000, 0.320, 1.000) 0.7s both;
}
 @-webkit-keyframes slide-in-blurred-top {
        0% {
          -webkit-transform: translateY(-1000px) scaleY(2.5) scaleX(0.2);
                  transform: translateY(-1000px) scaleY(2.5) scaleX(0.2);
          -webkit-transform-origin: 50% 0%;
                  transform-origin: 50% 0%;
          -webkit-filter: blur(40px);
                  filter: blur(40px);
          opacity: 0;
        }
        100% {
          -webkit-transform: translateY(0) scaleY(1) scaleX(1);
                  transform: translateY(0) scaleY(1) scaleX(1);
          -webkit-transform-origin: 50% 50%;
                  transform-origin: 50% 50%;
          -webkit-filter: blur(0);
                  filter: blur(0);
          opacity: 1;
        }
      }
      @keyframes slide-in-blurred-top {
        0% {
          -webkit-transform: translateY(-1000px) scaleY(2.5) scaleX(0.2);
                  transform: translateY(-1000px) scaleY(2.5) scaleX(0.2);
          -webkit-transform-origin: 50% 0%;
                  transform-origin: 50% 0%;
          -webkit-filter: blur(40px);
                  filter: blur(40px);
          opacity: 0;
        }
        100% {
          -webkit-transform: translateY(0) scaleY(1) scaleX(1);
                  transform: translateY(0) scaleY(1) scaleX(1);
          -webkit-transform-origin: 50% 50%;
                  transform-origin: 50% 50%;
          -webkit-filter: blur(0);
                  filter: blur(0);
          opacity: 1;
        }
      }
      

/**
 * ----------------------------------------
 * animation slide-in-blurred-left
 * ----------------------------------------
 */
 .slide-in-blurred-left {
	-webkit-animation: slide-in-blurred-left 1s cubic-bezier(0.230, 1.000, 0.320, 1.000) 0.7s both;
	        animation: slide-in-blurred-left 1s cubic-bezier(0.230, 1.000, 0.320, 1.000) 0.7s both;
}
 @-webkit-keyframes slide-in-blurred-left {
        0% {
          -webkit-transform: translateX(-1000px) scaleX(2.5) scaleY(0.2);
                  transform: translateX(-1000px) scaleX(2.5) scaleY(0.2);
          -webkit-transform-origin: 100% 50%;
                  transform-origin: 100% 50%;
          -webkit-filter: blur(40px);
                  filter: blur(40px);
          opacity: 0;
        }
        100% {
          -webkit-transform: translateX(0) scaleY(1) scaleX(1);
                  transform: translateX(0) scaleY(1) scaleX(1);
          -webkit-transform-origin: 50% 50%;
                  transform-origin: 50% 50%;
          -webkit-filter: blur(0);
                  filter: blur(0);
          opacity: 1;
        }
      }
      @keyframes slide-in-blurred-left {
        0% {
          -webkit-transform: translateX(-1000px) scaleX(2.5) scaleY(0.2);
                  transform: translateX(-1000px) scaleX(2.5) scaleY(0.2);
          -webkit-transform-origin: 100% 50%;
                  transform-origin: 100% 50%;
          -webkit-filter: blur(40px);
                  filter: blur(40px);
          opacity: 0;
        }
        100% {
          -webkit-transform: translateX(0) scaleY(1) scaleX(1);
                  transform: translateX(0) scaleY(1) scaleX(1);
          -webkit-transform-origin: 50% 50%;
                  transform-origin: 50% 50%;
          -webkit-filter: blur(0);
                  filter: blur(0);
          opacity: 1;
        }
      }
      


/**
 * ----------------------------------------
 * animation slide-in-blurred-br
 * ----------------------------------------
 */
 .slide-in-blurred-br {
	-webkit-animation: slide-in-blurred-br 1s cubic-bezier(0.230, 1.000, 0.320, 1.000) 0.7s both;
	        animation: slide-in-blurred-br 1s cubic-bezier(0.230, 1.000, 0.320, 1.000) 0.7s both;
}
 @-webkit-keyframes slide-in-blurred-br {
        0% {
          -webkit-transform: translate(1000px, 1000px) skew(80deg, 10deg);
                  transform: translate(1000px, 1000px) skew(80deg, 10deg);
          -webkit-transform-origin: 0% 100%;
                  transform-origin: 0% 100%;
          -webkit-filter: blur(40px);
                  filter: blur(40px);
          opacity: 0;
        }
        100% {
          -webkit-transform: translate(0, 0) skew(0deg, 0deg);
                  transform: translate(0, 0) skew(0deg, 0deg);
          -webkit-transform-origin: 50% 50%;
                  transform-origin: 50% 50%;
          -webkit-filter: blur(0);
                  filter: blur(0);
          opacity: 1;
        }
      }
      @keyframes slide-in-blurred-br {
        0% {
          -webkit-transform: translate(1000px, 1000px) skew(80deg, 10deg);
                  transform: translate(1000px, 1000px) skew(80deg, 10deg);
          -webkit-transform-origin: 0% 100%;
                  transform-origin: 0% 100%;
          -webkit-filter: blur(40px);
                  filter: blur(40px);
          opacity: 0;
        }
        100% {
          -webkit-transform: translate(0, 0) skew(0deg, 0deg);
                  transform: translate(0, 0) skew(0deg, 0deg);
          -webkit-transform-origin: 50% 50%;
                  transform-origin: 50% 50%;
          -webkit-filter: blur(0);
                  filter: blur(0);
          opacity: 1;
        }
      }
      

      
.floating { 
        animation-name: floating;
        animation-duration: 3s;
        animation-iteration-count: infinite;
        animation-timing-function: ease-in-out;
    }
     
    @keyframes floating {
        0% { transform: translate(0,  0px); }
        50%  { transform: translate(0, 4px); }
        100%   { transform: translate(0, -0px); }   
    }

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

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

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

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

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

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

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

body {
  margin: 0;
}

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

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

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

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

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

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

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

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

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

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

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

b,
strong {
  font-weight: bolder;
}

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

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

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

small {
  font-size: 80%;
}

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

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

legend {
  padding: 0;
}

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

progress {
  vertical-align: baseline;
}

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

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

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

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

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

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

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

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

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

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

details {
  display: block;
}

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

summary {
  display: list-item;
}

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

/* CSS variables */
html {
  scroll-behavior: smooth;
}
:root {
  --column-gap: 2.13%;
}

/* Mobile layout */

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

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

/* Desktop layout */

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

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

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

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

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

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

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

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

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

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

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

  .row-fluid .span1 {
    width: calc(8.33% - var(--column-gap) * 0.9166);
  }
}

.container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
  padding: 0!important;
}

body {
  overflow: auto!important;
  padding: 0!important;
}

.body-container-wrapper {
  overflow: hidden;
}

.xmm-grid-col:hover .border-bottom {width: 100%;right: 0;}
.xmm-grid-col{height: auto; overflow: hidden; object-fit: cover;transition: all 1s ease;}
.xmm-grid-col:hover .resource__img{transform: scale(1);}
.xmm-grid {margin: -1rem;}
.xmm-grid .xmm-grid-col {padding: 1rem;}

@media (min-width:768px) {.xmm-grid {display: -webkit-box;display: -ms-flexbox;display: flex;-webkit-box-align: stretch;-ms-flex-align: stretch;align-items: stretch;-webkit-box-pack: justify;-ms-flex-pack: justify;justify-content: space-between;-ms-flex-wrap: wrap;flex-wrap: wrap;}
.xmm-grid-1col .xmm-grid-col {-ms-flex-preferred-size: 100%;flex-basis: 100%;width: 100%;}
.xmm-grid-2col .xmm-grid-col {-ms-flex-preferred-size: 50%;flex-basis: 50%;width: 50%;}.xmm-grid-3col .xmm-grid-col {-ms-flex-preferred-size: 33.33%;flex-basis: 33.33%;width: 33.33%;}
.xmm-grid-4col .xmm-grid-col {-ms-flex-preferred-size: 25%;flex-basis: 25%;width: 25%;}}
@media (max-width:768px) and (max-width:991px) {.xmm-grid-4col .xmm-grid-col {-ms-flex-preferred-size: 33.33%;flex-basis: 33.33%;width: 33.33%;}
.xmm-grid-5col .xmm-grid-col {-ms-flex-preferred-size: 20%;flex-basis: 20%;width: 20%;}}
.xmm-grid-7col .xmm-grid-col {-ms-flex-preferred-size: 14%;flex-basis: 14%%;width: 14%%;}}
@media (min-width:576px) and (max-width:767px) {
.xmm-grid-2col .xmm-grid-col {-ms-flex-preferred-size: 50%;flex-basis: 50%;width: 50%;}
.xmm-grid-3col .xmm-grid-col {-ms-flex-preferred-size: 50%;flex-basis: 50%;width: 50%;}}

/* Grid */
@supports ((display: -ms-grid) or (display: grid)) {.xmm-grid .xmm-grid-col {width: auto;padding: 0;}
.xmm-grid {display: -ms-grid;display: grid;grid-row-gap: 2rem;grid-column-gap: 2rem;margin: 0;}
.xmm-grid.xmm-filter {display: block!important;margin: -.75rem;}
.xmm-grid.xmm-filter > div {padding: .75rem;}
  
@media (min-width: 768px) {
.xmm-grid-1col {-ms-grid-columns: 1fr;grid-template-columns: 1fr;}
.xmm-grid-2col {-ms-grid-columns: (1fr)[2];grid-template-columns: repeat(2, 1fr);}
.xmm-grid-2col.xmm-filter .xmm-grid-col {width: 50%;}
.xmm-grid-3col {-ms-grid-columns: (1fr)[3];grid-template-columns: repeat(3, 1fr);}
.xmm-grid-3col.xmm-filter .xmm-grid-col {width: 33.33%;}
.xmm-grid-4col {-ms-grid-columns: (1fr)[2];grid-template-columns: repeat(2, 1fr);}
.xmm-grid-4col.xmm-filter .xmm-grid-col {width: 50%;}
.xmm-grid-5col {-ms-grid-columns: (1fr)[2];grid-template-columns: repeat(2, 1fr);}
.xmm-grid-5col.xmm-filter .xmm-grid-col {width: 50%;}
  .xmm-grid-7col {-ms-grid-columns: (1fr)[2];grid-template-columns: repeat(2, 1fr);}
.xmm-grid-7col.xmm-filter .xmm-grid-col {width: 50%;}
}
  
@media (min-width:992px) {
.xmm-grid-4col {-ms-grid-columns: (1fr)[4];grid-template-columns: repeat(4, 1fr);}
.xmm-grid-4col.xmm-filter .xmm-grid-col {width: 25%;}
.xmm-grid-5col {-ms-grid-columns: (1fr)[5];grid-template-columns: repeat(5, 1fr);}
.xmm-grid-5col.xmm-filter .xmm-grid-col {width: 20%;}
  .xmm-grid-7col {-ms-grid-columns: (1fr)[5];grid-template-columns: repeat(7, 1fr);}
.xmm-grid-7col.xmm-filter .xmm-grid-col {width: 14%;}
}
  
@media (min-width:576px) and (max-width:767px) {
.xmm-grid-2col {
-ms-grid-columns: (1fr)[2];grid-template-columns: repeat(2, 1fr);}
.xmm-grid-2col.xmm-filter .xmm-grid-col {width: 50%;}
.xmm-grid-4col {-ms-grid-columns: (1fr)[2];grid-template-columns: repeat(2, 1fr);}
.xmm-grid-4col.xmm-filter .xmm-grid-col {width: 50%;}
.xmm-grid-5col {-ms-grid-columns: (1fr)[2];grid-template-columns: repeat(2, 1fr);}
.xmm-grid-5col.xmm-filter .xmm-grid-col {width: 50%;}
  .xmm-grid-7col {-ms-grid-columns: (1fr)[2];grid-template-columns: repeat(2, 1fr);}
.xmm-grid-7col.xmm-filter .xmm-grid-col {width: 50%;}
}
}

.xmm-container {float: none;width: 100%;margin-left: auto;margin-right: auto;padding-left: 1.25rem;padding-right: 1.25rem;max-width:100%;}
.content-wrapper {
  margin: 0 auto;
  padding: 0 1rem;
}

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

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

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

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

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

* {
  font-family: 'Josefin Sans', sans-serif !important;
  
}



body {
  line-height: 1.4;
  overflow-wrap: break-word;
}

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

/* Paragraphs */

p {
  font-size: 1rem;
  margin: 0 0 1.4rem;
}

/* Anchors */

a {
  cursor: pointer;
  text-decoration: none !important;
}

a:hover,
a:focus { 

}

a:active {

}

/* Headings */

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 1.4rem;
}


h1 {
  font-size: 2.5em !important;
  font-family: 'Josefin Sans', sans-serif !important;
  font-weight: 700 !important;
}

@media only screen and (min-width: 992px) {
  h1 {
    font-size:3em !important;
    font-family: 'Josefin Sans', sans-serif !important;
    font-weight: 700 !important;
  }
}

/* Lists */

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

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

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

/* Code blocks */

pre {
  overflow: auto;
}

code {
  vertical-align: bottom;
}

/* Blockquotes */

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

/* Horizontal rules */

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

/* Image alt text */

img {
  font-size: 0.583rem;
  word-break: normal;
}
@media only screen and (min-width: 992px) {
.xmm-contact--button {
  /* background-color: #790cff;*/
  background-color: #3d7dca;
  padding: 10px 20px;
  font-size: 1em;
  /* border: solid 2px rgb(121, 12, 255); */
  border: solid 2px #3d7dca;
  border-radius: 5px;
  color: #fff;
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 400;
  }
  .xmm-contact--button:hover {
  background-color: transparent;
  /* border: solid 2px rgb(121, 12, 255); */
  border: solid 2px #3d7dca;
  border-radius: 5px;
  color: #fff;
  }
  .xmm-about--button{
  background-color: transparent;
  padding: 10px 20px;
  font-size: 1em;
  border: none;
  border-radius: 5px;
  color: #fff;
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 400;
  }
  .xmm-about--button:hover {
  background-color: transparent;
  border: none;
  /* color: #790cff; */

  }
}

  .xmm-contact--button {
    background-color: #471aab;
    /* background-color: rgb(121, 12, 255); */
    padding: 10px 20px;
    font-size: 0.9em;
    border: solid 2px #471aab;
    /* border: solid 2px rgb(121, 12, 255); */
    border-radius: 5px;
    color: #fff;
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 400;
  }
  .xmm-contact--button:hover {
    background-color: transparent;
    border: solid 2px #471aab;
    /* border: solid 2px #790cff; */
    border-radius: 5px;
    color: #fff;
  }
  .xmm-about--button{
    background-color: transparent;
    padding: 10px 20px;
    font-size: 0.9em;
    border: none;
    border-radius: 5px;
    color: #fff;
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 400;
  }
  .xmm-about--button:hover {
    background-color: transparent;
    border: none;
    color: #471aab;
    /* color: #790cff; */
  }
/* Fields */

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

/* Labels */

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

/* Help text */

form legend {
  font-size: 0.875rem;
}

/* Inputs */

form input[type=text],
form input[type=email],
form input[type=password],
form input[type=tel],
form input[type=number],
form input[type=file],
form select,
form textarea {
  display: inline-block;
  font-size: 0.875rem;
  padding: 0.7rem;
  width: 100%;
}

.hs-input {
width: 100% !important;
}

form textarea {
  resize: vertical;
}

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

/* Inputs - checkbox/radio */

form .inputs-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

form .inputs-list > li {
  display: block;
  margin: 0.7rem 0;
}

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

form input[type=checkbox],
form input[type=radio] {
  cursor: pointer;
  margin-right: 0.35rem;
}

/* Inputs - date picker */

.hs-dateinput {
  position: relative;
}

.hs-dateinput:before {
  content:'\01F4C5';
  position: absolute;
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
}

.fn-date-picker .pika-table thead th {
  color: #FFF;
}

.fn-date-picker td.is-selected .pika-button {
  border-radius: 0;
  box-shadow: none;
}

.fn-date-picker td .pika-button:hover,
.fn-date-picker td .pika-button:focus {
  border-radius: 0 !important;
  color: #FFF;
}

/* Inputs - file picker */

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

/* Headings and text */

form .hs-richtext,
form .hs-richtext p {
  font-size: 0.875rem;
  margin: 0 0 1.4rem;
}

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

/* GDPR */

.legal-consent-container .hs-form-booleancheckbox-display > span,
.legal-consent-container .hs-form-booleancheckbox-display > span p {
  margin-left: 1rem !important;
}

/* Validation */

.hs-form-required {
  color: #EF6B51;
}

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

.hs-error-msg {
  color: #EF6B51;
  margin-top: 0.35rem;
}

/* Submit button */

form input[type=submit],
form .hs-button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
}

/* Captcha */

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

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

/* Table cells */

td,
th {
  vertical-align: top;
}

/* Table header */

thead th {
  vertical-align: bottom;
}

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

* {
  box-sizing: border-box;
}

/* Main Site */
.navbar {
z-index: 1;
}
/* Small Nav */
.xmm-small-nav {
  font-size: 1.2em;
  font-weight: thin;
}
.xmm-nav-link {
  display: block;
  padding: var(--bs-nav-link-padding-y) var(--bs-nav-link-padding-x);
  font-size: 1rem;
  font-weight: var(--bs-nav-link-font-weight);
  color: rgb(180, 180, 180);
  text-decoration: none;
  transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out;
}
/* Logo */
.navbar-brand {
  color: #fff!important;
}
/* Hamburger */
.xmm-nav-button {
  background-color: transparent;
  border: none;
}
.xmm-nav-button:hover {
  transition: 0.70s;
  -webkit-transition: 0.70s;
  -moz-transition: 0.70s;
  -ms-transition: 0.70s;
  -o-transition: 0.70s;
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.xmm-pop-out {
  color: #fff;
}
/*  Sidenav Styling */
.menu--title {
  font-size: 0.6rem;
  color: rgb(224, 224, 224);
  font-weight: bold;
  padding: 0.5rem;
}
.xmm-nav--close {
  font-size: 1.2em;
  color: #ffffff;
}
.xmm-nav-button--offcanvas {
  background-color: transparent;
  border: none;
  position: absolute;
  left: -15px;
  top: 29px;
}
.offcanvas.offcanvas-end {
  width: 300px!important;
  border-radius: 15px 0px 0px 0px;
  border: none;
  background-color: #11101db9;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
.offcanvas-backdrop.show {
opacity: 1 !important;
}
.offcanvas-backdrop {
  background-color: transparent !important;
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
}
.offcanvas {
  max-height: 100vh;
}
/* Nav */
.xmm-nav-link--offcanvas {
  display: block;
  text-align: left;
  width: 100%;
  padding: 0.4rem 0.4rem 0.4rem 0.5rem;
  border-radius: 10px;
  color: rgb(224, 224, 224);
  cursor: pointer;
}
.xmm-nav-link--offcanvas a {
  font-size: 1rem;
  font-weight: var(--bs-nav-link-font-weight);
  color: rgb(224, 224, 224);
  text-decoration: none;
  transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out;
  width: 100%;
  display: contents;
}
.xmm-nav-link--offcanvas a:hover,.xmm-nav-link:hover {
  color: rgb(255, 255, 255);
}
.xmm-nav-link--offcanvas a:hover,.xmm-nav-link:active {
  color: rgb(255, 255, 255);
}
/* Subnav */
.xmm-subnav-link--offcanvas {
  display: block;
  text-align: left;
  font-size: 1rem;
  width: 100%;
  padding: 0.4rem 0.4rem 0.4rem 0.5rem;
  border-radius: 10px;
}
.xmm-subnav {
  padding-left: 0!important;
  background-color: transparent!important;
  border: none!important;
  padding-bottom: 0px!important;
}
.dropdown-menu.show {
  position: relative;
}
/* Search */
.hs-search-field__input {
  background-color: 	#41404a;
  border-radius: 10px;
  border: none;
  border-style: none;
  color: #fff;
  text-align: left;
}
.hs-search-field__input:focus {
  outline: none;
}
/* Footer */
.offcanvas-footer {
  display: block;
  text-align: left;
  font-size: 0.8rem;
  width: 100%;
  padding: 0.5rem;
  border-radius: 10px;
  color: rgb(224, 224, 224);
}
.xmm-footer--ltd {
  display: block;
}
.xmm-privacypolicy {
  display: block;
}
/* Socials */
.xmm-social--icons {
  padding: 0.5rem;
}
.xmm-nav-sociallink--offcanvas {
  display: block;
  text-align: left;
  font-size: 0.8rem;
  width: 100%;
  padding: 0.5rem;
  border-radius: 10px;
}
.xmm-nav-sociallink--offcanvas a {
  font-size: 0.8rem;
  font-weight: var(--bs-nav-link-font-weight);
  color: rgb(224, 224, 224);
  text-decoration: none;
  transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out;
  width: 100%;
}
.xmm-nav-sociallink--offcanvas a:hover,
.xmm-nav-link:hover {
  color: rgb(255, 255, 255);
}
.xmm-nav-sociallink--offcanvas a:hover,
.xmm-nav-link:active {
  color: rgb(255, 255, 255);
}
.xmm-footer-socials a {
  color: #fff !important;
  font-size: 1rem;
}

.navbar {
  z-index: 100;
}
.xmm-footer {
padding: 2rem 0;
background-color: #11101d;
color: rgb(255, 255, 255);
position: relative;
}

.xmm-footer a {
  text-decoration: none;
  color: #b4b4b4;
}

.xmm-footer a:hover{
  color: #fff;;
}

@media only screen and (max-width: 767px) {
  .xmm-footer {
    padding: 1rem;
    text-align: center !important;
    }

    .social {
      align-items: center;
      justify-content: center;
    }

    .xmm-quicklinks {
      margin-top: 3rem !important;
    }

    .copyright {
      margin: 0 !important;
    }


}
/* Menu and simple menu */

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

/* Horizontal menu */

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

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

/* Vertical menu */

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

/* Flyouts */

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

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

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

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

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

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

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

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

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

.hs_cos_wrapper_type_cta img,
.hs_cos_wrapper_type_logo img,
.hs_cos_wrapper_type_rich_text img {
  height: auto;
  max-width: 100%;
}

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

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

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

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

/* Blog related posts */

.blog-related-posts {
  background-color: #F8FAFC;
}

.blog-related-posts h2 {
  text-align: center;
}

.blog-related-posts__list {
  display: flex;
  flex-wrap: wrap;
}

.blog-related-posts__post {
  flex: 0 0 100%;
  padding: 1rem;
}

@media screen and (min-width: 768px) {
  .blog-related-posts__post {
    flex: 0 0 calc(100% / 2);
  }
}

@media screen and (min-width: 1000px) {
  .blog-related-posts__post {
    flex: 0 0 calc(100% / 3);
  }
}

.blog-related-posts__image {
  height: auto;
  max-width: 100%;
}

.blog-related-posts__title {
  margin: 0.7rem 0;
}

/* Blog comments */

.blog-comments {
  margin: 0 auto;
  max-width: 680px;
}

.blog-comments .hs-submit {
  text-align: center;
}

.blog-comments .comment-reply-to {
  border: 0 none;
}

.blog-comments .comment-reply-to:hover,
.blog-comments .comment-reply-to:focus {
  background-color: transparent;
  text-decoration: underline;
}

/* Blog Post */

.xmm-post--header {
height: 60vh;
overflow: hidden;
background-color: #11101d;
color: rgb(255, 255, 255);
text-align: center;
}

.xmm-post--featured_image {
  height: 40vh;
  margin-top: -75px;
  overflow: visible;
  border-radius: 15px;
  margin-left: 10px !important;
  margin-right: 10px !important;
  border-radius: 15px;
}

/* Blog Index */
/* Error pages */

.error-page {
  padding: 20rem 0;
  height: 100vh;
  position: relative;
  text-align: center;
  background-image: url('https://4615332.fs1.hubspotusercontent-na1.net/hubfs/4615332/2023/Globals/BK.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  color: #fff!important;
}

.error-page:before {
  color: rgba(248, 250, 252, 0.2);
  content: attr(data-error);
  font-size: 40vw;
  font-weight: bold;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}

@media screen and (min-width: 1100px) {
  .error-page:before {
    font-size: 20rem;
  }
}

/* System pages */

.systems-page {
  margin: 0 auto;
  max-width: 700px;
  padding: 10rem 1.4rem;
  max-width: 100vw;
  width: 100%;
  text-align: center;
}

.search_results {
  margin: 0 auto;
  max-width: 700px;
  padding: 3rem 1.4rem;
  max-width: 1340px;
  width: 100%;
}

.systems-page--search-results {
  max-width: 100%;
  background-color: #11101d;
  color: #fff!important;
}

.systems-page .header {
  background-color: transparent;
  border-bottom: none;
  padding: 0;
}

.hs-search-results__title {
color: #11101d!important;
}
.hs-search-results__title:hover {
color: #11101d!important;
}


.systems-page .success {
  background-color: #CDE3CC;
  border: 1.5px solid #4F7D24;
  border-radius: 6px;
  color: #4F7D24;
  display: inline-block;
  margin: 1.4rem 0;
  padding: 0.1rem 0.7rem;
  width: 100%;
}

.systems-page form input {
  max-width: 100%;
}

.systems-page form input[type='submit'] {
  margin: 0.7rem 0;
  display: block;
}

/* Search pages */

.hs-search-results__title {
  font-size: 1.25rem;
  margin-bottom: 0.35rem;
  text-decoration: underline;
}

.hs-search-results__title:hover {
  text-decoration: none;
}

.hs-search-results__description {
  padding-top: 0.7rem;
}

/* Password prompt */

.password-prompt input[type=password] {
  height: auto !important;
  margin-bottom: 1.4rem;
}

.systems-page #hs-login-widget-remember,
.systems-page #hs-login-widget-remember ~ label {
  display: inline-block;
  margin-bottom: 0.175rem;
}

.systems-page #hs_login_reset {
  display: block;
  margin-bottom: 0.7rem;
}

/* Backup unsubscribe */

.backup-unsubscribe #email-prefs-form div {
  padding-bottom: 0 !important;
}

.backup-unsubscribe input[type=email] {
  font-size: 0.875rem !important;
  margin-bottom: 1.4rem;
  padding: 0.7rem !important;
}

/* Subscription preferences */

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

#email-prefs-form .item.disabled input:disabled {
  cursor: not-allowed;
}

/* Membership pages */

#hs-membership-form a[class*='show-password'] {
  font-size: 0.75rem;
}

/* Input error messages */

.form-input-validation-message ul.hs-error-msgs {
  padding-left: 0;
  margin: 0;
}

.form-input-validation-message ul.hs-error-msgs li {
  margin: 0;
}