/*----------------------------------------
[Master Stylesheet]

Project:	HelpZone
Version:	1.1
Primary use:	HelpZone Template
----------------------------------------*/
/*----------------------------------------
[Table of contents]

1. Common styles
2. Preloader
3. Typography
4. Header
5. Mobile Navigation
6. Home
7. Content
8. Sliders
9. Card
	9.1 Service card
	9.2 Article card
	9.3 FAQ card
	9.4 Testimonial card
	9.5 Team card
10. Footer
12. Secondary page title
12. Filter
13. Chat page
14. Contacts page
15. Article page
16. 404 page
17. Sidebar
	17.1 Category Menu
	17.2 Popular News
	17.3 Subscribe
----------------------------------------*/
/*==============================
	Common styles
==============================*/
html,
body {
  height: 100%;
}
body {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  background-color: #fafafa;
}
button {
  padding: 0;
  border: none;
  background-color: transparent;
  -webkit-border-radius: 0;
  border-radius: 0;
}
button:focus {
  outline: none;
}
a {
  -webkit-transition: 0.3s ease;
  -moz-transition: 0.3s ease;
  transition: 0.3s ease;
}
a:hover,
a:active,
a:focus {
  outline: none;
  text-decoration: none;
}
input,
textarea {
  display: block;
  width: 100%;
  font-size: 14px;
  letter-spacing: 0.4px;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  transition: 0.4s;
  padding: 0;
  margin: 0;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: 1px solid rgba(117,117,117,0.2);
  background-color: #fff;
  color: #444;
}
input:focus,
textarea:focus {
  outline: none;
  border-color: #ef5350;
}
input[type="text"] {
  height: 44px;
  padding: 0 15px;
}
textarea {
  height: 180px;
  padding: 15px;
  resize: none;
}
img {
  max-width: 100%;
}
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.form-group {
  margin-bottom: 30px;
}
.default-button {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  height: 44px;
  line-height: 44px;
  font-weight: 500;
  background-color: #ef5350;
  color: #fff;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  padding: 0 20px;
  font-family: 'Roboto', sans-serif;
  will-change: box-shadow;
  -webkit-transition: box-shadow 0.2s cubic-bezier(0.4, 0, 1, 1), background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1), color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  -moz-transition: box-shadow 0.2s cubic-bezier(0.4, 0, 1, 1), background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1), color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  transition: box-shadow 0.2s cubic-bezier(0.4, 0, 1, 1), background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1), color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-box-shadow: 0 2px 2px 0 rgba(0,0,0,0.14), 0 3px 1px -2px rgba(0,0,0,0.2), 0 1px 5px 0 rgba(0,0,0,0.12);
  box-shadow: 0 2px 2px 0 rgba(0,0,0,0.14), 0 3px 1px -2px rgba(0,0,0,0.2), 0 1px 5px 0 rgba(0,0,0,0.12);
}
.default-button:hover {
  color: #fff;
  -webkit-box-shadow: 0 4px 5px 0 rgba(0,0,0,0.14), 0 1px 10px 0 rgba(0,0,0,0.12), 0 2px 4px -1px rgba(0,0,0,0.2);
  box-shadow: 0 4px 5px 0 rgba(0,0,0,0.14), 0 1px 10px 0 rgba(0,0,0,0.12), 0 2px 4px -1px rgba(0,0,0,0.2);
}
.default-button:focus {
  color: #fff;
}
.section-padding-70 {
  padding: 50px 0;
}
@media (min-width: 768px) {
  .section-padding-70 {
    padding: 70px 0;
  }
}
.section-padding-100 {
  padding: 80px 0;
}
@media (min-width: 768px) {
  .section-padding-100 {
    padding: 100px 0;
  }
}
.white-bg {
  background-color: #fff;
}
.border-bottom {
  border-bottom: 2px solid #f5f5f5;
}
.owl-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 15px;
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}
.owl-dots .owl-dot {
  display: inline-block;
  margin: 0;
}
.owl-dots .owl-dot span {
  display: block;
  width: 12px;
  height: 12px;
  -webkit-backface-visibility: visible;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  transition: 0.4s;
  background-color: rgba(255,255,255,0.65);
  margin: 0 6px;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  border: 2px solid transparent;
  background-color: transparent;
}
::-moz-selection {
  background: #fafafa;
  color: #ef5350;
  text-shadow: none;
}
::-webkit-selection {
  background: #fafafa;
  color: #ef5350;
  text-shadow: none;
}
::selection {
  background: #fafafa;
  color: #ef5350;
  text-shadow: none;
}
::-webkit-input-placeholder {
  color: #444;
  opacity: 1;
}
::-moz-placeholder {
  color: #444;
  opacity: 1;
}
:-ms-input-placeholder {
  color: #444;
  opacity: 1;
}
/*==============================
	Preloader
==============================*/
.preloader {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 9999;
  height: 100%;
  background-color: #fff;
}
.preloader__figure {
  height: 4px;
  width: 300px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -2px 0 0 -150px;
  overflow: hidden;
  background-color: rgba(0,0,0,0.12);
}
.preloader__figure:before {
  display: block;
  position: absolute;
  content: '';
  left: -20px;
  width: 20px;
  height: 4px;
  background-color: #ef5350;
  animation: loading 1s linear infinite;
}
/*==============================
	Typography
==============================*/
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Roboto', sans-serif;
  margin-top: 0;
  line-height: normal;
  font-weight: 500;
  margin-bottom: 15px;
  color: #444;
}
h1 {
  font-size: 36px;
}
h2 {
  font-size: 30px;
}
h3 {
  font-size: 26px;
}
h4 {
  font-size: 22px;
}
h5 {
  font-size: 18px;
}
h6 {
  font-size: 16px;
}
p {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  margin: 0 0 20px;
  color: #757575;
  text-align: justify;
}
p a {
  color: #ef5350;
}
p a:hover {
  text-decoration: underline;
  color: #ef5350;
}
a {
  font-weight: 400;
}
sub {
  bottom: 0;
}
/*==============================
	Header
==============================*/
.header {
  position: fixed;
  display: block;
  background-color: #ef5350;
  top: 0;
  width: 100%;
  line-height: 56px;
  z-index: 10;
  -webkit-box-shadow: 0 2px 2px 0 rgba(0,0,0,0.14), 0 3px 1px -2px rgba(0,0,0,0.2), 0 1px 5px 0 rgba(0,0,0,0.12);
  box-shadow: 0 2px 2px 0 rgba(0,0,0,0.14), 0 3px 1px -2px rgba(0,0,0,0.2), 0 1px 5px 0 rgba(0,0,0,0.12);
}
.header__logo {
  display: inline-block;
  float: left;
}
.header__btn {
  display: inline-block;
  position: relative;
  float: right;
  height: 56px;
  width: 25px;
  background-color: transparent;
  color: #fff;
}
.header__btn i {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  height: 56px;
  width: 25px;
  line-height: 56px;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
}
.header__btn i.zmdi-menu {
  opacity: 1;
  font-size: 25px;
}
.header__btn i.zmdi-close {
  opacity: 0;
  font-size: 0;
}
.header__btn.active i.zmdi-menu {
  opacity: 0;
  font-size: 0;
}
.header__btn.active i.zmdi-close {
  opacity: 1;
  font-size: 25px;
}
.header__nav-wrap {
  display: none;
}
.multi-level {
    position: absolute !important;
    left: 100% !important;
    display:none !important;
    top: 10px !important;
}
.dropdown-submenu:hover .multi-level{display:block !important;}
@media (min-width: 768px) {
  .header {
    line-height: 62px;
  }
  .header__btn {
    height: 62px;
  }
  .header__btn i {
    height: 62px;
    line-height: 62px;
  }
}
@media (min-width: 1200px) {
  .header__btn {
    display: none;
  }
  .header__nav-wrap {
    display: block;
    height: 62px;
    text-align: right;
  }
  .header__nav li {
    display: inline-block;
    margin-left: 45px;
  }
  .header__nav li a {
    display: block;
    line-height: 62px;
    font-size: 13px;
    font-weight: 500;
    padding: 0;
    letter-spacing: 0.6px;
    backface-visibility: hidden;
    overflow: hidden;
    text-transform: uppercase;
    color: #fff;
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    transform: translateZ(0);
  }
  .header__nav li a:before {
    content: '';
    position: absolute;
    z-index: -1;
    left: 0;
    right: 0;
    bottom: 0;
    height: 3px;
    background-color: #fff;
    -webkit-transform: translateY(3px);
    -moz-transform: translateY(3px);
    transform: translateY(3px);
    -webkit-transition: transform 0.24s ease-out;
    -moz-transition: transform 0.24s ease-out;
    transition: transform 0.24s ease-out;
  }
  .header__nav li a:hover:before {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    transform: translateY(0);
  }
  .header__nav li.dropdown a {
    margin: 0;
  }
  .header__nav li.dropdown a:before {
    display: none;
  }
   .header__nav li li.dropdown a:before {
    display: none;
  }
  .header__nav li.dropdown.open .dropdown-menu {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    transform: scale(1);
        padding: 0;
  }
  .header__nav li .dropdown-menu {
    position: absolute;
    display: block;
    left: auto;
    right: 0;
    min-width: 200px;
    margin: -10px 0 0 0;
    border: none;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    padding: 4px 0;
    background-color: #fff;
    -webkit-transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    -moz-transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    transform: scale(0);
    -webkit-transform-origin: top right;
    transform-origin: top right;
    -webkit-box-shadow: 0 2px 2px 0 rgba(0,0,0,0.14), 0 3px 1px -2px rgba(0,0,0,0.2), 0 1px 5px 0 rgba(0,0,0,0.12);
    box-shadow: 0 2px 2px 0 rgba(0,0,0,0.14), 0 3px 1px -2px rgba(0,0,0,0.2), 0 1px 5px 0 rgba(0,0,0,0.12);
  }
  .header__nav li .dropdown-menu li {
    display: block;
    margin: 0;
  }
  .header__nav li .dropdown-menu li a {
    display: block;
    line-height: 46px;
    font-size: 14px;
    font-weight: 400;
    overflow: hidden;
    will-change: transform;
    padding: 0 15px;
    height: auto;
    margin: 0;
    text-transform: none;
    letter-spacing: 0;
    color: #757575;
    background-color: transparent;
    -webkit-transition: color 0s;
    -moz-transition: color 0s;
    transition: color 0s;
    position: relative;
  }
  .dropdown-menu li li a{
    display: none
  }
  .header__nav li .dropdown-menu li a:hover {
    background-color: #ef5350;
    color: #fff;
  }
  .header__nav li .dropdown-menu .divider {
    height: 1px;
    margin: 0;
    background-color: rgba(239,83,80,0.15);
  }
  .header__nav li:first-child {
    margin-left: 0;
  }
}
/*==============================
	Mobile Navigation
==============================*/
.mobile-navigation {
  position: fixed;
  top: 56px;
  right: 0;
  bottom: 0;
  width: 240px;
  overflow-y: auto;
  z-index: 9;
  padding: 10px 0 0 0;
  background-color: #ef5350;
  -webkit-transition: all 0.36s;
  -moz-transition: all 0.36s;
  transition: all 0.36s;
  -webkit-transform: translate3d(240px, 0, 0);
  -moz-transform: translate3d(240px, 0, 0);
  transform: translate3d(240px, 0, 0);
}
.mobile-navigation.active {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.mobile-navigation li a {
  display: block;
  position: relative;
  padding: 0 20px;
  font-size: 13px;
  line-height: 46px;
  letter-spacing: 0.5px;
  font-weight: 500;
  text-transform: uppercase;
  color: #fff;
}
.mobile-navigation li a i {
  margin-left: 5px;
  line-height: 46px;
}
.mobile-navigation li .dropdown-menu {
  position: relative;
  width: 100%;
  border: none;
  padding: 4px 0;
  -webkit-border-radius: 0;
  border-radius: 0;
  -webkit-box-shadow: inset 0 2px 2px 0 rgba(0,0,0,0.14), inset 0 3px 1px -2px rgba(0,0,0,0.2), 0 1px 5px 0 rgba(0,0,0,0.12);
  box-shadow: inset 0 2px 2px 0 rgba(0,0,0,0.14), inset 0 3px 1px -2px rgba(0,0,0,0.2), 0 1px 5px 0 rgba(0,0,0,0.12);
}
.mobile-navigation li .dropdown-menu li a {
  text-transform: none;
  font-weight: 400;
  color: #757575;
  font-size: 14px;
}
.mobile-navigation li .dropdown-menu li a:hover {
  background-color: transparent;
}
@media (min-width: 768px) {
  .mobile-navigation {
    top: 62px;
  }
}
/*==============================
	Home
==============================*/
.home {
  position: relative;
  width: 100%;
  height: 100vh;
  padding-top: 56px;
}
.home__title {
  display: table;
  position: relative;
  height: 100%;
}
.home__text-wrap {
  display: table-cell;
  height: 100%;
  vertical-align: middle;
  text-align: center;
}
.home__text-wrap h1 {
  font-size: 36px;
  font-weight: 500;
  letter-spacing: 0.5px;
  margin: 0;
  color: #fff;
}
.home__text-wrap p {
  font-size: 16px;
  font-weight: 400;
  margin: 0 0 20px;
  color: #fff;
}
.home__text-wrap span {
  color: #fff;
}
.home__search {
  margin-top: 20px;
}
.home__search form {
  display: inline-block;
  position: relative;
  width: 100%;
  padding: 0;
  text-align: left;
  margin-bottom: 20px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  -webkit-box-shadow: 0 2px 2px 0 rgba(0,0,0,0.14), 0 3px 1px -2px rgba(0,0,0,0.2), 0 1px 5px 0 rgba(0,0,0,0.12);
  -webkit-box-shadow: 0 2px 2px 0 rgba(0,0,0,0.14), 0 3px 1px -2px rgba(0,0,0,0.2), 0 1px 5px 0 rgba(0,0,0,0.12);
  box-shadow: 0 2px 2px 0 rgba(0,0,0,0.14), 0 3px 1px -2px rgba(0,0,0,0.2), 0 1px 5px 0 rgba(0,0,0,0.12);
}
.home__search form input {
  display: inline-block;
  font-size: 16px;
  letter-spacing: 0.4px;
  width: 100%;
  padding: 0 59px 0 15px;
  height: 44px;
  border: none;
  vertical-align: middle;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  color: #444;
  background-color: #fff;
}
.home__search form input::-webkit-input-placeholder {
  opacity: 0.8;
}
.home__search form input::-moz-placeholder {
  opacity: 0.8;
}
.home__search form input:-ms-input-placeholder {
  opacity: 0.8;
}
.home__search form button {
  position: absolute;
  right: 0;
  top: 0;
  height: 44px;
  font-size: 24px;
  width: 44px;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-border-radius: 0 4px 4px 0;
  border-radius: 0 4px 4px 0;
  color: #fff;
  background-color: #ef5350;
}
.home__search form button i {
  line-height: 44px;
}
.home__search span {
  display: inline-block;
  font-size: 16px;
  padding: 0 15px;
}
.home__search a {
  display: inline-block;
}
.home--slider {
  background: transparent;
}
.home--slider .home__title {
  z-index: 2;
}
.home--slider .owl-carousel {
  position: absolute;
  z-index: 1;
}
.home--slider .item {
  position: relative;
  height: 100vh;
  overflow: hidden;
  margin-top: -56px;
}
.home--bg {
  background: url("../img/page-headers/home_bg.jpg") no-repeat center/cover;
}
@media (min-width: 768px) {
  .home {
    padding-top: 62px;
  }
  .home--slider .item {
    margin-top: -62px;
  }
  .home__text-wrap h1 {
    font-size: 40px;
  }
  .home__text-wrap p {
    margin: 0 0 35px;
  }
  .home__search form {
    width: 380px;
  }
}
@media (min-width: 992px) {
  .home__search form {
    width: 400px;
  }
}
@media (min-width: 1200px) {
  .home__text-wrap h1 {
    font-size: 44px;
  }
  .home__search form {
    width: 480px;
    margin-bottom: 0;
  }
}
/*==============================
	Content
==============================*/
.section-title {
  display: block;
  margin-bottom: 35px;
}
.section-title h2 {
  display: block;
  font-size: 28px;
  margin: 0;
  font-weight: 500;
  font-family: 'Roboto', sans-serif;
  color: #444;
}
.section-title p {
  display: block;
  font-size: 16px;
  position: relative;
  line-height: 100%;
line-height:24px;
  font-family: 'Open Sans', sans-serif;
  margin: 10px 0 0 0;
  color: rgba(68,68,68,0.75);
}

@media (min-width: 768px) {
  .section-title {
    margin-bottom: 45px;
  }
  .section-title h2 {
    font-size: 30px;
  }
}
@media (min-width: 1200px) {
  .section-title {
    margin-bottom: 50px;
  }
  .section-title h2 {
    font-size: 32px;
  }
}
.view-all {
  margin-top: 35px;
  text-align: center;
}
.card-grid {
  margin-top: 25px;
  margin-bottom: 25px;
}
.card-grid .faq-card {
  height: auto;
}
.card-grid--mb {
  margin-bottom: 55px;
}
.pagination-wrap {
  text-align: center;
  padding: 20px 0 70px;
}
.pagination {
  margin: 0;
}
.pagination li a,
.pagination li span {
  border: none;
  font-weight: 500;
  padding: 0 18px;
  font-size: 16px;
  margin-left: 0;
  line-height: 36px;
  background-color: #ef5350;
  color: #fff;
}
.pagination li a:hover,
.pagination li span:hover,
.pagination li a:focus,
.pagination li span:focus {
  background-color: #ef5350;
  color: rgba(0,0,0,0.4);
}
.pagination li:first-child a,
.pagination li:first-child span {
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}
.pagination li:last-child a,
.pagination li:last-child span {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}
.pagination li.disabled a,
.pagination li.disabled span {
  background-color: #ef5350;
  color: #fff;
}
.pagination li.disabled a:hover,
.pagination li.disabled span:hover,
.pagination li.disabled a:focus,
.pagination li.disabled span:focus {
  background-color: #ef5350;
  color: #fff;
}
.pagination li.active a,
.pagination li.active span {
  line-height: 44px;
  margin-top: -4px;
  background-color: #fff;
  color: #444;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  -webkit-box-shadow: 0 2px 12px rgba(0,0,0,0.25);
  box-shadow: 0 2px 12px rgba(0,0,0,0.25);
}
.pagination li.active a:hover,
.pagination li.active span:hover,
.pagination li.active a:focus,
.pagination li.active span:focus {
  background-color: #fff;
  color: #444;
}
/*==============================
	Sliders(owl-carousel)
==============================*/
.img-carousel .owl-dots .owl-dot span {
  border-color: #fff;
}
.img-carousel .owl-dots .owl-dot:hover span {
  background-color: rgba(239,83,80,0.6);
}
.img-carousel .owl-dots .owl-dot.active span {
  background-color: #ef5350;
}
.card-carousel .owl-dots {
  bottom: -30px;
}
.card-carousel .owl-dots .owl-dot span {
  border-color: #ef5350;
}
.card-carousel .owl-dots .owl-dot:hover span {
  border-color: rgba(239,83,80,0.6);
  background-color: transparent;
}
.card-carousel .owl-dots .owl-dot.active span {
  background-color: #ef5350;
  border-color: #ef5350;
}
.card-carousel .owl-item img {
  width: auto;
}
/*==============================
	Card
==============================*/
.card {
  position: relative;
  display: block;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  -webkit-box-shadow: 0 1px 5px rgba(0,0,0,0.25);
  box-shadow: 0 1px 5px rgba(0,0,0,0.25);
  will-change: box-shadow, transform;
  -webkit-transition: box-shadow 0.2s cubic-bezier(0.4, 0, 1, 1), background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1), color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  -moz-transition: box-shadow 0.2s cubic-bezier(0.4, 0, 1, 1), background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1), color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  transition: box-shadow 0.2s cubic-bezier(0.4, 0, 1, 1), background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1), color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.card:hover {
  -webkit-box-shadow: 0 2px 12px rgba(0,0,0,0.25);
  box-shadow: 0 2px 12px rgba(0,0,0,0.25);
}
.card--no-shadow {
  -webkit-box-shadow: none;
  box-shadow: none;
  will-change: box-shadow, transform;
  -webkit-transition: box-shadow 0.3s cubic-bezier(0.4, 0, 1, 1), background-color 0.3s cubic-bezier(0.4, 0, 0.2, 1), color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  -moz-transition: box-shadow 0.3s cubic-bezier(0.4, 0, 1, 1), background-color 0.3s cubic-bezier(0.4, 0, 0.2, 1), color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: box-shadow 0.3s cubic-bezier(0.4, 0, 1, 1), background-color 0.3s cubic-bezier(0.4, 0, 0.2, 1), color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.card--no-shadow:hover {
  -webkit-box-shadow: 0 2px 12px rgba(0,0,0,0.25);
  box-shadow: 0 2px 12px rgba(0,0,0,0.25);
}
/* Service card */
.service-card {
  margin: 15px 0;
}
.service-card a {
  display: block;
  width: 100%;
  height: 100%;
}
.service-card h2 {
  display: block;
  position: relative;
  font-size: 27px;
  line-height: 100%;
  font-weight: 400;
  margin-left: 70px;
  margin-bottom: 5px;
}
.service-card h6 {
  display: block;
  position: relative;
  font-size: 13px;
  text-transform: uppercase;
  margin-left: 70px;
  margin-bottom: 5px;
  color: #757575;
}
.service-card h6 span {
  margin-right: 6px;
  color: #ef5350;
}
.service-card p {
  margin: 10px 0 0 70px;
}
.service-card .icon {
  display: block;
  position: absolute;
  background-color: #ef5350;
  color: #fff;
  width: 50px;
  height: 50px;
  text-align: center;
  line-height: 50px;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  top: 15px;
  left: 15px;
  font-weight: 700;
  font-size: 24px;
  -webkit-box-shadow: 0 2px 2px 0 rgba(0,0,0,0.14), 0 3px 1px -2px rgba(0,0,0,0.2), 0 1px 5px 0 rgba(0,0,0,0.12);
  box-shadow: 0 2px 2px 0 rgba(0,0,0,0.14), 0 3px 1px -2px rgba(0,0,0,0.2), 0 1px 5px 0 rgba(0,0,0,0.12);
  will-change: box-shadow;
  -webkit-transition: box-shadow 0.35s cubic-bezier(0.4, 0, 1, 1), background-color 0.35s cubic-bezier(0.4, 0, 0.2, 1), color 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  -moz-transition: box-shadow 0.35s cubic-bezier(0.4, 0, 1, 1), background-color 0.35s cubic-bezier(0.4, 0, 0.2, 1), color 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  transition: box-shadow 0.35s cubic-bezier(0.4, 0, 1, 1), background-color 0.35s cubic-bezier(0.4, 0, 0.2, 1), color 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.service-card:hover .icon {
  background-color: #fff;
  color: #ef5350;
  -webkit-box-shadow: 0 4px 5px 0 rgba(0,0,0,0.14), 0 1px 10px 0 rgba(0,0,0,0.12), 0 2px 4px -1px rgba(0,0,0,0.2);
  box-shadow: 0 4px 5px 0 rgba(0,0,0,0.14), 0 1px 10px 0 rgba(0,0,0,0.12), 0 2px 4px -1px rgba(0,0,0,0.2);
}
/* Article card */
.article-card {
  height: 360px;
  margin: 15px 0;
  padding: 15px 20px 30px;
  background-color: #fff;
}
.article-card .card-wrap {
  position: absolute;
  display: block;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: hidden;
  -webkit-border-radius: 4px;
  border-radius: 4px;
}
.article-card .card-wrap a {
  position: absolute;
  display: block;
  width: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 4;
}
.article-card .card-wrap img {
  position: absolute;
  top: -999px;
  bottom: -999px;
  left: -999px;
  right: -999px;
  margin: auto;
  z-index: 1;
  max-width: none;
}
.article-card .card-wrap .category {
  font-family: 'Open Sans', sans-serif;
  display: inline-block;
  position: relative;
  margin: 20px 0 0 20px;
  padding: 0 6px;
  line-height: 16px;
  font-size: 11px;
  letter-spacing: 0.5px;
  font-weight: 600;
  text-transform: uppercase;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  z-index: 3;
}
.article-card .card-wrap h3 {
  display: block;
  position: relative;
  padding: 0 20px;
  margin: 15px 0;
  font-size: 30px;
  line-height: 32px;
  letter-spacing: 0.8px;
  z-index: 3;
  color: #fff;
  -webkit-transition: color 0.2s;
  -moz-transition: color 0.2s;
  transition: color 0.2s;
}
.article-card .card-wrap p {
  display: block;
  position: relative;
  padding: 0 20px;
  margin: 0;
  font-size: 15px;
  z-index: 3;
  color: rgba(255,255,255,0.9);
}
.article-card .card-wrap .statistic {
  display: block;
  position: absolute;
  height: 20px;
  bottom: 10px;
  left: 20px;
  padding: 0;
  margin: 0;
  list-style: none;
  z-index: 5;
}
.article-card .card-wrap .statistic li {
  display: inline-block;
  line-height: 20px;
  margin-right: 15px;
  color: rgba(255,255,255,0.8);
}
.article-card .card-wrap .statistic li a {
  display: inline-block;
  position: relative;
  float: left;
  width: auto;
  line-height: 20px;
  font-size: 18px;
  margin-right: 6px;
}
.article-card .card-wrap .statistic li a i {
  line-height: 20px;
}
.article-card .card-wrap .statistic li span {
  display: inline-block;
  float: left;
  line-height: 20px;
  font-size: 14px;
  font-family: 'Open Sans', sans-serif;
}
.article-card .card-wrap .statistic li.likes a {
  color: #ef5350;
}
.article-card .card-wrap .statistic li.comments a {
  color: #03a9f4;
}
.article-card .card-wrap:before {
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  background-color: rgba(0,0,0,0.45);
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  transition: 0.4s;
}
.article-card:hover .card-wrap:before {
  background-color: rgba(0,0,0,0.55);
}
.article-card:hover .card-wrap h3 {
  color: #ef5350;
}
.article-card--white .card-wrap h3 {
  color: #444;
}
.article-card--white .card-wrap p {
  color: #757575;
}
.article-card--white .card-wrap .statistic li {
  color: #898989;
}
.article-card--white .card-wrap:before {
  display: none;
}
/* FAQ card */
.faq-card {
  height: auto;
  margin-top: 15px;
  margin-bottom: 15px;
  overflow: hidden;
  padding: 20px;
  background-color: #fff;
}

.faq-card h3 {
  display: block;
  position: relative;
  font-size: 26px;
  letter-spacing: 0.8px;
  margin-bottom: 10px;
}

.faq-card p {
  display: block;
  font-size: 15px;
  margin: 0;
  margin-bottom:10px;
}

@media (min-width: 992px) {
  /*.faq-card {*/
  /*  height: 660px;*/
  /*}*/
}
/* Testimonial card */
.testimonial-card {
  margin-top: 15px;
  margin-bottom: 15px;
  padding: 30px 0;
  text-align: center;
  background-color: #fff;
}
.testimonial-card img {
  height: 70px;
  width: 70px;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  margin-bottom: 10px;
}
.testimonial-card h4 {
  font-size: 24px;
  margin-bottom: 5px;
  font-weight: 400;
}
.testimonial-card span {
  font-size: 16px;
  margin-bottom: 10px;
  color: #ef5350;
}
.testimonial-card p {
  padding: 15px 50px 0;
  margin: 0;
  font-size: 15px;
}
.testimonial-card:after {
  font-family: Material-Design-Iconic-Font;
  content: '\f1b2';
  position: absolute;
  font-size: 36px;
  top: 30px;
  left: 65px;
  color: rgba(117,117,117,0.4);
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  transform: rotate(180deg);
}
/* Team card */
.team-card {
  margin-top: 15px;
  margin-bottom: 15px;
  padding: 30px 0;
  text-align: center;
  -webkit-box-shadow: none;
  box-shadow: none;
  background-color: #fff;
}
.team-card img {
  display: block;
  height: 70px;
  width: 70px;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  margin: 0 auto 10px;
}
.team-card h4 {
  font-size: 24px;
  margin-bottom: 5px;
  font-weight: 400;
}
.team-card span {
  font-size: 16px;
  margin-bottom: 10px;
  color: #ef5350;
}
.team-card ul {
  list-style: none;
  text-align: center;
  padding: 0;
  margin-top: 20px;
  margin-bottom: 0;
}
.team-card ul li {
  display: inline-block;
  margin: 0 10px;
}
.team-card ul li a {
  font-size: 24px;
  color: #757575;
}
.team-card ul li a:hover {
  color: #ef5350;
}
/* Knowledge card */
.knowledge-card {
  display: block;
  height: auto;
  margin-top: 15px;
  margin-bottom: 15px;
  background-color: #fff;
  overflow: hidden;
}
.knowledge-card__title {
  display: block;
  padding: 15px 20px;
  background-color: #ef5350;
}
.knowledge-card__title a {
  font-size: 16px;
  color: #fff;
  letter-spacing: 0.4px;
}
.knowledge-card__list {
  padding: 15px 20px;
}
.knowledge-card__list li {
  display: block;
  margin-bottom: 10px;
  position: relative;
  padding-left: 20px;
  line-height: 24px;
}
.knowledge-card__list li:last-child {
  margin-bottom: 0;
}
.knowledge-card__list li:before {
  font-family: Material-Design-Iconic-Font;
  content: '\f222';
  font-size: 16px;
  position: absolute;
  left: 0;
  top: 0;
  line-height: 24px;
  color: #757575;
}
.knowledge-card__list a {
  font-size: 16px;
  color: #757575;
  letter-spacing: 0.4px;
}
.knowledge-card__list a:hover {
  color: #ef5350;
}
.category {
  color: #fff;
}
.category--pink {
  background-color: #ec407a;
}
.category--purple {
  background-color: #ab47bc;
}
.category--indigo {
  background-color: #5c6bc0;
}
.category--teal {
  background-color: #26a69a;
}
.category--orange {
  background-color: #ffa726;
}
.category--red {
  background-color: #ef5350;
}
/*==============================
	Footer
==============================*/
.footer {
  position: relative;
  padding: 35px 0 20px;
  background-color: #424242;
}
.footer__copyright {
  text-align: center;
}
.footer__copyright small {
  line-height: 26px;
  font-size: 14px;
  color: #757575;
}
.footer__copyright a {
  color: #ef5350;
}
.footer__copyright a:hover {
  text-decoration: underline;
}
.footer__social-list {
  list-style: none;
  padding: 0;
  margin-bottom: 10px;
  text-align: center;
  height: 26px;
}
.footer__social-list li {
  display: inline-block;
  font-size: 24px;
  line-height: 26px;
  margin-left: 20px;
}
.footer__social-list li:first-child {
  margin-left: 0;
}
.footer__social-list a {
  color: #757575;
}
.footer__social-list a:hover {
  color: #fff;
}
.footer__btn {
  position: absolute;
  height: 50px;
  width: 50px;
  left: 50%;
  top: -25px;
  margin: 0 0 0 -25px;
  background-color: #ef5350;
  color: #fff;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  will-change: box-shadow, transform;
  -webkit-transition: box-shadow 0.2s cubic-bezier(0.4, 0, 1, 1), background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1), color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  -moz-transition: box-shadow 0.2s cubic-bezier(0.4, 0, 1, 1), background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1), color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  transition: box-shadow 0.2s cubic-bezier(0.4, 0, 1, 1), background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1), color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-box-shadow: 0 2px 2px 0 rgba(0,0,0,0.14), 0 3px 1px -2px rgba(0,0,0,0.2), 0 1px 5px 0 rgba(0,0,0,0.12);
  box-shadow: 0 2px 2px 0 rgba(0,0,0,0.14), 0 3px 1px -2px rgba(0,0,0,0.2), 0 1px 5px 0 rgba(0,0,0,0.12);
}
.footer__btn i {
  font-size: 24px;
}
.footer__btn:hover {
  background-color: #ef5350;
  -webkit-box-shadow: 0 4px 5px 0 rgba(0,0,0,0.14), 0 1px 10px 0 rgba(0,0,0,0.12), 0 2px 4px -1px rgba(0,0,0,0.2);
  box-shadow: 0 4px 5px 0 rgba(0,0,0,0.14), 0 1px 10px 0 rgba(0,0,0,0.12), 0 2px 4px -1px rgba(0,0,0,0.2);
}
@media (min-width: 768px) {
  .footer {
    padding: 20px 0;
  }
  .footer__social-list {
    margin-bottom: 0;
    text-align: right;
  }
  .footer__copyright {
    text-align: left;
  }
}
/*==============================
	Secondary page title
==============================*/
.page-title {
  position: relative;
  width: 100%;
  padding: 60px 0;
  margin-top: 56px;
  background: url(../img/page-headers/about_bg.jpg) no-repeat center/cover;
}
.page-title h1 {
  margin: 0 0 5px 0;
  font-size: 32px;
  line-height: 100%;
  color: #fff;
  letter-spacing: 0.6px;
}
.page-title p {
  font-size: 16px;
  color: #fff;
  margin: 0;
  letter-spacing: 0.4px;
}
.page-title-about{
      background: url(../img/howdoisetup-banner.jpeg) no-repeat center/cover !important;
}

