﻿@charset "UTF-8";
/*
@File: Renaz Template Styles

* This file contains the styling for the actual template, this
is the file you need to edit to change the look of the
template.

This files table contents are outlined below>>>>>

/*--------------------------------
=========Table Of Contents========

1.  General Styles 
2.  Back To Top Button CSS
3.  Preloader CSS
4.  Button & Link CSS
5.  Section Title, Overlay & Shape CSS
6.  Pagination CSS
7.  Breadcrumb CSS
8.  Hero CSS
----------------------------------*/
@import url("../../../../css2");
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif:ital,wght@0,100..900;1,100..900&display=swap');

:root {
  --primaryFont: "Outfit", sans-serif;
  --secondaryFont: "IBM Plex Sans", sans-serif;
  --primaryColor: #b41e19;
  --secondaryColor: #FDFD0D;
  --optionalColor: #F1F4FE;
  --titleColor: #0F0F0F;
  --linkColor: #565C59;
  --paraColor: #828282;
  --paraColorTwo: rgba(15, 15, 15, 0.54);
  --paraColorThree: rgba(79, 84, 81, 0.85);
  --grayColor: #F5F5F5;
  --ashColor: #E9EEFD;
  --darkColor: #18251B;
  --whiteColor: #fff;
  --offwhiteColor: rgba(255, 255, 255, 0.7);
  --offwhiteColorTwo: rgba(255, 255, 255, 0.8);
  --aztechColor: #111828;
  --codColor: #12131B;
  --charcoalColor: #3c3c3c;
  --mildColor: #222;
  --fontSize: 16px;
  --transition: all ease .5s;
}

/*---------------------------------
    General Styles
-----------------------------------*/
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

:focus,
button:focus,
.btn:focus {
  outline: 0;
  box-shadow: none;
}

.form-control:focus {
  box-shadow: none;
}

a,
button,
input[type=submit] {
  cursor: pointer;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  appearance: none;
  margin: 0;
}

/* clears the ‘X’ from Chrome */
input[type=search]::-webkit-search-decoration,
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-results-button,
input[type=search]::-webkit-search-results-decoration {
  display: none;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
  -webkit-appearance: textfield;
  appearance: textfield;
}

a {
  text-transform: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
  color: var(--paraColor);
}

a:hover {
  color: #000;
}

a:hover,
a :focus {
  text-decoration: none;
  box-shadow: none;
}

a:focus {
  outline: 0 solid;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--secondaryFont);
  font-weight: 700;
  color: var(--titleColor);
}

h1 a:hover,
h2 a:hover,
h3 a:hover,
h4 a:hover,
h5 a:hover,
h6 a:hover {
  color: #b41e19;
}

body {
  color: var(--paraColor);
  font-size: var(--fontSize);
  font-family: var(--primaryFont);
  font-weight: 400;
  line-height: 28px;
  background-color: #f5f5f5;
}

p {
  color: var(--paraColor);
  letter-spacing: -0.02em;
}

p:hover {
  color: #000;
}

select {
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-position: calc(100% - 15px) 50%;
  background-repeat: no-repeat;
  background-image: url(../img/down-arrow.png);
  background-size: 14px;
}

.mt-60 {
  margin-top: 60px;
}

.mt-70 {
  margin-top: 70px;
}

.mt-80 {
  margin-top: 80px;
}

.text_primary {
  color: var(--primaryColor) !important;
}

.text_secondary {
  color: var(--secondaryColor) !important;
}

.text-title {
  color: var(--titleColor);
}

.text-optional {
  color: var(--optionalColor);
}

.text-link {
  color: var(--linkColor) !important;
}

.text-link:hover {
  color: var(--primaryColor) !important;
}

.text-offwhite {
  color: var(--offwhiteColor);
}

.text-offwhiteTwo {
  color: var(--offwhiteColorTwo);
}

.text-para {
  color: var(--paraColor);
}

.text-paraTwo {
  color: var(--paraColorTwo);
}

.text-paraThree {
  color: var(--paraColorThree);
}

.font-primary {
  font-family: var(--primaryFont);
}

.font-secondary {
  font-family: var(--secondaryFont);
}

.bg_primary {
  background-color: var(--primaryColor);
}

.bg_secondary {
  background-color: var(--secondaryColor) !important;
}

.bg-title {
  background-color: var(--titleColor);
}

.bg-optional {
  background-color: #ffffff;
}

.bg-ash {
  background-color: var(--ashColor);
}

.bg-gray {
  background-color: var(--grayColor);
}

.ls-0 {
  letter-spacing: 0;
}

.ls-4 {
  letter-spacing: -0.04em;
}

.fs-13 {
  font-size: 13px;
  line-height: 24px;
}

.fs-11 {
  font-size: 11px;
}

.fs-12 {
  font-size: 12px;
}

.fs-14 {
  font-size: 14px;
}

.fs-15 {
  font-size: 15px;
}

.fs-16 {
  font-size: 16px;
  line-height: 27px;
}

.fs-17 {
  font-size: 17px;
}

.fs-18 {
  font-size: 18px;
  line-height: 27px;
}

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

.fs-22 {
  font-size: 15px;
  line-height: 24px;
}

.fs-24 {
  font-size: 24px;
}

.fs-26 {
  font-size: 26px;
  line-height: 36px;
}

.fs-30 {
  font-size: 26px;
  line-height: 38px;
}

.fs-36 {
  font-size: 36px;
  line-height: 46px;
}

.fs-46 {
  font-size: 46px;
  line-height: 60px;
}

.fs-54 {
  font-size: 54px;
  line-height: 64px;
}

.fs-64 {
  font-size: 54px;
  line-height: 60px;
}

.br-b-1 {
  border-bottom: 1px solid rgba(15, 15, 15, 0.15);
}

.br-one {
  border: 1px solid rgba(15, 15, 15, 0.1);
}

.ls-2 {
  letter-spacing: -0.02em;
}

.ls-3 {
  letter-spacing: -0.03em;
}

.ls-4 {
  letter-spacing: -0.04em;
}

.ls-5 {
  letter-spacing: -0.05em;
}

.tr-15 {
  top: 15px;
  right: 15px;
}

.wh-37 {
  width: 37px;
  height: 37px;
}

.round-4 {
  border-radius: 4px !important;
}

.round-5 {
  border-radius: 5px !important;
}

.round-6 {
  border-radius: 6px;
}

.round-10 {
  border-radius: 10px;
}

.round-15 {
  border-radius: 15px;
}

.round-20 {
  border-radius: 20px;
}

.round-25 {
  border-radius: 25px;
}

.resize-0 {
  resize: none;
}

.index-0 {
  z-index: 0;
}

.index-1 {
  z-index: 1;
}

.index-2 {
  z-index: 2;
}

.pt-30 {
  padding-top: 30px;
}

.pt-70 {
  padding-top: 70px;
}

.pb-30 {
  padding-bottom: 30px;
}

.pb-40 {
  padding-bottom: 40px;
}

.pb-50 {
  padding-bottom: 50px;
}

.pb-60 {
  padding-bottom: 60px;
}

.pb-65 {
  padding-bottom: 65px;
}

.pb-70 {
  padding-bottom: 70px;
}

.pb-75 {
  padding-bottom: 75px;
}

.pt-40 {
  padding-top: 40px;
}

.pt-50 {
  padding-top: 50px;
}

.pt-60 {
  padding-top: 60px;
}

.pt-100 {
  padding-top: 100px;
}

.pb-100 {
  padding-bottom: 100px;
}

.ptb-100 {
  padding-top: 100px;
  padding-bottom: 100px;
}

.ptb-70 {
  padding-top: 70px;
  padding-bottom: 50px;
}

.mt-10 {
  margin-top: 10px !important;
}

.mt-20 {
  margin-top: 20px !important;
}

.mt-25 {
  margin-top: 25px !important;
}

.mt-30 {
  margin-top: 30px !important;
}

.mt-35 {
  margin-top: 35px !important;
}

.mt-40 {
  margin-top: 40px;
}

.mt-45 {
  margin-top: 40px;
}

.mt-60 {
  margin-top: 60px;
}

.xmb-4 {
  margin-bottom: 4px;
}

.xmb-5 {
  margin-bottom: 5px;
}

.mb-6 {
  margin-bottom: 6px;
}

.mb-9 {
  margin-bottom: 9px !important;
}

.mb-10 {
  margin-bottom: 10px !important;
}

.mb-12 {
  margin-bottom: 12px !important;
}

.mb-13 {
  margin-bottom: 13px !important;
}

.mb-15 {
  margin-bottom: 15px !important;
}

