/* =================================================================== 
 *
 *  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. testimonials
 *  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: #39b54a;
}


/* ===================================================================
 *  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: #39b54a;
  position: absolute;
  left: -17px;
  top: 11px;
  vertical-align: middle;
}

dt {
  margin: 0;
  color: #39b54a;
}

dd {
  margin: 0 0 0 2rem;
}


/* ------------------------------------------------------------------- 
 * Spacing - (_document-setup)  
 * ------------------------------------------------------------------- */

fieldset {
  margin-bottom: 1.5rem;
}

/* ------------------------------------------------------------------- 
 * 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: #39b54a;
}

.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: 3.5rem;
  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: #39b54a;
  border-color: #39b54a;
  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: #309a3f;
  border-color: #309a3f;
}

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 #39b54a;
  color: #39b54a;
}

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: #39b54a;
}

.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: #39b54a;
  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 {
  border-bottom-width: 2px;
  border-bottom-color: #9ccc52;
  border-bottom-style: solid;
  width: 100%;
  height: 72px;
  background-color: #FFFFFF;
  position: fixed;
  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: 90px;
  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: 0;
  padding: 0;
  outline: 0;
  border: none;
  width: 200px;
  height: 72px;
  background: url("../images/MediumSquareLogo2.jpg") no-repeat center;
  background-size: 163px 60px;
  font: 0/0 a;
  text-shadow: none;
  color: transparent;
  -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(62, 65, 62, 0.664);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.header-menu-toggle:hover,
.header-menu-toggle:focus {
  color: #5f5b5b;
}

.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: #46b346;
  -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: #46b346;
  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: #fff;
  -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: #46b346;
}

.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: 90px;
} */

#logo {
  width: 160px;
  height: 60px;
  display: flex;
}

.menu {
  background-color: #fff;
  color: #777;
  width: 100%;
  height: 80px;
  border-bottom: 2px solid #4cca4c;
  z-index: 13;
}

.menu_container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  max-width: 1200px;
  height: 100%;
  margin: auto;
}

.menu_links {
  height: 100%;
  transition: transform .5s;
  display: flex;
  z-index: 10;
}

.menu_item {
  list-style: none;
  position: relative;
  height: 100%;
  --clip: polygon(0 0, 100% 0, 100% 0, 0 0);
  --transform: rotate(-90deg);
}

.menu_item a {
  color: #2a9038;
}

.menu_link {
  height: 100%;
  display: flex;
  padding: 0 20px;
  align-items: center;
  text-decoration: none;
}

.menu_hamburger {
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 15px;
  cursor: pointer;
  display: none;
}

.menu_img {
  display: block;
  width: 36px;
}

.waves {
  position: relative;
  display: none;
}

.responsive {
  display: none;
}

/* ------------------------------------------------------------ */
/* ---------------------- MENU RESPONSIVE --------------------- */
/* ------------------------------------------------------------ */

@media (max-width: 800px) {
  #logo {
    width: 150px;
    height: 50px;
    display: flex;
  }
  
  .menu {
    background-color: #fff;
    color: #777;
    width: 100%;
    height: 72px;
    border-bottom: 2px solid #4cca4c;
    z-index: 100;
  }

  .menu_hamburger {
      display: flex;
      margin-left: 120px;
  }

  .menu_item {
      --clip: 0;
      overflow: hidden;
  }

  .menu_item--active {
      --transform: rotate(0);
  }

  .menu_item--show {
      background-color: var(--background);
  }

    .menu_links {
      position: fixed;
      max-width: 400px;
      width: 100vw;
      height: 100vh;
      top: 70px;
      bottom: 0;
      right: 0;
      background-color: #fff;
      overflow-y: auto;
      display: grid;
      grid-auto-rows: max-content;
      transform: translateX(100%);
      transition: transform 0.3s ease-in-out;
  }
  /* .menu_links {
      position: fixed;
      max-width: 400px;
      width: 100%;
      top: 70px;
      bottom: 0;
      right: 0;
      background-color: #fff;
      overflow-y: auto;
      display: grid;
      grid-auto-rows: max-content;
      transform: translateX(100%);
  } */

  .menu_links--show {
      transform: unset;
      width: 100%;
  }

  .menu_link {
      padding: 25px 0;
      padding-left: 30px;
      height: auto;
  }

  .fa-solid {
      margin-left: auto;
      margin-right: 20px;
  }

  .menu_link--inside {
      width: 90%;
      margin-left: auto;
      border-left: 1px solid #5e7094;
  }
}

