/* =================================================================== 
 *
 *  Dazzle v1.0 Main Stylesheet
 *  04-27-2017
 *  ------------------------------------------------------------------
 *
 *  TOC:
 *  01. webfonts and iconfonts
 *  02. base style overrides
 *  03. typography & general theme styles
 *  04. preloader
 *  05. forms
 *  06. buttons
 *  07. other components
 *  08. common and reusable theme styles
 *  09. header styles
 *  10. home
 *  11. about
 *  12. pricing 
 *  13. shops
 *  14. download
 *  15. footer styles
 *
 * =================================================================== */


/* ===================================================================
 *  01. webfonts and iconfonts - (_document-setup)
 *
 * ------------------------------------------------------------------- */

@import url("font-awesome/css/font-awesome.min.css");
@import url("micons/micons.css");
@import url("fonts.css");


/* ===================================================================
 *  02. base style overrides - (_document-setup)
 *
 * ------------------------------------------------------------------- */

html {
  font-size: 10px;
}

@media only screen and (max-width: 1024px) {
  html {
    font-size: 9.375px;
  }
}

@media only screen and (max-width: 768px) {
  html {
    font-size: 10px;
  }
}

@media only screen and (max-width: 400px) {
  html {
    font-size: 9.375px;
  }
}

html,
body {
  height: 100%;
}

body {
  background: #141515;
  font-family: "muli-regular", sans-serif;
  font-size: 1.6rem;
  line-height: 1.875;
  color: #767676;
  margin: 0;
  padding: 0;
}


/* ------------------------------------------------------------------- 
 * links - (_document-setup) 
 * ------------------------------------------------------------------- */

a,
a:visited {
  color: #0087cc;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

a:hover,
a:focus {
  color: #46305e;
}


/* ===================================================================
 *  03. typography & general theme styles - (_document-setup.scss) 
 *
 * ------------------------------------------------------------------- */

h1, h2, h3, h4, h5, h6, .h01, .h02, .h03, .h04, .h05, .h06 {
  font-family: "montserrat-regular", sans-serif;
  color: #151515;
  font-style: normal;
  text-rendering: optimizeLegibility;
  margin-bottom: 2.4rem;
}

h3, .h03, h4, .h04 {
  margin-bottom: 1.5rem;
}
h5, .h05, h6, .h06 {
  margin-bottom: 1.2rem;
}
h1, .h01 {
  font-size: 3.1rem;
  line-height: 1.35;
  letter-spacing: -.1rem;
}

@media only screen and (max-width: 600px) {
  h1,
  .h01 {
    font-size: 2.6rem;
    letter-spacing: -.07rem;
  }
}

h2, .h02 {
  font-size: 2.4rem;
  line-height: 1.25;
}
h3, .h03 {
  font-size: 2rem;
  line-height: 1.5;
}
h4, .h04 {
  font-size: 1.7rem;
  line-height: 1.76;
}
h5, .h05 {
  font-size: 1.4rem;
  line-height: 1.7;
  text-transform: uppercase;
  letter-spacing: .2rem;
}
h6, .h06 {
  font-size: 1.3rem;
  line-height: 1.85;
  text-transform: uppercase;
  letter-spacing: .2rem;
}

p img {
  margin: 0;
}

p.lead {
  font-family: "muli-light", sans-serif;
  font-size: 2.1rem;
  line-height: 1.857;
  color: #838383;
  margin-bottom: 3.6rem;
}

@media only screen and (max-width: 768px) {
  p.lead {
    font-size: 2rem;
  }
}

em, i, strong, b {
  font-size: 1.6rem;
  line-height: 1.875;
  font-style: normal;
  font-weight: normal;
}
em, i {
  font-family: "muli-italic", sans-serif;
}
strong, b {
  font-family: "muli-bold", sans-serif;
}

small {
  font-size: 1.1rem;
  line-height: inherit;
}

blockquote {
  margin: 3rem 0;
  padding-left: 5rem;
  position: relative;
}

blockquote:before {
  content: "\201C";
  font-size: 10rem;
  line-height: 0px;
  margin: 0;
  color: rgba(0, 0, 0, 0.3);
  font-family: arial, sans-serif;
  position: absolute;
  top: 3.6rem;
  left: 0;
}

blockquote p {
  font-family: "muli-light", sans-serif;
  padding: 0;
  font-size: 1.9rem;
  line-height: 1.895;
}

blockquote cite {
  display: block;
  font-size: 1.3rem;
  font-style: normal;
  line-height: 1.615;
}

blockquote cite:before {
  content: "\2014 \0020";
}

blockquote cite a,
blockquote cite a:visited {
  color: #838383;
  border: none;
}

abbr {
  font-family: "muli-bold", sans-serif;
  font-variant: small-caps;
  text-transform: lowercase;
  letter-spacing: .05rem;
  color: #838383;
}

var, kbd, samp, code, pre {
  font-family: Consolas, "Andale Mono", Courier, "Courier New", monospace;
}

pre {
  padding: 2.4rem 3rem 3rem;
  background: #F1F1F1;
}

code {
  font-size: 1.4rem;
  margin: 0 .2rem;
  padding: .3rem .6rem;
  white-space: nowrap;
  background: #F1F1F1;
  border: 1px solid #E1E1E1;
  border-radius: 3px;
}

pre>code {
  display: block;
  white-space: pre;
  line-height: 2;
  padding: 0;
  margin: 0;
}

pre.prettyprint>code {
  border: none;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
  text-decoration: none;
}

mark {
  background: #FFF49B;
  color: #000;
}

hr {
  border: solid rgba(0, 0, 0, 0.1);
  border-width: 1px 0 0;
  clear: both;
  margin: 2.4rem 0 1.5rem;
  height: 0;
}


/* ------------------------------------------------------------------- 
 * Lists - (_document-setup.scss)  
 * ------------------------------------------------------------------- */

ol {
  list-style: decimal;
}

ul {
  list-style: disc;
}

li {
  display: list-item;
}

ol,
ul {
  margin-left: 1.7rem;
}

ul li {
  padding-left: .4rem;
}

ul ul,
ul ol,
ol ol,
ol ul {
  margin: .6rem 0 .6rem 1.7rem;
}

ul.disc li {
  display: list-item;
  list-style: none;
  padding: 0 0 0 .8rem;
  position: relative;
}

ul.disc li::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #46305e;
  position: absolute;
  left: -17px;
  top: 11px;
  vertical-align: middle;
}

dt {
  margin: 0;
  color: #46305e;
}

dd {
  margin: 0 0 0 2rem;
}


/* ------------------------------------------------------------------- 
 * Spacing - (_document-setup)  
 * ------------------------------------------------------------------- */

button,
.button {
  margin-bottom: 1.2rem;
}

fieldset {
  margin-bottom: 1.5rem;
}

input,
textarea,
select,
pre,
blockquote,
figure,
table,
p,
ul,
ol,
dl,
form,
.fluid-video-wrapper,
.ss-custom-select {
  margin-bottom: 3rem;
}


/* ------------------------------------------------------------------- 
 * floated image - (_document-setup)  
 * ------------------------------------------------------------------- */

img.pull-right {
  margin: 1.5rem 0 0 3rem;
}

img.pull-left {
  margin: 1.5rem 3rem 0 0;
}


/* ------------------------------------------------------------------- 
 * block grids paddings
 * ------------------------------------------------------------------- */

.bgrid {
  padding: 0 20px;
}

@media only screen and (max-width: 1024px) {
  .bgrid {
    padding: 0 18px;
  }
}

@media only screen and (max-width: 768px) {
  .bgrid {
    padding: 0 15px;
  }
}

@media only screen and (max-width: 600px) {
  .bgrid {
    padding: 0 10px;
  }
}

@media only screen and (max-width: 400px) {
  .bgrid {
    padding: 0;
  }
}


/* ------------------------------------------------------------------- 
 * tables - (_document-setup.scss)  
 * ------------------------------------------------------------------- */

table {
  border-width: 0;
  width: 100%;
  max-width: 100%;
  font-family: "muli-regular", sans-serif;
}

th,
td {
  padding: 1.5rem 3rem;
  text-align: left;
  border-bottom: 1px solid #E8E8E8;
}

th {
  color: #151515;
  font-family: "montserrat-bold", sans-serif;
}

td {
  line-height: 1.5;
}

th:first-child,
td:first-child {
  padding-left: 0;
}

th:last-child,
td:last-child {
  padding-right: 0;
}

.table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}


/* ------------------------------------------------------------------- 
 * pace.js styles - center simple  - (_document-setup.scss)
 * ------------------------------------------------------------------- */

.pace {
  -webkit-pointer-events: none;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  z-index: 2000;
  position: fixed;
  margin: auto;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 5px;
  width: 150px;
  background: #dedede;
  overflow: hidden;
}

.pace .pace-progress {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  max-width: 150px;
  position: fixed;
  z-index: 2000;
  display: block;
  position: absolute;
  top: 0;
  right: 100%;
  height: 100%;
  width: 100%;
  background: #46305e;
}

.pace.pace-inactive {
  display: none;
}

.oldie .pace {
  display: none;
}


/* ===================================================================
 *  04. preloader - (_preloader-blank.scss)
 *
 * ------------------------------------------------------------------- */

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #ffffff;
  z-index: 800;
  height: 100%;
  width: 100%;
}

.no-js #preloader,
.oldie #preloader {
  display: none;
}


/* ===================================================================
 *  05. forms - (_forms.scss)
 *
 * ------------------------------------------------------------------- */

fieldset {
  border: none;
}

input[type="email"],
input[type="number"],
input[type="search"],
input[type="text"],
input[type="tel"],
input[type="url"],
input[type="password"],
textarea,
select {
  display: block;
  height: 6rem;
  padding: 1.5rem 2rem;
  border: 0;
  outline: none;
  color: #333333;
  font-family: "muli-regular", sans-serif;
  font-size: 1.5rem;
  line-height: 3rem;
  max-width: 100%;
  background: rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  border-radius: 5px;
}

.ss-custom-select {
  position: relative;
  padding: 0;
}

.ss-custom-select select {
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
  text-indent: 0.01px;
  text-overflow: '';
  margin: 0;
  line-height: 3rem;
  vertical-align: middle;
}

.ss-custom-select select option {
  padding-left: 2rem;
  padding-right: 2rem;
}

.ss-custom-select select::-ms-expand {
  display: none;
}

.ss-custom-select::after {
  content: '\f0d7';
  font-family: 'FontAwesome';
  position: absolute;
  top: 50%;
  right: 1.5rem;
  margin-top: -10px;
  bottom: auto;
  width: 20px;
  height: 20px;
  line-height: 20px;
  font-size: 18px;
  text-align: center;
  pointer-events: none;
  color: #252525;
}


