.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: .5rem;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  line-height: 1.2;
}

h1 {
  font-size: 38px;
  line-height: 1.1;
}

h2 {
  font-size: 1.53125rem;
}

h3 {
  font-size: 1.3125rem;
}

h4 {
  font-size: 1.09375rem;
}

h5 {
  font-size: .98438rem;
}

h6 {
  font-size: .875rem;
}

b,
strong {
  font-weight: bold;
}

big {
  font-size: 125%;
}

small {
  font-size: 80%;
}

@media (min-width: 768px) {
  .container {
    max-width: 100%;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 100%;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1200px;
  }
}

@media (min-width: 1500px) {
  .container {
    max-width: 1300px;
  }
}

body {
  width: 100%;
  font-family: "Roboto-Regular", sans-serif;
  background: #ffffff;
  color: #1a1a1a;
  font-size: 1rem;
  font-weight: 300;
}

img {
  max-width: 100%;
  height: auto;
}

.white {
  color: #ffffff;
}

.green {
  color: #41e8b6;
}

.black {
  color: #000;
}

.red {
  color: #d60c0c;
}

.bg-pink {
  background-color: #eea0ad;
}

.color-Gray {
  color: #999;
  opacity: 0.7;
}

.opacity03 {
  opacity: 0.3;
}

.opacity03:hover {
  color: #d60c0c;
}

.ul-unstyle {
  padding: 0;
  margin: 0;
  list-style: none;
}

.button-custom {
  color: #ffffff;
  border: none;
  text-transform: uppercase;
  padding: 10px 20px;
}

.btn-more {
  color: red;
  width: 100%;
  text-align: center;
  display: block;
  text-decoration: none;
}

.btn-more:hover {
  color: #f68b1f;
}

.btn-more-conten {
  text-transform: uppercase;
  padding: 10px;
  color: #777;
  background-color: #fff;
  cursor: pointer;
  text-decoration: none;
  transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -webkit-transition: .25s ease-in-out;
  border: 1px solid #777;
  display: inline-block;
  font-family: "Oswald", sans-serif;
  width: 200px;
}

.btn-more-conten:hover,
.btn-more-conten:active {
  filter: brightness(90%);
}

.ad-label {
  text-transform: uppercase;
  color: #aaa;
  text-align: center;
  font-size: 10px;
  font-style: italic;
}

.icon-social {
  height: 100%;
  justify-content: flex-start;
  display: flex;
  align-items: center;
}

.icon-social a {
  background: #f0b830;
  color: #fff;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  display: flex;
  font-size: 20px;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  margin: 0 5px;
  text-decoration: none;
}

.icon-social a:hover {
  background: #926a0b;
}

#search-wrap {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  background: rgba(0, 0, 0, 0.94);
  opacity: 0;
  position: fixed;
  top: 0;
  left: 0;
  -webkit-transform: translate3d(0, -100%, 0);
  -moz-transform: translate3d(0, -100%, 0);
  -ms-transform: translate3d(0, -100%, 0);
  -o-transform: translate3d(0, -100%, 0);
  transform: translate3d(0, -100%, 0);
  -webkit-transition: -webkit-transform 0.25s ease;
  -moz-transition: -moz-transform 0.25s ease;
  -ms-transition: -ms-transform 0.25s ease;
  -o-transition: -o-transform 0.25s ease;
  transition: transform 0.25s ease;
  width: 100%;
  height: 100%;
  z-index: 999999;
}

#search-wrap.search-toggle {
  opacity: 1 !important;
  -webkit-transform: translate3d(0, 0, 0) !important;
  -moz-transform: translate3d(0, 0, 0) !important;
  -ms-transform: translate3d(0, 0, 0) !important;
  -o-transform: translate3d(0, 0, 0) !important;
  transform: translate3d(0, 0, 0) !important;
}

#search-wrap #search-box {
  margin: -30px 0 0 -25%;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50%;
}

#search-wrap #search-box #searchform input {
  background: none;
  border: 0;
  color: #fff;
  float: left;
  font-size: 50px;
  font-weight: 300;
  line-height: 1;
  padding: 5px 0;
  text-transform: uppercase;
  width: 100%;
  height: 50px;
}

#search-wrap #search-box #searchform input {
  border-bottom: 1px solid #41e8b6;
}

#search-wrap .search-click-close {
  position: absolute;
  top: 60px;
  right: 80px;
  width: 60px;
  height: 60px;
}