/* ------------------------------------------------------------------- 
 * responsive:
 * header
 * ------------------------------------------------------------------- */

@media screen and (max-width: 1230px) {
  #header {
    max-width: none;
  }

  .subtitle {
    display: none;
  }

  .responsive {
    display: block;
    margin-top: -50px;
  }
}

@media screen and (max-width: 1000px) {
  #home.banner {
    position: relative;
    background-color: #90ef90;
    background-image: none;
    height: 300px;
  }
}

@media screen and (max-width: 944px) {
  .waves {
    display: block;
    margin-top: 0px;
  }

  #home.banner {
    position: relative;
    background-color: #90ef90;
    background-image: none;
    height: 300px;
  }

  .header-logo {
    left: 30px;
  }

  .header-logo a {
    width: 100;
    height: 72px;
    background-size: 163px 60px;
    left: 30px;
  }

  #header-nav-wrap {
    display: none;
    height: auto;
    width: 100%;
    right: auto;
    left: 0;
    background-color: #fff;
    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(225, 12, 12, 0.03);
  }

  #header-nav-wrap .header-main-nav li {
    display: block;
    margin: 0;
    padding: 0;
    border-bottom: 1px solid rgba(183, 188, 19, 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;
  }

  #flecha {
    left: 20px;
  }
}

@media screen and (max-width: 600px) {
  #home.banner {
    position: relative;
    background-color: #90ef90;
    background-image: none;
    height: 450px;
  }

  #header-nav-wrap .cta {
    display: block;
    padding: 0 20px;
  }

  .responsive {
    display: none;
  }

  .subtitle {
    display: block;
  }
}

@media screen and (max-width:540px) {
  .waves {
    display: none;
  }

  #home.banner {
    position: relative;
    background-color: #90ef90;
    background-image: none;
    height: 500px;
  }

  #flecha {
    left: 20px;
  }
}

@media screen and (max-width: 400px) {
  #home.banner {
    position: relative;
    background-color: #90ef90;
    background-image: none;
    height: 500px;
  }

  .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: .2;
  background: -moz-linear-gradient(left, black 0%, black 20%, transparent 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(left, black 0%, black 20%, transparent 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, black 0%, black 20%, transparent 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#000000', endColorstr='#00000000', GradientType=1);
  /* IE6-9 */
}

#home .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: .8;
  background-color: #000000;
}

#whatsapp {
  background: #39B54A;
  border: 1px solid #39B54A;
  box-shadow: 3px 2px 22px 1px rgb(0 0 0 / 24%);
  color: #FFFFFF;
}

.clasebottom {
  font-family: verdana, arial, sans-serif;
  font-size: 10pt;
  font-weight: bold;
  padding: 4px;
  background-color: #ffffcc;
  color: #666666;
  text-decoration: none;
}

.clasebottom:link,
.clasebottom:visited {
  border-top: 1px solid #cccccc;
  border-bottom: 2px solid #666666;
  border-left: 1px solid #cccccc;
  border-right: 2px solid #666666;
}

.clasebottom:hover {
  border-bottom: 1px solid #cccccc;
  border-top: 2px solid #666666;
  border-right: 1px solid #cccccc;
  border-left: 2px solid #666666;
}

.fa-whatsapp:before {
  font-size: xx-large;
}

/* .no-js #home {
  background: #151515;
} */

.home-content {
  width: 100%;
  margin-top: -150px;
  overflow: hidden;
}

.carousel-title {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  position: relative;
  text-align: center;
  width: 800px;
  height: 300px;
  padding: 50px;
  margin-top: -700px;
  margin-bottom: 250px;
  color: #000;
  background-color: rgba(62, 174, 15, 0.5);
  border-radius: 0 28px 28px 0;
  z-index: 10;
}