.mb-18 {
  margin-bottom: 18px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-22 {
  margin-bottom: 22px;
}

.mb-23 {
  margin-bottom: 23px;
}

.mb-25 {
  margin-bottom: 25px !important;
}

.mb-27 {
  margin-bottom: 27px;
}

.mb-28 {
  margin-bottom: 28px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-32 {
  margin-bottom: 32px;
}

.mb-33 {
  margin-bottom: 32px;
}

.mb-35 {
  margin-bottom: 35px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-45 {
  margin-bottom: 45px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mb-55 {
  margin-bottom: 55px;
}

.mb-60 {
  margin-bottom: 60px;
}

.mb-70 {
  margin-bottom: 70px;
}

.mb-75 {
  margin-bottom: 75px;
}

.mb-100 {
  margin-bottom: 100px;
}

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

.list-unstyle li {
  list-style: none;
}

.btn {
  position: relative;
  z-index: 1;
  line-height: 15px;
  font-weight: 400;
  padding: 15px 27px;
  overflow: hidden;
  border-radius: 50px;
  border: none;
  transition: var(--transition);
}

.btn:before,
.btn:after {
  position: absolute;
  top: 50%;
  left: 50%;
  content: "";
  width: 100%;
  z-index: -1;
  transition: var(--transition);
  transform: translate(-50%, -50%);
}

.btn img {
  position: relative;
  top: -2px;
  margin-left: 10px;
  opacity: 1;
  transition: var(--transition);
}

.btn:before {
  height: 100%;
}

.btn:after {
  height: 0%;
  visibility: hidden;
  opacity: 0;
}

.btn:hover:after {
  height: 100%;
  visibility: visible;
  opacity: 1;
}

.btn.style-one {
  color: var(--whiteColor);
}

.btn.style-one:before {
  background-color: var(--primaryColor);
}

.btn.style-one:after {
  background-color: var(--titleColor);
}

.btn.style-one:hover {
  color: var(--whiteColor);
}

.btn.style-two {
  color: var(--primaryColor);
  border: 1px solid var(--primaryColor);
  padding-top: 15px;
  padding-bottom: 13px;
}

.btn.style-two:before {
  background-color: transparent;
}

.btn.style-two:after {
  background-color: var(--primaryColor);
}

.btn.style-two:hover {
  color: var(--whiteColor);
  border-color: transparent;
}

.btn.style-two:hover img {
  filter: brightness(0) invert(1);
}

.btn.style-three {
  color: var(--titleColor);
}

.btn.style-three:before {
  background-color: var(--secondaryColor);
}

.btn.style-three:after {
  background-color: var(--titleColor);
}

.btn.style-three:hover {
  color: var(--whiteColor);
}

.btn.style-three:hover img {
  filter: brightness(0) invert(1);
}

.btn.style-four {
  color: var(--whiteColor);
  border: 1px solid var(--whiteColor);
}

.btn.style-four:before {
  background-color: transparent;
}

.btn.style-four:after {
  background-color: var(--primaryColor);
}

.btn.style-four:hover {
  border-color: transparent;
}

.link {
  position: relative;
  padding-bottom: 1px;
  line-height: 1;
  letter-spacing: -0.02em;
  font-family: var(--secondaryFont);
}

.link:after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 0;
  height: 1px;
  transition: var(--transition);
}

.link img {
  position: relative;
}

.link i {
  margin-left: 3px;
  font-size: 22px;
  line-height: 0.8;
  position: relative;
  top: 3px;
  transition: var(--transition);
}

.link:hover:after {
  width: 97%;
}

.link:hover i {
  margin-left: 8px;
}

.link.style-one {
  color: var(--titleColor);
}

.link.style-one:after {
  background-color: var(--blueColor);
}

.link.style-two {
  color: var(--whiteColor);
}

.link.style-two:after {
  background-color: var(--whiteColor);
}

.link.style-three {
  color: var(--primaryColor);
}

.link.style-three:after {
  background-color: var(--primaryColor);
}

.link.style-four {
  color: var(--secondaryColor);
}

.link.style-four:after {
  background-color: var(--secondaryColor);
}

.bg-f {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: #ddd;
}

.transition {
  transition: all 200ms linear;
}

.social-profile li {
  display: inline-block;
}

.social-profile li a i {
  line-height: 0.8;
  font-size: 26px;
  color: #3f3b3b;
}

.social-profile.style-one li {
  margin-right: 6px;
}

.social-profile.style-one li:last-child {
  margin-right: 0;
}

.social-profile.style-two li {
  display: block;
  margin: 0 0 12px 0;
}

.social-profile.style-two li:last-child {
  margin-bottom: 0;
}

.social-profile.style-two li a img {
  filter: brightness(0) invert(0);
  transition: var(--transition);
  max-width: 20px;
}

.social-profile.style-two li a:hover img {
  filter: brightness(1) invert(0);
}

.social-profile.style-three li {
  display: inline-block;
  margin: 0 12px 0 0;
}

.social-profile.style-three li:last-child {
  margin: 0;
}

.social-profile.style-three li a img {
  filter: brightness(0) invert(0);
  transition: var(--transition);
  max-width: 20px;
}

.social-profile.style-three li a:hover img {
  filter: brightness(1) invert(0);
}

.section-title {
  font-size: 52px;
  line-height: 65px;
  letter-spacing: -0.04em;
}

.section-subtitle {
  font-size: 26px;
  line-height: 36px;
  letter-spacing: -0.05em;
}

.fixed-wrap,
.section-title-fixed {
  position: sticky;
  top: 100px;
  left: 0;
  width: 100%;
}

.rating li {
  display: inline-block;
  margin-right: -3px;
}

.rating li i {
  color: #F8B42B;
  font-size: 16px;
  line-height: 0.8;
}

.rating li.rated i {
  color: #F8B42B;
}

.rating li.unrated i {
  color: var(--paraColor);
}

.hover-anim-black,
.hover-anim-blue,
.hover-anim-white {
  position: relative;
  background-position: 0% 100%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  transition: background-size 0.7s;
}

.hover-anim-black:hover,
.hover-anim-blue:hover,
.hover-anim-white:hover {
  background-size: 100% 2px;
}




.hover-anim-white:hover {
  background-image: linear-gradient(var(--whiteColor), var(--whiteColor));
}

/*---------------------------------
   Preloader Area CSS
----------------------------------*/
.preloader-area {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  position: fixed;
  text-align: center;
  overflow: hidden;
  background-color: var(--whiteColor);
}

#loader {
  display: block;
  position: relative;
  left: 50%;
  top: 50%;
  width: 120px;
  height: 120px;
  margin: -75px 0 0 -75px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #576B48;
  animation: spin 2s linear infinite;
}

#loader:before {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #19FF00;
  animation: spin 3s linear infinite;
}

#loader:after {
  content: "";
  position: absolute;
  top: 15px;
  left: 15px;
  right: 15px;
  bottom: 15px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #37442D;
  animation: spin 1.5s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*---------------------------------
    Back To Top CSS
----------------------------------*/
.progress-wrap {
  position: fixed;
  right: 30px;
  bottom: 30px;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  border-radius: 50px;
  box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.09);
  z-index: 10;
  opacity: 0;
  background-color: #b41e19;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 200ms linear;
}

.progress-wrap.active-progress {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.progress-wrap::after {
  position: absolute;
  font-family: remixicon !important;
  content: "\ea76";
  text-align: center;
  line-height: 46px;
  font-size: 24px;
  color: #ffffff;
  left: 0;
  top: 2px;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  z-index: 1;
  animation: float 1500ms infinite ease-in-out;
  transition: all 200ms linear;
}

.progress-wrap:hover {
  background-color: var;
}

.progress-wrap:hover::before {
  opacity: 1;
}

.progress-wrap svg path {
  fill: none;
}

.progress-wrap svg.progress-circle path {
  stroke: #fff;
  stroke-width: 4;
  box-sizing: border-box;
  transition: all 200ms linear;
}

/*---------------------------------
     Animation CSS
----------------------------------*/
.rotate {
  animation: rotation 20s infinite linear;
}

.bounce {
  animation: float 1500ms infinite ease-in-out;
}

.moveHorizontal {
  animation: moveHorizontal 3000ms infinite ease-in-out;
}

.moveVertical {
  animation: moveVertical 3000ms infinite ease-in-out;
}

.zoomIn {
  animation: zoom-in 3500ms infinite ease-in-out;
}

.animationFramesTwo {
  animation: animationFramesTwo 20000ms infinite ease-in-out;
}

.animationFramesThree {
  animation: animationFramesThree 20000ms infinite ease-in-out;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translate3d(0, 80px, 0);
  }

  to {
    opacity: 1;
    transform: translateZ(0);
  }
}

.reveal-text {
  visibility: hidden;
  max-width: 100%;
}

.reveal-text .letter {
  position: relative;
  display: inline-block;
  will-change: transform;
  transform-style: preserve-3d;
}

.reveal-text .letter div {
  width: 100%;
  font-weight: 600;
  backface-visibility: hidden;
  transform-style: preserve-3d;
}

.reveal-text .perspective {
  position: relative;
  display: inline-block;
}

.reveal-text .perspective div {
  position: relative;
  display: inline-block;
}

.reveal-text .word {
  display: inline-block;
}

.reveal-text .word div {
  letter-spacing: 1.2px;
  font-weight: 700;
}

@keyframes reveal {
  0% {
    transform: translate(0, 100%);
  }

  100% {
    transform: translate(0, 0);
  }
}

@keyframes ripple {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.3);
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  }

  100% {
    transform: scale(1.6);
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  }
}

@keyframes zoom-in {
  0% {
    transform: scale(0.8, 0.8);
  }

  50% {
    transform: scale(1.07, 1.07);
  }

  100% {
    transform: scale(0.8, 0.8);
  }
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    transform: translateZ(0);
  }
}

@keyframes rotation {
  from {
    -webkit-transform: rotate(0deg);
  }

  to {
    -webkit-transform: rotate(359deg);
  }
}

@keyframes moveHorizontal {
  0% {
    transform: translateX(0px);
  }

  50% {
    transform: translateX(-20px);
  }

  100% {
    transform: translateX(0px);
  }
}

@keyframes moveVertical {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-20px);
  }

  100% {
    transform: translateY(0px);
  }
}

@keyframes animationFramesTwo {
  0% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
  }

  20% {
    -webkit-transform: translate(73px, -1px) rotate(36deg);
  }

  40% {
    -webkit-transform: translate(141px, 72px) rotate(72deg);
  }

  60% {
    -webkit-transform: translate(83px, 122px) rotate(108deg);
  }

  80% {
    -webkit-transform: translate(-40px, 72px) rotate(144deg);
  }

  100% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
  }
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-5px);
  }

  100% {
    transform: translateY(0px);
  }
}