#search-wrap .search-click-close span {
  background: #fff;
  top: 27px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  -o-border-radius: 2px;
  border-radius: 2px;
  display: block;
  position: absolute;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -ms-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
  height: 3px;
}

#search-wrap .search-click-close span:nth-child(1),
#search-wrap .search-click-close span:nth-child(2) {
  width: 60px;
}

#search-wrap .search-click-close span:nth-child(1) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

#search-wrap .search-click-close span:nth-child(2) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.block-fix div[class*='col-lg-'] {
  position: static;
}

.comment_form input,
.comment_form textarea {
  border: 1px solid #c4c7c9;
  width: 100%;
  margin-bottom: 15px;
  padding: 15px;
}

.button-custom {
  background: #777;
  color: #fff;
}

.mvp-fly-top {
  background: rgba(0, 0, 0, 0.3);
  border-top: 1px solid #fff;
  border-left: 1px solid #fff;
  border-bottom: 1px solid #fff;
  color: #fff;
  cursor: pointer;
  opacity: 1;
  overflow: hidden;
  position: fixed;
  right: 0;
  top: 50%;
  -webkit-transition: all .3s;
  transition: all .3s;
  -webkit-transform: translate3d(100px, 0, 0);
  -moz-transform: translate3d(100px, 0, 0);
  -ms-transform: translate3d(100px, 0, 0);
  -o-transform: translate3d(100px, 0, 0);
  transform: translate3d(100px, 0, 0);
  width: 50px;
  height: 50px;
  z-index: 9999;
}

.mvp-to-top {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.mvp-fly-top i {
  font-size: 40px;
  line-height: 100%;
  position: absolute;
  top: 1px;
  left: 12.1px;
}

.loader {
  position: fixed;
  z-index: 110000;
  height: 100%;
  width: 100%;
  left: 0;
  right: 0;
  overflow: hidden;
  top: 0;
  bottom: 0;
  background: #fff;
}

.loader .cssload-thecube {
  top: 30%;
  width: 73px;
  height: 73px;
  margin: 0 auto;
  margin-top: 49px;
  position: relative;
  transform: rotateZ(45deg);
  -o-transform: rotateZ(45deg);
  -ms-transform: rotateZ(45deg);
  -webkit-transform: rotateZ(45deg);
  -moz-transform: rotateZ(45deg);
}

.loader .cssload-thecube .cssload-cube {
  position: relative;
  transform: rotateZ(45deg);
  -o-transform: rotateZ(45deg);
  -ms-transform: rotateZ(45deg);
  -webkit-transform: rotateZ(45deg);
  -moz-transform: rotateZ(45deg);
  float: left;
  width: 50%;
  height: 50%;
  position: relative;
  transform: scale(1.1);
  -o-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
}

.loader .cssload-thecube .cssload-cube::before {
  background-color: #f68b1f;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  animation: cssload-fold-thecube 3.12s infinite linear both;
  -o-animation: cssload-fold-thecube 3.12s infinite linear both;
  -ms-animation: cssload-fold-thecube 3.12s infinite linear both;
  -webkit-animation: cssload-fold-thecube 3.12s infinite linear both;
  -moz-animation: cssload-fold-thecube 3.12s infinite linear both;
  transform-origin: 100% 100%;
  -o-transform-origin: 100% 100%;
  -ms-transform-origin: 100% 100%;
  -webkit-transform-origin: 100% 100%;
  -moz-transform-origin: 100% 100%;
}

.loader .cssload-thecube .cssload-c2 {
  transform: scale(1.1) rotateZ(90deg);
  -o-transform: scale(1.1) rotateZ(90deg);
  -ms-transform: scale(1.1) rotateZ(90deg);
  -webkit-transform: scale(1.1) rotateZ(90deg);
  -moz-transform: scale(1.1) rotateZ(90deg);
}

.loader .cssload-thecube .cssload-c2:before {
  animation-delay: 0.39s;
  -o-animation-delay: 0.39s;
  -ms-animation-delay: 0.39s;
  -webkit-animation-delay: 0.39s;
  -moz-animation-delay: 0.39s;
}

.loader .cssload-thecube .cssload-c3 {
  transform: scale(1.1) rotateZ(180deg);
  -o-transform: scale(1.1) rotateZ(180deg);
  -ms-transform: scale(1.1) rotateZ(180deg);
  -webkit-transform: scale(1.1) rotateZ(180deg);
  -moz-transform: scale(1.1) rotateZ(180deg);
}

.loader .cssload-thecube .cssload-c3:before {
  animation-delay: 0.78s;
  -o-animation-delay: 0.78s;
  -ms-animation-delay: 0.78s;
  -webkit-animation-delay: 0.78s;
  -moz-animation-delay: 0.78s;
}

.loader .cssload-thecube .cssload-c4 {
  transform: scale(1.1) rotateZ(270deg);
  -o-transform: scale(1.1) rotateZ(270deg);
  -ms-transform: scale(1.1) rotateZ(270deg);
  -webkit-transform: scale(1.1) rotateZ(270deg);
  -moz-transform: scale(1.1) rotateZ(270deg);
}

.loader .cssload-thecube .cssload-c4:before {
  animation-delay: 1.17s;
  -o-animation-delay: 1.17s;
  -ms-animation-delay: 1.17s;
  -webkit-animation-delay: 1.17s;
  -moz-animation-delay: 1.17s;
}

@media screen and (max-width: 479px) {
  #search-wrap .search-click-close {
    top: 20px;
    right: 20px;
  }
}