.carousel-title span {
  width: 100%;
  margin-top: -70px
}

/* 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: 3rem;
  position: relative;
  bottom: -2px;
  left: -200px
}


/* 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 screen and (max-width: 1024px) {
  .home-content {
    width: 100%;
    margin-top: 0px;
    overflow: hidden;
  }

  .carousel-title {
    position: relative;
    text-align: center;
    width: 800px;
    height: 200px;
    padding: 50px;
    margin-top: -500px;
    margin-bottom: 300px;
    color: #000;
    background-color: rgba(62, 174, 15, 0.5);
    border-radius: 0 28px 28px 0;
    z-index: 10;
  }
}

@media only screen and (max-width: 950px) {
  .home-content {
    width: 100%;
    margin-top: 20px;
    overflow: hidden;
  }
  
  .carousel-title {
    position: relative;
    text-align: center;
    width: 100%;
    height: 200px;
    padding: 20px;
    margin-top: 0px;
    margin-bottom: 0px;
    color: #000;
    background-color: transparent;
    border-radius: 0;
    z-index: 10;
  }
}

@media only screen and (max-width: 600px) {
  .home-content {
    width: 100%;
    margin-top: 20px;
    overflow: hidden;
  }

  .carousel-title {
    height: 300px;
    margin-top: -20px;
    margin-bottom: 20px;
  }
}

@media only screen and (width: 540px) {
  .home-content {
    width: 100%;
    margin-top: 20px;
    overflow: hidden;
  }

  .carousel-title {
    height: 250px;
    margin-top: -20px;
    margin-bottom: 20px;
  }
}

@media only screen and (max-width: 400px) {
  .home-content {
    width: 100%;
    margin-top: 20px;
    overflow: hidden;
  }

  .carousel-title {
    height: 350px;
    margin-top: -20px;
    margin-bottom: 0px;
  }
}

@media only screen and (width: 344px) {
  .home-content {
    width: 100%;
    margin-top: 20px;
    overflow: hidden;
  }

  .carousel-title {
    height: 300px;
    margin-top: -20px;
    margin-bottom: 20px;
  }
}

@media only screen and (max-width: 768px) {
  #home {
    min-height: auto;
  }
  
  .scroll-icon i {
    font-size: 3rem;
    position: relative;
    bottom: -2px;
    left: -150px
  }
}

@media only screen and (max-width: 600px) {
  .scroll-icon i {
    font-size: 3rem;
    position: relative;
    bottom: 11px;
    left: -150px
  }
}


/* ===================================================================
 *  11. about - (_layout.scss)
 *
 * ------------------------------------------------------------------- */

#about {
  min-height: 786px;
  background: #fff;
  padding-top: 10rem;
  overflow: hidden;
  padding-bottom: 100px;
}

#services,
#specialities {
  min-height: 500px;
  background: #ffffff;
  overflow: hidden;
  padding-bottom: 100px;
}

.about-intro {
  padding-bottom: 3.6rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

.col-eight p {
  color: #000;
}

/* .col-eight {
  background-image: url(../img/blob.svg);
  background-size: cover;
  background-position: center;
} */

.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: #39b54a;
  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: #39b54a;
  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: 1300px) {
  #about {
    margin-top: -180px;
    position: relative;
  }

  .about-how-content {
    max-width: 800px;
  }
}

@media only screen and (max-width: 1024px) {
  #about {
    margin-top: -80px;
    position: relative;
  }
  .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 {
    margin-top: 0px
  }
  .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%);
  }
}

/* ------------------------------------------------------------------- 
 * section:
 * service
 * ------------------------------------------------------------------- */

.container-services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  width: 100%;
  max-width: 1200px;
  margin: auto;
  padding: 20px;
}

.container-cards {
  perspective: 1000px;
}

.container-cards .card-item {
  position: relative;
  width: 100%;
  height: 300px;
  transition: transform 0.5s;
  transform-style: preserve-3d;
  cursor: pointer;
}