@media (min-width: 768px) {
  .page-title {
    padding: 90px 0;
    margin-top: 62px;
  }
  .page-title h1 {
    font-size: 36px;
  }
}
/*==============================
	Filter
==============================*/
.filter {
  height: 120px;
  overflow: hidden;
  -webkit-box-shadow: 0 2px 3px rgba(0,0,0,0.1);
  box-shadow: 0 2px 3px rgba(0,0,0,0.1);
  background-color: #fff;
}
.filter__search {
  position: relative;
  height: 60px;
  width: 100%;
  overflow: hidden;
  border-bottom: 1px solid rgba(117,117,117,0.2);
}
.filter__search input[type="text"] {
  border: none;
  line-height: 60px;
  height: 60px;
  padding: 0 35px 0 0;
  font-size: 16px;
  z-index: 1;
}
.filter__search button {
  position: absolute;
  right: 0;
  top: 0;
  font-size: 24px;
  height: 60px;
  width: 32px;
  background-color: transparent;
  z-index: 2;
  color: #444;
}
.filter__search:before {
  z-index: 3;
  content: '';
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 2px;
  left: 0;
  right: 0;
  background-color: #ef5350;
  -webkit-transform: translateY(3px);
  -moz-transform: translateY(3px);
  transform: translateY(3px);
  -webkit-transition: transform 0.24s ease-out;
  -moz-transition: transform 0.24s ease-out;
  transition: transform 0.24s ease-out;
}
.filter__search.focus:before {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  transform: translateY(0);
}
.filter .sort {
  display: inline-block;
  list-style: none;
  margin: 0;
  padding: 0;
  height: 60px;
}
.filter .sort li {
  display: inline-block;
  font-size: 16px;
  line-height: 60px;
  float: left;
  margin: 0 25px 0 0;
  font-weight: 400;
  color: #444;
}
.filter .sort li:first-child {
  margin: 0 30px 0 0;
}
.filter .sort li a {
  position: relative;
  display: block;
  height: 60px;
  backface-visibility: hidden;
  overflow: hidden;
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  transform: translateZ(0);
  color: #444;
}
.filter .sort li a:before {
  content: '';
  position: absolute;
  z-index: -1;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background-color: #ef5350;
  -webkit-transform: translateY(3px);
  -moz-transform: translateY(3px);
  transform: translateY(3px);
  -webkit-transition: transform 0.24s ease-out;
  -moz-transition: transform 0.24s ease-out;
  transition: transform 0.24s ease-out;
}
.filter .sort li a:hover:before {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  transform: translateY(0);
}
.filter .sort li a.active {
  font-weight: 500;
}
.filter .sort li a.active:before {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  transform: translateY(0);
}
@media (min-width: 768px) {
  .filter {
    height: 60px;
  }
  .filter__search {
    border-bottom: none;
  }
}
/*==============================
	Chat page
==============================*/
.chat-button--fixed {
  position: fixed;
  height: 50px;
  width: 50px;
  line-height: 50px;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  font-size: 24px;
  z-index: 8;
  bottom: 15px;
  right: 15px;
  background-color: #ef5350;
  color: #fff;
  will-change: box-shadow;
  -webkit-transition: box-shadow 0.2s cubic-bezier(0.4, 0, 1, 1), background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1), color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  -moz-transition: box-shadow 0.2s cubic-bezier(0.4, 0, 1, 1), background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1), color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  transition: box-shadow 0.2s cubic-bezier(0.4, 0, 1, 1), background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1), color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-box-shadow: 0 2px 2px 0 rgba(0,0,0,0.14), 0 3px 1px -2px rgba(0,0,0,0.2), 0 1px 5px 0 rgba(0,0,0,0.12);
  box-shadow: 0 2px 2px 0 rgba(0,0,0,0.14), 0 3px 1px -2px rgba(0,0,0,0.2), 0 1px 5px 0 rgba(0,0,0,0.12);
}
.chat-button--fixed i {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  height: 50px;
  width: 50px;
  line-height: 50px;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
}
.chat-button--fixed i.zmdi-close {
  opacity: 0;
  font-size: 0;
}
.chat-button--fixed i.zmdi-menu {
  opacity: 1;
  font-size: 24px;
}
.chat-button--fixed:hover {
  -webkit-box-shadow: 0 4px 5px 0 rgba(0,0,0,0.14), 0 1px 10px 0 rgba(0,0,0,0.12), 0 2px 4px -1px rgba(0,0,0,0.2);
  box-shadow: 0 4px 5px 0 rgba(0,0,0,0.14), 0 1px 10px 0 rgba(0,0,0,0.12), 0 2px 4px -1px rgba(0,0,0,0.2);
}
.chat-button--fixed.active i.zmdi-comments {
  opacity: 0;
  font-size: 0;
}
.chat-button--fixed.active i.zmdi-close {
  opacity: 1;
  font-size: 24px;
}
@media (min-width: 768px) {
  .chat-button--fixed {
    bottom: 20px;
    right: 20px;
  }
}
.chat {
  position: fixed;
  top: 0;
  display: block;
  height: 100%;
  right: 0;
  bottom: 0;
  width: 320px;
  overflow-y: auto;
  z-index: 7;
  background-color: #fff;
  -webkit-box-shadow: -2px 0 2px 0 rgba(0,0,0,0.14), 0 3px 1px -2px rgba(0,0,0,0.2), 0 1px 5px 0 rgba(0,0,0,0.12);
  box-shadow: -2px 0 2px 0 rgba(0,0,0,0.14), 0 3px 1px -2px rgba(0,0,0,0.2), 0 1px 5px 0 rgba(0,0,0,0.12);
  -webkit-transition: all 0.36s;
  -moz-transition: all 0.36s;
  transition: all 0.36s;
  -webkit-transform: translate3d(325px, 0, 0);
  -moz-transform: translate3d(325px, 0, 0);
  transform: translate3d(325px, 0, 0);
}
.chat.active {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.chat__content {
  position: absolute;
  bottom: 0;
  top: 190px;
  right: 0;
  left: 0;
}
.chat__text-wrap {
  background-color: #fff;
  position: absolute;
  bottom: 100%;
  z-index: 2;
  display: block;
  padding: 0 15px;
}
.chat__title {
  font-size: 24px;
  font-weight: 500;
  display: block;
  margin-bottom: 5px;
  letter-spacing: 0.4px;
  color: #444;
}
.chat__message-wrap {
  display: block;
  position: absolute;
  overflow-y: auto;
  height: auto;
  top: 0;
  bottom: 132px;
  padding: 0 5px;
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  resize: none;
  z-index: 1;
  border-color: rgba(117,117,117,0.2);
}
.chat__message-wrap .message {
  position: relative;
  margin-top: 20px;
  margin-bottom: 20px;
}
.chat__message-wrap .message.user .text {
  color: #fff;
  background-color: #ef5350;
}
.chat__message-wrap .message.user .text a {
  color: #fff;
}
.chat__message-wrap .message.user .text:after {
  border-color: transparent #ef5350 transparent transparent;
}
.chat__message-wrap .message.user .autor {
  color: #fff;
}
.chat__message-wrap .message.user .time {
  color: rgba(255,255,255,0.8);
}
.chat__message-wrap .avatar-wrap {
  position: absolute;
}
.chat__message-wrap .avatar-wrap .avatar {
  margin: 0 10px;
  width: 40px;
  height: 40px;
}
.chat__message-wrap .avatar-wrap img {
  width: 100%;
  height: auto;
  -webkit-border-radius: 50%;
  border-radius: 50%;
}
.chat__message-wrap .text-wrap {
  display: block;
  width: 100%;
  padding-left: 60px;
  padding-right: 10px;
  position: relative;
}
.chat__message-wrap .text {
  display: block;
  position: relative;
  -webkit-border-radius: 0 4px 4px 4px;
  border-radius: 0 4px 4px 4px;
  padding: 30px 55px 10px 15px;
  min-height: 42px;
  font-size: 14px;
  line-height: 21px;
  font-family: 'Open Sans', sans-serif;
  z-index: 1;
  color: #444;
  background-color: #eee;
}
.chat__message-wrap .text a {
  color: #444;
  text-decoration: underline;
}
.chat__message-wrap .text a:hover {
  text-decoration: none;
}
.chat__message-wrap .text:after {
  content: '';
  position: absolute;
  top: 0;
  left: -8px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 8px 8px 0;
  border-color: transparent #eee transparent transparent;
}
.chat__message-wrap .text:before {
  content: '';
  position: absolute;
  top: -1px;
  left: -10px;
  width: 10px;
  height: 10px;
  z-index: 2;
  -webkit-border-radius: 0 80% 0 0;
  border-radius: 0 80% 0 0;
  background-color: #fff;
}
.chat__message-wrap .autor {
  position: absolute;
  top: 0;
  left: 75px;
  z-index: 2;
  line-height: 30px;
  font-size: 16px;
  font-weight: 500;
  color: #444;
}
.chat__message-wrap .time {
  position: absolute;
  right: 20px;
  top: 0;
  font-weight: 300;
  font-size: 11px;
  text-align: center;
  z-index: 2;
  line-height: 30px;
  color: rgba(117,117,117,0.8);
}
.chat__write {
  position: absolute;
  width: 100%;
  padding: 0 15px;
  bottom: 75px;
}
.chat__write input {
  padding: 0 10px;
  width: 215px;
  background-color: #fff;
}
.chat__write button {
  position: absolute;
  top: 0;
  right: 15px;
  font-size: 24px;
  padding: 0;
  width: 56px;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.chat__text {
  margin-bottom: 15px;
}
@media (min-width: 480px) {
  .chat {
    width: 380px;
    -webkit-transform: translate3d(385px, 0, 0);
    -moz-transform: translate3d(385px, 0, 0);
    transform: translate3d(385px, 0, 0);
  }
  .chat__write {
    bottom: 85px;
  }
  .chat__write input {
    width: 275px;
  }
  .chat__message-wrap {
    bottom: 147px;
  }
  .chat__content {
    top: 220px;
  }
  .chat__text {
    margin-bottom: 20px;
  }
}
@media (min-width: 768px) {
  .chat__write {
    padding: 0 20px;
  }
  .chat__write input {
    width: 270px;
  }
  .chat__write button {
    right: 20px;
  }
  .chat__message-wrap {
    padding: 0 10px;
  }
  .chat__text-wrap {
    padding: 0 20px;
  }
}
/*==============================
	Contacts page
==============================*/
.contact__phone {
  font-size: 30px;
  font-weight: 600;
  font-family: 'Open Sans', sans-serif;
  line-height: 40px;
  color: #444;
}
.contact__form {
  margin-top: 60px;
}
@media (min-width: 768px) {
  .contact__form {
    margin-top: 0;
  }
}
.map {
  width: 100%;
  height: 400px;
}
@media (min-width: 768px) {
  .map {
    height: 500px;
  }
}
/*==============================
	Article page
==============================*/
.article__head {
  display: block;
  position: relative;
  margin-top: 56px;
}
.article__head .title {
  padding: 110px 0;
  position: relative;
  z-index: 1;
}
.article__head h1 {
  letter-spacing: 0.8px;
  margin: 0;
  color: #fff;
  font-size: 30px;
}
.article__head .category {
  font-family: 'Open Sans', sans-serif;
  display: inline-block;
  margin: 0 0 15px;
  padding: 0 8px;
  line-height: 18px;
  font-size: 11px;
  letter-spacing: 0.5px;
  font-weight: 600;
  text-transform: uppercase;
  -webkit-border-radius: 2px;
  border-radius: 2px;
}
.article__head .share {
  position: absolute;
  display: block;
  z-index: 1;
  height: 50px;
  width: 50px;
  right: 0;
  bottom: -25px;
}
.article__head .share button {
  position: relative;
  height: 50px;
  width: 50px;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  color: #fff;
  background-color: #ef5350;
  will-change: box-shadow;
  -webkit-transition: box-shadow 0.2s cubic-bezier(0.4, 0, 1, 1), background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1), color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  -moz-transition: box-shadow 0.2s cubic-bezier(0.4, 0, 1, 1), background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1), color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  transition: box-shadow 0.2s cubic-bezier(0.4, 0, 1, 1), background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1), color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-box-shadow: 0 2px 2px 0 rgba(0,0,0,0.14), 0 3px 1px -2px rgba(0,0,0,0.2), 0 1px 5px 0 rgba(0,0,0,0.12);
  box-shadow: 0 2px 2px 0 rgba(0,0,0,0.14), 0 3px 1px -2px rgba(0,0,0,0.2), 0 1px 5px 0 rgba(0,0,0,0.12);
}
.article__head .share button i {
  font-size: 24px;
  line-height: 50px;
}
.article__head .share button:hover {
  -webkit-box-shadow: 0 4px 5px 0 rgba(0,0,0,0.14), 0 1px 10px 0 rgba(0,0,0,0.12), 0 2px 4px -1px rgba(0,0,0,0.2);
  box-shadow: 0 4px 5px 0 rgba(0,0,0,0.14), 0 1px 10px 0 rgba(0,0,0,0.12), 0 2px 4px -1px rgba(0,0,0,0.2);
}
.article__text {
  margin: 35px 0 25px;
}
.article__text h1,
.article__text h2,
.article__text h3 {
  letter-spacing: 0.8px;
}
.article__text p {
  font-size: 15px;
  line-height: 26px;
}
.article__text p a:hover {
  text-decoration: underline;
}
.article__text h1 {
  font-size: 30px;
}
.article__text h2 {
  font-size: 28px;
}
.article__text img {
  margin-bottom: 20px;
}
.article__text ul {
  padding: 0 0 0 15px;
  margin: 0 0 20px;
  font-size: 15px;
  line-height: 26px;
  color: #757575;
  list-style: disc;
}
.article__text blockquote {
  position: relative;
  font-size: 15px;
  border: none;
  padding: 0 0 0 30px;
  margin: 30px 0;
  letter-spacing: 0.5px;
  line-height: 24px;
  color: #757575;
}
.article__text blockquote:before {
  font-family: Material-Design-Iconic-Font;
  content: '\f1b2';
  position: absolute;
  font-size: 24px;
  top: 0;
  left: 0;
  color: #ef5350;
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  transform: rotate(180deg);
}
.article__statistic {
  display: block;
  margin: 0 0 50px;
  padding: 0;
  height: 20px;
}
.article__statistic li {
  display: inline-block;
  line-height: 20px;
  margin-right: 25px;
  padding: 0;
  background-color: transparent;
  color: #898989;
}
.article__statistic li a {
  display: inline-block;
  float: left;
  background-color: transparent;
  height: 20px;
  font-size: 18px;
  margin-right: 6px;
}
.article__statistic li a i {
  line-height: 20px;
}
.article__statistic li span {
  display: inline-block;
  float: left;
  line-height: 20px;
  font-size: 14px;
  font-family: 'Open Sans', sans-serif;
}
.article__statistic li:last-child {
  margin-right: 0;
}
.article__statistic li.likes a {
  color: #ef5350;
}
.article__statistic li.comments a {
  color: #03a9f4;
}
.article__comments {
  background-color: #eee;
}
.article__comments-title {
  margin-top: 50px;
  margin-bottom: 30px;
  letter-spacing: 0.8px;
}
.article__comments-list {
  padding: 0;
  margin: 0;
  list-style: none;
}
.article__comments-list .comment {
  margin-bottom: 30px;
}
.article__comments-list .comment .actions {
  padding: 0 0 10px;
}
.article__comments-list .comment .autor {
  display: inline-block;
  position: relative;
  float: left;
}
.article__comments-list .comment .autor .name {
  color: #ef5350;
}
.article__comments-list .comment .autor .time {
  color: #757575;
}
.article__comments-list .comment .avatar {
  position: absolute;
  height: 48px;
  width: 48px;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  overflow: hidden;
}
.article__comments-list .comment .avatar img {
  width: 100%;
}
.article__comments-list .comment .name {
  display: block;
  padding-left: 60px;
  font-size: 16px;
  line-height: 24px;
}
.article__comments-list .comment .time {
  display: block;
  padding-left: 60px;
  font-weight: 300;
  font-size: 14px;
  line-height: 24px;
}
.article__comments-list .comment .reply-button {
  display: inline-block;
  float: right;
  background-color: transparent;
  line-height: 48px;
  height: 48px;
  font-size: 24px;
  color: #757575;
}
.article__comments-list .comment .reply-button:hover {
  color: #ef5350;
}
.article__comments-list .comment .text {
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  line-height: 24px;
  color: #757575;
}
.article__comments-list .comment .text a {
  color: #ef5350;
}
.article__comments-list .comment .text a:hover {
  text-decoration: underline;
}
.article__comments-list .reply {
  padding: 0 0 0 40px;
}
.article__comments-form {
  margin-bottom: 100px;
}
@media (min-width: 768px) {
  .article__head {
    margin-top: 62px;
  }
  .article__head h1 {
    font-size: 36px;
  }
  .article__text h1 {
    font-size: 36px;
  }
  .article__text h2 {
    font-size: 30px;
  }
  .article__text blockquote {
    font-size: 16px;
    margin: 40px 0;
    padding: 0 0 0 40px;
  }
  .article__comments-list .reply {
    padding: 0 0 0 80px;
  }
}
/*==============================
	404 page
==============================*/
.page-404 {
  position: relative;
  display: table;
  width: 100%;
  height: 100vh;
  background: url("../img/other/404.jpg") no-repeat center center/cover;
}
.page-404__content {
  display: table-cell;
  height: 100%;
  width: 100%;
  vertical-align: middle;
  text-align: center;
}
.page-404__content h1 {
  font-size: 150px;
  margin: 0;
  color: #ef5350;
}
.page-404__content p {
  font-size: 16px;
  margin-bottom: 0;
  color: #fff;
  text-align:center;
}
.page-404__content a {
  margin: 0 10px;
}
.page-404__text {
  margin-bottom: 80px;
}
/*==============================
	Sidebar
==============================*/
.sidebar {
  margin-top: 0;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .sidebar {
    margin-top: 40px;
  }
}
.widget {
  display: block;
  position: relative;
  margin-bottom: 30px;
  background-color: #fff;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  -webkit-box-shadow: 0 1px 5px rgba(0,0,0,0.25);
  box-shadow: 0 1px 5px rgba(0,0,0,0.25);
  -webkit-transition: box-shadow 0.2s cubic-bezier(0.4, 0, 1, 1), background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1), color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  -moz-transition: box-shadow 0.2s cubic-bezier(0.4, 0, 1, 1), background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1), color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  transition: box-shadow 0.2s cubic-bezier(0.4, 0, 1, 1), background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1), color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