@media screen and (min-width: 1024px) and (max-width: 1199px) {

  .row>.col,
  .row>[class*=col-] {
    padding-right: 7px;
    padding-left: 7px;
  }

  .row {
    margin-right: -7px;
    margin-left: -7px;
  }
}

@keyframes cssload-fold-thecube {

  0%,
  10% {
    transform: perspective(136px) rotateX(-180deg);
    opacity: 0;
  }

  25%,
  75% {
    transform: perspective(136px) rotateX(0deg);
    opacity: 1;
  }

  90%,
  100% {
    transform: perspective(136px) rotateY(180deg);
    opacity: 0;
  }
}

@-o-keyframes cssload-fold-thecube {

  0%,
  10% {
    -o-transform: perspective(136px) rotateX(-180deg);
    opacity: 0;
  }

  25%,
  75% {
    -o-transform: perspective(136px) rotateX(0deg);
    opacity: 1;
  }

  90%,
  100% {
    -o-transform: perspective(136px) rotateY(180deg);
    opacity: 0;
  }
}

@-ms-keyframes cssload-fold-thecube {

  0%,
  10% {
    -ms-transform: perspective(136px) rotateX(-180deg);
    opacity: 0;
  }

  25%,
  75% {
    -ms-transform: perspective(136px) rotateX(0deg);
    opacity: 1;
  }

  90%,
  100% {
    -ms-transform: perspective(136px) rotateY(180deg);
    opacity: 0;
  }
}

@-webkit-keyframes cssload-fold-thecube {

  0%,
  10% {
    -webkit-transform: perspective(136px) rotateX(-180deg);
    opacity: 0;
  }

  25%,
  75% {
    -webkit-transform: perspective(136px) rotateX(0deg);
    opacity: 1;
  }

  90%,
  100% {
    -webkit-transform: perspective(136px) rotateY(180deg);
    opacity: 0;
  }
}

@-moz-keyframes cssload-fold-thecube {

  0%,
  10% {
    -moz-transform: perspective(136px) rotateX(-180deg);
    opacity: 0;
  }

  25%,
  75% {
    -moz-transform: perspective(136px) rotateX(0deg);
    opacity: 1;
  }

  90%,
  100% {
    -moz-transform: perspective(136px) rotateY(180deg);
    opacity: 0;
  }
}

#banner {
  line-height: 0;
  overflow: hidden;
  position: fixed;
  top: 0;
  left: 0;
  text-align: center;
  width: 100%;
  z-index: -1;
}

.main-section {
  margin: 50px 0 0;
}

.sec_block .pop-head-title {
  margin-bottom: 30px;
}

.pop-head-title {
  margin-bottom: 15px;
  position: relative;
  text-align: center;
  width: 100%;
}

.pop-head-title span {
  font-family: "Oswald", sans-serif;
  display: inline-block;
  font-weight: 500;
  line-height: 1;
  padding: 5px 13px;
  position: relative;
  text-transform: uppercase;
  -webkit-transform: skewX(-15deg);
  -moz-transform: skewX(-15deg);
  -ms-transform: skewX(-15deg);
  -o-transform: skewX(-15deg);
  transform: skewX(-15deg);
  z-index: 1;
  background: #f0b830;
  color: #ffffff;
  font-size: 1.1rem;
}

.pop-head-title:before {
  content: '';
  background: #555;
  display: inline-block;
  position: absolute;
  left: 0;
  bottom: 50%;
  width: 100%;
  height: 1px;
  z-index: 0;
}