.container-cards .card-item:hover {
  transform: rotateY(180deg);
}

.content .list {
  font-size: 16px;
}

.face {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

.face.front {
  background-color: #fff;
  color: #333;
  transition: all 0.5s;
}

.card-item:hover .face.front {
  background-color: #44c455;
  color: #fff;
}

.face.back {
  background-color: #fff;
  color: #333;
  transform: rotateY(180deg);
  padding: 20px;
  box-sizing: border-box;
}

.face .icon {
  text-align: center;
}

.face .icon h3 {
  margin-top: 10px;
  font-size: 1.2em;
}

.face.front .icon i {
  font-size: 50px;
  color: #46b346;
}

.face.back p {
  font-size: 0.9em;
  line-height: 1.5;
  text-align: center;
  margin: 0;
}

/* ------------------------------------------------------------------- 
 * responsive:
 * service
 * ------------------------------------------------------------------- */

@media screen and (max-width: 1300px) {
  .services {
      width: 100%;
      overflow: hidden;
  }

  .section-title {
      width: 100%;
      margin: 0;
  }

  .title-services {
      width: 100%;
  }

  .paragraph-services {
      width: 70%;
      margin: auto;
      margin-top: 40px;
  }

  .border-right-paragraph {
      display: none;
  }
  
  .border-top-paragraph {
      display: none;
  }
  
  .border-left-paragraph {
      display: none;
  }
  
  .border-bottom-paragraph {
      width: 400px;
      height: 4px;
      margin-top: 0;
      margin-left: 0;
      margin: auto;
  }
}

@media screen and (max-width: 920px) {
  .services {
      width: 100%;
      overflow: hidden;
  }

  .section-title {
      width: 100%;
      margin: 0;
  }

  .title-services {
      width: 100%;
  }

  .paragraph-services {
      width: 80%;
      margin: auto;
      margin-top: 40px;
  }

  .border-right-paragraph {
      display: none;
  }
  
  .border-top-paragraph {
      display: none;
  }
  
  .border-left-paragraph {
      display: none;
  }
  
  .border-bottom-paragraph {
      width: 400px;
      height: 4px;
      margin-top: -10px;
      margin-left: 80px;
  }
}

@media screen and (max-width: 600px) {
  .services {
      width: 100%;
      overflow: hidden;
  }

  .section-title {
      width: 100%;
      margin: 0;
  }

  .title-services {
      width: 100%;
  }

  .paragraph-services {
      width: 90%;
      margin: auto;
      margin-top: 40px;
  }

  .border-right-paragraph {
      display: none;
  }
  
  .border-top-paragraph {
      display: none;
  }
  
  .border-left-paragraph {
      display: none;
  }
  
  .border-bottom-paragraph {
      width: 200px;
      height: 4px;
      margin-top: 0;
      margin-left: 0;
      margin: auto;
  }
}

@media screen and (width: 540px) {
  .services {
      width: 100%;
      overflow: hidden;
  }

  .section-title {
      width: 100%;
      margin: 0;
  }

  .title-services {
      width: 100%;
  }

  .paragraph-services {
      width: 70%;
      margin: auto;
      margin-top: 40px;
  }

  .border-right-paragraph {
      display: none;
  }
  
  .border-top-paragraph {
      display: none;
  }
  
  .border-left-paragraph {
      display: none;
  }
  
  .border-bottom-paragraph {
      width: 400px;
      height: 4px;
      margin-top: 0;
      margin-left: 0;
      margin: auto;
  }
}

@media screen and (width: 344px) {
  .services {
      width: 100%;
      overflow: hidden;
  }

  .section-title {
      width: 100%;
      margin: 0;
  }

  .title-services {
      width: 100%;
  }

  .paragraph-services {
      width: 70%;
      margin: auto;
      margin-top: 40px;
  }

  .border-right-paragraph {
      display: none;
  }
  
  .border-top-paragraph {
      display: none;
  }
  
  .border-left-paragraph {
      display: none;
  }
  
  .border-bottom-paragraph {
      width: 200px;
      height: 4px;
      margin-top: 0;
      margin-left: 0;
      margin: auto;
  }
}

@media screen and (height: 740px) {
  .services {
      width: 100%;
      overflow: hidden;
  }

  .section-title {
      width: 100%;
      margin: 0;
  }

  .title-services {
      width: 100%;
  }

  .paragraph-services {
      width: 90%;
      margin: auto;
      margin-top: 40px;
  }

  .border-right-paragraph {
      display: none;
  }
  
  .border-top-paragraph {
      width: 400px;
      height: 4px;
      float: right;
      margin-top: -130px;
      margin-right: 80px;
  }
  
  .border-left-paragraph {
      display: none;
  }
  
  .border-bottom-paragraph {
      width: 400px;
      height: 4px;
      margin-top: 10px;
      margin-left: 80px;
  }
}

/* ======================================================================
  LISTA NUESTRAS ESPECIALIDADES
 */

#row-about-especialidades {
  padding-bottom: 0px;
}