/* IE9 and below */

.oldie .ss-custom-select::after {
  display: none;
}

textarea {
  min-height: 25rem;
}

input[type="email"]:focus,
input[type="number"]:focus,
input[type="search"]:focus,
input[type="text"]:focus,
input[type="tel"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
textarea:focus,
select:focus {
  color: #000000;
}

label,
legend {
  font-family: "montserrat-bold", sans-serif;
  font-size: 1.4rem;
  margin-bottom: .6rem;
  color: #151515;
  display: block;
}

input[type="checkbox"],
input[type="radio"] {
  display: inline;
}

label>.label-text {
  display: inline-block;
  margin-left: 1rem;
  font-family: "montserrat-regular", sans-serif;
  line-height: inherit;
}

label>input[type="checkbox"],
label>input[type="radio"] {
  margin: 0;
  position: relative;
  top: .15rem;
}


/* ------------------------------------------------------------------- 
 * Style Placeholder Text - (_forms.scss)
 * ------------------------------------------------------------------- */

::-webkit-input-placeholder {
  color: #838383;
}

:-moz-placeholder {
  color: #838383;
  /* Firefox 18- */
}

::-moz-placeholder {
  color: #838383;
  /* Firefox 19+ */
}

:-ms-input-placeholder {
  color: #838383;
}

.placeholder {
  color: #838383 !important;
}


/* ------------------------------------------------------------------- 
 * Change Autocomplete styles in Chrome - (_forms.scss)
 * ------------------------------------------------------------------- */

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus input:-webkit-autofill,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  border: none;
  -webkit-text-fill-color: #57ca67;
  transition: background-color 5000s ease-in-out 0s;
}



/* ===================================================================
 *  06. buttons - (_button-essentials.scss)
 *
 * ------------------------------------------------------------------- */

.button,
button,
input[type="submit"],
input[type="reset"],
input[type="button"] {
  display: inline-block;
  font-family: "montserrat-regular", sans-serif;
  font-size: 1.5rem;
  height: 5.4rem;
  line-height: calc(5.4rem - .6rem);
  padding: 0 3rem;
  margin: 0 .3rem 1.2rem 0;
  color: #222222;
  text-decoration: none;
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
  border-radius: .5rem;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background-color: #c5c5c5;
  border: .3rem solid #c5c5c5;
}

.button:hover,
button:hover,
input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover,
.button:focus,
button:focus,
input[type="submit"]:focus,
input[type="reset"]:focus,
input[type="button"]:focus {
  background-color: #b8b8b8;
  border-color: #b8b8b8;
  color: #000000;
  outline: 0;
}

.button.button-primary,
button.button-primary,
input[type="submit"].button-primary,
input[type="reset"].button-primary,
input[type="button"].button-primary {
  background-color: #0066CC;
  border-color: #0066CC;
  color: #FFFFFF;
}

.button.button-primary:hover,
button.button-primary:hover,
input[type="submit"].button-primary:hover,
input[type="reset"].button-primary:hover,
input[type="button"].button-primary:hover,
.button.button-primary:focus,
button.button-primary:focus,
input[type="submit"].button-primary:focus,
input[type="reset"].button-primary:focus,
input[type="button"].button-primary:focus {
  background: #0A84FF;
  border-color: #0A84FF;
}

button.full-width,
.button.full-width {
  width: 100%;
  margin-right: 0;
}

button.medium,
.button.medium {
  height: 5.7rem !important;
  line-height: calc(5.7rem - .6rem) !important;
}

button.large,
.button.large {
  height: 6rem !important;
  line-height: calc(6rem - .6rem) !important;
}

button.stroke,
.button.stroke {
  background: transparent !important;
  color: #a5a5a5 !important;
}

button.stroke:hover,
.button.stroke:hover {
  border: 0.3rem solid #46305e;
  color: #46305e;
}

button.pill,
.button.pill {
  padding-left: 3rem !important;
  padding-right: 3rem !important;
  border-radius: 1000px;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}



/* ===================================================================
 *  07. other components - (_others.scss)
 *
 * ------------------------------------------------------------------- */


/* ------------------------------------------------------------------- 
 * alert box - (_alert-box.scss)
 * ------------------------------------------------------------------- */

.alert-box {
  padding: 2.1rem 4rem 2.1rem 3rem;
  position: relative;
  margin-bottom: 3rem;
  border-radius: 3px;
  font-family: "montserrat-regular", sans-serif;
  font-size: 1.5rem;
}

.alert-box .close {
  position: absolute;
  right: 1.8rem;
  top: 1.8rem;
  cursor: pointer;
}

.ss-error {
  background-color: #ffd1d2;
  color: #e65153;
}

.ss-success {
  background-color: #c8e675;
  color: #758c36;
}

.ss-info {
  background-color: #d7ecfb;
  color: #4a95cc;
}

.ss-notice {
  background-color: #fff099;
  color: #bba31b;
}


/* ------------------------------------------------------------------- 
 * additional typo styles - (_additional-typo.scss)
 * ------------------------------------------------------------------- */


/* drop cap 
 * ----------------------------------------------- */

.drop-cap:first-letter {
  float: left;
  margin: 0;
  padding: 1.5rem .6rem 0 0;
  font-size: 8.4rem;
  font-family: "montserrat-bold", sans-serif;
  line-height: 6rem;
  text-indent: 0;
  background: transparent;
  color: #151515;
}


/* line definition style 
 * ----------------------------------------------- */

.lining dt,
.lining dd {
  display: inline;
  margin: 0;
}

.lining dt+dt:before,
.lining dd+dt:before {
  content: "\A";
  white-space: pre;
}

.lining dd+dd:before {
  content: ", ";
}

.lining dd+dd:before {
  content: ", ";
}

.lining dd:before {
  content: ": ";
  margin-left: -0.2em;
}


/* dictionary definition style 
 * ----------------------------------------------- */

.dictionary-style dt {
  display: inline;
  counter-reset: definitions;
}

.dictionary-style dt+dt:before {
  content: ", ";
  margin-left: -0.2em;
}

.dictionary-style dd {
  display: block;
  counter-increment: definitions;
}

.dictionary-style dd:before {
  content: counter(definitions, decimal) ". ";
}


/** 
 * Pull Quotes
 * -----------
 * markup:
 *
 * <aside class="pull-quote">
 *		<blockquote>
 *			<p></p>
 *		</blockquote>
 *	</aside>
 *
 * --------------------------------------------------------------------- */

.pull-quote {
  position: relative;
  padding: 2.1rem 3rem 2.1rem 0px;
}

.pull-quote:before,
.pull-quote:after {
  height: 1em;
  position: absolute;
  font-size: 10rem;
  font-family: Arial, Sans-Serif;
  color: rgba(0, 0, 0, 0.3);
}

.pull-quote:before {
  content: "\201C";
  top: -3.6rem;
  left: 0;
}

.pull-quote:after {
  content: '\201D';
  bottom: 3.6rem;
  right: 0;
}

.pull-quote blockquote {
  margin: 0;
}

.pull-quote blockquote:before {
  content: none;
}


/** 
 * Stats Tab
 * ---------
 * markup:
 *
 * <ul class="stats-tabs">
 *		<li><a href="#">[value]<em>[name]</em></a></li>
 *	</ul>
 *
 * Extend this object into your markup.
 *
 * --------------------------------------------------------------------- */

.stats-tabs {
  padding: 0;
  margin: 3rem 0;
}

.stats-tabs li {
  display: inline-block;
  margin: 0 1.5rem 3rem 0;
  padding: 0 1.5rem 0 0;
  border-right: 1px solid #ccc;
}

.stats-tabs li:last-child {
  margin: 0;
  padding: 0;
  border: none;
}

.stats-tabs li a {
  display: inline-block;
  font-size: 2.5rem;
  font-family: "montserrat-semibold", sans-serif;
  border: none;
  color: #151515;
}

.stats-tabs li a:hover {
  color: #46305e;
}

.stats-tabs li a em {
  display: block;
  margin: .6rem 0 0 0;
  font-size: 1.4rem;
  font-family: "montserrat-regular", sans-serif;
  color: #909090;
}



/* ===================================================================
 *  08. common and reusable theme styles 
 *
 * ------------------------------------------------------------------- */

h1.intro-header {
  font-family: "montserrat-regular", sans-serif;
  font-size: 3.4rem;
  line-height: 1.324;
  color: #151515;
  position: relative;
  padding-bottom: 3.6rem;
}

h1.intro-header::before {
  display: block;
  content: "";
  height: 2px;
  width: 70px;
  background-color: #46305e;
  position: absolute;
  left: 0;
  bottom: 0;
}

.wide {
  max-width: 1300px;
}

.narrow {
  max-width: 800px;
}


/* ------------------------------------------------------------------- 
 * responsive:
 * common styles
 * ------------------------------------------------------------------- */

@media only screen and (max-width: 768px) {
  h1.intro-header {
    font-size: 3.1rem;
  }
}

@media only screen and (max-width: 600px) {
  h1.intro-header {
    font-size: 2.6rem;
  }
}



/* ===================================================================
 *  09. header styles - (_site-layout.scss)
 *
 * ------------------------------------------------------------------- */

#header {
  width: 100%;
  height: 72px;
  background-color: #111111;
  position: fixed;
  border-radius:0px 0px 10px 10px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 501;
}


/* ------------------------------------------------------------------- 
 * header logo - (_site-layout.css) 
 * ------------------------------------------------------------------- */

.header-logo {
  position: absolute;
  left: 40px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
  z-index: 501;
}

