/************ TABLE OF CONTENTS **************

    01. Theme Default CSS
    02. Header
    03. Mobile Menu
    04. Banner
    05. Trending Post
    06. Featured Post
    07. Video Post
    08. Hand-Picked Post
    09. Stories Post
    10. Popular Post
    11. Category Post
    12. Latest Post
    13. Minimal Post
    14. Adventure Post
    15. Blog
    16. Blog Sidebar
    17. Newsletter Post
    18. Footer
    19. Dark Mode

**********************************************/
/*@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;0,400;0,500;0,700;0,900;1,300;1,400;1,500;1,700;1,900&display=swap");
*/
:root {
    --tg-body-font-family: 'Roboto', sans-serif;
    --tg-heading-font-family: 'Roboto', sans-serif;
    --tg-icon-font-family: "Font Awesome 5 Pro";
    --tg-body-font-size: 16px;
    --tg-body-line-height: 1.62;
    --tg-heading-line-height: 1.2;
    --tg-common-color-blue: #0d6efd;
    --tg-common-color-indigo: #6610f2;
    --tg-common-color-purple: #6f42c1;
    --tg-common-color-pink: #d63384;
    --tg-common-color-red: #dc3545;
    --tg-common-color-orange: #fd7e14;
    --tg-common-color-yellow: #ffc107;
    --tg-common-color-green: #17c699;
    --tg-common-color-teal: #20c997;
    --tg-common-color-cyan: #0dcaf0;
    --tg-common-color-white: #fff;
    --tg-common-color-gray: #f5f5f5;
    --tg-common-color-black: #000;
    --tg-body-color: #777777;
    --tg-heading-color: #111111;
    --tg-theme-primary: #e52141;
    --tg-theme-secondary: #c12b3c;
    --tg-border-1: #e8e8e8;
    --tg-border-2: #2c2c2c;
    --tg-fw-extra-bold: 800;
    --tg-fw-bold: 700;
    --tg-fw-semi-bold: 600;
    --tg-fw-medium: 500;
    --tg-fw-regular: 400;
    --tg-fw-light: 300;
  }
  
  /*=============================
      01. Theme Default CSS
  ===============================*/
  body {
    font-family: var(--tg-body-font-family);
    font-size: var(--tg-body-font-size);
    font-weight: var(--tg-fw-regular);
    color: var(--tg-body-color);
    line-height: var(--tg-body-line-height);
    background-color: var(--tg-common-color-white);
  }
  
  img,
  .img {
    max-width: 100%;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
  }
  
  a,
  button {
    color: var(--tg-theme-primary);
    outline: none;
    text-decoration: none;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
  }
  
  a:focus,
  .btn:focus,
  .button:focus {
    text-decoration: none;
    outline: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -ms-box-shadow: none;
    -o-box-shadow: none;
    box-shadow: none;
  }
  
  a:hover,
  button:hover {
    color: var(--tg-theme-primary);
    text-decoration: none;
  }
  
  button:focus,
  input:focus,
  input:focus,
  textarea,
  textarea:focus {
    outline: 0;
  }
  
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    font-family: var(--tg-heading-font-family);
    color: var(--tg-heading-color);
    margin-top: 0px;
    font-weight: var(--tg-fw-bold);
    line-height: 1.2;
    text-transform: unset;
  }
  
  h1 a,
  h2 a,
  h3 a,
  h4 a,
  h5 a,
  h6 a {
    color: inherit;
  }
  
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  h3 {
    font-size: 1.75rem;
  }
  
  h4 {
    font-size: 1.5rem;
  }
  
  h5 {
    font-size: 1.25rem;
  }
  
  h6 {
    font-size: 1rem;
  }
  
  .list-wrap,
  .slick-dots {
    margin: 0px;
    padding: 0px;
  }
  .list-wrap li,
  .slick-dots li {
    list-style: none;
  }
  
  .tgcommon__hover a {
    position: relative;
    display: inline;
    background-image: linear-gradient(var(--tg-heading-color), var(--tg-heading-color)), linear-gradient(var(--tg-heading-color), var(--tg-heading-color));
    background-size: 0% 1px, 0 1px;
    background-position: 100% 100%, 0 100%;
    background-repeat: no-repeat;
    transition: background-size 0.4s linear;
  }
  .tgcommon__hover a:hover {
    color: inherit;
    background-size: 0 1px, 100% 1px;
  }
  
  .tgImage__hover {
    overflow: hidden;
  }
  .tgImage__hover a {
    display: block;
  }
  .tgImage__hover a:hover img {
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
    transform: scale(1.05);
  }
  .tgImage__hover img {
    display: block;
    -webkit-transition: all 0.5s ease-out 0s;
    -moz-transition: all 0.5s ease-out 0s;
    -ms-transition: all 0.5s ease-out 0s;
    -o-transition: all 0.5s ease-out 0s;
    transition: all 0.5s ease-out 0s;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
  
  p {
    font-family: var(--tg-body-font-family);
    font-size: var(--tg-body-font-size);
    line-height: var(--tg-body-line-height);
    font-weight: var(--tg-fw-regular);
    color: var(--tg-body-color);
    margin-bottom: 15px;
  }
  
  hr {
    border-bottom: 1px solid var(--tg-common-color-gray);
    border-top: 0 none;
    margin: 30px 0;
    padding: 0;
  }
  
  label {
    color: var(--tg-heading-color);
    cursor: pointer;
    font-size: var(--tg-body-font-size);
    font-weight: var(--tg-fw-regular);
  }
  
  .slick-slide:focus-visible {
    outline: none;
  }
  
  input[type=color] {
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    background: none;
    border: 0;
    cursor: pointer;
    height: 100%;
    width: 100%;
    padding: 0;
    border-radius: 50%;
  }
  
  *::-moz-selection {
    background: var(--tg-theme-primary);
    color: var(--tg-common-color-white);
    text-shadow: none;
  }
  
  ::-moz-selection {
    background: var(--tg-theme-primary);
    color: var(--tg-common-color-white);
    text-shadow: none;
  }
  
  ::selection {
    background: var(--tg-theme-primary);
    color: var(--tg-common-color-white);
    text-shadow: none;
  }
  
  /*=============================
      - Input Placeholder
  ===============================*/
  *::-moz-placeholder {
    color: var(--tg-body-color);
    font-size: var(--tg-body-font-size);
    opacity: 1;
  }
  
  *::placeholder {
    color: var(--tg-body-color);
    font-size: var(--tg-body-font-size);
    opacity: 1;
  }
  
  /*=============================
      - Common Classes
  ===============================*/
  .fix {
    overflow: hidden;
  }
  
  .clear {
    clear: both;
  }
  
  /*=============================
      - Bootstrap Custom
  =============================*/
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .row {
    --bs-gutter-x: 30px;
  }
  
  .gutter-y-30 {
    --bs-gutter-y: 30px;
  }
  
  .gx-0 {
    --bs-gutter-x: 0;
  }
  
  .row-gutters-40 {
    --bs-gutter-x: 40px;
  }
  @media (max-width: 991.98px) {
    .row-gutters-40 {
      --bs-gutter-x: 30px;
    }
  }
  
  
  @media (min-width: 1921px) {
    .container {
      max-width: 1800px;
    }
  }
  @media (max-width: 1920px) {
    .container {
      max-width: 1200px;
    }
  }
  @media (max-width: 1600px) {
    .container {
      max-width: 1100px;
    }
  }
  @media (max-width: 1199.98px) {
    .container {
      max-width: 960px;
    }
  }
  @media (max-width: 991.98px) {
    .container {
      max-width: 720px;
    }
  }
  @media (max-width: 767.98px) {
    .container {
      max-width: 100%;
    }
  }
  @media only screen and (min-width: 576px) and (max-width: 767px) {
    .container {
      max-width: 540px;
    }
  }
  
  @media (min-width: 1921px) {
    .custom-container {
      max-width: 1800px;
    }
    header .custom-container { max-width:96%;}
  }
  @media (max-width: 1920px) {
    .custom-container {
      max-width: 1730px;
    }
  }
  @media (max-width: 1600px) {
    .custom-container {
      max-width: 1440px;
    }
  }
  @media (max-width: 1440px) {
    .custom-container {
      max-width: 1380px;
    }
  }
  @media (max-width: 1280px) {
    .custom-container {
      max-width: 1180px;
    }
  }
  @media (max-width: 1199.98px) {
    .custom-container {
      max-width: 960px;
    }
  }
  @media (max-width: 991.98px) {
    .custom-container {
      max-width: 720px;
    }
  }
  @media (max-width: 767.98px) {
    .custom-container {
      max-width: 100%;
    }
  }
  @media only screen and (min-width: 576px) and (max-width: 767px) {
    .custom-container {
      max-width: 540px;
    }
  }
  
  .include-bg {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
  }
  
  /*=============================
      1. Button style
  ===============================*/
  .btn {
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    background: var(--tg-theme-primary) none repeat scroll 0 0;
    border: medium none;
    border-radius: 0;
    color: var(--tg-common-color-white);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1;
    margin-bottom: 0;
    padding: 18px 35px;
    text-align: center;
    text-transform: uppercase;
    touch-action: manipulation;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    vertical-align: middle;
    white-space: nowrap;
    position: relative;
    z-index: 1;
    overflow: hidden;
  }
  .btn::before {
    content: "";
    position: absolute;
    -webkit-transition-duration: 800ms;
    transition-duration: 800ms;
    width: 200%;
    height: 200%;
    top: 110%;
    left: 50%;
    background: var(--tg-theme-secondary);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -o-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
    z-index: -1;
  }
  .btn > .btn-text {
    display: block;
    line-height: 1;
  }
  .btn i {
    margin-left: 12px;
  }
  .btn:hover {
    color: var(--tg-common-color-white);
  }
  .btn:hover::before {
    top: -40%;
  }
  
  .border-btn {
    border: 2px solid #e9e9e9;
    padding: 18px 30px;
  }
  @media (max-width: 767.98px) {
    .border-btn {
      padding: 16px 25px;
    }
  }
  .border-btn::before {
    display: none;
  }
  .border-btn:hover {
    border-color: var(--tg-theme-primary);
    background: var(--tg-theme-primary);
  }
  
  /*=============================
      00. Keyframe Animation
  ===============================*/
  @-webkit-keyframes lineMove {
    from {
      background-position: left;
    }
    to {
      background-position: right;
    }
  }
  @keyframes lineMove {
    from {
      background-position: left;
    }
    to {
      background-position: right;
    }
  }
  /*=============================
      00. Preloader
  ===============================*/
  #preloader {
    background: var(--tg-common-color-white);
    height: 100%;
    width: 100%;
    position: fixed;
    z-index: 1;
    margin-top: 0px;
    top: 0px;
    z-index: 99;
  }
  
  #loading-center {
    width: 100%;
    height: 100%;
    position: relative;
  }
  
  #loading-center-absolute {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }
  
  .object {
    width: 20px;
    height: 20px;
    -moz-border-radius: 50% 50% 50% 50%;
    -webkit-border-radius: 50% 50% 50% 50%;
    border-radius: 50% 50% 50% 50%;
    background: var(--tg-theme-primary);
  }
  
  #object_one {
    -webkit-animation: object_one 1.5s infinite;
    animation: object_one 1.5s infinite;
  }
  
  #object_two {
    -webkit-animation: object_two 1.5s infinite;
    animation: object_two 1.5s infinite;
    -webkit-animation-delay: 0.25s;
    animation-delay: 0.25s;
  }
  
  #object_three {
    -webkit-animation: object_three 1.5s infinite;
    animation: object_three 1.5s infinite;
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
  }
  
  @-webkit-keyframes object_one {
    75% {
      -webkit-transform: scale(0);
    }
  }
  @keyframes object_one {
    75% {
      transform: scale(0);
      -webkit-transform: scale(0);
    }
  }
  @-webkit-keyframes object_two {
    75% {
      -webkit-transform: scale(0);
    }
  }
  @keyframes object_two {
    75% {
      transform: scale(0);
      -webkit-transform: scale(0);
    }
  }
  @-webkit-keyframes object_three {
    75% {
      -webkit-transform: scale(0);
    }
  }
  @keyframes object_three {
    75% {
      transform: scale(0);
      -webkit-transform: scale(0);
    }
  
  
  
  }
  /*=============================
      - Background color
  ===============================*/
  .grey-bg {
    background: var(--tg-common-color-gray);
  }
  
  .white-bg {
    background: var(--tg-common-color-white);
  }
  
  .black-bg {
    background: var(--tg-common-color-black);
  }
  
  .red-bg {
    background: var(--tg-theme-secondary);
  }
  
  /*=============================
      00. OffCanvas Menu
  ===============================*/
  .offCanvas__wrap {
    position: fixed;
    overflow-y: auto;
    top: 0;
    left: 0;
    width: 395px;
    padding: 80px 60px 75px;
    transform: translateX(-100%);
    height: 100%;
    display: block;
    background-color: var(--tg-common-color-white);
    z-index: 1020;
    -webkit-transition: all 600ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
    -moz-transition: all 600ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
    transition: all 600ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    -webkit-box-shadow: 16px 0px 32px 0px rgba(0, 0, 0, 0.06);
    box-shadow: 16px 0px 32px 0px rgba(0, 0, 0, 0.06);
  }
  .offCanvas__wrap::-webkit-scrollbar {
    width: 0px;
  }
  @media (max-width: 1600px) {
    .offCanvas__wrap {
      width: 340px;
      padding: 50px 35px 45px;
    }
  }
  @media (max-width: 767.98px) {
    .offCanvas__wrap {
      width: 320px;
      padding: 50px 25px 40px;
    }
  }
  .offCanvas__body {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    flex: 1;
  }
  .offCanvas__toggle {
    position: absolute;
    top: 30px;
    right: 30px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    width: 50px;
    height: 50px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--tg-common-color-white);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -o-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
    background: var(--tg-theme-primary);
    cursor: pointer;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
  }
  .offCanvas__toggle:hover {
    background: var(--tg-theme-secondary);
  }
  @media (max-width: 1600px) {
    .offCanvas__toggle {
      top: 20px;
      right: 25px;
      width: 40px;
      height: 40px;
      font-size: 20px;
    }
  }
  .offCanvas__content p {
    margin: 0 0;
  }
  .offCanvas__logo {
    margin: 0 0 25px;
  }
  .offCanvas__instagram {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 17px 0;
    margin-left: -8.5px;
    margin-right: -8.5px;
    margin-top: 55px;
  }
  .offCanvas__instagram li {
    width: 33.333%;
    flex: 0 0 33.333%;
    padding-left: 8.5px;
    padding-right: 8.5px;
  }
  .offCanvas__instagram li a {
    display: block;
  }
  .offCanvas__instagram li a img {
    height: 70px;
    object-fit: cover;
    object-position: center;
  }
  @media (max-width: 1600px) {
    .offCanvas__instagram {
      margin-top: 35px;
    }
  }
  .offCanvas__contact {
    margin: auto 0 0;
  }
  @media (max-width: 1600px) {
    .offCanvas__contact {
      margin: 20px 0 0;
    }
  }
  .offCanvas__contact .title {
    margin: 0 0 28px;
    font-size: 24px;
    letter-spacing: -0.5px;
  }
  @media (max-width: 1600px) {
    .offCanvas__contact .title {
      margin: 0 0 20px;
      font-size: 22px;
    }
  }
  .offCanvas__contact-list {
    margin: 0 0 73px;
  }
  @media (max-width: 1600px) {
    .offCanvas__contact-list {
      margin: 0 0 30px;
    }
  }
  .offCanvas__contact-list li {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    gap: 0 20px;
    color: var(--tg-common-color-black);
    margin: 0 0 8px;
  }
  .offCanvas__contact-list li i {
    color: #c0bfbf;
    line-height: 1;
    width: 16px;
    flex: 0 0 auto;
  }
  .offCanvas__contact-list li a {
    color: var(--tg-common-color-black);
  }
  .offCanvas__contact-list li a:hover {
    color: var(--tg-theme-primary);
  }
  .offCanvas__social {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px 28px;
  }
  .offCanvas__social li {
    line-height: 1;
  }
  .offCanvas__social li a {
    display: block;
    font-size: 18px;
    color: var(--tg-common-color-black);
  }
  .offCanvas__social li a:hover {
    color: var(--tg-theme-primary);
  }
  .offCanvas__overlay {
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 99;
    transition: all 700ms ease;
    -moz-transition: all 700ms ease;
    -webkit-transition: all 700ms ease;
    -ms-transition: all 700ms ease;
    -o-transition: all 700ms ease;
    opacity: 0;
    visibility: hidden;
  }
  .offCanvas__menu-visible .offCanvas__overlay {
    opacity: 0.6;
    visibility: visible;
  }
  .offCanvas__menu-visible .offCanvas__wrap {
    transform: translateX(0);
  }
  .offCanvas__menu-wrapper {
    margin: 50px 0 50px;
  }
  @media (max-width: 767.98px) {
    .offCanvas__menu-wrapper {
      margin: 40px 0 40px;
    }
  }
  .offCanvas__menu-wrapper ul {
    margin: 0;
    padding: 0;
  }
  .offCanvas__menu-wrapper .navigation li {
    display: block;
    list-style: none;
    position: relative;
  }
  .offCanvas__menu-wrapper .navigation li.menu-item-has-children .sub-menu {
    display: none;
  }
  .offCanvas__menu-wrapper .navigation li .dropdown-icon {
    position: absolute;
    top: 0;
    right: 0;
    padding: 14px;
    cursor: pointer;
  }
  .offCanvas__menu-wrapper .navigation li .dropdown-icon.fa-minus {
    color: var(--tg-theme-primary);
  }
  .offCanvas__menu-wrapper .navigation li .dropdown-icon.fa-minus.fa-plus {
    color: currentColor;
  }
  .offCanvas__menu-wrapper .navigation li > a {
    position: relative;
    display: block;
    line-height: 1.35;
    padding: 10px 40px 10px 0;
    font-size: 20px;
    font-weight: 500;
    color: var(--tg-heading-color);
    text-transform: capitalize;
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    border: none;
  }
  .offCanvas__menu-wrapper .navigation li.active > a {
    color: var(--tg-theme-primary);
  }
  .offCanvas__menu-wrapper .navigation > li .sub-menu {
    margin-left: 20px;
  }
  .offCanvas__menu-wrapper .navigation > li .sub-menu li a {
    font-size: 16px;
    padding: 8px 40px 8px 0;
  }
  
  /*=============================
      00. Breadcrumb
  ===============================*/
  .breadcrumb {
    gap: 5px 13px;
    margin: 0 0;
  }
  .breadcrumb-area {
    margin: -1px 0 0;
  }
  .breadcrumb-content {
    background: var(--tg-common-color-white);
    padding: 24px 30px;
  }
  @media (max-width: 767.98px) {
    .breadcrumb-content {
      padding: 24px 25px;
    }
  }
  .breadcrumb-item {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    gap: 13px;
    padding: 0 0;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: var(--tg-fw-bold);
    color: var(--tg-heading-color);
  }
  .breadcrumb-item + .breadcrumb-item {
    padding: 0 0;
  }
  .breadcrumb-item::before {
    display: none;
  }
  .breadcrumb-item::after {
    content: "\f105";
    display: block;
    font-family: var(--tg-icon-font-family);
    color: var(--tg-theme-primary);
    opacity: 0.4;
  }
  .breadcrumb-item:last-child::after {
    display: none;
  }
  .breadcrumb-item.active {
    color: var(--tg-theme-primary);
  }
  .breadcrumb-item a {
    display: block;
    color: var(--tg-heading-color);
  }
  
  /*=============================
      00. Scroll Top
  ===============================*/
  .scroll__top {
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    position: fixed;
  
    bottom: -10%;
    right: 50px;
    font-size: 16px;
    border-radius: 0;
    z-index: 99;
    color: var(--tg-common-color-white);
    text-align: center;
    cursor: pointer;
    background: var(--tg-theme-primary);
    transition: 1s ease;
    border: none;
  }
  .scroll__top.open {
    bottom: 30px;
  }
  @media (max-width: 767.98px) {
    .scroll__top.open {
      bottom: 20px;
      width: 30px;
      height: 30px;
      line-height: 30px;
    }
  }
  .scroll__top::after {
    position: absolute;
    z-index: -1;
    content: "";
    top: 100%;
    left: 5%;
    height: 10px;
    width: 90%;
    opacity: 1;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0) 80%);
  }
  .scroll__top:hover {
    background: #ccc;
  }
  @media (max-width: 991.98px) {
    .scroll__top {
      right: 30px;
    }
  }
  @media (max-width: 767.98px) {
    .scroll__top {
      right: 15px;
    }
  }
  
  /*=============================
      00. Section Title
  ===============================*/
  .section__title-wrap {
    overflow: hidden;
  }
  .section__title-wrap::after {
    content: "";
    display: block;
    background-image: url(../img/bg/section_line.png);
    background-repeat: repeat;
    background-size: auto 100%;
    width: 100%;
    height: 7px;
    margin-top: 20px;
    -webkit-animation-duration: 5s;
    animation-duration: 5s;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-play-state: paused;
    -moz-animation-play-state: paused;
    -o-animation-play-state: paused;
    animation-play-state: paused;
    -webkit-animation-name: lineMove;
    animation-name: lineMove;
  }
  .section__sub-title {
    display: block;
    font-size: 14px;
    text-transform: uppercase;
    margin: 0 0 3px;
    color: var(--tg-theme-primary);
  }
  .section__main-title {
    margin: 0 0;
    font-size: 24px;
    letter-spacing: -0.5px;
  }
  @media (max-width: 767.98px) {
    .section__read-more {
      margin-top: 8px;
    }
  }
  .section__read-more a {
    display: inline-flex;
    align-items: center;
    font-size: 16px;
    font-weight: var(--tg-fw-bold);
    color: var(--tg-heading-color);
    gap: 8px;
    letter-spacing: -0.5px;
  }
  .section__read-more a:hover {
    color: var(--tg-theme-primary);
  }
  .section__hover-line:hover .section__title-wrap::after {
    -webkit-animation-play-state: running;
    -moz-animation-play-state: running;
    -o-animation-play-state: running;
    animation-play-state: running;
  }
  .section__title-white .section__sub-title {
    color: #999999;
  }
  .section__title-white .section__main-title {
    color: var(--tg-common-color-white);
  }
  .section__title-white .section__read-more a {
    color: var(--tg-common-color-white);
  }
  .section__title-white .section__read-more a:hover {
    color: var(--tg-theme-primary);
  }
  .section__title-white::after {
    opacity: 0.2;
  }
  
  /*=============================
      02. Header
  ===============================*/
  .header__top {
    padding: 40px 0 23px;
  }
  @media (max-width: 1199.98px) {
    .header__top {
      padding: 25px 0 25px;
    }
  }
  
  .header__top-search {
    max-width: 260px;
  }
  @media (max-width: 991.98px) {
    .header__top-search {
      margin-left: auto;
    }
  }
  @media (max-width: 767.98px) {
    .header__top-search {
      max-width: 100%;
      width: 100%;
    }
  }
  .header__top-search form {
    position: relative;
  }
  .header__top-search form::before {
    content: "\f002";
    position: absolute;
    left: 18px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    font-family: var(--tg-icon-font-family);
    font-size: 14px;
    color: var(--tg-heading-color);
    font-weight: 400;
    line-height: 1;
  }
  .header__top-search form input {
    display: block;
    width: 100%;
    border: none;
    padding: 10px 20px 10px 38px;
    font-size: 14px;
    height: 44px;
  }
  .header__top-search form input::placeholder {
    font-size: 14px;
    color: #c7c7c7;
  }
  .header__top-right ul.list-wrap {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: flex-end;
  }
  @media (max-width: 767.98px) {
    .header__top-right ul.list-wrap {
      justify-content: flex-end;
    }
  }
  .header__top-right .btn {
    padding: 15px 20px;
  }
  @media (max-width: 991.98px) {
    .header__top-right .lang {
      display: none;
    }
  }
  @media (max-width: 767.98px) {
    .header__top-right .lang {
      display: block;
    }
  }
  .header__top-right .lang .dropdown-toggle {
    display: block;
    border: none;
    background: var(--tg-common-color-white);
    text-transform: uppercase;
    font-size: 14px;
    font-weight: var(--tg-fw-bold);
    color: var(--tg-heading-color);
    padding: 15px 20px;
    line-height: 1;
  }
  .header__top-right .lang .dropdown-toggle::after {
    content: "\f107";
    margin: 0 0;
    vertical-align: middle;
    border: none;
    font-family: var(--tg-icon-font-family);
    font-weight: var(--tg-fw-regular);
    margin-left: 5px;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
  }
  .header__top-right .lang .dropdown-toggle.show::after {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
  }
  .header__top-right .lang .dropdown-menu {
    min-width: 100%;
    width: 100%;
    border: none;
  }
  .header__top-right .lang .dropdown-menu li a {
    display: block;
    font-weight: var(--tg-fw-bold);
  
    font-size: 14px;
    text-transform: uppercase;
  }
  .header__top-right .lang .dropdown-menu li a.active, .header__top-right .lang .dropdown-menu li a:active {
    background-color: var(--tg-theme-primary);
  }
  .header__top-bar {
    background: var(--tg-theme-secondary);
    padding: 9px 0;
  }
  .header__top-bar-right {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
  @media (max-width: 767.98px) {
    .header__top-bar-right {
      justify-content: center;
    }
  }
  .header__top-bar-right ul {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    position: relative;
    gap: 0 15px;
    padding-right: 30px;
    margin-right: 30px;
  }
  @media (max-width: 1199.98px) {
    .header__top-bar-right ul {
      padding-right: 25px;
      margin-right: 25px;
    }
  }
  .header__top-bar-right ul::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 1px;
    height: 20px;
    background: #272727;
  }
  .header__top-bar-right ul li {
    display: block;
  }
  .header__top-bar-right ul li a {
    display: block;
    color: #767676;
    font-size: 14px;
  }
  .header__top-bar-right ul li a:hover {
    color: var(--tg-theme-primary);
  }
  .header__top-bar-right .sign-in {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: var(--tg-fw-bold);
    color: var(--tg-common-color-white);
  }
  .header__top-bar-right .sign-in i {
    color: #565656;
    margin-right: 3px;
  }
  .header__top-bar-right .sign-in:hover {
    color: var(--tg-theme-primary);
  }
  .header__top-menu > ul.list-wrap {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
  
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 5px 0;
  }
  .header__top-menu > ul.list-wrap .dropdown-menu {
    width: 6rem;
    background: var(--tg-theme-secondary);
    inset: 12px auto auto -15px !important;
    border-radius: 0;
  }
  .header__top-menu > ul.list-wrap .dropdown-menu li a {
    color: var(--tg-common-color-white);
  }
  .header__top-menu > ul.list-wrap .dropdown-menu li a.active, .header__top-menu > ul.list-wrap .dropdown-menu li a:hover, .header__top-menu > ul.list-wrap .dropdown-menu li a:focus, .header__top-menu > ul.list-wrap .dropdown-menu li a:active {
    background-color: var(--tg-theme-primary);
  }
  .header__top-menu > ul.list-wrap .lang {
    padding-right: 30px;
    margin-right: 30px;
    position: relative;
  }
  @media (max-width: 1199.98px) {
    .header__top-menu > ul.list-wrap .lang {
      padding-right: 25px;
      margin-right: 25px;
    }
  }
  .header__top-menu > ul.list-wrap .lang::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 1px;
    height: 20px;
    background: #272727;
  }
  .header__top-menu > ul.list-wrap .lang .dropdown-toggle {
    background: transparent;
    color: var(--tg-common-color-white);
    padding: 0 0;
    display: flex;
    align-items: center;
  }
  .header__top-menu > ul.list-wrap > li {
    margin-right: 40px;
  }
  @media (max-width: 1199.98px) {
    .header__top-menu > ul.list-wrap > li {
      margin-right: 30px;
    }
  }
  .header__top-menu > ul.list-wrap > li:last-child {
    margin-right: 0;
  }
  .header__top-menu > ul.list-wrap > li > a {
    display: block;
    color: var(--tg-common-color-white);
    font-size: 14px;
    font-weight: var(--tg-fw-bold);
    text-transform: uppercase;
  }
  .header__top-menu > ul.list-wrap > li > a:hover {
    color: var(--tg-theme-primary);
  }
  .header__top-menu > ul.list-wrap > li.buy-theme a {
    color: var(--tg-body-color);
  }
  .header__top-menu > ul.list-wrap > li.buy-theme a span {
    color: var(--tg-theme-primary);
  }
  .header__top-menu > ul.list-wrap > li.buy-theme a:hover {
    color: var(--tg-theme-primary);
  }
  
  .offcanvas-toggle a {
    display: block;
    font-size: 26px;
    color: var(--tg-heading-color);
  }
  .offcanvas-toggle a:hover {
    color: var(--tg-theme-primary);
  }
  @media (max-width: 767.98px) {
    .offcanvas-toggle {
      display: none;
    }
  }
  
  .transparent-header {
    position: absolute;
    left: 0;
    top: 0px;
    width: 100%;
    z-index: 9;
    height: auto;
  }
  @media (max-width: 767.98px) {
    .transparent-header {
      top: 0;
    }
  }
  
  .tg-header__area .mobile-nav-toggler {
    position: relative;
    float: right;
    font-size: 30px;
    cursor: pointer;
    line-height: 1;
    color: var(--tg-theme-primary);
    display: none;
    margin-top: 1px;
  }
  @media (max-width: 991.98px) {
    .tg-header__area .mobile-nav-toggler {
      display: block;
    }
  }
  
  .tgmenu__wrap {
    border-top: 1px solid var(--tg-border-1);
    border-bottom: 1px solid var(--tg-border-1);
    padding: 0 20px;
  }
  @media (max-width: 991.98px) {
    .tgmenu__wrap {
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      padding: 17px 0;
    }
  }
  .tgmenu__nav {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    justify-content: space-between;
  }
  @media (max-width: 991.98px) {
    .tgmenu__nav {
      justify-content: space-between;
      flex-grow: 1;
    }
  }
  
  .top-head-right {
      display: flex;
      flex-direction: column;
      align-items: end;
      min-width: 800px;
  }
  
  .tgmenu__navbar-wrap {
    display: flex;
    flex-grow: 1;
  }
  .tgmenu__navbar-wrap ul {
    display: flex;
    padding: 0;
    flex-direction: row;
    flex-wrap: wrap;
    margin: 0 auto 0;
  }
  .tgmenu__navbar-wrap ul li {
    display: block;
    position: relative;
    list-style: none;
  }
  .tgmenu__navbar-wrap ul li a {
    font-size: 18px;
    font-weight: var(--tg-fw-bold);
  
  
  
  
  
    text-transform: uppercase;
    color: var(--tg-heading-color);
    padding: 23px 20px;
    display: inline-flex;
    line-height: 1;
    position: relative;
    z-index: 1;
  }
  .tgmenu__navbar-wrap ul li .sub-menu {
    position: absolute;
    left: -16px;
    top: 100%;
    min-width: 160px;
    /*border: 1px solid #f5f5f5;*/
  border-top: #e52141 5px solid;
      background: rgb(255 255 255 / 86%);
    margin: 0;
    -webkit-transform: scale(1, 0);
    -moz-transform: scale(1, 0);
    -ms-transform: scale(1, 0);
    -o-transform: scale(1, 0);
    transform: scale(1, 0);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
    -webkit-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
    -webkit-box-shadow: 0px 30px 70px 0px rgba(137, 139, 142, 0.15);
    -moz-box-shadow: 0px 30px 70px 0px rgba(137, 139, 142, 0.15);
    box-shadow: 0px 30px 70px 0px rgba(137, 139, 142, 0.15);
    border-radius: 0;
    padding: 18px 0;
    display: block;
    visibility: hidden;
    opacity: 0;
    z-index: 9;
  }
  .tgmenu__navbar-wrap ul li .sub-menu .sub-menu {
    right: auto;
    left: 100%;
    top: 0;
  }
  .tgmenu__navbar-wrap ul li .sub-menu li {
    margin-left: 0;
    text-align: center;
    display: block;
    -webkit-transform: translateY(5px);
    -moz-transform: translateY(5px);
    -ms-transform: translateY(5px);
    -o-transform: translateY(5px);
    transform: translateY(5px);
    -webkit-transition: all 0.2s cubic-bezier(0.4, 0.28, 0.31, 1.28) 0s;
    transition: all 0.2s cubic-bezier(0.4, 0.28, 0.31, 1.28) 0s;
    opacity: 0;
    visibility: hidden;
  }
  .tgmenu__navbar-wrap ul li .sub-menu li a {
    font-size: 16px;
    display: block;
    padding: 10px 0;
    line-height: 1.4;
    font-weight: var(--tg-fw-bold);
    color: var(--tg-heading-color);
  }
  .tgmenu__navbar-wrap ul li .sub-menu li.active > a, .tgmenu__navbar-wrap ul li .sub-menu li:hover > a {
    color: var(--tg-theme-primary);
  }
  .tgmenu__navbar-wrap ul li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
  }
  .tgmenu__navbar-wrap ul li:hover > .sub-menu > li {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }
  .tgmenu__navbar-wrap ul li:hover > .sub-menu > li:nth-child(2n+1) {
    -webkit-transition-delay: 0.1s;
    transition-delay: 0.1s;
  }
  .tgmenu__navbar-wrap ul li:hover > .sub-menu > li:nth-child(2n+2) {
    -webkit-transition-delay: 0.15s;
    transition-delay: 0.15s;
  }
  .tgmenu__navbar-wrap ul li:hover > .sub-menu > li:nth-child(2n+3) {
    -webkit-transition-delay: 0.2s;
    transition-delay: 0.2s;
  }
  .tgmenu__navbar-wrap ul li:hover > .sub-menu > li:nth-child(2n+4) {
    -webkit-transition-delay: 0.25s;
    transition-delay: 0.25s;
  }
  .tgmenu__navbar-wrap ul li:hover > .sub-menu > li:nth-child(2n+5) {
    -webkit-transition-delay: 0.3s;
    transition-delay: 0.3s;
  }
  .tgmenu__navbar-wrap ul li:hover > .sub-menu > li:nth-child(2n+6) {
    -webkit-transition-delay: 0.35s;
    transition-delay: 0.35s;
  }
  .tgmenu__navbar-wrap ul li:hover > .sub-menu > li:nth-child(2n+7) {
    -webkit-transition-delay: 0.4s;
    transition-delay: 0.4s;
  }
  .tgmenu__navbar-wrap ul li:hover > .sub-menu > li:nth-child(2n+8) {
    -webkit-transition-delay: 0.45s;
    transition-delay: 0.45s;
  }
  .tgmenu__navbar-wrap ul li:hover > .sub-menu > li:nth-child(2n+9) {
    -webkit-transition-delay: 0.45s;
    transition-delay: 0.45s;
  }
  .tgmenu__navbar-wrap > ul > li.menu-item-has-children > a::after {
    content: "\f067";
    display: inline-block;
    font-weight: normal;
    font-family: var(--tg-icon-font-family);
    margin-left: 6px;
    font-size: 12px;
    color: #d7d7d7;
  }
  .tgmenu__navbar-wrap > ul > li.menu-item-has-children:hover > a::after {
    content: "\f068";
  }
  .tgmenu__navbar-wrap > ul > li.active a, .tgmenu__navbar-wrap > ul > li.active a::after, .tgmenu__navbar-wrap > ul > li:hover a, .tgmenu__navbar-wrap > ul > li:hover a::after {
    color: var(--tg-theme-primary);
  }
  .tgmenu__main-menu li.menu-item-has-children .dropdown-btn {
    display: none;
  }
  .tgmenu__action > ul {
    display: flex;
    align-items: center;
     margin: 10px 0;
  
  }
  .tgmenu__action > ul li {
    position: relative;
    margin-left: 15px;
    gap: 10px;
   align-items: center;
   color: rgba(255,255,255,0.70);
  }
  .tgmenu__action > ul li:first-child {
    margin-left: 0;
  }
  .tgmenu__action > ul li a {
    color: var(--tg-heading-color);
    font-size: 14px;
    display: block;
    line-height: 1;
  }
  .tgmenu__action > ul li a:hover {
    color: var(--tg-theme-primary);
  }
  .tgmenu__action > ul li.mode-switcher {
    margin-right: 25px;
  }
  .top-links {display: flex;}
  
  @media (max-width: 767.98px) {
    .tgmenu__action > ul li.mode-switcher {
      margin-right: 0;
    }
  }
  @media only screen and (min-width: 576px) and (max-width: 767px) {
    .tgmenu__action > ul li.mode-switcher {
      margin-right: 15px;
    }
  }
  @media (max-width: 767.98px) {
    .tgmenu__action > ul li.user {
      display: none;
    }
  }
  @media only screen and (min-width: 576px) and (max-width: 767px) {
    .tgmenu__action > ul li.user {
      display: block;
    }
  }
  @media (max-width: 767.98px) {
    .tgmenu__action > ul li.header-cart {
      display: none;
    }
  }
  @media only screen and (min-width: 576px) and (max-width: 767px) {
    .tgmenu__action > ul li.header-cart {
      display: block;
    }
  }
  .tgmenu__action > ul .header-btn .btn {
    color: var(--tg-common-color-white);
    font-size: 14px;
    padding: 13px 22px;
  }
  @media (max-width: 1199.98px) {
    .tgmenu__action > ul .header-btn {
      display: none;
    }
  }
  @media (max-width: 991.98px) {
    .tgmenu__action {
      margin-right: 40px;
    }
  }
  @media (max-width: 767.98px) {
    .tgmenu__action {
      margin-right: 25px;
    }
  }
  
  .switcher__tab {
    display: flex;
  }
  .switcher__btn {
    cursor: pointer;
    font-size: 18px;
  }
  .switcher__btn.light-mode {
    color: var(--tg-heading-color);
  }
  .switcher__btn.dark-mode {
    color: #e7e7e7;
  }
  .switcher__mode {
    height: 18px;
    width: 40px;
    display: block;
    position: relative;
    margin: 0 6px;
    background: var(--tg-common-color-white);
    -webkit-border-radius: 35px;
    -moz-border-radius: 35px;
    -o-border-radius: 35px;
    -ms-border-radius: 35px;
    border-radius: 35px;
    cursor: pointer;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
  }
  .switcher__mode::before {
    content: "";
    position: absolute;
    left: 3px;
    top: 3px;
    background-color: var(--tg-common-color-black);
    width: 12px;
    height: 12px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -o-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
  }
  .switcher__mode.active::before {
    left: calc(100% - 15px);
  }
  
  .logo a {
    display: inline-block;
  }
  .logo a img {
    max-width: 300px;
  }
  @media (max-width: 576px) {
  .logo a img {
      max-width: 230px;
  }
  }
  .logo a.logo-light {
    display: none;
  }
  
  .sticky-menu {
    position: fixed;
    left: 0;
    margin: auto;
    top: 0;
    width: 100%;
    z-index: 99;
    background: var(--tg-common-color-gray);
    -webkit-animation: 1000ms ease-in-out 0s normal none 1 running fadeInDown;
    animation: 1000ms ease-in-out 0s normal none 1 running fadeInDown;
    -webkit-box-shadow: 0 10px 15px rgba(25, 25, 25, 0.1);
    box-shadow: 0 10px 15px rgba(25, 25, 25, 0.1);
    border-radius: 0;
  }
  .sticky-menu .tgmenu__wrap {
    border: none;
  }
  @media (max-width: 991.98px) {
    .sticky-menu .tgmenu__wrap {
      padding: 20px 0;
    }
  }
  
  #header-fixed-height.active-height {
    display: block;
    height: 62px;
  }
  @media (max-width: 991.98px) {
    #header-fixed-height.active-height {
      height: 68px;
    }
  }
  
  .header__style-two .header__top {
    padding: 40px 0;
  }
  @media (max-width: 1600px) {
    .header__style-two .header__top {
      padding: 25px 0;
    }
  }
  @media (max-width: 991.98px) {
    .header__style-two .header__top {
      padding: 20px 0;
    }
  }
  .header__style-two .footer__social ul li a {
    color: var(--tg-heading-color);
  }
  .header__style-two .footer__social ul li a:hover {
    color: var(--tg-theme-primary);
  }
  .header__style-two .footer__social ul li a i {
    color: #cdcdcd;
  }
  .header__style-two .tgmenu__wrap {
    padding: 0 0;
  }
  @media (max-width: 991.98px) {
    .header__style-two .tgmenu__wrap {
      padding: 17px 0;
    }
  }
  @media (max-width: 991.98px) {
    .header__style-two .sticky-menu .tgmenu__wrap {
      padding: 20px 0;
    }
  }
  .header__style-two .tgmenu__navbar-wrap > ul {
    margin: 0 auto 0 0;
  }
  .header__style-two .tgmenu__navbar-wrap > ul > li:first-child > a {
    padding-left: 0;
  }
  .header__style-two .tgmenu__action > ul li.header-search a i {
    width: 18px;
    text-align: center;
    color: #ffffff;
  }
  .header__style-two .header__top-search {
    position: absolute;
    top: calc(100% + 20px);
    right: 0;
    width: 260px;
    display: none;
    box-shadow: rgba(25, 25, 25, 0.04) 0px 10px 15px;
    z-index: 9;
  }
  .header__style-two .header__top-search input {
    padding: 13px 20px 13px 40px;
    height: 48px;
  }
  @media (max-width: 991.98px) {
    .header__style-two .footer__social ul {
      justify-content: center;
    }
  }
  @media (max-width: 767.98px) {
    .header__style-two .footer__social ul {
      margin-top: 0;
    }
  }
  @media (max-width: 767.98px) {
    .header__style-two .tgmenu__action li.header-search {
      display: none;
    }
  }
  .header__instagram-item a {
    display: block;
    position: relative;
    z-index: 1;
  }
  .header__instagram-item a::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: var(--tg-theme-secondary);
    opacity: 0;
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    -ms-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
  }
  .header__instagram-item a:hover::after {
  
    opacity: 0.7;
  }
  .header__instagram-item img {
    height: 260px;
    object-fit: cover;
    object-position: center;
  }
  @media (max-width: 1600px) {
    .header__instagram-item img {
      height: 220px;
    }
  }
  @media (max-width: 991.98px) {
    .header__instagram-item img {
      height: 170px;
    }
  }
  @media (max-width: 767.98px) {
    .header__instagram-item img {
      height: 100px;
    }
  }
  
  .header__style-three {
      position: relative;
      z-index: 10;
    /*background: var(--tg-theme-secondary);*/
    background-image: -moz-linear-gradient( -90deg, rgb(0,0,0) 0%, rgba(0,0,0,0) 100%);
    background-image: -webkit-linear-gradient( -90deg, rgb(0,0,0) 0%, rgba(0,0,0,0) 100%);
    background-image: -ms-linear-gradient( -90deg, rgb(0,0,0) 0%, rgba(0,0,0,0) 100%);
  }
  .header__style-three #header-fixed-height.active-height {
    height: 80px;
  }
  @media (max-width: 991.98px) {
    .header__style-three #header-fixed-height.active-height {
      height: 66px;
    }
  }
  .header__style-three .tgmenu__wrap {
    border: none;
  }
  .header__style-three .offcanvas-toggle a {
    color: var(--tg-common-color-white);
    opacity: 0.7;
  }
  .header__style-three .offcanvas-toggle a:hover {
    opacity: 1;
  }
  .header__style-three .tgmenu__navbar-wrap > ul {
    margin: 0 auto;
  }
  
  .header__style-three .tgmenu__navbar-wrap > ul > li a {
    color: var(--tg-common-color-white);
    padding: 22px 18px;
  }
  .header__style-three .tgmenu__navbar-wrap > ul > li:first-child > a {
    padding: 22px 18px;
  }
  
  @media (max-width: 1600px) {
  .header__style-three .tgmenu__navbar-wrap > ul > li a {
    color: var(--tg-common-color-white);
    padding: 22px 8px;
    font-size:16px;
  }
   .header__style-three .tgmenu__navbar-wrap > ul > li:first-child > a {
      padding: 22px 8px;
    }
  }
  @media (max-width: 1280px) {
  .header__style-three .tgmenu__navbar-wrap > ul > li a {
    color: var(--tg-common-color-white);
    padding: 22px 5px;
    font-size:14px;
  }
   .header__style-three .tgmenu__navbar-wrap > ul > li:first-child > a {
      padding: 22px 5px;
     font-size:14px;
    }
  }

  
  
  .header__style-three .tgmenu__action > ul li a {
    color: var(--tg-common-color-white);
  }
  .header__style-three .tgmenu__action > ul li a:hover {
    color: #ff0000;
  }
  
  
  .header__style-three .sticky-menu .tgmenu__action > ul li a:hover {
    color: #fff;
  }
  
  @media (max-width: 1199.98px) {
    .header__style-three .tgmenu__action > ul li.mode-switcher {
      margin-right: 5px;
    }
  }
  @media (max-width: 991.98px) {
    .header__style-three .tgmenu__action > ul li.mode-switcher {
      margin-right: 20px;
    }
  }
  @media (max-width: 767.98px) {
    .header__style-three .tgmenu__action > ul li.mode-switcher {
      margin-right: 0;
    }
  }
  .header__style-three.header__style-two .header__top-search {
    top: calc(100% + 30px);
  }
  @media (max-width: 991.98px) {
    .header__style-three.header__style-two .header__top-search {
      top: calc(100% + 24px);
    }
  }
  .header__style-three .switcher__btn.light-mode {
    color: var(--tg-common-color-white);
  }
  .header__style-three .switcher__btn.dark-mode {
    color: #363636;
  }
  .header__style-three .sticky-menu {
    background: var(--tg-theme-secondary);
  }
  @media (max-width: 991.98px) {
    .header__style-three .sticky-menu .header__top-search {
      top: calc(100% + 26px);
    }
  }
  
  .header__style-four .header__top {
    padding: 30px 0;
  }
  @media (max-width: 1600px) {
    .header__style-four .header__top {
      padding: 20px 0;
    }
  }
  @media (max-width: 1600px) {
    .header__style-four .header__banner-add img {
      max-height: 65px;
    }
  }
  
  .header__style-five .tg-header__area {
    background-image: url(../img/bg/header_bg.jpg);
    background-position: center;
    background-size: cover;
  }
  .header__style-five .tg-header__area .mobile-nav-toggler {
    color: var(--tg-theme-secondary);
  }
  .header__style-five .offcanvas-toggle a {
    color: var(--tg-theme-secondary);
  }
  .header__style-five .tgmenu__navbar-wrap > ul > li > a {
    color: var(--tg-theme-secondary);
  }
  .header__style-five .tgmenu__navbar-wrap > ul > li > a::after {
    color: var(--tg-theme-secondary);
  }
  .header__style-five .tgmenu__navbar-wrap > ul > li:hover > a, .header__style-five .tgmenu__navbar-wrap > ul > li.active > a {
    color: var(--tg-theme-primary);
  }
  .header__style-five .tgmenu__navbar-wrap > ul > li:hover > a::after, .header__style-five .tgmenu__navbar-wrap > ul > li.active > a::after {
    color: var(--tg-theme-primary);
  }
  .header__style-five .tgmenu__action > ul li a {
    color: var(--tg-theme-secondary);
  }
  
  .header__style-six .tg-header__area {
    background-color: #ebebeb;
  }
  .header__style-six .tg-header__area.sticky-menu {
    background-color: var(--tg-common-color-gray);
  }
  .header__style-six .tgmenu__wrap {
    border: none;
  }
  .header__style-six .switcher__btn.dark-mode {
    color: #d6d6d6;
  }
  
  .header__style-seven .header__top {
    padding: 40px 0;
  }
  
  .home-main {margin-top:-128px;}
  
  
  @media (max-width: 1199.98px) {
    .header__style-seven .header__top {
      padding: 25px 0;
    }
  }
  .header__style-seven .header__top-search {
    max-width: 360px;
    margin: 0 auto;
  }
  @media (max-width: 767.98px) {
    .header__style-seven .header__top-search {
      max-width: 100%;
      width: 100%;
    }
  }
  @media (max-width: 767.98px) {
    .header__style-seven .offcanvas-toggle {
      display: block;
    }
  }
  @media (max-width: 767.98px) {
    .header__style-seven .header__top-search {
      margin: 15px auto 0;
    }
  }
  
  /*=============================
      03. Mobile Menu
  ===============================*/
  .tgmobile__search {
    padding: 0 20px 25px 25px;
  }
  .tgmobile__search form {
    position: relative;
  }
  .tgmobile__search input {
    display: block;
    width: 100%;
    border: none;
    padding: 10px 45px 10px 20px;
    font-size: 14px;
    height: 45px;
    background: var(--tg-common-color-gray);
  }
  .tgmobile__search input::placeholder {
    font-size: 14px;
    color: #c7c7c7;
  }
  .tgmobile__search button {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    border: none;
    padding: 0;
    right: 20px;
    line-height: 1;
    background: transparent;
    color: var(--tg-heading-color);
  }
  .tgmobile__menu {
    position: fixed;
    right: 0;
    top: 0;
    width: 300px;
    padding-right: 30px;
    max-width: 100%;
    height: 100%;
    z-index: 99;
    border-radius: 0px;
    transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    -moz-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    -webkit-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    -ms-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86) e;
    -o-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    -webkit-transform: translateX(101%);
    -moz-transform: translateX(101%);
    -ms-transform: translateX(101%);
    -o-transform: translateX(101%);
    transform: translateX(101%);
  }
  .tgmobile__menu .navbar-collapse {
    display: block !important;
  }
  .tgmobile__menu .nav-logo {
    position: relative;
    padding: 30px 25px;
    text-align: left;
  }
  .tgmobile__menu .nav-logo img {
    width: 109px;
  }
  .tgmobile__menu .nav-logo .logo-light {
    display: none;
  }
  .tgmobile__menu .navigation {
    position: relative;
    display: block;
    width: 100%;
    float: none;
    margin: 0;
    padding: 0;
  }
  .tgmobile__menu .navigation li {
    position: relative;
    display: block;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
  }
  .tgmobile__menu .navigation li.current > a::before {
    height: 100%;
  }
  .tgmobile__menu .navigation li.menu-item-has-children .dropdown-btn {
    position: absolute;
    right: 20px;
    top: 6px;
    width: 32px;
    height: 32px;
    text-align: center;
    font-size: 16px;
    line-height: 32px;
    color: var(--tg-heading-color);
    background: #efefef;
    cursor: pointer;
    border-radius: 2px;
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    z-index: 5;
  }
  .tgmobile__menu .navigation li.menu-item-has-children .dropdown-btn .plus-line {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%) rotate(0);
    -ms-transform: translate(-50%, -50%) rotate(0);
    transform: translate(-50%, -50%) rotate(0);
    border-radius: 10px;
    width: 12px;
    height: 2px;
    background-color: var(--tg-common-color-black);
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
  }
  .tgmobile__menu .navigation li.menu-item-has-children .dropdown-btn .plus-line::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%) rotate(0);
    -ms-transform: translate(-50%, -50%) rotate(0);
    transform: translate(-50%, -50%) rotate(0);
    border-radius: 10px;
    width: 2px;
    height: 12px;
    background-color: var(--tg-common-color-black);
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
  }
  .tgmobile__menu .navigation li.menu-item-has-children .dropdown-btn.open {
    background-color: var(--tg-theme-primary);
  }
  .tgmobile__menu .navigation li.menu-item-has-children .dropdown-btn.open .plus-line {
    background-color: var(--tg-common-color-white);
  }
  .tgmobile__menu .navigation li.menu-item-has-children .dropdown-btn.open .plus-line::after {
    display: none;
  }
  .tgmobile__menu .navigation li > a {
    position: relative;
    display: block;
    line-height: 1.5;
    padding: 10px 60px 10px 25px;
    font-size: 16px;
    font-weight: 500;
    color: var(--tg-heading-color);
    text-transform: capitalize;
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    border: none;
  }
  .tgmobile__menu .navigation li > a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 0;
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
  }
  .tgmobile__menu .navigation li ul li > a {
    margin-left: 20px;
  }
  .tgmobile__menu .navigation li ul li ul li a {
    margin-left: 40px;
  }
  .tgmobile__menu .navigation li ul li ul li ul li a {
    margin-left: 60px;
  }
  .tgmobile__menu .navigation li > ul {
    display: none;
  }
  .tgmobile__menu .navigation li > ul > li > ul {
    display: none;
  }
  .tgmobile__menu .navigation ul {
    padding: 0;
    margin: 0;
  }
  .tgmobile__menu .navigation ul li a {
    display: block;
  }
  .tgmobile__menu .navigation ul li ul li > a {
    font-size: 16px;
    margin-left: 20px;
    text-transform: capitalize;
  }
  .tgmobile__menu .navigation:last-child {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }
  .tgmobile__menu .navigation > li > ul > li:first-child {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
  }
  .tgmobile__menu .close-btn {
    position: absolute;
    right: 15px;
    top: 28px;
    line-height: 30px;
    width: 35px;
    text-align: center;
    font-size: 20px;
    color: var(--tg-theme-primary);
    cursor: pointer;
    z-index: 10;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }
  .tgmobile__menu-backdrop {
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    transition: all 700ms ease;
    -moz-transition: all 700ms ease;
    -webkit-transition: all 700ms ease;
    -ms-transition: all 700ms ease;
    -o-transition: all 700ms ease;
    opacity: 0;
    visibility: hidden;
    background: rgba(0, 0, 0, 0.5);
  }
  .tgmobile__menu .social-links ul {
    display: flex;
    position: relative;
    text-align: center;
    padding: 30px 20px 20px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
  }
  .tgmobile__menu .social-links ul li {
    position: relative;
    display: inline-block;
    margin: 0px 6px 10px;
  }
  .tgmobile__menu .social-links ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    position: relative;
    line-height: 32px;
    font-size: 16px;
    color: #292b37;
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    border: 1px solid #efefef;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
  }
  .tgmobile__menu .social-links ul li a:hover {
    border-color: var(--tg-theme-primary);
    background: var(--tg-theme-primary);
    color: var(--tg-common-color-white);
  }
  .tgmobile__menu-box {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    max-height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    background: var(--tg-common-color-white);
    padding: 0px 0px;
    z-index: 5;
    box-shadow: -9px 0 14px 0px rgba(0, 0, 0, 0.06);
  }
  .tgmobile__menu-outer .mobile-nav-toggler {
    position: relative;
    float: right;
    font-size: 40px;
    line-height: 50px;
    cursor: pointer;
    display: none;
    color: var(--tg-common-color-white);
    margin-right: 30px;
    top: 15px;
  }
  
  .mobile-menu-visible {
    overflow: hidden;
  }
  .mobile-menu-visible .tgmobile__menu {
    -webkit-transform: translateX(0%);
    -moz-transform: translateX(0%);
    -ms-transform: translateX(0%);
    -o-transform: translateX(0%);
    transform: translateX(0%);
  }
  .mobile-menu-visible .tgmobile__menu-backdrop {
    opacity: 1;
    visibility: visible;
  }
  .mobile-menu-visible .tgmobile__menu .close-btn {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
  
  /*=============================
      04. Banner
  ===============================*/
  .tgbanner__area {
    padding: 80px 0 0;
  }
  .tgbanner__grid {
    display: -ms-grid;
    display: grid;
    grid-template-columns: 70% 1fr;
    column-gap: 40px;
  }
  @media (max-width: 1199.98px) {
    .tgbanner__grid {
      grid-template-columns: 64% 1fr;
    }
  }
  @media (max-width: 991.98px) {
    .tgbanner__grid {
      grid-template-columns: auto;
    }
  }
  .tgbanner__post {
    margin: 0 0 50px;
  }
  .tgbanner__post.big-post .tgbanner__content {
    background-image: url(../img/bg/content_pattern.png);
    margin: -50px 0 0 60px;
    background-color: var(--tg-common-color-white);
    padding: 35px 40px 35px;
    max-width: 620px;
    position: relative;
    background-position: right center;
    background-repeat: no-repeat;
    z-index: 1;
  }
  @media (max-width: 1199.98px) {
    .tgbanner__post.big-post .tgbanner__content {
      max-width: 100%;
      margin: -50px 40px 0 40px;
      padding: 30px 30px;
    }
  }
  @media (max-width: 767.98px) {
    .tgbanner__post.big-post .tgbanner__content {
      margin: 0 0;
      padding: 30px 25px;
    }
  }
  .tgbanner__post.big-post img {
    height: 570px;
    object-fit: cover;
  }
  @media (max-width: 1199.98px) {
    .tgbanner__post.big-post img {
      height: 390px;
    }
  }
  @media (max-width: 767.98px) {
    .tgbanner__post.big-post img {
      height: 200px;
    }
  }
  @media only screen and (min-width: 576px) and (max-width: 767px) {
    .tgbanner__post.big-post img {
      height: 280px;
    }
  }
  .tgbanner__post.small-post .tgbanner__thumb {
    margin: 0 0 30px;
  }
  @media (max-width: 1199.98px) {
    .tgbanner__post.small-post .tgbanner__thumb {
      margin: 0 0 20px;
    }
  }
  .tgbanner__post.small-post .tgbanner__content {
    margin: 0 0;
    position: relative;
  }
  .tgbanner__post.small-post .tgbanner__content .title {
    font-size: 20px;
    line-height: 1.4;
  }
  .tgbanner__post.small-post .tgbanner__content-meta {
    margin: 0 0 7px;
  }
  .tgbanner__post.small-post img {
    height: 180px;
    object-fit: cover;
  }
  @media (max-width: 767.98px) {
    .tgbanner__post.small-post img {
      height: 200px;
    }
  }
  @media only screen and (min-width: 576px) and (max-width: 767px) {
    .tgbanner__post.small-post img {
      height: 280px;
    }
  }
  .tgbanner__thumb img {
    width: 100%;
  }
  .tgbanner__content .title {
    margin: 0 0 0;
    font-size: 30px;
    letter-spacing: -0.5px;
  }
  @media (max-width: 1199.98px) {
    .tgbanner__content .title {
      font-size: 26px;
    }
  }
  @media (max-width: 767.98px) {
    .tgbanner__content .title {
      font-size: 20px;
      line-height: 1.35;
    }
  }
  @media only screen and (min-width: 576px) and (max-width: 767px) {
    .tgbanner__content .title {
      font-size: 24px;
      line-height: 1.3;
    }
  }
  .tgbanner__content-meta {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin: 0 0 11px;
  }
  .tgbanner__content-meta li {
    margin-right: 14px;
    padding-right: 14px;
    position: relative;
    font-size: 14px;
    font-weight: var(--tg-fw-bold);
    color: var(--tg-heading-color);
    text-transform: uppercase;
  }
  .tgbanner__content-meta li .by {
    color: #d8d8d8;
  }
  .tgbanner__content-meta li:last-child {
    margin-right: 0;
    padding-right: 0;
  }
  .tgbanner__content-meta li:last-child::after {
    display: none;
  }
  .tgbanner__content-meta li::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -2px;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -o-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
    background: var(--tg-theme-primary);
    opacity: 0.2;
  }
  .tgbanner__content-meta li:not(.category) a {
    color: var(--tg-heading-color);
  }
  .tgbanner__content-meta li:not(.category) a:hover {
    color: var(--tg-theme-primary);
  }
  .tgbanner__side-post {
    margin: 0 0 50px;
  }
  @media (max-width: 991.98px) {
    .tgbanner__side-post {
      display: -ms-grid;
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 30px;
    }
  }
  @media (max-width: 767.98px) {
    .tgbanner__side-post {
      display: -ms-grid;
      display: grid;
      grid-template-columns: repeat(1, 1fr);
      gap: 30px;
    }
  }
  .tgbanner__side-post .small-post {
    margin: 0 0;
  }
  .tgbanner__side-post .small-post::after {
    content: "";
    display: block;
    background-image: url(../img/bg/line1.png);
    width: 100%;
    height: 8px;
    margin: 35px 0 40px;
  }
  @media (max-width: 1199.98px) {
    .tgbanner__side-post .small-post::after {
      margin: 25px 0 30px;
    }
  }
  @media (max-width: 991.98px) {
    .tgbanner__side-post .small-post::after {
      margin: 25px 0 0;
    }
  }
  .tgbanner__side-post .small-post:last-child::after {
    display: none;
  }
  @media (max-width: 991.98px) {
    .tgbanner__side-post .small-post:last-child::after {
      display: block;
    }
  }
  .tgbanner__area-three .trending__post {
    margin: 0 0 40px;
  }
  .tgbanner__area-three .trending__post::after {
    content: "";
    display: block;
    background-image: url(../img/bg/line4.png);
    width: 100%;
    height: 8px;
    margin: 35px 0 0;
  }
  @media (max-width: 1199.98px) {
    .tgbanner__area-three .trending__post-content .title {
      font-size: 20px;
    }
  }
  .tgbanner__big-post {
    margin: 0 30px 40px;
  }
  @media (max-width: 1199.98px) {
    .tgbanner__big-post {
      margin: 0 30px 60px;
    }
  }
  @media (max-width: 767.98px) {
    .tgbanner__big-post {
      margin: 0 0 60px;
    }
  }
  .tgbanner__big-post-thumb {
    margin: 0 0 35px;
  }
  @media (max-width: 767.98px) {
    .tgbanner__big-post-thumb {
      margin: 0 0 25px;
    }
  }
  .tgbanner__big-post-thumb img {
    height: 420px;
    object-fit: cover;
    object-position: center;
  }
  @media (max-width: 1600px) {
    .tgbanner__big-post-thumb img {
      height: 320px;
    }
  }
  @media (max-width: 991.98px) {
    .tgbanner__big-post-thumb img {
      height: 360px;
      width: 100%;
    }
  }
  @media (max-width: 767.98px) {
    .tgbanner__big-post-thumb img {
      height: 220px;
      width: 100%;
    }
  }
  @media only screen and (min-width: 576px) and (max-width: 767px) {
    .tgbanner__big-post-thumb img {
      height: 300px;
    }
  }
  .tgbanner__big-post .tgbanner__content-meta {
    justify-content: center;
  }
  .tgbanner__big-post-content .title {
    font-size: 30px;
    margin: 0 0 0;
    line-height: 1.3;
    letter-spacing: -0.7px;
  }
  @media (max-width: 767.98px) {
    .tgbanner__big-post-content .title {
      font-size: 22px;
      letter-spacing: -0.4px;
    }
  }
  @media only screen and (min-width: 576px) and (max-width: 767px) {
    .tgbanner__big-post-content .title {
      font-size: 28px;
      letter-spacing: -0.5px;
    }
  }
  .tgbanner__big-post-content .read-more {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #ececec;
    text-transform: uppercase;
    font-weight: var(--tg-fw-bold);
    color: var(--tg-heading-color);
    font-size: 14px;
    padding: 14px 25px;
    margin: 38px 0 0;
  }
  .tgbanner__big-post-content .read-more:hover {
    background: var(--tg-theme-primary);
    color: var(--tg-common-color-white);
  }
  @media (max-width: 767.98px) {
    .tgbanner__big-post-content .read-more {
      margin: 30px 0 0;
    }
  }
  .tgbanner__trending-news {
    margin: 0 0 40px;
  }
  @media (max-width: 991.98px) {
    .tgbanner__trending-news {
      padding-left: 15px;
    }
  }
  @media (max-width: 767.98px) {
    .tgbanner__trending-news {
      padding-left: 0;
    }
  }
  .tgbanner__trending-title {
    font-size: 24px;
    margin: 0 0 0;
    letter-spacing: -0.7px;
  }
  .tgbanner__trending-title::after {
    content: "";
    display: block;
    background-image: url(../img/bg/line4.png);
    width: 100%;
    height: 8px;
    margin: 18px 0 25px;
  }
  .tgbanner__trending-post-list > li {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    gap: 0 20px;
    position: relative;
    padding: 0 0 35px;
    margin: 0 0 25px;
  }
  .tgbanner__trending-post-list > li::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    background-image: url(../img/bg/line4.png);
    width: 100%;
    height: 8px;
  }
  .tgbanner__trending-post-list > li:last-child {
    padding: 0 0;
    margin: 0 0;
  }
  .tgbanner__trending-post-list > li:last-child::after {
    display: none;
  }
  .tgbanner__trending-post-list .post-count {
    font-size: 40px;
    font-weight: var(--tg-fw-bold);
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #e0e0e0;
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    line-height: 1;
    display: block;
    opacity: 0.9;
  }
  .tgbanner__trending-post-list .tgbanner__content-meta {
    margin: 0 0 5px;
  }
  .tgbanner__trending-post-content .title {
    font-size: 20px;
    margin: 0 0 0;
    line-height: 1.35;
  }
  @media (max-width: 1600px) {
    .tgbanner__trending-post-content .title {
      font-size: 18px;
    }
  }
  @media (max-width: 1199.98px) {
    .tgbanner__trending-post-content .title {
      font-size: 20px;
    }
  }
  
  .slider__area {
    padding: 80px 0;
  }
  @media (max-width: 991.98px) {
    .slider__area .tgbanner__content-meta {
      justify-content: center;
    }
  }
  @media (max-width: 991.98px) {
    .slider__content {
      text-align: center;
    }
  }
  .slider__content .title {
      font-size: 24px;
      line-height: 1.8;
      margin: 0 0 40px;
  }
  @media (max-width: 1199.98px) {
    .slider__content .title {
      font-size: 24px;
    }
  }
  @media (max-width: 767.98px) {
    .slider__content .title {
      font-size: 18px;
      margin: 0 0 30px;
    }
  }
  .slider__content .btn {
  display: none;
    background: #f3f3f3;
    font-size: 16px;
    text-transform: capitalize;
    color: var(--tg-heading-color);
  }
  .slider__content .btn::before {
    background: var(--tg-theme-primary);
  }
  .slider__content .btn:hover {
    color: var(--tg-common-color-white);
  }
  .slider__img-wrap {
    position: relative;
    max-width: 860px;
    margin-left: auto;
  }
  @media (max-width: 991.98px) {
    .slider__img-wrap {
      max-width: 540px;
      margin: 50px auto 0;
    }
  }
  /*.slider__img-wrap::before {
    content: "";
    position: absolute;
    left: -65px;
    top: 60px;
    width: 127px;
    height: 127px;
    background: #f7f7f7;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -o-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
    z-index: -1;
  }*/
  @media (max-width: 1199.98px) {
    .slider__img-wrap::before {
      left: -65px;
      top: 40px;
      width: 110px;
      height: 110px;
    }
  }
  .slider__img-wrap .main-img {
    height: 580px;
    width: 100%;
    object-fit: cover;
    object-position: center;
  }
  @media (max-width: 1600px) {
    .slider__img-wrap .main-img {
      height: 580px;
    }
  }
  @media (max-width: 767.98px) {
    .slider__img-wrap .main-img {
      height: 580px;
    }
  }
  .slider-active {
    position: relative;
  }
  /*.slider-active::after {
    content: "";
    position: absolute;
    right: -100px;
    bottom: -40px;
    background-image: url(../img/others/banner_pattern.png);
    background-repeat: no-repeat;
    width: 453px;
    height: 291px;
    z-index: -1;
  }*/
  @media (max-width: 1600px) {
    .slider-active::after {
      right: -65px;
      bottom: -40px;
      width: 298px;
      height: 170px;
    }
  }
  @media (max-width: 1199.98px) {
    .slider-active::after {
      right: 0;
      bottom: 0;
    }
  }
  @media (max-width: 767.98px) {
    .slider-active::after {
      display: none;
    }
  }
  .slider-active .slick-dots {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    margin-top: -20px;
    gap: 5px;
  }
  @media (max-width: 991.98px) {
    .slider-active .slick-dots {
      justify-content: center;
      margin: 40px 0 0;
    }
  }
  .slider-active .slick-dots li {
    line-height: 1;
  }
  .slider-active .slick-dots li button {
    border: 2px solid transparent;
    background: transparent;
    line-height: 1;
    display: block;
    text-indent: -99999px;
    width: 20px;
    height: 20px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -o-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
    position: relative;
  }
  .slider-active .slick-dots li button::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background: #d5d5d5;
    width: 6px;
    height: 6px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -o-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
    -webkit-transition: all 0.3s ease-out 0s;
  
  
  
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
  }
  .slider-active .slick-dots li.slick-active button {
    border-color: #d9d9d9;
  }
  .slider-active .slick-dots li.slick-active button::after {
    background: var(--tg-theme-primary);
  }
  .slider__style-two {
    background-position: center;
    background-size: cover;
  }
  .slider__style-two .slider__item {
    background-color: var(--tg-common-color-white);
  }
  .slider__style-two .slider__content {
    padding: 80px 60px 80px 80px;
  }
  @media (max-width: 1600px) {
    .slider__style-two .slider__content {
      padding: 70px 60px;
    }
  }
  @media (max-width: 1199.98px) {
    .slider__style-two .slider__content {
      padding: 35px 40px;
    }
  }
  @media (max-width: 991.98px) {
    .slider__style-two .slider__content {
      padding: 60px 60px;
    }
  }
  @media (max-width: 767.98px) {
    .slider__style-two .slider__content {
      padding: 40px 25px;
    }
  }
  @media (max-width: 767.98px) {
    .slider__style-two .slider__content {
      padding: 60px 35px;
    }
  }
  .slider__style-two .slider__content .title {
    font-size: 50px;
    margin: 0 0 40px;
    letter-spacing: -2px;
  }
  @media (max-width: 1600px) {
    .slider__style-two .slider__content .title {
      font-size: 46px;
      margin: 0 0 35px;
    }
  }
  @media (max-width: 1199.98px) {
    .slider__style-two .slider__content .title {
      font-size: 36px;
      margin: 0 0 30px;
      letter-spacing: -1px;
    }
  }
  @media (max-width: 767.98px) {
    .slider__style-two .slider__content .title {
      font-size: 28px;
      margin: 0 0 30px;
      letter-spacing: -0.5px;
    }
  }
  @media only screen and (min-width: 576px) and (max-width: 767px) {
    .slider__style-two .slider__content .title {
      font-size: 40px;
      margin: 0 0 30px;
      letter-spacing: -0.5px;
    }
  }
  .slider__style-two .slider__content .btn:hover {
    background: var(--tg-theme-primary);
  }
  @media (max-width: 991.98px) {
    .slider__style-two .slider__img-wrap {
      text-align: center;
      margin: 0 auto 0;
    }
  }
  .slider__style-two .slider__img-wrap::before {
    display: none;
  }
  .slider__style-two .slider__img-wrap .main-img {
    height: 600px;
    margin-left: auto;
  }
  @media (max-width: 1600px) {
    .slider__style-two .slider__img-wrap .main-img {
      height: 500px;
    }
  }
  @media (max-width: 1199.98px) {
    .slider__style-two .slider__img-wrap .main-img {
      height: 400px;
    }
  }
  @media (max-width: 991.98px) {
    .slider__style-two .slider__img-wrap .main-img {
      height: 400px;
      margin: 0 auto;
    }
  }
  @media (max-width: 767.98px) {
    .slider__style-two .slider__img-wrap .main-img {
      height: auto;
      margin: 0 auto;
    }
  }
  .slider__style-two .slider-active::after {
    display: none;
  }
  .slider__style-two .slider-active .slick-dots {
    position: absolute;
    left: 80px;
    bottom: 50px;
    margin: 0 0;
  }
  @media (max-width: 1600px) {
    .slider__style-two .slider-active .slick-dots {
      left: 60px;
      bottom: 30px;
    }
  }
  @media (max-width: 991.98px) {
    .slider__style-two .slider-active .slick-dots {
      left: 0;
      bottom: 30px;
      margin: 0 auto;
      right: 0;
    }
  }
  .slider__style-two .slider-active .slick-dots li.slick-active button::after {
    background: var(--tg-theme-primary);
  }
  
  .tgslider__area-four {
    overflow: hidden;
  }
  .tgslider__top {
    position: relative;
  }
  .tgslider__top::after {
    content: "";
    position: relative;
    display: block;
    background-image: url(../img/bg/sliderTreading_line.png);
    width: 100%;
    height: 8px;
    margin: 20px 0 30px;
  }
  .tgslider__trending-post {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    gap: 20px;
  }
  @media (max-width: 767.98px) {
    .tgslider__trending-post {
      overflow: hidden;
      display: block !important;
    }
  }
  .tgslider__trending-post > .title {
    font-size: 20px;
    letter-spacing: -0.8px;
    margin: 0 0;
  }
  @media (max-width: 767.98px) {
    .tgslider__trending-post > .title {
      display: none;
    }
  }
  .tgslider__trending-item {
    display: flex !important;
    align-items: center;
  }
  .tgslider__trending-thumb {
    max-width: 50px;
    flex: 0 0 auto;
    margin-right: 13px;
  }
  .tgslider__trending-thumb img {
    height: 50px;
    object-fit: cover;
    object-position: center;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -o-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
  }
  .tgslider__trending-content {
    flex-grow: 1;
  }
  @media (max-width: 767.98px) {
    .tgslider__trending-content {
      overflow: hidden;
    }
  }
  .tgslider__trending-content .title {
    font-size: 16px;
    margin: 0 0;
  }
  @media (max-width: 767.98px) {
    .tgslider__trending-content .title {
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
    }
  }
  @media (max-width: 1600px) {
    .tgslider__wrapper {
      max-width: 1000px;
      margin: 0 auto;
    }
  }
  @media (max-width: 1199.98px) {
    .tgslider__wrapper {
      max-width: 100%;
    }
  }
  .tgslider__active {
    --bs-gutter-x: 40px;
  }
  @media (max-width: 1199.98px) {
    .tgslider__active {
      --bs-gutter-x: 30px;
    }
  }
  .tgslider__active [class*=col-] {
    padding-left: 20px;
    padding-right: 20px;
  }
  @media (max-width: 1199.98px) {
    .tgslider__active [class*=col-] {
      padding-left: 15px;
      padding-right: 15px;
    }
  }
  .tgslider__active .slick-list {
    overflow: visible;
  }
  @media (max-width: 1199.98px) {
    .tgslider__active .slick-list {
      overflow: hidden;
    }
  }
  .tgslider__nav {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
  }
  .tgslider__nav button {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 2px solid #eaeaea;
    font-size: 18px;
    flex: 0 0 auto;
    color: var(--tg-heading-color);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -o-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
  }
  .tgslider__nav button:hover {
    color: var(--tg-common-color-white);
    background: var(--tg-theme-primary);
    border-color: var(--tg-theme-primary);
  }
  .tgslider__thumb img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    object-position: center;
  }
  @media (max-width: 991.98px) {
    .tgslider__thumb img {
      height: auto;
    }
  }
  .tgslider__content {
    margin: -120px 155px 0;
    text-align: center;
    background: var(--tg-common-color-white);
    padding: 45px 100px;
    position: relative;
    z-index: 1;
  }
  @media (max-width: 1600px) {
    .tgslider__content {
      margin: -90px 100px 0;
    }
  }
  @media (max-width: 991.98px) {
    .tgslider__content {
      margin: -80px 40px 0;
      padding: 40px 50px;
    }
  }
  @media (max-width: 767.98px) {
    .tgslider__content {
      margin: 0 0;
      padding: 30px 25px;
      animation: none !important;
      transform: translate(0) !important;
      opacity: 1 !important;
    }
  }
  @media only screen and (min-width: 576px) and (max-width: 767px) {
    .tgslider__content {
      padding: 45px 40px;
    }
  }
  .tgslider__content .tgbanner__content-meta {
    justify-content: center;
  }
  .tgslider__content .title {
    font-size: 48px;
    letter-spacing: -2px;
  }
  @media (max-width: 1600px) {
    .tgslider__content .title {
      font-size: 36px;
      letter-spacing: -1px;
      margin: 0 0;
    }
  }
  @media (max-width: 991.98px) {
    .tgslider__content .title {
      font-size: 30px;
      letter-spacing: -0.6px;
      margin: 0 0;
    }
  }
  @media (max-width: 767.98px) {
    .tgslider__content .title {
      font-size: 24px;
      letter-spacing: -0.4px;
      margin: 0 0;
      line-height: 1.3;
    }
  }
  
  .tgbanner__five-item {
    position: relative;
    margin: 0 0 30px;
  }
  .tgbanner__five-item:hover .tgImage__hover img {
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
    transform: scale(1.05);
  }
  .tgbanner__five-thumb {
    position: relative;
  }
  .tgbanner__five-thumb::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-image: -moz-linear-gradient(90deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
    background-image: -webkit-linear-gradient(90deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
    background-image: -ms-linear-gradient(90deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
    opacity: 0.902;
    pointer-events: none;
    z-index: 1;
  }
  .tgbanner__five-thumb .tags {
    position: absolute;
    left: 50px;
    top: 0;
    padding: 8px 12px;
    text-transform: uppercase;
    font-weight: var(--tg-fw-bold);
    font-size: 14px;
    line-height: 1;
    background: var(--tg-theme-primary);
    color: var(--tg-common-color-white);
    z-index: 1;
  }
  @media (max-width: 767.98px) {
    .tgbanner__five-thumb .tags {
      left: 30px;
    }
  }
  .tgbanner__five-thumb img {
    width: 100%;
    height: 630px;
    object-fit: cover;
    object-position: center;
  }
  @media (max-width: 1199.98px) {
    .tgbanner__five-thumb img {
      height: 540px;
    }
  }
  @media (max-width: 767.98px) {
    .tgbanner__five-thumb img {
      height: 300px;
    }
  }
  @media only screen and (min-width: 576px) and (max-width: 767px) {
    .tgbanner__five-thumb img {
      height: 350px;
    }
  }
  .tgbanner__five-content {
    position: absolute;
    left: 50px;
    bottom: 50px;
    right: 50px;
    z-index: 2;
  }
  @media (max-width: 767.98px) {
    .tgbanner__five-content {
      left: 25px;
      bottom: 30px;
      right: 25px;
    }
  }
  .tgbanner__five-content .tgbanner__content-meta li {
    color: var(--tg-common-color-white);
  }
  .tgbanner__five-content .tgbanner__content-meta li::after {
    background: var(--tg-common-color-white);
    opacity: 0.2;
  }
  .tgbanner__five-content .tgbanner__content-meta li a {
    color: var(--tg-common-color-white);
  }
  .tgbanner__five-content .title {
    color: var(--tg-common-color-white);
    font-size: 40px;
    letter-spacing: -1px;
    margin: 0 0;
  }
  @media (max-width: 1199.98px) {
    .tgbanner__five-content .title {
      font-size: 30px;
    }
  }
  @media (max-width: 767.98px) {
    .tgbanner__five-content .title {
      font-size: 20px;
      letter-spacing: -0.5px;
      line-height: 1.3;
    }
  }
  @media only screen and (min-width: 576px) and (max-width: 767px) {
    .tgbanner__five-content .title {
      font-size: 24px;
    }
  }
  .tgbanner__five-content .title a {
    background-image: linear-gradient(var(--tg-common-color-white), var(--tg-common-color-white)), linear-gradient(var(--tg-common-color-white), var(--tg-common-color-white));
  }
  .tgbanner__five-item.small-post .tgbanner__five-thumb .tags {
    left: 40px;
  }
  @media (max-width: 1199.98px) {
    .tgbanner__five-item.small-post .tgbanner__five-thumb .tags {
      left: 30px;
    }
  }
  .tgbanner__five-item.small-post .tgbanner__five-thumb img {
    height: 300px;
  }
  @media (max-width: 1199.98px) {
    .tgbanner__five-item.small-post .tgbanner__five-thumb img {
      height: 255px;
    }
  }
  @media (max-width: 767.98px) {
    .tgbanner__five-item.small-post .tgbanner__five-thumb img {
      height: 300px;
    }
  }
  @media only screen and (min-width: 576px) and (max-width: 767px) {
    .tgbanner__five-item.small-post .tgbanner__five-thumb img {
      height: 350px;
    }
  }
  .tgbanner__five-item.small-post .tgbanner__five-content {
    left: 40px;
    right: 40px;
    bottom: 40px;
  }
  @media (max-width: 1199.98px) {
    .tgbanner__five-item.small-post .tgbanner__five-content {
      left: 25px;
      right: 20px;
      bottom: 25px;
    }
  }
  @media (max-width: 767.98px) {
    .tgbanner__five-item.small-post .tgbanner__five-content {
      left: 25px;
      right: 25px;
      bottom: 30px;
    }
  }
  .tgbanner__five-item.small-post .tgbanner__five-content .title {
    font-size: 20px;
    line-height: 1.35;
    letter-spacing: 0;
  }
  @media (max-width: 1199.98px) {
    .tgbanner__five-item.small-post .tgbanner__five-content .title {
      font-size: 18px;
    }
  }
  
  @media (max-width: 767.98px) {
    .tgbanner__five-item.small-post .tgbanner__five-content .title {
      font-size: 20px;
      letter-spacing: -0.5px;
      line-height: 1.3;
    }
  }
  @media only screen and (min-width: 576px) and (max-width: 767px) {
    .tgbanner__five-item.small-post .tgbanner__five-content .title {
      font-size: 24px;
    }
  }
  @media (max-width: 991.98px) {
    .tgbanner__area-five .gx-30 {
      gap: 0 30px;
    }
  }
  @media (max-width: 767.98px) {
    .tgbanner__area-five .gx-30 > * {
      flex: 0 0 auto;
      width: 100%;
    }
  }
  
  .slider__marquee {
    margin: 50px 0 0;
  }
  .slider__marquee::before, .slider__marquee::after {
    content: "";
    display: block;
    background-image: url(../img/bg/marquee_line.png);
    width: 100%;
    height: 8px;
    background-position: center;
    background-repeat: repeat-x;
    margin: 0 0 17px;
  }
  .slider__marquee::after {
    margin: 17px 0 0;
  }
  
  .marquee_mode {
    overflow: hidden;
    position: relative;
  }
  .marquee_mode .js-marquee {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
  }
  .marquee_mode .js-marquee .item {
    text-transform: uppercase;
    margin: 0 20px 0;
    font-size: 16px;
  }
  .marquee_mode .js-marquee .item span {
    color: var(--tg-theme-primary);
    margin-left: 3px;
  }
  .marquee_mode .js-marquee .item.minus span {
    color: var(--tg-common-color-green);
  }
  
  /*=============================
      05. Trending Post
  ===============================*/
  .trending__post-thumb {
    margin: 0 0 25px;
    position: relative;
  }
  .trending__post-thumb a {
    display: block;
    position: relative;
  }
  .trending__post-thumb a:not(.addWish):before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: var(--tg-theme-secondary);
    -webkit-transition: all 0.4s ease-out 0s;
    -moz-transition: all 0.4s ease-out 0s;
    -ms-transition: all 0.4s ease-out 0s;
    -o-transition: all 0.4s ease-out 0s;
    transition: all 0.4s ease-out 0s;
    z-index: 1;
    opacity: 0;
  }
  .trending__post-thumb a.addWish {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 2;
    line-height: 1;
    font-size: 14px;
    color: #fff;
    -webkit-transition: all 0.4s ease-out 0s;
    -moz-transition: all 0.4s ease-out 0s;
    -ms-transition: all 0.4s ease-out 0s;
    -o-transition: all 0.4s ease-out 0s;
    transition: all 0.4s ease-out 0s;
    opacity: 0;
  }
  .trending__post-thumb img {
    display: block;
    height: 200px;
    object-fit: cover;
    object-position: center;
    -webkit-transition: all 0.4s ease-out 0s;
    -moz-transition: all 0.4s ease-out 0s;
    -ms-transition: all 0.4s ease-out 0s;
    -o-transition: all 0.4s ease-out 0s;
    transition: all 0.4s ease-out 0s;
  }
  @media (max-width: 767.98px) {
    .trending__post-thumb img {
      width: 100%;
    }
  }
  @media only screen and (min-width: 576px) and (max-width: 767px) {
    .trending__post-thumb img {
      height: 280px;
    }
  }
  .trending__post-thumb .is_trend {
    position: absolute;
    left: 0;
    top: 0;
    width: 30px;
    height: 30px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--tg-common-color-white);
    background: var(--tg-theme-primary);
    z-index: 3;
  }
  .trending__post-content .title {
    font-size: 20px;
    line-height: 1.4;
    margin: 0 0;
  }
  @media (max-width: 1600px) {
    .trending__post-content .title {
      font-size: 18px;
    }
  }
  @media (max-width: 991.98px) {
    .trending__post-content .title {
      font-size: 20px;
    }
  }
  .trending__post-content .post__activity {
    margin: 20px 0 0;
  }
  .trending__post .tgbanner__content-meta {
    margin: 0 0 6px;
  }
  .trending__post:hover .trending__post-thumb a::before {
    opacity: 0.5;
  }
  .trending__post:hover .trending__post-thumb a.addWish {
    opacity: 1;
  }
  
  .post__activity {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px 20px;
  }
  .post__activity li {
    line-height: 1;
    font-size: 14px;
  }
  .post__activity li i {
    color: #b0b0b0;
    margin-right: 3px;
  }
  .post__activity li a {
    color: var(--tg-body-color);
    display: block;
  }
  .post__activity li a:hover {
    color: var(--tg-theme-primary);
  }
  
  .dark-post-slider {
    margin: 0 -105px 0 -45px;
  }
  @media (max-width: 1600px) {
    .dark-post-slider {
      margin: 0 -150px 0 -100px;
    }
  }
  @media (max-width: 991.98px) {
    .dark-post-slider {
      margin: 0 auto;
      max-width: 720px;
      padding-left: 15px;
      padding-right: 15px;
    }
  }
  @media only screen and (min-width: 576px) and (max-width: 767px) {
    .dark-post-slider {
      max-width: 540px;
    }
  }
  .dark-post-slider .tgbanner__content-meta li:not(.category) a, .dark-post-slider .trending__post-content .title {
    color: var(--tg-common-color-white);
  }
  .dark-post-slider .trending__post-content .title a {
    background-image: linear-gradient(var(--tg-common-color-white), var(--tg-common-color-white)), linear-gradient(var(--tg-common-color-white), var(--tg-common-color-white));
  }
  .dark-post-slider .tgbanner__content-meta li .by {
    color: #4e4e4e;
  }
  .dark-post-slider .post__activity li, .dark-post-slider .post__activity li a {
    color: #aeaeae;
  }
  .dark-post-slider .post__activity li i {
    color: #666666;
  }
  
  /*=============================
      06. Featured Post
  ===============================*/
  .featured__post {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    margin: 0 0 35px;
  }
  .featured__post .tgbanner__content-meta {
    margin: 0 0 7px;
  }
  @media (max-width: 1199.98px) {
    .featured__post {
      display: block;
    }
  }
  @media (max-width: 991.98px) {
    .featured__post {
      margin-right: 35px;
    }
  }
  @media (max-width: 767.98px) {
    .featured__post {
      margin-right: 0;
    }
  }
  .featured__thumb {
    width: 100px;
    height: 100px;
    flex: 0 0 auto;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    background-position: center;
    background-size: cover;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -o-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
    font-size: 30px;
    font-weight: var(--tg-fw-bold);
    color: var(--tg-common-color-white);
    letter-spacing: -2px;
    position: relative;
    margin-right: 20px;
    z-index: 1;
  }
  @media (max-width: 1199.98px) {
    .featured__thumb {
      margin: 0 0 15px;
    }
  }
  .featured__thumb::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -o-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
    background: var(--tg-theme-secondary);
    -webkit-transition: all 0.4s ease-out 0s;
    -moz-transition: all 0.4s ease-out 0s;
    -ms-transition: all 0.4s ease-out 0s;
    -o-transition: all 0.4s ease-out 0s;
    transition: all 0.4s ease-out 0s;
    opacity: 0.3;
    z-index: -1;
  }
  .featured__content .title {
    margin: 0 0;
    font-size: 20px;
    line-height: 1.4;
  }
  @media only screen and (min-width: 576px) and (max-width: 767px) {
    .featured__content .title {
      font-size: 18px;
    }
  }
  .featured__post:hover .featured__thumb::before {
    opacity: 0;
  }
  
  .recent-post-area .featured__thumb {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -o-border-radius: 0;
    -ms-border-radius: 0;
    border-radius: 0;
    margin-right: 0;
  }
  .recent-post-area .featured__thumb::before {
    opacity: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -o-border-radius: 0;
    -ms-border-radius: 0;
    border-radius: 0;
  }
  .recent-post-area .featured__post > a {
    display: block;
    margin-right: 30px;
  }
  .recent-post-area .featured__post:hover .featured__thumb::before {
    opacity: 0.4;
  }
  .recent-post-area .featured__content .title {
    margin: 0 0 18px;
  }
  
  /*=============================
      07. Video Post
  ===============================*/
  .video-post-area .row {
    --bs-gutter-x: 40px;
  }
  @media (max-width: 991.98px) {
    .video-post-area .row {
      --bs-gutter-x: 30px;
    }
  }
  
  .video__post-item.big-post {
    margin: 0 0 0;
    position: relative;
  }
  .video__post-item.big-post .tit {position:absolute;bottom:30px;width: 100%;font-size: 24px; text-align: center; color:#fff;}
  @media (max-width: 991.98px) {
    .video__post-item.big-post {
      margin: 0 0 50px;
    }
  }
  .video__post-item.big-post .video__post-thumb {
    margin: 0 0 35px;
  }
  @media (max-width: 767.98px) {
    .video__post-item.big-post .video__post-thumb {
      margin: 0 0 28px;
    }
  }
  .video__post-item.big-post img {
    width: 100%;
    height: 580px;
    object-fit: cover;
    object-position: center;
  }
  @media (max-width: 1199.98px) {
    .video__post-item.big-post img {
      height: 580px;
    }
  }
  @media (max-width: 767.98px) {
    .video__post-item.big-post img {
      height: 200px;
    }
  }
  @media only screen and (min-width: 576px) and (max-width: 767px) {
    .video__post-item.big-post img {
      height: 280px;
    }
  }
  .video__post-item.big-post .popup-video {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
  
    align-items: center;
    justify-content: center;
    color: var(--tg-heading-color);
    background: var(--tg-common-color-white);
    font-size: 18px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -o-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
    z-index: 1;
  }
  .video__post-item.big-post .popup-video:hover {
    background: var(--tg-theme-primary);
    color: var(--tg-common-color-white);
  }
  .video__post-item.big-post .video__post-content .title {
    font-size: 30px;
  }
  @media (max-width: 1199.98px) {
    .video__post-item.big-post .video__post-content .title {
      font-size: 26px;
    }
  }
  @media (max-width: 991.98px) {
    .video__post-item.big-post .video__post-content .title {
      font-size: 30px;
    }
  }
  @media (max-width: 767.98px) {
    .video__post-item.big-post .video__post-content .title {
      font-size: 20px;
      line-height: 1.4;
    }
  }
  @media only screen and (min-width: 576px) and (max-width: 767px) {
    .video__post-item.big-post .video__post-content .title {
      font-size: 24px;
    }
  }
  .video__post-item.side-post {
    margin: 0 0 24px;
    padding: 0 0 32px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    position: relative;
    align-items: center;
  }
  @media (max-width: 1199.98px) {
    .video__post-item.side-post {
      margin: 0 0 19px;
      padding: 0 0 25px;
    }
  }
  @media (max-width: 991.98px) {
    .video__post-item.side-post {
      margin: 0 0 24px;
      padding: 0 0 32px;
    }
  }
  @media (max-width: 767.98px) {
    .video__post-item.side-post {
      display: block;
    }
  }
  .video__post-item.side-post::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 8px;
    background-image: url(../img/bg/line2.png);
    background-repeat: repeat;
  }
  .video__post-item.side-post .video__post-thumb {
    width: 130px;
    flex: 0 0 auto;
    margin: 0 22px 0 0;
  }
  @media (max-width: 1199.98px) {
    .video__post-item.side-post .video__post-thumb {
      width: 120px;
    }
  }
  @media (max-width: 767.98px) {
    .video__post-item.side-post .video__post-thumb {
      width: 100%;
      margin: 0 0 20px;
    }
  }
  .video__post-item.side-post .video__post-thumb .popup-video {
    position: relative;
    z-index: 1;
  }
  .video__post-item.side-post .video__post-thumb .popup-video::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: var(--tg-theme-secondary);
    -webkit-transition: all 0.4s ease-out 0s;
    -moz-transition: all 0.4s ease-out 0s;
    -ms-transition: all 0.4s ease-out 0s;
    -o-transition: all 0.4s ease-out 0s;
    transition: all 0.4s ease-out 0s;
    opacity: 0.35;
    z-index: 1;
  }
  .video__post-item.side-post .video__post-thumb .popup-video:hover::before {
    opacity: 0;
  }
  .video__post-item.side-post .video__post-thumb .popup-video i {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 46px;
    height: 46px;
    background: rgba(255, 255, 255, 0.3);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -o-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--tg-common-color-white);
    -webkit-transition: all 0.4s ease-out 0s;
    -moz-transition: all 0.4s ease-out 0s;
    -ms-transition: all 0.4s ease-out 0s;
    -o-transition: all 0.4s ease-out 0s;
    transition: all 0.4s ease-out 0s;
    z-index: 2;
  }
  .video__post-item.side-post .video__post-thumb:hover .popup-video i {
    background: var(--tg-common-color-white);
    color: var(--tg-heading-color);
  }
  .video__post-item.side-post img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    object-position: center;
  }
  @media (max-width: 767.98px) {
    .video__post-item.side-post img {
      height: 200px;
    }
  }
  @media only screen and (min-width: 576px) and (max-width: 767px) {
    .video__post-item.side-post img {
      height: 280px;
    }
  }
  .video__post-item.side-post .tgbanner__content-meta {
    margin: 0 0 7px;
  }
  .video__post-item.side-post .video__post-content .title {
    font-size: 20px;
    line-height: 1.4;
  }
  @media (max-width: 1600px) {
    .video__post-item.side-post .video__post-content .title {
      font-size: 19px;
    }
  }
  @media (max-width: 1199.98px) {
    .video__post-item.side-post .video__post-content .title {
      font-size: 18px;
    }
  }
  @media (max-width: 991.98px) {
    .video__post-item.side-post .video__post-content .title {
      font-size: 20px;
    }
  }
  .video__post-item.side-post:last-child {
    margin-bottom: 0;
  }
  .video__post-thumb {
    position: relative;
  }
  .video__post-thumb img {
    -webkit-transition: all 0.4s ease-out 0s;
    -moz-transition: all 0.4s ease-out 0s;
    -ms-transition: all 0.4s ease-out 0s;
    -o-transition: all 0.4s ease-out 0s;
    transition: all 0.4s ease-out 0s;
  }
  .video__post-content .title {
    margin: 0 0;
  }
  
  .stories-video-post .stories-post__thumb {
    position: relative;
  }
  .stories-video-post .stories-post__thumb .popup-video {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--tg-heading-color);
    background: var(--tg-common-color-white);
    font-size: 18px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -o-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
    z-index: 1;
  }
  .stories-video-post .stories-post__thumb .popup-video:hover {
    background: var(--tg-theme-primary);
    color: var(--tg-common-color-white);
  }
  .stories-video-post .stories-post__thumb:hover img {
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
    transform: scale(1.05);
  }
  
  .nft-video-post .video__post-item.side-post::after {
    background-image: url(../img/bg/line3.png);
  }
  
  /*=============================
      08. Hand-Picked Post
  ===============================*/
  @media (max-width: 1199.98px) {
    .handpicked-post-area {
      padding-bottom: 30px;
    }
  }
  .handpicked-post-area.white-bg .handpicked__item.big-post .handpicked__content {
    box-shadow: 0px 16px 32px 0px rgba(0, 0, 0, 0.04);
  }
  
  .handpicked__item {
    margin: 0 0 0;
  }
  .handpicked__item.big-post {
    margin: 0 0 30px;
  }
  @media (max-width: 1199.98px) {
    .handpicked__item.big-post {
      margin: 0 0 50px;
    }
  }
  .handpicked__item.big-post .handpicked__thumb {
    margin: 0 0 0;
  }
  .handpicked__item.big-post .handpicked__thumb img {
    height: 582px;
    object-fit: cover;
    object-position: center;
  }
  @media (max-width: 1199.98px) {
    .handpicked__item.big-post .handpicked__thumb img {
      height: 400px;
    }
  }
  @media (max-width: 767.98px) {
    .handpicked__item.big-post .handpicked__thumb img {
      height: 220px;
      width: 100%;
    }
  }
  @media only screen and (min-width: 576px) and (max-width: 767px) {
    .handpicked__item.big-post .handpicked__thumb img {
      height: 280px;
    }
  }
  .handpicked__item.big-post .handpicked__content {
    background: var(--tg-common-color-white);
    max-width: 510px;
    margin: -55px auto 0 40px;
    position: relative;
    padding: 35px 40px;
    z-index: 1;
  }
  @media (max-width: 767.98px) {
    .handpicked__item.big-post .handpicked__content {
      max-width: 100%;
      margin: 0 auto 40px;
      padding: 30px 25px;
    }
  }
  @media only screen and (min-width: 576px) and (max-width: 767px) {
    .handpicked__item.big-post .handpicked__content {
      padding: 35px 35px;
    }
  }
  .handpicked__item.big-post .handpicked__content .tgbanner__content-meta {
    margin: 0 0 7px;
  }
  .handpicked__item.big-post .handpicked__content .title {
    font-size: 24px;
    margin: 0 0 0;
    line-height: 1.3;
    letter-spacing: -0.5px;
  }
  @media (max-width: 767.98px) {
    .handpicked__item.big-post .handpicked__content .title {
      font-size: 20px;
      margin: 0 0 0;
      line-height: 1.4;
      letter-spacing: -0.3px;
    }
  }
  @media only screen and (min-width: 576px) and (max-width: 767px) {
    .handpicked__item.big-post .handpicked__content .title {
      font-size: 24px;
      margin: 0 0 0;
      line-height: 1.3;
      letter-spacing: -0.5px;
    }
  }
  .handpicked__item.small-post {
    padding: 0 0 35px;
    margin: 0 0 30px;
    position: relative;
  }
  @media (max-width: 1199.98px) {
    .handpicked__item.small-post {
      padding: 0 0;
      margin: 0 0 50px;
    }
  }
  .handpicked__item.small-post::after {
    content: "";
    position: absolute;
    left: -10px;
    bottom: 0;
    background-image: url(../img/bg/line3.png);
    width: calc(100% + 10px);
    height: 8px;
  }
  @media (max-width: 1199.98px) {
    .handpicked__item.small-post::after {
      display: none;
    }
  }
  .handpicked__thumb {
    margin: 0 0 25px;
  }
  .handpicked__thumb img {
    height: 200px;
    object-fit: cover;
    object-position: center;
  }
  @media (max-width: 767.98px) {
    .handpicked__thumb img {
      width: 100%;
    }
  }
  @media only screen and (min-width: 576px) and (max-width: 767px) {
    .handpicked__thumb img {
      height: 280px;
    }
  }
  .handpicked__content .tgbanner__content-meta {
    margin: 0 0 6px;
  }
  .handpicked__content .title {
    font-size: 20px;
    line-height: 1.4;
    margin: 0 0 0;
  }
  .handpicked__sidebar-post .row > [class*=col-]:nth-child(odd) .handpicked__item.small-post::after {
    width: calc(100% + 30px);
    left: 0;
  }
  .handpicked__sidebar-post .row > [class*=col-]:nth-last-child(-n+2) .handpicked__item.small-post {
  
    padding-bottom: 0;
  }
  .handpicked__sidebar-post .row > [class*=col-]:nth-last-child(-n+2) .handpicked__item.small-post::after {
    display: none;
  }
  
  /*=============================
      09. Stories Post
  ===============================*/
  .stories-post__item {
    margin: 0 0 50px;
  }
  @media (max-width: 991.98px) {
    .stories-post__item {
      margin: 0 0 40px;
    }
  }
  .stories-post__thumb {
    margin: 0 0 35px;
  }
  @media (max-width: 1199.98px) {
    .stories-post__thumb {
      margin: 0 0 25px;
    }
  }
  .stories-post__thumb img {
    height: 340px;
    object-fit: cover;
    object-position: center;
  }
  @media (max-width: 1199.98px) {
    .stories-post__thumb img {
      height: 280px;
    }
  }
  @media (max-width: 991.98px) {
    .stories-post__thumb img {
      height: 200px;
      width: 100%;
    }
  }
  @media only screen and (min-width: 576px) and (max-width: 767px) {
    .stories-post__thumb img {
      height: 280px;
    }
  }
  .stories-post__content .title {
    line-height: 1.3;
    font-size: 30px;
  }
  @media (max-width: 1199.98px) {
    .stories-post__content .title {
      font-size: 23px;
    }
  }
  @media (max-width: 991.98px) {
    .stories-post__content .title {
      font-size: 20px;
    }
  }
  @media only screen and (min-width: 576px) and (max-width: 767px) {
    .stories-post__content .title {
      font-size: 22px;
    }
  }
  
  .stories-small-post__item {
    margin: 0 0 40px;
  }
  
  /*=============================
      10. Popular Post
  ===============================*/
  .popular__post-area .trending__post-thumb {
    margin: 0 0 30px;
  }
  .popular__post-area .trending__post-thumb img {
    height: 280px;
    width: 100%;
  }
  @media (max-width: 1600px) {
    .popular__post-area .trending__post-thumb img {
      height: 260px;
    }
  }
  @media (max-width: 1199.98px) {
    .popular__post-area .trending__post-thumb img {
      height: 280px;
    }
  }
  @media (max-width: 991.98px) {
    .popular__post-area .trending__post-thumb img {
      height: 220px;
    }
  }
  @media only screen and (min-width: 576px) and (max-width: 767px) {
    .popular__post-area .trending__post-thumb img {
      height: 280px;
    }
  }
  .popular__post-area .tgbanner__content-meta {
    margin: 0 0 12px;
  }
  .popular__post-area .trending__post-content .title {
    font-size: 24px;
    line-height: 1.3;
  }
  @media (max-width: 1199.98px) {
    .popular__post-area .trending__post-content .title {
      font-size: 20px;
    }
  }
  
  .lifestyle__popular-area .trending__post-thumb {
    position: relative;
  }
  .lifestyle__popular-area .trending__post-thumb .tags {
    position: absolute;
    left: 40px;
    top: 0;
    padding: 8px 12px;
    text-transform: uppercase;
    font-weight: var(--tg-fw-bold);
    font-size: 14px;
    line-height: 1;
    background: var(--tg-theme-primary);
    color: var(--tg-common-color-white);
    z-index: 2;
  }
  .lifestyle__popular-area .trending__post-thumb .tags::before {
    display: none;
  }
  .lifestyle__popular-area .trending__post-content {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    gap: 0 25px;
  }
  .lifestyle__popular-area .trending__post-content .post--count {
    font-size: 40px;
    color: var(--tg-theme-primary);
    letter-spacing: -1px;
    margin: 0 0;
  }
  .lifestyle__popular-area .trending__post-content .title {
    font-size: 20px;
  }
  @media (max-width: 991.98px) {
    .lifestyle__popular-area .trending__post-content .title {
      font-size: 18px;
    }
  }
  @media only screen and (min-width: 576px) and (max-width: 767px) {
    .lifestyle__popular-area .trending__post-content .title {
      font-size: 22px;
    }
  }
  
  /*=============================
      11. Category Post
  ===============================*/
  .category__wrapper {
    display: -ms-grid;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
  }
  @media (max-width: 991.98px) {
    .category__wrapper {
      grid-template-columns: repeat(3, 1fr);
    }
  }
  @media (max-width: 767.98px) {
    .category__wrapper {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  .category__item {
    position: relative;
  }
  
  .category__item a {
    display: block;
    position: relative;
    overflow: hidden;
  }
  .category__item a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: -moz-radial-gradient(circle, #000000 0%, transparent 100%);
    background-image: -webkit-radial-gradient(circle, #000000 0%, transparent 100%);
    background-image: -ms-radial-gradient(circle, #000000 0%, transparent 100%);
    opacity: 0.6;
    z-index: 1;
  }
  .category__item a:hover img {
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
    transform: scale(1.05);
  }
  .category__item img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: center;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all 0.4s ease-out 0s;
    -moz-transition: all 0.4s ease-out 0s;
    -ms-transition: all 0.4s ease-out 0s;
    -o-transition: all 0.4s ease-out 0s;
    transition: all 0.4s ease-out 0s;
  }
  @media (max-width: 1600px) {
    .category__item img {
      height: 300px;
    }
  }
  @media (max-width: 1199.98px) {
    .category__item img {
      height: 200px;
    }
  }
  @media (max-width: 767.98px) {
    .category__item img {
      height: 180px;
    }
  }
  .category__item .cat-name {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-transform: uppercase;
    font-size: 14px;
    font-weight: var(--tg-fw-bold);
    color: var(--tg-common-color-white);
    z-index: 2;
    width: 80%;
    text-align: center;
  }
  
  /*=============================
      12. Latest Post
  ===============================*/
  .latest-post-area > .container > .row:first-child > *:first-child {
    padding-right: 25px;
  }
  @media (max-width: 991.98px) {
    .latest-post-area > .container > .row:first-child > *:first-child {
      padding-right: 15px;
    }
  }
  .latest__post-item {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    padding: 0 0 38px;
    margin-bottom: 30px;
    position: relative;
    display: none;
  }
  .latest__post-item::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    background-image: url(../img/bg/line5.png);
    width: calc(100% - 5px);
    height: 8px;
  }
  @media (max-width: 1199.98px) {
    .latest__post-item[style="display: flex;"] {
      display: block !important;
    }
  }
  .latest__post-item .tgbanner__content-meta {
    margin: 0 0 9px;
  }
  .latest__post-thumb {
    width: 400px;
    flex: 0 0 auto;
    margin-right: 40px;
  }
  @media (max-width: 1600px) {
    .latest__post-thumb {
      width: 370px;
    }
  }
  @media (max-width: 1199.98px) {
    .latest__post-thumb {
      width: 100%;
      margin: 0 0 25px;
    }
  }
  .latest__post-thumb img {
    height: 300px;
    object-fit: cover;
    object-position: center;
  }
  @media (max-width: 1199.98px) {
    .latest__post-thumb img {
      width: 100%;
    }
  }
  @media (max-width: 991.98px) {
    .latest__post-thumb img {
      height: 365px;
    }
  }
  @media (max-width: 767.98px) {
    .latest__post-thumb img {
      height: 200px;
    }
  }
  @media only screen and (min-width: 576px) and (max-width: 767px) {
    .latest__post-thumb img {
      height: 280px;
    }
  }
  .latest__post-content {
    flex-grow: 1;
    margin-right: 30px;
  }
  @media (max-width: 767.98px) {
    .latest__post-content {
      margin-right: 0;
    }
  }
  .latest__post-content .title {
    font-size: 30px;
    letter-spacing: -0.9px;
    margin: 0 0 18px;
  }
  @media (max-width: 767.98px) {
    .latest__post-content .title {
      font-size: 22px;
      letter-spacing: -0.3px;
      line-height: 1.3;
    }
  }
  .latest__post-content p {
    margin: 0 0;
  }
  .latest__post-content .post__activity {
    margin-top: 35px;
  }
  .latest__post-more {
    margin-top: 40px;
  }
  .latest__post-more .noContent {
    pointer-events: none;
  }
  .latest__post-item-two {
    margin: 0 0 50px;
    display: none;
  }
  .latest__post-thumb-two img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    object-position: center;
  }
  @media (max-width: 1600px) {
    .latest__post-thumb-two img {
      height: 440px;
    }
  }
  @media (max-width: 1199.98px) {
    .latest__post-thumb-two img {
      height: auto;
    }
  }
  .latest__post-content-two {
    background: var(--tg-common-color-white);
    margin: -140px 120px 0;
    padding: 45px 50px 50px;
    position: relative;
    text-align: center;
    z-index: 1;
  }
  @media (max-width: 1600px) {
    .latest__post-content-two {
      margin: -120px 110px 0;
      padding: 35px 35px 30px;
    }
  }
  @media (max-width: 1199.98px) {
    .latest__post-content-two {
      margin: 0 0;
    }
  }
  @media (max-width: 991.98px) {
    .latest__post-content-two {
      padding: 40px 50px 30px;
    }
  }
  @media (max-width: 767.98px) {
    .latest__post-content-two {
      padding: 30px 25px 25px;
    }
  }
  @media only screen and (min-width: 576px) and (max-width: 767px) {
    .latest__post-content-two {
      padding: 35px 30px 30px;
    }
  }
  .latest__post-content-two .tgbanner__content-meta {
    justify-content: center;
  }
  .latest__post-content-two .title {
    font-size: 30px;
    line-height: 1.3;
    letter-spacing: -0.9px;
    margin: 0 30px;
  }
  @media (max-width: 1199.98px) {
    .latest__post-content-two .title {
      margin: 0 0;
    }
  }
  @media (max-width: 767.98px) {
    .latest__post-content-two .title {
      font-size: 23px;
      letter-spacing: -0.3px;
    }
  }
  @media only screen and (min-width: 576px) and (max-width: 767px) {
    .latest__post-content-two .title {
      font-size: 25px;
      letter-spacing: -0.35px;
    }
  }
  .latest__post-bottom {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    padding-top: 35px;
    margin-top: 35px;
    position: relative;
    flex-wrap: wrap;
    gap: 12px 0;
  }
  @media (max-width: 1600px) {
    .latest__post-bottom {
      padding-top: 30px;
      margin-top: 25px;
    }
  }
  .latest__post-bottom::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 8px;
    background-image: url(../img/bg/line3.png);
    opacity: 0.6;
  }
  .latest__post-bottom .post__activity {
    margin-right: 20px;
  }
  @media (max-width: 767.98px) {
    .latest__post-bottom .post__activity {
      gap: 10px 15px;
    }
  }
  .latest__post-read-more {
    margin-left: auto;
  }
  .latest__post-read-more a {
    display: block;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: var(--tg-fw-bold);
    color: var(--tg-heading-color);
  }
  .latest__post-read-more a:hover {
    color: var(--tg-theme-primary);
  }
  .latest__post-read-more a i {
    color: var(--tg-theme-primary);
    margin-left: 3px;
    font-size: 16px;
  }
  
  /*=============================
      13. Minimal Post
  ===============================*/
  .minimal__post-wrapper {
    --bs-gutter-x: 30px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    margin-right: calc(-0.5 * var(--bs-gutter-x));
    margin-left: calc(-0.5 * var(--bs-gutter-x));
  }
  .minimal__post-thumb {
    position: relative;
    margin: 0 0 25px;
  }
  .minimal__post-thumb img {
    height: 410px;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
  }
  @media (max-width: 767.98px) {
    .minimal__post-thumb img {
      width: 100%;
      height: 350px;
    }
  }
  .minimal__post-item {
    flex: 0 0 auto;
    width: 33%;
    max-width: 100%;
    padding-right: calc(var(--bs-gutter-x) * 0.5);
    padding-left: calc(var(--bs-gutter-x) * 0.5);
    display: none;
    margin: 0 0 10px;
  }
  @media (max-width: 991.98px) {
    .minimal__post-item {
      width: 50%;
    }
  }
  @media (max-width: 767.98px) {
    .minimal__post-item {
      width: 100%;
    }
  }
  .minimal__post-item:nth-child(2) .minimal__post-thumb img, .minimal__post-item:nth-child(11) .minimal__post-thumb img {
    height: 310px;
  }
  .minimal__post-item:nth-child(3) .minimal__post-thumb img, .minimal__post-item:nth-child(12) .minimal__post-thumb img {
    height: 410px;
  }
  .minimal__post-item:nth-child(4) .minimal__post-thumb img, .minimal__post-item:nth-child(13) .minimal__post-thumb img {
    height: 310px;
  }
  .minimal__post-item:nth-child(5) .minimal__post-thumb img, .minimal__post-item:nth-child(14) .minimal__post-thumb img {
    height: 490px;
  }
  @media (max-width: 767.98px) {
    .minimal__post-item:nth-child(5) .minimal__post-thumb img, .minimal__post-item:nth-child(14) .minimal__post-thumb img {
      height: 380px;
    }
  }
  .minimal__post-item:nth-child(6) .minimal__post-thumb img, .minimal__post-item:nth-child(15) .minimal__post-thumb img {
    height: 410px;
  }
  .minimal__post-item:nth-child(7) .minimal__post-thumb img, .minimal__post-item:nth-child(16) .minimal__post-thumb img {
    height: 690px;
  }
  @media (max-width: 991.98px) {
    .minimal__post-item:nth-child(7) .minimal__post-thumb img, .minimal__post-item:nth-child(16) .minimal__post-thumb img {
      height: 380px;
    }
  }
  .minimal__post-item:nth-child(8) .minimal__post-thumb img, .minimal__post-item:nth-child(17) .minimal__post-thumb img {
    height: 490px;
  }
  .minimal__post-item:nth-child(9) .minimal__post-thumb img, .minimal__post-item:nth-child(18) .minimal__post-thumb img {
    height: 410px;
  }
  .minimal__post-tags {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    position: absolute;
    left: 30px;
    top: 30px;
    right: 30px;
    z-index: 2;
  }
  .minimal__post-tags a {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: var(--tg-fw-bold);
    color: var(--tg-theme-secondary);
    display: block;
    line-height: 1;
    background: var(--tg-common-color-white);
    padding: 8px 14px;
  }
  .minimal__post-tags a:hover {
    background: var(--tg-theme-primary);
    color: var(--tg-common-color-white);
  }
  .minimal__post-content .tgbanner__content-meta {
    margin: 0 0 10px;
  }
  .minimal__post-content .title {
    font-size: 24px;
    line-height: 1.3;
    letter-spacing: -0.4px;
    margin: 0 15px 0 0;
  }
  @media (max-width: 1199.98px) {
    .minimal__post-content .title {
      font-size: 20px;
    }
  }
  @media only screen and (min-width: 576px) and (max-width: 767px) {
    .minimal__post-content .title {
      font-size: 24px;
    }
  }
  .minimal__post-more {
    margin-top: 10px;
  }
  
  /*=============================
      14. Adventure Post
  ===============================*/
  .adventure__post-wrapper {
    --bs-gutter-x: 30px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    margin-right: calc(-0.5 * var(--bs-gutter-x));
    margin-left: calc(-0.5 * var(--bs-gutter-x));
  }
  .adventure__post-thumb {
    position: relative;
  }
  .adventure__post-thumb img {
    height: 270px;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
  }
  @media (max-width: 767.98px) {
    .adventure__post-thumb img {
      width: 100%;
    }
  }
  .adventure__post-item {
    flex: 0 0 auto;
    width: 33.33333333%;
    max-width: 100%;
    padding-right: calc(var(--bs-gutter-x) * 0.5);
    padding-left: calc(var(--bs-gutter-x) * 0.5);
    margin: 0 0 30px;
  }
  @media (max-width: 991.98px) {
    .adventure__post-item {
      width: 50%;
    }
  }
  @media (max-width: 767.98px) {
    .adventure__post-item {
      width: 100%;
    }
  }
  .adventure__post-item:nth-child(2) .adventure__post-thumb img, .adventure__post-item:nth-child(11) .adventure__post-thumb img {
    height: 370px;
  }
  .adventure__post-item:nth-child(3) .adventure__post-thumb img, .adventure__post-item:nth-child(12) .adventure__post-thumb img {
    height: 330px;
  }
  .adventure__post-item:nth-child(4) .adventure__post-thumb img, .adventure__post-item:nth-child(13) .adventure__post-thumb img {
    height: 450px;
  }
  .adventure__post-item:nth-child(5) .adventure__post-thumb img, .adventure__post-item:nth-child(14) .adventure__post-thumb img {
    height: 370px;
  }
  .adventure__post-item:nth-child(6) .adventure__post-thumb img, .adventure__post-item:nth-child(15) .adventure__post-thumb img {
    height: 250px;
  }
  .adventure__post-item:nth-child(7) .adventure__post-thumb img, .adventure__post-item:nth-child(16) .adventure__post-thumb img {
    height: 380px;
  }
  .adventure__post-item:nth-child(8) .adventure__post-thumb img, .adventure__post-item:nth-child(17) .adventure__post-thumb img {
    height: 540px;
  }
  @media (max-width: 991.98px) {
    .adventure__post-item:nth-child(8) .adventure__post-thumb img, .adventure__post-item:nth-child(17) .adventure__post-thumb img {
      height: 450px;
    }
  }
  .adventure__post-item:nth-child(9) .adventure__post-thumb img, .adventure__post-item:nth-child(18) .adventure__post-thumb img {
    height: 430px;
  }
  .adventure__post-item:nth-child(10) .adventure__post-thumb img, .adventure__post-item:nth-child(19) .adventure__post-thumb img {
    height: 490px;
  }
  @media (max-width: 991.98px) {
    .adventure__post-item:nth-child(10) .adventure__post-thumb img, .adventure__post-item:nth-child(19) .adventure__post-thumb img {
      height: 400px;
    }
  }
  .adventure__post-item:nth-child(11) .adventure__post-thumb img, .adventure__post-item:nth-child(20) .adventure__post-thumb img {
    height: 340px;
  }
  .adventure__post-item:nth-child(12) .adventure__post-thumb img, .adventure__post-item:nth-child(21) .adventure__post-thumb img {
    height: 250px;
  }
  .adventure__post-content .tgbanner__content-meta {
    margin: 0 0 10px;
  }
  .adventure__post-content .title {
    font-size: 24px;
    line-height: 1.3;
    letter-spacing: -0.4px;
    margin: 0 15px 0 0;
  }
  .adventure__post-more {
    margin-top: 10px;
  }
  
  /*=============================
      15. Blog
  ===============================*/
  .blog-post-wrapper {
    margin-right: 30px;
  }
  @media (max-width: 1199.98px) {
    .blog-post-wrapper {
      margin-right: 10px;
    }
  }
  @media (max-width: 991.98px) {
    .blog-post-wrapper {
      margin-right: 0;
    }
  }
  .blog-post-wrapper .latest__post-item {
    display: block !important;
    padding: 0 0 58px;
    margin-bottom: 50px;
  }
  .blog-post-wrapper .latest__post-thumb {
    width: auto;
    height: auto;
    margin: 0 0 30px;
  }
  .blog-post-wrapper .latest__post-thumb img {
    width: auto;
    height: auto;
  }
  .blog-post-wrapper .latest__post-content {
    margin-right: 0;
  }
  .blog-post-wrapper .latest__post-content .title {
    font-size: 36px;
  }
  @media (max-width: 1199.98px) {
    .blog-post-wrapper .latest__post-content .title {
      font-size: 30px;
    }
  }
  @media (max-width: 991.98px) {
    .blog-post-wrapper .latest__post-content .title {
      font-size: 34px;
    }
  }
  @media (max-width: 767.98px) {
    .blog-post-wrapper .latest__post-content .title {
      font-size: 24px;
    }
  }
  @media only screen and (min-width: 576px) and (max-width: 767px) {
    .blog-post-wrapper .latest__post-content .title {
      font-size: 28px;
    }
  }
  .blog-post-wrapper .latest__post-read-more {
    margin: 30px 0 0;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
  }
  .blog-post-wrapper .latest__post-read-more a {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    line-height: 1;
    gap: 10px;
    font-size: 15px;
  }
  
  .pagination__wrap ul {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 10px;
  }
  @media (max-width: 991.98px) {
    .pagination__wrap ul {
      justify-content: center;
    }
  }
  .pagination__wrap ul li {
    display: block;
  }
  .pagination__wrap ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    font-size: 15px;
    border: 2px solid var(--tg-border-1);
    -webkit-border-radius: 50%;
  
    -moz-border-radius: 50%;
    -o-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
    font-weight: var(--tg-fw-bold);
    color: var(--tg-heading-color);
  }
  .pagination__wrap ul li a:hover {
    border-color: var(--tg-theme-primary);
    background-color: var(--tg-theme-primary);
    color: var(--tg-common-color-white);
  }
  .pagination__wrap ul li.active a {
    pointer-events: none;
    border-color: var(--tg-theme-primary);
    background-color: var(--tg-theme-primary);
    color: var(--tg-common-color-white);
  }
  
  .blog-details-social {
    position: sticky;
    top: 80px;
  }
  @media (max-width: 991.98px) {
    .blog-details-social {
      margin: 0 0 30px;
    }
  }
  @media (max-width: 991.98px) {
    .blog-details-social ul {
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
    }
  }
  .blog-details-social ul li + li {
    margin-top: 14px;
  }
  @media (max-width: 991.98px) {
    .blog-details-social ul li + li {
      margin: 0 0 0 12px;
    }
  }
  .blog-details-social ul li a {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    box-shadow: 0px 16px 32px 0px rgba(0, 0, 0, 0.06);
    background: var(--tg-common-color-white);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -o-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
    color: var(--tg-heading-color);
  }
  @media (max-width: 767.98px) {
    .blog-details-social ul li a {
      width: 45px;
      height: 45px;
      font-size: 14px;
    }
  }
  .blog-details-social ul li a:hover {
    background: var(--tg-theme-primary);
    color: var(--tg-common-color-white);
  }
  .blog-details-wrap {
    margin-right: 30px;
  }
  @media (max-width: 1199.98px) {
    .blog-details-wrap {
      margin-right: 10px;
    }
  }
  @media (max-width: 991.98px) {
    .blog-details-wrap {
      margin-right: 0;
    }
  }
  .blog-details-wrap > .title {
    font-size: 30px;
    letter-spacing: -0.6px;
  
    margin: 0 0 30px;
  }
  @media (max-width: 767.98px) {
    .blog-details-wrap > .title {
      font-size: 25px;
      letter-spacing: -0.3px;
    }
  }
  @media only screen and (min-width: 576px) and (max-width: 767px) {
    .blog-details-wrap > .title {
      font-size: 28px;
    }
  }
  .blog-details-thumb {
    margin: 0 0 40px;
  }
  @media (max-width: 1199.98px) {
    .blog-details-thumb {
      margin: 0 0 30px;
    }
  }
  .blog-details-content p {
    margin-bottom: 15px;
  }
  .blog-details-inner {
    margin: 40px 0 0;
  }
  .blog-details-inner .inner-title {
    font-size: 20px;
    letter-spacing: -0.3px;
    border-bottom: 1px solid #e8e8e8;
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
  .blog-details-inner .list-wrap {
    margin: 0;
    padding: 0;
  }
  .blog-details-inner .list-wrap li {
    padding-left: 30px;
    position: relative;
    margin: 0 0 0;
  }
  .blog-details-inner .list-wrap li + li {
    margin-top: 15px;
  }
  .blog-details-inner .list-wrap li::before {
    content: "\f058";
    position: absolute;
    left: 0;
    top: 0;
    font-family: var(--tg-icon-font-family);
    font-weight: var(--tg-fw-bold);
    font-size: 16px;
    color: #c5c5c5;
  }
  .blog-details-inner .list-wrap li span {
    color: var(--tg-heading-color);
    font-weight: var(--tg-fw-bold);
    margin-right: 5px;
  }
  .blog-details-images {
    margin: 30px 0 10px;
  }
  .blog-details-images .row {
    --bs-gutter-x: 20px;
  }
  .blog-details-images .details-inner-image {
    margin-bottom: 20px;
  }
  .blog-details-images .details-inner-image img {
    height: 250px;
    object-fit: cover;
  }
  @media (max-width: 1199.98px) {
    .blog-details-images .details-inner-image img {
      height: 180px;
    }
  }
  .blog-details-bottom {
    overflow: hidden;
    clear: both;
    border-top: 1px solid #e8e8e8;
    border-bottom: 1px solid #e8e8e8;
    margin: 45px 0 0;
    padding: 19px 0;
  }
  .blog-details-tags ul {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
  
    flex-wrap: wrap;
    gap: 10px 10px;
  }
  .blog-details-tags ul li a {
    display: block;
    line-height: 1;
    background: var(--tg-common-color-white);
    text-transform: uppercase;
    font-weight: var(--tg-fw-bold);
    font-size: 14px;
    padding: 8px 16px;
  }
  .blog-details-tags ul li a:hover {
    background: var(--tg-theme-primary);
    color: var(--tg-common-color-white);
  }
  .blog-details-share {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px 20px;
  }
  @media (max-width: 767.98px) {
    .blog-details-share {
      justify-content: flex-start;
      margin: 15px 0 0;
    }
  }
  .blog-details-share .share-title {
    margin: 0 0;
    font-size: 14px;
  }
  .blog-details-share ul {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px 15px;
  }
  .blog-details-share ul li a {
    display: block;
    font-size: 14px;
    color: var(--tg-heading-color);
  }
  .blog-details-share ul li a:hover {
    color: var(--tg-theme-primary);
  }
  .blog-details-area .blog-sidebar {
    position: sticky;
    top: 80px;
  }
  
  blockquote {
    text-align: center;
    padding: 45px 80px 50px;
    position: relative;
    margin: 40px 0 40px;
  }
  @media (max-width: 1199.98px) {
    blockquote {
      padding: 45px 30px 50px;
    }
  }
  @media (max-width: 767.98px) {
    blockquote {
      padding: 40px 20px 40px;
    }
  }
  blockquote::before, blockquote::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 8px;
    background-image: url(../img/bg/blockquote.png);
  }
  blockquote::after {
    top: auto;
    bottom: 0;
  }
  blockquote p {
    font-size: 24px;
    font-weight: var(--tg-fw-bold);
    color: var(--tg-heading-color);
    line-height: 1.4;
    margin: 0 0;
  }
  @media (max-width: 1199.98px) {
    blockquote p {
      font-size: 20px;
    }
  }
  @media (max-width: 991.98px) {
    blockquote p {
      font-size: 24px;
    }
  }
  @media (max-width: 767.98px) {
    blockquote p {
      font-size: 20px;
      line-height: 1.35;
    }
  }
  blockquote .blockquote-cite {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    text-align: left;
    margin: 30px 0 0;
  }
  blockquote .blockquote-cite .image {
    flex: 0 0 auto;
  }
  blockquote .blockquote-cite img {
    width: 60px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -o-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
  }
  blockquote .blockquote-cite .info h5 {
    font-size: 18px;
    margin: 0 0 3px;
    font-style: normal;
  }
  @media (max-width: 1199.98px) {
    blockquote .blockquote-cite .info h5 {
      font-size: 16px;
    }
  }
  blockquote .blockquote-cite .info span {
    display: block;
    font-size: 14px;
  }
  
  .details-advertisement {
    margin: 40px 0 35px;
  }
  @media (max-width: 767.98px) {
    .details-advertisement {
      margin: 30px 0 25px;
    }
  }
  
  .blog-avatar-wrap {
    background: var(--tg-common-color-white);
    text-align: center;
    margin-top: 110px;
    padding: 0 85px 50px;
  }
  @media (max-width: 1199.98px) {
    .blog-avatar-wrap {
      padding: 0 35px 40px;
    }
  }
  .blog-avatar-img {
    margin: 0 0 40px;
    position: relative;
  }
  @media (max-width: 767.98px) {
    .blog-avatar-img {
      margin: 0 0 30px;
    }
  }
  .blog-avatar-img img {
    max-width: 120px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -o-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
  }
  .blog-avatar-img a {
    display: inline-block;
    position: relative;
    margin: -60px 0 0;
  }
  .blog-avatar-img i {
    position: absolute;
    top: 5px;
    right: 0;
    width: 30px;
    height: 30px;
    border: 2px solid #f5f5f5;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -o-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--tg-theme-primary);
    color: var(--tg-common-color-white);
    font-size: 12px;
  }
  .blog-avatar-content p {
    margin: 0 0 25px;
  }
  .blog-avatar-content .name {
    font-size: 18px;
    margin: 0 0 8px;
  }
  .blog-avatar-content .designation {
    display: block;
    line-height: 1;
  }
  
  .blog-prev-next-posts {
    margin: 50px 0 0;
    padding: 0 0 30px;
    border-bottom: 1px solid #e8e8e8;
  }
  @media (max-width: 1199.98px) {
    .blog-prev-next-posts > .row [class*=col-]:last-child {
      margin-left: auto;
    }
  }
  
  .pn-post-item {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
  }
  .pn-post-item .thumb {
    flex: 0 0 auto;
    margin-right: 25px;
  }
  .pn-post-item .thumb img {
    width: 100px;
    height: 100px;
    object-fit: cover;
  }
  .pn-post-item .content {
    margin-right: 50px;
  }
  @media (max-width: 1199.98px) {
    .pn-post-item .content {
      margin-right: 0;
    }
  }
  .pn-post-item .content span {
    display: block;
    font-size: 13px;
    font-weight: var(--tg-fw-medium);
    margin: 0 0 7px;
  }
  .pn-post-item .content .title {
    font-size: 16px;
    line-height: 22px;
    margin: 0 0;
  }
  .pn-post-item.next-post {
    flex-direction: row-reverse;
    text-align: right;
  }
  @media (max-width: 767.98px) {
    .pn-post-item.next-post {
      margin-top: 10px;
    }
  }
  .pn-post-item.next-post .thumb {
    margin-right: 0;
    margin-left: 25px;
  }
  .pn-post-item.next-post .content {
    margin-left: 50px;
    margin-right: 0;
  }
  @media (max-width: 1199.98px) {
    .pn-post-item.next-post .content {
      margin-left: 0;
    }
  }
  
  /*=============================
      16. Blog Sidebar
  ===============================*/
  @media (max-width: 991.98px) {
    .blog-sidebar {
      margin: 80px 0 0;
    }
  }
  
  .sidebar-widget {
    margin: 0 0 45px;
  }
  .sidebar-widget:last-child {
    margin: 0 0;
  }
  
  .widget-title {
    font-size: 20px;
    line-height: 1;
    letter-spacing: -0.8px;
    margin: 0 0 30px;
  }
  .widget-title::after {
    content: "";
    display: block;
    background-image: url(../img/bg/line6.png);
    width: 100%;
    height: 7px;
    margin: 20px 0 0;
  }
  
  .tgAbout-me {
    text-align: center;
    background-color: var(--tg-common-color-white);
    padding: 40px 43px;
  }
  @media (max-width: 1600px) {
    .tgAbout-me {
      padding: 35px 30px;
    }
  }
  .tgAbout-thumb {
    margin: 0 0 30px;
  }
  .tgAbout-thumb img {
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -o-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
  }
  .tgAbout-info .intro {
    font-size: 20px;
    line-height: 1.2;
    margin: 0 0 7px;
  }
  .tgAbout-info .intro span {
    font-weight: var(--tg-fw-bold);
    color: var(--tg-heading-color);
    letter-spacing: -0.8px;
  }
  .tgAbout-info .designation {
    display: block;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: var(--tg-fw-bold);
    color: var(--tg-theme-primary);
  }
  .tgAbout-social {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 22px 0 0;
    gap: 10px;
  }
  .tgAbout-social a {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    flex: 0 0 auto;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -o-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
    background: var(--tg-common-color-gray);
    font-size: 15px;
    color: var(--tg-heading-color);
  }
  .tgAbout-social a:hover {
    background: var(--tg-theme-secondary);
    color: var(--tg-common-color-white);
  }
  
  .widget_categories ul li {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: var(--tg-fw-bold);
    margin: 0 0 14px;
  }
  .widget_categories ul li:last-child {
    margin: 0 0 0;
  }
  .widget_categories ul li .thumb {
    max-width: 60px;
    flex: 0 0 auto;
    margin-right: 20px;
  
  }
  .widget_categories ul li .thumb img {
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -o-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
  }
  .widget_categories ul li a {
    color: var(--tg-heading-color);
  }
  .widget_categories ul li a:hover {
    color: var(--tg-theme-primary);
  }
  .widget_categories ul li span {
    margin-left: auto;
    color: var(--tg-theme-primary);
  }
  
  .slick-slider {
      position: relative;
      display: block;
  }
  .sidePost__item {
    height: 800px;
    overflow: hidden;
    background-position: center;
    background-size: cover;
    position: relative;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    display: flex !important;
    padding: 30px 30px 60px;
    z-index: 1;
  }
  .sidePost__item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    /*background-image: -moz-linear-gradient(90deg, rgba(0, 0, 0, 0.70196) 0%, rgba(0, 0, 0, 0) 100%);
    background-image: -webkit-linear-gradient(90deg, rgba(0, 0, 0, 0.70196) 0%, rgba(0, 0, 0, 0) 100%);
    background-image: -ms-linear-gradient(90deg, rgba(0, 0, 0, 0.70196) 0%, rgba(0, 0, 0, 0) 100%);*/
    z-index: -1;
    opacity: 0.9;
  }
  
  .slick-prev.slick-arrow {
      position:absolute;
      z-index:10;
      left:0;
      top:50%;
      width: 58px;
      height: 53px;
      opacity: 0.7;
      filter: alpha(opacity=70);
      background: url(../../images/slide_next.png) no-repeat;
      background-position: left top;
      text-indent: -999em;
      border: none;
  }
  
  .slick-next.slick-arrow { position:absolute;z-index:10; right:0; top:50%;
      width: 58px;
      height: 53px;
      opacity: 0.7;
      filter: alpha(opacity=70);
      background: url(../../images/slide_next.png) no-repeat;
      background-position: right top;
      text-indent: -999em;
      border: none;
                           
  }
  .slick-prev.slick-arrow:hover,.slick-next.slick-arrow:hover {
     opacity:1;
  }
  
  
  @media (max-width: 767.98px) {
     .sidePost__item {
      height: 400px;
      overflow: hidden;
      background-position: center;
      background-size: cover;
      position: relative;
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      display: flex !important;
      padding: 30px 30px 60px;
      z-index: 1;
   }
  }
  
  @media (max-width: 576px) {
    .sidePost__item {
      height: 220px;
      overflow: hidden;
      background-position: center;
      background-size: cover;
      position: relative;
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      display: flex !important;
      padding: 30px 30px 60px;
      z-index: 1;
   }
  }
  
  
  .sidePost__content {
    align-self: flex-end;
  }
  .sidePost__content .tag {
    display: inline-block;
    text-transform: uppercase;
    color: var(--tg-common-color-white);
    font-size: 14px;
    font-weight: var(--tg-fw-bold);
    line-height: 1;
    margin: 0 0 13px;
  }
  .sidePost__content .title {
    color: var(--tg-common-color-white);
    margin: 0 0;
    font-size: 20px;
    letter-spacing: -0.5px;
    line-height: 1.3;
  }
  .sidePost__content .title a {
    background-image: linear-gradient(var(--tg-common-color-white), var(--tg-common-color-white)), linear-gradient(var(--tg-common-color-white), var(--tg-common-color-white));
  }
  
  .sidePost-active .slick-dots {
    position: absolute;
    left: 80px;
    right: 30px;
    bottom: 30px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 1;
    justify-content: left;
  
  }
  .sidePost-active .slick-dots li {
  
    line-height: 0;
  }
  .sidePost-active .slick-dots li button {
    text-indent: -9999px;
    border: none;
    padding: 0 0;
    width: 24px;
    height: 4px;
    background: #ffffff;
    line-height: 1;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    opacity: 0.2;
  }
  .sidePost-active .slick-dots li.slick-active button {
    opacity: 1;
  }
  
  .sidebarInsta__wrap {
    background: var(--tg-theme-secondary);
  }
  .sidebarInsta__top {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    padding: 40px;
  }
  .sidebarInsta__logo {
    flex: 0 0 auto;
    width: 60px;
    margin-right: 16px;
  }
  .sidebarInsta__logo img {
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -o-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
  }
  .sidebarInsta__info {
    flex-grow: 1;
  }
  .sidebarInsta__info .name {
    color: var(--tg-common-color-white);
    font-size: 18px;
    font-weight: var(--tg-fw-bold);
    margin: 0 0 3px;
  }
  .sidebarInsta__info .designation {
    display: block;
    font-size: 12px;
    color: #808080;
  }
  .sidebarInsta__slider-wrap .swiper-slide a {
    display: block;
  }
  .sidebarInsta__slider-wrap .swiper-slide a img {
    width: 100%;
  }
  .sidebarInsta__bottom {
    padding: 30px;
  }
  .sidebarInsta__bottom .btn {
    display: block;
    width: 100%;
    text-align: center;
  }
  .sidebarInsta__bottom .btn i {
    margin: 0 7px 0 0;
  }
  .sidebarInsta__bottom .btn::before {
    background: var(--tg-common-color-black);
  }
  .sidebarInsta__slider-wrap {
    overflow: hidden;
  }
  .sidebarInsta-active {
    margin: 0 -45px 15px -25px;
  }
  .sidebarInsta-active-2 {
    margin: 0 -25px 0 -45px;
  }
  
  .rc__post-wrapper .tgbanner__content-meta {
    margin: 0 0 5px;
  }
  .rc__post-item {
    position: relative;
  }
  .rc__post-item::after {
    content: "";
    display: block;
    background-image: url(../img/bg/line6.png);
    width: 100%;
    height: 7px;
    margin: 20px 0 22px;
  }
  .rc__post-item:last-child::after {
    margin: 25px 0 0;
  }
  .rc__post-item .title {
    font-size: 18px;
    line-height: 1.43;
    margin: 0 0;
  }
  
  /*=============================
      17. Newsletter Post
  ===============================*/
  .newsletter__wrap {
    background-color: var(--tg-common-color-white);
    position: relative;
    padding: 55px 115px 55px 60px;
    z-index: 1;
  }
  @media (max-width: 1600px) {
    .newsletter__wrap {
      padding: 55px 70px 55px 55px;
    }
  }
  @media (max-width: 1199.98px) {
    .newsletter__wrap {
      padding: 45px 40px;
    }
  }
  @media (max-width: 991.98px) {
    .newsletter__wrap {
      padding: 45px 60px;
    }
  }
  @media (max-width: 767.98px) {
    .newsletter__wrap {
      padding: 40px 25px;
    }
  }
  
  @media only screen and (min-width: 576px) and (max-width: 767px) {
    .newsletter__wrap {
      padding: 50px 50px;
    }
  }
  .newsletter__wrap::after {
    content: "\f116";
    position: absolute;
    right: 10px;
    bottom: 10px;
    font-family: "flaticon";
    line-height: 0.92;
    font-size: 160px;
    color: #f6f6f6;
    z-index: -1;
  }
  @media (max-width: 1199.98px) {
    .newsletter__wrap::after {
      font-size: 120px;
    }
  }
  @media (max-width: 1199.98px) {
    .newsletter__wrap .row {
      align-items: flex-start !important;
    }
  }
  @media (max-width: 991.98px) {
    .newsletter__title {
      text-align: center;
      margin: 0 0 35px;
    }
  }
  .newsletter__title .sub-title {
    display: block;
    font-size: 14px;
    text-transform: uppercase;
    margin: 0 0 4px;
  }
  .newsletter__title .title {
    margin: 0 0;
    font-size: 30px;
    letter-spacing: -0.9px;
    line-height: 1.3;
  }
  @media (max-width: 1199.98px) {
    .newsletter__title .title {
      font-size: 27px;
      letter-spacing: 0;
    }
  }
  @media (max-width: 991.98px) {
    .newsletter__title .title {
      font-size: 30px;
    }
  }
  @media (max-width: 767.98px) {
    .newsletter__title .title {
      font-size: 28px;
      line-height: 1.2;
    }
    .newsletter__title .title br {
      display: none;
    }
  }
  .newsletter__form {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    gap: 20px 40px;
    justify-content: flex-end;
  }
  @media (max-width: 1199.98px) {
    .newsletter__form-wrap {
      margin: 0 0 0 10px;
    }
  }
  @media (max-width: 991.98px) {
    .newsletter__form-wrap {
      margin: 0 0;
    }
  }
  @media (max-width: 1199.98px) {
    .newsletter__form {
      display: block;
    }
  }
  @media (max-width: 991.98px) {
    .newsletter__form {
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      gap: 20px 30px;
      justify-content: center;
    }
  }
  @media (max-width: 767.98px) {
    .newsletter__form {
      display: block;
    }
  }
  .newsletter__form [type=submit] {
    font-size: 16px;
    font-weight: var(--tg-fw-bold);
    text-transform: capitalize;
    padding: 22px 35px;
  }
  .newsletter__form-grp {
    position: relative;
  }
  @media (max-width: 1199.98px) {
    .newsletter__form-grp {
      margin: 0 0 20px;
    }
  }
  @media (max-width: 991.98px) {
    .newsletter__form-grp {
      margin: 0 0;
    }
  }
  @media (max-width: 767.98px) {
    .newsletter__form-grp {
      margin: 0 0 20px;
    }
  }
  .newsletter__form-grp input[type=email] {
    display: block;
    width: 100%;
    border: none;
    padding: 0 0 10px 25px;
    background: transparent;
  }
  .newsletter__form-grp::before {
    content: "\f2b6";
    position: absolute;
    left: 0;
    top: 0;
    font-family: var(--tg-icon-font-family);
    font-weight: var(--tg-fw-bold);
    color: var(--tg-heading-color);
  }
  .newsletter__form-grp .form-check {
    margin: 0 0;
    position: relative;
    padding: 15px 0 0 1.5em;
  }
  .newsletter__form-grp .form-check [type=checkbox]:checked {
    background-color: var(--tg-theme-primary);
    border-color: var(--tg-theme-primary);
  }
  .newsletter__form-grp .form-check [type=checkbox]:focus {
    box-shadow: 0 0 0 0.25rem rgba(255, 51, 102, 0.25);
    border-color: var(--tg-theme-primary);
  }
  .newsletter__form-grp .form-check label {
    font-size: 14px;
    color: #a4a4a4;
  }
  .newsletter__form-grp .form-check::before {
    content: "";
    display: block;
    background-image: url(../img/bg/newsletter_line.png);
    width: 100%;
    height: 8px;
    position: absolute;
    left: 0;
    top: 0;
  }
  .newsletter-style-two .newsletter__title-icon {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--tg-theme-primary);
    width: 80px;
    height: 80px;
    color: var(--tg-common-color-white);
    box-shadow: 0px 20px 40px 0px rgba(255, 51, 102, 0.4);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -o-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
    font-size: 38px;
    margin: 0 auto 35px;
    line-height: 1;
    flex: 0 auto;
  }
  .newsletter-style-two .newsletter__title .sub-title {
    margin: 0 0 7px;
  }
  .newsletter-style-two .newsletter__title .title {
    color: var(--tg-common-color-white);
  }
  .newsletter-style-two .newsletter__form-grp::before {
    color: var(--tg-common-color-white);
  }
  .newsletter-style-two .newsletter__form-grp input[type=email] {
    color: var(--tg-common-color-white);
  }
  .newsletter-style-two .newsletter__form-grp .form-check::before {
    opacity: 0.2;
  }
  .newsletter-style-two .newsletter__form-grp .form-check {
    padding: 20px 0 0 1.5em;
    text-align: left !important;
  }
  .newsletter-style-two .form-check-input[type=checkbox] {
    background-color: #515151;
  }
  @media (max-width: 1199.98px) {
    .newsletter-style-two .newsletter__form-wrap {
      margin: 0 0;
    }
  }
  .newsletter-style-two.style-three .newsletter__title .title {
    color: var(--tg-heading-color);
  }
  .newsletter-style-two.style-three .newsletter__form-grp::before {
    color: var(--tg-heading-color);
  }
  .newsletter-style-two.style-three .newsletter__form-grp input[type=email] {
    color: var(--tg-body-color);
  }
  .newsletter-style-two.style-three .newsletter__form-grp input[type=email]::placeholder {
    color: #c0c0c0;
  }
  .newsletter-style-two.style-three .newsletter__form-grp .form-check::before {
    opacity: 1;
  }
  .newsletter-style-two.style-three .form-check-input[type=checkbox] {
    background-color: #c0c0c0;
    border-color: #c0c0c0;
  }
  .newsletter-style-two.style-three .form-check-input[type=checkbox]:checked {
    background-color: var(--tg-theme-primary);
    border-color: var(--tg-theme-primary);
  }
  .newsletter-style-two.style-four {
    background-image: url(../img/bg/newsletter_bg.jpg);
    background-position: center;
    background-size: cover;
    padding: 80px 130px;
  }
  @media (max-width: 1600px) {
    .newsletter-style-two.style-four {
      padding: 70px 100px;
    }
  }
  @media (max-width: 1199.98px) {
    .newsletter-style-two.style-four {
      padding: 70px 50px;
    }
  }
  @media (max-width: 767.98px) {
    .newsletter-style-two.style-four {
      padding: 50px 20px;
    }
  
  }
  @media only screen and (min-width: 576px) and (max-width: 767px) {
    .newsletter-style-two.style-four {
      padding: 55px 35px;
    }
  }
  .newsletter-style-two.style-four .newsletter__form {
    justify-content: center;
    text-align: left;
  }
  @media (max-width: 1199.98px) {
    .newsletter-style-two.style-four .newsletter__form {
      text-align: center;
    }
  }
  @media (max-width: 991.98px) {
    .newsletter-style-two.style-four .newsletter__form {
      display: block;
    }
  }
  @media (max-width: 991.98px) {
    .newsletter-style-two.style-four .newsletter__form-grp {
      margin: 0 0 20px;
    }
  }
  .newsletter-style-two.style-four .newsletter__form-grp .form-check::before {
    opacity: 1;
  }
  
  /*=============================
      18. Footer
  ===============================*/
  .footer__top-wrap {
    padding: 32px 0 0;
  }
  .footer__widget {
  margin: 0 0 10px;
  }
  .footer__widget .fw-title {
    margin: 0 0 28px;
    font-size: 20px;
    color: var(--tg-common-color-white);
  }
  .footer__widget ul li {
    margin: 0;
  }
  .footer__widget ul li a {
      font-size: 16px;
      color: #fff;
      line-height: 36px;
      display: block;
      width: 80%;
  /*    border-bottom: rgb(255 255 255 / 20%) 1px solid;
  */}
  .footer__widget ul li a:hover {
    color: var(--tg-common-color-white);
  }
  .footer__widget.footer-links .fw-title {margin: 0 0 20px;}
  .footer__widget.footer-links ul li {
     width: 50%; float: left;
  }
  
  .footer__widget .qr-code img {
      margin-left: 22px;
      width: 100px;
      display: block;
  }
  .footer__logo-wrap {
    padding: 30px 0;
    border-top: 1px solid var(--tg-border-2);
    border-bottom: 1px solid var(--tg-border-2);
  }
  .footer-area.border-top-none .footer__logo-wrap {
    border-top: none;
  }
  @media (max-width: 767.98px) {
    .footer__logo {
      text-align: center;
    }
  }
  .footer__social ul {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px 28px;
  }
  @media (max-width: 767.98px) {
    .footer__social ul {
      justify-content: center;
      flex-wrap: wrap;
      margin: 25px 0 0;
      gap: 10px 25px;
    }
  }
  .footer__social ul li a {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #999999;
    line-height: 1;
  }
  .footer__social ul li a:hover {
    color: var(--tg-common-color-white);
  }
  .footer__social ul li a i {
    color: var(--tg-common-color-white);
    margin-right: 8px;
  }
  .footer__social ul li a span {
    display: block;
    font-weight: var(--tg-fw-bold);
    background: var(--tg-theme-primary);
    color: var(--tg-common-color-white);
    line-height: 1;
    padding: 3px 7px;
    border-radius: 10px;
    margin-left: 5px;
  }
  .footer__copyright {
  border-top: 1px solid #af2030;
  padding: 8px 0;
  }
  .footer-style-three {
    margin: 0 0 50px;
  }
  @media (max-width: 767.98px) {
    .footer-style-three {
      margin: 0 0 30px;
    }
  }
  .footer-style-three .footer__logo-wrap {
    border-color: #efefef;
  }
  .footer-style-three .footer__social ul li a {
    color: var(--tg-heading-color);
  }
  .footer-style-three .footer__social ul li a i {
    color: var(--tg-heading-color);
  }
  .footer-style-three .copyright__text p {
    color: var(--tg-body-color);
  }
  .footer-style-three .copyright__text p span {
    color: var(--tg-heading-color);
  }
  .footer-style-three .copyright__menu ul li a {
    color: var(--tg-heading-color);
  }
  .footer-style-three.footer-bg {
    background-position: bottom center;
    background-size: cover;
    margin: 0 0 0;
  }
  .footer-style-three.footer-bg .newsletter__form-grp .form-check label {
    color: var(--tg-body-color);
  }
  .footer-style-three.footer-bg .newsletter__form-grp .form-check::before {
    background-image: url(../img/bg/marquee_line.png);
    opacity: 0.8;
  }
  .footer-style-three.footer-bg .footer__logo-wrap {
    border-color: var(--tg-border-2);
  }
  .footer-style-three.footer-bg .copyright__text p {
    color: var(--tg-theme-secondary);
  }
  
  @media (max-width: 991.98px) {
    .copyright__text {
      text-align: center;
    }
  }
  .copyright__text p {
    margin: 0 0;
    font-size: 12px;
    color: #d99e9e;
  }
  .copyright__text p a {color:#ff4c6a;}
  .copyright__text p span {
    color: var(--tg-common-color-white);
    font-weight: var(--tg-fw-bold);
  }
  .copyright__menu ul {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 5px 40px;
  }
  @media (max-width: 991.98px) {
    .copyright__menu ul {
      justify-content: center;
      margin-top: 15px;
    }
  }
  @media (max-width: 767.98px) {
    .copyright__menu ul {
      gap: 3px 20px;
    }
  }
  @media only screen and (min-width: 576px) and (max-width: 767px) {
    .copyright__menu ul {
      gap: 5px 28px;
    }
  }
  .copyright__menu ul li a {
    display: block;
    font-size: 14px;
    font-weight: var(--tg-fw-bold);
    color: var(--tg-common-color-white);
    text-transform: uppercase;
  }
  .copyright__menu ul li a:hover {
    color: var(--tg-theme-primary);
  }
  
  /*=============================
      19. Dark Mode
  ===============================*/
  [tg-theme=dark] {
    --tg-common-color-gray: #f5f5f5;
    --tg-common-color-black: #000;
    --tg-body-color: #aeaeae;
    --tg-heading-color: #fff;
    --tg-border-1: #222;
    --tg-dark-color-1: #181818;
    --tg-dark-color-2: #222;
  }
  [tg-theme=dark] body, [tg-theme=dark] #preloader {
    background-color: var(--tg-theme-secondary);
  }
  [tg-theme=dark] .sticky-menu {
    background-color: var(--tg-dark-color-1);
  }
  [tg-theme=dark] .btn::before {
    background: var(--tg-dark-color-1);
  }
  [tg-theme=dark] .logo .logo-dark {
    display: none;
  }
  [tg-theme=dark] .logo .logo-light {
    display: block;
  }
  [tg-theme=dark] .header__top-search form input, [tg-theme=dark] .header__top-right .lang .dropdown-toggle, [tg-theme=dark] .header__top-right .lang .dropdown-menu, [tg-theme=dark] .tgmenu__navbar-wrap ul li .sub-menu, [tg-theme=dark] .tgmobile__menu-box, [tg-theme=dark] .newsletter__wrap, [tg-theme=dark] .offCanvas__wrap, [tg-theme=dark] .tgbanner__post.big-post .tgbanner__content, [tg-theme=dark] .handpicked__item.big-post .handpicked__content, [tg-theme=dark] .latest__post-content-two, [tg-theme=dark] .tgslider__content, [tg-theme=dark] .header__style-six .tg-header__area, [tg-theme=dark] .tg-hover-wrapper, [tg-theme=dark] .blog-avatar-wrap, [tg-theme=dark] .slider__style-two {
    background-color: var(--tg-dark-color-1);
    color: var(--tg-common-color-white);
  }
  [tg-theme=dark] .header__top-right .lang .dropdown-menu li a {
    color: var(--tg-common-color-white);
  }
  [tg-theme=dark] .header__top-right .lang .dropdown-menu li a:hover, [tg-theme=dark] .header__top-right .lang .dropdown-menu li a:focus {
    background-color: var(--tg-dark-color-2);
  }
  [tg-theme=dark] .tgmenu__navbar-wrap ul li .sub-menu {
    border-color: var(--tg-dark-color-1);
    box-shadow: none;
  }
  [tg-theme=dark] .switcher__mode {
    background-color: var(--tg-dark-color-2);
  }
  [tg-theme=dark] .switcher__mode::before {
    background: var(--tg-common-color-white);
    left: calc(100% - 15px);
  }
  [tg-theme=dark] .switcher__btn.light-mode {
    opacity: 0.3;
  }
  [tg-theme=dark] .switcher__btn.dark-mode {
    color: var(--tg-theme-primary);
  }
  [tg-theme=dark] .tgmobile__menu .navigation > li > ul > li:first-child, [tg-theme=dark] .tgmobile__menu .navigation li {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  [tg-theme=dark] .tgmobile__menu .navigation:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  [tg-theme=dark] .tgmobile__menu .social-links ul li a {
    color: var(--tg-common-color-white);
    border-color: var(--tg-dark-color-2);
  }
  [tg-theme=dark] .tgmobile__menu .social-links ul li a:hover {
    border-color: var(--tg-theme-primary);
  }
  [tg-theme=dark] .tgmobile__menu .navigation li.menu-item-has-children .dropdown-btn, [tg-theme=dark] .slider__style-two .slider__item {
    background: var(--tg-dark-color-2);
  }
  [tg-theme=dark] .tgmobile__menu .navigation li.menu-item-has-children .dropdown-btn .plus-line, [tg-theme=dark] .tgmobile__menu .navigation li.menu-item-has-children .dropdown-btn .plus-line::after {
    background-color: var(--tg-common-color-white);
  }
  [tg-theme=dark] .tgmobile__menu .navigation li.menu-item-has-children .dropdown-btn.open {
    background-color: var(--tg-theme-primary);
  }
  [tg-theme=dark] .tgmobile__menu .nav-logo .logo-light {
    display: block;
  }
  [tg-theme=dark] .tgmobile__menu .nav-logo .logo-dark {
    display: none;
  }
  [tg-theme=dark] .tgmobile__search input, [tg-theme=dark] .newsletter__form [type=submit]::before, [tg-theme=dark] .header__style-five .header__top-search form input {
    background: var(--tg-dark-color-2);
  }
  [tg-theme=dark] .form-check-input[type=checkbox] {
    background-color: var(--tg-dark-color-2);
  }
  [tg-theme=dark] .tgbanner__post.big-post .tgbanner__content {
    background-image: none;
  }
  [tg-theme=dark] .tgbanner__side-post .small-post::after, [tg-theme=dark] .newsletter__form-grp .form-check::before, [tg-theme=dark] .section__title-wrap::after, [tg-theme=dark] .handpicked__item.small-post::after, [tg-theme=dark] .tgbanner__area-three .trending__post::after, [tg-theme=dark] .tgbanner__trending-title::after, [tg-theme=dark] .tgbanner__trending-post-list > li::after, [tg-theme=dark] .latest__post-item::before, [tg-theme=dark] .newsletter-style-two.style-three .newsletter__form-grp .form-check::before, [tg-theme=dark] .widget-title::after, [tg-theme=dark] .rc__post-item::after, [tg-theme=dark] .latest__post-bottom::before, [tg-theme=dark] .blog-details-inner .list-wrap li::before {
    opacity: 0.2;
  }
  [tg-theme=dark] .post__activity li i {
    color: #666666;
  }
  [tg-theme=dark] .video__post-item.side-post .video__post-thumb:hover .popup-video i {
    color: var(--tg-dark-color-1);
  }
  [tg-theme=dark] .video__post-item.big-post .popup-video {
    color: var(--tg-dark-color-1);
  }
  [tg-theme=dark] .video__post-item.big-post .popup-video:hover {
    color: var(--tg-common-color-white);
  }
  [tg-theme=dark] .video__post-item.side-post::after {
    opacity: 0.1;
  }
  [tg-theme=dark] .tgbanner__content-meta li .by {
    color: var(--tg-body-color);
  }
  [tg-theme=dark] .header__style-three, [tg-theme=dark] .tgbanner__big-post-content .read-more, [tg-theme=dark] .tgAbout-me, [tg-theme=dark] .sidebarInsta__wrap, [tg-theme=dark] .header__top-bar, [tg-theme=dark] .white-bg, [tg-theme=dark] .breadcrumb-content, [tg-theme=dark] .blog-details-social ul li a, [tg-theme=dark] .blog-details-tags ul li a {
    background: var(--tg-dark-color-1);
  }
  [tg-theme=dark] .blog-details-tags ul li a, [tg-theme=dark] .footer-style-three.footer-bg .copyright__text p {
    color: var(--tg-common-color-white);
  }
  [tg-theme=dark] .tgbanner__big-post-content .read-more:hover, [tg-theme=dark] .blog-details-social ul li a:hover, [tg-theme=dark] .blog-details-tags ul li a:hover {
    background: var(--tg-theme-primary);
  }
  [tg-theme=dark] .newsletter__wrap::after {
    opacity: 0.02;
  }
  [tg-theme=dark] .offCanvas__contact-list li, [tg-theme=dark] .offCanvas__contact-list li a, [tg-theme=dark] .offCanvas__social li a {
    color: var(--tg-common-color-white);
  }
  [tg-theme=dark] .offCanvas__social li a:hover {
    color: var(--tg-theme-primary);
  }
  [tg-theme=dark] .slider__content .btn {
    background: var(--tg-dark-color-1);
  }
  [tg-theme=dark] .slider__content .btn::before {
    background: var(--tg-theme-primary);
  }
  [tg-theme=dark] .slider__img-wrap::before {
    background: var(--tg-dark-color-1);
  }
  [tg-theme=dark] .slider-active .slick-dots li.slick-active button {
    border-color: var(--tg-dark-color-2);
  }
  [tg-theme=dark] .slider-active .slick-dots li.slick-active button::after {
    background: var(--tg-theme-primary);
  }
  [tg-theme=dark] .tgbanner__trending-post-list .post-count {
    opacity: 0.3;
  }
  [tg-theme=dark] .stories-video-post .stories-post__thumb .popup-video {
    color: var(--tg-theme-primary);
  }
  [tg-theme=dark] .stories-video-post .stories-post__thumb .popup-video:hover {
    color: var(--tg-common-color-white);
  }
  [tg-theme=dark] .tgAbout-social a, [tg-theme=dark] .sidebarInsta__bottom .btn::before {
    background: var(--tg-theme-secondary);
  }
  [tg-theme=dark] .tgAbout-social a:hover, [tg-theme=dark] .sidebarInsta__bottom .btn::before:hover {
    background: var(--tg-theme-primary);
  }
  [tg-theme=dark] .footer-style-three .footer__logo-wrap {
    border-color: #282828;
  }
  [tg-theme=dark] blockquote::before, [tg-theme=dark] blockquote::after, [tg-theme=dark] .slider__marquee::before, [tg-theme=dark] .slider__marquee::after, [tg-theme=dark] .tgslider__top::after, [tg-theme=dark] .footer-style-three.footer-bg .newsletter__form-grp .form-check::before {
    filter: brightness(100);
    opacity: 0.2;
  }
  [tg-theme=dark] .tgslider__nav button {
    border: 2px solid #2b2b2b;
  }
  [tg-theme=dark] .tgslider__nav button:hover {
    border-color: var(--tg-theme-primary);
  }
  [tg-theme=dark] .header__style-five .switcher__btn.light-mode {
    opacity: 1;
  }
  [tg-theme=dark] .blog-details-inner .inner-title, [tg-theme=dark] .blog-details-bottom, [tg-theme=dark] .blog-prev-next-posts {
    border-color: #1f1f1f;
  }
  [tg-theme=dark] .footer-style-three.footer-bg, [tg-theme=dark] .slider__style-two {
    background-image: none !important;
  }
  [tg-theme=dark] .footer-style-three.footer-bg .slider-active .slick-dots li.slick-active button, [tg-theme=dark] .slider__style-two .slider-active .slick-dots li.slick-active button {
    border-color: var(--tg-dark-color-1);
  }
  [tg-theme=dark] .footer-style-three.footer-bg .border-btn, [tg-theme=dark] .slider__style-two .border-btn {
    border-color: var(--tg-dark-color-1);
  }
  
  
  
  
  .part-1 {
      display: flex;
      justify-content: space-between;
  }
  
  .part-1 .tit-unit {position: relative;height: 600px;background: url("../../images/logo_bg.png") left top no-repeat;background-size: 85% auto;}
  .part-1 .tit-unit h3 {position: relative; left: -10px;font-size: 38px;letter-spacing: 5px;line-height: 1;width: 40px;height: 300px; padding: 30px 0 0 0;writing-mode: vertical-lr; writing-mode: tb-lr;}
  .part-1 .tit-unit .more {position: absolute; left:10px; bottom: 10px; font-size: 18px; text-align: left;letter-spacing: 2px; font-weight: var(--tg-fw-bold); color: var(--tg-heading-color); width:120px; height: 30px; display: block; <!--background:url("../../images/arrow_red.png") right center no-repeat;--> background-size:auto 40%;}
  .part-1 .tit-unit .more:hover {color:var(--tg-theme-primary);}
  
  
  .part-1 .feature {display: flex;justify-content: center;}
  .part-1 .feature .content {margin: 0 18px;height: 600px;max-width: 350px;min-width: 320px;text-align: center;padding: 70px 27px 15px;}
  .part-1 .feature .content h3 {color:#fff;font-size: 36px;letter-spacing: 2px;/* font-weight: 400; */margin-bottom: 220px;}
  .part-1 .feature .content .desc {text-align: center;color:#fff;font-weight:400;font-size:22px;}
  .part-1 .feature .content .desc p {text-align: center; color:#fff; font-size:18px;}
  .part-1 .feature .pic-bg1 {background: url("../../images/pic_bg01.jpg") top center no-repeat; background-size: cover;transition: all 0.6s ease-out 0s;}
  .part-1 .feature .pic-bg1:hover {transform: scale(1.05);}
  
  
  @media (max-width: 1600px) {
  .part-1 .feature {display: flex;justify-content: center;}
  .part-1 .feature .content {margin: 0 18px;height: auto;max-width: 320px;min-width: 250px;text-align: center;padding-top: 170%;}
  .part-1 .feature .content h3 {color:#fff;font-size: 36px;letter-spacing: 2px;/* font-weight: 400; */margin-bottom: 220px;}
  .part-1 .feature .content .desc {text-align: center;color:#fff;font-weight:400;font-size:22px;}
  .part-1 .feature .content .desc p {text-align: center; color:#fff; font-size:18px;}
  .part-1 .feature .pic-bg1 {background: url("../../images/pic_bg01.jpg") top center no-repeat; background-size: contain;transition: all 0.6s ease-out 0s;}
  .part-1 .feature .pic-bg1:hover {transform: scale(1.05);}
  
  .part-1 .tit-unit {
      position: relative;
      height: 480px;
      background: url("../../images/logo_bg.png") left top no-repeat;
      background-size: 87% auto;
  }
  }
  
  @media (max-width: 1400px) {
    .slogan {
      position: absolute;
      left: 80px;
      top: 270px;
      z-index: 1;
  }
  }
  
  .part-2 { position: relative; }
  .part-2 .news-tit { display: flex;justify-content: flex-end;}
  .part-2 .news-slider {position: relative;}
  .part-2 .tit-unit { position: relative; height: 600px; }
  .part-2 .tit-unit:before {
      content: "";
      position: absolute;
      top: 0;
      right: -20px;
      height: 600px;
      width: 200px;
      background: url("../../images/logo_bg.png") right top no-repeat;
      transform: scaleX(-1);
      background-size: contain;
  }
  .part-2 .tit-unit h3 {position: relative; right: -25px; font-size: 38px;letter-spacing: 5px;line-height: 1;width: 40px;height: 300px; padding: 30px 0 0 0;writing-mode: vertical-lr;writing-mode: tb-lr;/}
  .part-2 .tit-unit .more {position: absolute; left:50px; bottom: 0; font-size: 18px;text-align: left; letter-spacing: 2px; font-weight: var(--tg-fw-bold); color: var(--tg-heading-color); width:120px; height: 30px; display: block; /*background:url("../../images/arrow_red2.png") right center no-repeat;background-size:auto 40%;*/ }
  .part-2 .tit-unit .more:hover {color:var(--tg-theme-primary);}
  
  .part-2 .slider__content .title {height: 90px;overflow: hidden;}
  .part-2 .slider__content {position: relative;}
  .part-2 .slider__content p {height: 90px; overflow: hidden;margin-bottom: 20px;}
  .part-2 .slider__content p a {
      color: #777777;
      font-size: 18px;
  }
  .part-2 .yh-left {
      position: absolute;
      left: 5px;
      top: -80px;
  }
  .part-2 .yh-right {
      position: absolute;
      right: 30px;
      top: 250px;
  }
  .part-2 .yh-left img,.part-2 .yh-right img { display: block; width: 28px;}
  
  .part-3 .tit-unit { position: relative; height: 600px; background: url("../../images/logo_bg.png") left top no-repeat; background-size: 77% auto;}
  .part-3 .tit-unit h3 {position: relative; left: -10px;font-size: 38px;letter-spacing: 5px;line-height: 1;width: 40px;height: 300px; padding: 30px 0 0 0;writing-mode: vertical-lr;writing-mode: tb-lr; }
  .part-3 .tit-unit .more {position: absolute; left:10px; bottom: 10px; font-size: 18px;text-align: left; letter-spacing: 2px; font-weight: var(--tg-fw-bold); color: var(--tg-heading-color); width:120px; height: 30px; display: block; }
  .part-3 .tit-unit .more:hover {color:var(--tg-theme-primary);}
  
  .part-3 .info {display: flex;justify-content: flex-start;/* justify-items: center; *//* justify-content: flex-end; */flex-direction: row;/* height: 600px; *//* align-items: center; */}
  .part-3 .video-info {margin-top: 20px;/*margin-right:60px;*/font-size: 26px;font-family: "KaiTi";font-weight: 400;color: #333;letter-spacing: 1px;line-height: 2.7;height: 600px;padding: 0;}
  
  .footer-contact .info-box {display: flex;font-size: 14px;}
  .footer-contact .info-box p {margin: 0 0 14px;font-size: 14px;line-height: 1;color:#eee;}
  .footer-contact .info {margin-bottom: 15px;}
  .footer-contact .map {margin-left: 50px;}
  .footer-contact .map p{ font-size: 14px; color:#eee;}
  .footer-contact .map a {
      display: block;
      padding: 0 15px;
      width: 290px;
      line-height: 34px;
      color: #fff;
      font-size: 14px;
      border: var(--tg-theme-primary) 3px solid;
      background: url("../../images/arrow_white.png") 250px center no-repeat;
      background-size: 18px auto;
  }
  .footer-contact .map a:hover { border:var(--tg-theme-primary) 3px solid;background:var(--tg-theme-primary) url("../../images/arrow_white.png") 260px center no-repeat; background-size: 18px auto;}
  
  
  
  .tg-header__area .logo a .logo1{ display:block;}
  .tg-header__area .logo a .logo2{ display:none;}
  .tg-header__area.sticky-menu .logo a .logo1{ display:none;}
  .tg-header__area.sticky-menu .logo a .logo2{ display:block;}
  
  .tg-header__area.sticky-menu .tgmenu__navbar-wrap ul li .sub-menu {
    position: absolute;
    left: -16px;
    top: 100%;
   border-top:none;
    border: 1px solid #f5f5f5;
      background: #ffffff;
  }
  
  
  .slogan {position: absolute;left:80px;top: 270px; z-index: 1;}
  @media (min-width:1921px) {
    .slogan {
      position: absolute;
      left: 15%;
      top: 270px;
      z-index: 1;
  }
  }
  
  .l-banner{margin-top:-106px;height: 235px;background-position:center center;background-repeat:no-repeat;text-align:center;background-size: cover;}
  .l-banner img{display:none;height:100%;vertical-align:top;}
  
  
  #l-container {}
  #l-container .inner {padding: 60px 10px;}
  
  #d-container {}
  #d-container .inner {background:#fff;}
  
  .col_menu {width: 240px;float:left;margin-right:-240px;position:relative;}
  .col_menu .l-qh{ margin-bottom:10px;}
  .col_menu .col_menu_head {background:var(--tg-heading-color);}
  .col_menu .col_menu_head h3.col_name {
      font-size: 24px;
      font-weight: normal;
      color: #fff;
      border-bottom: #eee 1px solid;
  }
  
  .col_menu .col_menu_head h3.col_name .col_name_text { display:block; line-height:60px; padding:0px 5px 0px 30px;}
  .col_menu .col_menu_con{/*border:1px solid #e4e4e4;*/ border:none;}
  
  
  .col_list{}
  .col_list ul {list-style: none; padding-left: 0;}
  .col_list .wp_listcolumn { border-top:0px solid #2867A0; border-bottom:0px solid #fff; }
  .col_list .wp_listcolumn .wp_column a {color:#383838;font-size: 18px; padding-top:5px;padding-bottom:5px; font-weight:normal;background:none;border-top:0px solid #fff;border-bottom:1px solid #DBDBDB;}
  .col_list .wp_listcolumn .wp_column a .column-name{padding:5px 0px 5px 28px;line-height:32px;cursor:pointer;}
  
  .col_list .wp_listcolumn .wp_column a.selected {
      color: #fff;
      background: var(--tg-theme-primary);
  }
  .col_list .wp_listcolumn .wp_column a.selected span.column-name{color: #fff;cursor:text;}
  
  .col_list .wp_listcolumn .wp_subcolumn .wp_column a{ color:#383838;background:none; border-top:1px solid #fff; border-bottom:1px solid #bbb;}
  .col_list .wp_listcolumn .wp_column>a {background:#f5f8f9;cursor:pointer;}
  .col_list .wp_listcolumn .wp_column.parent > a .column-name{font-weight:normal; color:#383838;}
  
  .col_list .wp_listcolumn .wp_column .sub_list a {color:#383838;border-top:1px solid #eee;margin-top:-1px;}
  .col_list .wp_listcolumn .wp_column .sub_list a:hover {color: var(--tg-theme-primary); font-weight: bold;position: relative; left:2px;cursor:pointer;}
  .col_list .wp_listcolumn .sub_list a .column-name {font-size: 16px;display:inline-block;line-height: 28px;padding: 5px 10px 5px 44px;cursor:pointer;}
  
  .col_list .wp_listcolumn .wp_column a.selected {color:#383838;}
  .col_list .wp_listcolumn .wp_column a.selected:hover {font-weight:normal; position: relative; left: 0;cursor: text;}
  
  .col_list .wp_listcolumn .wp_column .sub_list .sub_list a{}
  .col_list .wp_listcolumn .sub_list .sub_list a .column-name {padding: 5px 10px 5px 60px;cursor:pointer;}
  .col_list .wp_listcolumn .sub_list .sub_list a.selected {color:#383838;}
  
  
  
  .col_news {width: 100%;min-height:500px;float:right;}
  .col_news .col_news_box{margin-left: 290px;}
  .col_news_head {border-bottom: 1px solid #DBDBDB;}
  .col_news_head ul {padding-left: 0;}
  .col_metas .col_title { display:inline-block; float:left; height: 60px; line-height: 60px; }  
  .col_metas .col_title h2 {display:inline-block;font-size: 21px;font-weight:bold;color: #111111;/*border-bottom: 3px solid #CBCBCB;*/}
  .col_metas .col_path {display:inline-block;float:right;white-space:nowrap;height: 58px;line-height: 58px;color: #666;} 
  .col_metas .col_path a{color: #2F2F2F;}
  .col_news_con { padding:5px 0px 10px 0px; margin:0 0px;}
  .col_news_list { margin-top:7px;}
  .col_news_list .wp_article_list .list_item {} 
  .col_news_list .wp_article_list .list_item .Article_Index {}  
  .col_news_list .wp_entry,.col_news_list .wp_entry p { line-height:1.75; font-size:14px; color:#333;}
  .col_news_list .wp_entry p { margin-bottom:10px;}
  .col_news_list .wp_entry table{ margin-bottom:4px;}
  .col_news_list .wp_entry img { max-width:680px; _width:expression(this.width > 680 ? "680px" : this.width); } 
  .news_list { font-family: "Microsoft Yahei"; }
  .news_list li.news {font-size: 18px;line-height: 48px;} 
  .news_list li.news span.news_title { float:left; }
  .news_list li.news span.news_title a {color:var(--tg-heading-color);}
  .news_list li.news span.news_title a:hover {color:var(--tg-theme-primary);}
  .news_list li.news span.news_title img {vertical-align: middle;}
  .news_list li.news span.news_meta {float:right;margin-left:2px;color: #9C9C9C;}
  .news_list li.news .news_time,
  .news_list li.news .news_time span{color: #666;}
  .news_list li.news .news_icon {display:inline-block;margin:0 auto; border:0px solid red;}
  .news_list li.news .news_text {line-height:26px; color:#666;}
  .news_list li.news .news_bg {position:absolute; left:0px;bottom:0px; right:0px; height:30px; background:#000; opacity:.7; filter:Alpha(opacity=70);}
  .news_list li.news p {line-height:34px;}
  
  
  
  .infobox {padding:20px 60px; margin:0 auto; width:auto;}
  .article {padding-top:10px;}
  .article h1.arti_title {margin-top:30px; line-height: 1.5;font-family: "Microsoft YaHei";font-size:28px;text-align:center;color: #111111;} 
  .article h2.arti_title {line-height: 34px;font-family: "Microsoft YaHei";font-size: 17px;text-align:center;color: #1B1B1B;} 
  .article .arti_metas {padding:10px;text-align:center;/* border-top:1px solid #ececec; */}
  .article .arti_metas span { margin:0 5px; font-size:12px; color:#787878;}
  .article .entry { margin:0 auto; overflow:hidden;margin-top:10px;} 
  .article .entry .read,.article .entry .read p { line-height:1.75; font-size:14px; color:#333;}  
  .article .entry .read p { margin-bottom:10px;}
  .article .entry .read img {margin:0 auto; max-width:940px; _width:expression(this.width > 940 ? "940px" : this.width); }   
  .article .entry .read table{margin:0 auto; border:none!important;}
  
  .wp_listalbumn { margin:10px 0 12px;}
  .wp_listalbumn .albumn_info { padding:0 10px;}
  .wp_listalbumn .albumn_info a {
      font-size: 15px;
  }
  .wp_listalbumn img {display:block;max-width: 100%;height: auto;border-radius:9px;}
  
  /* .tgmenu__navbar-wrap > ul > li.menu-item-has-children.i9 > a::after {
      display:none;
  }
  .tgmobile__menu .navigation li.menu-item-has-children.i9 .dropdown-btn {
      display:none;
  } */
  
  .org-unit {position: relative;}
  .org-unit img { display:block; }
  .org-unit .p1 { position:absolute; left:430px; top:25px;z-index:1;}
  .org-unit .p2 { position:absolute; left:430px; top:230px;z-index:1;}
  .org-unit .p3 { position:absolute; left:430px; top:442px;z-index:1;}
  .org-unit .p1 a {display:block;color:#111; font-size:17px; font-weight:bold;transition: 0.5s;line-height:40px;}
  .org-unit .p2 a {display:block;color:#111; font-size:17px; font-weight:bold;transition: 0.5s;line-height:60px;}
  .org-unit .p3 a {display:block;color:#111; font-size:17px; font-weight:bold;transition: 0.5s;line-height:60px;}
  .org-unit .p1 a:hover { font-size:20px; color:#aa4f4f; margin-left:5px; transform:scale(1.03); text-decoration:none;}
  .org-unit .p2 a:hover { font-size:20px; color:#aa4f4f; margin-left:5px; transform:scale(1.03); text-decoration:none;}
  .org-unit .p3 a:hover { font-size:20px; color:#aa4f4f; margin-left:5px;transform:scale(1.03);text-decoration:none;}
  
  .arti_views .WP_VisitCount {display: inline;}
  
  .list-teacher {padding: 0;margin:0;}
  .list-teacher li.news {
      float: left;
      list-style: none;
      font-size: 18px;
      line-height: 48px;
      width: 20%;
  }
  .list-teacher li .pic { width:152px; height:auto; }
  .list-teacher li .pic img {display: block;max-width: 100%;height: 200px;border-radius: 9px;}
  .list-teacher li.news span.news_title {
         display: block;
  font-size:16px;
      float: none;
      text-align: center;
  }
  
  
  @media (max-width: 1440px) {
    
  .part-1 .tit-unit {
      position: relative;
      height: 500px;
      background: url("../../images/logo_bg.png") left top no-repeat;
      background-size: 77% auto;
  }
  .part-1 .feature .content {
      margin: 0 12px;
      margin-bottom: 0;
      height: auto;
      max-width: initial;
      min-width: 225px;
      text-align: center;
      padding-top: 180%;
  }
  
  .part-1 .feature .content h3 {color:#fff;font-size: 30px;letter-spacing: 2px;/* font-weight: 400; */margin-bottom: 220px;}
  .part-1 .feature .content .desc {text-align: center;color:#fff;font-weight:400;font-size:22px;}
  .part-1 .feature .content .desc p {
      color: #fff;
      text-align: center;
      font-size: 15px;
      line-height: 1;
      }
  .part-1 .feature .pic-bg1 {background: url("../../images/pic_bg01.jpg") top center no-repeat; background-size: cover;transition: all 0.6s ease-out 0s;}
  .part-1 .feature .pic-bg1:hover {transform: scale(1.05);}
  
  .part-2 .tit-unit {
      position: relative;
      height: 500px;
  }
  .part-2 .tit-unit:before {
      content: "";
      position: absolute;
      top: 0;
      right: -50px;
      height: 370px;
      width: 200px;
      background: url("../../images/logo_bg.png") right top no-repeat;
      transform: scaleX(-1);
      background-size: contain;
  }
  .part-2 .tit-unit .more {
      position: absolute;
      left: 35px;
      bottom: 0;
      font-size: 18px;
      text-align: left;
      letter-spacing: 2px;
      font-weight: var(--tg-fw-bold);
      color: var(--tg-heading-color);
      width: 120px;
      height: 30px;
      display: block;
  }
  .part-2 .slider__img-wrap .main-img {
      height: 480px;
  }
  
  .part-3 .tit-unit {
      position: relative;
      height: 500px;
      background: url("../../images/logo_bg.png") left top no-repeat;
      background-size: 77% auto;
  }
  .part-3 .video-info {
      margin-top: 20px;
      /* margin-right: 60px; */
      font-size: 21px;
      font-family: "KaiTi";
      font-weight: 400;
      color: #333;
      letter-spacing: 1px;
      line-height: 2.7;
      height: 500px;
      padding: 0;
  }
  
  .video__post-item.big-post img {
      width: 100%;
      height: 480px;
      object-fit: cover;
      object-position: center;
  }
  
  }
  
  @media (max-width: 1280px) {
    .part-1 .tit-unit {
      position: relative;
      height: 450px;
      background: url("../../images/logo_bg.png") left top no-repeat;
      background-size: 77% auto;
  }
  .part-1 .feature .content {
      margin: 0 18px;
      margin-bottom: 20px;
      height: auto;
      max-width: initial;
      min-width: 225px;
      text-align: center;
      padding-top: 180%;
  }
  }
  
  @media (max-width: 991.98px) {
  .wp_article_list_table td { 
  width:100%; display:block;
  }
  .wp_article_list_table td .wp_listalbumn { 
  margin:8px 0 15px;
  }
  .wp_article_list_table td .wp_listalbumn img {
      display: block;
      max-width: 100%;
      width: 100%;
      height: auto;
      border-radius: 9px;
  }
  }
  
  @media (max-width: 767.98px) {
  .top-head-right {
  display:none;
  }
  .slogan {
      position: absolute;
      left: 33px;
      top: 115px;
      width: 112px;
      z-index: 1;
  }
  .slick-next.slick-arrow { 
  display:none!important;
  }
  .slick-prev.slick-arrow {
  display:none!important;
  }
  .sidePost-active .slick-dots {
      position: absolute;
      left: 60%;
      right: 0;
      bottom: 20px;
  }
  .part-1.pt-80 {
    padding-top:25px;
  }
  .part-1.pb-80 {
    padding-bottom:0;
  }
    
  .part-1 .tit-unit {
      height: auto;
      background: none;
  }
  
  .part-1 .tit-unit h3 {
      position: relative;
      left: 0;
      font-size: 32px;
      letter-spacing:normal;
      line-height: 1;
      width: 100%;
      text-align:center;
      height: auto;
      padding: 20px 0;
      writing-mode: unset;
  }
    
  .part-1 .feature {
      display: block;
      justify-content: center;
      flex-wrap: wrap;
      min-width: auto;
  }
  .part-1 .feature .content {
      margin: 0;
      margin-bottom: 20px;
      height: 650px;
      max-width: 100%;
      min-width: 100%;
      width:100%
      text-align: center;
      padding:0;
  }
  
  .part-2.pt-80 {
    padding-top:0;
  }
  .part-2.pb-80 {
    padding-bottom:0;
  }
  .part-2 {display:flex;}
  .part-2 .order2 { order:2;}
  .part-2 .order1 { order:1;}
  .part-2 .news-tit {
      display: block;
      justify-content: flex-end;
  }
  .part-2 .tit-unit {
      width:100%;
      position: relative;
      height: auto;
      margin-bottom: 30px;
  }
  .part-2 .tit-unit h3 {
      position: relative;
      right: initial;
      left: 0;
      font-size: 32px;
      letter-spacing: 2px;
      line-height: 1;
      width: 100%;
      height: auto;
      padding: 30px 0 0 0;
      writing-mode: unset;
  }
  .part-2 .tit-unit .more {
      position: absolute;
      left: initial;
      right: 3px;
      top: 30px;
      bottom: initial;
      font-size: 18px;
      text-align: left;
      letter-spacing: 0;
      font-weight: 400;
      color: #777;
      width: auto;
      height: 30px;
      display: block;
  }
  .part-2 .tit-unit:before { display:none;}
  .part-2 .yh-left {
      position: absolute;
      left: 5px;
      top: 0;
  }
  .part-2 .yh-right {
      position: absolute;
      right: 30px;
      top: 200px;
  }
  .part-2  .slider__content .title {
      padding-top: 30px;
      line-height: 1.5;
      font-size: 20px;
      margin: 0 0 20px;
  }
  .part-2 .slider__content p a {
      color: #777777;
      font-size: 14px;
  }
  
  
    
  .part-3.pt-80 {
      padding-top: 25px;
  }
  .part-3.pb-80 {
      padding-bottom: 0;
  } 
  .part-3 .tit-unit {
      width:100%;
      position: relative;
      height: auto;
      background: none;
  }
  .part-3 .tit-unit h3 {
      position: relative;
      left: 0;
      font-size: 32px;
      letter-spacing: 2px;
      line-height: 1;
      width: auto;
      height: auto;
      padding: 30px 0 0 0;
      writing-mode: unset;
  }
  .part-3 .tit-unit .more {
      position: absolute;
      left: initial;
      right: 3px;
      top: 30px;
      bottom: initial;
      font-size: 18px;
      text-align: left;
      letter-spacing: 0;
      font-weight: 400;
      color: #777;
      width: auto;
      height: 30px;
      display: block;
  }
  .part-3 .video-info {
      margin-top: 0;
     height: auto;
  }
  
  .footer-contact .info-box {
      display: block;
      font-size: 14px;
  }
  .footer-contact .map {
      margin-left: 0;
      margin-bottom: 30px;
  }
  .footer__widget .fw-title {
      margin: 0 0 28px;
      text-align: center;
      font-size: 20px;
      color: var(--tg-common-color-white);
  }
  .footer__widget.footer-links ul li {
      width: 100%;
      float: none;
  }
  .footer__widget ul li a {
      font-size: 16px;
      color: #fff;
      line-height: 36px;
      display: block;
      width: 100%;
      /* border-bottom: rgb(255 255 255 / 20%) 1px solid; */
  }
  .footer__widget .qr-code img {
      margin-left: 22px;
      margin: 0 auto;
      width: 200px;
      display: block;
  }
  
  
  #l-container .inner {
      padding: 30px 0;
  }
  .col_menu {
      width: 100%;
      float: none;
      margin-right: 0;
      position: relative;
  }
  
  .col_news {
      width: 100%;
      min-height: 500px;
      float: none;
  }
  .col_news .col_news_box {
      margin-left: 0;
  }
  .col_news_head ul {padding-left: 12px;}
  .col_metas .col_path {
      display: block;
      float: none;
      white-space: nowrap;
      height: 58px;
      line-height: 58px;
      color: #666;
      font-size: 14px;
  }
  .news_list li.news {
      font-size: 18px;
      line-height: 1.5;
  }
  .news_list li.news span.news_meta {
      float: left;
      margin-left: 2px;
      margin-bottom: 20px;
      color: #9C9C9C;
  }
  
  .wp_paging {
      display: block;
      margin: 0;
      padding: 0;
      list-style: none;
      font-size: 16px;
      font-family: 'Microsoft Yahei', Verdana, Geneva, sans-serif;
      color: #777;
      float: right;
  }
  .wp_paging li a span {
      margin: 0;
      color: #111;
  }
  
  .infobox {
      padding: 20px 0;
      margin: 0 auto;
      width: auto;
  }
  
  .wp_articlecontent img {
      max-width: 100%!important;
      height: auto!important;
  }
  
  .org-unit img {
  display:block;
  float:none;
  width: 210px!important;
  }
  .org-unit .p1 {
      position: absolute;
      left: 205px;
      top: 12px;
      z-index: 1;
  }
  .org-unit .p1 a {
      display: block;
      color: #111;
      font-size: 12px;
      font-weight: bold;
      transition: 0.5s;
      line-height: 1.2;
  }
  .org-unit .p2 {
      position: absolute;
      left: 205px;
      top: 110px;
      z-index: 1;
  }
  .org-unit .p2 a {
      display: block;
      color: #111;
      font-size: 12px;
      font-weight: bold;
      line-height: 1.6;
  }
  .org-unit .p3 {
      position: absolute;
      left: 205px;
      top: 210px;
      z-index: 1;
  }
  .org-unit .p3 a {
      display: block;
      color: #111;
      font-size: 12px;
      font-weight: bold;
      line-height: 1.5;
  }
  .org-unit .p1 a:hover,.org-unit .p2 a:hover,.org-unit .p3 a:hover{
  font-size:12px;
  margin-left:0;
  transform: scale(1);
  }
  
  .list-teacher li.news {
      float: none;
      list-style: none;
      font-size: 18px;
      line-height: 48px;
      width: 100%;
  }
  .list-teacher li .pic {width: 95%;height:auto;margin: 0 auto;}
  .list-teacher li .pic img {display: block;max-width: 100%;height: auto;border-radius: 9px;}
  .list-teacher li.news span.news_title {
         display: block;
         font-size:16px;
         float: none;
         text-align: center;
  }
  
  }
  


  
  .listcon h3.sub-catalog {font-size: 17px;color: #84623b;background: #f8f3e8;padding-left: 20px;line-height: 42px;}
  .news_list.list3{
      display: flex;
      flex-wrap: wrap;
      padding-left: 0;
      margin: 20px 0 36px;
    }
  .news_list.list3 li.news {list-style: none;font-size: 18px;line-height: 42px; margin-top:8px; width: 20%;text-align: center; } 
  .news_list.list3 li.news .news_title{
      float: none;
    }
  .news_list.list3 li.news .news_title a {display:block;border:#fff 1px solid;}
  .news_list.list3 li.news .news_title a:hover{    
      border-radius:6px;
      color:#c12b3c!important;
    border:#c12b3c 1px solid;
    }
  
  

  
  .infobox .wp_articlecontent .team-photo img { 
      width: 480px !important;
  }
  
  
  .pc-view { clear:both; display:block;}
  .mob-view { clear:both; display:block;}
  
  .pWindow {
                  width: 280px;
                  height: 119px;
                 
              }
  
              .pWindow::before {
                  content: "";
                  position: absolute;
                  top: 0;
                  left: 0;
                  width: 100%;
                  height: 35px;
              }
  
            .pWindow .cancel {
  font-size:14px!important;
               /*     width: 35px;
                  height: 35px;
                  position: absolute;
                  right: 0;
                  top: 0;
                  display: flex;
                  justify-content: center;
                  align-items: center;*/
              }
  
              .pWindow .content {
                  position: absolute;
                 /*  top: 38px;*/
                  width: 100%;
                  /* height: calc(100% - 38px);*/
                 
  /*border: 1px solid #eee;*/
              }
  
  
.content-wrapper {
            font-size: 16px !important;
            line-height: 1.7;
            color: #333;
            margin: 0 auto;
            background-color: #fff;
            padding: 2em;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.05);
        }
        .content-wrapper section {
            margin-bottom: 2em;
        }
        .content-wrapper p { font-size: 16px !important;}
        .content-wrapper h2 {
            font-size: 21px;
            color: #2c3e50;
            border-bottom: 1px solid #d5dadd;
            padding-bottom: 0.5em;
            margin-bottom: 1em;
        }
        .content-wrapper .team-members .member-card {
            border-bottom: 1px solid #eee;
            padding-bottom: 2em;
            margin-bottom: 2em;
        }
        .content-wrapper .team-members .member-card:last-child {
            border-bottom: none;
            margin-bottom: 0;
        }
        .content-wrapper .member-photo {
            text-align: center;
            margin-bottom: 1em;
        }
        .content-wrapper .member-photo img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        }
        .content-wrapper .email a {
            color: #3498db;
            text-decoration: none;
        }
        .content-wrapper .email a:hover {
            text-decoration: underline;
        }