@charset "UTF-8";
/*-------------------------------------------------------*/
/*-------------------------------------------------------*/
/* General
/*-------------------------------------------------------*/
.clearfix {
  *zoom: 1;
}

.clearfix:before, .clearfix:after {
  display: table;
  line-height: 0;
  content: "";
}

.clearfix:after {
  clear: both;
}

.clear {
  clear: both;
}

.oh {
  overflow: hidden;
}

.relative {
  position: relative;
}

.white {
  color: #fff;
}

.left {
  float: left;
}

.right {
  float: right;
}

.bg-light {
  background-color: #f2f4f5;
}

.bg-black {
  background-color: #1b1c1f;
}

.last {
  margin-bottom: 0 !important;
}

.img-fullwidth {
  width: 100%;
}

.uppercase {
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.nocaps {
  text-transform: none;
  letter-spacing: 0;
}

::-moz-selection {
  color: #333;
  background: #fbedc4;
}

::-webkit-selection {
  color: #333;
  background: #fbedc4;
}

::selection {
  color: #333;
  background: #fbedc4;
}

html {
  overflow-x: hidden;
  font-family: 'Poppins';
}

a {
  text-decoration: none;
  color: #0098d0;
}

a:hover,
a:focus {
  text-decoration: none;
  color: #404648;
}

body {
  margin: 0;
  padding: 0;
  /* font-family: "Poppins", "Georgia", serif; */
  font-family: "Poppins";
  font-size: 15px;
  line-height: 1.5;
  font-smoothing: antialiased;
  -webkit-font-smoothing: antialiased;
  background: #fff;
  outline: 0;
  overflow-x: hidden;
  overflow-y: auto;
  color: #878c8e;
  width: 100%;
  height: 100%;
}

body img {
  border: none;
  max-width: 100%;
  -webkit-user-select: none;
  -moz-user-select: none;
  -o-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

video {
  height: 100%;
  width: 100%;
}

/*-------------------------------------------------------*/
/* Typography
/*-------------------------------------------------------*/
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Open Sans", sans-serif;
  margin-top: 0;
  margin-bottom: 10px;
  color: #404648;
  font-weight: 700;
  line-height: 1.3;
}

h1 {
  font-size: 32px;
  letter-spacing: -0.03em;
}

h2 {
  font-size: 26px;
}

h3 {
  font-size: 23px;
}

h4 {
  font-size: 20px;
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 15px;
}

@media only screen and (max-width: 575px) {
  h1 {
    font-size: 26px;
  }
  h2 {
    font-size: 22px;
  }
  h3 {
    font-size: 18px;
  }
}

@media (max-width: 640px) {
  h1 {
    font-size: 24px;
  }
  h2 {
    font-size: 20px;
  }
  h3 {
    font-size: 19px;
  }
  h4 {
    font-size: 18px;
  }
}

h1 > a, h2 > a, h3 > a, h4 > a, h5 > a, h6 > a {
  color: inherit;
}

p {
  font-size: 16px;
  color: #878c8e;
  font-weight: normal;
  line-height: 26px;
  margin: 0 0 10px;
}

address {
  font-style: normal;
}

.lead {
  font-size: 18px;
  line-height: 30px;
}

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

.text-right {
  text-align: right;
}

.text-left {
  text-align: left;
}

@media only screen and (max-width: 1199px) {
  .text-lg-center {
    text-align: center;
  }
}

@media only screen and (max-width: 991px) {
  .text-md-center {
    text-align: center;
  }
}

@media only screen and (max-width: 767px) {
  .text-sm-center {
    text-align: center;
  }
}

@media only screen and (max-width: 575px) {
  .text-xs-center {
    text-align: center;
  }
}

blockquote {
  padding: 40px;
  background-color: #f7f9fa;
  text-align: center;
  margin-bottom: 40px;
  margin-top: 40px;
}

blockquote p {
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 10px !important;
  position: relative;
  color: #404648;
  font-family: "Open Sans", sans-serif;
}

blockquote cite {
  font-size: 15px;
  font-weight: 400;
  color: #adb6b9;
}

hr {
  margin-top: 20px;
  margin-bottom: 20px;
  border: 0;
  border-top: 1px solid #ebeeef;
}

/*-------------------------------------------------------*/
/* Grid
/*-------------------------------------------------------*/
.section {
  margin-bottom: 40px;
  overflow: hidden;
}

/* Flexbox
-------------------------------------------------------*/
.flex-parent {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-flow: row nowrap;
  -ms-flex-flow: row nowrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-flow: row nowrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.flex-child {
  -webkit-box-flex: 1 0 0;
  -webkit-flex: 1 0 0;
  -ms-flex: 1 0 0;
  flex: 1 0 0;
}

/* Columns With No Gutters
-------------------------------------------------------*/
.no-gutters {
  margin-right: 0;
  margin-left: 0;
}

.no-gutters > [class*="col-"] {
  padding-right: 0;
  padding-left: 0;
}

/*-------------------------------------------------------*/
/* Buttons
/*-------------------------------------------------------*/
.btn {
  font-weight: 700;
  font-family: "Open Sans", sans-serif;
  overflow: hidden;
  display: inline-block;
  text-decoration: none;
  text-align: center;
  border: 0;
  border-radius: 2px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  color: #fff;
  background-color: #404648;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  position: relative;
  z-index: 1;
  white-space: nowrap;
  vertical-align: middle;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.btn:hover {
  color: #fff;
  background-color: #fc6d41;
  border-color: transparent;
}

.btn:focus {
  outline: none;
  color: #fff;
}

.btn-lg, .btn-lg.btn-button {
  font-size: 13px;
  padding: 0 30px;
}

.btn-lg span, .btn-lg.btn-button span {
  line-height: 42px;
}

.btn-lg.btn-button {
  height: 42px;
}

.btn-sm, .btn-sm.btn-button {
  font-size: 11px;
  padding: 0 20px;
  line-height: 28px;
}

.btn-sm.btn-button {
  height: 30px;
}

.btn-color {
  background-color: #fc6d41;
}

.btn-color:hover {
  opacity: .92;
}

.btn-dark {
  background-color: #1b1c1f;
}

.btn-white {
  background-color: #fff;
  color: #404648;
}

.btn-light {
  background-color: #f2f4f5;
  color: #404648;
}

.btn-white:focus, .btn-light:focus {
  color: #404648;
}

.rounded,
.rounded:before {
  border-radius: 70px;
}

.section-buttons {
  margin-bottom: 50px;
}

.section-buttons a {
  margin-bottom: 10px;
}

/* Input Buttons
-------------------------------------------------------*/
.btn-button {
  border: none;
  margin-bottom: 0;
  width: auto;
}

.btn-button.btn-color, .btn-button.btn-dark {
  color: #fff;
}

.btn-button.btn-wide {
  width: 100%;
}

.btn-button:hover, .btn-button:focus {
  color: #fff;
  background-color: #fc6d41;
}

/*-------------------------------------------------------*/
/* Form Elements
/*-------------------------------------------------------*/
input,
select,
textarea {
  height: 42px;
  border: 1px solid #ebeeef;
  border-radius: 2px;
  background-color: #fff;
  width: 100%;
  margin-bottom: 24px;
  padding: 0 12px;
  -webkit-transition: border-color 0.3s ease-in-out, background-color 0.3s ease-in-out;
  transition: border-color 0.3s ease-in-out, background-color 0.3s ease-in-out;
  font-size: 13px;
  font-family: "Open Sans", sans-serif;
}

textarea {
  height: auto;
  display: block;
  padding: 8px 16px;
  margin-bottom: 24px;
}

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

input[type=search] {
  box-sizing: border-box;
}

input:focus,
textarea:focus {
  border-color: #fc6d41;
  background-color: #fff;
  outline: none;
  box-shadow: none;
}

/* Change Color of Placeholders */
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: #878c8e;
}

input:-moz-placeholder,
textarea:-moz-placeholder {
  color: #878c8e;
  opacity: 1;
}

input::-moz-placeholder,
textarea::-moz-placeholder {
  color: #878c8e;
  opacity: 1;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: #878c8e;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  padding-left: 12px;
  background-image: url(../img/dropdown.png);
  background-repeat: no-repeat;
  background-position: 100% 50%;
}

select::-ms-expand {
  display: none;
}

label {
  color: #404648;
  font-family: "Open Sans", sans-serif;
  font-size: 13px;
  font-weight: 700;
  display: inline-block;
  vertical-align: middle;
  margin-bottom: 6px;
}

/* Checkboxes & Radio Buttons
-------------------------------------------------------*/
input[type="checkbox"] {
  display: none;
}

input[type="checkbox"] + label:before {
  width: 20px;
  height: 20px;
  content: "";
  display: inline-block;
  font-size: 13px;
  margin: -4px 10px 0 0;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  border: 1px solid #e3e7e8;
}

input[type="checkbox"]:checked + label:after {
  font-family: 'ui-icons';
  content: "\f121";
  display: inline-block;
  font-size: 12px;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  position: absolute;
  left: 5px;
  top: 0;
}

input[type="checkbox"] + label,
input[type="radio"] + label {
  cursor: pointer;
  margin-bottom: 0;
  font-size: 15px;
  font-weight: 400;
  position: relative;
  line-height: 22px;
}

.radio > li,
.checkbox > li {
  padding: 7px 0;
}

input[type="radio"] {
  display: none;
}

input[type="radio"] + label:before {
  display: inline-block;
  content: "";
  width: 20px;
  height: 20px;
  box-shadow: 0 0 0 1px #e3e7e8;
  border-radius: 40px;
  margin: -3px 10px 0 0;
  outline: none;
  vertical-align: middle;
  cursor: pointer;
  margin-bottom: 0;
}

input[type="radio"]:checked + label:before {
  background-color: #000;
  border: 6px solid #fff;
  padding: 1px;
}

input[type="radio"]:focus {
  outline: none;
}

#contact-form .message {
  height: 50px;
  width: 100%;
  font-size: 13px;
  line-height: 50px;
  text-align: center;
  float: none;
  margin-top: 20px;
  display: none;
  color: #fff;
}

#contact-form .message.error {
  background-color: #f44336;
}