.header-logo a {
  display: block;
  margin-top: -28px;
  padding: 0px;
  border: none;
  width: 97px;
  height: 22px;
  width: 100%;
  font-size: 30px;
  font-weight: bold;
  font-style: bold;
  text-decoration:none;
  text-shadow: none;
  color: #FFF;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}


/* ------------------------------------------------------------------- 
 * menu trigger - (_site-layout.css) 
 * ------------------------------------------------------------------- */

.header-menu-toggle {
  display: none;
  position: fixed;
  right: 32px;
  top: 15px;
  height: 42px;
  width: 42px;
  line-height: 42px;
  font-family: "montserrat-regular", sans-serif;
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: .2rem;
  color: rgba(255, 255, 255, 0.5);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.header-menu-toggle:hover,
.header-menu-toggle:focus {
  color: #FFFFFF;
}

.header-menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin-top: -1px;
  position: absolute;
  left: 9px;
  top: 50%;
  right: auto;
  bottom: auto;
  background-color: white;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  font: 0/0 a;
  text-shadow: none;
  color: transparent;
}

.header-menu-toggle span::before,
.header-menu-toggle span::after {
  content: '';
  width: 100%;
  height: 100%;
  background-color: inherit;
  position: absolute;
  left: 0;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.header-menu-toggle span::before {
  top: -9px;
}

.header-menu-toggle span::after {
  bottom: -9px;
}

.header-menu-toggle.is-clicked span {
  background-color: rgba(255, 255, 255, 0);
  -webkit-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}

.header-menu-toggle.is-clicked span::before,
.header-menu-toggle.is-clicked span::after {
  background-color: white;
}

.header-menu-toggle.is-clicked span::before {
  top: 0;
  -webkit-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  transform: rotate(135deg);
}

.header-menu-toggle.is-clicked span::after {
  bottom: 0;
  -webkit-transform: rotate(225deg);
  -ms-transform: rotate(225deg);
  transform: rotate(225deg);
}


/* ------------------------------------------------------------------- 
 * navigation - (_layout.scss) 
 * ------------------------------------------------------------------- */

#header-nav-wrap {
  font-family: "montserrat-medium", sans-serif;
  font-size: 14px;
  position: absolute;
  top: 0;
  right: 40px;
 
}

#header-nav-wrap .header-main-nav {
  display: inline-block;
  list-style: none;
  height: 72px;
  margin: 0 1rem 0 0;
}

#header-nav-wrap .header-main-nav li {
  display: inline-block;
  padding-left: 0;
  margin-right: 1.5rem;
}

#header-nav-wrap .header-main-nav li a {
  display: block;
  line-height: 72px;
}

#header-nav-wrap .header-main-nav li a,
#header-nav-wrap .header-main-nav li a:visited {
  color: rgba(255, 255, 255, 0.45);
}

#header-nav-wrap .header-main-nav li a:hover,
#header-nav-wrap .header-main-nav li a:focus {
  color: #ffffff;
}

#header-nav-wrap .header-main-nav li.current a {
  color: #ffffff;
}

#header-nav-wrap .cta {
  height: 3.6rem;
  line-height: calc(3.6rem - .6rem);
  padding: 0 1.5rem;
  font-family: "montserrat-medium", sans-serif;
  font-size: 14px;
  text-transform: none;
  letter-spacing: normal;
  margin: 0;
}


/* ------------------------------------------------------------------- 
 * responsive:
 * header
 * ------------------------------------------------------------------- */

@media only screen and (max-width: 1230px) {
  #header {
    max-width: none;
  }
}

@media only screen and (max-width: 768px) {
  .header-logo a {
    width: 100%;
    height: 20px; 
	font-size:20px;
	margin-top: -7px;
  }
  #header-nav-wrap {
    display: none;
    height: auto;
    width: 100%;
    right: auto;
    left: 0;
    background-color: #111111;
    padding: 120px 40px 54px;
  }
  #header-nav-wrap .header-main-nav {
    display: block;
    height: auto;
    margin: 0 0 4.2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
  }
  #header-nav-wrap .header-main-nav li {
    display: block;
    margin: 0;
    padding: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  }
  #header-nav-wrap .header-main-nav li a {
    padding: 18px 0;
    line-height: 18px;
  }
  #header-nav-wrap .cta {
    height: 42px;
    line-height: calc(42px - .6rem);
    padding: 0 30px;
  }
  .header-menu-toggle {
    display: block;
  }
}

@media only screen and (max-width: 600px) {
  #header-nav-wrap .cta {
    display: block;
    padding: 0 20px;
  }
}

@media only screen and (max-width: 400px) {
  .header-menu-toggle {
    right: 24px;
  }
}


/* -------------------------------------------------------------------
 * make sure the menu is visible on larger screens
 * ------------------------------------------------------------------- */

@media only screen and (min-width: 769px) {
  #header-nav-wrap {
    display: block !important;
  }
}



/* ===================================================================
 *  10. home - (_site-layout.scss)
 *
 * ------------------------------------------------------------------- */

#home {
  width: 100%;
  height: 786px;
  min-height: 786px;
  background-color: transparent;
  position: relative;
  display: table;
}

#home .shadow-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    opacity: .75;

    background: linear-gradient(
        to right,
        rgba(3,8,18,1) 0%,
        rgba(3,8,18,.95) 28%,
        rgba(3,8,18,.70) 50%,
        rgba(3,8,18,.25) 75%,
        rgba(3,8,18,0) 100%
    );
}

#home .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    opacity: .30;

    background-color: #020913;
}

.no-js #home {
  background: #151515;
}

.home-content {
  display: table-cell;
  width: 100%;
  height: 100%;
  vertical-align: bottom;
}

.home-content .contents {
  position: relative;
}

.home-content-left {
  padding: 15rem 0 12rem 0;
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.home-content-left h3 {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.6rem;
  line-height: 1.5;
  text-transform: uppercase;
  letter-spacing: .2rem;
  margin-bottom: 2.4rem;
   text-align: center;
}

.home-content-left h1 {
  font-family: "montserrat-regular", sans-serif;
  font-size: 5.2rem;
  letter-spacing: -.05rem;
  line-height: 1.269;
  color: #ffffff;
  margin-bottom: 4rem;
}

.home-content-left .button.stroke {
  color: #ffffff !important;
  border-color: #ffffff;
  margin: 0 .6rem 1.2rem;
  padding: 0 2.2rem;
  min-width: 188px;
}

.home-content-left .button.stroke span[class*="icon"] {
  margin-right: 5px;
  position: relative;
  top: 2px;
}

.home-content-left .button.stroke:hover,
.home-content-left .button.stroke:focus {
  background-color: white !important;
  color: #000000 !important;
}

.home-image-right {
  display: block;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  padding-top: 21rem;
  z-index: 500;
  width: 50%;
  text-align: right;
}

.home-image-right img {
  vertical-align: bottom;
  width: 75%;
}


/* home social-list */

.home-social-list {
  position: absolute;
  right: 42px;
  top: 50%;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 2.2rem;
  line-height: 1.75;
  text-align: center;
  -webkit-transform: translateY(-55%);
  -ms-transform: translateY(-55%);
  transform: translateY(-55%);
}

.home-social-list::before {
  display: block;
  content: "";
  width: 2px;
  height: 42px;
  background-color: rgba(255, 255, 255, 0.15);
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 12px;
}

.home-social-list li {
  padding-left: 0;
}

.home-social-list li a,
.home-social-list li a:visited {
  color: #FFFFFF;
}

.home-social-list li a:hover,
.home-social-list li a:focus,
.home-social-list li a:active {
  color: #44c455;
}


/* scroll down */

.home-scrolldown {
  position: absolute;
  bottom: 0;
  right: 0;
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
  -webkit-transform-origin: right top;
  -ms-transform-origin: right top;
  transform-origin: right top;
  float: right;
}

.home-scrolldown i {
  padding-left: 9px;
}

.home-scrolldown a:hover,
.home-scrolldown a:focus {
  color: #44c455 !important;
}

html[data-useragent*='MSIE 10.0'] .home-scrolldown,
.oldie .home-scrolldown {
  display: none;
}

.scroll-icon {
  display: inline-block;
  font-family: "montserrat-medium", sans-serif;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: .3rem;
  color: #FFFFFF !important;
  background: transparent;
  position: relative;
  top: 36px;
  right: 42px;
  -webkit-animation: animate-it 3s ease infinite;
  animation: animate-it 3s ease infinite;
}

.scroll-icon i {
  font-size: 2.4rem;
  position: relative;
  bottom: -6px;
}


/* vertical animation */

@-webkit-keyframes animate-it {
  0%,
  60%,
  80%,
  100% {
    -webkit-transform: translateX(0);
  }
  0%,
  60%,
  80%,
  100% {
    transform: translateX(0);
  }
  20% {
    -webkit-transform: translateX(-5px);
  }
  20% {
    transform: translateX(-5px);
  }
  40% {
    -webkit-transform: translateX(20px);
  }
  40% {
    transform: translateX(20px);
  }
}

@keyframes animate-it {
  0%,
  60%,
  80%,
  100% {
    -webkit-transform: translateX(0);
  }
  0%,
  60%,
  80%,
  100% {
    transform: translateX(0);
  }
  20% {
    -webkit-transform: translateX(-5px);
  }
  20% {
    transform: translateX(-5px);
  }
  40% {
    -webkit-transform: translateX(20px);
  }
  40% {
    transform: translateX(20px);
  }
}


/* ------------------------------------------------------------------- 
 * responsive:
 * home section 
 * ------------------------------------------------------------------- */

@media only screen and (max-width: 1300px) {
  .home-image-right {
    right: 5rem;
  }
}

@media only screen and (max-width: 1200px) {
  #home {
    overflow: hidden;
  }
  .home-content {
    vertical-align: middle;
  }
  .home-content-left {
    padding: 18rem 0 12rem 40px;
  }
  .home-content-left h3 {
    font-size: 1.5rem;
  }
  .home-content-left h1 {
    font-size: 4.8rem;
  }
  .home-image-right {
    padding-top: 18rem;
  }
  .home-image-right img {
    vertical-align: top;
    width: 70%;
  }
}

@media only screen and (max-width: 1100px) {
  .home-content-left h1 {
    font-size: 4.6rem;
  }
  .home-content-left h1 br {
    display: none;
  }
}

@media only screen and (max-width: 1024px) {
  .home-content-left {
    width: 60%;
    padding: 18rem 6rem 12rem 4rem;
  }
  .home-content-left h3 {
    font-size: 1.5rem;
  }
  .home-content-left h1 {
    font-size: 4.2rem;
  }
  .home-image-right {
    width: 40%;
    padding-top: 120px;
  }
  .home-image-right img {
    vertical-align: top;
    width: 100%;
  }
}

@media only screen and (max-width: 900px) {
  #home {
    height: auto;
    min-height: 840px;
  }
  #home,
  .home-content {
    display: block;
    text-align: center;
  }
  .home-content-left {
    width: 94%;
    position: static;
    padding: 15rem 6rem 366px;
    margin: 0 auto;
  }
  .home-content-left h1 {
    margin-bottom: 3.6rem;
  }
  .home-image-right {
    width: 400px;
    right: auto;
    top: auto;
    left: 50%;
    bottom: 0;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    padding: 0;
    margin-bottom: -378px;
  }
}

@media only screen and (max-width: 768px) {
  #home {
    min-height: auto;
  }
  .home-content-left h3 {
    font-size: 1.4rem;
  }
  .home-content-left h1 {
    font-size: 3.6rem;
  }
}

