/*
@File: Hacbu Template Styles

* This file contains the styling for the actual template, this
is the file you need to edit to change the look of the template.

This files table contents are outlined below>>>>>

******************************************* 
** - DEFAULT AREA STYLE - **

** - Default Btn Area Style
** - Read More Area Style
** - Section Title Area Style

** - HOME PAGE STYLE - **

** - Header Area Style
** - Nav Area Style


** - OTHER STYLE AREA - **

** - Preloader Area Style
** - Go Top Style
** - Video wave Style
** - Section Title Area Style
** - Nice select Area

*******************************************
/*

/*
Every Pages Style Area
======================================================*/


:root {
  --body-font-family: 'Open Sans', sans-serif;
  --heading-font-family: 'Raleway', sans-serif;
  --body-color: #000000;
  --main-color: #ffa300;
  --optional-color: #10539a;
  --heading-color: #1f242e;
  --white-color: #ffffff;
  --black-color: #000000;
  --font-size: 18px;
  --transition: all ease .5s;
  --border-radius: 4px;
  --box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
}

body {
  font-size: var(--font-size);
  font-family: var(--body-font-family);
  color: var(--white-color);
}

body.body-bg-f7f6f1 {
  background-color: #f7f6f1;
}

a {
  -webkit-transition: var(--transition);
  transition: var(--transition);
  text-decoration: none;
  color: var(--body-color);
}

a:hover {
  text-decoration: none;
  color: var(--main-color);
}

a:focus {
  text-decoration: none;
}

button {
  outline: 0 !important;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: none;
  padding: 0;
}

button:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
  color: var(--body-color);
  font-weight: 700;
  font-family: var(--heading-font-family);
}

.d-table {
  width: 100%;
  height: 100%;
}

.d-table-cell {
  vertical-align: middle;
}

p {
  font-size: var(--font-size);
  margin-bottom: 15px;
  line-height: 1.8;
  font-weight: 500;
  text-indent: 32px;
}

p:last-child {
  margin-bottom: 0;
}

img {
  max-width: 100%;
  height: auto;
}

.form-control {
  height: 55px;
  color: var(--main-color);
  border: 1px solid #d7d7d7;
  background-color: transparent;
  border-radius: 0;
  font-size: 16px;
  padding: 10px 20px;
  width: 100%;
}
b{
    color: #000000;
}
.form-control::-webkit-input-placeholder {
  color: #676a6a;
}

.form-control:-ms-input-placeholder {
  color: #676a6a;
}

.form-control::-ms-input-placeholder {
  color: #676a6a;
}

.form-control::placeholder {
  color: #676a6a;
}

.form-control:focus {
  color: var(--black-color);
  background-color: transparent;
  -webkit-box-shadow: unset;
          box-shadow: unset;
  outline: 0;
  border: 1px solid var(--main-color);
}

.form-control:hover:focus, .form-control:focus {
  -webkit-box-shadow: unset;
          box-shadow: unset;
}

textarea.form-control {
  height: auto;
}

.ptb-100 {
  padding-top: 100px;
  padding-bottom: 100px;
}

.ptb-70 {
  padding-top: 70px;
  padding-bottom: 70px;
}

.pt-100 {
  padding-top: 100px;
}

.pb-100 {
  padding-bottom: 100px;
}

.pt-70 {
  padding-top: 70px;
}

.pb-70 {
  padding-bottom: 70px;
}

.pb-40 {
  padding-bottom: 40px;
}

.mt-100 {
  margin-top: 100px;
}

.mt-minus-100 {
  margin-top: -100px;
}

.mt-30 {
  margin-top: 30px;
}

.mb-30 {
  margin-bottom: 30px;
}

.pr-15 {
  padding-right: 15px !important;
}

.pl-15 {
  padding-left: 15px !important;
}

.mr-15 {
  margin-right: 15px !important;
}

.ml-15 {
  margin-left: 15px !important;
}

.pl-0 {
  padding-left: 0;
}

.pr-0 {
  padding-right: 0;
}

/*
Bg-color Style*/
.bg-color {
  background-color: #fffdfa;
}

.bg-color-f4f7ff {
  background-color: #f4f7ff;
}

.bg-color-edf1fe {
  background-color: #edf1fe;
}

.bg-color-f3f7ff {
  background-color: #f3f7ff;
}

.bg-color-f6f7ff {
  background-color: #f6f7ff;
}

/*
Default Btn Area Style*/
.default-btn {
  font-size: 16px;
  color: var(--white-color);
  line-height: 1;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  text-align: center;
  position: relative;
  z-index: 1;
  overflow: hidden;
  display: inline-table;
  padding: 15px 35px;
  background-color: var(--main-color);
}

.default-btn.radius-btn {
  border-radius: 50px;
}