.sec_video {
  background: #000;
  padding: 50px 0;
}

.widget-right {
  margin-bottom: 30px;
}

.widget_tab ul {
  margin-bottom: 25px;
  border: none;
  justify-content: center;
}

.widget_tab ul li a {
  font-size: 1rem;
}

.widget_tab ul li a span {
  background: #fff;
  font-family: "Oswald", sans-serif;
  display: inline-block;
  font-weight: 500;
  line-height: 1;
  padding: 5px 13px;
  position: relative;
  text-transform: uppercase;
  -webkit-transform: skewX(-15deg);
  -moz-transform: skewX(-15deg);
  -ms-transform: skewX(-15deg);
  -o-transform: skewX(-15deg);
  transform: skewX(-15deg);
  z-index: 1;
  color: #aaa;
}

.widget_tab ul li a.active span {
  font-family: "Oswald", sans-serif;
  display: inline-block;
  font-weight: 500;
  line-height: 1;
  padding: 5px 13px;
  position: relative;
  text-transform: uppercase;
  -webkit-transform: skewX(-15deg);
  -moz-transform: skewX(-15deg);
  -ms-transform: skewX(-15deg);
  -o-transform: skewX(-15deg);
  transform: skewX(-15deg);
  z-index: 1;
  background: #f0b830;
  color: #ffffff;
}

.widgets_small {
  display: flex;
  margin-bottom: 15px;
}

.widgets_small .post_img {
  width: 33%;
  margin-right: 15px;
  max-height: 90px;
}

.widgets_small .post_img a {
  width: 100%;
  height: 100%;
  display: block;
}

.widgets_small .post_img a img {
  width: 100%;
  height: 100%;
  transition: all .3s;
  object-fit: cover;
  overflow: hidden;
}

.widgets_small .single_post_text {
  width: 67%;
  text-align: justify;
}

.widgets_small .single_post_text a {
  font-size: 1rem;
}

.widgets_small .single_post_text .date {
  font-weight: 500;
  font-size: .7rem;
}

.widgets_video {
  display: flex;
  margin-bottom: 15px;
}

.widgets_video .post_img {
  height: 120px;
  width: 35%;
  margin-right: 15px;
}

.widgets_video .post_img img {
  width: 100%;
  height: 100%;
  transition: all .3s;
  object-fit: cover;
  overflow: hidden;
}

.widgets_video .post_img span.tranding {
  height: 24px;
  width: 24px;
  font-size: 10px;
}

.widgets_video .single_post_text {
  width: 65%;
  padding-left: 5px;
  text-align: justify;
}

.widgets_video .single_post_text a {
  font-size: .9rem;
  color: #ffffff;
}

.widgets_video .single_post_text .date {
  font-weight: 500;
  font-size: .7rem;
}

@media screen and (max-width: 767px) {
  .widget_tab ul {
    justify-content: center;
  }
}

@media screen and (min-width: 1024px) and (max-width: 1199px) {
  .widget_tab ul li a {
    font-size: .8rem;
  }
}

/*--------------------------------------------------------------
## Header
--------------------------------------------------------------*/
.header {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  margin-top: 0;
  z-index: 9999;
  transition: margin-top .7s;
  background: #ffffff;
}

.header_top {
  box-shadow: rgba(0, 0, 0, 0.15) 0px 2px 6px;
  -webkit-box-shadow: rgba(0, 0, 0, 0.15) 0px 2px 6px;
  -moz-box-shadow: rgba(0, 0, 0, 0.15) 0px 2px 6px;
  -o-box-shadow: rgba(0, 0, 0, 0.15) 0px 2px 6px;
  -os-box-shadow: rgba(0, 0, 0, 0.15) 0px 2px 6px;
  height: 100px;
  display: flex;
  align-items: center;
  background: #ffffff;
}

.header_top_left {
  height: 100%;
}