#contact-form .message.success {
  background-color: #4CAF50;
}

/*loader*/
.loader-mask {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #fff;
  z-index: 99999;
}

.loader-mask .loader {
  font-size: 0;
  color: #fc6d41;
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 42px;
  height: 42px;
  -webkit-transform: translateY(-50%) translateX(-50%);
  -ms-transform: translateY(-50%) translateX(-50%);
  transform: translateY(-50%) translateX(-50%);
}

.loader-mask .loader div {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 100%;
  display: inline-block;
  float: none;
  width: 38px;
  height: 38px;
  background: transparent;
  border-style: solid;
  border-width: 2px;
  border-right-color: transparent;
  border-left-color: transparent;
  -webkit-animation: ball-clip-rotate-pulse-rotate 1s cubic-bezier(0.09, 0.57, 0.49, 0.9) infinite;
  animation: ball-clip-rotate-pulse-rotate 1s cubic-bezier(0.09, 0.57, 0.49, 0.9) infinite;
}

@-webkit-keyframes ball-clip-rotate-pulse-rotate {
  0% {
    -webkit-transform: translate(-50%, -50%) rotate(0);
    transform: translate(-50%, -50%) rotate(0);
  }
  50% {
    -webkit-transform: translate(-50%, -50%) rotate(180deg);
    transform: translate(-50%, -50%) rotate(180deg);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) rotate(360deg);
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes ball-clip-rotate-pulse-rotate {
  0% {
    -webkit-transform: translate(-50%, -50%) rotate(0);
    transform: translate(-50%, -50%) rotate(0);
  }
  50% {
    -webkit-transform: translate(-50%, -50%) rotate(180deg);
    transform: translate(-50%, -50%) rotate(180deg);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) rotate(360deg);
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@-webkit-keyframes ball-clip-rotate-pulse-scale {
  0%, 100% {
    opacity: 1;
    -webkit-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
  }
  30% {
    opacity: .3;
    -webkit-transform: translate(-50%, -50%) scale(0.15);
    transform: translate(-50%, -50%) scale(0.15);
  }
}

@keyframes ball-clip-rotate-pulse-scale {
  0%, 100% {
    opacity: 1;
    -webkit-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
  }
  30% {
    opacity: .3;
    -webkit-transform: translate(-50%, -50%) scale(0.15);
    transform: translate(-50%, -50%) scale(0.15);
  }
}

/*totop*/
#back-to-top {
  display: block;
  z-index: 100;
  width: 34px;
  height: 34px;
  text-align: center;
  font-size: 12px;
  position: fixed;
  bottom: -34px;
  right: 20px;
  line-height: 32px;
  cursor: pointer;
  background-color: rgba(27, 28, 31, 0.5);
  box-shadow: 1px 1.732px 12px 0px rgba(0, 0, 0, 0.03);
  border-radius: 2px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
}

#back-to-top.show {
  bottom: 20px;
}