#lista-especialidades {
  padding-top: 10px
}

.grid-especialidades {
  display: grid;
  grid-template-columns: auto auto auto auto;
  gap: 20px;
  column-gap: 20px;
  background-color: #ffffff;
  padding: 5px;
  grid: auto / 25% 25% 25% 25%;
  place-content: center;
  /* grid: 100px / auto auto auto; */
}

.grid-especialidades .especialidad,
.grid-especialidades .nursing,
.grid-especialidades .general,
.grid-especialidades .nutri,
.grid-especialidades .of,
.grid-especialidades .child,
.grid-especialidades .psique,
.grid-especialidades .traumatologi {
  background-color: rgba(255, 255, 255, 0.8);
  text-align: center;
  font-weight: 100;
  font-style: normal;
  padding: 10px 0;
  font-size: 30px;
  border: 1px solid #fff;
  /* border-bottom: 1px solid #2ecc71;
  border-top: 1px solid #2ecc71; */
  transition: .5s;
}

.grid-especialidades .especialidad:hover {
  height: 150px;
  color: #46b346;
  border-radius: 15px;
  border: 1px solid #46b346;
  background-image: url(../img/Hospital\ wheelchair-cuate.svg);
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  transition: .5s;
}

.grid-especialidades .nursing:hover {
  height: 150px;
  color: #46b346;
  border-radius: 15px;
  border: 1px solid #46b346;
  background-image: url(../img/Medicine-rafiki.svg);
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  transition: .5s;
}

.grid-especialidades .general:hover {
  height: 150px;
  color: #46b346;
  border-radius: 15px;
  border: 1px solid #46b346;
  background-image: url(../img/Doctor-cuate.svg);
  background-size: cover;
  background-attachment: fixed;
  background-position: center;

}

.grid-especialidades .nutri:hover {
  height: 150px;
  color: #46b346;
  border-radius: 15px;
  border: 1px solid #46b346;
  background-image: url(../img/Doctor-rafiki.svg);
  background-size: cover;
  background-attachment: fixed;
  background-position: center;

}

.grid-especialidades .of:hover {
  height: 150px;
  color: #46b346;
  border-radius: 15px;
  border: 1px solid #46b346;
  background-image: url(../img/Ophthalmologist-pana.svg);
  background-size: cover;
  background-attachment: fixed;
  background-position: center;

}

.grid-especialidades .child:hover {
  height: 150px;
  color: #46b346;
  border-radius: 15px;
  border: 1px solid #46b346;
  background-image: url(../img/Pediatrician-cuate.svg);
  background-size: cover;
  background-attachment: fixed;
  background-position: center;

}

.grid-especialidades .psique:hover {
  height: 150px;
  color: #46b346;
  border-radius: 15px;
  border: 1px solid #46b346;
  background-image: url(../img/Psychologist-amico.svg);
  background-size: cover;
  background-attachment: fixed;
  background-position: center;

}

.grid-especialidades .traumatologi:hover {
  height: 150px;
  color: #46b346;
  border-radius: 15px;
  border: 1px solid #46b346;
  background-image: url(../img/Rheumatology-cuate.svg);
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
}