@keyframes ripple {
  70% {
    box-shadow: 0 0 0 30px rgba(255, 255, 255, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    transform: translateZ(0);
  }
}

/*-------------------------------
    Custom Cursor CSS
-------------------------------*/
.cursor {
  width: 50px;
  height: 50px;
  border-radius: 100%;
  border: 1px solid rgba(23, 72, 234, 0.7);
  transition: all 150ms ease-out;
  position: fixed;
  pointer-events: none;
  left: 0;
  top: 0;
  transform: translate(calc(-50% + 15px), -50%);
  z-index: 999;
}

.cursor-inner {
  width: 10px;
  height: 10px;
  border-radius: 100%;
  background-color: var(--primaryColor);
  opacity: 0.9;
  position: fixed;
  transform: translate(-50%, -50%);
  pointer-events: none;
  transition: width 0.3s, height 0.3s, opacity 0.3s;
  z-index: 999;
}

.hover {
  background-color: rgb(23, 72, 234);
  border-color: transparent;
  opacity: 0.8;
  width: 20px;
  height: 20px;
  z-index: 999;
}

.cursorinnerhover {
  width: 20px;
  height: 20px;
  opacity: 0.5;
}

/*-------------------------------
    Pagination CSS
-------------------------------*/
.page-nav li {
  margin: 0 6px;
  display: inline-block;
}

.page-nav li:first-child a,
.page-nav li:last-child a {
  width: 37px;
  height: 37px;
}

.page-nav li:first-child a:before,
.page-nav li:last-child a:before {
  display: none;
}

.page-nav li:first-child a i,
.page-nav li:last-child a i {
  left: -2px;
}

.page-nav li:last-child a i {
  right: -2px;
}

.page-nav li a {
  width: 37px;
  height: 37px;
  border-radius: 50%;
  background-color: transparent;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(35, 82, 238, 0.29);
  z-index: 1;
  font-size: 16px;
  letter-spacing: -0.02em;
  font-weight: 600;
}

.page-nav li a:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 0;
  height: 100%;
  opacity: 0;
  background: var(--neonGreenColor);
  z-index: -1;
  transition: var(--transition);
}

.page-nav li a i {
  font-size: 18px;
  font-weight: 300;
  line-height: 0.8;
  top: 6px;
  color: var(--titleColor);
  transition: var(--transition);
}

.page-nav li a img {
  transition: var(--transition);
  max-width: 17px;
}

.page-nav li a.active,
.page-nav li a:hover {
  border-color: transparent;
  background-color: var(--primaryColor);
  color: var(--whiteColor);
}

.page-nav li a.active:before,
.page-nav li a:hover:before {
  width: 100%;
  opacity: 1;
}

.page-nav li a.active img,
.page-nav li a:hover img {
  filter: brightness(0) invert(1);
}

.page-nav li a.active i,
.page-nav li a:hover i {
  color: var(--whiteColor);
}

/*-------------------------------
        Breadcrumb CSS
-------------------------------*/
.breadcrumb-wrap {
  padding: 63px 0 0;
}

.breadcrumb-wrap .br-content {
  border-bottom: 1px solid rgba(15, 15, 15, 0.18);
  padding-bottom: 23px;
}

/*-------------------------------
        Hero Section CSS
-------------------------------*/
.hero-wrap.style-one {
  padding-top: 48px;
}

.hero-wrap.style-one .thumb-news-wrapper .thumbnail-news-card {
  margin-bottom: 20px;
}

.hero-wrap.style-one .thumb-news-wrapper .thumbnail-news-card:last-child {
  margin-bottom: 0;
}

.hero-wrap.style-one .thumb-news-wrapper .section-subtitle {
  margin-bottom: 20px;
}

.hero-wrap.style-two {
  margin-top: 40px;
}

.hero-wrap.style-three {
  margin-top: 20px;
}

.hero-news-card {
  height: 686px;
  border-radius: 12px;
}

.hero-news-card.bg-1 {
  background-image: url(../img/hero/hero-slide-1.jpg);
}

.hero-news-card.bg-2 {
  background-image: url(../img/hero/hero-slide-2.jpg);
}

.hero-news-card.bg-3 {
  background-image: url(../img/hero/hero-slide-3.jpg);
}

.hero-news-card .news-info {
  width: calc(100% - 200px);
  position: absolute;
  bottom: -8px;
  left: 50%;
  border-radius: 10px 10px 0 0;
  transform: translateX(-50%);
  padding: 55px 100px 0;
}

.hero-news-card .news-info p {
  padding: 0 50px;
}

.slider-btn .hero-prev,
.slider-btn .hero-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 58px;
  height: 58px;
  z-index: 1;
  border: 1px solid rgba(15, 15, 15, 0.31);
  background-color: var(--whiteColor);
  transition: var(--transition);
}

.slider-btn .hero-prev img,
.slider-btn .hero-next img {
  transition: var(--transition);
}

.slider-btn .hero-prev:hover,
.slider-btn .hero-next:hover {
  background-color: var(--primaryColor);
  border-color: transparent;
}

.slider-btn .hero-prev:hover img,
.slider-btn .hero-next:hover img {
  filter: brightness(0) invert(1);
}

.slider-btn .hero-prev {
  left: -15px;
}

.slider-btn .hero-next {
  right: -15px;
}

/*-------------------------------
        News Card CSS
-------------------------------*/
.main-topics-wrap .news-card-wrap {
  width: calc(100% - 184px);
}

.main-topics-wrap.full .news-card-wrap {
  width: 100%;
}

.main-topics-wrap.full .promo-box {
  width: 0;
  height: 0 !important;
  opacity: 0;
  visibility: hidden;
}

.promo-box {
  transition: var(--transition);
}

.promo-box.style-one:after,
.promo-box.style-two:after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  z-index: -1;
  border-radius: 6px;
}

.promo-box.style-one {
  background-image: url(../img/promo-bg-1.jpg);
  width: 160px;
  height: 675px;
}

.promo-box.style-one:after {
  background-color: rgba(0, 0, 0, 0.38);
}

.promo-box.style-one .close-promo-box {
  top: 5px;
  right: 5px;
  width: 19px;
  height: 19px;
  z-index: 2;
  transition: var(--transition);
}

.promo-box.style-one .close-promo-box i {
  transition: var(--transition);
}

.promo-box.style-one .close-promo-box:hover {
  background-color: var(--primaryColor) !important;
}

.promo-box.style-one .close-promo-box:hover i {
  color: var(--whiteColor);
}

.promo-box.style-one h5 {
  position: absolute;
  transform: rotate(-90deg);
  width: 100%;
  bottom: 139px;
  right: 0px;
  min-width: 240px;
}

.promo-box.style-one span {
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 46px);
  border-radius: 50px;
  line-height: 16px;
  padding: 5px 15px;
}

.promo-box.style-two {
  background-image: url(../img/promo-bg-2.jpg);
  padding-left: 45px;
  padding-right: 45px;
}

.promo-box.style-two:after {
  background-color: rgba(0, 0, 0, 0.71);
  border-radius: 6px;
}

.promo-box.style-two .promo-img img {
  position: relative;
  bottom: -8px;
}

.promo-box.style-two .close_promo-box {
  top: 10px;
  right: 10px;
  width: 21px;
  height: 21px;
  z-index: 2;
  transition: var(--transition);
}

.promo-box.style-two .close_promo-box i {
  transition: var(--transition);
}

.promo-box.style-two .close_promo-box:hover {
  background-color: var(--primaryColor) !important;
}

.promo-box.style-two .close_promo-box:hover i {
  color: var(--whiteColor);
}

.promo-box.style-two .close_promo-box i {
  line-height: 0.8;
}

.promo-box.style-two .promo-text {
  padding: 56px 0 92px;
}

.promo-box.style-two .promo-text span {
  border-radius: 50px;
  line-height: 16px;
  padding: 5px 18px 5px 15px;
}

.news-card.style-one .circle-text-wrap {
  width: 122px;
  height: 122px;
  top: -53px;
  right: 51px;
}