#back-to-top:hover {
  background-color: #fc6d41;
  border-color: transparent;
}

#back-to-top a {
  display: block;
  width: 100%;
  height: 100%;
}

#back-to-top i {
  color: #fff;
}

/*header*/
.content-overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  bottom: 0;
  z-index: 121;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: 0.3s cubic-bezier(0.16, 0.36, 0, 0.98);
  transition: 0.3s cubic-bezier(0.16, 0.36, 0, 0.98);
  background-color: rgba(0, 0, 0, 0.5);
}

.content-overlay-is-visible {
  opacity: 1;
  visibility: visible;
}

.sidenav {
  background-color: #1b1c1f;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  max-width: 320px;
  font-weight: 600;
  z-index: 121;
  overflow-y: auto;
  -webkit-transition: transform 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: -webkit-transform 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: transform 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: transform 0.5s cubic-bezier(0.55, 0, 0.1, 1), -webkit-transform 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  -webkit-transform: translateX(-320px);
  -ms-transform: translateX(-320px);
  transform: translateX(-320px);
}

.sidenav .sidenav-close {
  position: absolute;
  right: 15px;
  top: 15px;
}

.sidenav .sidenav-close span {
  color: #fff;
}

.sidenav .sidenav-menu-container {
  margin-top: 52px;
}

