/*-----------------------------------------------------------------------------------

    Project Name: Magezix - News Magazine HTML Template
    Author: Themexriver -->> (https://themeforest.net/user/themexriver)
    Support: themexriver@gmail.com
    Description: Magezix - News Magazine HTML Template
    Developer: Mohammad Wasim Mia
    Version: 1.0

-----------------------------------------------------------------------------------

    CSS INDEX
    ===================

	01. Theme default CSS
    02. header
    03. home
    04. global
    05. preloder
    06. about
    07. contact
    08. faq
    09. news
    10. blog
    11. shop
    12. author
    13. 404
    14. footer

-----------------------------------------------------------------------------------*/
:root {
  --font-body: "Roboto", sans-serif;
  --font-title: 'Jost', sans-serif;
  --font-title-2: 'Yeseva One', cursive;
  --color-primary: #FF184E;
  --color-primary-2: #2962FF;
  --color-primary-3: #F10505;
  --color-white: #fff;
  --color-black: #000;
  --color-primary-rgb: 255, 24, 78;
  --color-black-rgb: 0, 0, 0;
  --color-white-rgb: 250, 250, 250;
  --color-default: #5D6273;
  --color-gray: #F8F8F8;
  --color-border: #E1E0E0;
  --color-border-2: #F2F1F1;
  --color-border-3: #f7f7f7;
  --color-dark: #111111;
  --color-dark-2: #080B17; }

:root[data-theme=dark] {
  --color-white: #000;
  --color-black: #fff;
  --color-black-rgb: 255, 255, 255;
  --color-white-rgb: 0, 0, 0;
  --color-default: #d7d7d7;
  --color-gray: #111;
  --color-border: #292828;
  --color-border-2: #191717;
  --color-border-3: #191717; }

@-webkit-keyframes spin {
  0% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(360deg); } }
@keyframes spin {
  0% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(360deg); } }
@-webkit-keyframes zoom {
  0% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1); }
  50% {
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05); }
  100% {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1); } }
@keyframes zoom {
  0% {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1); }
  50% {
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05); }
  100% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1); } }
@-webkit-keyframes shake {
  0% {
    -webkit-transform: rotate(7deg);
    -ms-transform: rotate(7deg);
    transform: rotate(7deg); }
  50% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(7deg);
    -ms-transform: rotate(7deg);
    transform: rotate(7deg); } }
@keyframes shake {
  0% {
    -webkit-transform: rotate(7deg);
    -ms-transform: rotate(7deg);
    transform: rotate(7deg); }
  50% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(7deg);
    -ms-transform: rotate(7deg);
    transform: rotate(7deg); } }
@-webkit-keyframes down {
  0% {
    -webkit-transform: translateY(5px);
    -ms-transform: translateY(5px);
    transform: translateY(5px); }
  50% {
    -webkit-transform: translateY(0px);
    -ms-transform: translateY(0px);
    transform: translateY(0px); }
  100% {
    -webkit-transform: translateY(5px);
    -ms-transform: translateY(5px);
    transform: translateY(5px); } }
@keyframes down {
  0% {
    -webkit-transform: translateY(5px);
    -ms-transform: translateY(5px);
    transform: translateY(5px); }
  50% {
    -webkit-transform: translateY(0px);
    -ms-transform: translateY(0px);
    transform: translateY(0px); }
  100% {
    -webkit-transform: translateY(5px);
    -ms-transform: translateY(5px);
    transform: translateY(5px); } }
/* reset css start */
@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: inherit;
  }
}
body {
  font-family: var(--font-body);
  font-size: 16px;
  padding: 0;
  margin: 0;
  overflow-x: hidden !important;
  font-weight: 400;
  line-height: 29px;
  color: var(--color-default);
  background-color: var(--color-white);-moz-osx-font-smoothing: antialiased;
  -webkit-font-smoothing: antialiased; }

img {
  max-width: 100%;
  height: auto; }

ul {
  margin: 0px;
  padding: 0px; }

button {
  cursor: pointer; }

*:focus {
  outline: none; }

button {
  border: none;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s; }

button:focus {
  outline: none; }

a {
  text-decoration: none;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s; }
  a:hover {
    color: inherit; }

select {
  height: 55px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url(../img/select-arrow.png);
  background-position: calc(100% - 10px) 50%;
  background-repeat: no-repeat;
  padding-right: 20px;
  background-color: transparent;
  border: 0; }

input[type="text"], input[type="url"], input[type="password"], input[type="email"], input[type="tel"], form select, textarea {
  font-family: 'Roboto', sans-serif;
  width: 100%;
  height: 60px;
  border: 2px solid #f4f4f4;
  border-radius: 0;
  padding: 0 20px;
  transition: .3s;
  -webkit-transition: .3s;
  -moz-transition: .3s;
  -ms-transition: .3s;
  -o-transition: .3s; }

input[type="text"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
form select:focus,
textarea:focus,
.comments-form textarea:focus {
  border-color: var(--color-primary); }

button {
  border: 0; }

table {
  width: 100%; }

p, li, span {
  color: var(--color-default);
  margin-bottom: 0; }
  .admin-bar .header__main-wrap.uk-sticky.uk-active.uk-sticky-below.uk-sticky-fixed {
    margin-top: 32px !important;
  }
/* reset css end */
/* global css start */
.owl-carousel .owl-stage {
  -webkit-transition: all 0.8s cubic-bezier(0.65, 0.05, 0.18, 0.99) !important;
  -o-transition: all 0.8s cubic-bezier(0.65, 0.05, 0.18, 0.99) !important;
  transition: all 0.8s cubic-bezier(0.65, 0.05, 0.18, 0.99) !important; }

.nice-select {
  background-color: transparent;
  height: 40px !important;
  line-height: 40px !important;
  min-height: 40px !important;
  padding: 0 30px; }
  .nice-select span {
    color: var(--color-black); }
  .nice-select .list {
    box-shadow: 0.975px 7.94px 21px 0px rgba(239, 239, 239, 0.5); }
    .nice-select .list li {
      margin-right: 0 !important; }
    .nice-select .list .option {
      color: var(--color-black); }
      .nice-select .list .option.selected, .nice-select .list .option:hover {
        border: none !important; }

/* global css end */
.body_wrap {
  position: relative;
  z-index: 1; }

.magezix-main-wrap {
  position: relative;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 2;
  background: var(--color-white); }

.bg_img {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%; }

.dark-bg {
  background-color: var(--color-dark); }

.dark-bg-2 {
  background-color: var(--color-dark-2); }

.footer-bg {
  background-color: #04060A; }

.gray-bg {
  background: var(--color-gray); }

.black-bg {
  background: #000; }

.white {
  color: var(--color-white); }

.pos-rel {
  position: relative; }

.pos-absolute {
  position: absolute; }

.f-right {
  float: right; }

.border-effect a, .border-effect-2 a {
  display: inline !important;
  width: 100%;
  background-repeat: no-repeat;
  background-position-y: -2px;
  background-image: linear-gradient(transparent calc(100% - 2px), currentColor 1px);
  -webkit-transition: 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-transition: 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  background-size: 0 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden; }
  .border-effect a:hover, .border-effect-2 a:hover {
    background-size: 100% 100%;
    color: inherit; }

.border-effect-2 a {
  background-image: linear-gradient(transparent calc(100% - 1px), currentColor 1px); }
  #magx_reading_progress {
    --scrollAmount: 0%;
    background: var(--color-primary);
    width: var(--scrollAmount);
    height: 6px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 222;
  }
  .admin-bar #magx_reading_progress{
    top:32px
  }
/* play btn animation */
.popup-video {
  position: absolute;
  background: #fff;
  color: var(--color-primary);
  height: 80px;
  width: 80px;
  top: 50%;
  left: 0;
  right: 0;
  margin: auto;
  text-align: center;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  z-index: 2; }
  .popup-video--md {
    height: 70px;
    width: 70px;
    font-size: 16px; }
  .popup-video--sm {
    height: 55px;
    width: 55px;
    font-size: 14px; }

.popup-video:hover {
  color: var(--color-primary); }

.popup-video::before, .popup-video::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  border-radius: 50%;
  background-color: #fff;
  opacity: 0.15;
  z-index: -10; }

.popup-video::before {
  z-index: -10;
  -webkit-animation: inner-ripple 2000ms linear infinite;
  -moz-animation: inner-ripple 2000ms linear infinite;
  animation: inner-ripple 2000ms linear infinite; }

.popup-video::after {
  z-index: -10;
  -webkit-animation: outer-ripple 2000ms linear infinite;
  -moz-animation: outer-ripple 2000ms linear infinite;
  animation: outer-ripple 2000ms linear infinite; }

/* animation */
@keyframes outer-ripple {
  0% {
    transform: scale(1);
    filter: alpha(opacity=50);
    opacity: 0.5;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    -webkit-filter: alpha(opacity=50); }
  80% {
    transform: scale(1.5);
    filter: alpha(opacity=0);
    opacity: 0;
    -webkit-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -ms-transform: scale(1.5);
    -o-transform: scale(1.5); }
  100% {
    transform: scale(2.5);
    filter: alpha(opacity=0);
    opacity: 0;
    -webkit-transform: scale(2.5);
    -moz-transform: scale(2.5);
    -ms-transform: scale(2.5);
    -o-transform: scale(2.5); } }
@-webkit-keyframes outer-ripple {
  0% {
    transform: scale(1);
    filter: alpha(opacity=50);
    opacity: 0.5;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1); }
  80% {
    transform: scale(2.5);
    filter: alpha(opacity=0);
    opacity: 0;
    -webkit-transform: scale(2.5);
    -moz-transform: scale(2.5);
    -ms-transform: scale(2.5);
    -o-transform: scale(2.5); }
  100% {
    transform: scale(3.5);
    filter: alpha(opacity=0);
    opacity: 0;
    -webkit-transform: scale(3.5);
    -moz-transform: scale(3.5);
    -ms-transform: scale(3.5);
    -o-transform: scale(3.5); } }
@-moz-keyframes outer-ripple {
  0% {
    transform: scale(1);
    filter: alpha(opacity=50);
    opacity: 0.5;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1); }
  80% {
    transform: scale(2.5);
    filter: alpha(opacity=0);
    opacity: 0;
    -webkit-transform: scale(2.5);
    -moz-transform: scale(2.5);
    -ms-transform: scale(2.5);
    -o-transform: scale(2.5); }
  100% {
    transform: scale(3.5);
    filter: alpha(opacity=0);
    opacity: 0;
    -webkit-transform: scale(3.5);
    -moz-transform: scale(3.5);
    -ms-transform: scale(3.5);
    -o-transform: scale(3.5); } }
/* order & unorder list reset - start */
.ul_li, .ul_li_right, .ul_li_center, .ul_li_between {
  margin: 0px;
  padding: 0px;
  display: flex;
  flex-wrap: wrap;
  align-items: center; }

.ul_li > li, .ul_li_right > li, .ul_li_center > li, .ul_li_between > li {
  float: left;
  list-style: none;
  display: inline-block; }

.ul_li {
  justify-content: flex-start; }

.ul_li_center {
  justify-content: center; }

.ul_li_right {
  justify-content: flex-end; }

.ul_li_between {
  justify-content: space-between; }

.ul_li_block {
  margin: 0px;
  padding: 0px;
  display: block; }

.ul_li_block > li {
  display: block;
  list-style: none; }

.flex-1 {
  flex: 1; }

.pagination_wrap ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: -5px;
  list-style: none; }
  .pagination_wrap ul li {
    padding: 5px; }
    .pagination_wrap ul li a, .pagination_wrap ul li span {
      height: 50px;
      width: 50px;
      line-height: 48px;
      font-size: 16px;
      font-weight: 500;
      color: var(--color-black);
      border: 1px solid var(--color-border);
      text-align: center;
      display: inline-block;
      -webkit-transition: all 0.3s ease-out 0s;
      -o-transition: all 0.3s ease-out 0s;
      transition: all 0.3s ease-out 0s; }
      .pagination_wrap ul li a:hover, .pagination_wrap ul li .current {
        background-color: var(--color-primary);
        color: #fff;
        border-color: var(--color-primary); }

/*--
    - Margin & Padding
-----------------------------------------*/
/*-- Margin Top --*/
.mt-none-5 {
  margin-top: -5px; }

.mt-none-10 {
  margin-top: -10px; }

.mt-none-15 {
  margin-top: -15px; }

.mt-none-20 {
  margin-top: -20px; }

.mt-none-25 {
  margin-top: -25px; }

.mt-none-30 {
  margin-top: -30px; }

.mt-none-35 {
  margin-top: -35px; }

.mt-none-40 {
  margin-top: -40px; }

.mt-none-45 {
  margin-top: -45px; }

.mt-none-50 {
  margin-top: -50px; }

.mt-none-55 {
  margin-top: -55px; }

.mt-none-60 {
  margin-top: -60px; }

.mt-none-65 {
  margin-top: -65px; }

.mt-none-70 {
  margin-top: -70px; }

.mt-none-75 {
  margin-top: -75px; }

.mt-none-80 {
  margin-top: -80px; }

.mt-none-85 {
  margin-top: -85px; }

.mt-none-90 {
  margin-top: -90px; }

.mt-none-95 {
  margin-top: -95px; }

.mt-none-100 {
  margin-top: -100px; }

/*-- Margin Top --*/
.mt-5 {
  margin-top: 5px; }

.mt-10 {
  margin-top: 10px; }

.mt-15 {
  margin-top: 15px; }

.mt-20 {
  margin-top: 20px; }

.mt-25 {
  margin-top: 25px; }

.mt-30 {
  margin-top: 30px; }

.mt-35 {
  margin-top: 35px; }

.mt-40 {
  margin-top: 40px; }

.mt-45 {
  margin-top: 45px; }

.mt-50 {
  margin-top: 50px; }

.mt-55 {
  margin-top: 55px; }

.mt-60 {
  margin-top: 60px; }

.mt-65 {
  margin-top: 65px; }

.mt-70 {
  margin-top: 70px; }

.mt-75 {
  margin-top: 75px; }

.mt-80 {
  margin-top: 80px; }

.mt-85 {
  margin-top: 85px; }

.mt-90 {
  margin-top: 90px; }

.mt-95 {
  margin-top: 95px; }

.mt-100 {
  margin-top: 100px; }

.mt-105 {
  margin-top: 105px; }

.mt-110 {
  margin-top: 110px; }

.mt-115 {
  margin-top: 115px; }

.mt-120 {
  margin-top: 120px; }

.mt-125 {
  margin-top: 125px; }

.mt-130 {
  margin-top: 130px; }

.mt-135 {
  margin-top: 135px; }

.mt-140 {
  margin-top: 140px; }

.mt-145 {
  margin-top: 145px; }

.mt-150 {
  margin-top: 150px; }

.mt-155 {
  margin-top: 155px; }

.mt-160 {
  margin-top: 160px; }

.mt-165 {
  margin-top: 165px; }

.mt-170 {
  margin-top: 170px; }

.mt-175 {
  margin-top: 175px; }

.mt-180 {
  margin-top: 180px; }

.mt-185 {
  margin-top: 185px; }

.mt-190 {
  margin-top: 190px; }

.mt-195 {
  margin-top: 195px; }

.mt-200 {
  margin-top: 200px; }

/*-- Margin Bottom --*/
.mb-5 {
  margin-bottom: 5px; }

.mb-10 {
  margin-bottom: 10px; }

.mb-15 {
  margin-bottom: 15px; }

.mb-20 {
  margin-bottom: 20px; }

.mb-25 {
  margin-bottom: 25px; }

.mb-30 {
  margin-bottom: 30px; }

.mb-35 {
  margin-bottom: 35px; }

.mb-40 {
  margin-bottom: 40px; }

.mb-45 {
  margin-bottom: 45px; }

.mb-50 {
  margin-bottom: 50px; }

.mb-55 {
  margin-bottom: 55px; }

.mb-60 {
  margin-bottom: 60px; }

.mb-65 {
  margin-bottom: 65px; }

.mb-70 {
  margin-bottom: 70px; }

.mb-75 {
  margin-bottom: 75px; }

.mb-80 {
  margin-bottom: 80px; }

.mb-85 {
  margin-bottom: 85px; }

.mb-90 {
  margin-bottom: 90px; }

.mb-95 {
  margin-bottom: 95px; }

.mb-100 {
  margin-bottom: 100px; }

.mb-105 {
  margin-bottom: 105px; }

.mb-110 {
  margin-bottom: 110px; }

.mb-115 {
  margin-bottom: 115px; }

.mb-120 {
  margin-bottom: 120px; }

.mb-125 {
  margin-bottom: 125px; }

.mb-130 {
  margin-bottom: 130px; }

.mb-135 {
  margin-bottom: 135px; }

.mb-140 {
  margin-bottom: 140px; }

.mb-145 {
  margin-bottom: 145px; }

.mb-150 {
  margin-bottom: 150px; }

.mb-155 {
  margin-bottom: 155px; }

.mb-160 {
  margin-bottom: 160px; }

.mb-165 {
  margin-bottom: 165px; }

.mb-170 {
  margin-bottom: 170px; }

.mb-175 {
  margin-bottom: 175px; }

.mb-180 {
  margin-bottom: 180px; }

.mb-185 {
  margin-bottom: 185px; }

.mb-190 {
  margin-bottom: 190px; }

.mb-195 {
  margin-bottom: 195px; }

.mb-200 {
  margin-bottom: 200px; }

/*-- Margin Left --*/
.ml-5 {
  margin-left: 5px; }

.ml-10 {
  margin-left: 10px; }

.ml-15 {
  margin-left: 15px; }

.ml-20 {
  margin-left: 20px; }

.ml-25 {
  margin-left: 25px; }

.ml-30 {
  margin-left: 30px; }

.ml-35 {
  margin-left: 35px; }

.ml-40 {
  margin-left: 40px; }

.ml-45 {
  margin-left: 45px; }

.ml-50 {
  margin-left: 50px; }

.ml-55 {
  margin-left: 55px; }

.ml-60 {
  margin-left: 60px; }

.ml-65 {
  margin-left: 65px; }

.ml-70 {
  margin-left: 70px; }

.ml-75 {
  margin-left: 75px; }

.ml-80 {
  margin-left: 80px; }

.ml-85 {
  margin-left: 85px; }

.ml-90 {
  margin-left: 90px; }

.ml-95 {
  margin-left: 95px; }

.ml-100 {
  margin-left: 100px; }

.ml-105 {
  margin-left: 105px; }

.ml-110 {
  margin-left: 110px; }

.ml-115 {
  margin-left: 115px; }

.ml-120 {
  margin-left: 120px; }

.ml-125 {
  margin-left: 125px; }

.ml-130 {
  margin-left: 130px; }

.ml-135 {
  margin-left: 135px; }

.ml-140 {
  margin-left: 140px; }

.ml-145 {
  margin-left: 145px; }

.ml-150 {
  margin-left: 150px; }

.ml-155 {
  margin-left: 155px; }

.ml-160 {
  margin-left: 160px; }

.ml-165 {
  margin-left: 165px; }

.ml-170 {
  margin-left: 170px; }

.ml-175 {
  margin-left: 175px; }

.ml-180 {
  margin-left: 180px; }

.ml-185 {
  margin-left: 185px; }

.ml-190 {
  margin-left: 190px; }

.ml-195 {
  margin-left: 195px; }

.ml-200 {
  margin-left: 200px; }

/*-- Margin Right --*/
.mr-5 {
  margin-right: 5px; }

.mr-10 {
  margin-right: 10px; }

.mr-15 {
  margin-right: 15px; }

.mr-20 {
  margin-right: 20px; }

.mr-25 {
  margin-right: 25px; }

.mr-30 {
  margin-right: 30px; }

.mr-35 {
  margin-right: 35px; }

.mr-40 {
  margin-right: 40px; }

.mr-45 {
  margin-right: 45px; }

.mr-50 {
  margin-right: 50px; }

.mr-55 {
  margin-right: 55px; }

.mr-60 {
  margin-right: 60px; }

.mr-65 {
  margin-right: 65px; }

.mr-70 {
  margin-right: 70px; }

.mr-75 {
  margin-right: 75px; }

.mr-80 {
  margin-right: 80px; }

.mr-85 {
  margin-right: 85px; }

.mr-90 {
  margin-right: 90px; }

.mr-95 {
  margin-right: 95px; }

.mr-100 {
  margin-right: 100px; }

.mr-105 {
  margin-right: 105px; }

.mr-110 {
  margin-right: 110px; }

.mr-115 {
  margin-right: 115px; }

.mr-120 {
  margin-right: 120px; }

.mr-125 {
  margin-right: 125px; }

.mr-130 {
  margin-right: 130px; }

.mr-135 {
  margin-right: 135px; }

.mr-140 {
  margin-right: 140px; }

.mr-145 {
  margin-right: 145px; }

.mr-150 {
  margin-right: 150px; }

.mr-155 {
  margin-right: 155px; }

.mr-160 {
  margin-right: 160px; }

.mr-165 {
  margin-right: 165px; }

.mr-170 {
  margin-right: 170px; }

.mr-175 {
  margin-right: 175px; }

.mr-180 {
  margin-right: 180px; }

.mr-185 {
  margin-right: 185px; }

.mr-190 {
  margin-right: 190px; }

.mr-195 {
  margin-right: 195px; }

.mr-200 {
  margin-right: 200px; }

/*-- Padding Top --*/
.pt-5 {
  padding-top: 5px; }

.pt-10 {
  padding-top: 10px; }

.pt-15 {
  padding-top: 15px; }

.pt-20 {
  padding-top: 20px; }

.pt-25 {
  padding-top: 25px; }

.pt-30 {
  padding-top: 30px; }

.pt-35 {
  padding-top: 35px; }

.pt-40 {
  padding-top: 40px; }

.pt-45 {
  padding-top: 45px; }

.pt-50 {
  padding-top: 50px; }

.pt-55 {
  padding-top: 55px; }

.pt-60 {
  padding-top: 60px; }

.pt-65 {
  padding-top: 65px; }

.pt-70 {
  padding-top: 70px; }

.pt-75 {
  padding-top: 75px; }

.pt-80 {
  padding-top: 80px; }

.pt-85 {
  padding-top: 85px; }

.pt-90 {
  padding-top: 90px; }

.pt-95 {
  padding-top: 95px; }

.pt-100 {
  padding-top: 100px; }

.pt-105 {
  padding-top: 105px; }

.pt-110 {
  padding-top: 110px; }

.pt-115 {
  padding-top: 115px; }

.pt-120 {
  padding-top: 120px; }

.pt-125 {
  padding-top: 125px; }

.pt-130 {
  padding-top: 130px; }

.pt-135 {
  padding-top: 135px; }

.pt-140 {
  padding-top: 140px; }

.pt-145 {
  padding-top: 145px; }

.pt-150 {
  padding-top: 150px; }

.pt-155 {
  padding-top: 155px; }

.pt-160 {
  padding-top: 160px; }

.pt-165 {
  padding-top: 165px; }

.pt-170 {
  padding-top: 170px; }

.pt-175 {
  padding-top: 175px; }

.pt-180 {
  padding-top: 180px; }

.pt-185 {
  padding-top: 185px; }

.pt-190 {
  padding-top: 190px; }

.pt-195 {
  padding-top: 195px; }

.pt-200 {
  padding-top: 200px; }

/*-- Padding Bottom --*/
.pb-5 {
  padding-bottom: 5px; }

.pb-10 {
  padding-bottom: 10px; }

.pb-15 {
  padding-bottom: 15px; }

.pb-20 {
  padding-bottom: 20px; }

.pb-25 {
  padding-bottom: 25px; }

.pb-30 {
  padding-bottom: 30px; }

.pb-35 {
  padding-bottom: 35px; }

.pb-40 {
  padding-bottom: 40px; }

.pb-45 {
  padding-bottom: 45px; }

.pb-50 {
  padding-bottom: 50px; }

.pb-55 {
  padding-bottom: 55px; }

.pb-60 {
  padding-bottom: 60px; }

.pb-65 {
  padding-bottom: 65px; }

.pb-70 {
  padding-bottom: 70px; }

.pb-75 {
  padding-bottom: 75px; }

.pb-80 {
  padding-bottom: 80px; }

.pb-85 {
  padding-bottom: 85px; }

.pb-90 {
  padding-bottom: 90px; }

.pb-95 {
  padding-bottom: 95px; }

.pb-100 {
  padding-bottom: 100px; }

.pb-105 {
  padding-bottom: 105px; }

.pb-110 {
  padding-bottom: 110px; }

.pb-115 {
  padding-bottom: 115px; }

.pb-120 {
  padding-bottom: 120px; }

.pb-125 {
  padding-bottom: 125px; }

.pb-130 {
  padding-bottom: 130px; }

.pb-135 {
  padding-bottom: 135px; }

.pb-140 {
  padding-bottom: 140px; }

.pb-145 {
  padding-bottom: 145px; }

.pb-150 {
  padding-bottom: 150px; }

.pb-155 {
  padding-bottom: 155px; }

.pb-160 {
  padding-bottom: 160px; }

.pb-165 {
  padding-bottom: 165px; }

.pb-170 {
  padding-bottom: 170px; }

.pb-175 {
  padding-bottom: 175px; }

.pb-180 {
  padding-bottom: 180px; }

.pb-185 {
  padding-bottom: 185px; }

.pb-190 {
  padding-bottom: 190px; }

.pb-195 {
  padding-bottom: 195px; }

.pb-200 {
  padding-bottom: 200px; }

/*-- Padding Left --*/
.pl-5 {
  padding-left: 5px; }

.pl-10 {
  padding-left: 10px; }

.pl-15 {
  padding-left: 15px; }

.pl-20 {
  padding-left: 20px; }

.pl-25 {
  padding-left: 25px; }

.pl-30 {
  padding-left: 30px; }

.pl-35 {
  padding-left: 35px; }

.pl-40 {
  padding-left: 40px; }

.pl-45 {
  padding-left: 45px; }

.pl-50 {
  padding-left: 50px; }

.pl-55 {
  padding-left: 55px; }

.pl-60 {
  padding-left: 60px; }

.pl-65 {
  padding-left: 65px; }

.pl-70 {
  padding-left: 70px; }

.pl-75 {
  padding-left: 75px; }

.pl-80 {
  padding-left: 80px; }

.pl-85 {
  padding-left: 85px; }

.pl-90 {
  padding-left: 90px; }

.pl-95 {
  padding-left: 95px; }

.pl-100 {
  padding-left: 100px; }

.pl-105 {
  padding-left: 105px; }

.pl-110 {
  padding-left: 110px; }

.pl-115 {
  padding-left: 115px; }

.pl-120 {
  padding-left: 120px; }

.pl-125 {
  padding-left: 125px; }

.pl-130 {
  padding-left: 130px; }

.pl-135 {
  padding-left: 135px; }

.pl-140 {
  padding-left: 140px; }

.pl-145 {
  padding-left: 145px; }

.pl-150 {
  padding-left: 150px; }

.pl-155 {
  padding-left: 155px; }

.pl-160 {
  padding-left: 160px; }

.pl-165 {
  padding-left: 165px; }

.pl-170 {
  padding-left: 170px; }

.pl-175 {
  padding-left: 175px; }

.pl-180 {
  padding-left: 180px; }

.pl-185 {
  padding-left: 185px; }

.pl-190 {
  padding-left: 190px; }

.pl-195 {
  padding-left: 195px; }

.pl-200 {
  padding-left: 200px; }

/*-- Padding Right --*/
.pr-5 {
  padding-right: 5px; }

.pr-10 {
  padding-right: 10px; }

.pr-15 {
  padding-right: 15px; }

.pr-20 {
  padding-right: 20px; }

.pr-25 {
  padding-right: 25px; }

.pr-30 {
  padding-right: 30px; }

.pr-35 {
  padding-right: 35px; }

.pr-40 {
  padding-right: 40px; }

.pr-45 {
  padding-right: 45px; }

.pr-50 {
  padding-right: 50px; }

.pr-55 {
  padding-right: 55px; }

.pr-60 {
  padding-right: 60px; }

.pr-65 {
  padding-right: 65px; }

.pr-70 {
  padding-right: 70px; }

.pr-75 {
  padding-right: 75px; }

.pr-80 {
  padding-right: 80px; }

.pr-85 {
  padding-right: 85px; }

.pr-90 {
  padding-right: 90px; }

.pr-95 {
  padding-right: 95px; }

.pr-100 {
  padding-right: 100px; }

.pr-105 {
  padding-right: 105px; }

.pr-110 {
  padding-right: 110px; }

.pr-115 {
  padding-right: 115px; }

.pr-120 {
  padding-right: 120px; }

.pr-125 {
  padding-right: 125px; }

.pr-130 {
  padding-right: 130px; }

.pr-135 {
  padding-right: 135px; }

.pr-140 {
  padding-right: 140px; }

.pr-145 {
  padding-right: 145px; }

.pr-150 {
  padding-right: 150px; }

.pr-155 {
  padding-right: 155px; }

.pr-160 {
  padding-right: 160px; }

.pr-165 {
  padding-right: 165px; }

.pr-170 {
  padding-right: 170px; }

.pr-175 {
  padding-right: 175px; }

.pr-180 {
  padding-right: 180px; }

.pr-185 {
  padding-right: 185px; }

.pr-190 {
  padding-right: 190px; }

.pr-195 {
  padding-right: 195px; }

.pr-200 {
  padding-right: 200px; }

/* typography css start */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  color: var(--color-black);
  margin: 0;
  line-height: 1.3;
  font-family: var(--font-title); }

.demo-politics h1,
.demo-politics h2,
.demo-politics h3,
.demo-politics h4,
.demo-politics h5,
.demo-politics h6 {
  font-weight: 400;
  font-family: var(--font-title-2); }

h2 {
  font-size: 32px; }

h3 {
  font-size: 22px; }

h4 {
  font-size: 20px; }

h5 {
  font-size: 18px; }

h6 {
  font-size: 16px; }

/* typography css end */
/*--
    - Overlay
------------------------------------------*/
[data-overlay] {
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center; }
  [data-overlay]::before {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    content: "";
    width: 100%;
    height: 100%; }

/*-- Overlay Color --*/
[data-overlay="light"]::before {
  background-color: var(--color-white); }

[data-overlay="dark"]::before {
  background-color: var(--color-black); }

/*-- Overlay Opacity --*/
[data-opacity="1"]::before {
  opacity: 0.1; }

[data-opacity="2"]::before {
  opacity: 0.2; }

[data-opacity="3"]::before {
  opacity: 0.3; }

[data-opacity="4"]::before {
  opacity: 0.4; }

[data-opacity="5"]::before {
  opacity: 0.5; }

[data-opacity="6"]::before {
  opacity: 0.6; }

[data-opacity="7"]::before {
  opacity: 0.7; }

[data-opacity="8"]::before {
  opacity: 0.8; }

[data-opacity="9"]::before {
  opacity: 0.9; }