/* Category Menu */
.category-menu {
  list-style: none;
  padding: 0;
}
.category-menu li {
  display: block;
  position: relative;
  line-height: 42px;
  border-bottom: 1px solid rgba(117,117,117,0.2);
}
.category-menu li:last-child {
  border: none;
}
.category-menu li a {
  display: block;
  padding: 0 20px;
  font-size: 16px;
  color: #444;
}
.category-menu li a:hover {
  color: #ef5350;
}
.category-menu li span {
  float: right;
  font-size: 11px;
  display: inline-block;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  line-height: 20px;
  padding: 0 6px;
  margin-top: 11px;
  font-family: 'Open Sans', sans-serif;
  background-color: #ef5350;
  color: #fff;
}
/* Popular News */
.popular-articles {
  padding: 0 20px;
}
.popular-articles .article-preview {
  display: block;
  position: relative;
  padding: 20px 0;
  border-bottom: 1px solid rgba(117,117,117,0.2);
}
.popular-articles .article-preview h4 {
  line-height: 100%;
  font-size: 22px;
  margin-bottom: 5px;
}
.popular-articles .article-preview h4 a {
  font-weight: 500;
  color: #444;
}
.popular-articles .article-preview h4 a:hover {
  color: #ef5350;
}
.popular-articles .article-preview p {
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 14px;
  line-height: 20px;
  margin: 0;
}
.popular-articles .article-preview .statistic {
  display: block;
  position: relative;
  padding: 0;
  height: 16px;
  margin: 10px 0 0 0;
  list-style: none;
}
.popular-articles .article-preview .statistic li {
  display: inline-block;
  line-height: 16px;
  margin-right: 15px;
  color: #898989;
}
.popular-articles .article-preview .statistic li a {
  display: inline-block;
  float: left;
  background-color: transparent;
  border: none;
  padding: 0;
  height: 16px;
  font-size: 14px;
  margin-right: 5px;
}
.popular-articles .article-preview .statistic li a i {
  line-height: 16px;
}
.popular-articles .article-preview .statistic li span {
  display: inline-block;
  float: left;
  line-height: 16px;
  font-size: 12px;
  font-family: 'Open Sans', sans-serif;
}
.popular-articles .article-preview .statistic li:last-child {
  margin-right: 0;
}
.popular-articles .article-preview .statistic li.likes a {
  color: #ef5350;
}
.popular-articles .article-preview .statistic li.comments a {
  color: #03a9f4;
}
.popular-articles .article-preview:last-child {
  border: none;
}
/* Subscribe */
.subscribe {
  display: block;
  position: relative;
  margin-bottom: 20px;
  padding: 20px;
}
.subscribe h4 {
  font-size: 22px;
  margin-bottom: 20px;
}
.subscribe form .form-group {
  margin-bottom: 15px;
}
.subscribe form button {
  width: 100%;
}
.color-switcher {
  position: fixed;
  top: 200px;
  right: -200px;
  z-index: 6;
  width: 200px;
  height: auto;
  background-color: #fff;
  -webkit-transition: right 0.4s;
  -moz-transition: right 0.4s;
  transition: right 0.4s;
  -webkit-border-radius: 0 0 0 4px;
  border-radius: 0 0 0 4px;
  border-top: 1px solid rgba(0,0,0,0.2);
  border-left: 1px solid rgba(0,0,0,0.2);
  border-bottom: 1px solid rgba(0,0,0,0.2);
}
.color-switcher.open {
  right: 0;
}
.color-switcher .picker {
  display: block;
  width: 50px;
  height: 50px;
  position: absolute;
  left: -50px;
  top: -1px;
  z-index: -1;
  background-color: #fff;
  text-align: center;
  line-height: 50px;
  font-size: 26px;
  color: #424242;
  -webkit-border-radius: 4px 0 0 4px;
  border-radius: 4px 0 0 4px;
  cursor: pointer;
  border-top: 1px solid rgba(0,0,0,0.2);
  border-left: 1px solid rgba(0,0,0,0.2);
  border-bottom: 1px solid rgba(0,0,0,0.2);
}
.color-switcher .colors ul {
  padding: 0;
  list-style: none;
}
.color-switcher .colors ul li {
  display: block;
  margin: 10px;
}
.color-switcher .colors ul li a {
  display: block;
  width: 100%;
  height: 30px;
  color: #fff;
  text-align: center;
  line-height: 30px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
}
.color-switcher .colors ul li a.red {
  background-color: #ef5350;
}
.color-switcher .colors ul li a.indigo {
  background-color: #5c6bc0;
}
.color-switcher .colors ul li a.blue-grey {
  background-color: #90a4ae;
}
.color-switcher .colors ul li a.teal {
  background-color: #26a69a;
}
.color-switcher .colors ul li a.purple {
  background-color: #9c27b0;
}
.color-switcher .colors ul li a.dark {
  background-color: #424242;
}
@-moz-keyframes loading {
  from {
    left: -20px;
    width: 10%;
  }
  50% {
    width: 30%;
  }
  70% {
    width: 70%;
  }
  80% {
    left: 50%;
  }
  95% {
    left: 120%;
  }
  to {
    left: 100%;
  }
}
@-webkit-keyframes loading {
  from {
    left: -20px;
    width: 10%;
  }
  50% {
    width: 30%;
  }
  70% {
    width: 70%;
  }
  80% {
    left: 50%;
  }
  95% {
    left: 120%;
  }
  to {
    left: 100%;
  }
}
@-o-keyframes loading {
  from {
    left: -20px;
    width: 10%;
  }
  50% {
    width: 30%;
  }
  70% {
    width: 70%;
  }
  80% {
    left: 50%;
  }
  95% {
    left: 120%;
  }
  to {
    left: 100%;
  }
}
@keyframes loading {
  from {
    left: -20px;
    width: 10%;
  }
  50% {
    width: 30%;
  }
  70% {
    width: 70%;
  }
  80% {
    left: 50%;
  }
  95% {
    left: 120%;
  }
  to {
    left: 100%;
  }
}

.series {
    margin-bottom:20px;
}
.series li{
    list-style:decimal;
        font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    margin-left: 20px;
    color: #757575;
    text-align: justify;
}

.sere {
    margin-bottom:20px;
}
.sere li{
    list-style:disc;
        font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    margin-left: 20px;
    color: #757575;
    text-align: justify;
}

.dropdown-submenu {
    position: relative;
}

.dropdown-submenu>.dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -6px;
    margin-left: -1px;
    -webkit-border-radius: 0 6px 6px 6px;
    -moz-border-radius: 0 6px 6px;
    border-radius: 0 6px 6px 6px;
}

.dropdown:hover>.dropdown-menu {
    display: block;
}

.dropdown-submenu:hover>.dropdown-menu {
    display: block;
}
.dropdown-submenu>a:after {
    display: block;
    content: " ";
    float: right;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid;
    border-width: 5px 0 5px 5px;
    border-left-color: #ccc;
    margin-top: 16px;
    margin-right: -10px;
}

.dropdown-submenu:hover>a:after {
    border-left-color: #fff;
}