.sidenav li {
  position: relative;
  border-bottom: 1px solid #26282d;
  font-size: .875rem;
}

.sidenav .sidenav-menu-is-open > a {
  background-color: #1b1c1f;
  color: #fff;
  text-decoration: none;
}

.sidenav .sidenav-menu-is-open > a > .sidenav-menu-toggle {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
  color: #fff;
}

.sidenav .sidenav-menu-is-open > a .show {
  display: block !important;
}

.sidenav .sidenav-menu-link {
  width: 100%;
  display: block;
  color: #fff;
  padding: 12px 22px;
  font-family: "Open Sans", sans-serif;
  font-size: .9375rem;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
}

.sidenav .sidenav-menu-link:hover, .sidenav .sidenav-menu-link:focus {
  color: #fff;
  background-color: #141517;
}

.sidenav .sidenav-menu-dropdown {
  overflow: hidden;
  display: none;
  background-color: #141517;
}

.sidenav .sidenav-menu-dropdown a, .sidenav .sidenav-menu-dropdown:hover {
  color: #8c9598;
  font-weight: 500;
  text-decoration: none;
}

.sidenav .sidenav-menu-toggle {
  position: absolute;
  top: 0;
  right: 5px;
  background-color: transparent;
  border: none;
  color: #fff;
  padding: 0;
  width: 46px;
  height: 46px;
  text-align: center;
  line-height: 46px;
  cursor: pointer;
  font-size: 18px;
}

.sidenav-is-open {
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}

/*header*/
.header {
  position: fixed;
  height: 50px;
  left: 0;
  right: 0;
  top: 0;
  z-index: 120;
}