.news-card.style-one .circle-text-wrap .center-img {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.news-card.style-one .news-info {
  position: absolute;
  bottom: 35px;
  left: 0;
}

.news-card.style-one .news-info .news-metainfo {
  background-color: var(--secondaryColor);
  line-height: 1;
  padding: 5px 19px 6px 41px;
  margin-bottom: 12px;
}

.news-card.style-one .news-info h1 {
  font-size: 42px;
  line-height: 58px;
  padding-right: 30px;
}

.news-card.style-one .news-info h1 a {
  position: relative;
  color: var(--whiteColor);
}

.news-card.style-one .news-info h1 a span {
  display: inline-block;
  background-color: var(--primaryColor);
  padding-left: 41px;
  padding-right: 17px;
}

.news-card.style-one .news-info h1 a span:nth-child(1) {
  margin-bottom: 7px;
}

.news-card.style-three .news-metainfo {
  margin-bottom: 8px;
}

.news-card.style-three .news-info {
  position: absolute;
  bottom: 22px;
  left: 20px;
  padding-right: 20px;
}

.news-card.style-three .news-info>div h3 {
  width: calc(100% - 58px);
  margin-right: auto;
}

.news-card.style-four .news-img {
  width: 350px;
}

.news-card.style-four .news-info {
  width: calc(100% - 370px);
  margin-left: auto;
}

.news-card.style-six .news-img .play-video {
  width: 58px;
  height: 58px;
  position: absolute;
  top: 35px;
  right: 35px;
}

.news-card.style-six .news-img .play-video i {
  font-size: 25px;
}

.news-card.style-six .news-info {
  position: absolute;
  bottom: 20px;
  left: 35px;
  padding-right: 35px;
}

.news-card.style-six .news-info h3 {
  margin-top: 15px;
}

.news-card.style-six .news-info .news-action-wrap .news-action span img {
  filter: brightness(0) invert(1);
  opacity: 1;
}

.news-card.style-six .news-info .news-action-wrap .news-action ul {
  left: -100px;
}

.news-card .news-category {
  padding: 5px 15px 6px;
  line-height: 16px;
  top: 10px;
  left: 10px;
}


.feature-news-card {
  padding: 30px 25px 30px;
}

.feature-news-card:hover {
  transform: translateY(-5px);
}

.feature-news-card .news-category {
  line-height: 18px;
  padding: 7px 20px 9px;
  border-radius: 50px;
}

.feature-news-card .news-category:hover {
  background-color: var(--titleColor);
}

.play-video {
  cursor: pointer;
}

.play-video i {
  position: relative;
  left: 1.5px;
  top: 1px;
  line-height: 1;
}

.play-video.style-one {
  width: 35px;
  height: 35px;
  border-radius: 50%;
}

.play-video.style-one i {
  font-size: 21px;
}

.play-video.style-two {
  width: 72px;
  height: 72px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.play-video.style-two i {
  font-size: 28px;
}

.hover-anim-img>img {
  max-width: none;
  width: calc(100% + 10px);
}

/* .anim-image img{
  height: 200px;
} */
.news-action-wrap .news-action-status ul li {
  display: inline-block;
  width: 27px;
  height: 27px;
  border: 1px solid #DDE0DE;
  background-color: var(--whiteColor);
  margin-left: -5px;
}

.news-action-wrap .news-action-status ul li:first-child {
  margin-left: 0;
}

.news-action-wrap .news-action-status ul li img {
  max-width: 17px;
}

.news-action-wrap .news-action-status span {
  color: rgba(15, 15, 15, 0.62);
  margin-left: 9px;
}

.news-action-wrap .news-action {
  margin-left: 23px;
}

.news-action-wrap .news-action span {
  position: relative;
  top: -5px;
}

.news-action-wrap .news-action span img {
  opacity: 0.4;
  transition: var(--transition);
}

.news-action-wrap .news-action ul {
  position: absolute;
  top: -55px;
  left: -95px;
  min-width: 225px;
  border-radius: 50px;
  background-color: var(--whiteColor);
  padding: 13px 22px;
  visibility: hidden;
  opacity: 0;
  transition: var(--transition);
}

.news-action-wrap .news-action ul li {
  margin-right: 5px;
  visibility: hidden;
  opacity: 0;
  transform: translateY(6px);
  transition: var(--transition);
}

.news-action-wrap .news-action ul li:last-child {
  margin-right: 0;
}

.news-action-wrap .news-action ul li img {
  transition: var(--transition);
}

.news-action-wrap .news-action ul li:hover button img {
  transform: scale(0.9);
}

.news-action-wrap .news-action:hover span img {
  opacity: 1;
}

.news-action-wrap .news-action:hover ul {
  visibility: visible;
  opacity: 1;
}

.news-action-wrap .news-action:hover ul li {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.news-action-wrap .news-action:hover ul li:nth-child(1) {
  transition-delay: 0.1s;
}

.news-action-wrap .news-action:hover ul li:nth-child(2) {
  transition-delay: 0.2s;
}

.news-action-wrap .news-action:hover ul li:nth-child(3) {
  transition-delay: 0.3s;
}

.news-action-wrap .news-action:hover ul li:nth-child(4) {
  transition-delay: 0.4s;
}

.news-action-wrap .news-action:hover ul li:nth-child(5) {
  transition-delay: 0.5s;
}

.news-action-wrap.style-two {
  bottom: 20px;
  right: 20px;
}

.news-action-wrap.style-two .news-action span img {
  filter: brightness(0) invert(1);
  opacity: 1;
}

.news-action-wrap.style-two .news-action ul {
  left: auto;
  right: 0;
}

.news-tablist .nav-item {
  margin-right: 10px;
}

.news-tablist .nav-item:last-child {
  margin-right: 0;
}

.news-tablist .nav-item .nav-link {
  border: 1px solid rgba(35, 82, 238, 0.65);
  border-radius: 50px;
  display: inline-block;
  padding: 2px 16px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: rgba(35, 82, 238, 0.65);
}

.news-tablist .nav-item .nav-link.active,
.news-tablist .nav-item .nav-link:hover {
  background-color: var(--primaryColor);
  color: var(--whiteColor);
  border-color: transparent;
}

.overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 70%;
  background: linear-gradient(180deg, rgba(15, 15, 15, 0) 0%, rgba(15, 15, 15, 0.9) 94%);
  z-index: 1;
  /* lower than text */
}

.overlay.style-two {
  background: linear-gradient(180deg, rgba(15, 15, 15, 0) 0%, rgba(15, 15, 15, 0.58) 100%);
}

.overlay.style-three {
  height: 78%;
  background: linear-gradient(180deg, rgba(15, 15, 15, 0) 0%, rgba(15, 15, 15, 0.58) 100%);
}

.overlay.style-four {
  height: 78%;
  background: linear-gradient(180deg, rgba(15, 15, 15, 0) 0%, rgba(15, 15, 15, 0.9) 80%);
}

.news-metainfo {
  line-height: 16px;
}

.news-metainfo li {
  position: relative;
  display: inline-block;
  margin-right: 7px;
  padding-right: 17px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.news-metainfo li:after {
  position: absolute;
  top: 0px;
  right: 0;
  content: "/";
  color: var(--titleColor);
  font-size: 13px;
}

.news-metainfo li:last-child {
  margin-right: 0;
  padding-right: 0;
}

.news-metainfo li:last-child:after {
  display: none;
}

.news-metainfo li.news-author .author-img {
  width: 35px;
  height: 35px;
  margin-right: 10px;
}

.news-metainfo li.news-author:after {
  top: 10px;
}

.news-metainfo li i {
  font-size: 17px;
  line-height: 0.8;
  color: rgba(15, 15, 15, 0.46);
  position: relative;
  top: 1px;
  margin-right: 4px;
}

.news-metainfo li a {
  color: var(--primaryColor);
  position: relative;
}

.news-metainfo li a:after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 0%;
  height: 1px;
  visibility: hidden;
  opacity: 0;
  transition: var(--transition);
  background-color: var(--primaryColor);
}

.news-metainfo li a:hover:after {
  visibility: visible;
  opacity: 1;
  width: 100%;
}

.news-metainfo.style-one li {
  color: var(--titleColor);
}

.news-metainfo.style-one li:after {
  color: var(--titleColor);
}

.news-metainfo.style-two li {
  color: #565C59;
}

.news-metainfo.style-two li:after {
  color: var(--titleColor);
}

.news-metainfo.style-three li {
  color: var(--whiteColor);
}

.news-metainfo.style-three li i {
  color: rgba(255, 255, 255, 0.46);
}

.news-metainfo.style-three li:after {
  color: var(--whiteColor);
}

.news-metainfo.style-three li a {
  color: var(--secondaryColor);
}

.news-metainfo.style-three li a:after {
  background-color: var(--secondaryColor);
}

.news-metainfo.style-four li {
  color: rgba(255, 255, 255, 0.51);
}

.news-metainfo.style-four li i {
  color: var(--secondaryColor);
}

.news-metainfo.style-four li:after {
  color: rgba(255, 255, 255, 0.51);
}

.news-metainfo.style-four li a {
  color: var(--primaryColor);
}

.news-metainfo.style-four li a:after {
  background-color: var(--primaryColor);
}

.news-metainfo.style-five li {
  font-weight: 400;
  color: var(--linkColor);
}

.news-metainfo.style-five li i {
  color: var(--primaryColor);
}

.news-metainfo.style-five li:after {
  color: rgba(15, 15, 15, 0.29);
}

.news-metainfo.style-five li a {
  color: var(--linkColor);
}

.news-metainfo.style-five li a:after {
  background-color: var(--primaryColor);
}

.news-metainfo.style-five li a:hover {
  color: var(--primaryColor);
}

.news-metainfo.style-six li {
  color: rgba(255, 255, 255, 0.67);
}

.news-metainfo.style-six li i {
  color: var(--secondaryColor);
}

.news-metainfo.style-six li:after {
  color: rgba(255, 255, 255, 0.67);
}

.news-metainfo.style-six li a {
  color: var(--secondaryColor);
}

.news-metainfo.style-six li a:after {
  background-color: var(--secondaryColor);
}

.news-metainfo.style-seven li {
  color: rgba(255, 255, 255, 0.67);
}

.news-metainfo.style-seven li i {
  color: rgb(255, 255, 255);
}

.news-metainfo.style-seven li:after {
  color: rgba(255, 255, 255, 0.67);
}

.news-metainfo.style-seven li a {
  color: var(--whiteColor);
}

.news-metainfo.style-seven li a:after {
  background-color: var(--whiteColor);
}

/* .thumbnail-news-card.style-one .news-img {
  width: 100px;
  height: 100px;
} */
.thumbnail-news-card.style-one .news-info {
  width: calc(100% - 120px);
  margin-left: auto;
}

.thumbnail-news-card.style-one .news-info .news-metainfo {
  margin-bottom: 5px;
}

.thumbnail-news-card.style-two .author-img {
  width: 89px;
  height: 89px;
  position: relative;
  top: 10px;
}

.thumbnail-news-card.style-two .news-info {
  width: calc(100% - 105px);
  margin-left: auto;
}

.thumbnail-news-card.style-three .news-img {
  width: 190px;
}

.thumbnail-news-card.style-three .news-info {
  width: calc(100% - 216px);
  margin-left: auto;
  position: relative;
  top: 2px;
}

.thumbnail-news-card.style-three .news-info .news-metainfo {
  margin-bottom: 13px;
}

.thumbnail-news-card.style-four .news-img {
  width: 134px;
}

.thumbnail-news-card.style-four .news-info {
  width: calc(100% - 150px);
  margin-left: auto;
  position: relative;
  top: 2px;
}

.thumbnail-news-card.style-four .news-info .news-metainfo {
  margin-bottom: 13px;
}

/*-------------------------------
        News Card CSS
-------------------------------*/
.video-wrap {
  background-image: url(../img/video-bg.jpg);
}

.video-wrap .video-info {
  position: relative;
  z-index: 2;
  padding-top: 325px;
  padding-bottom: 100px;
}

.video-wrap .video-info .news-metainfo {
  padding: 5px 18.5px;
}

.video-wrap .video-info h3 a {
  position: relative;
  background-position: 0% 100%;
  background-repeat: no-repeat;
  transition: background-size 0.7s;
  background-size: 100% 74px;
  line-height: 78px;
  padding: 0 15px;
  background-image: linear-gradient(var(--primaryColor), var(--primaryColor));
}

.video-wrap .video-info h3 a span {
  padding: 0 15px;
  display: block;
  background-color: var(--primaryColor);
}

.video-wrap .video-info .play-video {
  width: 84px;
  height: 84px;
  margin-bottom: 29px;
  transition: var(--transition);
}

.video-wrap .video-info .play-video i {
  font-size: 35px;
  transition: var(--transition);
}

.video-wrap .video-info .play-video:hover {
  background-color: var(--primaryColor) !important;
}

.video-wrap .video-info .play-video:hover i {
  color: var(--whiteColor);
}

/*-------------------------------
        Subscribe CSS
-------------------------------*/
.subscribe-box.style-one {
  padding: 30px 45px 0 46px;
}

.subscribe-box.style-one:after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: calc(100% - 20px);
  background-color: var(--primaryColor);
  z-index: -1;
  border-radius: 5px;
}

.subscribe-box.style-one .subscribe-content {
  margin-top: 22px;
}

.subscribe-box.style-one .subscribe-content .subscribe-form input {
  background-color: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  color: var(--whiteColor);
  font-size: 15px;
  padding: 0 15px 15px 0;
  letter-spacing: -0.02em;
}

.subscribe-box.style-one .subscribe-content .subscribe-form input::-moz-placeholder {
  color: var(--whiteColor);
  opacity: 1;
}

.subscribe-box.style-one .subscribe-content .subscribe-form input::placeholder {
  color: var(--whiteColor);
  opacity: 1;
}

.subscribe-box.style-one .subscribe-content .subscribe-form button {
  position: absolute;
  bottom: 17px;
  right: 0;
}

.subscribe-box.style-three {
  padding: 40px 30px 45px;
}

.subscribe-box.style-three .subscribe-content .subscribe-form input {
  background-color: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  color: var(--whiteColor);
  font-size: 15px;
  padding: 0 15px 15px 0;
  letter-spacing: -0.02em;
}

.subscribe-box.style-three .subscribe-content .subscribe-form input::-moz-placeholder {
  color: var(--whiteColor);
  opacity: 1;
}

.subscribe-box.style-three .subscribe-content .subscribe-form input::placeholder {
  color: var(--whiteColor);
  opacity: 1;
}

.subscribe-box.style-three .subscribe-content .subscribe-form button {
  position: absolute;
  bottom: 5px;
  right: 0;
}

.subscribe-box.style-four {
  background-image: url(../img/subscribe-bg-2.jpg);
  padding: 69px 50px 75px 50px;
}

.subscribe-box.style-four:after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.56);
  z-index: -1;
  border-radius: 6px;
}

