@charset "UTF-8";
*:focus {
  outline: none;
}

.pace {
  -webkit-pointer-events: none;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.pace-inactive {
  display: none;
}

.pace .pace-progress {
  background: var(--primary);
  position: fixed;
  z-index: 2000;
  top: 0;
  right: 100%;
  width: 100%;
  height: 2px;
}

.pace .pace-progress-inner {
  display: block;
  position: absolute;
  right: 0;
  width: 100px;
  height: 100%;
  box-shadow: 0 0 10px var(--primary), 0 0 5px var(--primary);
  opacity: 1;
  -webkit-transform: rotate(3deg) translate(0px, -4px);
  -moz-transform: rotate(3deg) translate(0px, -4px);
  -ms-transform: rotate(3deg) translate(0px, -4px);
  -o-transform: rotate(3deg) translate(0px, -4px);
  transform: rotate(3deg) translate(0px, -4px);
}

.pace .pace-activity {
  display: block;
  position: fixed;
  z-index: 2000;
  top: 15px;
  right: 15px;
  width: 14px;
  height: 14px;
  border: solid 2px transparent;
  border-top-color: var(--primary);
  border-left-color: var(--primary);
  border-radius: 10px;
  -webkit-animation: pace-spinner 400ms linear infinite;
  -moz-animation: pace-spinner 400ms linear infinite;
  -ms-animation: pace-spinner 400ms linear infinite;
  -o-animation: pace-spinner 400ms linear infinite;
  animation: pace-spinner 400ms linear infinite;
}

@-webkit-keyframes pace-spinner {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-moz-keyframes pace-spinner {
  0% {
    -moz-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -moz-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-o-keyframes pace-spinner {
  0% {
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-ms-keyframes pace-spinner {
  0% {
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes pace-spinner {
  0% {
    transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.center, .page-post .post-video .entry-icon i, .main-header .main-menu .menu > li.search a span i, .mobile-menu .menu > li .submenu-toggle i {
  position: absolute;
  top: 50%;
  right: 50%;
  transform: translate(50%, -50%);
}

.page-post .post-tags a, .entry-box-8 .entry-body, .entry-box-8 .box::before, .entry-box-2, .entry-box-1 .box::before, .main-header .main-menu .menu > li > ul ~ a::before, .main-header .main-menu .menu li ul, .search-box .search-toggle, .search-box, .mobile-menu .menu > li .submenu-toggle i, .mobile-menu, .site-overlay, .swiper-container .swiper-wrapper {
  transition: all 500ms, color 200ms;
}

.radius {
  border-radius: 8px;
}

.shadow {
  box-shadow: 0 0 20px rgba(50, 117, 208, 0.1);
}

.marquee {
  direction: ltr;
  overflow: hidden;
}
.marquee > * {
  direction: rtl;
}

.swiper-container .swiper-wrapper {
  opacity: 1;
}
.swiper-container .swiper-wrapper.opacity {
  opacity: 0;
}

.lds-ellipsis {
  display: inline-block;
  position: relative;
  width: 64px;
  height: 64px;
}
.lds-ellipsis div {
  position: absolute;
  top: 27px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--primary);
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
}
.lds-ellipsis div:nth-child(1) {
  left: 6px;
  animation: lds-ellipsis1 0.6s infinite;
}
.lds-ellipsis div:nth-child(2) {
  left: 6px;
  animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(3) {
  left: 26px;
  animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(4) {
  left: 45px;
  animation: lds-ellipsis3 0.6s infinite;
}
@keyframes lds-ellipsis1 {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes lds-ellipsis3 {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
@keyframes lds-ellipsis2 {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(19px, 0);
  }
}

.site-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 30;
  background-color: rgba(34, 34, 34, 0.85);
  visibility: hidden;
  opacity: 0;
}
.site-overlay .close {
  width: 32px;
  display: none;
  height: 32px;
  border-radius: 50%;
  position: absolute;
  top: 30px;
  cursor: pointer;
  background-color: #fff;
  left: 30px;
}
.site-overlay .close::before, .site-overlay .close::after {
  content: "";
  position: absolute;
  right: 8px;
  width: 15px;
  height: 1px;
  background-color: #222222;
}
.site-overlay .close::before {
  top: 16px;
  transform: rotate(45deg);
}
.site-overlay .close::after {
  bottom: 15px;
  transform: rotate(-45deg);
}
.site-overlay .close:hover {
  background-color: var(--orange);
}
.site-overlay .close:hover::before, .site-overlay .close:hover::after {
  background-color: #fff;
}

.font-size-12 {
  font-size: 12px !important;
}

.font-size-14 {
  font-size: 14px !important;
}

.font-size-15 {
  font-size: 15px !important;
}

.font-size-16 {
  font-size: 16px !important;
}

.font-size-18 {
  font-size: 18px !important;
}

.font-size-20 {
  font-size: 20px !important;
}

.font-size-22 {
  font-size: 22px !important;
}

.font-size-24 {
  font-size: 24px !important;
}

.font-size-26 {
  font-size: 26px !important;
}

.font-size-28 {
  font-size: 28px !important;
}

.font-size-30 {
  font-size: 30px !important;
}

.font-size-32 {
  font-size: 32px !important;
}

.font-size-34 {
  font-size: 34px !important;
}

.font-size-36 {
  font-size: 36px !important;
}

.font-size-38 {
  font-size: 38px !important;
}

.font-size-40 {
  font-size: 40px !important;
}

@media (min-width: 576px) {
  .font-size-sm-12 {
    font-size: 12px !important;
  }

  .font-size-sm-14 {
    font-size: 14px !important;
  }

  .font-size-sm-15 {
    font-size: 15px !important;
  }

  .font-size-sm-16 {
    font-size: 16px !important;
  }

  .font-size-sm-18 {
    font-size: 18px !important;
  }

  .font-size-sm-20 {
    font-size: 20px !important;
  }

  .font-size-sm-22 {
    font-size: 22px !important;
  }

  .font-size-sm-24 {
    font-size: 24px !important;
  }

  .font-size-sm-26 {
    font-size: 26px !important;
  }

  .font-size-sm-28 {
    font-size: 28px !important;
  }

  .font-size-sm-30 {
    font-size: 30px !important;
  }

  .font-size-sm-32 {
    font-size: 32px !important;
  }

  .font-size-sm-34 {
    font-size: 34px !important;
  }

  .font-size-sm-36 {
    font-size: 36px !important;
  }

  .font-size-sm-38 {
    font-size: 38px !important;
  }

  .font-size-sm-40 {
    font-size: 40px !important;
  }
}
@media (min-width: 768px) {
  .font-size-md-12 {
    font-size: 12px !important;
  }

  .font-size-md-14 {
    font-size: 14px !important;
  }

  .font-size-md-15 {
    font-size: 15px !important;
  }

  .font-size-md-16 {
    font-size: 16px !important;
  }

  .font-size-md-18 {
    font-size: 18px !important;
  }

  .font-size-md-20 {
    font-size: 20px !important;
  }

  .font-size-md-22 {
    font-size: 22px !important;
  }

  .font-size-md-24 {
    font-size: 24px !important;
  }

  .font-size-md-26 {
    font-size: 26px !important;
  }

  .font-size-md-28 {
    font-size: 28px !important;
  }

  .font-size-md-30 {
    font-size: 30px !important;
  }

  .font-size-md-32 {
    font-size: 32px !important;
  }

  .font-size-md-34 {
    font-size: 34px !important;
  }

  .font-size-md-36 {
    font-size: 36px !important;
  }

  .font-size-md-38 {
    font-size: 38px !important;
  }

  .font-size-md-40 {
    font-size: 40px !important;
  }
}
@media (min-width: 992px) {
  .font-size-lg-12 {
    font-size: 12px !important;
  }

  .font-size-lg-14 {
    font-size: 14px !important;
  }

  .font-size-lg-15 {
    font-size: 15px !important;
  }

  .font-size-lg-16 {
    font-size: 16px !important;
  }

  .font-size-lg-18 {
    font-size: 18px !important;
  }

  .font-size-lg-20 {
    font-size: 20px !important;
  }

  .font-size-lg-22 {
    font-size: 22px !important;
  }

  .font-size-lg-24 {
    font-size: 24px !important;
  }

  .font-size-lg-26 {
    font-size: 26px !important;
  }

  .font-size-lg-28 {
    font-size: 28px !important;
  }

  .font-size-lg-30 {
    font-size: 30px !important;
  }

  .font-size-lg-32 {
    font-size: 32px !important;
  }

  .font-size-lg-34 {
    font-size: 34px !important;
  }

  .font-size-lg-36 {
    font-size: 36px !important;
  }

  .font-size-lg-38 {
    font-size: 38px !important;
  }

  .font-size-lg-40 {
    font-size: 40px !important;
  }
}
@media (min-width: 1200px) {
  .font-size-xl-12 {
    font-size: 12px !important;
  }

  .font-size-xl-14 {
    font-size: 14px !important;
  }

  .font-size-xl-15 {
    font-size: 15px !important;
  }

  .font-size-xl-16 {
    font-size: 16px !important;
  }

  .font-size-xl-18 {
    font-size: 18px !important;
  }

  .font-size-xl-20 {
    font-size: 20px !important;
  }

  .font-size-xl-22 {
    font-size: 22px !important;
  }

  .font-size-xl-24 {
    font-size: 24px !important;
  }

  .font-size-xl-26 {
    font-size: 26px !important;
  }

  .font-size-xl-28 {
    font-size: 28px !important;
  }

  .font-size-xl-30 {
    font-size: 30px !important;
  }

  .font-size-xl-32 {
    font-size: 32px !important;
  }

  .font-size-xl-34 {
    font-size: 34px !important;
  }

  .font-size-xl-36 {
    font-size: 36px !important;
  }

  .font-size-xl-38 {
    font-size: 38px !important;
  }

  .font-size-xl-40 {
    font-size: 40px !important;
  }
}
.mobile-menu {
  position: fixed;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 55;
  overflow-y: auto;
  overflow-x: hidden;
  background-color: #fff;
  width: 100%;
  top: 110px;
  height: 90%;
  height: -moz-calc(100% - 110px);
  height: -webkit-calc(100% - 110px);
  height: -o-calc(100% - 110px);
  height: calc(100% - 110px);
  opacity: 0;
  visibility: hidden;
}
.mobile-menu ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.mobile-menu .menu > li {
  position: relative;
  border-bottom: 1px solid #f7f7f7;
}
.mobile-menu .menu > li .submenu-toggle {
  width: 63px;
  height: 63px;
  color: #222222;
  font-size: 24px;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #f8f8f8;
}
.mobile-menu .menu > li > a {
  display: block;
  font-size: 18px;
  padding: 18px 20px;
}
.mobile-menu .menu > li > a:active, .mobile-menu .menu > li > a:hover {
  background-color: var(--gray-200);
}
.mobile-menu .menu > li > ul {
  display: none;
  padding-right: 20px;
}
.mobile-menu .menu > li > ul > li {
  border-top: 1px solid #e8e8e8;
}
.mobile-menu .menu > li > ul > li > a {
  display: block;
  padding: 12px 20px;
}
.mobile-menu .menu > li.active:hover, .mobile-menu .menu > li.active:hover > a, .mobile-menu .menu > li.active:active, .mobile-menu .menu > li.active:active > a {
  background-color: #f3f3f3;
}
.mobile-menu .menu > li.active .submenu-toggle i {
  transform: translate(50%, -50%) rotate(180deg);
}
.mobile-menu .menu > li.active > ul {
  display: block;
}
body.mobile-menu-active {
  overflow: hidden;
  position: relative;
}
body.mobile-menu-active .mobile-menu {
  opacity: 1;
  visibility: visible !important;
}

.menu-toggle {
  width: 40px;
  height: 40px;
  display: block;
  cursor: pointer;
  position: relative;
}
.menu-toggle .icon {
  position: absolute;
  top: 50%;
  right: 50%;
  transform: translate(50%, -50%);
  display: block;
  width: 60%;
  height: 2px;
  background: var(--primary);
  transition: 0.35s;
}
.menu-toggle .icon:before, .menu-toggle .icon:after {
  position: absolute;
  top: 0;
  left: 50%;
  display: block;
  width: 100%;
  height: 2px;
  background: var(--primary);
  content: "";
  transition: transform 0.35s;
}
.menu-toggle .icon:before {
  transform: translate(-50%, -8px);
}
.menu-toggle .icon:after {
  transform: translate(-50%, 8px);
}
.menu-toggle .icon:before, .menu-toggle .icon:after {
  transform-origin: 50% 0%;
}
body.mobile-menu-active .menu-toggle .icon, .menu-toggle .icon.active {
  background: transparent;
}
body.mobile-menu-active .menu-toggle .icon:before, .menu-toggle .icon.active:before {
  transform: translate(-50%, 0) rotate(45deg);
}
body.mobile-menu-active .menu-toggle .icon:after, .menu-toggle .icon.active:after {
  transform: translate(-50%, 0) rotate(-45deg);
}

.search-box {
  width: 100%;
  height: 70px;
  position: fixed;
  top: 0;
  z-index: 52;
  opacity: 0;
  visibility: hidden;
  background-color: #fff;
  right: 0;
}
.search-box .search-container {
  position: relative;
}
.search-box form {
  min-height: 70px;
}
.search-box form input[type=search] {
  width: 100%;
  height: 70px;
  border: none;
  color: #222222;
  font-size: 24px;
  padding-right: 30px;
  background-color: transparent;
}
.search-box form input[type=search]::placeholder {
  color: #adb5bd;
}
.search-box form label {
  color: #222222;
  font-size: 20px;
}
.search-box form button {
  color: #222222;
  border: none;
  outline: none;
  background: none;
}
.search-box .search-toggle {
  font-size: 24px;
  position: absolute;
  top: 50%;
  z-index: 5;
  opacity: 0;
  color: #222222;
  cursor: pointer;
  transform: translateY(-50%) scale(0) rotate(0);
  right: 0;
}
body.search-active {
  overflow: hidden;
}
body.search-active .site-overlay {
  visibility: visible;
  opacity: 1;
  transition-delay: 0s;
  background-color: rgba(34, 34, 34, 0.16);
}
body.search-active .search-box {
  visibility: visible;
  opacity: 1;
}
body.search-active .search-box .search-toggle {
  opacity: 1;
  transform: translateY(-50%) scale(1) rotate(540deg);
}

.widget-breaking {
  background-color: #a60202;
}
.widget-breaking .header-title {
  color: #f6ed36;
  font-weight: 700;
  font-size: 30px;
}
.widget-breaking .header-icon {
  color: #ffffff;
  font-size: 32px;
}
.widget-breaking .item {
  color: #ffffff;
  font-size: 20px;
}
.widget-breaking .close {
  display: block;
  width: 36px;
  height: 36px;
  cursor: pointer;
  position: relative;
  border-radius: 50%;
  border: 2px solid #ffffff;
  background-color: transparent;
}
.widget-breaking .close, .widget-breaking .close::before, .widget-breaking .close::after {
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}
.widget-breaking .close::before, .widget-breaking .close::after {
  width: 2px;
  height: 14px;
  content: "";
  position: absolute;
  top: 50%;
  right: 50%;
  background-color: #ffffff;
}
.widget-breaking .close::before {
  transform: translate(50%, -50%) rotate(45deg);
}
.widget-breaking .close::after {
  transform: translate(50%, -50%) rotate(-45deg);
  transition-duration: 0.8s;
}
.widget-breaking .close:hover {
  background-color: #da1514;
}
.widget-breaking .close:hover::before {
  transform: translate(50%, -50%) rotate(45deg) scale(1.5);
}
.widget-breaking .close:hover::after {
  transform: translate(50%, -50%) rotate(-45deg) scale(1.5);
}
.widget-breaking.fixed {
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 99;
  width: 100%;
}
.widget-subscribe .form {
  padding-left: 60px;
  position: relative;
}
.widget-subscribe .form input {
  width: 100%;
  height: 56px;
  color: #222222;
  font-size: 16px;
  border-radius: 4px;
  padding-left: 56px;
  padding-right: 15px;
  background-color: #fff;
  border: 1px solid #f2f2f2;
}
.widget-subscribe .form input ::placeholder {
  color: #999999;
}
.widget-subscribe .form button {
  width: 113px;
  height: 46px;
  position: absolute;
  left: 0;
  top: 50%;
  z-index: 3;
  transform: translateY(-50%);
}

.top-bar {
  background-color: #fff;
}
.top-bar, .top-bar > [class*=container], .top-bar > [class*=container] > div {
  height: 40px;
}
@media (max-width: 575.98px) {
  .top-bar, .top-bar > [class*=container], .top-bar > [class*=container] > div {
    height: auto;
  }
}
.top-bar .links a {
  display: block;
  color: #454545;
  font-weight: 400;
  font-size: 14px;
}
.top-bar .links a:hover {
  color: var(--primary);
}
body.fosha .top-bar .links a:hover {
  color: #de7f80;
}
.top-bar .social a {
  color: #5a5a5a;
  font-size: 14px;
}
.top-bar .social a:hover {
  color: var(--primary);
}
body.fosha .top-bar .social a:hover {
  color: #de7f80;
}

.main-header {
  width: 100%;
  position: relative;
  z-index: 50;
  background-color: #f1f3f4;
  border-bottom: 1px solid #d4d6d7;
}
.main-header, .main-header > [class*=container], .main-header > [class*=container] > div {
  height: 110px;
}
.main-header + .main-header-height {
  background-color: #f1f3f4;
}
.main-header .main-logo img {
  width: 180%;
}
.main-header .main-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.main-header .main-menu .menu li {
  position: relative;
}
.main-header .main-menu .menu li ul {
  visibility: hidden;
  opacity: 0;
  transform: translateX(8px);
}
.main-header .main-menu .menu li ul::before {
  width: 100%;
  height: 10px;
  position: absolute;
  bottom: 100%;
  right: 0;
  content: "";
}
.main-header .main-menu .menu li ul li a {
  display: block;
  font-size: 14px;
  padding: 4px 20px;
}
.main-header .main-menu .menu li ul li a:hover {
  background-color: #f9f9f9;
}
.main-header .main-menu .menu li:hover > ul {
  visibility: visible;
  opacity: 1;
  transform: translateX(0);
}
.main-header .main-menu .menu > li:not(.search) > a {
  display: block;
  color: #222222;
  font-size: 18px;
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .main-header .main-menu .menu > li:not(.search) > a {
    font-size: 14px;
  }
}
.main-header .main-menu .menu > li:not(.search):hover > a, .main-header .main-menu .menu > li:not(.search):hover > .active {
  color: var(--primary);
}
body.fosha .main-header .main-menu .menu > li:not(.search):hover > a, body.fosha .main-header .main-menu .menu > li:not(.search):hover > .active {
  color: #de7f80;
}
.main-header .main-menu .menu > li.search a {
  color: #fff;
  font-size: 24px;
}
.main-header .main-menu .menu > li.search a span {
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  position: relative;
  background-color: var(--primary);
}
body.fosha .main-header .main-menu .menu > li.search a span {
  background-color: #de7f80;
}
.main-header .main-menu .menu > li > ul {
  position: absolute;
  top: 100%;
  right: 0;
  width: 220px;
  padding-top: 10px;
  padding-bottom: 10px;
  background-color: #fff;
  box-shadow: 0 0 20px rgba(50, 117, 208, 0.1);
}
.main-header .main-menu .menu > li > ul ~ a::before {
  visibility: hidden;
  width: 0;
  height: 0;
  border: 8px solid transparent;
  border-bottom-color: #fff;
  position: absolute;
  bottom: 0;
  right: 50%;
  transform: translateX(50%);
  content: "";
}

body.main-header-fixed .main-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
}
body.main-header-fixed .main-header, body.main-header-fixed .main-header > [class*=container], body.main-header-fixed .main-header > [class*=container] > div {
  height: 70px;
}
body.main-header-fixed .main-header .main-logo img {
  width: 90px;
}
body.main-header-fixed .main-header-height {
  height: 110px;
}

.main-footer .footer1 {
  background-color: #222222;
}
.main-footer .footer1, .main-footer .footer1 > [class*=container], .main-footer .footer1 > [class*=container] > div {
  height: 60px;
}
.main-footer .footer2 {
  background-color: #2d2d2d;
}
.main-footer .footer2, .main-footer .footer2 > [class*=container], .main-footer .footer2 > [class*=container] > div {
  height: 60px;
}
.main-footer .footer1 .content, .main-footer .footer2 .content {
  position: relative;
  padding-right: 245px;
}
@media (max-width: 767.98px) {
  .main-footer .footer1 .content, .main-footer .footer2 .content {
    padding-right: 80px;
  }
}
@media (max-width: 767.98px) {
  .main-footer .footer2 .content {
    padding-right: 0 !important;
  }
}
.main-footer .logo {
  position: absolute;
  top: 10px;
  z-index: 5;
  right: 0;
}
@media (max-width: 767.98px) {
  .main-footer .logo img {
    width: 80px;
  }
}
.main-footer .menu a {
  color: #fff;
  font-weight: 400;
  font-size: 14px;
}
.main-footer .menu a:hover {
  color: var(--primary);
}
body.fosha .main-footer .menu a:hover {
  color: #de7f80;
}
.main-footer .social a {
  font-size: 14px;
  color: #fff;
}
.main-footer .social a:hover, .main-footer .social a.active {
  color: var(--primary);
}
body.fosha .main-footer .social a:hover, body.fosha .main-footer .social a.active {
  color: #de7f80;
}
.main-footer .copyright {
  color: #cccccc;
  font-weight: 400;
  font-size: 14px;
}

.latest-bar {
  height: 34px;
  position: relative;
  width: 100%;
  background-color: #1a1a1a;
}
.latest-bar .container {
  position: relative;
  padding-right: 70px;
}
.latest-bar .header-title {
  position: absolute;
  top: 6px;
  right: 0;
  width: 60px;
  height: 22px;
  color: #fff;
  font-weight: 400;
  font-size: 16px;
  text-align: center;
  background-color: var(--primary);
}
.latest-bar .js-marquee {
  height: 34px;
}
.latest-bar .js-marquee .item, .latest-bar .js-marquee .logo {
  float: right;
}
.latest-bar .item {
  margin-top: 4px;
}
.latest-bar .logo {
  margin-top: 6px;
  margin-left: 30px;
  margin-right: 30px;
}
.latest-bar .item {
  font-size: 14px;
}
.latest-bar .item, .latest-bar .item a {
  color: #fff;
}
.entry-box .entry-image {
  position: relative;
}
.entry-box .entry-icon {
  color: #fff;
  font-size: 18px;
  position: absolute;
  right: 10px;
  top: 10px;
  z-index: 5;
  text-shadow: 1px 1px 0 #222222;
}
.entry-box-1 {
  position: relative;
  overflow: hidden;
}
.entry-box-1 .box::before {
  width: 100%;
  height: 70%;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 2;
  content: "";
  background: rgba(34, 34, 34, 0.7);
  background: -webkit-linear-gradient(bottom, rgba(34, 34, 34, 0.7), rgba(34, 34, 34, 0));
  background: linear-gradient(to top, rgba(34, 34, 34, 0.7), rgba(34, 34, 34, 0));
}
.entry-box-1 .entry-caption2 {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 5;
}
.entry-box-1 .entry-body {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 5;
  width: 100%;
}
.entry-box-1:hover .box::before {
  height: 100%;
}
.entry-box-2 {
  position: relative;
  border-bottom: 2px solid #2e2e2e;
}
.entry-box-2 .entry-image {
  margin-bottom: -2px;
}
.entry-box-2:hover {
  border-bottom-color: var(--primary);
}

.entry-box-4 .entry-body {
  border: 1px solid #e4e7e8;
  border-right: 0;
}

.entry-box-5 .entry-image {
  border-left: 3px solid var(--primary);
}
.entry-box-6 .entry-image {
  background-color: var(--primary);
  border-radius: 50%;
  padding-top: 4px;
}
.entry-box-7 {
  position: relative;
}
.entry-box-7 .entry-image {
  position: relative;
}
.entry-box-7 .icn {
  color: #fff;
  position: absolute;
  bottom: 10px;
  right: 10px;
  z-index: 5;
  text-shadow: 1px 1px 0 #a2a2a2;
}
.entry-box-7 .icn.s-1 {
  font-size: 24px;
}
.entry-box-7 .icn.s-2 {
  font-size: 18px;
}

.entry-box-8 {
  position: relative;
  overflow: hidden;
}
.entry-box-8 .box::before {
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 2;
  opacity: 0;
  content: "";
  background: rgba(34, 34, 34, 01);
  background: -webkit-linear-gradient(bottom, rgba(34, 34, 34, 1), rgba(34, 34, 34, 0));
  background: linear-gradient(to top, rgba(34, 34, 34, 1), rgba(34, 34, 34, 0));
}
.entry-box-8 .entry-body {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 5;
  width: 100%;
  opacity: 0;
  transform: translateY(70%);
}
.entry-box-8:hover .box::before {
  opacity: 1;
}
.entry-box-8:hover .entry-body {
  opacity: 1;
  transform: translateY(0);
}
.widget-style-1 .widget-header {
  position: relative;
}
.widget-style-1 .widget-header::before {
  width: 100%;
  height: 2px;
  position: absolute;
  top: 50%;
  right: 0;
  content: "";
  z-index: 1;
  background-color: #e4e7e8;
  transform: translateY(-50%);
}
.widget-style-1 .widget-header .header-title, .widget-style-1 .widget-header .header-tabs {
  display: inline-block;
  position: relative;
  z-index: 2;
  padding-left: 10px;
  background-color: #fff;
}
.widget-style-1 .widget-header .header-title::before, .widget-style-1 .widget-header .header-tabs::before {
  width: 60px;
  height: 2px;
  position: absolute;
  top: 50%;
  right: 100%;
  content: "";
  background-color: var(--primary);
  transform: translateY(-50%);
}
.widget-style-1 .widget-header .header-link {
  color: var(--primary);
}
.widget-style-1 .widget-header .header-tabs .tabs li a {
  font-weight: 600;
  font-size: 18px;
}
.widget-style-1 .widget-header .header-tabs .tabs li a.selected, .widget-style-1 .widget-header .header-tabs .tabs li a.active {
  color: var(--primary);
}

.widget-style-2 .widget-header {
  position: relative;
  border-bottom: 1px solid #dfe1e5;
}
.widget-style-2 .widget-header .header-title {
  line-height: 58px;
}
.widget-style-2 .widget-header .header-link {
  color: #222222;
}

.widget-style-3 .widget-header {
  position: relative;
  border-bottom: 1px solid #dfe1e5;
}
.widget-style-3 .widget-header::before {
  width: 60px;
  height: 1px;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 2;
  content: "";
  background-color: #d82b38;
}
.widget-style-3 .widget-header .header-title {
  line-height: 58px;
}
.widget-style-3 .widget-header .header-link {
  color: #222222;
}

.widget-style-4 .widget-header {
  position: relative;
}
.widget-style-4 .widget-header::before {
  width: 100%;
  height: 2px;
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  z-index: 1;
  content: "";
  background-color: #e4e7e8;
  transform: translateY(-50%);
}
.widget-style-4 .widget-header .header-title {
  display: inline-block;
  line-height: 58px;
  position: relative;
  z-index: 3;
  padding-left: 15px;
  background-color: #fff;
}
.widget-style-4 .widget-header .header-title::before {
  width: 60px;
  height: 2px;
  position: absolute;
  top: 50%;
  right: 100%;
  z-index: 2;
  content: "";
  transform: translateY(-50%);
  background-color: #d82b38;
}
.widget-style-4 .widget-header .header-link {
  color: #222222;
}

[data-gutters="10"] .row {
  margin-right: -5px;
  margin-left: -5px;
}
[data-gutters="10"] .row > [class*=col-] {
  padding-right: 5px;
  padding-left: 5px;
}

[data-gutters="20"] .row {
  margin-right: -10px;
  margin-left: -10px;
}
[data-gutters="20"] .row > [class*=col-] {
  padding-right: 10px;
  padding-left: 10px;
}

.widget-1 .gallery-thumbs .swiper-slide {
  position: relative;
}
.widget-1 .gallery-thumbs .swiper-slide:not(:last-child) .entry-box {
  border-left: 1px solid #d4d6d7;
}
.widget-1 .gallery-thumbs .swiper-slide:not(.swiper-slide-thumb-active) {
  cursor: pointer;
}
.widget-1 .gallery-thumbs .swiper-slide-thumb-active {
  cursor: default;
  background-color: var(--primary);
}
.widget-1 .gallery-thumbs .swiper-slide-thumb-active .entry-box {
  border-left-color: transparent !important;
}
.widget-1 .gallery-thumbs .swiper-slide-thumb-active .entry-title {
  color: #fff;
}

.widget-2 .widget-header {
  background-color: var(--primary);
}
.widget-2 .widget-header .header-title {
  line-height: 45px;
}
.widget-2 .widget-header .header-link {
  color: #fff;
}

.widget-5 .entry-box .entry-title a {
  color: #dadada;
}
.widget-5 .entry-box .entry-title a:hover {
  color: var(--primary);
}
.widget-5 .entry-box .entry-author a {
  color: #999999;
}
.widget-5 .entry-box .entry-author a:hover {
  color: #fff;
}

.widget-12 .entry-box .entry-name a {
  color: #fff;
}
.widget-12 .entry-box .entry-name a:hover {
  color: var(--primary);
}
.widget-12 .entry-box .entry-datetime, .widget-12 .entry-box .entry-datetime a {
  color: #999999;
  font-weight: 400;
  font-size: 14px;
}
.page-post .post-thumb .container {
  position: relative;
}
.page-post .post-author {
  padding-left: 105px;
  position: relative;
  z-index: 5;
}
.page-post .post-author .entry-image {
  position: absolute;
  top: -65px;
  left: 0;
  background-color: var(--primary);
  border-radius: 50%;
  padding-top: 5px;
}
.page-post .post-read-more {
  background-color: #f1f3f4;
}
.page-post .post-read-more .header, .page-post .post-read-more .header *, .page-post .post-read-more .content, .page-post .post-read-more .content * {
  font-weight: 600;
  font-size: 18px;
}
.page-post .post-video {
  position: relative;
}
.page-post .post-video .entry-icon {
  width: 42px;
  height: 42px;
  color: #fff;
  background-color: #d82b38;
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 5;
}
.page-post .post-slider {
  position: relative;
}
.page-post .post-slider .swiper-button {
  position: absolute;
  top: 0;
  z-index: 5;
  height: 100%;
  width: 60px;
  font-size: 32px;
  color: #fff;
  cursor: pointer;
}
.page-post .post-slider .swiper-button i {
  position: absolute;
  top: 50%;
  right: 50%;
  transform: translate(50%, -50%);
}
.page-post .post-slider .swiper-button-disabled {
  cursor: default;
}
.page-post .post-slider .swiper-button-prev {
  right: 0;
}
.page-post .post-slider .swiper-button-next {
  left: 0;
}
.page-post .post-slider .swiper-pagination {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 5;
  border-radius: 30px;
  padding: 2px 14px 4px;
  background-color: #222222;
}
.page-post .post-slider .swiper-pagination, .page-post .post-slider .swiper-pagination span {
  color: #fff;
  font-size: 14px;
  font-weight: 400;
}
.page-post .post-text > p, .page-post .post-text > span, .page-post .post-text > div {
  margin-bottom: 30px;
}
.page-post .post-text p, .page-post .post-text span, .page-post .post-text div {
  font-size: 18px;
}
.page-post .blockquote, .page-post blockquote {
  padding: 20px;
  position: relative;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 30px;
  margin-top: 30px;
  background-color: #f1f3f4;
}
.page-post .blockquote::before, .page-post blockquote::before {
  color: #222222;
  font-size: 42px;
  content: "";
  font-family: "icons" !important;
  position: absolute;
  right: -22px;
  top: -22px;
}
.page-post .blockquote > p:last-child, .page-post blockquote > p:last-child {
  margin-bottom: 0 !important;
}
.page-post .post-tags a {
  font-weight: 400;
  font-size: 16px;
  padding: 4px 14px;
  border-radius: 30px;
  color: #e7e7e7;
  background-color: #222222;
}
.page-post .post-tags a:hover {
  color: #fff;
  background-color: #d82b38;
}
.page-post .short-link {
  height: 42px;
  border: 1px solid #e0e0e0;
}
.page-post .short-link .text {
  height: 42px;
  color: #6c757d;
  font-size: 16px;
  padding-top: 6px;
  padding-left: 20px;
  border-left: 1px solid #e0e0e0;
}
.page-post .short-link input[type=text] {
  margin: 0;
  padding: 0;
  font-family: Arial;
  font-size: 14px;
  border: none;
  direction: ltr;
  background: none;
}
.page-post .short-link-message {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 10;
  transform: translateY(100%);
  visibility: hidden;
  opacity: 0;
  transition: all 500ms;
}
.page-post .short-link-message.active {
  transform: translateY(0);
  visibility: visible;
  opacity: 1;
}
.page-post .widget-most-read .entry-box .box::before {
  width: 27px;
  height: 27px;
  color: #fff;
  font-weight: 400;
  font-size: 13px;
  position: absolute;
  right: -13.5px;
  top: -13.5px;
  line-height: 28px;
  text-align: center;
  border-radius: 50%;
  background-color: #222222;
  counter-increment: section;
  content: counter(section);
}
.page-post .widget-most-read .entry-box:hover .box::before {
  background-color: var(--primary);
}

body.fosha {
  background-color: #fff;
}
body.fosha a:hover {
  color: #de7f80;
}

.page-fosha .fosha-widget-1 {
  position: relative;
}
.page-fosha .fosha-widget-1 .swiper-button {
  position: absolute;
  top: 0;
  z-index: 5;
  height: 100%;
  width: 60px;
  font-size: 32px;
  color: #fff;
  cursor: pointer;
}
.page-fosha .fosha-widget-1 .swiper-button i {
  position: absolute;
  top: 50%;
  right: 50%;
  transform: translate(50%, -50%);
}
.page-fosha .fosha-widget-1 .swiper-button-disabled {
  cursor: default;
}
.page-fosha .fosha-widget-1 .swiper-button-prev {
  right: 0;
}
.page-fosha .fosha-widget-1 .swiper-button-next {
  left: 0;
}
@media (max-width: 575.98px) {
  .page-fosha .fosha-widget-2 .entry-box .entry-body {
    border-top: 1px solid #2e2e2e;
  }
}
@media (min-width: 576px) and (max-width: 991.98px) {
  .page-fosha .fosha-widget-2 .entry-box .entry-body {
    border-right: 1px solid #2e2e2e;
  }
}
@media (min-width: 992px) {
  .page-fosha .fosha-widget-2 .entry-box .entry-body {
    border-top: 1px solid #2e2e2e;
  }
}

/*# sourceMappingURL=style.css.map */
