@charset "utf-8";
/* --------------- reset --------------- */
html, body, div, span, h1, h2, h3, h4, h5, h6, p, em, img, strong, sub, sup, b, u, i, dl, dt, dd, ol, ul, li, fieldset, form, label, table, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
  font-size: 100%;
}
img {
  display: inline-block;
}
html {
  height: 100%;
}
body {
  height: auto !important;
  height: 100%;
  min-height: 100%;
  position: relative;
}
a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
td, td img {
  vertical-align: top;
}
input, select, button, textarea {
  margin: 0;
  font-size: 100%;
}
input[type="text"], input[type="password"], textarea {
  padding: 0;
}
input[type="checkbox"] {
  vertical-align: bottom;
}
input[type="radio"] {
  vertical-align: text-bottom;
}
sub {
  vertical-align: sub;
  font-size: smaller;
}
sup {
  vertical-align: super;
  font-size: smaller;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
nav ul {
  list-style: none;
}
input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: #757575;
}
input:-moz-placeholder, textarea:-moz-placeholder {
  color: #757575;
  opacity: 1;
}
input::-moz-placeholder, textarea::-moz-placeholder {
  color: #757575;
  opacity: 1;
}
input:-ms-input-placeholder, textarea:-ms-input-placeholder {
  color: #757575;
}
input:focus::-webkit-input-placeholder, textarea:focus::-webkit-input-placeholder {
  color: transparent;
}
input:focus:-moz-placeholder, textarea:focus:-moz-placeholder {
  color: transparent;
}
input:focus::-moz-placeholder, textarea:focus::-moz-placeholder {
  color: transparent;
}
input:focus:-ms-input-placeholder, textarea:focus:-ms-input-placeholder {
  color: transparent;
}

/* --------------- /reset --------------- */


/* --------------- fix styles ---------*/

.cc {
  clear: both;
}

