@import url("https://fonts.googleapis.com/css2?family=Sora:wght@100..800&display=swap");

:root {
	--body: #fff;
	--black: #000;
	--white: #fff;
	--theme-blue: #091430;
	--theme-blue-2: #553CDF;
	--theme-green: #00E2C5;
	--theme-green-2: #C3F499;
	--theme-green-3: #102F25;
	--theme-yellow: #DCA51A;
	--theme-yellow-2: #F69B17;
	--theme-yellow-3: #FDC500;
	--theme-yellow-4: #FFD335;
	--theme-purple: #8F66FF;
	--theme-red: #AD0119;
	--theme-pink: #EE4A62;
	--theme-orange: #F47900;
	--header: #091430;
	--base: #5C30FD;
	--text: #5B6D84;
	--border: #E6EFFF;
	--border2: #373737;
	--ratting: #F8BC26;
	--bg: #F4F9FF;
	--bg2: #E6EFFF;
	--bg3: #F4F0FF;
	--bg4: #2F584E;
	--bg5: #09224B;
	--bg6: #EDF3F5;
	--bg7: #F8F2EC;
	--bg8: #F3F1FD;
	---box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.06);
}

/* --------------------------------------------
    Template Default Fonts & Fonts Styles
 ---------------------------------------------- */
body {
	font-family: "Sora", sans-serif;
	font-size: 16px;
	font-weight: normal;
	line-height: 30px;
	color: var(--text);
	background-color: var(--white);
	padding: 0;
	margin: 0;
	overflow-x: hidden;
}

ul {
	padding: 0;
	margin: 0;
	list-style: none;
}

button {
	border: none;
	background-color: transparent;
	padding: 0;
}

input:focus {
	color: var(--white);
	outline: none;
}

input {
	color: var(--white);
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: "Sora", system-ui;
	margin: 0px;
	padding: 0;
	color: var(--header);
	text-transform: capitalize;
	-webkit-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
	font-weight: 400;
}

h1 {
	font-size: 90px;
	font-weight: 600;
}

h2 {
	font-size: 55px;
	font-weight: 600;
}

@media (max-width: 1199px) {
	h2 {
		font-size: 42px;
	}
}

@media (max-width: 767px) {
	h2 {
		font-size: 36px;
	}
}

@media (max-width: 575px) {
	h2 {
		font-size: 32px;
	}
}

h3 {
	font-size: 22px;
	font-weight: 600;
}

@media (max-width: 575px) {
	h3 {
		font-size: 20px;
	}
}

h4 {
	font-size: 20px;
	font-weight: 600;
}

h5 {
	font-size: 18px;
	font-weight: 600;
}

h6 {
	font-size: 16px;
	font-weight: 500;
}

a {
	text-decoration: none;
	outline: none !important;
	cursor: pointer;
	color: var(--header);
	-webkit-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
}

p {
	margin: 0px;
	-webkit-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
}


.header-main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 10px 0;
}

.header-main .main-menu ul {
  margin-bottom: 0;
}

.header-main .main-menu ul li {
  position: relative;
  list-style: none;
  display: inline-block;
  -webkit-margin-end: 45px;
          margin-inline-end: 45px;
}

@media (max-width: 1899px) {
  .header-main .main-menu ul li {
    -webkit-margin-end: 35px;
            margin-inline-end: 35px;
  }
}

@media (max-width: 1600px) {
  .header-main .main-menu ul li {
    -webkit-margin-end: 30px;
            margin-inline-end: 30px;
  }
}

@media (max-width: 1399px) {
  .header-main .main-menu ul li {
    -webkit-margin-end: 25px;
            margin-inline-end: 25px;
  }
}

.header-main .main-menu ul li:last-child {
  -webkit-margin-end: 0;
          margin-inline-end: 0;
}

.header-main .main-menu ul li a {
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  color: var(--header);
  padding: 20px 0;
  text-align: left;
  position: relative;
  text-transform: capitalize;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  font-family: "Sora", system-ui;
}

.header-main .main-menu ul li a .head-icon {
  margin-left: 0;
  margin-right: 5px;
}

.header-main .main-menu ul li a i {
  margin-left: 5px;
}

.header-main .main-menu ul li a:hover {
  color: var(--theme-blue) !important;
}

.header-main .main-menu ul li .submenu {
  position: absolute;
  top: 100%;
  inset-inline-start: 0;
  min-width: 250px;
  background: var(--white);
  z-index: 99999;
  visibility: hidden;
  opacity: 0;
  -webkit-transform-origin: top center;
          transform-origin: top center;
  color: var(--header);
  -webkit-box-shadow: 0px 0px 40px 0px rgba(11, 13, 17, 0.08);
          box-shadow: 0px 0px 40px 0px rgba(11, 13, 17, 0.08);
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  padding: 30px 30px;
}

.header-main .main-menu ul li .submenu li {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
}

.header-main .main-menu ul li .submenu li:not(:last-child) {
  padding-bottom: 15px;
}