.grid-especialidades p {
  margin: 0px;
  font-weight: 100;
  font-size: 20px;
}

.grid-especialidades h3:hover {
  cursor: pointer;
}




@media (max-width: 600px) {
  .grid-especialidades {
    display: grid;
    grid-template-columns: auto auto;
    gap: 20px;
    column-gap: auto;
    background-color: #ffffff;
    padding: 10px;
    grid: auto / 50% 50%;
    place-content: center;
    /* grid: 100px / auto auto auto; */
  }



}


@media (max-width: 360px) {
  #row-about-especialidades {
    padding-left: 10px;
    padding-right: 10px;
  }

  .grid-especialidades div p {
    font-size: 18px;
  }
}

/* ===================================================================
 *  12. pricing - (_layout.scss)
 *
 * ------------------------------------------------------------------- */

#pricing {
  width: 100%;
  background: #498138;
}

#pricing h1 {
  margin-bottom: 3.6rem;
}

#pricing .row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
}

#register {
  background: #39B54A;
  border: 1px solid #C5C5C5;
  box-shadow: 3px 2px 22px 1px rgba(0, 0, 0, 0.24);
  color: #FFFFFF;
}

#register:active {
  transform: scale(0.96);
  box-shadow: 3px 2px 22px 1px rgba(0, 0, 0, 0.24);
}

.form-index-price {
  margin-bottom: 0px;
  margin-top: 30px;
}

.pricing-intro {
  display: flex;
  padding-top: .6rem;
}

.pricing-intro .text h2 {
  width: 500px;
  color: #fff;
  font-size: 40px;
  margin: 50px;
}

button.button-content {
  border: none;
  width: 300px;
  height: 50px;
  background-color: #fff;
  border-radius: 28px;
  margin-top: -50px;
  margin-left: 50px;
}

button.button-content a {
  color: #498138;
  font-size: 20px;
  font-weight: bold;
}

.fa-circle-chevron-right {
  margin-left: 50px;
  font-size: 30px;
}

.pricing-intro img {
  width: 700px;
  /* margin-left: 280px; */
}

.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: #39b54a;
  font-family: "muli-bold", sans-serif;
}

.pricing-table .plan-block.primary {
  background: #39b54a;
  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: #39b54a;
}

.pricing-table .plan-bottom-part {
  margin-top: 3rem;
}

/* ------------------------------------------------------------------- 
 * estilos de ventana modal
 *  
 * ------------------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css?family=Muli&display=swap');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,500&display=swap');

.modal-container {
  display: flex;
  background-color: rgba(67, 133, 55, 0.701);
  backdrop-filter: blur(3px);
  align-items: center;
  justify-content: center;
  position: fixed;
  pointer-events: none;
  opacity: 0;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  transition: opacity 0.3s ease;
  z-index: 5000;

  overflow-y: initial !important
}

.show {
  pointer-events: auto;
  opacity: 1;
}

.modal {
  background-color: #fff;
  width: 70%;
  max-width: 100%;
  padding: 30px 50px;
  border-radius: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  text-align: center;

  height: 90vh;
  overflow-y: auto;
}



.modal h1 {
  margin: 0;
}

.modal p {
  opacity: 0.7;
  font-size: 14px;
  margin-bottom: 0px;
}


.modal .form {
  display: flex;
  flex-flow: wrap;
  align-self: center;
  justify-content: space-around;
  flex-direction: row;
  flex-wrap: wrap;
  /* align-content: stretch; */
  align-items: center;
}


/*-------------------------------------------------------------------
* VALIDATION FORM AFILIARSE
*
*-------------------------------------------------------------------*/
/* .form {

} */


.form-control {
  margin-bottom: 10px;
  padding-bottom: 20px;
  position: relative;
  width: 40%;
  text-align: justify;
}

#birthday {
  left: -140px;
}

.form-control label {
  display: inline-block;
  margin-bottom: 5px;
}