@media only screen and (max-width: 600px) {
  .home-content-left {
    padding: 12rem 6rem 366px;
  }
  .home-content-left h1 {
    font-size: 3.3rem;
  }
  .home-content-left .button.stroke {
    width: 100%;
    min-width: 0;
    max-width: 280px;
  }
  .home-social-list {
    font-size: 2rem;
    right: 30px;
  }
  .scroll-icon {
    top: 21px;
  }
}

@media only screen and (max-width: 500px) {
  .home-social-list,
  .home-scrolldown {
    display: none;
  }
  .home-content-left {
    padding: 12rem 2.5rem 366px;
    width: 100%;
  }
  .home-content-left h1 {
    font-size: 3rem;
  }
}

@media only screen and (max-width: 400px) {
  .home-content-left {
    padding: 12rem 0 300px;
  }
  .home-content-left .button.stroke {
    margin: 0 0 1.2rem 0;
  }
  .home-image-right {
    width: 320px;
    margin-bottom: -298px;
  }
}



/* ===================================================================
 *  11. about - (_layout.scss)
 *
 * ------------------------------------------------------------------- */

#information {
  min-height: 786px;
  background: #ffffff;
  padding-top: 18rem;
  overflow: hidden;
}

.about-intro {
  padding-bottom: 3.6rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

.about-features .features-list {
  padding-top: 5.4rem;
}

.about-features .feature {
  margin-bottom: 1.8rem;
}

.about-features .feature .icon {
  margin-bottom: 1.5rem;
  display: inline-block;
}

.about-features .feature .icon i {
  color: #46305e;
  font-size: 4.8rem;
}

.about-features .feature h3 {
  font-family: "montserrat-regular", sans-serif;
  font-size: 1.9rem;
  color: #151515;
  margin-bottom: 3rem;
}

.about-how {
  padding-top: 7.2rem;
  padding-bottom: 6rem;
}

.about-how h1.intro-header {
  text-align: center;
}

#about .about-how h1.intro-header::before {
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

.about-how-content {
  position: relative;
  width: 100%;
  max-width: 1000px;
  min-height: 300px;
  margin-top: 7.2rem;
  margin-left: auto;
  margin-right: auto;
  clear: both;
}

.about-how-content::before,
.about-how-content::after {
  content: "";
  display: block;
  width: 1px;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.1);
  position: absolute;
  top: 0;
}

.about-how-content::before {
  left: 0;
}

.about-how-content::after {
  left: 50%;
}

.about-how-content .about-how-steps {
  width: 100%;
}

.about-how-content .step {
  padding: 0 40px 1.5rem 60px;
  position: relative;
  min-height: 240px;
}

.about-how-content .step h3 {
  margin-bottom: 2.4rem;
}

.about-how-content .step::before {
  display: block;
  font-family: "muli-bold";
  font-size: 2rem;
  content: attr(data-item);
  color: #ffffff;
  height: 54px;
  width: 54px;
  line-height: 54px;
  text-align: center;
  border-radius: 50%;
  background-color: #46305e;
  box-shadow: 0 0 0 15px #ffffff;
  z-index: 500;
  position: absolute;
  top: -12px;
  left: -27px;
}

.about-bottom-image img {
  vertical-align: bottom;
}


/* ------------------------------------------------------------------- 
 * responsive:
 * about 
 * ------------------------------------------------------------------- */

@media only screen and (max-width: 1200px) {
  .about-how-content {
    max-width: 800px;
  }
}

@media only screen and (max-width: 1024px) {
  .about-intro {
    max-width: 800px;
    text-align: center;
  }
  .about-intro h1::before {
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  .about-intro [class*="col-"] {
    width: 100% !important;
    float: none !important;
    clear: both !important;
    margin-left: 0;
    margin-right: 0;
  }
  .about-how-content {
    max-width: 700px;
  }
}

@media only screen and (max-width: 850px) {
  .about-how-content {
    max-width: 550px;
  }
  .about-how-content::after {
    display: none;
  }
  .about-how-content .step {
    width: 100% !important;
    float: none !important;
    clear: both !important;
    margin-left: 0;
    margin-right: 0;
    padding-right: 18px;
    min-height: auto;
    padding: 0 40px .9rem 60px;
  }
}

@media only screen and (max-width: 768px) {
  .about-features .feature .icon i {
    font-size: 4.4rem;
  }
  .about-features .feature h3 {
    font-size: 1.8rem;
  }
  .about-how h3 {
    font-size: 1.9rem;
  }
  .about-how-content::before {
    left: 30px;
  }
  .about-how-content .step {
    padding: 0 10px 0 80px;
  }
  .about-how-content .step::before {
    font-size: 1.6rem;
    height: 45px;
    width: 45px;
    line-height: 45px;
    top: -9px;
    left: 7.5px;
  }
}

@media only screen and (max-width: 650px) {
  .about-features {
    max-width: 600px;
    text-align: center;
  }
  .about-features .feature {
    width: 100% !important;
    float: none !important;
    clear: both !important;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 4.5rem;
  }
  .about-features .feature h3 {
    margin-bottom: 1.5rem;
  }
}

@media only screen and (max-width: 400px) {
  .about-how-content {
    text-align: center;
  }
  .about-how-content::before {
    display: none;
  }
  .about-how-content .step {
    padding: 60px 0 0 0;
  }
  .about-how-content .step::before {
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}



/* ===================================================================
 *  12. pricing - (_layout.scss)
 *
 * ------------------------------------------------------------------- */

#donation {
  background: #ebebeb;
  padding-top: 15rem;
  padding-bottom: 12rem;
}

#donation h1 {
  margin-bottom: 3.6rem;
}

.pricing-intro {
  padding-top: .6rem;
}

.pricing-table {
  text-align: center;
}

.pricing-table .plan-block {
  background: #ffffff;
  border-radius: 5px;
  padding: 4.8rem 4rem 5.4rem;
  margin-bottom: 4.8rem;
}

.pricing-table .plan-block:after {
  content: "";
  display: table;
  clear: both;
}

.pricing-table .plan-block .plan-block-title {
  font-family: "montserrat-regular", sans-serif;
  font-size: 2.4rem;
  margin-bottom: 3.6rem;
}

.pricing-table .plan-block .plan-block-price {
  font-family: "montserrat-medium", sans-serif;
  font-size: 7.8rem;
  color: #151515;
  line-height: 1;
  margin-bottom: 0;
}

.pricing-table .plan-block .plan-block-price sup {
  font-family: "montserrat-regular", sans-serif;
  font-size: 3rem;
  top: -3.6rem;
  margin-right: 3px;
}

.pricing-table .plan-block .plan-block-per {
  margin-top: -.6rem;
  margin-bottom: 0;
  font-family: "montserrat-medium", sans-serif;
  font-size: 1.7rem;
}

.pricing-table .plan-block .plan-block-features {
  list-style: none;
  margin: 0 2rem 4.2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  font-size: 1.6rem;
  line-height: 2.4rem;
}

.pricing-table .plan-block .plan-block-features li {
  padding: 1.2rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.pricing-table .plan-block .plan-block-features li span {
  color: #46305e;
  font-family: "muli-bold", sans-serif;
}

.pricing-table .plan-block.primary {
  background: #0066CC;
  color: rgba(255, 255, 255, 0.8);
}

.pricing-table .plan-block.primary .plan-block-title,
.pricing-table .plan-block.primary .plan-block-price {
  color: #ffffff;
}

.pricing-table .plan-block.primary .plan-block-features {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.pricing-table .plan-block.primary .plan-block-features li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.pricing-table .plan-block.primary .plan-block-features li span {
  color: #ffffff;
}

.pricing-table .plan-block.primary .button.button-primary {
  background: #ffffff;
  color: #151515;
  border-color: #ffffff;
}

.pricing-table .plan-block.primary .button.button-primary:hover,
.pricing-table .plan-block.primary .button.button-primary:focus {
  color: #46305e;
}

.pricing-table .plan-bottom-part {
  margin-top: 3rem;
}


/* ------------------------------------------------------------------- 
 * responsive:
 * pricing 
 * ------------------------------------------------------------------- */

@media only screen and (max-width: 1024px) {
  #pricing .pricing-content>[class*="col"] {
    width: 100% !important;
    float: none !important;
    clear: both !important;
    margin-left: 0;
    margin-right: 0;
  }
  #pricing [class*="col"].pricing-intro {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    max-width: 650px;
  }
  #pricing [class*="col"].pricing-intro h1::before {
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  #pricing [class*="col"].pricing-table {
    margin-top: 5.4rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media only screen and (max-width: 768px) {
  .pricing-table .plan-wrap {
    width: 100% !important;
    float: none !important;
    clear: both !important;
    margin-left: 0;
    margin-right: 0;
  }
  .pricing-table .plan-top-part,
  .pricing-table .plan-bottom-part {
    float: left;
  }
  .pricing-table .plan-top-part {
    width: 41.66667%;
    margin-top: 1.2rem;
  }
  .pricing-table .plan-bottom-part {
    width: 58.33333%;
  }
}

@media only screen and (max-width: 600px) {
  #pricing [class*="col"].pricing-table {
    max-width: 360px;
  }
  #pricing .plan-top-part,
  #pricing .plan-bottom-part {
    width: 100% !important;
    float: none !important;
    clear: both !important;
    margin-left: 0;
    margin-right: 0;
  }
}


/* ===================================================================
 *  13. shop - (_layout.scss)
 *
 * ------------------------------------------------------------------- */

#shop {
  background: #FFFFFF;
}

#shop h1::before {
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

#shop .owl-wrap {
  width: 80%;
  max-width: 900px;
  margin: 4.2rem auto 0;
}

#shop-slider {
  margin: 0 0 3rem 0;
  position: relative;
}

#shop-slider .slides {
  padding-bottom: 3rem;
}

#shop-slider p {
  font-family: "muli-regular", sans-serif;
  font-size: 3.2rem;
  line-height: 1.5;
  color: #303030;
}

#shop-slider p::before,
#shop-slider p::after {
  display: inline-block;
  font-family: "muli-regular", serif;
  font-size: 3.6rem;
  line-height: 1;
  position: relative;
  top: .3rem;
}

#shop-slider p::before {
  content: '\201C';
}

#shop-slider p::after {
  content: '\201D';
}

#shop-slider .shop-item {
  m/argin-top: 2.2rem;
}

#shop-slider .shop-item img {
  width: 7.4rem;
  height: 10.4rem;
  margin: 0 auto 1.2rem auto;
  display: block;
  border-radius: 5%;
}