.subscribe-box.style-four .subscribe-form input {
  color: var(--titleColor);
  padding: 12px 20px 12px 20px;
  height: 52px;
}

.subscribe-box.style-four .subscribe-form input::-moz-placeholder {
  color: rgba(15, 15, 15, 0.58);
  opacity: 1;
}

.subscribe-box.style-four .subscribe-form input::placeholder {
  color: rgba(15, 15, 15, 0.58);
  opacity: 1;
}

.subscribe-box.style-four .subscribe-form button {
  top: 0;
  right: 5px;
  padding: 12px;
  height: 100%;
  color: var(--primaryColor);
  letter-spacing: -0.02em;
}

.subscribe-box.style-four .subscribe-form button img {
  position: relative;
  top: -1px;
  margin-left: 5px;
}

/*-------------------------------
        News Details CSS
-------------------------------*/
.terms-wrap p,
.news-details p {
  margin-bottom: 22px;
}

.terms-wrap p strong,
.terms-wrap p b,
.news-details p strong,
.news-details p b {
  color: var(--titleColor);
}

.terms-wrap h1,
.terms-wrap h2,
.terms-wrap h3,
.terms-wrap h4,
.terms-wrap h5,
.terms-wrap h6,
.news-details h1,
.news-details h2,
.news-details h3,
.news-details h4,
.news-details h5,
.news-details h6 {
  margin-bottom: 15px;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.terms-wrap h1,
.news-details h1 {
  font-size: 46px;
  line-height: 60px;
}

.terms-wrap h2,
.news-details h2 {
  font-size: 40px;
}

.terms-wrap h3,
.news-details h3 {
  font-size: 36px;
}

.terms-wrap h4,
.news-details h4 {
  font-size: 32px;
}

.terms-wrap h5,
.news-details h5 {
  font-size: 26px;
}

.terms-wrap h6,
.news-details h6 {
  font-size: 22px;
}

.terms-wrap p:last-child,
.news-details p:last-child {
  margin-bottom: 0;
}

.terms-wrap ol,
.news-details ol {
  margin-top: 20px;
  margin-bottom: 30px;
}

.terms-wrap ol li,
.news-details ol li {
  margin-bottom: 15px;
  color: var(--paraColor);
  padding-left: 3px;
}

.terms-wrap .single-img,
.news-details .single-img {
  position: relative;
  margin-bottom: 30px;
  display: block;
}

.terms-wrap .single-img span,
.news-details .single-img span {
  display: block;
  padding: 13px 20px;
  border-radius: 0 0 6px 6px;
  background-color: #E9EEFD;
}

.terms-wrap .blog-metainfo,
.news-details .blog-metainfo {
  margin-bottom: 20px;
}

.terms-wrap .single-para,
.news-details .single-para {
  margin-bottom: 40px;
}

.terms-wrap .single-para:last-child,
.news-details .single-para:last-child {
  margin-bottom: 0;
}

.terms-wrap .feature-list li,
.news-details .feature-list li {
  position: relative;
  margin-bottom: 15px;
  padding-left: 22px;
  color: #343535;
  letter-spacing: -0.02em;
}

.terms-wrap .feature-list li:last-child,
.news-details .feature-list li:last-child {
  margin-bottom: 0;
}

.terms-wrap .feature-list li:before,
.news-details .feature-list li:before {
  position: absolute;
  top: 13px;
  left: 5px;
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #343535;
}

.terms-wrap .wp-blockquote,
.news-details .wp-blockquote {
  background-color: #E9EEFD;
  padding: 31px 35px 31px 40px;
  border-radius: 10px;
}

.terms-wrap .wp-blockquote .quote-icon,
.news-details .wp-blockquote .quote-icon {
  width: 81px;
  height: 81px;
}

.terms-wrap .wp-blockquote div,
.news-details .wp-blockquote div {
  width: calc(100% - 117px);
  margin-left: auto;
}

.terms-wrap .wp-blockquote div h6,
.news-details .wp-blockquote div h6 {
  margin-bottom: 8px;
}

.terms-wrap .wp-blockquote div span,
.news-details .wp-blockquote div span {
  color: rgba(86, 92, 89, 0.93);
}

.news-details-area>.social-profile {
  width: 35px;
}

.news-details-area>.social-profile li {
  display: block;
  margin: 0 0 12px;
}

.news-details-area>.social-profile li:last-child {
  margin-bottom: 0;
}

.news-details-area>.social-profile li a img {
  filter: brightness(0) invert(0);
  transition: var(--transition);
  max-width: 20px;
}

.news-details-area>.social-profile li a:hover img {
  filter: brightness(1) invert(0);
}

.news-details-area .news-details-wrap {
  width: calc(100% - 43px);
  margin-left: auto;
  padding-right: 25px;
}

.news-metaoption {
  padding: 45px 0;
  border-bottom: 1px solid rgba(15, 15, 15, 0.18);
}

.news-metaoption .post-share h6,
.news-metaoption .post-tag h6 {
  font-size: 20px;
  line-height: 1;
  letter-spacing: -0.01rem;
  margin-right: 12px;
}

.news-metaoption .post-share .social-profile {
  line-height: 1;
  position: relative;
  top: 2px;
}

.news-metaoption .post-share .social-profile li a i {
  font-size: 18px;
}

.news-metaoption .post-share .social-profile li a:hover i {
  color: var(--primaryColor);
}

.news-pagination {
  padding: 55px 0;
}

.news-pagination:after {
  position: absolute;
  top: 50%;
  left: 50%;
  content: "";
  width: 1px;
  height: 86px;
  transform: translateY(-50%);
  background-color: rgba(15, 15, 15, 0.18);
}

.news-pagination .prev-news,
.news-pagination .next-news {
  width: 48%;
}

.news-pagination .prev-news .thumbnail-news-card .news-img,
.news-pagination .next-news .thumbnail-news-card .news-img {
  width: 128px;
}

.news-pagination .prev-news .thumbnail-news-card .news-img>img,
.news-pagination .next-news .thumbnail-news-card .news-img>img {
  width: 105px;
  height: 105px;
  display: block;
}

.news-pagination .prev-news .thumbnail-news-card .news-img span,
.news-pagination .next-news .thumbnail-news-card .news-img span {
  width: 42px;
  height: 42px;
  position: absolute;
  top: 50%;
  border: 1px solid rgba(15, 15, 15, 0.31);
  transform: translateY(-50%);
  transition: var(--transition);
}

.news-pagination .prev-news .thumbnail-news-card .news-img span img,
.news-pagination .next-news .thumbnail-news-card .news-img span img {
  max-width: 19px;
  transition: var(--transition);
}

.news-pagination .prev-news .thumbnail-news-card .news-img span:hover,
.news-pagination .next-news .thumbnail-news-card .news-img span:hover {
  background-color: var(--primaryColor) !important;
  border-color: transparent;
}

.news-pagination .prev-news .thumbnail-news-card .news-img span:hover img,
.news-pagination .next-news .thumbnail-news-card .news-img span:hover img {
  filter: brightness(0) invert(1);
}

.news-pagination .prev-news .thumbnail-news-card .news-info,
.news-pagination .next-news .thumbnail-news-card .news-info {
  width: calc(100% - 150px);
}

.news-pagination .prev-news .thumbnail-news-card .news-img>img {
  margin-left: auto;
}

.news-pagination .prev-news .thumbnail-news-card .news-img span {
  left: 0;
}

.news-pagination .prev-news .thumbnail-news-card .news-info {
  margin-left: auto;
}

.news-pagination .next-news .thumbnail-news-card .news-img>img {
  margin-right: auto;
}

.news-pagination .next-news .thumbnail-news-card .news-img span {
  right: 0;
}

.news-pagination .next-news .thumbnail-news-card .news-info {
  margin-right: auto;
}

.comment-item-wrap .comment-item {
  position: relative;
  border-bottom: 1px solid rgba(15, 15, 15, 0.18);
  padding-bottom: 30px;
  margin-bottom: 40px;
  border-radius: 0;
}

.comment-item-wrap .comment-item.reply {
  margin-left: 97px;
}

.comment-item-wrap .comment-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.comment-item-wrap .comment-item .comment-author .comment-author-img {
  width: 46px;
  height: 46px;
}

.comment-item-wrap .comment-item .comment-author .comment-author-info {
  width: calc(100% - 57px);
  margin-left: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  position: relative;
  top: 4px;
}

.comment-item-wrap .comment-item .comment-author .comment-author-info h5 {
  width: 70%;
  font-size: 20px;
  letter-spacing: -0.01em;
}

.comment-item-wrap .comment-item .comment-author .comment-author-info h5 span {
  color: rgba(86, 92, 89, 0.71);
}

.comment-item-wrap .comment-item .comment-author .comment-author-info a {
  margin-left: auto;
  text-align: right;
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  line-height: 16px;
  padding: 8.5px 17px;
  color: var(--primaryColor);
  border-radius: 2px;
  background-color: rgba(35, 82, 238, 0.1);
}

.comment-item-wrap .comment-item .comment-author .comment-author-info a:hover {
  background-color: var(--primaryColor);
  color: var(--whiteColor);
}

.comment-item-wrap .comment-item .comment-author .comment-author-info p {
  width: 100%;
  margin: 10px 0 0;
  color: rgba(79, 84, 81, 0.85);
}

.login-form-wrap .form-group input,
.login-form-wrap .form-group select,
.login-form-wrap .form-group textarea,
.contact-form .form-group input,
.contact-form .form-group select,
.contact-form .form-group textarea,
.comment-form .form-group input,
.comment-form .form-group select,
.comment-form .form-group textarea {
  width: 100%;
  color: rgba(15, 15, 15, 0.54);
  padding: 14px 20px 14px 20px;
  border: 1px solid rgba(15, 15, 15, 0.1);
  letter-spacing: -0.02em;
}

.login-form-wrap .form-group input::-moz-placeholder,
.login-form-wrap .form-group select::-moz-placeholder,
.login-form-wrap .form-group textarea::-moz-placeholder,
.contact-form .form-group input::-moz-placeholder,
.contact-form .form-group select::-moz-placeholder,
.contact-form .form-group textarea::-moz-placeholder,
.comment-form .form-group input::-moz-placeholder,
.comment-form .form-group select::-moz-placeholder,
.comment-form .form-group textarea::-moz-placeholder {
  color: #858F97;
  opacity: 1;
}

.login-form-wrap .form-group input::placeholder,
.login-form-wrap .form-group select::placeholder,
.login-form-wrap .form-group textarea::placeholder,
.contact-form .form-group input::placeholder,
.contact-form .form-group select::placeholder,
.contact-form .form-group textarea::placeholder,
.comment-form .form-group input::placeholder,
.comment-form .form-group select::placeholder,
.comment-form .form-group textarea::placeholder {
  color: #858F97;
  opacity: 1;
}

.login-form-wrap .form-group input,
.login-form-wrap .form-group select,
.contact-form .form-group input,
.contact-form .form-group select,
.comment-form .form-group input,
.comment-form .form-group select {
  height: 51px;
}

.login-form-wrap .form-group textarea,
.contact-form .form-group textarea,
.comment-form .form-group textarea {
  height: 161px;
  resize: none;
  padding-top: 11px;
}

.login-form-wrap .rating li i,
.contact-form .rating li i,
.comment-form .rating li i {
  font-size: 20px;
}

.contact-form .form-group textarea {
  height: 200px;
}

.checkbox {
  display: block;
}

.checkbox.form-check {
  padding-left: 0;
}

.checkbox input {
  padding: 0;
  height: initial;
  width: initial;
  margin-bottom: 0;
  display: none;
  cursor: pointer;
}

.checkbox label {
  position: relative;
  cursor: pointer;
  color: var(--paraColorTwo);
  padding-left: 29px;
}

.checkbox label:before {
  content: "";
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: inline-block;
  background-color: var(--grayColor);
  border: 1px solid rgba(15, 15, 15, 0.65);
  width: 17px;
  height: 17px;
  border-radius: 50%;
  position: absolute;
  vertical-align: middle;
  cursor: pointer;
  margin-right: 5px;
  position: absolute;
  left: 0;
  top: 6px;
}

.checkbox label a {
  color: var(--primaryColor);
  font-weight: 500;
}

.checkbox input:checked+label:before {
  border-color: transparent;
}

.checkbox input:checked+label:after {
  content: "";
  display: block;
  position: absolute;
  top: 6px;
  left: 0;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  border: none;
  background: var(--primaryColor);
}

.sidebar {
  border-left: 1px solid rgba(15, 15, 15, 0.18);
}

.sidebar .sidebar-widget {
  padding-left: 35px;
  padding-bottom: 45px;
  margin-bottom: 45px;
  border-bottom: 1px solid rgba(15, 15, 15, 0.18);
}

.sidebar .sidebar-widget:last-child {
  margin-bottom: 0;
  padding-bottom: 55px;
  border-bottom: none;
}

.sidebar.style-two .sidebar-widget {
  padding-left: 35px;
}

.sidebar.fixed-wrap {
  margin-bottom: 55px;
}

.sidebar.fixed-wrap .sidebar-widget:last-child {
  padding-bottom: 0;
}

.category-list li {
  margin-bottom: 18px;
}

.category-list li:last-child {
  margin-bottom: 0;
}

.category-list li a {
  position: relative;
  padding-left: 24px;
  font-size: 18px;
  letter-spacing: -0.01em;
  color: var(--linkColor);
}

.category-list li a:before {
  position: absolute;
  top: 4.5px;
  left: 0;
  content: "";
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid var(--titleColor);
  transition: var(--transition);
}

.category-list li a.active,
.category-list li a:hover {
  color: var(--primaryColor);
  padding-left: 26px;
}

.category-list li a.active:before,
.category-list li a:hover:before {
  background-color: var(--primaryColor);
  border-color: transparent;
}

.popular-news-widget .thumbnail-news-card {
  margin-bottom: 30px;
}

.popular-news-widget .thumbnail-news-card:last-child {
  margin-bottom: 0;
}

.tag-list {
  margin-top: -15px;
}

.tag-list li {
  display: inline-block;
  margin: 15px 6px 0px 0px;
}

.tag-list li:last-child {
  margin-right: 0;
}

.tag-list li a {
  color: var(--primaryColor);
  padding: 7.5px 16px 7.5px;
  border-radius: 0;
  font-size: 14px;
  font-weight: 500;
  background-color: rgba(35, 82, 238, 0.1);
}

.tag-list li a:hover {
  background-color: var(--primaryColor);
  color: var(--whiteColor);
}

.tag-list.style-two li {
  margin: 0 6px 5px 0px;
}

.tag-list.style-two li a {
  background-color: var(--primaryColor);
  color: var(--whiteColor);
}

.tag-list.style-two li a:hover {
  background-color: rgba(35, 82, 238, 0.1);
  color: var(--primaryColor);
}

/*---------------------------------
    Popup Newsletter CSS 
-----------------------------------*/
#newsletter-popup .modal-content {
  position: relative;
  border-radius: 5px;
}