.header .container {
  position: relative;
}

.header a {
  font-size: .8125rem;
  font-weight: 600;
  color: #8c9598;
  text-decoration: none;
}

.header a:hover {
  color: #fff;
}

.header .nav-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.header .nav-toggle-icon {
  font-size: 1.125rem;
}

.header .nav-list {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 0 36px;
}

.header .nav-dropdown-wrap {
  text-align: center;
  white-space: nowrap;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 0;
}

.header .nav-dropdown {
  display: inline-block;
  position: relative;
}

.header .nav-dropdown > a {
  padding: 0 20px;
  display: block;
  border-left: 1px solid #26282d;
  border-right: 1px solid #26282d;
  line-height: 50px;
  margin-left: -1px;
}

.header .nav-dropdown > a:after {
  content: '';
  display: block;
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  background-color: #fc6d41;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.header .nav-dropdown:hover a:after,
.header .nav-dropdown a.active:after {
  width: 100%;
}

.header .nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
}

.header .nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  padding: 10px 0;
  z-index: 1000;
  min-width: 230px;
  width: 100%;
  text-align: left;
  white-space: nowrap;
  background-color: #1b1c1f;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  background-clip: padding-box;
  display: block;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}

.header .nav-dropdown-menu a {
  padding: 5px 23px;
  display: block;
}

.header .nav-operate {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: end;
  -ms-flex-pack: end;
  justify-content: end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.header .nav-operate .nav-dropdown > a {
  border: none;
}

.header .nav-operate .user-avatar img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
}

.header .nav-operate .user-avatar i {
  margin-left: 3px;
  font-size: 1rem;
}