#shop-slider .shop-item .item-info {
  display: inline-block;
  vertical-align: middle;
  text-align: center;
  font-family: "montserrat-semibold", sans-serif;
  font-size: 1.9rem;
  margin-top: .9rem;
  margin-bottom: 3rem;
  color: #151515;
}

#shop-slider .shop-item .item-info span {
  display: block;
  font-family: "muli-bold", sans-serif;
  font-size: 1.6rem;
  line-height: 1.313;
  letter-spacing: 0;
  text-transform: none;
  color: rgba(0, 0, 0, 0.5);
  margin-top: .3rem;
}


/* owl dots */

#shop-slider .owl-nav {
  margin-top: 1.8rem;
  margin-bottom: 1.5rem;
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}

#shop-slider .owl-nav [class*='owl-'] {
  color: #FFFFFF;
  font-family: "montserrat-regular", sans-serif;
  font-size: 1.4rem;
  height: 3rem;
  line-height: 3rem;
  margin: .6rem;
  padding: 0 10px;
  background: rgba(0, 0, 0, 0.5);
  display: inline-block;
  cursor: pointer;
  border-radius: 3px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

#shop-slider .owl-nav [class*='owl-']:hover {
  background: rgba(0, 0, 0, 0.7);
  color: #FFFFFF;
  text-decoration: none;
}

#shop-slider .owl-nav .disabled {
  background: rgba(0, 0, 0, 0.2);
  cursor: default;
}

#shop-slider .owl-nav.disabled+.owl-dots {
  margin-top: 1.8rem;
}

#shop-slider .owl-dots {
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}

#shop-slider .owl-dots .owl-dot {
  display: inline-block;
  zoom: 1;
  *display: inline;
}

#shop-slider .owl-dots .owl-dot span {
  width: 9px;
  height: 9px;
  background-color: #959595;
  margin: 9px 9px;
  display: block;
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  transition: opacity 200ms ease;
  border-radius: 50%;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

#shop-slider .owl-dots .owl-dot.active span,
#shop-slider .owl-dots .owl-dot:hover span {
  background-color: #46305e;
}


/* ------------------------------------------------------------------- 
 * responsive:
 * shops
 * ------------------------------------------------------------------- */

@media only screen and (max-width: 1024px) {
  #shop-slider p {
    font-size: 3rem;
  }
}

@media only screen and (max-width: 768px) {
  #shop-slider p {
    font-size: 2.6rem;
  }
  #shop-slider .shop-item img {
    width: 6.6rem;
    height: 6.6rem;
  }
  #shop-slider .shop-item .item-info {
    font-size: 1.8rem;
  }
  #shop-slider .shop-item .item-info span {
    font-size: 1.5rem;
  }
}

@media only screen and (max-width: 600px) {
  #shops .owl-wrap {
    width: 90%;
  }
  #shop-slider p {
    font-size: 2.4rem;
  }
}

@media only screen and (max-width: 400px) {
  #shops .owl-wrap {
    width: 100%;
  }
  #shop-slider p {
    font-size: 2rem;
  }
}


/* ===================================================================
 *  14. download - (_layout.scss)
 *
 * ------------------------------------------------------------------- */

#download {
  background: #46305e;
  color: #fff;
  padding-top: 12rem;
  padding-bottom: 12rem;
  text-align: center;
}

#download h1 {
  color: #ffffff;
}

#download h1::before {
  background-color: #fff;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

#download .lead {
  color: #fff;
  margin-top: 4.8rem;
}

#download .row {
  max-width: 800px;
}

#download .download-badges {
  list-style: none;
  margin: 0;
  text-align: center;
}

#download .download-badges li {
  display: inline-block;
  margin: 0 7.5px;
  padding-left: 0;
}

#download .download-badges li a {
  display: block;
  width: 230px;
  height: 71px;
  font: 0/0 a;
  text-shadow: none;
  color: transparent;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 230px 71px;
}

#download .download-badges li a.badge-appstore {
  background-image: url("../images/appstore.png");
}

#download .download-badges li a.badge-googleplay {
  background-image: url("../images/google-play.png");
}


/* ------------------------------------------------------------------- 
 * responsive:
 * download
 * ------------------------------------------------------------------- */

@media only screen and (max-width: 768px) {
  #download .download-badges li a {
    width: 194px;
    height: 60px;
    background-size: 194px 60px;
  }
}



/* ===================================================================
 *  15. footer styles - (_site-layout.scss)
 *
 * ------------------------------------------------------------------- */

footer {
  padding-top: 9rem;
  padding-bottom: 4.2rem;
  font-size: 1.5rem;
  line-height: 2.7rem;
  color: rgba(255, 255, 255, 0.25);
}

footer a,
footer a:visited {
  color: #46305e;
}

footer a:hover,
footer a:focus {
  color: white;
}

footer h4 {
  color: white;
  font-size: 1.5rem;
  padding-bottom: 2.4rem;
  margin-bottom: 2.4rem;
  position: relative;
}

footer h4::before {
  content: "";
  display: block;
  width: 120px;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.05);
  position: absolute;
  left: 0;
  bottom: 0;
}

footer ul {
  list-style: none;
  margin: 0;
}

footer ul li {
  padding-left: 0;
}

footer ul a,
footer ul a:visited {
  color: rgba(255, 255, 255, 0.25);
}

.footer-logo {
  display: block;
  margin: 0 0 5.4rem 0;
  padding: 0;
  outline: 0;
  border: none;
  width: 93px;
  height: 21px;
  background: url("../images/logo.png") no-repeat center;
  background-size: 93px 21px;
  font: 0/0 a;
  text-shadow: none;
  color: transparent;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.footer-social-list {
  font-size: 1.8rem;
  margin-top: -1.5rem;
  margin-bottom: 3rem;
}

.footer-social-list li {
  display: inline-block;
  margin-right: 8px;
}

.footer-social-list li:last-child {
  margin-right: 0;
}

.footer-site-links .list-links {
  margin-bottom: 3rem;
}

.footer-subscribe .subscribe-form {
  margin: 0;
  padding: 0;
  position: relative;
}

.footer-subscribe #mc-form {
  width: 100%;
}

.footer-subscribe #mc-form input[type="email"] {
  width: 100%;
  height: 5.4rem;
  padding: 1.2rem 100px 1.2rem 60px;
  background: url(../images/email-icon.png) 20px center no-repeat, rgba(0, 0, 0, 0.1);
  background-size: 24px 16px, auto;
  margin-bottom: 1.8rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-subscribe #mc-form input[type="email"]:focus {
  color: #ffffff;
}

.footer-subscribe #mc-form input[type=submit] {
  position: absolute;
  top: 0;
  right: 0;
  color: #ffffff;
  background: #46305e;
  border-color: #46305e;
  border-radius: 0 .5rem .5rem 0;
  padding: 0 15px;
}

.footer-subscribe #mc-form label {
  color: #ffffff;
  font-family: "montserrat-regular", sans-serif;
  font-size: 1.3rem;
  padding: 0 2rem;
}

.footer-subscribe #mc-form label i {
  padding-right: 6px;
}

.footer-subscribe #mc-form ::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.2);
}

.footer-subscribe #mc-form :-moz-placeholder {
  color: rgba(255, 255, 255, 0.2);
  /* Firefox 18- */
}

.footer-subscribe #mc-form ::-moz-placeholder {
  color: rgba(255, 255, 255, 0.2);
  /* Firefox 19+ */
}

.footer-subscribe #mc-form :-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.2);
}

.footer-subscribe #mc-form .placeholder {
  color: rgba(255, 255, 255, 0.2) !important;
}

.footer-bottom {
  margin-top: 6.6rem;
  text-align: center;
}

.footer-bottom .copyright span {
  display: inline-block;
}

.footer-bottom .copyright span::after {
  content: "|";
  display: inline-block;
  padding: 0 1rem 0 1.2rem;
  color: rgba(255, 255, 255, 0.1);
}

.footer-bottom .copyright span:last-child::after {
  display: none;
}


/* ------------------------------------------------------------------- 
 * go to top
 * ------------------------------------------------------------------- */

#go-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 600;
  display: none;
}

#go-top a,
#go-top a:visited {
  text-decoration: none;
  border: 0 none;
  display: block;
  height: 60px;
  width: 60px;
  line-height: 60px;
  text-align: center;
  background: black;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
  text-transform: uppercase;
  border-radius: 5px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

#go-top a i,
#go-top a:visited i {
  font-size: 18px;
  line-height: inherit;
}

#go-top a:hover,
#go-top a:focus {
  color: #FFFFFF;
}


/* ------------------------------------------------------------------- 
 * responsive:
 * footer 
 * ------------------------------------------------------------------- */

@media only screen and (max-width: 1024px) {
  .footer-main>.row {
    max-width: 800px;
  }
  .footer-info,
  .footer-contact,
  .footer-site-links {
    margin-bottom: 1.2rem;
  }
  .footer-subscribe {
    clear: both;
  }
}

@media only screen and (max-width: 768px) {
  .footer-main>.row {
    max-width: 600px;
  }
  .footer-logo {
    margin-left: auto;
    margin-right: auto;
  }
  .footer-info {
    text-align: center;
  }
  #go-top {
    bottom: 0;
    right: 0;
  }
  #go-top a,
  #go-top a:visited {
    border-radius: 5px 0 0 0;
  }
}