#newsletter-popup .modal-content .btn_close {
  position: absolute;
  top: 15px;
  right: 15px;
  border: none;
  background-color: transparent;
  z-index: 1;
  padding: 0;
}

#newsletter-popup .modal-content .btn_close i {
  font-size: 26px;
}

#newsletter-popup .modal-body {
  border-radius: 5px;
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  text-align: center;
}

#newsletter-popup .modal-body .newsletter-bg {
  width: 38.5%;
  background-image: url(../img/newsletter-bg.webp);
  height: 570px;
  min-height: 100%;
  border-radius: 5px 0 0 5px;
}

#newsletter-popup .modal-body .newsletter-content {
  width: 60%;
  padding: 127px 97px;
  background-color: var(--whiteColor);
  border-radius: 0 5px 5px 0;
}

#newsletter-popup .modal-body .newsletter-content img {
  display: block;
  margin: 0 auto 8px;
}

#newsletter-popup .modal-body .newsletter-content .newsletter-form {
  display: flex;
  flex-wrap: wrap;
  margin: 41px 0 16px;
}

#newsletter-popup .modal-body .newsletter-content .newsletter-form input {
  width: 300px;
  height: 52px;
  padding: 15px 20px;
  border-radius: 5px;
  border: none;
  background-color: var(--grayColor);
  color: var(--paraColor);
  margin-right: 20px;
}

#newsletter-popup .modal-body .newsletter-content .newsletter-form input::-moz-placeholder {
  color: var(--paraColor);
  opacity: 1;
}

#newsletter-popup .modal-body .newsletter-content .newsletter-form input::placeholder {
  color: var(--paraColor);
  opacity: 1;
}

#newsletter-popup .modal-body .newsletter-content .newsletter-form button {
  width: calc(100% - 320px);
  border-radius: 5px;
  background-color: var(--primaryColor);
  color: var(--whiteColor);
}

#newsletter-popup .modal-body .newsletter-content .newsletter-form button i {
  position: relative;
  top: 2px;
  margin-left: 9px;
  font-size: 15px;
}

/*-------------------------------
    About Us & Contact CSS
-------------------------------*/
.about-wrap .about-img-wrap .exp-content {
  position: absolute;
  top: 0px;
  left: 28px;
}

.about-wrap .about-img-wrap .exp-content span {
  font-size: 60px;
  line-height: 73px;
  letter-spacing: -0.04em;
  display: block;
  margin-bottom: 2px;
}

.about-wrap .about-content .para p {
  margin-bottom: 20px;
}

.about-wrap .about-content .para p:last-child {
  margin-bottom: 0;
}

.about-wrap .about-content .btn {
  margin-top: 39px;
}

.board-card:hover .hover-anim-img>img {
  transform: translate3d(-10px, 0, 0);
}

.comp-card {
  padding: 35px 30px 34px 35px;
}

.comp-card p {
  margin: 15px 0 52px;
}

.comp-card .social-profile li {
  margin-right: 13px;
}

.comp-card .social-profile li:last-child {
  margin-right: 0;
}

.comp-card .social-profile li a img {
  filter: brightness(0) invert(0);
  transition: var(--transition);
}

.comp-card .social-profile li a:hover img {
  filter: brightness(1) invert(0);
}

.wh-content {
  background-color: #F0F4FE;
  padding: 40px 40px 40px;
  position: relative;
  z-index: 1;
  width: calc(100% + 28px);
}

.wh-content h3 {
  margin-bottom: 28px;
}