.default-btn.gradient-btn {
  border-radius: 50px;
  background-image: -webkit-gradient(linear, left top, right top, from(#f21d56), to(#f29422));
  background-image: linear-gradient(to right, #f21d56, #f29422);
}

.default-btn::before, .default-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 0;
  background-color: var(--heading-color);
  z-index: -1;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.default-btn::after {
  top: auto;
  bottom: 0;
  left: auto;
  right: 0;
}

.default-btn:hover {
  color: var(--white-color);
}

.default-btn:hover::before {
  height: 100%;
  top: auto;
  bottom: 0;
}

.default-btn:hover::after {
  height: 100%;
  bottom: auto;
  top: 0;
}

/*
Read More Btn Area Style*/
.read-more {
  font-size: 15px;
  color: var(--heading-color);
  font-weight: 600;
}

.read-more i {
  position: relative;
  top: 3px;
}

.read-more:hover {
  color: var(--main-color);
  letter-spacing: 1px;
}

/*
Section Title Area Style*/
.section-title {
  /*max-width: 700px;*/
  margin: -8px auto 50px;
  text-align: center;
  position: relative;
}

.section-title .top-title {
  color: var(--main-color);
  display: block;
  margin-bottom: 10px;
  font-size: 15px;
}
@media only screen and (min-width: 1200px) {
.offer-img img {
	width: 50%;
	margin: 0 auto;
    display: table-cell;
}
}
.section-title h2 {
  font-size: 40px;
  margin-bottom: 15px;
}

.section-title h2:last-child {
  margin-bottom: 0;
}

.section-title p {
  max-width: 600px;
  margin: auto;
}

.section-title a {
  font-size: 16px;
  color: var(--heading-color);
}

.section-title a i {
  position: relative;
  top: 3px;
}

.section-title.white-title span {
  color: var(--main-color);
}

.section-title.white-title h2 {
  color: var(--white-color);
}

.section-title.white-title p {
  color: var(--white-color);
}

/*====================================================
OTHERS STYLE AREA
=====================================================*/
/*
Preloader Area Style*/
.preloader {
  width: 100%;
  height: 100%;
  position: fixed;
  background-color: var(--main-color);
  top: 0;
  left: 0;
  z-index: 99999;
}

.preloader .lds-ripple {
  position: absolute;
  width: 80px;
  height: 80px;
  -webkit-animation: spin-six 2.5s infinite cubic-bezier(0.17, 0.72, 0.55, 1.66);
          animation: spin-six 2.5s infinite cubic-bezier(0.17, 0.72, 0.55, 1.66);
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50px, -50px);
          transform: translate(-50px, -50px);
}

.preloader .pl-flip-1 {
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  margin: 0 auto 18px auto;
  position: relative;
  width: 50px;
  height: 50px;
}

.preloader .pl-flip-1:before, .preloader .pl-flip-1:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  background: var(--white-color);
  display: block;
  -webkit-transform-origin: 50% 100%;
          transform-origin: 50% 100%;
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
          clip-path: polygon(0 0, 100% 0, 50% 100%);
}

.preloader .pl-flip-1.pl-flip-2 {
  -webkit-animation-name: flipA;
          animation-name: flipA;
  -webkit-animation-timing-function: steps(1);
          animation-timing-function: steps(1);
}

.preloader .pl-flip-1.pl-flip-2:before {
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
  -webkit-animation-name: flipB;
          animation-name: flipB;
}

.preloader .pl-flip-1.pl-flip-2:after {
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
  -webkit-animation-name: flipC;
          animation-name: flipC;
}

.preloader.preloader-deactivate {
  visibility: hidden;
}

@-webkit-keyframes flipA {
  from, 75%, to {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  25%, 50% {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
}

@keyframes flipA {
  from, 75%, to {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  25%, 50% {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
}

@-webkit-keyframes flipB {
  from {
    -webkit-transform: translateY(0) rotateX(0deg);
            transform: translateY(0) rotateX(0deg);
  }
  6.25% {
    -webkit-transform: translateY(0) rotateX(0deg);
            transform: translateY(0) rotateX(0deg);
  }
  12.5% {
    -webkit-transform: translateY(-50%) rotateX(90deg);
            transform: translateY(-50%) rotateX(90deg);
  }
  18.75% {
    -webkit-transform: translateY(0) rotateX(180deg);
            transform: translateY(0) rotateX(180deg);
  }
  31.25% {
    -webkit-transform: translateY(0) rotateX(180deg);
            transform: translateY(0) rotateX(180deg);
  }
  37.5% {
    -webkit-transform: translateY(-50%) rotateX(270deg);
            transform: translateY(-50%) rotateX(270deg);
  }
  43.75% {
    -webkit-transform: translateY(0) rotateX(360deg);
            transform: translateY(0) rotateX(360deg);
  }
  50% {
    -webkit-transform: translateY(0) rotateX(360deg);
            transform: translateY(0) rotateX(360deg);
  }
  56.25% {
    -webkit-transform: translateY(0) rotateX(360deg);
            transform: translateY(0) rotateX(360deg);
  }
  62.5% {
    -webkit-transform: translateY(-50%) rotateX(450deg);
            transform: translateY(-50%) rotateX(450deg);
  }
  68.75% {
    -webkit-transform: translateY(0) rotateX(540deg);
            transform: translateY(0) rotateX(540deg);
  }
  81.25% {
    -webkit-transform: translateY(0) rotateX(540deg);
            transform: translateY(0) rotateX(540deg);
  }
  87.5% {
    -webkit-transform: translateY(-50%) rotateX(630deg);
            transform: translateY(-50%) rotateX(630deg);
  }
  93.75% {
    -webkit-transform: translateY(0) rotateX(720deg);
            transform: translateY(0) rotateX(720deg);
  }
  to {
    -webkit-transform: translateY(0) rotateX(720deg);
            transform: translateY(0) rotateX(720deg);
  }
}

@keyframes flipB {
  from {
    -webkit-transform: translateY(0) rotateX(0deg);
            transform: translateY(0) rotateX(0deg);
  }
  6.25% {
    -webkit-transform: translateY(0) rotateX(0deg);
            transform: translateY(0) rotateX(0deg);
  }
  12.5% {
    -webkit-transform: translateY(-50%) rotateX(90deg);
            transform: translateY(-50%) rotateX(90deg);
  }
  18.75% {
    -webkit-transform: translateY(0) rotateX(180deg);
            transform: translateY(0) rotateX(180deg);
  }
  31.25% {
    -webkit-transform: translateY(0) rotateX(180deg);
            transform: translateY(0) rotateX(180deg);
  }
  37.5% {
    -webkit-transform: translateY(-50%) rotateX(270deg);
            transform: translateY(-50%) rotateX(270deg);
  }
  43.75% {
    -webkit-transform: translateY(0) rotateX(360deg);
            transform: translateY(0) rotateX(360deg);
  }
  50% {
    -webkit-transform: translateY(0) rotateX(360deg);
            transform: translateY(0) rotateX(360deg);
  }
  56.25% {
    -webkit-transform: translateY(0) rotateX(360deg);
            transform: translateY(0) rotateX(360deg);
  }
  62.5% {
    -webkit-transform: translateY(-50%) rotateX(450deg);
            transform: translateY(-50%) rotateX(450deg);
  }
  68.75% {
    -webkit-transform: translateY(0) rotateX(540deg);
            transform: translateY(0) rotateX(540deg);
  }
  81.25% {
    -webkit-transform: translateY(0) rotateX(540deg);
            transform: translateY(0) rotateX(540deg);
  }
  87.5% {
    -webkit-transform: translateY(-50%) rotateX(630deg);
            transform: translateY(-50%) rotateX(630deg);
  }
  93.75% {
    -webkit-transform: translateY(0) rotateX(720deg);
            transform: translateY(0) rotateX(720deg);
  }
  to {
    -webkit-transform: translateY(0) rotateX(720deg);
            transform: translateY(0) rotateX(720deg);
  }
}

@-webkit-keyframes flipC {
  from {
    -webkit-transform: translateY(100%) rotateZ(180deg) rotateX(0deg);
            transform: translateY(100%) rotateZ(180deg) rotateX(0deg);
  }
  6.25% {
    -webkit-transform: translateY(100%) rotateZ(180deg) rotateX(0deg);
            transform: translateY(100%) rotateZ(180deg) rotateX(0deg);
  }
  12.5% {
    -webkit-transform: translateY(150%) rotateZ(180deg) rotateX(90deg);
            transform: translateY(150%) rotateZ(180deg) rotateX(90deg);
  }
  18.75% {
    -webkit-transform: translateY(100%) rotateZ(180deg) rotateX(180deg);
            transform: translateY(100%) rotateZ(180deg) rotateX(180deg);
  }
  31.25% {
    -webkit-transform: translateY(100%) rotateZ(180deg) rotateX(180deg);
            transform: translateY(100%) rotateZ(180deg) rotateX(180deg);
  }
  37.5% {
    -webkit-transform: translateY(150%) rotateZ(180deg) rotateX(270deg);
            transform: translateY(150%) rotateZ(180deg) rotateX(270deg);
  }
  43.75% {
    -webkit-transform: translateY(100%) rotateZ(180deg) rotateX(360deg);
            transform: translateY(100%) rotateZ(180deg) rotateX(360deg);
  }
  50% {
    -webkit-transform: translateY(100%) rotateZ(180deg) rotateX(360deg);
            transform: translateY(100%) rotateZ(180deg) rotateX(360deg);
  }
  56.25% {
    -webkit-transform: translateY(100%) rotateZ(180deg) rotateX(360deg);
            transform: translateY(100%) rotateZ(180deg) rotateX(360deg);
  }
  62.5% {
    -webkit-transform: translateY(150%) rotateZ(180deg) rotateX(450deg);
            transform: translateY(150%) rotateZ(180deg) rotateX(450deg);
  }
  68.75% {
    -webkit-transform: translateY(100%) rotateZ(180deg) rotateX(540deg);
            transform: translateY(100%) rotateZ(180deg) rotateX(540deg);
  }
  81.25% {
    -webkit-transform: translateY(100%) rotateZ(180deg) rotateX(540deg);
            transform: translateY(100%) rotateZ(180deg) rotateX(540deg);
  }
  87.5% {
    -webkit-transform: translateY(150%) rotateZ(180deg) rotateX(630deg);
            transform: translateY(150%) rotateZ(180deg) rotateX(630deg);
  }
  93.75% {
    -webkit-transform: translateY(100%) rotateZ(180deg) rotateX(720deg);
            transform: translateY(100%) rotateZ(180deg) rotateX(720deg);
  }
  to {
    -webkit-transform: translateY(100%) rotateZ(180deg) rotateX(720deg);
            transform: translateY(100%) rotateZ(180deg) rotateX(720deg);
  }
}

@keyframes flipC {
  from {
    -webkit-transform: translateY(100%) rotateZ(180deg) rotateX(0deg);
            transform: translateY(100%) rotateZ(180deg) rotateX(0deg);
  }
  6.25% {
    -webkit-transform: translateY(100%) rotateZ(180deg) rotateX(0deg);
            transform: translateY(100%) rotateZ(180deg) rotateX(0deg);
  }
  12.5% {
    -webkit-transform: translateY(150%) rotateZ(180deg) rotateX(90deg);
            transform: translateY(150%) rotateZ(180deg) rotateX(90deg);
  }
  18.75% {
    -webkit-transform: translateY(100%) rotateZ(180deg) rotateX(180deg);
            transform: translateY(100%) rotateZ(180deg) rotateX(180deg);
  }
  31.25% {
    -webkit-transform: translateY(100%) rotateZ(180deg) rotateX(180deg);
            transform: translateY(100%) rotateZ(180deg) rotateX(180deg);
  }
  37.5% {
    -webkit-transform: translateY(150%) rotateZ(180deg) rotateX(270deg);
            transform: translateY(150%) rotateZ(180deg) rotateX(270deg);
  }
  43.75% {
    -webkit-transform: translateY(100%) rotateZ(180deg) rotateX(360deg);
            transform: translateY(100%) rotateZ(180deg) rotateX(360deg);
  }
  50% {
    -webkit-transform: translateY(100%) rotateZ(180deg) rotateX(360deg);
            transform: translateY(100%) rotateZ(180deg) rotateX(360deg);
  }
  56.25% {
    -webkit-transform: translateY(100%) rotateZ(180deg) rotateX(360deg);
            transform: translateY(100%) rotateZ(180deg) rotateX(360deg);
  }
  62.5% {
    -webkit-transform: translateY(150%) rotateZ(180deg) rotateX(450deg);
            transform: translateY(150%) rotateZ(180deg) rotateX(450deg);
  }
  68.75% {
    -webkit-transform: translateY(100%) rotateZ(180deg) rotateX(540deg);
            transform: translateY(100%) rotateZ(180deg) rotateX(540deg);
  }
  81.25% {
    -webkit-transform: translateY(100%) rotateZ(180deg) rotateX(540deg);
            transform: translateY(100%) rotateZ(180deg) rotateX(540deg);
  }
  87.5% {
    -webkit-transform: translateY(150%) rotateZ(180deg) rotateX(630deg);
            transform: translateY(150%) rotateZ(180deg) rotateX(630deg);
  }
  93.75% {
    -webkit-transform: translateY(100%) rotateZ(180deg) rotateX(720deg);
            transform: translateY(100%) rotateZ(180deg) rotateX(720deg);
  }
  to {
    -webkit-transform: translateY(100%) rotateZ(180deg) rotateX(720deg);
            transform: translateY(100%) rotateZ(180deg) rotateX(720deg);
  }
}

/*
Go Top Style*/
.go-top {
  position: fixed;
  cursor: pointer;
  right: 3%;
  top: 87%;
  background-color: var(--main-color);
  z-index: 4;
  width: 40px;
  text-align: center;
  height: 42px;
  line-height: 42px;
  -webkit-transform: scale(0);
          transform: scale(0);
  visibility: hidden;
  -webkit-transition: .9s;
  transition: .9s;
}

.go-top i {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  right: 0;
  margin: 0 auto;
  color: var(--white-color);
  -webkit-transition: 0.5s;
  transition: 0.5s;
  font-size: 20px;
}

.go-top i:last-child {
  opacity: 0;
  visibility: hidden;
  top: 60%;
}

.go-top::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: var(--main-color);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.go-top:hover {
  color: var(--white-color);
  background-color: var(--main-color);
}

.go-top:hover::before {
  opacity: 1;
  visibility: visible;
}

.go-top:hover i:first-child {
  opacity: 0;
  top: 0;
  visibility: hidden;
}

.go-top:hover i:last-child {
  opacity: 1;
  visibility: visible;
  top: 50%;
}

.go-top:focus {
  color: var(--white-color);
}

.go-top:focus::before {
  opacity: 1;
  visibility: visible;
}

.go-top:focus i:first-child {
  opacity: 0;
  top: 0;
  visibility: hidden;
}

.go-top:focus i:last-child {
  opacity: 1;
  visibility: visible;
  top: 50%;
}

.go-top.active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
  visibility: visible;
  right: 3%;
  top: 84%;
  -webkit-transform: scale(1);
          transform: scale(1);
}

/*
Video wave Style*/
.video-btn {
  display: inline-block;
  width: 120px;
  height: 120px;
  line-height: 120px;
  text-align: center;
  border-radius: 0;
  color: var(--main-color);
  position: relative;
  top: 3px;
  z-index: 1;
  background-color: rgba(255, 84, 0, 0.9);
  border-radius: 50%;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.video-btn i {
  font-size: 100px;
  color: var(--white-color);
  position: absolute;
  top: 0;
  left: 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
}

.video-btn::after, .video-btn::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  bottom: 0;
  left: 0;
  border-radius: 0;
  border-radius: 50%;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  -webkit-animation: ripple 1.6s ease-out infinite;
          animation: ripple 1.6s ease-out infinite;
  background-color: rgba(255, 84, 0, 0.9);
}

.video-btn:hover {
  background-color: rgba(27, 27, 27, 0.9);
}

.video-btn:hover::before, .video-btn:hover::after {
  background-color: rgba(27, 27, 27, 0.9);
}

@-webkit-keyframes ripple {
  0%, 35% {
    -webkit-transform: scale(0);
            transform: scale(0);
    opacity: 1;
  }
  50% {
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
    opacity: 0.8;
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(2);
            transform: scale(2);
  }
}

@keyframes ripple {
  0%, 35% {
    -webkit-transform: scale(0);
            transform: scale(0);
    opacity: 1;
  }
  50% {
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
    opacity: 0.8;
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(2);
            transform: scale(2);
  }
}

/*
Page-navigation Area Style*/
.pagination area {
  text-align: center;
  margin-top: 10px;
}
.pagination area a{
  /*width: 45px;*/
  height: 2.5rem;
  line-height: 1.3rem;
  color: var(--heading-color);
  text-align: center;
  display: inline-block;
  position: relative;
  margin-left: 3px;
  margin-right: 3px;
padding: 0.5rem;
  font-size: 17px;
  background-color: #f9fbfe;
  -webkit-box-shadow: var(--box-shadow);
          box-shadow: var(--box-shadow);
  border: 1px solid #ebebeb;
}
.pagination area a:hover {
  color: var(--white-color);
  border-color: var(--main-color);
  background-color: var(--main-color);
}
.pagination area .page-numbers {
  width: 45px;
  height: 45px;
  line-height: 45px;
  color: var(--heading-color);
  text-align: center;
  display: inline-block;
  position: relative;
  margin-left: 3px;
  margin-right: 3px;
  font-size: 17px;
  background-color: #f9fbfe;
  -webkit-box-shadow: var(--box-shadow);
          box-shadow: var(--box-shadow);
  border: 1px solid #ebebeb;
}

.pagination area .page-numbers:hover {
  color: var(--white-color);
  border-color: var(--main-color);
  background-color: var(--main-color);
}

.pagination area .page-numbers i {
  font-size: 20px;
}

.pagination area .page-numbers.next, .pagination area .page-numbers.prev {
  top: 3px;
}

.pagination area .page-numbers.current {
  color: var(--white-color);
  border-color: var(--main-color);
  background-color: var(--main-color);
}
/*# sourceMappingURL=style.css.map */


.navcol-12 {
    height: 55px;
    background: #fff;
    margin-bottom: 20px;
    overflow: hidden;
}
.navcol-12 ul{
	padding: 0;
}
.navcol-12 li {
    width: 20%;
    height: 55px;
    font-size: 18px;
    line-height: 55px;
    text-align: center;
    float: left;
    border-right: 1px solid #eee;
    background: #efefed;
    cursor: pointer;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}
.navcol-12 li a {
    display: block;
    height: 55px;
    color: #595757;
	font-size: 16px;
}
.navcol-12 li.sidenavcur a, .navcol-12 li:hover a {
    color: #fff;
}
.navcol-12 li.sidenavcur, .navcol-12 li:hover {
    background: url(../image/p16-icon6.png) no-repeat bottom center #ffa300;
    border-color: #ffa300;
}
.container {
    margin-right: auto;
    margin-left: auto;
    width: 1100px;
    background-color: var(--white-color);
}
.nav-header{
    width: 200px;
    float: left;
    height: 60px;
}
.nav-header img{
    height: 60px;
}
.nav-favorit{
    width: auto;
    display: flex;
    
}
.nav-favorit i{
    background: url("../image/favorite.png") no-repeat bottom center #ffa300;
    width: 60px;
    display: inline;
}
.nav-favorit .p {
    font-weight: bold;
    background-image: -webkit-linear-gradient(left,#c2bcf7,#4538e7 16.66%,#3c3eed 33.33%,#bdbeff 50%,#4038e7 66.66%,#3c3fed 83.33%,#c6bdff);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    color: transparent;
    background-size: 200% 100%;
    animation: light 2s linear infinite;
}
.nav-favorit p{
    line-height: 60px;
    margin: 0;
}
.longpic{
    padding: 0 2px;
}
.longpic img{
    height:65px;
}
.area-head{
    text-align:center;
}
.area-head h4 b{
    color: var(--body-color);
}

.app {
	margin:10px 0;
	border-radius:3px
	background-color: #fff;
}
.app_title {
	text-align:center;
	line-height:35px;
	font-size:15px;
	border-bottom:1px solid#fff
}
.app ul li {
	float:left;
	width:8.33%;
	text-align:center;
	list-style-type:none
}
.app ul li img:hover {
     background-color: #FF9800;
}
.app ul li img {
	margin:0 auto;
	width:56px;
	height:56px;
	display:block;
	border-radius:12px
}
.app ul a {
	font:13px/28px Tahoma,'Microsoft Yahei',Simsun;
	/*color:#666;*/
	overflow:hidden;
	white-space:nowrap
}

@media screen and (max-width:640px) {
	.app ul li {
	width:20%
}
}
.app ul li a:hover  {
	color:#FD4C5D;
	font-weight: bold;
}


.grid-container {
       display: grid;
    grid-template-columns: auto auto auto auto auto auto auto auto;
   }
 .grid-container ul {
    display: grid;
    grid-template-columns: auto auto auto auto auto auto auto auto;
   }
 .grid-item {
       padding: 6px;
       font-size: 16px;
       text-align: center;
       margin: 2px;
       background-color: turquoise;
   }

 .grid-item a {
       text-decoration: none;
       color: var(--black-color);
       font-weight: 600;
   }

   @media only screen and (max-width: 1400px) {
.grid-item {
     font-size: 16px;
}

.grid-container {
     grid-template-columns: auto auto auto auto auto auto;
}
.grid-container ul {
    display: grid;
    flex-wrap: wrap;
    grid-template-columns: auto auto auto auto;
   }  
}

   @media only screen and (max-width: 500px) {
     .grid-item {
           font-size: 14px;
       }

     .grid-container {
           grid-template-columns: auto auto auto auto;
       }
   }

.latt-container {
  display: grid;
  grid-template-columns: repeat(8, 137.4px);


}
.latt-item {
  background-color: #12e8b4;
  padding: 6px;
  font-size: 16px;
  text-align: center;
  margin: 2px;

}

.latt-item a {
	text-decoration:none;
	color: #dc3a1e;
    font-weight: 600;
}


}
@media only screen and (max-width: 1400px) {
	.latt-item {
	  font-size: 16px;
	}

	.latt-container {
	  grid-template-columns: auto auto auto auto auto auto;
	}

}


@media only screen and (max-width: 500px) {
	.latt-item {
	  font-size: 14px;
	}

	.latt-container {
	  grid-template-columns: repeat(8, 25%);
	}

}


.grid-container2 {
  display: grid;
  grid-template-columns: auto auto auto auto auto auto auto auto auto auto;
}
.grid-item2 {
  background-color: #0c6e47;
  padding: 5px;
  font-size: 14px;
  text-align: center;
  margin: 1px;

}

.grid-item2 a {
	text-decoration:none;
	color: #f7d0bf;
}


}
@media only screen and (max-width: 1400px) {
	.grid-item2 {
	  font-size: 16px;
	}

	.grid-container2 {
	  grid-template-columns: auto auto auto auto auto auto auto auto auto auto;
	}

}


@media only screen and (max-width: 500px) {
	.grid-item2 {
	  font-size: 14px;
	}

	.grid-container2 {
	  grid-template-columns: auto auto auto auto auto;
	}

}



.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 400
}

.h1,
h1 {
    font-size: 32px;
    font-weight: 300
}

.h2,
h2 {
    font-size: 22px;
    font-weight: 300
}

.h3,
h3 {
    font-size: 18px
}

.h4,
h4 {
    font-size: 16px
}

.h5,
h5 {
    font-size: 16px
}

.h6,
h6 {
    font-size: 12px
}

.small,
small {
    font-size: 85%
}

.inline {
    display: inline !important
}

.inline-block {
    display: inline-block !important;
    vertical-align: middle
}

.block {
    display: block !important
}


.appel-max {
    padding: 0 2px;
    clear: both
}

.appel>.appel:first {
    margin-top: -20px
}

.thumbnail-group {
    margin: 0 0 0 -1px;
    background-color: whitesmoke;
}

.thumbnail-group>li {
    float: left;
    width: 22.7%;
    margin: 20px 0 0 20px;
    background-color: #f4ebeb;
}

.thumbnail-group>li>.video-info {
    padding-top: 8px
}

.thumbnail-group>li>.video-info>h4 {
    overflow: hidden;
    font-size: 14px;
    line-height: 18px;
    height: 36px
}

.thumbnail-group>li>.video-info>h5,
.thumbnail-group>li>.video-info>p {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.thumbnail-group>li>.video-info>h5 {
    height: 18px;
    line-height: 18px;
    overflow: hidden
}

.thumbnail-group>li>.video-info>p {
    font-size: 12px;
    color: #999;
    line-height: 14px;
    height: 14px;
    width: 100%;
    margin-top: 5px
}

.thumbnail-group>li>.video-info>p>a {
    color: #999;
    margin-right: 6px
}

.thumbnail-group>li>.video-info>p>a:hover {
    color: #000
}

.thumbnail-group>li>.thumbnail {
    position: relative;
    display: block;
    width: 100%;
    overflow: hidden;
    background-color: #454545
}

.thumbnail-group>li>.thumbnail .video-grade {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 46px;
    line-height: 30px;
    padding: 13px 10px 0 0;
    overflow: hidden;
    color: #fff;
    text-align: right;
    font-size: 12px;
    background: url(../image/video-mask.png) 0 0 repeat-x
}

.thumbnail-group>li>.thumbnail .video-number {
    position: absolute;
    z-index: 1;
    right: 5px;
    bottom: 5px;
    display: block;
    overflow: hidden;
    color: #fff;
    padding: 0 8px;
    line-height: 20px;
    font-size: 12px;
    background-color: rgba(0, 0, 0, .6);
    border-radius: 100px
}

.thumbnail-group>li>.thumbnail img {
    display: block;
    width: 100%;
    height: 140px;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .5s;
    -o-transition: all linear .3s;
    transition: all linear .3s
}

.thumbnail-group>li>.thumbnail:hover img {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1)
}

.thumbnail-group>li>.thumbnail:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    cursor: pointer;
    opacity: 0;
    filter: alpha(opacity=0);
    transition: opacity 300ms linear;
    background: url(../image/video-play.png) no-repeat center rgba(0, 0, 0, .15);
    -webkit-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -ms-transform: scale(1.5);
    -o-transform: scale(1.5);
    transform: scale(1.5);
    -webkit-transition: all ease-out .35s;
    transition: all ease-out .35s
}

.thumbnail-group>li>.thumbnail:hover:after {
    opacity: 1;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1)
}