.header .nav-operate .user-avatar:hover i {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.header .nav-operate .nav-dropdown-menu {
  right: 0;
  left: auto;
  text-align: right;
  min-width: 180px;
}

.header .nav-operate .signup-search {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.header .search-box {
  width: 300px;
  position: absolute;
  right: 0;
  top: 100%;
  padding: 12px 20px;
  background-color: #f2f4f5;
  display: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.header .search-box .search-form {
  position: relative;
}

.header .search-box .search-form input {
  margin-bottom: 0;
}

.header .search-box .search-form .search-button {
  position: absolute;
  top: 0;
  right: 0;
  width: 42px;
  height: 42px;
  line-height: 42px;
  padding: 0 !important;
  border: 0;
  font-size: .875rem;
  vertical-align: middle;
  border-radius: 0 2px 2px 0;
}

@media only screen and (max-width: 991px) {
  .header .search-box {
    width: 100%;
  }
}

/*content*/
.content {
  /*block header*/
  margin-top: 50px;
  /*owl-carousel ctrl*/
  /*pagination*/
  /*author*/
  /*special*/
  /*posts*/
  /*tags*/
  /*article*/
}

.content .heading {
  font-size: 1.25rem;
  color: #222;
}

.content .heading_border_bottom {
  border-bottom: 1px solid #777;
}

.content .owl-theme .owl-nav {
  position: absolute;
  top: -83px;
  right: 0px;
  margin-top: 10px;
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}

.content .owl-theme .owl-nav [class*='owl-'] {
  color: #424040;
  font-size: .875rem;
  margin: 5px;
  padding: 6px 14px !important;
  background: #D6D6D6;
  display: inline-block;
  cursor: pointer;
  border-radius: 3px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.content .owl-theme .owl-nav [class*='owl-']:hover {
  background: #424040;
  color: #FFF;
  text-decoration: none;
}

.content .owl-theme .owl-nav [class*='owl-'].disabled {
  opacity: 0.5;
  cursor: default;
}

.content .owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 10px;
}

.content .owl-theme .owl-dots {
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}

.content .owl-theme .owl-dots .owl-dot {
  display: inline-block;
  zoom: 1;
  *display: inline;
}

.content .owl-theme .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 5px 7px;
  background: #D6D6D6;
  display: block;
  -webkit-backface-visibility: visible;
  -webkit-transition: opacity 200ms ease;
  transition: opacity 200ms ease;
  border-radius: 30px;
}

.content .owl-theme .owl-dots .owl-dot.active span,
.content .owl-theme .owl-dots .owl-dot:hover span {
  background: #869791;
}

.content .pagination .page-item .page-link {
  color: #424040;
  font-size: .875rem;
  margin: 5px;
  padding: 6px 14px !important;
  background: #D6D6D6;
  display: inline-block;
  cursor: pointer;
  border-radius: 3px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.content .pagination .page-item .page-link:hover {
  background: #424040;
  color: #FFF;
  text-decoration: none;
}

.content .pagination .page-item.disabled {
  opacity: 0.5;
  cursor: default;
}

.content .author-desc {
  box-sizing: border-box;
}

.content .author-desc .author-info .image img {
  margin-right: 15px;
  max-width: 40px;
  min-width: 40px;
  height: 40px;
}

.content .author-desc .author-info .title {
  font-weight: 400;
  color: #999;
  text-transform: capitalize;
}

.content .author-desc .author-info .title strong {
  display: block;
  color: #555;
  font-weight: 600;
}

.content .author-desc .author-info .title .date {
  font-size: 0.8em;
  color: #999;
  font-weight: 400;
  color: #999;
  text-transform: capitalize;
}

.content .author-desc .comment-body {
  margin-left: 55px;
  margin-top: 10px;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
}

.content .author-desc .comment-body p {
  color: #555;
}

.content .author-desc .comment-body .comment-body {
  border-bottom: none;
  margin-top: 0;
  margin-bottom: 0;
}

.content .notice {
  background-color: #fff;
  padding-top: 10px;
  padding-bottom: 10px;
}

.content .notice .notice-label {
  background-color: #fc6d41;
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  display: inline-block;
  color: #fff;
  padding: 0 9px;
  line-height: 26px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: .875rem;
  float: left;
  margin-right: 20px;
  word-break: keep-all;
  white-space: nowrap;
}

.content .notice .newsticker-button {
  background-color: transparent;
  padding: 0;
  width: 28px;
  height: 28px;
  line-height: 28px;
  text-align: center;
  font-size: 12px;
  color: #878c8e;
  border: 1px solid #ebeeef;
}

.content .notice .newsticker-button:hover, .content .notice .newsticker-button:focus {
  background-color: #fc6d41;
  color: #fff;
  border-color: transparent;
  outline: none;
}

.content .notice .newsticker-item {
  line-height: 26px;
  font-family: "Open Sans", sans-serif;
}

.content .notice .newsticker-item .newsticker-item-url {
  color: #404648;
}

.content .notice .newsticker-item .newsticker-item-url:hover {
  color: #fc6d41;
}

.content .slide {
  padding-top: 24px;
  padding-bottom: 24px;
}

.content .slide .swiper-container {
  width: 100%;
  height: 500px;
}

@media only screen and (max-width: 767.98px) {
  .content .slide .swiper-container {
    height: 238px;
  }
}

.content .slide .slide-item {
  overflow: hidden;
  border-radius: 4px;
  width: 100%;
  height: 100%;
  position: relative;
}

.content .slide .slide-item > img {
  height: 100%;
  max-width: none;
  margin-left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

.content .slide .slide-item div {
  -webkit-transition: all .4s;
  transition: all .4s;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(#000));
  background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.5), #000);
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5), #000);
  opacity: .5;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.content .slide .slide-item div:hover {
  opacity: .75;
}

.content .slide .slide-item div h2 a {
  position: absolute;
  font-size: 1.25rem;
  color: #fff;
  line-height: 32px;
  font-weight: 500;
  margin: 0 20px;
  bottom: 120px;
  z-index: 1;
}

@media only screen and (max-width: 767.98px) {
  .content .slide .slide-item div h2 a {
    bottom: 40px;
    font-size: 1.125rem;
  }
}

@media only screen and (max-width: 767.98px) {
  .content .slide .slide-item div p {
    display: none;
  }
}

.content .slide .slide-item div p a {
  position: absolute;
  bottom: 40px;
  opacity: .8;
  line-height: 1.25rem;
  color: #fff;
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  flex-direction: column;
  margin: 0 20px;
  overflow: hidden;
  height: 57px;
  display: -webkit-box;
  display: -moz-box;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
  -moz-line-clamp: 3;
  line-clamp: 3;
  box-orient: vertical;
  z-index: 1;
}

.content .slide .slide-side-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.content .slide .slide-side-wrap img {
  height: 238px;
}

.content .slide .slide-side-wrap div h2 a {
  bottom: 40px;
  font-size: 1.125rem;
}

.content .slide .slide-side-wrap .slide-side-item:last-child {
  margin-top: 24px;
}

@media only screen and (max-width: 767.98px) {
  .content .slide .slide-side-wrap .slide-side-item:first-child {
    margin-top: 24px;
  }
}

.content .category_img_position_relative {
  position: relative;
  overflow: hidden;
  z-index: 5;
  cursor: pointer;
}

.content .category_img_position_relative:hover {
  -webkit-animation: swing1 1s ease;
  animation: swing1 1s ease;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}

.content .category_img_position_relative .category_img {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}

.content .category_img_position_relative .category_img .img_special_relative {
  height: 340px;
  max-width: none;
  min-width: 100%;
  width: auto !important;
  margin-left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

.content .category_img_position_relative .category_img_position_absolute {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  right: 0;
  background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.83) 100%);
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.83) 100%);
  z-index: 7;
}

.content .category_img_position_relative .category_img_position_absolute_1 {
  position: absolute;
  width: 100%;
  z-index: 9;
  padding: 10px;
  bottom: 0;
}

.content .category_img_position_relative .category_img_position_absolute_1 .category_date_and_name_color {
  color: rgba(255, 255, 255, 0.7);
  font-size: .875rem;
}

.content .hover_video_img .video_img {
  height: 200px;
  border-radius: 5px;
  overflow: hidden;
  position: relative;
  top: 0;
  -webkit-transition: all all 0.5s ease;
  transition: all all 0.5s ease;
  background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.83) 100%);
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.83) 100%);
}