/*----------------------------------------*/
/*  02. header
/*----------------------------------------*/
.header {
  background-color: var(--color-white);
  z-index: 3;
  position: relative;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s; }
  .header__main-wrap.uk-active {
    background-color: var(--color-white);
    box-shadow: 0 0 60px 0 rgba(0, 0, 0, 0.07);
    -webkit-box-shadow: 0 0 60px 0 rgba(0, 0, 0, 0.07);
    z-index: 99; }
  @media (max-width: 991px) {
    .header__main-wrap {
      padding: 20px 0; } }
  .header__main-wrap.uk-active .header__main {
    padding: 0; }
  .header__top {
    background-color: var(--color-dark);
    color: #B7B7B8;
    font-weight: 500;
    position: relative; }
  .header__top-info li {
    font-size: 14px;
    color: #B6B7B8;
    font-weight: 500;
    position: relative;
    text-transform: capitalize; }
    .header__top-info li:not(:last-child) {
      margin-right: 12px;
      padding-right: 12px; }
      .header__top-info li:last-child:before {
        background: transparent;
    }
    .header__top-info li::before {
      position: absolute;
      top: 50%;
      -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
      transform: translateY(-50%);
      right: 0;
      width: 1px;
      height: 9px;
      background-color: #E4E4E7;
      content: ""; }
    .header__top-info li i {
      font-size: 13px;
      margin-right: 5px;
      color: var(--color-primary); }
  .header__logo {
    max-width: 220px; }
    .header__logo .light-logo {
      display: none; }
  .header--2 .header__top {
    padding: 10px 0; }
  @media only screen and (min-width: 1200px) and (max-width: 1500px) {
    .header--2 .header__social {
      display: none; } }
  @media (max-width: 1199px) {
    .header--2 .header__social {
      display: none; } }
  @media (max-width: 991px) {
    .header--2 .header__social {
      display: block; } }
  @media (max-width: 767px) {
    .header--2 .header__social {
      display: none; } }
  @media (max-width: 1199px) {
    .header--2 .header__top-info {
      justify-content: center; } }
  .header__middle {
    padding: 25px 0; }
    @media (max-width: 767px) {
      .header__middle {
        display: none; } }
  @media (max-width: 991px) {
    .header__middle-left {
      flex: 1; } }
  .header__middle-logo {
    flex: 1;
    text-align: center; }
    .header__middle-logo .light-logo {
      display: none; }
  @media (max-width: 991px) {
    .header__top-slide {
      display: none; } }
  .header__top-slide .icon {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-primary); }
  .header__top-text {
    font-size: 15px;
    color: inherit; }
    @media (max-width: 991px) {
      .header__top-text {
        text-align: center; } }
    .header__top-text i {
      color: var(--color-primary);
      margin-right: 8px; }
  @media (max-width: 991px) {
    .header__top-right {
      justify-content: center; } }
  @media (max-width: 767px) {
    .header__top-right {
      display: none; } }
  .header__top-date {
    font-size: 14px;
    padding-right: 25px;
    color: inherit; }
    .header__top-date i {
      color: var(--color-primary);
      margin-right: 8px; }
  .header__social li {
    height: 50px;
    line-height: 50px;
    display: inline-block;
    text-align: center; }
    .header__social li:not(:first-child) {
      margin-left: 12px;
      padding-left: 12px;
      border-left: 1px solid rgba(var(--color-white-rgb), 0.05); }
    .header__social li a {
      font-size: 15px;
      color: #fff; }
      .header__social li a:hover {
        color: var(--color-primary); }
  .header__social--2 li a {
    color: #333237; }
  .header--2 .header__social li:not(:first-child) {
    border: 0; }
  .header__main {
    display: flex;
    align-items: center;
    justify-content: space-between; }
  @media (max-width: 767px) {
    .header--2 .header__main {
      padding-bottom: 0; } }
  .header__language {
    margin-right: 24px;
    margin-top: 10px; }
    @media (max-width: 991px) {
      .header__language {
        display: none; } }
    .header__language ul {
      list-style: none; }
      .header__language ul > li {
        position: relative; }
      .header__language ul .lang-btn {
        color: var(--color-black);
        font-size: 16px;
        display: block;
        text-align: right;
        padding-bottom: 10px; }
        .header__language ul .lang-btn img {
          margin-right: 4px; }
        .header__language ul .lang-btn i {
          font-size: 12px;
          padding-left: 3px;
          -webkit-transform: translateY(-2px);
          -ms-transform: translateY(-2px);
          transform: translateY(-2px); }
      .header__language ul li:hover ul {
        opacity: 1;
        visibility: visible;
        top: 100%; }
    .header__language .lang_sub_list {
      background: var(--color-white);
      border-radius: 5px;
      overflow: hidden;
      opacity: 0;
      visibility: hidden;
      top: 120%;
      transition: 0.3s;
      position: absolute;
      right: 0;
      z-index: 9;
      box-shadow: 0 0 10px 3px rgba(0, 0, 0, 0.05); }
      .header__language .lang_sub_list ul > li {
        border-radius: 4px;
        overflow: hidden; }
      .header__language .lang_sub_list li a {
        color: #646c76;
        display: block;
        padding-right: 29px;
        min-height: 37px;
        line-height: 37px;
        padding-left: 18px;
        font-size: 14px;
        font-weight: 500; }
        .header__language .lang_sub_list li a:hover {
          background: #f6f6f6; }
      .header__language .lang_sub_list li:not(:last-child) {
        border-bottom: 1px solid #ededed; }
    .header__language--2 {
      margin: 0;
      border: 1px solid #D1D1D1;
      padding: 2px 23px;
      border-radius: 30px;
      -webkit-border-radius: 30px;
      -moz-border-radius: 30px;
      -ms-border-radius: 30px;
      -o-border-radius: 30px; }
      .header__language--2 ul .lang-btn {
        text-align: left;
        padding: 4px 0;
        font-weight: 500; }
      .header__language--2 .lang_sub_list {
        left: 0;
        right: auto; }
  @media (max-width: 767px) {
    .header__icons {
      display: none; } }
  .header__icons .icon {
    font-size: 20px;
    color: var(--color-black);
    margin-left: 15px;
    position: relative;
    background: transparent; }
  .header__icons .notification {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    background-color: var(--color-primary);
    position: absolute;
    top: 4px;
    right: 4px; }
  .header__icons .wish-count {
    top: -4px;
    right: -7px;
    height: 17px;
    color: #ffffff;
    min-width: 17px;
    font-size: 11px;
    line-height: 17px;
    text-align: center;
    position: absolute;
    border-radius: 45px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    background-color: var(--color-primary);
    font-weight: 500; }
  @media (max-width: 767px) {
    .header__btn {
      display: none; } }
  .header__bottom-wrap {
    background-color: var(--color-gray);
    padding: 8px 0; }
    @media (max-width: 767px) {
      .header__bottom-wrap {
        display: none; } }
  .header__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between; }
  .header__category {
    margin-right: 28px; }
    .header__category button {
      background: transparent;
      color: var(--color-black);
      font-weight: 500;
      position: relative; }
      .header__category button::after {
        content: "\f107";
        font-family: "Font Awesome 5 Pro";
        font-size: 14px;
        transform: translateY(0px);
        display: inline-block;
        padding-left: 6px;
        font-weight: 400; }
      .header__category button i {
        margin-right: 2px; }
      .header__category button .bar {
        position: absolute;
        left: 0;
        top: 8px;
        background-color: #000;
        width: 20px;
        height: 2px;
        display: block; }
      .header__category button .bar > span:nth-child(2) {
        margin-top: 4px;
        width: 12px; }
      .header__category button .bar > span:nth-child(3) {
        margin-top: 4px;
        width: 17px; }
      .header__category button .rotate-arrow button:after {
        -webkit-transform: rotate(180deg);
        -moz-transform: rotate(180deg);
        -o-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
        transform: rotate(180deg); }
    .header__category .vertical-menu span {
      background-color: var(--color-black);
      width: 20px;
      height: 2px;
      display: block; }
  .header__recent-posts-wrap {
    background-color: var(--color-white);
    padding: 5px 10px;
    border: 1px solid #E2DEDE;
    max-width: 800px;
    position: relative;
    overflow: hidden;
    height: 30px; }
    @media only screen and (min-width: 1200px) and (max-width: 1500px) {
      .header__recent-posts-wrap {
        max-width: 650px; } }
    @media (max-width: 1199px) {
      .header__recent-posts-wrap {
        display: none; } }
    @media (max-width: 991px) {
      .header__recent-posts-wrap {
        display: none; } }
  .header__recent-posts {
    -webkit-animation: marquee 12s linear infinite;
    animation: marquee 12s linear infinite; }
    .header__recent-posts .owl-stage-outer {
      overflow: unset; }
  .header__recent-post {
    position: relative;
    padding-left: 10px;
    place-items: center; }
    .header__recent-post::before {
      position: absolute;
      top: 50%;
      left: 0;
      width: 5px;
      height: 5px;
      -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
      transform: translateY(-50%);
      background-color: var(--color-primary);
      content: "";
      border-radius: 50%;
      -webkit-border-radius: 50%;
      -moz-border-radius: 50%;
      -ms-border-radius: 50%;
      -o-border-radius: 50%; }
    .header__recent-post h3 {
      font-size: 14px;
      font-family: var(--font-body);
      font-weight: 400; }
      .header__recent-post h3 a {
        color: var(--color-black); }
        .header__recent-post h3 a:hover {
          text-decoration: underline; }
    .header__recent-post a {
      color: var(--color-black); }
  .header .header__search {
    max-width: 353px;
    position: relative; }
    .header .header__search input {
      width: 353px;
      background: #FCFCFC;
      border: 1px solid #E1E0E0;
      height: 55px;
      padding: 0 25px;
      border-radius: 30px;
      font-size: 16px; }
    .header .header__search button {
      position: absolute;
      top: 0;
      right: 0;
      height: 55px;
      background: transparent;
      width: 55px;
      font-size: 15px;
      color: #ff184e; }
  @media (max-width: 1199px) {
    .header__left-nav {
      margin-right: 20px; } }
  .header__left-nav .hamburger_menu {
    margin-left: 0; }
    .header__left-nav .hamburger_menu span {
      color: var(--color-black); }
  .header--3 .trending-slide, .header--4 .trending-slide {
    margin-left: 95px; }
  .header--3 .header__top, .header--4 .header__top {
    padding: 11px 0;
    background-color: transparent;
    border-bottom: 1px solid #DDDDDD; }
  .header--3 .header__top-info li, .header--4 .header__top-info li {
    color: #3E4044;
    font-weight: 400; }
    .header--3 .header__top-info li::before, .header--4 .header__top-info li::before {
      background-color: #C4C4C4; }
    .header--3 .header__top-info li i, .header--4 .header__top-info li i {
      color: #6D7079; }
  .header .trending-icon-wrap {
    position: absolute;
    top: 49%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    padding-right: 10px; }
    .header .trending-icon-wrap::before {
      position: absolute;
      top: 10px;
      right: 0;
      width: 1px;
      height: 12px;
      background-color: #C4C4C4;
      content: ""; }
    .header .trending-icon-wrap i {
      color: var(--color-primary-2);
      font-size: 18px;
      margin-right: 5px; }
    .header .trending-icon-wrap.style-2 i {
      color: var(--color-primary); }
    .header .trending-icon-wrap span {
      color: var(--color-black);
      font-size: 15px; }
  .header--3 .header__main {
    padding-bottom: 0; }
  .header--3 .header__main-wrap {
    background-color: #F8F8F8; }
    .header--3 .header__main-wrap.uk-sticky.uk-active {
      padding: 15px 0;
      background-color: var(--color-white); }
      @media (max-width: 991px) {
        .header--3 .header__main-wrap.uk-sticky.uk-active {
          padding: 20px 0; } }
  .header--3 .header-date {
    font-size: 14px;
    color: #4D4D4D;
    font-weight: 500; }
    .header--3 .header-date i {
      color: var(--color-primary-2);
      font-size: 13px;
      margin-right: 6px; }
  .header--3 .search-box-outer {
    background-color: transparent;
    border: 0 !important;
    width: auto;
    height: auto;
    margin-right: 23px;
    margin-left: 0;
    color: #1D2026; }
    @media (max-width: 767px) {
      .header--3 .search-box-outer {
        display: none; } }
  .header--3 .header__icons .notification {
    background-color: var(--color-primary-2);
    top: 4px;
    right: 4px; }
  .header--3 .header__icons .wish-count {
    background-color: var(--color-primary-2); }
  @media (max-width: 1199px) {
    .header--3 .header__social {
      display: none; } }
  @media (max-width: 767px) {
    .header--3 .header__top .header__logo {
      display: none; } }
  @media (max-width: 767px) {
    .header--3 .header__top-info {
      justify-content: center; } }
  .header__middle-add {
    padding: 0 20px; }
    @media (max-width: 991px) {
      .header__middle-add {
        padding: 0; } }
  .header--4 .header__middle {
    padding: 18px 0;
    padding-bottom: 3px; }
  .header--4 .header__icons .notification {
    top: 3px;
    right: 3px; }
  @media (max-width: 1199px) {
    .header--4 .header__icons {
      display: none; } }
  @media (max-width: 1199px) {
    .header--4 .header__top-info {
      justify-content: center; } }

@-webkit-keyframes marquee {
  from {
    -webkit-transform: translateX(0);
    transform: translateX(0); }
  to {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%); } }
@keyframes marquee {
  from {
    -webkit-transform: translateX(0);
    transform: translateX(0); }
  to {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%); } }
.logo {
  max-width: 220px; }
  .logo img {
    width: 100%; }

.sticky-header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 99;
  padding: 5px 0;
  background: var(--color-black);
  -webkit-box-shadow: 0px 13px 25px -12px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 13px 25px -12px rgba(0, 0, 0, 0.1);
  animation: 0.5s ease-in-out 0s normal none 1 running fadeInDown; }
  @media (max-width: 991px) {
    .sticky-header {
      padding: 20px 0; } }

.hamburger_menu {
  font-size: 15px;
  margin-left: 20px; }
  .hamburger_menu .icon {
    font-size: 22px; }

.header-notifications-content {
  width: 360px;
  margin-top: 40px;
  border: 0;
  background: transparent;
  border: none;
  padding: 0; }

.notification-popup {
  display: block;
  width: 360px;
  max-width: 100%;
  margin-top: 20px;
  background-color: var(--color-white);
  box-shadow: 0 0 10px 3px rgba(0, 0, 0, 0.05);
  border-radius: 2px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  -o-border-radius: 2px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s; }

.notification-header {
  display: flex;
  align-items: center;
  padding: 10px 15px;
  background-color: #F7F7F7;
  justify-content: space-between; }

.otification-text {
  font-size: 14px;
  color: var(--color-black); }

.notification-url {
  display: flex;
  align-items: center;
  flex-flow: row nowrap;
  margin-left: auto;
  color: var(--color-default);
  font-size: 12px;
  opacity: .7; }
  .notification-url:hover {
    opacity: .9;
    color: var(--color-default); }

.notification-content-title {
  display: flex;
  align-items: center;
  flex-flow: nowrap;
  margin: 10px 15px;
  padding-bottom: 5px;
  border-bottom: 1px solid #EDEDED;
  font-size: 12px; }
  .notification-content-title i {
    color: var(--color-primary);
    margin-right: 5px;
    font-size: 12px; }
    .notification-content .scroll-holder::-webkit-scrollbar {
      display: none;
  }
  
.notification-content .scroll-holder {
  overflow-y: scroll;
  max-height: 50vh;
  scrollbar-color: #0000000f #88888821;
  scrollbar-width: thin; }
.notification-content .p-wrap {
  margin-bottom: 0;
  padding: 10px 15px; }
  .notification-content .p-wrap .post-thumb {
    width: 105px;
    margin-right: 15px;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px; }
    .scroll-holder .post-thumb.mzx-post__item img {
      height: 87px;
  }
  .notification-content .p-wrap .post-content {
    width: calc(100% - 120px); }
  .notification-content .p-wrap .post-title {
    font-size: 15px;
    margin-bottom: 3px; }
    .notification-content .p-wrap .post-title a {
      color: var(--color-black); }
  .notification-content .p-wrap .date {
    font-size: 13px; }

.vertical-menu {
  position: relative; }
  .vertical-menu ul {
    list-style: none; }
  .vertical-menu > ul > li.menu-item-has-children > a:before {
    content: "\f107";
    font-family: "Font Awesome 5 Pro";
    font-weight: 400;
    font-size: 17px;
    font-size: calc-rem-value(8);
    position: absolute;
    right: -7px;
    top: 13px;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s; }
  .vertical-menu > ul {
    position: absolute;
    left: 0;
    top: 48px;
    width: 250px;
    background: var(--color-white);
    z-index: 2;
    padding: 10px 0;
    box-shadow: 0 8px 15px rgba(var(--color-black-rgb), 0.1); }
    .vertical-menu > ul li {
      position: relative;
      padding: 0 25px;
      line-height: 1.3; }
    .vertical-menu > ul > li > a {
      padding-left: 40px;
      position: relative;
      color: var(--color-default); }
    .vertical-menu > ul .fi:before {
      font-size: 20px;
      font-size: calc-rem-value(25); }
    .vertical-menu > ul .fi {
      position: absolute;
      top: 14px;
      left: 0; }
    .vertical-menu > ul li:last-child {
      border-bottom: 0; }
    .vertical-menu > ul ul {
      position: absolute;
      left: 98%;
      right: auto;
      top: 0;
      width: 226px;
      background: var(--color-white);
      z-index: 1;
      padding: 0;
      opacity: 0;
      visibility: hidden;
      -webkit-transition: 0.3s;
      -o-transition: 0.3s;
      transition: 0.3s;
      pointer-events: none;
      box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1); }
    .vertical-menu > ul a {
      font-size: 14px;
      font-size: calc-rem-value(14);
      display: block;
      padding: 15px 0;
      font-weight: 500;
      color: var(--color-default); }
  .vertical-menu > ul > li:hover > ul {
    left: calc(100% + 1px);
    opacity: 1;
    visibility: visible;
    pointer-events: unset; }

.vertical-menu .bar {
  position: absolute;
  left: 15px;
  top: 13px; }

.vertical-menu span {
  background-color: #fff;
  width: 27px;
  height: 2px;
  display: block; }

.bar > span:nth-child(2) {
  margin-top: 4px;
  width: 15px; }

.bar > span:nth-child(3) {
  margin-top: 4px;
  width: 20px; }

.trending-slide {
  margin-left: 20px; }
  .trending-slide.owl-carousel .owl-stage {
    transition: unset !important; }
  .trending-slide .ts-item .post-title {
    font-size: 15px;
    font-family: var(--font-body);
    font-weight: 400; }
    .trending-slide .ts-item .post-title a {
      color: #B7B7B8; }
  .trending-slide .ts-item--2 .post-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    overflow: hidden;
    background-color: var(--color-white);
    box-shadow: 0px 4px 5px rgba(0, 0, 0, 0.1);
    margin-right: 7px; }
    .trending-slide .ts-item--2 .post-thumb img {
      height: 100%;
      width: 100%;
      padding: 2px;
      object-fit: cover;
      border-radius: 50%;
      -webkit-border-radius: 50%;
      -moz-border-radius: 50%;
      -ms-border-radius: 50%;
      -o-border-radius: 50%; }
  .trending-slide .ts-item--2 .post-title {
    font-size: 15px;
    font-family: var(--font-body);
    font-weight: 400;
    width: calc(100% - 27px); }
    .trending-slide .ts-item--2 .post-title a {
      color: #353535; }

/* Navigation css */
.main-menu__nav ul {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0; }
  .main-menu__nav ul li {
    position: relative; }
    .main-menu__nav ul li:not(:last-child) {
      margin-right: 50px; }
      @media only screen and (min-width: 1200px) and (max-width: 1500px) {
        .main-menu__nav ul li:not(:last-child) {
          margin-right: 45px; } }
      @media (max-width: 1199px) {
        .main-menu__nav ul li:not(:last-child) {
          margin-right: 35px; } }
    .main-menu__nav ul li .submenu li {
      margin-right: 0 !important; }
    .main-menu__nav ul li a {
      display: block;
      text-decoration: none;
      font-size: 14px;
      font-weight: 500;
      color: #070707;
      padding: 35px 0;
      position: relative;
      line-height: 22px; }
    .main-menu__nav ul li.menu-item-has-children > a::after {
      content: "\f107";
      font-family: "Font Awesome 5 Pro";
      font-size: 14px;
      transform: translateY(0px);
      display: inline-block;
      padding-left: 6px;
      font-weight: 400; }
    .main-menu__nav ul li:hover > a, .main-menu__nav ul li.active > a {
      color: var(--color-primary); }
    .main-menu__nav ul li:hover > .submenu {
      visibility: visible;
      opacity: 1;
      -webkit-transform: scaleY(100%);
      -ms-transform: scaleY(100%);
      transform: scaleY(100%); }
    .main-menu__nav ul li .submenu {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
      position: absolute;
      min-width: 215px;
      top: 100%;
      visibility: hidden;
      opacity: 0;
      background: var(--color-white);
      padding: 11px 0;
      -webkit-transition: 0.3s;
      -o-transition: 0.3s;
      transition: 0.3s;
      -webkit-box-shadow: 0 0 10px 3px rgba(0, 0, 0, 0.05);
      box-shadow: 0 0 10px 3px rgba(0, 0, 0, 0.05);
      z-index: 3;
      text-align: left;
      transform-origin: 50% 0;
      -webkit-transform: scaleY(0);
      -ms-transform: scaleY(0);
      transform: scaleY(0);
      border-radius: 5px; }
      .main-menu__nav ul li .submenu li a {
        color: var(--color-black);
        padding: 6px 25px; }
      .main-menu__nav ul li .submenu li:hover > a, .main-menu__nav ul li .submenu li.active > a {
        color: var(--color-primary);
        letter-spacing: .5px; }
      .main-menu__nav ul li .submenu li.menu-item-has-children > a::after {
        position: absolute;
        top: 11px;
        right: 16px;
        line-height: 1;
        font-size: 13px;
        content: "\f105";
        letter-spacing: 1px; }
      .main-menu__nav ul li .submenu ul {
        left: 100%;
        top: 0px; }
.main-menu__nav.style-2 ul li:not(:last-child) {
  margin-right: 42px; }
.main-menu__nav.style-2 ul li a {
  padding: 20px 0;
  font-size: 15px;
  font-weight: 500; }
.main-menu__nav.style-2 ul li.menu-item-has-children > a::after {
  content: "\f142";
  font-size: 12px; }
.main-menu__nav.style-2 ul li:hover > a, .main-menu__nav.style-2 ul li.active > a {
  color: var(--color-primary-2); }
.main-menu__nav.style-2 ul li .submenu li:hover > a, .main-menu__nav.style-2 ul li .submenu li.active > a {
  color: var(--color-primary-2); }
.main-menu__category ul li:not(:last-child) {
  margin-right: 65px; }
  @media only screen and (min-width: 1200px) and (max-width: 1500px) {
    .main-menu__category ul li:not(:last-child) {
      margin-right: 30px; } }
  @media (max-width: 1199px) {
    .main-menu__category ul li:not(:last-child) {
      margin-right: 20px; } }
.main-menu__category ul li a {
  color: #4C5161;
  font-size: 18px;
  font-weight: 500; }
  @media only screen and (min-width: 1200px) and (max-width: 1500px) {
    .main-menu__category ul li a {
      font-size: 16px; } }
  @media (max-width: 1199px) {
    .main-menu__category ul li a {
      font-size: 16px; } }
  .main-menu__category ul li a i {
    color: #8A8B90;
    margin-right: 5px;
    font-size: 14px;
    -webkit-transform: translateY(-1px);
    -ms-transform: translateY(-1px);
    transform: translateY(-1px);
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s; }
  .main-menu__category ul li a:hover i {
    color: var(--color-primary); }
@media only screen and (min-width: 1200px) and (max-width: 1500px) {
  .main-menu__category.style-3 ul li:not(:last-child) {
    margin-right: 20px; } }
@media (max-width: 1199px) {
  .main-menu__category.style-3 ul li:not(:last-child) {
    margin-right: 18px; } }
.main-menu__category.style-3 ul li a {
  font-size: 17px;
  font-weight: 400; }
  @media (max-width: 1199px) {
    .main-menu__category.style-3 ul li a {
      font-size: 16px; } }

.main-menu ul li.menu-last ul.submenu {
  right: 0;
  left: auto; }

.main-menu ul li.menu-last ul.submenu ul {
  right: auto;
  left: -100%; }

.badge {
  position: absolute;
  top: 32%;
  right: -14px;
  transform: translateY(-50%);
  font-size: 10px;
  font-weight: 500;
  text-transform: capitalize;
  border-radius: 30px;
  min-width: 33px;
  height: 15px;
  display: flex;
  align-items: center;
  justify-content: center; }
  .side-mobile-menu .badge {
    right: auto;
    left: 52px;
    top: 11px;
  }
.badge.hot {
  background: var(--color-primary); }

.badge.new {
  background: #0DC361; }

.header--3 .badge {
  top: 23%; }

/* social link */
.social-links a {
  border-radius: 4px;
  font-size: 15px;
  text-align: center;
  color: var(--color-black);
  text-decoration: none;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%; }
  .social-links a:not(:last-child) {
    margin-right: 10px; }
  .social-links a:hover {
    border-color: var(--color-white);
    color: var(--color-black); }

/* buttons */
.thm-btn {
  font-size: 16px;
  font-weight: 500;
  z-index: 1;
  padding: 12px 18px;
  text-align: center;
  color: #ffff;
  background: var(--color-primary);
  display: inline-block;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  text-transform: capitalize;
  line-height: 1.3;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  border: 0; }
  .thm-btn:hover {
    color: #fff;
    box-shadow: 0px 4px 12px rgba(255, 24, 78, 0.4);
    -webkit-transform: translateY(-1px);
    -ms-transform: translateY(-1px);
    transform: translateY(-1px); }
  .thm-btn--2 {
    background-color: var(--color-primary-2); }
    .thm-btn--2:hover {
      box-shadow: 0px 4px 12px rgba(41, 98, 255, 0.4); }
  .thm-btn--3 {
    background-color: var(--color-primary-3); }
    .thm-btn--3:hover {
      box-shadow: 0px 4px 12px rgba(41, 98, 255, 0.4); }
  .thm-btn__main {
    padding: 15px 30px;
    font-size: 15px; }
    .thm-btn__main i {
      padding-left: 4px; }

.btns a {
  margin-right: 30px;
  margin-top: 20px; }
  .btns a:last-child {
    margin-right: 0; }

/* sidebar widget */
.sidebar-logo img:nth-child(2) {
  display: none; }

.sidebar-info {
  padding-top: 20px;
  padding-bottom: 50px; }

.sidebar-info .s-title {
  font-size: 24px;
  margin-bottom: 10px; }

.sidebar-content p {
  margin-bottom: 30px; }

.footer-info li {
  margin-bottom: 10px;
  color: var(--color-default);
  font-size: 16px; }

.footer-info li span {
  margin-right: 10px;
  float: left; }

.footer-info li p {
  overflow: hidden; }

.sidebar-info .sidebar-social a {
  font-size: 15px;
  width: 50px;
  height: 50px;
  display: inline-block;
  text-align: center;
  line-height: 50px;
  border-radius: 10px;
  color: #777;
  margin-right: 3px;
  background: #eeeeee; }

.sidebar-info .sidebar-social a:hover {
  color: #fff;
  background: var(--color-primary-2) !important; }

/*----------------------------------------*/
/*  04. globel
/*----------------------------------------*/
@media (max-width: 1024px) {
  .trending__post-wrapper.mr-none-60{
    margin-right: 0;
  }  }
@media (min-width: 1024px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl {
    max-width: 1380px; } div#comments {
      margin-right: 30px;
  }  }
.custom-width {
  max-width: 1600px; }
  @media only screen and (min-width: 1200px) and (max-width: 1500px) {
    .custom-width {
      max-width: 1350px; } }

.mxw_1630 {
  max-width: 1530px; }

.mxw_1680 {
  max-width: 1680px; }

.mxw_1690 {
  max-width: 1690px; }

.mr-none-4 {
  margin-right: -4px; }

.ml-none-10 {
  margin-left: -10px; }

.ml-none-25 {
  margin-left: -25px; }

.ml-none-30 {
  margin-left: -30px; }

.mr-none-15 {
  margin-right: -15px; }

.mr-none-10 {
  margin-right: -10px; }

.mr-none-25 {
  margin-right: -25px; }

.mr-none-30 {
  margin-right: -30px; }

.mr-none-40 {
  margin-right: -40px; }

.mr-none-50 {
  margin-right: -50px; }

.mr-none-55 {
  margin-right: -55px; }

.mr-none-60 {
  margin-right: -60px; }

.mr-none-65 {
  margin-right: -65px; }

.ml-none-65 {
  margin-left: -65px; }

.mr-none-75 {
  margin-right: -75px; }

.ml-78 {
  margin-left: 78px; }

@media only screen and (min-width: 1200px) and (max-width: 1500px) {
  .mrxl-none-30 {
    margin-right: -30px; } }
@media (max-width: 1199px) {
  .mrxl-none-30 {
    margin-right: 0; } }

@media (max-width: 1199px) {
  .mllg-none-100 {
    margin-left: -100px; } }
@media (max-width: 991px) {
  .mllg-none-100 {
    margin-left: 0; } }

.mr-none-35 {
  margin-right: -35px; }

.mt-6 {
  margin-top: 6px; }

.mb-6 {
  margin-bottom: 6px; }

@media (max-width: 1199px) {
  .hlg-350 {
    height: 350px; } }
.hlg-350 img {
  height: 100%;
  object-fit: cover; }

@media (max-width: 1199px) {
  .hmd-400 {
    height: 350px; } }
.hmd-400 img {
  height: 100%;
  object-fit: cover; }

@media (max-width: 1199px) {
  .hlg-510 {
    height: 510px; } }
@media (max-width: 991px) {
  .hlg-510 {
    height: 350px; } }
.hlg-510 img {
  height: 100%;
  object-fit: cover; }

.plr-40 {
  padding-left: 40px;
  padding-right: 40px; }
  @media only screen and (min-width: 1200px) and (max-width: 1500px) {
    .plr-40 {
      padding-left: 30px;
      padding-right: 30px; } }
  @media (max-width: 1199px) {
    .plr-40 {
      padding-left: 0;
      padding-right: 0; } }

.p-22 {
  padding: 22px; }

.br-0 {
  border-radius: 0 !important;
  -webkit-border-radius: 0 !important;
  -moz-border-radius: 0 !important;
  -ms-border-radius: 0 !important;
  -o-border-radius: 0 !important; }

.br-11 {
  border-radius: 11px;
  -webkit-border-radius: 11px;
  -moz-border-radius: 11px;
  -ms-border-radius: 11px;
  -o-border-radius: 11px; }

.tx-section-heading {
  font-size: 22px;
  font-weight: 500;
  color: var(--color-black);
  padding-bottom: 10px;
  border-bottom: 1px solid var(--color-border);
  text-transform: capitalize; }
  .tx-section-heading span {
    position: relative;
    color: currentColor;
    padding-right: 10px; }
    .tx-section-heading span::before {
      position: absolute;
      bottom: -9px;
      left: 0;
      width: 100%;
      content: "";
      background-color: var(--color-primary);
      height: 1px; }
  .tx-section-heading--white {
    border-color: #303134; }
    .tx-section-heading--white span {
      color: #fff; }
  .tx-section-heading.style-2 {
    border-color: #EEECEC;
    font-size: 24px; }
    .tx-section-heading.style-2 span:before {
      background-color: var(--color-primary-2); }
  .tx-section-heading.style-3 {
    border-color: var(--color-border);
    font-family: var(--font-body);
    position: relative;
    padding-left: 31px; }
    .tx-section-heading.style-3::before, .tx-section-heading.style-3::after {
      position: absolute;
      top: 3px;
      left: 0;
      content: "";
      border-radius: 50%;
      -webkit-border-radius: 50%;
      -moz-border-radius: 50%;
      -ms-border-radius: 50%;
      -o-border-radius: 50%; }
    .tx-section-heading.style-3::before {
      width: 23px;
      height: 23px;
      border: 1px solid var(--color-primary-3); }
    .tx-section-heading.style-3::after {
      width: 9px;
      height: 9px;
      background-color: var(--color-primary-3);
      top: 10px;
      left: 7px; }
    .tx-section-heading.style-3 span {
      color: #121416; }
      .tx-section-heading.style-3 span > span {
        font-weight: 300; }
    .tx-section-heading.style-3 span:before {
      display: none; }

.politics-sec-heading {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  padding: 0px 15px;
  padding-right: 20px;
  display: inline-block;
  background-color: var(--color-primary-3);
  color: #fff;
  clip-path: polygon(0px 1%, 91.81% -1px, 100% 100%, 0% 100%); }

.post-cat {
  background-color: var(--color-primary);
  padding: 1px 17px;
  color: #fff;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
  display: inline-block;
  letter-spacing: .6px; }
  .post-cat:hover {
    color: #fff; }
  .post-cat--md {
    font-size: 14px;
    padding: 0 15px;
    line-height: 26px;
    text-transform: capitalize; }
  .post-cat--sm {
    font-size: 12px;
    padding: 1px 13px;
    line-height: 22px;
    text-transform: capitalize; }
  .post-cat--xs {
    font-size: 11px;
    padding: 0px 15px;
    line-height: 22px;
    text-transform: capitalize; }
  .post-cat.fw-400 {
    font-weight: 400; }

.tx-post .cat {
  font-size: 12px;
  font-weight: 500;
  color: #999999;
  text-transform: uppercase;
  display: inline-block;
  line-height: 1; }

.cat-style-1 {
  background-color: #06C547; }

.cat-style-2 {
  background-color: #FF5D18; }

.cat-style-3 {
  background-color: #FAA908; }

.cat-style-4 {
  background-color: #039936; }

.cat-style-5 {
  background-color: #3C6FF3; }

.cat-style-6 {
  background-color: #F205E9; }

.cat-style-7 {
  background-color: #56CA71; }

.cat-style-8 {
  background-color: var(--color-primary-2); }

.cat-style-9 {
  background-color: #028CDA; }

.cat-style-10 {
  background-color: #E7156D; }

.fs-13 {
  font-size: 13px; }

.fs-16 {
  font-size: 16px; }

.fs-17 {
  font-size: 17px; }

.fs-18 {
  font-size: 18px; }

.fs-20 {
  font-size: 20px; }

.fs-22 {
  font-size: 22px; }

.fs-28 {
  font-size: 28px; }

.fs-36 {
  font-size: 36px; }

.br-20 {
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px; }

.br-lb-0 {
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important; }

.br-rb-0 {
  border-bottom-right-radius: 0 !important;
  border-top-right-radius: 0 !important; }

@media only screen and (min-width: 1200px) and (max-width: 1500px) {
  .tx-post-left {
    margin-right: 0; } }
@media (max-width: 991px) {
  .tx-post-left {
    margin-right: 0; } }

.tx-post:hover .post-thumb img {
  -webkit-transform: scale(1.02);
  transform: scale(1.03); }
.tx-post .post-thumb {
  position: relative;
  overflow: hidden; }
  .footer__widget .tx-post .post-thumb img {
    height: 68px;
}
  .tx-post .post-thumb img {
    width: 100%;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease; }
  .tx-post .post-thumb::before {
    z-index: 1; }
  .tx-post .post-thumb.br-3 {
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px; }
  .tx-post .post-thumb.br-4 {
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px; }
.tx-post .post-title a {
  color: var(--color-black); }
  .news-widget .ul_li.tx-post .post-thumb.sidebaa__thumb img {
    height: 88px;
  }
.tx-post .post-number {
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  background-color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 12px;
  font-weight: 700; }
  .tx-post .post-number.style-2 {
    background-color: var(--color-primary-2);
    width: 22px;
    height: 22px; }
.tx-post .read-more a {
  color: var(--color-primary);
  font-size: 14px; }
  .tx-post .read-more a i {
    padding-left: 5px;
    font-size: 12px;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s; }
  .tx-post .read-more a:hover i {
    padding-left: 7px; }
.tx-post__carousel-nav .owl-nav {
  position: absolute;
  top: -65px;
  right: 0;
  display: flex; }
  .tx-post__carousel-nav .owl-nav div {
    width: 28px;
    height: 28px;
    background: #F0F0F0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
    color: var(--color-primary);
    font-size: 15px;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s; }
    .tx-post__carousel-nav .owl-nav div:hover {
      color: #ffff;
      background-color: var(--color-primary) !important; }
    .tx-post__carousel-nav .owl-nav div.owl-prev {
      margin-right: 10px; }
.tx-post__carousel-nav.style-2 .owl-nav {
  top: -73px; }
  .tx-post__carousel-nav.style-2 .owl-nav div {
    width: 34px;
    height: 34px;
    background-color: #F8F8F8;
    color: var(--color-default); }
    .tx-post__carousel-nav.style-2 .owl-nav div:hover {
      color: #fff;
      background-color: var(--color-primary-2) !important; }
@media only screen and (min-width: 1200px) and (max-width: 1500px) {
  .tx-post__item-wrap.mr-none-30 {
    margin-right: -40px; } }
@media (max-width: 1199px) {
  .tx-post__item-wrap.style-2 {
    display: flex;
    flex-wrap: wrap;
    margin-right: -20px;
    margin-top: -20px; } }

.tx-post-overly {
  position: relative; }
  .tx-post-overly .post-thumb {
    position: relative;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px; }
    .tx-post-overly .post-thumb.br-6 {
      border-radius: 6px;
      -webkit-border-radius: 6px;
      -moz-border-radius: 6px;
      -ms-border-radius: 6px;
      -o-border-radius: 6px; }
    .tx-post-overly .post-thumb.br-4 {
      border-radius: 4px;
      -webkit-border-radius: 4px;
      -moz-border-radius: 4px;
      -ms-border-radius: 4px;
      -o-border-radius: 4px; }
    .tx-post-overly .post-thumb::before {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: calc(100% - 50%);
      background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.49) 27.08%, rgba(0, 0, 0, 0.82) 61.86%, rgba(0, 0, 0, 0.8) 95.31%);
      content: ""; }
      @media (max-width: 767px) {
        .tx-post-overly .post-thumb::before {
          height: calc(100% - 30%); } }
  .tx-post-overly .post-content {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 2;
    padding: 50px;
    width: calc(100% - 30%); }
    @media (max-width: 1199px) {
      .tx-post-overly .post-content {
        width: calc(100% - 10%);
        padding: 35px; } }
    @media (max-width: 767px) {
      .tx-post-overly .post-content {
        width: 100%;
        padding: 30px; } }
    .tx-post-overly .post-content.w-90 {
      width: calc(100% - 10%); }
      @media (max-width: 1199px) {
        .tx-post-overly .post-content.w-90 {
          width: 100%; } }
    .tx-post-overly .post-content.w-80 {
      width: calc(100% - 20%); }
      @media (max-width: 1199px) {
        .tx-post-overly .post-content.w-80 {
          width: 100%; } }
  .tx-post-overly .post-title a {
    color: #fff; }
  .tx-post-overly .post-title.fs-30 {
    font-size: 30px; }
    @media only screen and (min-width: 1200px) and (max-width: 1500px) {
      .tx-post-overly .post-title.fs-30 {
        font-size: 28px; } }
    @media (max-width: 767px) {
      .tx-post-overly .post-title.fs-30 {
        font-size: 22px; } }
  .tx-post-overly .post-meta span {
    color: #fff; }
  .tx-post-overly--lg .post-thumb.overlay-70::before {
    height: calc(100% - 30%); }
  .tx-post-overly--lg .post-thumb.h-555 img {
    height: 100%;
    object-fit: cover; }
  @media only screen and (min-width: 1200px) and (max-width: 1500px) {
    .tx-post-overly--lg .post-thumb.h-555 {
      height: 555px; } }
  .tx-post-overly--lg .post-content {
    padding: 34px; }
    @media (max-width: 767px) {
      .tx-post-overly--lg .post-content {
        padding: 30px; } }
  .tx-post-overly--md .post-content {
    padding: 30px;
    width: 100%; }
  .tx-post-overly--md .post-title.fs-24 {
    font-size: 24px; }
  .tx-post-overly--sm .post-thumb::before {
    height: calc(100% - 45%);
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.310835) 27.08%, rgba(0, 0, 0, 0.71) 61.86%, #000000 95.31%); }
    @media (max-width: 1199px) {
      .tx-post-overly--sm .post-thumb::before {
        height: calc(100% - 35%); } }
  .tx-post-overly--sm .post-content {
    padding: 25px;
    width: 100%; }
    @media (max-width: 1199px) {
      .tx-post-overly--sm .post-content {
        padding: 30px; } }
  .tx-post-overly--sm .post-title {
    font-size: 28px; }
    @media (max-width: 767px) {
      .tx-post-overly--sm .post-title {
        font-size: 24px; } }
    .tx-post-overly--sm .post-title.fs-18 {
      font-size: 18px; }
  @media only screen and (min-width: 1200px) and (max-width: 1500px) {
    .tx-post-overly--sm.ml-none-25 {
      margin-left: 0; } }
  @media only screen and (min-width: 1200px) and (max-width: 1500px) {
    .tx-post-overly--sm.mr-none-35 {
      margin-right: 0; } }
  .tx-post-overly .post-thumb.br-5 {
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px; }
  .tx-post-overly .post-thumb.br-8 {
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px; }

.post-tags li {
  font-size: 15px;
  text-transform: capitalize;
  position: relative; }
  .post-tags li:not(:first-child, :last-child) {
    margin-right: 6px;
    padding-right: 10px; }
    .post-tags li:not(:first-child, :last-child)::before {
      position: absolute;
      top: 50%;
      right: 0;
      -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
      transform: translateY(-50%);
      width: 5px;
      height: 5px;
      background-color: var(--color-primary);
      border-radius: 50%;
      -webkit-border-radius: 50%;
      -moz-border-radius: 50%;
      -ms-border-radius: 50%;
      -o-border-radius: 50%;
      content: ""; }
  .post-tags li span {
    display: inline-block;
    background-color: var(--color-primary);
    padding: 0px 10px;
    line-height: 25px;
    color: #fff;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    margin-right: 12px; }
  .post-tags li a {
    color: #C0C0C0; }
    .post-tags li a:hover {
      color: #fff; }
.post-tags--2 li:not(:first-child, :last-child) {
  margin-right: 11px;
  padding-right: 15px; }
.post-tags--2 li a {
  color: var(--color-black); }
  .post-tags--2 li a:hover {
    color: var(--color-black); }
.post-tags.style-2 li::before, .post-tags.style-2 li span {
  background-color: var(--color-primary-2); }

.tagcloud {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  align-items: center;
  margin: -10px; }
  .tagcloud a {
    display: block;
    color: #77787B;
    background-color: #F6F6F6;
    min-height: 36px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    font-size: 14px !important;
    text-transform: capitalize;
    text-decoration: none;
    font-weight: 500;
    padding: 0px 17px;
    margin: 7px;
    border-radius: 2px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    -o-border-radius: 2px; }
    .tagcloud a:hover {
      color: #fff;
      background-color: var(--color-primary) !important; }

.sposnord-meta .sposnord {
  font-size: 15px;
  margin-right: 6px;
  color: #201616; }
.sponsord-content .sposnord-meta img {
  height: 14px; }

.read-more__btn a {
  color: #201B1B;
  border: 1px solid #D6D7D9;
  border-radius: 2px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  -o-border-radius: 2px;
  display: inline-block;
  padding: 8px 30px; }
  .read-more__btn a:hover {
    border-color: var(--color-black);
    color: var(--color-black); }

.col-1-of-5 {
  width: 20%; }
  @media (max-width: 1199px) {
    .col-1-of-5 {
      width: 33.33%; } }
  @media (max-width: 991px) {
    .col-1-of-5 {
      width: 50%; } }
  @media (max-width: 767px) {
    .col-1-of-5 {
      width: 100%; } }

@media only screen and (min-width: 1100px) and (max-width: 1200px) {
  .col-1-of-5 {
    width: 33.33%; } }
@media only screen and (min-width: 1200px) and (max-width: 1500px) {
  .tx-widget {
    padding-left: 0; } }
@media (max-width: 991px) {
  .tx-widget {
    padding-left: 0; } }

.widget {
  border: 1px solid #EBEBEB;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
  padding: 25px 22px 35px; }
  .widget .widget-title {
    font-size: 22px;
    font-weight: 500;
    color: var(--color-black);
    padding-bottom: 10px;
    border-bottom: 1px solid var(--color-border);
    text-transform: capitalize; }
    .widget .widget-title span {
      position: relative;
      color: currentColor;
      padding-right: 7px; }
      .widget .widget-title span::before {
        position: absolute;
        bottom: -10px;
        left: 0;
        width: 100%;
        content: "";
        background-color: var(--color-primary);
        height: 1px; }
    .widget .widget-title.style-2 span::before {
      background-color: var(--color-primary-2); }
    .widget .widget-title.style-3 {
      font-family: var(--font-body);
      padding-left: 27px;
      position: relative;
      font-size: 20px;
      padding-bottom: 15px; }
      .widget .widget-title.style-3::before, .widget .widget-title.style-3::after {
        position: absolute;
        top: 4px;
        left: 0;
        content: "";
        border-radius: 50%;
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        -ms-border-radius: 50%;
        -o-border-radius: 50%; }
      .widget .widget-title.style-3::before {
        width: 21px;
        height: 21px;
        border: 1px solid var(--color-primary-3); }
      .widget .widget-title.style-3::after {
        width: 8px;
        height: 8px;
        background-color: var(--color-primary-3);
        top: 10px;
        left: 7px; }
      .widget .widget-title.style-3 span::before {
        display: none; }
      .widget .widget-title.style-3 span > span {
        font-weight: 300; }
  .widget ul {
    list-style: none; }
  .widget__search {
    position: relative; }
    .widget__search input {
      width: 100%;
      height: 50px;
      background-color: #F9F9F9;
      padding: 0 12px;
      border: 0;
      color: var(--color-black); }
    .widget__search button {
      position: absolute;
      top: 0;
      right: 0;
      width: 50px;
      height: 100%;
      background: transparent;
      color: #A5A5A5;
      font-size: 16px; }
  .widget__social li {
    display: flex;
    align-items: center;
    justify-content: space-between; }
    .widget__social li:not(:last-child) {
      margin-bottom: 29px; }
    .widget__social li .icon {
      border: 1px solid var(--color-border);
      width: 40px;
      height: 40px;
      color: var(--color-default);
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      -webkit-border-radius: 50%;
      -moz-border-radius: 50%;
      -ms-border-radius: 50%;
      -o-border-radius: 50%;
      margin-right: 13px;
      font-size: 16px; }
    .widget__social li span {
      color: var(--color-black);
      font-size: 18px;
      font-family: var(--font-title); }
      @media only screen and (min-width: 1200px) and (max-width: 1500px) {
        .widget__social li span {
          font-size: 16px; } }
    .widget__social li a {
      font-size: 15px;
      font-weight: 500;
      color: var(--color-default);
      align-items: center;
      justify-content: center;
      width: 100px;
      display: flex;
      border: 1px solid var(--color-border);
      border-radius: 30px;
      -webkit-border-radius: 30px;
      -moz-border-radius: 30px;
      -ms-border-radius: 30px;
      -o-border-radius: 30px;
      font-family: var(--font-title); }
      .widget__social li a:hover {
        color: #fff;
        background-color: var(--color-primary);
        border-color: var(--color-primary) !important;
        box-shadow: 0px 4px 11px rgba(255, 24, 78, 0.3);
        -webkit-transform: translateY(-1px);
        -ms-transform: translateY(-1px);
        transform: translateY(-1px); }
  .widget__social.style-2 li a:hover {
    background-color: var(--color-primary-2);
    border-color: var(--color-primary-2) !important;
    box-shadow: 0px 4px 11px rgba(41, 98, 255, 0.3); }
  .widget__add {
    border: 0;
    padding: 0;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0; }
  .widget__twitter-feeds li {
    display: flex; }
    .widget__twitter-feeds li:not(:last-child) {
      margin-bottom: 25px; }
  .widget__twitter-feeds .icon {
    font-size: 24px;
    color: #0095E9;
    width: 24px;
    margin-right: 10px; }
  .widget__twitter-feeds .content {
    width: calc(100% - 34px);
    font-size: 14px;
    margin-top: -5px; }
  .widget__twitter-feeds span {
    font-size: 14px;
    color: #656A7D; }
  .widget__twitter-feeds .user-name {
    font-family: var(--font-title); }
  .widget__twitter-feeds .twitter-api {
    font-size: 14px;
    color: var(--color-black);
    font-weight: 500;
    margin-right: 11px; }
  .widget__twitter-feeds p {
    font-size: 14px;
    color: #71737E;
    line-height: 21px;
    margin-bottom: 8px; }
    .widget__twitter-feeds p a {
      color: #585A6B;
      font-weight: 500; }
  .widget__twitter-feeds .date i {
    margin-right: 5px; }
  .widget__category {
    list-style: none; }
    .widget__category li:not(:last-child), 
    .widget.widget_archive li:not(:last-child), 
    .widget.widget_pages li:not(:last-child), 
    .widget.widget_nav_menu li:not(:last-child), 
    .widget.widget_meta li:not(:last-child), 
    .widget.widget_categories li:not(:last-child) {
      margin-bottom: 25px; }
    .widget__category li a, 
    .widget.widget_archive li a, 
    .widget.widget_categories li a,
    .widget.widget_nav_menu li a,
    .widget.widget_meta li a,
    .widget.widget_pages li a {
      display: flex;
      align-items: center;
      border: 1px solid #EEECEC;
      border-radius: 4px;
      -webkit-border-radius: 4px;
      -moz-border-radius: 4px;
      -ms-border-radius: 4px;
      -o-border-radius: 4px;
      padding: 6px 18px; }
      .widget__category li a span, .widget li span {
        -webkit-transition: 0.3s;
        -o-transition: 0.3s;
        transition: 0.3s; }
      .widget__category li a:hover {
        background-color: var(--color-primary-2);
        border-color: var(--color-primary-2);
        -webkit-transform: translateY(-2px);
        -ms-transform: translateY(-2px);
        transform: translateY(-2px); }
        .widget__category li a:hover .icon {
          background-color: #fff;
          color: var(--color-primary-2); }
        .widget__category li a:hover span, 
        .widget.widget_archive li a:hover, 
        .widget.widget_meta li a:hover, 
        .widget.widget_nav_menu li a:hover, 
        .widget li a:hover span, 
        .widget.widget_pages li a:hover,
        .widget.widget_categories li a:hover {
          color: #fff; }
        .widget__category li a:hover .arrow-icon i::before {
          transform: translateX(170%); }
    .widget__category li .icon {
      width: 54px;
      height: 54px;
      background-color: #F4F7FF;
      border-radius: 50%;
      -webkit-border-radius: 50%;
      -moz-border-radius: 50%;
      -ms-border-radius: 50%;
      -o-border-radius: 50%;
      margin-right: 10px;
      font-size: 25px;
      color: #2962FF;
      text-align: center;
      line-height: 60px; }
    .widget__category li .cat-title, 
    .widget.widget_archive li a, 
    .widget.widget_meta li a, 
    .widget.widget_nav_menu li a, 
    .widget.widget_pages li a,
    .widget.widget_categories li a {
      flex: 1;
      text-align: center;
      font-size: 19px;
      color: var(--color-black);
      font-family: var(--font-title);
      font-weight: 500; }
      @media only screen and (min-width: 1200px) and (max-width: 1500px) {
        .widget__category li .cat-title, 
        .widget.widget_archive li a, 
        .widget.widget_pages li a,
        .widget.widget_nav_menu li a,
        .widget.widget_categories li a{
          font-size: 15px; } }
      @media (max-width: 767px) {
        .widget__category li .cat-title, 
        .widget.widget_archive li a, 
        .widget.widget_meta li a, 
        .widget.widget_pages li a,
        .widget.widget_nav_menu li a,
        .widget.widget_categories li a {
          font-size: 16px; } }
    .widget__category li .cat-number, 
    .widget.widget_archive li .cat-number, 
    .widget.widget_pages li .cat-number,
    .widget.widget_categories li .cat-number {
      font-size: 16px;
      font-weight: 700;
      color: var(--color-primary);
      margin-right: 18px;
      margin-left: 10px; }
    .widget__category li .arrow-icon, .widget li .arrow-icon {
      line-height: 0; }
      .widget__category li .arrow-icon i, .widget li .arrow-icon i {
        font-size: 22px;
        line-height: 0;
        position: relative;
        overflow: hidden;
        text-shadow: -1.5em 0 0 #fff; }
        .widget__category li .arrow-icon i::before, .widget li .arrow-icon i:before {
          transition: transform 0.4s;
          display: inline-block;
          line-height: 1; }
  @media (max-width: 1199px) {
    .widget__category-wrap {
      margin-left: 0; } }
  .widget__subscribe {
    background-color: #F8F8F9;
    border: 1px solid #F7F7F7; }
    .widget__subscribe form {
      position: relative; }
      .widget__subscribe form input {
        width: 100%;
        border: 1px solid var(--color-border);
        border-radius: 3px;
        -webkit-border-radius: 3px;
        -moz-border-radius: 3px;
        -ms-border-radius: 3px;
        -o-border-radius: 3px;
        background-color: var(--color-white);
        height: 46px;
        font-size: 15px;
        padding: 0 12px;
        color: var(--color-black); }
        .widget__subscribe form input:focus {
          border-color: var(--color-primary-2); }
      .widget__subscribe form button {
        font-size: 14px;
        font-weight: 500;
        position: absolute;
        top: 6px;
        right: 6px;
        background-color: var(--color-primary-2);
        color: #fff;
        width: 97px;
        height: 34px;
        border-radius: 2px;
        -webkit-border-radius: 2px;
        -moz-border-radius: 2px;
        -ms-border-radius: 2px;
        -o-border-radius: 2px; }

.demo-politics .header__icons .wish-count,
.demo-politics .post-tags li span,
.demo-politics .side-mobile-menu ul li ul li:hover > a::before,
.demo-politics .tx-post .post-number,
.demo-politics .post-meta--4.style-4 .post-meta__author .avatar img,
.demo-politics .post-cat,
.demo-politics .theme-switch-box,
.demo-politics .post-tags li:not(:first-child, :last-child)::before,
.demo-politics .post-meta__author .avatar img,
.demo-politics .header__icons .notification {
  background-color: var(--color-primary-3); }

.demo-politics .side-mobile-menu ul li ul li:hover > a::before {
  border-color: var(--color-primary-3) !important; }

.demo-politics .testimonial__slide,
.demo-politics .tab-post__nav .nav-item .nav-link.active {
  border-color: var(--color-primary-3); }

.demo-politics .trending-icon-wrap.style-2 i,
.demo-politics .side-mobile-menu ul li a[aria-expanded="true"],
.demo-politics .side-mobile-menu ul li ul li:hover > a,
.demo-politics .post-meta--4.style-4 li .year,
.demo-politics .popup-video,
.demo-politics .post-meta span i,
.demo-politics .tab-post__nav .nav-item .nav-link.active,
.demo-politics .progress-wrap::after,
.demo-politics .footer__copyright a,
.demo-politics .footer__post .post-date i,
.demo-politics .header .header__search button,
.demo-politics .main-menu__nav ul li:hover > a,
.demo-politics .main-menu__nav ul li.active > a {
  color: var(--color-primary-3); }

.demo-politics .progress-wrap svg.progress-circle path {
  stroke: var(--color-primary-3); }

.demo-politics .footer__copyright {
  font-family: var(--font-title-2); }

/*** 

====================================================================
	Search Popup
====================================================================

***/
.search-popup {
  position: fixed;
  left: 0;
  top: 0;
  height: 100vh;
  width: 100%;
  z-index: 99999;
  margin-top: -540px;
  transform: translateY(-100%);
  -webkit-transition: all 500ms cubic-bezier(0.86, 0, 0.07, 1);
  -moz-transition: all 500ms cubic-bezier(0.86, 0, 0.07, 1);
  -o-transition: all 500ms cubic-bezier(0.86, 0, 0.07, 1);
  transition: all 1500ms cubic-bezier(0.86, 0, 0.07, 1);
  -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  -moz-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  -o-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1); }

.search-popup .color-layer {
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  height: 100vh;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  -webkit-transition: all 500ms cubic-bezier(0.86, 0, 0.07, 1);
  -moz-transition: all 500ms cubic-bezier(0.86, 0, 0.07, 1);
  -o-transition: all 500ms cubic-bezier(0.86, 0, 0.07, 1);
  transition: all 1500ms cubic-bezier(0.86, 0, 0.07, 1);
  -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  -moz-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  -o-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1); }

.sidenav-bar-visible .search-popup {
  width: 80%; }

.search-popup:after {
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  height: 560px;
  background-image: url(../img/waves-shape.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  margin-top: 0px;
  content: ""; }

.search-active .search-popup {
  transform: translateY(0%);
  margin-top: var(--margin-zero); }

.search-popup .close-search {
  position: absolute;
  left: 0;
  right: 0;
  top: 75%;
  margin: 0 auto;
  margin-top: -200px;
  border-radius: 50%;
  text-align: center;
  background-color: var(--color-primary);
  width: 70px;
  cursor: pointer;
  border-bottom: 3px solid var(--color-white);
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
  opacity: 0;
  visibility: hidden; }

.search-popup .close-search span {
  position: relative;
  display: block;
  height: 66px;
  width: 63px;
  font-size: 26px;
  line-height: 67px;
  color: #fff; }

.search-active .search-popup .close-search {
  visibility: visible;
  opacity: 1;
  top: 50%;
  -webkit-transition-delay: 1500ms;
  -moz-transition-delay: 1500ms;
  -ms-transition-delay: 1500ms;
  -o-transition-delay: 1500ms;
  transition-delay: 1500ms; }

.search-popup form {
  position: absolute;
  max-width: 700px;
  top: 50%;
  left: 15px;
  right: 15px;
  z-index: 999;
  margin: -35px auto 0;
  transform: scaleX(0);
  transform-origin: center;
  background-color: var(--color-black);
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease; }

.search-active .search-popup form {
  transform: scaleX(1);
  -webkit-transition-delay: 1200ms;
  -moz-transition-delay: 1200ms;
  -ms-transition-delay: 1200ms;
  -o-transition-delay: 1200ms;
  transition-delay: 1200ms; }

.search-popup .form-group {
  position: relative;
  margin: var(--margin-zero);
  overflow: hidden; }

.search-popup .form-group input[type="text"],
.search-popup .form-group input[type="search"] {
  position: relative;
  display: block;
  font-size: 18px;
  line-height: 50px;
  color: var(--color-black);
  height: 70px;
  width: 100%;
  padding: 10px 30px;
  background-color: var(--color-white);
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
  font-weight: 500;
  text-transform: capitalize;
  border: 0; }

.search-popup .form-group input[type="submit"],
.search-popup .form-group button {
  position: absolute;
  right: 30px;
  top: 0px;
  height: 70px;
  line-height: 70px;
  background: transparent;
  text-align: center;
  font-size: 24px;
  color: var(--color-black);
  padding: 0;
  cursor: pointer;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease; }

.search-popup .form-group input[type="submit"]:hover,
.search-popup .form-group button:hover {
  color: var(--color-black); }

.search-popup input::placeholder,
.search-popup textarea::placeholder {
  color: var(--color-black); }

.search-popup .close-search.style-two {
  position: absolute;
  right: 25px;
  left: auto;
  color: var(--color-white);
  width: auto;
  height: auto;
  top: 25px;
  margin: 0px;
  border: none;
  background: none !important;
  box-shadow: none !important;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease; }

.search-popup .close-search.style-two span {
  font-size: 20px;
  color: var(--color-white); }

.main-header .mobile-menu .menu-box .mCSB_scrollTools {
  width: 3px; }

.search-box-outer {
  width: 50px;
  height: 50px;
  border: 1px solid #E1E0E0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: var(--color-white);
  margin-left: 25px;
  cursor: pointer; }

/*----------------------------------------*/
/*  05. preloder
/*----------------------------------------*/
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-primary);
  z-index: 800;
  height: 100%;
  width: 100%;
  display: table; }

.preloader.v2 {
  background: var(--color-primary-2); }

.no-js .preloader, .oldie .preloader {
  display: none; }

.loader {
  display: table-cell;
  text-align: center;
  vertical-align: middle; }

.line-scale > div:nth-child(1) {
  -webkit-animation: line-scale 1s -0.4s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
  animation: line-scale 1s -0.4s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08); }

.line-scale > div:nth-child(2) {
  -webkit-animation: line-scale 1s -0.3s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
  animation: line-scale 1s -0.3s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08); }

.line-scale > div:nth-child(3) {
  -webkit-animation: line-scale 1s -0.2s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
  animation: line-scale 1s -0.2s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08); }

.line-scale > div:nth-child(4) {
  -webkit-animation: line-scale 1s -0.1s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
  animation: line-scale 1s -0.1s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08); }

.line-scale > div:nth-child(5) {
  -webkit-animation: line-scale 1s 0s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
  animation: line-scale 1s 0s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08); }

.line-scale > div {
  background-color: #fff;
  width: 4px;
  height: 35px;
  border-radius: 2px;
  margin: 2px;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  display: inline-block; }

.preloader.v5 .line-scale > div {
  background-color: #ffff; }

@-webkit-keyframes line-scale {
  0% {
    -webkit-transform: scaley(1);
    transform: scaley(1); }
  50% {
    -webkit-transform: scaley(0.4);
    transform: scaley(0.4); }
  100% {
    -webkit-transform: scaley(1);
    transform: scaley(1); } }
@keyframes line-scale {
  0% {
    -webkit-transform: scaley(1);
    transform: scaley(1); }
  50% {
    -webkit-transform: scaley(0.4);
    transform: scaley(0.4); }
  100% {
    -webkit-transform: scaley(1);
    transform: scaley(1); } }
/*==================================
 // theme-swithcer-box
 ================================*/
.theme-switch-box-wrap {
  position: fixed;
  right: 12px;
  top: 320px;
  z-index: 100; }

.theme-switch-box {
  display: -ms-grid;
  display: grid;
  gap: 8px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: var(--color-primary);
  padding: 8px 6px;
  border-radius: 1.5rem; }

.theme-switch-box-wrap.v2 .theme-switch-box {
  background: var(--color-primary-2); }

[data-theme=dark] .theme-switch-box,
[data-theme=dark] .theme-switch-box-wrap.v2 .theme-switch-box {
  background: #d8d8d8; }

.theme-switch-box__theme-status {
  color: var(--color-white);
  line-height: 1;
  text-align: center; }
.theme-switch-box__label {
  width: 18px;
  height: 36px;
  display: inline-block;
  position: relative;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  border-radius: 1.5rem;
  overflow: hidden; }
.theme-switch-box__main {
  position: absolute;
  background: #000;
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  cursor: pointer;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  border-radius: 1.5rem; }
  .theme-switch-box__main::before {
    position: absolute;
    content: "";
    width: 12px;
    height: 12px;
    background-color: #fff;
    left: 50%;
    top: 0;
    -webkit-transform: translateX(-50%) translateY(3px);
    transform: translateX(-50%) translateY(3px);
    border-radius: 100%;
    border-radius: 1.5rem;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s; }
.theme-switch-box__input {
  display: none; }
.theme-switch-box__input:checked + .theme-switch-box__main::before {
  top: 17px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s; }

.shape-element {
  position: absolute;
  z-index: -1; }

.shape-element span {
  display: block; }

@media (max-width: 991px) {
  .shape-element {
    display: none; } }
[data-theme=dark] body,
[data-theme=dark] .header__language .lang_sub_list li a,
[data-theme=dark] .header__social--2 li a,
[data-theme=dark] .header .header__search input,
[data-theme=dark] .read-more__btn a,
[data-theme=dark] .trending-slide .ts-item--2 .post-title a,
[data-theme=dark] .header--3 .header__top-info li,
[data-theme=dark] .header--4 .header__top-info li,
[data-theme=dark] .search-box-btn span,
[data-theme=dark] .search-box-btn,
[data-theme=dark] .side-mobile-menu ul li ul li a::before,
[data-theme=dark] .main-menu__nav ul li a,
[data-theme=dark] .side-mobile-menu ul li a,
[data-theme=dark] .politics-post__nav .nav-item .nav-link.active,
[data-theme=dark] .notification-content-title,
[data-theme=dark] .magezix-breadcrumb li a span,
[data-theme=dark] .magezix-breadcrumb li:not(:last-child)::after,
[data-theme=dark] .about__list li,
[data-theme=dark] .tagcloud a,
[data-theme=dark] blockquote span,
[data-theme=dark] .header--3 .header__top-info li i,
[data-theme=dark] .header--4 .header__top-info li i,
[data-theme=dark] .header--3 .header-date {
  color: #d7d7d7; }

[data-theme=dark] .side-mobile-menu ul li ul li a::before {
  border-color: #d7d7d7; }

[data-theme=dark] .testimonial__slide-active .owl-dots div {
  background-color: #443D3D; }

[data-theme=dark] .post-meta--4.style-2 li,
[data-theme=dark] .post-meta--4.style-2 span {
  color: #8A8B90; }

[data-theme=dark] .post-meta--4.style-2 li::before {
  background-color: #8A8B90;
  opacity: .5; }

[data-theme=dark] .read-more__btn a:hover {
  border-color: #d7d7d7; }

[data-theme="dark"] .dark-logo,
[data-theme="dark"] .sidebar-logo img:nth-child(1) {
  display: none; }

[data-theme="dark"] .light-logo,
[data-theme="dark"] .sidebar-logo img:nth-child(2) {
  display: inline-block; }

[data-theme=dark] .tx-section-heading.style-3 span,
[data-theme=dark] .online-voating__progress .progress .number,
[data-theme=dark] .header-mobile-search input {
  color: #fff; }

[data-theme=dark] .audio-player .controls .toggle-play.pause::before,
[data-theme=dark] .audio-player .controls .toggle-play.pause::after {
  background: #fff; }

[data-theme=dark] .audio-player .timeline {
  background: #555151; }

[data-theme=dark] .audio-player .controls .toggle-play.play {
  border-left-color: #fff; }

[data-theme=dark] .side-mobile-menu ul li a {
  border-color: #201d1d; }

[data-theme=dark] .main-menu__nav ul li:hover > a,
[data-theme=dark] .main-menu__nav ul li.active > a {
  color: var(--color-primary); }

[data-theme=dark] .main-menu__nav.style-2 ul li:hover > a,
[data-theme=dark] .main-menu__nav.style-2 ul li.active > a {
  color: var(--color-primary-2); }

[data-theme=dark] body,
[data-theme=dark] main,
[data-theme=dark] .sidebar-info .sidebar-social a,
[data-theme=dark] .header-mobile-search input,
[data-theme=dark] .close-mobile-menu,
[data-theme=dark] .header {
  background: #000; }

[data-theme=dark] .tab-post__wrap,
[data-theme=dark] .header__bottom-wrap,
[data-theme=dark] .header__main-wrap.uk-active,
[data-theme=dark] .vertical-menu-list,
[data-theme=dark] .tx-post__carousel-nav .owl-nav div,
[data-theme=dark] .post-search__form,
[data-theme=dark] .tx-post__nav,
[data-theme=dark] .online-voating::before,
[data-theme=dark] .tagcloud a,
[data-theme=dark] .header__language .lang_sub_list li a:hover,
[data-theme=dark] .notification-header,
[data-theme=dark] .header .header__search input,
[data-theme=dark] .black-bg,
[data-theme=dark] .widget__search input,
[data-theme=dark] .header--3 .header__main-wrap,
[data-theme=dark] .header--3 .header__main-wrap.uk-sticky.uk-active,
[data-theme=dark] .widget__category li .icon,
[data-theme=dark] .widget__subscribe,
[data-theme=dark] .subscribe__form-wrap,
[data-theme=dark] .podcast,
[data-theme=dark] .mCS-dark.mCSB_scrollTools .mCSB_draggerRail,
[data-theme=dark] .mCSB_scrollTools,
[data-theme=dark] .online-voating__progress .progress,
[data-theme=dark] .about__info-box .icon::before,
[data-theme=dark] .about-info__wrap,
[data-theme=dark] .accordion_box .block,
[data-theme=dark] blockquote,
[data-theme=dark] .post-tags-share .social-share ul li a,
[data-theme=dark] .comments-form input,
[data-theme=dark] .comments-form textarea,
[data-theme=dark] .shop-sidebar .widget_price_filter #slider-range,
[data-theme=dark] .shop-area .shop-action li a,
[data-theme=dark] .woocommerce-cart .woocommerce table.shop_table .cart_item td a.remove,
[data-theme=dark] .woocommerce-cart .woocommerce table.shop_table td.actions #coupon_code,
[data-theme=dark] .vertical-menu > ul ul,
[data-theme=dark] .slide-bar {
  background: #111111; }

[data-theme=dark] .about-info__box {
  background-color: #060809; }

[data-theme=dark] .hero-post .mCSB_scrollTools,
[data-theme=dark] .hero-post .mCS-dark.mCSB_scrollTools .mCSB_draggerRail {
  background: #383636; }

[data-theme=dark] .header__recent-posts-wrap,
[data-theme=dark] .search-box-outer,
[data-theme=dark] .post-search__input select,
[data-theme=dark] .widget__category li a,
[data-theme=dark] .tx-section-heading.style-2,
[data-theme=dark] .brand__column:not(:last-child),
[data-theme=dark] .trending__post-wrapper {
  border-color: #222121; }

[data-theme=dark] .post-meta--2 span,
[data-theme=dark] .sposnord-meta .sposnord {
  color: #989090; }

[data-theme=dark] .widget,
[data-theme=dark] .header__language .lang_sub_list li:not(:last-child),
[data-theme=dark] .header__language--2,
[data-theme=dark] .header .header__search input,
[data-theme=dark] .read-more__btn a,
[data-theme=dark] .widget__social li .icon,
[data-theme=dark] .widget__social li a,
[data-theme=dark] .header--3 .header__top,
[data-theme=dark] .header-mobile-search input,
[data-theme=dark] .header--4 .header__top {
  border-color: #211F1F; }

[data-theme=dark] .newsletter__form input {
  box-shadow: 0px 10px 15px rgba(18, 17, 17, 0.24); }

[data-theme=dark] .error__text h1 {
  color: rgba(255, 255, 255, 0.46); }

/* breadcrumb css */
.breadcrumb-area {
  padding: 30px 0; position: relative;z-index: 1; }
  .magezix-breadcrumb.breadcrumbs .cep {
    padding: 0 10px;
    font-size: 14px;
}
.magezix-breadcrumb.breadcrumbs .current-item {
  color: var(--color-primary);
}
.magezix-breadcrumb.breadcrumbs .current-item span {
  color: inherit;
}
.magezix-breadcrumb ul {
  margin-bottom: 0px; }
.magezix-breadcrumb li {
  font-size: 16px;
  position: relative; }
  @media (max-width: 767px) {
    .magezix-breadcrumb li {
      font-size: 14px; } }
  .magezix-breadcrumb li{
    margin-right: 15px; margin-left: 15px; }
    .magezix-breadcrumb li:not(:last-child)::after {
      position: absolute;
      left: 0;
      content: "";
      top: 0;
      width: 100%;
      height: 100%;
      content: "\f105";
      width: auto;
      height: auto;
      left: auto;
      font-family: "Font Awesome 5 Pro";
      font-weight: 400;
      right: -17px;
      top: 0;
      color: #706C6C;
      font-size: 13px; }
      .magezix-breadcrumb li a {
        text-decoration: none;
        color: var(--color-default);
    }
    .magezix-breadcrumb li a span {
      color: #706C6C; }
  .magezix-breadcrumb li {
    color: var(--color-primary); }
    .magezix-breadcrumb li:first-child {
      margin-left: 0;
  }

/*----------------------------------------*/
/*  06. about
/*----------------------------------------*/
@media (max-width: 1199px) {
  .about__content.pl-70 {
    padding-left: 40px; } }
@media (max-width: 991px) {
  .about__content.pl-70 {
    padding-left: 0; } }
@media (max-width: 991px) {
  .about__content {
    padding: 0;
    margin-top: 30px; } }
@media (max-width: 1199px) {
  .about__content p br {
    display: none; } }
.about__content h2 {
  font-size: 38px;
  margin-bottom: 20px; }
  @media (max-width: 1199px) {
    .about__content h2 {
      font-size: 30px; } }
  @media (max-width: 767px) {
    .about__content h2 {
      font-size: 25px; }
      .about__content h2 br {
        display: none; } }
.about__content h3 {
  font-size: 30px;
  text-transform: capitalize;
  margin-bottom: 30px; }
  @media (max-width: 767px) {
    .about__content h3 {
      font-size: 25px;
      margin-bottom: 20px; } }
.about__info-box .icon {
  width: 50px;
  position: relative;
  margin-right: 10px;
  z-index: 1; }
  .about__info-box .icon::before {
    position: absolute;
    right: 3px;
    top: 17px;
    width: 30px;
    height: 30px;
    content: "";
    background-color: #F4E2E4;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    z-index: -1;
    -webkit-transform: rotate(-30deg);
    -ms-transform: rotate(-30deg);
    transform: rotate(-30deg); }
.about__info-box .content {
  width: calc(100% - 60px); }
.about__info-box h4 {
  font-size: 18px;
  margin-bottom: 5px; }
.about__info-box p {
  font-size: 14px;
  line-height: 24px; }
.about__list li {
  position: relative;
  padding-left: 26px;
  color: #445658; }
  .about__list li:not(:last-child) {
    margin-bottom: 10px; }
  .about__list li::before {
    position: absolute;
    top: 0;
    left: 0;
    content: "\f00c";
    font-weight: 40;
    font-family: "Font Awesome 5 Pro";
    color: var(--color-primary);
    font-size: 13px; }
.about__video-img {
  width: 258px;
  height: 260px;
  margin-right: 35px; }
  @media (max-width: 1199px) {
    .about__video-img {
      width: 100%;
      margin-right: 0; } }
  .about__video-img img {
    width: 100%;
    height: 100% !important;
    object-fit: cover; }
.about__video-content {
  width: calc(100% - 293px); }
  @media (max-width: 1199px) {
    .about__video-content {
      width: 100%;
      margin-top: 20px; } }
  .about__video-content h4 {
    font-size: 26px;
    margin-bottom: 12px; }

.about-info__wrap {
  padding: 68px;
  padding-bottom: 0;
  background-color: #F6F5F8;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px; }
  @media (max-width: 1199px) {
    .about-info__wrap {
      padding: 50px 30px;
      padding-bottom: 0; } }
  @media (max-width: 767px) {
    .about-info__wrap {
      padding: 40px 15px; } }
.about-info__box {
  background-color: #fff;
  padding: 50px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px; }
  @media (max-width: 991px) {
    .about-info__box {
      padding: 20px 25px; } }
.about-info__item:not(:last-child) {
  padding-bottom: 40px;
  margin-bottom: 35px;
  border-bottom: 2px solid var(--color-border-2); }
.about-info__item:hover .number {
  color: #fff;
  background-color: rgba(var(--color-primary-rgb), 1); }
.about-info__item .number {
  width: 42px;
  height: 42px;
  background-color: rgba(var(--color-primary-rgb), 0.04);
  color: var(--color-primary);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  font-weight: 500;
  margin-right: 23px;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s; }
.about-info__item .content {
  width: calc(100% - 65px); }
.about-info__item h4 {
  font-size: 19px;
  margin-bottom: 7px;
  text-transform: capitalize; }
.about-info__item p {
  font-size: 14px;
  line-height: 26px; }
.about-info__tab-wrap h2 {
  font-size: 38px;
  margin-bottom: 25px; }
  @media (max-width: 1199px) {
    .about-info__tab-wrap h2 {
      font-size: 30px; } }
  @media (max-width: 767px) {
    .about-info__tab-wrap h2 {
      font-size: 25px; } }
@media only screen and (min-width: 1200px) and (max-width: 1500px) {
  .about-info__tab-wrap {
    padding-left: 70px; } }
@media (max-width: 1199px) {
  .about-info__tab-wrap {
    padding-left: 30px; } }
@media (max-width: 991px) {
  .about-info__tab-wrap {
    padding: 0;
    margin-top: 30px; } }
@media (max-width: 1199px) {
  .about-info__tab-wrap p br {
    display: none; } }
.about-info__tab .nav-tabs {
  border: 0;
  margin-bottom: 30px;
  margin-top: -20px; }
.about-info__tab .nav-item {
  margin-top: 20px; }
  .about-info__tab .nav-item:not(:last-child) {
    margin-right: 20px; }
  .about-info__tab .nav-item .nav-link {
    padding: 7px 40px;
    border: 0;
    color: var(--color-black);
    background-color: var(--color-white);
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    position: relative;
    z-index: 1; }
    @media (max-width: 767px) {
      .about-info__tab .nav-item .nav-link {
        padding: 5px 30px; } }
    .about-info__tab .nav-item .nav-link::before {
      position: absolute;
      left: 0;
      right: 0;
      bottom: -6px;
      margin: auto;
      content: "";
      background: #FF1749;
      width: 12px;
      height: 12px;
      opacity: 0;
      -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
      transform: rotate(45deg);
      -webkit-transition: 0.3s;
      -o-transition: 0.3s;
      transition: 0.3s;
      z-index: -1; }
    .about-info__tab .nav-item .nav-link.active {
      color: #fff;
      background-color: var(--color-primary); }
      .about-info__tab .nav-item .nav-link.active::before {
        opacity: 1; }
.about-info__tab-list li {
  position: relative;
  padding-left: 35px; }
  .list-unstyled ul{
    list-style: none;
    padding-left: 0 !important;
  }
  .list-unstyled{
    padding-left: 0 !important;
  }
  ul.post-list.mt-30.list-unstyled {
    margin-top: 30px;
    margin-bottom: 0 !important;
}

ul.post-list__style-2.list-unstyled {
    margin-bottom: 0;
}
  ul.post-list.mt-30.list-unstyled {
    margin-top: 30px;
}
  .about-info__tab-list li::before {
    position: absolute;
    top: 0;
    left: 0;
    content: "\f00c";
    font-weight: 400;
    font-family: "Font Awesome 5 Pro";
    color: var(--color-primary);
    font-size: 13px;
    width: 27px;
    height: 27px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    background-color: var(--color-white);
    box-shadow: 0px 0px 9px rgba(var(--color-black-rgb), 0.06);
    display: flex;
    align-items: center;
    justify-content: center; }
  .about-info__tab-list li:not(:last-child) {
    margin-bottom: 25px; }
.about-info__bottom {
  bottom: -60px;
  position: relative;
  overflow: hidden; }
.about-info__info {
  background: #060809;
  padding: 35px;
  position: relative;
  min-height: 120px;
  display: flex;
  align-items: center; }
  @media (max-width: 991px) {
    .about-info__info {
      min-height: 100px; } }
  .about-info__info h2 {
    font-size: 34px;
    color: #fff; }
    @media (max-width: 1199px) {
      .about-info__info h2 {
        font-size: 25px; } }
  .about-info__info .popup-video {
    left: auto;
    right: 27px; }
    @media (max-width: 767px) {
      .about-info__info .popup-video {
        right: 20px; } }
  .about-info__info.info-left span {
    color: var(--color-primary); }
  .about-info__info.info-right {
    background-color: var(--color-primary); }
    .about-info__info.info-right span {
      color: #000; }
    @media (max-width: 767px) {
      .about-info__info.info-right {
        padding-right: 95px; } }
  .about-info__info .icon {
    position: absolute;
    left: 34px;
    top: -10px;
    animation: spin 8s infinite linear;
    -webkit-animation: spin 8s infinite linear; }
    .about-info__info .icon--2 {
      left: auto;
      right: 38px;
      top: 38px; }

/*----------------------------------------*/
/*  07. contact
/*----------------------------------------*/
.contact-info__item {
  padding: 25px 20px;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  border: 1px solid transparent; }
  .contact-info__item:hover, .contact-info__item.active {
    border-color: var(--color-border); }
  .contact-info__item .icon {
    width: 53px;
    margin-right: 26px; }
  .contact-info__item .content {
    width: calc(100% - 79px); }
  .contact-info__item h3 {
    font-size: 20px;
    margin-bottom: 2px; }
  .contact-info__item a, .contact-info__item p, .contact-info__item span {
    font-size: 15px;
    color: var(--color-default);
    display: block;
    line-height: 26px; }
.contact-info__content h3 {
  font-size: 28px;
  margin-bottom: 24px; }
.contact-info__content p {
  font-size: 18px;
  line-height: 32px; }
  .contact-info__content p:not(:last-child) {
    margin-bottom: 20px; }

.contact-img {
  margin-right: 80px;
  z-index: 1; }
  @media (max-width: 1199px) {
    .contact-img {
      margin-right: 20px; } }
  .contact-img > img {
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px; }
  .contact-img::before {
    position: absolute;
    bottom: 54px;
    right: -5px;
    width: 357px;
    height: 284px;
    background-color: #FDBC14;
    border-radius: 25px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -ms-border-radius: 25px;
    -o-border-radius: 25px;
    content: "";
    -webkit-transform: rotate(-24deg);
    -ms-transform: rotate(-24deg);
    transform: rotate(-24deg);
    z-index: -1; }
    @media (max-width: 1199px) {
      .contact-img::before {
        width: 200px;
        height: 200px; } }
  .contact-img__author {
    position: absolute;
    top: -13px;
    right: 0;
    background-color: #fff;
    padding: 24px 45px;
    border-radius: 12px;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -ms-border-radius: 12px;
    -o-border-radius: 12px;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    min-height: 152px; }
    .contact-img__author::before, .contact-img__author::after {
      position: absolute;
      background: rgba(255, 24, 78, 0.13);
      content: "";
      width: 97px;
      height: 11px;
      border-radius: 6px;
      -webkit-border-radius: 6px;
      -moz-border-radius: 6px;
      -ms-border-radius: 6px;
      -o-border-radius: 6px;
      left: 0;
      right: 0;
      margin: auto;
      bottom: 52px; }
    .contact-img__author::after {
      width: 70px;
      bottom: 29px; }
    .contact-img__author img {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      -webkit-border-radius: 50%;
      -moz-border-radius: 50%;
      -ms-border-radius: 50%;
      -o-border-radius: 50%; }

@media only screen and (min-width: 1200px) and (max-width: 1500px) {
  .contact-from__wrap {
    padding-left: 0; } }
@media (max-width: 1199px) {
  .contact-from__wrap {
    padding-left: 0; } }
@media (max-width: 991px) {
  .contact-from__wrap {
    margin-top: 30px; } }
.contact-from__field input, .contact-from__field textarea {
  width: 100%;
  border: 1px solid var(--color-border);
  margin-bottom: 26px;
  height: 65px;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  color: var(--color-default);
  font-size: 15px;
  padding: 0 20px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  background-color: var(--color-white); }
  .fluentform.fluentform_wrapper_3 form.fluent_form_3 .ff-btn-submit {
    font-weight: 500;
    z-index: 1;
    text-align: center;
    color: #ffff;
    background: var(--color-primary);
    display: inline-block;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    text-transform: capitalize;
    line-height: 1.3;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    border: 0;
    padding: 16px 25px;
    font-size: 18px;
}
.fluentform .ff-el-form-control {
  width: 100%;
  border: 1px solid var(--color-border);
  margin-bottom: 26px;
  height: 65px;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  color: var(--color-default);
  font-size: 15px;
  padding: 0 20px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  background-color: var(--color-white);
}
.ff-el-group.ff-text-left.ff_submit_btn_wrapper.ff_submit_btn_wrapper_custom {
  margin-top: 30px;
}
.fluentform .ff-el-group {
  margin-bottom: 0;
}
body .fluentform .ff-el-form-control:focus {
  background-color: transparent;
  border-color: var(--color-primary);
  color: #495057;
  outline: none;
}
.frm-fluent-form .ff-t-cell {
  padding: 0 12px;
}
.fluentform textarea.ff-el-form-control {
  min-height: 210px;
  padding: 20px;
}
.fluentform .ff_btn_style:focus, .fluentform .ff_btn_style:hover {
  opacity: 1;
  outline: 0;
  text-decoration: none;
}
  .contact-from__field input:focus, .contact-from__field textarea:focus {
    border-color: var(--color-primary); }
.contact-from__field textarea {
  min-height: 210px;
  padding: 20px; }
.contact-from__chekbox input {
  margin-right: 5px; }
.contact-from__chekbox label {
  font-size: 15px;
  color: var(--color-default); }
.contact-from__btn button {
  padding: 16px 25px;
  font-size: 18px; }

/*----------------------------------------*/
/*  08. faq
/*----------------------------------------*/
.accordion_box {
  position: relative; }

.accordion_box .block {
  position: relative;
  background: #F4F6F8;
  overflow: hidden;
  margin-bottom: 16px; }

.accordion_box .block:last-child {
  margin-bottom: 0; }

.accordion_box .block .acc-btn {
  color: var(--color-black);
  font-family: var(--font-title);
  position: relative;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  padding: 20px 30px;
  padding-bottom: 18px; }

.accordion_box .block .content {
  position: relative;
  padding: 0px 30px 20px; }

.accordion_box .block .acc_body {
  position: relative;
  display: none; }

.accordion_box .block .acc_body.current {
  display: block; }

/*----------------------------------------*/
/*  09. news
/*----------------------------------------*/
.news {
  overflow: hidden; }

.news-block {
  padding: 50px;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s; }
  @media only screen and (min-width: 1200px) and (max-width: 1500px) {
    .news-block {
      padding: 30px; } }
  @media (max-width: 991px) {
    .news-block {
      padding: 30px; } }
  @media (max-width: 767px) {
    .news-block {
      padding: 20px; } }
  .news-block:hover, .news-block.active {
    background-color: var(--color-primary);
    border-color: var(--color-primary); }
    .news-block:hover .post-tags li a, .news-block:hover .post-title a, .news-block:hover p, .news-block:hover .post-meta li, .news-block:hover .post-meta span, .news-block.active .post-tags li a, .news-block.active .post-title a, .news-block.active p, .news-block.active .post-meta li, .news-block.active .post-meta span {
      color: #fff; }
    .news-block:hover .post-tags li span, .news-block:hover .post-meta--4 li::before, .news-block.active .post-tags li span, .news-block.active .post-meta--4 li::before {
      background-color: #fff; }
    .news-block:hover .post-tags li span, .news-block.active .post-tags li span {
      color: var(--color-primary); }
  .news-block .post-tags li span {
    background-color: #0DC361;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s; }
  .news-block .post-tags li a {
    color: rgba(var(--color-black-rgb), 0.75); }
  .news-block .post-title {
    font-size: 34px;
    margin-bottom: 25px; }
    @media only screen and (min-width: 1200px) and (max-width: 1500px) {
      .news-block .post-title {
        font-size: 28px; } }
    @media (max-width: 1199px) {
      .news-block .post-title {
        font-size: 26px; } }
  .news-block p {
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s; }
  .news-block .post-meta li, .news-block .post-meta span {
    color: var(--color-default);
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s; }
  .news-block .post-meta .year {
    color: var(--color-primary); }
  .news-block .post-meta .post-meta__author .avatar img {
    background-color: var(--color-primary); }
  .news-block--1 {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0; }
  .news-block--2 {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0; }
  .news-block--3 {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0; }
    .news-block--3 .post-tags li span {
      background-color: #FFA800; }

/*----------------------------------------*/
/*  10. blog
/*----------------------------------------*/
.blog-post-wrap {
  margin-right: 20px; }
  @media only screen and (min-width: 1200px) and (max-width: 1500px) {
    .blog-post-wrap {
      margin-right: 65px; } .no-active-sidebar .blog-post-wrap{margin-right: 0;} }
  @media (max-width: 991px) {
    .blog-post-wrap {
      margin-right: 0; } }

.tx-post-item .post-thumb {
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px; }
.tx-post-item .post-date {
  position: absolute;
  top: 20px;
  left: 20px;
  background-color: var(--color-primary);
  padding: 2px 20px;
  padding-top: 4px;
  color: #fff;
  font-weight: 700;
  font-size: 20px;
  text-align: center;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px; }
  .tx-post-item .post-date span {
    color: #fff;
    margin-top: -10px;
    display: inline-block;
    -webkit-transform: translateY(-4px);
    -ms-transform: translateY(-4px);
    transform: translateY(-4px); }
.tx-post-item .post-title {
  font-size: 34px; }
  @media (max-width: 767px) {
    .tx-post-item .post-title {
      font-size: 22px; } }
.tx-post-item .post-meta {
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--color-border); }
  .tx-post-item .post-meta .year {
    color: var(--color-primary); }
  .tx-post-item .post-meta .post-meta__author .avatar img {
    background-color: var(--color-primary); }
.tx-post-item p {
  font-size: 15px; }
.tx-post-item__layout2 .post-content {
  width: 85%;
  left: 0;
  right: 0;
  margin: auto; }
  @media (max-width: 1199px) {
    .tx-post-item__layout2 .post-content {
      width: 100%; } }
  @media (max-width: 767px) {
    .tx-post-item__layout2 .post-content {
      padding: 15px;
      padding-bottom: 30px; } }
.tx-post-item__layout2 .post-meta {
  margin-bottom: 0;
  padding-bottom: 0;
  border: 0; }
.tx-post-item__layout2.format-video .popup-video {
  left: 30px;
  top: 30px;
  right: auto;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0); }
  @media (max-width: 767px) {
    .tx-post-item__layout2.format-video .popup-video {
      left: 20px;
      top: 20px;
      width: 60px;
      height: 60px; } }
@media (max-width: 767px) {
  .tx-post-item__layout2.tx-post-overly .post-thumb {
    height: 300px; }
    .tx-post-item__layout2.tx-post-overly .post-thumb img {
      height: 100%;
      object-fit: cover; } }
.tx-post-item__layout2.tx-post-overly .post-thumb::before {
  height: calc(100% - 30%); }
@media (max-width: 767px) {
  .tx-post-item__layout2 .post-title {
    font-size: 17px; } }
@media (max-width: 767px) {
  .tx-post-item__layout2 .post-meta {
    margin-top: 10px; } }

.blog-sidebar {
  margin-left: -15px;
  padding: 30px;
  border: 1px solid var(--color-border); }
  @media only screen and (min-width: 1200px) and (max-width: 1500px) {
    .blog-sidebar {
      margin-left: -60px; } }
  @media (max-width: 991px) {
    .blog-sidebar {
      margin-left: 0; } }
  @media (max-width: 767px) {
    .blog-sidebar {
      padding: 20px; } }
  .blog-sidebar .widget {
    padding: 0;
    border: 0; }
    .blog-sidebar .widget:first-child {
      margin-top: 0; }

.widget-post .tx-post:not(:last-child) {
  margin-bottom: 20px; }
.widget-post .post-thumb {
  width: 100px;
  height: 84px;
  margin-right: 15px; }
.widget-post .post-content {
  width: calc(100% - 115px); }
.widget-post .post-title {
  font-size: 16px;
  font-weight: 500; }

.widget .widget__category li a, 
.widget.widget_pages li a,
.widget.widget_archive li a {
  padding: 6px 15px; }
  .widget .widget__category li a:hover, 
  .widget.widget_archive li a:hover,
  .widget.widget_meta li a:hover,
  .widget.widget_pages li a:hover,
  .widget.widget_pages li a:hover,
  .widget.widget_categories li a:hover,
  .widget.widget_nav_menu li a:hover {
    background-color: var(--color-primary);
    border-color: var(--color-primary); }
    .widget .widget__category li a:hover .cat-number, .widget li a:hover .cat-number {
      color: #fff; }
    .widget .widget__category li a:hover .icon {
      color: #fff;
      background-color: rgba(255, 255, 255, 0.16); }
.widget .widget__category li .icon {
  width: 42px;
  height: 42px;
  font-size: 18px;
  line-height: 48px;
  color: var(--color-primary);
  background-color: rgba(var(--color-primary-rgb), 0.06); }
.widget .widget__category li .cat-title, 
.widget.widget_archive li a, 
.widget.widget_categories li a, 
.widget.widget_nav_menu li a, 
.widget.widget_meta li a, 
.widget.widget_pages li a {
  font-size: 15px; }
.widget .widget__category li .cat-number, 
.widget.widget_archive li .cat-number, 
.widget.widget_categories li .cat-number,
.widget.widget_pages li .cat-number {
  color: var(--color-primary); }
.widget .widget__category li .cat-number,
.widget .widget__category li .arrow-icon i,
.widget.widget_archive li .cat-number, 
.widget li .arrow-icon i{
  font-size: 15px; }

.post-share li:not(:first-child) {
  margin-left: 13px; }
.post-share li a {
  font-size: 14px;
  color: rgba(var(--color-black), 0.61);
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%; }

.post-details h2 {
  font-size: 38px;
  margin-bottom: 18px;
  -ms-word-wrap: break-word;
word-wrap: break-word;}
  @media only screen and (min-width: 1200px) and (max-width: 1500px) {
    .post-details h2 {
      font-size: 30px; } }
  @media (max-width: 1199px) {
    .post-details h2 {
      font-size: 26px; } }
  @media (max-width: 767px) {
    .post-details h2 {
      font-size: 20px; } }
.post-details h3 {
  font-size: 30px;
  margin-bottom: 20px; }
  @media only screen and (min-width: 1200px) and (max-width: 1500px) {
    .post-details h3 {
      font-size: 28px; } }
  @media (max-width: 1199px) {
    .post-details h3 {
      font-size: 24px; } }
  @media (max-width: 767px) {
    .post-details h3 {
      font-size: 17px; } }
.post-details h4 {
  font-size: 20px;
  margin-bottom: 15px; }
  @media (max-width: 1199px) {
    .post-details h4 {
      font-size: 18px; } }
  @media (max-width: 767px) {
    .post-details h4 {
      font-size: 17px; } }
.post-details .post-meta__author .year {
  color: var(--color-primary); }
.post-details p {
  font-size: 18px;
  line-height: 32px; }
  .post-details p:not(:last-child) {
    margin-bottom: 20px; }

blockquote {
  background-color: #F4F6F8;
  padding: 40px;
  border-left: 3px solid var(--color-primary);
  padding-right: 150px;  
  margin-bottom: 40px;
  position: relative;
  z-index: 1; margin-top: 35px; }
  .entry-content blockquote p{
    font-size: 24px;
    font-family: var(--font-title);
    font-weight: 500;
    line-height: 43px;
    color: var(--color-black);
    margin-bottom: 10px !important;
  }
  @media (max-width: 1199px) {
    blockquote {
      font-size: 18px;
      line-height: 30px;
      padding-right: 120px; } }
  @media (max-width: 767px) {
    blockquote {
      font-size: 17px;
      padding: 30px; } }
  blockquote .quote {
    position: absolute;
    right: 40px;
    bottom: 34px;
    z-index: -1; }
    @media (max-width: 1199px) {
      blockquote .quote {
        width: 60px; } }
    @media (max-width: 767px) {
      blockquote .quote {
        width: 50px; } }
  blockquote span {
    font-size: 16px;
    color: #332D2D;
    padding-left: 30px;
    position: relative;
    font-family: var(--font-body);
    display: block; }
    @media (max-width: 767px) {
      blockquote span {
        font-size: 15px;
        margin-top: 10px; } }
    blockquote span::before {
      position: absolute;
      top: 50%;
      -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
      transform: translateY(-50%);
      left: 0;
      width: 20px;
      height: 2px;
      background-color: currentColor;
      content: ""; }
      .post-list li {
        font-size: 16px;
        padding-left: 35px;
        position: relative; list-style: none !important; }
        .post-list li:not(:last-child) {
          margin-bottom: 25px !important;}
        .post-list li::before {
          position: absolute;
          top: 0;
          left: 0;
          width: 27px;
          height: 27px;
          font-size: 12px;
          box-shadow: 0px 0px 9px rgba(var(--color-black-rgb), 0.07);
          content: "\f00c";
          font-family: "Font Awesome 5 Pro";
          font-weight: 400;
          color: var(--color-primary);
          display: flex;
          align-items: center;
          justify-content: center;
          border-radius: 50%;
          -webkit-border-radius: 50%;
          -moz-border-radius: 50%;
          -ms-border-radius: 50%;
          -o-border-radius: 50%;
          -webkit-transition: 0.3s;
          -o-transition: 0.3s;
          transition: 0.3s; }
        .post-list li:hover::before {
          color: #fff;
          background-color: var(--color-primary); }
          .post-list__style-2 li {
            padding-left: 30px;
            position: relative; list-style: none !important; }
            .post-list__style-2 li:not(:last-child) {
              margin-bottom: 20px; }
            .post-list__style-2 li::before {
              position: absolute;
              top: 10px;
              left: 0;
              width: 12px;
              height: 12px;
              content: "";
              background-color: var(--color-primary); }

  .wp-block-embed figcaption em {
    text-align: center;
    font-style: italic;
    font-size: 18px;
    color: #807A7A;
    margin-top: 20px;
    display: block;
    font-weight: 500;
}
.post-img .post-cat {
  position: absolute;
  top: 12px;
  left: 14px; }

.post-tags-share {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap; }
  .post-tags-share .title {
    font-size: 25px;
    font-weight: 500;
    margin-right: 20px; }
  .post-tags-share .tags ul {
    margin-top: -10px; }
    .post-tags-share .tags ul li {
      margin-top: 10px; }
      .post-tags-share .tags ul li:not(:last-child) {
        margin-right: 16px; }
      .post-tags-share .tags ul li a {
        border-radius: 3px;
        -webkit-border-radius: 3px;
        -moz-border-radius: 3px;
        -ms-border-radius: 3px;
        -o-border-radius: 3px;
        padding: 2px 25px;
        display: inline-block;
        border: 1px solid var(--color-border);
        color: var(--color-default);
        font-size: 12px;
        text-transform: uppercase;
        font-weight: 600;
        color: #949392; }
        .post-tags-share .tags ul li a:hover {
          color: #fff;
          border-color: var(--color-primary);
          background-color: var(--color-primary); }
  .post-tags-share .social-share ul li:not(:last-child) {
    margin-right: 12px; }
  .post-tags-share .social-share ul li a {
    width: 45px;
    height: 38px;
    background-color: #F2F6F7;
    color: var(--color-black);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px; }
    .post-tags-share .social-share ul li a:hover {
      color: #fff;
      background-color: var(--color-primary); }

      .post-nav {
        padding: 20px 0;
        border-top: 1px solid var(--color-border);
        border-bottom: 1px solid var(--color-border);
        position: relative; margin: 0; margin-right: 20px; }
        .post-nav::before {
          position: absolute;
          top: 50%;
          left: 50%;
          -webkit-transform: translate(-50%, -50%);
          -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
          content: "";
          background-color: var(--color-border);
          width: 1px;
          height: 66px; }
          @media (max-width: 1199px) {
            .post-nav::before {
              display: none; } }
        .post-nav__item {
          padding: 0 100px; }
          @media only screen and (min-width: 1200px) and (max-width: 1500px) {
            .post-nav__item {
              padding: 0 65px; } }
          @media (max-width: 767px) {
            .post-nav__item {
              padding: 0; } }
          .post-nav__item .post-thumb {
            width: 85px;
            height: 85px;
            margin-right: 15px;
            border-radius: 50%;
            -webkit-border-radius: 50%;
            -moz-border-radius: 50%;
            -ms-border-radius: 50%;
            -o-border-radius: 50%; }
          .post-nav__item .post-content {
            width: calc(100% - 100px); }
            @media (max-width: 767px) {
              .post-nav__item .post-content {
                width: 100%;
                margin-top: 15px; } }
          .post-nav__item .post-title {
            font-size: 16px;
            margin-bottom: 10px;
            font-weight: 500;
            word-break: break-word;
           }
        .post-nav__link {
          width: 56px;
          height: 36px;
          display: flex;
          color: var(--color-primary);
          align-items: center;
          justify-content: center;
          border-radius: 18px;
          -webkit-border-radius: 18px;
          -moz-border-radius: 18px;
          -ms-border-radius: 18px;
          -o-border-radius: 18px;
          background: rgba(191, 170, 175, 0.11);
          -webkit-transition: 0.3s;
          -o-transition: 0.3s;
          transition: 0.3s;
          position: absolute;
          top: 50%;
          left: 15px;
          -webkit-transform: translateY(-50%);
          -ms-transform: translateY(-50%);
          transform: translateY(-50%); }
          .post-nav__link:hover {
            color: #fff;
            background-color: var(--color-primary); }
          @media (max-width: 767px) {
            .post-nav__link {
              display: none; } }
        .right-post .post-nav__link {
          left: auto;
          right: 15px; }
        @media (max-width: 1199px) {
          .left-post .post-nav__item {
            padding-right: 0; } }
        @media (max-width: 1199px) {
          .right-post .post-nav__item {
            padding-left: 0; } }
        @media (max-width: 767px) {
          .right-post .post-nav__item {
            margin-top: 30px; } }

/* comment css */
.post-comments {
  padding-bottom: 55px; }
  .comments-area .title {
    font-size: 26px;
    margin-bottom: 25;
    font-weight: 500; }

.latest__comments .comments-box {
  border-top: 1px solid var(--color-border-2);
  padding: 30px 0; }
.latest__comments .comments-text {
  overflow: hidden; }
.latest__comments .comments-avatar {
  border-radius: 50%;
  float: left; }
  @media (max-width: 767px) {
    .latest__comments .comments-avatar {
      float: none;
      margin-bottom: 10px; } }
  @media only screen and (min-width: 576px) and (max-width: 767px) {
    .latest__comments .comments-avatar {
      float: left;
      margin-bottom: 0px; } }
  .latest__comments .comments-avatar img {
    border-radius: 50%;
    width: 100px !important;
    margin-right: 30px; }
.latest__comments li:last-child .comments-box {
  padding-bottom: 0px; }
.latest__comments li:first-child .comments-box {
  border-top: 0;
  padding-top: 0; }
.latest__comments li.children {
  margin-left: 100px; }
  @media (max-width: 767px) {
    .latest__comments li.children {
      margin-left: 0px; } }
  @media only screen and (min-width: 576px) and (max-width: 767px) {
    .latest__comments li.children {
      margin-left: 50px; } }
.latest__comments .avatar-name {
  margin-bottom: 15px;
  overflow: hidden;
  position: relative; }
  .latest__comments .avatar-name h5 {
    font-size: 18px;
    margin-bottom: 0px;
    font-weight: 500;
    font-family: var(--font-title); }
    .latest__comments .avatar-name h5 a{
      color:inherit
    }
    .latest__comments ol li {
      list-style: none;
    }
    .latest__comments {
      padding-bottom: 55px;
    }
    .latest__comments .children .comments-box {
      border-top: 1px solid var(--color-border-2) !important;
      padding: 30px 0 !important;
      margin-left: 100px;
  }
  .latest__comments .avatar-name span {
    font-size: 15px;
    text-transform: uppercase;
    color: var(--color-default); }
.latest__comments .comment-reply-link {
  color: var(--color-black);
  display: inline-block;
  font-size: 14px;
  font-weight: 400;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  line-height: 1;
  position: absolute;
  right: 0;
  margin-top: 0;
  top: 0;
  text-decoration: none; }
  .latest__comments .comment-reply-link i {
    margin-right: 5px; }
  .latest__comments .comment-reply-link:hover {
    color: var(--color-primary); }
.latest__comments--2 p {
  font-size: 14px;
  line-height: 24px;
  color: var(--color-black); }

.comments-form .title {
  font-size: 26px;
  margin-bottom: 30px;
  font-weight: 500; }
.comments-form input, .comments-form textarea {
  height: 60px;
  margin-bottom: 20px;
  padding: 0 30px;
  width: 100%;
  font-size: 15px;
  color: var(--color-black);
  border-radius: 0px;
  border: 1px solid var(--color-border-2);
  background-color: #F8F8FB; }
.comments-form textarea {
  padding: 20px 30px;
  height: 150px; }

.post-slide__active .owl-nav {
  display: flex; }
  .post-slide__active .owl-nav div {
    width: 56px;
    height: 36px;
    display: flex;
    color: var(--color-white);
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    -webkit-border-radius: 18px;
    -moz-border-radius: 18px;
    -ms-border-radius: 18px;
    -o-border-radius: 18px;
    background-color: rgba(255, 255, 255, 0.37);
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    position: absolute;
    left: 24px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%); }
    .post-slide__active .owl-nav div:hover {
      background-color: var(--color-primary); }
    .post-slide__active .owl-nav div.owl-next {
      left: auto;
      right: 24px; }
@media (max-width: 767px) {
  .post-slide__active.style-2 .owl-nav {
    display: none; } }
.post-slide .post-date {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 2; }
  @media (max-width: 767px) {
    .post-slide .post-date {
      top: 5px;
      left: 10px; } }
  .post-slide .post-date .date {
    position: absolute;
    top: 46%;
    left: 47%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    color: #fff;
    font-weight: 700;
    font-size: 28px;
    text-align: center; }
    @media (max-width: 1199px) {
      .post-slide .post-date .date {
        font-size: 20px;
        top: 52%; } }
    @media (max-width: 767px) {
      .post-slide .post-date .date {
        font-size: 15px;
        top: 57%; } }
    .post-slide .post-date .date span {
      color: #fff;
      display: inline-block; }
      @media (max-width: 1199px) {
        .post-slide .post-date .date span {
          transform: translateY(-5px); } }
      @media (max-width: 767px) {
        .post-slide .post-date .date span {
          transform: translateY(-12px); } }
  .post-slide .post-date .post-shape {
    display: inline-block; }
    @media (max-width: 1199px) {
      .post-slide .post-date .post-shape {
        max-width: 110px; } }
    @media (max-width: 767px) {
      .post-slide .post-date .post-shape {
        max-width: 70px; } }
@media (max-width: 1199px) {
  .post-slide__layout3 .post-thumb::before {
    height: calc(100% - 40%); } }
@media (max-width: 991px) {
  .post-slide__layout3 .post-thumb::before {
    height: calc(100% - 30%); } }
@media (max-width: 767px) {
  .post-slide__layout3 .post-thumb::before {
    height: 100%; } }
@media (max-width: 767px) {
  .post-slide__layout3 .post-thumb {
    height: 350px; }
    .post-slide__layout3 .post-thumb img {
      height: 100%;
      object-fit: cover; } }
.post-slide__layout3 .post-content {
  width: 70%;
  left: 0;
  right: 0;
  margin: auto; }
  @media (max-width: 991px) {
    .post-slide__layout3 .post-content {
      width: 85%; } }
  @media (max-width: 767px) {
    .post-slide__layout3 .post-content {
      width: 100%; } }
.post-slide__layout3 .post-title {
  font-size: 38px;
  color: #fff; }
  @media (max-width: 1199px) {
    .post-slide__layout3 .post-title {
      font-size: 26px; } }
  @media (max-width: 767px) {
    .post-slide__layout3 .post-title {
      font-size: 18px; } }
.post-slide__layout3 .post-meta {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0; }
  @media (max-width: 991px) {
    .post-slide__layout3 .post-meta {
      margin-top: 10px; } }

.meta-bottom-border {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--color-border); }

.post-details .post-tags a {
  color: var(--color-default); }
  .post-details .post-tags a:hover {
    color: var(--color-black); }

.has-dropcap p:first-child::first-letter {
  font-size: 47px;
  line-height: 0.8;
  color: var(--color-primary);
  font-weight: 600;
  float: left;
  padding: 5px 10px;
  padding-left: 0;
  vertical-align: top;
  text-transform: uppercase; }

/*----------------------------------------*/
/*  11. shop
/*----------------------------------------*/
.shop-section {
  overflow: hidden; }

.shop-section ul {
  list-style: none; }

.shop-section .woocommerce-toolbar-top {
  text-align: right;
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  border: 1px solid var(--color-border);
  padding: 0 10px; }

@media (max-width: 550px) {
  .shop-section .woocommerce-toolbar-top {
    text-align: center;
    padding: 10px; } }
.shop-section .woocommerce-toolbar-top > p,
.shop-section .woocommerce-toolbar-top > div,
.shop-section .woocommerce-toolbar-top form {
  display: inline-block; }

@media (max-width: 550px) {
  .shop-section .woocommerce-toolbar-top > p,
  .shop-section .woocommerce-toolbar-top > div,
  .shop-section .woocommerce-toolbar-top form,
  .shop-section .woocommerce-toolbar-top form select {
    width: 100%;
    display: block;
    float: none; }

  .shop-section .woocommerce-toolbar-top p {
    margin-bottom: 10px !important; } }
.shop-section .woocommerce-toolbar-top p {
  float: left;
  margin: 0; }

.shop-section .woocommerce-toolbar-top form {
  float: right;
  font-size: 15px;
  font-size: 1rem; }

@media (max-width: 550px) {
  .shop-section .woocommerce-toolbar-top form {
    margin-top: 15px; } }
.shop-section .woocommerce-toolbar-top form select {
  color: #555;
  border: none;
  height: auto;
  box-shadow: none;
  padding-right: 0; }

.shop-section .woocommerce-toolbar-top > div {
  margin: 0 auto; }

.shop-section .woocommerce-toolbar-top > div a {
  width: 23px;
  display: inline-block; }

.shop-section .woocommerce-toolbar-top > div > a + a {
  margin-left: 7px; }

.shop-section .woocommerce-toolbar-top .active {
  border-color: var(--color-black);
  color: #fff; }

.shop-section .woocommerce-toolbar-top select {
  background-position: calc(100% - 15px) 17px;
  padding: 6px 15px; }

@media (max-width: 1500px) {
  .shop-section .woocommerce-toolbar-top .grid-4 {
    display: none; } }
.shop-section .woocommerce-toolbar-top .grid-draw {
  overflow: hidden;
  text-align: center; }

.shop-section .woocommerce-toolbar-top .grid-draw span {
  width: 5px;
  height: 5px;
  background-color: #c3c3c3;
  float: left;
  margin: 0 0 1px 1px; }

.shop-section .woocommerce-toolbar-top .products-sizes {
  padding: 7px 10px 2px 10px;
  margin-right: 15px;
  overflow: hidden; }

@media (max-width: 550px) {
  .shop-section .woocommerce-toolbar-top .products-sizes {
    padding: 15px 0; } }
.shop-section .woocommerce-toolbar-top .products-sizes .grid-draw > span:first-child {
  margin-left: 0; }

.shop-section .woocommerce-toolbar-top .grid-draw-line {
  overflow: hidden; }

.shop-section .woocommerce-toolbar-top .grid-draw-line span {
  width: 5px;
  height: 5px;
  background-color: #c3c3c3;
  float: left;
  margin: 0 0 1px 1px; }

.shop-section .woocommerce-toolbar-top .products-sizes .grid-draw > span:first-child {
  margin-left: 0; }

.shop-section .woocommerce-toolbar-top .grid-draw-line span:last-child {
  width: 16px;
  height: 1px;
  position: relative;
  top: 2px; }

.shop-section .woocommerce-toolbar-top .products-sizes .active span {
  background-color: var(--color-black); }

.shop-section .woocommerce-content-wrap {
  width: calc(100% - 340px);
  padding-right: 30px;
  float: left; }

@media (max-width: 991px) {
  .shop-section .woocommerce-content-wrap {
    width: 100%;
    float: none;
    padding-right: 0;
    margin-bottom: 60px; } }
.shop-section .shop-sidebar {
  width: 340px;
  float: left;
  padding: 30px;
  border: 1px solid var(--color-border); }
  @media (max-width: 767px) {
    .shop-section .shop-sidebar {
      width: 100%; } }

.shop-section .shop-sidebar .widget {
  padding: 0;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border: 0; }

.shop-section .shop-sidebar .widget:not(:last-child) {
  margin-bottom: 40px; }

@media (max-width: 991px) {
  .shop-section .shop-sidebar {
    float: none; }

  .shop-section .woocommerce-toolbar-top p {
    font-size: 14px; }

  .shop-section .products.list-view .product-info {
    padding-left: 30px !important;
    padding-right: 0 !important; } }
.shop-section .product-description {
  display: none; }

.shop-section .products {
  overflow: hidden;
  margin: 0 -15px; }

.shop-section .products > li {
  width: calc(25% - 30px);
  float: left;
  margin: 0 15px 30px;
  padding: 20px;
  border: 1px solid var(--color-border); }

@media (max-width: 1500px) {
  .shop-section .products > li {
    width: calc(33.33% - 50px); } }
@media (max-width: 1300px) {
  .shop-section .products > li {
    width: calc(50% - 30px); } }
@media (max-width: 500px) {
  .shop-section .products > li {
    width: calc(100% - 30px);
    float: none; } }
.shop-section .products.three-column > li {
  width: calc(33.33% - 30px); }

.shop-section .products.three-column .product {
  border: 1px solid var(--color-border);
  padding: 30px; }

@media (max-width: 1300px) {
  .shop-section .products.three-column > li {
    width: calc(50% - 30px); } }
@media (max-width: 500px) {
  .shop-section .products.three-column > li {
    width: calc(100% - 30px);
    float: none; } }
.shop-section .products.list-view {
  overflow: hidden;
  margin-top: -30px; }

.shop-section .products.list-view > li {
  width: calc(100% - 30px);
  float: none;
  overflow: hidden;
  margin-top: 30px; }

@media screen and (min-width: 600px) {
  .shop-section .products.list-view > li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center; } }
.shop-section .products.list-view .product-holder {
  max-width: 300px;
  float: left; }

@media (max-width: 600px) {
  .shop-section .products.list-view .product-holder {
    max-width: auto;
    width: 100%;
    float: none; } }
.shop-section .products.list-view .product-info {
  width: calc(100% - 300px);
  float: right;
  padding-left: 40px;
  padding-right: 40px;
  text-align: left; }

@media (max-width: 600px) {
  .shop-section .products.list-view .product-info {
    width: 100%;
    float: none;
    padding-left: 0 !important; } }
.shop-section .products.list-view .product-info h4 {
  font-size: 20px;
  margin-bottom: 0.7em; }

.shop-section .products.list-view .product-description {
  margin: 1em 0;
  display: block; }

.shop-section .products.list-view .product-description:last-child {
  margin-bottom: 0; }

.shop-fullwidth .woocommerce-content-wrap {
  width: 100%;
  padding-left: 0; }

@media screen and (min-width: 1200px) {
  .shop-right-sidebar .woocommerce-content-wrap {
    float: left;
    padding-left: 0;
    padding-right: 90px; } }
.shop-area .product-holder {
  position: relative;
  padding-top: 30px;
  text-align: center; }

.shop-area .default-column .product-holder {
  height: 150px;
  padding-top: 0; }

.shop-area .product-holder > a {
  width: 100%;
  height: 100%;
  display: block;
  position: relative; }

.shop-area .product-holder > a > div:last-child {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s; }

.shop-area .product-holder > a:hover > div:last-child {
  opacity: 1;
  visibility: visible; }

.shop-area .product:hover .shop-action-wrap {
  opacity: 1;
  visibility: visible;
  bottom: 35px; }

.shop-area .shop-action-wrap {
  position: absolute;
  text-align: right;
  right: 0;
  bottom: 15px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s; }

.shop-area .shop-action {
  display: inline-block; }

.shop-area .shop-action > li {
  text-align: center; }

.shop-area .shop-action > li + li {
  margin-top: 5px; }

.shop-area .shop-action li a {
  background-color: #F1F2F4;
  width: 40px;
  height: 40px;
  line-height: 40px;
  color: var(--color-default);
  display: inline-block;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  position: relative;
  z-index: 1;
  font-size: 14px;
  border: 1px solid var(--color-border); }

.shop-area .shop-action li a:hover {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff; }

.shop-area .product-info {
  padding-top: 25px; }

.shop-area .product-info h4 {
  font-size: 17px;
  font-weight: 500;
  margin: 0 0 0.3em;
  text-transform: capitalize; }

.shop-area .product-info h4 a {
  color: var(--color-black); }

.shop-area .product-info h4 a:hover {
  color: var(--color-black); }

.shop-area .product-info .woocommerce-Price-amount {
  font-size: 16px;
  font-size: 1.0666666667rem;
  margin-bottom: 5px;
  color: currentColor; }

.shop-area .product-info .woocommerce-Price-amount span {
  color: inherit; }

.shop-area .product-info ins {
  font-weight: 500;
  color: var(--color-primary);
  text-decoration: none; }

.shop-area .product-info del {
  display: inline-block;
  padding-left: 8px;
  color: #a9a9a9; }

.shop-area .product-info .rating i:before {
  font-size: 12px;
  color: #ffab50; }

.shop-area .product-info .rating > span {
  display: inline-block;
  padding-left: 5px;
  font-size: 13px;
  font-size: 0.8666666667rem;
  font-weight: 500; }

.shop-area-style2 .shop-action-wrap, .shop-area-style3 .shop-action-wrap {
  width: 45px;
  left: 25px; }

.shop-area-style2 .shop-action > li, .shop-area-style3 .shop-action > li {
  float: none; }

.shop-area-style2 .shop-action > li + li, .shop-area-style3 .shop-action > li + li {
  margin-left: 0;
  margin-top: 5px; }

.shop-area-style3 .shop-action-wrap {
  left: auto;
  right: 25px; }

.shop-section .pagination {
  justify-content: center; }

/* shop sidebar */
.shop-sidebar .widget_price_filter .filter-price {
  position: relative;
  font-size: 15px;
  font-size: 1rem; }

.shop-sidebar .widget_price_filter .filter-price input {
  border: 0;
  padding: 0;
  display: inline-block;
  width: auto;
  position: absolute; }

.shop-sidebar .widget_price_filter .filter-price input:focus {
  border: 0;
  outline: none; }

.shop-sidebar .widget_price_filter .filter-price button {
  font-family: 'Roboto', sans-serif;
  background-color: transparent;
  color: var(--color-default);
  font-size: 15px;
  font-size: 12px;
  font-weight: 600;
  padding: 0px 22px;
  text-transform: capitalize;
  letter-spacing: 0;
  display: inline-block;
  border: 0;
  outline: none;
  position: absolute;
  right: 0;
  bottom: 0;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
  border-radius: 2px;
  border: 1px solid #ddd; }

.shop-sidebar .widget_price_filter .filter-price #amount {
  color: var(--color-default);
  font-weight: 500;
  height: auto;
  box-shadow: none;
  background: transparent; }

.shop-sidebar .widget_price_filter #slider-range {
  height: 6px;
  background: #EEEEED;
  border: 0;
  border-radius: 50px;
  margin-bottom: 25px; }

.shop-sidebar .widget_price_filter #slider-range .ui-slider-range {
  background: var(--color-primary); }

.shop-sidebar .widget_price_filter .ui-state-default,
.shop-sidebar .widget_price_filter .ui-widget-content .ui-state-default,
.shop-sidebar .widget_price_filter .ui-widget-header .ui-state-default {
  width: 5px;
  height: 14px;
  margin: 0;
  border: none;
  background: var(--color-primary);
  border-radius: 0;
  top: -4px; }

.shop-sidebar .widget_price_filter .ui-state-default:focus,
.shop-sidebar .widget_price_filter .ui-widget-content .ui-state-default:focus,
.shop-sidebar .widget_price_filter .ui-widget-header .ui-state-default:focus {
  outline: none; }

.product-single-wrap {
  display: flex;
  flex-wrap: wrap; }

.product_details_img {
  width: 75%;
  border: 1px solid var(--color-border);
  padding: 70px;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px; }
  @media (max-width: 991px) {
    .product_details_img {
      min-height: 300px;
      padding: 30px; } }

.shop_thumb_tab {
  width: 25%;
  padding-left: 20px; }

.shop_thumb_tab ul li {
  margin-bottom: 20px; }

.shop_thumb_tab ul li .nav-link {
  padding: 10px;
  border: 1px solid var(--color-border);
  height: 110px;
  padding: 10px;
  width: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  box-shadow: 0px 10px 15px rgba(221, 221, 221, 0.15); }
  @media (max-width: 991px) {
    .shop_thumb_tab ul li .nav-link {
      width: 60px;
      height: 60px; } }

.shop_thumb_tab ul li:last-child {
  margin-bottom: 0; }

.shop_thumb_tab ul li button {
  padding: 0;
  border: transparent;
  overflow: hidden; }

.shop_thumb_tab ul li button {
  max-width: 104px;
  height: auto;
  background: transparent; }

.shop_thumb_tab ul li button.active {
  border-color: var(--color-primary); }

.product_details_img .pl_thumb img {
  width: 100%; }

.shop_details .details_content {
  padding-left: 40px; }

.details_content .title {
  font-size: 45px;
  margin-bottom: 20px;
  text-transform: uppercase; }

.details_content .pl_list {
  margin-top: 25px;
  margin-bottom: 30px; }

.details_content .price {
  font-size: 25px;
  margin-bottom: 6px;
  font-weight: 700;
  font-family: 'Roboto', sans-serif; }

.details_content .review_wrap {
  margin-bottom: 22px; }

.details_content .review_wrap .review {
  margin-right: 15px; }

.details_content .review_wrap .review li {
  color: #ffab50;
  font-size: 13px;
  margin-right: 6px; }

.product-details h2 {
  font-size: 30px;
  margin-bottom: 20px; }
  @media (max-width: 767px) {
    .product-details h2 {
      font-size: 24px; } }

.shop-single-section .product-details .price {
  font-family: 'Roboto', sans-serif;
  font-size: 20px;
  font-size: 1.3333333333rem;
  margin: 0.4em 0 0.5em;
  font-weight: bold;
  color: var(--color-black); }
  .shop-single-section .product-details .price span {
    color: currentColor; }

.shop-single-section .product-details .price .old {
  font-size: 20px;
  font-size: 1.3333333333rem;
  font-weight: normal;
  color: var(--color-default);
  text-decoration: line-through;
  display: inline-block;
  margin-left: 5px; }

.shop-single-section .product-details .rating {
  margin-bottom: 25px; }

.product-details .rating i::before {
  font-size: 12px;
  color: #ffab50; }

.shop-single-section .product-details .color-size span {
  font-size: 14px;
  font-size: 0.9333333333rem;
  font-weight: bold;
  color: var(--color-default);
  text-transform: uppercase;
  display: inline-block;
  padding-right: 15px;
  display: block;
  margin-bottom: 5px; }

.shop-single-section .product-details .color-size select {
  min-width: 80px;
  height: 40px;
  border: 1px solid var(--color-border);
  color: var(--color-black);
  outline: 0;
  padding: 6px 15px;
  background-position: calc(100% - 15px) 17px; }

.shop-single-section .product-details .color-size > div + div {
  margin-top: 15px; }

.product-details .product-option .product-row {
  display: flex;
  align-items: center; }

.product-details .product-option .product-row .thm-btn {
  margin-left: 20px; }

.shop-single-section .product-details .product-option .product-row > div:first-child {
  width: 100px;
  height: 50px; }

.shop-single-section .product-details .color-size {
  margin-bottom: 30px; }

.shop-single-section .product-details .product-option .bootstrap-touchspin {
  width: 100px;
  border: 1px solid var(--color-border); }

.shop-single-section .product-details .product-option .bootstrap-touchspin button {
  text-decoration: none;
  border: 0;
  height: 50px;
  line-height: 50px;
  padding: 0 10px;
  font-size: 16px;
  font-size: 1.0666666667rem;
  font-weight: 500;
  color: var(--color-default); }

.shop-single-section .product-details .product-option .bootstrap-touchspin-down {
  left: 10px; }

.shop-single-section .product-details .product-option .bootstrap-touchspin-up {
  right: 10px; }

.shop-single-section .product-details .product-option .bootstrap-touchspin input {
  border: 0;
  height: 50px;
  line-height: 50px;
  text-align: center;
  font-size: 16px;
  font-size: 1.0666666667rem;
  font-weight: 500;
  color: var(--color-default); }

.shop-single-section .product-details .product-count:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: none; }

.shop-single-section .thb-product-meta-before .product_meta > span {
  display: block;
  font-size: 14px;
  font-size: 0.9333333333rem;
  font-weight: 500;
  margin-bottom: 5px;
  color: var(--color-default); }

.shop-single-section .thb-product-meta-before .product_meta > span {
  font-size: 14px;
  font-size: 0.9333333333rem;
  font-weight: 500;
  color: var(--color-default); }

.shop-single-section .thb-product-meta-before .product_meta > span a {
  font-weight: 400;
  color: var(--color-default); }

.shop-single-section .product-details .product-option {
  margin: 20px 0; }

.shop-single-section .single-product-info {
  margin-top: 60px;
  text-align: center; }

.shop-single-section .single-product-info .tablist {
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border); }

@media (max-width: 767px) {
  .shop-single-section .single-product-info .tablist {
    margin-bottom: 25px; } }
.shop-single-section .single-product-info h4 {
  font-size: 18px;
  font-size: 1.2rem;
  font-weight: 400;
  margin: 0;
  line-height: 1.7em;
  font-family: 'Roboto', sans-serif;
  font-weight: 500; }

.shop-single-section .single-product-info p {
  margin-bottom: 1.3em; }

.shop-single-section .single-product-info .tab-pane p:last-child {
  margin-bottom: 0; }

.shop-single-section .single-product-info .nav-tabs {
  border: 0;
  display: inline-block;
  margin-top: 5px; }

.shop-single-section .single-product-info .nav-tabs li {
  float: left; }

.shop-single-section .single-product-info .nav-tabs > li + li {
  margin-left: 25px; }

.shop-single-section .single-product-info .nav-tabs button.active {
  border: 0;
  outline: 0;
  color: var(--color-black); }

.shop-single-section .single-product-info .nav-tabs button {
  font-family: 'Roboto', sans-serif;
  background: transparent;
  font-weight: 500;
  font-size: 16px;
  font-size: 1.0666666667rem;
  padding: 0;
  color: var(--color-default);
  border: 0;
  border-radius: 0;
  margin: 0;
  display: block; }

@media (max-width: 767px) {
  .shop-single-section .single-product-info .nav-tabs button {
    font-size: 14px;
    font-size: 0.9333333333rem; } }
.shop-single-section .single-product-info .nav-tabs button:hover, .shop-single-section .single-product-info .nav-tabs button:focus {
  border: 0;
  outline: 0; }

.shop-single-section .single-product-info .nav-tabs a:hover,
.shop-single-section .single-product-info .nav-tabs .active a {
  background-color: transparent;
  color: #00394f; }

.shop-single-section .single-product-info .tab-content {
  padding: 35px 0;
  margin-top: -1px;
  text-align: left; }

@media (max-width: 767px) {
  .shop-single-section .single-product-info .tab-content {
    border: 0;
    padding: 0;
    margin: 0; } }
.shop-single-section .single-product-info .client-rv {
  overflow: hidden;
  margin-bottom: 30px; }

.shop-single-section .single-product-info .client-rv:last-child {
  margin-bottom: 0; }

.shop-single-section .single-product-info .client-rv .client-pic {
  width: 60px;
  float: left; }

@media (max-width: 767px) {
  .shop-single-section .single-product-info .client-rv .client-pic {
    width: 100%;
    float: none;
    margin-bottom: 10px; } }
.shop-single-section .single-product-info .client-rv .details {
  width: calc(100% - 80px);
  float: right; }

@media (max-width: 767px) {
  .shop-single-section .single-product-info .client-rv .details {
    width: 100%;
    float: none; } }
@media (max-width: 767px) {
  .shop-single-section .single-product-info .client-rv .name-rating-time {
    padding-bottom: 3px; } }
.shop-single-section .single-product-info .client-rv .name-rating-time > div,
.shop-single-section .single-product-info .client-rv .name-rating > div {
  display: inline-block;
  font-size: 14px;
  font-size: 0.9333333333rem; }

@media (max-width: 767px) {
  .shop-single-section .single-product-info .client-rv .name-rating-time > div,
  .shop-single-section .single-product-info .client-rv .name-rating > div {
    font-size: 12px;
    font-size: 0.8rem;
    display: block; } }
.shop-single-section .single-product-info .client-rv .rating .fi:before {
  font-size: 12px; }

.shop-single-section .single-product-info .client-rv .rating {
  font-size: 12px;
  color: #E0A500;
  padding-left: 12px; }

@media (max-width: 767px) {
  .shop-single-section .single-product-info .client-rv .rating {
    padding-left: 0;
    margin: 4px 0 7px; } }
.shop-single-section .single-product-info .client-rv .name-rating-time .time {
  font-size: 14px;
  font-size: 0.9333333333rem;
  font-weight: 500;
  margin-top: 3px;
  display: block;
  color: #b3b3b3;
  text-transform: uppercase; }

@media (max-width: 767px) {
  .shop-single-section .single-product-info .client-rv .name-rating-time .time {
    float: none; } }
.shop-single-section .single-product-info .client-rv .review-body {
  padding-top: 12px; }

.shop-single-section .single-product-info .review-form-wrapper {
  margin-top: 50px; }

@media screen and (min-width: 1200px) {
  .shop-single-section .single-product-info .review-form-wrapper {
    padding-left: 15px; } }
@media (max-width: 991px) {
  .shop-single-section .single-product-info .review-form {
    margin-top: 45px; } }
.shop-single-section .single-product-info .review-form h4 {
  margin-bottom: 1.73em;
  font-weight: 500; }

.shop-single-section .single-product-info .review-form form input,
.shop-single-section .single-product-info .review-form form textarea {
  width: 100%;
  height: auto;
  border: 1px solid #ddd;
  border-radius: 0;
  padding: 12px 15px;
  -webkit-box-shadow: none;
  box-shadow: none; }

@media (max-width: 991px) {
  .shop-single-section .single-product-info .review-form form input,
  .shop-single-section .single-product-info .review-form form textarea {
    padding: 10px 15px; } }
.shop-single-section .single-product-info .review-form form input:focus,
.shop-single-section .single-product-info .review-form form textarea:focus {
  border: 1px solid #000;
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none; }

.shop-single-section .single-product-info .review-form form textarea {
  height: 130px; }

.shop-single-section .single-product-info .review-form form > div {
  margin-bottom: 27px; }

.shop-single-section .single-product-info .review-form form > div:last-child {
  margin-bottom: 0; }

.shop-single-section .single-product-info .review-form form .rating-wrapper > div {
  display: inline-block; }

@media (max-width: 767px) {
  .shop-single-section .single-product-info .review-form form .rating-wrapper > div {
    display: block;
    float: none !important; } }
.shop-single-section .single-product-info .review-form form .rating-wrapper > div:last-child {
  float: right; }

@media (max-width: 767px) {
  .shop-single-section .single-product-info .review-form form .rating-wrapper > div:last-child {
    margin-top: 20px; } }
.shop-single-section .single-product-info .review-form form .rating a {
  font-size: 14px;
  color: #cccccc;
  display: inline-block;
  margin-right: 5px; }

@media (max-width: 767px) {
  .shop-single-section .single-product-info .review-form form .rating a {
    font-size: 12px; } }
.shop-single-section .single-product-info .review-form form .rating a:last-child {
  margin: 0; }

.shop-single-section .single-product-info .review-form form .rating a:hover {
  color: #E0A500; }

.shop-single-section .single-product-info .review-form .submit button {
  border: 0;
  outline: none;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s; }

.shop-single-section .realted-porduct {
  margin-top: 55px; }

.shop-area ul {
  list-style: none; }

.shop-single-section .realted-porduct h3 {
  font-size: 40px;
  line-height: 0.95em;
  margin: 0 0 0.7em;
  position: relative;
  font-weight: 500;
  text-transform: capitalize;
  text-align: center; }

@media (max-width: 991px) {
  .shop-single-section .realted-porduct h3 {
    font-size: 40px;
    font-size: 2.6666666667rem; } }
@media (max-width: 767px) {
  .shop-single-section .realted-porduct h3 {
    font-size: 33px;
    font-size: 2.2rem; } }
@media (max-width: 330px) {
  .shop-single-section .realted-porduct h3 {
    font-size: 30px; } }
.shop-single-section .products {
  overflow: hidden;
  margin: 0 -15px; }

.shop-single-section .products > li {
  width: calc(25% - 30px);
  float: left;
  margin: 0 15px 30px;
  margin: 0 15px 30px;
  padding: 30px;
  border: 1px solid var(--color-border); }

@media (max-width: 1500px) {
  .shop-single-section .products > li {
    width: calc(33.33% - 30px); } }
@media (max-width: 1300px) {
  .shop-single-section .products > li {
    width: calc(50% - 30px); } }
@media (max-width: 500px) {
  .shop-single-section .products > li {
    width: calc(100% - 30px);
    float: none; } }
.shop-single-section .product-info {
  text-align: center;
  padding-top: 25px;
  padding-bottom: 0; }

.woocommerce-cart .grop-page-content_warp .woocommerce {
  margin-top: 20px;
  margin-bottom: 41px; }

.woocommerce .quantity {
  width: 76px; }

.woocommerce-cart .woocommerce table.shop_table th {
  padding: 15px 19px 13px;
  text-transform: uppercase;
  color: var(--color-default);
  font-weight: 500; }

.woocommerce table.shop_table {
  border: 0;
  border-radius: 0; }

.shop_table tfoot tr th {
  font-weight: normal; }

.woocommerce table.shop_table tbody th,
.woocommerce table.shop_table tfoot td,
.woocommerce table.shop_table tfoot th {
  font-weight: 500; }

.shop_table {
  table-layout: auto;
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
  text-align: left; }

.shop_table thead tr th:first-child {
  text-align: left; }

.shop_table.woocommerce-checkout-review-order-table th,
.shop_table.woocommerce-checkout-review-order-table td {
  padding-top: 15px;
  padding-bottom: 15px; }

.shop_table th, .shop_table td {
  padding: 25px 0; }

.shop_table.woocommerce-checkout-review-order-table th,
.shop_table.woocommerce-checkout-review-order-table td {
  padding-top: 15px;
  padding-bottom: 15px; }

.shop_table tbody tr td {
  padding-right: 25px; }

.shop_table th,
.shop_table td {
  padding: 25px 0; }

.add_payment_method #payment,
.woocommerce-cart #payment,
.woocommerce-checkout #payment {
  background: #f5f5f5;
  border-radius: 0;
  padding: 25px; }

#add_payment_method #payment ul.payment_methods,
.woocommerce-cart #payment ul.payment_methods,
.woocommerce-checkout #payment ul.payment_methods {
  padding: 0;
  list-style: none; }

#add_payment_method #payment div.payment_box,
.woocommerce-cart #payment div.payment_box,
.woocommerce-checkout #payment div.payment_box {
  background-color: #e6e6e6; }

#add_payment_method #payment div.payment_box:before,
.woocommerce-cart #payment div.payment_box:before,
.woocommerce-checkout #payment div.payment_box:before {
  border: 1em solid var(--color-border);
  border-right-color: transparent;
  border-left-color: transparent;
  border-top-color: transparent; }

#add_payment_method #payment div.form-row,
.woocommerce-cart #payment div.form-row,
.woocommerce-checkout #payment div.form-row {
  padding-left: 0; }

.woocommerce table.shop_table td {
  border-top: 1px solid var(--color-border); }

.woocommerce-cart .woocommerce table.shop_table td.actions {
  padding-top: 19px;
  padding-bottom: 19px;
  text-align: right; }

.woocommerce table.shop_table th, .woocommerce table.shop_table td {
  font-size: 15px;
  font-size: 1rem;
  padding: 17px 19px 15px; }

.woocommerce-cart .woocommerce table.shop_table .cart_item td.product-name, .woocommerce-cart .woocommerce table.shop_table .cart_item td.product-name a {
  color: var(--color-default); }

.woocommerce #content table.cart td.actions .coupon,
.woocommerce table.cart td.actions .coupon,
.woocommerce-page #content table.cart td.actions .coupon,
.woocommerce-page table.cart td.actions .coupon {
  float: left; }

.widget_products .product-list-widget > li {
  display: flex;
  align-items: center;
  margin-bottom: 25px; }

.widget_products .product-list-widget > li:last-child {
  margin-bottom: 0; }

.widget_products .product-thumb {
  width: 80px;
  margin-right: 15px; }

.rating_star li {
  font-size: 12px;
  color: #ffab50;
  margin-right: 2px; }

.widget_products .rating_star {
  margin-bottom: 6px; }

.widget_products .procuct-title {
  font-size: 16px;
  font-family: 'Roboto', sans-serif;
  margin-bottom: 7px; }

.widget_products .woocommerce-Price-amount.amount {
  font-size: 14px; }

.widget_products .prodcut-content del {
  font-size: 15px;
  padding-left: 5px;
  color: var(--color-default); }

.widget_products .prodcut-content ins {
  text-decoration: none;
  color: var(--color-black); }

.product-single-wrap {
  display: flex;
  flex-wrap: wrap; }

.product_details_img {
  width: 75%; }

.shop_thumb_tab {
  width: 25%; }

.shop_thumb_tab ul li {
  margin-bottom: 20px;
  padding-left: 20px; }

.shop_thumb_tab ul li:last-child {
  margin-bottom: 0; }

.shop_thumb_tab ul li button {
  padding: 0;
  border: transparent;
  overflow: hidden; }

.shop_thumb_tab ul li button {
  max-width: 104px;
  height: auto; }

.shop_thumb_tab ul li button.active {
  border-color: #ff8e28; }

.product_details_img .pl_thumb img {
  width: 100%; }

.shop_details .details_content {
  padding-left: 40px; }

.details_content .title {
  font-size: 45px;
  margin-bottom: 20px;
  text-transform: uppercase; }

.details_content .pl_list {
  margin-top: 25px;
  margin-bottom: 30px; }

.details_content .price {
  font-size: 25px;
  margin-bottom: 6px;
  font-weight: 700;
  font-family: 'Roboto', sans-serif; }

.details_content .review_wrap {
  margin-bottom: 22px; }

.details_content .review_wrap .review {
  margin-right: 15px; }

.details_content .review_wrap .review li {
  color: #ffab50;
  font-size: 13px;
  margin-right: 6px; }

.product-details h2 {
  font-size: 30px;
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  margin-bottom: 20px; }

.shop-single-section .product-details .price {
  font-family: 'Roboto', sans-serif;
  font-size: 20px;
  font-size: 1.3333333333rem;
  margin: 0.4em 0 0.5em;
  font-weight: bold;
  color: var(--color-black); }

.shop-single-section .product-details .price .old {
  font-size: 20px;
  font-size: 1.3333333333rem;
  font-weight: normal;
  color: var(--color-default);
  text-decoration: line-through;
  display: inline-block;
  margin-left: 5px; }

.shop-single-section .product-details .rating {
  margin-bottom: 25px; }

.product-details .rating i::before {
  font-size: 12px;
  color: #ffab50; }

.shop-single-section .product-details .color-size span {
  font-size: 14px;
  font-size: 0.9333333333rem;
  font-weight: bold;
  color: var(--color-black);
  text-transform: uppercase;
  display: inline-block;
  padding-right: 15px;
  display: block;
  margin-bottom: 5px; }

.shop-single-section .product-details .color-size select {
  min-width: 80px;
  height: 40px;
  border: 1px solid var(--color-border);
  outline: 0;
  padding: 6px 15px;
  background-position: calc(100% - 15px) 17px; }

.shop-single-section .product-details .color-size > div + div {
  margin-top: 15px; }

.product-details .product-option .product-row {
  display: flex; }

.product-details .product-option .product-row .thm-btn {
  margin-left: 20px; }

.woocommerce-cart .actions .thm-btn {
  padding: 16px 33px;
  border: 0; }

.woocommerce-cart .woocommerce table.shop_table td.actions .coupon label:first-child {
  display: none; }

.woocommerce-cart .woocommerce table.shop_table td.actions #coupon_code {
  font-size: 14px;
  height: 52px;
  margin-right: 20px;
  padding-left: 18px;
  width: 227px;
  box-shadow: none;
  border: 1px solid var(--color-border);
  color: var(--color-black); }

.woocommerce-cart .woocommerce table.shop_table tr.cart-subtotal td[data-title*=Subtotal],
.woocommerce-cart .woocommerce table.shop_table tr.shipping td[data-title*=Subtotal],
.woocommerce-cart .woocommerce table.shop_table tr.order-total td[data-title*=Subtotal] {
  color: var(--color-black); }

.woocommerce-cart .woocommerce table.shop_table tr.cart-subtotal td[data-title*=Subtotal]::-webkit-input-placeholder,
.woocommerce-cart .woocommerce table.shop_table tr.shipping td[data-title*=Subtotal]::-webkit-input-placeholder,
.woocommerce-cart .woocommerce table.shop_table tr.order-total td[data-title*=Subtotal]::-webkit-input-placeholder {
  opacity: 1;
  filter: alpha(opacity=100);
  -ms-filter: "alpha(opacity=100)";
  color: var(--color-default); }

.woocommerce-cart .woocommerce table.shop_table tr.cart-subtotal td[data-title*=Subtotal]::-moz-placeholder,
.woocommerce-cart .woocommerce table.shop_table tr.shipping td[data-title*=Subtotal]::-moz-placeholder,
.woocommerce-cart .woocommerce table.shop_table tr.order-total td[data-title*=Subtotal]::-moz-placeholder {
  /* Firefox 19+ */
  opacity: 1;
  filter: alpha(opacity=100);
  -ms-filter: "alpha(opacity=100)";
  color: var(--color-default); }

.woocommerce-cart .woocommerce table.shop_table tr.cart-subtotal td[data-title*=Subtotal]:-ms-input-placeholder,
.woocommerce-cart .woocommerce table.shop_table tr.shipping td[data-title*=Subtotal]:-ms-input-placeholder,
.woocommerce-cart .woocommerce table.shop_table tr.order-total td[data-title*=Subtotal]:-ms-input-placeholder {
  /* IE 10+ */
  opacity: 1;
  filter: alpha(opacity=100);
  -ms-filter: "alpha(opacity=100)";
  color: var(--color-default); }

.woocommerce-cart .woocommerce table.shop_table tr.cart-subtotal td[data-title*=Subtotal]:-moz-placeholder,
.woocommerce-cart .woocommerce table.shop_table tr.shipping td[data-title*=Subtotal]:-moz-placeholder,
.woocommerce-cart .woocommerce table.shop_table tr.order-total td[data-title*=Subtotal]:-moz-placeholder {
  /* Firefox 18- */
  opacity: 1;
  filter: alpha(opacity=100);
  -ms-filter: "alpha(opacity=100)";
  color: var(--color-default); }

.woocommerce-cart .woocommerce table.shop_table tr.cart-subtotal th,
.woocommerce-cart .woocommerce table.shop_table tr.cart-subtotal td,
.woocommerce-cart .woocommerce table.shop_table tr.shipping th,
.woocommerce-cart .woocommerce table.shop_table tr.shipping td,
.woocommerce-cart .woocommerce table.shop_table tr.order-total th,
.woocommerce-cart .woocommerce table.shop_table tr.order-total td {
  padding: 16px 15px 14px; }

.woocommerce-cart .woocommerce-shipping-calculator .shipping-calculator-button {
  color: var(--color-black);
  margin-top: 6px;
  display: block;
  margin-bottom: 12px; }

.woocommerce-cart .shipping-calculator-form .form-row {
  margin: 0 0 13px; }

.woocommerce-cart .shipping-calculator-form button.button {
  background-color: #000 !important;
  color: #ffffff !important;
  height: 45px;
  line-height: 45px;
  padding: 1px 27px 0;
  margin-top: 4px; }

#add_payment_method table.cart img, .woocommerce-cart table.cart img, .woocommerce-checkout table.cart img {
  width: 70px;
  object-fit: cover; }

.woocommerce-cart .woocommerce table.shop_table .cart_item td a.remove {
  width: 18px;
  height: 18px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  line-height: 17px;
  color: #fff;
  border-radius: 50%;
  background: #dbdbdb; }

.woocommerce-cart .woocommerce table.shop_table .cart_item td a.remove:hover {
  background-color: #000; }

.woocommerce #respond input#submit.disabled,
.woocommerce #respond input#submit:disabled,
.woocommerce #respond input#submit[disabled]:disabled,
.woocommerce a.button.disabled,
.woocommerce a.button:disabled,
.woocommerce a.button[disabled]:disabled,
.woocommerce button.button.disabled,
.woocommerce button.button:disabled,
.woocommerce button.button[disabled]:disabled,
.woocommerce input.button.disabled,
.woocommerce input.button:disabled,
.woocommerce input.button[disabled]:disabled {
  padding-top: 0;
  padding-bottom: 0; }

.woocommerce .cart-collaterals .cart_totals,
.woocommerce-page .cart-collaterals .cart_totals {
  margin-top: 50px; }

.woocommerce .cart-collaterals .cart_totals > h2,
.woocommerce-page .cart-collaterals .cart_totals > h2 {
  font-size: 24px;
  font-size: 1.6rem;
  margin: 0 0 1.3em; }

#add_payment_method .cart-collaterals .cart_totals table select,
.woocommerce-cart .cart-collaterals .cart_totals table select,
.woocommerce-checkout .cart-collaterals .cart_totals table select {
  border: 1px solid var(--color-border);
  color: var(--color-default);
  font-size: 14px;
  height: 50px;
  width: 100%; }

#add_payment_method .wc-proceed-to-checkout,
.woocommerce-cart .wc-proceed-to-checkout,
.woocommerce-checkout .wc-proceed-to-checkout {
  padding: 0;
  text-align: right; }

#add_payment_method .wc-proceed-to-checkout,
.woocommerce-cart .wc-proceed-to-checkout,
.woocommerce-checkout .wc-proceed-to-checkout {
  padding: 0; }

#add_payment_method .wc-proceed-to-checkout a.checkout-button,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button,
.woocommerce-checkout .wc-proceed-to-checkout a.checkout-button {
  margin-bottom: 0;
  margin-top: 16px; }

.woocommerce-cart .wc-proceed-to-checkout a.checkout-button {
  padding: 15px 30px; }

.woocommerce-cart .input-text.qty.text {
  -webkit-box-shadow: none;
  box-shadow: none; }

.woocommerce-cart input::-webkit-outer-spin-button,
.woocommerce-cart input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0; }

@media (max-width: 600px) {
  .woocommerce-cart thead {
    display: none; }

  .woocommerce-cart table,
  .woocommerce-cart th,
  .woocommerce-cart td,
  .woocommerce-cart tr,
  .woocommerce-cart tbody {
    width: 100%;
    display: block;
    border: 0;
    text-align: center; }

  .woocommerce table.shop_table {
    border: 1px solid var(--color-border); }

  .quantity {
    margin: 0 auto; }

  .woocommerce table.shop_table td {
    border: 0; }

  .woocommerce-cart tbody > tr {
    position: relative; }

  .woocommerce-cart tbody > tr + tr {
    border-top: 1px solid var(--color-border); }

  .woocommerce-cart tbody > tr {
    padding: 30px 20px; }

  .woocommerce-cart .woocommerce table.shop_table .cart_item td {
    padding: 8px 10px; }

  .woocommerce-cart .woocommerce table.shop_table .cart_item td.product-remove {
    border-right: 0;
    width: auto; }

  .woocommerce-cart .woocommerce table.shop_table .cart_item td.product-remove {
    position: absolute;
    right: 15px;
    top: 15px; }

  .woocommerce-cart .woocommerce table.shop_table td.actions {
    text-align: center; }

  .woocommerce-cart .woocommerce table.shop_table td.actions input {
    display: block;
    float: none; }

  .woocommerce-cart .coupon {
    float: none !important; }

  .woocommerce-cart .woocommerce table.shop_table td.actions input {
    display: inline-block;
    float: none;
    margin-top: 10px; }

  .woocommerce-cart .woocommerce table.shop_table .cart_item td.product-name,
  .woocommerce-cart .woocommerce table.shop_table .cart_item td.product-name a,
  .woocommerce-cart .woocommerce table.shop_table .cart_item td,
  .woocommerce-cart .woocommerce table.shop_table .cart_item td a {
    font-weight: 500; } }
@media (max-width: 767px) {
  .cart-section .container {
    max-width: 100%; } }
@media (max-width: 600px) {
  .cart-section .wc-proceed-to-checkout {
    text-align: center; } }
.cart-section .btn {
  padding: 7px 4px 7px 6px;
  font-size: 8px;
  font-weight: normal;
  position: relative; }

.cart-section .btn:hover {
  background-color: #000 !important; }

.cart-section .bootstrap-touchspin {
  border: 1px solid var(--color-border);
  width: 100px; }

.cart-section .bootstrap-touchspin button {
  text-decoration: none;
  border: 0;
  height: 38px;
  line-height: 38px;
  padding: 0 10px;
  font-size: 16px;
  font-size: 1.0666666667rem;
  font-weight: 500;
  color: var(--color-default); }

.cart-section .bootstrap-touchspin input {
  border: 0;
  height: 38px;
  line-height: 38px;
  text-align: center;
  font-size: 16px;
  font-size: 1.0666666667rem;
  font-weight: 500;
  color: var(--color-default);
  background: transparent; }

.cart-section .bootstrap-touchspin-up {
  right: 10px; }

.cart-section .bootstrap-touchspin-up:hover {
  background: transparent !important; }

.cart-section .bootstrap-touchspin-down {
  left: 10px; }

.cart-section .bootstrap-touchspin-down:hover {
  background: transparent !important; }

/* Firefox */
.woocommerce-cart input[type=number] {
  -moz-appearance: textfield; }

.woocommerce strong {
  font-weight: 500; }

.bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-up,
.bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-down {
  border-radius: 0; }

.checkout-section .checkout.woocommerce-checkout {
  overflow: hidden;
  clear: both; }

@media screen and (min-width: 992px) {
  .checkout-section .checkout.woocommerce-checkout .col2-set {
    width: 70%;
    float: left;
    padding-right: 85px; }

  .checkout-section .checkout.woocommerce-checkout .woocommerce-checkout-review-order {
    width: 30%;
    float: right; }

  .checkout-section .checkout.woocommerce-checkout form .form-row.form-row-first,
  .checkout-section .checkout.woocommerce-checkout form .form-row.form-row-last,
  .checkout-section .checkout.woocommerce-checkout .form-row.form-row-first,
  .checkout-section .checkout.woocommerce-checkout .form-row.form-row-last {
    width: 50%;
    float: left; }

  .checkout-section .checkout.woocommerce-checkout form .form-row.form-row-first,
  .checkout-section .checkout.woocommerce-checkout .form-row.form-row-first {
    padding-right: 15px; }

  .checkout-section .checkout.woocommerce-checkout form .form-row.form-row-last,
  .checkout-section .checkout.woocommerce-checkout .form-row.form-row-last {
    padding-left: 15px; } }
.checkout-section .checkout.woocommerce-checkout .form-row label.checkbox,
.checkout-section .checkout.woocommerce-checkout .woocommerce-shipping-fields label.checkbox {
  display: inline-block; }

.checkout-section .checkout.woocommerce-checkout .form-row textarea {
  height: 180px; }

/*** woocommerce ***/
.woocommerce-Button,
.woocommerce-button {
  background: rgba(0, 0, 0, 0.9);
  font-size: 12px;
  font-size: 0.8rem;
  font-weight: 500;
  font-weight: 500;
  padding: 12px 30px;
  color: #fff;
  margin-top: 20px;
  color: white;
  display: inline-block;
  margin-left: auto;
  margin-right: auto;
  text-transform: uppercase;
  letter-spacing: 3px;
  border: 0; }

.woocommerce-Button:hover,
.woocommerce-button:hover {
  background: #000; }

.woocommerce-info:before {
  display: none; }

.woocommerce-privacy-policy-text a {
  font-weight: 500;
  color: #E0A500;
  text-decoration: underline; }

.woocommerce-error a,
.woocommerce-info a,
.woocommerce-message a,
.lost_password a {
  color: var(--color-default); }

.woocommerce-error a:hover,
.woocommerce-info a:hover,
.woocommerce-message a:hover,
.lost_password a:hover {
  text-decoration: underline; }

.woocommerce-error, .woocommerce-info,
.woocommerce-message {
  background-color: rgba(191, 171, 112, 0.1);
  width: auto;
  padding: 15px 20px;
  border: 1px solid rgba(191, 171, 112, 0.2);
  padding: 15px 15px 15px 35px;
  margin: 0 0 2em;
  position: relative;
  color: var(--color-default);
  list-style: none;
  word-wrap: break-word; }

@media (max-width: 767px) {
  .woocommerce-error, .woocommerce-info,
  .woocommerce-message {
    padding: 15px; } }
.woocommerce form.checkout_coupon,
.woocommerce form.login,
.woocommerce form.register {
  padding: 34px 35px 33px;
  border: 1px solid var(--color-border);
  margin: 19px 0;
  text-align: left;
  border-radius: 0; }

.woocommerce .login p {
  margin-bottom: 15px; }

@media (max-width: 767px) {
  .woocommerce form.checkout_coupon,
  .woocommerce form.login,
  .woocommerce form.register {
    padding: 34px 20px 33px; } }
.woocommerce form .form-row .required {
  color: red;
  font-weight: 600;
  border: 0; }

.woocommerce form.login > p:not(.form-row) {
  margin-bottom: 2em; }

#customer_login form.login > p:not(.form-row) {
  margin-top: 2em;
  margin-bottom: 0; }

.woocommerce form.login input[type=submit],
.woocommerce #respond input#submit,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
  color: #fff;
  font-size: 12px;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 18px 30px;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: inline-block;
  border: 0;
  border-radius: 0;
  outline: 0; }

.woocommerce .checkout_coupon input[type="submit"] {
  padding: 18px 30px;
  border: 0;
  margin-top: 10px; }

.woocommerce form.login input[type=submit]:hover, .woocommerce form.login input[type=submit]:focus, .woocommerce form.login input[type=submit]:active,
.woocommerce #respond input#submit:hover,
.woocommerce #respond input#submit:focus,
.woocommerce #respond input#submit:active,
.woocommerce a.button:hover,
.woocommerce a.button:focus,
.woocommerce a.button:active,
.woocommerce button.button:hover,
.woocommerce button.button:focus,
.woocommerce button.button:active,
.woocommerce input.button:hover,
.woocommerce input.button:focus,
.woocommerce input.button:active {
  background-color: #000;
  color: #fff; }

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea {
  padding: 12px 15px; }

.woocommerce form .form-row label.inline {
  display: inline;
  padding-left: 15px; }

.woocommerce h3 {
  font-size: 22px;
  font-size: 1.4666666667rem;
  margin: 1em 0 1.5em; }

abbr,
abbr[title] {
  border-bottom: 1px dotted #0a0a0a;
  cursor: help;
  text-decoration: none; }

@media (max-width: 767px) {
  .woocommerce form .form-row label.inline {
    padding-left: 5px; } }
.checkout-section input[type="text"],
.checkout-section input[type="password"],
.checkout-section input[type="email"],
.checkout-section input[type="tel"],
.checkout-section select,
.checkout-section textarea {
  height: 55px;
  box-shadow: none; }

#add_payment_method #payment ul.payment_methods li, .woocommerce-cart #payment ul.payment_methods li, .woocommerce-checkout #payment ul.payment_methods li {
  line-height: 2;
  text-align: left;
  margin: 0;
  font-weight: 400; }

#add_payment_method #payment div.payment_box, .woocommerce-cart #payment div.payment_box, .woocommerce-checkout #payment div.payment_box {
  position: relative;
  box-sizing: border-box;
  width: 100%;
  padding: 1em;
  margin: 1em 0;
  font-size: .92em;
  border-radius: 2px;
  line-height: 1.5;
  background-color: #e6e6e6;
  color: var(--color-default); }

#add_payment_method #payment ul.payment_methods li img, .woocommerce-cart #payment ul.payment_methods li img, .woocommerce-checkout #payment ul.payment_methods li img {
  vertical-align: middle;
  margin: -2px 0 0 .5em;
  padding: 0;
  position: relative;
  box-shadow: none; }

#add_payment_method #payment .payment_method_paypal img, .woocommerce-cart #payment .payment_method_paypal img, .woocommerce-checkout #payment .payment_method_paypal img {
  max-height: 52px;
  vertical-align: middle; }

#add_payment_method #payment .payment_method_paypal .about_paypal, .woocommerce-cart #payment .payment_method_paypal .about_paypal, .woocommerce-checkout #payment .payment_method_paypal .about_paypal {
  float: right;
  line-height: 52px;
  font-size: .83em;
  color: var(--color-default);
  margin-left: 10px; }

#add_payment_method #payment ul.payment_methods li input, .woocommerce-cart #payment ul.payment_methods li input, .woocommerce-checkout #payment ul.payment_methods li input {
  margin: 0 5px 0 0; }

#add_payment_method #payment div.payment_box::before, .woocommerce-cart #payment div.payment_box::before, .woocommerce-checkout #payment div.payment_box::before {
  border: 1em solid var(--color-border);
  border-right-color: transparent;
  border-left-color: transparent;
  border-top-color: transparent; }

#add_payment_method #payment div.payment_box::before, .woocommerce-cart #payment div.payment_box::before, .woocommerce-checkout #payment div.payment_box::before {
  content: "";
  display: block;
  border: 1em solid var(--color-border);
  border-right-color: transparent;
  border-left-color: transparent;
  border-top-color: transparent;
  position: absolute;
  top: -.75em;
  left: 0;
  margin: -1em 0 0 2em; }

#add_payment_method #payment div.payment_box p:last-child, .woocommerce-cart #payment div.payment_box p:last-child, .woocommerce-checkout #payment div.payment_box p:last-child {
  margin-bottom: 0; }

.woocommerce table.shop_table {
  border: 1px solid var(--color-border);
  margin: 0 -1px 24px 0;
  text-align: left;
  width: 100%;
  border-collapse: separate;
  border-radius: 5px; }

.cart_totals table.shop_table {
  border-top: 0; }

.woocommerce table.shop_table tbody th, .woocommerce table.shop_table tfoot td, .woocommerce table.shop_table tfoot th {
  font-weight: 700;
  border-top: 1px solid var(--color-border); }

.woocommerce-billing-fields p {
  margin-bottom: 15px; }

/*----------------------------------------*/
/*  12. author
/*----------------------------------------*/
.author__item {
  display: flex;
  flex-wrap: wrap; }
.author__avatar {
  position: relative;
  width: 180px;
  height: 180px;
  margin-right: 40px; }
  .author__avatar .avatar {
    width: 180px;
    height: 180px;
    padding: 10px;
    background-color: var(--color-white);
    box-shadow: 0px 0px 22px rgba(0, 0, 0, 0.07);
    object-fit: cover;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    z-index: 1; }
.author__avatar-shape {
  position: absolute;
  bottom: 10px;
  left: 0;
  z-index: -1; }
.author__avatar-number {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 35px;
  height: 35px;
  font-size: 15px;
  font-weight: 700;
  background-color: var(--color-primary);
  color: #fff;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center; }
.author__content {
  width: calc(100% - 240px); }
  @media (max-width: 767px) {
    .author__content {
      width: 100%;
      margin-top: 30px; } }
  .author__content span {
    display: block;
    font-style: 15px; }
  .author__content .name {
    font-size: 30px;
    margin-bottom: 5px; }
    @media (max-width: 767px) {
      .author__content .name {
        font-size: 20px; } }
  .author__content .info {
    margin-top: 10px; }
    .author__content .info img {
      margin-right: 5px; }
  .author__content p {
    margin-bottom: 30px; }
  .author__content h3 {
    font-size: 20px; }
  .author__content .info-wrap {
    margin-right: 70px; }
  .author__content .rating {
    margin-top: 10px;
    margin-left: 60px; }
    @media (max-width: 767px) {
      .author__content .rating {
        margin-left: 0; } }
    .author__content .rating i {
      color: #FF842B;
      font-size: 15px;
      margin: 0 2px; }
    .author__content .rating span {
      margin-left: 5px;
      -webkit-transform: translateY(-5px);
      -ms-transform: translateY(-5px);
      transform: translateY(-5px); }
.author__list {
  display: flex;
  flex-wrap: wrap; }
  .author__list li {
    font-size: 18px;
    width: 380px;
    position: relative;
    padding-left: 30px;
    margin-top: 20px; }
    .author__list li::before {
      position: absolute;
      top: 0;
      left: 0;
      font-size: 14px;
      content: "\f00c";
      font-family: "Font Awesome 5 Pro";
      font-weight: 400;
      color: var(--color-primary);
      display: flex;
      align-items: center;
      justify-content: center;
      -webkit-transition: 0.3s;
      -o-transition: 0.3s;
      transition: 0.3s; }

/* backtoup */
.progress-wrap {
  position: fixed;
  right: 30px;
  bottom: 40px;
  height: 35px;
  width: 35px;
  cursor: pointer;
  display: block;
  border-radius: 50px;
  box-shadow: inset 0 0 0 2px rgba(255, 24, 78, 0.15);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
  transform: translateY(15px);
  -webkit-transform: translateY(15px);
  -moz-transform: translateY(15px);
  -ms-transform: translateY(15px);
  -o-transform: translateY(15px); }
  .progress-wrap::after {
    position: absolute;
    content: '\f176';
    font-family: "Font Awesome 5 Pro";
    text-align: center;
    line-height: 35px;
    font-size: 15px;
    color: var(--color-primary);
    left: 0;
    top: 0;
    height: 35px;
    width: 35px;
    cursor: pointer;
    display: block;
    z-index: 1;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear; }
  .progress-wrap svg path {
    fill: none; }
  .progress-wrap svg.progress-circle path {
    stroke: var(--color-primary);
    stroke-width: 4;
    box-sizing: border-box;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear; }
  .progress-wrap.active-progress {
    opacity: 1;
    visibility: visible;
    transform: translateY(0); }
  .progress-wrap.style-2 {
    box-shadow: inset 0 0 0 2px rgba(41, 98, 255, 0.15); }
    .progress-wrap.style-2::after {
      color: var(--color-primary-2); }
    .progress-wrap.style-2 svg.progress-circle path {
      stroke: var(--color-primary-2); }

/*----------------------------------------*/
/*  13. 404
/*----------------------------------------*/
.error__text h1 {
  font-size: 340px;
  color: rgba(60, 58, 70, 0.14);
  font-family: var(--font-body);
  line-height: 1; }
  @media only screen and (min-width: 1200px) and (max-width: 1500px) {
    .error__text h1 {
      font-size: 300px; } }
  @media (max-width: 1199px) {
    .error__text h1 {
      font-size: 250px; } }
  @media (max-width: 991px) {
    .error__text h1 {
      font-size: 200px; } }
  @media (max-width: 767px) {
    .error__text h1 {
      font-size: 120px; } }
.error__text h3 {
  font-size: 55px;
  margin-bottom: 30px; }
  @media (max-width: 1199px) {
    .error__text h3 {
      font-size: 40px; } }
  @media (max-width: 991px) {
    .error__text h3 {
      font-size: 30px; } }
  @media (max-width: 767px) {
    .error__text h3 {
      font-size: 22px; } }
.error__text p {
  font-size: 18px; }

/*----------------------------------------*/
/*  03. home
/*----------------------------------------*/
.post-meta__author {
  margin-right: 10px;
  padding-right: 10px;
  position: relative; }
  .post-meta__author::before {
    position: absolute;
    top: 50%;
    right: 0;
    width: 1px;
    height: 10px;
    content: "";
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    background-color: rgba(var(--color-white-rgb), 0.5); }
  .post-meta__author .avatar {
    margin-right: 5px; }
    .post-meta__author .avatar img {
      width: 24px;
      height: 24px;
      padding: 1px;
      border-radius: 50%;
      -webkit-border-radius: 50%;
      -moz-border-radius: 50%;
      -ms-border-radius: 50%;
      -o-border-radius: 50%;
      background-color: var(--color-primary);
      object-fit: cover; }
.post-meta span {
  font-size: 15px;
  color: #fff; }
  .post-meta span i {
    font-size: 13px;
    margin-right: 7px;
    color: var(--color-primary); }
.post-meta--2 .post-meta__author {
  padding-right: 0; }
  .post-meta--2 .post-meta__author::before {
    display: none; }
  .post-meta--2 .post-meta__author .avatar img {
    width: 20px;
    height: 20px;
    padding: 0;
    background: none; }
.post-meta--2 span {
  color: #201616;
  font-size: 14px;
  font-weight: 500; }
  .post-meta--2 span.date, .post-meta--2 span i {
    color: #989090; }
.post-meta--3 li {
  color: #fff;
  position: relative;
  font-size: 13px; }
  .post-meta--3 li:not(:last-child) {
    margin-right: 10px;
    padding-right: 10px; }
  .post-meta--3 li::before {
    position: absolute;
    top: 0;
    right: 0;
    width: 1px;
    height: 11px;
    color: #7A8A9E;
    content: ""; }
  .post-meta--3 li i {
    color: var(--color-primary);
    margin-right: 5px;
    font-size: 12px; }
.post-meta--4 li {
  color: #fff;
  font-size: 15px;
  position: relative; }
  .post-meta--4 li:not(:last-child) {
    margin-right: 10px;
    padding-right: 12px; }
  .post-meta--4 li::before {
    position: absolute;
    top: 10px;
    right: 0;
    width: 1px;
    height: 10px;
    content: "";
    background-color: #71706F;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s; }
  .post-meta--4 li:last-child::before {
    display: none; }
  .post-meta--4 li i {
    font-size: 13px;
    margin-right: 5px; }
  .post-meta--4 li .year {
    color: var(--color-primary-2); }
    .post-meta--4 li .year.color2 {
      color: #FF5D18; }
.post-meta--4.style-2 li, .post-meta--4.style-2 span {
  color: #65676D; }
.post-meta--4.style-2 li::before {
  background-color: #D9DADD; }
.post-meta--4.style-2 .avatar img {
  background-color: var(--color-white) !important;
  box-shadow: 0px 4px 7px rgba(0, 0, 0, 0.08); }
.post-meta--4.style-3 li::before {
  background-color: #B2B2B3; }
.post-meta--4 .post-meta__author {
  margin-right: 0;
  padding-right: 0; }
  .post-meta--4 .post-meta__author::before {
    display: none; }
  .post-meta--4 .post-meta__author .avatar img {
    background-color: var(--color-primary-2); }
  .post-meta--4 .post-meta__author .avatar.color2 img {
    background-color: #FF5D18; }
.post-meta--4.style-4 .post-meta__author .avatar img {
  background-color: var(--color-primary); }
.post-meta--4.style-4 li .year {
  color: var(--color-primary); }
.post-meta .read-time {
  font-size: 15px;
  color: #5D6273; }
  .post-meta .read-time i {
    color: var(--color-primary);
    margin-right: 5px;
    font-size: 14px; }
.post-meta--black span {
  color: var(--color-black); }

@media (max-width: 767px) {
  .featured__post {
    padding-top: 0; } }
@media (max-width: 767px) {
  .featured__post--3 {
    padding-top: 25px; } }
@media only screen and (min-width: 1200px) and (max-width: 1500px) {
  .featured__post-item.mr-45 {
    margin-right: 75px; } }
@media (max-width: 1199px) {
  .featured__post-item.mr-45 {
    margin-right: 105px; } }
@media (max-width: 991px) {
  .featured__post-item.mr-45 {
    margin-right: 0; } }
@media (max-width: 767px) {
  .featured__post-item .post-title {
    font-size: 24px; } }

.post-thumb.hxl-590 img {
  height: 100%;
  object-fit: cover; }
@media only screen and (min-width: 1200px) and (max-width: 1500px) {
  .post-thumb.hxl-590 {
    height: 590px; } }
@media (max-width: 1199px) {
  .post-thumb.hxl-590 {
    height: 590px; } .tab-post__wrap.ml-none-30.mllg-none-100 {
      margin: 0;
  }
  
  .featured__post-item.tx-post.tx-post-overly.mr-45 {
      margin-right: 0;
  } }
@media (max-width: 991px) {
  .post-thumb.hxl-590 {
    height: 400px; } }

.post-thumb.hlg-415 img {
  height: 100%;
  object-fit: cover; }
@media (max-width: 1199px) {
  .post-thumb.hlg-415 {
    height: 415px; } }

.post-thumb.hlg-595 img {
  height: 100%;
  object-fit: cover; }
@media (max-width: 1199px) {
  .post-thumb.hlg-595 {
    height: 595px; } }
@media (max-width: 767px) {
  .post-thumb.hlg-595 {
    height: 300px; } }

.post-thumb.hlg-400 img {
  height: 100%;
  object-fit: cover; }
@media (max-width: 1199px) {
  .post-thumb.hlg-400 {
    height: 400px; } }

.tab-post__wrap {
  background-color: var(--color-white);
  padding: 30px;
  box-shadow: 0px 7px 24px rgba(0, 0, 0, 0.07);
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px; }
  @media only screen and (min-width: 1200px) and (max-width: 1500px) {
    .tab-post__wrap.ml-none-30 {
      margin-left: -70px; } }
.tab-post__nav {
  border-color: var(--color-border);
  z-index: 1;
  position: relative; }
  .tab-post__nav .nav-item .nav-link {
    font-size: 18px;
    font-family: var(--font-title);
    color: #8A8B90;
    background: none;
    padding: 0;
    border: 0;
    padding-bottom: 10px;
    text-transform: capitalize;
    font-weight: 500; }
    .tab-post__nav .nav-item .nav-link.active {
      color: var(--color-primary);
      background: none;
      border-bottom: 1px solid var(--color-primary); }
    .tab-post__nav .nav-item .nav-link i {
      font-size: 14px;
      margin-right: 5px; }
  .tab-post__nav .nav-item:not(:last-child) .nav-link {
    margin-right: 50px; }
    @media only screen and (min-width: 1200px) and (max-width: 1500px) {
      .tab-post__nav .nav-item:not(:last-child) .nav-link {
        margin-right: 26px; } }
    @media (max-width: 1199px) {
      .tab-post__nav .nav-item:not(:last-child) .nav-link {
        margin-right: 25px; } }
  .tab-post__nav.style-2 .nav-item .nav-link.active {
    color: var(--color-black);
    border-color: var(--color-primary-2); }
.tab-post__content {
  margin-top: 20px; }
.tab-post__item .post-thumb {
  width: 93px;
  margin-right: 10px;
  margin-right: 20px;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  position: relative; }
.tab-post__item .post-content {
  width: calc(100% - 113px); }
.tab-post__item .post-title {
  font-size: 16px;
  line-height: 22px;
  margin-top: -3px;
  font-weight: 500; }
  @media (max-width: 1199px) {
    .tab-post__item .post-title {
      font-size: 15px; } }
.tab-post__item .cat {
  font-size: 12px;
  font-weight: 600;
  color: #999999;
  text-transform: uppercase;
  display: inline-block;
  line-height: 1; }
.tab-post__item span {
  font-size: 14px;
  color: #989090;
  display: inline-block;
  line-height: 1; }
  .tab-post__item span i {
    margin-right: 5px;
    font-size: 12px; }
.tab-post__item:not(:last-child) {
  margin-bottom: 25px; }
.tab-post__item--2 {
  position: relative; }
  @media (max-width: 1199px) {
    .tab-post__item--2 {
      margin-right: -15px; } }
  @media (max-width: 991px) {
    .tab-post__item--2 {
      margin-right: 0; } }
  .tab-post__item--2 .post-thumb {
    width: 105px;
    height: 105px;
    margin-right: 16px;
    position: unset;
    overflow: hidden;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%; }
    .tab-post__item--2 .post-thumb img {
      width: 105px;
      height: 105px;
      width: 100%;
      object-fit: cover; }
  .tab-post__item--2 .post-cat {
    margin-bottom: 10px; }
  .tab-post__item--2 .post-number {
    left: 80px;
    top: 7px;
    width: 25px;
    height: 25px;
    border-radius: 25px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -ms-border-radius: 25px;
    -o-border-radius: 25px; }
  .tab-post__item--2 .post-content {
    width: calc(100% - 121px); }

@media only screen and (min-width: 1200px) and (max-width: 1500px) {
  .trending__post-slide-wrap {
    padding-right: 0;
    margin-right: -60px; } }
@media (max-width: 1199px) {
  .trending__post-slide-wrap {
    padding-right: 0;
    margin-right: 0; } }
.trending__post-slide-item .cat {
  margin-bottom: 10px; }
.trending__post-tab-wrap {
  margin-left: -40px; }
  @media (max-width: 1199px) {
    .trending__post-tab-wrap {
      margin-left: 0; } }
@media only screen and (min-width: 1200px) and (max-width: 1500px) {
  .trending__post-middle {
    padding-left: 40px;
    padding-right: 0px; } .tx-post__video-post.tx-post__video-post-big.tx-post.mt-10.ul_li {
      margin-left: 40px;
      margin-right: 0;
  } }
@media (max-width: 1199px) {
  .trending__post-middle {
    padding-left: 0;
    padding-right: 0; } }
.trending__post-middle .post-content.w-80 {
  width: 100%;
  padding: 35px; }
  @media (max-width: 1199px) {
    .trending__post-middle .post-content.w-80 {
      width: calc(100% - 20%); } }
.trending__post-middle .post-thumb::before {
  height: calc(100% - 35%); }
@media only screen and (min-width: 1200px) and (max-width: 1500px) {
  .trending__post-middle .post-thumb.hxl-590 {
    height: 440px; } }
@media (max-width: 1199px) {
  .trending__post-middle .tx-post-overly .post-title {
    font-size: 35px; } }
@media (max-width: 767px) {
  .trending__post-middle .tx-post-overly .post-title {
    font-size: 22px; } }
@media (max-width: 1199px) {
  .trending__post .tx-post-overly {
    margin-left: 0; } .tx-post.tx-post-overly.tx-post-overly--sm.ml-none-25.mt-40 {
      margin-left: 0;
  }  }
@media (max-width: 991px) {
  .trending__post .tx-post-overly {
    margin-left: 0; } .tx-post.tx-post-overly.tx-post-overly--sm.ml-none-25.mt-40 {
      margin-left: 0;
  } }
@media (max-width: 991px) {
  .trending__post .tx-post-overly .post-content {
    padding: 40px; } }
@media (max-width: 767px) {
  .trending__post .tx-post-overly .post-content {
    padding: 30px;
    width: 100%; } }
@media (max-width: 1199px) {
  .trending__post .order-2 {
    order: 3 !important; } }
@media only screen and (min-width: 1200px) and (max-width: 1500px) {
  .trending__post-wrap.pr-80 {
    padding-right: 30px; } }
@media (max-width: 1199px) {
  .trending__post-wrap.pr-80 {
    padding-right: 0; } }
.trending__post-wrapper {
  padding: 30px 35px;
  box-shadow: 0px 4px 14px rgba(0, 0, 0, 0.07);
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
  border: 1px solid #EBEBEB; }
  @media only screen and (min-width: 1200px) and (max-width: 1500px) {
    .trending__post-wrapper.mr-none-60 {
      margin-right: -120px; } }
  @media (max-width: 991px) {
    .trending__post-wrapper.mr-none-60 {
      margin-right: 0px; } }
  @media (max-width: 767px) {
    .trending__post-wrapper.mr-none-60 {
      margin-right: 0;
      padding: 25px; } }
@media (max-width: 767px) {
  .trending__post-wrapper .trending__post-item .post-title {
    font-size: 16px; } }
@media only screen and (min-width: 1200px) and (max-width: 1500px) {
  .trending__post-tab.pl-50 {
    padding-left: 5px; } }
@media (max-width: 1199px) {
  .trending__post-tab.pl-50 {
    padding-left: 0; } }
@media only screen and (min-width: 1200px) and (max-width: 1500px) {
  .trending__post-tab.pr-60 {
    padding-right: 40px;
    margin-left: -10px; } }
@media (max-width: 1199px) {
  .trending__post-tab.pr-60 {
    padding-right: 0;
    margin-left: 0; } }
.trending__post-item:not(:last-child) {
  margin-bottom: 19px;
  padding-bottom: 19px;
  border-bottom: 1px solid var(--color-border-2); }
.trending__post-item .post-thumb {
  width: 124px;
  margin-right: 20px;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px; }
  .trending__post-item .post-thumb.w-120 {
    width: 120px;
    height: 106px; }
    .trending__post-item .post-thumb.w-120 img {
      height: 100%;
      object-fit: cover; }
.trending__post-item .post-content {
  width: calc(100% - 144px); }
.trending__post-item .post-title {
  font-size: 18px;
  font-weight: 500; }
.trending__post-item--2 .cat {
  margin-bottom: 10px; }
.trending__post-item--2 .post-meta {
  margin-top: 6px; }
.trending__post-item--2 .post-thumb {
  width: 158px;
  margin-right: 24px; }
  @media only screen and (min-width: 1200px) and (max-width: 1500px) {
    .trending__post-item--2 .post-thumb {
      width: 124px;
      margin-right: 20px; } }
.trending__post-item--2 .post-content {
  width: calc(100% - 183px); }
  @media only screen and (min-width: 1200px) and (max-width: 1500px) {
    .trending__post-item--2 .post-content {
      width: calc(100% - 144px); } }
.trending__post-item--3:not(:last-child) {
  padding-bottom: 0;
  border: 0;
  margin-bottom: 26px; }
.trending__post-item--3 .post-thumb {
  width: 152px;
  height: 116px;
  margin-right: 18px; }
  .trending__post-item--3 .post-thumb img {
    height: 100%;
    object-fit: cover; }
  @media (max-width: 991px) {
    .trending__post-item--3 .post-thumb {
      width: 100%;
      height: 200px;
      margin-right: 0; } }
.trending__post-item--3 .post-content {
  width: calc(100% - 170px); }
  @media (max-width: 991px) {
    .trending__post-item--3 .post-content {
      width: 100%;
      margin-top: 15px; } }
.trending__post-item--3 .post-cat {
  position: absolute;
  top: 5px;
  left: 5px; }
.trending__post-item--3 .post-title {
  font-size: 20px; }

.trending-post .tx-post-overly .post-thumb::before {
  height: calc(100% - 30%); }

@media (max-width: 991px) {
  .post-search.pl-25 {
    padding-left: 0; } }
.post-search__form {
  background-color: #F7F7F7;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  padding: 25px; }
.post-search__input {
  margin-bottom: 20px; }
  .post-search__input select {
    font-size: 15px;
    width: 100%;
    height: 42px;
    color: #949392;
    border: 1px solid #E1E0E0;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    background-color: var(--color-white);
    padding: 0 10px; }
    .post-search__form .ff-el-form-control {
      font-size: 15px;
      width: 100%;
      height: 42px;
      color: #949392;
      border: 1px solid #E1E0E0;
      border-radius: 3px;
      -webkit-border-radius: 3px;
      -moz-border-radius: 3px;
      -ms-border-radius: 3px;
      -o-border-radius: 3px;
      background-color: var(--color-white);
      padding: 0 10px;
  }
  .post-search__form button.ff-btn.ff-btn-submit.ff-btn-md.ff_btn_style {
    padding: 12px 50px;
    background-color: var(--color-primary);
    color: #fff;
    text-transform: uppercase;
    font-weight: 500;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    opacity: 1;
    line-height: 1.3;
}

.post-search__form .ff-el-group.ff-text-left.ff_submit_btn_wrapper {
    text-align: center;
    margin-bottom: 0;
}
  .post-search__form textarea.ff-el-form-control {min-height: 45px;padding: 10px 10px; line-height: normal;}
.post-search__button {
  text-align: center; }
  .post-search__button button {
    padding: 12px 50px;
    background-color: var(--color-primary);
    color: #fff;
    text-transform: uppercase;
    font-weight: 500;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px; line-height: 1.3; }
    @media only screen and (min-width: 1200px) and (max-width: 1500px) {
      .post-search__button button {
        padding: 12px 25px; } }

.video-post {
  z-index: 1; }
  @media (max-width: 991px) {
    .video-post__item {
      margin-left: 0; } }
  .video-post__item .post-thumb {
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px; }
    .video-post__item .post-thumb img {
      height: 100%;
      object-fit: cover; }
    .video-post__item .post-thumb.h-507 {
      height: 507px; }
      @media (max-width: 767px) {
        .video-post__item .post-thumb.h-507 {
          height: 400px; } }
  .video-post__item--sm .post-thumb {
    height: 234px; }
    @media (max-width: 991px) {
      .video-post__item--sm .post-thumb {
        height: 300px; } }
  .video-post__item--md .post-thumb, .video-post__item--lg .post-thumb {
    height: 499px; }
  .video-post__item--lg .popup-video {
    left: 21px;
    top: 23px;
    right: auto;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0); }
  .video-post__item .post-cat {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 2; }
  .video-post__item .post-meta {
    margin-bottom: 5px; }
    @media (max-width: 767px) {
      .video-post__item .post-meta {
        margin-bottom: 10px; } }
  @media (max-width: 767px) {
    .video-post__item--lg .post-title {
      font-size: 22px; } }
  @media (max-width: 991px) {
    .video-post__left {
      margin-right: 0; } }
  @media (max-width: 991px) {
    .video-post__right {
      margin-left: 0; } }
  .video-post .shape {
    position: absolute;
    bottom: 0;
    left: 0;
    opacity: .1;
    z-index: -1; }
    .video-post .shape--2 {
      top: 0;
      right: 0;
      left: auto;
      bottom: auto; }
  .video-post__wrapper {
    padding: 30px 55px 65px 40px;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px; }
    @media (max-width: 991px) {
      .video-post__wrapper {
        padding: 25px 20px; } }
    @media only screen and (min-width: 1200px) and (max-width: 1500px) {
      .video-post__wrapper.ml-65 {
        margin-left: 118px; } }
    @media (max-width: 991px) {
      .video-post__wrapper.ml-65 {
        margin-left: 0px; } }
    @media (max-width: 767px) {
      .video-post__wrapper.ml-65 {
        margin-left: 0; } }
  .video-post__wrapper .video-post__item .post-thumb {
    height: 247px; }
    @media (max-width: 991px) {
      .video-post__wrapper .video-post__item .post-thumb {
        height: 300px; } }
  .video-post__wrapper .video-post__item--lg .post-thumb {
    height: 524px; }
    @media (max-width: 991px) {
      .video-post__wrapper .video-post__item--lg .post-thumb {
        height: 400px; } }
    @media (max-width: 991px) {
      .video-post__wrapper .video-post__item--lg .post-thumb::before {
        height: 100%; } }
  @media only screen and (min-width: 1200px) and (max-width: 1500px) {
    .video-post__wrapper .video-post__item--lg .post-content {
      padding: 30px; } }
  @media (max-width: 991px) {
    .video-post__wrapper .video-post__item--lg .post-content {
      padding: 15px; } }
  @media (max-width: 991px) {
    .video-post__wrapper .video-post__item--lg .post-content .post-title {
      font-size: 20px; } }
  .video-post__tab-item {
    position: relative; }
    .video-post__tab-item .popup-video {
      top: 42%; }
    .video-post__tab-item .cat {
      position: absolute;
      top: 12px;
      left: 10px;
      background-color: var(--color-primary-3);
      font-weight: 600;
      color: var(--color-white);
      padding: 1px 22px; }
    .video-post__tab-item img {
      width: 100%; }
    .video-post__tab-item::before {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 100%;
      content: "";
      background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 27.08%, rgba(0, 0, 0, 0.49) 61.86%, #000000 95.31%); }
  .video-post__tab-nav {
    display: flex;
    position: absolute;
    bottom: 18px;
    justify-content: center;
    left: 0;
    right: 0;
    margin: auto;
    border: 0; }
    .video-post__tab-nav .nav-item .nav-link {
      background: none;
      border: 0;
      padding: 0; }
  .video-post__nav-item {
    width: 103px;
    height: 91px;
    margin: 0 9px;
    display: inline-block; }
    @media only screen and (min-width: 1200px) and (max-width: 1500px) {
      .video-post__nav-item {
        width: 60px;
        height: 60px; } }
    @media (max-width: 767px) {
      .video-post__nav-item {
        width: 80px;
        height: 80px; } }
    .video-post__nav-item img {
      object-fit: cover;
      height: 100%;
      width: 100%; }
  @media (max-width: 1199px) {
    .video-post__tab-item .post-thumb {
      height: 500px; }
      .video-post__tab-item .post-thumb img {
        height: 100%;
        object-fit: cover; } }
  @media (max-width: 767px) {
    .video-post__tab-item .post-thumb {
      height: 400px; } }

.product__item {
  padding: 20px 27px;
  padding-right: 10px;
  position: relative; }
  .product__item::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(var(--color-white-rgb), 0.04);
    content: "";
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border: 1px solid rgba(var(--color-white-rgb), 0.1);
    box-shadow: 0px 7px 24px rgba(0, 0, 0, 0.07);
    -webkit-transform: scale(0.95);
    -ms-transform: scale(0.95);
    transform: scale(0.95);
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    opacity: 0; }
.product__item.active::before, .product__item:hover::before {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  opacity: 1; }
.product__img {
  width: 93px;
  height: 88px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  margin-right: 20px;
  overflow: hidden;
  position: relative; }
  .product__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s; }
.product__item:hover .product__img img, .product__item.active .product__img img {
  -webkit-transform: scale(1.03);
  -ms-transform: scale(1.03);
  transform: scale(1.03); }
.product__number {
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  background-color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 12px;
  font-weight: 700; }
.product__content {
  width: calc(100% - 117px);
  position: relative; }
.product__rating {
  -webkit-transform: translateY(-10px);
  -ms-transform: translateY(-10px);
  transform: translateY(-10px);
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  position: absolute;
  top: 0;
  opacity: 0;
  visibility: hidden; }
  .product__rating li {
    font-size: 12px;
    color: #E5842A; }
    .product__rating li:not(:last-child) {
      margin-right: 2px; }
.product__item:hover .product__rating, .product__item.active .product__rating {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
  visibility: visible; }
.product__cat {
  font-size: 12px;
  color: #707178;
  text-transform: uppercase;
  line-height: 25px;
  display: inline-block;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s; }
.product__item:hover .product__cat, .product__item.active .product__cat {
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(10px);
  -ms-transform: translateY(10px);
  transform: translateY(10px); }
.product__title {
  font-size: 16px;
  line-height: 22px;
  font-weight: 500; }
  .product__title a {
    color: #fff; }
    .product__title a:hover {
      color: #fff; }
.product__date {
  font-size: 14px;
  display: block;
  color: #989090;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s; }
  .product__date i {
    font-size: 13px;
    margin-right: 5px; }
.product__item:hover .product__date, .product__item.active .product__date {
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(-10px);
  -ms-transform: translateY(-10px);
  transform: translateY(-10px); }
.product__price {
  -webkit-transform: translateY(10px);
  -ms-transform: translateY(10px);
  transform: translateY(10px);
  font-size: 12px;
  font-weight: 500;
  display: inline-block;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  bottom: 0; }
  .product__price .new-price {
    margin-right: 7px;
    color: var(--color-primary); }
  .product__price .old-price {
    color: #9695A0; }
.product__item:hover .product__price, .product__item.active .product__price {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0px);
  -ms-transform: translateY(0px);
  transform: translateY(0px); }

@media (max-width: 1199px) {
  .category__wrap {
    justify-content: center; } }
@media (max-width: 1199px) {
  .category__wrap .category__item {
    width: 25%; } }
@media (max-width: 767px) {
  .category__wrap .category__item {
    width: 50%; } }
.category__icon {
  font-size: 55px;
  margin-bottom: 10px;
  margin-bottom: 5px;
  display: inline-block;
  color: #C3C1BE; }
  @media only screen and (min-width: 1200px) and (max-width: 1500px) {
    .category__icon {
      font-size: 40px; } }
  @media (max-width: 1199px) {
    .category__icon {
      font-size: 40px; } }
.category__title {
  font-size: 19px;
  margin-bottom: 5px;
  font-weight: 500; }
  @media only screen and (min-width: 1200px) and (max-width: 1500px) {
    .category__title {
      font-size: 16px; } }
  @media (max-width: 1199px) {
    .category__title {
      font-size: 17px; } }
  .category__title a {
    color: var(--color-black); }
    .category__title a:hover {
      color: var(--color-primary); }
.category__number {
  color: var(--color-primary);
  font-weight: 700;
  margin-bottom: 17px;
  display: block;
  font-weight: 500; }
a.category__search {
  display: inline-block;
  left: 0;
  right: 0;
  position: relative;
  margin: auto;
  padding: 6px 23px;
  background: transparent;
  border-radius: 30px;
  box-shadow: 0px 4px 12px rgba(72, 84, 102, 0.06) !important;
  font-size: 14px;
  font-weight: 500;
  color: #626262;
  margin-top: 2px;
  cursor: pointer; }
  .category__search:hover {
    background-color: var(--color-primary);
    color: #fff; }
  .category__search i {
    margin-left: 10px; }
.category__border {
  border-bottom: 1px solid var(--color-border-2); }

@media (max-width: 1199px) {
  .category-news__wrap .tx-post-overly--lg {
    margin-left: 0; } }
@media (max-width: 1199px) {
  .category-news__wrap .tx-post-overly--lg .post-thumb {
    height: 440px; } }
@media (max-width: 1199px) {
  .category-news__wrap .tx-post-overly--lg .post-title {
    font-size: 26px; } }
@media (max-width: 767px) {
  .category-news__wrap .tx-post-overly--lg .post-title {
    font-size: 22px; } }
@media (max-width: 1199px) {
  .category-news .wrapper.pr-10 {
    padding-right: 0; } }

@media only screen and (min-width: 1200px) and (max-width: 1500px) {
  .country-news__right.ml-none-30 {
    margin-left: -40px; } }
@media (max-width: 1199px) {
  .country-news__right.ml-none-30 {
    margin-left: 0; } }
@media (max-width: 1199px) {
  .country-news .md-order-3 {
    order: 3 !important; } }
.country-news .tx-post-overly--sm .post-title {
  font-size: 16px;
  text-transform: capitalize;
  font-weight: 500; }
  @media (max-width: 1199px) {
    .country-news .tx-post-overly--sm .post-title {
      font-size: 30px; } }
  @media (max-width: 991px) {
    .country-news .tx-post-overly--sm .post-title {
      font-size: 30px; } }
  @media (max-width: 767px) {
    .country-news .tx-post-overly--sm .post-title {
      font-size: 24px; } }
@media (max-width: 1199px) {
  .country-news .tx-post-overly--sm .post-thumb {
    height: 400px; }
    .country-news .tx-post-overly--sm .post-thumb img {
      height: 100%;
      object-fit: cover; } }

.tx-post__nav {
  padding: 13px 25px;
  padding-top: 1px;
  background-color: #F9F9F9;
  border: 0;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  display: flex;
  justify-content: space-between; }
  @media (max-width: 991px) {
    .tx-post__nav {
      justify-content: inherit; } }
  .tx-post__nav .nav-item {
    margin-top: 10px; }
    .tx-post__nav .nav-item .nav-link {
      border: 0;
      font-size: 18px;
      font-family: var(--font-title);
      color: #6D6E6E;
      padding: 0; }
      .tx-post__nav .nav-item .nav-link i {
        font-size: 15px;
        margin-right: 5px; }
      .tx-post__nav .nav-item .nav-link.active {
        color: var(--color-primary);
        background-color: transparent; }
    @media (max-width: 991px) {
      .tx-post__nav .nav-item:not(:last-child) {
        margin-right: 35px; } }
    @media (max-width: 767px) {
      .tx-post__nav .nav-item:not(:last-child) {
        margin-right: 20px; } }
  .tx-post__nav.style-2 .nav-item .nav-link.active {
    color: var(--color-black); }
  @media (max-width: 1199px) {
    .tx-post__nav.style-2 .nav-item .nav-link {
      font-size: 16px; }
      .tx-post__nav.style-2 .nav-item .nav-link i {
        font-size: 12px; } }
.tx-post__item:not(:last-child) {
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--color-border-2); }
.tx-post__item .post-thumb {
  width: 105px;
  height: 105px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  overflow: hidden;
  margin-right: 20px; }
  .tx-post__item .post-thumb img {
    height: 100%;
    object-fit: cover; }
.tx-post__item .post-content {
  width: calc(100% - 125px); }
.tx-post__item .post-title {
  margin-bottom: 5px;
  font-weight: 500; }
  .tx-post__item .post-title a {
    color: var(--color-black); }
.tx-post__video-post {
  padding: 10px;
  box-shadow: 0px 0px 14px rgba(0, 0, 0, 0.08); }
  @media (max-width: 767px) {
    .tx-post__video-post {
      display: inherit;
      padding: 20px; } }
  .tx-post__video-post .post-thumb {
    width: 187px;
    height: 136px;
    margin-right: 30px;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px; }
    .tx-post__video-post .post-thumb img {
      height: 100%;
      object-fit: cover; }
    @media (max-width: 767px) {
      .tx-post__video-post .post-thumb {
        margin-right: 0;
        width: 100%;
        height: 200px; } }
  .tx-post__video-post .post-content {
    width: calc(100% - 217px); }
    @media (max-width: 767px) {
      .tx-post__video-post .post-content {
        width: 100%;
        margin-top: 20px; } }
  .tx-post__video-post .post-title {
    font-weight: 500; }
    @media (max-width: 767px) {
      .tx-post__video-post .post-title {
        font-size: 24px; } }
    .tx-post__video-post .post-title a {
      color: var(--color-black); }
  @media (max-width: 991px) {
    .tx-post__video-post__item--lg .post-thumb::before {
      height: 100%; } }
.tx-post__video-post-big {
  padding: 13px 15px;
  padding-right: 20px; }
  .tx-post__video-post-big .post-thumb {
    width: 240px;
    height: 166px;
    margin-right: 32px;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px; }
    @media only screen and (min-width: 1200px) and (max-width: 1500px) {
      .tx-post__video-post-big .post-thumb {
        width: 187px;
        height: 136px;
        margin-right: 30px; } }
    @media (max-width: 767px) {
      .tx-post__video-post-big .post-thumb {
        margin-right: 0;
        width: 100%;
        height: 200px; } }
  .tx-post__video-post-big .post-content {
    width: calc(100% - 272px); }
    @media only screen and (min-width: 1200px) and (max-width: 1500px) {
      .tx-post__video-post-big .post-content {
        width: calc(100% - 217px); } }
    @media (max-width: 767px) {
      .tx-post__video-post-big .post-content {
        width: 100%; } }
  .tx-post__video-post-big .post-title {
    font-size: 24px; }
    @media only screen and (min-width: 1200px) and (max-width: 1500px) {
      .tx-post__video-post-big .post-title {
        font-size: 18px; } }
@media (max-width: 991px) {
  .tx-post__content .tx-post-overly .post-content {
    padding: 40px; } }
@media (max-width: 767px) {
  .tx-post__content .tx-post-overly .post-content {
    padding: 30px; } }
@media (max-width: 991px) {
  .tx-post__content .tx-post-overly .post-thumb {
    height: 400px; }
    .tx-post__content .tx-post-overly .post-thumb img {
      height: 100%;
      object-fit: cover; } }

.carousel-post__item .post-thumb {
  width: 90px;
  height: 90px;
  height: 90px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  position: unset;
  margin-right: 15px; }
  .carousel-post__item .post-thumb img {
    height: 100%;
    object-fit: cover; }
.carousel-post__item .post-number {
  position: absolute;
  top: 0;
  left: 60px;
  border-radius: 50%;
  width: 25px;
  height: 25px; }
.carousel-post__item .post-content {
  width: calc(100% - 105px); }
.carousel-post__item .post-title {
  margin-bottom: 4px;
  font-weight: 500; }
  .carousel-post__item .post-title a {
    text-decoration: underline; }
.carousel-post__item .author {
  color: var(--color-primary);
  font-size: 14px; }
.carousel-post__active .owl-nav {
  top: -55px; }

@media (max-width: 991px) {
  .tx-post__category {
    margin-right: 0; } }
@media (max-width: 991px) {
  .tx-post__recent-post {
    padding-left: 0;
    margin-right: 0; } }
.tx-post__category-item .post-thumb {
  width: 178px;
  height: 131px;
  margin-right: 20px;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px; }
  @media (max-width: 767px) {
    .tx-post__category-item .post-thumb {
      width: 120px; } }
  .tx-post__category-item .post-thumb img {
    height: 100%;
    object-fit: cover; }
.tx-post__category-item .post-title {
  font-size: 20px;
  font-weight: 600; }
  @media (max-width: 767px) {
    .tx-post__category-item .post-title {
      font-style: 18px; } }
.tx-post__category-item .post-content {
  width: calc(100% - 198px); }
  @media (max-width: 767px) {
    .tx-post__category-item .post-content {
      width: calc(100% - 140px); } }
.tx-post__category-item .post-cat {
  position: absolute;
  top: 6px;
  left: 6px; }
.tx-post__category-item--2 .post-thumb {
  width: 212px;
  height: 157px;
  margin-right: 27px; }
  @media only screen and (min-width: 1200px) and (max-width: 1500px) {
    .tx-post__category-item--2 .post-thumb {
      width: 178px;
      height: 131px;
      margin-right: 20px; } }
  @media (max-width: 767px) {
    .tx-post__category-item--2 .post-thumb {
      width: 120px;
      height: 120px;
      margin-right: 20px; } }
.tx-post__category-item--2 .post-date {
  margin-bottom: 6px;
  display: inline-block; }
.tx-post__category-item--2 .post-title {
  font-size: 21px; }
  @media only screen and (min-width: 1200px) and (max-width: 1500px) {
    .tx-post__category-item--2 .post-title {
      font-size: 16px; } }
  @media (max-width: 767px) {
    .tx-post__category-item--2 .post-title {
      font-size: 16px; } }
.tx-post__category-item--2 .post-content {
  width: calc(100% - 239px); }
  @media only screen and (min-width: 1200px) and (max-width: 1500px) {
    .tx-post__category-item--2 .post-content {
      width: calc(100% - 198px); } }
  @media (max-width: 767px) {
    .tx-post__category-item--2 .post-content {
      width: calc(100% - 140px); } }
.tx-post__category-item--3:not(:last-child) {
  margin-bottom: 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--color-border-2); }
.tx-post__category-item--3 .post-thumb {
  width: 117px;
  height: 100px; }
.tx-post__category-item--3 .post-content {
  width: calc(100% - 137px); }
.tx-post__category-item--3 .post-title {
  font-size: 17px; }
  @media (max-width: 1199px) {
    .tx-post__category-item--3 .post-title {
      font-size: 16px; } }
.tx-post__category-item--3 .post-meta {
  margin-top: 3px; }
@media (max-width: 1199px) {
  .tx-post__category-item--3 {
    width: 50%;
    padding-right: 20px;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
    border-bottom: 0 !important;
    margin-top: 25px; } }
@media (max-width: 767px) {
  .tx-post__category-item--3 {
    width: 100%; } }

.post-date {
  font-size: 15px;
  color: #989090;
  font-weight: 500; }
  .post-date i {
    margin-right: 5px; }

.brand__item {
  padding: 0 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60px; }
  @media (max-width: 767px) {
    .brand__item {
      padding: 0 20px; } }
.brand__column:not(:last-child) {
  border-right: 1px solid #F1EFEF; }
  @media (max-width: 991px) {
    .brand__column:not(:last-child) {
      border: 0; } }
.brand__column .brand__item {
  padding: 0 50px; }

.online-voating {
  padding: 50px 40px;
  box-shadow: 0px 4px 21px rgba(0, 0, 0, 0.06);
  position: relative;
  z-index: 1; }
  @media only screen and (min-width: 1200px) and (max-width: 1500px) {
    .online-voating__wrap.pl-90 {
      padding-left: 50px; } }
  @media (max-width: 1199px) {
    .online-voating__wrap.pl-90 {
      padding-left: 0; } }
  @media (max-width: 991px) {
    .online-voating__wrap.pl-90 {
      padding-left: 0; } }
  @media only screen and (min-width: 1200px) and (max-width: 1500px) {
    .online-voating__wrap.pl-50 {
      padding-left: 0; } }
  @media (max-width: 1199px) {
    .online-voating__wrap.pl-50 {
      padding-left: 0; } }
  @media (max-width: 991px) {
    .online-voating__wrap.pl-50 {
      padding-left: 0; } }
  .online-voating::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 118px;
    content: "";
    background-color: #F7F7F7;
    z-index: -1; }
  .online-voating__auote::before, .online-voating__auote::after {
    position: absolute;
    top: 40px;
    left: 35px;
    font-size: 30px;
    font-family: "Font Awesome 5 Pro";
    font-weight: 900;
    color: #ECECEC; }
  .online-voating__auote::before {
    content: "\f10d"; }
  .online-voating__auote::after {
    content: "\f10e";
    left: auto;
    right: 40px;
    top: 140px; }
  .online-voating__author {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    margin: auto;
    margin-bottom: 30px;
    overflow: hidden; }
  .online-voating__progress .progress {
    width: 105px;
    height: 34px;
    border-radius: 17px;
    -webkit-border-radius: 17px;
    -moz-border-radius: 17px;
    -ms-border-radius: 17px;
    -o-border-radius: 17px;
    position: relative;
    background-color: #EEEFF4; }
    .online-voating__progress .progress:not(:last-child) {
      margin-right: 33px; }
    .online-voating__progress .progress span {
      color: #fff;
      position: absolute;
      left: 15px;
      font-size: 16px; }
    .online-voating__progress .progress .number {
      font-size: 14px;
      right: 8px;
      left: auto;
      color: #221D1D; }
  .online-voating__progress .progress-bar {
    background-color: var(--color-primary); }
  @media only screen and (min-width: 1200px) and (max-width: 1500px) {
    .online-voating.style-2 {
      padding: 50px 25px; } }
  @media only screen and (min-width: 1200px) and (max-width: 1500px) {
    .online-voating.style-2 .online-voating__progress .progress:not(:last-child) {
      margin-right: 12px; } }

@media (max-width: 1199px) {
  .most-reading__post-item {
    height: 415px;
    margin-right: 0; } }
@media (max-width: 991px) {
  .most-reading__post-item {
    padding-left: 0; } }
.most-reading__post-item.tx-post-overly--sm .post-title {
  font-size: 20px; }
  @media (max-width: 1199px) {
    .most-reading__post-item.tx-post-overly--sm .post-title {
      font-size: 18px; } }
@media (max-width: 1199px) {
  .most-reading__post-item .post-content {
    padding: 25px; } }
@media (max-width: 991px) {
  .most-reading__post-item .post-content {
    padding: 40px; } }
@media (max-width: 767px) {
  .most-reading__post-item .post-content {
    padding: 30px; } }
.most-reading__post-item .post-thumb {
  height: 100%; }
  .most-reading__post-item .post-thumb img {
    height: 100%;
    object-fit: cover; }
@media (max-width: 1199px) {
  .most-reading__post-item .post-title {
    font-size: 22px; } }
@media (max-width: 991px) {
  .most-reading__post-item .post-title {
    font-size: 22px; } }
@media (max-width: 991px) {
  .most-reading__post-item.tx-post-overly .post-title {
    font-size: 32px; } }
@media (max-width: 767px) {
  .most-reading__post-item.tx-post-overly .post-title {
    font-size: 22px; } }
@media (max-width: 1199px) {
  .most-reading__post-right {
    margin-left: 0; } }

@media (max-width: 1199px) {
  .international-news__wrap {
    margin-right: 0px; } }
@media (max-width: 991px) {
  .international-news__wrap {
    margin-right: 0; } }
@media (max-width: 1199px) {
  .international-news .widget__wrap {
    margin-left: -70px; } }
@media (max-width: 991px) {
  .international-news .widget__wrap {
    margin-left: 0; } }
.international-news .tx-post-overly .post-title.fs-20 {
  font-size: 20px; }
  @media (max-width: 991px) {
    .international-news .tx-post-overly .post-title.fs-20 {
      font-size: 28px; } }
  @media (max-width: 767px) {
    .international-news .tx-post-overly .post-title.fs-20 {
      font-size: 22px; } }
@media only screen and (min-width: 1200px) and (max-width: 1500px) {
  .international-news .tx-post-overly .post-title.fs-24 {
    font-size: 20px; } }
.international-news .tx-post-overly .post-title.fs-28 {
  font-size: 28px; }
  @media (max-width: 767px) {
    .international-news .tx-post-overly .post-title.fs-28 {
      font-size: 22px; } }
@media (max-width: 991px) {
  .country-news .tx-post.tx-post-overly.tx-post-overly--sm {
    margin-top: 30px;
}
  .international-news .tx-post-overly {
    margin: 0; }.most-reading__post-item.tx-post.tx-post-overly.tx-post-overly--sm.ml-20 {
      margin: 0 !important;
  } }
@media only screen and (min-width: 1200px) and (max-width: 1500px) {
  .international-news .tx-post-overly.mr-none-75 {
    margin-right: -60px; } }
@media only screen and (min-width: 1200px) and (max-width: 1500px) {
  .international-news .tx-post-overly.mr-none-75 {
    margin-right: -60px; } }
@media only screen and (min-width: 1200px) and (max-width: 1500px) {
  .international-news .tx-post-overly.ml-78 {
    margin-left: 59px; } }
@media only screen and (min-width: 1200px) and (max-width: 1500px) {
  .international-news .tx-post-overly--md .post-content {
    padding: 25px; } }
@media (max-width: 1199px) {
  .international-news .tx-post-overly--md {
    margin-left: 0; } }
@media (max-width: 1199px) {
  .international-news .tx-post-overly--lg.mr-none-75 {
    margin-right: 0; } }

@media only screen and (min-width: 1200px) and (max-width: 1500px) {
  .category-post__slide .post-title {
    font-size: 18px; } }
@media (max-width: 1199px) {
  .category-post__slide .post-title {
    font-size: 18px; } }
.category-post__slide .owl-nav {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  display: flex;
  width: 100%; }
  .category-post__slide .owl-nav div {
    position: absolute;
    left: -20px;
    width: 40px;
    height: 40px;
    border: 2px solid #EAE6E6;
    color: var(--color-primary);
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s; }
    @media only screen and (min-width: 1200px) and (max-width: 1500px) {
      .category-post__slide .owl-nav div {
        left: -10px; } }
    @media (max-width: 1199px) {
      .category-post__slide .owl-nav div {
        left: -10px; } }
    .category-post__slide .owl-nav div:hover {
      border-color: var(--color-primary); }
    .category-post__slide .owl-nav div.owl-next {
      left: auto;
      right: -20px; }
      @media only screen and (min-width: 1200px) and (max-width: 1500px) {
        .category-post__slide .owl-nav div.owl-next {
          right: -10px; } }
      @media (max-width: 1199px) {
        .category-post__slide .owl-nav div.owl-next {
          right: -10px; } }

@media (max-width: 1199px) {
  .featured-news__item .post-content {
    padding-left: 0;
    margin-top: 30px; } }
.featured-news__item .post-title {
  font-size: 38px; }
  @media only screen and (min-width: 1200px) and (max-width: 1500px) {
    .featured-news__item .post-title {
      font-size: 22px; } }
  @media (max-width: 1199px) {
    .featured-news__item .post-title {
      font-size: 22px; } }
      .featured-news__item.featured-news__item--2 .post-thumb img {
        height: 468px;
    }
.featured-news__item .post-number {
  font-size: 20px;
  font-weight: 700;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  top: 18px;
  left: 14px; }
.featured-news__item--1 .post-number {
  background-color: #1874FF; }
.featured-news__item--2 .post-number {
  background-color: #06C547; }
@media only screen and (min-width: 1200px) and (max-width: 1500px) {
  .featured-news__item--2 {
    margin-top: 30px; } }
@media (max-width: 1199px) {
  .featured-news__item--2 {
    margin-top: 30px; } }

@media only screen and (min-width: 1200px) and (max-width: 1500px) {
  .featured__post--2 .tx-post-overly .post-content {
    padding: 25px; } }
@media only screen and (min-width: 1200px) and (max-width: 1500px) {
  .featured__post--3 .tx-post-overly--sm .post-content {
    padding: 20px; } }
@media (max-width: 1199px) {
  .featured__post--3 .tx-post-overly--sm .post-content {
    padding: 20px; } }
@media (max-width: 991px) {
  .featured__post--3 .tx-post-overly--sm .post-content {
    padding: 30px; } }
@media (max-width: 1199px) {
  .featured__post--3 .tx-post-overly--sm .post-cat {
    margin-bottom: 10px; } }
@media (max-width: 991px) {
  .featured__post--3 .tx-post-overly--sm .post-thumb {
    height: 200px; }
    .featured__post--3 .tx-post-overly--sm .post-thumb img {
      height: 100%;
      object-fit: cover; } }
@media (max-width: 1199px) {
  .featured__post--3 .post-thumb::before {
    height: calc(100% - 50%); } }
@media (max-width: 991px) {
  .featured__post--3 .post-thumb::before {
    height: calc(100% - 35%); } }
@media (max-width: 1199px) {
  .featured__post--3 .post-title {
    font-size: 26px; } }
@media (max-width: 1199px) {
  .featured__post--3 .post-meta {
    margin-top: 15px; } }
@media (max-width: 767px) {
  .featured__post--3 .tx-post-overly .post-thumb {
    height: 300px; }
    .featured__post--3 .tx-post-overly .post-thumb::before {
      height: 100%; }
    .featured__post--3 .tx-post-overly .post-thumb img {
      height: 100%;
      object-fit: cover; }
  .featured__post--3 .tx-post-overly .post-title {
    font-size: 20px;
    line-height: 1.4; } }
@media only screen and (min-width: 1200px) and (max-width: 1500px) {
  .featured__post-single .post-thumb::before {
    height: calc(100% - 40%); } }
@media (max-width: 1199px) {
  .featured__post-single .post-thumb::before {
    height: calc(100% - 40%); } }
@media (max-width: 991px) {
  .featured__post-single .post-thumb::before {
    height: calc(100% - 35%); } }
.featured__post-single .post-title.fs-28 {
  font-size: 28px; }
  @media only screen and (min-width: 1200px) and (max-width: 1500px) {
    .featured__post-single .post-title.fs-28 {
      font-size: 20px; } }
  @media (max-width: 1199px) {
    .featured__post-single .post-title.fs-28 {
      font-size: 25px; } }
@media (max-width: 1199px) {
  .featured__post-single .post-meta {
    margin-top: 15px; } }

.columnist__thumb {
  position: relative; }
  .columnist__thumb::before {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    content: "";
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s; }
.columnist__item:hover .columnist__thumb::before {
  opacity: 1;
  visibility: visible;
  opacity: .7; }
.columnist__content {
  position: absolute;
  bottom: 0;
  padding: 20px;
  padding-bottom: 30px;
  text-align: center;
  width: 100%; }
  .columnist__content span {
    display: block;
    font-size: 14px;
    line-height: 27px;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s; }
.columnist__name {
  font-size: 19px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 7px;
  -webkit-transform: translateY(10px);
  -ms-transform: translateY(10px);
  transform: translateY(10px);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s; }
.columnist__item:hover .columnist__name {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  transition-delay: .2s; }
.columnist__desc {
  color: #919191;
  text-transform: capitalize;
  -webkit-transform: translateY(10px);
  -ms-transform: translateY(10px);
  transform: translateY(10px);
  opacity: 0;
  visibility: hidden; }
.columnist__item:hover .columnist__desc {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  transition-delay: .3s; }
.columnist__tag {
  color: var(--color-primary);
  font-weight: 500;
  -webkit-transform: translateY(5px);
  -ms-transform: translateY(5px);
  transform: translateY(5px);
  opacity: 0;
  visibility: hidden; }
.columnist__item:hover .columnist__tag {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  transition-delay: .4s; }
.columnist__social-wrap {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  align-items: center; }
  .columnist__social-wrap .plus-icon {
    width: 40px;
    height: 40px;
    background-color: #fff;
    color: var(--color-primary);
    font-size: 20px;
    display: inline-block;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s; }
.columnist__item:hover .plus-icon {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg); }
.columnist__item:hover .social {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0); }
.columnist__social {
  margin-top: 15px;
  list-style: none;
  -webkit-transform: translateY(15px);
  -ms-transform: translateY(15px);
  transform: translateY(15px);
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  opacity: 0;
  visibility: hidden; }
  .columnist__social li:not(:last-child) {
    margin-bottom: 5px; }
  .columnist__social li a {
    color: #DBDFDF;
    font-size: 15px; }
    .columnist__social li a:hover {
      color: var(--color-primary); }
.columnist__item:hover .columnist__social {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0); }
.columnist__item.style-2 .columnist__thumb::before {
  display: none; }
.columnist__item.style-2 .columnist__social li a {
  color: #4E494A; }
  .columnist__item.style-2 .columnist__social li a:hover {
    color: var(--color-primary); }
.columnist__item.style-2 .columnist__name {
  font-size: 18px;
  margin-bottom: 5px; }
.columnist__item.style-2 .columnist__desc {
  font-size: 14px;
  color: #fff; }
.columnist__item.style-2 .columnist__content {
  padding-bottom: 40px; }
.columnist__bg {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 0;
  margin: auto;
  text-align: center;
  opacity: 0;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  -webkit-transform: translateY(10px);
  -ms-transform: translateY(10px);
  transform: translateY(10px); }
.columnist__item:hover .columnist__bg {
  opacity: 1;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0); }

.sports-post__item:not(:last-child) {
  margin-bottom: 30px; }
.sports-post__item .post-thumb {
  width: 285px;
  height: 225px;
  margin-right: 37px; }
  @media (max-width: 1199px) {
    .sports-post__item .post-thumb {
      width: 200px;
      height: 200px;
      margin-right: 30px; } }
  @media (max-width: 767px) {
    .sports-post__item .post-thumb {
      width: 100%;
      height: 200px;
      margin-right: 0; } }
  .sports-post__item .post-thumb img {
    height: 100%;
    object-fit: cover; }
  .sports-post__item .post-thumb .post-cat {
    position: absolute;
    top: 13px;
    left: 8px;
    font-size: 13px; }
.sports-post__item .post-title {
  font-size: 26px;
  margin-bottom: 12px; }
  @media (max-width: 1199px) {
    .sports-post__item .post-title {
      font-size: 20px;
      margin-bottom: 8px; } }
.sports-post__item p {
  font-size: 15px;
  line-height: 27px;
  color: #8A8B90; }
  @media (max-width: 1199px) {
    .sports-post__item p br {
      display: none; } }
.sports-post__item .post-content {
  width: calc(100% - 322px); }
  @media (max-width: 1199px) {
    .sports-post__item .post-content {
      width: calc(100% - 230px); } }
  @media (max-width: 767px) {
    .sports-post__item .post-content {
      width: 100%;
      margin-top: 20px; } }
.sports-post__item .post-meta {
  margin-top: 13px;
  padding-top: 10px;
  border-top: 1px solid var(--color-border-2); }
.sports-post__item--2 .post-thumb {
  width: 220px;
  height: 178px;
  margin-right: 30px; }
  @media (max-width: 767px) {
    .sports-post__item--2 .post-thumb {
      width: 1005px;
      height: 200px;
      margin-right: 0; } }
@media (max-width: 1199px) {
  .sports-post__item--2 .post-title {
    font-size: 19px; } }
.sports-post__item--2 .post-content {
  width: calc(100% - 250px); }
  @media (max-width: 767px) {
    .sports-post__item--2 .post-content {
      width: 1005px;
      margin-top: 20px; } }
.sports-post__slide {
  padding: 0 70px; }
  @media (max-width: 991px) {
    .sports-post__slide {
      padding: 0 15px; } }
  .sports-post__slide .owl-dots {
    position: absolute;
    left: 0;
    bottom: 30px;
    right: 0;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center; }
    .sports-post__slide .owl-dots div {
      width: 12px;
      height: 2px;
      background-color: rgba(var(--color-white-rgb), 0.5);
      margin: 0 5px;
      -webkit-transition: 0.3s;
      -o-transition: 0.3s;
      transition: 0.3s; }
      .sports-post__slide .owl-dots div.active {
        width: 15px;
        background-color: rgba(var(--color-white-rgb), 1); }
.sports-post__slide-item .post-content {
  left: 0;
  right: 0;
  margin: auto;
  padding-bottom: 70px; }
  @media only screen and (min-width: 1200px) and (max-width: 1500px) {
    .sports-post__slide-item .post-content {
      width: 100%; } }
  @media (max-width: 1199px) {
    .sports-post__slide-item .post-content {
      width: 100%;
      padding-left: 20px;
      padding-right: 20px; } }
.sports-post__slide-item .post-thumb.h-540 {
  height: 540px; }
  @media only screen and (min-width: 1200px) and (max-width: 1500px) {
    .sports-post__slide-item .post-thumb.h-540 {
      height: 400px; }
      .sports-post__slide-item .post-thumb.h-540::before {
        height: calc(100% - 40%); } }
  @media (max-width: 1199px) {
    .sports-post__slide-item .post-thumb.h-540 {
      height: 350px; }
      .sports-post__slide-item .post-thumb.h-540::before {
        height: calc(100% - 22%); } }
  .sports-post__slide-item .post-thumb.h-540 img {
    height: 100%;
    object-fit: cover; }
@media (max-width: 1199px) {
  .sports-post__slide-item.tx-post-overly .post-title.fs-30 {
    font-size: 22px; } }
.sports-post__right .post-thumb.h-540, .sports-post__left .post-thumb.h-540 {
  height: 540px; }
  @media only screen and (min-width: 1200px) and (max-width: 1500px) {
    .sports-post__right .post-thumb.h-540, .sports-post__left .post-thumb.h-540 {
      height: 400px; }
      .sports-post__right .post-thumb.h-540::before, .sports-post__left .post-thumb.h-540::before {
        height: calc(100% - 40%); } }
  @media (max-width: 1199px) {
    .sports-post__right .post-thumb.h-540, .sports-post__left .post-thumb.h-540 {
      height: 350px; }
      .sports-post__right .post-thumb.h-540::before, .sports-post__left .post-thumb.h-540::before {
        height: calc(100% - 22%); } }
  .sports-post__right .post-thumb.h-540 img, .sports-post__left .post-thumb.h-540 img {
    height: 100%;
    object-fit: cover; }
@media (max-width: 1199px) {
  .sports-post__right .post-content, .sports-post__left .post-content {
    padding: 25px; } }
@media (max-width: 1199px) {
  .sports-post__right.tx-post-overly--md .post-title, .sports-post__left.tx-post-overly--md .post-title {
    font-size: 18px; } }
@media (max-width: 991px) {
  .sports-post__right, .sports-post__left {
    margin: 0; } }
@media (max-width: 991px) {
  .sports-post__left {
    margin-left: 15px; } }
@media (max-width: 767px) {
  .sports-post__left {
    margin-right: 15px; } }
@media (max-width: 991px) {
  .sports-post__right {
    margin-right: 15px; } }
@media (max-width: 767px) {
  .sports-post__right {
    margin-left: 15px; } }
.sports-post__single .post-title {
  font-size: 26px;
  margin-bottom: 15px; }
  @media (max-width: 1199px) {
    .sports-post__single .post-title {
      font-size: 19px; } }
.sports-post__single .post-thumb {
  height: 300px; }
  @media (max-width: 1199px) {
    .sports-post__single .post-thumb {
      height: 200px; } }
  .sports-post__single .post-thumb img {
    height: 100%;
    object-fit: cover; }
.sports-post__single p {
  font-size: 15px;
  line-height: 26px;
  color: #8A8B90; }
.sports-post__single .popup-video.style-2 {
  color: var(--color-primary-2); }
.sports-post__single.style-2 .post-thumb {
  height: 330px; }
  .sports-post__single.style-2 .post-thumb img {
    height: 100%;
    object-fit: cover; }
  @media (max-width: 1199px) {
    .sports-post__single.style-2 .post-thumb {
      height: 200px; } }
.sports-post__single.style-2 .post-content {
  padding: 25px 23px;
  border: 2px solid var(--color-border-3);
  margin-top: -2px; }
.sports-post__single-xs {
  padding-top: 25px;
  margin-top: 25px;
  border-top: 1px solid var(--color-border);
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
  border-bottom: 0 !important; }
  @media (max-width: 1199px) {
    .sports-post__single-xs {
      width: 100%;
      padding-right: 0; }
      .sports-post__single-xs .post-thumb {
        width: 100%;
        height: 100px; }
      .sports-post__single-xs .post-content {
        width: 100%;
        margin-top: 10px; } }
@media (max-width: 991px) {
  .sports-post .sp-order2 {
    order: 3; } }
@media (max-width: 991px) {
  .sports-post .sp-order3 {
    order: 2; } }

@media (max-width: 991px) {
  .newsletter__form-wrap {
    padding-left: 0; } }
@media (max-width: 991px) {
  .newsletter__content {
    text-align: center;
    margin-bottom: 20px; } }
.newsletter__title {
  font-size: 29px;
  margin-bottom: 6px;
  font-weight: 600; }
.newsletter__title-sub {
  font-size: 18px;
  color: #8A8B90; }
.newsletter__form {
  max-width: 606px;
  position: relative; }
  @media (max-width: 991px) {
    .newsletter__form {
      max-width: 100%; } }
  .newsletter__form input {
    width: 100%;
    height: 68px;
    background-color: var(--color-white);
    box-shadow: 0px 10px 15px rgba(221, 221, 221, 0.24);
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    border: 0;
    padding: 0 20px;
    padding-left: 77px;
    font-size: 18px;
    color: var(--color-black); }
  .newsletter__form button {
    position: absolute;
    top: 0;
    right: 0;
    width: 198px;
    height: 68px;
    background-color: var(--color-primary-2);
    border-radius: 2px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    -o-border-radius: 2px;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase; }
    @media (max-width: 767px) {
      .newsletter__form button {
        position: unset;
        width: 100%;
        height: 60px;
        margin-top: 10px; } }
  .newsletter__form.style-2 input {
    height: 45px;
    background-color: var(--color-white);
    box-shadow: none;
    border-radius: 2px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    -o-border-radius: 2px;
    padding: 0 20px;
    padding-left: 55px;
    font-size: 15px; }
    @media only screen and (min-width: 1200px) and (max-width: 1500px) {
      .newsletter__form.style-2 input {
        padding-left: 18px; } }
  .newsletter__form.style-2 button {
    position: absolute;
    top: 0;
    right: 0;
    width: 102px;
    height: 45px;
    background-color: var(--color-primary-3);
    font-weight: 500;
    letter-spacing: 0px;
    text-transform: capitalize; }
  .newsletter__form.style-3 button {
    background-color: var(--color-primary); }
.newsletter__form-icon {
  position: absolute;
  left: 30px;
  top: 19px;
  font-size: 18px;
  padding-right: 15px; }
  @media only screen and (min-width: 1200px) and (max-width: 1500px) {
    .newsletter__form-icon {
      display: none; } }
  .newsletter__form-icon::before {
    position: absolute;
    top: 7px;
    right: 0;
    width: 1px;
    height: 15px;
    background-color: #949392;
    content: ""; }
.newsletter__form.style-2 .newsletter__form-icon {
  font-size: 14px;
  padding-right: 13px;
  top: 9px;
  left: 18px; }
  .newsletter__form.style-2 .newsletter__form-icon::before {
    height: 13px;
    top: 8px; }

@media only screen and (min-width: 1200px) and (max-width: 1500px) {
  .editors-pick .tx-post-overly--md .post-thumb.hxl-590 {
    height: 544px; } }
@media (max-width: 1199px) {
  .editors-pick .tx-post-overly--md .post-thumb.hxl-590 {
    height: 543px; } }
@media (max-width: 991px) {
  .editors-pick .tx-post-overly--md .post-thumb.hxl-590 {
    height: 300px; } }
@media (max-width: 1199px) {
  .editors-pick {
    padding-right: 0; } }

@media (max-width: 1199px) {
  .ep-post-col:nth-child(2) {
    order: 3; } }

@media (max-width: 1199px) {
  .ep-post-col:nth-child(3) {
    order: 2; } }

@media (max-width: 991px) {
  .most-popular__right {
    padding-left: 0; } }
@media (max-width: 991px) {
  .most-popular__right .post-thumb {
    height: 300px;
    margin-right: 0; }
    .most-popular__right .post-thumb img {
      height: 100%;
      object-fit: cover; } }
@media (max-width: 991px) {
  .most-popular__right .post-title {
    font-size: 30px; } }
@media (max-width: 767px) {
  .most-popular__right .post-title {
    font-size: 20px; } }
@media (max-width: 991px) {
  .most-popular__right .post-content {
    margin-top: 15px; } }

@media (max-width: 1199px) {
  .politics-post-left__wrap {
    margin-right: 0; } }

@media (max-width: 1199px) {
  .politics-sidebar {
    padding-left: 0; } }

.scroll-post {
  height: 553px; }
  .scroll-post.h-490 {
    height: 490px; }
  .scroll-post.h-507 {
    height: 507px;
    margin-right: 0; }
  .scroll-post.h-425 {
    height: 425px; }

.politics-post__tab-wrap .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  height: 180px; }

.politics-post__head {
  padding-bottom: 12px;
  border-bottom: 1px solid var(--color-border); }
  .politics-post__head .tx-section-heading {
    margin-bottom: 0;
    padding-bottom: 0;
    border: 0; }
  .politics-post__head select {
    height: auto;
    padding-right: 14px;
    background-image: url(../img/select-arrow-black.png);
    background-position: calc(100% - 0px) 50%;
    border: 0; }
.politics-post__item {
  position: relative; }
  .politics-post__item .tx-post .post-number{
      background-color: var(--color-primary-3);
  }
  .politics-post__item:not(:last-child) {
    margin-bottom: 31px; }
    @media (max-width: 767px) {
      .politics-post__item:not(:last-child) {
        margin-bottom: 20px; } }
  .politics-post__item .post-thumb {
    width: 115px;
    height: 115px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    margin-right: 30px;
    position: unset; }
    .politics-post__item .post-thumb .post-number {
      width: 26px;
      height: 26px;
      border-radius: 50%;
      -webkit-border-radius: 50%;
      -moz-border-radius: 50%;
      -ms-border-radius: 50%;
      -o-border-radius: 50%;
      left: 80px; }
      .politics-post__item.tx-post .post-number{
        background-color: var(--color-primary-3);
      }
    @media (max-width: 767px) {
      .politics-post__item .post-thumb {
        width: 100px;
        height: 100px;
        margin-right: 20px; } }
  .politics-post__item .post-content {
    width: calc(100% - 145px); }
    @media only screen and (min-width: 1200px) and (max-width: 1500px) {
      .politics-post__item .post-content {
        width: 100%;
        margin-top: 15px; } }
    @media (max-width: 767px) {
      .politics-post__item .post-content {
        width: calc(100% - 120px); } }
  .politics-post__item .post-title {
    font-size: 16px;
    margin-bottom: 7px; }
  .politics-post__item--2:not(:last-child) {
    margin-bottom: 35px; }
  .politics-post__item--2 .post-thumb {
    width: 110px;
    height: 110px;
    margin-right: 14px; }
  .politics-post__item--2 .post-content {
    width: calc(100% - 124px); }
    @media only screen and (min-width: 1200px) and (max-width: 1500px) {
      .politics-post__item--2 .post-content {
        width: 100%; } }
  .politics-post__item--2 .post-title {
    font-size: 15px; }
  .politics-post__item--3:not(:last-child) {
    margin-bottom: 45px; }
  .politics-post__item--3 .post-thumb {
    width: 120px;
    height: 120px;
    margin-right: 16px; }
  .politics-post__item--3 .post-content {
    width: calc(100% - 136px); }
  .politics-post__item--3 .post-title {
    font-size: 16px; }
  .politics-post__item.hero-post-item .post-content {
    margin-top: 0;
    width: calc(100% - 145px); }
  .politics-post__item.hero-post-item .post-title a {
    color: #fff; }
    @media (max-width: 991px) {
      .politics-post__item.hero-post-item .post-title a {
        color: #000; } }
  .politics-post__item.hero-post-item .post-meta--4 li::before {
    top: 9px; }
  @media (max-width: 991px) {
    .politics-post__item.hero-post-item .post-meta--4 li {
      color: #999; } }
.politics-post__slide-item.tx-post-overly .post-thumb::before {
  height: calc(100% - 40%); }
  @media (max-width: 767px) {
    .politics-post__slide-item.tx-post-overly .post-thumb::before {
      height: calc(100% - 15%); } }
@media (max-width: 767px) {
  .politics-post__slide-item.tx-post-overly .post-thumb {
    height: 380px; }
    .politics-post__slide-item.tx-post-overly .post-thumb img {
      height: 100%;
      object-fit: cover; } }
@media only screen and (min-width: 1200px) and (max-width: 1500px) {
  .politics-post__slide-item.tx-post-overly .post-content .post-title {
    font-size: 24px; } }
@media (max-width: 767px) {
  .politics-post__slide-item.tx-post-overly .post-content .post-title {
    font-size: 18px; } }
@media (max-width: 1199px) {
  .politics-post__slide-item.tx-post-overly .post-content {
    width: calc(100% - 10%); } }
@media (max-width: 767px) {
  .politics-post__slide-item.tx-post-overly .post-content {
    width: 100%;
    padding: 25px; } }

.subscribe__form-wrap {
  background-color: #F7F7F7;
  padding: 50px 32px 30px 32px;
  text-align: center;
  min-height: 360px; }
  @media only screen and (min-width: 1200px) and (max-width: 1500px) {
    .subscribe__form-wrap {
      padding: 50px 28px 30px 28px; } }
  .subscribe__form-wrap p {
    color: #929292;
    font-style: 14px;
    line-height: 25px; }
.subscribe__title {
  font-size: 24px;
  margin-bottom: 36px; }
  @media only screen and (min-width: 1200px) and (max-width: 1500px) {
    .subscribe__title {
      font-size: 20px; } }
  .subscribe__title span {
    color: var(--color-primary); }

.politics-post__video .post-thumb {
  width: 245px;
  height: 206px;
  margin-right: 28px; }
  @media only screen and (min-width: 1200px) and (max-width: 1500px) {
    .politics-post__video .post-thumb {
      width: 200px;
      height: 188px;
      margin-right: 20px; } }
  @media (max-width: 767px) {
    .politics-post__video .post-thumb {
      width: 100%;
      height: 200px;
      margin-right: 0; } }
  .politics-post__video .post-thumb img {
    height: 100%;
    object-fit: cover; }
.politics-post__video .post-content {
  width: calc(100% - 273px); }
  @media only screen and (min-width: 1200px) and (max-width: 1500px) {
    .politics-post__video .post-content {
      width: calc(100% - 220px); } }
  @media (max-width: 767px) {
    .politics-post__video .post-content {
      width: 100%;
      margin-top: 20px; } }
.politics-post__video .post-title {
  font-size: 24px;
  margin-bottom: 15px; }
  @media only screen and (min-width: 1200px) and (max-width: 1500px) {
    .politics-post__video .post-title {
      font-size: 18px;
      margin-bottom: 7px; } }
.politics-post__video .post-meta {
  padding-top: 13px;
  margin-top: 20px;
  border-top: 1px solid var(--color-border-2); }
  @media only screen and (min-width: 1200px) and (max-width: 1500px) {
    .politics-post__video .post-meta {
      padding-top: 0;
      margin-top: 10px;
      border: 0; } }

@media only screen and (min-width: 1200px) and (max-width: 1500px) {
  .politics-video-post__wrap {
    margin-right: 0; } }

.podcast {
  background-color: #F7F7F7;
  padding: 50px 32px 50px 32px;
  min-height: 360px; }
  .podcast__title {
    font-size: 24px;
    margin-bottom: 20px; }
    @media only screen and (min-width: 1200px) and (max-width: 1500px) {
      .podcast__title {
        font-size: 20px; } }
    .podcast__title span {
      color: var(--color-primary); }
  .podcast p {
    color: #929292;
    font-size: 14px;
    line-height: 25px; }

.politics-post__tab-wrap {
  padding: 20px;
  box-shadow: 0px 7px 24px rgba(0, 0, 0, 0.07);
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px; }
  .politics-post__tab-wrap .tab-post__nav .nav-item .nav-link {
    font-family: var(--font-body); }
@media (max-width: 1199px) {
  .politics-post__wrap {
    display: flex;
    flex-wrap: wrap; } }
@media (max-width: 1199px) {
  .politics-post__tab-wrap .politics-post__item {
    width: 50%;
    padding-right: 20px; } }
@media (max-width: 767px) {
  .politics-post__tab-wrap .politics-post__item {
    width: 100%;
    padding-right: 0; } }
.politics-post__nav-wrap {
  border-bottom: 1px solid var(--color-border); }
  .politics-post__nav-wrap .tx-section-heading {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: 0; }
.politics-post__nav {
  border: 0; }
  @media (max-width: 767px) {
    .politics-post__nav {
      margin-top: 20px; } }
  .politics-post__nav .nav-item:not(:last-child) {
    margin-right: 60px; }
    @media (max-width: 991px) {
      .politics-post__nav .nav-item:not(:last-child) {
        margin-right: 25px; } }
  .politics-post__nav .nav-item .nav-link {
    font-size: 15px;
    text-transform: uppercase;
    color: #949392;
    font-weight: 500;
    padding: 0;
    padding-bottom: 20px;
    position: relative;
    border: 0; }
    @media (max-width: 767px) {
      .politics-post__nav .nav-item .nav-link {
        padding-bottom: 10px; } }
    .politics-post__nav .nav-item .nav-link::before {
      position: absolute;
      bottom: 0;
      left: 50%;
      -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
      transform: translateX(-50%);
      width: 100%;
      height: 2px;
      content: "";
      background-color: var(--color-primary);
      opacity: 0;
      -webkit-transition: 0.3s;
      -o-transition: 0.3s;
      transition: 0.3s; }
      @media (max-width: 767px) {
        .politics-post__nav .nav-item .nav-link::before {
          display: none; } }
    .politics-post__nav .nav-item .nav-link::after {
      position: absolute;
      bottom: 1px;
      left: 50%;
      -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
      transform: translateX(-50%);
      border-left: 6px solid transparent;
      border-top: 6px solid transparent;
      border-right: 6px solid transparent;
      border-bottom: 6px solid var(--color-primary);
      content: "";
      opacity: 0;
      -webkit-transition: 0.3s;
      -o-transition: 0.3s;
      transition: 0.3s; }
      @media (max-width: 767px) {
        .politics-post__nav .nav-item .nav-link::after {
          display: none; } }
    .politics-post__nav .nav-item .nav-link.active {
      border: 0;
      color: #121416;
      background-color: transparent; }
      .politics-post__nav .nav-item .nav-link.active::before, .politics-post__nav .nav-item .nav-link.active::after {
        opacity: 1; }
.politics-post__slide > .owl-nav {
  position: absolute;
  bottom: 84px;
  right: 48px; }
  .politics-post__slide > .owl-nav div {
    width: 56px;
    height: 36px;
    display: flex;
    color: var(--color-white);
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    -webkit-border-radius: 18px;
    -moz-border-radius: 18px;
    -ms-border-radius: 18px;
    -o-border-radius: 18px;
    background-color: rgba(255, 255, 255, 0.2);
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s; }
    .politics-post__slide > .owl-nav div:hover {
      background-color: var(--color-primary-3); }
    .politics-post__slide > .owl-nav div.owl-next {
      margin-top: 15px; }
@media (max-width: 991px) {
  .politics-post__content .tx-post-overly .post-content {
    width: 100%; } }
@media (max-width: 991px) {
  .politics-post__content .tx-post-overly .post-title {
    font-size: 20px; } }

.politics-post-sm__item .post-thumb {
  width: 130px;
  height: 96px;
  margin-right: 23px; }
  @media (max-width: 1199px) {
    .politics-post-sm__item .post-thumb {
      width: 100%;
      height: 130px;
      margin-right: 0; } }
  @media (max-width: 767px) {
    .politics-post-sm__item .post-thumb {
      height: 170px; } }
  .politics-post-sm__item .post-thumb img {
    height: 100%;
    object-fit: cover; }
.politics-post-sm__item .post-content {
  width: calc(100% - 153px); }
  @media (max-width: 1199px) {
    .politics-post-sm__item .post-content {
      width: 100%;
      margin-top: 15px; } }

.politics-post-xs__item:not(:last-child) {
  margin-bottom: 30px; }
.politics-post-xs__item .post-thumb {
  width: 113px;
  height: 104px;
  margin-right: 27px; }
  @media only screen and (min-width: 1200px) and (max-width: 1500px) {
    .politics-post-xs__item .post-thumb {
      width: 100px;
      height: 100px;
      margin-right: 15px; } }
  .politics-post-xs__item .post-thumb img {
    height: 100%;
    object-fit: cover; }
.politics-post-xs__item .post-title {
  margin-bottom: 4px; }
.politics-post-xs__item .post-content {
  width: calc(100% - 153px); }
  @media only screen and (min-width: 1200px) and (max-width: 1500px) {
    .politics-post-xs__item .post-content {
      width: calc(100% - 115px); } }

.testimonial {
  position: relative;
  z-index: 1;
  padding-top: 74px;
  padding-bottom: 96px; }
  .testimonial::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(var(--color-white-rgb), 0.94);
    z-index: -1;
    content: ""; }
  .testimonial__slide {
    border: 6px solid var(--color-primary);
    padding: 45px 170px;
    position: relative; }
    @media (max-width: 991px) {
      .testimonial__slide {
        padding: 40px 120px; } }
    @media (max-width: 767px) {
      .testimonial__slide {
        padding: 40px 20px; } }
    .testimonial__slide .quote {
      position: absolute; }
      @media (max-width: 767px) {
        .testimonial__slide .quote {
          display: none; } }
      .testimonial__slide .quote--1 {
        top: 45px;
        left: 45px; }
      .testimonial__slide .quote--2 {
        right: 45px;
        bottom: 45px; }
  .testimonial__slide-active .owl-dots {
    display: flex;
    justify-content: center;
    position: absolute;
    bottom: -90px;
    left: 0;
    right: 0;
    margin: auto; }
    .testimonial__slide-active .owl-dots div {
      width: 6px;
      height: 6px;
      background-color: #D8D2D2;
      border-radius: 50%;
      -webkit-border-radius: 50%;
      -moz-border-radius: 50%;
      -ms-border-radius: 50%;
      -o-border-radius: 50%;
      margin: 0 10px;
      position: relative; }
      .testimonial__slide-active .owl-dots div::before {
        position: absolute;
        top: -8px;
        left: -8px;
        width: 22px;
        height: 22px;
        border-radius: 50%;
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        -ms-border-radius: 50%;
        -o-border-radius: 50%;
        border: 1px solid var(--color-primary-3);
        content: "";
        opacity: 0;
        -webkit-transition: 0.3s;
        -o-transition: 0.3s;
        transition: 0.3s;
        -webkit-transform: scale(0.8);
        -ms-transform: scale(0.8);
        transform: scale(0.8); }
      .testimonial__slide-active .owl-dots div.active {
        background-color: var(--color-primary-3); }
        .testimonial__slide-active .owl-dots div.active::before {
          opacity: 1;
          -webkit-transform: scale(1);
          -ms-transform: scale(1);
          transform: scale(1); }
  .testimonial__item {
    text-align: center; }
    .testimonial__item h3 {
      font-size: 32px;
      margin-bottom: 15px; }
      @media only screen and (min-width: 1200px) and (max-width: 1500px) {
        .testimonial__item h3 {
          font-size: 26px; } }
      @media (max-width: 991px) {
        .testimonial__item h3 {
          font-size: 26px; } }
      @media (max-width: 767px) {
        .testimonial__item h3 {
          font-size: 22px; } }
    .testimonial__item span {
      font-size: 15px; }
      .testimonial__item span .date {
        color: #7A838D; }
      .testimonial__item span .name {
        font-weight: 500;
        color: var(--color-primary--3); }

.hero-post {
  margin: 0 60px; }
  @media only screen and (min-width: 1200px) and (max-width: 1500px) {
    .hero-post {
      margin: 0; } }
  @media (max-width: 1199px) {
    .hero-post {
      margin: 0; } }
  .hero-post .mCS-dark.mCSB_scrollTools .mCSB_draggerRail,
  .hero-post .mCSB_scrollTools {
    background-color: #4D4F51; }
  .hero-post__active.owl-carousel .owl-stage {
    transition: unset !important; }
  .hero-post__active .owl-nav {
    display: flex;
    justify-content: center;
    bottom: 35px;
    position: absolute;
    left: 0;
    right: 0; }
    .hero-post__active .owl-nav div {
      width: 56px;
      height: 36px;
      display: flex;
      color: #ffffff;
      align-items: center;
      justify-content: center;
      border-radius: 18px;
      -webkit-border-radius: 18px;
      -moz-border-radius: 18px;
      -ms-border-radius: 18px;
      -o-border-radius: 18px;
      background-color: rgba(255, 255, 255, 0.2);
      -webkit-transition: 0.3s;
      -o-transition: 0.3s;
      transition: 0.3s;
      margin: 0 6px; }
      .hero-post__active .owl-nav div:hover {
        background-color: var(--color-primary-3); }
  .hero-post__height {
    min-height: 768px; }
  .hero-post__scroll {
    width: 400px;
    position: absolute;
    top: 50%;
    right: 80px;
    z-index: 1;
    height: 410px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%); }
    @media only screen and (min-width: 1200px) and (max-width: 1500px) {
      .hero-post__scroll {
        right: 60px; } }
    @media (max-width: 1199px) {
      .hero-post__scroll {
        right: 30px; } }
    @media (max-width: 991px) {
      .hero-post__scroll {
        position: relative;
        left: 0;
        right: 0;
        margin: auto;
        margin-top: 60px;
        top: 0;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0); } }
    @media (max-width: 767px) {
      .hero-post__scroll {
        width: 100%;
        padding: 0 12px; } }
    .hero-post__scroll .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
      height: 200px; }
    @media (max-width: 767px) {
      .hero-post__scroll .mCSB_inside > .mCSB_container {
        margin-right: 10px; } }
  .hero-post__content {
    padding-left: 133px; }
    .hero-post__item .post-tags li span, .hero-post__item .post-tags li:not(:first-child, :last-child)::before {
      background: var(--color-primary-3);
  }
  .hero-post__item .post-meta--4.style-4 li .year {
      color: var(--color-primary-3);
  }
    @media only screen and (min-width: 1200px) and (max-width: 1500px) {
      .hero-post__content {
        padding-left: 50px; } }
    @media (max-width: 1199px) {
      .hero-post__content {
        padding-left: 15px;
        padding-right: 15px; } }
  .hero-post__item {
    position: relative;
    z-index: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    z-index: 1;
    min-height: 768px;
    z-index: 1;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    overflow: hidden; }
    @media only screen and (min-width: 1200px) and (max-width: 1500px) {
      .hero-post__item {
        min-height: 650px; } }
    @media (max-width: 1199px) {
      .hero-post__item {
        min-height: 650px; } }
    @media (max-width: 991px) {
      .hero-post__item {
        min-height: 500px; } }
    @media (max-width: 767px) {
      .hero-post__item {
        padding-top: 80px;
        padding-bottom: 100px; } }
    .hero-post__item::before {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      content: "";
      z-index: -1;
      background: rgba(0, 0, 0, 0.5); }
    .hero-post__item .post-title {
      font-size: 42px;
      margin-bottom: 30px;
      text-transform: capitalize; }
      @media (max-width: 991px) {
        .hero-post__item .post-title {
          font-size: 30px; } }
      @media (max-width: 767px) {
        .hero-post__item .post-title {
          font-size: 22px;
          margin-bottom: 15px; } }
      .hero-post__item .post-title a {
        color: #fff; }
    .hero-post__item p {
      font-size: 15px;
      color: #fff; }
      @media (max-width: 991px) {
        .hero-post__item p br {
          display: none; } }

.banner-section {
  position: relative;
  margin: 0 60px; }

.banner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  z-index: 1;
  min-height: 768px;
  z-index: 1;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  overflow: hidden; }
  .banner::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    z-index: -1;
    background: rgba(0, 0, 0, 0.5); }

.banner-thumnail {
  position: absolute;
  top: 0;
  right: 0;
  width: 33%;
  height: 100%;
  z-index: 2; }

.banner-slider-thumbnail-style-2 {
  height: 400px;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  max-width: 72%;
  width: 100%;
  overflow: hidden; }

.banner-section .swiper-pagination {
  left: auto;
  right: 0; }

.banner-section .swiper-pagination .swiper-pagination-progressbar-fill {
  background: var(--color-primary); }

.banner-section .swiper-pagination-progressbar {
  background: rgba(196, 196, 196, 0.35);
  width: 2px; }

.audio-player {
  width: 100%;
  font-family: arial;
  color: var(--color-black);
  font-size: 0.75em;
  overflow: hidden;
  display: grid;
  grid-template-rows: 6px auto; }
  .audio-player .timeline {
    background: #E4E4E4;
    width: 82%;
    position: relative;
    cursor: pointer;
    top: 40px;
    left: 60px; }
    .audio-player .timeline .progress {
      background: var(--color-primary);
      width: 0%;
      height: 100%;
      transition: 0.25s;
      border-radius: 0;
      -webkit-border-radius: 0;
      -moz-border-radius: 0;
      -ms-border-radius: 0;
      -o-border-radius: 0; }
  .audio-player .controls {
    display: flex;
    align-items: stretch; }
    .audio-player .controls > * {
      display: flex;
      justify-content: center;
      align-items: center; }
    .audio-player .controls .play-container {
      width: 50px;
      height: 50px;
      background-color: var(--color-white);
      border-radius: 50%;
      -webkit-border-radius: 50%;
      -moz-border-radius: 50%;
      -ms-border-radius: 50%;
      -o-border-radius: 50%;
      box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.02); }
    .audio-player .controls .toggle-play {
      margin-left: 8px; }
      .audio-player .controls .toggle-play.play {
        cursor: pointer;
        position: relative;
        left: 0;
        height: 0;
        width: 0;
        border: 7px solid transparent;
        border-left: 13px solid var(--color-primary-3); }
        .audio-player .controls .toggle-play.play:hover {
          transform: scale(1.1); }
      .audio-player .controls .toggle-play.pause {
        height: 15px;
        width: 20px;
        cursor: pointer;
        position: relative; }
        .audio-player .controls .toggle-play.pause:before {
          position: absolute;
          top: 0;
          left: 0px;
          background: var(--color-primary-3);
          content: "";
          height: 15px;
          width: 3px; }
        .audio-player .controls .toggle-play.pause:after {
          position: absolute;
          top: 0;
          right: 8px;
          background: var(--color-primary-3);
          content: "";
          height: 15px;
          width: 3px; }
        .audio-player .controls .toggle-play.pause:hover {
          transform: scale(1.1); }
    .audio-player .controls .time {
      display: flex;
      display: flex;
      margin-top: -15px;
      margin-left: 10px;
      font-size: 14px;
      color: #797575; }
      .audio-player .controls .time > * {
        padding: 2px; }
    .audio-player .controls .volume-container {
      cursor: pointer;
      position: relative;
      z-index: 2; }
      .audio-player .controls .volume-container .volume-button {
        height: 26px;
        display: flex;
        align-items: center; }
        .audio-player .controls .volume-container .volume-button .volume {
          transform: scale(0.7); }
      .audio-player .controls .volume-container .volume-slider {
        position: absolute;
        left: -3px;
        top: 15px;
        z-index: -1;
        width: 0;
        height: 15px;
        background: white;
        box-shadow: 0 0 20px #000;
        transition: .25s; }
        .audio-player .controls .volume-container .volume-slider .volume-percentage {
          background: coral;
          height: 100%;
          width: 75%; }
      .audio-player .controls .volume-container:hover .volume-slider {
        left: -123px;
        width: 120px; }

@media (max-width: 991px) {
  .world-news .tx-post-overly .post-content {
    padding: 25px; } }
@media (max-width: 991px) {
  .world-news .tx-post-overly .post-title {
    font-size: 20px; } }

@media only screen and (min-width: 1200px) and (max-width: 1500px) {
  .tech-post__wrap {
    margin-top: 30px; } }
@media (max-width: 1199px) {
  .tech-post__wrap {
    margin-top: 30px; } }
.tech-post__item {
  padding: 10px;
  padding-right: 15px;
  box-shadow: 0px 0px 24px rgba(0, 0, 0, 0.04);
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px; }
  .tech-post__item:not(:last-child) {
    margin-bottom: 30px; }
  .tech-post__item .post-thumb {
    width: 176px;
    height: 130px;
    margin-right: 30px; }
    @media only screen and (min-width: 1200px) and (max-width: 1500px) {
      .tech-post__item .post-thumb {
        margin-right: 0; } }
    .tech-post__item .post-thumb img {
      height: 100%;
      object-fit: cover; }
  .tech-post__item .post-content {
    width: calc(100% - 206px); }
    @media only screen and (min-width: 1200px) and (max-width: 1500px) {
      .tech-post__item .post-content {
        width: 100%;
        margin-top: 20px; } }
    @media (max-width: 767px) {
      .tech-post__item .post-content {
        width: 100%;
        margin-top: 20px; } }
  .tech-post__item .post-title {
    font-size: 18px;
    font-weight: 500; }
    @media only screen and (min-width: 1200px) and (max-width: 1500px) {
      .tech-post__item .post-title {
        font-size: 16px; } }
    .tech-post__item .post-title a {
      color: var(--color-black); }
  .tech-post__item .post-cat {
    margin-bottom: 7px; }

.tech-post-wrap {
  margin-left: 10px;
  margin-top: 55px; }
  @media (max-width: 1199px) {
    .tech-post-wrap {
      margin-top: 30px; } }
  .tech-post-wrap .tab-post__item:not(:last-child) {
    margin-bottom: 65px; }
    @media (max-width: 1199px) {
      .tech-post-wrap .tab-post__item:not(:last-child) {
        margin-bottom: 30px; } }
  .tech-post-wrap .tab-post__item .post-title {
    font-size: 18px; }
  .tech-post-wrap .tab-post__item .post-meta {
    margin-top: 2px; }
    .tech-post-wrap .tab-post__item .post-meta .post-meta__author {
      margin-top: 4px; }
    .tech-post-wrap .tab-post__item .post-meta .date {
      margin-top: 4px; }
  @media only screen and (min-width: 1200px) and (max-width: 1500px) {
    .tech-post-wrap .tab-post__item .post-content, .tab-post__item--2 .post-content {
      width: 100%;
      margin-top: 20px; } .row.post-nav{margin-right: 65px;} .sponsord-content .post-content{width:calc(100% - 121px)}.no-active-sidebar .row.post-nav {
        margin-right: 0;
    } }

.tags-slide-wrap span {
  display: inline-block;
  background-color: var(--color-primary-3);
  padding: 0px 10px;
  line-height: 25px;
  color: #fff;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  margin-right: 12px;
  font-size: 15px; }
.tags-slide-wrap.style-1 span {
  background-color: var(--color-primary); }
.tags-slide-wrap.style-1 .tags-slide .owl-item .item::before {
  background-color: var(--color-primary); }
.tags-slide-wrap.style-1 .tags-slide .owl-nav div {
  color: var(--color-primary); }
.tags-slide-wrap.style-2 span {
  background-color: var(--color-primary-2); }
.tags-slide-wrap.style-2 .tags-slide .owl-item .item::before {
  background-color: var(--color-primary-2); }
.tags-slide-wrap.style-2 .tags-slide .owl-nav div {
  color: var(--color-primary-2); }
.tags-slide-wrap.style-3 span {
  background-color: var(--color-primary); }
.tags-slide-wrap.style-3 .tags-slide .item::before {
  background-color: var(--color-primary); }
.tags-slide-wrap.style-3 .tags-slide .item a {
  color: rgba(var(--color-black-rgb), 0.7); }
.tags-slide-wrap.style-3 .tags-slide .owl-nav div {
  color: var(--color-primary); }

.tags-slide {
  max-width: 142px; }
  .tags-slide .owl-stage {
    display: flex;
    align-items: center; }
  .tags-slide .item {
    position: relative; }
    .tags-slide .item a {
      font-size: 15px;
      color: #C0C0C0; }
      .tags-slide .item a:hover {
        color: #fff; }
  .tags-slide .owl-item .item::before {
    position: absolute;
    top: 50%;
    left: -11px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 5px;
    height: 5px;
    background-color: var(--color-primary);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    content: ""; }
  .tags-slide .owl-nav {
    display: flex;
    position: absolute;
    top: 50%;
    right: -10px;
    line-height: normal;
    transform: translateY(-50%); }
    .tags-slide .owl-nav div {
      color: var(--color-primary-3);
      font-size: 12px; }
      .tags-slide .owl-nav div.owl-prev {
        display: none; }

.gag {
  color: red; }

.politics-post-slide.tx-post__carousel-nav .owl-nav {
  top: -82px; }

.online-voating-slide .owl-stage {
  transition: unset !important; }

/*----------------------------------------*/
/*  14. footer
/*----------------------------------------*/
.footer__widget p {
  color: #949392; }
.footer__widget .title {
  font-size: 22px;
  color: #fff;
  margin-bottom: 28px; }
.footer__widget ul {
  list-style: none; }
  .footer__widget ul li:not(:last-child) {
    margin-bottom: 12px; }
  .footer__widget ul li a {
    color: #929292; }
    .footer__widget ul li a:hover {
      color: #fff; }
.footer__widget .category {
  width: 67%;
  float: left; }
  @media (max-width: 1199px) {
    .footer__widget .category {
      width: 87%; } }
  .footer__widget .category li {
    width: 50%;
    float: left; }
.footer__widget .category li a {
  position: relative;
  padding-left: 12px; }
  .footer__widget .category li a::before {
    position: absolute;
    top: 7px;
    left: 0;
    width: 5px;
    height: 5px;
    background-color: #C4C4C4;
    content: "";
    border-radius: 7px;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    -ms-border-radius: 7px;
    -o-border-radius: 7px;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s; }
  .footer__widget .category li a:hover::before {
    background-color: var(--color-primary); }
.footer__widget .quick-links li a {
  position: relative; }
  .footer__widget .quick-links li a::before {
    position: absolute;
    top: -5px;
    left: 0;
    content: "//";
    color: var(--color-primary);
    opacity: 0;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    -webkit-transform: translateX(-5px);
    -ms-transform: translateX(-5px);
    transform: translateX(-5px);
    font-size: 15px; }
  .footer__widget .quick-links li a:hover {
    padding-left: 16px; }
    .footer__widget .quick-links li a:hover::before {
      opacity: 1;
      -webkit-transform: translateX(0px);
      -ms-transform: translateX(0px);
      transform: translateX(0px);
      transition-delay: .09s; }
.footer__widget:nth-child(2) {
  padding-left: 100px; }
  @media (max-width: 1199px) {
    .footer__widget:nth-child(2) {
      padding-left: 40px; } }
  @media (max-width: 991px) {
    .footer__widget:nth-child(2) {
      padding-left: 15px; } }
@media (max-width: 1199px) {
  .footer__widget:nth-child(3) {
    margin-left: -30px; } }
@media (max-width: 991px) {
  .footer__widget:nth-child(3) {
    margin-left: 0; } }
@media (max-width: 1199px) {
  .footer__widget:nth-child(4) {
    margin-left: -30px; } }
@media (max-width: 1199px) {
  .footer__widget:nth-child(4) {
    margin-left: 0; } }
@media (max-width: 1199px) {
  .footer .apps-img .app {
    max-width: 110px; } }
.footer__post .post-thumb {
  width: 77px;
  margin-right: 13px;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px; }
.footer__post .post-date {
  color: #fff;
  font-size: 13px;
  margin-bottom: 5px; }
  .footer__post .post-date i {
    color: var(--color-primary);
    font-style: 12px;
    margin-right: 5px; }
.footer__post .post-content {
  width: calc(100% - 90px); }
.footer__post .post-title {
  font-size: 16px;
  font-weight: 500; }
  .footer__post .post-title a {
    color: #fff; }
.footer__post .footer__post-item:not(:last-child) {
  margin-bottom: 25px; }
.footer__bottom {
  border-top: 1px solid rgba(242, 242, 242, 0.07);
  padding: 30px 0;
  padding-top: 15px; }
.footer__copyright {
  color: #fff;
  font-size: 18px;
  font-family: var(--font-title); }
  .footer__copyright a {
    color: var(--color-primary); }
.footer__social {
  display: flex;
  flex: 1;
  justify-content: center; }
  .footer__social a {
    width: 40px;
    height: 40px;
    background-color: rgba(251, 251, 253, 0.08);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    font-size: 13px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center; }
    .footer__social a:not(:last-child) {
      margin-right: 15px; }
    .footer__social a:hover {
      background-color: var(--color-primary);
      color: #fff; }
.footer__links a {
  color: #CDCDCD;
  font-size: 18px;
  position: relative;
  font-family: var(--font-title);
  font-weight: 400; }
  .footer__links a:hover {
    color: #fff; }
  .footer__links a:not(:last-child) {
    margin-right: 10px;
    padding-right: 12px; }
  .footer__links a::before {
    position: absolute;
    right: 0;
    top: 7px;
    width: 1px;
    background-color: #CDCDCD;
    height: 13px;
    content: ""; }
  .footer__links a:last-child::before {
    display: none; }
.footer--2 .footer__widget .quick-links li a::before {
  color: var(--color-primary-2); }
.footer--2 .footer__widget .category li a:hover::before {
  background-color: var(--color-primary-2); }
.footer--2 .footer__post-item .post-number {
  background-color: var(--color-primary-2); }
.footer--2 .footer__post .post-date i {
  color: var(--color-primary-2); }
.footer--2 .footer__copyright a {
  color: var(--color-primary-2); }
.footer--2 .footer__social a:hover {
  background-color: var(--color-primary-2); }

@media (min-width: 1400px) {
  .footer {
    position: sticky;
    bottom: 0; } }
    @media screen and (max-width:600px){.admin-bar .header__main-wrap.uk-sticky.uk-active.uk-sticky-below.uk-sticky-fixed {
      margin-top: 0px !important;
  }}
    
/*# sourceMappingURL=main.css.map */

/* Megamenu */
.main-menu__nav ul li.megamenu{
  position: static !important;
}
.main-menu__nav ul li.megamenu .submenu{
  width: 100%;
  max-width: 1380px;
  padding: 0;
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0;
  background: #fff;
  box-shadow: 0 18px 43px rgb(90 90 90 / 14%);
  border-radius: 5px;
  top: 100%;
}
.side-mobile-menu .elementor-column.elementor-col-20, .elementor-column[data-col="20"] {
  width: 100%;
}
figure.post-thumb.ajx-load img {
    height: 564px;
    -o-object-fit: cover;
       object-fit: cover;
}
.side-mobile-menu .elementor-section .elementor-container {
  display: block;
}
.main-menu__nav ul li.megamenu .submenu li a{
  padding: 0;
}
.header.header--3 .main-menu__nav ul li.megamenu .submenu {
  top: 100%;
}
.magezix__img_wrap {
  -webkit-box-shadow: 0 15px 22px rgb(185 181 181 / 20%);
  -khtml-box-shadow: 0 15px 22px rgba(185,181,181,.2);
  -moz-box-shadow: 0 15px 22px rgba(185,181,181,.2);
  -ms-box-shadow: 0 15px 22px rgba(185,181,181,.2);
  -o-box-shadow: 0 15px 22px rgba(185,181,181,.2);
  box-shadow: 0 15px 22px rgb(185 181 181 / 20%);
  -webkit-border-radius: 6px;
  -khtml-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
  border-radius: 6px;
  -webkit-transition: .3s cubic-bezier(.24,.74,.58,1);
  -khtml-transition: .3s cubic-bezier(.24,.74,.58,1);
  -moz-transition: .3s cubic-bezier(.24,.74,.58,1);
  -ms-transition: .3s cubic-bezier(.24,.74,.58,1);
  -o-transition: .3s cubic-bezier(.24,.74,.58,1);
  transition: .3s cubic-bezier(.24,.74,.58,1);
  position: relative;
  overflow: hidden;
cursor: not-allowed;
}
.main-menu__nav ul li.megamenu .submenu {
  display: block;
  overflow: hidden;
}
.main-menu.ul_li.navbar.navbar-expand-lg {
  position: static;
}
.magezix_demo_mg_item.cm-soon a {cursor: no-drop;}
.magezix__img_wrap p {
  position: absolute;
  top: 50%;
  color: #fff;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  font-size: 18px;
}
.magezix__img_wrap span {
  background: #28BCEF;
  position: absolute;
  top: 13px;
  right: 10px;
  color: #fff;
  width: 55px;
  text-align: center;
  height: 25px;
  display: block;
  border-radius: 3px;
  text-transform: uppercase;
  font-size: 13px;
  line-height: 25px;
}
.magezix__content {
  display: block;
  text-align: center;
  margin-top: 18px;
  -webkit-transition: .3s cubic-bezier(.24,.74,.58,1);
  -khtml-transition: .3s cubic-bezier(.24,.74,.58,1);
  -moz-transition: .3s cubic-bezier(.24,.74,.58,1);
  -ms-transition: .3s cubic-bezier(.24,.74,.58,1);
  -o-transition: .3s cubic-bezier(.24,.74,.58,1);
  transition: .3s cubic-bezier(.24,.74,.58,1);
  font-size: 14px;
  color: rgba(34,34,34,.87);
  font-weight: 700;
  text-transform: uppercase;
}
.magezix_demo_mg_item:hover .magezix__img_wrap{
-webkit-box-shadow: 0 20px 32px rgb(185 181 181 / 50%);
  -khtml-box-shadow: 0 20px 32px rgba(185,181,181,.5);
  -moz-box-shadow: 0 20px 32px rgba(185,181,181,.5);
  -ms-box-shadow: 0 20px 32px rgba(185,181,181,.5);
  -o-box-shadow: 0 20px 32px rgba(185,181,181,.5);
  box-shadow: 0 20px 32px rgb(185 181 181 / 50%);
}
.cm-soon .magezix__img_wrap:after {
  position: absolute;
  content: "";
  background: linear-gradient(to left, var(--color-seven) 0%, var(--color-eight) 100%);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: .8;
}

.cm-soon .magezix__img_wrap p {
  z-index: 1;
}
.main-menu__nav ul li.megamenu .submenu {
	top: 68%;
}
.uk-sticky.uk-active .main-menu__nav ul li.megamenu .submenu {
	top: 100%;
}
.side-mobile-menu ul li.megamenu .sub-menu li a {
  padding: 0;
}
.side-mobile-menu ul li.megamenu .sub-menu li a:hover,
.side-mobile-menu ul li.megamenu .sub-menu li {
	padding-left: 0;
}
.side-mobile-menu ul li.megamenu .sub-menu li a:before {
  display: none;
}