@media only screen and (max-width: 600px) {
  .footer-main .row {
    max-width: 480px;
  }
  .footer-main h4 {
    padding-bottom: 0;
    margin-bottom: 2.4rem;
  }
  .footer-main h4::before {
    display: none;
  }
  .footer-main ul.list-links {
    width: 80%;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  .footer-main ul.list-links li a {
    display: block;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    padding: .6rem 0;
  }
  .footer-main ul.list-links li:first-child a {
    border-top: 1px solid rgba(255, 255, 255, 0.03);
  }
  .footer-contact,
  .footer-site-links,
  .footer-subscribe {
    text-align: center;
  }
  .footer-bottom {
    padding-bottom: .6rem;
  }
  .footer-bottom .copyright span {
    display: block;
  }
  .footer-bottom .copyright span::after {
    display: none;
  }
}


/*# sourceMappingURL=main.css.map */

/* BRRO - Informações do servidor */

.about-features .feature {
  padding: 0 2.5rem;
  margin-bottom: 5rem;
}

.about-features .icon img {
  width: 85px;
  height: 96px;
  object-fit: contain;
}

.about-features .service-content {
  margin-top: 1.5rem;
}

.about-features .service-content h3 {
  color: #111111;
  font-size: 1.7rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 2.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #e5e5e5;
}

.about-features .service-content h5 {
  color: #333333;
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.7;
  margin: 0 0 1.1rem 0;
  letter-spacing: 0.08rem;
}

.about-features .service-content h5::before {
  content: "◆";
  color: #0A84FF;
  font-size: 0.8rem;
  margin-right: 1rem;
}

.about-features .info-title {
  color: #087ff5;
  font-weight: 700;
}

/* =========================================================
   BRRO - CENTRALIZAÇÃO E ESPAÇAMENTO DOS CARDS
   ========================================================= */

.about-features {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.about-features .features-list {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.about-features .feature {
  text-align: center;
  padding-left: 3rem;
  padding-right: 3rem;
  margin-bottom: 7rem;
}

.about-features .icon {
  display: block;
  width: 100%;
  text-align: center;
  margin: 0 auto 2rem auto;
}

.about-features .icon img {
  display: block;
  width: 85px;
  height: 96px;
  object-fit: contain;
  margin-left: auto;
  margin-right: auto;
}

.about-features .service-content {
  width: 100%;
  max-width: 340px;
  margin: 0 auto;
  text-align: center;
}

.about-features .service-content h3 {
  text-align: center;
  margin-top: 0;
  margin-bottom: 3rem;
}

.about-features .service-content h5 {
  display: block;
  width: 100%;
  text-align: center;
  line-height: 1.8;
  margin-top: 0;
  margin-bottom: 2rem;
}

.about-features .service-content h5::before {
  display: inline-block;
  margin-right: 0.8rem;
}

.about-features .info-title {
  display: inline;
}

/* =========================================================
   BRRO - CENTRALIZAÇÃO FINAL DAS INFORMAÇÕES
   ========================================================= */

.about-features .service-content {
  width: 100%;
  max-width: 380px;
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center !important;
}

.about-features .service-content h3 {
  width: 100%;
  text-align: center !important;
}

.about-features .service-content h5 {
  width: 100%;
  display: block;
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
  margin-bottom: 2rem;
  padding-left: 0 !important;
  padding-right: 0 !important;
  float: none !important;
}

.about-features .service-content h5::before {
  content: "◆";
  position: static !important;
  display: inline-block;
  float: none !important;
  margin-left: 0 !important;
  margin-right: 0.8rem;
  vertical-align: middle;
}

.about-features .info-title {
  display: inline;
  text-align: center;
}

.about-features .bgrid.feature {
  text-align: center !important;
}

.about-features .bgrid.feature .service-content {
  float: none !important;
  clear: both;
}

/* =========================================================
   BRRO - GRID CENTRALIZADO DOS CARDS
   ========================================================= */

.about-features {
  width: 100% !important;
  max-width: 1200px !important;
  margin: 0 auto !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.about-features .features-list {
  width: 100% !important;
  max-width: 1050px !important;
  margin: 0 auto !important;
  padding: 5.4rem 0 0 0 !important;

  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
  align-items: flex-start !important;

  float: none !important;
  clear: both !important;
}

.about-features .features-list .bgrid.feature {
  width: 33.333333% !important;
  flex: 0 0 33.333333% !important;

  float: none !important;
  clear: none !important;

  margin-left: 0 !important;
  margin-right: 0 !important;
  margin-bottom: 7rem !important;

  padding-left: 2.5rem !important;
  padding-right: 2.5rem !important;

  box-sizing: border-box !important;
  text-align: center !important;
}

.about-features .feature .icon {
  display: block !important;
  width: 100% !important;
  margin: 0 auto 2rem auto !important;
  text-align: center !important;
}

.about-features .feature .icon img {
  display: block !important;
  width: 85px !important;
  height: 96px !important;
  object-fit: contain !important;
  margin: 0 auto !important;
}

.about-features .service-content {
  display: block !important;
  width: 100% !important;
  max-width: 320px !important;
  margin: 0 auto !important;
  padding: 0 !important;

  float: none !important;
  clear: both !important;

  text-align: center !important;
}

.about-features .service-content h3 {
  width: 100% !important;
  margin: 0 auto 3rem auto !important;
  text-align: center !important;
}

.about-features .service-content h5 {
  width: 100% !important;
  margin: 0 auto 2rem auto !important;
  padding: 0 !important;
  text-align: center !important;
  float: none !important;
}


/* TABLET */

@media only screen and (max-width: 900px) {

  .about-features .features-list .bgrid.feature {
    width: 50% !important;
    flex: 0 0 50% !important;
  }

}


/* CELULAR */

@media only screen and (max-width: 650px) {

  .about-features .features-list {
    max-width: 420px !important;
  }

  .about-features .features-list .bgrid.feature {
    width: 100% !important;
    flex: 0 0 100% !important;
    padding-left: 2rem !important;
    padding-right: 2rem !important;
  }

}

/* =========================================================
   BRRO - GRID CENTRALIZADO DOS 6 CARDS
   ========================================================= */

.about-features {
    width: 100% !important;
    max-width: 1200px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.about-features .features-list {
    width: 100% !important;
    max-width: 1000px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 0 !important;
    padding-right: 0 !important;

    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    align-items: flex-start !important;

    float: none !important;
    clear: both !important;
}

.about-features .features-list::before,
.about-features .features-list::after {
    display: none !important;
}

.about-features .bgrid.feature {
    width: 33.333333% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 2.5rem !important;
    padding-right: 2.5rem !important;

    float: none !important;
    clear: none !important;

    text-align: center !important;
    box-sizing: border-box !important;
}

.about-features .service-content {
    width: 100% !important;
    max-width: 300px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
}

@media only screen and (max-width: 900px) {

    .about-features .bgrid.feature {
        width: 50% !important;
    }

}

@media only screen and (max-width: 650px) {

    .about-features .bgrid.feature {
        width: 100% !important;
    }

}
/* ============================================================
   CASH SHOP CAROUSEL - BRASIL RAGNAROK ONLINE
   ============================================================ */

#shop-slider .owl-stage {
  display: flex;
  align-items: center;
  padding-top: 45px;
  padding-bottom: 45px;
}

#shop-slider .owl-item {
  opacity: 0.35;
  transform: scale(0.72);
  transition:
    transform 0.6s ease,
    opacity 0.6s ease;
}

#shop-slider .owl-item.active {
  opacity: 0.65;
  transform: scale(0.85);
}

#shop-slider .owl-item.center {
  opacity: 1;
  transform: scale(1.20);
  z-index: 10;
}

#shop-slider .shop-item {
  transition:
    transform 0.6s ease,
    filter 0.6s ease;
}

#shop-slider .owl-item.center .shop-item {
  filter: drop-shadow(0 15px 25px rgba(0, 120, 255, 0.45));
}

#shop-slider .shop-item img {
  display: block;
  width: auto;
  max-width: 150px;
  height: 150px;
  object-fit: contain;
  margin: 0 auto 20px;
  image-rendering: auto;
}

#shop-slider .owl-item.center .shop-item img {
  max-width: 190px;
  height: 190px;
}

#shop-slider .item-info {
  opacity: 0.65;
  transition: opacity 0.6s ease;
}

#shop-slider .owl-item.center .item-info {
  opacity: 1;
}

#shop-slider .owl-item.center .position {
  font-size: 2rem;
  font-weight: 700;
}

#shop-slider .owl-item.center .shop-price {
  font-size: 1.8rem;
  font-weight: 700;
}

@media only screen and (max-width: 600px) {

  #shop-slider .owl-item {
    opacity: 0.4;
    transform: scale(0.85);
  }

  #shop-slider .owl-item.center {
    opacity: 1;
    transform: scale(1);
  }

  #shop-slider .shop-item img,
  #shop-slider .owl-item.center .shop-item img {
    max-width: 160px;
    height: 160px;
  }

}
/* ============================================================
   DOWNLOAD - BRASIL RAGNAROK ONLINE
   ============================================================ */

#download.brro-download {
  position: relative;
  overflow: hidden;
  padding: 11rem 0 8rem;
}

#download .download-subtitle {
  display: block;
  margin-bottom: 1rem;
  color: #159cff;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.35rem;
}

#download .download-intro {
  max-width: 680px;
  margin: 0 auto 5rem;
}

#download .brro-download-content {
  display: flex;
  align-items: center;
}

#download .download-art {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#download .download-art-glow {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(0, 132, 255, 0.18);
  filter: blur(70px);
}

#download .download-art img {
  position: relative;
  z-index: 2;
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 650px;
  margin: 0 auto;
  object-fit: contain;
  filter: drop-shadow(0 25px 35px rgba(0, 0, 0, 0.35));
}

#download .download-client {
  display: flex;
  align-items: center;
  justify-content: center;
}

#download .download-client-card {
  position: relative;
  width: 100%;
  max-width: 510px;
  padding: 5rem 4.5rem;
  border: 1px solid rgba(21, 156, 255, 0.28);
  border-radius: 18px;
  background: rgba(4, 15, 29, 0.82);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.38),
    0 0 60px rgba(0, 132, 255, 0.08);
}

#download .recommended-badge {
  display: inline-block;
  margin-bottom: 2rem;
  padding: 0.7rem 1.5rem;
  border-radius: 30px;
  background: rgba(21, 156, 255, 0.14);
  color: #40adff;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.15rem;
}

#download .download-client-card h2 {
  margin: 0 0 1.5rem;
  color: #ffffff;
  font-size: 3.4rem;
  line-height: 1.15;
}

#download .client-description {
  margin-bottom: 2.5rem;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.6rem;
  line-height: 1.7;
}

#download .client-info {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

#download .client-info span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.08rem;
}

#download .client-info i {
  margin-right: 0.6rem;
  color: #159cff;
}

#download .download-main-button {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 82px;
  padding: 1.5rem 2.5rem;
  border-radius: 12px;
  background: linear-gradient(135deg, #0075d9, #159cff);
  color: #ffffff;
  text-decoration: none;
  box-shadow: 0 15px 35px rgba(0, 117, 217, 0.32);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

#download .download-main-button:hover {
  color: #ffffff;
  transform: translateY(-4px);
  box-shadow:
    0 20px 45px rgba(0, 117, 217, 0.45),
    0 0 35px rgba(21, 156, 255, 0.22);
}

#download .download-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 55px;
  height: 55px;
  margin-right: 2rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  font-size: 2.2rem;
}

#download .download-button-text {
  display: flex;
  flex-direction: column;
}

#download .download-button-text strong {
  color: #ffffff;
  font-size: 2rem;
  line-height: 1.2;
  letter-spacing: 0.08rem;
}

#download .download-button-text small {
  margin-top: 0.4rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  letter-spacing: 0.1rem;
}

#download .lite-download {
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

#download .lite-download > span {
  display: block;
  margin-bottom: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.12rem;
}