.header-main .main-menu ul li .submenu li a {
  position: relative;
  z-index: 11;
  font-size: 16px;
  font-weight: 600;
  color: var(--header);
  padding: 0 0;
  padding-bottom: 0;
  padding-top: 0;
  text-transform: capitalize;
  font-family: "Sora", system-ui;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.header-main .main-menu ul li .submenu li a:hover {
  color: var(--white) !important;
}

.header-main .main-menu ul li .submenu li:last-child a {
  border: none;
}

.header-main .main-menu ul li .submenu li .submenu {
  inset-inline-start: 113%;
  top: 0;
  visibility: hidden;
  opacity: 0;
}

.header-main .main-menu ul li .submenu li:hover > a {
  color: var(--theme-blue) !important;
}

.header-main .main-menu ul li .submenu li:hover > a::after {
  color: var(--theme-blue);
}

.header-main .main-menu ul li .submenu li:hover > .submenu {
  -webkit-transform: translateY(1);
  transform: translateY(1);
  visibility: visible;
  opacity: 1;
}

.header-main .main-menu ul li .submenu li.has-dropdown > a::after {
  position: absolute;
  top: 50%;
  inset-inline-end: 25px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  color: var(--theme-blue);
}

.header-main .main-menu ul li .has-homemenu {
  width: 1000px;
  padding: 30px 30px 10px 30px;
  opacity: 0;
  left: -250px;
  visibility: hidden;
  padding: 30px 30px 10px 30px;
}

@media (max-width: 991px) {
  .header-main .main-menu ul li .has-homemenu .homemenu-items {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu {
  position: relative;
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb img {
  width: 100%;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb img:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-title {
  text-align: center;
  margin: 15px auto;
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-title a {
  color: var(--header);
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-title a:hover {
  color: var(--theme-blue) !important;
}

.header-main .main-menu ul li:hover > a {
  color: var(--theme-blue);
}

.header-main .main-menu ul li:hover > a::after {
  color: var(--theme-blue);
}

.header-main .main-menu ul li:hover > .submenu {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
}

.header-main .header-right {
  gap: 30px;
}

@media (max-width: 1399px) {
  .header-main .header-right {
    gap: 20px;
  }
}

.header-main .header-right .search-icon {
  color: var(--header);
  font-size: 18px;
}

.header-main .sidebar__toggle {
  cursor: pointer;
  font-size: 20px;
  color: var(--header);
}

.header-1 .container-fluid {
	padding: 0 70px;
}

@media (max-width: 1899px) {
	.header-1 .container-fluid {
		padding: 0 20px;
	}
}

@media (max-width: 1199px) {
	.header-1 .container-fluid {
		padding: 0 30px;
	}
}

.header-1 .header-left {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 50px;
	max-width: 415px;
	width: 100%;
}

@media (max-width: 1899px) {
	.header-1 .header-left {
		max-width: 360px;
		gap: 25px;
	}
}

@media (max-width: 1600px) {
	.header-1 .header-left {
		max-width: 340px;
	}
}

@media (max-width: 1399px) {
	.header-1 .header-left {
		max-width: initial;
		width: initial;
	}
}

@media (max-width: 1199px) {
	.header-1 .header-left {
		max-width: 415px;
		width: 100%;
	}
}

.header-1 .header-left .category-oneadjust {
	max-width: 215px;
	width: 100%;
	position: relative;
}

@media (max-width: 1399px) {
	.header-1 .header-left .category-oneadjust {
		display: none;
	}
}

@media (max-width: 1199px) {
	.header-1 .header-left .category-oneadjust {
		display: block;
	}
}

@media (max-width: 575px) {
	.header-1 .header-left .category-oneadjust {
		display: none;
	}
}

.header-1 .header-left .category-oneadjust .dot {
	position: absolute;
	top: 15px;
	left: 15px;
}

.header-1 .header-left .category-oneadjust .nice-select {
	width: unset !important;
	gap: 20px;
	font-size: 16px;
	border-radius: 10px;
	border: 1px solid rgba(0, 91, 255, 0.1);
	background: rgba(0, 91, 255, 0.05);
	padding: 20px 35px 20px 40px;
	line-height: 1;
}

.header-1 .header-left .category-oneadjust .nice-select::after {
	width: 8px;
	height: 8px;
	right: 20px;
	top: 52%;
}

.header-1 .header-left .category-oneadjust .nice-select span {
	font-size: 14px;
	font-weight: 500;
	color: var(--header);
}

.header-1 .header-left .category-oneadjust .nice-select .selected.focus {
	background-color: var(--theme-blue);
	color: var(--white);
	font-weight: 500;
}

.header-1 .header-left .category-oneadjust .nice-select .focus {
	background-color: transparent;
}

.header-1 .header-left .category-oneadjust .nice-select .option:hover {
	background-color: transparent;
	color: var(--header);
}

.header-1 .header-left .category-oneadjust .nice-select .list {
	max-height: 15vh;
	background: var(--bg);
	width: 100%;
	padding: 5px 8px;
	overflow-y: scroll;
}

@media (max-width: 1199px) {
	.header-1 .header-left .category-oneadjust .nice-select .list {
		right: -60px;
	}
}

.header-1 .header-left .category-oneadjust .nice-select .list li {
	color: var(--header);
	font-size: 14px;
	border: none;
}

.header-1 .header-right {
	gap: 40px;
}

@media (max-width: 1199px) {
	.header-1 .header-right {
		gap: 20px;
	}
}

.header-1 .header-right .header-button {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 10px;
}

@media (max-width: 1199px) {
	.header-1 .header-right .header-button {
		display: none;
	}
}

.header-1 .header-right .header-button .theme-btn {
	padding: 16px 24px;
}

.header-1 .header-right .header-button .theme-btn.style-2 {
	background: transparent;
	border: 1px solid var(--border);
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 10px;
}

@media (max-width: 1600px) {
	.header-1 .header-right .header-button .theme-btn.style-2 {
		display: none;
	}
}

.header-1 .header-right .header-button .theme-btn.style-2 i {
	margin-left: 0;
	margin-right: 0;
}

.header-1 .search-toggle {
	color: var(--header);
	font-size: 16px;
}

.header-1 .sidebar__toggle {
	cursor: pointer;
}

.header-1 .sidebar__toggle .header-bar {
	position: relative;
	width: 31px;
	height: 18px;
}

.header-1 .sidebar__toggle .header-bar span {
	position: absolute;
	width: 100%;
	height: 2px;
	display: inline-block;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
	left: 0;
	background: var(--header);
	overflow: hidden;
}

.header-1 .sidebar__toggle .header-bar span:first-child {
	top: 0;
	background: var(--header);
	left: 16px;
	width: 15px;
}

.header-1 .sidebar__toggle .header-bar span:nth-child(2) {
	top: 44%;
	background: var(--header);
	width: 30px;
}

.header-1 .sidebar__toggle .header-bar span:last-child {
	bottom: 0;
	background: var(--header);
	width: 15px;
}

.header-1 .sidebar__toggle .header-bar.active span:first-child {
	-webkit-transform: rotate(45deg) translate(3px, 9px);
	transform: rotate(45deg) translate(3px, 9px);
}

.header-1 .sidebar__toggle .header-bar.active span:nth-child(2) {
	opacity: 0;
}

.header-1 .sidebar__toggle .header-bar.active span:last-child {
	-webkit-transform: rotate(-45deg) translate(3px, -9px);
	transform: rotate(-45deg) translate(3px, -9px);
}

.header-1 .sidebar__toggle .header-bar:hover {
	cursor: pointer;
}

/*.hero-section {
  padding: 100px 0px;
  
}

.hero-title {
  font-size: 56px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #FFF;
}

.hero-line {
  width: 120px;
  height: 3px;
  background: red;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 26px;
  color: #cbd5e1;
  margin-bottom: 30px;
  line-height: 1.4;
  color: #FFF;
}

.hero-btn {
  padding: 14px 32px;
  border-radius: 12px;
  font-weight: 500;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
}

@media (max-width: 992px) {
  .hero-section {
    background-position: center;
    text-align: center;
    padding: 80px 0;
  }

  .hero-title {
    font-size: 36px;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .hero-line {
    margin: 0 auto 20px;
  }
}*/

.back-to-top {
  border-radius: 50%;
  background-color: var(--theme-blue);
  width: 50px;
  height: 50px;
  line-height: 50px;
  color: var(--white);
  font-size: 18px;
  position: fixed;
  display: inline-block;
  z-index: 9999;
  right: 30px;
  bottom: 30px;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
}

.back-to-top:hover {
  background-color: var(--header);
  color: var(--white);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate(0);
          transform: translate(0);
}

.theme-btn {
  position: relative;
  z-index: 2;
  vertical-align: middle;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 15px;
  border: none;
  text-align: center;
  background-color: var(--theme-green);
  color: var(--header);
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
  line-height: 1;
  padding: 20px 30px;
  overflow: hidden;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 10px;
}

.theme-btn i {
  margin-left: 5px;
}

.theme-btn::after, .theme-btn::before {
  content: "";
  display: block;
  width: 50px;
  height: 50px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  position: absolute;
  border-radius: 50%;
  z-index: -1;
  background-color: var(--header);
  -webkit-transition: 1s ease;
  transition: 1s ease;
}

.theme-btn::before {
  top: -2em;
  left: -2em;
}

.theme-btn::after {
  left: calc(100% + 2em);
  top: calc(100% + 2em);
}

.theme-btn:hover {
  color: var(--white);
  -webkit-box-shadow: none;
          box-shadow: none;
}

.theme-btn:hover::after, .theme-btn:hover::before {
  height: 410px;
  width: 410px;
}

.theme-btn.hover-white::after, .theme-btn.hover-white::before {
  background-color: var(--white);
}

.theme-btn.hover-white:hover {
  color: var(--header) !important;
}

.theme-btn.yellow-btn {
  background-color: var(--theme-yellow) !important;
  color: var(--white) !important;
}

.theme-btn.yellow-btn::after, .theme-btn.yellow-btn::before {
  background-color: var(--header) !important;
}

.theme-btn.yellow-btn:hover {
  color: var(--white) !important;
}

.theme-btn.red-btn {
  background-color: var(--theme-red);
  color: var(--white);
}

.theme-btn.red-btn::after, .theme-btn.red-btn::before {
  background-color: var(--header);
}

.theme-btn.red-btn:hover {
  color: var(--white);
}

.theme-btn.pink-btn {
  background-color: var(--theme-pink);
  color: var(--white);
}

.theme-btn.theme-blue-2 {
  background-color: var(--theme-blue-2);
  color: var(--white);
}

@media (max-width: 575px) {
  .theme-btn {
    padding: 18px 30px;
    font-size: 14px;
  }
}

.sticky {
  position: fixed !important;
  top: 0 !important;
  left: 0;
  width: 100%;
  z-index: 999;
  -webkit-transition: all 0.9s;
  transition: all 0.9s;
  background-color: var(--white);
  -webkit-animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
  animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
  -webkit-box-shadow: var(---box-shadow);
          box-shadow: var(---box-shadow);
}

.header-logo img {
    max-width: 200px;
}

.footer-widget-wrapper {
  padding: 70px 0 50px;
}

.footer-widget-wrapper .single-footer-widget {
  margin-top: 30px;
}

.footer-widget-wrapper .single-footer-widget .widget-head {
  margin-bottom: 30px;
}

.footer-widget-wrapper .single-footer-widget .widget-head h3 {
  font-size: 20px;
  color: var(--white);
}
.footer-widget-wrapper .single-footer-widget img {
    max-width: 250px;
}

@media (max-width: 575px) {
  .footer-widget-wrapper .single-footer-widget .widget-head {
    margin-bottom: 20px;
  }
}

.footer-widget-wrapper .single-footer-widget .footer-content p {
  color: var(--white);
}

.footer-widget-wrapper .single-footer-widget .footer-content .social-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  margin-top: 40px;
}

@media (max-width: 767px) {
  .footer-widget-wrapper .single-footer-widget .footer-content .social-icon {
    margin-bottom: 30px;
  }
}

@media (max-width: 575px) {
  .footer-widget-wrapper .single-footer-widget .footer-content .social-icon {
    margin-top: 20px;
  }
}

.footer-widget-wrapper .single-footer-widget .footer-content .social-icon a {
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  font-size: 16px;
  display: block;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  -webkit-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
  text-align: center;
  border-radius: 50%;
}

.footer-widget-wrapper .single-footer-widget .footer-content .social-icon a:hover {
  background-color: var(--theme-yellow);
  color: var(--header);
}

.footer-widget-wrapper .single-footer-widget .footer-content .contact-info li {
  font-size: 16px;
  font-weight: 400;
  color: var(--white);
}

.footer-widget-wrapper .single-footer-widget .footer-content .contact-info li:not(:last-child) {
  margin-bottom: 15px;
}

.footer-widget-wrapper .single-footer-widget .footer-content .contact-info li a {
  color: var(--white);
}

.footer-widget-wrapper .single-footer-widget .list-area li {
  font-weight: 400;
  font-size: 16px;
}

.footer-widget-wrapper .single-footer-widget .list-area li:not(:last-child) {
  margin-bottom: 15px;
}

.footer-widget-wrapper .single-footer-widget .list-area li a {
  color: var(--white);
  position: relative;
  padding-left: 20px;
}

.footer-widget-wrapper .single-footer-widget .list-area li a::before {
  position: absolute;
  top: 8px;
  left: 0;
  width: 6px;
  height: 6px;
  content: "";
  border-radius: 50%;
  background-color: var(--white);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.footer-widget-wrapper .single-footer-widget .list-area li a:hover {
  color: var(--theme-yellow);
}

.footer-widget-wrapper .single-footer-widget .list-area li a:hover::before {
  background-color: var(--theme-yellow);
}

.footer-bottom p {
  text-align: right;
  font-weight: 400;
  color: var(--white);
}

@media (max-width: 991px) {
  .footer-bottom p {
    text-align: center;
    padding-bottom: 20px;
  }
}

.footer-bottom p a {
  color: var(--theme-green);
}

.footer-bottom.style-2 {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 30px 0;
}

.footer-bottom.style-2 p {
  text-align: center;
}

.footer-bottom.style-2 p a {
  color: var(--theme-yellow);
}
.footer-bg {
  background-color: var(--header);
}
.footer-section {
  position: relative;
}

.footer-section .circle-shape-2 {
  position: absolute;
  bottom: 20%;
  left: 5%;
}

.footer-section .big-circle {
  position: absolute;
  bottom: 50px;
  right: 0;
}

.footer-section .Vector-shape-2 {
  position: absolute;
  top: 18%;
  right: 8%;
}

.offcanvas__info {
  background: var(--white) none repeat scroll 0 0;
  border-left: 2px solid var(--theme-blue);
  position: fixed;
  right: 0;
  top: 0;
  width: 400px;
  height: 100%;
  -webkit-transform: translateX(calc(100% + 80px));
  transform: translateX(calc(100% + 80px));
  -webkit-transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
  -webkit-transition: opacity 0.45s ease-in-out, -webkit-transform 0.45s ease-in-out;
  transition: opacity 0.45s ease-in-out, -webkit-transform 0.45s ease-in-out;
  transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
  transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out, -webkit-transform 0.45s ease-in-out;
  z-index: 99999;
  overflow-y: scroll;
  overscroll-behavior-y: contain;
  scrollbar-width: none;
}

.offcanvas__info.info-open {
  opacity: 1;
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.offcanvas__logo a img {
  width: 150px;
}

.offcanvas__wrapper {
  position: relative;
  height: 100%;
  padding: 30px 30px;
}

.offcanvas__wrapper .offcanvas-title {
  font-size: 32px;
  margin-bottom: 15px;
}

.offcanvas__wrapper .offcanvas__content p {
  color: var(--header);
}

.offcanvas__wrapper .offcanvas__content .offcanvas__close {
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  border-radius: 50%;
  background-color: var(--theme-blue);
  position: relative;
  z-index: 9;
  cursor: pointer;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__close i {
  color: var(--white);
}

.offcanvas__wrapper .offcanvas__content .social-icon {
  margin-top: 30px;
  gap: 10px;
  margin-bottom: 30px;
}

.offcanvas__wrapper .offcanvas__content .social-icon a {
  width: 52px;
  height: 52px;
  line-height: 52px;
  text-align: center;
  font-size: 16px;
  display: block;
  background: transparent;
  color: var(--header);
  -webkit-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
  text-align: center;
  border: 1px solid var(--border);
}

.offcanvas__wrapper .offcanvas__content .social-icon a:hover {
  background-color: var(--theme-blue);
  color: var(--white);
  border: 1px solid var(--theme-blue);
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact {
  margin-top: 20px;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact h3 {
  font-size: 28px;
  margin-bottom: 15px;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact .contact-list li {
  font-size: 16px;
  color: var(--header);
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact .contact-list li:not(:last-child) {
  margin-bottom: 10px;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact .contact-list li span {
  font-weight: 600;
  color: var(--header);
  font-size: 18px;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact .contact-list li a {
  font-size: 16px;
  color: var(--header);
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact span {
  text-transform: initial;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact .header-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.offcanvas__wrapper .offcanvas__content .offcanvas-button {
  margin-top: 300px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}

@media (max-width: 1399px) {
  .offcanvas__wrapper .offcanvas__content .offcanvas-button {
    margin-top: 30px;
  }
}

@media (max-width: 575px) {
  .offcanvas__wrapper .offcanvas__content .offcanvas-button {
    margin-top: 20px;
    margin-bottom: 10px;
  }
}

.offcanvas__overlay {
  position: fixed;
  height: 100%;
  width: 100%;
  background: #151515;
  z-index: 900;
  top: 0;
  opacity: 0;
  visibility: hidden;
  right: 0;
}

.offcanvas__overlay.overlay-open {
  opacity: 0.8;
  visibility: visible;
}

@media (max-width: 450px) {
  .offcanvas__info {
    width: 350px;
  }
}

@media (max-width: 575px) {
  .offcanvas__wrapper {
    padding: 20px;
  }
  .mean-container .mean-nav ul li .fas::before {
      content: none;
  }
}

.fix {
  overflow: hidden;
}

.mean-container a.meanmenu-reveal {
  display: none;
}

.mean-container .mean-nav {
  background: none;
  margin-top: 0;
}

.mean-container .mean-bar {
  padding: 0;
  min-height: auto;
  background: none;
}

.mean-container .mean-nav > ul {
  padding: 0;
  margin: 0;
  width: 100%;
  list-style-type: none;
  display: block !important;
}

.mean-container .mean-nav > ul .homemenu {
  position: relative;
}

.mean-container .mean-nav > ul .homemenu .homemenu-thumb {
  position: relative;
  width: 280px;
}

.mean-container .mean-nav > ul .homemenu .homemenu-thumb .demo-button {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 60%;
  gap: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.mean-container .mean-nav > ul .homemenu .homemenu-thumb .demo-button .theme-btn {
  padding: 10px 30px;
  color: var(--white) !important;
  width: initial;
  font-size: 14px;
  text-align: center;
}

.mean-container .mean-nav > ul .homemenu .homemenu-thumb .demo-button .theme-btn:hover {
  color: var(--white) !important;
}

.mean-container .mean-nav > ul .homemenu .homemenu-thumb::before {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(99, 92, 92, 0)), to(#292930));
  background: linear-gradient(to bottom, rgba(99, 92, 92, 0) 0%, #292930 100%);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  overflow: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  content: "";
}

.mean-container .mean-nav > ul .homemenu .homemenu-thumb:hover::before {
  visibility: visible;
  opacity: 1;
}

.mean-container .mean-nav > ul .homemenu .homemenu-thumb:hover .demo-button {
  opacity: 1;
  visibility: visible;
  margin-top: 0;
}

.mean-container .mean-nav > ul .homemenu .homemenu-thumb:hover .homemenu-btn {
  opacity: 1;
  visibility: visible;
  bottom: 50%;
  -webkit-transform: translateY(50%);
          transform: translateY(50%);
}

.mean-container .mean-nav > ul .homemenu .homemenu-thumb img {
  width: 100%;
}

.mean-container .mean-nav > ul .homemenu .homemenu-content .homemenu-title {
  margin-top: 15px;
  display: inline-block;
  font-size: 16px;
}

.mean-container a.meanmenu-reveal {
  display: none !important;
}

.mean-container .mean-nav ul li a {
  width: 100%;
  padding: 10px 0;
  color: var(--header);
  font-size: 16px;
  line-height: 1.5;
  font-weight: 600;
}

.mean-container .mean-nav ul li a.border-none {
  border: none;
}

.mean-container .mean-nav ul li a:hover {
  color: var(--theme-blue);
}

.mean-container .mean-nav ul li a .head-icon {
  display: none;
}

.mean-container .mean-nav ul li a:last-child {
  border-bottom: 0;
}

.mean-container .mean-nav ul li a:hover {
  color: var(--theme-blue);
}

.mean-container .mean-nav ul li a.mean-expand {
  margin-top: 5px;
  padding: 0 !important;
}

.mean-container .mean-nav ul li > a > i {
  display: none;
}

.mean-container .mean-nav ul li > a.mean-expand i {
  display: inline-block;
}

.mean-container .mean-nav > ul > li:first-child > a {
  border-top: 0;
}

.mean-container .mean-nav ul li a.mean-expand.mean-clicked i {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.mean-container .mean-nav ul li .mega-menu li a {
  height: 200px;
  width: 100%;
  padding: 0;
  border-top: 0;
  margin-bottom: 20px;
}

@media (max-width: 1199px) {
  .mean-container .mean-nav ul li.menu-thumb {
    display: none;
  }
}

.blog-wrapper h1, .blog-wrapper h2, .blog-wrapper h3, .blog-wrapper h4, .blog-wrapper h5, .blog-wrapper h6 {
  font-weight: 600;
  line-height: 30px;
}

.blog-wrapper .blog-post-details.border-wrap {
  border: 2px solid #a7bcff3b;
  padding: 30px;
}

.blog-wrapper .single-blog-post {
  margin-bottom: 40px;
  position: relative;
}

.blog-wrapper .single-blog-post .video__button {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 2;
}

.blog-wrapper .single-blog-post .video__button .video__btn__wrp {
  margin-bottom: 0;
}

.blog-wrapper .single-blog-post.post-details.format-quote .post-content {
  position: relative;
  background: transparent;
  border: none;
}

.blog-wrapper .single-blog-post.post-details .post-content {
  border: none;
}

.blog-wrapper .single-blog-post.post-details .post-content img {
  margin-top: 20px;
  margin-bottom: 20px;
}

.blog-wrapper .single-blog-post.post-details .post-content .single-post-image {
  width: 100%;
  height: 100%;
}

.blog-wrapper .single-blog-post.post-details .post-content h1 {
  font-size: 36px;
  line-height: 1.4;
}

.blog-wrapper .single-blog-post.post-details .post-content h1, .blog-wrapper .single-blog-post.post-details .post-content h2, .blog-wrapper .single-blog-post.post-details .post-content h3, .blog-wrapper .single-blog-post.post-details .post-content h4, .blog-wrapper .single-blog-post.post-details .post-content h5, .blog-wrapper .single-blog-post.post-details .post-content h6 {
  margin-top: 10px;
}

.blog-wrapper .single-blog-post.post-details .post-content table {
  margin-top: 20px;
}

@media (max-width: 767px) {
  .blog-wrapper .single-blog-post.post-details .post-content h1 {
    font-size: 28px;
  }
  .blog-wrapper .single-blog-post.post-details .post-content h3 {
    font-size: 20px;
  }
}

.blog-wrapper .single-blog-post.post-details blockquote, .blog-wrapper .single-blog-post.post-details .wp-block-quote {
  background-color: var(--theme-blue);
  color: var(--white);
  font-size: 26px;
  line-height: 1.4;
  font-family: "Sora", system-ui;
  font-weight: 400;
  padding: 60px;
  text-align: center;
  margin: 40px 0px;
  position: relative;
  z-index: 1;
}

.blog-wrapper .single-blog-post.post-details blockquote a, .blog-wrapper .single-blog-post.post-details .wp-block-quote a {
  color: var(--white);
}

.blog-wrapper .single-blog-post.post-details blockquote a:hover, .blog-wrapper .single-blog-post.post-details .wp-block-quote a:hover {
  color: var(--text);
}

@media (max-width: 767px) {
  .blog-wrapper .single-blog-post.post-details blockquote, .blog-wrapper .single-blog-post.post-details .wp-block-quote {
    padding: 30px 15px;
    font-size: 18px;
    line-height: 1.5;
  }
}

.blog-wrapper .single-blog-post.post-details blockquote::before, .blog-wrapper .single-blog-post.post-details .wp-block-quote::before {
  right: 30px;
  font-size: 110px;
  line-height: 1;
  font-family: "Font Awesome 5 Pro";
  position: absolute;
  content: "\f10d";
  bottom: -20px;
  color: var(--white);
  z-index: -1;
  opacity: .1;
  font-weight: 900;
}

.blog-wrapper .single-blog-post.format-video .post-featured-thumb, .blog-wrapper .single-blog-post.category-video-post .post-featured-thumb {
  z-index: 1;
  position: relative;
}

.blog-wrapper .single-blog-post.format-video .post-featured-thumb::before, .blog-wrapper .single-blog-post.category-video-post .post-featured-thumb::before {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  content: "";
  background-color: #282835;
  opacity: .3;
  z-index: -1;
}

.blog-wrapper .single-blog-post.quote-post .post-content, .blog-wrapper .single-blog-post.format-quote .post-content {
  position: relative;
  background-color: var(--theme-blue);
  border: none;
}

.blog-wrapper .single-blog-post.quote-post .post-content::before, .blog-wrapper .single-blog-post.format-quote .post-content::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-image: url(../img/quotepost.png);
  background-repeat: no-repeat;
  background-size: cover;
}

.blog-wrapper .single-blog-post.quote-post .quote-content, .blog-wrapper .single-blog-post.format-quote .quote-content {
  overflow: hidden;
  padding: 50px;
}

@media (max-width: 585px) {
  .blog-wrapper .single-blog-post.quote-post .quote-content, .blog-wrapper .single-blog-post.format-quote .quote-content {
    text-align: center;
    font-size: 24px;
    padding: 30px;
  }
}

.blog-wrapper .single-blog-post.quote-post .quote-content .icon, .blog-wrapper .single-blog-post.format-quote .quote-content .icon {
  font-size: 70px;
  line-height: 80px;
  float: left;
  overflow: hidden;
  margin-right: 30px;
}

@media (max-width: 585px) {
  .blog-wrapper .single-blog-post.quote-post .quote-content .icon, .blog-wrapper .single-blog-post.format-quote .quote-content .icon {
    float: none;
    margin-bottom: 10px;
    margin-right: 0;
    font-size: 50px;
    line-height: 60px;
  }
}

.blog-wrapper .single-blog-post.quote-post .quote-content .quote-text, .blog-wrapper .single-blog-post.format-quote .quote-content .quote-text {
  overflow: hidden;
}

.blog-wrapper .single-blog-post.quote-post .quote-content h2, .blog-wrapper .single-blog-post.format-quote .quote-content h2 {
  margin-top: -2px;
  font-size: 36px;
  color: var(--white);
}

.blog-wrapper .single-blog-post.quote-post .quote-content .post-meta, .blog-wrapper .single-blog-post.format-quote .quote-content .post-meta {
  margin-top: 10px;
}

.blog-wrapper .single-blog-post.quote-post .quote-content .post-meta span, .blog-wrapper .single-blog-post.quote-post .quote-content .post-meta i, .blog-wrapper .single-blog-post.format-quote .quote-content .post-meta span, .blog-wrapper .single-blog-post.format-quote .quote-content .post-meta i {
  color: var(--white);
}

.blog-wrapper .single-blog-post:last-child {
  margin-bottom: 0;
}

.blog-wrapper .single-blog-post .post-featured-thumb {
  height: 450px;
  width: 100%;
  position: relative;
  margin-bottom: -2px;
}

.blog-wrapper .single-blog-post .post-featured-thumb .post-date {
  position: absolute;
  top: 20px;
  left: 20px;
  padding: 15px 30px;
  background-color: var(--theme-blue);
  text-align: center;
}

.blog-wrapper .single-blog-post .post-featured-thumb .post-date h4 {
  color: var(--white);
}

.blog-wrapper .single-blog-post .post-featured-thumb .post-date h4 span {
  color: var(--white);
  text-transform: uppercase;
  font-size: 15px;
}

@media (max-width: 991px) {
  .blog-wrapper .single-blog-post .post-featured-thumb {
    height: 280px;
  }
}

@media (max-width: 767px) {
  .blog-wrapper .single-blog-post .post-featured-thumb {
    height: 230px;
  }
}

.blog-wrapper .single-blog-post .post-featured-thumb .video-play-btn {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 2;
}

.blog-wrapper .single-blog-post .post-featured-thumb .video-play-btn .play-video {
  border-radius: 50%;
  width: 80px;
  height: 80px;
  line-height: 80px;
  font-size: 18px;
}

.blog-wrapper .single-blog-post .post-content {
  padding-top: 30px;
  overflow: hidden;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media (max-width: 575px) {
  .blog-wrapper .single-blog-post .post-content {
    padding-top: 20px;
  }
}

.blog-wrapper .single-blog-post .post-content h2 {
  line-height: 1.4;
  font-size: 36px;
  font-weight: 600;
}

@media (max-width: 575px) {
  .blog-wrapper .single-blog-post .post-content h2 {
    font-size: 28px;
  }
}

.blog-wrapper .single-blog-post .post-content h2 a:hover {
  color: var(--theme-blue);
}

.blog-wrapper .single-blog-post .post-content p {
  font-size: 16px;
}

@media (max-width: 767px) {
  .blog-wrapper .single-blog-post .post-content {
    padding: 30px 10px;
  }
}

@media (max-width: 414px) {
  .blog-wrapper .single-blog-post .post-content h2 {
    font-size: 22px;
  }
}

.blog-wrapper .single-blog-post .post-content .post-cat a {
  color: var(--white);
  display: inline-block;
  background-color: var(--theme-blue);
  padding: 14px 18px 12px;
  line-height: 1;
  font-size: 16px;
  font-weight: 700;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  margin-bottom: 20px;
  text-transform: capitalize;
  font-family: 'League Spartan', sans-serif;
}

@media (max-width: 767px) {
  .blog-wrapper .single-blog-post .post-content .post-cat a {
    font-size: 12px;
  }
}

.blog-wrapper .single-blog-post .post-content .post-cat a:hover {
  background-color: var(--header);
}

.blog-wrapper .single-blog-post .post-content ul {
  margin-bottom: 0;
  list-style-type: disc;
  margin-top: 30px;
}

.blog-wrapper .single-blog-post .post-content ul ol {
  margin-bottom: 0;
}

.blog-wrapper .single-blog-post .post-content ul ul {
  margin-bottom: 0;
}

.blog-wrapper .single-blog-post .post-content ul li {
  line-height: 1.5;
  margin-top: 10px;
  list-style-type: disc;
  color: var(--text);
  position: relative;
  font-size: 18px;
  padding-left: 30px;
}

.blog-wrapper .single-blog-post .post-content ul li::before {
  position: absolute;
  left: 0;
  top: 0;
  font-family: "Font Awesome 5 Pro";
  content: "\f00c";
  color: var(--theme-blue);
}

.blog-wrapper .single-blog-post .post-content ol {
  margin-bottom: 0;
  list-style-type: decimal;
}

.blog-wrapper .single-blog-post .post-content ol ul {
  margin-bottom: 0;
}

.blog-wrapper .single-blog-post .post-content ol ol {
  margin-bottom: 0;
}

.blog-wrapper .single-blog-post .post-content ol li {
  line-height: 1.5;
  margin-top: 10px;
  list-style-type: decimal;
}

.blog-wrapper .single-blog-post .post-content p {
  margin-top: 15px;
}

.blog-wrapper .single-blog-post .post-content .post-meta {
  margin-bottom: 10px;
}

.blog-wrapper .single-blog-post .post-content .post-meta span {
  color: var(--text);
  font-weight: 500;
  font-size: 18px;
  line-height: 1;
  display: inline-block;
  margin-right: 25px;
}

@media (max-width: 767px) {
  .blog-wrapper .single-blog-post .post-content .post-meta span {
    font-size: 15px;
  }
}

.blog-wrapper .single-blog-post .post-content .post-meta span i {
  margin-right: 5px;
  color: var(--header);
  font-weight: 700;
}

.blog-wrapper .single-blog-post .post-content .author-info {
  overflow: hidden;
}

.blog-wrapper .single-blog-post .post-content .author-info .author-img {
  height: 40px;
  width: 40px;
  line-height: 40px;
  border-radius: 50%;
  background-color: #f2f2f2;
  margin-right: 15px;
  float: left;
  overflow: hidden;
  background-position: center;
  background-size: cover;
}

@media (max-width: 767px) {
  .blog-wrapper .single-blog-post .post-content .author-info .author-img {
    margin-right: 5px;
  }
}

.blog-wrapper .single-blog-post .post-content .author-info h5 {
  display: inline-block;
  line-height: 1;
  font-size: 16px;
  margin-top: 9px;
}

.blog-wrapper .single-blog-post .post-content .author-info h5 a:hover {
  color: var(--theme-blue);
}

@media (max-width: 767px) {
  .blog-wrapper .single-blog-post .post-content .author-info h5 {
    font-size: 14px;
  }
}

.blog-wrapper .single-blog-post .post-content .post-link a {
  font-weight: 700;
}

.blog-wrapper .single-blog-post .post-content .post-link a:hover {
  color: var(--theme-blue);
}

@media (max-width: 767px) {
  .blog-wrapper .single-blog-post .post-content .post-link a {
    font-size: 14px;
  }
}

.blog-wrapper .single-blog-post .post-content .post-link a i {
  margin-right: 5px;
}

@media (max-width: 767px) {
  .blog-wrapper .single-blog-post .post-content .post-link a i {
    margin-right: 3px;
  }
}

@media (min-width: 991px) {
  .news-area .main-sidebar {
    margin-left: 20px;
  }
}

@media (max-width: 991px) {
  .news-area .main-sidebar {
    margin-top: 40px;
  }
}

.news-area .main-sidebar .single-sidebar-widget {
  border: 2px solid #a7bcff3b;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 30px;
  margin-bottom: 40px;
}

.news-area .main-sidebar .single-sidebar-widget ul {
  padding-left: 0;
}

.news-area .main-sidebar .single-sidebar-widget ul > li {
  margin-bottom: 10px;
}

.news-area .main-sidebar .single-sidebar-widget ul > li a {
  font-size: 18px;
  font-weight: 600;
  text-transform: capitalize;
  position: relative;
  background: var(--bg);
  padding: 17px 20px;
  line-height: 1;
  font-size: 14px;
  display: block;
  margin-bottom: 12px;
  font-weight: 500;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.news-area .main-sidebar .single-sidebar-widget ul > li a:hover {
  color: var(--theme-blue);
}

.news-area .main-sidebar .single-sidebar-widget ul ul {
  padding-left: 20px;
}

.news-area .main-sidebar .single-sidebar-widget ul ul li {
  margin-top: 5px;
}

.news-area .main-sidebar .single-sidebar-widget:last-child {
  margin-bottom: 0;
}

.news-area .main-sidebar .single-sidebar-widget .wid-title {
  margin-bottom: 25px;
  padding-left: 0px;
  position: relative;
}

/*.news-area .main-sidebar .single-sidebar-widget .wid-title::before {
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  content: "";
  height: 4px;
  width: 18px;
  border-radius: 5px;
  position: absolute;
  background-color: var(--theme-blue);
}

.news-area .main-sidebar .single-sidebar-widget .wid-title::after {
  left: 22px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  content: "";
  height: 4px;
  width: 4px;
  border-radius: 50%;
  position: absolute;
  background-color: var(--theme-blue);
}*/

.news-area .main-sidebar .single-sidebar-widget .wid-title h4 {
  font-size: 24px;
  font-weight: 600;
}

.news-area .main-sidebar .single-sidebar-widget .social-link a {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  background-color: var(--bg);
  font-size: 14px;
  margin-right: 5px;
  margin-bottom: 5px;
}

.news-area .main-sidebar .single-sidebar-widget .social-link a:hover {
  background-color: var(--theme-blue);
  color: var(--white);
}

.widget_categories ul li {
  display: block;
}

.widget_categories ul li:last-child a {
  margin-bottom: 0;
}

.widget_categories ul li a {
  position: relative;
  background: var(--bg);
  padding: 17px 20px;
  line-height: 1;
  font-size: 14px;
  display: block;
  margin-bottom: 12px;
  font-weight: 500;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.widget_categories ul li a:hover {
  color: var(--theme-blue);
}

.widget_categories ul li a i {
  margin-right: 10px;
}

.widget_categories ul li a span {
  position: absolute;
  width: 60px;
  line-height: 55px;
  height: 100%;
  content: "";
  background-color: var(--theme-blue);
  right: 0;
  top: 0;
  text-align: center;
  color: var(--white);
}

.news-wrapper {
    padding: 60px 0px;
}

.popular-posts .single-post-item, .popular_posts .single-post-item {
  overflow: hidden;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #f2f2f2;
}

.popular-posts .single-post-item:last-child, .popular_posts .single-post-item:last-child {
  margin-bottom: 0;
  border: none;
  padding-bottom: 0;
}

.popular-posts .single-post-item .thumb, .popular_posts .single-post-item .thumb {
  height: 90px;
  width: 100px;
  background-color: #f2f2f2;
  float: left;
  overflow: hidden;
  margin-right: 20px;
}

.popular-posts .single-post-item .post-content, .popular_posts .single-post-item .post-content {
  overflow: hidden;
}

.popular-posts .single-post-item .post-content h5, .popular_posts .single-post-item .post-content h5 {
  font-size: 16px;
  line-height: 22px;
  font-weight: 600;
  margin-bottom: 0;
  text-transform: capitalize;
}

.popular-posts .single-post-item .post-content h5 a:hover, .popular_posts .single-post-item .post-content h5 a:hover {
  color: var(--theme-blue);
}

.popular-posts .single-post-item .post-content .post-date, .popular_posts .single-post-item .post-content .post-date {
  margin-top: 10px;
  color: theme-blue;
  font-weight: 600;
  font-size: 15px;
  text-transform: capitalize;
}

.popular-posts .single-post-item .post-content .post-date i, .popular_posts .single-post-item .post-content .post-date i {
  margin-right: 7px;
}