.header_top_right {
  height: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.header_top_right a {
  border: 1px solid #e2e2e2;
  padding: 10px 15px;
  margin-left: 15px;
  border-radius: 5px;
  color: #1a1a1a;
  text-decoration: none;
}

.header_top .logo img {
  width: 100px;
  height: 70px;

}

.header_mobi {
  display: none;
}

.header_mobi .toggler-menu-left span {
  background: #777;
}

@media screen and (max-width: 899px) {
  main {
    margin-top: 15px;
  }

  .header_mobi {
    display: flex;
    justify-content: space-between;
    padding: 10px 20px;
    align-items: center;
    background: #fff;
    color: #777;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 2px 6px;
    -webkit-box-shadow: rgba(0, 0, 0, 0.15) 0px 2px 6px;
    -moz-box-shadow: rgba(0, 0, 0, 0.15) 0px 2px 6px;
    -o-box-shadow: rgba(0, 0, 0, 0.15) 0px 2px 6px;
    -os-box-shadow: rgba(0, 0, 0, 0.15) 0px 2px 6px;
  }
}

@media screen and (min-width: 1024px) and (max-width: 1199px) {
  .header_top_right a {
    font-size: 13px;
  }
}

/*--------------------------------------------------------------
## nav
--------------------------------------------------------------*/
.header_nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.nav-menu ul {
  display: flex;
  padding: 0;
  margin: 0;
  justify-content: center;
  align-items: center;
  list-style: none;
}

.nav-menu ul li {
  position: relative;
}

.nav-menu ul li a {
  font-family: "Oswald", sans-serif;
  color: #1a1a1a;
  padding: 18px 17px 18px 12px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  position: relative;
  text-transform: uppercase;
  text-decoration: none;
}

.nav-menu ul li a:hover {
  color: #41e8b6;
}

.nav-menu ul li.menu-item-has-children>a::after {
  border-color: #333333 transparent transparent transparent;
  border-style: solid;
  border-width: 3px 3px 0 3px;
  content: '';
  position: absolute;
  top: 28px;
  right: 6px;
}

.nav-menu ul li .sub-menu {
  position: absolute;
  top: 24px;
  left: 0;
  margin: auto;
  visibility: hidden;
  opacity: 0;
  display: block;
  padding: 15px 0;
  width: 255px;
  background-color: #fff;
  box-sizing: border-box;
  list-style: none;
}

.nav-menu ul li:hover .sub-menu {
  visibility: visible;
  opacity: 1;
  z-index: 999;
}

.toggler-menu-left {
  position: relative;
  width: 30px;
  height: 16px;
  display: inline-block;
  position: relative;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  cursor: pointer;
}

.toggler-menu-left span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: #1a1a1a;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}

.toggler-menu-left span:nth-child(1) {
  top: 0;
  width: 100%;
}

.toggler-menu-left span:nth-child(2) {
  top: 8px;
  width: 80%;
}

.toggler-menu-left span:nth-child(3) {
  top: 8px;
  width: 80%;
}

.toggler-menu-left span:nth-child(4) {
  top: 16px;
  width: 60%;
}

#nav-menu-left .toggler-menu-left.nav-menu-open {
  position: fixed;
  right: 17px;
  top: 28px;
}

#nav-menu-left .toggler-menu-left.nav-menu-open span {
  background: #777777;
}

#nav-menu-left .toggler-menu-left.nav-menu-open span:nth-child(1),
#nav-menu-left .toggler-menu-left.nav-menu-open span:nth-child(4) {
  top: .5px;
  left: 50%;
  width: 0%;
}

#nav-menu-left .toggler-menu-left.nav-menu-open span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  width: 30px;
}

#nav-menu-left .toggler-menu-left.nav-menu-open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  width: 30px;
}

.nav-menu-left {
  background: #000;
  overflow: hidden;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  -webkit-transform: translate3d(-370px, 0, 0);
  -moz-transform: translate3d(-370px, 0, 0);
  -ms-transform: translate3d(-370px, 0, 0);
  -o-transform: translate3d(-370px, 0, 0);
  transform: translate3d(-370px, 0, 0);
  -webkit-transition: -webkit-transform 0.25s ease;
  -moz-transition: -moz-transform 0.25s ease;
  -ms-transition: -ms-transform 0.25s ease;
  -o-transition: -o-transform 0.25s ease;
  transition: transform 0.25s ease;
  width: 370px;
  height: 100%;
  z-index: 999999;
}

.nav-menu-left.show-menu {
  box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.7);
  webkit-transform: translate3d(0, 0, 0) !important;
  -moz-transform: translate3d(0, 0, 0) !important;
  -ms-transform: translate3d(0, 0, 0) !important;
  -o-transform: translate3d(0, 0, 0) !important;
  transform: translate3d(0, 0, 0) !important;
}

.body-fade {
  background: #000;
  cursor: pointer;
  opacity: 0;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
}

.body-fade.body-fade-trans {
  opacity: .7;
  height: 100%;
}