#download .lite-download a {
  color: #40adff;
  font-size: 1.3rem;
  font-weight: 700;
  text-decoration: none;
}

#download .lite-download a i {
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}

#download .lite-download a:hover i {
  transform: translateX(5px);
}

#download .download-support {
  margin: 5rem 0 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 1.4rem;
}

#download .download-support i {
  margin-right: 0.7rem;
  color: #159cff;
}

@media only screen and (max-width: 900px) {

  #download .brro-download-content {
    display: block;
  }

  #download .download-art {
    min-height: auto;
    margin-bottom: 4rem;
  }

  #download .download-art img {
    max-height: 500px;
  }

  #download .download-client-card {
    margin: 0 auto;
  }

}

@media only screen and (max-width: 600px) {

  #download.brro-download {
    padding: 8rem 0 6rem;
  }

  #download .download-intro {
    margin-bottom: 3rem;
  }

  #download .download-art img {
    max-height: 390px;
  }

  #download .download-client-card {
    padding: 4rem 2.5rem;
  }

  #download .download-client-card h2 {
    font-size: 2.7rem;
  }

  #download .download-main-button {
    padding: 1.3rem 1.8rem;
  }

  #download .download-icon {
    width: 48px;
    height: 48px;
    margin-right: 1.5rem;
  }

  #download .download-button-text strong {
    font-size: 1.7rem;
  }

}

/* ============================================================
   DOWNLOAD - PADRÃO ALTERNADO BRRO
   INFO BRANCO / DOAR CINZA / LOJA BRANCO / DOWNLOAD CINZA
   ============================================================ */

#download.brro-download {
  background: #ebebeb !important;
  background-image: none !important;
}

/* ============================================================
   DOWNLOAD - CORES PARA FUNDO CINZA BRRO
   ============================================================ */

/* Marca superior */
#download.brro-download .download-eyebrow {
  color: #087ff5 !important;
}

/* Título principal */
#download.brro-download h1,
#download.brro-download h1.intro-header {
  color: #151515 !important;
}

/* Linha abaixo do título */
#download.brro-download h1::before,
#download.brro-download h1.intro-header::before {
  background-color: #087ff5 !important;
}

/* Texto introdutório */
#download.brro-download .lead,
#download.brro-download .download-intro {
  color: #667085 !important;
}

/* Texto de suporte inferior */
#download.brro-download .download-support {
  color: #667085 !important;
}

/* Ícone do suporte */
#download.brro-download .download-support i {
  color: #087ff5 !important;
}

/* ============================================================
   FOOTER - BOTÃO COMUNIDADE BRRO
   ============================================================ */

.brro-footer .footer-discord-button {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 360px;
  min-height: 72px;
  padding: 1.4rem 2rem;
  border: 1px solid rgba(21, 156, 255, 0.35);
  border-radius: 10px;

  background: linear-gradient(
    135deg,
    #0066cc 0%,
    #159cff 100%
  ) !important;

  color: #ffffff !important;
  text-decoration: none;

  box-shadow:
    0 12px 30px rgba(0, 102, 204, 0.25);

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.brro-footer .footer-discord-button:hover {
  background: linear-gradient(
    135deg,
    #087ff5 0%,
    #27a8ff 100%
  ) !important;

  color: #ffffff !important;

  transform: translateY(-3px);

  box-shadow:
    0 18px 40px rgba(0, 127, 245, 0.38),
    0 0 25px rgba(21, 156, 255, 0.18);
}

.brro-footer .footer-discord-button > i {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 46px;
  height: 46px;
  margin-right: 1.5rem;

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.14);

  color: #ffffff !important;
  font-size: 2rem;
}

.brro-footer .footer-discord-button span {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.brro-footer .footer-discord-button strong {
  color: #ffffff !important;
  font-size: 1.35rem;
  line-height: 1.3;
  letter-spacing: 0.06rem;
}

.brro-footer .footer-discord-button small {
  margin-top: 0.35rem;

  color: rgba(255, 255, 255, 0.72) !important;
  font-size: 1.05rem;
}

/* ============================================================
   FOOTER - LOGO BRRO
   ============================================================ */

.brro-footer .footer-logo {
  display: block;
  width: 240px !important;
  height: 90px !important;
  margin: 0 0 2.5rem 0 !important;

  background-size: contain !important;
  background-position: left center !important;
  background-repeat: no-repeat !important;
}

@media only screen and (max-width: 800px) {

  .brro-footer .footer-logo {
    width: 220px !important;
    height: 82px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    background-position: center !important;
  }

}
/* =========================================================
   BRRO - PAGINA DE LOGIN
   ========================================================= */

.brro-login-page {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 70px 20px 90px;
}

.brro-login-card {
  position: relative;
  width: 100%;
  max-width: 520px;
  padding: 45px 50px 50px;
  background:
    linear-gradient(
      145deg,
      rgba(8, 18, 35, 0.97),
      rgba(3, 10, 22, 0.98)
    );
  border: 1px solid rgba(44, 146, 255, 0.22);
  border-radius: 8px;
  box-shadow:
    0 25px 60px rgba(0, 0, 0, 0.45),
    0 0 35px rgba(0, 119, 255, 0.08);
  overflow: hidden;
}

.brro-login-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent,
    #168cff,
    #53b5ff,
    #168cff,
    transparent
  );
}

.brro-login-card::after {
  content: "";
  position: absolute;
  width: 250px;
  height: 250px;
  top: -160px;
  right: -130px;
  background: rgba(22, 140, 255, 0.14);
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}

.brro-login-header {
  position: relative;
  text-align: center;
  margin-bottom: 35px;
  z-index: 2;
}

.brro-login-tag {
  display: inline-block;
  margin-bottom: 12px;
  color: #168cff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
}

.brro-login-header h3 {
  margin: 0 0 10px;
  color: #ffffff;
  font-size: 30px;
  font-weight: 800;
  letter-spacing: 1px;
}

.brro-login-header p {
  margin: 0;
  color: #8494aa;
  font-size: 14px;
}

.brro-login-error {
  position: relative;
  z-index: 2;
  margin-bottom: 25px;
  padding: 13px 16px;
  color: #ff9b9b;
  font-size: 13px;
  text-align: center;
  background: rgba(255, 55, 55, 0.08);
  border: 1px solid rgba(255, 55, 55, 0.25);
  border-radius: 5px;
}

.brro-login-form {
  position: relative;
  z-index: 2;
}

.brro-form-group {
  margin-bottom: 22px;
}

.brro-form-group label,
.brro-captcha label {
  display: block;
  margin-bottom: 8px;
  color: #aebed1;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
}

.brro-input-wrapper {
  position: relative;
}

.brro-input-icon {
  position: absolute;
  top: 50%;
  left: 17px;
  z-index: 3;
  color: #168cff;
  font-size: 15px;
  transform: translateY(-50%);
  pointer-events: none;
}

.brro-input-wrapper .form-control {
  width: 100%;
  height: 54px;
  padding: 0 18px 0 48px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  box-shadow: none;
  transition: all 0.25s ease;
}

.brro-input-wrapper .form-control::placeholder {
  color: #53647a;
}

.brro-input-wrapper .form-control:focus {
  color: #ffffff;
  background: rgba(22, 140, 255, 0.05);
  border-color: #168cff;
  box-shadow: 0 0 0 3px rgba(22, 140, 255, 0.1);
  outline: none;
}

.brro-form-group select.form-control {
  width: 100%;
  height: 54px;
  color: #ffffff;
  background: #071326;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.brro-captcha {
  margin: 25px 0;
}

.brro-captcha .security-code {
  margin-bottom: 10px;
}