.wh-content p {
  padding-bottom: 26px;
  margin-bottom: 25px;
  border-bottom: 1px solid rgba(15, 15, 15, 0.12);
}

.wh-content .features-list {
  padding-left: 21px;
  margin-bottom: 38px;
}

.wh-content .features-list li {
  margin-bottom: 12px;
}

.wh-content .features-list li:last-child {
  margin-bottom: 0;
}

.contact-content h2 {
  margin-bottom: 20px;
}

.contact-content .contact-text {
  padding-bottom: 18px;
  margin-bottom: 19px;
  border-bottom: 1px solid rgba(15, 15, 15, 0.19);
}

.contact-content .social-profile li {
  margin-right: 9px;
}

.contact-content .social-profile li:last-child {
  margin-right: 0;
}

.contact-content .social-profile li a {
  width: 36px;
  height: 36px;
  background-color: var(--grayColor);
  border: 1px solid rgba(15, 15, 15, 0.1);
}

.contact-content .social-profile li a:hover {
  transform: translateY(-5px);
}

.comp-map {
  height: 622px;
  width: 100%;
}

.comp-map iframe {
  width: 100%;
  height: 100%;
}

/*-------------------------------
    FAQ & Error CSS
-------------------------------*/
.accordion-item {
  margin: 0 0 13px;
  background: transparent;
  border: 1px solid rgba(15, 15, 15, 0.1);
  border-top: 1px solid rgba(15, 15, 15, 0.1) !important;
  border-radius: 6px;
  background-color: var(--grayColor);
}

.accordion-item:last-child {
  margin-bottom: 0;
}

.accordion-item .accordion-header {
  margin-bottom: 0;
  position: relative;
  z-index: 3;
  border-radius: 0;
}

.accordion-item .accordion-header .accordion-button {
  margin: 0;
  font-size: 18px;
  font-family: var(--secondaryFont);
  line-height: 24px;
  font-weight: 500;
  letter-spacing: -0.01em;
  text-align: left;
  align-items: center;
  color: var(--titleColor);
  padding: 13.5px 40px 13.5px 20px;
  background-color: transparent;
  box-shadow: none;
  transition: var(--transition);
}

.accordion-item .accordion-header .accordion-button:after {
  display: none;
}

.accordion-item .accordion-header .accordion-button:focus {
  outline: none;
  box-shadow: none;
}

.accordion-item .accordion-header .accordion-button span {
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  position: absolute;
  top: 16px;
  right: 15px;
  text-align: center;
}

.accordion-item .accordion-header .accordion-button span i {
  position: absolute;
  top: calc(50% - 1px);
  left: 50%;
  font-size: 21px;
  font-weight: 500;
  line-height: 1;
  color: var(--titleColor);
  display: block;
  margin: 0 auto;
  transform: translate(-50%, -50%);
}

.accordion-item .accordion-header .accordion-button span i.minus {
  visibility: hidden;
  opacity: 0;
}

.accordion-item:not(.collapsed) {
  box-shadow: none;
}

.accordion-item:not(.collapsed) .accordion-button {
  padding-bottom: 13px;
}

.accordion-item .accordion-body {
  border-radius: 0 0 5px 5px;
  border: none;
  margin: 0px 20px 0;
  padding: 10px 0 16px;
  border-top: 1px solid rgba(15, 15, 15, 0.1);
}

.accordion-item .accordion-body p {
  margin: 0;
  font-weight: 400;
}

.accordion-item:not(.collapsed) .accordion-button span .plus {
  visibility: hidden;
  opacity: 0;
}

.accordion-item:not(.collapsed) .accordion-button span .minus {
  visibility: visible !important;
  opacity: 1 !important;
}

.login-form-wrap {
  padding: 35px 35px 37px;
}

.login-form-wrap .or-text {
  margin-bottom: 20px;
}

.login-form-wrap .or-text:after {
  position: absolute;
  top: 50%;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  z-index: -1;
  background-color: rgba(15, 15, 15, 0.15);
}

.login-form-wrap .or-text span {
  padding: 5px 15px;
  background-color: var(--ashColor);
  z-index: 2;
}

.login-form-wrap .btn {
  margin-bottom: 14px;
}