.form-control input {
  border: 2px solid #f0f0f0;
  border-radius: 4px;
  display: block;
  font-family: inherit;
  font-size: 14px;
  padding: 10px;
  width: 100%;

  background: rgba(0, 0, 0, 0.1);
  height: 3.5rem;
}

.form-control input:focus {
  outline: 0;
  border-color: #777;
}

.form-control.success input {
  border-color: #2ecc71;
}

.form-control.error input {
  border-color: #e74c3c;
}

.form-control i {
  visibility: hidden;
  position: absolute;
  top: 40px;
  right: 10px;
}

.form-control.success i.fa-check-circle {
  color: #2ecc71;
  visibility: visible;
}

.form-control.error i.fa-exclamation-circle {
  color: #e74c3c;
  visibility: visible;
}

.form-control small {
  color: #e74c3c;
  position: absolute;
  bottom: 0;
  left: 0;
  visibility: hidden;
}

.form-control.error small {
  visibility: visible;
}

.form button {
  background-color: #309a3f;
  border: 2px solid #309a3f;
  border-radius: 4px;
  color: #fff;
  display: block;
  font-family: inherit;
  font-size: 16px;
  padding: 10px;
  margin-top: 20px;
  width: 30%;
}

.form #close {
  background-color: orangered;
  border: 2px solid orangered;
}

.form-buttons {
  margin-bottom: 10px;
  /* padding-bottom: 20px; */
  position: relative;
  width: 80%;
  display: flex;
  text-align: justify;
  justify-content: space-around;
}

@media only screen and (max-width: 740px) {
  .modal .form {
    flex-direction: column;
  }

  .form-control {
    width: 80%;
  }

  .form button {
    width: auto;
  }
}

/* ------------------------------------------------------------------- 
 * responsive:
 * pricing 
 * ------------------------------------------------------------------- */
@media screen and (max-width: 1300px) {
  #pricing {
    width: 100%;
    background: #498138;
    overflow: hidden;
  }
}

@media screen and (max-width: 1024px) {
  .pricing-intro .text h2 {
    width: 100%;
    color: #fff;
    font-size: 25px;
    margin: 50px 10px;
  }
  
  button.button-content {
    margin-left: 10px;
  }
  
  button.button-content a {
    color: #498138;
    font-size: 20px;
    font-weight: bold;
  }
  
  .fa-circle-chevron-right {
    margin-left: 0px;
    font-size: 30px;
  }
  
  .pricing-intro img {
    width: 350px;
  }
}

@media screen and (max-width: 768px) {
  .pricing-intro .text h2 {
    width: 100%;
    color: #fff;
    font-size: 25px;
    margin: 50px 10px;
  }
  
  button.button-content {
    margin-left: 10px;
  }
  
  button.button-content a {
    color: #498138;
    font-size: 20px;
    font-weight: bold;
  }
  
  .fa-circle-chevron-right {
    margin-left: 0px;
    font-size: 30px;
  }
  
  .pricing-intro img {
    width: 350px;
  }
}

@media screen and (max-width: 600px) {
  .pricing-intro .text h2 {
    width: 100%;
    color: #fff;
    font-size: 25px;
    margin: 50px 10px;
  }
  
  button.button-content {
    margin-left: 10px;
  }
  
  button.button-content a {
    color: #498138;
    font-size: 20px;
    font-weight: bold;
  }
  
  .fa-circle-chevron-right {
    margin-left: 0px;
    font-size: 30px;
  }
  
  .pricing-intro img {
    display: none;
  }
}

@media screen and (width: 540px) {
  .pricing-intro .text h2 {
    width: 100%;
    color: #fff;
    font-size: 25px;
    margin: 50px 10px;
  }
  
  button.button-content {
    margin-left: 10px;
  }
  
  button.button-content a {
    color: #498138;
    font-size: 20px;
    font-weight: bold;
  }
  
  .fa-circle-chevron-right {
    margin-left: 0px;
    font-size: 30px;
  }
  
  .pricing-intro img {
    display: none;
  }
}