.cfix:after {
  content: " ";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

.hidden {
  display: none;
}

.show {
  display: block!important;
}

.left {
  float: left;
}

.right {
  float: right;
}

.center {
  margin: 0 auto;
  display: block;
}

.txtleft {
  text-align: left!important;
}

.txtright {
  text-align: right!important;
}

.txtcenter {
  text-align: center!important;
}


/* --------------- /fix styles ---------*/


/* --------------- main styles ---------*/

html {
  overflow-y: scroll;
}

body {
  line-height: 1;
  background: #DDE865;
  color: #242424;
  text-align: left;
  font-size: 12px;
  font-family: 'Bree Serif', serif;
  margin: 0 auto;
}

input, select, button, textarea {
  font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
}

label, input[type="button"], input[type="submit"], button {
  cursor: pointer;
}

a, a:visited {
  color: #e7620d;
  text-decoration: none;
}

a:hover {
  color: #626262;
  text-decoration: none;
}

a:focus, a:active {
  color: #e7620d;
  text-decoration: none;
}

.header, .footer, .content {
  width: 100%;
  margin: 0 auto;
  padding: 0px;
  position: relative;
}

.page-layout {
  margin: 0 auto;
  padding: 0;
  position: relative;
  max-width: 1510px;
}

.page-layout:after {
  content: " ";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

/* --------------- /main styles ---------*/


/* --------------- header styles ---------*/


.header .page-layout {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
}

.header .logo-box {
  width: 440px;
  height: 60px;
  background: url(img/logo.png);
  display: block;
  margin: 5px 0;
  flex-shrink: 0;
}

.header .search-box {
  flex-grow: 1;
  position: relative;
  margin: 5px 10px;
  background: #363636;
  padding: 6px;
  border-radius: 8px;
}

.header .search-box form {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
}

.header .search-box .input {
  vertical-align: top;
  flex-grow: 2;
}

.header .search-box input {
  vertical-align: top;
}

.header .search-box input[type="text"] {
  width: 100%;
  margin: 0;
  height: 50px;
  font-size: 14px;
  line-height: 50px;
  padding: 0 10px;
  box-sizing: border-box;
  color: #757575;
  background: #DDE865;
  border: transparent;
  border-radius:8px 0px  0px  8px;
}

.header .search-box input[type="submit"] {
  width: 50px;
  height: 50px;
  margin: 0;
  padding: 0;
  cursor: pointer;
  background: transparent;
  border: none;
  text-indent: -9999px;
  font-size: 0;
  background: url(img/search.svg) no-repeat center center #e7620d;
  border-radius: 0px 8px 8px 0px;
}

.header .menu-wrap{
  margin: 5px 10px;
  background: #363636;
  border-radius: 8px;
}
.header .menu{
  display: inline-block;
  vertical-align: top;
  border-radius: 8px 0 0 8px;
  overflow: hidden;
}
.header .menu > a{
  font-size: 16px;
  line-height: 62px;
  color: #DDE865;
  padding: 0 10px;
  text-transform: uppercase;
  display: inline-block;
  border-right: 1px solid #000000;
}
.header .menu > a:hover{
  color: #e7620d;
  background: #000000;
}

.header .dropdown-btn{
  position: relative;
  display: inline-block;
}
.header .dropdown-btn .drop-btn{
  margin: 7px 10px;
  padding: 0 10px;
  font-size: 14px;
  line-height: 48px;
  position: relative;
  cursor: pointer;
  text-transform: capitalize;
  color: #e7620d;
  background: #000000;
  border-radius: 8px;
  min-width: 150px;
}
.header .dropdown-btn.dropped .drop-btn,
.header .dropdown-btn .drop-btn:hover{
}
.header .dropdown-btn.dropped .drop-btn{
  border-bottom-color: transparent;
  border-radius: 8px 8px 0 0;
}
.header .dropdown-btn .drop-btn i{
  display: block;
  position: absolute;
  top: 20px;
  right: 5px;
  width: 8px;
  height: 7px;
  background-image: url(img/arrow_dn.svg); 
  margin-left: 10px;
}
.header .dropdown-btn.dropped .dropdown{
  display: block;
}
.header .dropdown-btn .dropdown .wrapper{
  display: block;
  width: 100%;
  height: 48px;
  position: absolute;
  top: -48px;
}
.header .dropdown-btn .dropdown{
  display: none;
}
.header .dropdown-btn .dropdown{
  text-transform: capitalize;
  background: #000000;
  border-radius: 0 0 8px 8px;
  font-size: 14px;
  line-height: 16px;
  position: absolute;
  top: 55px;
  left: 10px;
  right: 10px;
  z-index: 100;
  border-top: none;
  text-align: left;
}
.header .dropdown-btn .dropdown a{
  display: block;
  padding: 5px 10px;
  margin: 0 0 5px 0;
  color: #e7620d;
}
.header .dropdown-btn .dropdown .a,
.header .dropdown-btn .dropdown a:hover{
  color: #DDE865;
}

/* --------------- /header styles ---------*/

.text-box {
  padding: 15px;
  font-size: 12px;
  line-height: 16px;
  text-align: center;
}

.top-searches{
  padding: 6px;
  margin: 10px 0;
  border-radius: 10px;
  border: 1px solid #bababa;
  background: #dfdfdf;
  color: #949494;
  font-size: 12px;
  line-height: 20px;
}
.top-searches span{
  text-transform: uppercase;
}
.top-searches a{
  color: #363636;
}
.top-searches a:hover{
  color: #e7620d;
}

/* --------------- title box styles ---------*/
.title-box {
  text-align: left;
  color: #000000;
  position: relative;
  font-size: 24px;
  line-height: 26px;
  margin: 5px 0;
  text-transform: capitalize;
}
.title-box h1,
.title-box h2,
.title-box h3{
  display: inline-block;
  font-weight: normal;
  font-size: 24px;
  line-height: 26px;
  color: #000000;
}

/* --------------- /title box styles ---------*/


/* --------------- navigations box styles ---------*/

.nav {
  text-align: center;
  padding: 15px 0;
}

.pages {
  font-size: 14px;
  line-height: 14px;
  padding: 0;
  margin: 0;
  margin-right: 5px;
  text-transform: uppercase;
}

.pages span,
.pages a {
  display: inline-block;
  vertical-align: middle;
  padding: 10px 12px;
  text-align: center;
  text-decoration: none;
  color: #333333;
  background: #DDE865;
  border: 1px solid #FFFFFF;
  border-radius: 4px;
}

.pages span,
.pages .a,
.pages .current,
.pages a:hover {
  text-decoration: none;
  color: #626262;
  background: #FFFFFF;
}

/* --------------- /navigations box styles ---------*/



/* ---------------   sidebox styles ---------*/

.content-wrap {
  margin-left: 256px;
}

.sidebox {
  padding: 0;
  font-size: 12px;
  width: 256px;
  text-align: left;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
}

.sidebox .title{
  font-size: 14px;
  color: #444444;
  padding: 20px;
  text-transform: uppercase;
  background: #fff;
}

.sidebox .list {
  display: block;
}
.sidebox .list ul {
  list-style-type: none;
  font-size: 14px;
  line-height: 40px;
}
.sidebox .list ul li {
  padding: 0;
  display: block;
  position: relative;
  background: #A2AE48;
  border-bottom: 1px solid #FFFFFF;
  border-radius: 10px;
  margin-bottom: 2px;
  overflow: hidden;
}
.sidebox .list ul li a{
  display: block;
  text-decoration: none; 
  margin: 0;
  padding: 0 30% 0 15px;
  position: relative;
  color: #1f1f1f;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
  -moz-binding: url('assets/xml/ellipsis.xml#ellipsis');
}
.sidebox .list ul li:hover a,
.sidebox .list ul li a:hover{
  text-decoration: none;
  color: #626262;
  background: #FFFFFF;
}
.sidebox .list ul li > span{
  position: absolute;
  top: 0;
  right: 0;
  color: #000000;
  font-size: 14px;
  line-height: 40px;
  margin: 0 6px;
  text-align: left;
  width: 26%;
  box-sizing: padding-box;
  overflow: hidden;
  text-align: center;
}
.sidebox .list ul li.all{
  background: #DDE865;
  border: 1px solid #FFFFFF;
}
.sidebox .list ul li.all a{
  font-size: 16px;
  line-height: 54px;
  color: #000000;
  padding: 0;
  text-align: center;
  text-transform: uppercase;
}
.sidebox .top.list ul li{
  border: none;
  background: transparent;
  line-height: 30px;
}
.sidebox .top.list ul li a{
  color: #414241;
}
.sidebox .top.list ul li a:hover{
  color: #e7620d;
  background: transparent;
}
.sidebox .top.list ul li > span{
  color: #919191;
  font-size: 10px;
  line-height: 30px;
}
.sidebox .text{
  font-size: 12px;
  padding: 15px;
}
/* ---------------  /sidebox styles ---------*/


/* ---------------  thumbs box styles ---------*/

.thumbs {
  display: block;
  font-size: 0;
  text-align: center;
  margin: 0 -3px
}

.thumb {
  position: relative;
  color: #3d3d3d;
  text-align: left;
  display: inline-block;
  vertical-align: top;
  font-size: 12px;
}

.thumb>div {
  position: relative;
  width: 240px;
  margin: 6px;
}

.thumb:hover>div {
}

.thumb img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 5px;
}
.thumb .d{
  text-align: center;
  height: 22px;
  font-size: 12px;
  line-height: 22px;
  color: #DDE865;
  border-radius: 0 0 5px 5px;
  padding: 0 10px;
  overflow: hidden;
  position: absolute;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
}

.thumb .drop {
  position: absolute;
  left: 0;
  right: 0;
  background-color: #DDE865;
  border-radius: 0 0 5px 5px;
  font-size: 12px;
  line-height: 16px;
  color: #949494;
  text-transform: uppercase;
  z-index: 2;
}
.thumb .i {
  color: #000000;
  height: 16px;
  padding: 0 10px;
  overflow: hidden;
}
.thumb .i > div {
  float: left;
  width: 50%;
}
.thumb .i > div:last-child {
  text-align: right;
}
.thumb .i:after {
  content: " ";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

.thumb .tags {
  font-size: 10px;
  line-height: 22px;
  height: 22px;
  padding: 0 10px;
  overflow: hidden;
  display: none;
}
.thumb:hover .tags {
  display: block;
}
.thumb .tags a {
  padding: 0 2px;
  display: inline-block;
  color: #363636;
}
.thumb .tags a:hover {
  color: #e7620d;
}



/* --------------- /thumbs box styles ---------*/


/* --------------- video embed styles ---------*/

.video-page-wrapper {
  position: relative;
  padding-right: 320px;
  max-width: 1300px;
  min-height: 600px;
}

.video-page {
  display: block;
  margin-bottom: 20px;
  max-width: 1300px;
}

.video-box {
  margin: 0;
  position: relative;
  display: block;
  height: 0;
  padding: 0;
  overflow: hidden;
}

.video-box .video-box-item,
.video-box iframe,
.video-box embed,
.video-box object,
.video-box video {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-box.video-16by9 {
  padding-bottom: 56.25%;
}

.video-box.video-4by3 {
  padding-bottom: 75%;
}

.video-ad {
  display: block;
  width: 320px;
  height: 770px;
  overflow: hidden;
  position: absolute;
  top: 0;
  right: 0;
  text-align: center;
}

.video-ad iframe {
  margin-bottom: 5px;
}

.video-page .video-content {
  margin: 0 auto;
  position: relative;
}

.video-page .videoad {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -150px;
  margin-top: -112px;
  width: 300px;
}

.video-page .videoad .close {
  position: absolute;
  top: -25px;
  right: -5px;
  color: #e7620d;
  font-size: 30px;
  line-height: 30px;
  text-align: center;
  width: 25px;
  height: 30px;
  z-index: 10;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.5);
}

.inner-page .videoad iframe {
  width: 300px;
  height: 250px;
}

.video-page .video-info {
  padding: 6px;
  margin: 5px 0;
  border-radius: 10px;
  border: 1px solid #bababa;
  background: #dfdfdf;
  color: #949494;
  font-size: 12px;
  line-height: 20px;
}
.video-page .video-info span{
  text-transform: uppercase;
}
.video-page .video-info a{
  color: #363636;
}
.video-page .video-info a:hover{
  color: #e7620d;
}
.video-page .video-info .info {}
.video-page .video-info .info span{
  color: #000000;
}

/* --------------- /video embed styles ---------*/


/* --------------- banners styles ---------*/

.spots-box {
  margin: 0 auto;
  display: block;
  text-align: center;
  max-width: 1200px;
}

.spots-box .spot {
  width: 300px;
  margin: 5px 0px;
  text-align: center;
  display: inline-block;
  float: left;
}

.spots-box .spot a {
  text-decoration: none;
  color: #626262;
  font-weight: bold;
  font-size: 15px;
}

.top-spots{
  margin: 5px 0;  
}

.top-spots > iframe{
  margin: 0 auto;
  display: block;
}


/* --------------- /banners styles ---------*/


/* --------------- footer styles ---------*/

.footer {
  font-size: 14px;
  line-height: 18px;
  padding: 10px 0;
  color: #787878;
  text-align: center;
}

.footer a {
  padding: 0 5px;
}

/* --------------- /footer styles ---------*/


/* --------------- media screen styles ---------*/

@media only screen and (min-width: 1270px) and (max-width: 1510px) {
  .page-layout {
    max-width: 1265px;
  }
}

@media only screen and (min-width: 1025px) and (max-width: 1269px) {
  .page-layout {
    max-width: 1010px;
  }
  .video-page-wrapper .sidebox,
  .video-ad {
    height: 510px;
    overflow: hidden;
  }
  .video-page-wrapper {
    min-height: 510px;
  }
}

@media only screen and (max-width: 1024px) {
  .page-layout {
    padding: 0 7px;
  }
  .header .page-layout {
    /* display: block; */
    flex-wrap: wrap;
  }
  .video-page-wrapper{
    padding-right: 0;
  }
  .video-page .videoad{
    display: none;
  }
  .video-ad {
    display: block;
    height: 250px;
    overflow: hidden;
    position: relative;
    right: 0;
    text-align: center;
    top: 0;
    width: 100%;
  }
  .thumb>div {
    width: auto;
  }
  .content-wrap {
    margin-left: 0px;
  }
  .sidebox {
    width: auto;
    position: unset;
    height: auto;
  }
  .sidebox .list ul:after {
    content: " ";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
  }
  .sidebox .list ul li {
    float: left;
    border-left: 1px solid #e4e4e4;
    box-sizing: border-box;
  }
}

@media only screen and (min-width: 960px) and (max-width: 1024px) {}

@media only screen and (min-width: 640px) and (max-width: 1024px) {
  .sidebox .list ul li{
    width: 33%;
  }
  .thumb {
    width: 25%;
  }
}

@media only screen and (max-width: 959px) {
  .header .logo-box {
    display: block;
    margin: 0 auto;
  }
  .footer {
    text-align: center;
  }
}
@media only screen and (min-width: 768px) and (max-width: 959px) {}
@media only screen and (min-width: 736px) and (max-width: 767px) {}
@media only screen and (max-width: 735px) {
  .nav .pages a,
  .nav .pages span {
    display: none;
  }
  .nav .pages .prev,
  .nav .pages .next,
  .nav .pages .current {
    display: inline-block;
  }
  .thumb {
    width: 33%;
  }
  .top-spots > iframe{
    width: 100%;
  }
}
@media only screen and (min-width: 669px) and (max-width: 735px) {}
@media only screen and (min-width: 640px) and (max-width: 668px) {}
@media only screen and (max-width: 639px) {

}
@media only screen and (min-width: 480px) and (max-width: 639px) {
  .sidebox .list ul li{
    width: 50%;
  }
  .thumb {
    width: 50%;
  }
}
@media only screen and (min-width: 568px) and (max-width: 639px) {}
@media only screen and (min-width: 480px) and (max-width: 567px) {}
@media only screen and (max-width: 479px) {
  .header .logo-box {
    width: 263px;
    height: 60px;
    background-size: 263px 60px;
    margin-bottom: 2px;
  }
  .sidebox .list ul li{
    width: 50%;
  }
}
@media only screen and (min-width: 375px) and (max-width: 479px) {
  .thumb {
    width: 50%;
  }
}
@media only screen and (min-width: 414px) and (max-width: 479px) {}
@media only screen and (min-width: 375px) and (max-width: 413px) {}
@media only screen and (min-width: 360px) and (max-width: 374px) {
  .thumb {
    width: 100%;
  }
}
@media only screen and (max-width: 359px) {
  .thumb {
    width: 100%;
  }
}

/* --------------- /media screen styles ---------*/