.login-form-wrap .btn.style-five {
  background-color: var(--whiteColor);
  border: 1px solid var(--primaryColor);
  color: var(--primaryColor);
  border-radius: 6px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.login-form-wrap .btn.style-five:hover {
  border-color: transparent;
  color: var(--whiteColor);
  background-color: var(--primaryColor);
}

.login-form-wrap .btn.style-five:hover img {
  filter: brightness(0) invert(1);
}

.login-form-wrap .btn.style-six {
  background-color: var(--whiteColor);
  border: 1px solid #E3422D;
  color: #E3422D;
  border-radius: 6px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.login-form-wrap .btn.style-six:hover {
  border-color: transparent;
  color: var(--whiteColor);
  background-color: #E3422D;
}

.login-form-wrap .btn.style-six:hover img {
  filter: brightness(0) invert(1);
}

.error-wrap {
  border-top: 1px solid rgba(29, 29, 29, 0.1);
}

.error-wrap .error-content {
  text-align: center;
}

.error-wrap .error-content img {
  display: block;
  margin: 0 auto 30px;
}

.error-wrap .error-content p {
  margin: 0 auto 30px;
  max-width: 520px;
}

.popup_modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
  z-index: 99;
}

.popup_modal.show-modal {
  display: flex;
}

.popup_modal .modal-content {
  position: relative;
  width: 100%;
  max-width: 900px;
  height: 600px;
  background: #fff;
}

.popup_modal .modal-content .close-modal {
  position: absolute;
  top: 3px;
  right: 5px;
  cursor: pointer;
}

.popup_modal .modal-content .close-modal i {
  color: var(--whiteColor);
  font-size: 18px;
  line-height: 0.8;
}

.popup_modal .no-scroll {
  overflow: hidden;
}

.popup_modal .video-container {
  width: 100%;
  height: 600px;
}

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

.shadow {
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.p-text p {
  padding-top: 16px;
}

.news-title {
  font-size: 1rem;
  font-weight: 500;
}

.news-card {
  cursor: pointer;
}

/* .news-img {
      object-fit: cover;
      height: 90px;
      width: 80px;
    } */
.card-body {
  padding: 0px !important;
}

.text-mood {
  color: #6c757d;
  font-size: 12px;
}

.bg_danger {
  background-color: #b41e19;
}

.other-links {
  color: #2e2a2a;
  padding: 1px 10px;
  font-size: 14px;

}

.vl {
  border-left: 2px solid #ffffff;
  height: 100%;
}

.other-sites {
  display: inline;
  justify-content: center;
  align-items: center;
  gap: 0px;
  text-align: center;
}

.text_size {
  font-size: 12px;
}

.container {
  max-width: 1099px;
}

.logo h1 {
  font-size: 60px;
  margin-bottom: 0px;
}

.logo span {
  font-weight: 700;
  font-style: italic;
  color: #000;
  line-height: 0;
}

.navbar-bottom {
  border-bottom: 1px solid #000;
}

/* .news-info.one p{
  font-size: 12px;
} */
.news-img.two img {
  width: 126px;
}

/* Set up the image container */
.hover-anim-img {
  position: relative;
}

/* Overlay should be absolutely positioned behind text */
.hover-anim-img .overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 70%;
  background: linear-gradient(180deg, rgba(15, 15, 15, 0) 0%, rgba(15, 15, 15, 0.9) 94%);
  z-index: 1;
  pointer-events: none;
}

/* Text inside image should be above overlay */
.hover-anim-img .position-absolute {
  z-index: 2;
}

/* Optional: ensure play button stays visible */
.news-info {
  z-index: 3;
  position: relative;
}

/* -------------------------Card------------------------ */
/* .card-custom {
      border: none;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
      transition: transform 0.2s ease-in-out;
    }

    .card-custom:hover {
      transform: translateY(-5px);
    }

    .card-img-top {
      height: 200px;
      object-fit: cover;
    }

    .dashed-line {
      border-bottom: 3px dashed #ccc;
      margin-top: -5px;
    }

    .card-body {
      padding-bottom: 0.5rem;
    }

    .card-footer {
      background-color: white;
      border-top: none;
      padding-top: 0;
    }

    .footer-text {
      font-size: 0.875rem;
      color: #777;
    }

    .arrow-icon {
      font-size: 1.1rem;
      color: #555;
    }

    .section-title {
      font-weight: bold;
      font-size: 1.25rem;
      margin-bottom: 1rem;
    } */
.card-custom {
  border: none;
  border-radius: 0px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.card-img-top {
  height: 180px;
  object-fit: cover;
}

.dashed-line {
  border-bottom: 3px dashed #806f6f;
  margin-top: -5px;

}

.card-body {
  padding-bottom: 0.5rem;
}

.card-footer {
  background: white;
  border-top: none;
  padding-top: 0;
}

.ri-arrow-right-up-line {
  font-size: 1.2rem;
  color: #333;
}

.item .card-custom .card-body p {
  padding: 6px 0px 0px 10px;
  line-height: 1.5;
}

.newsthumnail {
  height: 300px;
}


/* -------------------------------------------- */
.news-card.style-three .news-info.banner-vdo {
  position: absolute;
  bottom: 50px;
  left: 25px;
  padding-right: 20px;
}

.news-info.banner-vdo .play-video.style-one {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.news-info.banner-vdo .play-video.style-one i {
  font-size: 30px;
}

.news-border {
  border-top: 1px solid #000;
}

/* ---------------------------------------- */
.hover-anim-img .banner-content {
  top: 60%;
}
.hover-anim-img .banner-content-1 {
  top: 60%;
}
.hover-anim-img .banner-content a:hover {
  text-decoration: underline;
}
.hover-anim-img .banner-content-1 a:hover {
  text-decoration: underline;
}
.card.card-custom {
  height: 350px;
  margin-bottom: 5px;
}

.news-info .rgt-heading {
  font-size: 14px;
}

.navbar-nav .nav-link:hover {
  color: #b41e19 !important;
}

.card.card-custom.webstory a img {
  height: 250px;
}

.news-card.style-three.vdo .news-info {
  left: 8px !important;
}

.news-card.style-three.vdo .news-info {
  bottom: 10px;
}

.hover-red:hover {
  color: #b41e19;
}

.hover-black:hover {
  color: #000;
}

.navbar-area .navbar .navbar-nav>.nav-item>.nav-link:hover {
  color: #b41e19 !important;
}

.news-img.rght-img img {
  border-radius: 50%;
}

.news-img {
  object-fit: cover;
  height: 90px;
  width: 80px;
}

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

.footer-wrap {
  border-top: 1px solid #5f7176;

}

.footer-bottom {
  border-bottom: 1px solid #5f7176;
}

/* .social-profile li a .ri-instagram-line{
    font-size: 22px;
   } */
.social-profile.two li a i {
  line-height: 0.8;
  font-size: 24px;
  color: #3f3b3b;
}

.social-profile.two.style-one li {
  margin-right: 4px;
}

/* absolute position like screenshot (adjust left/top as needed) */
.lang-container {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.9rem;
  z-index: 100;
  width: 150px;
}

.lang-toggle {
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  font-size: 1rem;
  color: inherit;
}

.lang-toggle:focus {
  outline: 2px solid #005fcc;
  outline-offset: 2px;
}

.lang-menu {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 6px;
  list-style: none;
  padding: 4px 0;
  margin: 0;
  min-width: 140px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  display: none;
  font-size: 0.75rem;
}

.lang-menu li {
  margin: 0;
}

.lang-option {
  width: 100%;
  background: none;
  border: none;
  padding: 6px 12px;
  text-align: left;
  cursor: pointer;
  font: inherit;
  color: #222;
}

.lang-option:hover,
.lang-option.active {
  background: #f2f2f2;
}

.lang-toggle span {
  font-size: 13px;
}

#dateTime {
  margin-left: 116px;
}

/* ------------------------------------- */
.owl-slider .item {
  padding: 8px;
  background: #f7f7f7;
  border-radius: 4px;
  text-align: left;
}

.owl-slider .item p {
  margin: 0;
  font-size: 0.9rem;
}

.owl-nav button {
  background: none;
  border: none;
  font-size: 1.25rem;
  padding: 0 8px;
  cursor: pointer;
}

.owl-dots .owl-dot span {
  width: 7px;
  height: 7px;
  display: block;
  border-radius: 50%;
  background: #ccc;
  margin: 3px;
}

.owl-dots .owl-dot.active span {
  background: #333;
}

/* enhance sticky behavior with offset and ensure it doesn't overlap */
.sticky-top {
  top: 109px;
  /* space from viewport top */
  z-index: 10;
}

/* optional: constrain image sizing for better stacking inside sticky */
.news-img img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ---------------------------------------------------------- */
/* .hero-slider .swiper-slide {
  user-select: none;
  -webkit-user-drag: none;
} */

/* Prevent image from hijacking drag/swipe */
.hover-anim-img img {
  -webkit-user-drag: none;
  user-drag: none;
  pointer-events: none;
  /* so overlay or parent receives the swipe */
}

/* If overlay needs interaction, adjust; otherwise let swipe pass */
.overlay {
  pointer-events: none;
}

.carousel-inner {
  touch-action: pan-y pan-x;
}

/* --------------------------------- */
footer .other-links {
  color: #5d686c;
  /* normal color */
  text-decoration: none;

  transition: color .25s ease 0s, background-color .25s ease 0s, opacity .25s ease 0s;
  /* smooth effect */
  font-size: 16px;
  font-weight: 600;
  line-height: 1.9;
  letter-spacing: 0.1px;
}

footer .other-links:hover {
  color: #b41e19;
  /* change to your preferred hover color */
  text-decoration: none;
  /* optional */
}

/* ------------------Footer Email------------------------------- */
/* CSS */
.newsletter-box {
  background: #f6f5ee;
  /* light neutral background like image */
  padding: 25px 20px;
  border-radius: 6px;
  max-width: 320px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.newsletter-title {
  margin: 0;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 700;
  color: #3f4d54;
  text-align: center;
}

.newsletter-subtitle {
  margin: 4px 0 18px;
  font-size: 13px;
  line-height: 1.3;
  text-align: center;
  color: #2f3438;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.newsletter-form input[type="email"] {
  padding: 10px 14px;
  font-size: 14px;
  border: 1px solid #c4c8cc;
  border-radius: 6px;
  background: #fff;
  box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.06);
  outline: none;
  transition: border-color .2s;
}

.newsletter-form input[type="email"]:focus {
  border-color: #8fa8b3;
}

.newsletter-form button {
  background: #364448;
  color: #fff;
  border: none;
  padding: 12px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 4px;
  cursor: pointer;
  letter-spacing: .8px;
  transition: filter .2s, background .2s;
}

.newsletter-form button:hover {
  filter: brightness(1.08);
}

/* ---------------------------- */
footer .two .other-links {
  color: #5d686c;
  /* normal color */
  text-decoration: none;

  transition: color .25s ease 0s, background-color .25s ease 0s, opacity .25s ease 0s;
  /* smooth effect */
  font-size: 12px;
  font-weight: 800;
  line-height: 1.9;
}

footer .two .other-links:hover {
  color: #b41e19;
  /* change to your preferred hover color */
  text-decoration: none;
  /* optional */
}

.aws {
  opacity: 0.5;
}

.gaza-img img {
  height: 300px;
}

.highlight-box li {
  font-size: 16px;
  margin: 12px;
}

.updated-ago {
  color: #d85229;
  border-bottom: 2px solid #000;
  font-size: 10px;
  margin: .5rem;
}

.article-meta {
  font-size: 11px;
  font-weight: 700;
}

.follow-btn {
  background-color: #000;
  color: #fff;
  border-radius: 20px;
  font-weight: 700;
  font-size: 14px;
}

.entry-share a {
  margin: 0px 5px;
}

.entry-shares-wrapper {
  border-top: 1px solid #4e4e4e;

}

.entry-shares-wrapper-1 {
  border-top: 1px solid #4e4e4e;
  margin: 4px 0px;

}

.news-card {
  margin-bottom: 30px;
}

.news-card img {
  width: 100%;
  object-fit: cover;
}

.news-title {
  font-weight: 500;
  font-size: 1.1rem;
  margin-top: 10px;
}

.news-meta {
  font-size: 0.85rem;
  color: #888;
}

.views-count {
  position: absolute;
  bottom: 8px;
  right: 12px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  font-size: 0.8rem;
  padding: 2px 6px;
  border-radius: 4px;
}

.article-item-info {
  margin-bottom: .75rem;
  margin-top: .75rem;
}

.article-item-title h2 {
  font-size: 26px;
  line-height: 35px;
  
}
.load-more {
    text-align: center;
    text-transform: uppercase;
 
}
.button.hollow.gray {
    border: 1px solid #ccc;
    color: #ccc;
}
.button.gray.hollow, button.gray.hollow {
    color: #5d686c;
}
.button.hollow, .button.hollow:focus, .button.hollow:hover {
    background-color: transparent;
}
.button.small {
    font-size: .75rem;
}
.button {
    display: inline-block;
    vertical-align: middle;
    margin: 0 0 1rem 0;
    font-family: inherit;
    padding: 7px 14px;
    -webkit-appearance: none;
    border: 1px solid transparent;
    border-radius: 0;
    transition: background-color .25s ease-out, color .25s ease-out;
    font-size: .9rem;
    line-height: 1;
    text-align: center;
    cursor: pointer;
    color: #fff;
}
/* .carousel-caption {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 68px;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 10px;
    box-sizing: border-box;
}
.carousel-caption h2 ,p {
    margin: 0;
    font-size: 18px;
    position: absolute;
    left: 0;
    color: #fff;
    padding: 0px 10px;
}
.carousel-caption p{
  padding-top: 10px;
  font-size: 14px;
   color: #fff;
} */

 #podcastSticky.sticky-disabled {
    position: static !important;
  }

#sticky-box.sticky {
    position: sticky;
    top: 120px;
}
.navbar-brand h1{
font-family: "Noto Serif", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
}
.banner-content{
  width: 50%;
}

.py_5 {
  padding-top: 5px;
  padding-bottom: 5px;
}
.display-screen{
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.desktop-hidden{
  display: none;
}
.desktop-show{
display: block;
}
.banner-content-1{
  display: none;
}
@media (max-width: 991px) {
  .sticky-top {
    position: static;
  }

  .mt_5{
     margin-top: 48px !important;
  }
   .mt_4{
     margin-top: 24px !important;
  }
 .border-top{
  border-top: 0px !important;
}

  .pe-4 {
    padding-right: 12px !important;
  }
  .mobile-hidden{
    display: none;
  }
}

@media (max-width: 767px) {
  .hover-anim-img {
    width: 100% !important;
    height: 100% !important;
    margin: 10px 0px;
  }
  .image-h{
    height: 220px !important;
  }
   .m_s_auto{
    margin-left: auto;
  }
.article-item-title h2{
  font-size: 20px;
}
 .end_0 {
   right: 0 !important;
 }
 .banner-content{
  width: 80%;
}
.navbar-brand span{
  display: none;
}
.border-top{
  border-top: 0px !important;
}

 
.py_5 {
  padding-top: 0px;
  padding-bottom: 0px;
}
}
@media (max-width: 575px) {
  .logo h1 {
    font-size: 35px;
  }
 
 .banner-content p{
  font-size: 14px;
  line-height: 26px;
 }
 .banner-content-1 p{
  font-size: 14px;
  line-height: 26px;
 }
 p,a,body,.news-metainfo li i{
  color: #222 !important;
 }

 .news-card.style-three .news-info.banner-vdo{
  bottom: 30px;
 }

 .news-info h5{
  font-size: 16px;
 }
.mobile-hidden-nav{
  display: none;
}
.navbar-bottom{
  border-bottom: 0px !important;
}

  .desktop-show{
display: none;
}
.desktop-hidden{
  display: block;
}
.banner-content-1{
  display: block;
  padding: 0px 0px 0px 20px;
  margin-top: 40px;
}
.banner-content{
  display: none;
}
.pb-2{
  padding-bottom: 0px !important;
}
.thumbnail-news-card.style-one .news-info{
  margin-top: 0px !important;
}

}