.nav-menu-left-bottom {
  position: absolute;
  bottom: 20px;
  left: 0;
  text-align: center;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: #262626;
}

.nav-menu-left-bottom .icon-social a {
  width: 30px;
  height: 30px;
  font-size: 18px;
  background: #262626;
}

.nav-menu-left-logo a.logo-left {
  display: flex;
  justify-content: center;
  padding: 10px 0;
}

.menu-wrap ul li {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}

.menu-wrap ul li a {
  padding: 10px 20px;
  display: block;
  text-transform: uppercase;
  color: #ffffff;
  text-decoration: none;
  font-family: "Oswald", sans-serif;
}

.menu-wrap ul li.menu-item-has-children.toggled::after {
  content: '_';
  right: 12px;
  top: -12px;
}

.menu-wrap ul li.menu-item-has-children::after {
  content: '+';
  font-family: "Roboto", sans-serif;
  font-size: 32px;
  font-weight: 700;
  position: absolute;
  right: 12px;
  top: 0;
  color: #777;
  cursor: pointer;
  font-weight: 300;
}

.menu-wrap ul li .sub-menu {
  display: none;
}

/*--------------------------------------------------------------
## Footer
--------------------------------------------------------------*/
footer {
  background: #2e3192;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

footer .footer-logo img {
  width: 150px;
}

footer .menu_footer {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
}

footer .menu_footer li {
  margin: 0 0 40px 20px;
}

footer .menu_footer li a {
  font-family: "Oswald", sans-serif;
  color: #ffffff;
  font-size: .9rem;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
}

footer .menu_footer li a:hover {
  color: #fcb819;
  text-decoration: none;
}

footer .bottom-footer {
  background: #232576;
  width: 100%;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 14px;
  font-weight: 300;
}

/*--------------------------------------------------------------
## home
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Posts and pages
--------------------------------------------------------------*/
.post_img {
  position: relative;
  z-index: 2;
}

.single_post {
  position: relative;
}

.single_post_text a {
  text-decoration: none;
  color: #1a1a1a;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.2;
  opacity: 1;
}

.date {
  margin-bottom: 8px;
  font-weight: 500;
  text-transform: uppercase;
  font-size: .8rem;
  line-height: 1;
  color: #777;
  font-family: "Roboto", sans-serif;
}

.date span {
  color: #777;
  font-weight: 400;
  text-transform: none;
}

.post_type1 {
  margin-bottom: 30px;
}

.post_type1 .post_img {
  max-height: 175px;
  overflow: hidden;
  width: 100%;
}

.post_type1 .post_img a {
  display: block;
  width: 100%;
  height: 100%;
}

.post_type1 .post_img a img {
  object-fit: cover;
}

.post_type1 .single_post_text {
  margin-top: 15px;
}

.post_type2 {
  margin-bottom: 30px;
}

.post_type2 .post_img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.post_type2 .gradient1 {
  line-height: 0;
  overflow: hidden;
  width: 100%;
  max-height: 630px;
}

.post_type2 .gradient1 img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.post_type2 .gradient2 {
  line-height: 0;
  overflow: hidden;
  width: 100%;
  height: 395px;
}

.post_type2 .single_post_text {
  position: relative;
  bottom: 0;
  z-index: 9;
  padding: 20px 0 10px;
  color: #ffffff;
  width: 100%;
}

.post_type2 .single_post_text a {
  color: #ffffff;
  font-size: 32px;
}

.post_type2 .single_post_text h4 {
  font-size: 24px;
  font-weight: 700;
}

.post_type2 .single_post_text .date span {
  color: #777;
}

.post_type2 .gradient-video {
  line-height: 0;
  overflow: hidden;
  width: 100%;
  height: 530px;
}

.post_type3 {
  margin-bottom: 15px;
}

.post_type3 .post_img {
  max-height: 165px;
  overflow: hidden;
  width: 100%;
}

.post_type3 .single_post_text {
  padding-top: 10px;
  display: flex;
}

.post_type3 .single_post_text .counter {
  color: #ccc;
  font-size: 45px;
  font-weight: 500;
  line-height: 1;
  text-align: center;
  width: 17%;
  display: flex;
  align-items: center;
  font-family: "Oswald", sans-serif;
  padding-right: 15px;
}

.post_type4 a {
  display: flex;
  margin-bottom: 30px;
  text-decoration: none;
  color: #1a1a1a;
}

.post_type4 a:hover .single_post_text h4 {
  opacity: .6;
}

.post_type4 a:hover .post_img img {
  filter: brightness(100%);
}

.post_type4 a .post_img {
  height: 240px;
  background: #000;
  width: 45%;
  margin-right: 15px;
}

.post_type4 a .post_img img {
  width: 100%;
  height: 100%;
  transition: all .3s;
  object-fit: cover;
  overflow: hidden;
  filter: brightness(70%);
}

.post_type4 a .single_post_text {
  width: 55%;
  padding-left: 5px;
  text-align: justify;
}

.post_type4 a .single_post_text h4 {
  font-size: 1.7rem;
  font-weight: 700;
  margin: 5px 0;
}

.post_type4 a .single_post_text .date {
  font-weight: 500;
  font-size: .7rem;
}

.list-video {
  margin: 0;
  padding: 0;
}

.single_post:hover .post_img img {
  filter: brightness(100%);
}

.single_post:hover .single_post_text h4 a {
  opacity: .6;
}

.post_type2:hover .single_post_text h4 a {
  opacity: 1;
  color: #fcb819;
}

span.tranding {
  height: 54px;
  width: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  background: #13d6af;
  color: #fff;
  position: absolute;
  left: 15px;
  top: 15px;
  border-radius: 50%;
}

@media screen and (max-width: 767px) {
  .widgets_video .post_img {
    height: 80px;
  }

  .widgets_video .post_img span.tranding {
    display: none;
  }

  .post_type2 {
    margin-bottom: 15px;
  }

  .post_type2 .gradient1 {
    height: 415px;
  }

  .post_type2 .single_post_text {
    padding: 15px;
  }

  .post_type2 .single_post_text a {
    font-size: 22px;
  }

  .post_type2 .gradient2 {
    height: 230px;
  }

  .post_type2 .gradient-video {
    height: auto;
  }

  .post_type2 .gradient-video span.tranding {
    width: 34px;
    height: 34px;
    font-size: 14px;
  }

  .post_type3 {
    margin-bottom: 15px;
    display: flex;
  }

  .post_type3 .single_post_text {
    width: 67%;
    padding: 0;
  }

  .post_type3 .single_post_text a {
    font-size: 1rem;
  }

  .post_type3 .single_post_text .counter {
    display: none;
  }

  .post_type3 .post_img {
    width: 33%;
    margin-right: 15px;
    max-height: 90px;
  }

  .post_type3 .post_img a {
    width: 100%;
    margin-right: 15px;
    display: block;
    height: 100%;
  }

  .post_type3 .post_img a img {
    object-fit: cover;
    width: 100%;
    height: 100%;
  }

  .post_type1 {
    margin-bottom: 15px;
    display: flex;
  }

  .post_type1 .single_post_text {
    width: 67%;
    padding: 0;
    margin: 0;
  }

  .post_type1 .single_post_text a {
    font-size: 1rem;
  }

  .post_type1 .post_img {
    width: 33%;
    margin-right: 15px;
    max-height: 90px;
  }

  .post_type1 .post_img a {
    width: 100%;
    margin-right: 15px;
    display: block;
    height: 100%;
  }

  .post_type1 .post_img a img {
    object-fit: cover;
    width: 100%;
    height: 100%;
  }

  .post_type4 {
    display: flex;
  }

  .post_type4 a {
    margin-bottom: 15px;
  }

  .post_type4 a .single_post_text {
    width: 67%;
    padding: 0;
  }

  .post_type4 a .single_post_text h4 {
    font-size: 1rem;
  }

  .post_type4 a .single_post_text p {
    display: none;
  }

  .post_type4 a .post_img {
    width: 33%;
    margin-right: 15px;
    height: auto;
    max-height: 90px;
  }

  .post_type4 a .post_img img {
    object-fit: cover;
    width: 100%;
    height: 100%;
  }
}

@media screen and (min-width: 768px) and (max-width: 992px) {
  .single_post_text a {
    font-size: 1rem;
  }

  .sec_block_left {
    margin: 0 0 0 -15px;
  }

  .post_type3 .single_post_text .counter {
    padding: 0;
    margin-right: 10px;
  }

  .post_type3 .single_post_text .date span {
    display: none;
  }

  .post_type3 .post_img {
    max-height: 145px;
  }

  .post_type2 .gradient2 {
    height: 330px;
  }

  .post_type2 .single_post_text a {
    color: #ffffff;
    font-size: 24px;
  }

  .post_type2 .gradient-video {
    height: auto;
  }

  .list-video {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
    margin-top: 15px;
  }

  .list-video li {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
    padding-right: 15px;
    padding-left: 15px;
  }

  .list-video li .widgets_video {
    flex-direction: column;
  }

  .list-video li .widgets_video .post_img {
    width: 100%;
  }

  .list-video li .widgets_video .single_post_text {
    width: 100%;
    margin-top: 10px;
  }

  .list-video li .widgets_video .single_post_text .date span {
    display: none;
  }

  .post_type4 a .single_post_text h4 {
    font-size: 1.2rem;
  }
}

@media screen and (min-width: 1024px) and (max-width: 1199px) {
  .post_type2 {
    margin-bottom: 15px;
  }

  .single_post_text a {
    font-size: 1rem;
    text-align: justify;
  }

  .widgets_small .single_post_text a {
    font-size: .9rem;
  }

  .post_type4 a {
    margin-bottom: 0;
  }

  .post_type4 a .single_post_text h4 {
    font-size: 1.4rem;
  }
}

.post-cat {
  margin-bottom: 10px;
  position: relative;
}

.post-cat span {
  font-family: "Oswald", sans-serif;
  display: inline-block;
  font-weight: 500;
  line-height: 1;
  padding: 5px 13px;
  position: relative;
  text-transform: uppercase;
  -webkit-transform: skewX(-15deg);
  -moz-transform: skewX(-15deg);
  -ms-transform: skewX(-15deg);
  -o-transform: skewX(-15deg);
  transform: skewX(-15deg);
  z-index: 1;
  background: #f0b830;
  color: #ffffff;
  font-size: 1.1rem;
}

.author_info {
  display: flex;
  font-size: 13px;
  margin: 10px 0;
}

.author_info p {
  margin-bottom: 0;
}

.author_info-thumb {
  margin-right: 10px;
}

.author_info-thumb img {
  width: 46px;
  height: 46px;
  border: 2px solid #ddd;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  overflow: hidden;
}

.post_content {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 30px;
}

.post_content .post_content_main {
  position: relative;
  overflow: hidden;

  transition: max-height 0.5s ease-in-out;
  -moz-transition: max-height 0.5s ease-in-out;
  -webkit-transition: max-height 0.5s ease-in-out;
  margin-bottom: 15px;
}

.post_content .post_content_main.add-height {
  height: auto;
}

.post_content .post_content_main:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: linear-gradient(#F9FBFB00 50%, #F9FBFB);
  /* match this colour with the colour of the background */
  transition: opacity 0.5s ease-in-out;
  -moz-transition: opacity 0.5s ease-in-out;
  -webkit-transition: opacity 0.5s ease-in-out;
}

.post_content .post_content_main.expanded::before {
  display: none;
}

.tags {
  display: flex;
  margin: 15px 0;
  font-size: 13px;
}

.tags a {
  padding: 0 5px;
  font-size: 13px;
  font-style: italic;
  color: #777;
}

.comment-inner {
  display: flex;
  font-size: 13px;
  margin: 10px 0;
}

.comment-inner p {
  margin-bottom: 0;
}

.comment-inner .comment-avatar {
  margin-right: 10px;
}

.comment-inner .comment-avatar img {
  width: 46px;
  height: 46px;
  border: 2px solid #ddd;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  overflow: hidden;
}

.comment-reply {
  margin: 10px 0;
  text-align: right;
  border-bottom: 1px solid #777;
}

.comment-reply a {
  background: #777;
  padding: 4px 7px;
  color: #fff;
}

main {
  z-index: 98;
  background-color: #fff;
}

.wraper {
  margin: -50px auto 0;
  z-index: 98;
  background-color: #fff;
}

/*--------------------------------------------------------------
## Comments
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Archives
--------------------------------------------------------------*/

@media screen and (max-width: 767px) {
  .single_post_heading h1 {
    font-size: 32px;
  }
}

.post-excerpt {
  font-weight: 600;
  font-style: italic;
  margin: 12px 0;
}

.post_content-body .highlight {
  padding: 15px;
  background: #d7e8ff;
  clear: both;
  margin-bottom: 15px;
  width: 100%;
}

.ds-share li a {
  text-decoration: none;
  width: 20px;
  height: 20px;
  line-height: 20px;
}

.author_info p {
  line-height: 28px;
}

.author_info .icofont-calendar {
  line-height: 1rem;
  font-size: 16px;
}

.black {
  color: #1a1a1a !important;
}

.yellow {
  color: #f0b830 !important;
}