.brro-captcha .form-control {
  height: 50px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.brro-refresh-captcha {
  margin-top: 8px;
  text-align: right;
}

.brro-refresh-captcha a {
  color: #168cff;
  font-size: 12px;
}

.brro-login-button {
  width: 100%;
  height: 56px;
  margin-top: 8px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.5px;
  background: linear-gradient(135deg, #0877e6, #169dff);
  border: 0;
  border-radius: 5px;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(0, 119, 255, 0.25);
  transition: all 0.25s ease;
}

.brro-login-button i {
  margin-right: 8px;
}

.brro-login-button:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #168cff, #40b2ff);
  box-shadow: 0 15px 35px rgba(0, 119, 255, 0.35);
}

.brro-login-links {
  margin-top: 18px;
  text-align: center;
}

.brro-login-links a {
  color: #7f91a8;
  font-size: 13px;
  transition: color 0.2s ease;
}

.brro-login-links a:hover {
  color: #168cff;
}

.brro-register-box {
  margin-top: 30px;
  padding-top: 25px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.brro-register-box span {
  display: block;
  margin-bottom: 8px;
  color: #74869d;
  font-size: 13px;
}

.brro-register-box a {
  color: #168cff !important;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
}

.brro-register-box a:hover {
  color: #5dbaff !important;
}


/* =========================================================
   BRRO - LOGIN RESPONSIVO
   ========================================================= */

@media (max-width: 600px) {

  .brro-login-page {
    padding: 40px 15px 60px;
  }

  .brro-login-card {
    padding: 35px 25px 40px;
  }

  .brro-login-header h3 {
    font-size: 24px;
  }

  .brro-login-header p {
    font-size: 13px;
  }

}

/* =========================================================
   BRRO - MELHORIA DE LEGIBILIDADE
   LOGIN E CRIAR CONTA
   ========================================================= */

/* Texto descritivo do cabecalho */
.brro-login-header p {
  color: #c2cede !important;
  font-size: 14px;
  font-weight: 400;
}

/* Labels dos campos */
.brro-form-group label,
.brro-captcha label,
.brro-register-captcha > label {
  color: #dce6f2 !important;
  font-weight: 700;
}

/* Texto digitado nos campos */
.brro-input-wrapper .form-control,
.brro-captcha-input .form-control {
  color: #ffffff !important;
  font-size: 14px;
  font-weight: 500;
}

/* Placeholder mais claro */
.brro-input-wrapper .form-control::placeholder,
.brro-captcha-input .form-control::placeholder {
  color: #9aabc0 !important;
  opacity: 1;
}

.brro-input-wrapper .form-control::-webkit-input-placeholder,
.brro-captcha-input .form-control::-webkit-input-placeholder {
  color: #9aabc0 !important;
}

.brro-input-wrapper .form-control::-moz-placeholder,
.brro-captcha-input .form-control::-moz-placeholder {
  color: #9aabc0 !important;
  opacity: 1;
}

/* Fundo e borda dos inputs mais definidos */
.brro-input-wrapper .form-control,
.brro-captcha-input .form-control {
  background: rgba(11, 28, 51, 0.9) !important;
  border: 1px solid rgba(132, 174, 218, 0.28) !important;
}

/* Campo em foco */
.brro-input-wrapper .form-control:focus,
.brro-captcha-input .form-control:focus {
  color: #ffffff !important;
  background: rgba(12, 34, 62, 0.98) !important;
  border-color: #2c9dff !important;
  box-shadow: 0 0 0 3px rgba(44, 157, 255, 0.14) !important;
}

/* Icones dos campos */
.brro-input-icon {
  color: #45aaff !important;
}

/* Dica abaixo do usuario */
.brro-field-hint {
  color: #aebdd0 !important;
  font-size: 12px;
}

/* Caixa de requisitos */
.brro-password-rules {
  background: rgba(16, 42, 73, 0.7) !important;
  border-color: rgba(61, 158, 255, 0.3) !important;
}

/* Titulo requisitos */
.brro-rules-title {
  color: #f4f8fc !important;
}

/* Textos dos requisitos */
.brro-rules-grid span {
  color: #c6d2e1 !important;
  font-size: 13px;
}

/* Checks dos requisitos */
.brro-rules-grid span i {
  color: #4eb1ff !important;
}

/* Termos */
.brro-register-terms {
  color: #b7c5d6 !important;
  font-size: 13px;
}

/* Link termos */
.brro-register-terms a {
  color: #4db0ff !important;
}

/* Texto inferior */
.brro-register-box span {
  color: #b4c2d3 !important;
}

/* Esqueceu a senha */
.brro-login-links a {
  color: #b4c2d3 !important;
}

/* CAPTCHA */
.brro-register-captcha {
  background: rgba(11, 28, 51, 0.72) !important;
  border-color: rgba(132, 174, 218, 0.22) !important;
}

/* Link gerar novo codigo */
.brro-refresh-captcha a {
  color: #55b4ff !important;
  font-weight: 600;
}

/* Tag AREA DO JOGADOR */
.brro-login-tag {
  color: #4db0ff !important;
}

/* Titulo principal */
.brro-login-header h3 {
  color: #ffffff !important;
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.35);
}

/* =========================================================
   BRRO - CADASTRO LIGHT BLUE
   Visual suave e limpo
   ========================================================= */

.brro-register-page {
  padding: 55px 20px 85px;
}


/* CARD PRINCIPAL */

.brro-register-card {
  max-width: 760px;
  padding: 48px 52px 50px;

  background: linear-gradient(
    145deg,
    #f8fbff 0%,
    #f1f7fd 100%
  ) !important;

  border: 1px solid #d8e7f5 !important;
  border-radius: 12px;

  box-shadow:
    0 25px 60px rgba(2, 20, 45, 0.18),
    0 5px 15px rgba(2, 20, 45, 0.08) !important;
}


/* REMOVE EFEITO ESCURO DO LOGIN */

.brro-register-card::after {
  background: rgba(54, 159, 255, 0.12) !important;
  filter: blur(70px);
}


/* LINHA SUPERIOR */

.brro-register-card::before {
  height: 4px;

  background: linear-gradient(
    90deg,
    transparent,
    #7fc7ff,
    #289cff,
    #7fc7ff,
    transparent
  ) !important;
}


/* =========================================================
   CABECALHO
   ========================================================= */

.brro-register-card .brro-login-header {
  margin-bottom: 38px;
}


.brro-register-card .brro-login-tag {
  color: #278fdc !important;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 3px;
}


.brro-register-card .brro-login-header h3 {
  color: #17324f !important;

  font-size: 30px;
  font-weight: 800;

  text-shadow: none !important;
}


.brro-register-card .brro-login-header p {
  color: #71869b !important;
  font-size: 14px;
}


/* =========================================================
   LABELS
   ========================================================= */

.brro-register-card .brro-form-group label,
.brro-register-card .brro-register-captcha > label {
  color: #526b83 !important;

  margin-bottom: 9px;

  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.3px;
}


/* =========================================================
   INPUTS
   ========================================================= */

.brro-register-card .brro-input-wrapper .form-control,
.brro-register-card .brro-captcha-input .form-control,
.brro-register-card select.form-control {

  width: 100%;
  height: 54px;

  color: #263f57 !important;

  background: #ffffff !important;

  border: 1px solid #d3e1ed !important;
  border-radius: 7px !important;

  box-shadow:
    0 2px 5px rgba(18, 57, 91, 0.03) !important;

  font-size: 14px;
  font-weight: 500;

  transition: all 0.25s ease;
}


/* PLACEHOLDER */

.brro-register-card .form-control::placeholder {
  color: #a5b5c4 !important;
  opacity: 1;
}


/* FOCO */

.brro-register-card .brro-input-wrapper .form-control:focus,
.brro-register-card .brro-captcha-input .form-control:focus,
.brro-register-card select.form-control:focus {

  color: #17324f !important;

  background: #ffffff !important;

  border-color: #68b8f3 !important;

  box-shadow:
    0 0 0 4px rgba(64, 163, 235, 0.12) !important;

  outline: none;
}


/* ICONES */

.brro-register-card .brro-input-icon {
  color: #71b7e9 !important;
}


/* =========================================================
   DICA USUARIO
   ========================================================= */

.brro-register-card .brro-field-hint {
  margin-top: 7px;

  color: #879bad !important;

  font-size: 11px;
}


/* =========================================================
   CAPTCHA
   ========================================================= */

.brro-register-card .brro-register-captcha {

  margin: 8px 0 24px;
  padding: 20px;

  background: #edf6fd !important;

  border: 1px solid #d2e7f7 !important;
  border-radius: 8px;
}


.brro-register-card .brro-security-code {

  padding: 5px;

  background: #ffffff !important;

  border: 1px solid #d5e3ef;
  border-radius: 6px;
}


.brro-register-card .brro-security-code img {
  display: block;

  max-height: 54px;

  border-radius: 4px;
}


.brro-register-card .brro-refresh-captcha {
  margin-top: 10px;
}


.brro-register-card .brro-refresh-captcha a {
  color: #398fcf !important;

  font-size: 12px;
  font-weight: 700;
}


/* =========================================================
   REQUISITOS DE SENHA
   ========================================================= */

.brro-register-card .brro-password-rules {

  margin-bottom: 25px;
  padding: 21px;

  background: #edf6fd !important;

  border: 1px solid #d2e7f7 !important;
  border-radius: 8px;
}


.brro-register-card .brro-rules-title {

  margin-bottom: 15px;

  color: #385875 !important;

  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.4px;
}


.brro-register-card .brro-rules-title i {
  color: #5ca9df !important;
}


.brro-register-card .brro-rules-grid span {

  color: #698096 !important;

  font-size: 12px;
  font-weight: 500;
}


.brro-register-card .brro-rules-grid span i {

  color: #64b0e4 !important;

  font-size: 10px;
}


/* =========================================================
   TERMOS
   ========================================================= */

.brro-register-card .brro-register-terms {

  color: #7d91a4 !important;

  font-size: 12px;
  line-height: 1.7;
}


.brro-register-card .brro-register-terms a {

  color: #318fd4 !important;

  font-weight: 700;
}


.brro-register-card .brro-register-terms a:hover {

  color: #1677bd !important;
}


/* =========================================================
   BOTAO
   ========================================================= */

.brro-register-card .brro-login-button {

  color: #ffffff !important;

  background: linear-gradient(
    135deg,
    #4da9e8,
    #258ed8
  ) !important;

  border: none !important;

  border-radius: 7px;

  box-shadow:
    0 10px 25px rgba(37, 142, 216, 0.22) !important;
}


.brro-register-card .brro-login-button:hover {

  transform: translateY(-2px);

  background: linear-gradient(
    135deg,
    #61b7ef,
    #2d98df
  ) !important;

  box-shadow:
    0 14px 30px rgba(37, 142, 216, 0.28) !important;
}


/* =========================================================
   RODAPE DO CARD
   ========================================================= */

.brro-register-card .brro-register-box {

  border-top: 1px solid #dce8f2 !important;
}


.brro-register-card .brro-register-box span {

  color: #8296a8 !important;

  font-size: 13px;
}


.brro-register-card .brro-register-box a {

  color: #318fd4 !important;

  font-weight: 800;
}


.brro-register-card .brro-register-box a:hover {

  color: #1677bd !important;
}


/* =========================================================
   ERRO
   ========================================================= */

.brro-register-card .brro-login-error {

  color: #b44b57 !important;

  background: #fff1f2 !important;

  border: 1px solid #f3c9ce !important;

  border-radius: 7px;
}


/* =========================================================
   CORRECAO DE CSS ANTIGO DO PURPLE
   ========================================================= */

.brro-register-card form,
.brro-register-card .generic-form,
.brro-register-card .form-group,
.brro-register-card .brro-register-form,
.brro-register-card .brro-register-grid {

  background: transparent !important;

  box-shadow: none;

}


.brro-register-card input:-webkit-autofill,
.brro-register-card input:-webkit-autofill:hover,
.brro-register-card input:-webkit-autofill:focus {

  -webkit-text-fill-color: #263f57 !important;

  -webkit-box-shadow:
    0 0 0 1000px #ffffff inset !important;

  transition:
    background-color 9999s ease-in-out 0s;

}


/* =========================================================
   RESPONSIVO
   ========================================================= */

@media (max-width: 700px) {

  .brro-register-card {
    padding: 38px 25px 42px;
  }

  .brro-register-card .brro-login-header h3 {
    font-size: 25px;
  }

}

/* =========================================================
   BRRO - DATA DE NASCIMENTO
   ========================================================= */

.brro-register-card .brro-birthdate-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
}

.brro-register-card .brro-birthdate-wrapper select {
  flex: 1;
  width: 100%;
  height: 54px;
  padding: 0 15px;

  color: #526b83 !important;
  background: #ffffff !important;

  border: 1px solid #d3e1ed !important;
  border-radius: 7px !important;

  font-size: 13px;
  font-weight: 500;

  box-shadow:
    0 2px 5px rgba(18, 57, 91, 0.03) !important;

  outline: none;
  transition: all 0.25s ease;
}

.brro-register-card .brro-birthdate-wrapper select:focus {
  color: #17324f !important;
  background: #ffffff !important;

  border-color: #68b8f3 !important;

  box-shadow:
    0 0 0 4px rgba(64, 163, 235, 0.12) !important;
}

@media (max-width: 600px) {

  .brro-register-card .brro-birthdate-wrapper {
    flex-direction: column;
    align-items: stretch;
  }

  .brro-register-card .brro-birthdate-wrapper select {
    flex: none;
  }

}