.thumbnail-group-small>li {}

.thumbnail-group-small>li>.thumbnail,
.thumbnail-group-small>li>.thumbnail img {
    height: 100px
}

.thumbnail-group-small>li>.thumbnail:hover:after {
    background-size: 30%
}

.thumbnail-group-special {
    clear: both
}

.thumbnail-group-special>li {
    width: 275px
}

.thumbnail-group-special>li>.thumbnail,
.thumbnail-group-special>li>.thumbnail img {
    width: 275px;
    height: 130px
}

.thumbnail-group-special>li>.video-info {
    text-align: center
}

.thumbnail-group+.list-group {
    border-top: 1px dashed #eee;
    margin-top: 18px;
    padding-top: 15px
}
@media(max-width:600px) {
    #ddav {
        width: 98%;
        margin: 5px auto;
        text-align: center;
        display: block
    }
    #ddav img {
        width: 100%;
        height: 50px
    }
    .area {
        margin: 0 auto;
        width: 100%;
        margin: 0 auto;
        overflow: hidden
    }
    .youmu-app dt {
        width: 20%;
        line-height: 62px;
        font-size: 14px;
        font-weight: 700
    }
    .youmu-app dd {
        width: 18.65%;
        line-height: 23px;
        font-size: 14px
    }
    .youmu-app dt:after {
        margin: 14px 2.6% 0;
        width: 0;
    }
    .youmu-app .first {
        border-top: 0
    }
    .content {
        padding-top: auto
    }
    .container {
        width: auto
    }
    .footer {
        font-size: 12px;
        line-height: 1.5;
    }
    .backtop {
        bottom: 30px
    }
    .backtop .iconfont {
        width: 32px;
        height: 32px;
        line-height: 32px;
        font-size: 18px;
        background-color: #FFFFFF
    }
    .container>.appel:first-child {
        margin-top: 0
    }
    .appel {
        margin-top: 10px;
        
    }
    .appel-main {
        width: auto;
        float: none
    }
    .appel-aside {
        width: auto;
        float: none;
        border-top: 1px solid #f0f0f0;
        margin-top: 10px;
        padding-top: 3px
    }
    .appel-title {
        font-size: 16px;
        margin-left: 5px;
        padding-left: 10px
    }
    .appel-more {
        font-size: 12px
    }
    .thumbnail-group {
        margin: 0
    }
    .thumbnail-group>li {
        float: left;
        width: 50%;
        margin: 0;
        padding: 5px;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box
    }
    .thumbnail-group>li>.thumbnail .video-grade {
        padding: 20px 5px 0 0
    }
    .thumbnail-group>li>.thumbnail,
    .thumbnail-group>li>.thumbnail img {
        width: 100%;
        height: 125px
    }
    .thumbnail-group-small>li>.video-info {
        padding-top: 5px
    }
    .thumbnail-group-small>li>.video-info>h4 {
        font-size: 12px
    }
    .thumbnail-group-small>li>.thumbnail,
    .thumbnail-group-small>li>.thumbnail img {
        height: 70px
    }
    .thumbnail-group-special>li {
        float: none;
        width: auto
    }
    .thumbnail-group-special>li>.thumbnail,
    .thumbnail-group-special>li>.thumbnail img {
        width: 100%;
        height: auto
    }
    .rank-group {
        padding: 5px;
        margin-top: 0
    }
    .rank-group>li:nth-child(n+11) {
        display: none
    }
    .rank-group>li {
        line-height: 30px;
        float: left;
        width: 50%
    }
    .rank-group>li .rank-title {
        right: 10px;
        left: 20px
    }
    .rank-group>li .rank-grade {
        display: none
    }
    .filter {}
    .filter-primary {
        padding: 0;
        line-height: 35px;
        font-size: 14px
    }
    .filter-primary dd {
        width: 25%;
        text-align: center;
        padding: 5px
    }
    .filter-primary dd>a {
        display: block;
        background-color: #f5f5f5;
        line-height: 30px;
        font-size: 14px;
        border-radius: 2px
    }
    .category {
        margin-top: 10px;
        padding: 10px 0;
        line-height: 26px
    }
    .category dt {
        padding: 0 5px
    }
    .category dd {
        overflow: inherit;
        white-space: nowrap;
        margin-bottom: 7px
    }
    .category dd a {
        font-size: 12px;
        height: 26px;
        line-height: 26px;
        padding: 0 10px;
        background-color: transparent
    }
    .category dd a:hover,
    .category dd a:active {
        color: #000;
        background-color: transparent
    }
    .category dd a.active,
    .category dd a.active:hover,
    .category dd a.active:active {
        color: #fff;
        background-color: #fff
    }
    .detail {
        padding: 0 5px
    }
    .appel .breadcrumbs {
        padding: 5px 5px 10px
    }
    .detail-info .detail-header {
        margin-bottom: 0
    }
    .detail-poster {
        width: 190px
    }
    .detail-poster>a img {
        min-height: 110px
    }
    .detail-info {
        float: none;
        width: auto;
        padding-left: 15px
    }
    .detail-info h2 {
        font-size: 18px;
        line-height: 1;
        margin-bottom: 5px
    }
    .detail-info h2 small {
        display: block;
        margin: 5px 0 0;
        font-size: 12px
    }
    .detail-info h3 {
        font-size: 14px;
        margin-bottom: 5px
    }
    .detail-info .detail-actor>li {
        padding: 0;
        line-height: 25px;
        white-space: normal;
        font-size: 12px
    }
    .detail-info .detail-actor>li a {
        margin-right: 5px;
        display: inline-block
    }
    .detail-info .detail-actor>li a:after {
        display: none
    }
    .detail-info .detail-actor>li p {
        width: auto
    }
    .detail-source {
        float: none;
        width: 100%;
        padding: 10px 0;
        clear: both
    }
    .detail-tab {
        margin-bottom: 5px;
        white-space: nowrap;
        font-size: 0;
        overflow-x: auto;
        overflow-y: hidden
    }
    .detail-tab>li {
        float: none;
        margin: 0;
        display: inline-block;
        vertical-align: bottom;
        font-size: 14px;
        border: 0;
        background-color: #fff
    }
    .detail-tab>li>a {
        padding: 10px 15px
    }
    .detail-tab>li.active>a,
    .detail-tab>li.active>a a:hover {
        border-bottom: 2px solid #000;
        padding-bottom: 8px
    }
    .detail-play-list li {
        width: 25%
    }
    .detail-play-list li>a {
        line-height: 30px;
        font-size: 13px
    }
    .play {
        padding: 2px 0 0
    }
    .play h2 {
        margin-bottom: 10px;
        padding: 0 10px;
        font-size: 16px
    }
    .play .player {
        height: 200px;
        box-shadow: none
    }
    .play-source {
        padding-left: 10px;
        padding-right: 10px;
        margin-top: 0
    }
    .play-source .detail-play-list li {
        width: 25%
    }
    .play-interaction {
        height: 48px;
        box-shadow: none;
        padding: 0 10px
    }
    .play-interaction>.play-btn {
        margin-top: 8px
    }
    .play-interaction>.play-btn>a {
        padding: 0 13px
    }
    .play-summary {
        display: none
    }
    .play-intro {
        padding: 10px 5px 0
    }
    .play-intro span {
        margin: 0;
        display: block;
        margin-bottom: 5px
    }
    .play-intro a {
        margin-right: 5px;
        color: #666
    }
    .news-main,
    .news-aside {
        width: auto;
        float: none
    }
    .news-group {
        margin: 0 0 0 18px
    }
    .news-group>li>.rank-title {
        left: 0;
        right: 20px
    }
    .news-listing {
        margin: 0
    }
    .news-listing>li {
        padding: 10px
    }
    .news-listing .news-thumbnail {
        width: 125px;
        height: 80px
    }
    .news-listing .news-info {
        padding-left: 10px
    }
    .news-listing .news-info h5 {
        margin-bottom: 0;
        height: 80px;
        line-height: 26px;
        font-size: 16px;
        white-space: normal
    }
    .news-listing .news-info p {
        display: none
    }
    .tags-group {
        margin: 5px
    }
    .news-appel {
        padding: 20px 10px
    }
    .news-appel .breadcrumbs {
        display: none
    }
    .news-appel .news-preview {
        display: none
    }
    .news-appel .news-caption>h2 {
        font-size: 20px;
        line-height: 1.2
    }
    .news-appel .news-caption>p {
        font-size: 12px
    }
    .news-appel .news-caption>p>span {
        margin-right: 10px
    }
    .news-appel .news-content {
        font-size: 15px
    }
    .news-appel .news-more {
        margin-bottom: 0
    }
    .special-intro-pic {
        float: none;
        width: 100%
    }
    .special-intro-text {
        padding: 0
    }
    .special-intro-text h2 {
        font-size: 18px;
        margin: 5px 0
    }
    .special-intro-text p {
        font-size: 14px;
        line-height: 1.5;
        max-height: none
    }
    .special-intro-text .special-share {
        position: static
    }
    .actor-appel .actor-avatar {
        width: 30%;
        margin-bottom: 0
    }
    .actor-appel .actor-intro {
        overflow: hidden;
        padding-left: 10px;
        margin-bottom: 0
    }
    .actor-appel .actor-intro h2 {
        font-size: 18px;
        font-weight: 700;
        margin-bottom: 10px
    }
    .actor-appel .actor-intro .info {
        clear: both;
        margin-bottom: 10px
    }
    .actor-appel .actor-intro .info li {
        float: none;
        width: auto;
        padding: 2px 0 2px 80px;
        line-height: 20px
    }
    .actor-appel .actor-intro .info .title {
        margin-left: -80px
    }
    .latest-primary .latest-tabs {
        margin: 0
    }
    .latest-primary .latest-tabs>li {
        height: 28px;
        line-height: 28px;
        font-size: 12px
    }
    .latest-primary .list-group {
        margin: 5px 5px 0;
        padding-top: 10px
    }
    .latest-primary .list-group>li {
        width: 50%;
        line-height: 22px;
        padding-right: 0;
        font-size: 12px
    }
    .latest-primary .list-group-50 {
        padding-top: 0
    }
    .latest-primary .list-group-50>li {
        width: 100%
    }
    .latest-listing .thumbnail-group>li:nth-child(n+13) {
        display: none
    }
    .tab-content.pt15 {
        padding-top: 0 !important
    }
    .four-zero-four {
        padding: 30px
    }
    .four-zero-four h2 {
        font-size: 64px
    }
    .four-zero-four h3 {
        font-size: 24px
    }
    .four-zero-four p {
        font-size: 16px
    }
    .role-relation {
        display: none
    }
    .detail-download .table .code .h5 {
        display: none
    }
}

.vod area{
    border-bottom: 1px solid #fff;
}
.vod area .container{
    padding-bottom: 20px;
    border-bottom: 1px solid #fff;
}

@media screen and (max-width: 1000px){
.container {
    width: auto;
    margin: 5px 0;

}
.header .container{
  display: flex;
  flex-direction: column;   
    } 

.app ul li {
    width: 20%;
}    
}
.friend-link {
    padding: 10px 0 0
}

.friend-link a {
    margin-right: 10px
}

.footer {
    line-height: 24px;
    color: #0b0b0b;
    text-align: center;
    background-color: #f7eeee;
}
.footer p{
    font-size:14px;
    margin: 0px;
}
.footer p font{
    color: black;
}
.footer a {
    color: #999
}

.footer a:hover {
    color: #fff
}


.area{
    background-color: #fff;
}