@media screen and (width: 344px) {
  .pricing-intro .text h2 {
    width: 100%;
    color: #fff;
    font-size: 25px;
    margin: 50px 0px;
  }
  
  button.button-content {
    margin-left: -10px;
  }
  
  button.button-content a {
    color: #498138;
    font-size: 20px;
    font-weight: bold;
  }
  
  .fa-circle-chevron-right {
    margin-left: 0px;
    font-size: 30px;
  }
  
  .pricing-intro img {
    display: none;
  }
}


/* ===================================================================
 *  13. testimonials - (_layout.scss)
 *
 * ------------------------------------------------------------------- */

#testimonials {
  background: #FFFFFF;
  padding: 15rem 0 9rem;
  text-align: center;
  min-height: 600px;
  padding-top: 100px;
  padding-bottom: 40px;
}

#testimonials h1::before {
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

.card-contaner {
  width: 100%;
  display: flex;
  justify-content: center;
}

.card-contaner .card {
  margin: 20px 40px;
}

/* ------------------------------------------------------------------- 
 * responsive:
 * testimonials
 * ------------------------------------------------------------------- */

@media only screen and (max-width: 1024px) {
  #testimonial-slider p {
    font-size: 3rem;
  }
}

@media screen and (max-width: 900px) {
  .card-contaner {
    width: 100%;
    display: block;
  }
  
  .card-contaner .card {
    margin: 40px auto;
  }
}

@media only screen and (max-width: 768px) {
  #testimonial-slider p {
    font-size: 2.6rem;
  }

  #testimonial-slider .testimonial-author img {
    width: 6.6rem;
    height: 6.6rem;
  }

  #testimonial-slider .testimonial-author .author-info {
    font-size: 1.8rem;
  }

  #testimonial-slider .testimonial-author .author-info span {
    font-size: 1.5rem;
  }
}

@media only screen and (max-width: 600px) {
  .card-contaner {
    width: 100%;
    display: block;
  }
  
  .card-contaner .card {
    margin: 40px auto;
  }

  #testimonials .owl-wrap {
    width: 90%;
  }

  #testimonial-slider p {
    font-size: 2.4rem;
  }
}

@media only screen and (max-width: 400px) {
  .card-contaner {
    width: 100%;
    display: block;
  }
  
  .card-contaner .card {
    margin: 40px auto;
  }

  #testimonials .owl-wrap {
    width: 100%;
  }

  #testimonial-slider p {
    font-size: 2rem;
  }
}


/* ===================================================================
 *  14. download - (_layout.scss)
 *
 * ------------------------------------------------------------------- */

#download {
  background: #39b54a;
  color: #b2fabc;
  padding-top: 12rem;
  padding-bottom: 12rem;
  text-align: center;
}

#download h1 {
  color: #ffffff;
}

#download h1::before {
  background-color: #2a9038;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

#download .lead {
  color: #b2fabc;
  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.50);
}

footer a,
footer a:visited {
  color: #39b54a;
}

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.50);
}

.footer-logo {
  display: block;
  margin: 0 0 2.4rem 0;
  padding: 0;
  outline: 0;
  border: none;
  width: 108px;
  height: 85px;
  background: url("../images/logo2.png") no-repeat center;
  background-size: 108px 85px;
  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: 0px;
  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: #39b54a;
  border-color: #39b54a;
  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: 80px;
  right: 30px;
  z-index: 600;
  display: none;
}

#go-top a,
#go-top a:visited {
  text-decoration: none;
  border: 1px solid #9ccc52;
  display: block;
  height: 60px;
  width: 60px;
  line-height: 60px;
  text-align: center;
  background: #46b346;
  color: #FFFFFF;
  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) {

  /* Estilos para pantallas móviles */
  .footer-subscribe {
    overflow: hidden;
  }

  .footer-subscribe iframe {
    margin: 0 auto;
    width: 100%;
  }
}

@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 */

@keyframes typewriter {
  from {
    width: 0%;
  }

  to {
    width: 100%;
  }
}

@keyframes blink {
  from {
    border-color: darkgreen;
  }

  to {
    border-color: transparent;
  }
}

/******************************************************************/