.content .hover_video_img .video_img > img {
  height: 260px;
  min-width: 100%;
  max-width: none;
  width: auto !important;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.content .hover_video_img:hover img {
  height: 320px;
}

.content .hover_video_img .small_post_heading {
  font-size: 17px;
  color: #424040;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.content .hover_video_img .small_post_heading:hover {
  color: #777;
  text-decoration: none;
}

.content .hover_video_img .c_g {
  color: #777;
}

.content .posts a {
  display: block;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.content .posts .magna {
  font-size: 1rem;
  color: #444 !important;
  font-weight: 800;
}

.content .posts .magna:hover {
  color: #fe6566 !important;
  text-decoration: underline;
}

.content .posts .mini_time {
  font-size: .875rem;
  color: #222;
  display: inline-block;
}

.content .posts .mini_time:hover {
  color: #6c62ff !important;
}

.content .posts .consectetur {
  font-size: .9375rem;
  color: #777;
}

.content .tags .tags-box .tags-item {
  background: #f1f1f1;
  padding: 10px 15px;
  color: #333;
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
  margin-right: 8px;
  margin-top: 5px;
  margin-bottom: 5px;
  display: inline-block;
}

.content .tags .tags-box .tags-item:hover, .content .tags .tags-box .tags-item .fh5co_tagg:focus {
  background: #f5bc04;
  color: #fff;
}

.content .article {
  overflow: hidden;
}

.content .article .title .article-title h2 {
  font-size: 40p2rem;
  line-height: 34px;
  padding-top: 41px;
  padding-bottom: 21px;
  text-align: justify;
  font-weight: 700;
  font-family: "Microsoft Yahei", "微软雅黑", "宋体";
}

.content .article .body .article-txt p {
  color: #292b2c !important;
}

.content .article .body .article-txt img {
  max-width: 100%;
  display: block;
  margin: 25px auto;
}

.content .article .body .article-tag-prev-next .tags-item {
  padding: 6px 10px;
}

.content .article .body .post-comments {
  margin-top: 50px;
}

.content .article .body .post-comments header {
  margin-bottom: 40px;
}

.content .article .body .post-comments header h3 {
  line-height: 1.1em;
  color: #222;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  margin-bottom: 1rem;
}

.content .article .body .post-comments header h3:hover {
  color: #555;
}

.content .article .body .post-comments header h3 span {
  color: #777;
  font-size: 0.8em;
  margin-left: 5px;
  font-weight: 400;
}

/*hots*/
.single-post {
  position: relative;
  padding: 0px 0px 0px 88px;
  margin-bottom: 34px;
}

.single-post:hover .img-box img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.single-post .img-box {
  position: absolute;
  overflow: hidden;
  width: 70px;
  height: 70px;
  left: 0px;
  top: 6px;
}

.single-post .img-box a, .single-post .img-box figure {
  display: block;
  width: 100%;
  height: 100%;
}

.single-post .img-box img {
  height: 100%;
  min-width: 100%;
  max-width: none;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  vertical-align: middle;
}

.single-post h6 {
  margin-bottom: 4px;
}

.single-post h6 a {
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  color: #555;
}

.single-post h6 a:hover {
  color: #fe6566;
}

.single-post .text {
  color: #666666;
}

.single-post:last-child {
  margin-bottom: 0;
}

@-webkit-keyframes swing1 {
  15% {
    -webkit-transform: translateX(5px);
    transform: translateX(5px);
  }
  30% {
    -webkit-transform: translateX(-5px);
    transform: translateX(-5px);
  }
  50% {
    -webkit-transform: translateX(3px);
    transform: translateX(3px);
  }
  65% {
    -webkit-transform: translateX(-3px);
    transform: translateX(-3px);
  }
  80% {
    -webkit-transform: translateX(2px);
    transform: translateX(2px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes swing1 {
  15% {
    -webkit-transform: translateX(5px);
    transform: translateX(5px);
  }
  30% {
    -webkit-transform: translateX(-5px);
    transform: translateX(-5px);
  }
  50% {
    -webkit-transform: translateX(3px);
    transform: translateX(3px);
  }
  65% {
    -webkit-transform: translateX(-3px);
    transform: translateX(-3px);
  }
  80% {
    -webkit-transform: translateX(2px);
    transform: translateX(2px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

.contact .page-title {
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 300px;
  margin-bottom: 40px;
  background-image: url(../img/contact.jpg);
}

.contact .page-title .full-overlay {
  content: '';
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.5);
}

.contact .page-title .page-title__holder {
  position: absolute;
  z-index: 2;
  bottom: 10%;
  max-width: 500px;
}

.contact .page-title .page-title__holder .page-title__title {
  color: #fff;
  font-size: 38px;
}

.contact .page-title .page-title__holder .lead {
  font-size: 18px;
  line-height: 30px;
}

.footer-dark {
  background-color: #1b1c1f;
}

.footer .footer__widgets {
  padding: 65px 0;
  font-family: "Open Sans", sans-serif;
}

.footer .footer__widgets .logo__img {
  display: block;
}

.footer .footer__widgets p {
  font-size: .875rem;
  line-height: 26px;
  color: #dddddd;
}

.footer .footer__widgets .widget_nav_menu li {
  display: block;
  margin-right: 15px;
  border-bottom: 0;
  padding: 0;
}

.footer .footer__widgets .single-post h6 a {
  color: #ddd;
}

.footer .footer__widgets .single-post h6 a:hover {
  color: #fe6566;
}

.footer .footer__widgets .single-post .text {
  color: #878c8e;
}

.footer .footer__bottom {
  padding: 25px 0;
  background-color: #161718;
}

.footer .footer__bottom a {
  color: #6f6fff;
}

.footer .footer__bottom i {
  color: #e44d3a;
}

.footer .footer__bottom .footer__bottom-text {
  font-size: .875rem;
  font-family: "Open Sans", sans-serif;
  margin: 0;
}
